@flowio/api-internal-prop-types 9.24.88 → 9.24.89
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/api-internal.d.ts +304 -15
- package/lib/api-internal.js +1 -1
- package/package.json +2 -2
- package/src/api-internal.d.ts +304 -15
- package/src/api-internal.js +390 -63
package/src/api-internal.d.ts
CHANGED
|
@@ -273,6 +273,7 @@ declare namespace io.flow.billing.accounting.v0.models {
|
|
|
273
273
|
readonly 'number': string;
|
|
274
274
|
readonly 'fulfillment_method': io.flow.catalog.v0.enums.FulfillmentMethodValue;
|
|
275
275
|
readonly 'country_of_origin'?: string;
|
|
276
|
+
readonly 'tarriff_code'?: string;
|
|
276
277
|
readonly 'inferred'?: boolean;
|
|
277
278
|
}
|
|
278
279
|
|
|
@@ -2416,6 +2417,7 @@ declare namespace io.flow.billing.csv.v0.models {
|
|
|
2416
2417
|
readonly 'processing': number;
|
|
2417
2418
|
readonly 'rate_lock': number;
|
|
2418
2419
|
readonly 'transfer': number;
|
|
2420
|
+
readonly 'negative_balance': number;
|
|
2419
2421
|
}
|
|
2420
2422
|
|
|
2421
2423
|
interface BillingCsvTransactionIdentifiers {
|
|
@@ -2436,6 +2438,7 @@ declare namespace io.flow.billing.csv.v0.models {
|
|
|
2436
2438
|
readonly 'label_created_at': string;
|
|
2437
2439
|
readonly 'carrier_id': string;
|
|
2438
2440
|
readonly 'carrier_tracking_number': string;
|
|
2441
|
+
readonly 'revenue_share_percentage': number;
|
|
2439
2442
|
readonly 'outbound_transaction_id'?: string;
|
|
2440
2443
|
}
|
|
2441
2444
|
|
|
@@ -2560,7 +2563,7 @@ declare namespace io.flow.stripe.v0.enums {
|
|
|
2560
2563
|
type OrderItemType = 'sku' | 'tax' | 'shipping' | 'discount';
|
|
2561
2564
|
type PaymentIntentStatus = 'canceled' | 'processing' | 'requires_action' | 'requires_capture' | 'requires_confirmation' | 'requires_payment_method' | 'succeeded';
|
|
2562
2565
|
type PaymentMethodCategoryKlarna = 'pay_later' | 'pay_now' | 'pay_with_financing' | 'pay_in_installments';
|
|
2563
|
-
type PaymentMethodType = 'card' | 'card_present';
|
|
2566
|
+
type PaymentMethodType = 'card' | 'card_present' | 'klarna';
|
|
2564
2567
|
type PaymentOutcomeType = 'authorized' | 'manual_review' | 'issuer_declined' | 'blocked' | 'invalid';
|
|
2565
2568
|
type PaymentStatus = 'succeeded' | 'pending' | 'failed';
|
|
2566
2569
|
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';
|
|
@@ -2818,6 +2821,12 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
2818
2821
|
readonly 'marketplace_seller_info'?: io.flow.stripe.v0.models.KlarnaMarketplaceSellerInfo[];
|
|
2819
2822
|
}
|
|
2820
2823
|
|
|
2824
|
+
interface KlarnaDobForm {
|
|
2825
|
+
readonly 'day': number;
|
|
2826
|
+
readonly 'month': number;
|
|
2827
|
+
readonly 'year': number;
|
|
2828
|
+
}
|
|
2829
|
+
|
|
2821
2830
|
interface KlarnaMarketplaceSellerInfo {
|
|
2822
2831
|
readonly 'sub_merchant_id'?: string;
|
|
2823
2832
|
readonly 'product_category'?: string;
|
|
@@ -2827,6 +2836,12 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
2827
2836
|
readonly 'additional_owners'?: io.flow.stripe.v0.models.Owner[];
|
|
2828
2837
|
}
|
|
2829
2838
|
|
|
2839
|
+
interface MarketplaceSellerInfo {
|
|
2840
|
+
readonly 'name': string;
|
|
2841
|
+
readonly 'id'?: string;
|
|
2842
|
+
readonly 'product_category'?: string;
|
|
2843
|
+
}
|
|
2844
|
+
|
|
2830
2845
|
interface Masterpass {
|
|
2831
2846
|
readonly 'type': 'masterpass';
|
|
2832
2847
|
readonly 'masterpass': io.flow.stripe.v0.models.MasterpassInformation;
|
|
@@ -2915,6 +2930,10 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
2915
2930
|
readonly 'verified_phone'?: string;
|
|
2916
2931
|
}
|
|
2917
2932
|
|
|
2933
|
+
interface PaymentDetails {
|
|
2934
|
+
readonly 'marketplace_seller_info'?: io.flow.stripe.v0.models.MarketplaceSellerInfo;
|
|
2935
|
+
}
|
|
2936
|
+
|
|
2918
2937
|
interface PaymentIntent {
|
|
2919
2938
|
readonly 'id': string;
|
|
2920
2939
|
readonly 'object': string;
|
|
@@ -3039,6 +3058,7 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
3039
3058
|
readonly 'billing_details'?: io.flow.stripe.v0.models.PaymentMethodBillingDetails;
|
|
3040
3059
|
readonly 'card'?: io.flow.stripe.v0.models.PaymentMethodCardDetails;
|
|
3041
3060
|
readonly 'card_present'?: any/*object*/;
|
|
3061
|
+
readonly 'klarna'?: any/*object*/;
|
|
3042
3062
|
readonly 'created': number;
|
|
3043
3063
|
readonly 'customer'?: string;
|
|
3044
3064
|
readonly 'livemode': boolean;
|
|
@@ -3079,6 +3099,13 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
3079
3099
|
readonly 'card': io.flow.stripe.v0.models.PaymentMethodCardForm;
|
|
3080
3100
|
}
|
|
3081
3101
|
|
|
3102
|
+
interface PaymentMethodDataKlarna {
|
|
3103
|
+
readonly 'type': 'klarna';
|
|
3104
|
+
readonly 'billing_details'?: io.flow.stripe.v0.models.PaymentMethodBillingDetails;
|
|
3105
|
+
readonly 'metadata'?: any/*object*/;
|
|
3106
|
+
readonly 'klarna': io.flow.stripe.v0.models.PaymentMethodKlarnaForm;
|
|
3107
|
+
}
|
|
3108
|
+
|
|
3082
3109
|
interface PaymentMethodDetailsCard {
|
|
3083
3110
|
readonly 'type': 'card';
|
|
3084
3111
|
readonly 'card': io.flow.stripe.v0.models.PaymentMethodDetailsCardInformation;
|
|
@@ -3127,8 +3154,20 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
3127
3154
|
readonly 'card': io.flow.stripe.v0.models.PaymentMethodCardForm;
|
|
3128
3155
|
}
|
|
3129
3156
|
|
|
3157
|
+
interface PaymentMethodFormKlarna {
|
|
3158
|
+
readonly 'type': 'klarna';
|
|
3159
|
+
readonly 'billing_details'?: io.flow.stripe.v0.models.PaymentMethodBillingDetails;
|
|
3160
|
+
readonly 'metadata'?: any/*object*/;
|
|
3161
|
+
readonly 'klarna': io.flow.stripe.v0.models.PaymentMethodKlarnaForm;
|
|
3162
|
+
}
|
|
3163
|
+
|
|
3164
|
+
interface PaymentMethodKlarnaForm {
|
|
3165
|
+
readonly 'dob'?: io.flow.stripe.v0.models.KlarnaDobForm;
|
|
3166
|
+
}
|
|
3167
|
+
|
|
3130
3168
|
interface PaymentMethodOptions {
|
|
3131
3169
|
readonly 'card'?: io.flow.stripe.v0.models.PaymentMethodOptionsCard;
|
|
3170
|
+
readonly 'klarna'?: io.flow.stripe.v0.models.PaymentMethodOptionsKlarna;
|
|
3132
3171
|
}
|
|
3133
3172
|
|
|
3134
3173
|
interface PaymentMethodOptionsCard {
|
|
@@ -3148,6 +3187,21 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
3148
3187
|
|
|
3149
3188
|
interface PaymentMethodOptionsForm {
|
|
3150
3189
|
readonly 'card'?: io.flow.stripe.v0.models.PaymentMethodOptionsCardForm;
|
|
3190
|
+
readonly 'klarna'?: io.flow.stripe.v0.models.PaymentMethodOptionsKlarnaForm;
|
|
3191
|
+
}
|
|
3192
|
+
|
|
3193
|
+
interface PaymentMethodOptionsKlarna {
|
|
3194
|
+
readonly 'capture_method'?: io.flow.stripe.v0.enums.CaptureMethod;
|
|
3195
|
+
readonly 'preferred_locale'?: io.flow.stripe.v0.enums.PreferredLocaleKlarna;
|
|
3196
|
+
readonly 'setup_future_usage'?: io.flow.stripe.v0.enums.SetupFutureUsage;
|
|
3197
|
+
readonly 'payment_details'?: io.flow.stripe.v0.models.PaymentDetails;
|
|
3198
|
+
}
|
|
3199
|
+
|
|
3200
|
+
interface PaymentMethodOptionsKlarnaForm {
|
|
3201
|
+
readonly 'capture_method'?: io.flow.stripe.v0.enums.CaptureMethod;
|
|
3202
|
+
readonly 'preferred_locale'?: io.flow.stripe.v0.enums.PreferredLocaleKlarna;
|
|
3203
|
+
readonly 'setup_future_usage'?: io.flow.stripe.v0.enums.SetupFutureUsage;
|
|
3204
|
+
readonly 'payment_details'?: io.flow.stripe.v0.models.PaymentDetails;
|
|
3151
3205
|
}
|
|
3152
3206
|
|
|
3153
3207
|
interface PaymentOutcome {
|
|
@@ -3445,9 +3499,9 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
3445
3499
|
|
|
3446
3500
|
declare namespace io.flow.stripe.v0.unions {
|
|
3447
3501
|
type CardWallet = (io.flow.stripe.v0.models.Masterpass | io.flow.stripe.v0.models.ApplePay | io.flow.stripe.v0.models.VisaCheckout);
|
|
3448
|
-
type PaymentMethodData = (io.flow.stripe.v0.models.PaymentMethodDataCard);
|
|
3502
|
+
type PaymentMethodData = (io.flow.stripe.v0.models.PaymentMethodDataCard | io.flow.stripe.v0.models.PaymentMethodDataKlarna);
|
|
3449
3503
|
type PaymentMethodDetails = (io.flow.stripe.v0.models.PaymentMethodDetailsCard | io.flow.stripe.v0.models.PaymentMethodDetailsKlarna);
|
|
3450
|
-
type PaymentMethodForm = (io.flow.stripe.v0.models.PaymentMethodFormCard);
|
|
3504
|
+
type PaymentMethodForm = (io.flow.stripe.v0.models.PaymentMethodFormCard | io.flow.stripe.v0.models.PaymentMethodFormKlarna);
|
|
3451
3505
|
}
|
|
3452
3506
|
|
|
3453
3507
|
declare namespace io.flow.customer.v0.enums {
|
|
@@ -8015,6 +8069,7 @@ declare namespace io.flow.channel.internal.v0.models {
|
|
|
8015
8069
|
readonly 'channel_id': string;
|
|
8016
8070
|
readonly 'external_order_reference': string;
|
|
8017
8071
|
readonly 'payment_request_id'?: string;
|
|
8072
|
+
readonly 'order_edit_payment_request_ids'?: string[];
|
|
8018
8073
|
readonly 'status': io.flow.channel.internal.v0.enums.ChannelOrderAcceptanceStatus;
|
|
8019
8074
|
readonly 'reasons': io.flow.channel.internal.v0.models.ChannelOrderAcceptanceReason[];
|
|
8020
8075
|
readonly 'next_action_from'?: io.flow.channel.internal.v0.enums.ChannelOrderAcceptanceNextActionFrom;
|
|
@@ -11157,6 +11212,17 @@ declare namespace io.flow.payment.request.bundle.v0.models {
|
|
|
11157
11212
|
}
|
|
11158
11213
|
|
|
11159
11214
|
declare namespace io.flow.ratecard.v0.models {
|
|
11215
|
+
interface AdditionalHandlingServiceFee {
|
|
11216
|
+
readonly 'discriminator': 'additional_handling_service_fee';
|
|
11217
|
+
readonly 'length_girth_threshold'?: number;
|
|
11218
|
+
readonly 'length_threshold'?: number;
|
|
11219
|
+
readonly 'width_threshold'?: number;
|
|
11220
|
+
readonly 'dimensional_unit'?: io.flow.common.v0.enums.UnitOfMeasurement;
|
|
11221
|
+
readonly 'weight_threshold'?: number;
|
|
11222
|
+
readonly 'weight_unit'?: io.flow.common.v0.enums.UnitOfMeasurement;
|
|
11223
|
+
readonly 'amount': io.flow.common.v0.models.Money;
|
|
11224
|
+
}
|
|
11225
|
+
|
|
11160
11226
|
interface CrossdockRatecardFee {
|
|
11161
11227
|
readonly 'discriminator': 'crossdock_ratecard_fee';
|
|
11162
11228
|
readonly 'amount': io.flow.common.v0.models.Money;
|
|
@@ -11201,6 +11267,17 @@ declare namespace io.flow.ratecard.v0.models {
|
|
|
11201
11267
|
readonly 'ends_at'?: string;
|
|
11202
11268
|
}
|
|
11203
11269
|
|
|
11270
|
+
interface EeiFilingRatecardFee {
|
|
11271
|
+
readonly 'discriminator': 'eei_filing_ratecard_fee';
|
|
11272
|
+
readonly 'amount': io.flow.common.v0.models.Money;
|
|
11273
|
+
}
|
|
11274
|
+
|
|
11275
|
+
interface EeiFilingServiceFee {
|
|
11276
|
+
readonly 'discriminator': 'eei_filing_service_fee';
|
|
11277
|
+
readonly 'amount': io.flow.common.v0.models.Money;
|
|
11278
|
+
readonly 'value_threshold': io.flow.common.v0.models.Money;
|
|
11279
|
+
}
|
|
11280
|
+
|
|
11204
11281
|
interface EmergencySituationSurchargeRatecardFee {
|
|
11205
11282
|
readonly 'discriminator': 'emergency_situation_surcharge_ratecard_fee';
|
|
11206
11283
|
readonly 'amount': io.flow.common.v0.models.Money;
|
|
@@ -11226,6 +11303,31 @@ declare namespace io.flow.ratecard.v0.models {
|
|
|
11226
11303
|
readonly 'unit': io.flow.common.v0.enums.UnitOfMeasurement;
|
|
11227
11304
|
}
|
|
11228
11305
|
|
|
11306
|
+
interface FixedCurrencyConversionRatecardFee {
|
|
11307
|
+
readonly 'discriminator': 'fixed_currency_conversion_ratecard_fee';
|
|
11308
|
+
readonly 'amount': io.flow.common.v0.models.Money;
|
|
11309
|
+
}
|
|
11310
|
+
|
|
11311
|
+
interface FixedCurrencyConversionServiceFee {
|
|
11312
|
+
readonly 'discriminator': 'fixed_currency_conversion_service_fee';
|
|
11313
|
+
readonly 'conditions': io.flow.ratecard.v0.models.FixedFeeCondition[];
|
|
11314
|
+
}
|
|
11315
|
+
|
|
11316
|
+
interface FixedDdpRatecardFee {
|
|
11317
|
+
readonly 'discriminator': 'fixed_ddp_ratecard_fee';
|
|
11318
|
+
readonly 'amount': io.flow.common.v0.models.Money;
|
|
11319
|
+
}
|
|
11320
|
+
|
|
11321
|
+
interface FixedDdpServiceFee {
|
|
11322
|
+
readonly 'discriminator': 'fixed_ddp_service_fee';
|
|
11323
|
+
readonly 'conditions': io.flow.ratecard.v0.models.FixedFeeCondition[];
|
|
11324
|
+
}
|
|
11325
|
+
|
|
11326
|
+
interface FixedFeeCondition {
|
|
11327
|
+
readonly 'countries': string[];
|
|
11328
|
+
readonly 'amount': io.flow.common.v0.models.Money;
|
|
11329
|
+
}
|
|
11330
|
+
|
|
11229
11331
|
interface FuelSurchargeAmountByWeightServiceFee {
|
|
11230
11332
|
readonly 'discriminator': 'fuel_surcharge_amount_by_weight_service_fee';
|
|
11231
11333
|
readonly 'amount': io.flow.common.v0.models.Money;
|
|
@@ -11296,6 +11398,15 @@ declare namespace io.flow.ratecard.v0.models {
|
|
|
11296
11398
|
readonly 'ratecard': io.flow.ratecard.v0.models.RatecardSummary;
|
|
11297
11399
|
}
|
|
11298
11400
|
|
|
11401
|
+
interface LargePackageServiceFee {
|
|
11402
|
+
readonly 'discriminator': 'large_package_service_fee';
|
|
11403
|
+
readonly 'length_girth_threshold'?: number;
|
|
11404
|
+
readonly 'dimensional_unit'?: io.flow.common.v0.enums.UnitOfMeasurement;
|
|
11405
|
+
readonly 'weight_threshold'?: number;
|
|
11406
|
+
readonly 'weight_unit'?: io.flow.common.v0.enums.UnitOfMeasurement;
|
|
11407
|
+
readonly 'amount': io.flow.common.v0.models.Money;
|
|
11408
|
+
}
|
|
11409
|
+
|
|
11299
11410
|
interface OversizePieceSurchargeRatecardFee {
|
|
11300
11411
|
readonly 'discriminator': 'oversize_piece_surcharge_ratecard_fee';
|
|
11301
11412
|
readonly 'dimensional_threshold'?: number;
|
|
@@ -11547,6 +11658,12 @@ declare namespace io.flow.ratecard.v0.models {
|
|
|
11547
11658
|
readonly 'ratecard': io.flow.ratecard.v0.models.Ratecard;
|
|
11548
11659
|
}
|
|
11549
11660
|
|
|
11661
|
+
interface RemoteAreaByWeightServiceFee {
|
|
11662
|
+
readonly 'discriminator': 'remote_area_by_weight_service_fee';
|
|
11663
|
+
readonly 'amount': io.flow.common.v0.models.Money;
|
|
11664
|
+
readonly 'weight_unit': io.flow.common.v0.enums.UnitOfMeasurement;
|
|
11665
|
+
}
|
|
11666
|
+
|
|
11550
11667
|
interface RemoteAreaRatecardFee {
|
|
11551
11668
|
readonly 'discriminator': 'remote_area_ratecard_fee';
|
|
11552
11669
|
readonly 'amount': io.flow.common.v0.models.Money;
|
|
@@ -11562,6 +11679,17 @@ declare namespace io.flow.ratecard.v0.models {
|
|
|
11562
11679
|
readonly 'amount': number;
|
|
11563
11680
|
}
|
|
11564
11681
|
|
|
11682
|
+
interface SecurityRatecardFee {
|
|
11683
|
+
readonly 'discriminator': 'security_ratecard_fee';
|
|
11684
|
+
readonly 'amount': io.flow.common.v0.models.Money;
|
|
11685
|
+
}
|
|
11686
|
+
|
|
11687
|
+
interface SecurityServiceFee {
|
|
11688
|
+
readonly 'discriminator': 'security_service_fee';
|
|
11689
|
+
readonly 'amount': io.flow.common.v0.models.Money;
|
|
11690
|
+
readonly 'countries': string[];
|
|
11691
|
+
}
|
|
11692
|
+
|
|
11565
11693
|
interface ShipmentWindow {
|
|
11566
11694
|
readonly 'from': number;
|
|
11567
11695
|
readonly 'to': number;
|
|
@@ -11571,8 +11699,8 @@ declare namespace io.flow.ratecard.v0.models {
|
|
|
11571
11699
|
declare namespace io.flow.ratecard.v0.unions {
|
|
11572
11700
|
type FuelSurchargeRate = (io.flow.ratecard.v0.models.FuelSurchargePercent | io.flow.ratecard.v0.models.FuelSurchargeByWeight);
|
|
11573
11701
|
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);
|
|
11574
|
-
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);
|
|
11575
|
-
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);
|
|
11702
|
+
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);
|
|
11703
|
+
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);
|
|
11576
11704
|
}
|
|
11577
11705
|
|
|
11578
11706
|
declare namespace io.flow.token.v0.models {
|
|
@@ -12075,7 +12203,7 @@ declare namespace io.flow.price.v0.unions {
|
|
|
12075
12203
|
|
|
12076
12204
|
declare namespace io.flow.trueup.v0.enums {
|
|
12077
12205
|
type CarrierChargeReason = 'return_to_origin' | 'rejection' | 'other';
|
|
12078
|
-
type TrueupSurchargeType = 'fuel' | 'remote_area' | 'oversize' | 'duties_paid' | 'emergency' | 'peak' | 'address_correction';
|
|
12206
|
+
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';
|
|
12079
12207
|
}
|
|
12080
12208
|
|
|
12081
12209
|
declare namespace io.flow.trueup.v0.models {
|
|
@@ -13026,7 +13154,7 @@ declare namespace io.flow.inventory.v0.unions {
|
|
|
13026
13154
|
declare namespace io.flow.permission.v0.enums {
|
|
13027
13155
|
type AuthenticationTechnique = 'anonymous' | 'session' | 'token' | 'partner_token' | 'user';
|
|
13028
13156
|
type FlowBehavior = 'view_consumer_data';
|
|
13029
|
-
type FlowRole = 'organization_admin' | 'organization_merchant' | 'organization_customer_service' | 'organization_fulfillment' | 'organization_marketing' | 'organization_finance' | 'flow_operations' | 'channel_admin' | 'channel_organization_admin';
|
|
13157
|
+
type FlowRole = 'organization_admin' | 'organization_merchant' | 'organization_customer_service' | 'organization_fulfillment' | 'organization_marketing' | 'organization_finance' | 'organization_classification' | 'flow_operations' | 'channel_admin' | 'channel_organization_admin';
|
|
13030
13158
|
type PermittedHttpMethod = 'GET' | 'POST' | 'PUT' | 'DELETE' | 'PATCH';
|
|
13031
13159
|
}
|
|
13032
13160
|
|
|
@@ -13170,6 +13298,7 @@ declare namespace io.flow.item.v0.models {
|
|
|
13170
13298
|
|
|
13171
13299
|
declare namespace io.flow.billing.internal.v0.enums {
|
|
13172
13300
|
type AccountSettingLiabilitiesMethod = 'withholding' | 'transaction';
|
|
13301
|
+
type AccountStatus = 'active' | 'inactive';
|
|
13173
13302
|
type AccountType = 'channel' | 'organization';
|
|
13174
13303
|
type AdjustmentTransactionType = 'adjustment' | 'reversal';
|
|
13175
13304
|
type BankPaymentPromiseCompletedMethod = 'credit' | 'time';
|
|
@@ -13179,7 +13308,7 @@ declare namespace io.flow.billing.internal.v0.enums {
|
|
|
13179
13308
|
type BillingStatementBatchFileKey = 'summary';
|
|
13180
13309
|
type BillingTransactionStatus = 'pending' | 'pending_proof' | 'posted';
|
|
13181
13310
|
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';
|
|
13182
|
-
type CarrierChargeTransactionType = 'adjustment' | 'reversal' | 'charge';
|
|
13311
|
+
type CarrierChargeTransactionType = 'adjustment' | 'reversal' | 'charge' | 'revenue_share';
|
|
13183
13312
|
type ChannelBilledTransactionType = 'adjustment' | 'reversal' | 'channel_initiated';
|
|
13184
13313
|
type ChannelTransactionType = 'adjustment' | 'reversal' | 'processing';
|
|
13185
13314
|
type DisputeTransactionType = 'adjustment' | 'dispute';
|
|
@@ -13270,7 +13399,7 @@ declare namespace io.flow.billing.internal.v0.models {
|
|
|
13270
13399
|
readonly 'merchant_of_record_fee'?: number;
|
|
13271
13400
|
readonly 'duty_guarantee_fee'?: number;
|
|
13272
13401
|
readonly 'transfer_fee'?: number;
|
|
13273
|
-
readonly '
|
|
13402
|
+
readonly 'negative_balance_fee'?: number;
|
|
13274
13403
|
readonly 'order_service_fee'?: io.flow.billing.internal.v0.models.TieredFee;
|
|
13275
13404
|
readonly 'label_fees'?: io.flow.billing.internal.v0.models.AccountSettingLabelFees;
|
|
13276
13405
|
readonly 'charge_label_cost_directly': boolean;
|
|
@@ -13455,6 +13584,7 @@ declare namespace io.flow.billing.internal.v0.models {
|
|
|
13455
13584
|
readonly 'b2b_tax_remittance_days'?: number;
|
|
13456
13585
|
readonly 'mor_fee'?: number;
|
|
13457
13586
|
readonly 'duty_guarantee_fee'?: number;
|
|
13587
|
+
readonly 'negative_balance_fee'?: number;
|
|
13458
13588
|
readonly 'order_service_fee'?: io.flow.billing.internal.v0.models.TieredFee;
|
|
13459
13589
|
readonly 'label_fee'?: io.flow.billing.internal.v0.models.TieredFee;
|
|
13460
13590
|
}
|
|
@@ -13552,6 +13682,7 @@ declare namespace io.flow.billing.internal.v0.models {
|
|
|
13552
13682
|
readonly 'channel': io.flow.common.v0.models.ChannelReference;
|
|
13553
13683
|
readonly 'id': string;
|
|
13554
13684
|
readonly 'key'?: string;
|
|
13685
|
+
readonly 'status': io.flow.billing.internal.v0.enums.AccountStatus;
|
|
13555
13686
|
readonly 'origin'?: io.flow.billing.internal.v0.models.AccountOrigin;
|
|
13556
13687
|
readonly 'currency': string;
|
|
13557
13688
|
readonly 'updated_at': string;
|
|
@@ -13768,6 +13899,7 @@ declare namespace io.flow.billing.internal.v0.models {
|
|
|
13768
13899
|
readonly 'source': io.flow.billing.internal.v0.models.AccountSource;
|
|
13769
13900
|
readonly 'id': string;
|
|
13770
13901
|
readonly 'key'?: string;
|
|
13902
|
+
readonly 'status': io.flow.billing.internal.v0.enums.AccountStatus;
|
|
13771
13903
|
readonly 'origin'?: io.flow.billing.internal.v0.models.AccountOrigin;
|
|
13772
13904
|
readonly 'currency': string;
|
|
13773
13905
|
readonly 'updated_at': string;
|
|
@@ -13782,6 +13914,18 @@ declare namespace io.flow.billing.internal.v0.models {
|
|
|
13782
13914
|
readonly 'created_at': string;
|
|
13783
13915
|
}
|
|
13784
13916
|
|
|
13917
|
+
interface FlowAccountStatusForm {
|
|
13918
|
+
readonly 'status': io.flow.billing.internal.v0.enums.AccountStatus;
|
|
13919
|
+
}
|
|
13920
|
+
|
|
13921
|
+
interface FlowBillingStatement {
|
|
13922
|
+
readonly 'id': string;
|
|
13923
|
+
readonly 'account': io.flow.billing.v0.models.AccountReference;
|
|
13924
|
+
readonly 'period': io.flow.common.v0.models.DatetimeRange;
|
|
13925
|
+
readonly 'totals': io.flow.billing.internal.v0.models.BillingStatementTotals;
|
|
13926
|
+
readonly 'attachments': io.flow.billing.internal.v0.models.BillingStatementAttachment[];
|
|
13927
|
+
}
|
|
13928
|
+
|
|
13785
13929
|
interface FxFee {
|
|
13786
13930
|
readonly 'base': io.flow.common.v0.models.Money;
|
|
13787
13931
|
readonly 'local': io.flow.common.v0.models.Money;
|
|
@@ -13952,6 +14096,7 @@ declare namespace io.flow.billing.internal.v0.models {
|
|
|
13952
14096
|
readonly 'organization': io.flow.common.v0.models.OrganizationReference;
|
|
13953
14097
|
readonly 'id': string;
|
|
13954
14098
|
readonly 'key'?: string;
|
|
14099
|
+
readonly 'status': io.flow.billing.internal.v0.enums.AccountStatus;
|
|
13955
14100
|
readonly 'origin'?: io.flow.billing.internal.v0.models.AccountOrigin;
|
|
13956
14101
|
readonly 'currency': string;
|
|
13957
14102
|
readonly 'updated_at': string;
|
|
@@ -15868,8 +16013,9 @@ declare namespace io.flow.checkout.v0.unions {
|
|
|
15868
16013
|
}
|
|
15869
16014
|
|
|
15870
16015
|
declare namespace io.flow.organization.onboarding.state.v0.enums {
|
|
16016
|
+
type MerchantDisabledReason = 'merchant_deactivated' | 'merchant_rejected';
|
|
15871
16017
|
type MerchantRejectedReason = 'merchant_ubo_is_pep' | 'merchant_catalog_is_unsupportable' | 'merchant_failed_kyb_review';
|
|
15872
|
-
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';
|
|
16018
|
+
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';
|
|
15873
16019
|
}
|
|
15874
16020
|
|
|
15875
16021
|
declare namespace io.flow.organization.onboarding.state.v0.models {
|
|
@@ -15896,6 +16042,11 @@ declare namespace io.flow.organization.onboarding.state.v0.models {
|
|
|
15896
16042
|
readonly 'reason': string;
|
|
15897
16043
|
}
|
|
15898
16044
|
|
|
16045
|
+
interface MerchantDisabled {
|
|
16046
|
+
readonly 'discriminator': 'merchant_disabled';
|
|
16047
|
+
readonly 'reason': io.flow.organization.onboarding.state.v0.enums.MerchantDisabledReason;
|
|
16048
|
+
}
|
|
16049
|
+
|
|
15899
16050
|
interface MerchantRejected {
|
|
15900
16051
|
readonly 'discriminator': 'merchant_rejected';
|
|
15901
16052
|
readonly 'reason': io.flow.organization.onboarding.state.v0.enums.MerchantRejectedReason;
|
|
@@ -15939,7 +16090,7 @@ declare namespace io.flow.organization.onboarding.state.v0.models {
|
|
|
15939
16090
|
}
|
|
15940
16091
|
|
|
15941
16092
|
declare namespace io.flow.organization.onboarding.state.v0.unions {
|
|
15942
|
-
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);
|
|
16093
|
+
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);
|
|
15943
16094
|
}
|
|
15944
16095
|
|
|
15945
16096
|
declare namespace io.flow.fraud.v0.enums {
|
|
@@ -16299,6 +16450,7 @@ declare namespace io.flow.billing.bank.account.v0.unions {
|
|
|
16299
16450
|
|
|
16300
16451
|
declare namespace io.flow.internal.v0.enums {
|
|
16301
16452
|
type AccountSettingLiabilitiesMethod = 'withholding' | 'transaction';
|
|
16453
|
+
type AccountStatus = 'active' | 'inactive';
|
|
16302
16454
|
type AccountType = 'channel' | 'organization';
|
|
16303
16455
|
type AddressConfigurationSettingProvinceCode = 'iso_3166_2' | 'name';
|
|
16304
16456
|
type AdjustmentTransactionType = 'adjustment' | 'reversal';
|
|
@@ -16309,7 +16461,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16309
16461
|
type BankPaymentPromiseCompletedMethod = 'credit' | 'time';
|
|
16310
16462
|
type BankPaymentStatusCode = 'scheduled' | 'sent' | 'failed';
|
|
16311
16463
|
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';
|
|
16312
|
-
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';
|
|
16464
|
+
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';
|
|
16313
16465
|
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';
|
|
16314
16466
|
type BillingStatementBatchFileKey = 'summary';
|
|
16315
16467
|
type BillingTransactionStatus = 'pending' | 'pending_proof' | 'posted';
|
|
@@ -16438,7 +16590,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16438
16590
|
type DutyTransactionType = 'adjustment' | 'reversal' | 'duty';
|
|
16439
16591
|
type EmptyAttribute = 'irrelevant';
|
|
16440
16592
|
type ErpFileType = 'vendor';
|
|
16441
|
-
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';
|
|
16593
|
+
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';
|
|
16442
16594
|
type ExperienceImportType = 'experience_with_settings';
|
|
16443
16595
|
type ExperienceOrderAction = 'submit' | 'refund_gift_cards';
|
|
16444
16596
|
type ExperienceOrderActionTrigger = 'zero_balance' | 'unsubmitted_order';
|
|
@@ -16486,6 +16638,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16486
16638
|
type MarketingGatewayPlatform = 'google' | 'facebook' | 'adroll' | 'aliexpress' | 'amazon' | 'bing' | 'criteo' | 'fruugo' | 'pinterest' | 'rakuten_japan' | 'wish' | 'snapchat' | 'stylight';
|
|
16487
16639
|
type MarketingGatewayProductStatus = 'approved' | 'not_approved' | 'pending' | 'not_found' | 'excluded';
|
|
16488
16640
|
type MarketingGatewaySchemaCompatibility = 'google' | 'facebook_primary' | 'facebook_country_override' | 'supplemental';
|
|
16641
|
+
type MatiasItemType = 'physical' | 'digital';
|
|
16489
16642
|
type MixedBagWeight = '0' | '1' | '2';
|
|
16490
16643
|
type NatureOfSale = 'consumer' | 'to_non_registered_business' | 'to_registered_business' | 'flash_title';
|
|
16491
16644
|
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';
|
|
@@ -16726,7 +16879,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
16726
16879
|
readonly 'merchant_of_record_fee'?: number;
|
|
16727
16880
|
readonly 'duty_guarantee_fee'?: number;
|
|
16728
16881
|
readonly 'transfer_fee'?: number;
|
|
16729
|
-
readonly '
|
|
16882
|
+
readonly 'negative_balance_fee'?: number;
|
|
16730
16883
|
readonly 'order_service_fee'?: io.flow.internal.v0.models.TieredFee;
|
|
16731
16884
|
readonly 'label_fees'?: io.flow.internal.v0.models.AccountSettingLabelFees;
|
|
16732
16885
|
readonly 'charge_label_cost_directly': boolean;
|
|
@@ -16814,6 +16967,12 @@ declare namespace io.flow.internal.v0.models {
|
|
|
16814
16967
|
readonly 'quantity': number;
|
|
16815
16968
|
}
|
|
16816
16969
|
|
|
16970
|
+
interface AdditionalImportTax {
|
|
16971
|
+
readonly 'name'?: string;
|
|
16972
|
+
readonly 'additional_import_tax_value'?: io.flow.common.v0.models.Money;
|
|
16973
|
+
readonly 'rate'?: number;
|
|
16974
|
+
}
|
|
16975
|
+
|
|
16817
16976
|
interface AddressConfigurationProvinceSetting {
|
|
16818
16977
|
readonly 'code': io.flow.internal.v0.enums.AddressConfigurationSettingProvinceCode;
|
|
16819
16978
|
}
|
|
@@ -17543,6 +17702,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17543
17702
|
readonly 'b2b_tax_remittance_days'?: number;
|
|
17544
17703
|
readonly 'mor_fee'?: number;
|
|
17545
17704
|
readonly 'duty_guarantee_fee'?: number;
|
|
17705
|
+
readonly 'negative_balance_fee'?: number;
|
|
17546
17706
|
readonly 'order_service_fee'?: io.flow.internal.v0.models.TieredFee;
|
|
17547
17707
|
readonly 'label_fee'?: io.flow.internal.v0.models.TieredFee;
|
|
17548
17708
|
}
|
|
@@ -17972,6 +18132,51 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17972
18132
|
readonly 'name': string;
|
|
17973
18133
|
}
|
|
17974
18134
|
|
|
18135
|
+
interface CalculationStampingLineItem {
|
|
18136
|
+
readonly 'id'?: string;
|
|
18137
|
+
readonly 'hs_code'?: string;
|
|
18138
|
+
readonly 'duty': io.flow.common.v0.models.Money;
|
|
18139
|
+
readonly 'duty_rate': number;
|
|
18140
|
+
readonly 'sales_tax': io.flow.common.v0.models.Money;
|
|
18141
|
+
readonly 'sales_tax_rate': number;
|
|
18142
|
+
readonly 'additional_tax'?: io.flow.common.v0.models.Money;
|
|
18143
|
+
readonly 'additional_tax_rate'?: number;
|
|
18144
|
+
readonly 'total': io.flow.common.v0.models.Money;
|
|
18145
|
+
}
|
|
18146
|
+
|
|
18147
|
+
interface CalculationStampingShippingLine {
|
|
18148
|
+
readonly 'first_ship_from'?: string;
|
|
18149
|
+
readonly 'duty'?: number;
|
|
18150
|
+
readonly 'duty_rate'?: number;
|
|
18151
|
+
readonly 'tax'?: number;
|
|
18152
|
+
readonly 'tax_rate'?: number;
|
|
18153
|
+
readonly 'price'?: number;
|
|
18154
|
+
readonly 'duty_rate_on_shipping'?: number;
|
|
18155
|
+
readonly 'tax_rate_on_shipping'?: number;
|
|
18156
|
+
readonly 'import_fee'?: number;
|
|
18157
|
+
}
|
|
18158
|
+
|
|
18159
|
+
interface CalculationStep {
|
|
18160
|
+
readonly 'discriminator': 'calculation_step';
|
|
18161
|
+
readonly 'primary_identifier': string;
|
|
18162
|
+
readonly 'line_item': io.flow.internal.v0.models.CalculationStampingLineItem[];
|
|
18163
|
+
readonly 'shipping_line_item': io.flow.internal.v0.models.CalculationStampingShippingLine;
|
|
18164
|
+
readonly 'total': io.flow.internal.v0.models.CalculationTotal;
|
|
18165
|
+
readonly 'explanation'?: string;
|
|
18166
|
+
}
|
|
18167
|
+
|
|
18168
|
+
interface CalculationTotal {
|
|
18169
|
+
readonly 'customs_value_name': string;
|
|
18170
|
+
readonly 'customs_value_amount': io.flow.common.v0.models.Money;
|
|
18171
|
+
readonly 'additional_import_included'?: boolean;
|
|
18172
|
+
readonly 'additional_import_value'?: io.flow.common.v0.models.Money;
|
|
18173
|
+
readonly 'duty': io.flow.common.v0.models.Money;
|
|
18174
|
+
readonly 'sales_tax': io.flow.common.v0.models.Money;
|
|
18175
|
+
readonly 'additional_tax_import_included': boolean;
|
|
18176
|
+
readonly 'additional_tax'?: io.flow.common.v0.models.Money;
|
|
18177
|
+
readonly 'additional_import_tax'?: io.flow.internal.v0.models.AdditionalImportTax[];
|
|
18178
|
+
}
|
|
18179
|
+
|
|
17975
18180
|
interface CalculatorDtcePostBody {
|
|
17976
18181
|
readonly 'products': io.flow.internal.v0.models.CalculatorDtceProduct[];
|
|
17977
18182
|
readonly 'countryCodeFrom': string;
|
|
@@ -18298,6 +18503,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18298
18503
|
readonly 'channel': io.flow.common.v0.models.ChannelReference;
|
|
18299
18504
|
readonly 'id': string;
|
|
18300
18505
|
readonly 'key'?: string;
|
|
18506
|
+
readonly 'status': io.flow.internal.v0.enums.AccountStatus;
|
|
18301
18507
|
readonly 'origin'?: io.flow.internal.v0.models.AccountOrigin;
|
|
18302
18508
|
readonly 'currency': string;
|
|
18303
18509
|
readonly 'updated_at': string;
|
|
@@ -18469,6 +18675,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18469
18675
|
readonly 'tracking_numbers'?: string[];
|
|
18470
18676
|
readonly 'carrier'?: io.flow.reference.v0.models.CarrierService;
|
|
18471
18677
|
readonly 'duty_paid': boolean;
|
|
18678
|
+
readonly 'shop_id'?: string;
|
|
18472
18679
|
}
|
|
18473
18680
|
|
|
18474
18681
|
interface ChannelOrderAcceptance {
|
|
@@ -18478,6 +18685,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18478
18685
|
readonly 'channel_id': string;
|
|
18479
18686
|
readonly 'external_order_reference': string;
|
|
18480
18687
|
readonly 'payment_request_id'?: string;
|
|
18688
|
+
readonly 'order_edit_payment_request_ids'?: string[];
|
|
18481
18689
|
readonly 'status': io.flow.internal.v0.enums.ChannelOrderAcceptanceStatus;
|
|
18482
18690
|
readonly 'reasons': io.flow.internal.v0.models.ChannelOrderAcceptanceReason[];
|
|
18483
18691
|
readonly 'next_action_from'?: io.flow.internal.v0.enums.ChannelOrderAcceptanceNextActionFrom;
|
|
@@ -21029,6 +21237,12 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21029
21237
|
readonly 'invoice': io.flow.internal.v0.models.CommercialInvoiceInternal;
|
|
21030
21238
|
}
|
|
21031
21239
|
|
|
21240
|
+
interface CommercialInvoiceSummary {
|
|
21241
|
+
readonly 'id': string;
|
|
21242
|
+
readonly 'label_id': string;
|
|
21243
|
+
readonly 'line_items': io.flow.internal.v0.models.InvoiceLineItem[];
|
|
21244
|
+
}
|
|
21245
|
+
|
|
21032
21246
|
interface CompanyReference {
|
|
21033
21247
|
readonly 'id': string;
|
|
21034
21248
|
}
|
|
@@ -21944,6 +22158,9 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21944
22158
|
readonly 'bank_code': string;
|
|
21945
22159
|
readonly 'id': string;
|
|
21946
22160
|
readonly 'tax_code'?: string;
|
|
22161
|
+
readonly 'tax_code_2'?: string;
|
|
22162
|
+
readonly 'debit_entry_code'?: string;
|
|
22163
|
+
readonly 'credit_entry_code'?: string;
|
|
21947
22164
|
readonly 'vat_flag'?: string;
|
|
21948
22165
|
readonly 'w_tax_percent'?: string;
|
|
21949
22166
|
readonly 'iban'?: string;
|
|
@@ -21991,6 +22208,9 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21991
22208
|
readonly 'id': string;
|
|
21992
22209
|
readonly 'acc_des'?: string;
|
|
21993
22210
|
readonly 'tax_code'?: string;
|
|
22211
|
+
readonly 'tax_code_2'?: string;
|
|
22212
|
+
readonly 'debit_entry_code'?: string;
|
|
22213
|
+
readonly 'credit_entry_code'?: string;
|
|
21994
22214
|
readonly 'vat_flag'?: string;
|
|
21995
22215
|
readonly 'country_name'?: string;
|
|
21996
22216
|
readonly 'w_tax_percent'?: string;
|
|
@@ -22607,6 +22827,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22607
22827
|
readonly 'fx'?: io.flow.internal.v0.models.Fee;
|
|
22608
22828
|
readonly 'duty_guarantee'?: io.flow.internal.v0.models.Fee;
|
|
22609
22829
|
readonly 'transfer'?: io.flow.internal.v0.models.Fee;
|
|
22830
|
+
readonly 'negative_balance'?: io.flow.internal.v0.models.Fee;
|
|
22610
22831
|
}
|
|
22611
22832
|
|
|
22612
22833
|
interface FinanceBankAccount {
|
|
@@ -22749,6 +22970,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22749
22970
|
readonly 'source': io.flow.internal.v0.models.AccountSource;
|
|
22750
22971
|
readonly 'id': string;
|
|
22751
22972
|
readonly 'key'?: string;
|
|
22973
|
+
readonly 'status': io.flow.internal.v0.enums.AccountStatus;
|
|
22752
22974
|
readonly 'origin'?: io.flow.internal.v0.models.AccountOrigin;
|
|
22753
22975
|
readonly 'currency': string;
|
|
22754
22976
|
readonly 'updated_at': string;
|
|
@@ -22763,6 +22985,18 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22763
22985
|
readonly 'created_at': string;
|
|
22764
22986
|
}
|
|
22765
22987
|
|
|
22988
|
+
interface FlowAccountStatusForm {
|
|
22989
|
+
readonly 'status': io.flow.internal.v0.enums.AccountStatus;
|
|
22990
|
+
}
|
|
22991
|
+
|
|
22992
|
+
interface FlowBillingStatement {
|
|
22993
|
+
readonly 'id': string;
|
|
22994
|
+
readonly 'account': io.flow.billing.v0.models.AccountReference;
|
|
22995
|
+
readonly 'period': io.flow.common.v0.models.DatetimeRange;
|
|
22996
|
+
readonly 'totals': io.flow.internal.v0.models.BillingStatementTotals;
|
|
22997
|
+
readonly 'attachments': io.flow.internal.v0.models.BillingStatementAttachment[];
|
|
22998
|
+
}
|
|
22999
|
+
|
|
22766
23000
|
interface FlowChannelOrganization {
|
|
22767
23001
|
readonly 'placeholder'?: string;
|
|
22768
23002
|
}
|
|
@@ -24588,6 +24822,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
24588
24822
|
readonly 'number': string;
|
|
24589
24823
|
readonly 'fulfillment_method': io.flow.catalog.v0.enums.FulfillmentMethodValue;
|
|
24590
24824
|
readonly 'country_of_origin'?: string;
|
|
24825
|
+
readonly 'tarriff_code'?: string;
|
|
24591
24826
|
readonly 'inferred'?: boolean;
|
|
24592
24827
|
}
|
|
24593
24828
|
|
|
@@ -25559,6 +25794,37 @@ declare namespace io.flow.internal.v0.models {
|
|
|
25559
25794
|
readonly 'flow_authorization'?: io.flow.payment.v0.unions.Authorization;
|
|
25560
25795
|
}
|
|
25561
25796
|
|
|
25797
|
+
interface MatiasItem {
|
|
25798
|
+
readonly 'id': string;
|
|
25799
|
+
readonly 'number': string;
|
|
25800
|
+
readonly 'amount': io.flow.common.v0.models.Price;
|
|
25801
|
+
readonly 'description'?: string;
|
|
25802
|
+
readonly 'type': io.flow.internal.v0.enums.MatiasItemType;
|
|
25803
|
+
readonly 'added_on': string;
|
|
25804
|
+
}
|
|
25805
|
+
|
|
25806
|
+
interface MatiasItemDeleted {
|
|
25807
|
+
readonly 'discriminator': 'matias_item_deleted';
|
|
25808
|
+
readonly 'event_id': string;
|
|
25809
|
+
readonly 'timestamp': string;
|
|
25810
|
+
readonly 'id': string;
|
|
25811
|
+
}
|
|
25812
|
+
|
|
25813
|
+
interface MatiasItemForm {
|
|
25814
|
+
readonly 'number': string;
|
|
25815
|
+
readonly 'amount': io.flow.common.v0.models.Price;
|
|
25816
|
+
readonly 'description'?: string;
|
|
25817
|
+
readonly 'type': io.flow.internal.v0.enums.MatiasItemType;
|
|
25818
|
+
readonly 'added_on': string;
|
|
25819
|
+
}
|
|
25820
|
+
|
|
25821
|
+
interface MatiasItemUpserted {
|
|
25822
|
+
readonly 'discriminator': 'matias_item_upserted';
|
|
25823
|
+
readonly 'event_id': string;
|
|
25824
|
+
readonly 'timestamp': string;
|
|
25825
|
+
readonly 'item': io.flow.internal.v0.models.MatiasItem;
|
|
25826
|
+
}
|
|
25827
|
+
|
|
25562
25828
|
interface Merchant {
|
|
25563
25829
|
readonly 'id': string;
|
|
25564
25830
|
readonly 'account': io.flow.internal.v0.models.AccountReference;
|
|
@@ -25678,6 +25944,11 @@ declare namespace io.flow.internal.v0.models {
|
|
|
25678
25944
|
readonly 'merchant': io.flow.internal.v0.models.Merchant;
|
|
25679
25945
|
}
|
|
25680
25946
|
|
|
25947
|
+
interface MessageStamp {
|
|
25948
|
+
readonly 'discriminator': 'message_stamp';
|
|
25949
|
+
readonly 'message': string;
|
|
25950
|
+
}
|
|
25951
|
+
|
|
25681
25952
|
interface MetadataProposition {
|
|
25682
25953
|
readonly 'shipping_method': io.flow.internal.v0.models.ShippingMethodReference;
|
|
25683
25954
|
readonly 'name': string;
|
|
@@ -26161,6 +26432,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
26161
26432
|
readonly 'organization': io.flow.common.v0.models.OrganizationReference;
|
|
26162
26433
|
readonly 'id': string;
|
|
26163
26434
|
readonly 'key'?: string;
|
|
26435
|
+
readonly 'status': io.flow.internal.v0.enums.AccountStatus;
|
|
26164
26436
|
readonly 'origin'?: io.flow.internal.v0.models.AccountOrigin;
|
|
26165
26437
|
readonly 'currency': string;
|
|
26166
26438
|
readonly 'updated_at': string;
|
|
@@ -30446,6 +30718,7 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
30446
30718
|
type AuthorizedOrderCharge = (io.flow.internal.v0.models.AuthorizedShippingCharge);
|
|
30447
30719
|
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);
|
|
30448
30720
|
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);
|
|
30721
|
+
type CalculatorStamp = (io.flow.internal.v0.models.MessageStamp | io.flow.internal.v0.models.CalculationStep);
|
|
30449
30722
|
type CarrierChargeForm = (io.flow.internal.v0.models.CarrierChargeFormLabel | io.flow.internal.v0.models.CarrierChargeFormOther);
|
|
30450
30723
|
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);
|
|
30451
30724
|
type ChannelRateMetadata = (io.flow.internal.v0.models.ChannelRateMetadataIdentity | io.flow.internal.v0.models.ChannelRateMetadataRate);
|
|
@@ -30544,7 +30817,7 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
30544
30817
|
type DiscountRequestOfferForm = (io.flow.internal.v0.models.DiscountRequestOfferFixedAmountForm);
|
|
30545
30818
|
type DisputeDetails = (io.flow.internal.v0.models.DisputeDetailsAdyen | io.flow.internal.v0.models.DisputeDetailsPaypal);
|
|
30546
30819
|
type DutyExpression = (io.flow.internal.v0.models.DutyCompoundExpression | io.flow.internal.v0.models.DutySimpleExpression);
|
|
30547
|
-
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);
|
|
30820
|
+
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);
|
|
30548
30821
|
type Experiment = (io.flow.internal.v0.models.ExperienceExperiment | io.flow.internal.v0.models.FeatureExperiment);
|
|
30549
30822
|
type ExportSchedule = (io.flow.internal.v0.models.ExportScheduleDaily | io.flow.internal.v0.models.ExportScheduleRepeated);
|
|
30550
30823
|
type FeatureDefaultValue = (io.flow.internal.v0.models.BooleanFeatureDefaultValue | io.flow.internal.v0.models.StringFeatureDefaultValue);
|
|
@@ -30608,6 +30881,7 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
30608
30881
|
}
|
|
30609
30882
|
|
|
30610
30883
|
export const accountSettingLiabilitiesMethod: PropTypes.Requireable<io.flow.internal.v0.enums.AccountSettingLiabilitiesMethod>;
|
|
30884
|
+
export const accountStatus: PropTypes.Requireable<io.flow.internal.v0.enums.AccountStatus>;
|
|
30611
30885
|
export const accountType: PropTypes.Requireable<io.flow.internal.v0.enums.AccountType>;
|
|
30612
30886
|
export const addressConfigurationSettingProvinceCode: PropTypes.Requireable<io.flow.internal.v0.enums.AddressConfigurationSettingProvinceCode>;
|
|
30613
30887
|
export const adjustmentTransactionType: PropTypes.Requireable<io.flow.internal.v0.enums.AdjustmentTransactionType>;
|
|
@@ -30795,6 +31069,7 @@ export const marketingGatewayFeedState: PropTypes.Requireable<io.flow.internal.v
|
|
|
30795
31069
|
export const marketingGatewayPlatform: PropTypes.Requireable<io.flow.internal.v0.enums.MarketingGatewayPlatform>;
|
|
30796
31070
|
export const marketingGatewayProductStatus: PropTypes.Requireable<io.flow.internal.v0.enums.MarketingGatewayProductStatus>;
|
|
30797
31071
|
export const marketingGatewaySchemaCompatibility: PropTypes.Requireable<io.flow.internal.v0.enums.MarketingGatewaySchemaCompatibility>;
|
|
31072
|
+
export const matiasItemType: PropTypes.Requireable<io.flow.internal.v0.enums.MatiasItemType>;
|
|
30798
31073
|
export const mixedBagWeight: PropTypes.Requireable<io.flow.internal.v0.enums.MixedBagWeight>;
|
|
30799
31074
|
export const natureOfSale: PropTypes.Requireable<io.flow.internal.v0.enums.NatureOfSale>;
|
|
30800
31075
|
export const noLiabilityReasonCode: PropTypes.Requireable<io.flow.internal.v0.enums.NoLiabilityReasonCode>;
|
|
@@ -30923,6 +31198,7 @@ export const accountTransactionsExportRequest: PropTypes.Requireable<io.flow.int
|
|
|
30923
31198
|
export const accountUpserted: PropTypes.Requireable<io.flow.internal.v0.models.AccountUpserted>;
|
|
30924
31199
|
export const accountUpsertedV2: PropTypes.Requireable<io.flow.internal.v0.models.AccountUpsertedV2>;
|
|
30925
31200
|
export const actionQuantity: PropTypes.Requireable<io.flow.internal.v0.models.ActionQuantity>;
|
|
31201
|
+
export const additionalImportTax: PropTypes.Requireable<io.flow.internal.v0.models.AdditionalImportTax>;
|
|
30926
31202
|
export const addressConfigurationProvinceSetting: PropTypes.Requireable<io.flow.internal.v0.models.AddressConfigurationProvinceSetting>;
|
|
30927
31203
|
export const addressConfigurationSetting: PropTypes.Requireable<io.flow.internal.v0.models.AddressConfigurationSetting>;
|
|
30928
31204
|
export const addressConfigurationSettingForm: PropTypes.Requireable<io.flow.internal.v0.models.AddressConfigurationSettingForm>;
|
|
@@ -31090,6 +31366,10 @@ export const browserBundlePaymentMethods: PropTypes.Requireable<io.flow.internal
|
|
|
31090
31366
|
export const bulkClassificationAction: PropTypes.Requireable<io.flow.internal.v0.models.BulkClassificationAction>;
|
|
31091
31367
|
export const byRuleSnapshot: PropTypes.Requireable<io.flow.internal.v0.models.ByRuleSnapshot>;
|
|
31092
31368
|
export const calculatedTaxAmount: PropTypes.Requireable<io.flow.internal.v0.models.CalculatedTaxAmount>;
|
|
31369
|
+
export const calculationStampingLineItem: PropTypes.Requireable<io.flow.internal.v0.models.CalculationStampingLineItem>;
|
|
31370
|
+
export const calculationStampingShippingLine: PropTypes.Requireable<io.flow.internal.v0.models.CalculationStampingShippingLine>;
|
|
31371
|
+
export const calculationStep: PropTypes.Requireable<io.flow.internal.v0.models.CalculationStep>;
|
|
31372
|
+
export const calculationTotal: PropTypes.Requireable<io.flow.internal.v0.models.CalculationTotal>;
|
|
31093
31373
|
export const calculatorDtcePostBody: PropTypes.Requireable<io.flow.internal.v0.models.CalculatorDtcePostBody>;
|
|
31094
31374
|
export const calculatorDtceProduct: PropTypes.Requireable<io.flow.internal.v0.models.CalculatorDtceProduct>;
|
|
31095
31375
|
export const calculatorOrganizationSettings: PropTypes.Requireable<io.flow.internal.v0.models.CalculatorOrganizationSettings>;
|
|
@@ -31588,6 +31868,7 @@ export const commercialInvoiceComparison: PropTypes.Requireable<io.flow.internal
|
|
|
31588
31868
|
export const commercialInvoiceInternal: PropTypes.Requireable<io.flow.internal.v0.models.CommercialInvoiceInternal>;
|
|
31589
31869
|
export const commercialInvoiceInternalDeleted: PropTypes.Requireable<io.flow.internal.v0.models.CommercialInvoiceInternalDeleted>;
|
|
31590
31870
|
export const commercialInvoiceInternalUpserted: PropTypes.Requireable<io.flow.internal.v0.models.CommercialInvoiceInternalUpserted>;
|
|
31871
|
+
export const commercialInvoiceSummary: PropTypes.Requireable<io.flow.internal.v0.models.CommercialInvoiceSummary>;
|
|
31591
31872
|
export const companyReference: PropTypes.Requireable<io.flow.internal.v0.models.CompanyReference>;
|
|
31592
31873
|
export const compliance: PropTypes.Requireable<io.flow.internal.v0.models.Compliance>;
|
|
31593
31874
|
export const components: PropTypes.Requireable<io.flow.internal.v0.models.Components>;
|
|
@@ -31810,6 +32091,8 @@ export const fiservMerchant: PropTypes.Requireable<io.flow.internal.v0.models.Fi
|
|
|
31810
32091
|
export const fiservMerchantModificationForm: PropTypes.Requireable<io.flow.internal.v0.models.FiservMerchantModificationForm>;
|
|
31811
32092
|
export const fiservMerchantPutForm: PropTypes.Requireable<io.flow.internal.v0.models.FiservMerchantPutForm>;
|
|
31812
32093
|
export const flowAccount: PropTypes.Requireable<io.flow.internal.v0.models.FlowAccount>;
|
|
32094
|
+
export const flowAccountStatusForm: PropTypes.Requireable<io.flow.internal.v0.models.FlowAccountStatusForm>;
|
|
32095
|
+
export const flowBillingStatement: PropTypes.Requireable<io.flow.internal.v0.models.FlowBillingStatement>;
|
|
31813
32096
|
export const flowChannelOrganization: PropTypes.Requireable<io.flow.internal.v0.models.FlowChannelOrganization>;
|
|
31814
32097
|
export const flowLabProject: PropTypes.Requireable<io.flow.internal.v0.models.FlowLabProject>;
|
|
31815
32098
|
export const flowLabProjectPostForm: PropTypes.Requireable<io.flow.internal.v0.models.FlowLabProjectPostForm>;
|
|
@@ -32147,6 +32430,10 @@ export const marketingGatewayProductDatasourceSummary: PropTypes.Requireable<io.
|
|
|
32147
32430
|
export const marketingGatewaySchemaSummary: PropTypes.Requireable<io.flow.internal.v0.models.MarketingGatewaySchemaSummary>;
|
|
32148
32431
|
export const marketingGatewaySupportedChannelDetails: PropTypes.Requireable<io.flow.internal.v0.models.MarketingGatewaySupportedChannelDetails>;
|
|
32149
32432
|
export const marketsOrder: PropTypes.Requireable<io.flow.internal.v0.models.MarketsOrder>;
|
|
32433
|
+
export const matiasItem: PropTypes.Requireable<io.flow.internal.v0.models.MatiasItem>;
|
|
32434
|
+
export const matiasItemDeleted: PropTypes.Requireable<io.flow.internal.v0.models.MatiasItemDeleted>;
|
|
32435
|
+
export const matiasItemForm: PropTypes.Requireable<io.flow.internal.v0.models.MatiasItemForm>;
|
|
32436
|
+
export const matiasItemUpserted: PropTypes.Requireable<io.flow.internal.v0.models.MatiasItemUpserted>;
|
|
32150
32437
|
export const merchant: PropTypes.Requireable<io.flow.internal.v0.models.Merchant>;
|
|
32151
32438
|
export const merchantApplicationSummaries: PropTypes.Requireable<io.flow.internal.v0.models.MerchantApplicationSummaries>;
|
|
32152
32439
|
export const merchantApplicationSummary: PropTypes.Requireable<io.flow.internal.v0.models.MerchantApplicationSummary>;
|
|
@@ -32162,6 +32449,7 @@ export const merchantSubsidies: PropTypes.Requireable<io.flow.internal.v0.models
|
|
|
32162
32449
|
export const merchantSummary: PropTypes.Requireable<io.flow.internal.v0.models.MerchantSummary>;
|
|
32163
32450
|
export const merchantTransactions: PropTypes.Requireable<io.flow.internal.v0.models.MerchantTransactions>;
|
|
32164
32451
|
export const merchantUpserted: PropTypes.Requireable<io.flow.internal.v0.models.MerchantUpserted>;
|
|
32452
|
+
export const messageStamp: PropTypes.Requireable<io.flow.internal.v0.models.MessageStamp>;
|
|
32165
32453
|
export const metadataProposition: PropTypes.Requireable<io.flow.internal.v0.models.MetadataProposition>;
|
|
32166
32454
|
export const metadataRatecard: PropTypes.Requireable<io.flow.internal.v0.models.MetadataRatecard>;
|
|
32167
32455
|
export const nextBillingStatement: PropTypes.Requireable<io.flow.internal.v0.models.NextBillingStatement>;
|
|
@@ -32815,6 +33103,7 @@ export const authorizationPayload: PropTypes.Requireable<io.flow.internal.v0.uni
|
|
|
32815
33103
|
export const authorizedOrderCharge: PropTypes.Requireable<io.flow.internal.v0.unions.AuthorizedOrderCharge>;
|
|
32816
33104
|
export const blazeConsumerMessage: PropTypes.Requireable<io.flow.internal.v0.unions.BlazeConsumerMessage>;
|
|
32817
33105
|
export const blazeProviderMessage: PropTypes.Requireable<io.flow.internal.v0.unions.BlazeProviderMessage>;
|
|
33106
|
+
export const calculatorStamp: PropTypes.Requireable<io.flow.internal.v0.unions.CalculatorStamp>;
|
|
32818
33107
|
export const carrierChargeForm: PropTypes.Requireable<io.flow.internal.v0.unions.CarrierChargeForm>;
|
|
32819
33108
|
export const carrierCredentials: PropTypes.Requireable<io.flow.internal.v0.unions.CarrierCredentials>;
|
|
32820
33109
|
export const channelRateMetadata: PropTypes.Requireable<io.flow.internal.v0.unions.ChannelRateMetadata>;
|