@flowio/types 11.24.89 → 11.24.91
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/api-internal.d.ts +422 -92
- package/dist/api.d.ts +133 -10
- package/package.json +2 -2
- package/src/api-internal.ts +565 -118
- package/src/api.ts +183 -9
package/dist/api-internal.d.ts
CHANGED
|
@@ -232,6 +232,7 @@ declare namespace io.flow.billing.accounting.v0.models {
|
|
|
232
232
|
readonly number: string;
|
|
233
233
|
readonly fulfillment_method: io.flow.catalog.v0.enums.FulfillmentMethodValue;
|
|
234
234
|
readonly country_of_origin?: string;
|
|
235
|
+
readonly tarriff_code?: string;
|
|
235
236
|
readonly inferred?: boolean;
|
|
236
237
|
}
|
|
237
238
|
interface MerchantFees {
|
|
@@ -264,6 +265,10 @@ declare namespace io.flow.billing.accounting.v0.models {
|
|
|
264
265
|
readonly freight: number;
|
|
265
266
|
readonly total: number;
|
|
266
267
|
}
|
|
268
|
+
interface OrderReference {
|
|
269
|
+
readonly organization: io.flow.common.v0.models.OrganizationReference;
|
|
270
|
+
readonly number: string;
|
|
271
|
+
}
|
|
267
272
|
interface OrderSummary {
|
|
268
273
|
readonly id: string;
|
|
269
274
|
readonly organization: io.flow.common.v0.models.OrganizationReference;
|
|
@@ -273,6 +278,15 @@ declare namespace io.flow.billing.accounting.v0.models {
|
|
|
273
278
|
readonly delivered_duty: io.flow.common.v0.enums.DeliveredDuty;
|
|
274
279
|
readonly currency: string;
|
|
275
280
|
}
|
|
281
|
+
interface PendingOrder {
|
|
282
|
+
readonly id: string;
|
|
283
|
+
readonly order: io.flow.billing.accounting.v0.models.OrderSummary;
|
|
284
|
+
readonly shopper: io.flow.billing.accounting.v0.models.ShopperSummary;
|
|
285
|
+
readonly merchant: io.flow.billing.accounting.v0.models.MerchantSummary;
|
|
286
|
+
readonly remittance: io.flow.billing.accounting.v0.models.RemittanceResponsibility;
|
|
287
|
+
readonly sequence_number: number;
|
|
288
|
+
readonly posting_cutoff: string;
|
|
289
|
+
}
|
|
276
290
|
interface RemittanceResponsibility {
|
|
277
291
|
readonly tax: io.flow.billing.internal.v0.enums.ResponsibleParty;
|
|
278
292
|
readonly duty: io.flow.billing.internal.v0.enums.ResponsibleParty;
|
|
@@ -281,8 +295,8 @@ declare namespace io.flow.billing.accounting.v0.models {
|
|
|
281
295
|
readonly id: string;
|
|
282
296
|
readonly order: io.flow.billing.accounting.v0.models.OrderSummary;
|
|
283
297
|
readonly shopper: io.flow.billing.accounting.v0.models.ShopperSummary;
|
|
284
|
-
readonly remittance: io.flow.billing.accounting.v0.models.RemittanceResponsibility;
|
|
285
298
|
readonly merchant: io.flow.billing.accounting.v0.models.MerchantSummary;
|
|
299
|
+
readonly remittance: io.flow.billing.accounting.v0.models.RemittanceResponsibility;
|
|
286
300
|
readonly sequence_number: number;
|
|
287
301
|
readonly posting_cutoff: string;
|
|
288
302
|
readonly trigger: io.flow.billing.accounting.v0.unions.ReturnTrigger;
|
|
@@ -2043,6 +2057,8 @@ declare namespace io.flow.billing.csv.v0.models {
|
|
|
2043
2057
|
readonly fx_fee_description?: string;
|
|
2044
2058
|
readonly duty_guarantee_fee?: number;
|
|
2045
2059
|
readonly duty_guarantee_fee_description?: string;
|
|
2060
|
+
readonly negative_balance_fee?: number;
|
|
2061
|
+
readonly negative_balance_fee_description?: string;
|
|
2046
2062
|
}
|
|
2047
2063
|
interface BillingCsvProcessingTransactionDelivery {
|
|
2048
2064
|
readonly delivery_option_id: string;
|
|
@@ -2109,6 +2125,7 @@ declare namespace io.flow.billing.csv.v0.models {
|
|
|
2109
2125
|
readonly processing: number;
|
|
2110
2126
|
readonly rate_lock: number;
|
|
2111
2127
|
readonly transfer: number;
|
|
2128
|
+
readonly negative_balance: number;
|
|
2112
2129
|
}
|
|
2113
2130
|
interface BillingCsvTransactionIdentifiers {
|
|
2114
2131
|
readonly reference_id?: string;
|
|
@@ -2126,6 +2143,7 @@ declare namespace io.flow.billing.csv.v0.models {
|
|
|
2126
2143
|
readonly label_created_at: string;
|
|
2127
2144
|
readonly carrier_id: string;
|
|
2128
2145
|
readonly carrier_tracking_number: string;
|
|
2146
|
+
readonly revenue_share_percentage: number;
|
|
2129
2147
|
readonly outbound_transaction_id?: string;
|
|
2130
2148
|
}
|
|
2131
2149
|
interface BillingCsvTransactionMetadataChannel {
|
|
@@ -2233,7 +2251,7 @@ declare namespace io.flow.stripe.v0.enums {
|
|
|
2233
2251
|
type OrderItemType = 'sku' | 'tax' | 'shipping' | 'discount';
|
|
2234
2252
|
type PaymentIntentStatus = 'canceled' | 'processing' | 'requires_action' | 'requires_capture' | 'requires_confirmation' | 'requires_payment_method' | 'succeeded';
|
|
2235
2253
|
type PaymentMethodCategoryKlarna = 'pay_later' | 'pay_now' | 'pay_with_financing' | 'pay_in_installments';
|
|
2236
|
-
type PaymentMethodType = 'card' | 'card_present';
|
|
2254
|
+
type PaymentMethodType = 'card' | 'card_present' | 'klarna';
|
|
2237
2255
|
type PaymentOutcomeType = 'authorized' | 'manual_review' | 'issuer_declined' | 'blocked' | 'invalid';
|
|
2238
2256
|
type PaymentStatus = 'succeeded' | 'pending' | 'failed';
|
|
2239
2257
|
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';
|
|
@@ -2469,6 +2487,11 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
2469
2487
|
interface KlarnaAttachment {
|
|
2470
2488
|
readonly marketplace_seller_info?: io.flow.stripe.v0.models.KlarnaMarketplaceSellerInfo[];
|
|
2471
2489
|
}
|
|
2490
|
+
interface KlarnaDobForm {
|
|
2491
|
+
readonly day: number;
|
|
2492
|
+
readonly month: number;
|
|
2493
|
+
readonly year: number;
|
|
2494
|
+
}
|
|
2472
2495
|
interface KlarnaMarketplaceSellerInfo {
|
|
2473
2496
|
readonly sub_merchant_id?: string;
|
|
2474
2497
|
readonly product_category?: string;
|
|
@@ -2476,6 +2499,11 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
2476
2499
|
interface LegalEntity {
|
|
2477
2500
|
readonly additional_owners?: io.flow.stripe.v0.models.Owner[];
|
|
2478
2501
|
}
|
|
2502
|
+
interface MarketplaceSellerInfo {
|
|
2503
|
+
readonly name: string;
|
|
2504
|
+
readonly id?: string;
|
|
2505
|
+
readonly product_category?: string;
|
|
2506
|
+
}
|
|
2479
2507
|
interface Masterpass {
|
|
2480
2508
|
readonly type: 'masterpass';
|
|
2481
2509
|
readonly masterpass: io.flow.stripe.v0.models.MasterpassInformation;
|
|
@@ -2552,6 +2580,9 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
2552
2580
|
readonly verified_name?: string;
|
|
2553
2581
|
readonly verified_phone?: string;
|
|
2554
2582
|
}
|
|
2583
|
+
interface PaymentDetails {
|
|
2584
|
+
readonly marketplace_seller_info?: io.flow.stripe.v0.models.MarketplaceSellerInfo;
|
|
2585
|
+
}
|
|
2555
2586
|
interface PaymentIntent {
|
|
2556
2587
|
readonly id: string;
|
|
2557
2588
|
readonly object: string;
|
|
@@ -2668,6 +2699,7 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
2668
2699
|
readonly billing_details?: io.flow.stripe.v0.models.PaymentMethodBillingDetails;
|
|
2669
2700
|
readonly card?: io.flow.stripe.v0.models.PaymentMethodCardDetails;
|
|
2670
2701
|
readonly card_present?: any;
|
|
2702
|
+
readonly klarna?: any;
|
|
2671
2703
|
readonly created: number;
|
|
2672
2704
|
readonly customer?: string;
|
|
2673
2705
|
readonly livemode: boolean;
|
|
@@ -2703,6 +2735,12 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
2703
2735
|
readonly metadata?: any;
|
|
2704
2736
|
readonly card: io.flow.stripe.v0.models.PaymentMethodCardForm;
|
|
2705
2737
|
}
|
|
2738
|
+
interface PaymentMethodDataKlarna {
|
|
2739
|
+
readonly type: 'klarna';
|
|
2740
|
+
readonly billing_details?: io.flow.stripe.v0.models.PaymentMethodBillingDetails;
|
|
2741
|
+
readonly metadata?: any;
|
|
2742
|
+
readonly klarna: io.flow.stripe.v0.models.PaymentMethodKlarnaForm;
|
|
2743
|
+
}
|
|
2706
2744
|
interface PaymentMethodDetailsCard {
|
|
2707
2745
|
readonly type: 'card';
|
|
2708
2746
|
readonly card: io.flow.stripe.v0.models.PaymentMethodDetailsCardInformation;
|
|
@@ -2746,8 +2784,18 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
2746
2784
|
readonly metadata?: any;
|
|
2747
2785
|
readonly card: io.flow.stripe.v0.models.PaymentMethodCardForm;
|
|
2748
2786
|
}
|
|
2787
|
+
interface PaymentMethodFormKlarna {
|
|
2788
|
+
readonly type: 'klarna';
|
|
2789
|
+
readonly billing_details?: io.flow.stripe.v0.models.PaymentMethodBillingDetails;
|
|
2790
|
+
readonly metadata?: any;
|
|
2791
|
+
readonly klarna: io.flow.stripe.v0.models.PaymentMethodKlarnaForm;
|
|
2792
|
+
}
|
|
2793
|
+
interface PaymentMethodKlarnaForm {
|
|
2794
|
+
readonly dob?: io.flow.stripe.v0.models.KlarnaDobForm;
|
|
2795
|
+
}
|
|
2749
2796
|
interface PaymentMethodOptions {
|
|
2750
2797
|
readonly card?: io.flow.stripe.v0.models.PaymentMethodOptionsCard;
|
|
2798
|
+
readonly klarna?: io.flow.stripe.v0.models.PaymentMethodOptionsKlarna;
|
|
2751
2799
|
}
|
|
2752
2800
|
interface PaymentMethodOptionsCard {
|
|
2753
2801
|
readonly network?: string;
|
|
@@ -2764,6 +2812,19 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
2764
2812
|
}
|
|
2765
2813
|
interface PaymentMethodOptionsForm {
|
|
2766
2814
|
readonly card?: io.flow.stripe.v0.models.PaymentMethodOptionsCardForm;
|
|
2815
|
+
readonly klarna?: io.flow.stripe.v0.models.PaymentMethodOptionsKlarnaForm;
|
|
2816
|
+
}
|
|
2817
|
+
interface PaymentMethodOptionsKlarna {
|
|
2818
|
+
readonly capture_method?: io.flow.stripe.v0.enums.CaptureMethod;
|
|
2819
|
+
readonly preferred_locale?: io.flow.stripe.v0.enums.PreferredLocaleKlarna;
|
|
2820
|
+
readonly setup_future_usage?: io.flow.stripe.v0.enums.SetupFutureUsage;
|
|
2821
|
+
readonly payment_details?: io.flow.stripe.v0.models.PaymentDetails;
|
|
2822
|
+
}
|
|
2823
|
+
interface PaymentMethodOptionsKlarnaForm {
|
|
2824
|
+
readonly capture_method?: io.flow.stripe.v0.enums.CaptureMethod;
|
|
2825
|
+
readonly preferred_locale?: io.flow.stripe.v0.enums.PreferredLocaleKlarna;
|
|
2826
|
+
readonly setup_future_usage?: io.flow.stripe.v0.enums.SetupFutureUsage;
|
|
2827
|
+
readonly payment_details?: io.flow.stripe.v0.models.PaymentDetails;
|
|
2767
2828
|
}
|
|
2768
2829
|
interface PaymentOutcome {
|
|
2769
2830
|
readonly network_status?: io.flow.stripe.v0.enums.NetworkStatus;
|
|
@@ -3029,9 +3090,9 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
3029
3090
|
}
|
|
3030
3091
|
declare namespace io.flow.stripe.v0.unions {
|
|
3031
3092
|
type CardWallet = io.flow.stripe.v0.models.Masterpass | io.flow.stripe.v0.models.ApplePay | io.flow.stripe.v0.models.VisaCheckout;
|
|
3032
|
-
type PaymentMethodData = io.flow.stripe.v0.models.PaymentMethodDataCard;
|
|
3093
|
+
type PaymentMethodData = io.flow.stripe.v0.models.PaymentMethodDataCard | io.flow.stripe.v0.models.PaymentMethodDataKlarna;
|
|
3033
3094
|
type PaymentMethodDetails = io.flow.stripe.v0.models.PaymentMethodDetailsCard | io.flow.stripe.v0.models.PaymentMethodDetailsKlarna;
|
|
3034
|
-
type PaymentMethodForm = io.flow.stripe.v0.models.PaymentMethodFormCard;
|
|
3095
|
+
type PaymentMethodForm = io.flow.stripe.v0.models.PaymentMethodFormCard | io.flow.stripe.v0.models.PaymentMethodFormKlarna;
|
|
3035
3096
|
}
|
|
3036
3097
|
declare namespace io.flow.customer.v0.enums {
|
|
3037
3098
|
type CustomerAddressType = 'billing' | 'invoice' | 'shipping';
|
|
@@ -3115,7 +3176,7 @@ declare namespace io.flow.label.v0.enums {
|
|
|
3115
3176
|
type Direction = 'outbound' | 'return';
|
|
3116
3177
|
type LabelRequestMethod = 'flow_web_sync' | 'channel_web_async' | 'direct_api_sync' | 'direct_api_async' | 'bridge_api_sync' | 'partner_api_sync' | 'notification_requiring_crossdock' | 'flow_simulation_sync' | 'autogenerated';
|
|
3117
3178
|
type LabelTriggerMethod = 'autogenerated' | 'on_demand';
|
|
3118
|
-
type PackageDimensionsSource = 'provided' | 'dimensions_estimated';
|
|
3179
|
+
type PackageDimensionsSource = 'provided' | 'item_dimensions_estimated' | 'dimensions_estimated' | 'default_item_dimensions_estimated';
|
|
3119
3180
|
type ShipmentRecipient = 'customer' | 'return' | 'crossdock';
|
|
3120
3181
|
type TrackingNumberType = 'flow' | 'carrier';
|
|
3121
3182
|
}
|
|
@@ -7043,6 +7104,7 @@ declare namespace io.flow.channel.internal.v0.models {
|
|
|
7043
7104
|
readonly channel_id: string;
|
|
7044
7105
|
readonly external_order_reference: string;
|
|
7045
7106
|
readonly payment_request_id?: string;
|
|
7107
|
+
readonly order_edit_payment_request_ids?: string[];
|
|
7046
7108
|
readonly status: io.flow.channel.internal.v0.enums.ChannelOrderAcceptanceStatus;
|
|
7047
7109
|
readonly reasons: io.flow.channel.internal.v0.models.ChannelOrderAcceptanceReason[];
|
|
7048
7110
|
readonly next_action_from?: io.flow.channel.internal.v0.enums.ChannelOrderAcceptanceNextActionFrom;
|
|
@@ -7575,7 +7637,7 @@ declare namespace io.flow.billing.reporting.v0.enums {
|
|
|
7575
7637
|
type ReportStatus = 'created' | 'completed' | 'completed_no_records' | 'failed';
|
|
7576
7638
|
type ReportType = 'sales_record' | 'trueup_overview' | 'non_channel_payment_bank_account' | 'scheduled_payment';
|
|
7577
7639
|
type ReportingFulfillmentIsVirtual = 'all' | 'mixed' | 'none';
|
|
7578
|
-
type RevenueRecordType = 'sales' | 'refund';
|
|
7640
|
+
type RevenueRecordType = 'pending' | 'sales' | 'refund';
|
|
7579
7641
|
}
|
|
7580
7642
|
declare namespace io.flow.billing.reporting.v0.models {
|
|
7581
7643
|
interface FulfillmentShopperBreakdown {
|
|
@@ -9749,6 +9811,16 @@ declare namespace io.flow.payment.request.bundle.v0.models {
|
|
|
9749
9811
|
}
|
|
9750
9812
|
}
|
|
9751
9813
|
declare namespace io.flow.ratecard.v0.models {
|
|
9814
|
+
interface AdditionalHandlingServiceFee {
|
|
9815
|
+
readonly discriminator: 'additional_handling_service_fee';
|
|
9816
|
+
readonly length_girth_threshold?: number;
|
|
9817
|
+
readonly length_threshold?: number;
|
|
9818
|
+
readonly width_threshold?: number;
|
|
9819
|
+
readonly dimensional_unit?: io.flow.common.v0.enums.UnitOfMeasurement;
|
|
9820
|
+
readonly weight_threshold?: number;
|
|
9821
|
+
readonly weight_unit?: io.flow.common.v0.enums.UnitOfMeasurement;
|
|
9822
|
+
readonly amount: io.flow.common.v0.models.Money;
|
|
9823
|
+
}
|
|
9752
9824
|
interface CrossdockRatecardFee {
|
|
9753
9825
|
readonly discriminator: 'crossdock_ratecard_fee';
|
|
9754
9826
|
readonly amount: io.flow.common.v0.models.Money;
|
|
@@ -9786,6 +9858,15 @@ declare namespace io.flow.ratecard.v0.models {
|
|
|
9786
9858
|
readonly starts_at?: string;
|
|
9787
9859
|
readonly ends_at?: string;
|
|
9788
9860
|
}
|
|
9861
|
+
interface EeiFilingRatecardFee {
|
|
9862
|
+
readonly discriminator: 'eei_filing_ratecard_fee';
|
|
9863
|
+
readonly amount: io.flow.common.v0.models.Money;
|
|
9864
|
+
}
|
|
9865
|
+
interface EeiFilingServiceFee {
|
|
9866
|
+
readonly discriminator: 'eei_filing_service_fee';
|
|
9867
|
+
readonly amount: io.flow.common.v0.models.Money;
|
|
9868
|
+
readonly value_threshold: io.flow.common.v0.models.Money;
|
|
9869
|
+
}
|
|
9789
9870
|
interface EmergencySituationSurchargeRatecardFee {
|
|
9790
9871
|
readonly discriminator: 'emergency_situation_surcharge_ratecard_fee';
|
|
9791
9872
|
readonly amount: io.flow.common.v0.models.Money;
|
|
@@ -9807,6 +9888,26 @@ declare namespace io.flow.ratecard.v0.models {
|
|
|
9807
9888
|
readonly weight: number;
|
|
9808
9889
|
readonly unit: io.flow.common.v0.enums.UnitOfMeasurement;
|
|
9809
9890
|
}
|
|
9891
|
+
interface FixedCurrencyConversionRatecardFee {
|
|
9892
|
+
readonly discriminator: 'fixed_currency_conversion_ratecard_fee';
|
|
9893
|
+
readonly amount: io.flow.common.v0.models.Money;
|
|
9894
|
+
}
|
|
9895
|
+
interface FixedCurrencyConversionServiceFee {
|
|
9896
|
+
readonly discriminator: 'fixed_currency_conversion_service_fee';
|
|
9897
|
+
readonly conditions: io.flow.ratecard.v0.models.FixedFeeCondition[];
|
|
9898
|
+
}
|
|
9899
|
+
interface FixedDdpRatecardFee {
|
|
9900
|
+
readonly discriminator: 'fixed_ddp_ratecard_fee';
|
|
9901
|
+
readonly amount: io.flow.common.v0.models.Money;
|
|
9902
|
+
}
|
|
9903
|
+
interface FixedDdpServiceFee {
|
|
9904
|
+
readonly discriminator: 'fixed_ddp_service_fee';
|
|
9905
|
+
readonly conditions: io.flow.ratecard.v0.models.FixedFeeCondition[];
|
|
9906
|
+
}
|
|
9907
|
+
interface FixedFeeCondition {
|
|
9908
|
+
readonly countries: string[];
|
|
9909
|
+
readonly amount: io.flow.common.v0.models.Money;
|
|
9910
|
+
}
|
|
9810
9911
|
interface FuelSurchargeAmountByWeightServiceFee {
|
|
9811
9912
|
readonly discriminator: 'fuel_surcharge_amount_by_weight_service_fee';
|
|
9812
9913
|
readonly amount: io.flow.common.v0.models.Money;
|
|
@@ -9867,6 +9968,14 @@ declare namespace io.flow.ratecard.v0.models {
|
|
|
9867
9968
|
readonly id: string;
|
|
9868
9969
|
readonly ratecard: io.flow.ratecard.v0.models.RatecardSummary;
|
|
9869
9970
|
}
|
|
9971
|
+
interface LargePackageServiceFee {
|
|
9972
|
+
readonly discriminator: 'large_package_service_fee';
|
|
9973
|
+
readonly length_girth_threshold?: number;
|
|
9974
|
+
readonly dimensional_unit?: io.flow.common.v0.enums.UnitOfMeasurement;
|
|
9975
|
+
readonly weight_threshold?: number;
|
|
9976
|
+
readonly weight_unit?: io.flow.common.v0.enums.UnitOfMeasurement;
|
|
9977
|
+
readonly amount: io.flow.common.v0.models.Money;
|
|
9978
|
+
}
|
|
9870
9979
|
interface OversizePieceSurchargeRatecardFee {
|
|
9871
9980
|
readonly discriminator: 'oversize_piece_surcharge_ratecard_fee';
|
|
9872
9981
|
readonly dimensional_threshold?: number;
|
|
@@ -10091,6 +10200,11 @@ declare namespace io.flow.ratecard.v0.models {
|
|
|
10091
10200
|
readonly type: io.flow.common.v0.enums.ChangeType;
|
|
10092
10201
|
readonly ratecard: io.flow.ratecard.v0.models.Ratecard;
|
|
10093
10202
|
}
|
|
10203
|
+
interface RemoteAreaByWeightServiceFee {
|
|
10204
|
+
readonly discriminator: 'remote_area_by_weight_service_fee';
|
|
10205
|
+
readonly amount: io.flow.common.v0.models.Money;
|
|
10206
|
+
readonly weight_unit: io.flow.common.v0.enums.UnitOfMeasurement;
|
|
10207
|
+
}
|
|
10094
10208
|
interface RemoteAreaRatecardFee {
|
|
10095
10209
|
readonly discriminator: 'remote_area_ratecard_fee';
|
|
10096
10210
|
readonly amount: io.flow.common.v0.models.Money;
|
|
@@ -10103,6 +10217,15 @@ declare namespace io.flow.ratecard.v0.models {
|
|
|
10103
10217
|
readonly discriminator: 'return_package_ratecard_fee';
|
|
10104
10218
|
readonly amount: number;
|
|
10105
10219
|
}
|
|
10220
|
+
interface SecurityRatecardFee {
|
|
10221
|
+
readonly discriminator: 'security_ratecard_fee';
|
|
10222
|
+
readonly amount: io.flow.common.v0.models.Money;
|
|
10223
|
+
}
|
|
10224
|
+
interface SecurityServiceFee {
|
|
10225
|
+
readonly discriminator: 'security_service_fee';
|
|
10226
|
+
readonly amount: io.flow.common.v0.models.Money;
|
|
10227
|
+
readonly countries: string[];
|
|
10228
|
+
}
|
|
10106
10229
|
interface ShipmentWindow {
|
|
10107
10230
|
readonly from: number;
|
|
10108
10231
|
readonly to: number;
|
|
@@ -10111,8 +10234,8 @@ declare namespace io.flow.ratecard.v0.models {
|
|
|
10111
10234
|
declare namespace io.flow.ratecard.v0.unions {
|
|
10112
10235
|
type FuelSurchargeRate = io.flow.ratecard.v0.models.FuelSurchargePercent | io.flow.ratecard.v0.models.FuelSurchargeByWeight;
|
|
10113
10236
|
type RatecardEstimate = io.flow.ratecard.v0.models.RatecardEstimateV1 | io.flow.ratecard.v0.models.RatecardEstimateV2 | io.flow.ratecard.v0.models.RatecardEstimateV3 | io.flow.ratecard.v0.models.RatecardEstimateV4;
|
|
10114
|
-
type RatecardFee = io.flow.ratecard.v0.models.DdpRatecardFee | io.flow.ratecard.v0.models.FuelSurchargeRatecardFee | io.flow.ratecard.v0.models.OversizePieceSurchargeRatecardFee | io.flow.ratecard.v0.models.ReturnPackageRatecardFee | io.flow.ratecard.v0.models.CrossdockRatecardFee | io.flow.ratecard.v0.models.RemoteAreaRatecardFee | io.flow.ratecard.v0.models.EmergencySituationSurchargeRatecardFee | io.flow.ratecard.v0.models.PeakSurchargeRatecardFee | io.flow.ratecard.v0.models.DutiesTaxesPaidSurchargeRatecardFee;
|
|
10115
|
-
type ServiceFee = io.flow.ratecard.v0.models.FuelSurchargeServiceFee | io.flow.ratecard.v0.models.FuelSurchargeAmountByWeightServiceFee | io.flow.ratecard.v0.models.RemoteAreaServiceFee | io.flow.ratecard.v0.models.EmergencySituationSurchargeServiceFee | io.flow.ratecard.v0.models.PeakSurchargeServiceFee | io.flow.ratecard.v0.models.PeakSurchargeByWeightServiceFee | io.flow.ratecard.v0.models.DutiesTaxesPaidSurchargeServiceFee | io.flow.ratecard.v0.models.OversizePieceSurchargeServiceFee;
|
|
10237
|
+
type RatecardFee = io.flow.ratecard.v0.models.DdpRatecardFee | io.flow.ratecard.v0.models.FuelSurchargeRatecardFee | io.flow.ratecard.v0.models.OversizePieceSurchargeRatecardFee | io.flow.ratecard.v0.models.ReturnPackageRatecardFee | io.flow.ratecard.v0.models.CrossdockRatecardFee | io.flow.ratecard.v0.models.RemoteAreaRatecardFee | io.flow.ratecard.v0.models.EmergencySituationSurchargeRatecardFee | io.flow.ratecard.v0.models.PeakSurchargeRatecardFee | io.flow.ratecard.v0.models.DutiesTaxesPaidSurchargeRatecardFee | io.flow.ratecard.v0.models.SecurityRatecardFee | io.flow.ratecard.v0.models.EeiFilingRatecardFee | io.flow.ratecard.v0.models.FixedDdpRatecardFee | io.flow.ratecard.v0.models.FixedCurrencyConversionRatecardFee;
|
|
10238
|
+
type ServiceFee = io.flow.ratecard.v0.models.FuelSurchargeServiceFee | io.flow.ratecard.v0.models.FuelSurchargeAmountByWeightServiceFee | io.flow.ratecard.v0.models.RemoteAreaServiceFee | io.flow.ratecard.v0.models.EmergencySituationSurchargeServiceFee | io.flow.ratecard.v0.models.PeakSurchargeServiceFee | io.flow.ratecard.v0.models.PeakSurchargeByWeightServiceFee | io.flow.ratecard.v0.models.DutiesTaxesPaidSurchargeServiceFee | io.flow.ratecard.v0.models.OversizePieceSurchargeServiceFee | io.flow.ratecard.v0.models.RemoteAreaByWeightServiceFee | io.flow.ratecard.v0.models.AdditionalHandlingServiceFee | io.flow.ratecard.v0.models.LargePackageServiceFee | io.flow.ratecard.v0.models.SecurityServiceFee | io.flow.ratecard.v0.models.FixedDdpServiceFee | io.flow.ratecard.v0.models.FixedCurrencyConversionServiceFee | io.flow.ratecard.v0.models.EeiFilingServiceFee;
|
|
10116
10239
|
}
|
|
10117
10240
|
declare namespace io.flow.token.v0.models {
|
|
10118
10241
|
interface ChannelToken {
|
|
@@ -10544,7 +10667,7 @@ declare namespace io.flow.price.v0.unions {
|
|
|
10544
10667
|
}
|
|
10545
10668
|
declare namespace io.flow.trueup.v0.enums {
|
|
10546
10669
|
type CarrierChargeReason = 'return_to_origin' | 'rejection' | 'other';
|
|
10547
|
-
type TrueupSurchargeType = 'fuel' | 'remote_area' | 'oversize' | 'duties_paid' | 'emergency' | 'peak' | 'address_correction';
|
|
10670
|
+
type TrueupSurchargeType = 'fuel' | 'remote_area' | 'oversize' | 'duties_paid' | 'emergency' | 'peak' | 'address_correction' | 'security' | 'eei_filing' | 'fixed_ddp' | 'fixed_currency_conversion';
|
|
10548
10671
|
}
|
|
10549
10672
|
declare namespace io.flow.trueup.v0.models {
|
|
10550
10673
|
interface DeadWeight {
|
|
@@ -11361,7 +11484,7 @@ declare namespace io.flow.inventory.v0.unions {
|
|
|
11361
11484
|
declare namespace io.flow.permission.v0.enums {
|
|
11362
11485
|
type AuthenticationTechnique = 'anonymous' | 'session' | 'token' | 'partner_token' | 'user';
|
|
11363
11486
|
type FlowBehavior = 'view_consumer_data';
|
|
11364
|
-
type FlowRole = 'organization_admin' | 'organization_merchant' | 'organization_customer_service' | 'organization_fulfillment' | 'organization_marketing' | 'organization_finance' | 'flow_operations' | 'channel_admin' | 'channel_organization_admin';
|
|
11487
|
+
type FlowRole = 'organization_admin' | 'organization_merchant' | 'organization_customer_service' | 'organization_fulfillment' | 'organization_marketing' | 'organization_finance' | 'organization_classification' | 'flow_operations' | 'channel_admin' | 'channel_organization_admin';
|
|
11365
11488
|
type PermittedHttpMethod = 'GET' | 'POST' | 'PUT' | 'DELETE' | 'PATCH';
|
|
11366
11489
|
}
|
|
11367
11490
|
declare namespace io.flow.permission.v0.models {
|
|
@@ -11482,6 +11605,7 @@ declare namespace io.flow.item.v0.models {
|
|
|
11482
11605
|
}
|
|
11483
11606
|
}
|
|
11484
11607
|
declare namespace io.flow.billing.internal.v0.enums {
|
|
11608
|
+
type AccountPaymentHoldReason = 'fraudulent' | 'invalid_bank_account';
|
|
11485
11609
|
type AccountSettingLiabilitiesMethod = 'withholding' | 'transaction';
|
|
11486
11610
|
type AccountType = 'channel' | 'organization';
|
|
11487
11611
|
type AdjustmentTransactionType = 'adjustment' | 'reversal';
|
|
@@ -11489,10 +11613,9 @@ declare namespace io.flow.billing.internal.v0.enums {
|
|
|
11489
11613
|
type BankPaymentStatusCode = 'scheduled' | 'sent' | 'failed';
|
|
11490
11614
|
type BillingAllocationKey = 'freight_cost' | 'adjustment' | 'vat_deminimis' | 'duty_deminimis' | 'duties_item_price' | 'duties_freight' | 'duties_insurance' | 'vat_item_price' | 'vat_freight' | 'vat_insurance' | 'vat_duties_item_price' | 'vat_duties_freight' | 'vat_duties_insurance' | 'item_price' | 'item_discount' | 'rounding' | 'insurance' | 'shipping' | 'order_discount' | 'subtotal_percent_sales_margin' | 'subtotal_vat_percent_sales_margin' | 'subtotal_duty_percent_sales_margin' | 'vat_subsidy' | 'duty_subsidy' | 'fuel_surcharge' | 'remote_area_surcharge';
|
|
11491
11615
|
type BillingStatementAttachmentKey = 'invoice' | 'statement' | 'consumer_invoice' | 'credit_memo' | 'channel_billed' | 'transactions' | 'virtual_card' | 'tax_remittance' | 'manual' | 'orders' | 'label' | 'order_service' | 'tax' | 'duty' | 'trueup' | 'carrier_charge' | 'all';
|
|
11492
|
-
type BillingStatementBatchFileKey = 'summary';
|
|
11493
11616
|
type BillingTransactionStatus = 'pending' | 'pending_proof' | 'posted';
|
|
11494
11617
|
type BillingTransactionType = 'manual' | 'subscription' | 'invoice' | 'transfer' | 'adjustment' | 'reversal' | 'capture' | 'refund' | 'virtual_card_capture' | 'virtual_card_refund' | 'tax_remittance' | 'fully_subsidized_order' | 'credit_payment' | 'dispute' | 'channel' | 'label' | 'order' | 'channel_billed' | 'tax' | 'duty' | 'trueup' | 'carrier_charge';
|
|
11495
|
-
type CarrierChargeTransactionType = 'adjustment' | 'reversal' | 'charge';
|
|
11618
|
+
type CarrierChargeTransactionType = 'adjustment' | 'reversal' | 'charge' | 'revenue_share';
|
|
11496
11619
|
type ChannelBilledTransactionType = 'adjustment' | 'reversal' | 'channel_initiated';
|
|
11497
11620
|
type ChannelTransactionType = 'adjustment' | 'reversal' | 'processing';
|
|
11498
11621
|
type DisputeTransactionType = 'adjustment' | 'dispute';
|
|
@@ -11539,6 +11662,15 @@ declare namespace io.flow.billing.internal.v0.models {
|
|
|
11539
11662
|
interface AccountOrigin {
|
|
11540
11663
|
readonly country: string;
|
|
11541
11664
|
}
|
|
11665
|
+
interface AccountPaymentHold {
|
|
11666
|
+
readonly id: string;
|
|
11667
|
+
readonly account: io.flow.billing.internal.v0.models.SimpleAccountReference;
|
|
11668
|
+
readonly reason: io.flow.billing.internal.v0.enums.AccountPaymentHoldReason;
|
|
11669
|
+
}
|
|
11670
|
+
interface AccountPaymentHoldForm {
|
|
11671
|
+
readonly account_id: string;
|
|
11672
|
+
readonly reason: io.flow.billing.internal.v0.enums.AccountPaymentHoldReason;
|
|
11673
|
+
}
|
|
11542
11674
|
interface AccountProcessingRateForm {
|
|
11543
11675
|
readonly query: string;
|
|
11544
11676
|
readonly capture: number;
|
|
@@ -11573,7 +11705,7 @@ declare namespace io.flow.billing.internal.v0.models {
|
|
|
11573
11705
|
readonly merchant_of_record_fee?: number;
|
|
11574
11706
|
readonly duty_guarantee_fee?: number;
|
|
11575
11707
|
readonly transfer_fee?: number;
|
|
11576
|
-
readonly
|
|
11708
|
+
readonly negative_balance_fee?: number;
|
|
11577
11709
|
readonly order_service_fee?: io.flow.billing.internal.v0.models.TieredFee;
|
|
11578
11710
|
readonly label_fees?: io.flow.billing.internal.v0.models.AccountSettingLabelFees;
|
|
11579
11711
|
readonly charge_label_cost_directly: boolean;
|
|
@@ -11730,6 +11862,7 @@ declare namespace io.flow.billing.internal.v0.models {
|
|
|
11730
11862
|
readonly b2b_tax_remittance_days?: number;
|
|
11731
11863
|
readonly mor_fee?: number;
|
|
11732
11864
|
readonly duty_guarantee_fee?: number;
|
|
11865
|
+
readonly negative_balance_fee?: number;
|
|
11733
11866
|
readonly order_service_fee?: io.flow.billing.internal.v0.models.TieredFee;
|
|
11734
11867
|
readonly label_fee?: io.flow.billing.internal.v0.models.TieredFee;
|
|
11735
11868
|
}
|
|
@@ -11738,17 +11871,6 @@ declare namespace io.flow.billing.internal.v0.models {
|
|
|
11738
11871
|
readonly name: string;
|
|
11739
11872
|
readonly url: string;
|
|
11740
11873
|
}
|
|
11741
|
-
interface BillingStatementBatch {
|
|
11742
|
-
readonly id: string;
|
|
11743
|
-
}
|
|
11744
|
-
interface BillingStatementBatchReference {
|
|
11745
|
-
readonly id: string;
|
|
11746
|
-
}
|
|
11747
|
-
interface BillingStatementBatchStatement {
|
|
11748
|
-
readonly id: string;
|
|
11749
|
-
readonly batch: io.flow.billing.internal.v0.models.BillingStatementBatchReference;
|
|
11750
|
-
readonly statement: io.flow.billing.internal.v0.models.BillingStatementReference;
|
|
11751
|
-
}
|
|
11752
11874
|
interface BillingStatementReference {
|
|
11753
11875
|
readonly id: string;
|
|
11754
11876
|
}
|
|
@@ -11984,6 +12106,7 @@ declare namespace io.flow.billing.internal.v0.models {
|
|
|
11984
12106
|
readonly fx?: io.flow.billing.internal.v0.models.Fee;
|
|
11985
12107
|
readonly duty_guarantee?: io.flow.billing.internal.v0.models.Fee;
|
|
11986
12108
|
readonly transfer?: io.flow.billing.internal.v0.models.Fee;
|
|
12109
|
+
readonly negative_balance?: io.flow.billing.internal.v0.models.Fee;
|
|
11987
12110
|
}
|
|
11988
12111
|
interface FinanceBankAccount {
|
|
11989
12112
|
readonly id: string;
|
|
@@ -12019,6 +12142,13 @@ declare namespace io.flow.billing.internal.v0.models {
|
|
|
12019
12142
|
readonly bank_account?: io.flow.billing.internal.v0.models.BankAccountReference;
|
|
12020
12143
|
readonly created_at: string;
|
|
12021
12144
|
}
|
|
12145
|
+
interface FlowBillingStatement {
|
|
12146
|
+
readonly id: string;
|
|
12147
|
+
readonly account: io.flow.billing.v0.models.AccountReference;
|
|
12148
|
+
readonly period: io.flow.common.v0.models.DatetimeRange;
|
|
12149
|
+
readonly totals: io.flow.billing.internal.v0.models.BillingStatementTotals;
|
|
12150
|
+
readonly attachments: io.flow.billing.internal.v0.models.BillingStatementAttachment[];
|
|
12151
|
+
}
|
|
12022
12152
|
interface FxFee {
|
|
12023
12153
|
readonly base: io.flow.common.v0.models.Money;
|
|
12024
12154
|
readonly local: io.flow.common.v0.models.Money;
|
|
@@ -13827,8 +13957,9 @@ declare namespace io.flow.checkout.v0.unions {
|
|
|
13827
13957
|
type CheckoutTokenForm = io.flow.checkout.v0.models.CheckoutTokenOrderForm | io.flow.checkout.v0.models.CheckoutTokenReferenceForm;
|
|
13828
13958
|
}
|
|
13829
13959
|
declare namespace io.flow.organization.onboarding.state.v0.enums {
|
|
13960
|
+
type MerchantDisabledReason = 'merchant_deactivated' | 'merchant_rejected';
|
|
13830
13961
|
type MerchantRejectedReason = 'merchant_ubo_is_pep' | 'merchant_catalog_is_unsupportable' | 'merchant_failed_kyb_review';
|
|
13831
|
-
type OnboardingBlockedReason = 'street_address_is_blank_3pl' | 'street_address_is_po_box_3pl' | 'business_street_address_is_blank' | 'business_street_address_is_po_box' | 'exception_merchant';
|
|
13962
|
+
type OnboardingBlockedReason = 'street_address_is_blank_3pl' | 'street_address_is_po_box_3pl' | 'business_street_address_is_blank' | 'business_street_address_is_po_box' | 'exception_merchant' | 'application_missing';
|
|
13832
13963
|
}
|
|
13833
13964
|
declare namespace io.flow.organization.onboarding.state.v0.models {
|
|
13834
13965
|
interface ActivationPutForm {
|
|
@@ -13849,6 +13980,10 @@ declare namespace io.flow.organization.onboarding.state.v0.models {
|
|
|
13849
13980
|
readonly discriminator: 'merchant_deactivated';
|
|
13850
13981
|
readonly reason: string;
|
|
13851
13982
|
}
|
|
13983
|
+
interface MerchantDisabled {
|
|
13984
|
+
readonly discriminator: 'merchant_disabled';
|
|
13985
|
+
readonly reason: io.flow.organization.onboarding.state.v0.enums.MerchantDisabledReason;
|
|
13986
|
+
}
|
|
13852
13987
|
interface MerchantRejected {
|
|
13853
13988
|
readonly discriminator: 'merchant_rejected';
|
|
13854
13989
|
readonly reason: io.flow.organization.onboarding.state.v0.enums.MerchantRejectedReason;
|
|
@@ -13886,7 +14021,7 @@ declare namespace io.flow.organization.onboarding.state.v0.models {
|
|
|
13886
14021
|
}
|
|
13887
14022
|
}
|
|
13888
14023
|
declare namespace io.flow.organization.onboarding.state.v0.unions {
|
|
13889
|
-
type OnboardingState = io.flow.organization.onboarding.state.v0.models.InComplianceReview | io.flow.organization.onboarding.state.v0.models.SetupInProgress | io.flow.organization.onboarding.state.v0.models.MerchantRejected | io.flow.organization.onboarding.state.v0.models.SetupBlocked | io.flow.organization.onboarding.state.v0.models.SetupCompleted | io.flow.organization.onboarding.state.v0.models.MerchantActivated | io.flow.organization.onboarding.state.v0.models.MerchantDeactivated;
|
|
14024
|
+
type OnboardingState = io.flow.organization.onboarding.state.v0.models.InComplianceReview | io.flow.organization.onboarding.state.v0.models.SetupInProgress | io.flow.organization.onboarding.state.v0.models.MerchantRejected | io.flow.organization.onboarding.state.v0.models.SetupBlocked | io.flow.organization.onboarding.state.v0.models.SetupCompleted | io.flow.organization.onboarding.state.v0.models.MerchantActivated | io.flow.organization.onboarding.state.v0.models.MerchantDeactivated | io.flow.organization.onboarding.state.v0.models.MerchantDisabled;
|
|
13890
14025
|
}
|
|
13891
14026
|
declare namespace io.flow.fraud.v0.enums {
|
|
13892
14027
|
type FraudEmailRuleDecision = 'approved' | 'declined';
|
|
@@ -14187,6 +14322,7 @@ declare namespace io.flow.billing.bank.account.v0.unions {
|
|
|
14187
14322
|
type BankAccountInfo = io.flow.billing.bank.account.v0.models.BankAccountInfoUsa | io.flow.billing.bank.account.v0.models.BankAccountInfoCan | io.flow.billing.bank.account.v0.models.BankAccountInfoGbr | io.flow.billing.bank.account.v0.models.BankAccountInfoFra | io.flow.billing.bank.account.v0.models.BankAccountInfoIta;
|
|
14188
14323
|
}
|
|
14189
14324
|
declare namespace io.flow.internal.v0.enums {
|
|
14325
|
+
type AccountPaymentHoldReason = 'fraudulent' | 'invalid_bank_account';
|
|
14190
14326
|
type AccountSettingLiabilitiesMethod = 'withholding' | 'transaction';
|
|
14191
14327
|
type AccountType = 'channel' | 'organization';
|
|
14192
14328
|
type AddressConfigurationSettingProvinceCode = 'iso_3166_2' | 'name';
|
|
@@ -14198,9 +14334,8 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
14198
14334
|
type BankPaymentPromiseCompletedMethod = 'credit' | 'time';
|
|
14199
14335
|
type BankPaymentStatusCode = 'scheduled' | 'sent' | 'failed';
|
|
14200
14336
|
type BillingAllocationKey = 'freight_cost' | 'adjustment' | 'vat_deminimis' | 'duty_deminimis' | 'duties_item_price' | 'duties_freight' | 'duties_insurance' | 'vat_item_price' | 'vat_freight' | 'vat_insurance' | 'vat_duties_item_price' | 'vat_duties_freight' | 'vat_duties_insurance' | 'item_price' | 'item_discount' | 'rounding' | 'insurance' | 'shipping' | 'order_discount' | 'subtotal_percent_sales_margin' | 'subtotal_vat_percent_sales_margin' | 'subtotal_duty_percent_sales_margin' | 'vat_subsidy' | 'duty_subsidy' | 'fuel_surcharge' | 'remote_area_surcharge';
|
|
14201
|
-
type BillingMetricKey = 'adjustment_transactions_count' | 'adjustment_transactions_total' | 'capture_transactions_count' | 'capture_transactions_ignored_fraud_count' | 'capture_transactions_ignored_fully_refunded_count' | 'capture_transactions_ignored_other_count' | 'capture_transactions_ignored_previously_processed_count' | 'capture_queued_count' | 'capture_transactions_total' | 'carrier_charge_transactions_count' | 'carrier_charge_transactions_total' | 'channel_transactions_processing_count' | 'channel_transactions_processing_total' | 'channel_transactions_adjustment_count' | 'channel_transactions_adjustment_total' | 'channel_transactions_reversal_count' | 'channel_transactions_reversal_total' | 'channel_billed_transactions_count' | 'channel_billed_transactions_total' | 'credit_payment_transactions_count' | 'credit_payment_transactions_total' | 'duty_transactions_count' | 'duty_transactions_total' | 'fully_subsidized_order_transactions_count' | 'fully_subsidized_order_transactions_total' | 'billable_label_transactions_count' | 'billable_label_transactions_count_for_unique_orders' | 'billable_label_transactions_total' | 'revenue_share_label_transactions_count' | 'revenue_share_label_transactions_count_for_unique_orders' | 'revenue_share_label_transactions_total' | 'manual_transactions_count' | 'manual_transactions_total' | 'order_transactions_count' | 'order_transactions_total' | 'refund_transactions_count' | 'refund_transactions_ignored_fraud_count' | 'refund_transactions_ignored_fully_refunded_count' | 'refund_transactions_ignored_other_count' | 'refund_transactions_ignored_previously_processed_count' | 'refund_queued_count' | 'refund_transactions_total' | 'reversal_order_cancellations_transactions_count' | 'reversal_order_cancellations_transactions_total' | 'reversal_external_fulfillment_transactions_count' | 'reversal_external_fulfillment_transactions_total' | 'reversal_other_transactions_count' | 'reversal_other_transactions_total' | 'reversal_all_transactions_count' | 'reversal_all_transactions_total' | 'tax_transactions_count' | 'tax_transactions_total' | 'transfer_transactions_count' | 'transfer_transactions_total' | 'trueup_transactions_count' | 'trueup_transactions_total' | 'fulfillments_count' | 'fulfilled_via_replacement_order_count' | 'percentage_orders_with_fulfillment_proof_2_weeks' | 'percentage_orders_with_fulfillment_proof_4_weeks' | 'percentage_orders_with_fulfillment_proof_6_weeks' | 'percentage_orders_with_fulfillment_proof_all' | 'pending_payouts_max_age_in_millis' | 'shipping_notifications_count' | 'queued_capture_unprocessed_count' | 'queued_refund_unprocessed_count' | 'queued_label_invoice_request_unprocessed_count' | 'queued_other_unprocessed_count' | '
|
|
14337
|
+
type BillingMetricKey = 'adjustment_transactions_count' | 'adjustment_transactions_total' | 'capture_transactions_count' | 'capture_transactions_ignored_fraud_count' | 'capture_transactions_ignored_fully_refunded_count' | 'capture_transactions_ignored_other_count' | 'capture_transactions_ignored_previously_processed_count' | 'capture_queued_count' | 'capture_transactions_total' | 'carrier_charge_transactions_count' | 'carrier_charge_transactions_total' | 'channel_transactions_processing_count' | 'channel_transactions_processing_total' | 'channel_transactions_adjustment_count' | 'channel_transactions_adjustment_total' | 'channel_transactions_reversal_count' | 'channel_transactions_reversal_total' | 'channel_billed_transactions_count' | 'channel_billed_transactions_total' | 'credit_payment_transactions_count' | 'credit_payment_transactions_total' | 'duty_transactions_count' | 'duty_transactions_total' | 'fully_subsidized_order_transactions_count' | 'fully_subsidized_order_transactions_total' | 'billable_label_transactions_count' | 'billable_label_transactions_count_for_unique_orders' | 'billable_label_transactions_total' | 'revenue_share_label_transactions_count' | 'revenue_share_label_transactions_count_for_unique_orders' | 'revenue_share_label_transactions_total' | 'manual_transactions_count' | 'manual_transactions_total' | 'order_transactions_count' | 'order_transactions_total' | 'refund_transactions_count' | 'refund_transactions_ignored_fraud_count' | 'refund_transactions_ignored_fully_refunded_count' | 'refund_transactions_ignored_other_count' | 'refund_transactions_ignored_previously_processed_count' | 'refund_queued_count' | 'refund_transactions_total' | 'refund_transactions_succeeded_then_failed_count' | 'refund_transactions_succeeded_then_failed_total' | 'reversal_order_cancellations_transactions_count' | 'reversal_order_cancellations_transactions_total' | 'reversal_external_fulfillment_transactions_count' | 'reversal_external_fulfillment_transactions_total' | 'reversal_other_transactions_count' | 'reversal_other_transactions_total' | 'reversal_all_transactions_count' | 'reversal_all_transactions_total' | 'tax_transactions_count' | 'tax_transactions_total' | 'transfer_transactions_count' | 'transfer_transactions_total' | 'trueup_transactions_count' | 'trueup_transactions_total' | 'fulfillments_count' | 'fulfilled_via_replacement_order_count' | 'percentage_orders_with_fulfillment_proof_2_weeks' | 'percentage_orders_with_fulfillment_proof_4_weeks' | 'percentage_orders_with_fulfillment_proof_6_weeks' | 'percentage_orders_with_fulfillment_proof_all' | 'pending_payouts_max_age_in_millis' | 'shipping_notifications_count' | 'queued_capture_unprocessed_count' | 'queued_refund_unprocessed_count' | 'queued_label_invoice_request_unprocessed_count' | 'queued_other_unprocessed_count' | 'task_snooze_count' | 'task_snooze_ending_in_48_hours_count' | 'payouts_scheduled_count' | 'payouts_scheduled_total' | 'payouts_sent_count' | 'payouts_sent_total' | 'payouts_failed_count' | 'payouts_failed_total' | 'average_payout_amount' | 'capture_transaction_with_zero_fees_and_no_channel_transaction_count' | 'percentage_billable_label_transactions_with_carrier_charge_10_days' | 'percentage_billable_label_transactions_with_carrier_charge_20_days' | 'percentage_billable_label_transactions_with_carrier_charge_30_days' | 'percentage_billable_label_transactions_with_carrier_charge_60_days' | 'percentage_billable_label_transactions_with_carrier_charge_90_days' | 'percentage_bank_account_inserts' | 'percentage_bank_account_updates' | 'percentage_bank_account_unique_updates' | 'percentage_bank_account_deletes' | 'negative_balance_number_accounts' | 'negative_balance_number_accounts_with_order_in_past_30_days' | 'negative_balance_number_accounts_without_order_in_past_30_days' | 'negative_balance_total' | 'negative_balance_total_with_order_in_past_30_days' | 'negative_balance_total_without_order_in_past_30_days' | 'negative_balance_single_account_max' | 'negative_balance_fee_total' | 'accounts_with_payment_holds_count' | 'accounts_with_payment_holds_pending_payment_promise_count' | 'accounts_with_payment_holds_pending_payment_promise_total' | 'accounts_with_final_statements_count' | 'accounts_with_final_statements_pending_transaction_count' | 'accounts_with_final_statements_pending_transaction_total';
|
|
14202
14338
|
type BillingStatementAttachmentKey = 'invoice' | 'statement' | 'consumer_invoice' | 'credit_memo' | 'channel_billed' | 'transactions' | 'virtual_card' | 'tax_remittance' | 'manual' | 'orders' | 'label' | 'order_service' | 'tax' | 'duty' | 'trueup' | 'carrier_charge' | 'all';
|
|
14203
|
-
type BillingStatementBatchFileKey = 'summary';
|
|
14204
14339
|
type BillingTransactionStatus = 'pending' | 'pending_proof' | 'posted';
|
|
14205
14340
|
type BillingTransactionType = 'manual' | 'subscription' | 'invoice' | 'transfer' | 'adjustment' | 'reversal' | 'capture' | 'refund' | 'virtual_card_capture' | 'virtual_card_refund' | 'tax_remittance' | 'fully_subsidized_order' | 'credit_payment' | 'dispute' | 'channel' | 'label' | 'order' | 'channel_billed' | 'tax' | 'duty' | 'trueup' | 'carrier_charge';
|
|
14206
14341
|
type BlazeCheckoutEvent = 'begin_checkout' | 'select_promotion' | 'add_shipping_info' | 'add_payment_info' | 'purchase';
|
|
@@ -14220,7 +14355,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
14220
14355
|
type ChannelOrderFulfillmentStatusCode = 'unfulfilled' | 'fulfilled' | 'partial' | 'cancelled';
|
|
14221
14356
|
type ChannelTransactionType = 'adjustment' | 'reversal' | 'processing';
|
|
14222
14357
|
type ChargeEstimateSource = 'global-e' | 'shopify';
|
|
14223
|
-
type ChargeInputType = 'fuelsc' | 'incoterm_ddp' | 'delivery_confirmation' | 'base_charge' | 'package_pickup' | 'insurance' | 'usps_first_mile' | 'oversize_piece' | 'incoterm_dap' | 'emergency_situation' | 'remote_area_delivery';
|
|
14358
|
+
type ChargeInputType = 'fuelsc' | 'incoterm_ddp' | 'delivery_confirmation' | 'base_charge' | 'package_pickup' | 'insurance' | 'usps_first_mile' | 'oversize_piece' | 'incoterm_dap' | 'emergency_situation' | 'remote_area_delivery' | 'customs_clearance_surcharge' | 'security_surcharge' | 'duties_fx_surcharge';
|
|
14224
14359
|
type ChargebackPaymentStatus = 'captured' | 'refunded';
|
|
14225
14360
|
type ChargebackProcessStatus = 'inquiry' | 'open' | 'closed';
|
|
14226
14361
|
type CheckoutAddAuthorizationErrorCode = 'checkout_not_found' | 'authorization_not_found';
|
|
@@ -14327,7 +14462,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
14327
14462
|
type DutyTransactionType = 'adjustment' | 'reversal' | 'duty';
|
|
14328
14463
|
type EmptyAttribute = 'irrelevant';
|
|
14329
14464
|
type ErpFileType = 'vendor';
|
|
14330
|
-
type EventType = 'adyen_authorization_deleted' | 'adyen_authorization_upserted' | 'adyen_cancel_deleted' | 'adyen_cancel_upserted' | 'adyen_capture_deleted' | 'adyen_capture_upserted' | 'adyen_refund_deleted' | 'adyen_refund_upserted' | 'index_assignment_upserted' | 'index_assignment_deleted' | 'merchant_upserted' | 'merchant_deleted' | 'account_upserted' | 'account_upserted_v2' | 'account_deleted_v2' | 'account_contact_upserted' | 'account_contact_deleted' | 'billing_statement_upserted' | 'billing_statement_deleted' | 'tax_remittance_transaction_upserted' | 'tax_remittance_transaction_deleted' | 'channel_account_upserted_v2' | 'channel_account_deleted' | 'organization_account_upserted_v2' | 'organization_account_deleted' | 'account_transactions_export_request' | 'account_orders_export_request' | 'main_transaction_upserted' | 'main_transaction_deleted' | 'main_transaction_upserted_v2' | 'main_transaction_deleted_v2' | 'transfer_transaction_upserted' | 'transfer_transaction_deleted' | 'transfer_transaction_upserted_v2' | 'transfer_transaction_deleted_v2' | 'processing_transaction_upserted' | 'processing_transaction_deleted' | 'bank_payment_upserted' | 'bank_payment_upserted_v2' | 'bank_payment_deleted_v2' | 'channel_transaction_upserted' | 'channel_transaction_deleted' | 'order_transaction_upserted' | 'order_transaction_deleted' | 'label_transaction_upserted' | 'label_transaction_deleted' | 'channel_billed_transaction_upserted' | 'channel_billed_transaction_deleted' | 'tax_transaction_upserted' | 'tax_transaction_deleted' | 'duty_transaction_upserted' | 'duty_transaction_deleted' | 'transaction_statement_upserted' | 'transaction_statement_deleted' | 'daily_value_upserted' | 'daily_value_deleted' | 'sales_record_upserted' | 'sales_record_deleted' | 'revenue_record_upserted' | 'revenue_record_deleted' | 'calculator_organization_settings_upserted' | 'calculator_organization_settings_deleted' | 'carrier_account_upserted_v2' | 'carrier_account_deleted' | 'label_generation_settings_upserted' | 'label_generation_settings_deleted' | 'catalog_import_request' | 'exclusion_rule_upserted' | 'exclusion_rule_deleted' | 'exclusion_rule_export_request' | 'catalog_item_region_availabilities_published' | 'return_policy_upserted' | 'return_policy_deleted' | 'return_policy_item_result_upserted' | 'return_policy_item_result_deleted' | 'catalog_settings_upserted' | 'catalog_settings_deleted' | 'channel_order_acceptance_upserted' | 'channel_order_acceptance_deleted' | 'checkout_configuration_upserted' | 'checkout_configuration_deleted' | 'commercial_invoice_internal_upserted' | 'commercial_invoice_internal_deleted' | 'localized_content_upserted' | 'localization_upserted' | 'internal_channel_rate_deleted' | 'internal_channel_rate_upserted' | 'rate_deleted' | 'rate_upserted' | 'spot_rate_deleted' | 'spot_rate_upserted' | 'usd_spot_rate_deleted' | 'usd_spot_rate_upserted' | 'rate_deleted_v2' | 'rate_upserted_v2' | 'organization_currency_setting_upserted' | 'organization_currency_setting_deleted' | 'channel_currency_setting_upserted' | 'channel_currency_setting_deleted' | 'customer_purge_upserted' | 'customs_description_import' | 'customs_description_tariffs_import' | 'item_dimension_estimate_upserted_v2' | 'item_dimension_estimate_deleted_v2' | 'dispute_upserted' | 'dispute_deleted' | 'duty_rates_published_v2' | 'duty_rate_request' | 'duty_rate_bulk_request' | 'duty_raw_upserted' | 'duty_raw_bulk_upserted' | 'duty_rate_upserted' | 'duty_rate_response' | 'duty_rate_bulk_response' | 'item_sales_margin_deleted' | 'item_sales_margin_upserted' | 'order_attribute_deleted' | 'order_attribute_upserted' | 'experience_export_request' | 'experience_import_request' | 'submitted_order_upserted' | 'levy_rate_summary_upserted' | 'experiment_upserted' | 'experiment_deleted' | 'experiment_results_upserted' | 'experiment_results_deleted' | 'daily_experiment_results_upserted' | 'daily_experiment_results_deleted' | 'experiment_milestone_upserted' | 'experiment_milestone_deleted' | 'export_completed' | 'export_failed' | 'feature_upserted' | 'feature_deleted' | 'organization_boolean_value_upserted' | 'organization_boolean_value_deleted' | 'account_settings_upserted' | 'account_settings_deleted' | 'account_processing_rates_upserted' | 'account_processing_rates_deleted' | 'billing_organization_processing_rates_upserted' | 'billing_organization_processing_rates_deleted' | 'billing_organization_settings_upserted' | 'billing_organization_settings_deleted' | 'billing_statement_batch_upserted' | 'billing_statement_batch_deleted' | 'billing_statement_batch_statement_upserted' | 'billing_statement_batch_statement_deleted' | 'standalone_attachment_upserted' | 'standalone_attachment_deleted' | 'platform_fee_change_upserted' | 'platform_fee_change_deleted' | 'organization_bank_account_upserted' | 'organization_bank_account_deleted' | 'billing_csv_transaction_upserted' | 'billing_csv_transaction_deleted' | 'label_invoice_request_upserted' | 'label_invoice_request_deleted' | 'carrier_charge_upserted' | 'carrier_charge_deleted' | 'fraud_review_upserted' | 'fraud_review_deleted' | 'fraud_pending_review_upserted' | 'fraud_pending_review_deleted' | 'fraud_review_decision_upserted' | 'fraud_review_decision_deleted' | 'fraud_provider_configuration_upserted' | 'fraud_provider_configuration_deleted' | 'manual_review_rule_upserted' | 'manual_review_rule_deleted' | 'ftp_file_upserted' | 'ftp_file_deleted' | 'ftp_file_to_process_uploaded' | 'center_defaults_upserted' | 'center_defaults_deleted' | 'pregenerated_request_event' | 'quote_upserted' | 'quote_deleted' | 'all_items_export' | 'harmonized_items_hs6_export' | 'unharmonized_items_export' | 'dutied_items_export' | 'tariff_codes_export' | 'harmonization_phrase_suggestion_request_import' | 'harmonization_codes_import' | 'item_classification_created' | 'harmonize_fully_request_v2' | 'hybris_catalog_items_import_request' | 'import_completed' | 'import_failed' | 'time_to_classify_upserted' | 'time_to_classify_deleted' | 'time_to_classify_aggregated_upserted' | 'time_to_classify_aggregated_deleted' | 'rate_source_summary_upserted' | 'rate_source_summary_deleted' | 'rate_freshness_summary_upserted' | 'rate_freshness_summary_deleted' | 'item_harmonization_upserted' | 'item_harmonization_deleted' | 'harmonization_item_classification_upserted' | 'harmonization_item_classification_deleted' | 'harmonization_classification_statistics_published' | 'issuer_upserted' | 'issuer_deleted' | 'item_form_import_request' | 'label_request_error_upserted' | 'label_request_error_deleted' | 'label_tracking_summary_upserted' | 'label_tracking_summary_deleted' | 'localized_item_upserted_v2' | 'localized_item_deleted' | 'localized_item_deleted_v2' | 'localized_item_snapshot' | 'localized_price_book_item_upserted' | 'localized_price_book_item_deleted' | 'feed_upserted' | 'feed_deleted' | 'feeds_export' | 'localized_item_prices_export_request' | 'optin_prompt_upserted' | 'optin_prompt_deleted' | 'order_combined_shipment_upserted' | 'order_combined_shipment_deleted' | 'order_fulfillment_deleted' | 'order_fulfillment_upserted' | 'order_placed' | 'ready_to_fulfill' | 'fulfillment_cancel' | 'order_shipped' | 'items_shipped' | 'organization_business_entity_deleted' | 'organization_business_entity_upserted' | 'organization_status_change_upserted' | 'organization_status_change_deleted' | 'organization_deactivation_upserted' | 'organization_deactivation_deleted' | 'merchant_guid_assignment_upserted' | 'merchant_guid_assignment_deleted' | 'partner_organization_settings_upserted' | 'partner_organization_settings_deleted' | 'unassigned_merchant_guid_upserted' | 'unassigned_merchant_guid_deleted' | 'internal_authorization_upserted' | 'internal_authorization_deleted' | 'afterpay_authorization_upserted' | 'afterpay_authorization_deleted' | 'afterpay_capture_upserted' | 'afterpay_capture_deleted' | 'afterpay_refund_upserted' | 'afterpay_refund_deleted' | 'adyen_merchant_account_upserted' | 'adyen_merchant_account_deleted' | 'chargeback_upserted' | 'chargeback_deleted' | 'payment_processor_account_upserted' | 'payment_processor_account_deleted' | 'payment_processor_merchant_upserted' | 'payment_processor_merchant_deleted' | 'virtual_card_provider_upserted' | 'virtual_card_provider_deleted' | 'authorization_bundle_upserted' | 'authorization_bundle_deleted' | 'organization_payment_setting_upserted' | 'organization_payment_setting_deleted' | 'paypal_payment_deleted' | 'paypal_payment_upserted' | 'paypal_execution_deleted' | 'paypal_execution_upserted' | 'paypal_refund_deleted' | 'paypal_refund_upserted' | 'pricing_indicator' | 'product_restriction_rule_decision_upserted' | 'product_restriction_rule_decision_deleted' | 'order_rates_published_v3' | 'ratecard_dimension_estimate_upserted' | 'ratecard_dimension_estimate_deleted' | 'ratecard_lanes_import_request' | 'ratecard_standard_configuration_upserted' | 'ratecard_standard_configuration_deleted' | 'ratecard_service_fee_upserted' | 'ratecard_service_fee_deleted' | 'ratecard_lane_aggregate_upserted' | 'ratecard_lane_aggregate_deleted' | 'ratecard_rate_level_upserted' | 'ratecard_rate_level_deleted' | 'ratecard_rate_level_ratecard_upserted' | 'ratecard_rate_level_ratecard_deleted' | 'ratecard_rate_level_organization_upserted' | 'ratecard_rate_level_organization_deleted' | 'organization_restriction_snapshot_upserted' | 'organization_restriction_snapshot_deleted' | 'restriction_organization_status_upserted' | 'restriction_organization_status_deleted' | 'organization_restriction_status_upserted' | 'organization_restriction_status_deleted' | 'screening_status_change_upserted' | 'screening_status_change_deleted' | 'shopify_shop_upserted' | 'shopify_shop_deleted' | 'shopify_experience_short_id_upserted' | 'shopify_experience_short_id_deleted' | 'shopify_markets_order_upserted' | 'shopify_markets_order_deleted' | 'shopify_markets_shop_upserted' | 'shopify_markets_shop_deleted' | 'shopify_markets_webhook_registration_upserted' | 'shopify_markets_webhook_registration_deleted' | 'shopify_markets_shop_statistics_upserted' | 'shopify_markets_shop_statistics_deleted' | 'shopify_markets_metrics_upserted' | 'shopify_markets_metrics_deleted' | 'channel_order_summary_upserted' | 'channel_order_summary_deleted' | 'shopify_monitoring_order_monitor_event_upserted' | 'shopify_monitoring_order_monitor_event_deleted' | 'shopify_order_fulfillments_snapshot_upserted' | 'shopify_order_fulfillments_snapshot_deleted' | 'stripe_authorization_deleted' | 'stripe_authorization_upserted' | 'stripe_reversal_deleted' | 'stripe_reversal_upserted' | 'stripe_capture_deleted' | 'stripe_capture_upserted' | 'stripe_refund_deleted' | 'stripe_refund_upserted' | 'svb_virtual_card_clearing_upserted' | 'svb_virtual_card_clearing_deleted' | 'liability_remittance_plan_upserted' | 'liability_remittance_plan_deleted' | 'svitlana_item_upserted' | 'svitlana_item_deleted' | 'colm_item_upserted' | 'colm_item_deleted' | 'shruti_demo_item_upserted' | 'shruti_demo_item_deleted' | 'tam_item_upserted' | 'tam_item_deleted' | 'tracking_label_event_upserted_v2' | 'tracking_label_event_deleted_v2' | 'tracking_label_upserted' | 'tracking_label_deleted' | 'tracking_upserted' | 'tracking_deleted' | 'tracking_request_upserted' | 'tracking_response_upserted' | 'user_upserted_v2' | 'user_deleted_v2';
|
|
14465
|
+
type EventType = 'adyen_authorization_deleted' | 'adyen_authorization_upserted' | 'adyen_cancel_deleted' | 'adyen_cancel_upserted' | 'adyen_capture_deleted' | 'adyen_capture_upserted' | 'adyen_refund_deleted' | 'adyen_refund_upserted' | 'index_assignment_upserted' | 'index_assignment_deleted' | 'fulfillment_upserted' | 'fulfillment_deleted' | 'merchant_upserted' | 'merchant_deleted' | 'account_upserted' | 'account_upserted_v2' | 'account_deleted_v2' | 'account_contact_upserted' | 'account_contact_deleted' | 'billing_statement_upserted' | 'billing_statement_deleted' | 'tax_remittance_transaction_upserted' | 'tax_remittance_transaction_deleted' | 'channel_account_upserted_v2' | 'channel_account_deleted' | 'organization_account_upserted_v2' | 'organization_account_deleted' | 'account_transactions_export_request' | 'account_orders_export_request' | 'main_transaction_upserted' | 'main_transaction_deleted' | 'main_transaction_upserted_v2' | 'main_transaction_deleted_v2' | 'transfer_transaction_upserted' | 'transfer_transaction_deleted' | 'transfer_transaction_upserted_v2' | 'transfer_transaction_deleted_v2' | 'processing_transaction_upserted' | 'processing_transaction_deleted' | 'bank_payment_upserted' | 'bank_payment_upserted_v2' | 'bank_payment_deleted_v2' | 'channel_transaction_upserted' | 'channel_transaction_deleted' | 'order_transaction_upserted' | 'order_transaction_deleted' | 'label_transaction_upserted' | 'label_transaction_deleted' | 'channel_billed_transaction_upserted' | 'channel_billed_transaction_deleted' | 'tax_transaction_upserted' | 'tax_transaction_deleted' | 'duty_transaction_upserted' | 'duty_transaction_deleted' | 'transaction_statement_upserted' | 'transaction_statement_deleted' | 'daily_value_upserted' | 'daily_value_deleted' | 'sales_record_upserted' | 'sales_record_deleted' | 'revenue_record_upserted' | 'revenue_record_deleted' | 'calculator_organization_settings_upserted' | 'calculator_organization_settings_deleted' | 'carrier_account_upserted_v2' | 'carrier_account_deleted' | 'label_generation_settings_upserted' | 'label_generation_settings_deleted' | 'catalog_import_request' | 'exclusion_rule_upserted' | 'exclusion_rule_deleted' | 'exclusion_rule_export_request' | 'catalog_item_region_availabilities_published' | 'return_policy_upserted' | 'return_policy_deleted' | 'return_policy_item_result_upserted' | 'return_policy_item_result_deleted' | 'catalog_settings_upserted' | 'catalog_settings_deleted' | 'channel_order_acceptance_upserted' | 'channel_order_acceptance_deleted' | 'checkout_configuration_upserted' | 'checkout_configuration_deleted' | 'commercial_invoice_internal_upserted' | 'commercial_invoice_internal_deleted' | 'localized_content_upserted' | 'localization_upserted' | 'internal_channel_rate_deleted' | 'internal_channel_rate_upserted' | 'rate_deleted' | 'rate_upserted' | 'spot_rate_deleted' | 'spot_rate_upserted' | 'usd_spot_rate_deleted' | 'usd_spot_rate_upserted' | 'rate_deleted_v2' | 'rate_upserted_v2' | 'organization_currency_setting_upserted' | 'organization_currency_setting_deleted' | 'channel_currency_setting_upserted' | 'channel_currency_setting_deleted' | 'customer_purge_upserted' | 'customs_description_import' | 'customs_description_tariffs_import' | 'item_dimension_estimate_upserted_v2' | 'item_dimension_estimate_deleted_v2' | 'dispute_upserted' | 'dispute_deleted' | 'duty_rates_published_v2' | 'duty_rate_request' | 'duty_rate_bulk_request' | 'duty_raw_upserted' | 'duty_raw_bulk_upserted' | 'duty_rate_upserted' | 'duty_rate_response' | 'duty_rate_bulk_response' | 'item_sales_margin_deleted' | 'item_sales_margin_upserted' | 'order_attribute_deleted' | 'order_attribute_upserted' | 'experience_export_request' | 'experience_import_request' | 'submitted_order_upserted' | 'levy_rate_summary_upserted' | 'experiment_upserted' | 'experiment_deleted' | 'experiment_results_upserted' | 'experiment_results_deleted' | 'daily_experiment_results_upserted' | 'daily_experiment_results_deleted' | 'experiment_milestone_upserted' | 'experiment_milestone_deleted' | 'export_completed' | 'export_failed' | 'feature_upserted' | 'feature_deleted' | 'organization_boolean_value_upserted' | 'organization_boolean_value_deleted' | 'account_settings_upserted' | 'account_settings_deleted' | 'account_processing_rates_upserted' | 'account_processing_rates_deleted' | 'billing_organization_processing_rates_upserted' | 'billing_organization_processing_rates_deleted' | 'billing_organization_settings_upserted' | 'billing_organization_settings_deleted' | 'standalone_attachment_upserted' | 'standalone_attachment_deleted' | 'platform_fee_change_upserted' | 'platform_fee_change_deleted' | 'organization_bank_account_upserted' | 'organization_bank_account_deleted' | 'billing_csv_transaction_upserted' | 'billing_csv_transaction_deleted' | 'label_invoice_request_upserted' | 'label_invoice_request_deleted' | 'carrier_charge_upserted' | 'carrier_charge_deleted' | 'fraud_review_upserted' | 'fraud_review_deleted' | 'fraud_pending_review_upserted' | 'fraud_pending_review_deleted' | 'fraud_review_decision_upserted' | 'fraud_review_decision_deleted' | 'fraud_provider_configuration_upserted' | 'fraud_provider_configuration_deleted' | 'manual_review_rule_upserted' | 'manual_review_rule_deleted' | 'ftp_file_upserted' | 'ftp_file_deleted' | 'ftp_file_to_process_uploaded' | 'center_defaults_upserted' | 'center_defaults_deleted' | 'pregenerated_request_event' | 'quote_upserted' | 'quote_deleted' | 'all_items_export' | 'harmonized_items_hs6_export' | 'unharmonized_items_export' | 'dutied_items_export' | 'tariff_codes_export' | 'harmonization_phrase_suggestion_request_import' | 'harmonization_codes_import' | 'item_classification_created' | 'harmonize_fully_request_v2' | 'hybris_catalog_items_import_request' | 'import_completed' | 'import_failed' | 'time_to_classify_upserted' | 'time_to_classify_deleted' | 'time_to_classify_aggregated_upserted' | 'time_to_classify_aggregated_deleted' | 'rate_source_summary_upserted' | 'rate_source_summary_deleted' | 'rate_freshness_summary_upserted' | 'rate_freshness_summary_deleted' | 'item_harmonization_upserted' | 'item_harmonization_deleted' | 'harmonization_item_classification_upserted' | 'harmonization_item_classification_deleted' | 'harmonization_classification_statistics_published' | 'issuer_upserted' | 'issuer_deleted' | 'item_form_import_request' | 'label_request_error_upserted' | 'label_request_error_deleted' | 'order_validation_failure_upserted' | 'order_validation_failure_deleted' | 'order_validation_upserted' | 'order_validation_deleted' | 'label_tracking_summary_upserted' | 'label_tracking_summary_deleted' | 'localized_item_upserted_v2' | 'localized_item_deleted' | 'localized_item_deleted_v2' | 'localized_item_snapshot' | 'localized_price_book_item_upserted' | 'localized_price_book_item_deleted' | 'feed_upserted' | 'feed_deleted' | 'feeds_export' | 'localized_item_prices_export_request' | 'optin_prompt_upserted' | 'optin_prompt_deleted' | 'order_combined_shipment_upserted' | 'order_combined_shipment_deleted' | 'order_fulfillment_deleted' | 'order_fulfillment_upserted' | 'order_placed' | 'ready_to_fulfill' | 'fulfillment_cancel' | 'order_shipped' | 'items_shipped' | 'organization_business_entity_deleted' | 'organization_business_entity_upserted' | 'organization_status_change_upserted' | 'organization_status_change_deleted' | 'organization_deactivation_upserted' | 'organization_deactivation_deleted' | 'merchant_guid_assignment_upserted' | 'merchant_guid_assignment_deleted' | 'partner_organization_settings_upserted' | 'partner_organization_settings_deleted' | 'unassigned_merchant_guid_upserted' | 'unassigned_merchant_guid_deleted' | 'internal_authorization_upserted' | 'internal_authorization_deleted' | 'afterpay_authorization_upserted' | 'afterpay_authorization_deleted' | 'afterpay_capture_upserted' | 'afterpay_capture_deleted' | 'afterpay_refund_upserted' | 'afterpay_refund_deleted' | 'adyen_merchant_account_upserted' | 'adyen_merchant_account_deleted' | 'chargeback_upserted' | 'chargeback_deleted' | 'payment_processor_account_upserted' | 'payment_processor_account_deleted' | 'payment_processor_merchant_upserted' | 'payment_processor_merchant_deleted' | 'virtual_card_provider_upserted' | 'virtual_card_provider_deleted' | 'authorization_bundle_upserted' | 'authorization_bundle_deleted' | 'organization_payment_setting_upserted' | 'organization_payment_setting_deleted' | 'paypal_payment_deleted' | 'paypal_payment_upserted' | 'paypal_execution_deleted' | 'paypal_execution_upserted' | 'paypal_refund_deleted' | 'paypal_refund_upserted' | 'pricing_indicator' | 'product_restriction_rule_decision_upserted' | 'product_restriction_rule_decision_deleted' | 'order_rates_published_v3' | 'ratecard_dimension_estimate_upserted' | 'ratecard_dimension_estimate_deleted' | 'ratecard_lanes_import_request' | 'ratecard_standard_configuration_upserted' | 'ratecard_standard_configuration_deleted' | 'ratecard_service_fee_upserted' | 'ratecard_service_fee_deleted' | 'ratecard_lane_aggregate_upserted' | 'ratecard_lane_aggregate_deleted' | 'ratecard_rate_level_upserted' | 'ratecard_rate_level_deleted' | 'ratecard_rate_level_ratecard_upserted' | 'ratecard_rate_level_ratecard_deleted' | 'ratecard_rate_level_organization_upserted' | 'ratecard_rate_level_organization_deleted' | 'organization_restriction_snapshot_upserted' | 'organization_restriction_snapshot_deleted' | 'restriction_organization_status_upserted' | 'restriction_organization_status_deleted' | 'organization_restriction_status_upserted' | 'organization_restriction_status_deleted' | 'screening_status_change_upserted' | 'screening_status_change_deleted' | 'shopify_shop_upserted' | 'shopify_shop_deleted' | 'shopify_experience_short_id_upserted' | 'shopify_experience_short_id_deleted' | 'shopify_markets_order_upserted' | 'shopify_markets_order_deleted' | 'shopify_markets_shop_upserted' | 'shopify_markets_shop_deleted' | 'shopify_markets_webhook_registration_upserted' | 'shopify_markets_webhook_registration_deleted' | 'shopify_markets_shop_statistics_upserted' | 'shopify_markets_shop_statistics_deleted' | 'shopify_markets_metrics_upserted' | 'shopify_markets_metrics_deleted' | 'channel_order_summary_upserted' | 'channel_order_summary_deleted' | 'shopify_monitoring_order_monitor_event_upserted' | 'shopify_monitoring_order_monitor_event_deleted' | 'shopify_order_fulfillments_snapshot_upserted' | 'shopify_order_fulfillments_snapshot_deleted' | 'stripe_authorization_deleted' | 'stripe_authorization_upserted' | 'stripe_reversal_deleted' | 'stripe_reversal_upserted' | 'stripe_capture_deleted' | 'stripe_capture_upserted' | 'stripe_refund_deleted' | 'stripe_refund_upserted' | 'svb_virtual_card_clearing_upserted' | 'svb_virtual_card_clearing_deleted' | 'liability_remittance_plan_upserted' | 'liability_remittance_plan_deleted' | 'svitlana_item_upserted' | 'svitlana_item_deleted' | 'colm_item_upserted' | 'colm_item_deleted' | 'matias_item_upserted' | 'matias_item_deleted' | 'shruti_demo_item_upserted' | 'shruti_demo_item_deleted' | 'tam_item_upserted' | 'tam_item_deleted' | 'tracking_processing_error_upserted' | 'tracking_processing_error_deleted' | 'tracking_label_event_upserted_v2' | 'tracking_label_event_deleted_v2' | 'tracking_label_upserted' | 'tracking_label_deleted' | 'tracking_upserted' | 'tracking_deleted' | 'tracking_request_upserted' | 'tracking_response_upserted' | 'user_upserted_v2' | 'user_deleted_v2';
|
|
14331
14466
|
type ExperienceImportType = 'experience_with_settings';
|
|
14332
14467
|
type ExperienceOrderAction = 'submit' | 'refund_gift_cards';
|
|
14333
14468
|
type ExperienceOrderActionTrigger = 'zero_balance' | 'unsubmitted_order';
|
|
@@ -14375,6 +14510,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
14375
14510
|
type MarketingGatewayPlatform = 'google' | 'facebook' | 'adroll' | 'aliexpress' | 'amazon' | 'bing' | 'criteo' | 'fruugo' | 'pinterest' | 'rakuten_japan' | 'wish' | 'snapchat' | 'stylight';
|
|
14376
14511
|
type MarketingGatewayProductStatus = 'approved' | 'not_approved' | 'pending' | 'not_found' | 'excluded';
|
|
14377
14512
|
type MarketingGatewaySchemaCompatibility = 'google' | 'facebook_primary' | 'facebook_country_override' | 'supplemental';
|
|
14513
|
+
type MatiasItemType = 'physical' | 'digital';
|
|
14378
14514
|
type MixedBagWeight = '0' | '1' | '2';
|
|
14379
14515
|
type NatureOfSale = 'consumer' | 'to_non_registered_business' | 'to_registered_business' | 'flash_title';
|
|
14380
14516
|
type NoLiabilityReasonCode = 'zero_basis' | 'zero_rate_on_goods' | 'zero_rate_on_sale' | 'goods_above_value_threshold' | 'goods_below_value_threshold' | 'order_below_de_minimis_threshold' | 'amount_below_de_minimis_threshold' | 'delivered_unpaid' | 'duty_free_domestic' | 'duty_free_intra_community' | 'duty_free_by_trade_agreement';
|
|
@@ -14432,7 +14568,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
14432
14568
|
type RestrictionAction = 'prohibited' | 'restricted';
|
|
14433
14569
|
type RestrictionDecision = 'accept' | 'escalate' | 'reject' | 'review';
|
|
14434
14570
|
type RestrictionStatus = 'pending' | 'in_review' | 'escalated' | 'accepted' | 'restricted';
|
|
14435
|
-
type RevenueRecordType = 'sales' | 'refund';
|
|
14571
|
+
type RevenueRecordType = 'pending' | 'sales' | 'refund';
|
|
14436
14572
|
type RiskCheck = 'three_d_secure';
|
|
14437
14573
|
type RiskEvaluation = 'Pending' | 'High-Risk' | 'Low-Risk' | 'Restricted-Party' | 'none';
|
|
14438
14574
|
type Scope = 'organization' | 'global';
|
|
@@ -14456,7 +14592,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
14456
14592
|
type SignificanceAction = 'end_and_implement_winner' | 'end_and_revert' | 'do_nothing';
|
|
14457
14593
|
type SimpleRoundingStrategy = 'no_rounding' | 'currency_precision';
|
|
14458
14594
|
type SnoozeNextActionWith = 'customer_service' | 'engineering';
|
|
14459
|
-
type SnoozeSourceType = '
|
|
14595
|
+
type SnoozeSourceType = 'task';
|
|
14460
14596
|
type StatementStatus = 'created' | 'no_transactions' | 'transactions_assigned' | 'statement_generated' | 'statement_regenerated' | 'failed';
|
|
14461
14597
|
type StatementTransferTransactionLocation = 'transactions_file' | 'summary';
|
|
14462
14598
|
type StatisticType = 'time-to-classify' | 'time-to-classify-aggregated' | 'rate-source' | 'rate-freshness';
|
|
@@ -14472,6 +14608,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
14472
14608
|
type TaxTransactionType = 'adjustment' | 'reversal' | 'tax';
|
|
14473
14609
|
type TimeseriesType = 'daily' | 'weekly' | 'monthly' | 'yearly';
|
|
14474
14610
|
type TrackingIntegrationType = 'api' | 'bulk' | 'aftership';
|
|
14611
|
+
type TrackingProcessingFailureClassification = 'tracking_expired' | 'expired_tracking_number_new_event' | 'new_tracking_number_expired_event' | 'origin_mismatch' | 'destination_mismatch' | 'other';
|
|
14475
14612
|
type TransactionPostingMethod = 'time' | 'proof';
|
|
14476
14613
|
type TransferMethod = 'ach';
|
|
14477
14614
|
type TrueupTransactionType = 'adjustment' | 'reversal' | 'trueup';
|
|
@@ -14548,6 +14685,15 @@ declare namespace io.flow.internal.v0.models {
|
|
|
14548
14685
|
interface AccountOrigin {
|
|
14549
14686
|
readonly country: string;
|
|
14550
14687
|
}
|
|
14688
|
+
interface AccountPaymentHold {
|
|
14689
|
+
readonly id: string;
|
|
14690
|
+
readonly account: io.flow.internal.v0.models.SimpleAccountReference;
|
|
14691
|
+
readonly reason: io.flow.internal.v0.enums.AccountPaymentHoldReason;
|
|
14692
|
+
}
|
|
14693
|
+
interface AccountPaymentHoldForm {
|
|
14694
|
+
readonly account_id: string;
|
|
14695
|
+
readonly reason: io.flow.internal.v0.enums.AccountPaymentHoldReason;
|
|
14696
|
+
}
|
|
14551
14697
|
interface AccountProcessingRateForm {
|
|
14552
14698
|
readonly query: string;
|
|
14553
14699
|
readonly capture: number;
|
|
@@ -14597,7 +14743,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
14597
14743
|
readonly merchant_of_record_fee?: number;
|
|
14598
14744
|
readonly duty_guarantee_fee?: number;
|
|
14599
14745
|
readonly transfer_fee?: number;
|
|
14600
|
-
readonly
|
|
14746
|
+
readonly negative_balance_fee?: number;
|
|
14601
14747
|
readonly order_service_fee?: io.flow.internal.v0.models.TieredFee;
|
|
14602
14748
|
readonly label_fees?: io.flow.internal.v0.models.AccountSettingLabelFees;
|
|
14603
14749
|
readonly charge_label_cost_directly: boolean;
|
|
@@ -14671,10 +14817,20 @@ declare namespace io.flow.internal.v0.models {
|
|
|
14671
14817
|
readonly timestamp: string;
|
|
14672
14818
|
readonly account: io.flow.internal.v0.models.FlowAccount;
|
|
14673
14819
|
}
|
|
14820
|
+
interface AccountingFulfillmentMetadata {
|
|
14821
|
+
readonly discriminator: 'accounting_fulfillment_metadata';
|
|
14822
|
+
readonly order: io.flow.internal.v0.models.OrderReference;
|
|
14823
|
+
readonly proof: io.flow.internal.v0.unions.FulfillmentProof;
|
|
14824
|
+
}
|
|
14674
14825
|
interface ActionQuantity {
|
|
14675
14826
|
readonly action: io.flow.internal.v0.enums.ItemQuantityAction;
|
|
14676
14827
|
readonly quantity: number;
|
|
14677
14828
|
}
|
|
14829
|
+
interface AdditionalImportTax {
|
|
14830
|
+
readonly name?: string;
|
|
14831
|
+
readonly additional_import_tax_value?: io.flow.common.v0.models.Money;
|
|
14832
|
+
readonly rate?: number;
|
|
14833
|
+
}
|
|
14678
14834
|
interface AddressConfigurationProvinceSetting {
|
|
14679
14835
|
readonly code: io.flow.internal.v0.enums.AddressConfigurationSettingProvinceCode;
|
|
14680
14836
|
}
|
|
@@ -15302,6 +15458,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
15302
15458
|
readonly b2b_tax_remittance_days?: number;
|
|
15303
15459
|
readonly mor_fee?: number;
|
|
15304
15460
|
readonly duty_guarantee_fee?: number;
|
|
15461
|
+
readonly negative_balance_fee?: number;
|
|
15305
15462
|
readonly order_service_fee?: io.flow.internal.v0.models.TieredFee;
|
|
15306
15463
|
readonly label_fee?: io.flow.internal.v0.models.TieredFee;
|
|
15307
15464
|
}
|
|
@@ -15324,41 +15481,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
15324
15481
|
readonly name: string;
|
|
15325
15482
|
readonly url: string;
|
|
15326
15483
|
}
|
|
15327
|
-
interface BillingStatementBatch {
|
|
15328
|
-
readonly id: string;
|
|
15329
|
-
}
|
|
15330
|
-
interface BillingStatementBatchDeleted {
|
|
15331
|
-
readonly discriminator: 'billing_statement_batch_deleted';
|
|
15332
|
-
readonly event_id: string;
|
|
15333
|
-
readonly timestamp: string;
|
|
15334
|
-
readonly id: string;
|
|
15335
|
-
}
|
|
15336
|
-
interface BillingStatementBatchReference {
|
|
15337
|
-
readonly id: string;
|
|
15338
|
-
}
|
|
15339
|
-
interface BillingStatementBatchStatement {
|
|
15340
|
-
readonly id: string;
|
|
15341
|
-
readonly batch: io.flow.internal.v0.models.BillingStatementBatchReference;
|
|
15342
|
-
readonly statement: io.flow.internal.v0.models.BillingStatementReference;
|
|
15343
|
-
}
|
|
15344
|
-
interface BillingStatementBatchStatementDeleted {
|
|
15345
|
-
readonly discriminator: 'billing_statement_batch_statement_deleted';
|
|
15346
|
-
readonly event_id: string;
|
|
15347
|
-
readonly timestamp: string;
|
|
15348
|
-
readonly id: string;
|
|
15349
|
-
}
|
|
15350
|
-
interface BillingStatementBatchStatementUpserted {
|
|
15351
|
-
readonly discriminator: 'billing_statement_batch_statement_upserted';
|
|
15352
|
-
readonly event_id: string;
|
|
15353
|
-
readonly timestamp: string;
|
|
15354
|
-
readonly billing_statement_batch_statement: io.flow.internal.v0.models.BillingStatementBatchStatement;
|
|
15355
|
-
}
|
|
15356
|
-
interface BillingStatementBatchUpserted {
|
|
15357
|
-
readonly discriminator: 'billing_statement_batch_upserted';
|
|
15358
|
-
readonly event_id: string;
|
|
15359
|
-
readonly timestamp: string;
|
|
15360
|
-
readonly billing_statement_batch: io.flow.internal.v0.models.BillingStatementBatch;
|
|
15361
|
-
}
|
|
15362
15484
|
interface BillingStatementDeleted {
|
|
15363
15485
|
readonly discriminator: 'billing_statement_deleted';
|
|
15364
15486
|
readonly event_id: string;
|
|
@@ -15666,6 +15788,47 @@ declare namespace io.flow.internal.v0.models {
|
|
|
15666
15788
|
readonly rate: number;
|
|
15667
15789
|
readonly name: string;
|
|
15668
15790
|
}
|
|
15791
|
+
interface CalculationStampingLineItem {
|
|
15792
|
+
readonly id?: string;
|
|
15793
|
+
readonly hs_code?: string;
|
|
15794
|
+
readonly duty: io.flow.common.v0.models.Money;
|
|
15795
|
+
readonly duty_rate: number;
|
|
15796
|
+
readonly sales_tax: io.flow.common.v0.models.Money;
|
|
15797
|
+
readonly sales_tax_rate: number;
|
|
15798
|
+
readonly additional_tax?: io.flow.common.v0.models.Money;
|
|
15799
|
+
readonly additional_tax_rate?: number;
|
|
15800
|
+
readonly total: io.flow.common.v0.models.Money;
|
|
15801
|
+
}
|
|
15802
|
+
interface CalculationStampingShippingLine {
|
|
15803
|
+
readonly first_ship_from?: string;
|
|
15804
|
+
readonly duty?: number;
|
|
15805
|
+
readonly duty_rate?: number;
|
|
15806
|
+
readonly tax?: number;
|
|
15807
|
+
readonly tax_rate?: number;
|
|
15808
|
+
readonly price?: number;
|
|
15809
|
+
readonly duty_rate_on_shipping?: number;
|
|
15810
|
+
readonly tax_rate_on_shipping?: number;
|
|
15811
|
+
readonly import_fee?: number;
|
|
15812
|
+
}
|
|
15813
|
+
interface CalculationStep {
|
|
15814
|
+
readonly discriminator: 'calculation_step';
|
|
15815
|
+
readonly primary_identifier: string;
|
|
15816
|
+
readonly line_item: io.flow.internal.v0.models.CalculationStampingLineItem[];
|
|
15817
|
+
readonly shipping_line_item: io.flow.internal.v0.models.CalculationStampingShippingLine;
|
|
15818
|
+
readonly total: io.flow.internal.v0.models.CalculationTotal;
|
|
15819
|
+
readonly explanation?: string;
|
|
15820
|
+
}
|
|
15821
|
+
interface CalculationTotal {
|
|
15822
|
+
readonly customs_value_name: string;
|
|
15823
|
+
readonly customs_value_amount: io.flow.common.v0.models.Money;
|
|
15824
|
+
readonly additional_import_included?: boolean;
|
|
15825
|
+
readonly additional_import_value?: io.flow.common.v0.models.Money;
|
|
15826
|
+
readonly duty: io.flow.common.v0.models.Money;
|
|
15827
|
+
readonly sales_tax: io.flow.common.v0.models.Money;
|
|
15828
|
+
readonly additional_tax_import_included: boolean;
|
|
15829
|
+
readonly additional_tax?: io.flow.common.v0.models.Money;
|
|
15830
|
+
readonly additional_import_tax?: io.flow.internal.v0.models.AdditionalImportTax[];
|
|
15831
|
+
}
|
|
15669
15832
|
interface CalculatorDtcePostBody {
|
|
15670
15833
|
readonly products: io.flow.internal.v0.models.CalculatorDtceProduct[];
|
|
15671
15834
|
readonly countryCodeFrom: string;
|
|
@@ -15803,6 +15966,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
15803
15966
|
interface CarrierChargeFormOther {
|
|
15804
15967
|
readonly discriminator: 'other';
|
|
15805
15968
|
readonly id: string;
|
|
15969
|
+
readonly label_invoice_request_id?: string;
|
|
15806
15970
|
readonly reason: io.flow.trueup.v0.enums.CarrierChargeReason;
|
|
15807
15971
|
readonly organization_id: string;
|
|
15808
15972
|
readonly order_number: string;
|
|
@@ -16101,6 +16265,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
16101
16265
|
readonly tracking_numbers?: string[];
|
|
16102
16266
|
readonly carrier?: io.flow.reference.v0.models.CarrierService;
|
|
16103
16267
|
readonly duty_paid: boolean;
|
|
16268
|
+
readonly shop_id?: string;
|
|
16104
16269
|
}
|
|
16105
16270
|
interface ChannelOrderAcceptance {
|
|
16106
16271
|
readonly id: string;
|
|
@@ -16109,6 +16274,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
16109
16274
|
readonly channel_id: string;
|
|
16110
16275
|
readonly external_order_reference: string;
|
|
16111
16276
|
readonly payment_request_id?: string;
|
|
16277
|
+
readonly order_edit_payment_request_ids?: string[];
|
|
16112
16278
|
readonly status: io.flow.internal.v0.enums.ChannelOrderAcceptanceStatus;
|
|
16113
16279
|
readonly reasons: io.flow.internal.v0.models.ChannelOrderAcceptanceReason[];
|
|
16114
16280
|
readonly next_action_from?: io.flow.internal.v0.enums.ChannelOrderAcceptanceNextActionFrom;
|
|
@@ -18225,6 +18391,11 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18225
18391
|
readonly timestamp: string;
|
|
18226
18392
|
readonly invoice: io.flow.internal.v0.models.CommercialInvoiceInternal;
|
|
18227
18393
|
}
|
|
18394
|
+
interface CommercialInvoiceSummary {
|
|
18395
|
+
readonly id: string;
|
|
18396
|
+
readonly label_id: string;
|
|
18397
|
+
readonly line_items: io.flow.internal.v0.models.InvoiceLineItem[];
|
|
18398
|
+
}
|
|
18228
18399
|
interface CompanyReference {
|
|
18229
18400
|
readonly id: string;
|
|
18230
18401
|
}
|
|
@@ -19014,6 +19185,9 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19014
19185
|
readonly bank_code: string;
|
|
19015
19186
|
readonly id: string;
|
|
19016
19187
|
readonly tax_code?: string;
|
|
19188
|
+
readonly tax_code_2?: string;
|
|
19189
|
+
readonly debit_entry_code?: string;
|
|
19190
|
+
readonly credit_entry_code?: string;
|
|
19017
19191
|
readonly vat_flag?: string;
|
|
19018
19192
|
readonly w_tax_percent?: string;
|
|
19019
19193
|
readonly iban?: string;
|
|
@@ -19058,6 +19232,9 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19058
19232
|
readonly id: string;
|
|
19059
19233
|
readonly acc_des?: string;
|
|
19060
19234
|
readonly tax_code?: string;
|
|
19235
|
+
readonly tax_code_2?: string;
|
|
19236
|
+
readonly debit_entry_code?: string;
|
|
19237
|
+
readonly credit_entry_code?: string;
|
|
19061
19238
|
readonly vat_flag?: string;
|
|
19062
19239
|
readonly country_name?: string;
|
|
19063
19240
|
readonly w_tax_percent?: string;
|
|
@@ -19598,6 +19775,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19598
19775
|
readonly fx?: io.flow.internal.v0.models.Fee;
|
|
19599
19776
|
readonly duty_guarantee?: io.flow.internal.v0.models.Fee;
|
|
19600
19777
|
readonly transfer?: io.flow.internal.v0.models.Fee;
|
|
19778
|
+
readonly negative_balance?: io.flow.internal.v0.models.Fee;
|
|
19601
19779
|
}
|
|
19602
19780
|
interface FinanceBankAccount {
|
|
19603
19781
|
readonly id: string;
|
|
@@ -19737,6 +19915,13 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19737
19915
|
readonly bank_account?: io.flow.internal.v0.models.BankAccountReference;
|
|
19738
19916
|
readonly created_at: string;
|
|
19739
19917
|
}
|
|
19918
|
+
interface FlowBillingStatement {
|
|
19919
|
+
readonly id: string;
|
|
19920
|
+
readonly account: io.flow.billing.v0.models.AccountReference;
|
|
19921
|
+
readonly period: io.flow.common.v0.models.DatetimeRange;
|
|
19922
|
+
readonly totals: io.flow.internal.v0.models.BillingStatementTotals;
|
|
19923
|
+
readonly attachments: io.flow.internal.v0.models.BillingStatementAttachment[];
|
|
19924
|
+
}
|
|
19740
19925
|
interface FlowChannelOrganization {
|
|
19741
19926
|
readonly placeholder?: string;
|
|
19742
19927
|
}
|
|
@@ -19992,6 +20177,13 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19992
20177
|
readonly reason: io.flow.order.management.v0.enums.CancelReason;
|
|
19993
20178
|
readonly cancelled_lines: io.flow.order.management.v0.models.FulfillmentLineCancelForm[];
|
|
19994
20179
|
}
|
|
20180
|
+
interface FulfillmentDeleted {
|
|
20181
|
+
readonly discriminator: 'fulfillment_deleted';
|
|
20182
|
+
readonly event_id: string;
|
|
20183
|
+
readonly timestamp: string;
|
|
20184
|
+
readonly organization: string;
|
|
20185
|
+
readonly id: string;
|
|
20186
|
+
}
|
|
19995
20187
|
interface FulfillmentInternalExperienceReference {
|
|
19996
20188
|
readonly id: string;
|
|
19997
20189
|
readonly key: string;
|
|
@@ -20078,6 +20270,13 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20078
20270
|
readonly discriminator: 'by_time';
|
|
20079
20271
|
readonly placeholder?: string;
|
|
20080
20272
|
}
|
|
20273
|
+
interface FulfillmentUpserted {
|
|
20274
|
+
readonly discriminator: 'fulfillment_upserted';
|
|
20275
|
+
readonly event_id: string;
|
|
20276
|
+
readonly timestamp: string;
|
|
20277
|
+
readonly organization: string;
|
|
20278
|
+
readonly fulfillment: io.flow.internal.v0.models.Fulfillment;
|
|
20279
|
+
}
|
|
20081
20280
|
interface FxFee {
|
|
20082
20281
|
readonly base: io.flow.common.v0.models.Money;
|
|
20083
20282
|
readonly local: io.flow.common.v0.models.Money;
|
|
@@ -21356,6 +21555,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21356
21555
|
readonly number: string;
|
|
21357
21556
|
readonly fulfillment_method: io.flow.catalog.v0.enums.FulfillmentMethodValue;
|
|
21358
21557
|
readonly country_of_origin?: string;
|
|
21558
|
+
readonly tarriff_code?: string;
|
|
21359
21559
|
readonly inferred?: boolean;
|
|
21360
21560
|
}
|
|
21361
21561
|
interface ItemValuesForm {
|
|
@@ -21548,6 +21748,10 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21548
21748
|
readonly emergency?: io.flow.internal.v0.models.LabelSurchargeSingleForm;
|
|
21549
21749
|
readonly peak?: io.flow.internal.v0.models.LabelSurchargeSingleForm;
|
|
21550
21750
|
readonly address_correction?: io.flow.internal.v0.models.LabelSurchargeSingleForm;
|
|
21751
|
+
readonly security?: io.flow.internal.v0.models.LabelSurchargeSingleForm;
|
|
21752
|
+
readonly eei_filing?: io.flow.internal.v0.models.LabelSurchargeSingleForm;
|
|
21753
|
+
readonly fixed_ddp?: io.flow.internal.v0.models.LabelSurchargeSingleForm;
|
|
21754
|
+
readonly fixed_currency_conversion?: io.flow.internal.v0.models.LabelSurchargeSingleForm;
|
|
21551
21755
|
}
|
|
21552
21756
|
interface LabelSurchargeSingleForm {
|
|
21553
21757
|
readonly amount: number;
|
|
@@ -22196,6 +22400,33 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22196
22400
|
readonly shopify_order: io.flow.shopify.markets.v0.models.ShopifyOrder;
|
|
22197
22401
|
readonly flow_authorization?: io.flow.payment.v0.unions.Authorization;
|
|
22198
22402
|
}
|
|
22403
|
+
interface MatiasItem {
|
|
22404
|
+
readonly id: string;
|
|
22405
|
+
readonly number: string;
|
|
22406
|
+
readonly amount: io.flow.common.v0.models.Price;
|
|
22407
|
+
readonly description?: string;
|
|
22408
|
+
readonly type: io.flow.internal.v0.enums.MatiasItemType;
|
|
22409
|
+
readonly added_on: string;
|
|
22410
|
+
}
|
|
22411
|
+
interface MatiasItemDeleted {
|
|
22412
|
+
readonly discriminator: 'matias_item_deleted';
|
|
22413
|
+
readonly event_id: string;
|
|
22414
|
+
readonly timestamp: string;
|
|
22415
|
+
readonly id: string;
|
|
22416
|
+
}
|
|
22417
|
+
interface MatiasItemForm {
|
|
22418
|
+
readonly number: string;
|
|
22419
|
+
readonly amount: io.flow.common.v0.models.Price;
|
|
22420
|
+
readonly description?: string;
|
|
22421
|
+
readonly type: io.flow.internal.v0.enums.MatiasItemType;
|
|
22422
|
+
readonly added_on: string;
|
|
22423
|
+
}
|
|
22424
|
+
interface MatiasItemUpserted {
|
|
22425
|
+
readonly discriminator: 'matias_item_upserted';
|
|
22426
|
+
readonly event_id: string;
|
|
22427
|
+
readonly timestamp: string;
|
|
22428
|
+
readonly item: io.flow.internal.v0.models.MatiasItem;
|
|
22429
|
+
}
|
|
22199
22430
|
interface Merchant {
|
|
22200
22431
|
readonly id: string;
|
|
22201
22432
|
readonly account: io.flow.internal.v0.models.AccountReference;
|
|
@@ -22300,6 +22531,10 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22300
22531
|
readonly timestamp: string;
|
|
22301
22532
|
readonly merchant: io.flow.internal.v0.models.Merchant;
|
|
22302
22533
|
}
|
|
22534
|
+
interface MessageStamp {
|
|
22535
|
+
readonly discriminator: 'message_stamp';
|
|
22536
|
+
readonly message: string;
|
|
22537
|
+
}
|
|
22303
22538
|
interface MetadataProposition {
|
|
22304
22539
|
readonly shipping_method: io.flow.internal.v0.models.ShippingMethodReference;
|
|
22305
22540
|
readonly name: string;
|
|
@@ -22608,6 +22843,10 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22608
22843
|
readonly organization: string;
|
|
22609
22844
|
readonly data: io.flow.internal.v0.models.OrderRatesDataV3;
|
|
22610
22845
|
}
|
|
22846
|
+
interface OrderReference {
|
|
22847
|
+
readonly organization: io.flow.common.v0.models.OrganizationReference;
|
|
22848
|
+
readonly number: string;
|
|
22849
|
+
}
|
|
22611
22850
|
interface OrderRevenueRegionChart {
|
|
22612
22851
|
readonly total: io.flow.common.v0.models.Price;
|
|
22613
22852
|
readonly period: io.flow.common.v0.models.DatetimeRange;
|
|
@@ -22687,6 +22926,15 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22687
22926
|
readonly service_id: string;
|
|
22688
22927
|
readonly status: io.flow.internal.v0.enums.OrderValidationStatus;
|
|
22689
22928
|
readonly updated_by_user_id: string;
|
|
22929
|
+
readonly created_at: string;
|
|
22930
|
+
readonly resolved_at?: string;
|
|
22931
|
+
}
|
|
22932
|
+
interface OrderValidationDeleted {
|
|
22933
|
+
readonly discriminator: 'order_validation_deleted';
|
|
22934
|
+
readonly event_id: string;
|
|
22935
|
+
readonly timestamp: string;
|
|
22936
|
+
readonly organization: string;
|
|
22937
|
+
readonly id: string;
|
|
22690
22938
|
}
|
|
22691
22939
|
interface OrderValidationError {
|
|
22692
22940
|
readonly message: string;
|
|
@@ -22706,6 +22954,13 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22706
22954
|
readonly suggested_responsibility: io.flow.internal.v0.enums.LabelRequestErrorHandlingResponsibility;
|
|
22707
22955
|
readonly errors: string[];
|
|
22708
22956
|
}
|
|
22957
|
+
interface OrderValidationFailureDeleted {
|
|
22958
|
+
readonly discriminator: 'order_validation_failure_deleted';
|
|
22959
|
+
readonly event_id: string;
|
|
22960
|
+
readonly timestamp: string;
|
|
22961
|
+
readonly organization: string;
|
|
22962
|
+
readonly id: string;
|
|
22963
|
+
}
|
|
22709
22964
|
interface OrderValidationFailureSummary {
|
|
22710
22965
|
readonly organization_id: string;
|
|
22711
22966
|
readonly order_number: string;
|
|
@@ -22715,6 +22970,20 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22715
22970
|
readonly error: string;
|
|
22716
22971
|
readonly created_at: string;
|
|
22717
22972
|
}
|
|
22973
|
+
interface OrderValidationFailureUpserted {
|
|
22974
|
+
readonly discriminator: 'order_validation_failure_upserted';
|
|
22975
|
+
readonly event_id: string;
|
|
22976
|
+
readonly timestamp: string;
|
|
22977
|
+
readonly organization: string;
|
|
22978
|
+
readonly order_validation_failure: io.flow.internal.v0.models.OrderValidationFailure;
|
|
22979
|
+
}
|
|
22980
|
+
interface OrderValidationUpserted {
|
|
22981
|
+
readonly discriminator: 'order_validation_upserted';
|
|
22982
|
+
readonly event_id: string;
|
|
22983
|
+
readonly timestamp: string;
|
|
22984
|
+
readonly organization: string;
|
|
22985
|
+
readonly order_validation: io.flow.internal.v0.models.OrderValidation;
|
|
22986
|
+
}
|
|
22718
22987
|
interface OrganizationAccount {
|
|
22719
22988
|
readonly organization: io.flow.common.v0.models.OrganizationReference;
|
|
22720
22989
|
readonly id: string;
|
|
@@ -23378,6 +23647,15 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23378
23647
|
readonly transaction: io.flow.internal.v0.models.TransactionReference;
|
|
23379
23648
|
readonly statement: io.flow.internal.v0.models.BillingStatementReference;
|
|
23380
23649
|
}
|
|
23650
|
+
interface PendingOrder {
|
|
23651
|
+
readonly id: string;
|
|
23652
|
+
readonly order: io.flow.internal.v0.models.OrderSummary;
|
|
23653
|
+
readonly shopper: io.flow.internal.v0.models.ShopperSummary;
|
|
23654
|
+
readonly merchant: io.flow.internal.v0.models.MerchantSummary;
|
|
23655
|
+
readonly remittance: io.flow.internal.v0.models.RemittanceResponsibility;
|
|
23656
|
+
readonly sequence_number: number;
|
|
23657
|
+
readonly posting_cutoff: string;
|
|
23658
|
+
}
|
|
23381
23659
|
interface PhraseClassified {
|
|
23382
23660
|
readonly event_id: string;
|
|
23383
23661
|
readonly timestamp: string;
|
|
@@ -23668,19 +23946,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23668
23946
|
readonly discriminator: 'shipping_notification';
|
|
23669
23947
|
readonly shipping_notification_id: string;
|
|
23670
23948
|
}
|
|
23671
|
-
interface QueuedRecord {
|
|
23672
|
-
readonly type: string;
|
|
23673
|
-
readonly type_id: string;
|
|
23674
|
-
readonly source_type?: string;
|
|
23675
|
-
readonly source_id?: string;
|
|
23676
|
-
readonly environment?: string;
|
|
23677
|
-
readonly created_at: string;
|
|
23678
|
-
readonly num_attempts: number;
|
|
23679
|
-
readonly next_attempt_at: string;
|
|
23680
|
-
readonly errors?: string[];
|
|
23681
|
-
readonly stacktrace?: string;
|
|
23682
|
-
readonly snooze_id?: string;
|
|
23683
|
-
}
|
|
23684
23949
|
interface Quote {
|
|
23685
23950
|
readonly id: string;
|
|
23686
23951
|
readonly base: string;
|
|
@@ -24558,8 +24823,8 @@ declare namespace io.flow.internal.v0.models {
|
|
|
24558
24823
|
readonly id: string;
|
|
24559
24824
|
readonly order: io.flow.internal.v0.models.OrderSummary;
|
|
24560
24825
|
readonly shopper: io.flow.internal.v0.models.ShopperSummary;
|
|
24561
|
-
readonly remittance: io.flow.internal.v0.models.RemittanceResponsibility;
|
|
24562
24826
|
readonly merchant: io.flow.internal.v0.models.MerchantSummary;
|
|
24827
|
+
readonly remittance: io.flow.internal.v0.models.RemittanceResponsibility;
|
|
24563
24828
|
readonly sequence_number: number;
|
|
24564
24829
|
readonly posting_cutoff: string;
|
|
24565
24830
|
readonly trigger: io.flow.internal.v0.unions.ReturnTrigger;
|
|
@@ -25495,6 +25760,10 @@ declare namespace io.flow.internal.v0.models {
|
|
|
25495
25760
|
readonly timestamp: string;
|
|
25496
25761
|
readonly attachment: io.flow.internal.v0.models.StandaloneAttachment;
|
|
25497
25762
|
}
|
|
25763
|
+
interface StatementCreationMetadata {
|
|
25764
|
+
readonly discriminator: 'statement_creation_metadata';
|
|
25765
|
+
readonly period: io.flow.common.v0.models.DatetimeRange;
|
|
25766
|
+
}
|
|
25498
25767
|
interface StoreConnection {
|
|
25499
25768
|
readonly organization?: io.flow.common.v0.models.OrganizationReference;
|
|
25500
25769
|
readonly id: string;
|
|
@@ -25830,6 +26099,19 @@ declare namespace io.flow.internal.v0.models {
|
|
|
25830
26099
|
readonly id: string;
|
|
25831
26100
|
readonly data: io.flow.internal.v0.unions.TariffEligibilityData;
|
|
25832
26101
|
}
|
|
26102
|
+
interface Task {
|
|
26103
|
+
readonly type: string;
|
|
26104
|
+
readonly type_id: string;
|
|
26105
|
+
readonly source_type?: string;
|
|
26106
|
+
readonly source_id?: string;
|
|
26107
|
+
readonly environment?: string;
|
|
26108
|
+
readonly created_at: string;
|
|
26109
|
+
readonly num_attempts: number;
|
|
26110
|
+
readonly next_attempt_at: string;
|
|
26111
|
+
readonly errors?: string[];
|
|
26112
|
+
readonly stacktrace?: string;
|
|
26113
|
+
readonly snooze_id?: string;
|
|
26114
|
+
}
|
|
25833
26115
|
interface TaskCount {
|
|
25834
26116
|
readonly discriminator: string;
|
|
25835
26117
|
readonly count: number;
|
|
@@ -26090,6 +26372,28 @@ declare namespace io.flow.internal.v0.models {
|
|
|
26090
26372
|
readonly organization: string;
|
|
26091
26373
|
readonly tracking_label: io.flow.internal.v0.models.ExportTrackingLabel;
|
|
26092
26374
|
}
|
|
26375
|
+
interface TrackingProcessingError {
|
|
26376
|
+
readonly id: string;
|
|
26377
|
+
readonly aftership_webhook_id: string;
|
|
26378
|
+
readonly carrier_id: string;
|
|
26379
|
+
readonly carrier_tracking_number: string;
|
|
26380
|
+
readonly organization_id?: string;
|
|
26381
|
+
readonly tracking_label_id?: string;
|
|
26382
|
+
readonly errors: string[];
|
|
26383
|
+
readonly failure_classification: io.flow.internal.v0.enums.TrackingProcessingFailureClassification;
|
|
26384
|
+
}
|
|
26385
|
+
interface TrackingProcessingErrorDeleted {
|
|
26386
|
+
readonly discriminator: 'tracking_processing_error_deleted';
|
|
26387
|
+
readonly event_id: string;
|
|
26388
|
+
readonly timestamp: string;
|
|
26389
|
+
readonly id: string;
|
|
26390
|
+
}
|
|
26391
|
+
interface TrackingProcessingErrorUpserted {
|
|
26392
|
+
readonly discriminator: 'tracking_processing_error_upserted';
|
|
26393
|
+
readonly event_id: string;
|
|
26394
|
+
readonly timestamp: string;
|
|
26395
|
+
readonly tracking_processing_error: io.flow.internal.v0.models.TrackingProcessingError;
|
|
26396
|
+
}
|
|
26093
26397
|
interface TrackingRequest {
|
|
26094
26398
|
readonly carrier: string;
|
|
26095
26399
|
readonly carrier_tracking_number: string;
|
|
@@ -26421,6 +26725,7 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
26421
26725
|
type AuthorizedOrderCharge = io.flow.internal.v0.models.AuthorizedShippingCharge;
|
|
26422
26726
|
type BlazeConsumerMessage = io.flow.internal.v0.models.BlazeAddOrderAttributesMessage | io.flow.internal.v0.models.BlazeAddToCartMessage | io.flow.internal.v0.models.BlazeCreateByCartToken | io.flow.internal.v0.models.BlazeInitializeByOrderQuoteMessage | io.flow.internal.v0.models.BlazeInitializeBySessionMessage | io.flow.internal.v0.models.BlazeInitializeMessage | io.flow.internal.v0.models.BlazeSetCartItemsMessage | io.flow.internal.v0.models.BlazeSetCheckoutIdMessage | io.flow.internal.v0.models.BlazeStartCheckoutMessage | io.flow.internal.v0.models.BlazeUpdateCartItemsMessage | io.flow.internal.v0.models.BlazeApplepayAvailabilityResponse | io.flow.internal.v0.models.BlazeSetPromotionCodeMessage;
|
|
26423
26727
|
type BlazeProviderMessage = io.flow.internal.v0.models.BlazeCheckoutCompleteMessage | io.flow.internal.v0.models.BlazeCheckoutProgressMessage | io.flow.internal.v0.models.BlazeCheckoutEventMessage | io.flow.internal.v0.models.BlazeStartCheckoutMessage | io.flow.internal.v0.models.BlazeExitCheckoutMessage | io.flow.internal.v0.models.BlazeExitCheckoutConfirmationMessage | io.flow.internal.v0.models.BlazeRedirectConfirmationMessage | io.flow.internal.v0.models.BlazeSynInitializeMessage | io.flow.internal.v0.models.BlazeApplepayAvailabilityRequest | io.flow.internal.v0.models.BlazePaymentAuthStartMessage | io.flow.internal.v0.models.BlazePaymentAuthCompleteMessage;
|
|
26728
|
+
type CalculatorStamp = io.flow.internal.v0.models.MessageStamp | io.flow.internal.v0.models.CalculationStep;
|
|
26424
26729
|
type CarrierChargeForm = io.flow.internal.v0.models.CarrierChargeFormLabel | io.flow.internal.v0.models.CarrierChargeFormOther;
|
|
26425
26730
|
type CarrierCredentials = io.flow.internal.v0.models.SfExpress | io.flow.internal.v0.models.DhlEcommerce | io.flow.internal.v0.models.Landmark | io.flow.internal.v0.models.Dhl | io.flow.internal.v0.models.FedexCrossborder | io.flow.internal.v0.models.Ups | io.flow.internal.v0.models.Fedex;
|
|
26426
26731
|
type ChannelRateMetadata = io.flow.internal.v0.models.ChannelRateMetadataIdentity | io.flow.internal.v0.models.ChannelRateMetadataRate;
|
|
@@ -26517,7 +26822,7 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
26517
26822
|
type DiscountRequestOfferForm = io.flow.internal.v0.models.DiscountRequestOfferFixedAmountForm;
|
|
26518
26823
|
type DisputeDetails = io.flow.internal.v0.models.DisputeDetailsAdyen | io.flow.internal.v0.models.DisputeDetailsPaypal;
|
|
26519
26824
|
type DutyExpression = io.flow.internal.v0.models.DutyCompoundExpression | io.flow.internal.v0.models.DutySimpleExpression;
|
|
26520
|
-
type Event = io.flow.internal.v0.models.AdyenAuthorizationDeleted | io.flow.internal.v0.models.AdyenAuthorizationUpserted | io.flow.internal.v0.models.AdyenCancelDeleted | io.flow.internal.v0.models.AdyenCancelUpserted | io.flow.internal.v0.models.AdyenCaptureDeleted | io.flow.internal.v0.models.AdyenCaptureUpserted | io.flow.internal.v0.models.AdyenRefundDeleted | io.flow.internal.v0.models.AdyenRefundUpserted | io.flow.internal.v0.models.IndexAssignmentUpserted | io.flow.internal.v0.models.IndexAssignmentDeleted | io.flow.internal.v0.models.MerchantUpserted | io.flow.internal.v0.models.MerchantDeleted | io.flow.internal.v0.models.AccountUpserted | io.flow.internal.v0.models.AccountUpsertedV2 | io.flow.internal.v0.models.AccountDeletedV2 | io.flow.internal.v0.models.AccountContactUpserted | io.flow.internal.v0.models.AccountContactDeleted | io.flow.internal.v0.models.BillingStatementUpserted | io.flow.internal.v0.models.BillingStatementDeleted | io.flow.internal.v0.models.TaxRemittanceTransactionUpserted | io.flow.internal.v0.models.TaxRemittanceTransactionDeleted | io.flow.internal.v0.models.ChannelAccountUpsertedV2 | io.flow.internal.v0.models.ChannelAccountDeleted | io.flow.internal.v0.models.OrganizationAccountUpsertedV2 | io.flow.internal.v0.models.OrganizationAccountDeleted | io.flow.internal.v0.models.AccountTransactionsExportRequest | io.flow.internal.v0.models.AccountOrdersExportRequest | io.flow.internal.v0.models.MainTransactionUpserted | io.flow.internal.v0.models.MainTransactionDeleted | io.flow.internal.v0.models.MainTransactionUpsertedV2 | io.flow.internal.v0.models.MainTransactionDeletedV2 | io.flow.internal.v0.models.TransferTransactionUpserted | io.flow.internal.v0.models.TransferTransactionDeleted | io.flow.internal.v0.models.TransferTransactionUpsertedV2 | io.flow.internal.v0.models.TransferTransactionDeletedV2 | io.flow.internal.v0.models.ProcessingTransactionUpserted | io.flow.internal.v0.models.ProcessingTransactionDeleted | io.flow.internal.v0.models.BankPaymentUpserted | io.flow.internal.v0.models.BankPaymentUpsertedV2 | io.flow.internal.v0.models.BankPaymentDeletedV2 | io.flow.internal.v0.models.ChannelTransactionUpserted | io.flow.internal.v0.models.ChannelTransactionDeleted | io.flow.internal.v0.models.OrderTransactionUpserted | io.flow.internal.v0.models.OrderTransactionDeleted | io.flow.internal.v0.models.LabelTransactionUpserted | io.flow.internal.v0.models.LabelTransactionDeleted | io.flow.internal.v0.models.ChannelBilledTransactionUpserted | io.flow.internal.v0.models.ChannelBilledTransactionDeleted | io.flow.internal.v0.models.TaxTransactionUpserted | io.flow.internal.v0.models.TaxTransactionDeleted | io.flow.internal.v0.models.DutyTransactionUpserted | io.flow.internal.v0.models.DutyTransactionDeleted | io.flow.internal.v0.models.TransactionStatementUpserted | io.flow.internal.v0.models.TransactionStatementDeleted | io.flow.internal.v0.models.DailyValueUpserted | io.flow.internal.v0.models.DailyValueDeleted | io.flow.internal.v0.models.SalesRecordUpserted | io.flow.internal.v0.models.SalesRecordDeleted | io.flow.internal.v0.models.RevenueRecordUpserted | io.flow.internal.v0.models.RevenueRecordDeleted | io.flow.internal.v0.models.CalculatorOrganizationSettingsUpserted | io.flow.internal.v0.models.CalculatorOrganizationSettingsDeleted | io.flow.internal.v0.models.CarrierAccountUpsertedV2 | io.flow.internal.v0.models.CarrierAccountDeleted | io.flow.internal.v0.models.LabelGenerationSettingsUpserted | io.flow.internal.v0.models.LabelGenerationSettingsDeleted | io.flow.internal.v0.models.CatalogImportRequest | io.flow.internal.v0.models.ExclusionRuleUpserted | io.flow.internal.v0.models.ExclusionRuleDeleted | io.flow.internal.v0.models.ExclusionRuleExportRequest | io.flow.internal.v0.models.CatalogItemRegionAvailabilitiesPublished | io.flow.internal.v0.models.ReturnPolicyUpserted | io.flow.internal.v0.models.ReturnPolicyDeleted | io.flow.internal.v0.models.ReturnPolicyItemResultUpserted | io.flow.internal.v0.models.ReturnPolicyItemResultDeleted | io.flow.internal.v0.models.CatalogSettingsUpserted | io.flow.internal.v0.models.CatalogSettingsDeleted | io.flow.internal.v0.models.ChannelOrderAcceptanceUpserted | io.flow.internal.v0.models.ChannelOrderAcceptanceDeleted | io.flow.internal.v0.models.CheckoutConfigurationUpserted | io.flow.internal.v0.models.CheckoutConfigurationDeleted | io.flow.internal.v0.models.CommercialInvoiceInternalUpserted | io.flow.internal.v0.models.CommercialInvoiceInternalDeleted | io.flow.internal.v0.models.LocalizedContentUpserted | io.flow.internal.v0.models.LocalizationUpserted | io.flow.internal.v0.models.InternalChannelRateDeleted | io.flow.internal.v0.models.InternalChannelRateUpserted | io.flow.internal.v0.models.RateDeleted | io.flow.internal.v0.models.RateUpserted | io.flow.internal.v0.models.SpotRateDeleted | io.flow.internal.v0.models.SpotRateUpserted | io.flow.internal.v0.models.UsdSpotRateDeleted | io.flow.internal.v0.models.UsdSpotRateUpserted | io.flow.internal.v0.models.RateDeletedV2 | io.flow.internal.v0.models.RateUpsertedV2 | io.flow.internal.v0.models.OrganizationCurrencySettingUpserted | io.flow.internal.v0.models.OrganizationCurrencySettingDeleted | io.flow.internal.v0.models.ChannelCurrencySettingUpserted | io.flow.internal.v0.models.ChannelCurrencySettingDeleted | io.flow.internal.v0.models.CustomerPurgeUpserted | io.flow.internal.v0.models.CustomsDescriptionImport | io.flow.internal.v0.models.CustomsDescriptionTariffsImport | io.flow.internal.v0.models.ItemDimensionEstimateUpsertedV2 | io.flow.internal.v0.models.ItemDimensionEstimateDeletedV2 | io.flow.internal.v0.models.DisputeUpserted | io.flow.internal.v0.models.DisputeDeleted | io.flow.internal.v0.models.DutyRatesPublishedV2 | io.flow.internal.v0.models.DutyRateRequest | io.flow.internal.v0.models.DutyRateBulkRequest | io.flow.internal.v0.models.DutyRawUpserted | io.flow.internal.v0.models.DutyRawBulkUpserted | io.flow.internal.v0.models.DutyRateUpserted | io.flow.internal.v0.models.DutyRateResponse | io.flow.internal.v0.models.DutyRateBulkResponse | io.flow.internal.v0.models.ItemSalesMarginDeleted | io.flow.internal.v0.models.ItemSalesMarginUpserted | io.flow.internal.v0.models.OrderAttributeDeleted | io.flow.internal.v0.models.OrderAttributeUpserted | io.flow.internal.v0.models.ExperienceExportRequest | io.flow.internal.v0.models.ExperienceImportRequest | io.flow.internal.v0.models.SubmittedOrderUpserted | io.flow.internal.v0.models.LevyRateSummaryUpserted | io.flow.internal.v0.models.ExperimentUpserted | io.flow.internal.v0.models.ExperimentDeleted | io.flow.internal.v0.models.ExperimentResultsUpserted | io.flow.internal.v0.models.ExperimentResultsDeleted | io.flow.internal.v0.models.DailyExperimentResultsUpserted | io.flow.internal.v0.models.DailyExperimentResultsDeleted | io.flow.internal.v0.models.ExperimentMilestoneUpserted | io.flow.internal.v0.models.ExperimentMilestoneDeleted | io.flow.internal.v0.models.ExportCompleted | io.flow.internal.v0.models.ExportFailed | io.flow.internal.v0.models.FeatureUpserted | io.flow.internal.v0.models.FeatureDeleted | io.flow.internal.v0.models.OrganizationBooleanValueUpserted | io.flow.internal.v0.models.OrganizationBooleanValueDeleted | io.flow.internal.v0.models.AccountSettingsUpserted | io.flow.internal.v0.models.AccountSettingsDeleted | io.flow.internal.v0.models.AccountProcessingRatesUpserted | io.flow.internal.v0.models.AccountProcessingRatesDeleted | io.flow.internal.v0.models.BillingOrganizationProcessingRatesUpserted | io.flow.internal.v0.models.BillingOrganizationProcessingRatesDeleted | io.flow.internal.v0.models.BillingOrganizationSettingsUpserted | io.flow.internal.v0.models.BillingOrganizationSettingsDeleted | io.flow.internal.v0.models.BillingStatementBatchUpserted | io.flow.internal.v0.models.BillingStatementBatchDeleted | io.flow.internal.v0.models.BillingStatementBatchStatementUpserted | io.flow.internal.v0.models.BillingStatementBatchStatementDeleted | io.flow.internal.v0.models.StandaloneAttachmentUpserted | io.flow.internal.v0.models.StandaloneAttachmentDeleted | io.flow.internal.v0.models.PlatformFeeChangeUpserted | io.flow.internal.v0.models.PlatformFeeChangeDeleted | io.flow.internal.v0.models.OrganizationBankAccountUpserted | io.flow.internal.v0.models.OrganizationBankAccountDeleted | io.flow.internal.v0.models.BillingCsvTransactionUpserted | io.flow.internal.v0.models.BillingCsvTransactionDeleted | io.flow.internal.v0.models.LabelInvoiceRequestUpserted | io.flow.internal.v0.models.LabelInvoiceRequestDeleted | io.flow.internal.v0.models.CarrierChargeUpserted | io.flow.internal.v0.models.CarrierChargeDeleted | io.flow.internal.v0.models.FraudReviewUpserted | io.flow.internal.v0.models.FraudReviewDeleted | io.flow.internal.v0.models.FraudPendingReviewUpserted | io.flow.internal.v0.models.FraudPendingReviewDeleted | io.flow.internal.v0.models.FraudReviewDecisionUpserted | io.flow.internal.v0.models.FraudReviewDecisionDeleted | io.flow.internal.v0.models.FraudProviderConfigurationUpserted | io.flow.internal.v0.models.FraudProviderConfigurationDeleted | io.flow.internal.v0.models.ManualReviewRuleUpserted | io.flow.internal.v0.models.ManualReviewRuleDeleted | io.flow.internal.v0.models.FtpFileUpserted | io.flow.internal.v0.models.FtpFileDeleted | io.flow.internal.v0.models.FtpFileToProcessUploaded | io.flow.internal.v0.models.CenterDefaultsUpserted | io.flow.internal.v0.models.CenterDefaultsDeleted | io.flow.internal.v0.models.PregeneratedRequestEvent | io.flow.internal.v0.models.QuoteUpserted | io.flow.internal.v0.models.QuoteDeleted | io.flow.internal.v0.models.AllItemsExport | io.flow.internal.v0.models.HarmonizedItemsHs6Export | io.flow.internal.v0.models.UnharmonizedItemsExport | io.flow.internal.v0.models.DutiedItemsExport | io.flow.internal.v0.models.TariffCodesExport | io.flow.internal.v0.models.HarmonizationPhraseSuggestionRequestImport | io.flow.internal.v0.models.HarmonizationCodesImport | io.flow.internal.v0.models.ItemClassificationCreated | io.flow.internal.v0.models.HarmonizeFullyRequestV2 | io.flow.internal.v0.models.HybrisCatalogItemsImportRequest | io.flow.internal.v0.models.ImportCompleted | io.flow.internal.v0.models.ImportFailed | io.flow.internal.v0.models.TimeToClassifyUpserted | io.flow.internal.v0.models.TimeToClassifyDeleted | io.flow.internal.v0.models.TimeToClassifyAggregatedUpserted | io.flow.internal.v0.models.TimeToClassifyAggregatedDeleted | io.flow.internal.v0.models.RateSourceSummaryUpserted | io.flow.internal.v0.models.RateSourceSummaryDeleted | io.flow.internal.v0.models.RateFreshnessSummaryUpserted | io.flow.internal.v0.models.RateFreshnessSummaryDeleted | io.flow.internal.v0.models.ItemHarmonizationUpserted | io.flow.internal.v0.models.ItemHarmonizationDeleted | io.flow.internal.v0.models.HarmonizationItemClassificationUpserted | io.flow.internal.v0.models.HarmonizationItemClassificationDeleted | io.flow.internal.v0.models.HarmonizationClassificationStatisticsPublished | io.flow.internal.v0.models.IssuerUpserted | io.flow.internal.v0.models.IssuerDeleted | io.flow.internal.v0.models.ItemFormImportRequest | io.flow.internal.v0.models.LabelRequestErrorUpserted | io.flow.internal.v0.models.LabelRequestErrorDeleted | io.flow.internal.v0.models.LabelTrackingSummaryUpserted | io.flow.internal.v0.models.LabelTrackingSummaryDeleted | io.flow.internal.v0.models.LocalizedItemUpsertedV2 | io.flow.internal.v0.models.LocalizedItemDeleted | io.flow.internal.v0.models.LocalizedItemDeletedV2 | io.flow.internal.v0.models.LocalizedItemSnapshot | io.flow.internal.v0.models.LocalizedPriceBookItemUpserted | io.flow.internal.v0.models.LocalizedPriceBookItemDeleted | io.flow.internal.v0.models.FeedUpserted | io.flow.internal.v0.models.FeedDeleted | io.flow.internal.v0.models.FeedsExport | io.flow.internal.v0.models.LocalizedItemPricesExportRequest | io.flow.internal.v0.models.OptinPromptUpserted | io.flow.internal.v0.models.OptinPromptDeleted | io.flow.internal.v0.models.OrderCombinedShipmentUpserted | io.flow.internal.v0.models.OrderCombinedShipmentDeleted | io.flow.internal.v0.models.OrderFulfillmentDeleted | io.flow.internal.v0.models.OrderFulfillmentUpserted | io.flow.internal.v0.models.OrderPlaced | io.flow.internal.v0.models.ReadyToFulfill | io.flow.internal.v0.models.FulfillmentCancel | io.flow.internal.v0.models.OrderShipped | io.flow.internal.v0.models.ItemsShipped | io.flow.internal.v0.models.OrganizationBusinessEntityDeleted | io.flow.internal.v0.models.OrganizationBusinessEntityUpserted | io.flow.internal.v0.models.OrganizationStatusChangeUpserted | io.flow.internal.v0.models.OrganizationStatusChangeDeleted | io.flow.internal.v0.models.OrganizationDeactivationUpserted | io.flow.internal.v0.models.OrganizationDeactivationDeleted | io.flow.internal.v0.models.MerchantGuidAssignmentUpserted | io.flow.internal.v0.models.MerchantGuidAssignmentDeleted | io.flow.internal.v0.models.PartnerOrganizationSettingsUpserted | io.flow.internal.v0.models.PartnerOrganizationSettingsDeleted | io.flow.internal.v0.models.UnassignedMerchantGuidUpserted | io.flow.internal.v0.models.UnassignedMerchantGuidDeleted | io.flow.internal.v0.models.InternalAuthorizationUpserted | io.flow.internal.v0.models.InternalAuthorizationDeleted | io.flow.internal.v0.models.AfterpayAuthorizationUpserted | io.flow.internal.v0.models.AfterpayAuthorizationDeleted | io.flow.internal.v0.models.AfterpayCaptureUpserted | io.flow.internal.v0.models.AfterpayCaptureDeleted | io.flow.internal.v0.models.AfterpayRefundUpserted | io.flow.internal.v0.models.AfterpayRefundDeleted | io.flow.internal.v0.models.AdyenMerchantAccountUpserted | io.flow.internal.v0.models.AdyenMerchantAccountDeleted | io.flow.internal.v0.models.ChargebackUpserted | io.flow.internal.v0.models.ChargebackDeleted | io.flow.internal.v0.models.PaymentProcessorAccountUpserted | io.flow.internal.v0.models.PaymentProcessorAccountDeleted | io.flow.internal.v0.models.PaymentProcessorMerchantUpserted | io.flow.internal.v0.models.PaymentProcessorMerchantDeleted | io.flow.internal.v0.models.VirtualCardProviderUpserted | io.flow.internal.v0.models.VirtualCardProviderDeleted | io.flow.internal.v0.models.AuthorizationBundleUpserted | io.flow.internal.v0.models.AuthorizationBundleDeleted | io.flow.internal.v0.models.OrganizationPaymentSettingUpserted | io.flow.internal.v0.models.OrganizationPaymentSettingDeleted | io.flow.internal.v0.models.PaypalPaymentDeleted | io.flow.internal.v0.models.PaypalPaymentUpserted | io.flow.internal.v0.models.PaypalExecutionDeleted | io.flow.internal.v0.models.PaypalExecutionUpserted | io.flow.internal.v0.models.PaypalRefundDeleted | io.flow.internal.v0.models.PaypalRefundUpserted | io.flow.internal.v0.models.PricingIndicator | io.flow.internal.v0.models.ProductRestrictionRuleDecisionUpserted | io.flow.internal.v0.models.ProductRestrictionRuleDecisionDeleted | io.flow.internal.v0.models.OrderRatesPublishedV3 | io.flow.internal.v0.models.RatecardDimensionEstimateUpserted | io.flow.internal.v0.models.RatecardDimensionEstimateDeleted | io.flow.internal.v0.models.RatecardLanesImportRequest | io.flow.internal.v0.models.RatecardStandardConfigurationUpserted | io.flow.internal.v0.models.RatecardStandardConfigurationDeleted | io.flow.internal.v0.models.RatecardServiceFeeUpserted | io.flow.internal.v0.models.RatecardServiceFeeDeleted | io.flow.internal.v0.models.RatecardLaneAggregateUpserted | io.flow.internal.v0.models.RatecardLaneAggregateDeleted | io.flow.internal.v0.models.RatecardRateLevelUpserted | io.flow.internal.v0.models.RatecardRateLevelDeleted | io.flow.internal.v0.models.RatecardRateLevelRatecardUpserted | io.flow.internal.v0.models.RatecardRateLevelRatecardDeleted | io.flow.internal.v0.models.RatecardRateLevelOrganizationUpserted | io.flow.internal.v0.models.RatecardRateLevelOrganizationDeleted | io.flow.internal.v0.models.OrganizationRestrictionSnapshotUpserted | io.flow.internal.v0.models.OrganizationRestrictionSnapshotDeleted | io.flow.internal.v0.models.RestrictionOrganizationStatusUpserted | io.flow.internal.v0.models.RestrictionOrganizationStatusDeleted | io.flow.internal.v0.models.OrganizationRestrictionStatusUpserted | io.flow.internal.v0.models.OrganizationRestrictionStatusDeleted | io.flow.internal.v0.models.ScreeningStatusChangeUpserted | io.flow.internal.v0.models.ScreeningStatusChangeDeleted | io.flow.internal.v0.models.ShopifyShopUpserted | io.flow.internal.v0.models.ShopifyShopDeleted | io.flow.internal.v0.models.ShopifyExperienceShortIdUpserted | io.flow.internal.v0.models.ShopifyExperienceShortIdDeleted | io.flow.internal.v0.models.ShopifyMarketsOrderUpserted | io.flow.internal.v0.models.ShopifyMarketsOrderDeleted | io.flow.internal.v0.models.ShopifyMarketsShopUpserted | io.flow.internal.v0.models.ShopifyMarketsShopDeleted | io.flow.internal.v0.models.ShopifyMarketsWebhookRegistrationUpserted | io.flow.internal.v0.models.ShopifyMarketsWebhookRegistrationDeleted | io.flow.internal.v0.models.ShopifyMarketsShopStatisticsUpserted | io.flow.internal.v0.models.ShopifyMarketsShopStatisticsDeleted | io.flow.internal.v0.models.ShopifyMarketsMetricsUpserted | io.flow.internal.v0.models.ShopifyMarketsMetricsDeleted | io.flow.internal.v0.models.ChannelOrderSummaryUpserted | io.flow.internal.v0.models.ChannelOrderSummaryDeleted | io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventUpserted | io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventDeleted | io.flow.internal.v0.models.ShopifyOrderFulfillmentsSnapshotUpserted | io.flow.internal.v0.models.ShopifyOrderFulfillmentsSnapshotDeleted | io.flow.internal.v0.models.StripeAuthorizationDeleted | io.flow.internal.v0.models.StripeAuthorizationUpserted | io.flow.internal.v0.models.StripeReversalDeleted | io.flow.internal.v0.models.StripeReversalUpserted | io.flow.internal.v0.models.StripeCaptureDeleted | io.flow.internal.v0.models.StripeCaptureUpserted | io.flow.internal.v0.models.StripeRefundDeleted | io.flow.internal.v0.models.StripeRefundUpserted | io.flow.internal.v0.models.SvbVirtualCardClearingUpserted | io.flow.internal.v0.models.SvbVirtualCardClearingDeleted | io.flow.internal.v0.models.LiabilityRemittancePlanUpserted | io.flow.internal.v0.models.LiabilityRemittancePlanDeleted | io.flow.internal.v0.models.SvitlanaItemUpserted | io.flow.internal.v0.models.SvitlanaItemDeleted | io.flow.internal.v0.models.ColmItemUpserted | io.flow.internal.v0.models.ColmItemDeleted | io.flow.internal.v0.models.ShrutiDemoItemUpserted | io.flow.internal.v0.models.ShrutiDemoItemDeleted | io.flow.internal.v0.models.TamItemUpserted | io.flow.internal.v0.models.TamItemDeleted | io.flow.internal.v0.models.TrackingLabelEventUpsertedV2 | io.flow.internal.v0.models.TrackingLabelEventDeletedV2 | io.flow.internal.v0.models.TrackingLabelUpserted | io.flow.internal.v0.models.TrackingLabelDeleted | io.flow.internal.v0.models.TrackingUpserted | io.flow.internal.v0.models.TrackingDeleted | io.flow.internal.v0.models.TrackingRequestUpserted | io.flow.internal.v0.models.TrackingResponseUpserted | io.flow.internal.v0.models.UserUpsertedV2 | io.flow.internal.v0.models.UserDeletedV2;
|
|
26825
|
+
type Event = io.flow.internal.v0.models.AdyenAuthorizationDeleted | io.flow.internal.v0.models.AdyenAuthorizationUpserted | io.flow.internal.v0.models.AdyenCancelDeleted | io.flow.internal.v0.models.AdyenCancelUpserted | io.flow.internal.v0.models.AdyenCaptureDeleted | io.flow.internal.v0.models.AdyenCaptureUpserted | io.flow.internal.v0.models.AdyenRefundDeleted | io.flow.internal.v0.models.AdyenRefundUpserted | io.flow.internal.v0.models.IndexAssignmentUpserted | io.flow.internal.v0.models.IndexAssignmentDeleted | io.flow.internal.v0.models.FulfillmentUpserted | io.flow.internal.v0.models.FulfillmentDeleted | io.flow.internal.v0.models.MerchantUpserted | io.flow.internal.v0.models.MerchantDeleted | io.flow.internal.v0.models.AccountUpserted | io.flow.internal.v0.models.AccountUpsertedV2 | io.flow.internal.v0.models.AccountDeletedV2 | io.flow.internal.v0.models.AccountContactUpserted | io.flow.internal.v0.models.AccountContactDeleted | io.flow.internal.v0.models.BillingStatementUpserted | io.flow.internal.v0.models.BillingStatementDeleted | io.flow.internal.v0.models.TaxRemittanceTransactionUpserted | io.flow.internal.v0.models.TaxRemittanceTransactionDeleted | io.flow.internal.v0.models.ChannelAccountUpsertedV2 | io.flow.internal.v0.models.ChannelAccountDeleted | io.flow.internal.v0.models.OrganizationAccountUpsertedV2 | io.flow.internal.v0.models.OrganizationAccountDeleted | io.flow.internal.v0.models.AccountTransactionsExportRequest | io.flow.internal.v0.models.AccountOrdersExportRequest | io.flow.internal.v0.models.MainTransactionUpserted | io.flow.internal.v0.models.MainTransactionDeleted | io.flow.internal.v0.models.MainTransactionUpsertedV2 | io.flow.internal.v0.models.MainTransactionDeletedV2 | io.flow.internal.v0.models.TransferTransactionUpserted | io.flow.internal.v0.models.TransferTransactionDeleted | io.flow.internal.v0.models.TransferTransactionUpsertedV2 | io.flow.internal.v0.models.TransferTransactionDeletedV2 | io.flow.internal.v0.models.ProcessingTransactionUpserted | io.flow.internal.v0.models.ProcessingTransactionDeleted | io.flow.internal.v0.models.BankPaymentUpserted | io.flow.internal.v0.models.BankPaymentUpsertedV2 | io.flow.internal.v0.models.BankPaymentDeletedV2 | io.flow.internal.v0.models.ChannelTransactionUpserted | io.flow.internal.v0.models.ChannelTransactionDeleted | io.flow.internal.v0.models.OrderTransactionUpserted | io.flow.internal.v0.models.OrderTransactionDeleted | io.flow.internal.v0.models.LabelTransactionUpserted | io.flow.internal.v0.models.LabelTransactionDeleted | io.flow.internal.v0.models.ChannelBilledTransactionUpserted | io.flow.internal.v0.models.ChannelBilledTransactionDeleted | io.flow.internal.v0.models.TaxTransactionUpserted | io.flow.internal.v0.models.TaxTransactionDeleted | io.flow.internal.v0.models.DutyTransactionUpserted | io.flow.internal.v0.models.DutyTransactionDeleted | io.flow.internal.v0.models.TransactionStatementUpserted | io.flow.internal.v0.models.TransactionStatementDeleted | io.flow.internal.v0.models.DailyValueUpserted | io.flow.internal.v0.models.DailyValueDeleted | io.flow.internal.v0.models.SalesRecordUpserted | io.flow.internal.v0.models.SalesRecordDeleted | io.flow.internal.v0.models.RevenueRecordUpserted | io.flow.internal.v0.models.RevenueRecordDeleted | io.flow.internal.v0.models.CalculatorOrganizationSettingsUpserted | io.flow.internal.v0.models.CalculatorOrganizationSettingsDeleted | io.flow.internal.v0.models.CarrierAccountUpsertedV2 | io.flow.internal.v0.models.CarrierAccountDeleted | io.flow.internal.v0.models.LabelGenerationSettingsUpserted | io.flow.internal.v0.models.LabelGenerationSettingsDeleted | io.flow.internal.v0.models.CatalogImportRequest | io.flow.internal.v0.models.ExclusionRuleUpserted | io.flow.internal.v0.models.ExclusionRuleDeleted | io.flow.internal.v0.models.ExclusionRuleExportRequest | io.flow.internal.v0.models.CatalogItemRegionAvailabilitiesPublished | io.flow.internal.v0.models.ReturnPolicyUpserted | io.flow.internal.v0.models.ReturnPolicyDeleted | io.flow.internal.v0.models.ReturnPolicyItemResultUpserted | io.flow.internal.v0.models.ReturnPolicyItemResultDeleted | io.flow.internal.v0.models.CatalogSettingsUpserted | io.flow.internal.v0.models.CatalogSettingsDeleted | io.flow.internal.v0.models.ChannelOrderAcceptanceUpserted | io.flow.internal.v0.models.ChannelOrderAcceptanceDeleted | io.flow.internal.v0.models.CheckoutConfigurationUpserted | io.flow.internal.v0.models.CheckoutConfigurationDeleted | io.flow.internal.v0.models.CommercialInvoiceInternalUpserted | io.flow.internal.v0.models.CommercialInvoiceInternalDeleted | io.flow.internal.v0.models.LocalizedContentUpserted | io.flow.internal.v0.models.LocalizationUpserted | io.flow.internal.v0.models.InternalChannelRateDeleted | io.flow.internal.v0.models.InternalChannelRateUpserted | io.flow.internal.v0.models.RateDeleted | io.flow.internal.v0.models.RateUpserted | io.flow.internal.v0.models.SpotRateDeleted | io.flow.internal.v0.models.SpotRateUpserted | io.flow.internal.v0.models.UsdSpotRateDeleted | io.flow.internal.v0.models.UsdSpotRateUpserted | io.flow.internal.v0.models.RateDeletedV2 | io.flow.internal.v0.models.RateUpsertedV2 | io.flow.internal.v0.models.OrganizationCurrencySettingUpserted | io.flow.internal.v0.models.OrganizationCurrencySettingDeleted | io.flow.internal.v0.models.ChannelCurrencySettingUpserted | io.flow.internal.v0.models.ChannelCurrencySettingDeleted | io.flow.internal.v0.models.CustomerPurgeUpserted | io.flow.internal.v0.models.CustomsDescriptionImport | io.flow.internal.v0.models.CustomsDescriptionTariffsImport | io.flow.internal.v0.models.ItemDimensionEstimateUpsertedV2 | io.flow.internal.v0.models.ItemDimensionEstimateDeletedV2 | io.flow.internal.v0.models.DisputeUpserted | io.flow.internal.v0.models.DisputeDeleted | io.flow.internal.v0.models.DutyRatesPublishedV2 | io.flow.internal.v0.models.DutyRateRequest | io.flow.internal.v0.models.DutyRateBulkRequest | io.flow.internal.v0.models.DutyRawUpserted | io.flow.internal.v0.models.DutyRawBulkUpserted | io.flow.internal.v0.models.DutyRateUpserted | io.flow.internal.v0.models.DutyRateResponse | io.flow.internal.v0.models.DutyRateBulkResponse | io.flow.internal.v0.models.ItemSalesMarginDeleted | io.flow.internal.v0.models.ItemSalesMarginUpserted | io.flow.internal.v0.models.OrderAttributeDeleted | io.flow.internal.v0.models.OrderAttributeUpserted | io.flow.internal.v0.models.ExperienceExportRequest | io.flow.internal.v0.models.ExperienceImportRequest | io.flow.internal.v0.models.SubmittedOrderUpserted | io.flow.internal.v0.models.LevyRateSummaryUpserted | io.flow.internal.v0.models.ExperimentUpserted | io.flow.internal.v0.models.ExperimentDeleted | io.flow.internal.v0.models.ExperimentResultsUpserted | io.flow.internal.v0.models.ExperimentResultsDeleted | io.flow.internal.v0.models.DailyExperimentResultsUpserted | io.flow.internal.v0.models.DailyExperimentResultsDeleted | io.flow.internal.v0.models.ExperimentMilestoneUpserted | io.flow.internal.v0.models.ExperimentMilestoneDeleted | io.flow.internal.v0.models.ExportCompleted | io.flow.internal.v0.models.ExportFailed | io.flow.internal.v0.models.FeatureUpserted | io.flow.internal.v0.models.FeatureDeleted | io.flow.internal.v0.models.OrganizationBooleanValueUpserted | io.flow.internal.v0.models.OrganizationBooleanValueDeleted | io.flow.internal.v0.models.AccountSettingsUpserted | io.flow.internal.v0.models.AccountSettingsDeleted | io.flow.internal.v0.models.AccountProcessingRatesUpserted | io.flow.internal.v0.models.AccountProcessingRatesDeleted | io.flow.internal.v0.models.BillingOrganizationProcessingRatesUpserted | io.flow.internal.v0.models.BillingOrganizationProcessingRatesDeleted | io.flow.internal.v0.models.BillingOrganizationSettingsUpserted | io.flow.internal.v0.models.BillingOrganizationSettingsDeleted | io.flow.internal.v0.models.StandaloneAttachmentUpserted | io.flow.internal.v0.models.StandaloneAttachmentDeleted | io.flow.internal.v0.models.PlatformFeeChangeUpserted | io.flow.internal.v0.models.PlatformFeeChangeDeleted | io.flow.internal.v0.models.OrganizationBankAccountUpserted | io.flow.internal.v0.models.OrganizationBankAccountDeleted | io.flow.internal.v0.models.BillingCsvTransactionUpserted | io.flow.internal.v0.models.BillingCsvTransactionDeleted | io.flow.internal.v0.models.LabelInvoiceRequestUpserted | io.flow.internal.v0.models.LabelInvoiceRequestDeleted | io.flow.internal.v0.models.CarrierChargeUpserted | io.flow.internal.v0.models.CarrierChargeDeleted | io.flow.internal.v0.models.FraudReviewUpserted | io.flow.internal.v0.models.FraudReviewDeleted | io.flow.internal.v0.models.FraudPendingReviewUpserted | io.flow.internal.v0.models.FraudPendingReviewDeleted | io.flow.internal.v0.models.FraudReviewDecisionUpserted | io.flow.internal.v0.models.FraudReviewDecisionDeleted | io.flow.internal.v0.models.FraudProviderConfigurationUpserted | io.flow.internal.v0.models.FraudProviderConfigurationDeleted | io.flow.internal.v0.models.ManualReviewRuleUpserted | io.flow.internal.v0.models.ManualReviewRuleDeleted | io.flow.internal.v0.models.FtpFileUpserted | io.flow.internal.v0.models.FtpFileDeleted | io.flow.internal.v0.models.FtpFileToProcessUploaded | io.flow.internal.v0.models.CenterDefaultsUpserted | io.flow.internal.v0.models.CenterDefaultsDeleted | io.flow.internal.v0.models.PregeneratedRequestEvent | io.flow.internal.v0.models.QuoteUpserted | io.flow.internal.v0.models.QuoteDeleted | io.flow.internal.v0.models.AllItemsExport | io.flow.internal.v0.models.HarmonizedItemsHs6Export | io.flow.internal.v0.models.UnharmonizedItemsExport | io.flow.internal.v0.models.DutiedItemsExport | io.flow.internal.v0.models.TariffCodesExport | io.flow.internal.v0.models.HarmonizationPhraseSuggestionRequestImport | io.flow.internal.v0.models.HarmonizationCodesImport | io.flow.internal.v0.models.ItemClassificationCreated | io.flow.internal.v0.models.HarmonizeFullyRequestV2 | io.flow.internal.v0.models.HybrisCatalogItemsImportRequest | io.flow.internal.v0.models.ImportCompleted | io.flow.internal.v0.models.ImportFailed | io.flow.internal.v0.models.TimeToClassifyUpserted | io.flow.internal.v0.models.TimeToClassifyDeleted | io.flow.internal.v0.models.TimeToClassifyAggregatedUpserted | io.flow.internal.v0.models.TimeToClassifyAggregatedDeleted | io.flow.internal.v0.models.RateSourceSummaryUpserted | io.flow.internal.v0.models.RateSourceSummaryDeleted | io.flow.internal.v0.models.RateFreshnessSummaryUpserted | io.flow.internal.v0.models.RateFreshnessSummaryDeleted | io.flow.internal.v0.models.ItemHarmonizationUpserted | io.flow.internal.v0.models.ItemHarmonizationDeleted | io.flow.internal.v0.models.HarmonizationItemClassificationUpserted | io.flow.internal.v0.models.HarmonizationItemClassificationDeleted | io.flow.internal.v0.models.HarmonizationClassificationStatisticsPublished | io.flow.internal.v0.models.IssuerUpserted | io.flow.internal.v0.models.IssuerDeleted | io.flow.internal.v0.models.ItemFormImportRequest | io.flow.internal.v0.models.LabelRequestErrorUpserted | io.flow.internal.v0.models.LabelRequestErrorDeleted | io.flow.internal.v0.models.OrderValidationFailureUpserted | io.flow.internal.v0.models.OrderValidationFailureDeleted | io.flow.internal.v0.models.OrderValidationUpserted | io.flow.internal.v0.models.OrderValidationDeleted | io.flow.internal.v0.models.LabelTrackingSummaryUpserted | io.flow.internal.v0.models.LabelTrackingSummaryDeleted | io.flow.internal.v0.models.LocalizedItemUpsertedV2 | io.flow.internal.v0.models.LocalizedItemDeleted | io.flow.internal.v0.models.LocalizedItemDeletedV2 | io.flow.internal.v0.models.LocalizedItemSnapshot | io.flow.internal.v0.models.LocalizedPriceBookItemUpserted | io.flow.internal.v0.models.LocalizedPriceBookItemDeleted | io.flow.internal.v0.models.FeedUpserted | io.flow.internal.v0.models.FeedDeleted | io.flow.internal.v0.models.FeedsExport | io.flow.internal.v0.models.LocalizedItemPricesExportRequest | io.flow.internal.v0.models.OptinPromptUpserted | io.flow.internal.v0.models.OptinPromptDeleted | io.flow.internal.v0.models.OrderCombinedShipmentUpserted | io.flow.internal.v0.models.OrderCombinedShipmentDeleted | io.flow.internal.v0.models.OrderFulfillmentDeleted | io.flow.internal.v0.models.OrderFulfillmentUpserted | io.flow.internal.v0.models.OrderPlaced | io.flow.internal.v0.models.ReadyToFulfill | io.flow.internal.v0.models.FulfillmentCancel | io.flow.internal.v0.models.OrderShipped | io.flow.internal.v0.models.ItemsShipped | io.flow.internal.v0.models.OrganizationBusinessEntityDeleted | io.flow.internal.v0.models.OrganizationBusinessEntityUpserted | io.flow.internal.v0.models.OrganizationStatusChangeUpserted | io.flow.internal.v0.models.OrganizationStatusChangeDeleted | io.flow.internal.v0.models.OrganizationDeactivationUpserted | io.flow.internal.v0.models.OrganizationDeactivationDeleted | io.flow.internal.v0.models.MerchantGuidAssignmentUpserted | io.flow.internal.v0.models.MerchantGuidAssignmentDeleted | io.flow.internal.v0.models.PartnerOrganizationSettingsUpserted | io.flow.internal.v0.models.PartnerOrganizationSettingsDeleted | io.flow.internal.v0.models.UnassignedMerchantGuidUpserted | io.flow.internal.v0.models.UnassignedMerchantGuidDeleted | io.flow.internal.v0.models.InternalAuthorizationUpserted | io.flow.internal.v0.models.InternalAuthorizationDeleted | io.flow.internal.v0.models.AfterpayAuthorizationUpserted | io.flow.internal.v0.models.AfterpayAuthorizationDeleted | io.flow.internal.v0.models.AfterpayCaptureUpserted | io.flow.internal.v0.models.AfterpayCaptureDeleted | io.flow.internal.v0.models.AfterpayRefundUpserted | io.flow.internal.v0.models.AfterpayRefundDeleted | io.flow.internal.v0.models.AdyenMerchantAccountUpserted | io.flow.internal.v0.models.AdyenMerchantAccountDeleted | io.flow.internal.v0.models.ChargebackUpserted | io.flow.internal.v0.models.ChargebackDeleted | io.flow.internal.v0.models.PaymentProcessorAccountUpserted | io.flow.internal.v0.models.PaymentProcessorAccountDeleted | io.flow.internal.v0.models.PaymentProcessorMerchantUpserted | io.flow.internal.v0.models.PaymentProcessorMerchantDeleted | io.flow.internal.v0.models.VirtualCardProviderUpserted | io.flow.internal.v0.models.VirtualCardProviderDeleted | io.flow.internal.v0.models.AuthorizationBundleUpserted | io.flow.internal.v0.models.AuthorizationBundleDeleted | io.flow.internal.v0.models.OrganizationPaymentSettingUpserted | io.flow.internal.v0.models.OrganizationPaymentSettingDeleted | io.flow.internal.v0.models.PaypalPaymentDeleted | io.flow.internal.v0.models.PaypalPaymentUpserted | io.flow.internal.v0.models.PaypalExecutionDeleted | io.flow.internal.v0.models.PaypalExecutionUpserted | io.flow.internal.v0.models.PaypalRefundDeleted | io.flow.internal.v0.models.PaypalRefundUpserted | io.flow.internal.v0.models.PricingIndicator | io.flow.internal.v0.models.ProductRestrictionRuleDecisionUpserted | io.flow.internal.v0.models.ProductRestrictionRuleDecisionDeleted | io.flow.internal.v0.models.OrderRatesPublishedV3 | io.flow.internal.v0.models.RatecardDimensionEstimateUpserted | io.flow.internal.v0.models.RatecardDimensionEstimateDeleted | io.flow.internal.v0.models.RatecardLanesImportRequest | io.flow.internal.v0.models.RatecardStandardConfigurationUpserted | io.flow.internal.v0.models.RatecardStandardConfigurationDeleted | io.flow.internal.v0.models.RatecardServiceFeeUpserted | io.flow.internal.v0.models.RatecardServiceFeeDeleted | io.flow.internal.v0.models.RatecardLaneAggregateUpserted | io.flow.internal.v0.models.RatecardLaneAggregateDeleted | io.flow.internal.v0.models.RatecardRateLevelUpserted | io.flow.internal.v0.models.RatecardRateLevelDeleted | io.flow.internal.v0.models.RatecardRateLevelRatecardUpserted | io.flow.internal.v0.models.RatecardRateLevelRatecardDeleted | io.flow.internal.v0.models.RatecardRateLevelOrganizationUpserted | io.flow.internal.v0.models.RatecardRateLevelOrganizationDeleted | io.flow.internal.v0.models.OrganizationRestrictionSnapshotUpserted | io.flow.internal.v0.models.OrganizationRestrictionSnapshotDeleted | io.flow.internal.v0.models.RestrictionOrganizationStatusUpserted | io.flow.internal.v0.models.RestrictionOrganizationStatusDeleted | io.flow.internal.v0.models.OrganizationRestrictionStatusUpserted | io.flow.internal.v0.models.OrganizationRestrictionStatusDeleted | io.flow.internal.v0.models.ScreeningStatusChangeUpserted | io.flow.internal.v0.models.ScreeningStatusChangeDeleted | io.flow.internal.v0.models.ShopifyShopUpserted | io.flow.internal.v0.models.ShopifyShopDeleted | io.flow.internal.v0.models.ShopifyExperienceShortIdUpserted | io.flow.internal.v0.models.ShopifyExperienceShortIdDeleted | io.flow.internal.v0.models.ShopifyMarketsOrderUpserted | io.flow.internal.v0.models.ShopifyMarketsOrderDeleted | io.flow.internal.v0.models.ShopifyMarketsShopUpserted | io.flow.internal.v0.models.ShopifyMarketsShopDeleted | io.flow.internal.v0.models.ShopifyMarketsWebhookRegistrationUpserted | io.flow.internal.v0.models.ShopifyMarketsWebhookRegistrationDeleted | io.flow.internal.v0.models.ShopifyMarketsShopStatisticsUpserted | io.flow.internal.v0.models.ShopifyMarketsShopStatisticsDeleted | io.flow.internal.v0.models.ShopifyMarketsMetricsUpserted | io.flow.internal.v0.models.ShopifyMarketsMetricsDeleted | io.flow.internal.v0.models.ChannelOrderSummaryUpserted | io.flow.internal.v0.models.ChannelOrderSummaryDeleted | io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventUpserted | io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventDeleted | io.flow.internal.v0.models.ShopifyOrderFulfillmentsSnapshotUpserted | io.flow.internal.v0.models.ShopifyOrderFulfillmentsSnapshotDeleted | io.flow.internal.v0.models.StripeAuthorizationDeleted | io.flow.internal.v0.models.StripeAuthorizationUpserted | io.flow.internal.v0.models.StripeReversalDeleted | io.flow.internal.v0.models.StripeReversalUpserted | io.flow.internal.v0.models.StripeCaptureDeleted | io.flow.internal.v0.models.StripeCaptureUpserted | io.flow.internal.v0.models.StripeRefundDeleted | io.flow.internal.v0.models.StripeRefundUpserted | io.flow.internal.v0.models.SvbVirtualCardClearingUpserted | io.flow.internal.v0.models.SvbVirtualCardClearingDeleted | io.flow.internal.v0.models.LiabilityRemittancePlanUpserted | io.flow.internal.v0.models.LiabilityRemittancePlanDeleted | io.flow.internal.v0.models.SvitlanaItemUpserted | io.flow.internal.v0.models.SvitlanaItemDeleted | io.flow.internal.v0.models.ColmItemUpserted | io.flow.internal.v0.models.ColmItemDeleted | io.flow.internal.v0.models.MatiasItemUpserted | io.flow.internal.v0.models.MatiasItemDeleted | io.flow.internal.v0.models.ShrutiDemoItemUpserted | io.flow.internal.v0.models.ShrutiDemoItemDeleted | io.flow.internal.v0.models.TamItemUpserted | io.flow.internal.v0.models.TamItemDeleted | io.flow.internal.v0.models.TrackingProcessingErrorUpserted | io.flow.internal.v0.models.TrackingProcessingErrorDeleted | io.flow.internal.v0.models.TrackingLabelEventUpsertedV2 | io.flow.internal.v0.models.TrackingLabelEventDeletedV2 | io.flow.internal.v0.models.TrackingLabelUpserted | io.flow.internal.v0.models.TrackingLabelDeleted | io.flow.internal.v0.models.TrackingUpserted | io.flow.internal.v0.models.TrackingDeleted | io.flow.internal.v0.models.TrackingRequestUpserted | io.flow.internal.v0.models.TrackingResponseUpserted | io.flow.internal.v0.models.UserUpsertedV2 | io.flow.internal.v0.models.UserDeletedV2;
|
|
26521
26826
|
type Experiment = io.flow.internal.v0.models.ExperienceExperiment | io.flow.internal.v0.models.FeatureExperiment;
|
|
26522
26827
|
type ExportSchedule = io.flow.internal.v0.models.ExportScheduleDaily | io.flow.internal.v0.models.ExportScheduleRepeated;
|
|
26523
26828
|
type FeatureDefaultValue = io.flow.internal.v0.models.BooleanFeatureDefaultValue | io.flow.internal.v0.models.StringFeatureDefaultValue;
|
|
@@ -26571,6 +26876,7 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
26571
26876
|
type TariffEligibilityData = io.flow.internal.v0.models.RegisteredExporterTariffEligibilityData;
|
|
26572
26877
|
type TariffEligibilityForm = io.flow.internal.v0.models.RegisteredExporterTariffEligibilityForm;
|
|
26573
26878
|
type TaskData = io.flow.internal.v0.models.TaskProcessQueuedEvent | io.flow.internal.v0.models.TaskSummarizeCode | io.flow.internal.v0.models.TaskItemUpserted | io.flow.internal.v0.models.TaskImport;
|
|
26879
|
+
type TaskMetadata = io.flow.internal.v0.models.StatementCreationMetadata | io.flow.internal.v0.models.AccountingFulfillmentMetadata;
|
|
26574
26880
|
type TaxAmount = io.flow.internal.v0.models.CalculatedTaxAmount | io.flow.internal.v0.models.NoCalculatedTaxAmount;
|
|
26575
26881
|
type Tracker = io.flow.internal.v0.models.GoogleAnalytics | io.flow.internal.v0.models.GoogleGlobalSiteTag | io.flow.internal.v0.models.GoogleTagManager | io.flow.internal.v0.models.FacebookPixel | io.flow.internal.v0.models.SnapchatPixel;
|
|
26576
26882
|
type Transaction = io.flow.internal.v0.models.InvoiceTransaction | io.flow.internal.v0.models.ManualTransaction | io.flow.internal.v0.models.ProcessingTransaction | io.flow.internal.v0.models.SubscriptionTransaction | io.flow.internal.v0.models.TaxRemittanceTransaction | io.flow.internal.v0.models.TransferTransaction | io.flow.internal.v0.models.VirtualCardTransaction | io.flow.internal.v0.models.DisputeTransaction | io.flow.internal.v0.models.ChannelTransaction | io.flow.internal.v0.models.LabelTransaction | io.flow.internal.v0.models.OrderTransaction | io.flow.internal.v0.models.ChannelBilledTransaction | io.flow.internal.v0.models.TaxTransaction | io.flow.internal.v0.models.DutyTransaction | io.flow.internal.v0.models.TrueupTransaction | io.flow.internal.v0.models.CarrierChargeTransaction;
|
|
@@ -26589,6 +26895,9 @@ export declare type AccountDepositRule = io.flow.internal.v0.models.AccountDepos
|
|
|
26589
26895
|
export declare type AccountDepositRuleForm = io.flow.internal.v0.models.AccountDepositRuleForm;
|
|
26590
26896
|
export declare type AccountOrdersExportRequest = io.flow.internal.v0.models.AccountOrdersExportRequest;
|
|
26591
26897
|
export declare type AccountOrigin = io.flow.internal.v0.models.AccountOrigin;
|
|
26898
|
+
export declare type AccountPaymentHold = io.flow.internal.v0.models.AccountPaymentHold;
|
|
26899
|
+
export declare type AccountPaymentHoldForm = io.flow.internal.v0.models.AccountPaymentHoldForm;
|
|
26900
|
+
export declare type AccountPaymentHoldReason = io.flow.internal.v0.enums.AccountPaymentHoldReason;
|
|
26592
26901
|
export declare type AccountProcessingRateForm = io.flow.internal.v0.models.AccountProcessingRateForm;
|
|
26593
26902
|
export declare type AccountProcessingRates = io.flow.internal.v0.models.AccountProcessingRates;
|
|
26594
26903
|
export declare type AccountProcessingRatesDeleted = io.flow.internal.v0.models.AccountProcessingRatesDeleted;
|
|
@@ -26607,7 +26916,9 @@ export declare type AccountTransactionsExportRequest = io.flow.internal.v0.model
|
|
|
26607
26916
|
export declare type AccountType = io.flow.internal.v0.enums.AccountType;
|
|
26608
26917
|
export declare type AccountUpserted = io.flow.internal.v0.models.AccountUpserted;
|
|
26609
26918
|
export declare type AccountUpsertedV2 = io.flow.internal.v0.models.AccountUpsertedV2;
|
|
26919
|
+
export declare type AccountingFulfillmentMetadata = io.flow.internal.v0.models.AccountingFulfillmentMetadata;
|
|
26610
26920
|
export declare type ActionQuantity = io.flow.internal.v0.models.ActionQuantity;
|
|
26921
|
+
export declare type AdditionalImportTax = io.flow.internal.v0.models.AdditionalImportTax;
|
|
26611
26922
|
export declare type AddressConfigurationProvinceSetting = io.flow.internal.v0.models.AddressConfigurationProvinceSetting;
|
|
26612
26923
|
export declare type AddressConfigurationSetting = io.flow.internal.v0.models.AddressConfigurationSetting;
|
|
26613
26924
|
export declare type AddressConfigurationSettingForm = io.flow.internal.v0.models.AddressConfigurationSettingForm;
|
|
@@ -26729,14 +27040,6 @@ export declare type BillingOrganizationSettingsDeleted = io.flow.internal.v0.mod
|
|
|
26729
27040
|
export declare type BillingOrganizationSettingsUpserted = io.flow.internal.v0.models.BillingOrganizationSettingsUpserted;
|
|
26730
27041
|
export declare type BillingStatementAttachment = io.flow.internal.v0.models.BillingStatementAttachment;
|
|
26731
27042
|
export declare type BillingStatementAttachmentKey = io.flow.internal.v0.enums.BillingStatementAttachmentKey;
|
|
26732
|
-
export declare type BillingStatementBatch = io.flow.internal.v0.models.BillingStatementBatch;
|
|
26733
|
-
export declare type BillingStatementBatchDeleted = io.flow.internal.v0.models.BillingStatementBatchDeleted;
|
|
26734
|
-
export declare type BillingStatementBatchFileKey = io.flow.internal.v0.enums.BillingStatementBatchFileKey;
|
|
26735
|
-
export declare type BillingStatementBatchReference = io.flow.internal.v0.models.BillingStatementBatchReference;
|
|
26736
|
-
export declare type BillingStatementBatchStatement = io.flow.internal.v0.models.BillingStatementBatchStatement;
|
|
26737
|
-
export declare type BillingStatementBatchStatementDeleted = io.flow.internal.v0.models.BillingStatementBatchStatementDeleted;
|
|
26738
|
-
export declare type BillingStatementBatchStatementUpserted = io.flow.internal.v0.models.BillingStatementBatchStatementUpserted;
|
|
26739
|
-
export declare type BillingStatementBatchUpserted = io.flow.internal.v0.models.BillingStatementBatchUpserted;
|
|
26740
27043
|
export declare type BillingStatementDeleted = io.flow.internal.v0.models.BillingStatementDeleted;
|
|
26741
27044
|
export declare type BillingStatementReference = io.flow.internal.v0.models.BillingStatementReference;
|
|
26742
27045
|
export declare type BillingStatementSummary = io.flow.internal.v0.models.BillingStatementSummary;
|
|
@@ -26798,6 +27101,10 @@ export declare type BrowserBundlePaymentMethods = io.flow.internal.v0.models.Bro
|
|
|
26798
27101
|
export declare type BulkClassificationAction = io.flow.internal.v0.models.BulkClassificationAction;
|
|
26799
27102
|
export declare type ByRuleSnapshot = io.flow.internal.v0.models.ByRuleSnapshot;
|
|
26800
27103
|
export declare type CalculatedTaxAmount = io.flow.internal.v0.models.CalculatedTaxAmount;
|
|
27104
|
+
export declare type CalculationStampingLineItem = io.flow.internal.v0.models.CalculationStampingLineItem;
|
|
27105
|
+
export declare type CalculationStampingShippingLine = io.flow.internal.v0.models.CalculationStampingShippingLine;
|
|
27106
|
+
export declare type CalculationStep = io.flow.internal.v0.models.CalculationStep;
|
|
27107
|
+
export declare type CalculationTotal = io.flow.internal.v0.models.CalculationTotal;
|
|
26801
27108
|
export declare type CalculatorDtcePostBody = io.flow.internal.v0.models.CalculatorDtcePostBody;
|
|
26802
27109
|
export declare type CalculatorDtceProduct = io.flow.internal.v0.models.CalculatorDtceProduct;
|
|
26803
27110
|
export declare type CalculatorEngine = io.flow.internal.v0.enums.CalculatorEngine;
|
|
@@ -26805,6 +27112,7 @@ export declare type CalculatorOrganizationSettings = io.flow.internal.v0.models.
|
|
|
26805
27112
|
export declare type CalculatorOrganizationSettingsDeleted = io.flow.internal.v0.models.CalculatorOrganizationSettingsDeleted;
|
|
26806
27113
|
export declare type CalculatorOrganizationSettingsForm = io.flow.internal.v0.models.CalculatorOrganizationSettingsForm;
|
|
26807
27114
|
export declare type CalculatorOrganizationSettingsUpserted = io.flow.internal.v0.models.CalculatorOrganizationSettingsUpserted;
|
|
27115
|
+
export declare type CalculatorStamp = io.flow.internal.v0.unions.CalculatorStamp;
|
|
26808
27116
|
export declare type CarrierAccount = io.flow.internal.v0.models.CarrierAccount;
|
|
26809
27117
|
export declare type CarrierAccountDeleted = io.flow.internal.v0.models.CarrierAccountDeleted;
|
|
26810
27118
|
export declare type CarrierAccountForm = io.flow.internal.v0.models.CarrierAccountForm;
|
|
@@ -27473,6 +27781,7 @@ export declare type CommercialInvoiceComparison = io.flow.internal.v0.models.Com
|
|
|
27473
27781
|
export declare type CommercialInvoiceInternal = io.flow.internal.v0.models.CommercialInvoiceInternal;
|
|
27474
27782
|
export declare type CommercialInvoiceInternalDeleted = io.flow.internal.v0.models.CommercialInvoiceInternalDeleted;
|
|
27475
27783
|
export declare type CommercialInvoiceInternalUpserted = io.flow.internal.v0.models.CommercialInvoiceInternalUpserted;
|
|
27784
|
+
export declare type CommercialInvoiceSummary = io.flow.internal.v0.models.CommercialInvoiceSummary;
|
|
27476
27785
|
export declare type CompanyReference = io.flow.internal.v0.models.CompanyReference;
|
|
27477
27786
|
export declare type Compliance = io.flow.internal.v0.models.Compliance;
|
|
27478
27787
|
export declare type ComplianceData = io.flow.internal.v0.unions.ComplianceData;
|
|
@@ -27752,6 +28061,7 @@ export declare type FiservMerchantModificationForm = io.flow.internal.v0.models.
|
|
|
27752
28061
|
export declare type FiservMerchantPutForm = io.flow.internal.v0.models.FiservMerchantPutForm;
|
|
27753
28062
|
export declare type FlowAccount = io.flow.internal.v0.models.FlowAccount;
|
|
27754
28063
|
export declare type FlowApp = io.flow.internal.v0.enums.FlowApp;
|
|
28064
|
+
export declare type FlowBillingStatement = io.flow.internal.v0.models.FlowBillingStatement;
|
|
27755
28065
|
export declare type FlowChannelOrganization = io.flow.internal.v0.models.FlowChannelOrganization;
|
|
27756
28066
|
export declare type FlowLabProject = io.flow.internal.v0.models.FlowLabProject;
|
|
27757
28067
|
export declare type FlowLabProjectPostForm = io.flow.internal.v0.models.FlowLabProjectPostForm;
|
|
@@ -27798,6 +28108,7 @@ export declare type Fulfillment = io.flow.internal.v0.models.Fulfillment;
|
|
|
27798
28108
|
export declare type FulfillmentActionForm = io.flow.internal.v0.models.FulfillmentActionForm;
|
|
27799
28109
|
export declare type FulfillmentBusiness = io.flow.internal.v0.models.FulfillmentBusiness;
|
|
27800
28110
|
export declare type FulfillmentCancel = io.flow.internal.v0.models.FulfillmentCancel;
|
|
28111
|
+
export declare type FulfillmentDeleted = io.flow.internal.v0.models.FulfillmentDeleted;
|
|
27801
28112
|
export declare type FulfillmentInternalExperienceReference = io.flow.internal.v0.models.FulfillmentInternalExperienceReference;
|
|
27802
28113
|
export declare type FulfillmentOrigin = io.flow.internal.v0.models.FulfillmentOrigin;
|
|
27803
28114
|
export declare type FulfillmentProof = io.flow.internal.v0.unions.FulfillmentProof;
|
|
@@ -27813,6 +28124,7 @@ export declare type FulfillmentSubsidyBreakdown = io.flow.internal.v0.models.Ful
|
|
|
27813
28124
|
export declare type FulfillmentTrigger = io.flow.internal.v0.unions.FulfillmentTrigger;
|
|
27814
28125
|
export declare type FulfillmentTriggerProof = io.flow.internal.v0.models.FulfillmentTriggerProof;
|
|
27815
28126
|
export declare type FulfillmentTriggerTime = io.flow.internal.v0.models.FulfillmentTriggerTime;
|
|
28127
|
+
export declare type FulfillmentUpserted = io.flow.internal.v0.models.FulfillmentUpserted;
|
|
27816
28128
|
export declare type FxFee = io.flow.internal.v0.models.FxFee;
|
|
27817
28129
|
export declare type FxRevenueRecognition = io.flow.internal.v0.models.FxRevenueRecognition;
|
|
27818
28130
|
export declare type FxRevenueRecognitionAccount = io.flow.internal.v0.models.FxRevenueRecognitionAccount;
|
|
@@ -28145,6 +28457,11 @@ export declare type MarketingGatewaySchemaSummary = io.flow.internal.v0.models.M
|
|
|
28145
28457
|
export declare type MarketingGatewaySourceSummary = io.flow.internal.v0.unions.MarketingGatewaySourceSummary;
|
|
28146
28458
|
export declare type MarketingGatewaySupportedChannelDetails = io.flow.internal.v0.models.MarketingGatewaySupportedChannelDetails;
|
|
28147
28459
|
export declare type MarketsOrder = io.flow.internal.v0.models.MarketsOrder;
|
|
28460
|
+
export declare type MatiasItem = io.flow.internal.v0.models.MatiasItem;
|
|
28461
|
+
export declare type MatiasItemDeleted = io.flow.internal.v0.models.MatiasItemDeleted;
|
|
28462
|
+
export declare type MatiasItemForm = io.flow.internal.v0.models.MatiasItemForm;
|
|
28463
|
+
export declare type MatiasItemType = io.flow.internal.v0.enums.MatiasItemType;
|
|
28464
|
+
export declare type MatiasItemUpserted = io.flow.internal.v0.models.MatiasItemUpserted;
|
|
28148
28465
|
export declare type Merchant = io.flow.internal.v0.models.Merchant;
|
|
28149
28466
|
export declare type MerchantApplicationSummaries = io.flow.internal.v0.models.MerchantApplicationSummaries;
|
|
28150
28467
|
export declare type MerchantApplicationSummary = io.flow.internal.v0.models.MerchantApplicationSummary;
|
|
@@ -28160,6 +28477,7 @@ export declare type MerchantSubsidies = io.flow.internal.v0.models.MerchantSubsi
|
|
|
28160
28477
|
export declare type MerchantSummary = io.flow.internal.v0.models.MerchantSummary;
|
|
28161
28478
|
export declare type MerchantTransactions = io.flow.internal.v0.models.MerchantTransactions;
|
|
28162
28479
|
export declare type MerchantUpserted = io.flow.internal.v0.models.MerchantUpserted;
|
|
28480
|
+
export declare type MessageStamp = io.flow.internal.v0.models.MessageStamp;
|
|
28163
28481
|
export declare type MetadataProposition = io.flow.internal.v0.models.MetadataProposition;
|
|
28164
28482
|
export declare type MetadataRatecard = io.flow.internal.v0.models.MetadataRatecard;
|
|
28165
28483
|
export declare type MixedBagWeight = io.flow.internal.v0.enums.MixedBagWeight;
|
|
@@ -28227,6 +28545,7 @@ export declare type OrderPaymentAuthorization = io.flow.internal.v0.models.Order
|
|
|
28227
28545
|
export declare type OrderPlaced = io.flow.internal.v0.models.OrderPlaced;
|
|
28228
28546
|
export declare type OrderRatesDataV3 = io.flow.internal.v0.models.OrderRatesDataV3;
|
|
28229
28547
|
export declare type OrderRatesPublishedV3 = io.flow.internal.v0.models.OrderRatesPublishedV3;
|
|
28548
|
+
export declare type OrderReference = io.flow.internal.v0.models.OrderReference;
|
|
28230
28549
|
export declare type OrderRevenueRegionChart = io.flow.internal.v0.models.OrderRevenueRegionChart;
|
|
28231
28550
|
export declare type OrderRevenueRegionDataPoint = io.flow.internal.v0.models.OrderRevenueRegionDataPoint;
|
|
28232
28551
|
export declare type OrderRevenueTimelineChart = io.flow.internal.v0.models.OrderRevenueTimelineChart;
|
|
@@ -28240,10 +28559,14 @@ export declare type OrderTransactionDeleted = io.flow.internal.v0.models.OrderTr
|
|
|
28240
28559
|
export declare type OrderTransactionType = io.flow.internal.v0.enums.OrderTransactionType;
|
|
28241
28560
|
export declare type OrderTransactionUpserted = io.flow.internal.v0.models.OrderTransactionUpserted;
|
|
28242
28561
|
export declare type OrderValidation = io.flow.internal.v0.models.OrderValidation;
|
|
28562
|
+
export declare type OrderValidationDeleted = io.flow.internal.v0.models.OrderValidationDeleted;
|
|
28243
28563
|
export declare type OrderValidationError = io.flow.internal.v0.models.OrderValidationError;
|
|
28244
28564
|
export declare type OrderValidationFailure = io.flow.internal.v0.models.OrderValidationFailure;
|
|
28565
|
+
export declare type OrderValidationFailureDeleted = io.flow.internal.v0.models.OrderValidationFailureDeleted;
|
|
28245
28566
|
export declare type OrderValidationFailureSummary = io.flow.internal.v0.models.OrderValidationFailureSummary;
|
|
28567
|
+
export declare type OrderValidationFailureUpserted = io.flow.internal.v0.models.OrderValidationFailureUpserted;
|
|
28246
28568
|
export declare type OrderValidationStatus = io.flow.internal.v0.enums.OrderValidationStatus;
|
|
28569
|
+
export declare type OrderValidationUpserted = io.flow.internal.v0.models.OrderValidationUpserted;
|
|
28247
28570
|
export declare type OrganizationAccount = io.flow.internal.v0.models.OrganizationAccount;
|
|
28248
28571
|
export declare type OrganizationAccountDeleted = io.flow.internal.v0.models.OrganizationAccountDeleted;
|
|
28249
28572
|
export declare type OrganizationAccountUpsertedV2 = io.flow.internal.v0.models.OrganizationAccountUpsertedV2;
|
|
@@ -28355,6 +28678,7 @@ export declare type PaypalRefundDeleted = io.flow.internal.v0.models.PaypalRefun
|
|
|
28355
28678
|
export declare type PaypalRefundUpserted = io.flow.internal.v0.models.PaypalRefundUpserted;
|
|
28356
28679
|
export declare type PendingBankPayment = io.flow.internal.v0.models.PendingBankPayment;
|
|
28357
28680
|
export declare type PendingBankPaymentDetail = io.flow.internal.v0.models.PendingBankPaymentDetail;
|
|
28681
|
+
export declare type PendingOrder = io.flow.internal.v0.models.PendingOrder;
|
|
28358
28682
|
export declare type PhraseClassified = io.flow.internal.v0.models.PhraseClassified;
|
|
28359
28683
|
export declare type PhrasePropagated = io.flow.internal.v0.models.PhrasePropagated;
|
|
28360
28684
|
export declare type PingRequestForm = io.flow.internal.v0.models.PingRequestForm;
|
|
@@ -28420,7 +28744,6 @@ export declare type ProofOfPostingFulfilled = io.flow.internal.v0.models.ProofOf
|
|
|
28420
28744
|
export declare type ProofOfPostingOrderCancellation = io.flow.internal.v0.models.ProofOfPostingOrderCancellation;
|
|
28421
28745
|
export declare type ProofOfPostingOrderCombinedShipment = io.flow.internal.v0.models.ProofOfPostingOrderCombinedShipment;
|
|
28422
28746
|
export declare type ProofOfPostingShippingNotification = io.flow.internal.v0.models.ProofOfPostingShippingNotification;
|
|
28423
|
-
export declare type QueuedRecord = io.flow.internal.v0.models.QueuedRecord;
|
|
28424
28747
|
export declare type Quote = io.flow.internal.v0.models.Quote;
|
|
28425
28748
|
export declare type QuoteDeleted = io.flow.internal.v0.models.QuoteDeleted;
|
|
28426
28749
|
export declare type QuoteRequest = io.flow.internal.v0.models.QuoteRequest;
|
|
@@ -28771,6 +29094,7 @@ export declare type SpotRateVersion = io.flow.internal.v0.models.SpotRateVersion
|
|
|
28771
29094
|
export declare type StandaloneAttachment = io.flow.internal.v0.models.StandaloneAttachment;
|
|
28772
29095
|
export declare type StandaloneAttachmentDeleted = io.flow.internal.v0.models.StandaloneAttachmentDeleted;
|
|
28773
29096
|
export declare type StandaloneAttachmentUpserted = io.flow.internal.v0.models.StandaloneAttachmentUpserted;
|
|
29097
|
+
export declare type StatementCreationMetadata = io.flow.internal.v0.models.StatementCreationMetadata;
|
|
28774
29098
|
export declare type StatementStatus = io.flow.internal.v0.enums.StatementStatus;
|
|
28775
29099
|
export declare type StatementTransferTransactionLocation = io.flow.internal.v0.enums.StatementTransferTransactionLocation;
|
|
28776
29100
|
export declare type StatisticType = io.flow.internal.v0.enums.StatisticType;
|
|
@@ -28830,10 +29154,12 @@ export declare type TariffEligibility = io.flow.internal.v0.models.TariffEligibi
|
|
|
28830
29154
|
export declare type TariffEligibilityData = io.flow.internal.v0.unions.TariffEligibilityData;
|
|
28831
29155
|
export declare type TariffEligibilityForm = io.flow.internal.v0.unions.TariffEligibilityForm;
|
|
28832
29156
|
export declare type TariffEligibilityType = io.flow.internal.v0.enums.TariffEligibilityType;
|
|
29157
|
+
export declare type Task = io.flow.internal.v0.models.Task;
|
|
28833
29158
|
export declare type TaskCount = io.flow.internal.v0.models.TaskCount;
|
|
28834
29159
|
export declare type TaskData = io.flow.internal.v0.unions.TaskData;
|
|
28835
29160
|
export declare type TaskImport = io.flow.internal.v0.models.TaskImport;
|
|
28836
29161
|
export declare type TaskItemUpserted = io.flow.internal.v0.models.TaskItemUpserted;
|
|
29162
|
+
export declare type TaskMetadata = io.flow.internal.v0.unions.TaskMetadata;
|
|
28837
29163
|
export declare type TaskProcessQueuedEvent = io.flow.internal.v0.models.TaskProcessQueuedEvent;
|
|
28838
29164
|
export declare type TaskProcessorKey = io.flow.internal.v0.enums.TaskProcessorKey;
|
|
28839
29165
|
export declare type TaskSummarizeCode = io.flow.internal.v0.models.TaskSummarizeCode;
|
|
@@ -28880,6 +29206,10 @@ export declare type TrackingLabelDeleted = io.flow.internal.v0.models.TrackingLa
|
|
|
28880
29206
|
export declare type TrackingLabelEventDeletedV2 = io.flow.internal.v0.models.TrackingLabelEventDeletedV2;
|
|
28881
29207
|
export declare type TrackingLabelEventUpsertedV2 = io.flow.internal.v0.models.TrackingLabelEventUpsertedV2;
|
|
28882
29208
|
export declare type TrackingLabelUpserted = io.flow.internal.v0.models.TrackingLabelUpserted;
|
|
29209
|
+
export declare type TrackingProcessingError = io.flow.internal.v0.models.TrackingProcessingError;
|
|
29210
|
+
export declare type TrackingProcessingErrorDeleted = io.flow.internal.v0.models.TrackingProcessingErrorDeleted;
|
|
29211
|
+
export declare type TrackingProcessingErrorUpserted = io.flow.internal.v0.models.TrackingProcessingErrorUpserted;
|
|
29212
|
+
export declare type TrackingProcessingFailureClassification = io.flow.internal.v0.enums.TrackingProcessingFailureClassification;
|
|
28883
29213
|
export declare type TrackingRequest = io.flow.internal.v0.models.TrackingRequest;
|
|
28884
29214
|
export declare type TrackingRequestUpserted = io.flow.internal.v0.models.TrackingRequestUpserted;
|
|
28885
29215
|
export declare type TrackingResponse = io.flow.internal.v0.models.TrackingResponse;
|