@flowio/types 11.24.94 → 11.24.96
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/dist/api-internal.d.ts +1423 -1206
- package/dist/api.d.ts +195 -23
- package/package.json +2 -2
- package/src/api-internal.ts +1845 -1410
- package/src/api.ts +298 -26
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'
|
|
@@ -361,7 +396,12 @@ declare namespace io.flow.stripe.v0.enums {
|
|
|
361
396
|
| 'pay_now'
|
|
362
397
|
| 'pay_with_financing'
|
|
363
398
|
| 'pay_in_installments';
|
|
364
|
-
type PaymentMethodType =
|
|
399
|
+
type PaymentMethodType =
|
|
400
|
+
| 'card'
|
|
401
|
+
| 'card_present'
|
|
402
|
+
| 'ideal'
|
|
403
|
+
| 'klarna'
|
|
404
|
+
| 'bancontact';
|
|
365
405
|
type PaymentOutcomeType =
|
|
366
406
|
| 'authorized'
|
|
367
407
|
| 'manual_review'
|
|
@@ -369,6 +409,7 @@ declare namespace io.flow.stripe.v0.enums {
|
|
|
369
409
|
| 'blocked'
|
|
370
410
|
| 'invalid';
|
|
371
411
|
type PaymentStatus = 'succeeded' | 'pending' | 'failed';
|
|
412
|
+
type PreferredLanguageBancontact = 'de' | 'en' | 'fr' | 'nl';
|
|
372
413
|
type PreferredLocaleKlarna =
|
|
373
414
|
| 'de-AT'
|
|
374
415
|
| 'en-AT'
|
|
@@ -952,8 +993,10 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
952
993
|
readonly id: string;
|
|
953
994
|
readonly object: string;
|
|
954
995
|
readonly billing_details?: io.flow.stripe.v0.models.PaymentMethodBillingDetails;
|
|
996
|
+
readonly bancontact?: any /*object*/;
|
|
955
997
|
readonly card?: io.flow.stripe.v0.models.PaymentMethodCardDetails;
|
|
956
998
|
readonly card_present?: any /*object*/;
|
|
999
|
+
readonly ideal?: any /*object*/;
|
|
957
1000
|
readonly klarna?: any /*object*/;
|
|
958
1001
|
readonly created: number;
|
|
959
1002
|
readonly customer?: string;
|
|
@@ -988,6 +1031,12 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
988
1031
|
readonly cvc?: string;
|
|
989
1032
|
}
|
|
990
1033
|
|
|
1034
|
+
interface PaymentMethodDataBancontact {
|
|
1035
|
+
readonly type: 'bancontact';
|
|
1036
|
+
readonly billing_details?: io.flow.stripe.v0.models.PaymentMethodBillingDetails;
|
|
1037
|
+
readonly metadata?: any /*object*/;
|
|
1038
|
+
}
|
|
1039
|
+
|
|
991
1040
|
interface PaymentMethodDataCard {
|
|
992
1041
|
readonly type: 'card';
|
|
993
1042
|
readonly billing_details?: io.flow.stripe.v0.models.PaymentMethodBillingDetails;
|
|
@@ -995,6 +1044,13 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
995
1044
|
readonly card: io.flow.stripe.v0.models.PaymentMethodCardForm;
|
|
996
1045
|
}
|
|
997
1046
|
|
|
1047
|
+
interface PaymentMethodDataIdeal {
|
|
1048
|
+
readonly type: 'ideal';
|
|
1049
|
+
readonly billing_details?: io.flow.stripe.v0.models.PaymentMethodBillingDetails;
|
|
1050
|
+
readonly metadata?: any /*object*/;
|
|
1051
|
+
readonly ideal: io.flow.stripe.v0.models.PaymentMethodIdealForm;
|
|
1052
|
+
}
|
|
1053
|
+
|
|
998
1054
|
interface PaymentMethodDataKlarna {
|
|
999
1055
|
readonly type: 'klarna';
|
|
1000
1056
|
readonly billing_details?: io.flow.stripe.v0.models.PaymentMethodBillingDetails;
|
|
@@ -1002,6 +1058,22 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
1002
1058
|
readonly klarna: io.flow.stripe.v0.models.PaymentMethodKlarnaForm;
|
|
1003
1059
|
}
|
|
1004
1060
|
|
|
1061
|
+
interface PaymentMethodDetailsBancontact {
|
|
1062
|
+
readonly type: 'bancontact';
|
|
1063
|
+
readonly bancontact: io.flow.stripe.v0.models.PaymentMethodDetailsBancontactInformation;
|
|
1064
|
+
}
|
|
1065
|
+
|
|
1066
|
+
interface PaymentMethodDetailsBancontactInformation {
|
|
1067
|
+
readonly bank_code?: string;
|
|
1068
|
+
readonly bank_name?: string;
|
|
1069
|
+
readonly bic?: string;
|
|
1070
|
+
readonly generated_sepa_debit?: string;
|
|
1071
|
+
readonly generated_sepa_debit_mandate?: string;
|
|
1072
|
+
readonly iban_last4?: string;
|
|
1073
|
+
readonly preferred_language?: io.flow.stripe.v0.enums.PreferredLanguageBancontact;
|
|
1074
|
+
readonly verified_name?: string;
|
|
1075
|
+
}
|
|
1076
|
+
|
|
1005
1077
|
interface PaymentMethodDetailsCard {
|
|
1006
1078
|
readonly type: 'card';
|
|
1007
1079
|
readonly card: io.flow.stripe.v0.models.PaymentMethodDetailsCardInformation;
|
|
@@ -1033,6 +1105,20 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
1033
1105
|
readonly overcapture?: io.flow.stripe.v0.models.Overcapture;
|
|
1034
1106
|
}
|
|
1035
1107
|
|
|
1108
|
+
interface PaymentMethodDetailsIdeal {
|
|
1109
|
+
readonly type: 'ideal';
|
|
1110
|
+
readonly ideal: io.flow.stripe.v0.models.PaymentMethodDetailsIdealInformation;
|
|
1111
|
+
}
|
|
1112
|
+
|
|
1113
|
+
interface PaymentMethodDetailsIdealInformation {
|
|
1114
|
+
readonly bank?: io.flow.stripe.v0.enums.BankIdeal;
|
|
1115
|
+
readonly bic?: io.flow.stripe.v0.enums.BicIdeal;
|
|
1116
|
+
readonly generated_sepa_debit?: string;
|
|
1117
|
+
readonly generated_sepa_debit_mandate?: string;
|
|
1118
|
+
readonly iban_last4?: string;
|
|
1119
|
+
readonly verified_name?: string;
|
|
1120
|
+
}
|
|
1121
|
+
|
|
1036
1122
|
interface PaymentMethodDetailsKlarna {
|
|
1037
1123
|
readonly type: 'klarna';
|
|
1038
1124
|
readonly klarna: io.flow.stripe.v0.models.PaymentMethodDetailsKlarnaInformation;
|
|
@@ -1043,6 +1129,13 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
1043
1129
|
readonly preferred_locale?: io.flow.stripe.v0.enums.PreferredLocaleKlarna;
|
|
1044
1130
|
}
|
|
1045
1131
|
|
|
1132
|
+
interface PaymentMethodFormBancontact {
|
|
1133
|
+
readonly type: 'bancontact';
|
|
1134
|
+
readonly billing_details?: io.flow.stripe.v0.models.PaymentMethodBillingDetails;
|
|
1135
|
+
readonly metadata?: any /*object*/;
|
|
1136
|
+
readonly bancontact: any /*object*/;
|
|
1137
|
+
}
|
|
1138
|
+
|
|
1046
1139
|
interface PaymentMethodFormCard {
|
|
1047
1140
|
readonly type: 'card';
|
|
1048
1141
|
readonly billing_details?: io.flow.stripe.v0.models.PaymentMethodBillingDetails;
|
|
@@ -1050,6 +1143,13 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
1050
1143
|
readonly card: io.flow.stripe.v0.models.PaymentMethodCardForm;
|
|
1051
1144
|
}
|
|
1052
1145
|
|
|
1146
|
+
interface PaymentMethodFormIdeal {
|
|
1147
|
+
readonly type: 'ideal';
|
|
1148
|
+
readonly billing_details?: io.flow.stripe.v0.models.PaymentMethodBillingDetails;
|
|
1149
|
+
readonly metadata?: any /*object*/;
|
|
1150
|
+
readonly ideal: io.flow.stripe.v0.models.PaymentMethodIdealForm;
|
|
1151
|
+
}
|
|
1152
|
+
|
|
1053
1153
|
interface PaymentMethodFormKlarna {
|
|
1054
1154
|
readonly type: 'klarna';
|
|
1055
1155
|
readonly billing_details?: io.flow.stripe.v0.models.PaymentMethodBillingDetails;
|
|
@@ -1057,13 +1157,27 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
1057
1157
|
readonly klarna: io.flow.stripe.v0.models.PaymentMethodKlarnaForm;
|
|
1058
1158
|
}
|
|
1059
1159
|
|
|
1160
|
+
interface PaymentMethodIdealForm {
|
|
1161
|
+
readonly bank?: string;
|
|
1162
|
+
}
|
|
1163
|
+
|
|
1060
1164
|
interface PaymentMethodKlarnaForm {
|
|
1061
1165
|
readonly dob?: io.flow.stripe.v0.models.KlarnaDobForm;
|
|
1062
1166
|
}
|
|
1063
1167
|
|
|
1064
1168
|
interface PaymentMethodOptions {
|
|
1065
1169
|
readonly card?: io.flow.stripe.v0.models.PaymentMethodOptionsCard;
|
|
1170
|
+
readonly ideal?: io.flow.stripe.v0.models.PaymentMethodOptionsIdeal;
|
|
1066
1171
|
readonly klarna?: io.flow.stripe.v0.models.PaymentMethodOptionsKlarna;
|
|
1172
|
+
readonly bancontact?: io.flow.stripe.v0.models.PaymentMethodOptionsBancontact;
|
|
1173
|
+
}
|
|
1174
|
+
|
|
1175
|
+
interface PaymentMethodOptionsBancontact {
|
|
1176
|
+
readonly preferred_language: io.flow.stripe.v0.enums.PreferredLanguageBancontact;
|
|
1177
|
+
}
|
|
1178
|
+
|
|
1179
|
+
interface PaymentMethodOptionsBancontactForm {
|
|
1180
|
+
readonly preferred_language: io.flow.stripe.v0.enums.PreferredLanguageBancontact;
|
|
1067
1181
|
}
|
|
1068
1182
|
|
|
1069
1183
|
interface PaymentMethodOptionsCard {
|
|
@@ -1083,7 +1197,17 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
1083
1197
|
|
|
1084
1198
|
interface PaymentMethodOptionsForm {
|
|
1085
1199
|
readonly card?: io.flow.stripe.v0.models.PaymentMethodOptionsCardForm;
|
|
1200
|
+
readonly ideal?: io.flow.stripe.v0.models.PaymentMethodOptionsIdealForm;
|
|
1086
1201
|
readonly klarna?: io.flow.stripe.v0.models.PaymentMethodOptionsKlarnaForm;
|
|
1202
|
+
readonly bancontact?: io.flow.stripe.v0.models.PaymentMethodOptionsBancontactForm;
|
|
1203
|
+
}
|
|
1204
|
+
|
|
1205
|
+
interface PaymentMethodOptionsIdeal {
|
|
1206
|
+
readonly setup_future_usage?: io.flow.stripe.v0.enums.SetupFutureUsage;
|
|
1207
|
+
}
|
|
1208
|
+
|
|
1209
|
+
interface PaymentMethodOptionsIdealForm {
|
|
1210
|
+
readonly setup_future_usage?: io.flow.stripe.v0.enums.SetupFutureUsage;
|
|
1087
1211
|
}
|
|
1088
1212
|
|
|
1089
1213
|
interface PaymentMethodOptionsKlarna {
|
|
@@ -1400,13 +1524,19 @@ declare namespace io.flow.stripe.v0.unions {
|
|
|
1400
1524
|
| io.flow.stripe.v0.models.VisaCheckout;
|
|
1401
1525
|
type PaymentMethodData =
|
|
1402
1526
|
| io.flow.stripe.v0.models.PaymentMethodDataCard
|
|
1403
|
-
| io.flow.stripe.v0.models.
|
|
1527
|
+
| io.flow.stripe.v0.models.PaymentMethodDataIdeal
|
|
1528
|
+
| io.flow.stripe.v0.models.PaymentMethodDataKlarna
|
|
1529
|
+
| io.flow.stripe.v0.models.PaymentMethodDataBancontact;
|
|
1404
1530
|
type PaymentMethodDetails =
|
|
1405
1531
|
| io.flow.stripe.v0.models.PaymentMethodDetailsCard
|
|
1406
|
-
| io.flow.stripe.v0.models.
|
|
1532
|
+
| io.flow.stripe.v0.models.PaymentMethodDetailsIdeal
|
|
1533
|
+
| io.flow.stripe.v0.models.PaymentMethodDetailsKlarna
|
|
1534
|
+
| io.flow.stripe.v0.models.PaymentMethodDetailsBancontact;
|
|
1407
1535
|
type PaymentMethodForm =
|
|
1408
1536
|
| io.flow.stripe.v0.models.PaymentMethodFormCard
|
|
1409
|
-
| io.flow.stripe.v0.models.
|
|
1537
|
+
| io.flow.stripe.v0.models.PaymentMethodFormIdeal
|
|
1538
|
+
| io.flow.stripe.v0.models.PaymentMethodFormKlarna
|
|
1539
|
+
| io.flow.stripe.v0.models.PaymentMethodFormBancontact;
|
|
1410
1540
|
}
|
|
1411
1541
|
|
|
1412
1542
|
declare namespace io.flow.shopify.external.v0.enums {
|
|
@@ -1688,6 +1818,7 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
1688
1818
|
readonly published_at?: string;
|
|
1689
1819
|
readonly created_at: string;
|
|
1690
1820
|
readonly updated_at: string;
|
|
1821
|
+
readonly has_variants_that_requires_components?: boolean;
|
|
1691
1822
|
}
|
|
1692
1823
|
|
|
1693
1824
|
interface ProductDelete {
|
|
@@ -2913,6 +3044,8 @@ declare namespace io.flow.v0.enums {
|
|
|
2913
3044
|
| 'notification_deleted_v2'
|
|
2914
3045
|
| 'manifested_label_upserted'
|
|
2915
3046
|
| 'manifested_label_deleted'
|
|
3047
|
+
| 'label_processing_modification_upserted'
|
|
3048
|
+
| 'label_processing_modification_deleted'
|
|
2916
3049
|
| 'local_item_upserted'
|
|
2917
3050
|
| 'local_item_deleted'
|
|
2918
3051
|
| 'merchant_application_upserted'
|
|
@@ -3290,7 +3423,8 @@ declare namespace io.flow.v0.enums {
|
|
|
3290
3423
|
| 'order_unsupported_destination'
|
|
3291
3424
|
| 'order_missing_information'
|
|
3292
3425
|
| 'order_domestic'
|
|
3293
|
-
| 'order_mismatched_currencies'
|
|
3426
|
+
| 'order_mismatched_currencies'
|
|
3427
|
+
| 'order_missing';
|
|
3294
3428
|
type PaymentRequestReviewStatus = 'pending' | 'approved' | 'rejected';
|
|
3295
3429
|
type PaymentSourceConfirmationActionType =
|
|
3296
3430
|
| 'cvv'
|
|
@@ -3560,9 +3694,10 @@ declare namespace io.flow.v0.enums {
|
|
|
3560
3694
|
| 'shipping_label_service'
|
|
3561
3695
|
| 'shipping_label_revenue_share'
|
|
3562
3696
|
| 'trueup'
|
|
3697
|
+
| 'trueup_base'
|
|
3698
|
+
| 'trueup_surcharge'
|
|
3563
3699
|
| 'carrier_charge'
|
|
3564
3700
|
| 'carrier_charge_revenue_share'
|
|
3565
|
-
| 'carrier_fee'
|
|
3566
3701
|
| 'platform_fee'
|
|
3567
3702
|
| 'tax'
|
|
3568
3703
|
| 'duty'
|
|
@@ -3573,8 +3708,9 @@ declare namespace io.flow.v0.enums {
|
|
|
3573
3708
|
| 'channel_billed'
|
|
3574
3709
|
| 'order_service'
|
|
3575
3710
|
| 'virtual_card_capture'
|
|
3576
|
-
| 'virtual_card_refund'
|
|
3577
|
-
|
|
3711
|
+
| 'virtual_card_refund'
|
|
3712
|
+
| 'failed_payout';
|
|
3713
|
+
type TrueupSource = 'flow' | 'channel' | 'dhl-parcel' | 'dhl' | 'ups';
|
|
3578
3714
|
type TrueupSurchargeType =
|
|
3579
3715
|
| 'fuel'
|
|
3580
3716
|
| 'remote_area'
|
|
@@ -3586,7 +3722,13 @@ declare namespace io.flow.v0.enums {
|
|
|
3586
3722
|
| 'security'
|
|
3587
3723
|
| 'eei_filing'
|
|
3588
3724
|
| 'fixed_ddp'
|
|
3589
|
-
| 'fixed_currency_conversion'
|
|
3725
|
+
| 'fixed_currency_conversion'
|
|
3726
|
+
| 'prohibited_item'
|
|
3727
|
+
| 'undeliverable_shipment'
|
|
3728
|
+
| 'signature_required'
|
|
3729
|
+
| 'direct_delivery'
|
|
3730
|
+
| 'saturday_stop'
|
|
3731
|
+
| 'residential_extended_area_pickup';
|
|
3590
3732
|
type UnitOfLength = 'millimeter' | 'centimeter' | 'inch' | 'foot' | 'meter';
|
|
3591
3733
|
type UnitOfMeasurement =
|
|
3592
3734
|
| 'millimeter'
|
|
@@ -8111,6 +8253,29 @@ declare namespace io.flow.v0.models {
|
|
|
8111
8253
|
readonly number: string;
|
|
8112
8254
|
}
|
|
8113
8255
|
|
|
8256
|
+
interface LabelProcessingModification {
|
|
8257
|
+
readonly id: string;
|
|
8258
|
+
readonly modifications: string[];
|
|
8259
|
+
readonly destination: io.flow.v0.models.ShippingAddress;
|
|
8260
|
+
readonly destination_provided_to_carrier?: io.flow.v0.models.ShippingAddress;
|
|
8261
|
+
}
|
|
8262
|
+
|
|
8263
|
+
interface LabelProcessingModificationDeleted {
|
|
8264
|
+
readonly discriminator: 'label_processing_modification_deleted';
|
|
8265
|
+
readonly event_id: string;
|
|
8266
|
+
readonly timestamp: string;
|
|
8267
|
+
readonly organization: string;
|
|
8268
|
+
readonly id: string;
|
|
8269
|
+
}
|
|
8270
|
+
|
|
8271
|
+
interface LabelProcessingModificationUpserted {
|
|
8272
|
+
readonly discriminator: 'label_processing_modification_upserted';
|
|
8273
|
+
readonly event_id: string;
|
|
8274
|
+
readonly timestamp: string;
|
|
8275
|
+
readonly organization: string;
|
|
8276
|
+
readonly label_processing_modification: io.flow.v0.models.LabelProcessingModification;
|
|
8277
|
+
}
|
|
8278
|
+
|
|
8114
8279
|
interface LabelReference {
|
|
8115
8280
|
readonly id: string;
|
|
8116
8281
|
}
|
|
@@ -10357,6 +10522,15 @@ declare namespace io.flow.v0.models {
|
|
|
10357
10522
|
readonly processor: string;
|
|
10358
10523
|
}
|
|
10359
10524
|
|
|
10525
|
+
interface PaymentProcessorTransactionDetailsApm {
|
|
10526
|
+
readonly discriminator: 'apm';
|
|
10527
|
+
readonly transaction_identifier?: string;
|
|
10528
|
+
readonly capture_identifier?: string;
|
|
10529
|
+
readonly method_type?: string;
|
|
10530
|
+
readonly result_status?: string;
|
|
10531
|
+
readonly reason_code?: string;
|
|
10532
|
+
}
|
|
10533
|
+
|
|
10360
10534
|
interface PaymentProcessorTransactionDetailsCard {
|
|
10361
10535
|
readonly discriminator: 'card';
|
|
10362
10536
|
readonly transaction_identifier?: string;
|
|
@@ -10444,6 +10618,11 @@ declare namespace io.flow.v0.models {
|
|
|
10444
10618
|
readonly billing: io.flow.v0.models.PaymentRequestBilling;
|
|
10445
10619
|
}
|
|
10446
10620
|
|
|
10621
|
+
interface PaymentRequestCancellationReasonOrderMissing {
|
|
10622
|
+
readonly type: 'order_missing';
|
|
10623
|
+
readonly description?: string;
|
|
10624
|
+
}
|
|
10625
|
+
|
|
10447
10626
|
interface PaymentRequestDeleted {
|
|
10448
10627
|
readonly discriminator: 'payment_request_deleted';
|
|
10449
10628
|
readonly event_id: string;
|
|
@@ -10584,6 +10763,7 @@ declare namespace io.flow.v0.models {
|
|
|
10584
10763
|
interface PaypalAuthorizationDetails {
|
|
10585
10764
|
readonly discriminator: 'paypal_authorization_details';
|
|
10586
10765
|
readonly payment_id: string;
|
|
10766
|
+
readonly internal_payment_id?: string;
|
|
10587
10767
|
readonly payment_method?: string;
|
|
10588
10768
|
readonly payment_state?: string;
|
|
10589
10769
|
readonly payer_id?: string;
|
|
@@ -11583,6 +11763,11 @@ declare namespace io.flow.v0.models {
|
|
|
11583
11763
|
readonly status: io.flow.v0.enums.AvailabilityStatus;
|
|
11584
11764
|
}
|
|
11585
11765
|
|
|
11766
|
+
interface RejectionPutForm {
|
|
11767
|
+
readonly reason: io.flow.v0.enums.MerchantRejectedReason;
|
|
11768
|
+
readonly description: string;
|
|
11769
|
+
}
|
|
11770
|
+
|
|
11586
11771
|
interface RemoteAreaByWeightServiceFee {
|
|
11587
11772
|
readonly discriminator: 'remote_area_by_weight_service_fee';
|
|
11588
11773
|
readonly amount: io.flow.v0.models.Money;
|
|
@@ -13498,21 +13683,11 @@ declare namespace io.flow.v0.models {
|
|
|
13498
13683
|
readonly outbound?: io.flow.v0.models.TransactionMetadataOutboundTransaction;
|
|
13499
13684
|
}
|
|
13500
13685
|
|
|
13501
|
-
interface TransactionMetadataCarrierFee {
|
|
13502
|
-
readonly discriminator: 'carrier_fee';
|
|
13503
|
-
readonly outbound: io.flow.v0.models.TransactionMetadataOutboundTransaction;
|
|
13504
|
-
readonly estimate: io.flow.v0.models.TransactionMetadataCarrierFeeData;
|
|
13505
|
-
readonly actual: io.flow.v0.models.TransactionMetadataCarrierFeeData;
|
|
13506
|
-
}
|
|
13507
|
-
|
|
13508
|
-
interface TransactionMetadataCarrierFeeData {
|
|
13509
|
-
readonly surcharges: io.flow.v0.models.TrueupLabelSurcharge[];
|
|
13510
|
-
}
|
|
13511
|
-
|
|
13512
13686
|
interface TransactionMetadataChannel {
|
|
13513
13687
|
readonly discriminator: 'channel';
|
|
13514
13688
|
readonly method: string;
|
|
13515
13689
|
readonly card?: io.flow.v0.models.TransactionMetadataChannelCardMetadata;
|
|
13690
|
+
readonly organization_transaction: io.flow.v0.models.TransactionMetadataChannelOrganizationTransaction;
|
|
13516
13691
|
}
|
|
13517
13692
|
|
|
13518
13693
|
interface TransactionMetadataChannelCardMetadata {
|
|
@@ -13525,6 +13700,20 @@ declare namespace io.flow.v0.models {
|
|
|
13525
13700
|
readonly country: string;
|
|
13526
13701
|
}
|
|
13527
13702
|
|
|
13703
|
+
interface TransactionMetadataChannelOrganizationTransaction {
|
|
13704
|
+
readonly id: string;
|
|
13705
|
+
readonly metadata: io.flow.v0.models.TransactionMetadataPaymentTransaction;
|
|
13706
|
+
}
|
|
13707
|
+
|
|
13708
|
+
interface TransactionMetadataFailedPayout {
|
|
13709
|
+
readonly discriminator: 'failed_payout';
|
|
13710
|
+
readonly failed_payout: io.flow.v0.models.TransactionMetadataFailedPayoutReference;
|
|
13711
|
+
}
|
|
13712
|
+
|
|
13713
|
+
interface TransactionMetadataFailedPayoutReference {
|
|
13714
|
+
readonly id: string;
|
|
13715
|
+
}
|
|
13716
|
+
|
|
13528
13717
|
interface TransactionMetadataManual {
|
|
13529
13718
|
readonly discriminator: 'manual';
|
|
13530
13719
|
readonly description: string;
|
|
@@ -13542,6 +13731,7 @@ declare namespace io.flow.v0.models {
|
|
|
13542
13731
|
|
|
13543
13732
|
interface TransactionMetadataPaymentTransaction {
|
|
13544
13733
|
readonly discriminator: 'payment_transaction';
|
|
13734
|
+
readonly id?: string;
|
|
13545
13735
|
readonly key?: string;
|
|
13546
13736
|
}
|
|
13547
13737
|
|
|
@@ -13564,6 +13754,22 @@ declare namespace io.flow.v0.models {
|
|
|
13564
13754
|
readonly actual: io.flow.v0.models.TransactionMetadataTrueupData;
|
|
13565
13755
|
}
|
|
13566
13756
|
|
|
13757
|
+
interface TransactionMetadataTrueupBase {
|
|
13758
|
+
readonly discriminator: 'trueup_base';
|
|
13759
|
+
readonly original: io.flow.v0.models.TransactionMetadataOriginalTransaction;
|
|
13760
|
+
readonly estimate: io.flow.v0.models.TransactionMetadataTrueupBaseData;
|
|
13761
|
+
readonly actual: io.flow.v0.models.TransactionMetadataTrueupBaseData;
|
|
13762
|
+
}
|
|
13763
|
+
|
|
13764
|
+
interface TransactionMetadataTrueupBaseData {
|
|
13765
|
+
readonly source: io.flow.v0.enums.TrueupSource;
|
|
13766
|
+
readonly weights: io.flow.v0.models.TrueupLabelWeights;
|
|
13767
|
+
readonly units: io.flow.v0.models.TrueupLabelUnits;
|
|
13768
|
+
readonly base: io.flow.v0.models.TrueupLabelBaseV2;
|
|
13769
|
+
readonly fuel?: io.flow.v0.models.TrueupLabelFuel;
|
|
13770
|
+
readonly total: number;
|
|
13771
|
+
}
|
|
13772
|
+
|
|
13567
13773
|
interface TransactionMetadataTrueupData {
|
|
13568
13774
|
readonly source: io.flow.v0.enums.TrueupSource;
|
|
13569
13775
|
readonly units: io.flow.v0.models.TrueupLabelUnits;
|
|
@@ -13574,6 +13780,18 @@ declare namespace io.flow.v0.models {
|
|
|
13574
13780
|
readonly dimensional?: io.flow.v0.models.DimensionalWeight;
|
|
13575
13781
|
}
|
|
13576
13782
|
|
|
13783
|
+
interface TransactionMetadataTrueupSurcharge {
|
|
13784
|
+
readonly discriminator: 'trueup_surcharge';
|
|
13785
|
+
readonly original: io.flow.v0.models.TransactionMetadataOriginalTransaction;
|
|
13786
|
+
readonly estimate: io.flow.v0.models.TransactionMetadataTrueupSurchargeData;
|
|
13787
|
+
readonly actual: io.flow.v0.models.TransactionMetadataTrueupSurchargeData;
|
|
13788
|
+
}
|
|
13789
|
+
|
|
13790
|
+
interface TransactionMetadataTrueupSurchargeData {
|
|
13791
|
+
readonly source: io.flow.v0.enums.TrueupSource;
|
|
13792
|
+
readonly surcharge: io.flow.v0.models.TrueupLabelSurcharge;
|
|
13793
|
+
}
|
|
13794
|
+
|
|
13577
13795
|
interface TransactionNetworkDetailsCard {
|
|
13578
13796
|
readonly network_transaction_id?: string;
|
|
13579
13797
|
readonly network?: io.flow.v0.enums.CardType;
|
|
@@ -13611,6 +13829,20 @@ declare namespace io.flow.v0.models {
|
|
|
13611
13829
|
readonly weight: number;
|
|
13612
13830
|
}
|
|
13613
13831
|
|
|
13832
|
+
interface TrueupLabelBaseV2 {
|
|
13833
|
+
readonly amount: number;
|
|
13834
|
+
}
|
|
13835
|
+
|
|
13836
|
+
interface TrueupLabelBaseWeight {
|
|
13837
|
+
readonly weight: number;
|
|
13838
|
+
}
|
|
13839
|
+
|
|
13840
|
+
interface TrueupLabelFuel {
|
|
13841
|
+
readonly amount: number;
|
|
13842
|
+
readonly percentage?: number;
|
|
13843
|
+
readonly per_weight_unit?: number;
|
|
13844
|
+
}
|
|
13845
|
+
|
|
13614
13846
|
interface TrueupLabelSurcharge {
|
|
13615
13847
|
readonly amount: number;
|
|
13616
13848
|
readonly type: io.flow.v0.enums.TrueupSurchargeType;
|
|
@@ -13623,6 +13855,12 @@ declare namespace io.flow.v0.models {
|
|
|
13623
13855
|
readonly length?: io.flow.v0.enums.UnitOfLength;
|
|
13624
13856
|
}
|
|
13625
13857
|
|
|
13858
|
+
interface TrueupLabelWeights {
|
|
13859
|
+
readonly base: io.flow.v0.models.TrueupLabelBaseWeight;
|
|
13860
|
+
readonly dead?: io.flow.v0.models.DeadWeight;
|
|
13861
|
+
readonly dimensional?: io.flow.v0.models.DimensionalWeight;
|
|
13862
|
+
}
|
|
13863
|
+
|
|
13626
13864
|
interface UltimateBeneficiaryOwner {
|
|
13627
13865
|
readonly name: string;
|
|
13628
13866
|
readonly dob: string;
|
|
@@ -14084,6 +14322,8 @@ declare namespace io.flow.v0.unions {
|
|
|
14084
14322
|
| io.flow.v0.models.NotificationDeletedV2
|
|
14085
14323
|
| io.flow.v0.models.ManifestedLabelUpserted
|
|
14086
14324
|
| io.flow.v0.models.ManifestedLabelDeleted
|
|
14325
|
+
| io.flow.v0.models.LabelProcessingModificationUpserted
|
|
14326
|
+
| io.flow.v0.models.LabelProcessingModificationDeleted
|
|
14087
14327
|
| io.flow.v0.models.LocalItemUpserted
|
|
14088
14328
|
| io.flow.v0.models.LocalItemDeleted
|
|
14089
14329
|
| io.flow.v0.models.MerchantApplicationUpserted
|
|
@@ -14335,7 +14575,10 @@ declare namespace io.flow.v0.unions {
|
|
|
14335
14575
|
| io.flow.v0.models.AuthorizationOrderReference
|
|
14336
14576
|
| io.flow.v0.models.PaymentPaymentRequestReference;
|
|
14337
14577
|
type PaymentProcessorTransactionDetails =
|
|
14338
|
-
io.flow.v0.models.PaymentProcessorTransactionDetailsCard
|
|
14578
|
+
| io.flow.v0.models.PaymentProcessorTransactionDetailsCard
|
|
14579
|
+
| io.flow.v0.models.PaymentProcessorTransactionDetailsApm;
|
|
14580
|
+
type PaymentRequestCancellationReason =
|
|
14581
|
+
io.flow.v0.models.PaymentRequestCancellationReasonOrderMissing;
|
|
14339
14582
|
type PaymentSource = io.flow.v0.models.CardPaymentSource;
|
|
14340
14583
|
type PaymentSourceForm = io.flow.v0.models.CardPaymentSourceForm;
|
|
14341
14584
|
type PayoutStatus =
|
|
@@ -14458,9 +14701,11 @@ declare namespace io.flow.v0.unions {
|
|
|
14458
14701
|
| io.flow.v0.models.TransactionMetadataShippingLabel
|
|
14459
14702
|
| io.flow.v0.models.TransactionMetadataChannel
|
|
14460
14703
|
| io.flow.v0.models.TransactionMetadataTrueup
|
|
14704
|
+
| io.flow.v0.models.TransactionMetadataTrueupBase
|
|
14705
|
+
| io.flow.v0.models.TransactionMetadataTrueupSurcharge
|
|
14461
14706
|
| io.flow.v0.models.TransactionMetadataCarrierCharge
|
|
14462
|
-
| io.flow.v0.models.TransactionMetadataCarrierFee
|
|
14463
14707
|
| io.flow.v0.models.TransactionMetadataManual
|
|
14708
|
+
| io.flow.v0.models.TransactionMetadataFailedPayout
|
|
14464
14709
|
| io.flow.v0.models.TransactionMetadataPaymentTransaction;
|
|
14465
14710
|
}
|
|
14466
14711
|
|
|
@@ -15444,6 +15689,12 @@ export type LabelDeletedV2 = io.flow.v0.models.LabelDeletedV2;
|
|
|
15444
15689
|
export type LabelFormatDeleted = io.flow.v0.models.LabelFormatDeleted;
|
|
15445
15690
|
export type LabelFormatUpserted = io.flow.v0.models.LabelFormatUpserted;
|
|
15446
15691
|
export type LabelOrderSummary = io.flow.v0.models.LabelOrderSummary;
|
|
15692
|
+
export type LabelProcessingModification =
|
|
15693
|
+
io.flow.v0.models.LabelProcessingModification;
|
|
15694
|
+
export type LabelProcessingModificationDeleted =
|
|
15695
|
+
io.flow.v0.models.LabelProcessingModificationDeleted;
|
|
15696
|
+
export type LabelProcessingModificationUpserted =
|
|
15697
|
+
io.flow.v0.models.LabelProcessingModificationUpserted;
|
|
15447
15698
|
export type LabelReference = io.flow.v0.models.LabelReference;
|
|
15448
15699
|
export type LabelRequestMethod = io.flow.v0.enums.LabelRequestMethod;
|
|
15449
15700
|
export type LabelSurcharge = io.flow.v0.models.LabelSurcharge;
|
|
@@ -15972,6 +16223,8 @@ export type PaymentProcessorReference =
|
|
|
15972
16223
|
io.flow.v0.models.PaymentProcessorReference;
|
|
15973
16224
|
export type PaymentProcessorTransactionDetails =
|
|
15974
16225
|
io.flow.v0.unions.PaymentProcessorTransactionDetails;
|
|
16226
|
+
export type PaymentProcessorTransactionDetailsApm =
|
|
16227
|
+
io.flow.v0.models.PaymentProcessorTransactionDetailsApm;
|
|
15975
16228
|
export type PaymentProcessorTransactionDetailsCard =
|
|
15976
16229
|
io.flow.v0.models.PaymentProcessorTransactionDetailsCard;
|
|
15977
16230
|
export type PaymentReference = io.flow.v0.models.PaymentReference;
|
|
@@ -15987,6 +16240,10 @@ export type PaymentRequestBillingFees =
|
|
|
15987
16240
|
export type PaymentRequestBundle = io.flow.v0.models.PaymentRequestBundle;
|
|
15988
16241
|
export type PaymentRequestBundleForm =
|
|
15989
16242
|
io.flow.v0.models.PaymentRequestBundleForm;
|
|
16243
|
+
export type PaymentRequestCancellationReason =
|
|
16244
|
+
io.flow.v0.unions.PaymentRequestCancellationReason;
|
|
16245
|
+
export type PaymentRequestCancellationReasonOrderMissing =
|
|
16246
|
+
io.flow.v0.models.PaymentRequestCancellationReasonOrderMissing;
|
|
15990
16247
|
export type PaymentRequestDeleted = io.flow.v0.models.PaymentRequestDeleted;
|
|
15991
16248
|
export type PaymentRequestForm = io.flow.v0.models.PaymentRequestForm;
|
|
15992
16249
|
export type PaymentRequestReference = io.flow.v0.models.PaymentRequestReference;
|
|
@@ -16202,6 +16459,7 @@ export type RegionReference = io.flow.v0.models.RegionReference;
|
|
|
16202
16459
|
export type RegionSetting = io.flow.v0.models.RegionSetting;
|
|
16203
16460
|
export type RegionSettingForm = io.flow.v0.models.RegionSettingForm;
|
|
16204
16461
|
export type RegionType = io.flow.v0.enums.RegionType;
|
|
16462
|
+
export type RejectionPutForm = io.flow.v0.models.RejectionPutForm;
|
|
16205
16463
|
export type RemoteAreaByWeightServiceFee =
|
|
16206
16464
|
io.flow.v0.models.RemoteAreaByWeightServiceFee;
|
|
16207
16465
|
export type RemoteAreaRatecardFee = io.flow.v0.models.RemoteAreaRatecardFee;
|
|
@@ -16610,16 +16868,18 @@ export type TransactionDetailsCard = io.flow.v0.models.TransactionDetailsCard;
|
|
|
16610
16868
|
export type TransactionMetadata = io.flow.v0.unions.TransactionMetadata;
|
|
16611
16869
|
export type TransactionMetadataCarrierCharge =
|
|
16612
16870
|
io.flow.v0.models.TransactionMetadataCarrierCharge;
|
|
16613
|
-
export type TransactionMetadataCarrierFee =
|
|
16614
|
-
io.flow.v0.models.TransactionMetadataCarrierFee;
|
|
16615
|
-
export type TransactionMetadataCarrierFeeData =
|
|
16616
|
-
io.flow.v0.models.TransactionMetadataCarrierFeeData;
|
|
16617
16871
|
export type TransactionMetadataChannel =
|
|
16618
16872
|
io.flow.v0.models.TransactionMetadataChannel;
|
|
16619
16873
|
export type TransactionMetadataChannelCardMetadata =
|
|
16620
16874
|
io.flow.v0.models.TransactionMetadataChannelCardMetadata;
|
|
16621
16875
|
export type TransactionMetadataChannelCardMetadataIssuerSummary =
|
|
16622
16876
|
io.flow.v0.models.TransactionMetadataChannelCardMetadataIssuerSummary;
|
|
16877
|
+
export type TransactionMetadataChannelOrganizationTransaction =
|
|
16878
|
+
io.flow.v0.models.TransactionMetadataChannelOrganizationTransaction;
|
|
16879
|
+
export type TransactionMetadataFailedPayout =
|
|
16880
|
+
io.flow.v0.models.TransactionMetadataFailedPayout;
|
|
16881
|
+
export type TransactionMetadataFailedPayoutReference =
|
|
16882
|
+
io.flow.v0.models.TransactionMetadataFailedPayoutReference;
|
|
16623
16883
|
export type TransactionMetadataManual =
|
|
16624
16884
|
io.flow.v0.models.TransactionMetadataManual;
|
|
16625
16885
|
export type TransactionMetadataOriginalTransaction =
|
|
@@ -16634,8 +16894,16 @@ export type TransactionMetadataShippingLabelCarrier =
|
|
|
16634
16894
|
io.flow.v0.models.TransactionMetadataShippingLabelCarrier;
|
|
16635
16895
|
export type TransactionMetadataTrueup =
|
|
16636
16896
|
io.flow.v0.models.TransactionMetadataTrueup;
|
|
16897
|
+
export type TransactionMetadataTrueupBase =
|
|
16898
|
+
io.flow.v0.models.TransactionMetadataTrueupBase;
|
|
16899
|
+
export type TransactionMetadataTrueupBaseData =
|
|
16900
|
+
io.flow.v0.models.TransactionMetadataTrueupBaseData;
|
|
16637
16901
|
export type TransactionMetadataTrueupData =
|
|
16638
16902
|
io.flow.v0.models.TransactionMetadataTrueupData;
|
|
16903
|
+
export type TransactionMetadataTrueupSurcharge =
|
|
16904
|
+
io.flow.v0.models.TransactionMetadataTrueupSurcharge;
|
|
16905
|
+
export type TransactionMetadataTrueupSurchargeData =
|
|
16906
|
+
io.flow.v0.models.TransactionMetadataTrueupSurchargeData;
|
|
16639
16907
|
export type TransactionNetworkDetailsCard =
|
|
16640
16908
|
io.flow.v0.models.TransactionNetworkDetailsCard;
|
|
16641
16909
|
export type TransactionReference = io.flow.v0.models.TransactionReference;
|
|
@@ -16644,8 +16912,12 @@ export type TransactionUpserted = io.flow.v0.models.TransactionUpserted;
|
|
|
16644
16912
|
export type TransitEstimate = io.flow.v0.models.TransitEstimate;
|
|
16645
16913
|
export type TransitWindow = io.flow.v0.models.TransitWindow;
|
|
16646
16914
|
export type TrueupLabelBase = io.flow.v0.models.TrueupLabelBase;
|
|
16915
|
+
export type TrueupLabelBaseV2 = io.flow.v0.models.TrueupLabelBaseV2;
|
|
16916
|
+
export type TrueupLabelBaseWeight = io.flow.v0.models.TrueupLabelBaseWeight;
|
|
16917
|
+
export type TrueupLabelFuel = io.flow.v0.models.TrueupLabelFuel;
|
|
16647
16918
|
export type TrueupLabelSurcharge = io.flow.v0.models.TrueupLabelSurcharge;
|
|
16648
16919
|
export type TrueupLabelUnits = io.flow.v0.models.TrueupLabelUnits;
|
|
16920
|
+
export type TrueupLabelWeights = io.flow.v0.models.TrueupLabelWeights;
|
|
16649
16921
|
export type TrueupSource = io.flow.v0.enums.TrueupSource;
|
|
16650
16922
|
export type TrueupSurchargeType = io.flow.v0.enums.TrueupSurchargeType;
|
|
16651
16923
|
export type UltimateBeneficiaryOwner =
|