@flowio/api-prop-types 10.16.53 → 10.16.54
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/lib/api.d.ts +424 -34
- package/lib/api.js +1 -1
- package/package.json +2 -2
- package/src/api.d.ts +424 -34
- package/src/api.js +566 -84
package/lib/api.d.ts
CHANGED
|
@@ -152,11 +152,13 @@ declare namespace io.flow.google.pay.v0.unions {
|
|
|
152
152
|
|
|
153
153
|
declare namespace io.flow.stripe.v0.enums {
|
|
154
154
|
type AccountType = 'platform' | 'custom' | 'standard' | 'express';
|
|
155
|
+
type ApplePayType = 'apple_pay' | 'apple_pay_later';
|
|
155
156
|
type CancellationReason = 'abandoned' | 'automatic' | 'duplicate' | 'failed_invoice' | 'fraudulent' | 'requested_by_customer' | 'void_invoice';
|
|
156
157
|
type CaptureMethod = 'automatic' | 'manual';
|
|
157
158
|
type CardBrand = 'American Express' | 'MasterCard' | 'Discover' | 'JCB' | 'Diners Club' | 'Unknown';
|
|
158
159
|
type CardErrorCode = 'invalid_number' | 'invalid_expiry_month' | 'invalid_expiry_year' | 'invalid_cvc' | 'invalid_swipe_data' | 'incorrect_number' | 'expired_card' | 'incorrect_cvc' | 'incorrect_zip' | 'card_declined' | 'missing' | 'processing_error';
|
|
159
160
|
type CardFundingType = 'credit' | 'debit' | 'prepaid' | 'unknown';
|
|
161
|
+
type CardNetwork = 'amex' | 'cartes_bancaires' | 'diners' | 'discover' | 'eftpos_au' | 'interac' | 'jcb' | 'mastercard' | 'unionpay' | 'visa' | 'unknown';
|
|
160
162
|
type CheckOutcome = 'pass' | 'fail' | 'unavailable' | 'unchecked';
|
|
161
163
|
type CodeVerificationStatus = 'pending' | 'succeeded' | 'failed';
|
|
162
164
|
type ConfirmationMethod = 'automatic' | 'manual';
|
|
@@ -169,9 +171,11 @@ declare namespace io.flow.stripe.v0.enums {
|
|
|
169
171
|
type NextActionType = 'redirect_to_url' | 'use_stripe_sdk';
|
|
170
172
|
type OrderItemType = 'sku' | 'tax' | 'shipping' | 'discount';
|
|
171
173
|
type PaymentIntentStatus = 'canceled' | 'processing' | 'requires_action' | 'requires_capture' | 'requires_confirmation' | 'requires_payment_method' | 'succeeded';
|
|
174
|
+
type PaymentMethodCategoryKlarna = 'pay_later' | 'pay_now' | 'pay_with_financing' | 'pay_in_installments';
|
|
172
175
|
type PaymentMethodType = 'card' | 'card_present';
|
|
173
176
|
type PaymentOutcomeType = 'authorized' | 'manual_review' | 'issuer_declined' | 'blocked' | 'invalid';
|
|
174
177
|
type PaymentStatus = 'succeeded' | 'pending' | 'failed';
|
|
178
|
+
type PreferredLocaleKlarna = 'de-AT' | 'en-AT' | 'nl-BE' | 'fr-BE' | 'en-BE' | 'de-DE' | 'en-DE' | 'da-DK' | 'en-DK' | 'es-ES' | 'en-ES' | 'fi-FI' | 'sv-FI' | 'en-FI' | 'en-GB' | 'en-IE' | 'it-IT' | 'en-IT' | 'nl-NL' | 'en-NL' | 'nb-NO' | 'en-NO' | 'sv-SE' | 'en-SE' | 'en-US' | 'es-US' | 'fr-FR' | 'en-FR' | 'cs-CZ' | 'en-CZ' | 'el-GR' | 'en-GR' | 'en-AU' | 'en-NZ' | 'en-CA' | 'fr-CA' | 'pl-PL' | 'en-PL' | 'pt-PT' | 'en-PT' | 'de-CH' | 'fr-CH' | 'it-CH' | 'en-CH';
|
|
175
179
|
type RefundFailureReason = 'lost_or_stolen_card' | 'expired_or_canceled_card' | 'unknown';
|
|
176
180
|
type RefundReason = 'duplicate' | 'fraudulent' | 'requested_by_customer';
|
|
177
181
|
type RefundStatus = 'succeeded' | 'failed' | 'pending' | 'canceled';
|
|
@@ -183,6 +187,9 @@ declare namespace io.flow.stripe.v0.enums {
|
|
|
183
187
|
type SourceType = 'ach_credit_transfer' | 'ach_debit' | 'alipay' | 'bancontact' | 'bitcoin' | 'card' | 'eps' | 'giropay' | 'ideal' | 'klarna' | 'multibanco' | 'p24' | 'sepa_debit' | 'sofort' | 'three_d_secure';
|
|
184
188
|
type SourceUsageType = 'reusable' | 'single_use';
|
|
185
189
|
type ThreeDSecureSupport = 'required' | 'recommended' | 'optional' | 'not_supported';
|
|
190
|
+
type ThreeDsAuthenticationFlow = 'challenge' | 'frictionless';
|
|
191
|
+
type ThreeDsResult = 'authenticated' | 'attempt_acknowledged' | 'exempted' | 'not_supported' | 'failed' | 'processing_error';
|
|
192
|
+
type ThreeDsResultReason = 'card_not_enrolled' | 'network_not_supported' | 'abandoned' | 'canceled' | 'rejected' | 'bypassed' | 'protocol_error';
|
|
186
193
|
type TokenType = 'account' | 'bank_account' | 'card' | 'pii';
|
|
187
194
|
type UseStripeSdkType = 'three_d_secure_redirect' | 'stripe_3ds2_fingerprint';
|
|
188
195
|
}
|
|
@@ -232,6 +239,16 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
232
239
|
readonly 'state'?: string;
|
|
233
240
|
}
|
|
234
241
|
|
|
242
|
+
interface ApplePay {
|
|
243
|
+
readonly 'type': 'apple_pay';
|
|
244
|
+
readonly 'apple_pay': io.flow.stripe.v0.models.ApplePayInformation;
|
|
245
|
+
readonly 'dynamic_last4'?: string;
|
|
246
|
+
}
|
|
247
|
+
|
|
248
|
+
interface ApplePayInformation {
|
|
249
|
+
readonly 'type': io.flow.stripe.v0.enums.ApplePayType;
|
|
250
|
+
}
|
|
251
|
+
|
|
235
252
|
interface Card {
|
|
236
253
|
readonly 'id': string;
|
|
237
254
|
readonly 'object': string;
|
|
@@ -257,6 +274,12 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
257
274
|
readonly 'tokenization_method'?: string;
|
|
258
275
|
}
|
|
259
276
|
|
|
277
|
+
interface CardChecks {
|
|
278
|
+
readonly 'address_line1_check'?: io.flow.stripe.v0.enums.CheckOutcome;
|
|
279
|
+
readonly 'address_postal_code_check'?: io.flow.stripe.v0.enums.CheckOutcome;
|
|
280
|
+
readonly 'cvc_check'?: io.flow.stripe.v0.enums.CheckOutcome;
|
|
281
|
+
}
|
|
282
|
+
|
|
260
283
|
interface CardRequest {
|
|
261
284
|
readonly 'object': string;
|
|
262
285
|
readonly 'exp_month': string;
|
|
@@ -300,7 +323,7 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
300
323
|
readonly 'payment_intent'?: string;
|
|
301
324
|
readonly 'calculated_statement_descriptor'?: string;
|
|
302
325
|
readonly 'statement_descriptor'?: string;
|
|
303
|
-
readonly 'payment_method_details'?:
|
|
326
|
+
readonly 'payment_method_details'?: io.flow.stripe.v0.unions.PaymentMethodDetails;
|
|
304
327
|
}
|
|
305
328
|
|
|
306
329
|
interface ChargeDestination {
|
|
@@ -350,7 +373,7 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
350
373
|
readonly 'payment_intent'?: string;
|
|
351
374
|
readonly 'calculated_statement_descriptor'?: string;
|
|
352
375
|
readonly 'statement_descriptor'?: string;
|
|
353
|
-
readonly 'payment_method_details'?:
|
|
376
|
+
readonly 'payment_method_details'?: io.flow.stripe.v0.unions.PaymentMethodDetails;
|
|
354
377
|
}
|
|
355
378
|
|
|
356
379
|
interface CodeVerification {
|
|
@@ -407,12 +430,29 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
407
430
|
readonly 'additional_owners'?: io.flow.stripe.v0.models.Owner[];
|
|
408
431
|
}
|
|
409
432
|
|
|
433
|
+
interface Masterpass {
|
|
434
|
+
readonly 'type': 'masterpass';
|
|
435
|
+
readonly 'masterpass': io.flow.stripe.v0.models.MasterpassInformation;
|
|
436
|
+
readonly 'dynamic_last4'?: string;
|
|
437
|
+
}
|
|
438
|
+
|
|
439
|
+
interface MasterpassInformation {
|
|
440
|
+
readonly 'billing_address'?: io.flow.stripe.v0.models.Address;
|
|
441
|
+
readonly 'email'?: string;
|
|
442
|
+
readonly 'name'?: string;
|
|
443
|
+
readonly 'shipping_address'?: io.flow.stripe.v0.models.Address;
|
|
444
|
+
}
|
|
445
|
+
|
|
410
446
|
interface Metadata {
|
|
411
447
|
readonly 'order_number'?: string;
|
|
412
448
|
readonly 'authorization_id'?: string;
|
|
413
449
|
readonly 'organization_id'?: string;
|
|
414
450
|
}
|
|
415
451
|
|
|
452
|
+
interface NetworkTokenUsed {
|
|
453
|
+
readonly 'used'?: boolean;
|
|
454
|
+
}
|
|
455
|
+
|
|
416
456
|
interface NextAction {
|
|
417
457
|
readonly 'type': io.flow.stripe.v0.enums.NextActionType;
|
|
418
458
|
readonly 'use_stripe_sdk'?: any/*object*/;
|
|
@@ -594,6 +634,43 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
594
634
|
readonly 'phone'?: string;
|
|
595
635
|
}
|
|
596
636
|
|
|
637
|
+
interface PaymentMethodDetailsCard {
|
|
638
|
+
readonly 'type': 'card';
|
|
639
|
+
readonly 'card': io.flow.stripe.v0.models.PaymentMethodDetailsCardInformation;
|
|
640
|
+
}
|
|
641
|
+
|
|
642
|
+
interface PaymentMethodDetailsCardInformation {
|
|
643
|
+
readonly 'brand'?: string;
|
|
644
|
+
readonly 'checks'?: io.flow.stripe.v0.models.CardChecks;
|
|
645
|
+
readonly 'country'?: string;
|
|
646
|
+
readonly 'exp_month'?: number;
|
|
647
|
+
readonly 'exp_year'?: number;
|
|
648
|
+
readonly 'fingerprint'?: string;
|
|
649
|
+
readonly 'funding'?: io.flow.stripe.v0.enums.CardFundingType;
|
|
650
|
+
readonly 'installments'?: io.flow.stripe.v0.models.Plan;
|
|
651
|
+
readonly 'last4'?: string;
|
|
652
|
+
readonly 'mandate'?: string;
|
|
653
|
+
readonly 'network'?: io.flow.stripe.v0.enums.CardNetwork;
|
|
654
|
+
readonly 'network_token'?: io.flow.stripe.v0.models.NetworkTokenUsed;
|
|
655
|
+
readonly 'three_d_secure'?: io.flow.stripe.v0.models.ThreeDSecureCharge;
|
|
656
|
+
readonly 'capture_before'?: number;
|
|
657
|
+
readonly 'description'?: string;
|
|
658
|
+
readonly 'iin'?: string;
|
|
659
|
+
readonly 'issuer'?: string;
|
|
660
|
+
readonly 'wallet'?: io.flow.stripe.v0.unions.CardWallet;
|
|
661
|
+
readonly 'network_transaction_id'?: string;
|
|
662
|
+
}
|
|
663
|
+
|
|
664
|
+
interface PaymentMethodDetailsKlarna {
|
|
665
|
+
readonly 'type': 'klarna';
|
|
666
|
+
readonly 'klarna': io.flow.stripe.v0.models.PaymentMethodDetailsKlarnaInformation;
|
|
667
|
+
}
|
|
668
|
+
|
|
669
|
+
interface PaymentMethodDetailsKlarnaInformation {
|
|
670
|
+
readonly 'payment_method_category'?: io.flow.stripe.v0.enums.PaymentMethodCategoryKlarna;
|
|
671
|
+
readonly 'preferred_locale'?: io.flow.stripe.v0.enums.PreferredLocaleKlarna;
|
|
672
|
+
}
|
|
673
|
+
|
|
597
674
|
interface PaymentMethodForm {
|
|
598
675
|
readonly 'type': io.flow.stripe.v0.enums.PaymentMethodType;
|
|
599
676
|
readonly 'billing_details'?: io.flow.stripe.v0.models.PaymentMethodBillingDetails;
|
|
@@ -616,6 +693,12 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
616
693
|
readonly 'type'?: io.flow.stripe.v0.enums.PaymentOutcomeType;
|
|
617
694
|
}
|
|
618
695
|
|
|
696
|
+
interface Plan {
|
|
697
|
+
readonly 'count'?: number;
|
|
698
|
+
readonly 'interval'?: string;
|
|
699
|
+
readonly 'type'?: string;
|
|
700
|
+
}
|
|
701
|
+
|
|
619
702
|
interface Receiver {
|
|
620
703
|
readonly 'address'?: string;
|
|
621
704
|
readonly 'amount_charged'?: number;
|
|
@@ -837,6 +920,13 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
837
920
|
readonly 'customer'?: string;
|
|
838
921
|
}
|
|
839
922
|
|
|
923
|
+
interface ThreeDSecureCharge {
|
|
924
|
+
readonly 'authentication_flow'?: io.flow.stripe.v0.enums.ThreeDsAuthenticationFlow;
|
|
925
|
+
readonly 'result'?: io.flow.stripe.v0.enums.ThreeDsResult;
|
|
926
|
+
readonly 'result_reason'?: io.flow.stripe.v0.enums.ThreeDsResultReason;
|
|
927
|
+
readonly 'version'?: string;
|
|
928
|
+
}
|
|
929
|
+
|
|
840
930
|
interface ThreeDSecureRedirect {
|
|
841
931
|
readonly 'type': io.flow.stripe.v0.enums.UseStripeSdkType;
|
|
842
932
|
readonly 'stripe_js': string;
|
|
@@ -863,6 +953,30 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
863
953
|
readonly 'amount'?: number;
|
|
864
954
|
readonly 'destination'?: string;
|
|
865
955
|
}
|
|
956
|
+
|
|
957
|
+
interface VisaCheckout {
|
|
958
|
+
readonly 'type': 'visa_checkout';
|
|
959
|
+
readonly 'visa_checkout': io.flow.stripe.v0.models.VisaCheckoutInformation;
|
|
960
|
+
readonly 'dynamic_last4'?: string;
|
|
961
|
+
}
|
|
962
|
+
|
|
963
|
+
interface VisaCheckoutInformation {
|
|
964
|
+
readonly 'billing_address'?: io.flow.stripe.v0.models.Address;
|
|
965
|
+
readonly 'email'?: string;
|
|
966
|
+
readonly 'name'?: string;
|
|
967
|
+
readonly 'shipping_address'?: io.flow.stripe.v0.models.Address;
|
|
968
|
+
}
|
|
969
|
+
}
|
|
970
|
+
|
|
971
|
+
declare namespace io.flow.stripe.v0.unions {
|
|
972
|
+
type CardWallet = (io.flow.stripe.v0.models.Masterpass | io.flow.stripe.v0.models.ApplePay | io.flow.stripe.v0.models.VisaCheckout);
|
|
973
|
+
type PaymentMethodDetails = (io.flow.stripe.v0.models.PaymentMethodDetailsCard | io.flow.stripe.v0.models.PaymentMethodDetailsKlarna);
|
|
974
|
+
}
|
|
975
|
+
|
|
976
|
+
declare namespace io.flow.units.v0.enums {
|
|
977
|
+
type UnitOfLength = 'millimeter' | 'centimeter' | 'inch' | 'foot' | 'meter';
|
|
978
|
+
type UnitOfVolume = 'cubic_inch' | 'cubic_meter';
|
|
979
|
+
type UnitOfWeight = 'gram' | 'kilogram' | 'ounce' | 'pound';
|
|
866
980
|
}
|
|
867
981
|
|
|
868
982
|
declare namespace io.flow.shopify.external.v0.enums {
|
|
@@ -956,7 +1070,7 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
956
1070
|
readonly 'starts_at': string;
|
|
957
1071
|
readonly 'ends_at'?: string;
|
|
958
1072
|
readonly 'prerequisite_subtotal_range'?: io.flow.shopify.external.v0.models.PriceRuleGreaterThanRange;
|
|
959
|
-
readonly '
|
|
1073
|
+
readonly 'prerequisite_shipping_price_range'?: io.flow.shopify.external.v0.models.PriceRuleLessThanRange;
|
|
960
1074
|
readonly 'usage_limit'?: number;
|
|
961
1075
|
readonly 'entitled_product_ids': number[];
|
|
962
1076
|
readonly 'entitled_variant_ids': number[];
|
|
@@ -966,7 +1080,7 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
966
1080
|
readonly 'once_per_customer': boolean;
|
|
967
1081
|
readonly 'target_selection': io.flow.shopify.external.v0.enums.PriceRuleTargetSelection;
|
|
968
1082
|
readonly 'customer_selection': io.flow.shopify.external.v0.enums.PriceRuleCustomerSelection;
|
|
969
|
-
readonly '
|
|
1083
|
+
readonly 'customer_segment_prerequisite_ids'?: number[];
|
|
970
1084
|
readonly 'prerequisite_customer_ids'?: number[];
|
|
971
1085
|
readonly 'prerequisite_quantity_range'?: io.flow.shopify.external.v0.models.PriceRuleGreaterThanRange;
|
|
972
1086
|
readonly 'prerequisite_product_ids'?: number[];
|
|
@@ -1769,6 +1883,33 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
1769
1883
|
}
|
|
1770
1884
|
}
|
|
1771
1885
|
|
|
1886
|
+
declare namespace io.flow.ben.test.internal.v0.models {
|
|
1887
|
+
interface GenerateLoadMultipleOrgs {
|
|
1888
|
+
readonly 'discriminator': 'generate_load_multiple_orgs';
|
|
1889
|
+
readonly 'organization_ids': string[];
|
|
1890
|
+
readonly 'num_events': number;
|
|
1891
|
+
}
|
|
1892
|
+
|
|
1893
|
+
interface GenerateLoadSingleOrg {
|
|
1894
|
+
readonly 'discriminator': 'generate_load_single_org';
|
|
1895
|
+
readonly 'organization_id': string;
|
|
1896
|
+
readonly 'num_events': number;
|
|
1897
|
+
}
|
|
1898
|
+
|
|
1899
|
+
interface Test {
|
|
1900
|
+
readonly 'id': string;
|
|
1901
|
+
readonly 'name': string;
|
|
1902
|
+
}
|
|
1903
|
+
|
|
1904
|
+
interface TestForm {
|
|
1905
|
+
readonly 'name': string;
|
|
1906
|
+
}
|
|
1907
|
+
}
|
|
1908
|
+
|
|
1909
|
+
declare namespace io.flow.ben.test.internal.v0.unions {
|
|
1910
|
+
type GenerateLoad = (io.flow.ben.test.internal.v0.models.GenerateLoadSingleOrg | io.flow.ben.test.internal.v0.models.GenerateLoadMultipleOrgs);
|
|
1911
|
+
}
|
|
1912
|
+
|
|
1772
1913
|
declare namespace io.flow.apple.pay.v0.enums {
|
|
1773
1914
|
type ApplePayContactField = 'email' | 'name' | 'phone' | 'postalAddress' | 'phoneticName';
|
|
1774
1915
|
type ApplePayLineItemType = 'final' | 'pending';
|
|
@@ -1837,6 +1978,119 @@ declare namespace io.flow.apple.pay.v0.models {
|
|
|
1837
1978
|
}
|
|
1838
1979
|
}
|
|
1839
1980
|
|
|
1981
|
+
declare namespace io.flow.error.v0.enums {
|
|
1982
|
+
type GenericErrorCode = 'generic_error' | 'client_error' | 'server_error';
|
|
1983
|
+
}
|
|
1984
|
+
|
|
1985
|
+
declare namespace io.flow.error.v0.models {
|
|
1986
|
+
interface GenericError {
|
|
1987
|
+
readonly 'code': io.flow.error.v0.enums.GenericErrorCode;
|
|
1988
|
+
readonly 'messages': string[];
|
|
1989
|
+
}
|
|
1990
|
+
}
|
|
1991
|
+
|
|
1992
|
+
declare namespace io.flow.billing.RESERVED_WORD_true.up.v0.enums {
|
|
1993
|
+
type TrueUpSurchargeType = 'fuel' | 'remote_area' | 'oversize' | 'duties_paid' | 'emergency' | 'peak';
|
|
1994
|
+
type WeightSelection = 'dead' | 'dimensional';
|
|
1995
|
+
}
|
|
1996
|
+
|
|
1997
|
+
declare namespace io.flow.billing.RESERVED_WORD_true.up.v0.models {
|
|
1998
|
+
interface LabelBase {
|
|
1999
|
+
readonly 'amount': number;
|
|
2000
|
+
readonly 'weight': number;
|
|
2001
|
+
}
|
|
2002
|
+
|
|
2003
|
+
interface LabelDestination {
|
|
2004
|
+
readonly 'country': string;
|
|
2005
|
+
}
|
|
2006
|
+
|
|
2007
|
+
interface LabelInvoiceRequest {
|
|
2008
|
+
readonly 'id': string;
|
|
2009
|
+
readonly 'label': io.flow.billing.RESERVED_WORD_true.up.v0.models.TrueUpLabelSummary;
|
|
2010
|
+
readonly 'units': io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelUnits;
|
|
2011
|
+
readonly 'base': io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelBase;
|
|
2012
|
+
readonly 'surcharges': io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelSurcharge[];
|
|
2013
|
+
readonly 'total': number;
|
|
2014
|
+
readonly 'destination': io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelDestination;
|
|
2015
|
+
readonly 'metadata': io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelMetadata;
|
|
2016
|
+
}
|
|
2017
|
+
|
|
2018
|
+
interface LabelMetadata {
|
|
2019
|
+
readonly 'ratecard': io.flow.billing.RESERVED_WORD_true.up.v0.models.MetadataRatecard;
|
|
2020
|
+
readonly 'weights': io.flow.billing.RESERVED_WORD_true.up.v0.models.MetadataWeights;
|
|
2021
|
+
}
|
|
2022
|
+
|
|
2023
|
+
interface LabelSurcharge {
|
|
2024
|
+
readonly 'amount': number;
|
|
2025
|
+
readonly 'type': io.flow.billing.RESERVED_WORD_true.up.v0.enums.TrueUpSurchargeType;
|
|
2026
|
+
readonly 'detail': io.flow.billing.RESERVED_WORD_true.up.v0.unions.LabelSurchargeDetail;
|
|
2027
|
+
}
|
|
2028
|
+
|
|
2029
|
+
interface LabelSurchargeDetailFlat {
|
|
2030
|
+
readonly 'discriminator': 'flat';
|
|
2031
|
+
readonly 'placeholder'?: string;
|
|
2032
|
+
}
|
|
2033
|
+
|
|
2034
|
+
interface LabelSurchargeDetailPerWeightUnit {
|
|
2035
|
+
readonly 'discriminator': 'per_weight_unit';
|
|
2036
|
+
readonly 'fee': number;
|
|
2037
|
+
}
|
|
2038
|
+
|
|
2039
|
+
interface LabelSurchargeDetailPercentage {
|
|
2040
|
+
readonly 'discriminator': 'percentage';
|
|
2041
|
+
readonly 'percentage': number;
|
|
2042
|
+
}
|
|
2043
|
+
|
|
2044
|
+
interface LabelUnits {
|
|
2045
|
+
readonly 'currency': string;
|
|
2046
|
+
readonly 'weight': io.flow.units.v0.enums.UnitOfWeight;
|
|
2047
|
+
readonly 'length': io.flow.units.v0.enums.UnitOfLength;
|
|
2048
|
+
}
|
|
2049
|
+
|
|
2050
|
+
interface MetadataProposition {
|
|
2051
|
+
readonly 'shipping_method': io.flow.billing.RESERVED_WORD_true.up.v0.models.ShippingMethodReference;
|
|
2052
|
+
readonly 'name': string;
|
|
2053
|
+
}
|
|
2054
|
+
|
|
2055
|
+
interface MetadataRatecard {
|
|
2056
|
+
readonly 'id': string;
|
|
2057
|
+
readonly 'proposition': io.flow.billing.RESERVED_WORD_true.up.v0.models.MetadataProposition;
|
|
2058
|
+
}
|
|
2059
|
+
|
|
2060
|
+
interface MetadataWeights {
|
|
2061
|
+
readonly 'selected': io.flow.billing.RESERVED_WORD_true.up.v0.enums.WeightSelection;
|
|
2062
|
+
readonly 'dead'?: io.flow.billing.RESERVED_WORD_true.up.v0.models.WeightsDead;
|
|
2063
|
+
readonly 'dimensional'?: io.flow.billing.RESERVED_WORD_true.up.v0.models.WeightsDimensional;
|
|
2064
|
+
}
|
|
2065
|
+
|
|
2066
|
+
interface ShippingMethodReference {
|
|
2067
|
+
readonly 'id': string;
|
|
2068
|
+
}
|
|
2069
|
+
|
|
2070
|
+
interface TrueUpLabelSummary {
|
|
2071
|
+
readonly 'id': string;
|
|
2072
|
+
readonly 'carrier_service_id': string;
|
|
2073
|
+
readonly 'carrier_tracking_number': string;
|
|
2074
|
+
readonly 'flow_tracking_number': string;
|
|
2075
|
+
readonly 'created_at': string;
|
|
2076
|
+
}
|
|
2077
|
+
|
|
2078
|
+
interface WeightsDead {
|
|
2079
|
+
readonly 'weight': number;
|
|
2080
|
+
}
|
|
2081
|
+
|
|
2082
|
+
interface WeightsDimensional {
|
|
2083
|
+
readonly 'weight': number;
|
|
2084
|
+
readonly 'length': number;
|
|
2085
|
+
readonly 'width': number;
|
|
2086
|
+
readonly 'height': number;
|
|
2087
|
+
}
|
|
2088
|
+
}
|
|
2089
|
+
|
|
2090
|
+
declare namespace io.flow.billing.RESERVED_WORD_true.up.v0.unions {
|
|
2091
|
+
type LabelSurchargeDetail = (io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelSurchargeDetailFlat | io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelSurchargeDetailPercentage | io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelSurchargeDetailPerWeightUnit);
|
|
2092
|
+
}
|
|
2093
|
+
|
|
1840
2094
|
declare namespace io.flow.v0.enums {
|
|
1841
2095
|
type AbandonedOrderPromotionStatus = 'active' | 'inactive';
|
|
1842
2096
|
type AbandonedOrderSettingStatus = 'active' | 'inactive';
|
|
@@ -1892,7 +2146,7 @@ declare namespace io.flow.v0.enums {
|
|
|
1892
2146
|
type EconomicTitleLocation = 'high_seas' | 'origination' | 'destination';
|
|
1893
2147
|
type EntityIdentifierType = 'ioss' | 'voec';
|
|
1894
2148
|
type Environment = 'sandbox' | 'production';
|
|
1895
|
-
type EventType = 'test_upserted' | 'transaction_upserted' | 'organization_transaction_upserted' | 'organization_transaction_deleted' | 'statement_upserted' | 'statement_deleted' | 'channel_transaction_upserted' | 'channel_transaction_deleted' | 'channel_transaction_deleted_v2' | 'channel_statement_upserted' | 'channel_statement_deleted' | 'channel_payout_upserted' | 'channel_payout_deleted' | 'organization_payout_upserted' | 'organization_payout_deleted' | 'attribute_upserted' | 'attribute_deleted' | 'attribute_upserted_v2' | 'attribute_deleted_v2' | 'catalog_upserted' | 'catalog_deleted' | 'subcatalog_upserted' | 'subcatalog_deleted' | 'catalog_item_upserted' | 'catalog_item_deleted' | 'catalog_item_upserted_v2' | 'catalog_item_deleted_v2' | 'subcatalog_item_upserted' | 'subcatalog_item_deleted' | 'catalog_statistics_upserted' | 'catalog_statistics_deleted' | 'channel_upserted' | 'channel_deleted' | 'channel_currency_upserted' | 'channel_currency_deleted' | 'channel_organization_upserted' | 'channel_organization_deleted' | 'b2b_invoice_upserted' | 'b2b_invoice_deleted' | 'b2b_credit_memo_upserted' | 'b2b_credit_memo_deleted' | 'consumer_invoice_upserted' | 'consumer_invoice_deleted' | 'credit_memo_upserted' | 'credit_memo_deleted' | 'crossdock_shipment_upserted' | 'rate_deleted' | 'rate_upserted' | 'rate_deleted_v3' | 'rate_upserted_v3' | 'customer_upserted' | 'customer_deleted' | 'customer_address_book_contact_upserted' | 'customer_address_book_contact_deleted' | 'email_notification_upserted' | 'email_notification_deleted' | 'available_promotions_upserted' | 'available_promotions_deleted' | 'available_promotions_upserted_v2' | 'available_promotions_deleted_v2' | 'allocation_deleted_v2' | 'allocation_upserted_v2' | 'currency_format_deleted' | 'currency_format_upserted' | 'experience_deleted' | 'experience_upserted' | 'experience_deleted_v2' | 'experience_upserted_v2' | 'country_status_upserted' | 'country_status_deleted' | 'experience_price_book_mapping_deleted' | 'experience_price_book_mapping_upserted' | 'experience_logistics_settings_upserted' | 'experience_logistics_settings_deleted' | 'item_margin_deleted_v2' | 'item_margin_upserted_v2' | 'item_sales_margin_deleted' | 'item_sales_margin_upserted' | 'label_format_deleted' | 'label_format_upserted' | 'order_deleted' | 'order_upserted' | 'order_deleted_v2' | 'order_upserted_v2' | 'order_identifier_deleted' | 'order_identifier_upserted' | 'order_identifier_deleted_v2' | 'order_identifier_upserted_v2' | 'order_identifier_upserted_v3' | 'order_replacement_upserted' | 'order_replacement_deleted' | 'pricing_deleted' | 'pricing_upserted' | 'order_service_change_request' | 'fraud_status_changed' | 'center_upserted' | 'center_deleted' | 'shipping_configuration_upserted' | 'shipping_configuration_deleted' | 'tier_upserted_v2' | 'tier_deleted_v2' | 'shipping_lane_upserted' | 'shipping_lane_deleted' | 'shipping_configuration_item_availability_upserted' | 'shipping_configuration_item_availability_deleted' | 'shipping_configuration_item_shipping_pricing_upserted' | 'shipping_configuration_item_shipping_pricing_deleted' | 'hs6_code_upserted' | 'hs6_code_deleted' | 'hs10_code_upserted' | 'hs10_code_deleted' | 'item_origin_upserted' | 'item_origin_deleted' | 'harmonized_landed_cost_upserted' | 'fully_harmonized_item_upserted' | 'import_completed_v2' | 'import_failed_v2' | 'rule_upserted' | 'rule_deleted' | 'snapshot_upserted' | 'snapshot_deleted' | 'label_upserted' | 'label_deleted_v2' | 'label_upserted_v2' | 'notification_upserted_v2' | 'notification_deleted_v2' | 'manifested_label_upserted' | 'manifested_label_deleted' | 'local_item_upserted' | 'local_item_deleted' | 'merchant_application_upserted' | 'merchant_application_deleted' | 'checkout_optin_responses_upserted' | 'checkout_optin_responses_deleted' | 'browse_optin_responses_upserted' | 'browse_optin_responses_deleted' | 'order_placed' | 'order_placed_v2' | 'ready_to_fulfill' | 'ready_to_fulfill_v2' | 'membership_upserted_v2' | 'membership_deleted_v2' | 'organization_upserted' | 'organization_deleted' | 'organization_upserted_v2' | 'organization_deleted_v2' | 'organization_default_configurations_upserted' | 'organization_default_configurations_deleted' | 'ecommerce_platform_upserted' | 'ecommerce_platform_deleted' | 'organization_onboarding_state_upserted' | 'organization_onboarding_state_deleted' | 'authorization_deleted_v2' | 'authorization_status_changed' | 'card_authorization_upserted_v2' | 'card_authorization_deleted_v2' | 'online_authorization_upserted_v2' | 'online_authorization_deleted_v2' | 'capture_upserted_v2' | 'capture_deleted' | 'card_upserted_v2' | 'card_deleted' | 'payment_upserted' | 'payment_deleted' | 'refund_upserted_v2' | 'refund_deleted_v2' | 'refund_capture_upserted_v2' | 'reversal_upserted' | 'reversal_deleted' | 'capture_identifier_upserted' | 'capture_identifier_deleted' | 'refund_identifier_upserted' | 'refund_identifier_deleted' | 'virtual_card_capture_upserted' | 'virtual_card_capture_deleted' | 'virtual_card_refund_upserted' | 'virtual_card_refund_deleted' | 'payment_request_upserted' | 'payment_request_deleted' | 'price_book_upserted' | 'price_book_deleted' | 'price_book_item_upserted' | 'price_book_item_deleted' | 'organization_rates_published' | 'ratecard_lane_upserted' | 'ratecard_lane_deleted' | 'ratecard_upserted' | 'ratecard_deleted' | 'product_restriction_result_upserted' | 'product_restriction_result_deleted' | 'return_upserted' | 'return_deleted' | 'return_upserted_v2' | 'return_deleted_v2' | 'shopify_localization_setting_upserted' | 'shopify_localization_setting_deleted' | 'tracking_label_event_upserted';
|
|
2149
|
+
type EventType = 'test_upserted' | 'generate_load' | 'transaction_upserted' | 'organization_transaction_upserted' | 'organization_transaction_deleted' | 'statement_upserted' | 'statement_deleted' | 'channel_transaction_upserted' | 'channel_transaction_deleted' | 'channel_transaction_deleted_v2' | 'channel_statement_upserted' | 'channel_statement_deleted' | 'channel_payout_upserted' | 'channel_payout_deleted' | 'organization_payout_upserted' | 'organization_payout_deleted' | 'attribute_upserted' | 'attribute_deleted' | 'attribute_upserted_v2' | 'attribute_deleted_v2' | 'catalog_upserted' | 'catalog_deleted' | 'subcatalog_upserted' | 'subcatalog_deleted' | 'catalog_item_upserted' | 'catalog_item_deleted' | 'catalog_item_upserted_v2' | 'catalog_item_deleted_v2' | 'subcatalog_item_upserted' | 'subcatalog_item_deleted' | 'catalog_statistics_upserted' | 'catalog_statistics_deleted' | 'channel_upserted' | 'channel_deleted' | 'channel_currency_upserted' | 'channel_currency_deleted' | 'channel_organization_upserted' | 'channel_organization_deleted' | 'b2b_invoice_upserted' | 'b2b_invoice_deleted' | 'b2b_credit_memo_upserted' | 'b2b_credit_memo_deleted' | 'consumer_invoice_upserted' | 'consumer_invoice_deleted' | 'credit_memo_upserted' | 'credit_memo_deleted' | 'crossdock_shipment_upserted' | 'rate_deleted' | 'rate_upserted' | 'rate_deleted_v3' | 'rate_upserted_v3' | 'customer_upserted' | 'customer_deleted' | 'customer_address_book_contact_upserted' | 'customer_address_book_contact_deleted' | 'email_notification_upserted' | 'email_notification_deleted' | 'available_promotions_upserted' | 'available_promotions_deleted' | 'available_promotions_upserted_v2' | 'available_promotions_deleted_v2' | 'allocation_deleted_v2' | 'allocation_upserted_v2' | 'currency_format_deleted' | 'currency_format_upserted' | 'experience_deleted' | 'experience_upserted' | 'experience_deleted_v2' | 'experience_upserted_v2' | 'country_status_upserted' | 'country_status_deleted' | 'experience_price_book_mapping_deleted' | 'experience_price_book_mapping_upserted' | 'experience_logistics_settings_upserted' | 'experience_logistics_settings_deleted' | 'item_margin_deleted_v2' | 'item_margin_upserted_v2' | 'item_sales_margin_deleted' | 'item_sales_margin_upserted' | 'label_format_deleted' | 'label_format_upserted' | 'order_deleted' | 'order_upserted' | 'order_deleted_v2' | 'order_upserted_v2' | 'order_identifier_deleted' | 'order_identifier_upserted' | 'order_identifier_deleted_v2' | 'order_identifier_upserted_v2' | 'order_identifier_upserted_v3' | 'order_replacement_upserted' | 'order_replacement_deleted' | 'pricing_deleted' | 'pricing_upserted' | 'order_service_change_request' | 'fraud_status_changed' | 'center_upserted' | 'center_deleted' | 'shipping_configuration_upserted' | 'shipping_configuration_deleted' | 'tier_upserted_v2' | 'tier_deleted_v2' | 'shipping_lane_upserted' | 'shipping_lane_deleted' | 'shipping_configuration_item_availability_upserted' | 'shipping_configuration_item_availability_deleted' | 'shipping_configuration_item_shipping_pricing_upserted' | 'shipping_configuration_item_shipping_pricing_deleted' | 'hs6_code_upserted' | 'hs6_code_deleted' | 'hs10_code_upserted' | 'hs10_code_deleted' | 'item_origin_upserted' | 'item_origin_deleted' | 'harmonized_landed_cost_upserted' | 'fully_harmonized_item_upserted' | 'import_completed_v2' | 'import_failed_v2' | 'rule_upserted' | 'rule_deleted' | 'snapshot_upserted' | 'snapshot_deleted' | 'label_upserted' | 'label_deleted_v2' | 'label_upserted_v2' | 'notification_upserted_v2' | 'notification_deleted_v2' | 'manifested_label_upserted' | 'manifested_label_deleted' | 'local_item_upserted' | 'local_item_deleted' | 'merchant_application_upserted' | 'merchant_application_deleted' | 'checkout_optin_responses_upserted' | 'checkout_optin_responses_deleted' | 'browse_optin_responses_upserted' | 'browse_optin_responses_deleted' | 'order_placed' | 'order_placed_v2' | 'ready_to_fulfill' | 'ready_to_fulfill_v2' | 'membership_upserted_v2' | 'membership_deleted_v2' | 'organization_upserted' | 'organization_deleted' | 'organization_upserted_v2' | 'organization_deleted_v2' | 'organization_default_configurations_upserted' | 'organization_default_configurations_deleted' | 'ecommerce_platform_upserted' | 'ecommerce_platform_deleted' | 'organization_onboarding_state_upserted' | 'organization_onboarding_state_deleted' | 'authorization_deleted_v2' | 'authorization_status_changed' | 'card_authorization_upserted_v2' | 'card_authorization_deleted_v2' | 'online_authorization_upserted_v2' | 'online_authorization_deleted_v2' | 'capture_upserted_v2' | 'capture_deleted' | 'card_upserted_v2' | 'card_deleted' | 'payment_upserted' | 'payment_deleted' | 'refund_upserted_v2' | 'refund_deleted_v2' | 'refund_capture_upserted_v2' | 'reversal_upserted' | 'reversal_deleted' | 'capture_identifier_upserted' | 'capture_identifier_deleted' | 'refund_identifier_upserted' | 'refund_identifier_deleted' | 'virtual_card_capture_upserted' | 'virtual_card_capture_deleted' | 'virtual_card_refund_upserted' | 'virtual_card_refund_deleted' | 'payment_request_upserted' | 'payment_request_deleted' | 'price_book_upserted' | 'price_book_deleted' | 'price_book_item_upserted' | 'price_book_item_deleted' | 'organization_rates_published' | 'ratecard_lane_upserted' | 'ratecard_lane_deleted' | 'ratecard_upserted' | 'ratecard_deleted' | 'product_restriction_result_upserted' | 'product_restriction_result_deleted' | 'return_upserted' | 'return_deleted' | 'return_upserted_v2' | 'return_deleted_v2' | 'shopify_localization_setting_upserted' | 'shopify_localization_setting_deleted' | 'tracking_label_event_upserted';
|
|
1896
2150
|
type ExceptionType = 'open' | 'closed';
|
|
1897
2151
|
type ExclusionRuleState = 'current' | 'deleting' | 'updating';
|
|
1898
2152
|
type ExperienceCloneStatus = 'pending' | 'updating' | 'completed' | 'failed';
|
|
@@ -1963,6 +2217,7 @@ declare namespace io.flow.v0.enums {
|
|
|
1963
2217
|
type OrganizationPaymentMethodTag = 'deny';
|
|
1964
2218
|
type OrganizationStatus = 'active' | 'inactive' | 'deactivated' | 'provisioned';
|
|
1965
2219
|
type OrganizationType = 'standalone' | 'channel';
|
|
2220
|
+
type PackageDimensionsSource = 'provided' | 'dimensions_estimated';
|
|
1966
2221
|
type PaymentActionType = 'redirect' | 'redirect_get' | 'redirect_post' | 'select_payment_option' | 'use_sdk_klarna_v1' | 'use_sdk_applepay_js' | 'use_sdk_googlepay' | 'use_sdk_paypal' | 'use_sdk_stripe_v3' | 'use_sdk_adyen_v3' | 'use_sdk_adyen_v4' | 'execute_script' | 'display_inline_window';
|
|
1967
2222
|
type PaymentErrorCode = 'duplicate' | 'invalid_amount' | 'invalid_currency' | 'invalid_method' | 'invalid_order' | 'invalid_customer' | 'invalid_destination' | 'unknown';
|
|
1968
2223
|
type PaymentFailureCode = 'action_expired' | 'action_cancelled' | 'action_failed' | 'authorization_declined' | 'not_supported' | 'fraudulent' | 'error' | 'payment_checks_declined';
|
|
@@ -1981,6 +2236,7 @@ declare namespace io.flow.v0.enums {
|
|
|
1981
2236
|
type PermittedHttpMethod = 'GET' | 'POST' | 'PUT' | 'DELETE' | 'PATCH';
|
|
1982
2237
|
type PhysicalDeliverySpecialSerivce = 'cold_storage' | 'hazardous' | 'perishable';
|
|
1983
2238
|
type PostalType = 'eircode' | 'pin' | 'postal' | 'zip';
|
|
2239
|
+
type PreferredServiceSelectionStrategy = 'calculated_rate' | 'flat_rate' | 'custom_rate';
|
|
1984
2240
|
type PriceAccuracy = 'calculated' | 'estimated_from_partial_destination';
|
|
1985
2241
|
type PriceBookStatus = 'draft' | 'published' | 'archived';
|
|
1986
2242
|
type PriceDetailComponentKey = 'base_price' | 'discount' | 'currency_margin' | 'percent_item_margin' | 'fixed_item_margin' | 'duties_item_price' | 'duties_added_margin' | 'duties_rounding' | 'duties_deminimis' | 'vat_item_price' | 'vat_added_margin' | 'vat_rounding' | 'vat_duties_item_price' | 'vat_duties_added_margin' | 'vat_duties_rounding' | 'vat_deminimis' | 'item_price_percent_sales_margin' | 'margins_percent_sales_margin' | 'rounding_percent_sales_margin' | 'vat_percent_sales_margin' | 'vat_duty_percent_sales_margin' | 'duty_percent_sales_margin';
|
|
@@ -2012,6 +2268,7 @@ declare namespace io.flow.v0.enums {
|
|
|
2012
2268
|
type ShopifySyncCheck = 'localized_variants' | 'flow_variant_metafields';
|
|
2013
2269
|
type SortDirection = 'ascending' | 'descending';
|
|
2014
2270
|
type StatementAttachmentType = 'csv';
|
|
2271
|
+
type StoredMethodUsageStep = 'initial' | 'subsequent';
|
|
2015
2272
|
type Strategy = 'range' | 'from' | 'to';
|
|
2016
2273
|
type SubcatalogItemStatus = 'excluded' | 'included' | 'restricted';
|
|
2017
2274
|
type SurchargeResponsibleParty = 'organization' | 'customer';
|
|
@@ -2034,15 +2291,19 @@ declare namespace io.flow.v0.enums {
|
|
|
2034
2291
|
type TrackingStatus = 'label_created' | 'pending' | 'info_received' | 'picked_up' | 'in_transit' | 'out_for_delivery' | 'attempt_fail' | 'delivered' | 'exception' | 'returned' | 'expired';
|
|
2035
2292
|
type TradeAgreementName = 'USMCA' | 'T-MEC' | 'CUSMA' | 'TCA';
|
|
2036
2293
|
type TradeAgreementStatus = 'supported' | 'not_supported';
|
|
2294
|
+
type TransactionPayoutPendingReason = 'waiting_for_full_refund' | 'waiting_for_fulfillment' | 'waiting_for_in_transit' | 'waiting_for_next_payout_date' | 'external_fulfillment_missing_tracking_info' | 'waiting_for_positive_account_balance';
|
|
2037
2295
|
type TransactionSource = 'capture' | 'refund' | 'dispute' | 'adjustment' | 'reversal' | 'shipping_label' | 'shipping_label_service' | 'shipping_label_revenue_share' | 'platform_fee' | 'tax' | 'duty' | 'withholding' | 'other_adjustment' | 'tax_adjustment' | 'channel' | 'channel_billed' | 'order_service' | 'virtual_card_capture' | 'virtual_card_refund';
|
|
2296
|
+
type UnitOfLength = 'millimeter' | 'centimeter' | 'inch' | 'foot' | 'meter';
|
|
2038
2297
|
type UnitOfMeasurement = 'millimeter' | 'centimeter' | 'inch' | 'foot' | 'cubic_inch' | 'cubic_meter' | 'gram' | 'kilogram' | 'meter' | 'ounce' | 'pound';
|
|
2039
2298
|
type UnitOfTime = 'year' | 'month' | 'week' | 'day' | 'hour' | 'minute';
|
|
2299
|
+
type UnitOfVolume = 'cubic_inch' | 'cubic_meter';
|
|
2300
|
+
type UnitOfWeight = 'gram' | 'kilogram' | 'ounce' | 'pound';
|
|
2040
2301
|
type UpdatePolicy = 'auto' | 'queue' | 'discard';
|
|
2041
2302
|
type UpdateType = 'change' | 'set';
|
|
2042
2303
|
type UserStatus = 'pending' | 'active' | 'inactive';
|
|
2043
2304
|
type ValueAddedService = 'Hazardous Material';
|
|
2044
2305
|
type Visibility = 'public' | 'private';
|
|
2045
|
-
type WebhookStatus = 'pending' | 'success' | 'failure';
|
|
2306
|
+
type WebhookStatus = 'pending' | 'success' | 'failure' | 'ignored';
|
|
2046
2307
|
type WithholdingDeductionType = 'tax' | 'duty' | 'freight' | 'insurance';
|
|
2047
2308
|
type ZeroAmountIndicator = 'zero' | 'free';
|
|
2048
2309
|
type ZeroLevyReasonCode = 'zero_basis' | 'zero_rate_on_goods' | 'value_rounds_to_zero' | 'order_below_de_minimis_threshold' | 'amount_below_de_minimis_threshold' | 'delivered_unpaid' | 'duty_free_domestic' | 'duty_free_intra_community' | 'duty_free_reimport' | 'duty_free_by_trade_agreement';
|
|
@@ -3083,6 +3344,8 @@ declare namespace io.flow.v0.models {
|
|
|
3083
3344
|
readonly 'expires_at'?: string;
|
|
3084
3345
|
readonly 'base'?: io.flow.v0.models.Money;
|
|
3085
3346
|
readonly 'processor'?: io.flow.v0.unions.ExpandablePaymentProcessor;
|
|
3347
|
+
readonly 'stored_method_usage_step'?: io.flow.v0.enums.StoredMethodUsageStep;
|
|
3348
|
+
readonly 'authorized_at'?: string;
|
|
3086
3349
|
}
|
|
3087
3350
|
|
|
3088
3351
|
interface CardAuthorizationDeletedV2 {
|
|
@@ -3643,6 +3906,7 @@ declare namespace io.flow.v0.models {
|
|
|
3643
3906
|
interface ChannelTransaction {
|
|
3644
3907
|
readonly 'statement'?: io.flow.v0.models.BillingChannelStatementReference;
|
|
3645
3908
|
readonly 'id': string;
|
|
3909
|
+
readonly 'metadata'?: io.flow.v0.unions.TransactionMetadata;
|
|
3646
3910
|
readonly 'order'?: io.flow.v0.models.BillingChannelOrderSummary;
|
|
3647
3911
|
readonly 'payment_request'?: io.flow.v0.models.BillingChannelPaymentRequestReference;
|
|
3648
3912
|
readonly 'currency': string;
|
|
@@ -3674,6 +3938,12 @@ declare namespace io.flow.v0.models {
|
|
|
3674
3938
|
readonly 'id': string;
|
|
3675
3939
|
}
|
|
3676
3940
|
|
|
3941
|
+
interface ChannelTransactionPayout {
|
|
3942
|
+
readonly 'transaction': io.flow.v0.models.TransactionReference;
|
|
3943
|
+
readonly 'waiting_for'?: io.flow.v0.enums.TransactionPayoutPendingReason;
|
|
3944
|
+
readonly 'payout'?: io.flow.v0.models.PayoutReference;
|
|
3945
|
+
}
|
|
3946
|
+
|
|
3677
3947
|
interface ChannelTransactionUpserted {
|
|
3678
3948
|
readonly 'discriminator': 'channel_transaction_upserted';
|
|
3679
3949
|
readonly 'event_id': string;
|
|
@@ -3999,6 +4269,14 @@ declare namespace io.flow.v0.models {
|
|
|
3999
4269
|
readonly 'language': string;
|
|
4000
4270
|
}
|
|
4001
4271
|
|
|
4272
|
+
interface CountryOfOrigin {
|
|
4273
|
+
readonly 'country': io.flow.v0.models.Country;
|
|
4274
|
+
}
|
|
4275
|
+
|
|
4276
|
+
interface CountryOfOriginForm {
|
|
4277
|
+
readonly 'country': string;
|
|
4278
|
+
}
|
|
4279
|
+
|
|
4002
4280
|
interface CountryPicker {
|
|
4003
4281
|
readonly 'id': string;
|
|
4004
4282
|
readonly 'source': io.flow.v0.enums.CountryPickerSource;
|
|
@@ -4346,6 +4624,10 @@ declare namespace io.flow.v0.models {
|
|
|
4346
4624
|
readonly 'amount': number;
|
|
4347
4625
|
}
|
|
4348
4626
|
|
|
4627
|
+
interface DeactivationPutForm {
|
|
4628
|
+
readonly 'reason': string;
|
|
4629
|
+
}
|
|
4630
|
+
|
|
4349
4631
|
interface DefaultBankAccountForm {
|
|
4350
4632
|
readonly 'bank_account_id': string;
|
|
4351
4633
|
}
|
|
@@ -4495,6 +4777,7 @@ declare namespace io.flow.v0.models {
|
|
|
4495
4777
|
readonly 'order_number': string;
|
|
4496
4778
|
readonly 'service'?: string;
|
|
4497
4779
|
readonly 'shipment_recipient'?: io.flow.v0.enums.ShipmentRecipient;
|
|
4780
|
+
readonly 'package_dimensions_source'?: io.flow.v0.enums.PackageDimensionsSource;
|
|
4498
4781
|
}
|
|
4499
4782
|
|
|
4500
4783
|
interface DetailedShippingNotificationForm {
|
|
@@ -5505,6 +5788,15 @@ declare namespace io.flow.v0.models {
|
|
|
5505
5788
|
readonly 'landed_costs': io.flow.v0.models.LaneLandedCost[];
|
|
5506
5789
|
}
|
|
5507
5790
|
|
|
5791
|
+
interface GenerateLoad {
|
|
5792
|
+
readonly 'discriminator': 'generate_load';
|
|
5793
|
+
readonly 'event_id': string;
|
|
5794
|
+
readonly 'timestamp': string;
|
|
5795
|
+
readonly 'organization': string;
|
|
5796
|
+
readonly 'test_name': string;
|
|
5797
|
+
readonly 'num_tests': number;
|
|
5798
|
+
}
|
|
5799
|
+
|
|
5508
5800
|
interface GenericError {
|
|
5509
5801
|
readonly 'code': io.flow.v0.enums.GenericErrorCode;
|
|
5510
5802
|
readonly 'messages': string[];
|
|
@@ -6312,6 +6604,7 @@ declare namespace io.flow.v0.models {
|
|
|
6312
6604
|
interface KnowYourBusinessUsa {
|
|
6313
6605
|
readonly 'discriminator': 'know_your_business_usa';
|
|
6314
6606
|
readonly 'id': string;
|
|
6607
|
+
readonly 'organization_id': string;
|
|
6315
6608
|
readonly 'primary_entity': io.flow.v0.unions.Entity;
|
|
6316
6609
|
readonly 'parent_company'?: io.flow.v0.models.Company;
|
|
6317
6610
|
readonly 'ultimate_parent_company'?: io.flow.v0.models.Company;
|
|
@@ -6381,6 +6674,7 @@ declare namespace io.flow.v0.models {
|
|
|
6381
6674
|
readonly 'label'?: io.flow.v0.models.LabelReference;
|
|
6382
6675
|
readonly 'in_transit': io.flow.v0.models.LabelTrackingSummaryUpdate;
|
|
6383
6676
|
readonly 'delivered'?: io.flow.v0.models.LabelTrackingSummaryUpdate;
|
|
6677
|
+
readonly 'rejected'?: io.flow.v0.models.LabelTrackingSummaryUpdate;
|
|
6384
6678
|
}
|
|
6385
6679
|
|
|
6386
6680
|
interface LabelTrackingSummaryUpdate {
|
|
@@ -6791,6 +7085,11 @@ declare namespace io.flow.v0.models {
|
|
|
6791
7085
|
readonly 'merchant_application': io.flow.v0.unions.MerchantApplication;
|
|
6792
7086
|
}
|
|
6793
7087
|
|
|
7088
|
+
interface MerchantDeactivated {
|
|
7089
|
+
readonly 'discriminator': 'merchant_deactivated';
|
|
7090
|
+
readonly 'reason': string;
|
|
7091
|
+
}
|
|
7092
|
+
|
|
6794
7093
|
interface MerchantGiftCardBalance {
|
|
6795
7094
|
readonly 'amount': number;
|
|
6796
7095
|
readonly 'currency': string;
|
|
@@ -7013,6 +7312,7 @@ declare namespace io.flow.v0.models {
|
|
|
7013
7312
|
readonly 'base'?: io.flow.v0.models.Money;
|
|
7014
7313
|
readonly 'processor'?: io.flow.v0.unions.ExpandablePaymentProcessor;
|
|
7015
7314
|
readonly 'confirmation_details'?: io.flow.v0.unions.ConfirmationDetails;
|
|
7315
|
+
readonly 'authorized_at'?: string;
|
|
7016
7316
|
}
|
|
7017
7317
|
|
|
7018
7318
|
interface OnlineAuthorizationDeletedV2 {
|
|
@@ -7039,7 +7339,6 @@ declare namespace io.flow.v0.models {
|
|
|
7039
7339
|
}
|
|
7040
7340
|
|
|
7041
7341
|
interface OperationsContact {
|
|
7042
|
-
readonly 'full_name'?: string;
|
|
7043
7342
|
readonly 'company'?: string;
|
|
7044
7343
|
readonly 'email'?: string;
|
|
7045
7344
|
readonly 'phone'?: string;
|
|
@@ -7919,6 +8218,7 @@ declare namespace io.flow.v0.models {
|
|
|
7919
8218
|
readonly 'time_blocked'?: number;
|
|
7920
8219
|
readonly 'blocked_since'?: string;
|
|
7921
8220
|
readonly 'completed_at'?: string;
|
|
8221
|
+
readonly 'onboarding_started_at'?: string;
|
|
7922
8222
|
}
|
|
7923
8223
|
|
|
7924
8224
|
interface OrganizationOnboardingStateDeleted {
|
|
@@ -8073,6 +8373,12 @@ declare namespace io.flow.v0.models {
|
|
|
8073
8373
|
readonly 'id': string;
|
|
8074
8374
|
}
|
|
8075
8375
|
|
|
8376
|
+
interface OrganizationTransactionPayout {
|
|
8377
|
+
readonly 'transaction': io.flow.v0.models.TransactionReference;
|
|
8378
|
+
readonly 'waiting_for'?: io.flow.v0.enums.TransactionPayoutPendingReason;
|
|
8379
|
+
readonly 'payout'?: io.flow.v0.models.PayoutReference;
|
|
8380
|
+
}
|
|
8381
|
+
|
|
8076
8382
|
interface OrganizationTransactionUpserted {
|
|
8077
8383
|
readonly 'discriminator': 'organization_transaction_upserted';
|
|
8078
8384
|
readonly 'event_id': string;
|
|
@@ -8121,12 +8427,30 @@ declare namespace io.flow.v0.models {
|
|
|
8121
8427
|
readonly 'amount': io.flow.v0.models.Money;
|
|
8122
8428
|
}
|
|
8123
8429
|
|
|
8124
|
-
interface
|
|
8125
|
-
readonly 'discriminator': '
|
|
8126
|
-
readonly '
|
|
8127
|
-
readonly '
|
|
8128
|
-
readonly '
|
|
8129
|
-
readonly '
|
|
8430
|
+
interface OversizePieceSurchargeRatecardFee {
|
|
8431
|
+
readonly 'discriminator': 'oversize_piece_surcharge_ratecard_fee';
|
|
8432
|
+
readonly 'dimensional_threshold'?: number;
|
|
8433
|
+
readonly 'dimensional_unit'?: io.flow.v0.enums.UnitOfMeasurement;
|
|
8434
|
+
readonly 'weight_threshold'?: number;
|
|
8435
|
+
readonly 'weight_unit'?: io.flow.v0.enums.UnitOfMeasurement;
|
|
8436
|
+
readonly 'amount': io.flow.v0.models.Money;
|
|
8437
|
+
}
|
|
8438
|
+
|
|
8439
|
+
interface OversizePieceSurchargeServiceFee {
|
|
8440
|
+
readonly 'discriminator': 'oversize_piece_surcharge_service_fee';
|
|
8441
|
+
readonly 'dimensional_threshold'?: number;
|
|
8442
|
+
readonly 'dimensional_unit'?: io.flow.v0.enums.UnitOfMeasurement;
|
|
8443
|
+
readonly 'weight_threshold'?: number;
|
|
8444
|
+
readonly 'weight_unit'?: io.flow.v0.enums.UnitOfMeasurement;
|
|
8445
|
+
readonly 'amount': io.flow.v0.models.Money;
|
|
8446
|
+
}
|
|
8447
|
+
|
|
8448
|
+
interface PackageDimensions {
|
|
8449
|
+
readonly 'dimensions': io.flow.v0.models.Dimension[];
|
|
8450
|
+
}
|
|
8451
|
+
|
|
8452
|
+
interface PackageDimensionsForm {
|
|
8453
|
+
readonly 'dimensions': io.flow.v0.models.Dimension[];
|
|
8130
8454
|
}
|
|
8131
8455
|
|
|
8132
8456
|
interface Packaging {
|
|
@@ -8804,6 +9128,10 @@ declare namespace io.flow.v0.models {
|
|
|
8804
9128
|
readonly 'url': string;
|
|
8805
9129
|
}
|
|
8806
9130
|
|
|
9131
|
+
interface PayoutReference {
|
|
9132
|
+
readonly 'id': string;
|
|
9133
|
+
}
|
|
9134
|
+
|
|
8807
9135
|
interface PayoutStatusFailed {
|
|
8808
9136
|
readonly 'code': 'failed';
|
|
8809
9137
|
readonly 'timestamp': string;
|
|
@@ -8822,6 +9150,7 @@ declare namespace io.flow.v0.models {
|
|
|
8822
9150
|
|
|
8823
9151
|
interface PayoutTransaction {
|
|
8824
9152
|
readonly 'id': string;
|
|
9153
|
+
readonly 'metadata'?: io.flow.v0.unions.TransactionMetadata;
|
|
8825
9154
|
readonly 'order'?: io.flow.v0.models.BillingChannelOrderSummary;
|
|
8826
9155
|
readonly 'payment_request'?: io.flow.v0.models.BillingChannelPaymentRequestReference;
|
|
8827
9156
|
readonly 'currency': string;
|
|
@@ -8931,6 +9260,12 @@ declare namespace io.flow.v0.models {
|
|
|
8931
9260
|
readonly 'total'?: io.flow.v0.models.LocalizedTotal;
|
|
8932
9261
|
readonly 'goods_supply'?: io.flow.v0.enums.GoodsSupply;
|
|
8933
9262
|
readonly 'merchant_of_record_flow_entity'?: io.flow.v0.enums.FlowEntity;
|
|
9263
|
+
readonly 'preferred_service'?: io.flow.v0.models.PhysicalDeliveryPreferredService;
|
|
9264
|
+
}
|
|
9265
|
+
|
|
9266
|
+
interface PhysicalDeliveryPreferredService {
|
|
9267
|
+
readonly 'id': string;
|
|
9268
|
+
readonly 'selection_stratey': io.flow.v0.enums.PreferredServiceSelectionStrategy;
|
|
8934
9269
|
}
|
|
8935
9270
|
|
|
8936
9271
|
interface PostPaymentRedirectUrls {
|
|
@@ -9380,12 +9715,16 @@ declare namespace io.flow.v0.models {
|
|
|
9380
9715
|
interface Ratecard {
|
|
9381
9716
|
readonly 'id': string;
|
|
9382
9717
|
readonly 'number': string;
|
|
9718
|
+
readonly 'rate_level_key'?: string;
|
|
9383
9719
|
readonly 'direction': io.flow.v0.enums.Direction;
|
|
9384
9720
|
readonly 'effective_at': string;
|
|
9385
9721
|
readonly 'origination_zones': io.flow.v0.models.Zone[];
|
|
9386
9722
|
readonly 'service': io.flow.v0.models.RatecardServiceSummary;
|
|
9387
9723
|
readonly 'published_at'?: string;
|
|
9388
9724
|
readonly 'ratecard_owner': io.flow.v0.enums.RatecardOwner;
|
|
9725
|
+
readonly 'glbe_shipping_method_id'?: string;
|
|
9726
|
+
readonly 'glbe_proposition_name'?: string;
|
|
9727
|
+
readonly 'channel_revenue_share_percentage'?: number;
|
|
9389
9728
|
}
|
|
9390
9729
|
|
|
9391
9730
|
interface RatecardCarrierSummary {
|
|
@@ -9464,6 +9803,10 @@ declare namespace io.flow.v0.models {
|
|
|
9464
9803
|
readonly 'dimensional_weight'?: io.flow.v0.models.Measurement;
|
|
9465
9804
|
readonly 'gravitational_weight'?: io.flow.v0.models.Measurement;
|
|
9466
9805
|
readonly 'ratecard_id'?: string;
|
|
9806
|
+
readonly 'glbe_shipping_method_id'?: string;
|
|
9807
|
+
readonly 'glbe_proposition_name'?: string;
|
|
9808
|
+
readonly 'channel_revenue_share_percentage'?: number;
|
|
9809
|
+
readonly 'rate_level_key'?: string;
|
|
9467
9810
|
readonly 'line_items'?: io.flow.v0.models.LineItemForm[];
|
|
9468
9811
|
}
|
|
9469
9812
|
|
|
@@ -9473,7 +9816,12 @@ declare namespace io.flow.v0.models {
|
|
|
9473
9816
|
readonly 'origination_zones': io.flow.v0.models.Zone[];
|
|
9474
9817
|
readonly 'service': string;
|
|
9475
9818
|
readonly 'number'?: string;
|
|
9819
|
+
readonly 'rate_level_key'?: string;
|
|
9476
9820
|
readonly 'ratecard_owner'?: io.flow.v0.enums.RatecardOwner;
|
|
9821
|
+
readonly 'glbe_shipping_method_id'?: string;
|
|
9822
|
+
readonly 'glbe_proposition_name'?: string;
|
|
9823
|
+
readonly 'channel_revenue_share_percentage'?: number;
|
|
9824
|
+
readonly 'data'?: Record<string, string>;
|
|
9477
9825
|
}
|
|
9478
9826
|
|
|
9479
9827
|
interface RatecardLane {
|
|
@@ -10404,6 +10752,9 @@ declare namespace io.flow.v0.models {
|
|
|
10404
10752
|
readonly 'carrier_tracking_number_url': string;
|
|
10405
10753
|
readonly 'cost_estimate_source'?: io.flow.v0.enums.CostEstimateSource;
|
|
10406
10754
|
readonly 'cost'?: io.flow.v0.models.Price;
|
|
10755
|
+
readonly 'delivered_duty'?: io.flow.v0.enums.DeliveredDuty;
|
|
10756
|
+
readonly 'taxes_owed'?: io.flow.v0.models.Money;
|
|
10757
|
+
readonly 'duties_owed'?: io.flow.v0.models.Money;
|
|
10407
10758
|
readonly 'destination': io.flow.v0.models.ShippingAddress;
|
|
10408
10759
|
readonly 'flow_tracking_number': string;
|
|
10409
10760
|
readonly 'flow_tracking_number_url': string;
|
|
@@ -10415,6 +10766,7 @@ declare namespace io.flow.v0.models {
|
|
|
10415
10766
|
readonly 'return'?: io.flow.v0.models.ShippingLabelDocument;
|
|
10416
10767
|
readonly 'order'?: io.flow.v0.models.LabelOrderSummary;
|
|
10417
10768
|
readonly 'package'?: io.flow.v0.models.ShippingLabelPackage;
|
|
10769
|
+
readonly 'package_dimension_source'?: io.flow.v0.enums.PackageDimensionsSource;
|
|
10418
10770
|
readonly 'order_identifier'?: string;
|
|
10419
10771
|
readonly 'fulfillment_key'?: string;
|
|
10420
10772
|
readonly 'shipment_recipient': io.flow.v0.enums.ShipmentRecipient;
|
|
@@ -10434,9 +10786,16 @@ declare namespace io.flow.v0.models {
|
|
|
10434
10786
|
readonly 'required': boolean;
|
|
10435
10787
|
}
|
|
10436
10788
|
|
|
10789
|
+
interface ShippingLabelHopCostItemizedEstimate {
|
|
10790
|
+
readonly 'units': io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelUnits;
|
|
10791
|
+
readonly 'base': io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelBase;
|
|
10792
|
+
readonly 'surcharges': io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelSurcharge[];
|
|
10793
|
+
}
|
|
10794
|
+
|
|
10437
10795
|
interface ShippingLabelHopSummary {
|
|
10438
10796
|
readonly 'lane': io.flow.v0.models.ShippingLabelLaneSummary;
|
|
10439
10797
|
readonly 'cost': io.flow.v0.models.Money;
|
|
10798
|
+
readonly 'itemized_estimate'?: io.flow.v0.models.ShippingLabelHopCostItemizedEstimate;
|
|
10440
10799
|
}
|
|
10441
10800
|
|
|
10442
10801
|
interface ShippingLabelLaneSummary {
|
|
@@ -10446,6 +10805,7 @@ declare namespace io.flow.v0.models {
|
|
|
10446
10805
|
|
|
10447
10806
|
interface ShippingLabelPackage {
|
|
10448
10807
|
readonly 'dimensions': io.flow.v0.models.Dimension;
|
|
10808
|
+
readonly 'volumetric_weight'?: number;
|
|
10449
10809
|
readonly 'items': io.flow.v0.models.LineItemForm[];
|
|
10450
10810
|
readonly 'reference_number'?: string;
|
|
10451
10811
|
}
|
|
@@ -10453,6 +10813,11 @@ declare namespace io.flow.v0.models {
|
|
|
10453
10813
|
interface ShippingLabelRatecardSummary {
|
|
10454
10814
|
readonly 'id'?: string;
|
|
10455
10815
|
readonly 'ratecard_owner': io.flow.v0.enums.RatecardOwner;
|
|
10816
|
+
readonly 'rate_level_key'?: string;
|
|
10817
|
+
readonly 'glbe_shipping_method_id'?: string;
|
|
10818
|
+
readonly 'glbe_proposition_name'?: string;
|
|
10819
|
+
readonly 'channel_revenue_share_percentage'?: number;
|
|
10820
|
+
readonly 'shopify_grc_gid'?: string;
|
|
10456
10821
|
}
|
|
10457
10822
|
|
|
10458
10823
|
interface ShippingLabelSummary {
|
|
@@ -10750,7 +11115,6 @@ declare namespace io.flow.v0.models {
|
|
|
10750
11115
|
readonly 'status': io.flow.v0.enums.OnboardingApplicationStatus;
|
|
10751
11116
|
readonly 'company'?: io.flow.v0.models.MerchantInfo;
|
|
10752
11117
|
readonly 'indirect_tax'?: io.flow.v0.models.IndirectTax;
|
|
10753
|
-
readonly 'parent_company'?: io.flow.v0.models.MerchantInfo;
|
|
10754
11118
|
readonly 'beneficiary'?: string;
|
|
10755
11119
|
readonly 'ultimate_beneficiary_owner'?: io.flow.v0.models.UltimateBeneficiaryOwner;
|
|
10756
11120
|
readonly 'business_url'?: string;
|
|
@@ -10760,31 +11124,30 @@ declare namespace io.flow.v0.models {
|
|
|
10760
11124
|
readonly 'chargeback_percentage'?: number;
|
|
10761
11125
|
readonly 'bank_account_number'?: string;
|
|
10762
11126
|
readonly 'aba_routing_transit_number'?: string;
|
|
10763
|
-
readonly 'trade_sectors'?: io.flow.v0.enums.OnboardingTradeSector[];
|
|
10764
11127
|
readonly 'other_trade_sector'?: string;
|
|
10765
11128
|
readonly 'third_party_logistics_partners'?: io.flow.v0.models.ThirdPartyLogisticsPartner[];
|
|
11129
|
+
readonly 'center_contact'?: io.flow.v0.models.OperationsContact;
|
|
10766
11130
|
readonly 'average_order_weight'?: number;
|
|
10767
11131
|
readonly 'package_dimensions'?: io.flow.v0.models.Dimension[];
|
|
10768
11132
|
readonly 'monthly_average'?: io.flow.v0.models.MonthlyAverage;
|
|
10769
|
-
readonly 'dangerous_goods'?: boolean;
|
|
10770
11133
|
readonly 'default_country_of_origin'?: string;
|
|
10771
11134
|
readonly 'ratecard'?: io.flow.v0.models.RatecardReference;
|
|
10772
11135
|
readonly 'rate_card': string;
|
|
10773
11136
|
readonly 'created_at': string;
|
|
10774
11137
|
readonly 'activated_at'?: string;
|
|
10775
11138
|
readonly 'status_updated_at'?: string;
|
|
10776
|
-
readonly 'logistics_format'?: io.flow.v0.models.LogisticsFormat;
|
|
10777
11139
|
readonly 'shop'?: io.flow.v0.models.Shop;
|
|
10778
11140
|
readonly 'last_year_xborder_gmv'?: io.flow.v0.models.Money;
|
|
10779
11141
|
readonly 'last_month_xborder_gmv'?: io.flow.v0.models.Money;
|
|
10780
11142
|
readonly 'average_order_value'?: io.flow.v0.models.Money;
|
|
11143
|
+
readonly 'glbe_merchant_guid'?: string;
|
|
11144
|
+
readonly 'mcc_codes'?: number[];
|
|
10781
11145
|
}
|
|
10782
11146
|
|
|
10783
11147
|
interface ShopifyMerchantApplicationForm {
|
|
10784
11148
|
readonly 'discriminator': 'shopify_merchant_application_form';
|
|
10785
11149
|
readonly 'company'?: io.flow.v0.models.MerchantInfo;
|
|
10786
11150
|
readonly 'indirect_tax'?: io.flow.v0.models.IndirectTax;
|
|
10787
|
-
readonly 'parent_company'?: io.flow.v0.models.MerchantInfo;
|
|
10788
11151
|
readonly 'beneficiary'?: string;
|
|
10789
11152
|
readonly 'ultimate_beneficiary_owner'?: io.flow.v0.models.UltimateBeneficiaryOwner;
|
|
10790
11153
|
readonly 'business_url'?: string;
|
|
@@ -10794,23 +11157,22 @@ declare namespace io.flow.v0.models {
|
|
|
10794
11157
|
readonly 'chargeback_percentage'?: number;
|
|
10795
11158
|
readonly 'bank_account_number'?: string;
|
|
10796
11159
|
readonly 'aba_routing_transit_number'?: string;
|
|
10797
|
-
readonly 'trade_sectors'?: io.flow.v0.enums.OnboardingTradeSector[];
|
|
10798
11160
|
readonly 'other_trade_sector'?: string;
|
|
10799
11161
|
readonly 'third_party_logistics_partners'?: io.flow.v0.models.ThirdPartyLogisticsPartner[];
|
|
11162
|
+
readonly 'center_contact'?: io.flow.v0.models.OperationsContact;
|
|
10800
11163
|
readonly 'average_order_weight'?: number;
|
|
10801
11164
|
readonly 'package_dimensions'?: io.flow.v0.models.Dimension[];
|
|
10802
11165
|
readonly 'monthly_average_volume_amount'?: number;
|
|
10803
11166
|
readonly 'monthly_average_volume_currency'?: string;
|
|
10804
11167
|
readonly 'monthly_average_number_transactions'?: number;
|
|
10805
|
-
readonly 'dangerous_goods'?: boolean;
|
|
10806
11168
|
readonly 'default_country_of_origin'?: string;
|
|
10807
11169
|
readonly 'ratecard_id'?: string;
|
|
10808
11170
|
readonly 'rate_card': string;
|
|
10809
|
-
readonly 'logistics_format'?: io.flow.v0.models.LogisticsFormat;
|
|
10810
11171
|
readonly 'shop'?: io.flow.v0.models.Shop;
|
|
10811
11172
|
readonly 'last_year_xborder_gmv'?: io.flow.v0.models.Money;
|
|
10812
11173
|
readonly 'last_month_xborder_gmv'?: io.flow.v0.models.Money;
|
|
10813
11174
|
readonly 'average_order_value'?: io.flow.v0.models.Money;
|
|
11175
|
+
readonly 'mcc_codes'?: number[];
|
|
10814
11176
|
}
|
|
10815
11177
|
|
|
10816
11178
|
interface ShopifyMerchantApplicationPutForm {
|
|
@@ -11311,16 +11673,11 @@ declare namespace io.flow.v0.models {
|
|
|
11311
11673
|
readonly 'email_recipients'?: string[];
|
|
11312
11674
|
}
|
|
11313
11675
|
|
|
11314
|
-
interface Test {
|
|
11315
|
-
readonly 'id': string;
|
|
11316
|
-
}
|
|
11317
|
-
|
|
11318
11676
|
interface TestUpserted {
|
|
11319
11677
|
readonly 'discriminator': 'test_upserted';
|
|
11320
11678
|
readonly 'event_id': string;
|
|
11321
11679
|
readonly 'timestamp': string;
|
|
11322
|
-
readonly '
|
|
11323
|
-
readonly 'test': io.flow.v0.models.Test;
|
|
11680
|
+
readonly 'test': io.flow.ben.test.internal.v0.models.Test;
|
|
11324
11681
|
}
|
|
11325
11682
|
|
|
11326
11683
|
interface ThirdPartyLogisticsPartner {
|
|
@@ -11648,6 +12005,7 @@ declare namespace io.flow.v0.models {
|
|
|
11648
12005
|
interface Transaction {
|
|
11649
12006
|
readonly 'statement'?: io.flow.v0.models.BillingChannelStatementReference;
|
|
11650
12007
|
readonly 'id': string;
|
|
12008
|
+
readonly 'metadata'?: io.flow.v0.unions.TransactionMetadata;
|
|
11651
12009
|
readonly 'order'?: io.flow.v0.models.BillingChannelOrderSummary;
|
|
11652
12010
|
readonly 'payment_request'?: io.flow.v0.models.BillingChannelPaymentRequestReference;
|
|
11653
12011
|
readonly 'currency': string;
|
|
@@ -11670,11 +12028,20 @@ declare namespace io.flow.v0.models {
|
|
|
11670
12028
|
readonly 'network_details'?: io.flow.v0.models.TransactionNetworkDetailsCard;
|
|
11671
12029
|
}
|
|
11672
12030
|
|
|
12031
|
+
interface TransactionMetadataShippingLabel {
|
|
12032
|
+
readonly 'discriminator': 'shipping_label';
|
|
12033
|
+
readonly 'request_method'?: io.flow.v0.enums.LabelRequestMethod;
|
|
12034
|
+
}
|
|
12035
|
+
|
|
11673
12036
|
interface TransactionNetworkDetailsCard {
|
|
11674
12037
|
readonly 'network_transaction_id'?: string;
|
|
11675
12038
|
readonly 'network'?: io.flow.v0.enums.CardType;
|
|
11676
12039
|
}
|
|
11677
12040
|
|
|
12041
|
+
interface TransactionReference {
|
|
12042
|
+
readonly 'id': string;
|
|
12043
|
+
}
|
|
12044
|
+
|
|
11678
12045
|
interface TransactionUpserted {
|
|
11679
12046
|
readonly 'discriminator': 'transaction_upserted';
|
|
11680
12047
|
readonly 'event_id': string;
|
|
@@ -11949,7 +12316,7 @@ declare namespace io.flow.v0.unions {
|
|
|
11949
12316
|
type Document = (io.flow.v0.models.CatalogItemDocument | io.flow.v0.models.HarmonizationDocument);
|
|
11950
12317
|
type EmailNotificationData = (io.flow.v0.models.EmailNotificationDataRefund | io.flow.v0.models.EmailNotificationAbandonedOrder);
|
|
11951
12318
|
type Entity = (io.flow.v0.models.Company | io.flow.v0.models.Individual);
|
|
11952
|
-
type Event = (io.flow.v0.models.TestUpserted | io.flow.v0.models.TransactionUpserted | io.flow.v0.models.OrganizationTransactionUpserted | io.flow.v0.models.OrganizationTransactionDeleted | io.flow.v0.models.StatementUpserted | io.flow.v0.models.StatementDeleted | io.flow.v0.models.ChannelTransactionUpserted | io.flow.v0.models.ChannelTransactionDeleted | io.flow.v0.models.ChannelTransactionDeletedV2 | io.flow.v0.models.ChannelStatementUpserted | io.flow.v0.models.ChannelStatementDeleted | io.flow.v0.models.ChannelPayoutUpserted | io.flow.v0.models.ChannelPayoutDeleted | io.flow.v0.models.OrganizationPayoutUpserted | io.flow.v0.models.OrganizationPayoutDeleted | io.flow.v0.models.AttributeUpserted | io.flow.v0.models.AttributeDeleted | io.flow.v0.models.AttributeUpsertedV2 | io.flow.v0.models.AttributeDeletedV2 | io.flow.v0.models.CatalogUpserted | io.flow.v0.models.CatalogDeleted | io.flow.v0.models.SubcatalogUpserted | io.flow.v0.models.SubcatalogDeleted | io.flow.v0.models.CatalogItemUpserted | io.flow.v0.models.CatalogItemDeleted | io.flow.v0.models.CatalogItemUpsertedV2 | io.flow.v0.models.CatalogItemDeletedV2 | io.flow.v0.models.SubcatalogItemUpserted | io.flow.v0.models.SubcatalogItemDeleted | io.flow.v0.models.CatalogStatisticsUpserted | io.flow.v0.models.CatalogStatisticsDeleted | io.flow.v0.models.ChannelUpserted | io.flow.v0.models.ChannelDeleted | io.flow.v0.models.ChannelCurrencyUpserted | io.flow.v0.models.ChannelCurrencyDeleted | io.flow.v0.models.ChannelOrganizationUpserted | io.flow.v0.models.ChannelOrganizationDeleted | io.flow.v0.models.B2BInvoiceUpserted | io.flow.v0.models.B2BInvoiceDeleted | io.flow.v0.models.B2BCreditMemoUpserted | io.flow.v0.models.B2BCreditMemoDeleted | io.flow.v0.models.ConsumerInvoiceUpserted | io.flow.v0.models.ConsumerInvoiceDeleted | io.flow.v0.models.CreditMemoUpserted | io.flow.v0.models.CreditMemoDeleted | io.flow.v0.models.CrossdockShipmentUpserted | io.flow.v0.models.RateDeleted | io.flow.v0.models.RateUpserted | io.flow.v0.models.RateDeletedV3 | io.flow.v0.models.RateUpsertedV3 | io.flow.v0.models.CustomerUpserted | io.flow.v0.models.CustomerDeleted | io.flow.v0.models.CustomerAddressBookContactUpserted | io.flow.v0.models.CustomerAddressBookContactDeleted | io.flow.v0.models.EmailNotificationUpserted | io.flow.v0.models.EmailNotificationDeleted | io.flow.v0.models.AvailablePromotionsUpserted | io.flow.v0.models.AvailablePromotionsDeleted | io.flow.v0.models.AvailablePromotionsUpsertedV2 | io.flow.v0.models.AvailablePromotionsDeletedV2 | io.flow.v0.models.AllocationDeletedV2 | io.flow.v0.models.AllocationUpsertedV2 | io.flow.v0.models.CurrencyFormatDeleted | io.flow.v0.models.CurrencyFormatUpserted | io.flow.v0.models.ExperienceDeleted | io.flow.v0.models.ExperienceUpserted | io.flow.v0.models.ExperienceDeletedV2 | io.flow.v0.models.ExperienceUpsertedV2 | io.flow.v0.models.CountryStatusUpserted | io.flow.v0.models.CountryStatusDeleted | io.flow.v0.models.ExperiencePriceBookMappingDeleted | io.flow.v0.models.ExperiencePriceBookMappingUpserted | io.flow.v0.models.ExperienceLogisticsSettingsUpserted | io.flow.v0.models.ExperienceLogisticsSettingsDeleted | io.flow.v0.models.ItemMarginDeletedV2 | io.flow.v0.models.ItemMarginUpsertedV2 | io.flow.v0.models.ItemSalesMarginDeleted | io.flow.v0.models.ItemSalesMarginUpserted | io.flow.v0.models.LabelFormatDeleted | io.flow.v0.models.LabelFormatUpserted | io.flow.v0.models.OrderDeleted | io.flow.v0.models.OrderUpserted | io.flow.v0.models.OrderDeletedV2 | io.flow.v0.models.OrderUpsertedV2 | io.flow.v0.models.OrderIdentifierDeleted | io.flow.v0.models.OrderIdentifierUpserted | io.flow.v0.models.OrderIdentifierDeletedV2 | io.flow.v0.models.OrderIdentifierUpsertedV2 | io.flow.v0.models.OrderIdentifierUpsertedV3 | io.flow.v0.models.OrderReplacementUpserted | io.flow.v0.models.OrderReplacementDeleted | io.flow.v0.models.PricingDeleted | io.flow.v0.models.PricingUpserted | io.flow.v0.models.OrderServiceChangeRequest | io.flow.v0.models.FraudStatusChanged | io.flow.v0.models.CenterUpserted | io.flow.v0.models.CenterDeleted | io.flow.v0.models.ShippingConfigurationUpserted | io.flow.v0.models.ShippingConfigurationDeleted | io.flow.v0.models.TierUpsertedV2 | io.flow.v0.models.TierDeletedV2 | io.flow.v0.models.ShippingLaneUpserted | io.flow.v0.models.ShippingLaneDeleted | io.flow.v0.models.ShippingConfigurationItemAvailabilityUpserted | io.flow.v0.models.ShippingConfigurationItemAvailabilityDeleted | io.flow.v0.models.ShippingConfigurationItemShippingPricingUpserted | io.flow.v0.models.ShippingConfigurationItemShippingPricingDeleted | io.flow.v0.models.Hs6CodeUpserted | io.flow.v0.models.Hs6CodeDeleted | io.flow.v0.models.Hs10CodeUpserted | io.flow.v0.models.Hs10CodeDeleted | io.flow.v0.models.ItemOriginUpserted | io.flow.v0.models.ItemOriginDeleted | io.flow.v0.models.HarmonizedLandedCostUpserted | io.flow.v0.models.FullyHarmonizedItemUpserted | io.flow.v0.models.ImportCompletedV2 | io.flow.v0.models.ImportFailedV2 | io.flow.v0.models.RuleUpserted | io.flow.v0.models.RuleDeleted | io.flow.v0.models.SnapshotUpserted | io.flow.v0.models.SnapshotDeleted | io.flow.v0.models.LabelUpserted | io.flow.v0.models.LabelDeletedV2 | io.flow.v0.models.LabelUpsertedV2 | io.flow.v0.models.NotificationUpsertedV2 | io.flow.v0.models.NotificationDeletedV2 | io.flow.v0.models.ManifestedLabelUpserted | io.flow.v0.models.ManifestedLabelDeleted | io.flow.v0.models.LocalItemUpserted | io.flow.v0.models.LocalItemDeleted | io.flow.v0.models.MerchantApplicationUpserted | io.flow.v0.models.MerchantApplicationDeleted | io.flow.v0.models.CheckoutOptinResponsesUpserted | io.flow.v0.models.CheckoutOptinResponsesDeleted | io.flow.v0.models.BrowseOptinResponsesUpserted | io.flow.v0.models.BrowseOptinResponsesDeleted | io.flow.v0.models.OrderPlaced | io.flow.v0.models.OrderPlacedV2 | io.flow.v0.models.ReadyToFulfill | io.flow.v0.models.ReadyToFulfillV2 | io.flow.v0.models.MembershipUpsertedV2 | io.flow.v0.models.MembershipDeletedV2 | io.flow.v0.models.OrganizationUpserted | io.flow.v0.models.OrganizationDeleted | io.flow.v0.models.OrganizationUpsertedV2 | io.flow.v0.models.OrganizationDeletedV2 | io.flow.v0.models.OrganizationDefaultConfigurationsUpserted | io.flow.v0.models.OrganizationDefaultConfigurationsDeleted | io.flow.v0.models.EcommercePlatformUpserted | io.flow.v0.models.EcommercePlatformDeleted | io.flow.v0.models.OrganizationOnboardingStateUpserted | io.flow.v0.models.OrganizationOnboardingStateDeleted | io.flow.v0.models.AuthorizationDeletedV2 | io.flow.v0.models.AuthorizationStatusChanged | io.flow.v0.models.CardAuthorizationUpsertedV2 | io.flow.v0.models.CardAuthorizationDeletedV2 | io.flow.v0.models.OnlineAuthorizationUpsertedV2 | io.flow.v0.models.OnlineAuthorizationDeletedV2 | io.flow.v0.models.CaptureUpsertedV2 | io.flow.v0.models.CaptureDeleted | io.flow.v0.models.CardUpsertedV2 | io.flow.v0.models.CardDeleted | io.flow.v0.models.PaymentUpserted | io.flow.v0.models.PaymentDeleted | io.flow.v0.models.RefundUpsertedV2 | io.flow.v0.models.RefundDeletedV2 | io.flow.v0.models.RefundCaptureUpsertedV2 | io.flow.v0.models.ReversalUpserted | io.flow.v0.models.ReversalDeleted | io.flow.v0.models.CaptureIdentifierUpserted | io.flow.v0.models.CaptureIdentifierDeleted | io.flow.v0.models.RefundIdentifierUpserted | io.flow.v0.models.RefundIdentifierDeleted | io.flow.v0.models.VirtualCardCaptureUpserted | io.flow.v0.models.VirtualCardCaptureDeleted | io.flow.v0.models.VirtualCardRefundUpserted | io.flow.v0.models.VirtualCardRefundDeleted | io.flow.v0.models.PaymentRequestUpserted | io.flow.v0.models.PaymentRequestDeleted | io.flow.v0.models.PriceBookUpserted | io.flow.v0.models.PriceBookDeleted | io.flow.v0.models.PriceBookItemUpserted | io.flow.v0.models.PriceBookItemDeleted | io.flow.v0.models.OrganizationRatesPublished | io.flow.v0.models.RatecardLaneUpserted | io.flow.v0.models.RatecardLaneDeleted | io.flow.v0.models.RatecardUpserted | io.flow.v0.models.RatecardDeleted | io.flow.v0.models.ProductRestrictionResultUpserted | io.flow.v0.models.ProductRestrictionResultDeleted | io.flow.v0.models.ReturnUpserted | io.flow.v0.models.ReturnDeleted | io.flow.v0.models.ReturnUpsertedV2 | io.flow.v0.models.ReturnDeletedV2 | io.flow.v0.models.ShopifyLocalizationSettingUpserted | io.flow.v0.models.ShopifyLocalizationSettingDeleted | io.flow.v0.models.TrackingLabelEventUpserted);
|
|
12319
|
+
type Event = (io.flow.v0.models.TestUpserted | io.flow.v0.models.GenerateLoad | io.flow.v0.models.TransactionUpserted | io.flow.v0.models.OrganizationTransactionUpserted | io.flow.v0.models.OrganizationTransactionDeleted | io.flow.v0.models.StatementUpserted | io.flow.v0.models.StatementDeleted | io.flow.v0.models.ChannelTransactionUpserted | io.flow.v0.models.ChannelTransactionDeleted | io.flow.v0.models.ChannelTransactionDeletedV2 | io.flow.v0.models.ChannelStatementUpserted | io.flow.v0.models.ChannelStatementDeleted | io.flow.v0.models.ChannelPayoutUpserted | io.flow.v0.models.ChannelPayoutDeleted | io.flow.v0.models.OrganizationPayoutUpserted | io.flow.v0.models.OrganizationPayoutDeleted | io.flow.v0.models.AttributeUpserted | io.flow.v0.models.AttributeDeleted | io.flow.v0.models.AttributeUpsertedV2 | io.flow.v0.models.AttributeDeletedV2 | io.flow.v0.models.CatalogUpserted | io.flow.v0.models.CatalogDeleted | io.flow.v0.models.SubcatalogUpserted | io.flow.v0.models.SubcatalogDeleted | io.flow.v0.models.CatalogItemUpserted | io.flow.v0.models.CatalogItemDeleted | io.flow.v0.models.CatalogItemUpsertedV2 | io.flow.v0.models.CatalogItemDeletedV2 | io.flow.v0.models.SubcatalogItemUpserted | io.flow.v0.models.SubcatalogItemDeleted | io.flow.v0.models.CatalogStatisticsUpserted | io.flow.v0.models.CatalogStatisticsDeleted | io.flow.v0.models.ChannelUpserted | io.flow.v0.models.ChannelDeleted | io.flow.v0.models.ChannelCurrencyUpserted | io.flow.v0.models.ChannelCurrencyDeleted | io.flow.v0.models.ChannelOrganizationUpserted | io.flow.v0.models.ChannelOrganizationDeleted | io.flow.v0.models.B2BInvoiceUpserted | io.flow.v0.models.B2BInvoiceDeleted | io.flow.v0.models.B2BCreditMemoUpserted | io.flow.v0.models.B2BCreditMemoDeleted | io.flow.v0.models.ConsumerInvoiceUpserted | io.flow.v0.models.ConsumerInvoiceDeleted | io.flow.v0.models.CreditMemoUpserted | io.flow.v0.models.CreditMemoDeleted | io.flow.v0.models.CrossdockShipmentUpserted | io.flow.v0.models.RateDeleted | io.flow.v0.models.RateUpserted | io.flow.v0.models.RateDeletedV3 | io.flow.v0.models.RateUpsertedV3 | io.flow.v0.models.CustomerUpserted | io.flow.v0.models.CustomerDeleted | io.flow.v0.models.CustomerAddressBookContactUpserted | io.flow.v0.models.CustomerAddressBookContactDeleted | io.flow.v0.models.EmailNotificationUpserted | io.flow.v0.models.EmailNotificationDeleted | io.flow.v0.models.AvailablePromotionsUpserted | io.flow.v0.models.AvailablePromotionsDeleted | io.flow.v0.models.AvailablePromotionsUpsertedV2 | io.flow.v0.models.AvailablePromotionsDeletedV2 | io.flow.v0.models.AllocationDeletedV2 | io.flow.v0.models.AllocationUpsertedV2 | io.flow.v0.models.CurrencyFormatDeleted | io.flow.v0.models.CurrencyFormatUpserted | io.flow.v0.models.ExperienceDeleted | io.flow.v0.models.ExperienceUpserted | io.flow.v0.models.ExperienceDeletedV2 | io.flow.v0.models.ExperienceUpsertedV2 | io.flow.v0.models.CountryStatusUpserted | io.flow.v0.models.CountryStatusDeleted | io.flow.v0.models.ExperiencePriceBookMappingDeleted | io.flow.v0.models.ExperiencePriceBookMappingUpserted | io.flow.v0.models.ExperienceLogisticsSettingsUpserted | io.flow.v0.models.ExperienceLogisticsSettingsDeleted | io.flow.v0.models.ItemMarginDeletedV2 | io.flow.v0.models.ItemMarginUpsertedV2 | io.flow.v0.models.ItemSalesMarginDeleted | io.flow.v0.models.ItemSalesMarginUpserted | io.flow.v0.models.LabelFormatDeleted | io.flow.v0.models.LabelFormatUpserted | io.flow.v0.models.OrderDeleted | io.flow.v0.models.OrderUpserted | io.flow.v0.models.OrderDeletedV2 | io.flow.v0.models.OrderUpsertedV2 | io.flow.v0.models.OrderIdentifierDeleted | io.flow.v0.models.OrderIdentifierUpserted | io.flow.v0.models.OrderIdentifierDeletedV2 | io.flow.v0.models.OrderIdentifierUpsertedV2 | io.flow.v0.models.OrderIdentifierUpsertedV3 | io.flow.v0.models.OrderReplacementUpserted | io.flow.v0.models.OrderReplacementDeleted | io.flow.v0.models.PricingDeleted | io.flow.v0.models.PricingUpserted | io.flow.v0.models.OrderServiceChangeRequest | io.flow.v0.models.FraudStatusChanged | io.flow.v0.models.CenterUpserted | io.flow.v0.models.CenterDeleted | io.flow.v0.models.ShippingConfigurationUpserted | io.flow.v0.models.ShippingConfigurationDeleted | io.flow.v0.models.TierUpsertedV2 | io.flow.v0.models.TierDeletedV2 | io.flow.v0.models.ShippingLaneUpserted | io.flow.v0.models.ShippingLaneDeleted | io.flow.v0.models.ShippingConfigurationItemAvailabilityUpserted | io.flow.v0.models.ShippingConfigurationItemAvailabilityDeleted | io.flow.v0.models.ShippingConfigurationItemShippingPricingUpserted | io.flow.v0.models.ShippingConfigurationItemShippingPricingDeleted | io.flow.v0.models.Hs6CodeUpserted | io.flow.v0.models.Hs6CodeDeleted | io.flow.v0.models.Hs10CodeUpserted | io.flow.v0.models.Hs10CodeDeleted | io.flow.v0.models.ItemOriginUpserted | io.flow.v0.models.ItemOriginDeleted | io.flow.v0.models.HarmonizedLandedCostUpserted | io.flow.v0.models.FullyHarmonizedItemUpserted | io.flow.v0.models.ImportCompletedV2 | io.flow.v0.models.ImportFailedV2 | io.flow.v0.models.RuleUpserted | io.flow.v0.models.RuleDeleted | io.flow.v0.models.SnapshotUpserted | io.flow.v0.models.SnapshotDeleted | io.flow.v0.models.LabelUpserted | io.flow.v0.models.LabelDeletedV2 | io.flow.v0.models.LabelUpsertedV2 | io.flow.v0.models.NotificationUpsertedV2 | io.flow.v0.models.NotificationDeletedV2 | io.flow.v0.models.ManifestedLabelUpserted | io.flow.v0.models.ManifestedLabelDeleted | io.flow.v0.models.LocalItemUpserted | io.flow.v0.models.LocalItemDeleted | io.flow.v0.models.MerchantApplicationUpserted | io.flow.v0.models.MerchantApplicationDeleted | io.flow.v0.models.CheckoutOptinResponsesUpserted | io.flow.v0.models.CheckoutOptinResponsesDeleted | io.flow.v0.models.BrowseOptinResponsesUpserted | io.flow.v0.models.BrowseOptinResponsesDeleted | io.flow.v0.models.OrderPlaced | io.flow.v0.models.OrderPlacedV2 | io.flow.v0.models.ReadyToFulfill | io.flow.v0.models.ReadyToFulfillV2 | io.flow.v0.models.MembershipUpsertedV2 | io.flow.v0.models.MembershipDeletedV2 | io.flow.v0.models.OrganizationUpserted | io.flow.v0.models.OrganizationDeleted | io.flow.v0.models.OrganizationUpsertedV2 | io.flow.v0.models.OrganizationDeletedV2 | io.flow.v0.models.OrganizationDefaultConfigurationsUpserted | io.flow.v0.models.OrganizationDefaultConfigurationsDeleted | io.flow.v0.models.EcommercePlatformUpserted | io.flow.v0.models.EcommercePlatformDeleted | io.flow.v0.models.OrganizationOnboardingStateUpserted | io.flow.v0.models.OrganizationOnboardingStateDeleted | io.flow.v0.models.AuthorizationDeletedV2 | io.flow.v0.models.AuthorizationStatusChanged | io.flow.v0.models.CardAuthorizationUpsertedV2 | io.flow.v0.models.CardAuthorizationDeletedV2 | io.flow.v0.models.OnlineAuthorizationUpsertedV2 | io.flow.v0.models.OnlineAuthorizationDeletedV2 | io.flow.v0.models.CaptureUpsertedV2 | io.flow.v0.models.CaptureDeleted | io.flow.v0.models.CardUpsertedV2 | io.flow.v0.models.CardDeleted | io.flow.v0.models.PaymentUpserted | io.flow.v0.models.PaymentDeleted | io.flow.v0.models.RefundUpsertedV2 | io.flow.v0.models.RefundDeletedV2 | io.flow.v0.models.RefundCaptureUpsertedV2 | io.flow.v0.models.ReversalUpserted | io.flow.v0.models.ReversalDeleted | io.flow.v0.models.CaptureIdentifierUpserted | io.flow.v0.models.CaptureIdentifierDeleted | io.flow.v0.models.RefundIdentifierUpserted | io.flow.v0.models.RefundIdentifierDeleted | io.flow.v0.models.VirtualCardCaptureUpserted | io.flow.v0.models.VirtualCardCaptureDeleted | io.flow.v0.models.VirtualCardRefundUpserted | io.flow.v0.models.VirtualCardRefundDeleted | io.flow.v0.models.PaymentRequestUpserted | io.flow.v0.models.PaymentRequestDeleted | io.flow.v0.models.PriceBookUpserted | io.flow.v0.models.PriceBookDeleted | io.flow.v0.models.PriceBookItemUpserted | io.flow.v0.models.PriceBookItemDeleted | io.flow.v0.models.OrganizationRatesPublished | io.flow.v0.models.RatecardLaneUpserted | io.flow.v0.models.RatecardLaneDeleted | io.flow.v0.models.RatecardUpserted | io.flow.v0.models.RatecardDeleted | io.flow.v0.models.ProductRestrictionResultUpserted | io.flow.v0.models.ProductRestrictionResultDeleted | io.flow.v0.models.ReturnUpserted | io.flow.v0.models.ReturnDeleted | io.flow.v0.models.ReturnUpsertedV2 | io.flow.v0.models.ReturnDeletedV2 | io.flow.v0.models.ShopifyLocalizationSettingUpserted | io.flow.v0.models.ShopifyLocalizationSettingDeleted | io.flow.v0.models.TrackingLabelEventUpserted);
|
|
11953
12320
|
type ExpandableCard = (io.flow.v0.models.Card | io.flow.v0.models.CardReference | io.flow.v0.models.CardSummary);
|
|
11954
12321
|
type ExpandableCenter = (io.flow.v0.models.Center | io.flow.v0.models.CenterReference);
|
|
11955
12322
|
type ExpandableExperience = (io.flow.v0.models.Experience | io.flow.v0.models.ExperienceReference);
|
|
@@ -11975,7 +12342,7 @@ declare namespace io.flow.v0.unions {
|
|
|
11975
12342
|
type MerchantApplicationForm = (io.flow.v0.models.ShopifyMerchantApplicationForm);
|
|
11976
12343
|
type MerchantApplicationPutForm = (io.flow.v0.models.ShopifyMerchantApplicationPutForm);
|
|
11977
12344
|
type MerchantApplicationsSummary = (io.flow.v0.models.ShopifyMerchantApplicationsSummary);
|
|
11978
|
-
type OnboardingState = (io.flow.v0.models.InComplianceReview | io.flow.v0.models.SetupInProgress | io.flow.v0.models.MerchantRejected | io.flow.v0.models.SetupBlocked | io.flow.v0.models.SetupCompleted | io.flow.v0.models.MerchantActivated);
|
|
12345
|
+
type OnboardingState = (io.flow.v0.models.InComplianceReview | io.flow.v0.models.SetupInProgress | io.flow.v0.models.MerchantRejected | io.flow.v0.models.SetupBlocked | io.flow.v0.models.SetupCompleted | io.flow.v0.models.MerchantActivated | io.flow.v0.models.MerchantDeactivated);
|
|
11979
12346
|
type OnlineAuthorizationDetails = (io.flow.v0.models.CryptopayAuthorizationDetails | io.flow.v0.models.PaypalAuthorizationDetails | io.flow.v0.models.RedirectAuthorizationDetails | io.flow.v0.models.InlineAuthorizationDetails);
|
|
11980
12347
|
type OrderInformation = (io.flow.v0.models.OrderInformationFlow | io.flow.v0.models.OrderInformationDetails);
|
|
11981
12348
|
type OrderNumberGenerator = (io.flow.v0.models.OrderNumberGeneratorUuid | io.flow.v0.models.OrderNumberGeneratorHexadecimal | io.flow.v0.models.OrderNumberGeneratorPrefixSuffix);
|
|
@@ -12013,13 +12380,13 @@ declare namespace io.flow.v0.unions {
|
|
|
12013
12380
|
type QueryFilter = (io.flow.v0.models.QueryFilterStructured | io.flow.v0.models.QueryFilterUnstructured);
|
|
12014
12381
|
type QueryFilterForm = (io.flow.v0.models.QueryFilterStructuredForm | io.flow.v0.models.QueryFilterUnstructuredForm);
|
|
12015
12382
|
type RatecardEstimate = (io.flow.v0.models.RatecardEstimateV1 | io.flow.v0.models.RatecardEstimateV2 | io.flow.v0.models.RatecardEstimateV3 | io.flow.v0.models.RatecardEstimateV4);
|
|
12016
|
-
type RatecardFee = (io.flow.v0.models.DdpRatecardFee | io.flow.v0.models.FuelSurchargeRatecardFee | io.flow.v0.models.
|
|
12383
|
+
type RatecardFee = (io.flow.v0.models.DdpRatecardFee | io.flow.v0.models.FuelSurchargeRatecardFee | io.flow.v0.models.OversizePieceSurchargeRatecardFee | io.flow.v0.models.ReturnPackageRatecardFee | io.flow.v0.models.CrossdockRatecardFee | io.flow.v0.models.RemoteAreaRatecardFee | io.flow.v0.models.EmergencySituationSurchargeRatecardFee | io.flow.v0.models.PeakSurchargeRatecardFee | io.flow.v0.models.DutiesTaxesPaidSurchargeRatecardFee);
|
|
12017
12384
|
type RepeatSchedule = (io.flow.v0.models.RepeatHourly | io.flow.v0.models.RepeatDaily | io.flow.v0.models.RepeatWeekly | io.flow.v0.models.RepeatMonthly);
|
|
12018
12385
|
type ReservationError = (io.flow.v0.models.NoInventoryReservationError | io.flow.v0.models.ExternalApiTimeoutReservationError | io.flow.v0.models.GenericReservationError);
|
|
12019
12386
|
type ReturnSource = (io.flow.v0.models.ReturnSourceFlow | io.flow.v0.models.ReturnSourceExternalVendor);
|
|
12020
12387
|
type SdkAdyenV3AuthenticationToken = (io.flow.v0.models.AdyenV3FingerprintToken | io.flow.v0.models.AdyenV3ChallengeToken);
|
|
12021
12388
|
type ServiceDescription = (io.flow.v0.models.ServiceSummary | io.flow.v0.models.ServiceUnknown);
|
|
12022
|
-
type ServiceFee = (io.flow.v0.models.FuelSurchargeServiceFee | io.flow.v0.models.FuelSurchargeAmountByWeightServiceFee | io.flow.v0.models.RemoteAreaServiceFee | io.flow.v0.models.EmergencySituationSurchargeServiceFee | io.flow.v0.models.PeakSurchargeServiceFee | io.flow.v0.models.PeakSurchargeByWeightServiceFee | io.flow.v0.models.DutiesTaxesPaidSurchargeServiceFee);
|
|
12389
|
+
type ServiceFee = (io.flow.v0.models.FuelSurchargeServiceFee | io.flow.v0.models.FuelSurchargeAmountByWeightServiceFee | io.flow.v0.models.RemoteAreaServiceFee | io.flow.v0.models.EmergencySituationSurchargeServiceFee | io.flow.v0.models.PeakSurchargeServiceFee | io.flow.v0.models.PeakSurchargeByWeightServiceFee | io.flow.v0.models.DutiesTaxesPaidSurchargeServiceFee | io.flow.v0.models.OversizePieceSurchargeServiceFee);
|
|
12023
12390
|
type Session = (io.flow.v0.models.OrganizationSession);
|
|
12024
12391
|
type SessionAuthorization = (io.flow.v0.models.OrganizationSessionAuthorization);
|
|
12025
12392
|
type Settlement = (io.flow.v0.models.SettlementNoPayout | io.flow.v0.models.SettlementPayout);
|
|
@@ -12036,6 +12403,7 @@ declare namespace io.flow.v0.unions {
|
|
|
12036
12403
|
type Token = (io.flow.v0.models.ChannelToken | io.flow.v0.models.OrganizationToken | io.flow.v0.models.OrganizationTokenV2 | io.flow.v0.models.PartnerToken);
|
|
12037
12404
|
type TokenReference = (io.flow.v0.models.ChannelTokenReference | io.flow.v0.models.OrganizationTokenReference | io.flow.v0.models.OrganizationTokenV2Reference | io.flow.v0.models.PartnerTokenReference);
|
|
12038
12405
|
type TransactionDetails = (io.flow.v0.models.TransactionDetailsCard);
|
|
12406
|
+
type TransactionMetadata = (io.flow.v0.models.TransactionMetadataShippingLabel);
|
|
12039
12407
|
}
|
|
12040
12408
|
|
|
12041
12409
|
export const abandonedOrderPromotionStatus: PropTypes.Requireable<io.flow.v0.enums.AbandonedOrderPromotionStatus>;
|
|
@@ -12163,6 +12531,7 @@ export const orderType: PropTypes.Requireable<io.flow.v0.enums.OrderType>;
|
|
|
12163
12531
|
export const organizationPaymentMethodTag: PropTypes.Requireable<io.flow.v0.enums.OrganizationPaymentMethodTag>;
|
|
12164
12532
|
export const organizationStatus: PropTypes.Requireable<io.flow.v0.enums.OrganizationStatus>;
|
|
12165
12533
|
export const organizationType: PropTypes.Requireable<io.flow.v0.enums.OrganizationType>;
|
|
12534
|
+
export const packageDimensionsSource: PropTypes.Requireable<io.flow.v0.enums.PackageDimensionsSource>;
|
|
12166
12535
|
export const paymentActionType: PropTypes.Requireable<io.flow.v0.enums.PaymentActionType>;
|
|
12167
12536
|
export const paymentErrorCode: PropTypes.Requireable<io.flow.v0.enums.PaymentErrorCode>;
|
|
12168
12537
|
export const paymentFailureCode: PropTypes.Requireable<io.flow.v0.enums.PaymentFailureCode>;
|
|
@@ -12181,6 +12550,7 @@ export const payoutStatusFailureCode: PropTypes.Requireable<io.flow.v0.enums.Pay
|
|
|
12181
12550
|
export const permittedHttpMethod: PropTypes.Requireable<io.flow.v0.enums.PermittedHttpMethod>;
|
|
12182
12551
|
export const physicalDeliverySpecialSerivce: PropTypes.Requireable<io.flow.v0.enums.PhysicalDeliverySpecialSerivce>;
|
|
12183
12552
|
export const postalType: PropTypes.Requireable<io.flow.v0.enums.PostalType>;
|
|
12553
|
+
export const preferredServiceSelectionStrategy: PropTypes.Requireable<io.flow.v0.enums.PreferredServiceSelectionStrategy>;
|
|
12184
12554
|
export const priceAccuracy: PropTypes.Requireable<io.flow.v0.enums.PriceAccuracy>;
|
|
12185
12555
|
export const priceBookStatus: PropTypes.Requireable<io.flow.v0.enums.PriceBookStatus>;
|
|
12186
12556
|
export const priceDetailComponentKey: PropTypes.Requireable<io.flow.v0.enums.PriceDetailComponentKey>;
|
|
@@ -12212,6 +12582,7 @@ export const shopifyLocalizationMethod: PropTypes.Requireable<io.flow.v0.enums.S
|
|
|
12212
12582
|
export const shopifySyncCheck: PropTypes.Requireable<io.flow.v0.enums.ShopifySyncCheck>;
|
|
12213
12583
|
export const sortDirection: PropTypes.Requireable<io.flow.v0.enums.SortDirection>;
|
|
12214
12584
|
export const statementAttachmentType: PropTypes.Requireable<io.flow.v0.enums.StatementAttachmentType>;
|
|
12585
|
+
export const storedMethodUsageStep: PropTypes.Requireable<io.flow.v0.enums.StoredMethodUsageStep>;
|
|
12215
12586
|
export const strategy: PropTypes.Requireable<io.flow.v0.enums.Strategy>;
|
|
12216
12587
|
export const subcatalogItemStatus: PropTypes.Requireable<io.flow.v0.enums.SubcatalogItemStatus>;
|
|
12217
12588
|
export const surchargeResponsibleParty: PropTypes.Requireable<io.flow.v0.enums.SurchargeResponsibleParty>;
|
|
@@ -12234,9 +12605,13 @@ export const trackingNumberType: PropTypes.Requireable<io.flow.v0.enums.Tracking
|
|
|
12234
12605
|
export const trackingStatus: PropTypes.Requireable<io.flow.v0.enums.TrackingStatus>;
|
|
12235
12606
|
export const tradeAgreementName: PropTypes.Requireable<io.flow.v0.enums.TradeAgreementName>;
|
|
12236
12607
|
export const tradeAgreementStatus: PropTypes.Requireable<io.flow.v0.enums.TradeAgreementStatus>;
|
|
12608
|
+
export const transactionPayoutPendingReason: PropTypes.Requireable<io.flow.v0.enums.TransactionPayoutPendingReason>;
|
|
12237
12609
|
export const transactionSource: PropTypes.Requireable<io.flow.v0.enums.TransactionSource>;
|
|
12610
|
+
export const unitOfLength: PropTypes.Requireable<io.flow.v0.enums.UnitOfLength>;
|
|
12238
12611
|
export const unitOfMeasurement: PropTypes.Requireable<io.flow.v0.enums.UnitOfMeasurement>;
|
|
12239
12612
|
export const unitOfTime: PropTypes.Requireable<io.flow.v0.enums.UnitOfTime>;
|
|
12613
|
+
export const unitOfVolume: PropTypes.Requireable<io.flow.v0.enums.UnitOfVolume>;
|
|
12614
|
+
export const unitOfWeight: PropTypes.Requireable<io.flow.v0.enums.UnitOfWeight>;
|
|
12240
12615
|
export const updatePolicy: PropTypes.Requireable<io.flow.v0.enums.UpdatePolicy>;
|
|
12241
12616
|
export const updateType: PropTypes.Requireable<io.flow.v0.enums.UpdateType>;
|
|
12242
12617
|
export const userStatus: PropTypes.Requireable<io.flow.v0.enums.UserStatus>;
|
|
@@ -12465,6 +12840,7 @@ export const channelTokenReference: PropTypes.Requireable<io.flow.v0.models.Chan
|
|
|
12465
12840
|
export const channelTransaction: PropTypes.Requireable<io.flow.v0.models.ChannelTransaction>;
|
|
12466
12841
|
export const channelTransactionDeleted: PropTypes.Requireable<io.flow.v0.models.ChannelTransactionDeleted>;
|
|
12467
12842
|
export const channelTransactionDeletedV2: PropTypes.Requireable<io.flow.v0.models.ChannelTransactionDeletedV2>;
|
|
12843
|
+
export const channelTransactionPayout: PropTypes.Requireable<io.flow.v0.models.ChannelTransactionPayout>;
|
|
12468
12844
|
export const channelTransactionUpserted: PropTypes.Requireable<io.flow.v0.models.ChannelTransactionUpserted>;
|
|
12469
12845
|
export const channelUpserted: PropTypes.Requireable<io.flow.v0.models.ChannelUpserted>;
|
|
12470
12846
|
export const channelViesRegistration: PropTypes.Requireable<io.flow.v0.models.ChannelViesRegistration>;
|
|
@@ -12510,6 +12886,8 @@ export const contextReference: PropTypes.Requireable<io.flow.v0.models.ContextRe
|
|
|
12510
12886
|
export const country: PropTypes.Requireable<io.flow.v0.models.Country>;
|
|
12511
12887
|
export const countryAvailability: PropTypes.Requireable<io.flow.v0.models.CountryAvailability>;
|
|
12512
12888
|
export const countryDefaults: PropTypes.Requireable<io.flow.v0.models.CountryDefaults>;
|
|
12889
|
+
export const countryOfOrigin: PropTypes.Requireable<io.flow.v0.models.CountryOfOrigin>;
|
|
12890
|
+
export const countryOfOriginForm: PropTypes.Requireable<io.flow.v0.models.CountryOfOriginForm>;
|
|
12513
12891
|
export const countryPicker: PropTypes.Requireable<io.flow.v0.models.CountryPicker>;
|
|
12514
12892
|
export const countryPickerForm: PropTypes.Requireable<io.flow.v0.models.CountryPickerForm>;
|
|
12515
12893
|
export const countryShippingPricing: PropTypes.Requireable<io.flow.v0.models.CountryShippingPricing>;
|
|
@@ -12563,6 +12941,7 @@ export const cvvResult: PropTypes.Requireable<io.flow.v0.models.CvvResult>;
|
|
|
12563
12941
|
export const datetimeRange: PropTypes.Requireable<io.flow.v0.models.DatetimeRange>;
|
|
12564
12942
|
export const datetimeWithTimezone: PropTypes.Requireable<io.flow.v0.models.DatetimeWithTimezone>;
|
|
12565
12943
|
export const ddpRatecardFee: PropTypes.Requireable<io.flow.v0.models.DdpRatecardFee>;
|
|
12944
|
+
export const deactivationPutForm: PropTypes.Requireable<io.flow.v0.models.DeactivationPutForm>;
|
|
12566
12945
|
export const defaultBankAccountForm: PropTypes.Requireable<io.flow.v0.models.DefaultBankAccountForm>;
|
|
12567
12946
|
export const deliveredDutySetting: PropTypes.Requireable<io.flow.v0.models.DeliveredDutySetting>;
|
|
12568
12947
|
export const deliveryItem: PropTypes.Requireable<io.flow.v0.models.DeliveryItem>;
|
|
@@ -12732,6 +13111,7 @@ export const fulfillmentItemAllocationDetails: PropTypes.Requireable<io.flow.v0.
|
|
|
12732
13111
|
export const fulfillmentItemQuantity: PropTypes.Requireable<io.flow.v0.models.FulfillmentItemQuantity>;
|
|
12733
13112
|
export const fulfillmentLineCancelForm: PropTypes.Requireable<io.flow.v0.models.FulfillmentLineCancelForm>;
|
|
12734
13113
|
export const fullyHarmonizedItemUpserted: PropTypes.Requireable<io.flow.v0.models.FullyHarmonizedItemUpserted>;
|
|
13114
|
+
export const generateLoad: PropTypes.Requireable<io.flow.v0.models.GenerateLoad>;
|
|
12735
13115
|
export const genericError: PropTypes.Requireable<io.flow.v0.models.GenericError>;
|
|
12736
13116
|
export const genericReservationError: PropTypes.Requireable<io.flow.v0.models.GenericReservationError>;
|
|
12737
13117
|
export const geoForm: PropTypes.Requireable<io.flow.v0.models.GeoForm>;
|
|
@@ -12910,6 +13290,7 @@ export const membershipVersion: PropTypes.Requireable<io.flow.v0.models.Membersh
|
|
|
12910
13290
|
export const merchantActivated: PropTypes.Requireable<io.flow.v0.models.MerchantActivated>;
|
|
12911
13291
|
export const merchantApplicationDeleted: PropTypes.Requireable<io.flow.v0.models.MerchantApplicationDeleted>;
|
|
12912
13292
|
export const merchantApplicationUpserted: PropTypes.Requireable<io.flow.v0.models.MerchantApplicationUpserted>;
|
|
13293
|
+
export const merchantDeactivated: PropTypes.Requireable<io.flow.v0.models.MerchantDeactivated>;
|
|
12913
13294
|
export const merchantGiftCardBalance: PropTypes.Requireable<io.flow.v0.models.MerchantGiftCardBalance>;
|
|
12914
13295
|
export const merchantGiftCardBalanceForm: PropTypes.Requireable<io.flow.v0.models.MerchantGiftCardBalanceForm>;
|
|
12915
13296
|
export const merchantGiftCardError: PropTypes.Requireable<io.flow.v0.models.MerchantGiftCardError>;
|
|
@@ -13086,13 +13467,17 @@ export const organizationTokenReference: PropTypes.Requireable<io.flow.v0.models
|
|
|
13086
13467
|
export const organizationTokenV2: PropTypes.Requireable<io.flow.v0.models.OrganizationTokenV2>;
|
|
13087
13468
|
export const organizationTokenV2Reference: PropTypes.Requireable<io.flow.v0.models.OrganizationTokenV2Reference>;
|
|
13088
13469
|
export const organizationTransactionDeleted: PropTypes.Requireable<io.flow.v0.models.OrganizationTransactionDeleted>;
|
|
13470
|
+
export const organizationTransactionPayout: PropTypes.Requireable<io.flow.v0.models.OrganizationTransactionPayout>;
|
|
13089
13471
|
export const organizationTransactionUpserted: PropTypes.Requireable<io.flow.v0.models.OrganizationTransactionUpserted>;
|
|
13090
13472
|
export const organizationUpserted: PropTypes.Requireable<io.flow.v0.models.OrganizationUpserted>;
|
|
13091
13473
|
export const organizationUpsertedV2: PropTypes.Requireable<io.flow.v0.models.OrganizationUpsertedV2>;
|
|
13092
13474
|
export const organizationVersion: PropTypes.Requireable<io.flow.v0.models.OrganizationVersion>;
|
|
13093
13475
|
export const originalPrices: PropTypes.Requireable<io.flow.v0.models.OriginalPrices>;
|
|
13094
13476
|
export const outboundCartonFee: PropTypes.Requireable<io.flow.v0.models.OutboundCartonFee>;
|
|
13095
|
-
export const
|
|
13477
|
+
export const oversizePieceSurchargeRatecardFee: PropTypes.Requireable<io.flow.v0.models.OversizePieceSurchargeRatecardFee>;
|
|
13478
|
+
export const oversizePieceSurchargeServiceFee: PropTypes.Requireable<io.flow.v0.models.OversizePieceSurchargeServiceFee>;
|
|
13479
|
+
export const packageDimensions: PropTypes.Requireable<io.flow.v0.models.PackageDimensions>;
|
|
13480
|
+
export const packageDimensionsForm: PropTypes.Requireable<io.flow.v0.models.PackageDimensionsForm>;
|
|
13096
13481
|
export const packaging: PropTypes.Requireable<io.flow.v0.models.Packaging>;
|
|
13097
13482
|
export const parentTransactionSummary: PropTypes.Requireable<io.flow.v0.models.ParentTransactionSummary>;
|
|
13098
13483
|
export const partnerCenter: PropTypes.Requireable<io.flow.v0.models.PartnerCenter>;
|
|
@@ -13200,6 +13585,7 @@ export const paymentTax: PropTypes.Requireable<io.flow.v0.models.PaymentTax>;
|
|
|
13200
13585
|
export const paymentUpserted: PropTypes.Requireable<io.flow.v0.models.PaymentUpserted>;
|
|
13201
13586
|
export const paymentVersion: PropTypes.Requireable<io.flow.v0.models.PaymentVersion>;
|
|
13202
13587
|
export const payoutAttachment: PropTypes.Requireable<io.flow.v0.models.PayoutAttachment>;
|
|
13588
|
+
export const payoutReference: PropTypes.Requireable<io.flow.v0.models.PayoutReference>;
|
|
13203
13589
|
export const payoutStatusFailed: PropTypes.Requireable<io.flow.v0.models.PayoutStatusFailed>;
|
|
13204
13590
|
export const payoutStatusScheduled: PropTypes.Requireable<io.flow.v0.models.PayoutStatusScheduled>;
|
|
13205
13591
|
export const payoutStatusSent: PropTypes.Requireable<io.flow.v0.models.PayoutStatusSent>;
|
|
@@ -13217,6 +13603,7 @@ export const pfsInventoryCheckResponse: PropTypes.Requireable<io.flow.v0.models.
|
|
|
13217
13603
|
export const pfsInventoryCheckResponseItem: PropTypes.Requireable<io.flow.v0.models.PfsInventoryCheckResponseItem>;
|
|
13218
13604
|
export const pfsInventoryStatus: PropTypes.Requireable<io.flow.v0.models.PfsInventoryStatus>;
|
|
13219
13605
|
export const physicalDelivery: PropTypes.Requireable<io.flow.v0.models.PhysicalDelivery>;
|
|
13606
|
+
export const physicalDeliveryPreferredService: PropTypes.Requireable<io.flow.v0.models.PhysicalDeliveryPreferredService>;
|
|
13220
13607
|
export const postPaymentRedirectUrls: PropTypes.Requireable<io.flow.v0.models.PostPaymentRedirectUrls>;
|
|
13221
13608
|
export const price: PropTypes.Requireable<io.flow.v0.models.Price>;
|
|
13222
13609
|
export const priceBook: PropTypes.Requireable<io.flow.v0.models.PriceBook>;
|
|
@@ -13423,6 +13810,7 @@ export const shippingConfigurationUpserted: PropTypes.Requireable<io.flow.v0.mod
|
|
|
13423
13810
|
export const shippingConfigurationVersion: PropTypes.Requireable<io.flow.v0.models.ShippingConfigurationVersion>;
|
|
13424
13811
|
export const shippingLabel: PropTypes.Requireable<io.flow.v0.models.ShippingLabel>;
|
|
13425
13812
|
export const shippingLabelDocument: PropTypes.Requireable<io.flow.v0.models.ShippingLabelDocument>;
|
|
13813
|
+
export const shippingLabelHopCostItemizedEstimate: PropTypes.Requireable<io.flow.v0.models.ShippingLabelHopCostItemizedEstimate>;
|
|
13426
13814
|
export const shippingLabelHopSummary: PropTypes.Requireable<io.flow.v0.models.ShippingLabelHopSummary>;
|
|
13427
13815
|
export const shippingLabelLaneSummary: PropTypes.Requireable<io.flow.v0.models.ShippingLabelLaneSummary>;
|
|
13428
13816
|
export const shippingLabelPackage: PropTypes.Requireable<io.flow.v0.models.ShippingLabelPackage>;
|
|
@@ -13537,7 +13925,6 @@ export const taxDutyQuoteValues: PropTypes.Requireable<io.flow.v0.models.TaxDuty
|
|
|
13537
13925
|
export const taxRegistration: PropTypes.Requireable<io.flow.v0.models.TaxRegistration>;
|
|
13538
13926
|
export const taxRegistrationForm: PropTypes.Requireable<io.flow.v0.models.TaxRegistrationForm>;
|
|
13539
13927
|
export const taxReport: PropTypes.Requireable<io.flow.v0.models.TaxReport>;
|
|
13540
|
-
export const test: PropTypes.Requireable<io.flow.v0.models.Test>;
|
|
13541
13928
|
export const testUpserted: PropTypes.Requireable<io.flow.v0.models.TestUpserted>;
|
|
13542
13929
|
export const thirdPartyLogisticsPartner: PropTypes.Requireable<io.flow.v0.models.ThirdPartyLogisticsPartner>;
|
|
13543
13930
|
export const threeDSecure: PropTypes.Requireable<io.flow.v0.models.ThreeDSecure>;
|
|
@@ -13583,7 +13970,9 @@ export const tradeAgreementCertifier: PropTypes.Requireable<io.flow.v0.models.Tr
|
|
|
13583
13970
|
export const tradeAgreementDuty: PropTypes.Requireable<io.flow.v0.models.TradeAgreementDuty>;
|
|
13584
13971
|
export const transaction: PropTypes.Requireable<io.flow.v0.models.Transaction>;
|
|
13585
13972
|
export const transactionDetailsCard: PropTypes.Requireable<io.flow.v0.models.TransactionDetailsCard>;
|
|
13973
|
+
export const transactionMetadataShippingLabel: PropTypes.Requireable<io.flow.v0.models.TransactionMetadataShippingLabel>;
|
|
13586
13974
|
export const transactionNetworkDetailsCard: PropTypes.Requireable<io.flow.v0.models.TransactionNetworkDetailsCard>;
|
|
13975
|
+
export const transactionReference: PropTypes.Requireable<io.flow.v0.models.TransactionReference>;
|
|
13587
13976
|
export const transactionUpserted: PropTypes.Requireable<io.flow.v0.models.TransactionUpserted>;
|
|
13588
13977
|
export const transitEstimate: PropTypes.Requireable<io.flow.v0.models.TransitEstimate>;
|
|
13589
13978
|
export const transitWindow: PropTypes.Requireable<io.flow.v0.models.TransitWindow>;
|
|
@@ -13725,4 +14114,5 @@ export const tierRuleOutcome: PropTypes.Requireable<io.flow.v0.unions.TierRuleOu
|
|
|
13725
14114
|
export const tierRuleOutcomeForm: PropTypes.Requireable<io.flow.v0.unions.TierRuleOutcomeForm>;
|
|
13726
14115
|
export const token: PropTypes.Requireable<io.flow.v0.unions.Token>;
|
|
13727
14116
|
export const tokenReference: PropTypes.Requireable<io.flow.v0.unions.TokenReference>;
|
|
13728
|
-
export const transactionDetails: PropTypes.Requireable<io.flow.v0.unions.TransactionDetails>;
|
|
14117
|
+
export const transactionDetails: PropTypes.Requireable<io.flow.v0.unions.TransactionDetails>;
|
|
14118
|
+
export const transactionMetadata: PropTypes.Requireable<io.flow.v0.unions.TransactionMetadata>;
|