@flowio/types 11.24.95 → 11.24.97

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/src/api.ts CHANGED
@@ -153,6 +153,41 @@ declare namespace io.flow.google.pay.v0.unions {
153
153
  declare namespace io.flow.stripe.v0.enums {
154
154
  type AccountType = 'platform' | 'custom' | 'standard' | 'express';
155
155
  type ApplePayType = 'apple_pay' | 'apple_pay_later';
156
+ type BankIdeal =
157
+ | 'abn_amro'
158
+ | 'asn_bank'
159
+ | 'bunq'
160
+ | 'handelsbanken'
161
+ | 'ing'
162
+ | 'knab'
163
+ | 'moneyou'
164
+ | 'n26'
165
+ | 'nn'
166
+ | 'rabobank'
167
+ | 'regiobank'
168
+ | 'revolut'
169
+ | 'sns_bank'
170
+ | 'triodos_bank'
171
+ | 'van_lanschot'
172
+ | 'yoursafe';
173
+ type BicIdeal =
174
+ | 'ABNANL2A'
175
+ | 'ASNBNL21'
176
+ | 'BITSNL2A'
177
+ | 'BUNQNL2A'
178
+ | 'FVLBNL22'
179
+ | 'HANDNL2A'
180
+ | 'INGBNL2A'
181
+ | 'KNABNL2H'
182
+ | 'MOYONL21'
183
+ | 'NNBANL2G'
184
+ | 'NTSBDEB1'
185
+ | 'RABONL2U'
186
+ | 'RBRBNL21'
187
+ | 'REVOIE23'
188
+ | 'REVOLT21'
189
+ | 'SNSBNL2A'
190
+ | 'TRIONL2U';
156
191
  type CancellationReason =
157
192
  | 'abandoned'
158
193
  | 'automatic'
@@ -232,6 +267,37 @@ declare namespace io.flow.stripe.v0.enums {
232
267
  | 'previously_declined_do_not_retry'
233
268
  | 'highest_risk_level'
234
269
  | 'requested_block_on_incorrect_cvc';
270
+ type DisputeEventType =
271
+ | 'charge.dispute.closed'
272
+ | 'charge.dispute.created'
273
+ | 'charge.dispute.funds_reinstated'
274
+ | 'charge.dispute.funds_withdrawn'
275
+ | 'charge.dispute.updated';
276
+ type DisputePaymentMethodDetailsCardCaseType = 'chargeback' | 'inquiry';
277
+ type DisputePaymentMethodDetailsType = 'card' | 'klarna' | 'paypal';
278
+ type DisputeReason =
279
+ | 'bank_cannot_process'
280
+ | 'check_returned'
281
+ | 'credit_not_processed'
282
+ | 'customer_initiated'
283
+ | 'debit_not_authorized'
284
+ | 'duplicate'
285
+ | 'fraudulent'
286
+ | 'general'
287
+ | 'incorrect_account_details'
288
+ | 'insufficient_funds'
289
+ | 'product_not_received'
290
+ | 'product_unacceptable'
291
+ | 'subscription_canceled'
292
+ | 'unrecognized';
293
+ type DisputeStatus =
294
+ | 'warning_needs_response'
295
+ | 'warning_under_review'
296
+ | 'warning_closed'
297
+ | 'needs_response'
298
+ | 'under_review'
299
+ | 'won'
300
+ | 'lost';
235
301
  type ErrorCode =
236
302
  | 'invalid_number'
237
303
  | 'invalid_expiry_month'
@@ -322,6 +388,11 @@ declare namespace io.flow.stripe.v0.enums {
322
388
  | 'charge.succeeded'
323
389
  | 'charge.updated'
324
390
  | 'charge.refund.updated'
391
+ | 'charge.dispute.closed'
392
+ | 'charge.dispute.created'
393
+ | 'charge.dispute.funds_reinstated'
394
+ | 'charge.dispute.funds_withdrawn'
395
+ | 'charge.dispute.updated'
325
396
  | 'payment_intent.created'
326
397
  | 'payment_intent.amount_capturable_updated'
327
398
  | 'payment_intent.payment_failed'
@@ -361,7 +432,12 @@ declare namespace io.flow.stripe.v0.enums {
361
432
  | 'pay_now'
362
433
  | 'pay_with_financing'
363
434
  | 'pay_in_installments';
364
- type PaymentMethodType = 'card' | 'card_present' | 'klarna';
435
+ type PaymentMethodType =
436
+ | 'card'
437
+ | 'card_present'
438
+ | 'ideal'
439
+ | 'klarna'
440
+ | 'bancontact';
365
441
  type PaymentOutcomeType =
366
442
  | 'authorized'
367
443
  | 'manual_review'
@@ -369,6 +445,7 @@ declare namespace io.flow.stripe.v0.enums {
369
445
  | 'blocked'
370
446
  | 'invalid';
371
447
  type PaymentStatus = 'succeeded' | 'pending' | 'failed';
448
+ type PreferredLanguageBancontact = 'de' | 'en' | 'fr' | 'nl';
372
449
  type PreferredLocaleKlarna =
373
450
  | 'de-AT'
374
451
  | 'en-AT'
@@ -696,6 +773,54 @@ declare namespace io.flow.stripe.v0.models {
696
773
  readonly description?: string;
697
774
  }
698
775
 
776
+ interface Dispute {
777
+ readonly id: string;
778
+ readonly amount: number;
779
+ readonly charge: string;
780
+ readonly currency: string;
781
+ readonly evidence: any /*object*/;
782
+ readonly metadata: Record<string, string>;
783
+ readonly payment_intent?: string;
784
+ readonly reason: io.flow.stripe.v0.enums.DisputeReason;
785
+ readonly status: io.flow.stripe.v0.enums.DisputeStatus;
786
+ readonly object: string;
787
+ readonly balance_transactions: any /*object*/[];
788
+ readonly created: number;
789
+ readonly evidence_details: io.flow.stripe.v0.models.DisputeEvidenceDetails;
790
+ readonly is_charge_refundable: boolean;
791
+ readonly livemode: boolean;
792
+ readonly payment_method_details?: io.flow.stripe.v0.models.DisputePaymentMethodDetails;
793
+ }
794
+
795
+ interface DisputeEvidenceDetails {
796
+ readonly due_by?: number;
797
+ readonly has_evidence: boolean;
798
+ readonly past_due: boolean;
799
+ readonly submission_count: number;
800
+ }
801
+
802
+ interface DisputePaymentMethodDetails {
803
+ readonly card?: io.flow.stripe.v0.models.DisputePaymentMethodDetailsCard;
804
+ readonly klarna?: io.flow.stripe.v0.models.DisputePaymentMethodDetailsKlarna;
805
+ readonly paypal?: io.flow.stripe.v0.models.DisputePaymentMethodDetailsPaypal;
806
+ readonly type: io.flow.stripe.v0.enums.DisputePaymentMethodDetailsType;
807
+ }
808
+
809
+ interface DisputePaymentMethodDetailsCard {
810
+ readonly brand: string;
811
+ readonly case_type?: io.flow.stripe.v0.enums.DisputePaymentMethodDetailsCardCaseType;
812
+ readonly network_reason_code?: string;
813
+ }
814
+
815
+ interface DisputePaymentMethodDetailsKlarna {
816
+ readonly reason_code?: string;
817
+ }
818
+
819
+ interface DisputePaymentMethodDetailsPaypal {
820
+ readonly case_id?: string;
821
+ readonly reason_code?: string;
822
+ }
823
+
699
824
  interface Error {
700
825
  readonly error: io.flow.stripe.v0.models.StripeError;
701
826
  }
@@ -952,8 +1077,10 @@ declare namespace io.flow.stripe.v0.models {
952
1077
  readonly id: string;
953
1078
  readonly object: string;
954
1079
  readonly billing_details?: io.flow.stripe.v0.models.PaymentMethodBillingDetails;
1080
+ readonly bancontact?: any /*object*/;
955
1081
  readonly card?: io.flow.stripe.v0.models.PaymentMethodCardDetails;
956
1082
  readonly card_present?: any /*object*/;
1083
+ readonly ideal?: any /*object*/;
957
1084
  readonly klarna?: any /*object*/;
958
1085
  readonly created: number;
959
1086
  readonly customer?: string;
@@ -988,6 +1115,12 @@ declare namespace io.flow.stripe.v0.models {
988
1115
  readonly cvc?: string;
989
1116
  }
990
1117
 
1118
+ interface PaymentMethodDataBancontact {
1119
+ readonly type: 'bancontact';
1120
+ readonly billing_details?: io.flow.stripe.v0.models.PaymentMethodBillingDetails;
1121
+ readonly metadata?: any /*object*/;
1122
+ }
1123
+
991
1124
  interface PaymentMethodDataCard {
992
1125
  readonly type: 'card';
993
1126
  readonly billing_details?: io.flow.stripe.v0.models.PaymentMethodBillingDetails;
@@ -995,6 +1128,13 @@ declare namespace io.flow.stripe.v0.models {
995
1128
  readonly card: io.flow.stripe.v0.models.PaymentMethodCardForm;
996
1129
  }
997
1130
 
1131
+ interface PaymentMethodDataIdeal {
1132
+ readonly type: 'ideal';
1133
+ readonly billing_details?: io.flow.stripe.v0.models.PaymentMethodBillingDetails;
1134
+ readonly metadata?: any /*object*/;
1135
+ readonly ideal: io.flow.stripe.v0.models.PaymentMethodIdealForm;
1136
+ }
1137
+
998
1138
  interface PaymentMethodDataKlarna {
999
1139
  readonly type: 'klarna';
1000
1140
  readonly billing_details?: io.flow.stripe.v0.models.PaymentMethodBillingDetails;
@@ -1002,6 +1142,22 @@ declare namespace io.flow.stripe.v0.models {
1002
1142
  readonly klarna: io.flow.stripe.v0.models.PaymentMethodKlarnaForm;
1003
1143
  }
1004
1144
 
1145
+ interface PaymentMethodDetailsBancontact {
1146
+ readonly type: 'bancontact';
1147
+ readonly bancontact: io.flow.stripe.v0.models.PaymentMethodDetailsBancontactInformation;
1148
+ }
1149
+
1150
+ interface PaymentMethodDetailsBancontactInformation {
1151
+ readonly bank_code?: string;
1152
+ readonly bank_name?: string;
1153
+ readonly bic?: string;
1154
+ readonly generated_sepa_debit?: string;
1155
+ readonly generated_sepa_debit_mandate?: string;
1156
+ readonly iban_last4?: string;
1157
+ readonly preferred_language?: io.flow.stripe.v0.enums.PreferredLanguageBancontact;
1158
+ readonly verified_name?: string;
1159
+ }
1160
+
1005
1161
  interface PaymentMethodDetailsCard {
1006
1162
  readonly type: 'card';
1007
1163
  readonly card: io.flow.stripe.v0.models.PaymentMethodDetailsCardInformation;
@@ -1033,6 +1189,20 @@ declare namespace io.flow.stripe.v0.models {
1033
1189
  readonly overcapture?: io.flow.stripe.v0.models.Overcapture;
1034
1190
  }
1035
1191
 
1192
+ interface PaymentMethodDetailsIdeal {
1193
+ readonly type: 'ideal';
1194
+ readonly ideal: io.flow.stripe.v0.models.PaymentMethodDetailsIdealInformation;
1195
+ }
1196
+
1197
+ interface PaymentMethodDetailsIdealInformation {
1198
+ readonly bank?: io.flow.stripe.v0.enums.BankIdeal;
1199
+ readonly bic?: io.flow.stripe.v0.enums.BicIdeal;
1200
+ readonly generated_sepa_debit?: string;
1201
+ readonly generated_sepa_debit_mandate?: string;
1202
+ readonly iban_last4?: string;
1203
+ readonly verified_name?: string;
1204
+ }
1205
+
1036
1206
  interface PaymentMethodDetailsKlarna {
1037
1207
  readonly type: 'klarna';
1038
1208
  readonly klarna: io.flow.stripe.v0.models.PaymentMethodDetailsKlarnaInformation;
@@ -1043,6 +1213,13 @@ declare namespace io.flow.stripe.v0.models {
1043
1213
  readonly preferred_locale?: io.flow.stripe.v0.enums.PreferredLocaleKlarna;
1044
1214
  }
1045
1215
 
1216
+ interface PaymentMethodFormBancontact {
1217
+ readonly type: 'bancontact';
1218
+ readonly billing_details?: io.flow.stripe.v0.models.PaymentMethodBillingDetails;
1219
+ readonly metadata?: any /*object*/;
1220
+ readonly bancontact: any /*object*/;
1221
+ }
1222
+
1046
1223
  interface PaymentMethodFormCard {
1047
1224
  readonly type: 'card';
1048
1225
  readonly billing_details?: io.flow.stripe.v0.models.PaymentMethodBillingDetails;
@@ -1050,6 +1227,13 @@ declare namespace io.flow.stripe.v0.models {
1050
1227
  readonly card: io.flow.stripe.v0.models.PaymentMethodCardForm;
1051
1228
  }
1052
1229
 
1230
+ interface PaymentMethodFormIdeal {
1231
+ readonly type: 'ideal';
1232
+ readonly billing_details?: io.flow.stripe.v0.models.PaymentMethodBillingDetails;
1233
+ readonly metadata?: any /*object*/;
1234
+ readonly ideal: io.flow.stripe.v0.models.PaymentMethodIdealForm;
1235
+ }
1236
+
1053
1237
  interface PaymentMethodFormKlarna {
1054
1238
  readonly type: 'klarna';
1055
1239
  readonly billing_details?: io.flow.stripe.v0.models.PaymentMethodBillingDetails;
@@ -1057,13 +1241,27 @@ declare namespace io.flow.stripe.v0.models {
1057
1241
  readonly klarna: io.flow.stripe.v0.models.PaymentMethodKlarnaForm;
1058
1242
  }
1059
1243
 
1244
+ interface PaymentMethodIdealForm {
1245
+ readonly bank?: string;
1246
+ }
1247
+
1060
1248
  interface PaymentMethodKlarnaForm {
1061
1249
  readonly dob?: io.flow.stripe.v0.models.KlarnaDobForm;
1062
1250
  }
1063
1251
 
1064
1252
  interface PaymentMethodOptions {
1065
1253
  readonly card?: io.flow.stripe.v0.models.PaymentMethodOptionsCard;
1254
+ readonly ideal?: io.flow.stripe.v0.models.PaymentMethodOptionsIdeal;
1066
1255
  readonly klarna?: io.flow.stripe.v0.models.PaymentMethodOptionsKlarna;
1256
+ readonly bancontact?: io.flow.stripe.v0.models.PaymentMethodOptionsBancontact;
1257
+ }
1258
+
1259
+ interface PaymentMethodOptionsBancontact {
1260
+ readonly preferred_language: io.flow.stripe.v0.enums.PreferredLanguageBancontact;
1261
+ }
1262
+
1263
+ interface PaymentMethodOptionsBancontactForm {
1264
+ readonly preferred_language: io.flow.stripe.v0.enums.PreferredLanguageBancontact;
1067
1265
  }
1068
1266
 
1069
1267
  interface PaymentMethodOptionsCard {
@@ -1083,7 +1281,17 @@ declare namespace io.flow.stripe.v0.models {
1083
1281
 
1084
1282
  interface PaymentMethodOptionsForm {
1085
1283
  readonly card?: io.flow.stripe.v0.models.PaymentMethodOptionsCardForm;
1284
+ readonly ideal?: io.flow.stripe.v0.models.PaymentMethodOptionsIdealForm;
1086
1285
  readonly klarna?: io.flow.stripe.v0.models.PaymentMethodOptionsKlarnaForm;
1286
+ readonly bancontact?: io.flow.stripe.v0.models.PaymentMethodOptionsBancontactForm;
1287
+ }
1288
+
1289
+ interface PaymentMethodOptionsIdeal {
1290
+ readonly setup_future_usage?: io.flow.stripe.v0.enums.SetupFutureUsage;
1291
+ }
1292
+
1293
+ interface PaymentMethodOptionsIdealForm {
1294
+ readonly setup_future_usage?: io.flow.stripe.v0.enums.SetupFutureUsage;
1087
1295
  }
1088
1296
 
1089
1297
  interface PaymentMethodOptionsKlarna {
@@ -1298,6 +1506,24 @@ declare namespace io.flow.stripe.v0.models {
1298
1506
  readonly directory_server_encryption?: any /*object*/;
1299
1507
  }
1300
1508
 
1509
+ interface StripeDisputeEvent {
1510
+ readonly id: string;
1511
+ readonly api_version?: string;
1512
+ readonly data: io.flow.stripe.v0.models.StripeDisputeEventData;
1513
+ readonly request?: any /*object*/;
1514
+ readonly type: io.flow.stripe.v0.enums.DisputeEventType;
1515
+ readonly object: string;
1516
+ readonly account?: string;
1517
+ readonly created: number;
1518
+ readonly livemode: boolean;
1519
+ readonly pending_webhooks: number;
1520
+ }
1521
+
1522
+ interface StripeDisputeEventData {
1523
+ readonly object: io.flow.stripe.v0.models.Dispute;
1524
+ readonly previous_attributes?: any /*object*/;
1525
+ }
1526
+
1301
1527
  interface StripeError {
1302
1528
  readonly type: io.flow.stripe.v0.enums.ErrorType;
1303
1529
  readonly charge?: string;
@@ -1400,13 +1626,19 @@ declare namespace io.flow.stripe.v0.unions {
1400
1626
  | io.flow.stripe.v0.models.VisaCheckout;
1401
1627
  type PaymentMethodData =
1402
1628
  | io.flow.stripe.v0.models.PaymentMethodDataCard
1403
- | io.flow.stripe.v0.models.PaymentMethodDataKlarna;
1629
+ | io.flow.stripe.v0.models.PaymentMethodDataIdeal
1630
+ | io.flow.stripe.v0.models.PaymentMethodDataKlarna
1631
+ | io.flow.stripe.v0.models.PaymentMethodDataBancontact;
1404
1632
  type PaymentMethodDetails =
1405
1633
  | io.flow.stripe.v0.models.PaymentMethodDetailsCard
1406
- | io.flow.stripe.v0.models.PaymentMethodDetailsKlarna;
1634
+ | io.flow.stripe.v0.models.PaymentMethodDetailsIdeal
1635
+ | io.flow.stripe.v0.models.PaymentMethodDetailsKlarna
1636
+ | io.flow.stripe.v0.models.PaymentMethodDetailsBancontact;
1407
1637
  type PaymentMethodForm =
1408
1638
  | io.flow.stripe.v0.models.PaymentMethodFormCard
1409
- | io.flow.stripe.v0.models.PaymentMethodFormKlarna;
1639
+ | io.flow.stripe.v0.models.PaymentMethodFormIdeal
1640
+ | io.flow.stripe.v0.models.PaymentMethodFormKlarna
1641
+ | io.flow.stripe.v0.models.PaymentMethodFormBancontact;
1410
1642
  }
1411
1643
 
1412
1644
  declare namespace io.flow.shopify.external.v0.enums {
@@ -1688,6 +1920,7 @@ declare namespace io.flow.shopify.external.v0.models {
1688
1920
  readonly published_at?: string;
1689
1921
  readonly created_at: string;
1690
1922
  readonly updated_at: string;
1923
+ readonly has_variants_that_requires_components?: boolean;
1691
1924
  }
1692
1925
 
1693
1926
  interface ProductDelete {
@@ -3121,7 +3354,8 @@ declare namespace io.flow.v0.enums {
3121
3354
  | 'business_street_address_is_blank'
3122
3355
  | 'business_street_address_is_po_box'
3123
3356
  | 'exception_merchant'
3124
- | 'application_missing';
3357
+ | 'application_missing'
3358
+ | 'missing_logistics_contact_info';
3125
3359
  type OnboardingTradeSector =
3126
3360
  | 'accessories'
3127
3361
  | 'animals_and_pet_supplies'
@@ -3292,7 +3526,8 @@ declare namespace io.flow.v0.enums {
3292
3526
  | 'order_unsupported_destination'
3293
3527
  | 'order_missing_information'
3294
3528
  | 'order_domestic'
3295
- | 'order_mismatched_currencies';
3529
+ | 'order_mismatched_currencies'
3530
+ | 'order_missing';
3296
3531
  type PaymentRequestReviewStatus = 'pending' | 'approved' | 'rejected';
3297
3532
  type PaymentSourceConfirmationActionType =
3298
3533
  | 'cvv'
@@ -10390,6 +10625,15 @@ declare namespace io.flow.v0.models {
10390
10625
  readonly processor: string;
10391
10626
  }
10392
10627
 
10628
+ interface PaymentProcessorTransactionDetailsApm {
10629
+ readonly discriminator: 'apm';
10630
+ readonly transaction_identifier?: string;
10631
+ readonly capture_identifier?: string;
10632
+ readonly method_type?: string;
10633
+ readonly result_status?: string;
10634
+ readonly reason_code?: string;
10635
+ }
10636
+
10393
10637
  interface PaymentProcessorTransactionDetailsCard {
10394
10638
  readonly discriminator: 'card';
10395
10639
  readonly transaction_identifier?: string;
@@ -10477,6 +10721,11 @@ declare namespace io.flow.v0.models {
10477
10721
  readonly billing: io.flow.v0.models.PaymentRequestBilling;
10478
10722
  }
10479
10723
 
10724
+ interface PaymentRequestCancellationReasonOrderMissing {
10725
+ readonly type: 'order_missing';
10726
+ readonly description?: string;
10727
+ }
10728
+
10480
10729
  interface PaymentRequestDeleted {
10481
10730
  readonly discriminator: 'payment_request_deleted';
10482
10731
  readonly event_id: string;
@@ -10617,6 +10866,7 @@ declare namespace io.flow.v0.models {
10617
10866
  interface PaypalAuthorizationDetails {
10618
10867
  readonly discriminator: 'paypal_authorization_details';
10619
10868
  readonly payment_id: string;
10869
+ readonly internal_payment_id?: string;
10620
10870
  readonly payment_method?: string;
10621
10871
  readonly payment_state?: string;
10622
10872
  readonly payer_id?: string;
@@ -11616,6 +11866,11 @@ declare namespace io.flow.v0.models {
11616
11866
  readonly status: io.flow.v0.enums.AvailabilityStatus;
11617
11867
  }
11618
11868
 
11869
+ interface RejectionPutForm {
11870
+ readonly reason: io.flow.v0.enums.MerchantRejectedReason;
11871
+ readonly description: string;
11872
+ }
11873
+
11619
11874
  interface RemoteAreaByWeightServiceFee {
11620
11875
  readonly discriminator: 'remote_area_by_weight_service_fee';
11621
11876
  readonly amount: io.flow.v0.models.Money;
@@ -13535,7 +13790,7 @@ declare namespace io.flow.v0.models {
13535
13790
  readonly discriminator: 'channel';
13536
13791
  readonly method: string;
13537
13792
  readonly card?: io.flow.v0.models.TransactionMetadataChannelCardMetadata;
13538
- readonly organization_transaction: io.flow.v0.models.TransactionReference;
13793
+ readonly organization_transaction: io.flow.v0.models.TransactionMetadataChannelOrganizationTransaction;
13539
13794
  }
13540
13795
 
13541
13796
  interface TransactionMetadataChannelCardMetadata {
@@ -13548,6 +13803,11 @@ declare namespace io.flow.v0.models {
13548
13803
  readonly country: string;
13549
13804
  }
13550
13805
 
13806
+ interface TransactionMetadataChannelOrganizationTransaction {
13807
+ readonly id: string;
13808
+ readonly metadata: io.flow.v0.models.TransactionMetadataPaymentTransaction;
13809
+ }
13810
+
13551
13811
  interface TransactionMetadataFailedPayout {
13552
13812
  readonly discriminator: 'failed_payout';
13553
13813
  readonly failed_payout: io.flow.v0.models.TransactionMetadataFailedPayoutReference;
@@ -14418,7 +14678,10 @@ declare namespace io.flow.v0.unions {
14418
14678
  | io.flow.v0.models.AuthorizationOrderReference
14419
14679
  | io.flow.v0.models.PaymentPaymentRequestReference;
14420
14680
  type PaymentProcessorTransactionDetails =
14421
- io.flow.v0.models.PaymentProcessorTransactionDetailsCard;
14681
+ | io.flow.v0.models.PaymentProcessorTransactionDetailsCard
14682
+ | io.flow.v0.models.PaymentProcessorTransactionDetailsApm;
14683
+ type PaymentRequestCancellationReason =
14684
+ io.flow.v0.models.PaymentRequestCancellationReasonOrderMissing;
14422
14685
  type PaymentSource = io.flow.v0.models.CardPaymentSource;
14423
14686
  type PaymentSourceForm = io.flow.v0.models.CardPaymentSourceForm;
14424
14687
  type PayoutStatus =
@@ -16063,6 +16326,8 @@ export type PaymentProcessorReference =
16063
16326
  io.flow.v0.models.PaymentProcessorReference;
16064
16327
  export type PaymentProcessorTransactionDetails =
16065
16328
  io.flow.v0.unions.PaymentProcessorTransactionDetails;
16329
+ export type PaymentProcessorTransactionDetailsApm =
16330
+ io.flow.v0.models.PaymentProcessorTransactionDetailsApm;
16066
16331
  export type PaymentProcessorTransactionDetailsCard =
16067
16332
  io.flow.v0.models.PaymentProcessorTransactionDetailsCard;
16068
16333
  export type PaymentReference = io.flow.v0.models.PaymentReference;
@@ -16078,6 +16343,10 @@ export type PaymentRequestBillingFees =
16078
16343
  export type PaymentRequestBundle = io.flow.v0.models.PaymentRequestBundle;
16079
16344
  export type PaymentRequestBundleForm =
16080
16345
  io.flow.v0.models.PaymentRequestBundleForm;
16346
+ export type PaymentRequestCancellationReason =
16347
+ io.flow.v0.unions.PaymentRequestCancellationReason;
16348
+ export type PaymentRequestCancellationReasonOrderMissing =
16349
+ io.flow.v0.models.PaymentRequestCancellationReasonOrderMissing;
16081
16350
  export type PaymentRequestDeleted = io.flow.v0.models.PaymentRequestDeleted;
16082
16351
  export type PaymentRequestForm = io.flow.v0.models.PaymentRequestForm;
16083
16352
  export type PaymentRequestReference = io.flow.v0.models.PaymentRequestReference;
@@ -16293,6 +16562,7 @@ export type RegionReference = io.flow.v0.models.RegionReference;
16293
16562
  export type RegionSetting = io.flow.v0.models.RegionSetting;
16294
16563
  export type RegionSettingForm = io.flow.v0.models.RegionSettingForm;
16295
16564
  export type RegionType = io.flow.v0.enums.RegionType;
16565
+ export type RejectionPutForm = io.flow.v0.models.RejectionPutForm;
16296
16566
  export type RemoteAreaByWeightServiceFee =
16297
16567
  io.flow.v0.models.RemoteAreaByWeightServiceFee;
16298
16568
  export type RemoteAreaRatecardFee = io.flow.v0.models.RemoteAreaRatecardFee;
@@ -16707,6 +16977,8 @@ export type TransactionMetadataChannelCardMetadata =
16707
16977
  io.flow.v0.models.TransactionMetadataChannelCardMetadata;
16708
16978
  export type TransactionMetadataChannelCardMetadataIssuerSummary =
16709
16979
  io.flow.v0.models.TransactionMetadataChannelCardMetadataIssuerSummary;
16980
+ export type TransactionMetadataChannelOrganizationTransaction =
16981
+ io.flow.v0.models.TransactionMetadataChannelOrganizationTransaction;
16710
16982
  export type TransactionMetadataFailedPayout =
16711
16983
  io.flow.v0.models.TransactionMetadataFailedPayout;
16712
16984
  export type TransactionMetadataFailedPayoutReference =