-
Notifications
You must be signed in to change notification settings - Fork 5.1k
Expand file tree
/
Copy pathsuperposition_seed.toml
More file actions
286 lines (232 loc) · 9.51 KB
/
Copy pathsuperposition_seed.toml
File metadata and controls
286 lines (232 loc) · 9.51 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
# Superposition Seed Configuration for Hyperswitch
# This file serves dual purpose:
# 1. Seeding via scripts/seed_superposition.sh (posts to Superposition API)
# 2. Runtime fallback for FileDataSource via backup_file_path config
#
# Extra fields (description, change_reason) are used only by the seeding script
# and are silently ignored by the FileDataSource parser.
# Empty overrides table - required for FileDataSource backup parsing
# The seeding script ignores this field; it's only needed for runtime fallback
overrides = []
[default-configs.deja_record]
value = true
schema = { type = "boolean" }
description = "Whether Deja request recording is enabled for matching request contexts (inert unless deja.sampler.enabled is set)"
change_reason = "Initial setup"
[dimensions.connector]
position = 1
schema = { type = "string" }
description = "Payment connector identifier (e.g. stripe, adyen)"
change_reason = "Initial setup"
[dimensions.payment_method]
position = 2
schema = { type = "string" }
description = "Payment method identifier (e.g. card, wallet, bank_transfer)"
change_reason = "Initial setup"
[dimensions.payment_method_type]
position = 3
schema = { type = "string" }
description = "Payment method type identifier (e.g. credit, debit, google_pay)"
change_reason = "Initial setup"
[dimensions.payout_retry_type]
position = 4
schema = { type = "string" }
description = "Type of payout retry (single_connector or multi_connector)"
change_reason = "Initial setup"
[dimensions.incoming_webhook_events]
position = 5
schema = { type = "string" }
description = "Incoming webhook event type identifier (e.g. payment_intent.succeeded)"
change_reason = "Initial setup"
[dimensions.organization_id]
position = 6
schema = { type = "string" }
description = "Organization identifier"
change_reason = "Initial setup"
[dimensions.provider_merchant_id]
position = 7
schema = { type = "string" }
description = "Provider merchant identifier (hyperswitch merchant id)"
change_reason = "Initial setup"
[dimensions.processor_merchant_id]
position = 8
schema = { type = "string" }
description = "Processor merchant identifier (connector-side merchant id)"
change_reason = "Initial setup"
[dimensions.profile_id]
position = 9
schema = { type = "string" }
description = "Business profile identifier"
change_reason = "Initial setup"
[default-configs.requires_cvv]
value = true
schema = { type = "boolean" }
description = "Whether CVV is required for payments"
change_reason = "Initial setup"
[default-configs.implicit_customer_update]
value = false
schema = { type = "boolean" }
description = "Whether to implicitly update customer details on payment"
change_reason = "Initial setup"
[default-configs.payout_tracker_mapping]
schema = { type = "object" }
description = "Payout sync retry mapping configuration per connector"
change_reason = "Initial setup"
[default-configs.payout_tracker_mapping.value]
start_after = 60
frequencies = [[300, 5]]
[default-configs.client_session_validation_enabled]
value = true
schema = { type = "boolean" }
description = "Whether client session validation is enabled for payments"
change_reason = "Initial setup"
[default-configs.should_call_gsm]
value = false
schema = { type = "boolean" }
description = "Whether to call GSM (Global Status Mapping) for auto-retries on payment failure"
change_reason = "Initial setup"
[default-configs.should_perform_eligibility]
value = false
schema = { type = "boolean" }
description = "Whether the SDK should perform an eligibility check before confirming payment"
change_reason = "Initial setup"
[default-configs.should_enable_mit_with_limited_card_data]
value = false
schema = { type = "boolean" }
description = "Whether to allow merchant-initiated transactions (MIT) with limited card data"
change_reason = "Initial setup"
[default-configs.should_store_eligibility_check_data_for_authentication]
value = false
schema = { type = "boolean" }
description = "Whether to store eligibility check data during authentication"
change_reason = "Initial setup"
[default-configs.enable_extended_card_bin]
value = false
schema = { type = "boolean" }
description = "Whether to use extended card BIN (8-digit) for payment method data"
change_reason = "Initial setup"
[default-configs.max_auto_payout_retries]
value = 0
schema = { type = "integer", minimum = 0, maximum = 4294967295 }
description = "Maximum auto payout retries, differentiated by payout_retry_type dimension (single_connector or multi_connector)"
change_reason = "Initial setup"
[default-configs.gsm_payout_call]
value = false
schema = { type = "boolean" }
description = "Whether to call GSM for payout retries"
change_reason = "Initial setup"
[default-configs.should_disable_vault_tokenization]
value = false
schema = { type = "boolean" }
description = "Whether to disable vault tokenization for a merchant"
change_reason = "Initial setup"
[default-configs.should_call_pm_modular_service]
value = false
schema = { type = "boolean" }
description = "Whether to call the PM modular service for an organization"
change_reason = "Initial setup"
[default-configs.should_perform_sdk_vaulting]
value = true
schema = { type = "boolean" }
description = "Org level override on top of should_call_pm_modular_service; when false the SDK skips vaulting"
change_reason = "Initial setup"
[default-configs.should_schedule_modular_forward_compat]
value = false
schema = { type = "boolean" }
description = "Whether to schedule PM modular forward compatibility PT for a merchant"
change_reason = "Initial setup"
[default-configs.should_trigger_fingerprint_migration]
value = false
schema = { type = "boolean" }
description = "Whether to trigger fingerprint and entity_id migration for a merchant"
change_reason = "Initial setup"
[default-configs.should_schedule_modular_backward_compat]
value = false
schema = { type = "boolean" }
description = "Whether to schedule PM modular backward compatibility PT for a merchant"
change_reason = "Initial setup"
[default-configs.should_trigger_backwards_compatibility_inline]
value = false
schema = { type = "boolean" }
description = "Whether to trigger PM modular backward compatibility inline for a merchant"
change_reason = "Initial setup"
[default-configs.should_return_raw_payment_method_details]
value = false
schema = { type = "boolean" }
description = "Whether to return raw payment method details (v2 only)"
change_reason = "Initial setup"
[default-configs.routing_result_source]
value = "hyperswitch_routing"
schema = { type = "string", enum = ["decision_engine", "hyperswitch_routing"] }
description = "Source of routing result: decision_engine (external DE) or hyperswitch_routing (inbuilt)"
change_reason = "Initial setup"
[default-configs.threeds_routing_region_uas]
value = "region1"
schema = { type = "string", enum = ["region1", "region2"] }
description = "3DS routing region for UAS (Unified Authentication Service) per organization"
change_reason = "Initial setup"
[default-configs.incoming_webhook_disabled_events]
value = false
schema = { type = "boolean" }
description = "Whether a specific incoming webhook event is disabled for a given connector"
change_reason = "Initial setup"
[default-configs.poll_config_external_three_ds]
schema = { type = "object" }
description = "Poll configuration for external 3DS authentication per connector"
change_reason = "Initial setup"
[default-configs.poll_config_external_three_ds.value]
delay_in_secs = 2
frequency = 5
[default-configs.pt_mapping_outgoing_webhooks]
schema = { type = "object" }
description = "Outgoing webhook retry process tracker mapping configuration"
change_reason = "Initial setup"
[default-configs.pt_mapping_outgoing_webhooks.value.default_mapping]
start_after = 60
frequencies = [[300, 2], [600, 5], [3600, 5], [21600, 3]]
[default-configs.pt_mapping_outgoing_connector_webhooks]
schema = { type = "object" }
description = "Outgoing connector webhook retry process tracker mapping configuration"
change_reason = "Initial setup"
[default-configs.pt_mapping_outgoing_connector_webhooks.value.default_mapping]
start_after = 60
frequencies = [[300, 2], [600, 5], [3600, 5], [21600, 3]]
[default-configs.pt_mapping_pcr_retries]
schema = { type = "object" }
description = "Revenue recovery (PCR) payment retry process tracker mapping configuration"
change_reason = "Initial setup"
[default-configs.pt_mapping_pcr_retries.value.default_mapping]
start_after = 60
frequencies = [[10800, 2], [21600, 3], [32400, 3], [43200, 3], [64800, 3]]
[default-configs.pt_mapping_payment_sync]
schema = { type = "object" }
description = "Payment sync (psync) retry process tracker mapping configuration"
change_reason = "Initial setup"
[default-configs.pt_mapping_payment_sync.value]
max_retries_count = 5
[default-configs.pt_mapping_payment_sync.value.default_mapping]
start_after = 60
frequencies = [[300, 5]]
[default-configs.pt_mapping_refund_sync]
schema = { type = "object" }
description = "Refund sync retry process tracker mapping configuration"
change_reason = "Initial setup"
[default-configs.pt_mapping_refund_sync.value]
max_retries_count = 5
[default-configs.pt_mapping_refund_sync.value.default_mapping]
start_after = 60
frequencies = [[300, 5]]
[default-configs.pt_mapping_dispute_sync]
schema = { type = "object" }
description = "Dispute sync retry process tracker mapping configuration"
change_reason = "Initial setup"
[default-configs.pt_mapping_dispute_sync.value]
max_retries_count = 5
[default-configs.pt_mapping_dispute_sync.value.default_mapping]
start_after = 60
frequencies = [[300, 5]]
[default-configs.save_wallet_decrypted_data]
value = false
schema = { type = "boolean" }
description = "Whether to save wallet decrypted data"
change_reason = "Initial setup"