@flowio/api-prop-types 10.16.52 → 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 +425 -34
- package/lib/api.js +1 -1
- package/package.json +2 -2
- package/src/api.d.ts +425 -34
- package/src/api.js +567 -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 {
|
|
@@ -4539,6 +4822,7 @@ declare namespace io.flow.v0.models {
|
|
|
4539
4822
|
readonly 'cookie_created_at'?: number;
|
|
4540
4823
|
readonly 'session_duration'?: number;
|
|
4541
4824
|
readonly 'fingerprint'?: string;
|
|
4825
|
+
readonly 'fraud_references'?: Record<string, string>;
|
|
4542
4826
|
}
|
|
4543
4827
|
|
|
4544
4828
|
interface DeviceFingerprintDetailsBrowser {
|
|
@@ -5504,6 +5788,15 @@ declare namespace io.flow.v0.models {
|
|
|
5504
5788
|
readonly 'landed_costs': io.flow.v0.models.LaneLandedCost[];
|
|
5505
5789
|
}
|
|
5506
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
|
+
|
|
5507
5800
|
interface GenericError {
|
|
5508
5801
|
readonly 'code': io.flow.v0.enums.GenericErrorCode;
|
|
5509
5802
|
readonly 'messages': string[];
|
|
@@ -6311,6 +6604,7 @@ declare namespace io.flow.v0.models {
|
|
|
6311
6604
|
interface KnowYourBusinessUsa {
|
|
6312
6605
|
readonly 'discriminator': 'know_your_business_usa';
|
|
6313
6606
|
readonly 'id': string;
|
|
6607
|
+
readonly 'organization_id': string;
|
|
6314
6608
|
readonly 'primary_entity': io.flow.v0.unions.Entity;
|
|
6315
6609
|
readonly 'parent_company'?: io.flow.v0.models.Company;
|
|
6316
6610
|
readonly 'ultimate_parent_company'?: io.flow.v0.models.Company;
|
|
@@ -6380,6 +6674,7 @@ declare namespace io.flow.v0.models {
|
|
|
6380
6674
|
readonly 'label'?: io.flow.v0.models.LabelReference;
|
|
6381
6675
|
readonly 'in_transit': io.flow.v0.models.LabelTrackingSummaryUpdate;
|
|
6382
6676
|
readonly 'delivered'?: io.flow.v0.models.LabelTrackingSummaryUpdate;
|
|
6677
|
+
readonly 'rejected'?: io.flow.v0.models.LabelTrackingSummaryUpdate;
|
|
6383
6678
|
}
|
|
6384
6679
|
|
|
6385
6680
|
interface LabelTrackingSummaryUpdate {
|
|
@@ -6790,6 +7085,11 @@ declare namespace io.flow.v0.models {
|
|
|
6790
7085
|
readonly 'merchant_application': io.flow.v0.unions.MerchantApplication;
|
|
6791
7086
|
}
|
|
6792
7087
|
|
|
7088
|
+
interface MerchantDeactivated {
|
|
7089
|
+
readonly 'discriminator': 'merchant_deactivated';
|
|
7090
|
+
readonly 'reason': string;
|
|
7091
|
+
}
|
|
7092
|
+
|
|
6793
7093
|
interface MerchantGiftCardBalance {
|
|
6794
7094
|
readonly 'amount': number;
|
|
6795
7095
|
readonly 'currency': string;
|
|
@@ -7012,6 +7312,7 @@ declare namespace io.flow.v0.models {
|
|
|
7012
7312
|
readonly 'base'?: io.flow.v0.models.Money;
|
|
7013
7313
|
readonly 'processor'?: io.flow.v0.unions.ExpandablePaymentProcessor;
|
|
7014
7314
|
readonly 'confirmation_details'?: io.flow.v0.unions.ConfirmationDetails;
|
|
7315
|
+
readonly 'authorized_at'?: string;
|
|
7015
7316
|
}
|
|
7016
7317
|
|
|
7017
7318
|
interface OnlineAuthorizationDeletedV2 {
|
|
@@ -7038,7 +7339,6 @@ declare namespace io.flow.v0.models {
|
|
|
7038
7339
|
}
|
|
7039
7340
|
|
|
7040
7341
|
interface OperationsContact {
|
|
7041
|
-
readonly 'full_name'?: string;
|
|
7042
7342
|
readonly 'company'?: string;
|
|
7043
7343
|
readonly 'email'?: string;
|
|
7044
7344
|
readonly 'phone'?: string;
|
|
@@ -7918,6 +8218,7 @@ declare namespace io.flow.v0.models {
|
|
|
7918
8218
|
readonly 'time_blocked'?: number;
|
|
7919
8219
|
readonly 'blocked_since'?: string;
|
|
7920
8220
|
readonly 'completed_at'?: string;
|
|
8221
|
+
readonly 'onboarding_started_at'?: string;
|
|
7921
8222
|
}
|
|
7922
8223
|
|
|
7923
8224
|
interface OrganizationOnboardingStateDeleted {
|
|
@@ -8072,6 +8373,12 @@ declare namespace io.flow.v0.models {
|
|
|
8072
8373
|
readonly 'id': string;
|
|
8073
8374
|
}
|
|
8074
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
|
+
|
|
8075
8382
|
interface OrganizationTransactionUpserted {
|
|
8076
8383
|
readonly 'discriminator': 'organization_transaction_upserted';
|
|
8077
8384
|
readonly 'event_id': string;
|
|
@@ -8120,12 +8427,30 @@ declare namespace io.flow.v0.models {
|
|
|
8120
8427
|
readonly 'amount': io.flow.v0.models.Money;
|
|
8121
8428
|
}
|
|
8122
8429
|
|
|
8123
|
-
interface
|
|
8124
|
-
readonly 'discriminator': '
|
|
8125
|
-
readonly '
|
|
8126
|
-
readonly '
|
|
8127
|
-
readonly '
|
|
8128
|
-
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[];
|
|
8129
8454
|
}
|
|
8130
8455
|
|
|
8131
8456
|
interface Packaging {
|
|
@@ -8803,6 +9128,10 @@ declare namespace io.flow.v0.models {
|
|
|
8803
9128
|
readonly 'url': string;
|
|
8804
9129
|
}
|
|
8805
9130
|
|
|
9131
|
+
interface PayoutReference {
|
|
9132
|
+
readonly 'id': string;
|
|
9133
|
+
}
|
|
9134
|
+
|
|
8806
9135
|
interface PayoutStatusFailed {
|
|
8807
9136
|
readonly 'code': 'failed';
|
|
8808
9137
|
readonly 'timestamp': string;
|
|
@@ -8821,6 +9150,7 @@ declare namespace io.flow.v0.models {
|
|
|
8821
9150
|
|
|
8822
9151
|
interface PayoutTransaction {
|
|
8823
9152
|
readonly 'id': string;
|
|
9153
|
+
readonly 'metadata'?: io.flow.v0.unions.TransactionMetadata;
|
|
8824
9154
|
readonly 'order'?: io.flow.v0.models.BillingChannelOrderSummary;
|
|
8825
9155
|
readonly 'payment_request'?: io.flow.v0.models.BillingChannelPaymentRequestReference;
|
|
8826
9156
|
readonly 'currency': string;
|
|
@@ -8930,6 +9260,12 @@ declare namespace io.flow.v0.models {
|
|
|
8930
9260
|
readonly 'total'?: io.flow.v0.models.LocalizedTotal;
|
|
8931
9261
|
readonly 'goods_supply'?: io.flow.v0.enums.GoodsSupply;
|
|
8932
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;
|
|
8933
9269
|
}
|
|
8934
9270
|
|
|
8935
9271
|
interface PostPaymentRedirectUrls {
|
|
@@ -9379,12 +9715,16 @@ declare namespace io.flow.v0.models {
|
|
|
9379
9715
|
interface Ratecard {
|
|
9380
9716
|
readonly 'id': string;
|
|
9381
9717
|
readonly 'number': string;
|
|
9718
|
+
readonly 'rate_level_key'?: string;
|
|
9382
9719
|
readonly 'direction': io.flow.v0.enums.Direction;
|
|
9383
9720
|
readonly 'effective_at': string;
|
|
9384
9721
|
readonly 'origination_zones': io.flow.v0.models.Zone[];
|
|
9385
9722
|
readonly 'service': io.flow.v0.models.RatecardServiceSummary;
|
|
9386
9723
|
readonly 'published_at'?: string;
|
|
9387
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;
|
|
9388
9728
|
}
|
|
9389
9729
|
|
|
9390
9730
|
interface RatecardCarrierSummary {
|
|
@@ -9463,6 +9803,10 @@ declare namespace io.flow.v0.models {
|
|
|
9463
9803
|
readonly 'dimensional_weight'?: io.flow.v0.models.Measurement;
|
|
9464
9804
|
readonly 'gravitational_weight'?: io.flow.v0.models.Measurement;
|
|
9465
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;
|
|
9466
9810
|
readonly 'line_items'?: io.flow.v0.models.LineItemForm[];
|
|
9467
9811
|
}
|
|
9468
9812
|
|
|
@@ -9472,7 +9816,12 @@ declare namespace io.flow.v0.models {
|
|
|
9472
9816
|
readonly 'origination_zones': io.flow.v0.models.Zone[];
|
|
9473
9817
|
readonly 'service': string;
|
|
9474
9818
|
readonly 'number'?: string;
|
|
9819
|
+
readonly 'rate_level_key'?: string;
|
|
9475
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>;
|
|
9476
9825
|
}
|
|
9477
9826
|
|
|
9478
9827
|
interface RatecardLane {
|
|
@@ -10403,6 +10752,9 @@ declare namespace io.flow.v0.models {
|
|
|
10403
10752
|
readonly 'carrier_tracking_number_url': string;
|
|
10404
10753
|
readonly 'cost_estimate_source'?: io.flow.v0.enums.CostEstimateSource;
|
|
10405
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;
|
|
10406
10758
|
readonly 'destination': io.flow.v0.models.ShippingAddress;
|
|
10407
10759
|
readonly 'flow_tracking_number': string;
|
|
10408
10760
|
readonly 'flow_tracking_number_url': string;
|
|
@@ -10414,6 +10766,7 @@ declare namespace io.flow.v0.models {
|
|
|
10414
10766
|
readonly 'return'?: io.flow.v0.models.ShippingLabelDocument;
|
|
10415
10767
|
readonly 'order'?: io.flow.v0.models.LabelOrderSummary;
|
|
10416
10768
|
readonly 'package'?: io.flow.v0.models.ShippingLabelPackage;
|
|
10769
|
+
readonly 'package_dimension_source'?: io.flow.v0.enums.PackageDimensionsSource;
|
|
10417
10770
|
readonly 'order_identifier'?: string;
|
|
10418
10771
|
readonly 'fulfillment_key'?: string;
|
|
10419
10772
|
readonly 'shipment_recipient': io.flow.v0.enums.ShipmentRecipient;
|
|
@@ -10433,9 +10786,16 @@ declare namespace io.flow.v0.models {
|
|
|
10433
10786
|
readonly 'required': boolean;
|
|
10434
10787
|
}
|
|
10435
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
|
+
|
|
10436
10795
|
interface ShippingLabelHopSummary {
|
|
10437
10796
|
readonly 'lane': io.flow.v0.models.ShippingLabelLaneSummary;
|
|
10438
10797
|
readonly 'cost': io.flow.v0.models.Money;
|
|
10798
|
+
readonly 'itemized_estimate'?: io.flow.v0.models.ShippingLabelHopCostItemizedEstimate;
|
|
10439
10799
|
}
|
|
10440
10800
|
|
|
10441
10801
|
interface ShippingLabelLaneSummary {
|
|
@@ -10445,6 +10805,7 @@ declare namespace io.flow.v0.models {
|
|
|
10445
10805
|
|
|
10446
10806
|
interface ShippingLabelPackage {
|
|
10447
10807
|
readonly 'dimensions': io.flow.v0.models.Dimension;
|
|
10808
|
+
readonly 'volumetric_weight'?: number;
|
|
10448
10809
|
readonly 'items': io.flow.v0.models.LineItemForm[];
|
|
10449
10810
|
readonly 'reference_number'?: string;
|
|
10450
10811
|
}
|
|
@@ -10452,6 +10813,11 @@ declare namespace io.flow.v0.models {
|
|
|
10452
10813
|
interface ShippingLabelRatecardSummary {
|
|
10453
10814
|
readonly 'id'?: string;
|
|
10454
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;
|
|
10455
10821
|
}
|
|
10456
10822
|
|
|
10457
10823
|
interface ShippingLabelSummary {
|
|
@@ -10749,7 +11115,6 @@ declare namespace io.flow.v0.models {
|
|
|
10749
11115
|
readonly 'status': io.flow.v0.enums.OnboardingApplicationStatus;
|
|
10750
11116
|
readonly 'company'?: io.flow.v0.models.MerchantInfo;
|
|
10751
11117
|
readonly 'indirect_tax'?: io.flow.v0.models.IndirectTax;
|
|
10752
|
-
readonly 'parent_company'?: io.flow.v0.models.MerchantInfo;
|
|
10753
11118
|
readonly 'beneficiary'?: string;
|
|
10754
11119
|
readonly 'ultimate_beneficiary_owner'?: io.flow.v0.models.UltimateBeneficiaryOwner;
|
|
10755
11120
|
readonly 'business_url'?: string;
|
|
@@ -10759,31 +11124,30 @@ declare namespace io.flow.v0.models {
|
|
|
10759
11124
|
readonly 'chargeback_percentage'?: number;
|
|
10760
11125
|
readonly 'bank_account_number'?: string;
|
|
10761
11126
|
readonly 'aba_routing_transit_number'?: string;
|
|
10762
|
-
readonly 'trade_sectors'?: io.flow.v0.enums.OnboardingTradeSector[];
|
|
10763
11127
|
readonly 'other_trade_sector'?: string;
|
|
10764
11128
|
readonly 'third_party_logistics_partners'?: io.flow.v0.models.ThirdPartyLogisticsPartner[];
|
|
11129
|
+
readonly 'center_contact'?: io.flow.v0.models.OperationsContact;
|
|
10765
11130
|
readonly 'average_order_weight'?: number;
|
|
10766
11131
|
readonly 'package_dimensions'?: io.flow.v0.models.Dimension[];
|
|
10767
11132
|
readonly 'monthly_average'?: io.flow.v0.models.MonthlyAverage;
|
|
10768
|
-
readonly 'dangerous_goods'?: boolean;
|
|
10769
11133
|
readonly 'default_country_of_origin'?: string;
|
|
10770
11134
|
readonly 'ratecard'?: io.flow.v0.models.RatecardReference;
|
|
10771
11135
|
readonly 'rate_card': string;
|
|
10772
11136
|
readonly 'created_at': string;
|
|
10773
11137
|
readonly 'activated_at'?: string;
|
|
10774
11138
|
readonly 'status_updated_at'?: string;
|
|
10775
|
-
readonly 'logistics_format'?: io.flow.v0.models.LogisticsFormat;
|
|
10776
11139
|
readonly 'shop'?: io.flow.v0.models.Shop;
|
|
10777
11140
|
readonly 'last_year_xborder_gmv'?: io.flow.v0.models.Money;
|
|
10778
11141
|
readonly 'last_month_xborder_gmv'?: io.flow.v0.models.Money;
|
|
10779
11142
|
readonly 'average_order_value'?: io.flow.v0.models.Money;
|
|
11143
|
+
readonly 'glbe_merchant_guid'?: string;
|
|
11144
|
+
readonly 'mcc_codes'?: number[];
|
|
10780
11145
|
}
|
|
10781
11146
|
|
|
10782
11147
|
interface ShopifyMerchantApplicationForm {
|
|
10783
11148
|
readonly 'discriminator': 'shopify_merchant_application_form';
|
|
10784
11149
|
readonly 'company'?: io.flow.v0.models.MerchantInfo;
|
|
10785
11150
|
readonly 'indirect_tax'?: io.flow.v0.models.IndirectTax;
|
|
10786
|
-
readonly 'parent_company'?: io.flow.v0.models.MerchantInfo;
|
|
10787
11151
|
readonly 'beneficiary'?: string;
|
|
10788
11152
|
readonly 'ultimate_beneficiary_owner'?: io.flow.v0.models.UltimateBeneficiaryOwner;
|
|
10789
11153
|
readonly 'business_url'?: string;
|
|
@@ -10793,23 +11157,22 @@ declare namespace io.flow.v0.models {
|
|
|
10793
11157
|
readonly 'chargeback_percentage'?: number;
|
|
10794
11158
|
readonly 'bank_account_number'?: string;
|
|
10795
11159
|
readonly 'aba_routing_transit_number'?: string;
|
|
10796
|
-
readonly 'trade_sectors'?: io.flow.v0.enums.OnboardingTradeSector[];
|
|
10797
11160
|
readonly 'other_trade_sector'?: string;
|
|
10798
11161
|
readonly 'third_party_logistics_partners'?: io.flow.v0.models.ThirdPartyLogisticsPartner[];
|
|
11162
|
+
readonly 'center_contact'?: io.flow.v0.models.OperationsContact;
|
|
10799
11163
|
readonly 'average_order_weight'?: number;
|
|
10800
11164
|
readonly 'package_dimensions'?: io.flow.v0.models.Dimension[];
|
|
10801
11165
|
readonly 'monthly_average_volume_amount'?: number;
|
|
10802
11166
|
readonly 'monthly_average_volume_currency'?: string;
|
|
10803
11167
|
readonly 'monthly_average_number_transactions'?: number;
|
|
10804
|
-
readonly 'dangerous_goods'?: boolean;
|
|
10805
11168
|
readonly 'default_country_of_origin'?: string;
|
|
10806
11169
|
readonly 'ratecard_id'?: string;
|
|
10807
11170
|
readonly 'rate_card': string;
|
|
10808
|
-
readonly 'logistics_format'?: io.flow.v0.models.LogisticsFormat;
|
|
10809
11171
|
readonly 'shop'?: io.flow.v0.models.Shop;
|
|
10810
11172
|
readonly 'last_year_xborder_gmv'?: io.flow.v0.models.Money;
|
|
10811
11173
|
readonly 'last_month_xborder_gmv'?: io.flow.v0.models.Money;
|
|
10812
11174
|
readonly 'average_order_value'?: io.flow.v0.models.Money;
|
|
11175
|
+
readonly 'mcc_codes'?: number[];
|
|
10813
11176
|
}
|
|
10814
11177
|
|
|
10815
11178
|
interface ShopifyMerchantApplicationPutForm {
|
|
@@ -11310,16 +11673,11 @@ declare namespace io.flow.v0.models {
|
|
|
11310
11673
|
readonly 'email_recipients'?: string[];
|
|
11311
11674
|
}
|
|
11312
11675
|
|
|
11313
|
-
interface Test {
|
|
11314
|
-
readonly 'id': string;
|
|
11315
|
-
}
|
|
11316
|
-
|
|
11317
11676
|
interface TestUpserted {
|
|
11318
11677
|
readonly 'discriminator': 'test_upserted';
|
|
11319
11678
|
readonly 'event_id': string;
|
|
11320
11679
|
readonly 'timestamp': string;
|
|
11321
|
-
readonly '
|
|
11322
|
-
readonly 'test': io.flow.v0.models.Test;
|
|
11680
|
+
readonly 'test': io.flow.ben.test.internal.v0.models.Test;
|
|
11323
11681
|
}
|
|
11324
11682
|
|
|
11325
11683
|
interface ThirdPartyLogisticsPartner {
|
|
@@ -11647,6 +12005,7 @@ declare namespace io.flow.v0.models {
|
|
|
11647
12005
|
interface Transaction {
|
|
11648
12006
|
readonly 'statement'?: io.flow.v0.models.BillingChannelStatementReference;
|
|
11649
12007
|
readonly 'id': string;
|
|
12008
|
+
readonly 'metadata'?: io.flow.v0.unions.TransactionMetadata;
|
|
11650
12009
|
readonly 'order'?: io.flow.v0.models.BillingChannelOrderSummary;
|
|
11651
12010
|
readonly 'payment_request'?: io.flow.v0.models.BillingChannelPaymentRequestReference;
|
|
11652
12011
|
readonly 'currency': string;
|
|
@@ -11669,11 +12028,20 @@ declare namespace io.flow.v0.models {
|
|
|
11669
12028
|
readonly 'network_details'?: io.flow.v0.models.TransactionNetworkDetailsCard;
|
|
11670
12029
|
}
|
|
11671
12030
|
|
|
12031
|
+
interface TransactionMetadataShippingLabel {
|
|
12032
|
+
readonly 'discriminator': 'shipping_label';
|
|
12033
|
+
readonly 'request_method'?: io.flow.v0.enums.LabelRequestMethod;
|
|
12034
|
+
}
|
|
12035
|
+
|
|
11672
12036
|
interface TransactionNetworkDetailsCard {
|
|
11673
12037
|
readonly 'network_transaction_id'?: string;
|
|
11674
12038
|
readonly 'network'?: io.flow.v0.enums.CardType;
|
|
11675
12039
|
}
|
|
11676
12040
|
|
|
12041
|
+
interface TransactionReference {
|
|
12042
|
+
readonly 'id': string;
|
|
12043
|
+
}
|
|
12044
|
+
|
|
11677
12045
|
interface TransactionUpserted {
|
|
11678
12046
|
readonly 'discriminator': 'transaction_upserted';
|
|
11679
12047
|
readonly 'event_id': string;
|
|
@@ -11948,7 +12316,7 @@ declare namespace io.flow.v0.unions {
|
|
|
11948
12316
|
type Document = (io.flow.v0.models.CatalogItemDocument | io.flow.v0.models.HarmonizationDocument);
|
|
11949
12317
|
type EmailNotificationData = (io.flow.v0.models.EmailNotificationDataRefund | io.flow.v0.models.EmailNotificationAbandonedOrder);
|
|
11950
12318
|
type Entity = (io.flow.v0.models.Company | io.flow.v0.models.Individual);
|
|
11951
|
-
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);
|
|
11952
12320
|
type ExpandableCard = (io.flow.v0.models.Card | io.flow.v0.models.CardReference | io.flow.v0.models.CardSummary);
|
|
11953
12321
|
type ExpandableCenter = (io.flow.v0.models.Center | io.flow.v0.models.CenterReference);
|
|
11954
12322
|
type ExpandableExperience = (io.flow.v0.models.Experience | io.flow.v0.models.ExperienceReference);
|
|
@@ -11974,7 +12342,7 @@ declare namespace io.flow.v0.unions {
|
|
|
11974
12342
|
type MerchantApplicationForm = (io.flow.v0.models.ShopifyMerchantApplicationForm);
|
|
11975
12343
|
type MerchantApplicationPutForm = (io.flow.v0.models.ShopifyMerchantApplicationPutForm);
|
|
11976
12344
|
type MerchantApplicationsSummary = (io.flow.v0.models.ShopifyMerchantApplicationsSummary);
|
|
11977
|
-
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);
|
|
11978
12346
|
type OnlineAuthorizationDetails = (io.flow.v0.models.CryptopayAuthorizationDetails | io.flow.v0.models.PaypalAuthorizationDetails | io.flow.v0.models.RedirectAuthorizationDetails | io.flow.v0.models.InlineAuthorizationDetails);
|
|
11979
12347
|
type OrderInformation = (io.flow.v0.models.OrderInformationFlow | io.flow.v0.models.OrderInformationDetails);
|
|
11980
12348
|
type OrderNumberGenerator = (io.flow.v0.models.OrderNumberGeneratorUuid | io.flow.v0.models.OrderNumberGeneratorHexadecimal | io.flow.v0.models.OrderNumberGeneratorPrefixSuffix);
|
|
@@ -12012,13 +12380,13 @@ declare namespace io.flow.v0.unions {
|
|
|
12012
12380
|
type QueryFilter = (io.flow.v0.models.QueryFilterStructured | io.flow.v0.models.QueryFilterUnstructured);
|
|
12013
12381
|
type QueryFilterForm = (io.flow.v0.models.QueryFilterStructuredForm | io.flow.v0.models.QueryFilterUnstructuredForm);
|
|
12014
12382
|
type RatecardEstimate = (io.flow.v0.models.RatecardEstimateV1 | io.flow.v0.models.RatecardEstimateV2 | io.flow.v0.models.RatecardEstimateV3 | io.flow.v0.models.RatecardEstimateV4);
|
|
12015
|
-
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);
|
|
12016
12384
|
type RepeatSchedule = (io.flow.v0.models.RepeatHourly | io.flow.v0.models.RepeatDaily | io.flow.v0.models.RepeatWeekly | io.flow.v0.models.RepeatMonthly);
|
|
12017
12385
|
type ReservationError = (io.flow.v0.models.NoInventoryReservationError | io.flow.v0.models.ExternalApiTimeoutReservationError | io.flow.v0.models.GenericReservationError);
|
|
12018
12386
|
type ReturnSource = (io.flow.v0.models.ReturnSourceFlow | io.flow.v0.models.ReturnSourceExternalVendor);
|
|
12019
12387
|
type SdkAdyenV3AuthenticationToken = (io.flow.v0.models.AdyenV3FingerprintToken | io.flow.v0.models.AdyenV3ChallengeToken);
|
|
12020
12388
|
type ServiceDescription = (io.flow.v0.models.ServiceSummary | io.flow.v0.models.ServiceUnknown);
|
|
12021
|
-
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);
|
|
12022
12390
|
type Session = (io.flow.v0.models.OrganizationSession);
|
|
12023
12391
|
type SessionAuthorization = (io.flow.v0.models.OrganizationSessionAuthorization);
|
|
12024
12392
|
type Settlement = (io.flow.v0.models.SettlementNoPayout | io.flow.v0.models.SettlementPayout);
|
|
@@ -12035,6 +12403,7 @@ declare namespace io.flow.v0.unions {
|
|
|
12035
12403
|
type Token = (io.flow.v0.models.ChannelToken | io.flow.v0.models.OrganizationToken | io.flow.v0.models.OrganizationTokenV2 | io.flow.v0.models.PartnerToken);
|
|
12036
12404
|
type TokenReference = (io.flow.v0.models.ChannelTokenReference | io.flow.v0.models.OrganizationTokenReference | io.flow.v0.models.OrganizationTokenV2Reference | io.flow.v0.models.PartnerTokenReference);
|
|
12037
12405
|
type TransactionDetails = (io.flow.v0.models.TransactionDetailsCard);
|
|
12406
|
+
type TransactionMetadata = (io.flow.v0.models.TransactionMetadataShippingLabel);
|
|
12038
12407
|
}
|
|
12039
12408
|
|
|
12040
12409
|
export const abandonedOrderPromotionStatus: PropTypes.Requireable<io.flow.v0.enums.AbandonedOrderPromotionStatus>;
|
|
@@ -12162,6 +12531,7 @@ export const orderType: PropTypes.Requireable<io.flow.v0.enums.OrderType>;
|
|
|
12162
12531
|
export const organizationPaymentMethodTag: PropTypes.Requireable<io.flow.v0.enums.OrganizationPaymentMethodTag>;
|
|
12163
12532
|
export const organizationStatus: PropTypes.Requireable<io.flow.v0.enums.OrganizationStatus>;
|
|
12164
12533
|
export const organizationType: PropTypes.Requireable<io.flow.v0.enums.OrganizationType>;
|
|
12534
|
+
export const packageDimensionsSource: PropTypes.Requireable<io.flow.v0.enums.PackageDimensionsSource>;
|
|
12165
12535
|
export const paymentActionType: PropTypes.Requireable<io.flow.v0.enums.PaymentActionType>;
|
|
12166
12536
|
export const paymentErrorCode: PropTypes.Requireable<io.flow.v0.enums.PaymentErrorCode>;
|
|
12167
12537
|
export const paymentFailureCode: PropTypes.Requireable<io.flow.v0.enums.PaymentFailureCode>;
|
|
@@ -12180,6 +12550,7 @@ export const payoutStatusFailureCode: PropTypes.Requireable<io.flow.v0.enums.Pay
|
|
|
12180
12550
|
export const permittedHttpMethod: PropTypes.Requireable<io.flow.v0.enums.PermittedHttpMethod>;
|
|
12181
12551
|
export const physicalDeliverySpecialSerivce: PropTypes.Requireable<io.flow.v0.enums.PhysicalDeliverySpecialSerivce>;
|
|
12182
12552
|
export const postalType: PropTypes.Requireable<io.flow.v0.enums.PostalType>;
|
|
12553
|
+
export const preferredServiceSelectionStrategy: PropTypes.Requireable<io.flow.v0.enums.PreferredServiceSelectionStrategy>;
|
|
12183
12554
|
export const priceAccuracy: PropTypes.Requireable<io.flow.v0.enums.PriceAccuracy>;
|
|
12184
12555
|
export const priceBookStatus: PropTypes.Requireable<io.flow.v0.enums.PriceBookStatus>;
|
|
12185
12556
|
export const priceDetailComponentKey: PropTypes.Requireable<io.flow.v0.enums.PriceDetailComponentKey>;
|
|
@@ -12211,6 +12582,7 @@ export const shopifyLocalizationMethod: PropTypes.Requireable<io.flow.v0.enums.S
|
|
|
12211
12582
|
export const shopifySyncCheck: PropTypes.Requireable<io.flow.v0.enums.ShopifySyncCheck>;
|
|
12212
12583
|
export const sortDirection: PropTypes.Requireable<io.flow.v0.enums.SortDirection>;
|
|
12213
12584
|
export const statementAttachmentType: PropTypes.Requireable<io.flow.v0.enums.StatementAttachmentType>;
|
|
12585
|
+
export const storedMethodUsageStep: PropTypes.Requireable<io.flow.v0.enums.StoredMethodUsageStep>;
|
|
12214
12586
|
export const strategy: PropTypes.Requireable<io.flow.v0.enums.Strategy>;
|
|
12215
12587
|
export const subcatalogItemStatus: PropTypes.Requireable<io.flow.v0.enums.SubcatalogItemStatus>;
|
|
12216
12588
|
export const surchargeResponsibleParty: PropTypes.Requireable<io.flow.v0.enums.SurchargeResponsibleParty>;
|
|
@@ -12233,9 +12605,13 @@ export const trackingNumberType: PropTypes.Requireable<io.flow.v0.enums.Tracking
|
|
|
12233
12605
|
export const trackingStatus: PropTypes.Requireable<io.flow.v0.enums.TrackingStatus>;
|
|
12234
12606
|
export const tradeAgreementName: PropTypes.Requireable<io.flow.v0.enums.TradeAgreementName>;
|
|
12235
12607
|
export const tradeAgreementStatus: PropTypes.Requireable<io.flow.v0.enums.TradeAgreementStatus>;
|
|
12608
|
+
export const transactionPayoutPendingReason: PropTypes.Requireable<io.flow.v0.enums.TransactionPayoutPendingReason>;
|
|
12236
12609
|
export const transactionSource: PropTypes.Requireable<io.flow.v0.enums.TransactionSource>;
|
|
12610
|
+
export const unitOfLength: PropTypes.Requireable<io.flow.v0.enums.UnitOfLength>;
|
|
12237
12611
|
export const unitOfMeasurement: PropTypes.Requireable<io.flow.v0.enums.UnitOfMeasurement>;
|
|
12238
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>;
|
|
12239
12615
|
export const updatePolicy: PropTypes.Requireable<io.flow.v0.enums.UpdatePolicy>;
|
|
12240
12616
|
export const updateType: PropTypes.Requireable<io.flow.v0.enums.UpdateType>;
|
|
12241
12617
|
export const userStatus: PropTypes.Requireable<io.flow.v0.enums.UserStatus>;
|
|
@@ -12464,6 +12840,7 @@ export const channelTokenReference: PropTypes.Requireable<io.flow.v0.models.Chan
|
|
|
12464
12840
|
export const channelTransaction: PropTypes.Requireable<io.flow.v0.models.ChannelTransaction>;
|
|
12465
12841
|
export const channelTransactionDeleted: PropTypes.Requireable<io.flow.v0.models.ChannelTransactionDeleted>;
|
|
12466
12842
|
export const channelTransactionDeletedV2: PropTypes.Requireable<io.flow.v0.models.ChannelTransactionDeletedV2>;
|
|
12843
|
+
export const channelTransactionPayout: PropTypes.Requireable<io.flow.v0.models.ChannelTransactionPayout>;
|
|
12467
12844
|
export const channelTransactionUpserted: PropTypes.Requireable<io.flow.v0.models.ChannelTransactionUpserted>;
|
|
12468
12845
|
export const channelUpserted: PropTypes.Requireable<io.flow.v0.models.ChannelUpserted>;
|
|
12469
12846
|
export const channelViesRegistration: PropTypes.Requireable<io.flow.v0.models.ChannelViesRegistration>;
|
|
@@ -12509,6 +12886,8 @@ export const contextReference: PropTypes.Requireable<io.flow.v0.models.ContextRe
|
|
|
12509
12886
|
export const country: PropTypes.Requireable<io.flow.v0.models.Country>;
|
|
12510
12887
|
export const countryAvailability: PropTypes.Requireable<io.flow.v0.models.CountryAvailability>;
|
|
12511
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>;
|
|
12512
12891
|
export const countryPicker: PropTypes.Requireable<io.flow.v0.models.CountryPicker>;
|
|
12513
12892
|
export const countryPickerForm: PropTypes.Requireable<io.flow.v0.models.CountryPickerForm>;
|
|
12514
12893
|
export const countryShippingPricing: PropTypes.Requireable<io.flow.v0.models.CountryShippingPricing>;
|
|
@@ -12562,6 +12941,7 @@ export const cvvResult: PropTypes.Requireable<io.flow.v0.models.CvvResult>;
|
|
|
12562
12941
|
export const datetimeRange: PropTypes.Requireable<io.flow.v0.models.DatetimeRange>;
|
|
12563
12942
|
export const datetimeWithTimezone: PropTypes.Requireable<io.flow.v0.models.DatetimeWithTimezone>;
|
|
12564
12943
|
export const ddpRatecardFee: PropTypes.Requireable<io.flow.v0.models.DdpRatecardFee>;
|
|
12944
|
+
export const deactivationPutForm: PropTypes.Requireable<io.flow.v0.models.DeactivationPutForm>;
|
|
12565
12945
|
export const defaultBankAccountForm: PropTypes.Requireable<io.flow.v0.models.DefaultBankAccountForm>;
|
|
12566
12946
|
export const deliveredDutySetting: PropTypes.Requireable<io.flow.v0.models.DeliveredDutySetting>;
|
|
12567
12947
|
export const deliveryItem: PropTypes.Requireable<io.flow.v0.models.DeliveryItem>;
|
|
@@ -12731,6 +13111,7 @@ export const fulfillmentItemAllocationDetails: PropTypes.Requireable<io.flow.v0.
|
|
|
12731
13111
|
export const fulfillmentItemQuantity: PropTypes.Requireable<io.flow.v0.models.FulfillmentItemQuantity>;
|
|
12732
13112
|
export const fulfillmentLineCancelForm: PropTypes.Requireable<io.flow.v0.models.FulfillmentLineCancelForm>;
|
|
12733
13113
|
export const fullyHarmonizedItemUpserted: PropTypes.Requireable<io.flow.v0.models.FullyHarmonizedItemUpserted>;
|
|
13114
|
+
export const generateLoad: PropTypes.Requireable<io.flow.v0.models.GenerateLoad>;
|
|
12734
13115
|
export const genericError: PropTypes.Requireable<io.flow.v0.models.GenericError>;
|
|
12735
13116
|
export const genericReservationError: PropTypes.Requireable<io.flow.v0.models.GenericReservationError>;
|
|
12736
13117
|
export const geoForm: PropTypes.Requireable<io.flow.v0.models.GeoForm>;
|
|
@@ -12909,6 +13290,7 @@ export const membershipVersion: PropTypes.Requireable<io.flow.v0.models.Membersh
|
|
|
12909
13290
|
export const merchantActivated: PropTypes.Requireable<io.flow.v0.models.MerchantActivated>;
|
|
12910
13291
|
export const merchantApplicationDeleted: PropTypes.Requireable<io.flow.v0.models.MerchantApplicationDeleted>;
|
|
12911
13292
|
export const merchantApplicationUpserted: PropTypes.Requireable<io.flow.v0.models.MerchantApplicationUpserted>;
|
|
13293
|
+
export const merchantDeactivated: PropTypes.Requireable<io.flow.v0.models.MerchantDeactivated>;
|
|
12912
13294
|
export const merchantGiftCardBalance: PropTypes.Requireable<io.flow.v0.models.MerchantGiftCardBalance>;
|
|
12913
13295
|
export const merchantGiftCardBalanceForm: PropTypes.Requireable<io.flow.v0.models.MerchantGiftCardBalanceForm>;
|
|
12914
13296
|
export const merchantGiftCardError: PropTypes.Requireable<io.flow.v0.models.MerchantGiftCardError>;
|
|
@@ -13085,13 +13467,17 @@ export const organizationTokenReference: PropTypes.Requireable<io.flow.v0.models
|
|
|
13085
13467
|
export const organizationTokenV2: PropTypes.Requireable<io.flow.v0.models.OrganizationTokenV2>;
|
|
13086
13468
|
export const organizationTokenV2Reference: PropTypes.Requireable<io.flow.v0.models.OrganizationTokenV2Reference>;
|
|
13087
13469
|
export const organizationTransactionDeleted: PropTypes.Requireable<io.flow.v0.models.OrganizationTransactionDeleted>;
|
|
13470
|
+
export const organizationTransactionPayout: PropTypes.Requireable<io.flow.v0.models.OrganizationTransactionPayout>;
|
|
13088
13471
|
export const organizationTransactionUpserted: PropTypes.Requireable<io.flow.v0.models.OrganizationTransactionUpserted>;
|
|
13089
13472
|
export const organizationUpserted: PropTypes.Requireable<io.flow.v0.models.OrganizationUpserted>;
|
|
13090
13473
|
export const organizationUpsertedV2: PropTypes.Requireable<io.flow.v0.models.OrganizationUpsertedV2>;
|
|
13091
13474
|
export const organizationVersion: PropTypes.Requireable<io.flow.v0.models.OrganizationVersion>;
|
|
13092
13475
|
export const originalPrices: PropTypes.Requireable<io.flow.v0.models.OriginalPrices>;
|
|
13093
13476
|
export const outboundCartonFee: PropTypes.Requireable<io.flow.v0.models.OutboundCartonFee>;
|
|
13094
|
-
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>;
|
|
13095
13481
|
export const packaging: PropTypes.Requireable<io.flow.v0.models.Packaging>;
|
|
13096
13482
|
export const parentTransactionSummary: PropTypes.Requireable<io.flow.v0.models.ParentTransactionSummary>;
|
|
13097
13483
|
export const partnerCenter: PropTypes.Requireable<io.flow.v0.models.PartnerCenter>;
|
|
@@ -13199,6 +13585,7 @@ export const paymentTax: PropTypes.Requireable<io.flow.v0.models.PaymentTax>;
|
|
|
13199
13585
|
export const paymentUpserted: PropTypes.Requireable<io.flow.v0.models.PaymentUpserted>;
|
|
13200
13586
|
export const paymentVersion: PropTypes.Requireable<io.flow.v0.models.PaymentVersion>;
|
|
13201
13587
|
export const payoutAttachment: PropTypes.Requireable<io.flow.v0.models.PayoutAttachment>;
|
|
13588
|
+
export const payoutReference: PropTypes.Requireable<io.flow.v0.models.PayoutReference>;
|
|
13202
13589
|
export const payoutStatusFailed: PropTypes.Requireable<io.flow.v0.models.PayoutStatusFailed>;
|
|
13203
13590
|
export const payoutStatusScheduled: PropTypes.Requireable<io.flow.v0.models.PayoutStatusScheduled>;
|
|
13204
13591
|
export const payoutStatusSent: PropTypes.Requireable<io.flow.v0.models.PayoutStatusSent>;
|
|
@@ -13216,6 +13603,7 @@ export const pfsInventoryCheckResponse: PropTypes.Requireable<io.flow.v0.models.
|
|
|
13216
13603
|
export const pfsInventoryCheckResponseItem: PropTypes.Requireable<io.flow.v0.models.PfsInventoryCheckResponseItem>;
|
|
13217
13604
|
export const pfsInventoryStatus: PropTypes.Requireable<io.flow.v0.models.PfsInventoryStatus>;
|
|
13218
13605
|
export const physicalDelivery: PropTypes.Requireable<io.flow.v0.models.PhysicalDelivery>;
|
|
13606
|
+
export const physicalDeliveryPreferredService: PropTypes.Requireable<io.flow.v0.models.PhysicalDeliveryPreferredService>;
|
|
13219
13607
|
export const postPaymentRedirectUrls: PropTypes.Requireable<io.flow.v0.models.PostPaymentRedirectUrls>;
|
|
13220
13608
|
export const price: PropTypes.Requireable<io.flow.v0.models.Price>;
|
|
13221
13609
|
export const priceBook: PropTypes.Requireable<io.flow.v0.models.PriceBook>;
|
|
@@ -13422,6 +13810,7 @@ export const shippingConfigurationUpserted: PropTypes.Requireable<io.flow.v0.mod
|
|
|
13422
13810
|
export const shippingConfigurationVersion: PropTypes.Requireable<io.flow.v0.models.ShippingConfigurationVersion>;
|
|
13423
13811
|
export const shippingLabel: PropTypes.Requireable<io.flow.v0.models.ShippingLabel>;
|
|
13424
13812
|
export const shippingLabelDocument: PropTypes.Requireable<io.flow.v0.models.ShippingLabelDocument>;
|
|
13813
|
+
export const shippingLabelHopCostItemizedEstimate: PropTypes.Requireable<io.flow.v0.models.ShippingLabelHopCostItemizedEstimate>;
|
|
13425
13814
|
export const shippingLabelHopSummary: PropTypes.Requireable<io.flow.v0.models.ShippingLabelHopSummary>;
|
|
13426
13815
|
export const shippingLabelLaneSummary: PropTypes.Requireable<io.flow.v0.models.ShippingLabelLaneSummary>;
|
|
13427
13816
|
export const shippingLabelPackage: PropTypes.Requireable<io.flow.v0.models.ShippingLabelPackage>;
|
|
@@ -13536,7 +13925,6 @@ export const taxDutyQuoteValues: PropTypes.Requireable<io.flow.v0.models.TaxDuty
|
|
|
13536
13925
|
export const taxRegistration: PropTypes.Requireable<io.flow.v0.models.TaxRegistration>;
|
|
13537
13926
|
export const taxRegistrationForm: PropTypes.Requireable<io.flow.v0.models.TaxRegistrationForm>;
|
|
13538
13927
|
export const taxReport: PropTypes.Requireable<io.flow.v0.models.TaxReport>;
|
|
13539
|
-
export const test: PropTypes.Requireable<io.flow.v0.models.Test>;
|
|
13540
13928
|
export const testUpserted: PropTypes.Requireable<io.flow.v0.models.TestUpserted>;
|
|
13541
13929
|
export const thirdPartyLogisticsPartner: PropTypes.Requireable<io.flow.v0.models.ThirdPartyLogisticsPartner>;
|
|
13542
13930
|
export const threeDSecure: PropTypes.Requireable<io.flow.v0.models.ThreeDSecure>;
|
|
@@ -13582,7 +13970,9 @@ export const tradeAgreementCertifier: PropTypes.Requireable<io.flow.v0.models.Tr
|
|
|
13582
13970
|
export const tradeAgreementDuty: PropTypes.Requireable<io.flow.v0.models.TradeAgreementDuty>;
|
|
13583
13971
|
export const transaction: PropTypes.Requireable<io.flow.v0.models.Transaction>;
|
|
13584
13972
|
export const transactionDetailsCard: PropTypes.Requireable<io.flow.v0.models.TransactionDetailsCard>;
|
|
13973
|
+
export const transactionMetadataShippingLabel: PropTypes.Requireable<io.flow.v0.models.TransactionMetadataShippingLabel>;
|
|
13585
13974
|
export const transactionNetworkDetailsCard: PropTypes.Requireable<io.flow.v0.models.TransactionNetworkDetailsCard>;
|
|
13975
|
+
export const transactionReference: PropTypes.Requireable<io.flow.v0.models.TransactionReference>;
|
|
13586
13976
|
export const transactionUpserted: PropTypes.Requireable<io.flow.v0.models.TransactionUpserted>;
|
|
13587
13977
|
export const transitEstimate: PropTypes.Requireable<io.flow.v0.models.TransitEstimate>;
|
|
13588
13978
|
export const transitWindow: PropTypes.Requireable<io.flow.v0.models.TransitWindow>;
|
|
@@ -13724,4 +14114,5 @@ export const tierRuleOutcome: PropTypes.Requireable<io.flow.v0.unions.TierRuleOu
|
|
|
13724
14114
|
export const tierRuleOutcomeForm: PropTypes.Requireable<io.flow.v0.unions.TierRuleOutcomeForm>;
|
|
13725
14115
|
export const token: PropTypes.Requireable<io.flow.v0.unions.Token>;
|
|
13726
14116
|
export const tokenReference: PropTypes.Requireable<io.flow.v0.unions.TokenReference>;
|
|
13727
|
-
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>;
|