@flowio/api-types 0.0.228 → 0.0.229
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/generated/io.flow.external.paypal.v1.paypal.d.ts +14 -4
- package/generated/io.flow.internal.v0.api-internal.d.ts +190 -22
- package/generated/io.flow.payment.gateway.v0.payment-gateway.d.ts +23 -3
- package/generated/io.flow.shopify.external.v0.shopify-external.d.ts +87 -5
- package/generated/io.flow.shopify.markets.internal.event.v0.shopify-markets-internal-event.d.ts +17 -1
- package/generated/io.flow.shopify.markets.internal.v0.shopify-markets-internal.d.ts +20 -0
- package/generated/io.flow.stripe.v0.stripe.d.ts +60 -2
- package/generated/io.flow.v0.api.d.ts +23 -3
- package/index.d.ts +0 -6
- package/package.json +2 -2
- package/generated/io.flow.billing.accounting.v0.billing-accounting.d.ts +0 -246
- package/generated/io.flow.billing.internal.v0.billing-internal.d.ts +0 -1138
- package/generated/io.flow.billing.reporting.csv.v0.billing-reporting-csv.d.ts +0 -35
- package/generated/io.flow.billing.reporting.v0.billing-reporting.d.ts +0 -324
- package/generated/io.flow.invoice.v0.invoice.d.ts +0 -21
- package/generated/io.flow.payment.internal.v0.payment-internal.d.ts +0 -853
|
@@ -1,853 +0,0 @@
|
|
|
1
|
-
declare namespace io.flow.payment.internal.v0.enums {
|
|
2
|
-
type AdyenIntegrationType = 'hosted_payment_page' | 'checkout_payments_api' | 'classic_authorise_api';
|
|
3
|
-
type ChargebackPaymentStatus = 'captured' | 'refunded';
|
|
4
|
-
type ChargebackProcessStatus = 'inquiry' | 'open' | 'closed';
|
|
5
|
-
type HttpMethod = 'get' | 'post';
|
|
6
|
-
type OrganizationCapability = 'organization' | 'flow' | 'dynamic';
|
|
7
|
-
type OrganizationPaymentStatus = 'active' | 'archived';
|
|
8
|
-
type Owner = 'flow' | 'organization';
|
|
9
|
-
type Processor = 'adyen' | 'afterpay' | 'bitpay' | 'stripe' | 'paypal' | 'flow_sandbox' | 'fiserv' | 'crypto';
|
|
10
|
-
type ProcessorEntityStatus = 'active' | 'draft' | 'archived';
|
|
11
|
-
type RedirectReason = 'three_d_secure';
|
|
12
|
-
type RiskCheck = 'three_d_secure';
|
|
13
|
-
}
|
|
14
|
-
|
|
15
|
-
declare namespace io.flow.payment.internal.v0.models {
|
|
16
|
-
interface AdyenAccount {
|
|
17
|
-
readonly 'discriminator': 'adyen_account';
|
|
18
|
-
readonly 'id': string;
|
|
19
|
-
readonly 'organization_id': string;
|
|
20
|
-
readonly 'key': string;
|
|
21
|
-
readonly 'owner': io.flow.payment.internal.v0.enums.Owner;
|
|
22
|
-
readonly 'name': string;
|
|
23
|
-
readonly 'ui_reference': string;
|
|
24
|
-
readonly 'authentication': io.flow.payment.internal.v0.models.AdyenAuthentication;
|
|
25
|
-
readonly 'country': string;
|
|
26
|
-
readonly 'status': io.flow.payment.internal.v0.enums.ProcessorEntityStatus;
|
|
27
|
-
readonly 'organization_capability': io.flow.payment.internal.v0.enums.OrganizationCapability;
|
|
28
|
-
readonly 'created_at': string;
|
|
29
|
-
readonly 'updated_at': string;
|
|
30
|
-
}
|
|
31
|
-
|
|
32
|
-
interface AdyenAccountModificationForm {
|
|
33
|
-
readonly 'discriminator': 'adyen_account_modification_form';
|
|
34
|
-
readonly 'owner': io.flow.payment.internal.v0.enums.Owner;
|
|
35
|
-
readonly 'name': string;
|
|
36
|
-
readonly 'ui_reference': string;
|
|
37
|
-
readonly 'country': string;
|
|
38
|
-
readonly 'status': io.flow.payment.internal.v0.enums.ProcessorEntityStatus;
|
|
39
|
-
}
|
|
40
|
-
|
|
41
|
-
interface AdyenAccountPutForm {
|
|
42
|
-
readonly 'discriminator': 'adyen_account_put_form';
|
|
43
|
-
readonly 'owner'?: io.flow.payment.internal.v0.enums.Owner;
|
|
44
|
-
readonly 'name': string;
|
|
45
|
-
readonly 'ui_reference': string;
|
|
46
|
-
readonly 'authentication': io.flow.payment.internal.v0.models.AdyenAuthenticationForm;
|
|
47
|
-
readonly 'country': string;
|
|
48
|
-
readonly 'status'?: io.flow.payment.internal.v0.enums.ProcessorEntityStatus;
|
|
49
|
-
readonly 'organization_capability'?: io.flow.payment.internal.v0.enums.OrganizationCapability;
|
|
50
|
-
}
|
|
51
|
-
|
|
52
|
-
interface AdyenAuthentication {
|
|
53
|
-
readonly 'username': string;
|
|
54
|
-
readonly 'password_reference': string;
|
|
55
|
-
readonly 'signature_secret_reference': string;
|
|
56
|
-
}
|
|
57
|
-
|
|
58
|
-
interface AdyenAuthenticationDataReference {
|
|
59
|
-
readonly 'account_id': string;
|
|
60
|
-
readonly 'merchant_account': string;
|
|
61
|
-
readonly 'origin_key'?: string;
|
|
62
|
-
readonly 'integration_type'?: io.flow.payment.internal.v0.enums.AdyenIntegrationType;
|
|
63
|
-
}
|
|
64
|
-
|
|
65
|
-
interface AdyenAuthenticationForm {
|
|
66
|
-
readonly 'username': string;
|
|
67
|
-
readonly 'password': string;
|
|
68
|
-
readonly 'signature_secret': string;
|
|
69
|
-
}
|
|
70
|
-
|
|
71
|
-
interface AdyenMerchant {
|
|
72
|
-
readonly 'discriminator': 'adyen_merchant';
|
|
73
|
-
readonly 'id': string;
|
|
74
|
-
readonly 'key': string;
|
|
75
|
-
readonly 'organization_id': string;
|
|
76
|
-
readonly 'external_id': string;
|
|
77
|
-
readonly 'processor_account_reference': io.flow.payment.internal.v0.models.ProcessorAccountReference;
|
|
78
|
-
readonly 'country': string;
|
|
79
|
-
readonly 'status': io.flow.payment.internal.v0.enums.ProcessorEntityStatus;
|
|
80
|
-
readonly 'organization_capability': io.flow.payment.internal.v0.enums.OrganizationCapability;
|
|
81
|
-
readonly 'created_at': string;
|
|
82
|
-
readonly 'updated_at': string;
|
|
83
|
-
}
|
|
84
|
-
|
|
85
|
-
interface AdyenMerchantModificationForm {
|
|
86
|
-
readonly 'discriminator': 'adyen_merchant_modification_form';
|
|
87
|
-
readonly 'external_id': string;
|
|
88
|
-
readonly 'country': string;
|
|
89
|
-
readonly 'status': io.flow.payment.internal.v0.enums.ProcessorEntityStatus;
|
|
90
|
-
}
|
|
91
|
-
|
|
92
|
-
interface AdyenMerchantPutForm {
|
|
93
|
-
readonly 'discriminator': 'adyen_merchant_put_form';
|
|
94
|
-
readonly 'organization_id': string;
|
|
95
|
-
readonly 'external_id': string;
|
|
96
|
-
readonly 'country': string;
|
|
97
|
-
readonly 'status'?: io.flow.payment.internal.v0.enums.ProcessorEntityStatus;
|
|
98
|
-
readonly 'organization_capability'?: io.flow.payment.internal.v0.enums.OrganizationCapability;
|
|
99
|
-
}
|
|
100
|
-
|
|
101
|
-
interface AdyenPaymentDetailsForm {
|
|
102
|
-
readonly 'fingerprint'?: string;
|
|
103
|
-
readonly 'challenge_result'?: string;
|
|
104
|
-
}
|
|
105
|
-
|
|
106
|
-
interface AdyenRefundForm {
|
|
107
|
-
readonly 'discriminator': 'adyen_refund_form';
|
|
108
|
-
readonly 'amount': number;
|
|
109
|
-
readonly 'authorization_id': string;
|
|
110
|
-
readonly 'capture_id': string;
|
|
111
|
-
readonly 'currency': string;
|
|
112
|
-
readonly 'psp_reference': string;
|
|
113
|
-
readonly 'key'?: string;
|
|
114
|
-
}
|
|
115
|
-
|
|
116
|
-
interface AfterpayAccount {
|
|
117
|
-
readonly 'discriminator': 'afterpay_account';
|
|
118
|
-
readonly 'id': string;
|
|
119
|
-
readonly 'organization_id': string;
|
|
120
|
-
readonly 'key': string;
|
|
121
|
-
readonly 'owner': io.flow.payment.internal.v0.enums.Owner;
|
|
122
|
-
readonly 'country': string;
|
|
123
|
-
readonly 'authentication': io.flow.payment.internal.v0.models.AfterpayAuthentication;
|
|
124
|
-
readonly 'status': io.flow.payment.internal.v0.enums.ProcessorEntityStatus;
|
|
125
|
-
readonly 'organization_capability': io.flow.payment.internal.v0.enums.OrganizationCapability;
|
|
126
|
-
readonly 'created_at': string;
|
|
127
|
-
readonly 'updated_at': string;
|
|
128
|
-
}
|
|
129
|
-
|
|
130
|
-
interface AfterpayAccountModificationForm {
|
|
131
|
-
readonly 'discriminator': 'afterpay_account_modification_form';
|
|
132
|
-
readonly 'owner': io.flow.payment.internal.v0.enums.Owner;
|
|
133
|
-
readonly 'country': string;
|
|
134
|
-
readonly 'status': io.flow.payment.internal.v0.enums.ProcessorEntityStatus;
|
|
135
|
-
}
|
|
136
|
-
|
|
137
|
-
interface AfterpayAccountPutForm {
|
|
138
|
-
readonly 'discriminator': 'afterpay_account_put_form';
|
|
139
|
-
readonly 'owner'?: io.flow.payment.internal.v0.enums.Owner;
|
|
140
|
-
readonly 'country': string;
|
|
141
|
-
readonly 'authentication': io.flow.payment.internal.v0.models.AfterpayAuthenticationForm;
|
|
142
|
-
readonly 'status'?: io.flow.payment.internal.v0.enums.ProcessorEntityStatus;
|
|
143
|
-
readonly 'organization_capability'?: io.flow.payment.internal.v0.enums.OrganizationCapability;
|
|
144
|
-
}
|
|
145
|
-
|
|
146
|
-
interface AfterpayAuthentication {
|
|
147
|
-
readonly 'username': string;
|
|
148
|
-
readonly 'password_reference': string;
|
|
149
|
-
}
|
|
150
|
-
|
|
151
|
-
interface AfterpayAuthenticationDataReference {
|
|
152
|
-
readonly 'account_id': string;
|
|
153
|
-
}
|
|
154
|
-
|
|
155
|
-
interface AfterpayAuthenticationForm {
|
|
156
|
-
readonly 'username': string;
|
|
157
|
-
readonly 'password': string;
|
|
158
|
-
}
|
|
159
|
-
|
|
160
|
-
interface ApplePayAuthorizationPayload {
|
|
161
|
-
readonly 'discriminator': 'apple_pay_authorization_payload';
|
|
162
|
-
readonly 'apple_pay_token': string;
|
|
163
|
-
}
|
|
164
|
-
|
|
165
|
-
interface AuthenticationForm {
|
|
166
|
-
readonly 'password': string;
|
|
167
|
-
}
|
|
168
|
-
|
|
169
|
-
interface AuthorizationBundle {
|
|
170
|
-
readonly 'id': string;
|
|
171
|
-
readonly 'organization_id': string;
|
|
172
|
-
readonly 'authorization_reference': io.flow.payment.v0.models.AuthorizationReference;
|
|
173
|
-
readonly 'payment_request_reference': io.flow.payment.gateway.v0.models.PaymentRequestReference;
|
|
174
|
-
readonly 'billing'?: io.flow.payment.request.bundle.v0.models.PaymentRequestBilling;
|
|
175
|
-
}
|
|
176
|
-
|
|
177
|
-
interface AuthorizationMetadata {
|
|
178
|
-
readonly 'limit'?: number;
|
|
179
|
-
}
|
|
180
|
-
|
|
181
|
-
interface AuthorizationParameters {
|
|
182
|
-
readonly 'method': string;
|
|
183
|
-
readonly 'parameters': any/*object*/;
|
|
184
|
-
}
|
|
185
|
-
|
|
186
|
-
interface AuthorizationParametersForm {
|
|
187
|
-
readonly 'order_number': string;
|
|
188
|
-
readonly 'amount': number;
|
|
189
|
-
readonly 'currency': string;
|
|
190
|
-
readonly 'billing_address'?: io.flow.common.v0.models.BillingAddress;
|
|
191
|
-
readonly 'ip'?: string;
|
|
192
|
-
readonly 'origin_url'?: string;
|
|
193
|
-
}
|
|
194
|
-
|
|
195
|
-
interface BitpayAccount {
|
|
196
|
-
readonly 'discriminator': 'bitpay_account';
|
|
197
|
-
readonly 'id': string;
|
|
198
|
-
readonly 'organization_id': string;
|
|
199
|
-
readonly 'key': string;
|
|
200
|
-
readonly 'owner': io.flow.payment.internal.v0.enums.Owner;
|
|
201
|
-
readonly 'authentication': io.flow.payment.internal.v0.models.BitpayAuthentication;
|
|
202
|
-
readonly 'country': string;
|
|
203
|
-
readonly 'status': io.flow.payment.internal.v0.enums.ProcessorEntityStatus;
|
|
204
|
-
readonly 'organization_capability': io.flow.payment.internal.v0.enums.OrganizationCapability;
|
|
205
|
-
readonly 'created_at': string;
|
|
206
|
-
readonly 'updated_at': string;
|
|
207
|
-
}
|
|
208
|
-
|
|
209
|
-
interface BitpayAccountModificationForm {
|
|
210
|
-
readonly 'discriminator': 'bitpay_account_modification_form';
|
|
211
|
-
readonly 'owner': io.flow.payment.internal.v0.enums.Owner;
|
|
212
|
-
readonly 'country': string;
|
|
213
|
-
readonly 'status': io.flow.payment.internal.v0.enums.ProcessorEntityStatus;
|
|
214
|
-
}
|
|
215
|
-
|
|
216
|
-
interface BitpayAccountPutForm {
|
|
217
|
-
readonly 'discriminator': 'bitpay_account_put_form';
|
|
218
|
-
readonly 'owner'?: io.flow.payment.internal.v0.enums.Owner;
|
|
219
|
-
readonly 'authentication': io.flow.payment.internal.v0.models.BitpayAuthenticationForm;
|
|
220
|
-
readonly 'country': string;
|
|
221
|
-
readonly 'status'?: io.flow.payment.internal.v0.enums.ProcessorEntityStatus;
|
|
222
|
-
readonly 'organization_capability'?: io.flow.payment.internal.v0.enums.OrganizationCapability;
|
|
223
|
-
}
|
|
224
|
-
|
|
225
|
-
interface BitpayAuthentication {
|
|
226
|
-
readonly 'api_token': string;
|
|
227
|
-
readonly 'public_key': string;
|
|
228
|
-
readonly 'secret_key_reference': string;
|
|
229
|
-
}
|
|
230
|
-
|
|
231
|
-
interface BitpayAuthenticationDataReference {
|
|
232
|
-
readonly 'id': string;
|
|
233
|
-
}
|
|
234
|
-
|
|
235
|
-
interface BitpayAuthenticationForm {
|
|
236
|
-
readonly 'api_token': string;
|
|
237
|
-
readonly 'public_key': string;
|
|
238
|
-
readonly 'secret_key': string;
|
|
239
|
-
}
|
|
240
|
-
|
|
241
|
-
interface Chargeback {
|
|
242
|
-
readonly 'id': string;
|
|
243
|
-
readonly 'key': string;
|
|
244
|
-
readonly 'authorization': io.flow.payment.v0.models.AuthorizationReference;
|
|
245
|
-
readonly 'amount': number;
|
|
246
|
-
readonly 'currency': string;
|
|
247
|
-
readonly 'base'?: io.flow.common.v0.models.Money;
|
|
248
|
-
readonly 'chargeback_issued_at': string;
|
|
249
|
-
readonly 'created_at': string;
|
|
250
|
-
readonly 'payment_status': io.flow.payment.internal.v0.enums.ChargebackPaymentStatus;
|
|
251
|
-
readonly 'process_status': io.flow.payment.internal.v0.enums.ChargebackProcessStatus;
|
|
252
|
-
readonly 'processor': io.flow.payment.internal.v0.enums.Processor;
|
|
253
|
-
readonly 'processor_reason': string;
|
|
254
|
-
readonly 'processor_status': string;
|
|
255
|
-
readonly 'processor_reference'?: string;
|
|
256
|
-
readonly 'provider_reference'?: string;
|
|
257
|
-
readonly 'provider_reason_code'?: string;
|
|
258
|
-
}
|
|
259
|
-
|
|
260
|
-
interface ChargebackVersion {
|
|
261
|
-
readonly 'id': string;
|
|
262
|
-
readonly 'timestamp': string;
|
|
263
|
-
readonly 'type': io.flow.common.v0.enums.ChangeType;
|
|
264
|
-
readonly 'chargeback': io.flow.payment.internal.v0.models.Chargeback;
|
|
265
|
-
}
|
|
266
|
-
|
|
267
|
-
interface Cipher {
|
|
268
|
-
readonly 'id': string;
|
|
269
|
-
readonly 'attributes': Record<string, string>;
|
|
270
|
-
}
|
|
271
|
-
|
|
272
|
-
interface CipherForm {
|
|
273
|
-
readonly 'text': string;
|
|
274
|
-
readonly 'attributes'?: Record<string, string>;
|
|
275
|
-
readonly 'password'?: string;
|
|
276
|
-
}
|
|
277
|
-
|
|
278
|
-
interface CipherReference {
|
|
279
|
-
readonly 'id': string;
|
|
280
|
-
}
|
|
281
|
-
|
|
282
|
-
interface ClassicPaymentRedirectForm {
|
|
283
|
-
readonly 'MD': string;
|
|
284
|
-
readonly 'PaRes': string;
|
|
285
|
-
}
|
|
286
|
-
|
|
287
|
-
interface CryptoAccount {
|
|
288
|
-
readonly 'discriminator': 'crypto_account';
|
|
289
|
-
readonly 'id': string;
|
|
290
|
-
readonly 'organization_id': string;
|
|
291
|
-
readonly 'key': string;
|
|
292
|
-
readonly 'owner': io.flow.payment.internal.v0.enums.Owner;
|
|
293
|
-
readonly 'authentication': io.flow.payment.internal.v0.models.CryptoAuthentication;
|
|
294
|
-
readonly 'country': string;
|
|
295
|
-
readonly 'status': io.flow.payment.internal.v0.enums.ProcessorEntityStatus;
|
|
296
|
-
readonly 'organization_capability': io.flow.payment.internal.v0.enums.OrganizationCapability;
|
|
297
|
-
readonly 'created_at': string;
|
|
298
|
-
readonly 'updated_at': string;
|
|
299
|
-
}
|
|
300
|
-
|
|
301
|
-
interface CryptoAccountModificationForm {
|
|
302
|
-
readonly 'discriminator': 'crypto_account_modification_form';
|
|
303
|
-
readonly 'owner': io.flow.payment.internal.v0.enums.Owner;
|
|
304
|
-
readonly 'country': string;
|
|
305
|
-
readonly 'status': io.flow.payment.internal.v0.enums.ProcessorEntityStatus;
|
|
306
|
-
}
|
|
307
|
-
|
|
308
|
-
interface CryptoAccountPutForm {
|
|
309
|
-
readonly 'discriminator': 'crypto_account_put_form';
|
|
310
|
-
readonly 'owner'?: io.flow.payment.internal.v0.enums.Owner;
|
|
311
|
-
readonly 'authentication': io.flow.payment.internal.v0.models.CryptoAuthenticationForm;
|
|
312
|
-
readonly 'country': string;
|
|
313
|
-
readonly 'status'?: io.flow.payment.internal.v0.enums.ProcessorEntityStatus;
|
|
314
|
-
readonly 'organization_capability'?: io.flow.payment.internal.v0.enums.OrganizationCapability;
|
|
315
|
-
}
|
|
316
|
-
|
|
317
|
-
interface CryptoAuthentication {
|
|
318
|
-
readonly 'public_key': string;
|
|
319
|
-
readonly 'secret_key_reference': string;
|
|
320
|
-
readonly 'signature_secret_reference': string;
|
|
321
|
-
}
|
|
322
|
-
|
|
323
|
-
interface CryptoAuthenticationForm {
|
|
324
|
-
readonly 'public_key': string;
|
|
325
|
-
readonly 'secret_key': string;
|
|
326
|
-
readonly 'signature_secret': string;
|
|
327
|
-
}
|
|
328
|
-
|
|
329
|
-
interface DecryptCipherForm {
|
|
330
|
-
readonly 'id': string;
|
|
331
|
-
readonly 'password': string;
|
|
332
|
-
}
|
|
333
|
-
|
|
334
|
-
interface DecryptedCipher {
|
|
335
|
-
readonly 'id': string;
|
|
336
|
-
readonly 'cleartext': string;
|
|
337
|
-
readonly 'attributes': Record<string, string>;
|
|
338
|
-
}
|
|
339
|
-
|
|
340
|
-
interface Encryption {
|
|
341
|
-
readonly 'id': string;
|
|
342
|
-
readonly 'key': io.flow.payment.internal.v0.models.KeyReference;
|
|
343
|
-
readonly 'iv': string;
|
|
344
|
-
readonly 'cipher': string;
|
|
345
|
-
readonly 'passphrase_ids': string[];
|
|
346
|
-
}
|
|
347
|
-
|
|
348
|
-
interface FinancialMerchantCategory {
|
|
349
|
-
readonly 'id': string;
|
|
350
|
-
readonly 'iso_18245_4': string;
|
|
351
|
-
readonly 'title': string;
|
|
352
|
-
readonly 'category_group': string;
|
|
353
|
-
readonly 'description'?: string;
|
|
354
|
-
}
|
|
355
|
-
|
|
356
|
-
interface FiservAccount {
|
|
357
|
-
readonly 'discriminator': 'fiserv_account';
|
|
358
|
-
readonly 'id': string;
|
|
359
|
-
readonly 'organization_id': string;
|
|
360
|
-
readonly 'key': string;
|
|
361
|
-
readonly 'owner': io.flow.payment.internal.v0.enums.Owner;
|
|
362
|
-
readonly 'region': string;
|
|
363
|
-
readonly 'authentication': io.flow.payment.internal.v0.models.FiservAuthentication;
|
|
364
|
-
readonly 'country': string;
|
|
365
|
-
readonly 'status': io.flow.payment.internal.v0.enums.ProcessorEntityStatus;
|
|
366
|
-
readonly 'organization_capability': io.flow.payment.internal.v0.enums.OrganizationCapability;
|
|
367
|
-
readonly 'created_at': string;
|
|
368
|
-
readonly 'updated_at': string;
|
|
369
|
-
}
|
|
370
|
-
|
|
371
|
-
interface FiservAccountModificationForm {
|
|
372
|
-
readonly 'discriminator': 'fiserv_account_modification_form';
|
|
373
|
-
readonly 'owner': io.flow.payment.internal.v0.enums.Owner;
|
|
374
|
-
readonly 'region': string;
|
|
375
|
-
readonly 'country': string;
|
|
376
|
-
readonly 'status': io.flow.payment.internal.v0.enums.ProcessorEntityStatus;
|
|
377
|
-
}
|
|
378
|
-
|
|
379
|
-
interface FiservAccountPutForm {
|
|
380
|
-
readonly 'discriminator': 'fiserv_account_put_form';
|
|
381
|
-
readonly 'owner'?: io.flow.payment.internal.v0.enums.Owner;
|
|
382
|
-
readonly 'region': string;
|
|
383
|
-
readonly 'authentication': io.flow.payment.internal.v0.models.FiservAuthenticationForm;
|
|
384
|
-
readonly 'country': string;
|
|
385
|
-
readonly 'status'?: io.flow.payment.internal.v0.enums.ProcessorEntityStatus;
|
|
386
|
-
readonly 'organization_capability'?: io.flow.payment.internal.v0.enums.OrganizationCapability;
|
|
387
|
-
}
|
|
388
|
-
|
|
389
|
-
interface FiservAuthentication {
|
|
390
|
-
readonly 'public_key': string;
|
|
391
|
-
readonly 'secret_key_reference': string;
|
|
392
|
-
}
|
|
393
|
-
|
|
394
|
-
interface FiservAuthenticationDataReference {
|
|
395
|
-
readonly 'account_id': string;
|
|
396
|
-
readonly 'store_id': string;
|
|
397
|
-
}
|
|
398
|
-
|
|
399
|
-
interface FiservAuthenticationForm {
|
|
400
|
-
readonly 'public_key': string;
|
|
401
|
-
readonly 'secret_key': string;
|
|
402
|
-
}
|
|
403
|
-
|
|
404
|
-
interface FiservMerchant {
|
|
405
|
-
readonly 'discriminator': 'fiserv_merchant';
|
|
406
|
-
readonly 'id': string;
|
|
407
|
-
readonly 'key': string;
|
|
408
|
-
readonly 'organization_id': string;
|
|
409
|
-
readonly 'external_id': string;
|
|
410
|
-
readonly 'processor_account_reference': io.flow.payment.internal.v0.models.ProcessorAccountReference;
|
|
411
|
-
readonly 'base_currency': string;
|
|
412
|
-
readonly 'funding_currency': string;
|
|
413
|
-
readonly 'country': string;
|
|
414
|
-
readonly 'status': io.flow.payment.internal.v0.enums.ProcessorEntityStatus;
|
|
415
|
-
readonly 'organization_capability': io.flow.payment.internal.v0.enums.OrganizationCapability;
|
|
416
|
-
readonly 'created_at': string;
|
|
417
|
-
readonly 'updated_at': string;
|
|
418
|
-
}
|
|
419
|
-
|
|
420
|
-
interface FiservMerchantModificationForm {
|
|
421
|
-
readonly 'discriminator': 'fiserv_merchant_modification_form';
|
|
422
|
-
readonly 'external_id': string;
|
|
423
|
-
readonly 'base_currency': string;
|
|
424
|
-
readonly 'funding_currency': string;
|
|
425
|
-
readonly 'country': string;
|
|
426
|
-
readonly 'status': io.flow.payment.internal.v0.enums.ProcessorEntityStatus;
|
|
427
|
-
}
|
|
428
|
-
|
|
429
|
-
interface FiservMerchantPutForm {
|
|
430
|
-
readonly 'discriminator': 'fiserv_merchant_put_form';
|
|
431
|
-
readonly 'organization_id': string;
|
|
432
|
-
readonly 'external_id': string;
|
|
433
|
-
readonly 'base_currency': string;
|
|
434
|
-
readonly 'funding_currency': string;
|
|
435
|
-
readonly 'country': string;
|
|
436
|
-
readonly 'status'?: io.flow.payment.internal.v0.enums.ProcessorEntityStatus;
|
|
437
|
-
readonly 'organization_capability'?: io.flow.payment.internal.v0.enums.OrganizationCapability;
|
|
438
|
-
}
|
|
439
|
-
|
|
440
|
-
interface InternalAdyenAuthorizationDetails {
|
|
441
|
-
readonly 'discriminator': 'internal_adyen_authorization_details';
|
|
442
|
-
readonly 'adyen_authentication_data': io.flow.payment.internal.v0.models.AdyenAuthenticationDataReference;
|
|
443
|
-
}
|
|
444
|
-
|
|
445
|
-
interface InternalAfterpayAuthorizationDetails {
|
|
446
|
-
readonly 'discriminator': 'internal_afterpay_authorization_details';
|
|
447
|
-
readonly 'afterpay_authentication_data': io.flow.payment.internal.v0.models.AfterpayAuthenticationDataReference;
|
|
448
|
-
}
|
|
449
|
-
|
|
450
|
-
interface InternalBitpayAuthorizationDetails {
|
|
451
|
-
readonly 'discriminator': 'internal_bitpay_authorization_details';
|
|
452
|
-
readonly 'bitpay_authentication_data': io.flow.payment.internal.v0.models.BitpayAuthenticationDataReference;
|
|
453
|
-
}
|
|
454
|
-
|
|
455
|
-
interface InternalFiservAuthorizationDetails {
|
|
456
|
-
readonly 'discriminator': 'internal_fiserv_authorization_details';
|
|
457
|
-
readonly 'fiserv_authentication_data': io.flow.payment.internal.v0.models.FiservAuthenticationDataReference;
|
|
458
|
-
}
|
|
459
|
-
|
|
460
|
-
interface InternalPaymentRequest {
|
|
461
|
-
readonly 'payment_request': io.flow.payment.gateway.v0.models.PaymentRequest;
|
|
462
|
-
readonly 'actual_action'?: io.flow.payment.gateway.v0.unions.Action;
|
|
463
|
-
}
|
|
464
|
-
|
|
465
|
-
interface InternalPaymentRequestVerification {
|
|
466
|
-
readonly 'placeholder'?: string;
|
|
467
|
-
}
|
|
468
|
-
|
|
469
|
-
interface InternalPaypalAuthorizationDetails {
|
|
470
|
-
readonly 'discriminator': 'internal_paypal_authorization_details';
|
|
471
|
-
readonly 'paypal_authentication_data': io.flow.payment.internal.v0.models.PaypalAccountReference;
|
|
472
|
-
}
|
|
473
|
-
|
|
474
|
-
interface InternalStripeAuthorizationDetails {
|
|
475
|
-
readonly 'discriminator': 'internal_stripe_authorization_details';
|
|
476
|
-
readonly 'stripe_authentication_data': io.flow.payment.internal.v0.models.StripeAuthenticationDataReference;
|
|
477
|
-
}
|
|
478
|
-
|
|
479
|
-
interface InternalTransactionDetailsCard {
|
|
480
|
-
readonly 'type': 'card';
|
|
481
|
-
readonly 'address_verification_result'?: io.flow.payment.v0.models.AddressVerificationResult;
|
|
482
|
-
readonly 'cvv_result'?: io.flow.payment.v0.models.CvvResult;
|
|
483
|
-
readonly 'network_details'?: io.flow.payment.v0.models.TransactionNetworkDetailsCard;
|
|
484
|
-
}
|
|
485
|
-
|
|
486
|
-
interface Key {
|
|
487
|
-
readonly 'id': string;
|
|
488
|
-
readonly 'created_at': string;
|
|
489
|
-
}
|
|
490
|
-
|
|
491
|
-
interface KeyReference {
|
|
492
|
-
readonly 'id': string;
|
|
493
|
-
}
|
|
494
|
-
|
|
495
|
-
interface KlarnaAuthorizationParameters {
|
|
496
|
-
readonly 'discriminator': 'klarna_authorization_parameters';
|
|
497
|
-
readonly 'client_token': string;
|
|
498
|
-
readonly 'payment_method_categories': io.flow.payment.internal.v0.models.KlarnaPaymentMethodCategory[];
|
|
499
|
-
}
|
|
500
|
-
|
|
501
|
-
interface KlarnaPaymentMethodCategory {
|
|
502
|
-
readonly 'id': string;
|
|
503
|
-
readonly 'name'?: string;
|
|
504
|
-
readonly 'standard_asset_urls'?: string;
|
|
505
|
-
readonly 'descriptive_asset_urls'?: string;
|
|
506
|
-
}
|
|
507
|
-
|
|
508
|
-
interface OnlineAuthorizationCompleted {
|
|
509
|
-
readonly 'discriminator': 'online_authorization_completed';
|
|
510
|
-
readonly 'id': string;
|
|
511
|
-
readonly 'organization': string;
|
|
512
|
-
readonly 'key': string;
|
|
513
|
-
readonly 'expires_at': string;
|
|
514
|
-
}
|
|
515
|
-
|
|
516
|
-
interface OrganizationPaymentSetting {
|
|
517
|
-
readonly 'id': string;
|
|
518
|
-
readonly 'organization_id': string;
|
|
519
|
-
readonly 'default_capture_option': io.flow.payment.gateway.v0.unions.PaymentCaptureOption;
|
|
520
|
-
readonly 'status': io.flow.payment.internal.v0.enums.OrganizationPaymentStatus;
|
|
521
|
-
readonly 'checkout_domain'?: string;
|
|
522
|
-
readonly 'merchant_category_code'?: string;
|
|
523
|
-
readonly 'payment_statement_suffix'?: string;
|
|
524
|
-
readonly 'payment_statement_condensed'?: string;
|
|
525
|
-
readonly 'created_at': string;
|
|
526
|
-
readonly 'updated_at': string;
|
|
527
|
-
}
|
|
528
|
-
|
|
529
|
-
interface OrganizationPaymentSettingForm {
|
|
530
|
-
readonly 'default_capture_option': io.flow.payment.gateway.v0.unions.PaymentCaptureOption;
|
|
531
|
-
readonly 'status': io.flow.payment.internal.v0.enums.OrganizationPaymentStatus;
|
|
532
|
-
readonly 'checkout_domain'?: string;
|
|
533
|
-
readonly 'merchant_category_code'?: string;
|
|
534
|
-
readonly 'payment_statement_suffix'?: string;
|
|
535
|
-
}
|
|
536
|
-
|
|
537
|
-
interface OrganizationPaymentSettingVersion {
|
|
538
|
-
readonly 'id': string;
|
|
539
|
-
readonly 'timestamp': string;
|
|
540
|
-
readonly 'type': io.flow.common.v0.enums.ChangeType;
|
|
541
|
-
readonly 'organization_payment_setting': io.flow.payment.internal.v0.models.OrganizationPaymentSetting;
|
|
542
|
-
}
|
|
543
|
-
|
|
544
|
-
interface Passphrase {
|
|
545
|
-
readonly 'id': string;
|
|
546
|
-
readonly 'tribe': io.flow.payment.internal.v0.models.Tribe;
|
|
547
|
-
readonly 'salt': string;
|
|
548
|
-
readonly 'iv': string;
|
|
549
|
-
readonly 'challenge_cipher': string;
|
|
550
|
-
readonly 'challenge_text': string;
|
|
551
|
-
}
|
|
552
|
-
|
|
553
|
-
interface PassphraseForm {
|
|
554
|
-
readonly 'tribe': string;
|
|
555
|
-
readonly 'current_password'?: string;
|
|
556
|
-
readonly 'new_password': string;
|
|
557
|
-
}
|
|
558
|
-
|
|
559
|
-
interface PassphraseSummary {
|
|
560
|
-
readonly 'id': string;
|
|
561
|
-
readonly 'tribe': io.flow.payment.internal.v0.models.Tribe;
|
|
562
|
-
}
|
|
563
|
-
|
|
564
|
-
interface PaymentMethodDetail {
|
|
565
|
-
readonly 'method': io.flow.reference.v0.models.PaymentMethod;
|
|
566
|
-
readonly 'method_options'?: io.flow.payment.internal.v0.models.PaymentMethodOption[];
|
|
567
|
-
}
|
|
568
|
-
|
|
569
|
-
interface PaymentMethodOption {
|
|
570
|
-
readonly 'id': string;
|
|
571
|
-
readonly 'name': string;
|
|
572
|
-
readonly 'logo'?: io.flow.common.v0.unions.LogoImage;
|
|
573
|
-
}
|
|
574
|
-
|
|
575
|
-
interface PaymentOrganizationSettings {
|
|
576
|
-
readonly 'id': string;
|
|
577
|
-
readonly 'enable_auto_capture': boolean;
|
|
578
|
-
readonly 'link_capture_to_vcc': boolean;
|
|
579
|
-
readonly 'purge_ciphers': boolean;
|
|
580
|
-
readonly 'domain'?: string;
|
|
581
|
-
readonly 'merchant_category_code'?: number;
|
|
582
|
-
readonly 'payment_statement_suffix'?: string;
|
|
583
|
-
readonly 'payment_statement_condensed'?: string;
|
|
584
|
-
}
|
|
585
|
-
|
|
586
|
-
interface PaymentOrganizationSettingsPutForm {
|
|
587
|
-
readonly 'enable_auto_capture'?: boolean;
|
|
588
|
-
readonly 'link_capture_to_vcc'?: boolean;
|
|
589
|
-
readonly 'purge_ciphers'?: boolean;
|
|
590
|
-
readonly 'domain'?: string;
|
|
591
|
-
readonly 'merchant_category_code'?: number;
|
|
592
|
-
readonly 'payment_statement_suffix'?: string;
|
|
593
|
-
}
|
|
594
|
-
|
|
595
|
-
interface PaypalAccount {
|
|
596
|
-
readonly 'discriminator': 'paypal_account';
|
|
597
|
-
readonly 'id': string;
|
|
598
|
-
readonly 'organization_id': string;
|
|
599
|
-
readonly 'key': string;
|
|
600
|
-
readonly 'owner': io.flow.payment.internal.v0.enums.Owner;
|
|
601
|
-
readonly 'country': string;
|
|
602
|
-
readonly 'authentication': io.flow.payment.internal.v0.models.PaypalAuthentication;
|
|
603
|
-
readonly 'status': io.flow.payment.internal.v0.enums.ProcessorEntityStatus;
|
|
604
|
-
readonly 'organization_capability': io.flow.payment.internal.v0.enums.OrganizationCapability;
|
|
605
|
-
readonly 'created_at': string;
|
|
606
|
-
readonly 'updated_at': string;
|
|
607
|
-
}
|
|
608
|
-
|
|
609
|
-
interface PaypalAccountModificationForm {
|
|
610
|
-
readonly 'discriminator': 'paypal_account_modification_form';
|
|
611
|
-
readonly 'owner': io.flow.payment.internal.v0.enums.Owner;
|
|
612
|
-
readonly 'country': string;
|
|
613
|
-
readonly 'status': io.flow.payment.internal.v0.enums.ProcessorEntityStatus;
|
|
614
|
-
}
|
|
615
|
-
|
|
616
|
-
interface PaypalAccountPutForm {
|
|
617
|
-
readonly 'discriminator': 'paypal_account_put_form';
|
|
618
|
-
readonly 'owner'?: io.flow.payment.internal.v0.enums.Owner;
|
|
619
|
-
readonly 'country': string;
|
|
620
|
-
readonly 'authentication': io.flow.payment.internal.v0.models.PaypalAuthenticationForm;
|
|
621
|
-
readonly 'status'?: io.flow.payment.internal.v0.enums.ProcessorEntityStatus;
|
|
622
|
-
readonly 'organization_capability'?: io.flow.payment.internal.v0.enums.OrganizationCapability;
|
|
623
|
-
}
|
|
624
|
-
|
|
625
|
-
interface PaypalAccountReference {
|
|
626
|
-
readonly 'id': string;
|
|
627
|
-
readonly 'flow_merchant_id'?: string;
|
|
628
|
-
}
|
|
629
|
-
|
|
630
|
-
interface PaypalAuthentication {
|
|
631
|
-
readonly 'username': string;
|
|
632
|
-
readonly 'password_reference': string;
|
|
633
|
-
}
|
|
634
|
-
|
|
635
|
-
interface PaypalAuthenticationForm {
|
|
636
|
-
readonly 'username': string;
|
|
637
|
-
readonly 'password': string;
|
|
638
|
-
}
|
|
639
|
-
|
|
640
|
-
interface PaypalAuthorizationPayload {
|
|
641
|
-
readonly 'discriminator': 'paypal_authorization_payload';
|
|
642
|
-
readonly 'payment_id': string;
|
|
643
|
-
readonly 'payer_id': string;
|
|
644
|
-
}
|
|
645
|
-
|
|
646
|
-
interface PaypalMerchant {
|
|
647
|
-
readonly 'discriminator': 'paypal_merchant';
|
|
648
|
-
readonly 'id': string;
|
|
649
|
-
readonly 'key': string;
|
|
650
|
-
readonly 'organization_id': string;
|
|
651
|
-
readonly 'external_id': string;
|
|
652
|
-
readonly 'processor_account_reference': io.flow.payment.internal.v0.models.ProcessorAccountReference;
|
|
653
|
-
readonly 'country': string;
|
|
654
|
-
readonly 'status': io.flow.payment.internal.v0.enums.ProcessorEntityStatus;
|
|
655
|
-
readonly 'organization_capability': io.flow.payment.internal.v0.enums.OrganizationCapability;
|
|
656
|
-
readonly 'created_at': string;
|
|
657
|
-
readonly 'updated_at': string;
|
|
658
|
-
}
|
|
659
|
-
|
|
660
|
-
interface PaypalMerchantModificationForm {
|
|
661
|
-
readonly 'discriminator': 'paypal_merchant_modification_form';
|
|
662
|
-
readonly 'external_id': string;
|
|
663
|
-
readonly 'country': string;
|
|
664
|
-
readonly 'status'?: io.flow.payment.internal.v0.enums.ProcessorEntityStatus;
|
|
665
|
-
}
|
|
666
|
-
|
|
667
|
-
interface PaypalMerchantPutForm {
|
|
668
|
-
readonly 'discriminator': 'paypal_merchant_put_form';
|
|
669
|
-
readonly 'organization_id': string;
|
|
670
|
-
readonly 'external_id': string;
|
|
671
|
-
readonly 'country': string;
|
|
672
|
-
readonly 'status'?: io.flow.payment.internal.v0.enums.ProcessorEntityStatus;
|
|
673
|
-
readonly 'organization_capability'?: io.flow.payment.internal.v0.enums.OrganizationCapability;
|
|
674
|
-
}
|
|
675
|
-
|
|
676
|
-
interface ProcessorAccountReference {
|
|
677
|
-
readonly 'id': string;
|
|
678
|
-
readonly 'organization_id': string;
|
|
679
|
-
readonly 'key': string;
|
|
680
|
-
readonly 'processor': io.flow.payment.internal.v0.enums.Processor;
|
|
681
|
-
readonly 'country': string;
|
|
682
|
-
readonly 'owner': io.flow.payment.internal.v0.enums.Owner;
|
|
683
|
-
readonly 'status': io.flow.payment.internal.v0.enums.ProcessorEntityStatus;
|
|
684
|
-
readonly 'organization_capability': io.flow.payment.internal.v0.enums.OrganizationCapability;
|
|
685
|
-
}
|
|
686
|
-
|
|
687
|
-
interface ProcessorEntityStatusForm {
|
|
688
|
-
readonly 'status': io.flow.payment.internal.v0.enums.ProcessorEntityStatus;
|
|
689
|
-
}
|
|
690
|
-
|
|
691
|
-
interface ProcessorMerchantReference {
|
|
692
|
-
readonly 'id': string;
|
|
693
|
-
readonly 'organization_id': string;
|
|
694
|
-
readonly 'key': string;
|
|
695
|
-
readonly 'processor': io.flow.payment.internal.v0.enums.Processor;
|
|
696
|
-
readonly 'country': string;
|
|
697
|
-
readonly 'status': io.flow.payment.internal.v0.enums.ProcessorEntityStatus;
|
|
698
|
-
readonly 'organization_capability': io.flow.payment.internal.v0.enums.OrganizationCapability;
|
|
699
|
-
}
|
|
700
|
-
|
|
701
|
-
interface Redirect {
|
|
702
|
-
readonly 'id': string;
|
|
703
|
-
readonly 'post_payment_redirect_urls': io.flow.payment.v0.models.PostPaymentRedirectUrls;
|
|
704
|
-
readonly 'reason': io.flow.payment.internal.v0.enums.RedirectReason;
|
|
705
|
-
}
|
|
706
|
-
|
|
707
|
-
interface RedirectActionCompleted {
|
|
708
|
-
readonly 'discriminator': 'redirect_action_completed';
|
|
709
|
-
readonly 'id': string;
|
|
710
|
-
readonly 'organization': string;
|
|
711
|
-
readonly 'key': string;
|
|
712
|
-
readonly 'expires_at': string;
|
|
713
|
-
readonly 'post_payment_redirect_urls': io.flow.payment.v0.models.PostPaymentRedirectUrls;
|
|
714
|
-
readonly 'inline_notification_urls'?: io.flow.payment.v0.models.PostPaymentRedirectUrls;
|
|
715
|
-
}
|
|
716
|
-
|
|
717
|
-
interface RoutingAccount {
|
|
718
|
-
readonly 'discriminator': 'routing_account';
|
|
719
|
-
readonly 'processor': io.flow.payment.internal.v0.enums.Processor;
|
|
720
|
-
readonly 'processor_account': io.flow.payment.internal.v0.models.ProcessorAccountReference;
|
|
721
|
-
}
|
|
722
|
-
|
|
723
|
-
interface RoutingMerchant {
|
|
724
|
-
readonly 'discriminator': 'routing_merchant';
|
|
725
|
-
readonly 'processor': io.flow.payment.internal.v0.enums.Processor;
|
|
726
|
-
readonly 'processor_account': io.flow.payment.internal.v0.models.ProcessorAccountReference;
|
|
727
|
-
readonly 'processor_merchant': io.flow.payment.internal.v0.models.ProcessorMerchantReference;
|
|
728
|
-
}
|
|
729
|
-
|
|
730
|
-
interface RoutingProcessor {
|
|
731
|
-
readonly 'discriminator': 'routing_processor';
|
|
732
|
-
readonly 'processor': io.flow.payment.internal.v0.enums.Processor;
|
|
733
|
-
}
|
|
734
|
-
|
|
735
|
-
interface StripeAccount {
|
|
736
|
-
readonly 'discriminator': 'stripe_account';
|
|
737
|
-
readonly 'id': string;
|
|
738
|
-
readonly 'organization_id': string;
|
|
739
|
-
readonly 'key': string;
|
|
740
|
-
readonly 'owner': io.flow.payment.internal.v0.enums.Owner;
|
|
741
|
-
readonly 'name': string;
|
|
742
|
-
readonly 'external_id': string;
|
|
743
|
-
readonly 'country': string;
|
|
744
|
-
readonly 'authentication': io.flow.payment.internal.v0.models.StripeAuthentication;
|
|
745
|
-
readonly 'status': io.flow.payment.internal.v0.enums.ProcessorEntityStatus;
|
|
746
|
-
readonly 'organization_capability': io.flow.payment.internal.v0.enums.OrganizationCapability;
|
|
747
|
-
readonly 'created_at': string;
|
|
748
|
-
readonly 'updated_at': string;
|
|
749
|
-
}
|
|
750
|
-
|
|
751
|
-
interface StripeAccountModificationForm {
|
|
752
|
-
readonly 'discriminator': 'stripe_account_modification_form';
|
|
753
|
-
readonly 'owner': io.flow.payment.internal.v0.enums.Owner;
|
|
754
|
-
readonly 'name': string;
|
|
755
|
-
readonly 'external_id': string;
|
|
756
|
-
readonly 'country': string;
|
|
757
|
-
readonly 'status': io.flow.payment.internal.v0.enums.ProcessorEntityStatus;
|
|
758
|
-
}
|
|
759
|
-
|
|
760
|
-
interface StripeAccountPutForm {
|
|
761
|
-
readonly 'discriminator': 'stripe_account_put_form';
|
|
762
|
-
readonly 'owner'?: io.flow.payment.internal.v0.enums.Owner;
|
|
763
|
-
readonly 'name': string;
|
|
764
|
-
readonly 'external_id': string;
|
|
765
|
-
readonly 'country': string;
|
|
766
|
-
readonly 'authentication': io.flow.payment.internal.v0.models.StripeAuthenticationForm;
|
|
767
|
-
readonly 'status'?: io.flow.payment.internal.v0.enums.ProcessorEntityStatus;
|
|
768
|
-
readonly 'organization_capability'?: io.flow.payment.internal.v0.enums.OrganizationCapability;
|
|
769
|
-
}
|
|
770
|
-
|
|
771
|
-
interface StripeAuthentication {
|
|
772
|
-
readonly 'public_key': string;
|
|
773
|
-
readonly 'secret_key_reference': string;
|
|
774
|
-
}
|
|
775
|
-
|
|
776
|
-
interface StripeAuthenticationDataReference {
|
|
777
|
-
readonly 'id': string;
|
|
778
|
-
}
|
|
779
|
-
|
|
780
|
-
interface StripeAuthenticationForm {
|
|
781
|
-
readonly 'public_key': string;
|
|
782
|
-
readonly 'secret_key': string;
|
|
783
|
-
}
|
|
784
|
-
|
|
785
|
-
interface StripeMerchant {
|
|
786
|
-
readonly 'discriminator': 'stripe_merchant';
|
|
787
|
-
readonly 'id': string;
|
|
788
|
-
readonly 'key': string;
|
|
789
|
-
readonly 'organization_id': string;
|
|
790
|
-
readonly 'external_id': string;
|
|
791
|
-
readonly 'processor_account_reference': io.flow.payment.internal.v0.models.ProcessorAccountReference;
|
|
792
|
-
readonly 'name': string;
|
|
793
|
-
readonly 'account_type': io.flow.stripe.v0.enums.AccountType;
|
|
794
|
-
readonly 'country': string;
|
|
795
|
-
readonly 'status': io.flow.payment.internal.v0.enums.ProcessorEntityStatus;
|
|
796
|
-
readonly 'organization_capability': io.flow.payment.internal.v0.enums.OrganizationCapability;
|
|
797
|
-
readonly 'created_at': string;
|
|
798
|
-
readonly 'updated_at': string;
|
|
799
|
-
}
|
|
800
|
-
|
|
801
|
-
interface StripeMerchantForm {
|
|
802
|
-
readonly 'discriminator': 'stripe_merchant_form';
|
|
803
|
-
readonly 'key'?: string;
|
|
804
|
-
readonly 'organization_id': string;
|
|
805
|
-
readonly 'name': string;
|
|
806
|
-
readonly 'account_type': io.flow.stripe.v0.enums.AccountType;
|
|
807
|
-
readonly 'country': string;
|
|
808
|
-
readonly 'payment_statement': string;
|
|
809
|
-
readonly 'status'?: io.flow.payment.internal.v0.enums.ProcessorEntityStatus;
|
|
810
|
-
}
|
|
811
|
-
|
|
812
|
-
interface StripeMerchantModificationForm {
|
|
813
|
-
readonly 'discriminator': 'stripe_merchant_modification_form';
|
|
814
|
-
readonly 'external_id': string;
|
|
815
|
-
readonly 'name': string;
|
|
816
|
-
readonly 'account_type': io.flow.stripe.v0.enums.AccountType;
|
|
817
|
-
readonly 'status': io.flow.payment.internal.v0.enums.ProcessorEntityStatus;
|
|
818
|
-
readonly 'country': string;
|
|
819
|
-
}
|
|
820
|
-
|
|
821
|
-
interface StripeMerchantPutForm {
|
|
822
|
-
readonly 'discriminator': 'stripe_merchant_put_form';
|
|
823
|
-
readonly 'organization_id': string;
|
|
824
|
-
readonly 'external_id': string;
|
|
825
|
-
readonly 'name': string;
|
|
826
|
-
readonly 'account_type': io.flow.stripe.v0.enums.AccountType;
|
|
827
|
-
readonly 'status'?: io.flow.payment.internal.v0.enums.ProcessorEntityStatus;
|
|
828
|
-
readonly 'country': string;
|
|
829
|
-
readonly 'organization_capability'?: io.flow.payment.internal.v0.enums.OrganizationCapability;
|
|
830
|
-
}
|
|
831
|
-
|
|
832
|
-
interface Tribe {
|
|
833
|
-
readonly 'id': string;
|
|
834
|
-
readonly 'description': string;
|
|
835
|
-
}
|
|
836
|
-
}
|
|
837
|
-
|
|
838
|
-
declare namespace io.flow.payment.internal.v0.unions {
|
|
839
|
-
type AuthorizationPayload = (io.flow.payment.internal.v0.models.ApplePayAuthorizationPayload | io.flow.payment.internal.v0.models.PaypalAuthorizationPayload);
|
|
840
|
-
type InlineAuthorizationParameters = (io.flow.payment.internal.v0.models.KlarnaAuthorizationParameters);
|
|
841
|
-
type InternalAuthorizationDetails = (io.flow.payment.internal.v0.models.InternalPaypalAuthorizationDetails | io.flow.payment.internal.v0.models.InternalBitpayAuthorizationDetails | io.flow.payment.internal.v0.models.InternalStripeAuthorizationDetails | io.flow.payment.internal.v0.models.InternalAdyenAuthorizationDetails | io.flow.payment.internal.v0.models.InternalAfterpayAuthorizationDetails | io.flow.payment.internal.v0.models.InternalFiservAuthorizationDetails);
|
|
842
|
-
type InternalRefundForm = (io.flow.payment.internal.v0.models.AdyenRefundForm);
|
|
843
|
-
type InternalTransactionDetails = (io.flow.payment.internal.v0.models.InternalTransactionDetailsCard);
|
|
844
|
-
type PaymentRedirect = (io.flow.payment.internal.v0.models.OnlineAuthorizationCompleted | io.flow.payment.internal.v0.models.RedirectActionCompleted);
|
|
845
|
-
type ProcessorAccount = (io.flow.payment.internal.v0.models.StripeAccount | io.flow.payment.internal.v0.models.AdyenAccount | io.flow.payment.internal.v0.models.PaypalAccount | io.flow.payment.internal.v0.models.AfterpayAccount | io.flow.payment.internal.v0.models.BitpayAccount | io.flow.payment.internal.v0.models.FiservAccount | io.flow.payment.internal.v0.models.CryptoAccount);
|
|
846
|
-
type ProcessorAccountModificationForm = (io.flow.payment.internal.v0.models.StripeAccountModificationForm | io.flow.payment.internal.v0.models.AdyenAccountModificationForm | io.flow.payment.internal.v0.models.PaypalAccountModificationForm | io.flow.payment.internal.v0.models.AfterpayAccountModificationForm | io.flow.payment.internal.v0.models.BitpayAccountModificationForm | io.flow.payment.internal.v0.models.FiservAccountModificationForm | io.flow.payment.internal.v0.models.CryptoAccountModificationForm);
|
|
847
|
-
type ProcessorAccountPutForm = (io.flow.payment.internal.v0.models.StripeAccountPutForm | io.flow.payment.internal.v0.models.AdyenAccountPutForm | io.flow.payment.internal.v0.models.PaypalAccountPutForm | io.flow.payment.internal.v0.models.AfterpayAccountPutForm | io.flow.payment.internal.v0.models.BitpayAccountPutForm | io.flow.payment.internal.v0.models.FiservAccountPutForm | io.flow.payment.internal.v0.models.CryptoAccountPutForm);
|
|
848
|
-
type ProcessorMerchant = (io.flow.payment.internal.v0.models.StripeMerchant | io.flow.payment.internal.v0.models.AdyenMerchant | io.flow.payment.internal.v0.models.FiservMerchant | io.flow.payment.internal.v0.models.PaypalMerchant);
|
|
849
|
-
type ProcessorMerchantForm = (io.flow.payment.internal.v0.models.StripeMerchantForm);
|
|
850
|
-
type ProcessorMerchantModificationForm = (io.flow.payment.internal.v0.models.StripeMerchantModificationForm | io.flow.payment.internal.v0.models.AdyenMerchantModificationForm | io.flow.payment.internal.v0.models.FiservMerchantModificationForm | io.flow.payment.internal.v0.models.PaypalMerchantModificationForm);
|
|
851
|
-
type ProcessorMerchantPutForm = (io.flow.payment.internal.v0.models.StripeMerchantPutForm | io.flow.payment.internal.v0.models.AdyenMerchantPutForm | io.flow.payment.internal.v0.models.FiservMerchantPutForm | io.flow.payment.internal.v0.models.PaypalMerchantPutForm);
|
|
852
|
-
type RoutingEntity = (io.flow.payment.internal.v0.models.RoutingProcessor | io.flow.payment.internal.v0.models.RoutingAccount | io.flow.payment.internal.v0.models.RoutingMerchant);
|
|
853
|
-
}
|