@flowio/types 11.24.89 → 11.24.90
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 +268 -15
- package/dist/api.d.ts +132 -9
- package/package.json +2 -2
- package/src/api-internal.ts +342 -12
- package/src/api.ts +178 -8
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 {
|
|
@@ -2109,6 +2110,7 @@ declare namespace io.flow.billing.csv.v0.models {
|
|
|
2109
2110
|
readonly processing: number;
|
|
2110
2111
|
readonly rate_lock: number;
|
|
2111
2112
|
readonly transfer: number;
|
|
2113
|
+
readonly negative_balance: number;
|
|
2112
2114
|
}
|
|
2113
2115
|
interface BillingCsvTransactionIdentifiers {
|
|
2114
2116
|
readonly reference_id?: string;
|
|
@@ -2126,6 +2128,7 @@ declare namespace io.flow.billing.csv.v0.models {
|
|
|
2126
2128
|
readonly label_created_at: string;
|
|
2127
2129
|
readonly carrier_id: string;
|
|
2128
2130
|
readonly carrier_tracking_number: string;
|
|
2131
|
+
readonly revenue_share_percentage: number;
|
|
2129
2132
|
readonly outbound_transaction_id?: string;
|
|
2130
2133
|
}
|
|
2131
2134
|
interface BillingCsvTransactionMetadataChannel {
|
|
@@ -2233,7 +2236,7 @@ declare namespace io.flow.stripe.v0.enums {
|
|
|
2233
2236
|
type OrderItemType = 'sku' | 'tax' | 'shipping' | 'discount';
|
|
2234
2237
|
type PaymentIntentStatus = 'canceled' | 'processing' | 'requires_action' | 'requires_capture' | 'requires_confirmation' | 'requires_payment_method' | 'succeeded';
|
|
2235
2238
|
type PaymentMethodCategoryKlarna = 'pay_later' | 'pay_now' | 'pay_with_financing' | 'pay_in_installments';
|
|
2236
|
-
type PaymentMethodType = 'card' | 'card_present';
|
|
2239
|
+
type PaymentMethodType = 'card' | 'card_present' | 'klarna';
|
|
2237
2240
|
type PaymentOutcomeType = 'authorized' | 'manual_review' | 'issuer_declined' | 'blocked' | 'invalid';
|
|
2238
2241
|
type PaymentStatus = 'succeeded' | 'pending' | 'failed';
|
|
2239
2242
|
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 +2472,11 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
2469
2472
|
interface KlarnaAttachment {
|
|
2470
2473
|
readonly marketplace_seller_info?: io.flow.stripe.v0.models.KlarnaMarketplaceSellerInfo[];
|
|
2471
2474
|
}
|
|
2475
|
+
interface KlarnaDobForm {
|
|
2476
|
+
readonly day: number;
|
|
2477
|
+
readonly month: number;
|
|
2478
|
+
readonly year: number;
|
|
2479
|
+
}
|
|
2472
2480
|
interface KlarnaMarketplaceSellerInfo {
|
|
2473
2481
|
readonly sub_merchant_id?: string;
|
|
2474
2482
|
readonly product_category?: string;
|
|
@@ -2476,6 +2484,11 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
2476
2484
|
interface LegalEntity {
|
|
2477
2485
|
readonly additional_owners?: io.flow.stripe.v0.models.Owner[];
|
|
2478
2486
|
}
|
|
2487
|
+
interface MarketplaceSellerInfo {
|
|
2488
|
+
readonly name: string;
|
|
2489
|
+
readonly id?: string;
|
|
2490
|
+
readonly product_category?: string;
|
|
2491
|
+
}
|
|
2479
2492
|
interface Masterpass {
|
|
2480
2493
|
readonly type: 'masterpass';
|
|
2481
2494
|
readonly masterpass: io.flow.stripe.v0.models.MasterpassInformation;
|
|
@@ -2552,6 +2565,9 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
2552
2565
|
readonly verified_name?: string;
|
|
2553
2566
|
readonly verified_phone?: string;
|
|
2554
2567
|
}
|
|
2568
|
+
interface PaymentDetails {
|
|
2569
|
+
readonly marketplace_seller_info?: io.flow.stripe.v0.models.MarketplaceSellerInfo;
|
|
2570
|
+
}
|
|
2555
2571
|
interface PaymentIntent {
|
|
2556
2572
|
readonly id: string;
|
|
2557
2573
|
readonly object: string;
|
|
@@ -2668,6 +2684,7 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
2668
2684
|
readonly billing_details?: io.flow.stripe.v0.models.PaymentMethodBillingDetails;
|
|
2669
2685
|
readonly card?: io.flow.stripe.v0.models.PaymentMethodCardDetails;
|
|
2670
2686
|
readonly card_present?: any;
|
|
2687
|
+
readonly klarna?: any;
|
|
2671
2688
|
readonly created: number;
|
|
2672
2689
|
readonly customer?: string;
|
|
2673
2690
|
readonly livemode: boolean;
|
|
@@ -2703,6 +2720,12 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
2703
2720
|
readonly metadata?: any;
|
|
2704
2721
|
readonly card: io.flow.stripe.v0.models.PaymentMethodCardForm;
|
|
2705
2722
|
}
|
|
2723
|
+
interface PaymentMethodDataKlarna {
|
|
2724
|
+
readonly type: 'klarna';
|
|
2725
|
+
readonly billing_details?: io.flow.stripe.v0.models.PaymentMethodBillingDetails;
|
|
2726
|
+
readonly metadata?: any;
|
|
2727
|
+
readonly klarna: io.flow.stripe.v0.models.PaymentMethodKlarnaForm;
|
|
2728
|
+
}
|
|
2706
2729
|
interface PaymentMethodDetailsCard {
|
|
2707
2730
|
readonly type: 'card';
|
|
2708
2731
|
readonly card: io.flow.stripe.v0.models.PaymentMethodDetailsCardInformation;
|
|
@@ -2746,8 +2769,18 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
2746
2769
|
readonly metadata?: any;
|
|
2747
2770
|
readonly card: io.flow.stripe.v0.models.PaymentMethodCardForm;
|
|
2748
2771
|
}
|
|
2772
|
+
interface PaymentMethodFormKlarna {
|
|
2773
|
+
readonly type: 'klarna';
|
|
2774
|
+
readonly billing_details?: io.flow.stripe.v0.models.PaymentMethodBillingDetails;
|
|
2775
|
+
readonly metadata?: any;
|
|
2776
|
+
readonly klarna: io.flow.stripe.v0.models.PaymentMethodKlarnaForm;
|
|
2777
|
+
}
|
|
2778
|
+
interface PaymentMethodKlarnaForm {
|
|
2779
|
+
readonly dob?: io.flow.stripe.v0.models.KlarnaDobForm;
|
|
2780
|
+
}
|
|
2749
2781
|
interface PaymentMethodOptions {
|
|
2750
2782
|
readonly card?: io.flow.stripe.v0.models.PaymentMethodOptionsCard;
|
|
2783
|
+
readonly klarna?: io.flow.stripe.v0.models.PaymentMethodOptionsKlarna;
|
|
2751
2784
|
}
|
|
2752
2785
|
interface PaymentMethodOptionsCard {
|
|
2753
2786
|
readonly network?: string;
|
|
@@ -2764,6 +2797,19 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
2764
2797
|
}
|
|
2765
2798
|
interface PaymentMethodOptionsForm {
|
|
2766
2799
|
readonly card?: io.flow.stripe.v0.models.PaymentMethodOptionsCardForm;
|
|
2800
|
+
readonly klarna?: io.flow.stripe.v0.models.PaymentMethodOptionsKlarnaForm;
|
|
2801
|
+
}
|
|
2802
|
+
interface PaymentMethodOptionsKlarna {
|
|
2803
|
+
readonly capture_method?: io.flow.stripe.v0.enums.CaptureMethod;
|
|
2804
|
+
readonly preferred_locale?: io.flow.stripe.v0.enums.PreferredLocaleKlarna;
|
|
2805
|
+
readonly setup_future_usage?: io.flow.stripe.v0.enums.SetupFutureUsage;
|
|
2806
|
+
readonly payment_details?: io.flow.stripe.v0.models.PaymentDetails;
|
|
2807
|
+
}
|
|
2808
|
+
interface PaymentMethodOptionsKlarnaForm {
|
|
2809
|
+
readonly capture_method?: io.flow.stripe.v0.enums.CaptureMethod;
|
|
2810
|
+
readonly preferred_locale?: io.flow.stripe.v0.enums.PreferredLocaleKlarna;
|
|
2811
|
+
readonly setup_future_usage?: io.flow.stripe.v0.enums.SetupFutureUsage;
|
|
2812
|
+
readonly payment_details?: io.flow.stripe.v0.models.PaymentDetails;
|
|
2767
2813
|
}
|
|
2768
2814
|
interface PaymentOutcome {
|
|
2769
2815
|
readonly network_status?: io.flow.stripe.v0.enums.NetworkStatus;
|
|
@@ -3029,9 +3075,9 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
3029
3075
|
}
|
|
3030
3076
|
declare namespace io.flow.stripe.v0.unions {
|
|
3031
3077
|
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;
|
|
3078
|
+
type PaymentMethodData = io.flow.stripe.v0.models.PaymentMethodDataCard | io.flow.stripe.v0.models.PaymentMethodDataKlarna;
|
|
3033
3079
|
type PaymentMethodDetails = io.flow.stripe.v0.models.PaymentMethodDetailsCard | io.flow.stripe.v0.models.PaymentMethodDetailsKlarna;
|
|
3034
|
-
type PaymentMethodForm = io.flow.stripe.v0.models.PaymentMethodFormCard;
|
|
3080
|
+
type PaymentMethodForm = io.flow.stripe.v0.models.PaymentMethodFormCard | io.flow.stripe.v0.models.PaymentMethodFormKlarna;
|
|
3035
3081
|
}
|
|
3036
3082
|
declare namespace io.flow.customer.v0.enums {
|
|
3037
3083
|
type CustomerAddressType = 'billing' | 'invoice' | 'shipping';
|
|
@@ -7043,6 +7089,7 @@ declare namespace io.flow.channel.internal.v0.models {
|
|
|
7043
7089
|
readonly channel_id: string;
|
|
7044
7090
|
readonly external_order_reference: string;
|
|
7045
7091
|
readonly payment_request_id?: string;
|
|
7092
|
+
readonly order_edit_payment_request_ids?: string[];
|
|
7046
7093
|
readonly status: io.flow.channel.internal.v0.enums.ChannelOrderAcceptanceStatus;
|
|
7047
7094
|
readonly reasons: io.flow.channel.internal.v0.models.ChannelOrderAcceptanceReason[];
|
|
7048
7095
|
readonly next_action_from?: io.flow.channel.internal.v0.enums.ChannelOrderAcceptanceNextActionFrom;
|
|
@@ -9749,6 +9796,16 @@ declare namespace io.flow.payment.request.bundle.v0.models {
|
|
|
9749
9796
|
}
|
|
9750
9797
|
}
|
|
9751
9798
|
declare namespace io.flow.ratecard.v0.models {
|
|
9799
|
+
interface AdditionalHandlingServiceFee {
|
|
9800
|
+
readonly discriminator: 'additional_handling_service_fee';
|
|
9801
|
+
readonly length_girth_threshold?: number;
|
|
9802
|
+
readonly length_threshold?: number;
|
|
9803
|
+
readonly width_threshold?: number;
|
|
9804
|
+
readonly dimensional_unit?: io.flow.common.v0.enums.UnitOfMeasurement;
|
|
9805
|
+
readonly weight_threshold?: number;
|
|
9806
|
+
readonly weight_unit?: io.flow.common.v0.enums.UnitOfMeasurement;
|
|
9807
|
+
readonly amount: io.flow.common.v0.models.Money;
|
|
9808
|
+
}
|
|
9752
9809
|
interface CrossdockRatecardFee {
|
|
9753
9810
|
readonly discriminator: 'crossdock_ratecard_fee';
|
|
9754
9811
|
readonly amount: io.flow.common.v0.models.Money;
|
|
@@ -9786,6 +9843,15 @@ declare namespace io.flow.ratecard.v0.models {
|
|
|
9786
9843
|
readonly starts_at?: string;
|
|
9787
9844
|
readonly ends_at?: string;
|
|
9788
9845
|
}
|
|
9846
|
+
interface EeiFilingRatecardFee {
|
|
9847
|
+
readonly discriminator: 'eei_filing_ratecard_fee';
|
|
9848
|
+
readonly amount: io.flow.common.v0.models.Money;
|
|
9849
|
+
}
|
|
9850
|
+
interface EeiFilingServiceFee {
|
|
9851
|
+
readonly discriminator: 'eei_filing_service_fee';
|
|
9852
|
+
readonly amount: io.flow.common.v0.models.Money;
|
|
9853
|
+
readonly value_threshold: io.flow.common.v0.models.Money;
|
|
9854
|
+
}
|
|
9789
9855
|
interface EmergencySituationSurchargeRatecardFee {
|
|
9790
9856
|
readonly discriminator: 'emergency_situation_surcharge_ratecard_fee';
|
|
9791
9857
|
readonly amount: io.flow.common.v0.models.Money;
|
|
@@ -9807,6 +9873,26 @@ declare namespace io.flow.ratecard.v0.models {
|
|
|
9807
9873
|
readonly weight: number;
|
|
9808
9874
|
readonly unit: io.flow.common.v0.enums.UnitOfMeasurement;
|
|
9809
9875
|
}
|
|
9876
|
+
interface FixedCurrencyConversionRatecardFee {
|
|
9877
|
+
readonly discriminator: 'fixed_currency_conversion_ratecard_fee';
|
|
9878
|
+
readonly amount: io.flow.common.v0.models.Money;
|
|
9879
|
+
}
|
|
9880
|
+
interface FixedCurrencyConversionServiceFee {
|
|
9881
|
+
readonly discriminator: 'fixed_currency_conversion_service_fee';
|
|
9882
|
+
readonly conditions: io.flow.ratecard.v0.models.FixedFeeCondition[];
|
|
9883
|
+
}
|
|
9884
|
+
interface FixedDdpRatecardFee {
|
|
9885
|
+
readonly discriminator: 'fixed_ddp_ratecard_fee';
|
|
9886
|
+
readonly amount: io.flow.common.v0.models.Money;
|
|
9887
|
+
}
|
|
9888
|
+
interface FixedDdpServiceFee {
|
|
9889
|
+
readonly discriminator: 'fixed_ddp_service_fee';
|
|
9890
|
+
readonly conditions: io.flow.ratecard.v0.models.FixedFeeCondition[];
|
|
9891
|
+
}
|
|
9892
|
+
interface FixedFeeCondition {
|
|
9893
|
+
readonly countries: string[];
|
|
9894
|
+
readonly amount: io.flow.common.v0.models.Money;
|
|
9895
|
+
}
|
|
9810
9896
|
interface FuelSurchargeAmountByWeightServiceFee {
|
|
9811
9897
|
readonly discriminator: 'fuel_surcharge_amount_by_weight_service_fee';
|
|
9812
9898
|
readonly amount: io.flow.common.v0.models.Money;
|
|
@@ -9867,6 +9953,14 @@ declare namespace io.flow.ratecard.v0.models {
|
|
|
9867
9953
|
readonly id: string;
|
|
9868
9954
|
readonly ratecard: io.flow.ratecard.v0.models.RatecardSummary;
|
|
9869
9955
|
}
|
|
9956
|
+
interface LargePackageServiceFee {
|
|
9957
|
+
readonly discriminator: 'large_package_service_fee';
|
|
9958
|
+
readonly length_girth_threshold?: number;
|
|
9959
|
+
readonly dimensional_unit?: io.flow.common.v0.enums.UnitOfMeasurement;
|
|
9960
|
+
readonly weight_threshold?: number;
|
|
9961
|
+
readonly weight_unit?: io.flow.common.v0.enums.UnitOfMeasurement;
|
|
9962
|
+
readonly amount: io.flow.common.v0.models.Money;
|
|
9963
|
+
}
|
|
9870
9964
|
interface OversizePieceSurchargeRatecardFee {
|
|
9871
9965
|
readonly discriminator: 'oversize_piece_surcharge_ratecard_fee';
|
|
9872
9966
|
readonly dimensional_threshold?: number;
|
|
@@ -10091,6 +10185,11 @@ declare namespace io.flow.ratecard.v0.models {
|
|
|
10091
10185
|
readonly type: io.flow.common.v0.enums.ChangeType;
|
|
10092
10186
|
readonly ratecard: io.flow.ratecard.v0.models.Ratecard;
|
|
10093
10187
|
}
|
|
10188
|
+
interface RemoteAreaByWeightServiceFee {
|
|
10189
|
+
readonly discriminator: 'remote_area_by_weight_service_fee';
|
|
10190
|
+
readonly amount: io.flow.common.v0.models.Money;
|
|
10191
|
+
readonly weight_unit: io.flow.common.v0.enums.UnitOfMeasurement;
|
|
10192
|
+
}
|
|
10094
10193
|
interface RemoteAreaRatecardFee {
|
|
10095
10194
|
readonly discriminator: 'remote_area_ratecard_fee';
|
|
10096
10195
|
readonly amount: io.flow.common.v0.models.Money;
|
|
@@ -10103,6 +10202,15 @@ declare namespace io.flow.ratecard.v0.models {
|
|
|
10103
10202
|
readonly discriminator: 'return_package_ratecard_fee';
|
|
10104
10203
|
readonly amount: number;
|
|
10105
10204
|
}
|
|
10205
|
+
interface SecurityRatecardFee {
|
|
10206
|
+
readonly discriminator: 'security_ratecard_fee';
|
|
10207
|
+
readonly amount: io.flow.common.v0.models.Money;
|
|
10208
|
+
}
|
|
10209
|
+
interface SecurityServiceFee {
|
|
10210
|
+
readonly discriminator: 'security_service_fee';
|
|
10211
|
+
readonly amount: io.flow.common.v0.models.Money;
|
|
10212
|
+
readonly countries: string[];
|
|
10213
|
+
}
|
|
10106
10214
|
interface ShipmentWindow {
|
|
10107
10215
|
readonly from: number;
|
|
10108
10216
|
readonly to: number;
|
|
@@ -10111,8 +10219,8 @@ declare namespace io.flow.ratecard.v0.models {
|
|
|
10111
10219
|
declare namespace io.flow.ratecard.v0.unions {
|
|
10112
10220
|
type FuelSurchargeRate = io.flow.ratecard.v0.models.FuelSurchargePercent | io.flow.ratecard.v0.models.FuelSurchargeByWeight;
|
|
10113
10221
|
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;
|
|
10222
|
+
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;
|
|
10223
|
+
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
10224
|
}
|
|
10117
10225
|
declare namespace io.flow.token.v0.models {
|
|
10118
10226
|
interface ChannelToken {
|
|
@@ -10544,7 +10652,7 @@ declare namespace io.flow.price.v0.unions {
|
|
|
10544
10652
|
}
|
|
10545
10653
|
declare namespace io.flow.trueup.v0.enums {
|
|
10546
10654
|
type CarrierChargeReason = 'return_to_origin' | 'rejection' | 'other';
|
|
10547
|
-
type TrueupSurchargeType = 'fuel' | 'remote_area' | 'oversize' | 'duties_paid' | 'emergency' | 'peak' | 'address_correction';
|
|
10655
|
+
type TrueupSurchargeType = 'fuel' | 'remote_area' | 'oversize' | 'duties_paid' | 'emergency' | 'peak' | 'address_correction' | 'security_ratecard_fee' | 'eei_filing_ratecard_fee' | 'fixed_ddp_ratecard_fee' | 'fixed_currency_conversion_ratecard_fee';
|
|
10548
10656
|
}
|
|
10549
10657
|
declare namespace io.flow.trueup.v0.models {
|
|
10550
10658
|
interface DeadWeight {
|
|
@@ -11361,7 +11469,7 @@ declare namespace io.flow.inventory.v0.unions {
|
|
|
11361
11469
|
declare namespace io.flow.permission.v0.enums {
|
|
11362
11470
|
type AuthenticationTechnique = 'anonymous' | 'session' | 'token' | 'partner_token' | 'user';
|
|
11363
11471
|
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';
|
|
11472
|
+
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
11473
|
type PermittedHttpMethod = 'GET' | 'POST' | 'PUT' | 'DELETE' | 'PATCH';
|
|
11366
11474
|
}
|
|
11367
11475
|
declare namespace io.flow.permission.v0.models {
|
|
@@ -11483,6 +11591,7 @@ declare namespace io.flow.item.v0.models {
|
|
|
11483
11591
|
}
|
|
11484
11592
|
declare namespace io.flow.billing.internal.v0.enums {
|
|
11485
11593
|
type AccountSettingLiabilitiesMethod = 'withholding' | 'transaction';
|
|
11594
|
+
type AccountStatus = 'active' | 'inactive';
|
|
11486
11595
|
type AccountType = 'channel' | 'organization';
|
|
11487
11596
|
type AdjustmentTransactionType = 'adjustment' | 'reversal';
|
|
11488
11597
|
type BankPaymentPromiseCompletedMethod = 'credit' | 'time';
|
|
@@ -11492,7 +11601,7 @@ declare namespace io.flow.billing.internal.v0.enums {
|
|
|
11492
11601
|
type BillingStatementBatchFileKey = 'summary';
|
|
11493
11602
|
type BillingTransactionStatus = 'pending' | 'pending_proof' | 'posted';
|
|
11494
11603
|
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';
|
|
11604
|
+
type CarrierChargeTransactionType = 'adjustment' | 'reversal' | 'charge' | 'revenue_share';
|
|
11496
11605
|
type ChannelBilledTransactionType = 'adjustment' | 'reversal' | 'channel_initiated';
|
|
11497
11606
|
type ChannelTransactionType = 'adjustment' | 'reversal' | 'processing';
|
|
11498
11607
|
type DisputeTransactionType = 'adjustment' | 'dispute';
|
|
@@ -11573,7 +11682,7 @@ declare namespace io.flow.billing.internal.v0.models {
|
|
|
11573
11682
|
readonly merchant_of_record_fee?: number;
|
|
11574
11683
|
readonly duty_guarantee_fee?: number;
|
|
11575
11684
|
readonly transfer_fee?: number;
|
|
11576
|
-
readonly
|
|
11685
|
+
readonly negative_balance_fee?: number;
|
|
11577
11686
|
readonly order_service_fee?: io.flow.billing.internal.v0.models.TieredFee;
|
|
11578
11687
|
readonly label_fees?: io.flow.billing.internal.v0.models.AccountSettingLabelFees;
|
|
11579
11688
|
readonly charge_label_cost_directly: boolean;
|
|
@@ -11730,6 +11839,7 @@ declare namespace io.flow.billing.internal.v0.models {
|
|
|
11730
11839
|
readonly b2b_tax_remittance_days?: number;
|
|
11731
11840
|
readonly mor_fee?: number;
|
|
11732
11841
|
readonly duty_guarantee_fee?: number;
|
|
11842
|
+
readonly negative_balance_fee?: number;
|
|
11733
11843
|
readonly order_service_fee?: io.flow.billing.internal.v0.models.TieredFee;
|
|
11734
11844
|
readonly label_fee?: io.flow.billing.internal.v0.models.TieredFee;
|
|
11735
11845
|
}
|
|
@@ -11816,6 +11926,7 @@ declare namespace io.flow.billing.internal.v0.models {
|
|
|
11816
11926
|
readonly channel: io.flow.common.v0.models.ChannelReference;
|
|
11817
11927
|
readonly id: string;
|
|
11818
11928
|
readonly key?: string;
|
|
11929
|
+
readonly status: io.flow.billing.internal.v0.enums.AccountStatus;
|
|
11819
11930
|
readonly origin?: io.flow.billing.internal.v0.models.AccountOrigin;
|
|
11820
11931
|
readonly currency: string;
|
|
11821
11932
|
readonly updated_at: string;
|
|
@@ -12006,6 +12117,7 @@ declare namespace io.flow.billing.internal.v0.models {
|
|
|
12006
12117
|
readonly source: io.flow.billing.internal.v0.models.AccountSource;
|
|
12007
12118
|
readonly id: string;
|
|
12008
12119
|
readonly key?: string;
|
|
12120
|
+
readonly status: io.flow.billing.internal.v0.enums.AccountStatus;
|
|
12009
12121
|
readonly origin?: io.flow.billing.internal.v0.models.AccountOrigin;
|
|
12010
12122
|
readonly currency: string;
|
|
12011
12123
|
readonly updated_at: string;
|
|
@@ -12019,6 +12131,16 @@ declare namespace io.flow.billing.internal.v0.models {
|
|
|
12019
12131
|
readonly bank_account?: io.flow.billing.internal.v0.models.BankAccountReference;
|
|
12020
12132
|
readonly created_at: string;
|
|
12021
12133
|
}
|
|
12134
|
+
interface FlowAccountStatusForm {
|
|
12135
|
+
readonly status: io.flow.billing.internal.v0.enums.AccountStatus;
|
|
12136
|
+
}
|
|
12137
|
+
interface FlowBillingStatement {
|
|
12138
|
+
readonly id: string;
|
|
12139
|
+
readonly account: io.flow.billing.v0.models.AccountReference;
|
|
12140
|
+
readonly period: io.flow.common.v0.models.DatetimeRange;
|
|
12141
|
+
readonly totals: io.flow.billing.internal.v0.models.BillingStatementTotals;
|
|
12142
|
+
readonly attachments: io.flow.billing.internal.v0.models.BillingStatementAttachment[];
|
|
12143
|
+
}
|
|
12022
12144
|
interface FxFee {
|
|
12023
12145
|
readonly base: io.flow.common.v0.models.Money;
|
|
12024
12146
|
readonly local: io.flow.common.v0.models.Money;
|
|
@@ -12168,6 +12290,7 @@ declare namespace io.flow.billing.internal.v0.models {
|
|
|
12168
12290
|
readonly organization: io.flow.common.v0.models.OrganizationReference;
|
|
12169
12291
|
readonly id: string;
|
|
12170
12292
|
readonly key?: string;
|
|
12293
|
+
readonly status: io.flow.billing.internal.v0.enums.AccountStatus;
|
|
12171
12294
|
readonly origin?: io.flow.billing.internal.v0.models.AccountOrigin;
|
|
12172
12295
|
readonly currency: string;
|
|
12173
12296
|
readonly updated_at: string;
|
|
@@ -13827,8 +13950,9 @@ declare namespace io.flow.checkout.v0.unions {
|
|
|
13827
13950
|
type CheckoutTokenForm = io.flow.checkout.v0.models.CheckoutTokenOrderForm | io.flow.checkout.v0.models.CheckoutTokenReferenceForm;
|
|
13828
13951
|
}
|
|
13829
13952
|
declare namespace io.flow.organization.onboarding.state.v0.enums {
|
|
13953
|
+
type MerchantDisabledReason = 'merchant_deactivated' | 'merchant_rejected';
|
|
13830
13954
|
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';
|
|
13955
|
+
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
13956
|
}
|
|
13833
13957
|
declare namespace io.flow.organization.onboarding.state.v0.models {
|
|
13834
13958
|
interface ActivationPutForm {
|
|
@@ -13849,6 +13973,10 @@ declare namespace io.flow.organization.onboarding.state.v0.models {
|
|
|
13849
13973
|
readonly discriminator: 'merchant_deactivated';
|
|
13850
13974
|
readonly reason: string;
|
|
13851
13975
|
}
|
|
13976
|
+
interface MerchantDisabled {
|
|
13977
|
+
readonly discriminator: 'merchant_disabled';
|
|
13978
|
+
readonly reason: io.flow.organization.onboarding.state.v0.enums.MerchantDisabledReason;
|
|
13979
|
+
}
|
|
13852
13980
|
interface MerchantRejected {
|
|
13853
13981
|
readonly discriminator: 'merchant_rejected';
|
|
13854
13982
|
readonly reason: io.flow.organization.onboarding.state.v0.enums.MerchantRejectedReason;
|
|
@@ -13886,7 +14014,7 @@ declare namespace io.flow.organization.onboarding.state.v0.models {
|
|
|
13886
14014
|
}
|
|
13887
14015
|
}
|
|
13888
14016
|
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;
|
|
14017
|
+
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
14018
|
}
|
|
13891
14019
|
declare namespace io.flow.fraud.v0.enums {
|
|
13892
14020
|
type FraudEmailRuleDecision = 'approved' | 'declined';
|
|
@@ -14188,6 +14316,7 @@ declare namespace io.flow.billing.bank.account.v0.unions {
|
|
|
14188
14316
|
}
|
|
14189
14317
|
declare namespace io.flow.internal.v0.enums {
|
|
14190
14318
|
type AccountSettingLiabilitiesMethod = 'withholding' | 'transaction';
|
|
14319
|
+
type AccountStatus = 'active' | 'inactive';
|
|
14191
14320
|
type AccountType = 'channel' | 'organization';
|
|
14192
14321
|
type AddressConfigurationSettingProvinceCode = 'iso_3166_2' | 'name';
|
|
14193
14322
|
type AdjustmentTransactionType = 'adjustment' | 'reversal';
|
|
@@ -14198,7 +14327,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
14198
14327
|
type BankPaymentPromiseCompletedMethod = 'credit' | 'time';
|
|
14199
14328
|
type BankPaymentStatusCode = 'scheduled' | 'sent' | 'failed';
|
|
14200
14329
|
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' | 'queued_record_snooze_count' | 'queued_record_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';
|
|
14330
|
+
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' | 'queued_record_snooze_count' | 'queued_record_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' | 'inactive_accounts_count' | 'inactive_account_pending_payment_promise_count' | 'inactive_account_pending_payment_promise_total';
|
|
14202
14331
|
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
14332
|
type BillingStatementBatchFileKey = 'summary';
|
|
14204
14333
|
type BillingTransactionStatus = 'pending' | 'pending_proof' | 'posted';
|
|
@@ -14327,7 +14456,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
14327
14456
|
type DutyTransactionType = 'adjustment' | 'reversal' | 'duty';
|
|
14328
14457
|
type EmptyAttribute = 'irrelevant';
|
|
14329
14458
|
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';
|
|
14459
|
+
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' | 'matias_item_upserted' | 'matias_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';
|
|
14331
14460
|
type ExperienceImportType = 'experience_with_settings';
|
|
14332
14461
|
type ExperienceOrderAction = 'submit' | 'refund_gift_cards';
|
|
14333
14462
|
type ExperienceOrderActionTrigger = 'zero_balance' | 'unsubmitted_order';
|
|
@@ -14375,6 +14504,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
14375
14504
|
type MarketingGatewayPlatform = 'google' | 'facebook' | 'adroll' | 'aliexpress' | 'amazon' | 'bing' | 'criteo' | 'fruugo' | 'pinterest' | 'rakuten_japan' | 'wish' | 'snapchat' | 'stylight';
|
|
14376
14505
|
type MarketingGatewayProductStatus = 'approved' | 'not_approved' | 'pending' | 'not_found' | 'excluded';
|
|
14377
14506
|
type MarketingGatewaySchemaCompatibility = 'google' | 'facebook_primary' | 'facebook_country_override' | 'supplemental';
|
|
14507
|
+
type MatiasItemType = 'physical' | 'digital';
|
|
14378
14508
|
type MixedBagWeight = '0' | '1' | '2';
|
|
14379
14509
|
type NatureOfSale = 'consumer' | 'to_non_registered_business' | 'to_registered_business' | 'flash_title';
|
|
14380
14510
|
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';
|
|
@@ -14597,7 +14727,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
14597
14727
|
readonly merchant_of_record_fee?: number;
|
|
14598
14728
|
readonly duty_guarantee_fee?: number;
|
|
14599
14729
|
readonly transfer_fee?: number;
|
|
14600
|
-
readonly
|
|
14730
|
+
readonly negative_balance_fee?: number;
|
|
14601
14731
|
readonly order_service_fee?: io.flow.internal.v0.models.TieredFee;
|
|
14602
14732
|
readonly label_fees?: io.flow.internal.v0.models.AccountSettingLabelFees;
|
|
14603
14733
|
readonly charge_label_cost_directly: boolean;
|
|
@@ -14675,6 +14805,11 @@ declare namespace io.flow.internal.v0.models {
|
|
|
14675
14805
|
readonly action: io.flow.internal.v0.enums.ItemQuantityAction;
|
|
14676
14806
|
readonly quantity: number;
|
|
14677
14807
|
}
|
|
14808
|
+
interface AdditionalImportTax {
|
|
14809
|
+
readonly name?: string;
|
|
14810
|
+
readonly additional_import_tax_value?: io.flow.common.v0.models.Money;
|
|
14811
|
+
readonly rate?: number;
|
|
14812
|
+
}
|
|
14678
14813
|
interface AddressConfigurationProvinceSetting {
|
|
14679
14814
|
readonly code: io.flow.internal.v0.enums.AddressConfigurationSettingProvinceCode;
|
|
14680
14815
|
}
|
|
@@ -15302,6 +15437,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
15302
15437
|
readonly b2b_tax_remittance_days?: number;
|
|
15303
15438
|
readonly mor_fee?: number;
|
|
15304
15439
|
readonly duty_guarantee_fee?: number;
|
|
15440
|
+
readonly negative_balance_fee?: number;
|
|
15305
15441
|
readonly order_service_fee?: io.flow.internal.v0.models.TieredFee;
|
|
15306
15442
|
readonly label_fee?: io.flow.internal.v0.models.TieredFee;
|
|
15307
15443
|
}
|
|
@@ -15666,6 +15802,47 @@ declare namespace io.flow.internal.v0.models {
|
|
|
15666
15802
|
readonly rate: number;
|
|
15667
15803
|
readonly name: string;
|
|
15668
15804
|
}
|
|
15805
|
+
interface CalculationStampingLineItem {
|
|
15806
|
+
readonly id?: string;
|
|
15807
|
+
readonly hs_code?: string;
|
|
15808
|
+
readonly duty: io.flow.common.v0.models.Money;
|
|
15809
|
+
readonly duty_rate: number;
|
|
15810
|
+
readonly sales_tax: io.flow.common.v0.models.Money;
|
|
15811
|
+
readonly sales_tax_rate: number;
|
|
15812
|
+
readonly additional_tax?: io.flow.common.v0.models.Money;
|
|
15813
|
+
readonly additional_tax_rate?: number;
|
|
15814
|
+
readonly total: io.flow.common.v0.models.Money;
|
|
15815
|
+
}
|
|
15816
|
+
interface CalculationStampingShippingLine {
|
|
15817
|
+
readonly first_ship_from?: string;
|
|
15818
|
+
readonly duty?: number;
|
|
15819
|
+
readonly duty_rate?: number;
|
|
15820
|
+
readonly tax?: number;
|
|
15821
|
+
readonly tax_rate?: number;
|
|
15822
|
+
readonly price?: number;
|
|
15823
|
+
readonly duty_rate_on_shipping?: number;
|
|
15824
|
+
readonly tax_rate_on_shipping?: number;
|
|
15825
|
+
readonly import_fee?: number;
|
|
15826
|
+
}
|
|
15827
|
+
interface CalculationStep {
|
|
15828
|
+
readonly discriminator: 'calculation_step';
|
|
15829
|
+
readonly primary_identifier: string;
|
|
15830
|
+
readonly line_item: io.flow.internal.v0.models.CalculationStampingLineItem[];
|
|
15831
|
+
readonly shipping_line_item: io.flow.internal.v0.models.CalculationStampingShippingLine;
|
|
15832
|
+
readonly total: io.flow.internal.v0.models.CalculationTotal;
|
|
15833
|
+
readonly explanation?: string;
|
|
15834
|
+
}
|
|
15835
|
+
interface CalculationTotal {
|
|
15836
|
+
readonly customs_value_name: string;
|
|
15837
|
+
readonly customs_value_amount: io.flow.common.v0.models.Money;
|
|
15838
|
+
readonly additional_import_included?: boolean;
|
|
15839
|
+
readonly additional_import_value?: io.flow.common.v0.models.Money;
|
|
15840
|
+
readonly duty: io.flow.common.v0.models.Money;
|
|
15841
|
+
readonly sales_tax: io.flow.common.v0.models.Money;
|
|
15842
|
+
readonly additional_tax_import_included: boolean;
|
|
15843
|
+
readonly additional_tax?: io.flow.common.v0.models.Money;
|
|
15844
|
+
readonly additional_import_tax?: io.flow.internal.v0.models.AdditionalImportTax[];
|
|
15845
|
+
}
|
|
15669
15846
|
interface CalculatorDtcePostBody {
|
|
15670
15847
|
readonly products: io.flow.internal.v0.models.CalculatorDtceProduct[];
|
|
15671
15848
|
readonly countryCodeFrom: string;
|
|
@@ -15951,6 +16128,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
15951
16128
|
readonly channel: io.flow.common.v0.models.ChannelReference;
|
|
15952
16129
|
readonly id: string;
|
|
15953
16130
|
readonly key?: string;
|
|
16131
|
+
readonly status: io.flow.internal.v0.enums.AccountStatus;
|
|
15954
16132
|
readonly origin?: io.flow.internal.v0.models.AccountOrigin;
|
|
15955
16133
|
readonly currency: string;
|
|
15956
16134
|
readonly updated_at: string;
|
|
@@ -16101,6 +16279,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
16101
16279
|
readonly tracking_numbers?: string[];
|
|
16102
16280
|
readonly carrier?: io.flow.reference.v0.models.CarrierService;
|
|
16103
16281
|
readonly duty_paid: boolean;
|
|
16282
|
+
readonly shop_id?: string;
|
|
16104
16283
|
}
|
|
16105
16284
|
interface ChannelOrderAcceptance {
|
|
16106
16285
|
readonly id: string;
|
|
@@ -16109,6 +16288,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
16109
16288
|
readonly channel_id: string;
|
|
16110
16289
|
readonly external_order_reference: string;
|
|
16111
16290
|
readonly payment_request_id?: string;
|
|
16291
|
+
readonly order_edit_payment_request_ids?: string[];
|
|
16112
16292
|
readonly status: io.flow.internal.v0.enums.ChannelOrderAcceptanceStatus;
|
|
16113
16293
|
readonly reasons: io.flow.internal.v0.models.ChannelOrderAcceptanceReason[];
|
|
16114
16294
|
readonly next_action_from?: io.flow.internal.v0.enums.ChannelOrderAcceptanceNextActionFrom;
|
|
@@ -18225,6 +18405,11 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18225
18405
|
readonly timestamp: string;
|
|
18226
18406
|
readonly invoice: io.flow.internal.v0.models.CommercialInvoiceInternal;
|
|
18227
18407
|
}
|
|
18408
|
+
interface CommercialInvoiceSummary {
|
|
18409
|
+
readonly id: string;
|
|
18410
|
+
readonly label_id: string;
|
|
18411
|
+
readonly line_items: io.flow.internal.v0.models.InvoiceLineItem[];
|
|
18412
|
+
}
|
|
18228
18413
|
interface CompanyReference {
|
|
18229
18414
|
readonly id: string;
|
|
18230
18415
|
}
|
|
@@ -19014,6 +19199,9 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19014
19199
|
readonly bank_code: string;
|
|
19015
19200
|
readonly id: string;
|
|
19016
19201
|
readonly tax_code?: string;
|
|
19202
|
+
readonly tax_code_2?: string;
|
|
19203
|
+
readonly debit_entry_code?: string;
|
|
19204
|
+
readonly credit_entry_code?: string;
|
|
19017
19205
|
readonly vat_flag?: string;
|
|
19018
19206
|
readonly w_tax_percent?: string;
|
|
19019
19207
|
readonly iban?: string;
|
|
@@ -19058,6 +19246,9 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19058
19246
|
readonly id: string;
|
|
19059
19247
|
readonly acc_des?: string;
|
|
19060
19248
|
readonly tax_code?: string;
|
|
19249
|
+
readonly tax_code_2?: string;
|
|
19250
|
+
readonly debit_entry_code?: string;
|
|
19251
|
+
readonly credit_entry_code?: string;
|
|
19061
19252
|
readonly vat_flag?: string;
|
|
19062
19253
|
readonly country_name?: string;
|
|
19063
19254
|
readonly w_tax_percent?: string;
|
|
@@ -19598,6 +19789,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19598
19789
|
readonly fx?: io.flow.internal.v0.models.Fee;
|
|
19599
19790
|
readonly duty_guarantee?: io.flow.internal.v0.models.Fee;
|
|
19600
19791
|
readonly transfer?: io.flow.internal.v0.models.Fee;
|
|
19792
|
+
readonly negative_balance?: io.flow.internal.v0.models.Fee;
|
|
19601
19793
|
}
|
|
19602
19794
|
interface FinanceBankAccount {
|
|
19603
19795
|
readonly id: string;
|
|
@@ -19724,6 +19916,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19724
19916
|
readonly source: io.flow.internal.v0.models.AccountSource;
|
|
19725
19917
|
readonly id: string;
|
|
19726
19918
|
readonly key?: string;
|
|
19919
|
+
readonly status: io.flow.internal.v0.enums.AccountStatus;
|
|
19727
19920
|
readonly origin?: io.flow.internal.v0.models.AccountOrigin;
|
|
19728
19921
|
readonly currency: string;
|
|
19729
19922
|
readonly updated_at: string;
|
|
@@ -19737,6 +19930,16 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19737
19930
|
readonly bank_account?: io.flow.internal.v0.models.BankAccountReference;
|
|
19738
19931
|
readonly created_at: string;
|
|
19739
19932
|
}
|
|
19933
|
+
interface FlowAccountStatusForm {
|
|
19934
|
+
readonly status: io.flow.internal.v0.enums.AccountStatus;
|
|
19935
|
+
}
|
|
19936
|
+
interface FlowBillingStatement {
|
|
19937
|
+
readonly id: string;
|
|
19938
|
+
readonly account: io.flow.billing.v0.models.AccountReference;
|
|
19939
|
+
readonly period: io.flow.common.v0.models.DatetimeRange;
|
|
19940
|
+
readonly totals: io.flow.internal.v0.models.BillingStatementTotals;
|
|
19941
|
+
readonly attachments: io.flow.internal.v0.models.BillingStatementAttachment[];
|
|
19942
|
+
}
|
|
19740
19943
|
interface FlowChannelOrganization {
|
|
19741
19944
|
readonly placeholder?: string;
|
|
19742
19945
|
}
|
|
@@ -21356,6 +21559,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21356
21559
|
readonly number: string;
|
|
21357
21560
|
readonly fulfillment_method: io.flow.catalog.v0.enums.FulfillmentMethodValue;
|
|
21358
21561
|
readonly country_of_origin?: string;
|
|
21562
|
+
readonly tarriff_code?: string;
|
|
21359
21563
|
readonly inferred?: boolean;
|
|
21360
21564
|
}
|
|
21361
21565
|
interface ItemValuesForm {
|
|
@@ -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;
|
|
@@ -22719,6 +22954,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22719
22954
|
readonly organization: io.flow.common.v0.models.OrganizationReference;
|
|
22720
22955
|
readonly id: string;
|
|
22721
22956
|
readonly key?: string;
|
|
22957
|
+
readonly status: io.flow.internal.v0.enums.AccountStatus;
|
|
22722
22958
|
readonly origin?: io.flow.internal.v0.models.AccountOrigin;
|
|
22723
22959
|
readonly currency: string;
|
|
22724
22960
|
readonly updated_at: string;
|
|
@@ -26421,6 +26657,7 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
26421
26657
|
type AuthorizedOrderCharge = io.flow.internal.v0.models.AuthorizedShippingCharge;
|
|
26422
26658
|
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
26659
|
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;
|
|
26660
|
+
type CalculatorStamp = io.flow.internal.v0.models.MessageStamp | io.flow.internal.v0.models.CalculationStep;
|
|
26424
26661
|
type CarrierChargeForm = io.flow.internal.v0.models.CarrierChargeFormLabel | io.flow.internal.v0.models.CarrierChargeFormOther;
|
|
26425
26662
|
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
26663
|
type ChannelRateMetadata = io.flow.internal.v0.models.ChannelRateMetadataIdentity | io.flow.internal.v0.models.ChannelRateMetadataRate;
|
|
@@ -26517,7 +26754,7 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
26517
26754
|
type DiscountRequestOfferForm = io.flow.internal.v0.models.DiscountRequestOfferFixedAmountForm;
|
|
26518
26755
|
type DisputeDetails = io.flow.internal.v0.models.DisputeDetailsAdyen | io.flow.internal.v0.models.DisputeDetailsPaypal;
|
|
26519
26756
|
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;
|
|
26757
|
+
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.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.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
26758
|
type Experiment = io.flow.internal.v0.models.ExperienceExperiment | io.flow.internal.v0.models.FeatureExperiment;
|
|
26522
26759
|
type ExportSchedule = io.flow.internal.v0.models.ExportScheduleDaily | io.flow.internal.v0.models.ExportScheduleRepeated;
|
|
26523
26760
|
type FeatureDefaultValue = io.flow.internal.v0.models.BooleanFeatureDefaultValue | io.flow.internal.v0.models.StringFeatureDefaultValue;
|
|
@@ -26602,12 +26839,14 @@ export declare type AccountSettingsDeleted = io.flow.internal.v0.models.AccountS
|
|
|
26602
26839
|
export declare type AccountSettingsUpserted = io.flow.internal.v0.models.AccountSettingsUpserted;
|
|
26603
26840
|
export declare type AccountSource = io.flow.internal.v0.models.AccountSource;
|
|
26604
26841
|
export declare type AccountStatistics = io.flow.internal.v0.models.AccountStatistics;
|
|
26842
|
+
export declare type AccountStatus = io.flow.internal.v0.enums.AccountStatus;
|
|
26605
26843
|
export declare type AccountSummary = io.flow.internal.v0.models.AccountSummary;
|
|
26606
26844
|
export declare type AccountTransactionsExportRequest = io.flow.internal.v0.models.AccountTransactionsExportRequest;
|
|
26607
26845
|
export declare type AccountType = io.flow.internal.v0.enums.AccountType;
|
|
26608
26846
|
export declare type AccountUpserted = io.flow.internal.v0.models.AccountUpserted;
|
|
26609
26847
|
export declare type AccountUpsertedV2 = io.flow.internal.v0.models.AccountUpsertedV2;
|
|
26610
26848
|
export declare type ActionQuantity = io.flow.internal.v0.models.ActionQuantity;
|
|
26849
|
+
export declare type AdditionalImportTax = io.flow.internal.v0.models.AdditionalImportTax;
|
|
26611
26850
|
export declare type AddressConfigurationProvinceSetting = io.flow.internal.v0.models.AddressConfigurationProvinceSetting;
|
|
26612
26851
|
export declare type AddressConfigurationSetting = io.flow.internal.v0.models.AddressConfigurationSetting;
|
|
26613
26852
|
export declare type AddressConfigurationSettingForm = io.flow.internal.v0.models.AddressConfigurationSettingForm;
|
|
@@ -26798,6 +27037,10 @@ export declare type BrowserBundlePaymentMethods = io.flow.internal.v0.models.Bro
|
|
|
26798
27037
|
export declare type BulkClassificationAction = io.flow.internal.v0.models.BulkClassificationAction;
|
|
26799
27038
|
export declare type ByRuleSnapshot = io.flow.internal.v0.models.ByRuleSnapshot;
|
|
26800
27039
|
export declare type CalculatedTaxAmount = io.flow.internal.v0.models.CalculatedTaxAmount;
|
|
27040
|
+
export declare type CalculationStampingLineItem = io.flow.internal.v0.models.CalculationStampingLineItem;
|
|
27041
|
+
export declare type CalculationStampingShippingLine = io.flow.internal.v0.models.CalculationStampingShippingLine;
|
|
27042
|
+
export declare type CalculationStep = io.flow.internal.v0.models.CalculationStep;
|
|
27043
|
+
export declare type CalculationTotal = io.flow.internal.v0.models.CalculationTotal;
|
|
26801
27044
|
export declare type CalculatorDtcePostBody = io.flow.internal.v0.models.CalculatorDtcePostBody;
|
|
26802
27045
|
export declare type CalculatorDtceProduct = io.flow.internal.v0.models.CalculatorDtceProduct;
|
|
26803
27046
|
export declare type CalculatorEngine = io.flow.internal.v0.enums.CalculatorEngine;
|
|
@@ -26805,6 +27048,7 @@ export declare type CalculatorOrganizationSettings = io.flow.internal.v0.models.
|
|
|
26805
27048
|
export declare type CalculatorOrganizationSettingsDeleted = io.flow.internal.v0.models.CalculatorOrganizationSettingsDeleted;
|
|
26806
27049
|
export declare type CalculatorOrganizationSettingsForm = io.flow.internal.v0.models.CalculatorOrganizationSettingsForm;
|
|
26807
27050
|
export declare type CalculatorOrganizationSettingsUpserted = io.flow.internal.v0.models.CalculatorOrganizationSettingsUpserted;
|
|
27051
|
+
export declare type CalculatorStamp = io.flow.internal.v0.unions.CalculatorStamp;
|
|
26808
27052
|
export declare type CarrierAccount = io.flow.internal.v0.models.CarrierAccount;
|
|
26809
27053
|
export declare type CarrierAccountDeleted = io.flow.internal.v0.models.CarrierAccountDeleted;
|
|
26810
27054
|
export declare type CarrierAccountForm = io.flow.internal.v0.models.CarrierAccountForm;
|
|
@@ -27473,6 +27717,7 @@ export declare type CommercialInvoiceComparison = io.flow.internal.v0.models.Com
|
|
|
27473
27717
|
export declare type CommercialInvoiceInternal = io.flow.internal.v0.models.CommercialInvoiceInternal;
|
|
27474
27718
|
export declare type CommercialInvoiceInternalDeleted = io.flow.internal.v0.models.CommercialInvoiceInternalDeleted;
|
|
27475
27719
|
export declare type CommercialInvoiceInternalUpserted = io.flow.internal.v0.models.CommercialInvoiceInternalUpserted;
|
|
27720
|
+
export declare type CommercialInvoiceSummary = io.flow.internal.v0.models.CommercialInvoiceSummary;
|
|
27476
27721
|
export declare type CompanyReference = io.flow.internal.v0.models.CompanyReference;
|
|
27477
27722
|
export declare type Compliance = io.flow.internal.v0.models.Compliance;
|
|
27478
27723
|
export declare type ComplianceData = io.flow.internal.v0.unions.ComplianceData;
|
|
@@ -27751,7 +27996,9 @@ export declare type FiservMerchant = io.flow.internal.v0.models.FiservMerchant;
|
|
|
27751
27996
|
export declare type FiservMerchantModificationForm = io.flow.internal.v0.models.FiservMerchantModificationForm;
|
|
27752
27997
|
export declare type FiservMerchantPutForm = io.flow.internal.v0.models.FiservMerchantPutForm;
|
|
27753
27998
|
export declare type FlowAccount = io.flow.internal.v0.models.FlowAccount;
|
|
27999
|
+
export declare type FlowAccountStatusForm = io.flow.internal.v0.models.FlowAccountStatusForm;
|
|
27754
28000
|
export declare type FlowApp = io.flow.internal.v0.enums.FlowApp;
|
|
28001
|
+
export declare type FlowBillingStatement = io.flow.internal.v0.models.FlowBillingStatement;
|
|
27755
28002
|
export declare type FlowChannelOrganization = io.flow.internal.v0.models.FlowChannelOrganization;
|
|
27756
28003
|
export declare type FlowLabProject = io.flow.internal.v0.models.FlowLabProject;
|
|
27757
28004
|
export declare type FlowLabProjectPostForm = io.flow.internal.v0.models.FlowLabProjectPostForm;
|
|
@@ -28145,6 +28392,11 @@ export declare type MarketingGatewaySchemaSummary = io.flow.internal.v0.models.M
|
|
|
28145
28392
|
export declare type MarketingGatewaySourceSummary = io.flow.internal.v0.unions.MarketingGatewaySourceSummary;
|
|
28146
28393
|
export declare type MarketingGatewaySupportedChannelDetails = io.flow.internal.v0.models.MarketingGatewaySupportedChannelDetails;
|
|
28147
28394
|
export declare type MarketsOrder = io.flow.internal.v0.models.MarketsOrder;
|
|
28395
|
+
export declare type MatiasItem = io.flow.internal.v0.models.MatiasItem;
|
|
28396
|
+
export declare type MatiasItemDeleted = io.flow.internal.v0.models.MatiasItemDeleted;
|
|
28397
|
+
export declare type MatiasItemForm = io.flow.internal.v0.models.MatiasItemForm;
|
|
28398
|
+
export declare type MatiasItemType = io.flow.internal.v0.enums.MatiasItemType;
|
|
28399
|
+
export declare type MatiasItemUpserted = io.flow.internal.v0.models.MatiasItemUpserted;
|
|
28148
28400
|
export declare type Merchant = io.flow.internal.v0.models.Merchant;
|
|
28149
28401
|
export declare type MerchantApplicationSummaries = io.flow.internal.v0.models.MerchantApplicationSummaries;
|
|
28150
28402
|
export declare type MerchantApplicationSummary = io.flow.internal.v0.models.MerchantApplicationSummary;
|
|
@@ -28160,6 +28412,7 @@ export declare type MerchantSubsidies = io.flow.internal.v0.models.MerchantSubsi
|
|
|
28160
28412
|
export declare type MerchantSummary = io.flow.internal.v0.models.MerchantSummary;
|
|
28161
28413
|
export declare type MerchantTransactions = io.flow.internal.v0.models.MerchantTransactions;
|
|
28162
28414
|
export declare type MerchantUpserted = io.flow.internal.v0.models.MerchantUpserted;
|
|
28415
|
+
export declare type MessageStamp = io.flow.internal.v0.models.MessageStamp;
|
|
28163
28416
|
export declare type MetadataProposition = io.flow.internal.v0.models.MetadataProposition;
|
|
28164
28417
|
export declare type MetadataRatecard = io.flow.internal.v0.models.MetadataRatecard;
|
|
28165
28418
|
export declare type MixedBagWeight = io.flow.internal.v0.enums.MixedBagWeight;
|