@flowio/api-prop-types 10.16.53 → 10.16.55
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 +428 -35
- package/lib/api.js +1 -1
- package/package.json +2 -2
- package/src/api.d.ts +428 -35
- package/src/api.js +575 -89
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,15 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
837
920
|
readonly 'customer'?: string;
|
|
838
921
|
}
|
|
839
922
|
|
|
923
|
+
interface ThreeDSecureCharge {
|
|
924
|
+
readonly 'authenticated'?: boolean;
|
|
925
|
+
readonly 'authentication_flow'?: io.flow.stripe.v0.enums.ThreeDsAuthenticationFlow;
|
|
926
|
+
readonly 'result'?: io.flow.stripe.v0.enums.ThreeDsResult;
|
|
927
|
+
readonly 'result_reason'?: io.flow.stripe.v0.enums.ThreeDsResultReason;
|
|
928
|
+
readonly 'succeeded'?: boolean;
|
|
929
|
+
readonly 'version'?: string;
|
|
930
|
+
}
|
|
931
|
+
|
|
840
932
|
interface ThreeDSecureRedirect {
|
|
841
933
|
readonly 'type': io.flow.stripe.v0.enums.UseStripeSdkType;
|
|
842
934
|
readonly 'stripe_js': string;
|
|
@@ -863,6 +955,30 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
863
955
|
readonly 'amount'?: number;
|
|
864
956
|
readonly 'destination'?: string;
|
|
865
957
|
}
|
|
958
|
+
|
|
959
|
+
interface VisaCheckout {
|
|
960
|
+
readonly 'type': 'visa_checkout';
|
|
961
|
+
readonly 'visa_checkout': io.flow.stripe.v0.models.VisaCheckoutInformation;
|
|
962
|
+
readonly 'dynamic_last4'?: string;
|
|
963
|
+
}
|
|
964
|
+
|
|
965
|
+
interface VisaCheckoutInformation {
|
|
966
|
+
readonly 'billing_address'?: io.flow.stripe.v0.models.Address;
|
|
967
|
+
readonly 'email'?: string;
|
|
968
|
+
readonly 'name'?: string;
|
|
969
|
+
readonly 'shipping_address'?: io.flow.stripe.v0.models.Address;
|
|
970
|
+
}
|
|
971
|
+
}
|
|
972
|
+
|
|
973
|
+
declare namespace io.flow.stripe.v0.unions {
|
|
974
|
+
type CardWallet = (io.flow.stripe.v0.models.Masterpass | io.flow.stripe.v0.models.ApplePay | io.flow.stripe.v0.models.VisaCheckout);
|
|
975
|
+
type PaymentMethodDetails = (io.flow.stripe.v0.models.PaymentMethodDetailsCard | io.flow.stripe.v0.models.PaymentMethodDetailsKlarna);
|
|
976
|
+
}
|
|
977
|
+
|
|
978
|
+
declare namespace io.flow.units.v0.enums {
|
|
979
|
+
type UnitOfLength = 'millimeter' | 'centimeter' | 'inch' | 'foot' | 'meter';
|
|
980
|
+
type UnitOfVolume = 'cubic_inch' | 'cubic_meter';
|
|
981
|
+
type UnitOfWeight = 'gram' | 'kilogram' | 'ounce' | 'pound';
|
|
866
982
|
}
|
|
867
983
|
|
|
868
984
|
declare namespace io.flow.shopify.external.v0.enums {
|
|
@@ -956,7 +1072,7 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
956
1072
|
readonly 'starts_at': string;
|
|
957
1073
|
readonly 'ends_at'?: string;
|
|
958
1074
|
readonly 'prerequisite_subtotal_range'?: io.flow.shopify.external.v0.models.PriceRuleGreaterThanRange;
|
|
959
|
-
readonly '
|
|
1075
|
+
readonly 'prerequisite_shipping_price_range'?: io.flow.shopify.external.v0.models.PriceRuleLessThanRange;
|
|
960
1076
|
readonly 'usage_limit'?: number;
|
|
961
1077
|
readonly 'entitled_product_ids': number[];
|
|
962
1078
|
readonly 'entitled_variant_ids': number[];
|
|
@@ -966,7 +1082,7 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
966
1082
|
readonly 'once_per_customer': boolean;
|
|
967
1083
|
readonly 'target_selection': io.flow.shopify.external.v0.enums.PriceRuleTargetSelection;
|
|
968
1084
|
readonly 'customer_selection': io.flow.shopify.external.v0.enums.PriceRuleCustomerSelection;
|
|
969
|
-
readonly '
|
|
1085
|
+
readonly 'customer_segment_prerequisite_ids'?: number[];
|
|
970
1086
|
readonly 'prerequisite_customer_ids'?: number[];
|
|
971
1087
|
readonly 'prerequisite_quantity_range'?: io.flow.shopify.external.v0.models.PriceRuleGreaterThanRange;
|
|
972
1088
|
readonly 'prerequisite_product_ids'?: number[];
|
|
@@ -1769,6 +1885,33 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
1769
1885
|
}
|
|
1770
1886
|
}
|
|
1771
1887
|
|
|
1888
|
+
declare namespace io.flow.ben.test.internal.v0.models {
|
|
1889
|
+
interface GenerateLoadMultipleOrgs {
|
|
1890
|
+
readonly 'discriminator': 'generate_load_multiple_orgs';
|
|
1891
|
+
readonly 'organization_ids': string[];
|
|
1892
|
+
readonly 'num_events': number;
|
|
1893
|
+
}
|
|
1894
|
+
|
|
1895
|
+
interface GenerateLoadSingleOrg {
|
|
1896
|
+
readonly 'discriminator': 'generate_load_single_org';
|
|
1897
|
+
readonly 'organization_id': string;
|
|
1898
|
+
readonly 'num_events': number;
|
|
1899
|
+
}
|
|
1900
|
+
|
|
1901
|
+
interface Test {
|
|
1902
|
+
readonly 'id': string;
|
|
1903
|
+
readonly 'name': string;
|
|
1904
|
+
}
|
|
1905
|
+
|
|
1906
|
+
interface TestForm {
|
|
1907
|
+
readonly 'name': string;
|
|
1908
|
+
}
|
|
1909
|
+
}
|
|
1910
|
+
|
|
1911
|
+
declare namespace io.flow.ben.test.internal.v0.unions {
|
|
1912
|
+
type GenerateLoad = (io.flow.ben.test.internal.v0.models.GenerateLoadSingleOrg | io.flow.ben.test.internal.v0.models.GenerateLoadMultipleOrgs);
|
|
1913
|
+
}
|
|
1914
|
+
|
|
1772
1915
|
declare namespace io.flow.apple.pay.v0.enums {
|
|
1773
1916
|
type ApplePayContactField = 'email' | 'name' | 'phone' | 'postalAddress' | 'phoneticName';
|
|
1774
1917
|
type ApplePayLineItemType = 'final' | 'pending';
|
|
@@ -1837,6 +1980,119 @@ declare namespace io.flow.apple.pay.v0.models {
|
|
|
1837
1980
|
}
|
|
1838
1981
|
}
|
|
1839
1982
|
|
|
1983
|
+
declare namespace io.flow.error.v0.enums {
|
|
1984
|
+
type GenericErrorCode = 'generic_error' | 'client_error' | 'server_error';
|
|
1985
|
+
}
|
|
1986
|
+
|
|
1987
|
+
declare namespace io.flow.error.v0.models {
|
|
1988
|
+
interface GenericError {
|
|
1989
|
+
readonly 'code': io.flow.error.v0.enums.GenericErrorCode;
|
|
1990
|
+
readonly 'messages': string[];
|
|
1991
|
+
}
|
|
1992
|
+
}
|
|
1993
|
+
|
|
1994
|
+
declare namespace io.flow.billing.RESERVED_WORD_true.up.v0.enums {
|
|
1995
|
+
type TrueUpSurchargeType = 'fuel' | 'remote_area' | 'oversize' | 'duties_paid' | 'emergency' | 'peak';
|
|
1996
|
+
type WeightSelection = 'dead' | 'dimensional';
|
|
1997
|
+
}
|
|
1998
|
+
|
|
1999
|
+
declare namespace io.flow.billing.RESERVED_WORD_true.up.v0.models {
|
|
2000
|
+
interface LabelBase {
|
|
2001
|
+
readonly 'amount': number;
|
|
2002
|
+
readonly 'weight': number;
|
|
2003
|
+
}
|
|
2004
|
+
|
|
2005
|
+
interface LabelDestination {
|
|
2006
|
+
readonly 'country': string;
|
|
2007
|
+
}
|
|
2008
|
+
|
|
2009
|
+
interface LabelInvoiceRequest {
|
|
2010
|
+
readonly 'id': string;
|
|
2011
|
+
readonly 'label': io.flow.billing.RESERVED_WORD_true.up.v0.models.TrueUpLabelSummary;
|
|
2012
|
+
readonly 'units': io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelUnits;
|
|
2013
|
+
readonly 'base': io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelBase;
|
|
2014
|
+
readonly 'surcharges': io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelSurcharge[];
|
|
2015
|
+
readonly 'total': number;
|
|
2016
|
+
readonly 'destination': io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelDestination;
|
|
2017
|
+
readonly 'metadata': io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelMetadata;
|
|
2018
|
+
}
|
|
2019
|
+
|
|
2020
|
+
interface LabelMetadata {
|
|
2021
|
+
readonly 'ratecard': io.flow.billing.RESERVED_WORD_true.up.v0.models.MetadataRatecard;
|
|
2022
|
+
readonly 'weights': io.flow.billing.RESERVED_WORD_true.up.v0.models.MetadataWeights;
|
|
2023
|
+
}
|
|
2024
|
+
|
|
2025
|
+
interface LabelSurcharge {
|
|
2026
|
+
readonly 'amount': number;
|
|
2027
|
+
readonly 'type': io.flow.billing.RESERVED_WORD_true.up.v0.enums.TrueUpSurchargeType;
|
|
2028
|
+
readonly 'detail': io.flow.billing.RESERVED_WORD_true.up.v0.unions.LabelSurchargeDetail;
|
|
2029
|
+
}
|
|
2030
|
+
|
|
2031
|
+
interface LabelSurchargeDetailFlat {
|
|
2032
|
+
readonly 'discriminator': 'flat';
|
|
2033
|
+
readonly 'placeholder'?: string;
|
|
2034
|
+
}
|
|
2035
|
+
|
|
2036
|
+
interface LabelSurchargeDetailPerWeightUnit {
|
|
2037
|
+
readonly 'discriminator': 'per_weight_unit';
|
|
2038
|
+
readonly 'fee': number;
|
|
2039
|
+
}
|
|
2040
|
+
|
|
2041
|
+
interface LabelSurchargeDetailPercentage {
|
|
2042
|
+
readonly 'discriminator': 'percentage';
|
|
2043
|
+
readonly 'percentage': number;
|
|
2044
|
+
}
|
|
2045
|
+
|
|
2046
|
+
interface LabelUnits {
|
|
2047
|
+
readonly 'currency': string;
|
|
2048
|
+
readonly 'weight': io.flow.units.v0.enums.UnitOfWeight;
|
|
2049
|
+
readonly 'length': io.flow.units.v0.enums.UnitOfLength;
|
|
2050
|
+
}
|
|
2051
|
+
|
|
2052
|
+
interface MetadataProposition {
|
|
2053
|
+
readonly 'shipping_method': io.flow.billing.RESERVED_WORD_true.up.v0.models.ShippingMethodReference;
|
|
2054
|
+
readonly 'name': string;
|
|
2055
|
+
}
|
|
2056
|
+
|
|
2057
|
+
interface MetadataRatecard {
|
|
2058
|
+
readonly 'id': string;
|
|
2059
|
+
readonly 'proposition': io.flow.billing.RESERVED_WORD_true.up.v0.models.MetadataProposition;
|
|
2060
|
+
}
|
|
2061
|
+
|
|
2062
|
+
interface MetadataWeights {
|
|
2063
|
+
readonly 'selected': io.flow.billing.RESERVED_WORD_true.up.v0.enums.WeightSelection;
|
|
2064
|
+
readonly 'dead'?: io.flow.billing.RESERVED_WORD_true.up.v0.models.WeightsDead;
|
|
2065
|
+
readonly 'dimensional'?: io.flow.billing.RESERVED_WORD_true.up.v0.models.WeightsDimensional;
|
|
2066
|
+
}
|
|
2067
|
+
|
|
2068
|
+
interface ShippingMethodReference {
|
|
2069
|
+
readonly 'id': string;
|
|
2070
|
+
}
|
|
2071
|
+
|
|
2072
|
+
interface TrueUpLabelSummary {
|
|
2073
|
+
readonly 'id': string;
|
|
2074
|
+
readonly 'carrier_service_id': string;
|
|
2075
|
+
readonly 'carrier_tracking_number': string;
|
|
2076
|
+
readonly 'flow_tracking_number': string;
|
|
2077
|
+
readonly 'created_at': string;
|
|
2078
|
+
}
|
|
2079
|
+
|
|
2080
|
+
interface WeightsDead {
|
|
2081
|
+
readonly 'weight': number;
|
|
2082
|
+
}
|
|
2083
|
+
|
|
2084
|
+
interface WeightsDimensional {
|
|
2085
|
+
readonly 'weight': number;
|
|
2086
|
+
readonly 'length': number;
|
|
2087
|
+
readonly 'width': number;
|
|
2088
|
+
readonly 'height': number;
|
|
2089
|
+
}
|
|
2090
|
+
}
|
|
2091
|
+
|
|
2092
|
+
declare namespace io.flow.billing.RESERVED_WORD_true.up.v0.unions {
|
|
2093
|
+
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);
|
|
2094
|
+
}
|
|
2095
|
+
|
|
1840
2096
|
declare namespace io.flow.v0.enums {
|
|
1841
2097
|
type AbandonedOrderPromotionStatus = 'active' | 'inactive';
|
|
1842
2098
|
type AbandonedOrderSettingStatus = 'active' | 'inactive';
|
|
@@ -1892,7 +2148,7 @@ declare namespace io.flow.v0.enums {
|
|
|
1892
2148
|
type EconomicTitleLocation = 'high_seas' | 'origination' | 'destination';
|
|
1893
2149
|
type EntityIdentifierType = 'ioss' | 'voec';
|
|
1894
2150
|
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';
|
|
2151
|
+
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
2152
|
type ExceptionType = 'open' | 'closed';
|
|
1897
2153
|
type ExclusionRuleState = 'current' | 'deleting' | 'updating';
|
|
1898
2154
|
type ExperienceCloneStatus = 'pending' | 'updating' | 'completed' | 'failed';
|
|
@@ -1963,6 +2219,7 @@ declare namespace io.flow.v0.enums {
|
|
|
1963
2219
|
type OrganizationPaymentMethodTag = 'deny';
|
|
1964
2220
|
type OrganizationStatus = 'active' | 'inactive' | 'deactivated' | 'provisioned';
|
|
1965
2221
|
type OrganizationType = 'standalone' | 'channel';
|
|
2222
|
+
type PackageDimensionsSource = 'provided' | 'dimensions_estimated';
|
|
1966
2223
|
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
2224
|
type PaymentErrorCode = 'duplicate' | 'invalid_amount' | 'invalid_currency' | 'invalid_method' | 'invalid_order' | 'invalid_customer' | 'invalid_destination' | 'unknown';
|
|
1968
2225
|
type PaymentFailureCode = 'action_expired' | 'action_cancelled' | 'action_failed' | 'authorization_declined' | 'not_supported' | 'fraudulent' | 'error' | 'payment_checks_declined';
|
|
@@ -1971,7 +2228,7 @@ declare namespace io.flow.v0.enums {
|
|
|
1971
2228
|
type PaymentMethodRuleContentKey = 'description';
|
|
1972
2229
|
type PaymentMethodType = 'card' | 'online' | 'offline';
|
|
1973
2230
|
type PaymentRequestReviewCheckStatus = 'passed' | 'failed';
|
|
1974
|
-
type PaymentRequestReviewCheckType = 'restricted_party_screening' | 'fraud_suspicious_behavior' | 'fraud_suspicious_past_activity' | 'fraud_risky_velocity' | 'fraud_previous_chargebacks' | 'order_restricted_goods' | 'order_unsupported_destination' | 'order_missing_information' | 'order_domestic';
|
|
2231
|
+
type PaymentRequestReviewCheckType = 'restricted_party_screening' | 'fraud_suspicious_behavior' | 'fraud_suspicious_past_activity' | 'fraud_risky_velocity' | 'fraud_previous_chargebacks' | 'order_restricted_goods' | 'order_unsupported_destination' | 'order_missing_information' | 'order_domestic' | 'order_mismatched_currencies';
|
|
1975
2232
|
type PaymentRequestReviewStatus = 'pending' | 'approved' | 'rejected';
|
|
1976
2233
|
type PaymentSourceConfirmationActionType = 'cvv' | 'billing_address' | 'number';
|
|
1977
2234
|
type PaymentStatus = 'requires_payment_method' | 'requires_action' | 'processing' | 'cancelled' | 'expired' | 'authorized' | 'reversed' | 'captured' | 'refunded' | 'in_dispute' | 'charged_back';
|
|
@@ -1981,6 +2238,7 @@ declare namespace io.flow.v0.enums {
|
|
|
1981
2238
|
type PermittedHttpMethod = 'GET' | 'POST' | 'PUT' | 'DELETE' | 'PATCH';
|
|
1982
2239
|
type PhysicalDeliverySpecialSerivce = 'cold_storage' | 'hazardous' | 'perishable';
|
|
1983
2240
|
type PostalType = 'eircode' | 'pin' | 'postal' | 'zip';
|
|
2241
|
+
type PreferredServiceSelectionStrategy = 'calculated_rate' | 'flat_rate' | 'custom_rate';
|
|
1984
2242
|
type PriceAccuracy = 'calculated' | 'estimated_from_partial_destination';
|
|
1985
2243
|
type PriceBookStatus = 'draft' | 'published' | 'archived';
|
|
1986
2244
|
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 +2270,7 @@ declare namespace io.flow.v0.enums {
|
|
|
2012
2270
|
type ShopifySyncCheck = 'localized_variants' | 'flow_variant_metafields';
|
|
2013
2271
|
type SortDirection = 'ascending' | 'descending';
|
|
2014
2272
|
type StatementAttachmentType = 'csv';
|
|
2273
|
+
type StoredMethodUsageStep = 'initial' | 'subsequent';
|
|
2015
2274
|
type Strategy = 'range' | 'from' | 'to';
|
|
2016
2275
|
type SubcatalogItemStatus = 'excluded' | 'included' | 'restricted';
|
|
2017
2276
|
type SurchargeResponsibleParty = 'organization' | 'customer';
|
|
@@ -2034,15 +2293,19 @@ declare namespace io.flow.v0.enums {
|
|
|
2034
2293
|
type TrackingStatus = 'label_created' | 'pending' | 'info_received' | 'picked_up' | 'in_transit' | 'out_for_delivery' | 'attempt_fail' | 'delivered' | 'exception' | 'returned' | 'expired';
|
|
2035
2294
|
type TradeAgreementName = 'USMCA' | 'T-MEC' | 'CUSMA' | 'TCA';
|
|
2036
2295
|
type TradeAgreementStatus = 'supported' | 'not_supported';
|
|
2296
|
+
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
2297
|
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';
|
|
2298
|
+
type UnitOfLength = 'millimeter' | 'centimeter' | 'inch' | 'foot' | 'meter';
|
|
2038
2299
|
type UnitOfMeasurement = 'millimeter' | 'centimeter' | 'inch' | 'foot' | 'cubic_inch' | 'cubic_meter' | 'gram' | 'kilogram' | 'meter' | 'ounce' | 'pound';
|
|
2039
2300
|
type UnitOfTime = 'year' | 'month' | 'week' | 'day' | 'hour' | 'minute';
|
|
2301
|
+
type UnitOfVolume = 'cubic_inch' | 'cubic_meter';
|
|
2302
|
+
type UnitOfWeight = 'gram' | 'kilogram' | 'ounce' | 'pound';
|
|
2040
2303
|
type UpdatePolicy = 'auto' | 'queue' | 'discard';
|
|
2041
2304
|
type UpdateType = 'change' | 'set';
|
|
2042
2305
|
type UserStatus = 'pending' | 'active' | 'inactive';
|
|
2043
2306
|
type ValueAddedService = 'Hazardous Material';
|
|
2044
2307
|
type Visibility = 'public' | 'private';
|
|
2045
|
-
type WebhookStatus = 'pending' | 'success' | 'failure';
|
|
2308
|
+
type WebhookStatus = 'pending' | 'success' | 'failure' | 'ignored';
|
|
2046
2309
|
type WithholdingDeductionType = 'tax' | 'duty' | 'freight' | 'insurance';
|
|
2047
2310
|
type ZeroAmountIndicator = 'zero' | 'free';
|
|
2048
2311
|
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 +3346,8 @@ declare namespace io.flow.v0.models {
|
|
|
3083
3346
|
readonly 'expires_at'?: string;
|
|
3084
3347
|
readonly 'base'?: io.flow.v0.models.Money;
|
|
3085
3348
|
readonly 'processor'?: io.flow.v0.unions.ExpandablePaymentProcessor;
|
|
3349
|
+
readonly 'stored_method_usage_step'?: io.flow.v0.enums.StoredMethodUsageStep;
|
|
3350
|
+
readonly 'authorized_at'?: string;
|
|
3086
3351
|
}
|
|
3087
3352
|
|
|
3088
3353
|
interface CardAuthorizationDeletedV2 {
|
|
@@ -3643,6 +3908,7 @@ declare namespace io.flow.v0.models {
|
|
|
3643
3908
|
interface ChannelTransaction {
|
|
3644
3909
|
readonly 'statement'?: io.flow.v0.models.BillingChannelStatementReference;
|
|
3645
3910
|
readonly 'id': string;
|
|
3911
|
+
readonly 'metadata'?: io.flow.v0.unions.TransactionMetadata;
|
|
3646
3912
|
readonly 'order'?: io.flow.v0.models.BillingChannelOrderSummary;
|
|
3647
3913
|
readonly 'payment_request'?: io.flow.v0.models.BillingChannelPaymentRequestReference;
|
|
3648
3914
|
readonly 'currency': string;
|
|
@@ -3674,6 +3940,12 @@ declare namespace io.flow.v0.models {
|
|
|
3674
3940
|
readonly 'id': string;
|
|
3675
3941
|
}
|
|
3676
3942
|
|
|
3943
|
+
interface ChannelTransactionPayout {
|
|
3944
|
+
readonly 'transaction': io.flow.v0.models.TransactionReference;
|
|
3945
|
+
readonly 'waiting_for'?: io.flow.v0.enums.TransactionPayoutPendingReason;
|
|
3946
|
+
readonly 'payout'?: io.flow.v0.models.PayoutReference;
|
|
3947
|
+
}
|
|
3948
|
+
|
|
3677
3949
|
interface ChannelTransactionUpserted {
|
|
3678
3950
|
readonly 'discriminator': 'channel_transaction_upserted';
|
|
3679
3951
|
readonly 'event_id': string;
|
|
@@ -3999,6 +4271,14 @@ declare namespace io.flow.v0.models {
|
|
|
3999
4271
|
readonly 'language': string;
|
|
4000
4272
|
}
|
|
4001
4273
|
|
|
4274
|
+
interface CountryOfOrigin {
|
|
4275
|
+
readonly 'country': io.flow.v0.models.Country;
|
|
4276
|
+
}
|
|
4277
|
+
|
|
4278
|
+
interface CountryOfOriginForm {
|
|
4279
|
+
readonly 'country': string;
|
|
4280
|
+
}
|
|
4281
|
+
|
|
4002
4282
|
interface CountryPicker {
|
|
4003
4283
|
readonly 'id': string;
|
|
4004
4284
|
readonly 'source': io.flow.v0.enums.CountryPickerSource;
|
|
@@ -4346,6 +4626,10 @@ declare namespace io.flow.v0.models {
|
|
|
4346
4626
|
readonly 'amount': number;
|
|
4347
4627
|
}
|
|
4348
4628
|
|
|
4629
|
+
interface DeactivationPutForm {
|
|
4630
|
+
readonly 'reason': string;
|
|
4631
|
+
}
|
|
4632
|
+
|
|
4349
4633
|
interface DefaultBankAccountForm {
|
|
4350
4634
|
readonly 'bank_account_id': string;
|
|
4351
4635
|
}
|
|
@@ -4495,6 +4779,7 @@ declare namespace io.flow.v0.models {
|
|
|
4495
4779
|
readonly 'order_number': string;
|
|
4496
4780
|
readonly 'service'?: string;
|
|
4497
4781
|
readonly 'shipment_recipient'?: io.flow.v0.enums.ShipmentRecipient;
|
|
4782
|
+
readonly 'package_dimensions_source'?: io.flow.v0.enums.PackageDimensionsSource;
|
|
4498
4783
|
}
|
|
4499
4784
|
|
|
4500
4785
|
interface DetailedShippingNotificationForm {
|
|
@@ -5505,6 +5790,15 @@ declare namespace io.flow.v0.models {
|
|
|
5505
5790
|
readonly 'landed_costs': io.flow.v0.models.LaneLandedCost[];
|
|
5506
5791
|
}
|
|
5507
5792
|
|
|
5793
|
+
interface GenerateLoad {
|
|
5794
|
+
readonly 'discriminator': 'generate_load';
|
|
5795
|
+
readonly 'event_id': string;
|
|
5796
|
+
readonly 'timestamp': string;
|
|
5797
|
+
readonly 'organization': string;
|
|
5798
|
+
readonly 'test_name': string;
|
|
5799
|
+
readonly 'num_tests': number;
|
|
5800
|
+
}
|
|
5801
|
+
|
|
5508
5802
|
interface GenericError {
|
|
5509
5803
|
readonly 'code': io.flow.v0.enums.GenericErrorCode;
|
|
5510
5804
|
readonly 'messages': string[];
|
|
@@ -6312,6 +6606,8 @@ declare namespace io.flow.v0.models {
|
|
|
6312
6606
|
interface KnowYourBusinessUsa {
|
|
6313
6607
|
readonly 'discriminator': 'know_your_business_usa';
|
|
6314
6608
|
readonly 'id': string;
|
|
6609
|
+
readonly 'organization_id': string;
|
|
6610
|
+
readonly 'shop'?: io.flow.v0.models.Shop;
|
|
6315
6611
|
readonly 'primary_entity': io.flow.v0.unions.Entity;
|
|
6316
6612
|
readonly 'parent_company'?: io.flow.v0.models.Company;
|
|
6317
6613
|
readonly 'ultimate_parent_company'?: io.flow.v0.models.Company;
|
|
@@ -6381,6 +6677,7 @@ declare namespace io.flow.v0.models {
|
|
|
6381
6677
|
readonly 'label'?: io.flow.v0.models.LabelReference;
|
|
6382
6678
|
readonly 'in_transit': io.flow.v0.models.LabelTrackingSummaryUpdate;
|
|
6383
6679
|
readonly 'delivered'?: io.flow.v0.models.LabelTrackingSummaryUpdate;
|
|
6680
|
+
readonly 'rejected'?: io.flow.v0.models.LabelTrackingSummaryUpdate;
|
|
6384
6681
|
}
|
|
6385
6682
|
|
|
6386
6683
|
interface LabelTrackingSummaryUpdate {
|
|
@@ -6791,6 +7088,11 @@ declare namespace io.flow.v0.models {
|
|
|
6791
7088
|
readonly 'merchant_application': io.flow.v0.unions.MerchantApplication;
|
|
6792
7089
|
}
|
|
6793
7090
|
|
|
7091
|
+
interface MerchantDeactivated {
|
|
7092
|
+
readonly 'discriminator': 'merchant_deactivated';
|
|
7093
|
+
readonly 'reason': string;
|
|
7094
|
+
}
|
|
7095
|
+
|
|
6794
7096
|
interface MerchantGiftCardBalance {
|
|
6795
7097
|
readonly 'amount': number;
|
|
6796
7098
|
readonly 'currency': string;
|
|
@@ -7013,6 +7315,7 @@ declare namespace io.flow.v0.models {
|
|
|
7013
7315
|
readonly 'base'?: io.flow.v0.models.Money;
|
|
7014
7316
|
readonly 'processor'?: io.flow.v0.unions.ExpandablePaymentProcessor;
|
|
7015
7317
|
readonly 'confirmation_details'?: io.flow.v0.unions.ConfirmationDetails;
|
|
7318
|
+
readonly 'authorized_at'?: string;
|
|
7016
7319
|
}
|
|
7017
7320
|
|
|
7018
7321
|
interface OnlineAuthorizationDeletedV2 {
|
|
@@ -7039,7 +7342,6 @@ declare namespace io.flow.v0.models {
|
|
|
7039
7342
|
}
|
|
7040
7343
|
|
|
7041
7344
|
interface OperationsContact {
|
|
7042
|
-
readonly 'full_name'?: string;
|
|
7043
7345
|
readonly 'company'?: string;
|
|
7044
7346
|
readonly 'email'?: string;
|
|
7045
7347
|
readonly 'phone'?: string;
|
|
@@ -7919,6 +8221,7 @@ declare namespace io.flow.v0.models {
|
|
|
7919
8221
|
readonly 'time_blocked'?: number;
|
|
7920
8222
|
readonly 'blocked_since'?: string;
|
|
7921
8223
|
readonly 'completed_at'?: string;
|
|
8224
|
+
readonly 'onboarding_started_at'?: string;
|
|
7922
8225
|
}
|
|
7923
8226
|
|
|
7924
8227
|
interface OrganizationOnboardingStateDeleted {
|
|
@@ -8073,6 +8376,12 @@ declare namespace io.flow.v0.models {
|
|
|
8073
8376
|
readonly 'id': string;
|
|
8074
8377
|
}
|
|
8075
8378
|
|
|
8379
|
+
interface OrganizationTransactionPayout {
|
|
8380
|
+
readonly 'transaction': io.flow.v0.models.TransactionReference;
|
|
8381
|
+
readonly 'waiting_for'?: io.flow.v0.enums.TransactionPayoutPendingReason;
|
|
8382
|
+
readonly 'payout'?: io.flow.v0.models.PayoutReference;
|
|
8383
|
+
}
|
|
8384
|
+
|
|
8076
8385
|
interface OrganizationTransactionUpserted {
|
|
8077
8386
|
readonly 'discriminator': 'organization_transaction_upserted';
|
|
8078
8387
|
readonly 'event_id': string;
|
|
@@ -8121,12 +8430,30 @@ declare namespace io.flow.v0.models {
|
|
|
8121
8430
|
readonly 'amount': io.flow.v0.models.Money;
|
|
8122
8431
|
}
|
|
8123
8432
|
|
|
8124
|
-
interface
|
|
8125
|
-
readonly 'discriminator': '
|
|
8126
|
-
readonly '
|
|
8127
|
-
readonly '
|
|
8128
|
-
readonly '
|
|
8129
|
-
readonly '
|
|
8433
|
+
interface OversizePieceSurchargeRatecardFee {
|
|
8434
|
+
readonly 'discriminator': 'oversize_piece_surcharge_ratecard_fee';
|
|
8435
|
+
readonly 'dimensional_threshold'?: number;
|
|
8436
|
+
readonly 'dimensional_unit'?: io.flow.v0.enums.UnitOfMeasurement;
|
|
8437
|
+
readonly 'weight_threshold'?: number;
|
|
8438
|
+
readonly 'weight_unit'?: io.flow.v0.enums.UnitOfMeasurement;
|
|
8439
|
+
readonly 'amount': io.flow.v0.models.Money;
|
|
8440
|
+
}
|
|
8441
|
+
|
|
8442
|
+
interface OversizePieceSurchargeServiceFee {
|
|
8443
|
+
readonly 'discriminator': 'oversize_piece_surcharge_service_fee';
|
|
8444
|
+
readonly 'dimensional_threshold'?: number;
|
|
8445
|
+
readonly 'dimensional_unit'?: io.flow.v0.enums.UnitOfMeasurement;
|
|
8446
|
+
readonly 'weight_threshold'?: number;
|
|
8447
|
+
readonly 'weight_unit'?: io.flow.v0.enums.UnitOfMeasurement;
|
|
8448
|
+
readonly 'amount': io.flow.v0.models.Money;
|
|
8449
|
+
}
|
|
8450
|
+
|
|
8451
|
+
interface PackageDimensions {
|
|
8452
|
+
readonly 'dimensions': io.flow.v0.models.Dimension[];
|
|
8453
|
+
}
|
|
8454
|
+
|
|
8455
|
+
interface PackageDimensionsForm {
|
|
8456
|
+
readonly 'dimensions': io.flow.v0.models.Dimension[];
|
|
8130
8457
|
}
|
|
8131
8458
|
|
|
8132
8459
|
interface Packaging {
|
|
@@ -8804,6 +9131,10 @@ declare namespace io.flow.v0.models {
|
|
|
8804
9131
|
readonly 'url': string;
|
|
8805
9132
|
}
|
|
8806
9133
|
|
|
9134
|
+
interface PayoutReference {
|
|
9135
|
+
readonly 'id': string;
|
|
9136
|
+
}
|
|
9137
|
+
|
|
8807
9138
|
interface PayoutStatusFailed {
|
|
8808
9139
|
readonly 'code': 'failed';
|
|
8809
9140
|
readonly 'timestamp': string;
|
|
@@ -8822,6 +9153,7 @@ declare namespace io.flow.v0.models {
|
|
|
8822
9153
|
|
|
8823
9154
|
interface PayoutTransaction {
|
|
8824
9155
|
readonly 'id': string;
|
|
9156
|
+
readonly 'metadata'?: io.flow.v0.unions.TransactionMetadata;
|
|
8825
9157
|
readonly 'order'?: io.flow.v0.models.BillingChannelOrderSummary;
|
|
8826
9158
|
readonly 'payment_request'?: io.flow.v0.models.BillingChannelPaymentRequestReference;
|
|
8827
9159
|
readonly 'currency': string;
|
|
@@ -8931,6 +9263,12 @@ declare namespace io.flow.v0.models {
|
|
|
8931
9263
|
readonly 'total'?: io.flow.v0.models.LocalizedTotal;
|
|
8932
9264
|
readonly 'goods_supply'?: io.flow.v0.enums.GoodsSupply;
|
|
8933
9265
|
readonly 'merchant_of_record_flow_entity'?: io.flow.v0.enums.FlowEntity;
|
|
9266
|
+
readonly 'preferred_service'?: io.flow.v0.models.PhysicalDeliveryPreferredService;
|
|
9267
|
+
}
|
|
9268
|
+
|
|
9269
|
+
interface PhysicalDeliveryPreferredService {
|
|
9270
|
+
readonly 'id': string;
|
|
9271
|
+
readonly 'selection_stratey': io.flow.v0.enums.PreferredServiceSelectionStrategy;
|
|
8934
9272
|
}
|
|
8935
9273
|
|
|
8936
9274
|
interface PostPaymentRedirectUrls {
|
|
@@ -9380,12 +9718,16 @@ declare namespace io.flow.v0.models {
|
|
|
9380
9718
|
interface Ratecard {
|
|
9381
9719
|
readonly 'id': string;
|
|
9382
9720
|
readonly 'number': string;
|
|
9721
|
+
readonly 'rate_level_key'?: string;
|
|
9383
9722
|
readonly 'direction': io.flow.v0.enums.Direction;
|
|
9384
9723
|
readonly 'effective_at': string;
|
|
9385
9724
|
readonly 'origination_zones': io.flow.v0.models.Zone[];
|
|
9386
9725
|
readonly 'service': io.flow.v0.models.RatecardServiceSummary;
|
|
9387
9726
|
readonly 'published_at'?: string;
|
|
9388
9727
|
readonly 'ratecard_owner': io.flow.v0.enums.RatecardOwner;
|
|
9728
|
+
readonly 'glbe_shipping_method_id'?: string;
|
|
9729
|
+
readonly 'glbe_proposition_name'?: string;
|
|
9730
|
+
readonly 'channel_revenue_share_percentage'?: number;
|
|
9389
9731
|
}
|
|
9390
9732
|
|
|
9391
9733
|
interface RatecardCarrierSummary {
|
|
@@ -9464,6 +9806,10 @@ declare namespace io.flow.v0.models {
|
|
|
9464
9806
|
readonly 'dimensional_weight'?: io.flow.v0.models.Measurement;
|
|
9465
9807
|
readonly 'gravitational_weight'?: io.flow.v0.models.Measurement;
|
|
9466
9808
|
readonly 'ratecard_id'?: string;
|
|
9809
|
+
readonly 'glbe_shipping_method_id'?: string;
|
|
9810
|
+
readonly 'glbe_proposition_name'?: string;
|
|
9811
|
+
readonly 'channel_revenue_share_percentage'?: number;
|
|
9812
|
+
readonly 'rate_level_key'?: string;
|
|
9467
9813
|
readonly 'line_items'?: io.flow.v0.models.LineItemForm[];
|
|
9468
9814
|
}
|
|
9469
9815
|
|
|
@@ -9473,7 +9819,12 @@ declare namespace io.flow.v0.models {
|
|
|
9473
9819
|
readonly 'origination_zones': io.flow.v0.models.Zone[];
|
|
9474
9820
|
readonly 'service': string;
|
|
9475
9821
|
readonly 'number'?: string;
|
|
9822
|
+
readonly 'rate_level_key'?: string;
|
|
9476
9823
|
readonly 'ratecard_owner'?: io.flow.v0.enums.RatecardOwner;
|
|
9824
|
+
readonly 'glbe_shipping_method_id'?: string;
|
|
9825
|
+
readonly 'glbe_proposition_name'?: string;
|
|
9826
|
+
readonly 'channel_revenue_share_percentage'?: number;
|
|
9827
|
+
readonly 'data'?: Record<string, string>;
|
|
9477
9828
|
}
|
|
9478
9829
|
|
|
9479
9830
|
interface RatecardLane {
|
|
@@ -10404,6 +10755,9 @@ declare namespace io.flow.v0.models {
|
|
|
10404
10755
|
readonly 'carrier_tracking_number_url': string;
|
|
10405
10756
|
readonly 'cost_estimate_source'?: io.flow.v0.enums.CostEstimateSource;
|
|
10406
10757
|
readonly 'cost'?: io.flow.v0.models.Price;
|
|
10758
|
+
readonly 'delivered_duty'?: io.flow.v0.enums.DeliveredDuty;
|
|
10759
|
+
readonly 'taxes_owed'?: io.flow.v0.models.Money;
|
|
10760
|
+
readonly 'duties_owed'?: io.flow.v0.models.Money;
|
|
10407
10761
|
readonly 'destination': io.flow.v0.models.ShippingAddress;
|
|
10408
10762
|
readonly 'flow_tracking_number': string;
|
|
10409
10763
|
readonly 'flow_tracking_number_url': string;
|
|
@@ -10415,6 +10769,7 @@ declare namespace io.flow.v0.models {
|
|
|
10415
10769
|
readonly 'return'?: io.flow.v0.models.ShippingLabelDocument;
|
|
10416
10770
|
readonly 'order'?: io.flow.v0.models.LabelOrderSummary;
|
|
10417
10771
|
readonly 'package'?: io.flow.v0.models.ShippingLabelPackage;
|
|
10772
|
+
readonly 'package_dimension_source'?: io.flow.v0.enums.PackageDimensionsSource;
|
|
10418
10773
|
readonly 'order_identifier'?: string;
|
|
10419
10774
|
readonly 'fulfillment_key'?: string;
|
|
10420
10775
|
readonly 'shipment_recipient': io.flow.v0.enums.ShipmentRecipient;
|
|
@@ -10434,9 +10789,16 @@ declare namespace io.flow.v0.models {
|
|
|
10434
10789
|
readonly 'required': boolean;
|
|
10435
10790
|
}
|
|
10436
10791
|
|
|
10792
|
+
interface ShippingLabelHopCostItemizedEstimate {
|
|
10793
|
+
readonly 'units': io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelUnits;
|
|
10794
|
+
readonly 'base': io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelBase;
|
|
10795
|
+
readonly 'surcharges': io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelSurcharge[];
|
|
10796
|
+
}
|
|
10797
|
+
|
|
10437
10798
|
interface ShippingLabelHopSummary {
|
|
10438
10799
|
readonly 'lane': io.flow.v0.models.ShippingLabelLaneSummary;
|
|
10439
10800
|
readonly 'cost': io.flow.v0.models.Money;
|
|
10801
|
+
readonly 'itemized_estimate'?: io.flow.v0.models.ShippingLabelHopCostItemizedEstimate;
|
|
10440
10802
|
}
|
|
10441
10803
|
|
|
10442
10804
|
interface ShippingLabelLaneSummary {
|
|
@@ -10446,6 +10808,7 @@ declare namespace io.flow.v0.models {
|
|
|
10446
10808
|
|
|
10447
10809
|
interface ShippingLabelPackage {
|
|
10448
10810
|
readonly 'dimensions': io.flow.v0.models.Dimension;
|
|
10811
|
+
readonly 'volumetric_weight'?: number;
|
|
10449
10812
|
readonly 'items': io.flow.v0.models.LineItemForm[];
|
|
10450
10813
|
readonly 'reference_number'?: string;
|
|
10451
10814
|
}
|
|
@@ -10453,6 +10816,11 @@ declare namespace io.flow.v0.models {
|
|
|
10453
10816
|
interface ShippingLabelRatecardSummary {
|
|
10454
10817
|
readonly 'id'?: string;
|
|
10455
10818
|
readonly 'ratecard_owner': io.flow.v0.enums.RatecardOwner;
|
|
10819
|
+
readonly 'rate_level_key'?: string;
|
|
10820
|
+
readonly 'glbe_shipping_method_id'?: string;
|
|
10821
|
+
readonly 'glbe_proposition_name'?: string;
|
|
10822
|
+
readonly 'channel_revenue_share_percentage'?: number;
|
|
10823
|
+
readonly 'shopify_grc_gid'?: string;
|
|
10456
10824
|
}
|
|
10457
10825
|
|
|
10458
10826
|
interface ShippingLabelSummary {
|
|
@@ -10750,7 +11118,6 @@ declare namespace io.flow.v0.models {
|
|
|
10750
11118
|
readonly 'status': io.flow.v0.enums.OnboardingApplicationStatus;
|
|
10751
11119
|
readonly 'company'?: io.flow.v0.models.MerchantInfo;
|
|
10752
11120
|
readonly 'indirect_tax'?: io.flow.v0.models.IndirectTax;
|
|
10753
|
-
readonly 'parent_company'?: io.flow.v0.models.MerchantInfo;
|
|
10754
11121
|
readonly 'beneficiary'?: string;
|
|
10755
11122
|
readonly 'ultimate_beneficiary_owner'?: io.flow.v0.models.UltimateBeneficiaryOwner;
|
|
10756
11123
|
readonly 'business_url'?: string;
|
|
@@ -10760,31 +11127,30 @@ declare namespace io.flow.v0.models {
|
|
|
10760
11127
|
readonly 'chargeback_percentage'?: number;
|
|
10761
11128
|
readonly 'bank_account_number'?: string;
|
|
10762
11129
|
readonly 'aba_routing_transit_number'?: string;
|
|
10763
|
-
readonly 'trade_sectors'?: io.flow.v0.enums.OnboardingTradeSector[];
|
|
10764
11130
|
readonly 'other_trade_sector'?: string;
|
|
10765
11131
|
readonly 'third_party_logistics_partners'?: io.flow.v0.models.ThirdPartyLogisticsPartner[];
|
|
11132
|
+
readonly 'center_contact'?: io.flow.v0.models.OperationsContact;
|
|
10766
11133
|
readonly 'average_order_weight'?: number;
|
|
10767
11134
|
readonly 'package_dimensions'?: io.flow.v0.models.Dimension[];
|
|
10768
11135
|
readonly 'monthly_average'?: io.flow.v0.models.MonthlyAverage;
|
|
10769
|
-
readonly 'dangerous_goods'?: boolean;
|
|
10770
11136
|
readonly 'default_country_of_origin'?: string;
|
|
10771
11137
|
readonly 'ratecard'?: io.flow.v0.models.RatecardReference;
|
|
10772
11138
|
readonly 'rate_card': string;
|
|
10773
11139
|
readonly 'created_at': string;
|
|
10774
11140
|
readonly 'activated_at'?: string;
|
|
10775
11141
|
readonly 'status_updated_at'?: string;
|
|
10776
|
-
readonly 'logistics_format'?: io.flow.v0.models.LogisticsFormat;
|
|
10777
11142
|
readonly 'shop'?: io.flow.v0.models.Shop;
|
|
10778
11143
|
readonly 'last_year_xborder_gmv'?: io.flow.v0.models.Money;
|
|
10779
11144
|
readonly 'last_month_xborder_gmv'?: io.flow.v0.models.Money;
|
|
10780
11145
|
readonly 'average_order_value'?: io.flow.v0.models.Money;
|
|
11146
|
+
readonly 'glbe_merchant_guid'?: string;
|
|
11147
|
+
readonly 'mcc_codes'?: number[];
|
|
10781
11148
|
}
|
|
10782
11149
|
|
|
10783
11150
|
interface ShopifyMerchantApplicationForm {
|
|
10784
11151
|
readonly 'discriminator': 'shopify_merchant_application_form';
|
|
10785
11152
|
readonly 'company'?: io.flow.v0.models.MerchantInfo;
|
|
10786
11153
|
readonly 'indirect_tax'?: io.flow.v0.models.IndirectTax;
|
|
10787
|
-
readonly 'parent_company'?: io.flow.v0.models.MerchantInfo;
|
|
10788
11154
|
readonly 'beneficiary'?: string;
|
|
10789
11155
|
readonly 'ultimate_beneficiary_owner'?: io.flow.v0.models.UltimateBeneficiaryOwner;
|
|
10790
11156
|
readonly 'business_url'?: string;
|
|
@@ -10794,23 +11160,22 @@ declare namespace io.flow.v0.models {
|
|
|
10794
11160
|
readonly 'chargeback_percentage'?: number;
|
|
10795
11161
|
readonly 'bank_account_number'?: string;
|
|
10796
11162
|
readonly 'aba_routing_transit_number'?: string;
|
|
10797
|
-
readonly 'trade_sectors'?: io.flow.v0.enums.OnboardingTradeSector[];
|
|
10798
11163
|
readonly 'other_trade_sector'?: string;
|
|
10799
11164
|
readonly 'third_party_logistics_partners'?: io.flow.v0.models.ThirdPartyLogisticsPartner[];
|
|
11165
|
+
readonly 'center_contact'?: io.flow.v0.models.OperationsContact;
|
|
10800
11166
|
readonly 'average_order_weight'?: number;
|
|
10801
11167
|
readonly 'package_dimensions'?: io.flow.v0.models.Dimension[];
|
|
10802
11168
|
readonly 'monthly_average_volume_amount'?: number;
|
|
10803
11169
|
readonly 'monthly_average_volume_currency'?: string;
|
|
10804
11170
|
readonly 'monthly_average_number_transactions'?: number;
|
|
10805
|
-
readonly 'dangerous_goods'?: boolean;
|
|
10806
11171
|
readonly 'default_country_of_origin'?: string;
|
|
10807
11172
|
readonly 'ratecard_id'?: string;
|
|
10808
11173
|
readonly 'rate_card': string;
|
|
10809
|
-
readonly 'logistics_format'?: io.flow.v0.models.LogisticsFormat;
|
|
10810
11174
|
readonly 'shop'?: io.flow.v0.models.Shop;
|
|
10811
11175
|
readonly 'last_year_xborder_gmv'?: io.flow.v0.models.Money;
|
|
10812
11176
|
readonly 'last_month_xborder_gmv'?: io.flow.v0.models.Money;
|
|
10813
11177
|
readonly 'average_order_value'?: io.flow.v0.models.Money;
|
|
11178
|
+
readonly 'mcc_codes'?: number[];
|
|
10814
11179
|
}
|
|
10815
11180
|
|
|
10816
11181
|
interface ShopifyMerchantApplicationPutForm {
|
|
@@ -11311,16 +11676,11 @@ declare namespace io.flow.v0.models {
|
|
|
11311
11676
|
readonly 'email_recipients'?: string[];
|
|
11312
11677
|
}
|
|
11313
11678
|
|
|
11314
|
-
interface Test {
|
|
11315
|
-
readonly 'id': string;
|
|
11316
|
-
}
|
|
11317
|
-
|
|
11318
11679
|
interface TestUpserted {
|
|
11319
11680
|
readonly 'discriminator': 'test_upserted';
|
|
11320
11681
|
readonly 'event_id': string;
|
|
11321
11682
|
readonly 'timestamp': string;
|
|
11322
|
-
readonly '
|
|
11323
|
-
readonly 'test': io.flow.v0.models.Test;
|
|
11683
|
+
readonly 'test': io.flow.ben.test.internal.v0.models.Test;
|
|
11324
11684
|
}
|
|
11325
11685
|
|
|
11326
11686
|
interface ThirdPartyLogisticsPartner {
|
|
@@ -11648,6 +12008,7 @@ declare namespace io.flow.v0.models {
|
|
|
11648
12008
|
interface Transaction {
|
|
11649
12009
|
readonly 'statement'?: io.flow.v0.models.BillingChannelStatementReference;
|
|
11650
12010
|
readonly 'id': string;
|
|
12011
|
+
readonly 'metadata'?: io.flow.v0.unions.TransactionMetadata;
|
|
11651
12012
|
readonly 'order'?: io.flow.v0.models.BillingChannelOrderSummary;
|
|
11652
12013
|
readonly 'payment_request'?: io.flow.v0.models.BillingChannelPaymentRequestReference;
|
|
11653
12014
|
readonly 'currency': string;
|
|
@@ -11670,11 +12031,20 @@ declare namespace io.flow.v0.models {
|
|
|
11670
12031
|
readonly 'network_details'?: io.flow.v0.models.TransactionNetworkDetailsCard;
|
|
11671
12032
|
}
|
|
11672
12033
|
|
|
12034
|
+
interface TransactionMetadataShippingLabel {
|
|
12035
|
+
readonly 'discriminator': 'shipping_label';
|
|
12036
|
+
readonly 'request_method'?: io.flow.v0.enums.LabelRequestMethod;
|
|
12037
|
+
}
|
|
12038
|
+
|
|
11673
12039
|
interface TransactionNetworkDetailsCard {
|
|
11674
12040
|
readonly 'network_transaction_id'?: string;
|
|
11675
12041
|
readonly 'network'?: io.flow.v0.enums.CardType;
|
|
11676
12042
|
}
|
|
11677
12043
|
|
|
12044
|
+
interface TransactionReference {
|
|
12045
|
+
readonly 'id': string;
|
|
12046
|
+
}
|
|
12047
|
+
|
|
11678
12048
|
interface TransactionUpserted {
|
|
11679
12049
|
readonly 'discriminator': 'transaction_upserted';
|
|
11680
12050
|
readonly 'event_id': string;
|
|
@@ -11949,7 +12319,7 @@ declare namespace io.flow.v0.unions {
|
|
|
11949
12319
|
type Document = (io.flow.v0.models.CatalogItemDocument | io.flow.v0.models.HarmonizationDocument);
|
|
11950
12320
|
type EmailNotificationData = (io.flow.v0.models.EmailNotificationDataRefund | io.flow.v0.models.EmailNotificationAbandonedOrder);
|
|
11951
12321
|
type Entity = (io.flow.v0.models.Company | io.flow.v0.models.Individual);
|
|
11952
|
-
type Event = (io.flow.v0.models.TestUpserted | io.flow.v0.models.TransactionUpserted | io.flow.v0.models.OrganizationTransactionUpserted | io.flow.v0.models.OrganizationTransactionDeleted | io.flow.v0.models.StatementUpserted | io.flow.v0.models.StatementDeleted | io.flow.v0.models.ChannelTransactionUpserted | io.flow.v0.models.ChannelTransactionDeleted | io.flow.v0.models.ChannelTransactionDeletedV2 | io.flow.v0.models.ChannelStatementUpserted | io.flow.v0.models.ChannelStatementDeleted | io.flow.v0.models.ChannelPayoutUpserted | io.flow.v0.models.ChannelPayoutDeleted | io.flow.v0.models.OrganizationPayoutUpserted | io.flow.v0.models.OrganizationPayoutDeleted | io.flow.v0.models.AttributeUpserted | io.flow.v0.models.AttributeDeleted | io.flow.v0.models.AttributeUpsertedV2 | io.flow.v0.models.AttributeDeletedV2 | io.flow.v0.models.CatalogUpserted | io.flow.v0.models.CatalogDeleted | io.flow.v0.models.SubcatalogUpserted | io.flow.v0.models.SubcatalogDeleted | io.flow.v0.models.CatalogItemUpserted | io.flow.v0.models.CatalogItemDeleted | io.flow.v0.models.CatalogItemUpsertedV2 | io.flow.v0.models.CatalogItemDeletedV2 | io.flow.v0.models.SubcatalogItemUpserted | io.flow.v0.models.SubcatalogItemDeleted | io.flow.v0.models.CatalogStatisticsUpserted | io.flow.v0.models.CatalogStatisticsDeleted | io.flow.v0.models.ChannelUpserted | io.flow.v0.models.ChannelDeleted | io.flow.v0.models.ChannelCurrencyUpserted | io.flow.v0.models.ChannelCurrencyDeleted | io.flow.v0.models.ChannelOrganizationUpserted | io.flow.v0.models.ChannelOrganizationDeleted | io.flow.v0.models.B2BInvoiceUpserted | io.flow.v0.models.B2BInvoiceDeleted | io.flow.v0.models.B2BCreditMemoUpserted | io.flow.v0.models.B2BCreditMemoDeleted | io.flow.v0.models.ConsumerInvoiceUpserted | io.flow.v0.models.ConsumerInvoiceDeleted | io.flow.v0.models.CreditMemoUpserted | io.flow.v0.models.CreditMemoDeleted | io.flow.v0.models.CrossdockShipmentUpserted | io.flow.v0.models.RateDeleted | io.flow.v0.models.RateUpserted | io.flow.v0.models.RateDeletedV3 | io.flow.v0.models.RateUpsertedV3 | io.flow.v0.models.CustomerUpserted | io.flow.v0.models.CustomerDeleted | io.flow.v0.models.CustomerAddressBookContactUpserted | io.flow.v0.models.CustomerAddressBookContactDeleted | io.flow.v0.models.EmailNotificationUpserted | io.flow.v0.models.EmailNotificationDeleted | io.flow.v0.models.AvailablePromotionsUpserted | io.flow.v0.models.AvailablePromotionsDeleted | io.flow.v0.models.AvailablePromotionsUpsertedV2 | io.flow.v0.models.AvailablePromotionsDeletedV2 | io.flow.v0.models.AllocationDeletedV2 | io.flow.v0.models.AllocationUpsertedV2 | io.flow.v0.models.CurrencyFormatDeleted | io.flow.v0.models.CurrencyFormatUpserted | io.flow.v0.models.ExperienceDeleted | io.flow.v0.models.ExperienceUpserted | io.flow.v0.models.ExperienceDeletedV2 | io.flow.v0.models.ExperienceUpsertedV2 | io.flow.v0.models.CountryStatusUpserted | io.flow.v0.models.CountryStatusDeleted | io.flow.v0.models.ExperiencePriceBookMappingDeleted | io.flow.v0.models.ExperiencePriceBookMappingUpserted | io.flow.v0.models.ExperienceLogisticsSettingsUpserted | io.flow.v0.models.ExperienceLogisticsSettingsDeleted | io.flow.v0.models.ItemMarginDeletedV2 | io.flow.v0.models.ItemMarginUpsertedV2 | io.flow.v0.models.ItemSalesMarginDeleted | io.flow.v0.models.ItemSalesMarginUpserted | io.flow.v0.models.LabelFormatDeleted | io.flow.v0.models.LabelFormatUpserted | io.flow.v0.models.OrderDeleted | io.flow.v0.models.OrderUpserted | io.flow.v0.models.OrderDeletedV2 | io.flow.v0.models.OrderUpsertedV2 | io.flow.v0.models.OrderIdentifierDeleted | io.flow.v0.models.OrderIdentifierUpserted | io.flow.v0.models.OrderIdentifierDeletedV2 | io.flow.v0.models.OrderIdentifierUpsertedV2 | io.flow.v0.models.OrderIdentifierUpsertedV3 | io.flow.v0.models.OrderReplacementUpserted | io.flow.v0.models.OrderReplacementDeleted | io.flow.v0.models.PricingDeleted | io.flow.v0.models.PricingUpserted | io.flow.v0.models.OrderServiceChangeRequest | io.flow.v0.models.FraudStatusChanged | io.flow.v0.models.CenterUpserted | io.flow.v0.models.CenterDeleted | io.flow.v0.models.ShippingConfigurationUpserted | io.flow.v0.models.ShippingConfigurationDeleted | io.flow.v0.models.TierUpsertedV2 | io.flow.v0.models.TierDeletedV2 | io.flow.v0.models.ShippingLaneUpserted | io.flow.v0.models.ShippingLaneDeleted | io.flow.v0.models.ShippingConfigurationItemAvailabilityUpserted | io.flow.v0.models.ShippingConfigurationItemAvailabilityDeleted | io.flow.v0.models.ShippingConfigurationItemShippingPricingUpserted | io.flow.v0.models.ShippingConfigurationItemShippingPricingDeleted | io.flow.v0.models.Hs6CodeUpserted | io.flow.v0.models.Hs6CodeDeleted | io.flow.v0.models.Hs10CodeUpserted | io.flow.v0.models.Hs10CodeDeleted | io.flow.v0.models.ItemOriginUpserted | io.flow.v0.models.ItemOriginDeleted | io.flow.v0.models.HarmonizedLandedCostUpserted | io.flow.v0.models.FullyHarmonizedItemUpserted | io.flow.v0.models.ImportCompletedV2 | io.flow.v0.models.ImportFailedV2 | io.flow.v0.models.RuleUpserted | io.flow.v0.models.RuleDeleted | io.flow.v0.models.SnapshotUpserted | io.flow.v0.models.SnapshotDeleted | io.flow.v0.models.LabelUpserted | io.flow.v0.models.LabelDeletedV2 | io.flow.v0.models.LabelUpsertedV2 | io.flow.v0.models.NotificationUpsertedV2 | io.flow.v0.models.NotificationDeletedV2 | io.flow.v0.models.ManifestedLabelUpserted | io.flow.v0.models.ManifestedLabelDeleted | io.flow.v0.models.LocalItemUpserted | io.flow.v0.models.LocalItemDeleted | io.flow.v0.models.MerchantApplicationUpserted | io.flow.v0.models.MerchantApplicationDeleted | io.flow.v0.models.CheckoutOptinResponsesUpserted | io.flow.v0.models.CheckoutOptinResponsesDeleted | io.flow.v0.models.BrowseOptinResponsesUpserted | io.flow.v0.models.BrowseOptinResponsesDeleted | io.flow.v0.models.OrderPlaced | io.flow.v0.models.OrderPlacedV2 | io.flow.v0.models.ReadyToFulfill | io.flow.v0.models.ReadyToFulfillV2 | io.flow.v0.models.MembershipUpsertedV2 | io.flow.v0.models.MembershipDeletedV2 | io.flow.v0.models.OrganizationUpserted | io.flow.v0.models.OrganizationDeleted | io.flow.v0.models.OrganizationUpsertedV2 | io.flow.v0.models.OrganizationDeletedV2 | io.flow.v0.models.OrganizationDefaultConfigurationsUpserted | io.flow.v0.models.OrganizationDefaultConfigurationsDeleted | io.flow.v0.models.EcommercePlatformUpserted | io.flow.v0.models.EcommercePlatformDeleted | io.flow.v0.models.OrganizationOnboardingStateUpserted | io.flow.v0.models.OrganizationOnboardingStateDeleted | io.flow.v0.models.AuthorizationDeletedV2 | io.flow.v0.models.AuthorizationStatusChanged | io.flow.v0.models.CardAuthorizationUpsertedV2 | io.flow.v0.models.CardAuthorizationDeletedV2 | io.flow.v0.models.OnlineAuthorizationUpsertedV2 | io.flow.v0.models.OnlineAuthorizationDeletedV2 | io.flow.v0.models.CaptureUpsertedV2 | io.flow.v0.models.CaptureDeleted | io.flow.v0.models.CardUpsertedV2 | io.flow.v0.models.CardDeleted | io.flow.v0.models.PaymentUpserted | io.flow.v0.models.PaymentDeleted | io.flow.v0.models.RefundUpsertedV2 | io.flow.v0.models.RefundDeletedV2 | io.flow.v0.models.RefundCaptureUpsertedV2 | io.flow.v0.models.ReversalUpserted | io.flow.v0.models.ReversalDeleted | io.flow.v0.models.CaptureIdentifierUpserted | io.flow.v0.models.CaptureIdentifierDeleted | io.flow.v0.models.RefundIdentifierUpserted | io.flow.v0.models.RefundIdentifierDeleted | io.flow.v0.models.VirtualCardCaptureUpserted | io.flow.v0.models.VirtualCardCaptureDeleted | io.flow.v0.models.VirtualCardRefundUpserted | io.flow.v0.models.VirtualCardRefundDeleted | io.flow.v0.models.PaymentRequestUpserted | io.flow.v0.models.PaymentRequestDeleted | io.flow.v0.models.PriceBookUpserted | io.flow.v0.models.PriceBookDeleted | io.flow.v0.models.PriceBookItemUpserted | io.flow.v0.models.PriceBookItemDeleted | io.flow.v0.models.OrganizationRatesPublished | io.flow.v0.models.RatecardLaneUpserted | io.flow.v0.models.RatecardLaneDeleted | io.flow.v0.models.RatecardUpserted | io.flow.v0.models.RatecardDeleted | io.flow.v0.models.ProductRestrictionResultUpserted | io.flow.v0.models.ProductRestrictionResultDeleted | io.flow.v0.models.ReturnUpserted | io.flow.v0.models.ReturnDeleted | io.flow.v0.models.ReturnUpsertedV2 | io.flow.v0.models.ReturnDeletedV2 | io.flow.v0.models.ShopifyLocalizationSettingUpserted | io.flow.v0.models.ShopifyLocalizationSettingDeleted | io.flow.v0.models.TrackingLabelEventUpserted);
|
|
12322
|
+
type Event = (io.flow.v0.models.TestUpserted | io.flow.v0.models.GenerateLoad | io.flow.v0.models.TransactionUpserted | io.flow.v0.models.OrganizationTransactionUpserted | io.flow.v0.models.OrganizationTransactionDeleted | io.flow.v0.models.StatementUpserted | io.flow.v0.models.StatementDeleted | io.flow.v0.models.ChannelTransactionUpserted | io.flow.v0.models.ChannelTransactionDeleted | io.flow.v0.models.ChannelTransactionDeletedV2 | io.flow.v0.models.ChannelStatementUpserted | io.flow.v0.models.ChannelStatementDeleted | io.flow.v0.models.ChannelPayoutUpserted | io.flow.v0.models.ChannelPayoutDeleted | io.flow.v0.models.OrganizationPayoutUpserted | io.flow.v0.models.OrganizationPayoutDeleted | io.flow.v0.models.AttributeUpserted | io.flow.v0.models.AttributeDeleted | io.flow.v0.models.AttributeUpsertedV2 | io.flow.v0.models.AttributeDeletedV2 | io.flow.v0.models.CatalogUpserted | io.flow.v0.models.CatalogDeleted | io.flow.v0.models.SubcatalogUpserted | io.flow.v0.models.SubcatalogDeleted | io.flow.v0.models.CatalogItemUpserted | io.flow.v0.models.CatalogItemDeleted | io.flow.v0.models.CatalogItemUpsertedV2 | io.flow.v0.models.CatalogItemDeletedV2 | io.flow.v0.models.SubcatalogItemUpserted | io.flow.v0.models.SubcatalogItemDeleted | io.flow.v0.models.CatalogStatisticsUpserted | io.flow.v0.models.CatalogStatisticsDeleted | io.flow.v0.models.ChannelUpserted | io.flow.v0.models.ChannelDeleted | io.flow.v0.models.ChannelCurrencyUpserted | io.flow.v0.models.ChannelCurrencyDeleted | io.flow.v0.models.ChannelOrganizationUpserted | io.flow.v0.models.ChannelOrganizationDeleted | io.flow.v0.models.B2BInvoiceUpserted | io.flow.v0.models.B2BInvoiceDeleted | io.flow.v0.models.B2BCreditMemoUpserted | io.flow.v0.models.B2BCreditMemoDeleted | io.flow.v0.models.ConsumerInvoiceUpserted | io.flow.v0.models.ConsumerInvoiceDeleted | io.flow.v0.models.CreditMemoUpserted | io.flow.v0.models.CreditMemoDeleted | io.flow.v0.models.CrossdockShipmentUpserted | io.flow.v0.models.RateDeleted | io.flow.v0.models.RateUpserted | io.flow.v0.models.RateDeletedV3 | io.flow.v0.models.RateUpsertedV3 | io.flow.v0.models.CustomerUpserted | io.flow.v0.models.CustomerDeleted | io.flow.v0.models.CustomerAddressBookContactUpserted | io.flow.v0.models.CustomerAddressBookContactDeleted | io.flow.v0.models.EmailNotificationUpserted | io.flow.v0.models.EmailNotificationDeleted | io.flow.v0.models.AvailablePromotionsUpserted | io.flow.v0.models.AvailablePromotionsDeleted | io.flow.v0.models.AvailablePromotionsUpsertedV2 | io.flow.v0.models.AvailablePromotionsDeletedV2 | io.flow.v0.models.AllocationDeletedV2 | io.flow.v0.models.AllocationUpsertedV2 | io.flow.v0.models.CurrencyFormatDeleted | io.flow.v0.models.CurrencyFormatUpserted | io.flow.v0.models.ExperienceDeleted | io.flow.v0.models.ExperienceUpserted | io.flow.v0.models.ExperienceDeletedV2 | io.flow.v0.models.ExperienceUpsertedV2 | io.flow.v0.models.CountryStatusUpserted | io.flow.v0.models.CountryStatusDeleted | io.flow.v0.models.ExperiencePriceBookMappingDeleted | io.flow.v0.models.ExperiencePriceBookMappingUpserted | io.flow.v0.models.ExperienceLogisticsSettingsUpserted | io.flow.v0.models.ExperienceLogisticsSettingsDeleted | io.flow.v0.models.ItemMarginDeletedV2 | io.flow.v0.models.ItemMarginUpsertedV2 | io.flow.v0.models.ItemSalesMarginDeleted | io.flow.v0.models.ItemSalesMarginUpserted | io.flow.v0.models.LabelFormatDeleted | io.flow.v0.models.LabelFormatUpserted | io.flow.v0.models.OrderDeleted | io.flow.v0.models.OrderUpserted | io.flow.v0.models.OrderDeletedV2 | io.flow.v0.models.OrderUpsertedV2 | io.flow.v0.models.OrderIdentifierDeleted | io.flow.v0.models.OrderIdentifierUpserted | io.flow.v0.models.OrderIdentifierDeletedV2 | io.flow.v0.models.OrderIdentifierUpsertedV2 | io.flow.v0.models.OrderIdentifierUpsertedV3 | io.flow.v0.models.OrderReplacementUpserted | io.flow.v0.models.OrderReplacementDeleted | io.flow.v0.models.PricingDeleted | io.flow.v0.models.PricingUpserted | io.flow.v0.models.OrderServiceChangeRequest | io.flow.v0.models.FraudStatusChanged | io.flow.v0.models.CenterUpserted | io.flow.v0.models.CenterDeleted | io.flow.v0.models.ShippingConfigurationUpserted | io.flow.v0.models.ShippingConfigurationDeleted | io.flow.v0.models.TierUpsertedV2 | io.flow.v0.models.TierDeletedV2 | io.flow.v0.models.ShippingLaneUpserted | io.flow.v0.models.ShippingLaneDeleted | io.flow.v0.models.ShippingConfigurationItemAvailabilityUpserted | io.flow.v0.models.ShippingConfigurationItemAvailabilityDeleted | io.flow.v0.models.ShippingConfigurationItemShippingPricingUpserted | io.flow.v0.models.ShippingConfigurationItemShippingPricingDeleted | io.flow.v0.models.Hs6CodeUpserted | io.flow.v0.models.Hs6CodeDeleted | io.flow.v0.models.Hs10CodeUpserted | io.flow.v0.models.Hs10CodeDeleted | io.flow.v0.models.ItemOriginUpserted | io.flow.v0.models.ItemOriginDeleted | io.flow.v0.models.HarmonizedLandedCostUpserted | io.flow.v0.models.FullyHarmonizedItemUpserted | io.flow.v0.models.ImportCompletedV2 | io.flow.v0.models.ImportFailedV2 | io.flow.v0.models.RuleUpserted | io.flow.v0.models.RuleDeleted | io.flow.v0.models.SnapshotUpserted | io.flow.v0.models.SnapshotDeleted | io.flow.v0.models.LabelUpserted | io.flow.v0.models.LabelDeletedV2 | io.flow.v0.models.LabelUpsertedV2 | io.flow.v0.models.NotificationUpsertedV2 | io.flow.v0.models.NotificationDeletedV2 | io.flow.v0.models.ManifestedLabelUpserted | io.flow.v0.models.ManifestedLabelDeleted | io.flow.v0.models.LocalItemUpserted | io.flow.v0.models.LocalItemDeleted | io.flow.v0.models.MerchantApplicationUpserted | io.flow.v0.models.MerchantApplicationDeleted | io.flow.v0.models.CheckoutOptinResponsesUpserted | io.flow.v0.models.CheckoutOptinResponsesDeleted | io.flow.v0.models.BrowseOptinResponsesUpserted | io.flow.v0.models.BrowseOptinResponsesDeleted | io.flow.v0.models.OrderPlaced | io.flow.v0.models.OrderPlacedV2 | io.flow.v0.models.ReadyToFulfill | io.flow.v0.models.ReadyToFulfillV2 | io.flow.v0.models.MembershipUpsertedV2 | io.flow.v0.models.MembershipDeletedV2 | io.flow.v0.models.OrganizationUpserted | io.flow.v0.models.OrganizationDeleted | io.flow.v0.models.OrganizationUpsertedV2 | io.flow.v0.models.OrganizationDeletedV2 | io.flow.v0.models.OrganizationDefaultConfigurationsUpserted | io.flow.v0.models.OrganizationDefaultConfigurationsDeleted | io.flow.v0.models.EcommercePlatformUpserted | io.flow.v0.models.EcommercePlatformDeleted | io.flow.v0.models.OrganizationOnboardingStateUpserted | io.flow.v0.models.OrganizationOnboardingStateDeleted | io.flow.v0.models.AuthorizationDeletedV2 | io.flow.v0.models.AuthorizationStatusChanged | io.flow.v0.models.CardAuthorizationUpsertedV2 | io.flow.v0.models.CardAuthorizationDeletedV2 | io.flow.v0.models.OnlineAuthorizationUpsertedV2 | io.flow.v0.models.OnlineAuthorizationDeletedV2 | io.flow.v0.models.CaptureUpsertedV2 | io.flow.v0.models.CaptureDeleted | io.flow.v0.models.CardUpsertedV2 | io.flow.v0.models.CardDeleted | io.flow.v0.models.PaymentUpserted | io.flow.v0.models.PaymentDeleted | io.flow.v0.models.RefundUpsertedV2 | io.flow.v0.models.RefundDeletedV2 | io.flow.v0.models.RefundCaptureUpsertedV2 | io.flow.v0.models.ReversalUpserted | io.flow.v0.models.ReversalDeleted | io.flow.v0.models.CaptureIdentifierUpserted | io.flow.v0.models.CaptureIdentifierDeleted | io.flow.v0.models.RefundIdentifierUpserted | io.flow.v0.models.RefundIdentifierDeleted | io.flow.v0.models.VirtualCardCaptureUpserted | io.flow.v0.models.VirtualCardCaptureDeleted | io.flow.v0.models.VirtualCardRefundUpserted | io.flow.v0.models.VirtualCardRefundDeleted | io.flow.v0.models.PaymentRequestUpserted | io.flow.v0.models.PaymentRequestDeleted | io.flow.v0.models.PriceBookUpserted | io.flow.v0.models.PriceBookDeleted | io.flow.v0.models.PriceBookItemUpserted | io.flow.v0.models.PriceBookItemDeleted | io.flow.v0.models.OrganizationRatesPublished | io.flow.v0.models.RatecardLaneUpserted | io.flow.v0.models.RatecardLaneDeleted | io.flow.v0.models.RatecardUpserted | io.flow.v0.models.RatecardDeleted | io.flow.v0.models.ProductRestrictionResultUpserted | io.flow.v0.models.ProductRestrictionResultDeleted | io.flow.v0.models.ReturnUpserted | io.flow.v0.models.ReturnDeleted | io.flow.v0.models.ReturnUpsertedV2 | io.flow.v0.models.ReturnDeletedV2 | io.flow.v0.models.ShopifyLocalizationSettingUpserted | io.flow.v0.models.ShopifyLocalizationSettingDeleted | io.flow.v0.models.TrackingLabelEventUpserted);
|
|
11953
12323
|
type ExpandableCard = (io.flow.v0.models.Card | io.flow.v0.models.CardReference | io.flow.v0.models.CardSummary);
|
|
11954
12324
|
type ExpandableCenter = (io.flow.v0.models.Center | io.flow.v0.models.CenterReference);
|
|
11955
12325
|
type ExpandableExperience = (io.flow.v0.models.Experience | io.flow.v0.models.ExperienceReference);
|
|
@@ -11975,7 +12345,7 @@ declare namespace io.flow.v0.unions {
|
|
|
11975
12345
|
type MerchantApplicationForm = (io.flow.v0.models.ShopifyMerchantApplicationForm);
|
|
11976
12346
|
type MerchantApplicationPutForm = (io.flow.v0.models.ShopifyMerchantApplicationPutForm);
|
|
11977
12347
|
type MerchantApplicationsSummary = (io.flow.v0.models.ShopifyMerchantApplicationsSummary);
|
|
11978
|
-
type OnboardingState = (io.flow.v0.models.InComplianceReview | io.flow.v0.models.SetupInProgress | io.flow.v0.models.MerchantRejected | io.flow.v0.models.SetupBlocked | io.flow.v0.models.SetupCompleted | io.flow.v0.models.MerchantActivated);
|
|
12348
|
+
type OnboardingState = (io.flow.v0.models.InComplianceReview | io.flow.v0.models.SetupInProgress | io.flow.v0.models.MerchantRejected | io.flow.v0.models.SetupBlocked | io.flow.v0.models.SetupCompleted | io.flow.v0.models.MerchantActivated | io.flow.v0.models.MerchantDeactivated);
|
|
11979
12349
|
type OnlineAuthorizationDetails = (io.flow.v0.models.CryptopayAuthorizationDetails | io.flow.v0.models.PaypalAuthorizationDetails | io.flow.v0.models.RedirectAuthorizationDetails | io.flow.v0.models.InlineAuthorizationDetails);
|
|
11980
12350
|
type OrderInformation = (io.flow.v0.models.OrderInformationFlow | io.flow.v0.models.OrderInformationDetails);
|
|
11981
12351
|
type OrderNumberGenerator = (io.flow.v0.models.OrderNumberGeneratorUuid | io.flow.v0.models.OrderNumberGeneratorHexadecimal | io.flow.v0.models.OrderNumberGeneratorPrefixSuffix);
|
|
@@ -12013,13 +12383,13 @@ declare namespace io.flow.v0.unions {
|
|
|
12013
12383
|
type QueryFilter = (io.flow.v0.models.QueryFilterStructured | io.flow.v0.models.QueryFilterUnstructured);
|
|
12014
12384
|
type QueryFilterForm = (io.flow.v0.models.QueryFilterStructuredForm | io.flow.v0.models.QueryFilterUnstructuredForm);
|
|
12015
12385
|
type RatecardEstimate = (io.flow.v0.models.RatecardEstimateV1 | io.flow.v0.models.RatecardEstimateV2 | io.flow.v0.models.RatecardEstimateV3 | io.flow.v0.models.RatecardEstimateV4);
|
|
12016
|
-
type RatecardFee = (io.flow.v0.models.DdpRatecardFee | io.flow.v0.models.FuelSurchargeRatecardFee | io.flow.v0.models.
|
|
12386
|
+
type RatecardFee = (io.flow.v0.models.DdpRatecardFee | io.flow.v0.models.FuelSurchargeRatecardFee | io.flow.v0.models.OversizePieceSurchargeRatecardFee | io.flow.v0.models.ReturnPackageRatecardFee | io.flow.v0.models.CrossdockRatecardFee | io.flow.v0.models.RemoteAreaRatecardFee | io.flow.v0.models.EmergencySituationSurchargeRatecardFee | io.flow.v0.models.PeakSurchargeRatecardFee | io.flow.v0.models.DutiesTaxesPaidSurchargeRatecardFee);
|
|
12017
12387
|
type RepeatSchedule = (io.flow.v0.models.RepeatHourly | io.flow.v0.models.RepeatDaily | io.flow.v0.models.RepeatWeekly | io.flow.v0.models.RepeatMonthly);
|
|
12018
12388
|
type ReservationError = (io.flow.v0.models.NoInventoryReservationError | io.flow.v0.models.ExternalApiTimeoutReservationError | io.flow.v0.models.GenericReservationError);
|
|
12019
12389
|
type ReturnSource = (io.flow.v0.models.ReturnSourceFlow | io.flow.v0.models.ReturnSourceExternalVendor);
|
|
12020
12390
|
type SdkAdyenV3AuthenticationToken = (io.flow.v0.models.AdyenV3FingerprintToken | io.flow.v0.models.AdyenV3ChallengeToken);
|
|
12021
12391
|
type ServiceDescription = (io.flow.v0.models.ServiceSummary | io.flow.v0.models.ServiceUnknown);
|
|
12022
|
-
type ServiceFee = (io.flow.v0.models.FuelSurchargeServiceFee | io.flow.v0.models.FuelSurchargeAmountByWeightServiceFee | io.flow.v0.models.RemoteAreaServiceFee | io.flow.v0.models.EmergencySituationSurchargeServiceFee | io.flow.v0.models.PeakSurchargeServiceFee | io.flow.v0.models.PeakSurchargeByWeightServiceFee | io.flow.v0.models.DutiesTaxesPaidSurchargeServiceFee);
|
|
12392
|
+
type ServiceFee = (io.flow.v0.models.FuelSurchargeServiceFee | io.flow.v0.models.FuelSurchargeAmountByWeightServiceFee | io.flow.v0.models.RemoteAreaServiceFee | io.flow.v0.models.EmergencySituationSurchargeServiceFee | io.flow.v0.models.PeakSurchargeServiceFee | io.flow.v0.models.PeakSurchargeByWeightServiceFee | io.flow.v0.models.DutiesTaxesPaidSurchargeServiceFee | io.flow.v0.models.OversizePieceSurchargeServiceFee);
|
|
12023
12393
|
type Session = (io.flow.v0.models.OrganizationSession);
|
|
12024
12394
|
type SessionAuthorization = (io.flow.v0.models.OrganizationSessionAuthorization);
|
|
12025
12395
|
type Settlement = (io.flow.v0.models.SettlementNoPayout | io.flow.v0.models.SettlementPayout);
|
|
@@ -12036,6 +12406,7 @@ declare namespace io.flow.v0.unions {
|
|
|
12036
12406
|
type Token = (io.flow.v0.models.ChannelToken | io.flow.v0.models.OrganizationToken | io.flow.v0.models.OrganizationTokenV2 | io.flow.v0.models.PartnerToken);
|
|
12037
12407
|
type TokenReference = (io.flow.v0.models.ChannelTokenReference | io.flow.v0.models.OrganizationTokenReference | io.flow.v0.models.OrganizationTokenV2Reference | io.flow.v0.models.PartnerTokenReference);
|
|
12038
12408
|
type TransactionDetails = (io.flow.v0.models.TransactionDetailsCard);
|
|
12409
|
+
type TransactionMetadata = (io.flow.v0.models.TransactionMetadataShippingLabel);
|
|
12039
12410
|
}
|
|
12040
12411
|
|
|
12041
12412
|
export const abandonedOrderPromotionStatus: PropTypes.Requireable<io.flow.v0.enums.AbandonedOrderPromotionStatus>;
|
|
@@ -12163,6 +12534,7 @@ export const orderType: PropTypes.Requireable<io.flow.v0.enums.OrderType>;
|
|
|
12163
12534
|
export const organizationPaymentMethodTag: PropTypes.Requireable<io.flow.v0.enums.OrganizationPaymentMethodTag>;
|
|
12164
12535
|
export const organizationStatus: PropTypes.Requireable<io.flow.v0.enums.OrganizationStatus>;
|
|
12165
12536
|
export const organizationType: PropTypes.Requireable<io.flow.v0.enums.OrganizationType>;
|
|
12537
|
+
export const packageDimensionsSource: PropTypes.Requireable<io.flow.v0.enums.PackageDimensionsSource>;
|
|
12166
12538
|
export const paymentActionType: PropTypes.Requireable<io.flow.v0.enums.PaymentActionType>;
|
|
12167
12539
|
export const paymentErrorCode: PropTypes.Requireable<io.flow.v0.enums.PaymentErrorCode>;
|
|
12168
12540
|
export const paymentFailureCode: PropTypes.Requireable<io.flow.v0.enums.PaymentFailureCode>;
|
|
@@ -12181,6 +12553,7 @@ export const payoutStatusFailureCode: PropTypes.Requireable<io.flow.v0.enums.Pay
|
|
|
12181
12553
|
export const permittedHttpMethod: PropTypes.Requireable<io.flow.v0.enums.PermittedHttpMethod>;
|
|
12182
12554
|
export const physicalDeliverySpecialSerivce: PropTypes.Requireable<io.flow.v0.enums.PhysicalDeliverySpecialSerivce>;
|
|
12183
12555
|
export const postalType: PropTypes.Requireable<io.flow.v0.enums.PostalType>;
|
|
12556
|
+
export const preferredServiceSelectionStrategy: PropTypes.Requireable<io.flow.v0.enums.PreferredServiceSelectionStrategy>;
|
|
12184
12557
|
export const priceAccuracy: PropTypes.Requireable<io.flow.v0.enums.PriceAccuracy>;
|
|
12185
12558
|
export const priceBookStatus: PropTypes.Requireable<io.flow.v0.enums.PriceBookStatus>;
|
|
12186
12559
|
export const priceDetailComponentKey: PropTypes.Requireable<io.flow.v0.enums.PriceDetailComponentKey>;
|
|
@@ -12212,6 +12585,7 @@ export const shopifyLocalizationMethod: PropTypes.Requireable<io.flow.v0.enums.S
|
|
|
12212
12585
|
export const shopifySyncCheck: PropTypes.Requireable<io.flow.v0.enums.ShopifySyncCheck>;
|
|
12213
12586
|
export const sortDirection: PropTypes.Requireable<io.flow.v0.enums.SortDirection>;
|
|
12214
12587
|
export const statementAttachmentType: PropTypes.Requireable<io.flow.v0.enums.StatementAttachmentType>;
|
|
12588
|
+
export const storedMethodUsageStep: PropTypes.Requireable<io.flow.v0.enums.StoredMethodUsageStep>;
|
|
12215
12589
|
export const strategy: PropTypes.Requireable<io.flow.v0.enums.Strategy>;
|
|
12216
12590
|
export const subcatalogItemStatus: PropTypes.Requireable<io.flow.v0.enums.SubcatalogItemStatus>;
|
|
12217
12591
|
export const surchargeResponsibleParty: PropTypes.Requireable<io.flow.v0.enums.SurchargeResponsibleParty>;
|
|
@@ -12234,9 +12608,13 @@ export const trackingNumberType: PropTypes.Requireable<io.flow.v0.enums.Tracking
|
|
|
12234
12608
|
export const trackingStatus: PropTypes.Requireable<io.flow.v0.enums.TrackingStatus>;
|
|
12235
12609
|
export const tradeAgreementName: PropTypes.Requireable<io.flow.v0.enums.TradeAgreementName>;
|
|
12236
12610
|
export const tradeAgreementStatus: PropTypes.Requireable<io.flow.v0.enums.TradeAgreementStatus>;
|
|
12611
|
+
export const transactionPayoutPendingReason: PropTypes.Requireable<io.flow.v0.enums.TransactionPayoutPendingReason>;
|
|
12237
12612
|
export const transactionSource: PropTypes.Requireable<io.flow.v0.enums.TransactionSource>;
|
|
12613
|
+
export const unitOfLength: PropTypes.Requireable<io.flow.v0.enums.UnitOfLength>;
|
|
12238
12614
|
export const unitOfMeasurement: PropTypes.Requireable<io.flow.v0.enums.UnitOfMeasurement>;
|
|
12239
12615
|
export const unitOfTime: PropTypes.Requireable<io.flow.v0.enums.UnitOfTime>;
|
|
12616
|
+
export const unitOfVolume: PropTypes.Requireable<io.flow.v0.enums.UnitOfVolume>;
|
|
12617
|
+
export const unitOfWeight: PropTypes.Requireable<io.flow.v0.enums.UnitOfWeight>;
|
|
12240
12618
|
export const updatePolicy: PropTypes.Requireable<io.flow.v0.enums.UpdatePolicy>;
|
|
12241
12619
|
export const updateType: PropTypes.Requireable<io.flow.v0.enums.UpdateType>;
|
|
12242
12620
|
export const userStatus: PropTypes.Requireable<io.flow.v0.enums.UserStatus>;
|
|
@@ -12465,6 +12843,7 @@ export const channelTokenReference: PropTypes.Requireable<io.flow.v0.models.Chan
|
|
|
12465
12843
|
export const channelTransaction: PropTypes.Requireable<io.flow.v0.models.ChannelTransaction>;
|
|
12466
12844
|
export const channelTransactionDeleted: PropTypes.Requireable<io.flow.v0.models.ChannelTransactionDeleted>;
|
|
12467
12845
|
export const channelTransactionDeletedV2: PropTypes.Requireable<io.flow.v0.models.ChannelTransactionDeletedV2>;
|
|
12846
|
+
export const channelTransactionPayout: PropTypes.Requireable<io.flow.v0.models.ChannelTransactionPayout>;
|
|
12468
12847
|
export const channelTransactionUpserted: PropTypes.Requireable<io.flow.v0.models.ChannelTransactionUpserted>;
|
|
12469
12848
|
export const channelUpserted: PropTypes.Requireable<io.flow.v0.models.ChannelUpserted>;
|
|
12470
12849
|
export const channelViesRegistration: PropTypes.Requireable<io.flow.v0.models.ChannelViesRegistration>;
|
|
@@ -12510,6 +12889,8 @@ export const contextReference: PropTypes.Requireable<io.flow.v0.models.ContextRe
|
|
|
12510
12889
|
export const country: PropTypes.Requireable<io.flow.v0.models.Country>;
|
|
12511
12890
|
export const countryAvailability: PropTypes.Requireable<io.flow.v0.models.CountryAvailability>;
|
|
12512
12891
|
export const countryDefaults: PropTypes.Requireable<io.flow.v0.models.CountryDefaults>;
|
|
12892
|
+
export const countryOfOrigin: PropTypes.Requireable<io.flow.v0.models.CountryOfOrigin>;
|
|
12893
|
+
export const countryOfOriginForm: PropTypes.Requireable<io.flow.v0.models.CountryOfOriginForm>;
|
|
12513
12894
|
export const countryPicker: PropTypes.Requireable<io.flow.v0.models.CountryPicker>;
|
|
12514
12895
|
export const countryPickerForm: PropTypes.Requireable<io.flow.v0.models.CountryPickerForm>;
|
|
12515
12896
|
export const countryShippingPricing: PropTypes.Requireable<io.flow.v0.models.CountryShippingPricing>;
|
|
@@ -12563,6 +12944,7 @@ export const cvvResult: PropTypes.Requireable<io.flow.v0.models.CvvResult>;
|
|
|
12563
12944
|
export const datetimeRange: PropTypes.Requireable<io.flow.v0.models.DatetimeRange>;
|
|
12564
12945
|
export const datetimeWithTimezone: PropTypes.Requireable<io.flow.v0.models.DatetimeWithTimezone>;
|
|
12565
12946
|
export const ddpRatecardFee: PropTypes.Requireable<io.flow.v0.models.DdpRatecardFee>;
|
|
12947
|
+
export const deactivationPutForm: PropTypes.Requireable<io.flow.v0.models.DeactivationPutForm>;
|
|
12566
12948
|
export const defaultBankAccountForm: PropTypes.Requireable<io.flow.v0.models.DefaultBankAccountForm>;
|
|
12567
12949
|
export const deliveredDutySetting: PropTypes.Requireable<io.flow.v0.models.DeliveredDutySetting>;
|
|
12568
12950
|
export const deliveryItem: PropTypes.Requireable<io.flow.v0.models.DeliveryItem>;
|
|
@@ -12732,6 +13114,7 @@ export const fulfillmentItemAllocationDetails: PropTypes.Requireable<io.flow.v0.
|
|
|
12732
13114
|
export const fulfillmentItemQuantity: PropTypes.Requireable<io.flow.v0.models.FulfillmentItemQuantity>;
|
|
12733
13115
|
export const fulfillmentLineCancelForm: PropTypes.Requireable<io.flow.v0.models.FulfillmentLineCancelForm>;
|
|
12734
13116
|
export const fullyHarmonizedItemUpserted: PropTypes.Requireable<io.flow.v0.models.FullyHarmonizedItemUpserted>;
|
|
13117
|
+
export const generateLoad: PropTypes.Requireable<io.flow.v0.models.GenerateLoad>;
|
|
12735
13118
|
export const genericError: PropTypes.Requireable<io.flow.v0.models.GenericError>;
|
|
12736
13119
|
export const genericReservationError: PropTypes.Requireable<io.flow.v0.models.GenericReservationError>;
|
|
12737
13120
|
export const geoForm: PropTypes.Requireable<io.flow.v0.models.GeoForm>;
|
|
@@ -12910,6 +13293,7 @@ export const membershipVersion: PropTypes.Requireable<io.flow.v0.models.Membersh
|
|
|
12910
13293
|
export const merchantActivated: PropTypes.Requireable<io.flow.v0.models.MerchantActivated>;
|
|
12911
13294
|
export const merchantApplicationDeleted: PropTypes.Requireable<io.flow.v0.models.MerchantApplicationDeleted>;
|
|
12912
13295
|
export const merchantApplicationUpserted: PropTypes.Requireable<io.flow.v0.models.MerchantApplicationUpserted>;
|
|
13296
|
+
export const merchantDeactivated: PropTypes.Requireable<io.flow.v0.models.MerchantDeactivated>;
|
|
12913
13297
|
export const merchantGiftCardBalance: PropTypes.Requireable<io.flow.v0.models.MerchantGiftCardBalance>;
|
|
12914
13298
|
export const merchantGiftCardBalanceForm: PropTypes.Requireable<io.flow.v0.models.MerchantGiftCardBalanceForm>;
|
|
12915
13299
|
export const merchantGiftCardError: PropTypes.Requireable<io.flow.v0.models.MerchantGiftCardError>;
|
|
@@ -13086,13 +13470,17 @@ export const organizationTokenReference: PropTypes.Requireable<io.flow.v0.models
|
|
|
13086
13470
|
export const organizationTokenV2: PropTypes.Requireable<io.flow.v0.models.OrganizationTokenV2>;
|
|
13087
13471
|
export const organizationTokenV2Reference: PropTypes.Requireable<io.flow.v0.models.OrganizationTokenV2Reference>;
|
|
13088
13472
|
export const organizationTransactionDeleted: PropTypes.Requireable<io.flow.v0.models.OrganizationTransactionDeleted>;
|
|
13473
|
+
export const organizationTransactionPayout: PropTypes.Requireable<io.flow.v0.models.OrganizationTransactionPayout>;
|
|
13089
13474
|
export const organizationTransactionUpserted: PropTypes.Requireable<io.flow.v0.models.OrganizationTransactionUpserted>;
|
|
13090
13475
|
export const organizationUpserted: PropTypes.Requireable<io.flow.v0.models.OrganizationUpserted>;
|
|
13091
13476
|
export const organizationUpsertedV2: PropTypes.Requireable<io.flow.v0.models.OrganizationUpsertedV2>;
|
|
13092
13477
|
export const organizationVersion: PropTypes.Requireable<io.flow.v0.models.OrganizationVersion>;
|
|
13093
13478
|
export const originalPrices: PropTypes.Requireable<io.flow.v0.models.OriginalPrices>;
|
|
13094
13479
|
export const outboundCartonFee: PropTypes.Requireable<io.flow.v0.models.OutboundCartonFee>;
|
|
13095
|
-
export const
|
|
13480
|
+
export const oversizePieceSurchargeRatecardFee: PropTypes.Requireable<io.flow.v0.models.OversizePieceSurchargeRatecardFee>;
|
|
13481
|
+
export const oversizePieceSurchargeServiceFee: PropTypes.Requireable<io.flow.v0.models.OversizePieceSurchargeServiceFee>;
|
|
13482
|
+
export const packageDimensions: PropTypes.Requireable<io.flow.v0.models.PackageDimensions>;
|
|
13483
|
+
export const packageDimensionsForm: PropTypes.Requireable<io.flow.v0.models.PackageDimensionsForm>;
|
|
13096
13484
|
export const packaging: PropTypes.Requireable<io.flow.v0.models.Packaging>;
|
|
13097
13485
|
export const parentTransactionSummary: PropTypes.Requireable<io.flow.v0.models.ParentTransactionSummary>;
|
|
13098
13486
|
export const partnerCenter: PropTypes.Requireable<io.flow.v0.models.PartnerCenter>;
|
|
@@ -13200,6 +13588,7 @@ export const paymentTax: PropTypes.Requireable<io.flow.v0.models.PaymentTax>;
|
|
|
13200
13588
|
export const paymentUpserted: PropTypes.Requireable<io.flow.v0.models.PaymentUpserted>;
|
|
13201
13589
|
export const paymentVersion: PropTypes.Requireable<io.flow.v0.models.PaymentVersion>;
|
|
13202
13590
|
export const payoutAttachment: PropTypes.Requireable<io.flow.v0.models.PayoutAttachment>;
|
|
13591
|
+
export const payoutReference: PropTypes.Requireable<io.flow.v0.models.PayoutReference>;
|
|
13203
13592
|
export const payoutStatusFailed: PropTypes.Requireable<io.flow.v0.models.PayoutStatusFailed>;
|
|
13204
13593
|
export const payoutStatusScheduled: PropTypes.Requireable<io.flow.v0.models.PayoutStatusScheduled>;
|
|
13205
13594
|
export const payoutStatusSent: PropTypes.Requireable<io.flow.v0.models.PayoutStatusSent>;
|
|
@@ -13217,6 +13606,7 @@ export const pfsInventoryCheckResponse: PropTypes.Requireable<io.flow.v0.models.
|
|
|
13217
13606
|
export const pfsInventoryCheckResponseItem: PropTypes.Requireable<io.flow.v0.models.PfsInventoryCheckResponseItem>;
|
|
13218
13607
|
export const pfsInventoryStatus: PropTypes.Requireable<io.flow.v0.models.PfsInventoryStatus>;
|
|
13219
13608
|
export const physicalDelivery: PropTypes.Requireable<io.flow.v0.models.PhysicalDelivery>;
|
|
13609
|
+
export const physicalDeliveryPreferredService: PropTypes.Requireable<io.flow.v0.models.PhysicalDeliveryPreferredService>;
|
|
13220
13610
|
export const postPaymentRedirectUrls: PropTypes.Requireable<io.flow.v0.models.PostPaymentRedirectUrls>;
|
|
13221
13611
|
export const price: PropTypes.Requireable<io.flow.v0.models.Price>;
|
|
13222
13612
|
export const priceBook: PropTypes.Requireable<io.flow.v0.models.PriceBook>;
|
|
@@ -13423,6 +13813,7 @@ export const shippingConfigurationUpserted: PropTypes.Requireable<io.flow.v0.mod
|
|
|
13423
13813
|
export const shippingConfigurationVersion: PropTypes.Requireable<io.flow.v0.models.ShippingConfigurationVersion>;
|
|
13424
13814
|
export const shippingLabel: PropTypes.Requireable<io.flow.v0.models.ShippingLabel>;
|
|
13425
13815
|
export const shippingLabelDocument: PropTypes.Requireable<io.flow.v0.models.ShippingLabelDocument>;
|
|
13816
|
+
export const shippingLabelHopCostItemizedEstimate: PropTypes.Requireable<io.flow.v0.models.ShippingLabelHopCostItemizedEstimate>;
|
|
13426
13817
|
export const shippingLabelHopSummary: PropTypes.Requireable<io.flow.v0.models.ShippingLabelHopSummary>;
|
|
13427
13818
|
export const shippingLabelLaneSummary: PropTypes.Requireable<io.flow.v0.models.ShippingLabelLaneSummary>;
|
|
13428
13819
|
export const shippingLabelPackage: PropTypes.Requireable<io.flow.v0.models.ShippingLabelPackage>;
|
|
@@ -13537,7 +13928,6 @@ export const taxDutyQuoteValues: PropTypes.Requireable<io.flow.v0.models.TaxDuty
|
|
|
13537
13928
|
export const taxRegistration: PropTypes.Requireable<io.flow.v0.models.TaxRegistration>;
|
|
13538
13929
|
export const taxRegistrationForm: PropTypes.Requireable<io.flow.v0.models.TaxRegistrationForm>;
|
|
13539
13930
|
export const taxReport: PropTypes.Requireable<io.flow.v0.models.TaxReport>;
|
|
13540
|
-
export const test: PropTypes.Requireable<io.flow.v0.models.Test>;
|
|
13541
13931
|
export const testUpserted: PropTypes.Requireable<io.flow.v0.models.TestUpserted>;
|
|
13542
13932
|
export const thirdPartyLogisticsPartner: PropTypes.Requireable<io.flow.v0.models.ThirdPartyLogisticsPartner>;
|
|
13543
13933
|
export const threeDSecure: PropTypes.Requireable<io.flow.v0.models.ThreeDSecure>;
|
|
@@ -13583,7 +13973,9 @@ export const tradeAgreementCertifier: PropTypes.Requireable<io.flow.v0.models.Tr
|
|
|
13583
13973
|
export const tradeAgreementDuty: PropTypes.Requireable<io.flow.v0.models.TradeAgreementDuty>;
|
|
13584
13974
|
export const transaction: PropTypes.Requireable<io.flow.v0.models.Transaction>;
|
|
13585
13975
|
export const transactionDetailsCard: PropTypes.Requireable<io.flow.v0.models.TransactionDetailsCard>;
|
|
13976
|
+
export const transactionMetadataShippingLabel: PropTypes.Requireable<io.flow.v0.models.TransactionMetadataShippingLabel>;
|
|
13586
13977
|
export const transactionNetworkDetailsCard: PropTypes.Requireable<io.flow.v0.models.TransactionNetworkDetailsCard>;
|
|
13978
|
+
export const transactionReference: PropTypes.Requireable<io.flow.v0.models.TransactionReference>;
|
|
13587
13979
|
export const transactionUpserted: PropTypes.Requireable<io.flow.v0.models.TransactionUpserted>;
|
|
13588
13980
|
export const transitEstimate: PropTypes.Requireable<io.flow.v0.models.TransitEstimate>;
|
|
13589
13981
|
export const transitWindow: PropTypes.Requireable<io.flow.v0.models.TransitWindow>;
|
|
@@ -13725,4 +14117,5 @@ export const tierRuleOutcome: PropTypes.Requireable<io.flow.v0.unions.TierRuleOu
|
|
|
13725
14117
|
export const tierRuleOutcomeForm: PropTypes.Requireable<io.flow.v0.unions.TierRuleOutcomeForm>;
|
|
13726
14118
|
export const token: PropTypes.Requireable<io.flow.v0.unions.Token>;
|
|
13727
14119
|
export const tokenReference: PropTypes.Requireable<io.flow.v0.unions.TokenReference>;
|
|
13728
|
-
export const transactionDetails: PropTypes.Requireable<io.flow.v0.unions.TransactionDetails>;
|
|
14120
|
+
export const transactionDetails: PropTypes.Requireable<io.flow.v0.unions.TransactionDetails>;
|
|
14121
|
+
export const transactionMetadata: PropTypes.Requireable<io.flow.v0.unions.TransactionMetadata>;
|