@flowio/api-internal-prop-types 9.24.88 → 9.24.90
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/api-internal.d.ts +476 -103
- package/lib/api-internal.js +1 -1
- package/package.json +2 -2
- package/src/api-internal.d.ts +476 -103
- package/src/api-internal.js +690 -246
package/lib/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
|
|
|
@@ -310,6 +311,11 @@ declare namespace io.flow.billing.accounting.v0.models {
|
|
|
310
311
|
readonly 'total': number;
|
|
311
312
|
}
|
|
312
313
|
|
|
314
|
+
interface OrderReference {
|
|
315
|
+
readonly 'organization': io.flow.common.v0.models.OrganizationReference;
|
|
316
|
+
readonly 'number': string;
|
|
317
|
+
}
|
|
318
|
+
|
|
313
319
|
interface OrderSummary {
|
|
314
320
|
readonly 'id': string;
|
|
315
321
|
readonly 'organization': io.flow.common.v0.models.OrganizationReference;
|
|
@@ -320,6 +326,16 @@ declare namespace io.flow.billing.accounting.v0.models {
|
|
|
320
326
|
readonly 'currency': string;
|
|
321
327
|
}
|
|
322
328
|
|
|
329
|
+
interface PendingOrder {
|
|
330
|
+
readonly 'id': string;
|
|
331
|
+
readonly 'order': io.flow.billing.accounting.v0.models.OrderSummary;
|
|
332
|
+
readonly 'shopper': io.flow.billing.accounting.v0.models.ShopperSummary;
|
|
333
|
+
readonly 'merchant': io.flow.billing.accounting.v0.models.MerchantSummary;
|
|
334
|
+
readonly 'remittance': io.flow.billing.accounting.v0.models.RemittanceResponsibility;
|
|
335
|
+
readonly 'sequence_number': number;
|
|
336
|
+
readonly 'posting_cutoff': string;
|
|
337
|
+
}
|
|
338
|
+
|
|
323
339
|
interface RemittanceResponsibility {
|
|
324
340
|
readonly 'tax': io.flow.billing.internal.v0.enums.ResponsibleParty;
|
|
325
341
|
readonly 'duty': io.flow.billing.internal.v0.enums.ResponsibleParty;
|
|
@@ -329,8 +345,8 @@ declare namespace io.flow.billing.accounting.v0.models {
|
|
|
329
345
|
readonly 'id': string;
|
|
330
346
|
readonly 'order': io.flow.billing.accounting.v0.models.OrderSummary;
|
|
331
347
|
readonly 'shopper': io.flow.billing.accounting.v0.models.ShopperSummary;
|
|
332
|
-
readonly 'remittance': io.flow.billing.accounting.v0.models.RemittanceResponsibility;
|
|
333
348
|
readonly 'merchant': io.flow.billing.accounting.v0.models.MerchantSummary;
|
|
349
|
+
readonly 'remittance': io.flow.billing.accounting.v0.models.RemittanceResponsibility;
|
|
334
350
|
readonly 'sequence_number': number;
|
|
335
351
|
readonly 'posting_cutoff': string;
|
|
336
352
|
readonly 'trigger': io.flow.billing.accounting.v0.unions.ReturnTrigger;
|
|
@@ -2341,6 +2357,8 @@ declare namespace io.flow.billing.csv.v0.models {
|
|
|
2341
2357
|
readonly 'fx_fee_description'?: string;
|
|
2342
2358
|
readonly 'duty_guarantee_fee'?: number;
|
|
2343
2359
|
readonly 'duty_guarantee_fee_description'?: string;
|
|
2360
|
+
readonly 'negative_balance_fee'?: number;
|
|
2361
|
+
readonly 'negative_balance_fee_description'?: string;
|
|
2344
2362
|
}
|
|
2345
2363
|
|
|
2346
2364
|
interface BillingCsvProcessingTransactionDelivery {
|
|
@@ -2416,6 +2434,7 @@ declare namespace io.flow.billing.csv.v0.models {
|
|
|
2416
2434
|
readonly 'processing': number;
|
|
2417
2435
|
readonly 'rate_lock': number;
|
|
2418
2436
|
readonly 'transfer': number;
|
|
2437
|
+
readonly 'negative_balance': number;
|
|
2419
2438
|
}
|
|
2420
2439
|
|
|
2421
2440
|
interface BillingCsvTransactionIdentifiers {
|
|
@@ -2436,6 +2455,7 @@ declare namespace io.flow.billing.csv.v0.models {
|
|
|
2436
2455
|
readonly 'label_created_at': string;
|
|
2437
2456
|
readonly 'carrier_id': string;
|
|
2438
2457
|
readonly 'carrier_tracking_number': string;
|
|
2458
|
+
readonly 'revenue_share_percentage': number;
|
|
2439
2459
|
readonly 'outbound_transaction_id'?: string;
|
|
2440
2460
|
}
|
|
2441
2461
|
|
|
@@ -2560,7 +2580,7 @@ declare namespace io.flow.stripe.v0.enums {
|
|
|
2560
2580
|
type OrderItemType = 'sku' | 'tax' | 'shipping' | 'discount';
|
|
2561
2581
|
type PaymentIntentStatus = 'canceled' | 'processing' | 'requires_action' | 'requires_capture' | 'requires_confirmation' | 'requires_payment_method' | 'succeeded';
|
|
2562
2582
|
type PaymentMethodCategoryKlarna = 'pay_later' | 'pay_now' | 'pay_with_financing' | 'pay_in_installments';
|
|
2563
|
-
type PaymentMethodType = 'card' | 'card_present';
|
|
2583
|
+
type PaymentMethodType = 'card' | 'card_present' | 'klarna';
|
|
2564
2584
|
type PaymentOutcomeType = 'authorized' | 'manual_review' | 'issuer_declined' | 'blocked' | 'invalid';
|
|
2565
2585
|
type PaymentStatus = 'succeeded' | 'pending' | 'failed';
|
|
2566
2586
|
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 +2838,12 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
2818
2838
|
readonly 'marketplace_seller_info'?: io.flow.stripe.v0.models.KlarnaMarketplaceSellerInfo[];
|
|
2819
2839
|
}
|
|
2820
2840
|
|
|
2841
|
+
interface KlarnaDobForm {
|
|
2842
|
+
readonly 'day': number;
|
|
2843
|
+
readonly 'month': number;
|
|
2844
|
+
readonly 'year': number;
|
|
2845
|
+
}
|
|
2846
|
+
|
|
2821
2847
|
interface KlarnaMarketplaceSellerInfo {
|
|
2822
2848
|
readonly 'sub_merchant_id'?: string;
|
|
2823
2849
|
readonly 'product_category'?: string;
|
|
@@ -2827,6 +2853,12 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
2827
2853
|
readonly 'additional_owners'?: io.flow.stripe.v0.models.Owner[];
|
|
2828
2854
|
}
|
|
2829
2855
|
|
|
2856
|
+
interface MarketplaceSellerInfo {
|
|
2857
|
+
readonly 'name': string;
|
|
2858
|
+
readonly 'id'?: string;
|
|
2859
|
+
readonly 'product_category'?: string;
|
|
2860
|
+
}
|
|
2861
|
+
|
|
2830
2862
|
interface Masterpass {
|
|
2831
2863
|
readonly 'type': 'masterpass';
|
|
2832
2864
|
readonly 'masterpass': io.flow.stripe.v0.models.MasterpassInformation;
|
|
@@ -2915,6 +2947,10 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
2915
2947
|
readonly 'verified_phone'?: string;
|
|
2916
2948
|
}
|
|
2917
2949
|
|
|
2950
|
+
interface PaymentDetails {
|
|
2951
|
+
readonly 'marketplace_seller_info'?: io.flow.stripe.v0.models.MarketplaceSellerInfo;
|
|
2952
|
+
}
|
|
2953
|
+
|
|
2918
2954
|
interface PaymentIntent {
|
|
2919
2955
|
readonly 'id': string;
|
|
2920
2956
|
readonly 'object': string;
|
|
@@ -3039,6 +3075,7 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
3039
3075
|
readonly 'billing_details'?: io.flow.stripe.v0.models.PaymentMethodBillingDetails;
|
|
3040
3076
|
readonly 'card'?: io.flow.stripe.v0.models.PaymentMethodCardDetails;
|
|
3041
3077
|
readonly 'card_present'?: any/*object*/;
|
|
3078
|
+
readonly 'klarna'?: any/*object*/;
|
|
3042
3079
|
readonly 'created': number;
|
|
3043
3080
|
readonly 'customer'?: string;
|
|
3044
3081
|
readonly 'livemode': boolean;
|
|
@@ -3079,6 +3116,13 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
3079
3116
|
readonly 'card': io.flow.stripe.v0.models.PaymentMethodCardForm;
|
|
3080
3117
|
}
|
|
3081
3118
|
|
|
3119
|
+
interface PaymentMethodDataKlarna {
|
|
3120
|
+
readonly 'type': 'klarna';
|
|
3121
|
+
readonly 'billing_details'?: io.flow.stripe.v0.models.PaymentMethodBillingDetails;
|
|
3122
|
+
readonly 'metadata'?: any/*object*/;
|
|
3123
|
+
readonly 'klarna': io.flow.stripe.v0.models.PaymentMethodKlarnaForm;
|
|
3124
|
+
}
|
|
3125
|
+
|
|
3082
3126
|
interface PaymentMethodDetailsCard {
|
|
3083
3127
|
readonly 'type': 'card';
|
|
3084
3128
|
readonly 'card': io.flow.stripe.v0.models.PaymentMethodDetailsCardInformation;
|
|
@@ -3127,8 +3171,20 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
3127
3171
|
readonly 'card': io.flow.stripe.v0.models.PaymentMethodCardForm;
|
|
3128
3172
|
}
|
|
3129
3173
|
|
|
3174
|
+
interface PaymentMethodFormKlarna {
|
|
3175
|
+
readonly 'type': 'klarna';
|
|
3176
|
+
readonly 'billing_details'?: io.flow.stripe.v0.models.PaymentMethodBillingDetails;
|
|
3177
|
+
readonly 'metadata'?: any/*object*/;
|
|
3178
|
+
readonly 'klarna': io.flow.stripe.v0.models.PaymentMethodKlarnaForm;
|
|
3179
|
+
}
|
|
3180
|
+
|
|
3181
|
+
interface PaymentMethodKlarnaForm {
|
|
3182
|
+
readonly 'dob'?: io.flow.stripe.v0.models.KlarnaDobForm;
|
|
3183
|
+
}
|
|
3184
|
+
|
|
3130
3185
|
interface PaymentMethodOptions {
|
|
3131
3186
|
readonly 'card'?: io.flow.stripe.v0.models.PaymentMethodOptionsCard;
|
|
3187
|
+
readonly 'klarna'?: io.flow.stripe.v0.models.PaymentMethodOptionsKlarna;
|
|
3132
3188
|
}
|
|
3133
3189
|
|
|
3134
3190
|
interface PaymentMethodOptionsCard {
|
|
@@ -3148,6 +3204,21 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
3148
3204
|
|
|
3149
3205
|
interface PaymentMethodOptionsForm {
|
|
3150
3206
|
readonly 'card'?: io.flow.stripe.v0.models.PaymentMethodOptionsCardForm;
|
|
3207
|
+
readonly 'klarna'?: io.flow.stripe.v0.models.PaymentMethodOptionsKlarnaForm;
|
|
3208
|
+
}
|
|
3209
|
+
|
|
3210
|
+
interface PaymentMethodOptionsKlarna {
|
|
3211
|
+
readonly 'capture_method'?: io.flow.stripe.v0.enums.CaptureMethod;
|
|
3212
|
+
readonly 'preferred_locale'?: io.flow.stripe.v0.enums.PreferredLocaleKlarna;
|
|
3213
|
+
readonly 'setup_future_usage'?: io.flow.stripe.v0.enums.SetupFutureUsage;
|
|
3214
|
+
readonly 'payment_details'?: io.flow.stripe.v0.models.PaymentDetails;
|
|
3215
|
+
}
|
|
3216
|
+
|
|
3217
|
+
interface PaymentMethodOptionsKlarnaForm {
|
|
3218
|
+
readonly 'capture_method'?: io.flow.stripe.v0.enums.CaptureMethod;
|
|
3219
|
+
readonly 'preferred_locale'?: io.flow.stripe.v0.enums.PreferredLocaleKlarna;
|
|
3220
|
+
readonly 'setup_future_usage'?: io.flow.stripe.v0.enums.SetupFutureUsage;
|
|
3221
|
+
readonly 'payment_details'?: io.flow.stripe.v0.models.PaymentDetails;
|
|
3151
3222
|
}
|
|
3152
3223
|
|
|
3153
3224
|
interface PaymentOutcome {
|
|
@@ -3445,9 +3516,9 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
3445
3516
|
|
|
3446
3517
|
declare namespace io.flow.stripe.v0.unions {
|
|
3447
3518
|
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);
|
|
3519
|
+
type PaymentMethodData = (io.flow.stripe.v0.models.PaymentMethodDataCard | io.flow.stripe.v0.models.PaymentMethodDataKlarna);
|
|
3449
3520
|
type PaymentMethodDetails = (io.flow.stripe.v0.models.PaymentMethodDetailsCard | io.flow.stripe.v0.models.PaymentMethodDetailsKlarna);
|
|
3450
|
-
type PaymentMethodForm = (io.flow.stripe.v0.models.PaymentMethodFormCard);
|
|
3521
|
+
type PaymentMethodForm = (io.flow.stripe.v0.models.PaymentMethodFormCard | io.flow.stripe.v0.models.PaymentMethodFormKlarna);
|
|
3451
3522
|
}
|
|
3452
3523
|
|
|
3453
3524
|
declare namespace io.flow.customer.v0.enums {
|
|
@@ -3549,7 +3620,7 @@ declare namespace io.flow.label.v0.enums {
|
|
|
3549
3620
|
type Direction = 'outbound' | 'return';
|
|
3550
3621
|
type LabelRequestMethod = 'flow_web_sync' | 'channel_web_async' | 'direct_api_sync' | 'direct_api_async' | 'bridge_api_sync' | 'partner_api_sync' | 'notification_requiring_crossdock' | 'flow_simulation_sync' | 'autogenerated';
|
|
3551
3622
|
type LabelTriggerMethod = 'autogenerated' | 'on_demand';
|
|
3552
|
-
type PackageDimensionsSource = 'provided' | 'dimensions_estimated';
|
|
3623
|
+
type PackageDimensionsSource = 'provided' | 'item_dimensions_estimated' | 'dimensions_estimated' | 'default_item_dimensions_estimated';
|
|
3553
3624
|
type ShipmentRecipient = 'customer' | 'return' | 'crossdock';
|
|
3554
3625
|
type TrackingNumberType = 'flow' | 'carrier';
|
|
3555
3626
|
}
|
|
@@ -8015,6 +8086,7 @@ declare namespace io.flow.channel.internal.v0.models {
|
|
|
8015
8086
|
readonly 'channel_id': string;
|
|
8016
8087
|
readonly 'external_order_reference': string;
|
|
8017
8088
|
readonly 'payment_request_id'?: string;
|
|
8089
|
+
readonly 'order_edit_payment_request_ids'?: string[];
|
|
8018
8090
|
readonly 'status': io.flow.channel.internal.v0.enums.ChannelOrderAcceptanceStatus;
|
|
8019
8091
|
readonly 'reasons': io.flow.channel.internal.v0.models.ChannelOrderAcceptanceReason[];
|
|
8020
8092
|
readonly 'next_action_from'?: io.flow.channel.internal.v0.enums.ChannelOrderAcceptanceNextActionFrom;
|
|
@@ -8640,7 +8712,7 @@ declare namespace io.flow.billing.reporting.v0.enums {
|
|
|
8640
8712
|
type ReportStatus = 'created' | 'completed' | 'completed_no_records' | 'failed';
|
|
8641
8713
|
type ReportType = 'sales_record' | 'trueup_overview' | 'non_channel_payment_bank_account' | 'scheduled_payment';
|
|
8642
8714
|
type ReportingFulfillmentIsVirtual = 'all' | 'mixed' | 'none';
|
|
8643
|
-
type RevenueRecordType = 'sales' | 'refund';
|
|
8715
|
+
type RevenueRecordType = 'pending' | 'sales' | 'refund';
|
|
8644
8716
|
}
|
|
8645
8717
|
|
|
8646
8718
|
declare namespace io.flow.billing.reporting.v0.models {
|
|
@@ -11157,6 +11229,17 @@ declare namespace io.flow.payment.request.bundle.v0.models {
|
|
|
11157
11229
|
}
|
|
11158
11230
|
|
|
11159
11231
|
declare namespace io.flow.ratecard.v0.models {
|
|
11232
|
+
interface AdditionalHandlingServiceFee {
|
|
11233
|
+
readonly 'discriminator': 'additional_handling_service_fee';
|
|
11234
|
+
readonly 'length_girth_threshold'?: number;
|
|
11235
|
+
readonly 'length_threshold'?: number;
|
|
11236
|
+
readonly 'width_threshold'?: number;
|
|
11237
|
+
readonly 'dimensional_unit'?: io.flow.common.v0.enums.UnitOfMeasurement;
|
|
11238
|
+
readonly 'weight_threshold'?: number;
|
|
11239
|
+
readonly 'weight_unit'?: io.flow.common.v0.enums.UnitOfMeasurement;
|
|
11240
|
+
readonly 'amount': io.flow.common.v0.models.Money;
|
|
11241
|
+
}
|
|
11242
|
+
|
|
11160
11243
|
interface CrossdockRatecardFee {
|
|
11161
11244
|
readonly 'discriminator': 'crossdock_ratecard_fee';
|
|
11162
11245
|
readonly 'amount': io.flow.common.v0.models.Money;
|
|
@@ -11201,6 +11284,17 @@ declare namespace io.flow.ratecard.v0.models {
|
|
|
11201
11284
|
readonly 'ends_at'?: string;
|
|
11202
11285
|
}
|
|
11203
11286
|
|
|
11287
|
+
interface EeiFilingRatecardFee {
|
|
11288
|
+
readonly 'discriminator': 'eei_filing_ratecard_fee';
|
|
11289
|
+
readonly 'amount': io.flow.common.v0.models.Money;
|
|
11290
|
+
}
|
|
11291
|
+
|
|
11292
|
+
interface EeiFilingServiceFee {
|
|
11293
|
+
readonly 'discriminator': 'eei_filing_service_fee';
|
|
11294
|
+
readonly 'amount': io.flow.common.v0.models.Money;
|
|
11295
|
+
readonly 'value_threshold': io.flow.common.v0.models.Money;
|
|
11296
|
+
}
|
|
11297
|
+
|
|
11204
11298
|
interface EmergencySituationSurchargeRatecardFee {
|
|
11205
11299
|
readonly 'discriminator': 'emergency_situation_surcharge_ratecard_fee';
|
|
11206
11300
|
readonly 'amount': io.flow.common.v0.models.Money;
|
|
@@ -11226,6 +11320,31 @@ declare namespace io.flow.ratecard.v0.models {
|
|
|
11226
11320
|
readonly 'unit': io.flow.common.v0.enums.UnitOfMeasurement;
|
|
11227
11321
|
}
|
|
11228
11322
|
|
|
11323
|
+
interface FixedCurrencyConversionRatecardFee {
|
|
11324
|
+
readonly 'discriminator': 'fixed_currency_conversion_ratecard_fee';
|
|
11325
|
+
readonly 'amount': io.flow.common.v0.models.Money;
|
|
11326
|
+
}
|
|
11327
|
+
|
|
11328
|
+
interface FixedCurrencyConversionServiceFee {
|
|
11329
|
+
readonly 'discriminator': 'fixed_currency_conversion_service_fee';
|
|
11330
|
+
readonly 'conditions': io.flow.ratecard.v0.models.FixedFeeCondition[];
|
|
11331
|
+
}
|
|
11332
|
+
|
|
11333
|
+
interface FixedDdpRatecardFee {
|
|
11334
|
+
readonly 'discriminator': 'fixed_ddp_ratecard_fee';
|
|
11335
|
+
readonly 'amount': io.flow.common.v0.models.Money;
|
|
11336
|
+
}
|
|
11337
|
+
|
|
11338
|
+
interface FixedDdpServiceFee {
|
|
11339
|
+
readonly 'discriminator': 'fixed_ddp_service_fee';
|
|
11340
|
+
readonly 'conditions': io.flow.ratecard.v0.models.FixedFeeCondition[];
|
|
11341
|
+
}
|
|
11342
|
+
|
|
11343
|
+
interface FixedFeeCondition {
|
|
11344
|
+
readonly 'countries': string[];
|
|
11345
|
+
readonly 'amount': io.flow.common.v0.models.Money;
|
|
11346
|
+
}
|
|
11347
|
+
|
|
11229
11348
|
interface FuelSurchargeAmountByWeightServiceFee {
|
|
11230
11349
|
readonly 'discriminator': 'fuel_surcharge_amount_by_weight_service_fee';
|
|
11231
11350
|
readonly 'amount': io.flow.common.v0.models.Money;
|
|
@@ -11296,6 +11415,15 @@ declare namespace io.flow.ratecard.v0.models {
|
|
|
11296
11415
|
readonly 'ratecard': io.flow.ratecard.v0.models.RatecardSummary;
|
|
11297
11416
|
}
|
|
11298
11417
|
|
|
11418
|
+
interface LargePackageServiceFee {
|
|
11419
|
+
readonly 'discriminator': 'large_package_service_fee';
|
|
11420
|
+
readonly 'length_girth_threshold'?: number;
|
|
11421
|
+
readonly 'dimensional_unit'?: io.flow.common.v0.enums.UnitOfMeasurement;
|
|
11422
|
+
readonly 'weight_threshold'?: number;
|
|
11423
|
+
readonly 'weight_unit'?: io.flow.common.v0.enums.UnitOfMeasurement;
|
|
11424
|
+
readonly 'amount': io.flow.common.v0.models.Money;
|
|
11425
|
+
}
|
|
11426
|
+
|
|
11299
11427
|
interface OversizePieceSurchargeRatecardFee {
|
|
11300
11428
|
readonly 'discriminator': 'oversize_piece_surcharge_ratecard_fee';
|
|
11301
11429
|
readonly 'dimensional_threshold'?: number;
|
|
@@ -11547,6 +11675,12 @@ declare namespace io.flow.ratecard.v0.models {
|
|
|
11547
11675
|
readonly 'ratecard': io.flow.ratecard.v0.models.Ratecard;
|
|
11548
11676
|
}
|
|
11549
11677
|
|
|
11678
|
+
interface RemoteAreaByWeightServiceFee {
|
|
11679
|
+
readonly 'discriminator': 'remote_area_by_weight_service_fee';
|
|
11680
|
+
readonly 'amount': io.flow.common.v0.models.Money;
|
|
11681
|
+
readonly 'weight_unit': io.flow.common.v0.enums.UnitOfMeasurement;
|
|
11682
|
+
}
|
|
11683
|
+
|
|
11550
11684
|
interface RemoteAreaRatecardFee {
|
|
11551
11685
|
readonly 'discriminator': 'remote_area_ratecard_fee';
|
|
11552
11686
|
readonly 'amount': io.flow.common.v0.models.Money;
|
|
@@ -11562,6 +11696,17 @@ declare namespace io.flow.ratecard.v0.models {
|
|
|
11562
11696
|
readonly 'amount': number;
|
|
11563
11697
|
}
|
|
11564
11698
|
|
|
11699
|
+
interface SecurityRatecardFee {
|
|
11700
|
+
readonly 'discriminator': 'security_ratecard_fee';
|
|
11701
|
+
readonly 'amount': io.flow.common.v0.models.Money;
|
|
11702
|
+
}
|
|
11703
|
+
|
|
11704
|
+
interface SecurityServiceFee {
|
|
11705
|
+
readonly 'discriminator': 'security_service_fee';
|
|
11706
|
+
readonly 'amount': io.flow.common.v0.models.Money;
|
|
11707
|
+
readonly 'countries': string[];
|
|
11708
|
+
}
|
|
11709
|
+
|
|
11565
11710
|
interface ShipmentWindow {
|
|
11566
11711
|
readonly 'from': number;
|
|
11567
11712
|
readonly 'to': number;
|
|
@@ -11571,8 +11716,8 @@ declare namespace io.flow.ratecard.v0.models {
|
|
|
11571
11716
|
declare namespace io.flow.ratecard.v0.unions {
|
|
11572
11717
|
type FuelSurchargeRate = (io.flow.ratecard.v0.models.FuelSurchargePercent | io.flow.ratecard.v0.models.FuelSurchargeByWeight);
|
|
11573
11718
|
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);
|
|
11719
|
+
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);
|
|
11720
|
+
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
11721
|
}
|
|
11577
11722
|
|
|
11578
11723
|
declare namespace io.flow.token.v0.models {
|
|
@@ -12075,7 +12220,7 @@ declare namespace io.flow.price.v0.unions {
|
|
|
12075
12220
|
|
|
12076
12221
|
declare namespace io.flow.trueup.v0.enums {
|
|
12077
12222
|
type CarrierChargeReason = 'return_to_origin' | 'rejection' | 'other';
|
|
12078
|
-
type TrueupSurchargeType = 'fuel' | 'remote_area' | 'oversize' | 'duties_paid' | 'emergency' | 'peak' | 'address_correction';
|
|
12223
|
+
type TrueupSurchargeType = 'fuel' | 'remote_area' | 'oversize' | 'duties_paid' | 'emergency' | 'peak' | 'address_correction' | 'security' | 'eei_filing' | 'fixed_ddp' | 'fixed_currency_conversion';
|
|
12079
12224
|
}
|
|
12080
12225
|
|
|
12081
12226
|
declare namespace io.flow.trueup.v0.models {
|
|
@@ -13026,7 +13171,7 @@ declare namespace io.flow.inventory.v0.unions {
|
|
|
13026
13171
|
declare namespace io.flow.permission.v0.enums {
|
|
13027
13172
|
type AuthenticationTechnique = 'anonymous' | 'session' | 'token' | 'partner_token' | 'user';
|
|
13028
13173
|
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';
|
|
13174
|
+
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
13175
|
type PermittedHttpMethod = 'GET' | 'POST' | 'PUT' | 'DELETE' | 'PATCH';
|
|
13031
13176
|
}
|
|
13032
13177
|
|
|
@@ -13169,6 +13314,7 @@ declare namespace io.flow.item.v0.models {
|
|
|
13169
13314
|
}
|
|
13170
13315
|
|
|
13171
13316
|
declare namespace io.flow.billing.internal.v0.enums {
|
|
13317
|
+
type AccountPaymentHoldReason = 'fraudulent' | 'invalid_bank_account';
|
|
13172
13318
|
type AccountSettingLiabilitiesMethod = 'withholding' | 'transaction';
|
|
13173
13319
|
type AccountType = 'channel' | 'organization';
|
|
13174
13320
|
type AdjustmentTransactionType = 'adjustment' | 'reversal';
|
|
@@ -13176,10 +13322,9 @@ declare namespace io.flow.billing.internal.v0.enums {
|
|
|
13176
13322
|
type BankPaymentStatusCode = 'scheduled' | 'sent' | 'failed';
|
|
13177
13323
|
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';
|
|
13178
13324
|
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';
|
|
13179
|
-
type BillingStatementBatchFileKey = 'summary';
|
|
13180
13325
|
type BillingTransactionStatus = 'pending' | 'pending_proof' | 'posted';
|
|
13181
13326
|
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';
|
|
13327
|
+
type CarrierChargeTransactionType = 'adjustment' | 'reversal' | 'charge' | 'revenue_share';
|
|
13183
13328
|
type ChannelBilledTransactionType = 'adjustment' | 'reversal' | 'channel_initiated';
|
|
13184
13329
|
type ChannelTransactionType = 'adjustment' | 'reversal' | 'processing';
|
|
13185
13330
|
type DisputeTransactionType = 'adjustment' | 'dispute';
|
|
@@ -13232,6 +13377,17 @@ declare namespace io.flow.billing.internal.v0.models {
|
|
|
13232
13377
|
readonly 'country': string;
|
|
13233
13378
|
}
|
|
13234
13379
|
|
|
13380
|
+
interface AccountPaymentHold {
|
|
13381
|
+
readonly 'id': string;
|
|
13382
|
+
readonly 'account': io.flow.billing.internal.v0.models.SimpleAccountReference;
|
|
13383
|
+
readonly 'reason': io.flow.billing.internal.v0.enums.AccountPaymentHoldReason;
|
|
13384
|
+
}
|
|
13385
|
+
|
|
13386
|
+
interface AccountPaymentHoldForm {
|
|
13387
|
+
readonly 'account_id': string;
|
|
13388
|
+
readonly 'reason': io.flow.billing.internal.v0.enums.AccountPaymentHoldReason;
|
|
13389
|
+
}
|
|
13390
|
+
|
|
13235
13391
|
interface AccountProcessingRateForm {
|
|
13236
13392
|
readonly 'query': string;
|
|
13237
13393
|
readonly 'capture': number;
|
|
@@ -13270,7 +13426,7 @@ declare namespace io.flow.billing.internal.v0.models {
|
|
|
13270
13426
|
readonly 'merchant_of_record_fee'?: number;
|
|
13271
13427
|
readonly 'duty_guarantee_fee'?: number;
|
|
13272
13428
|
readonly 'transfer_fee'?: number;
|
|
13273
|
-
readonly '
|
|
13429
|
+
readonly 'negative_balance_fee'?: number;
|
|
13274
13430
|
readonly 'order_service_fee'?: io.flow.billing.internal.v0.models.TieredFee;
|
|
13275
13431
|
readonly 'label_fees'?: io.flow.billing.internal.v0.models.AccountSettingLabelFees;
|
|
13276
13432
|
readonly 'charge_label_cost_directly': boolean;
|
|
@@ -13455,6 +13611,7 @@ declare namespace io.flow.billing.internal.v0.models {
|
|
|
13455
13611
|
readonly 'b2b_tax_remittance_days'?: number;
|
|
13456
13612
|
readonly 'mor_fee'?: number;
|
|
13457
13613
|
readonly 'duty_guarantee_fee'?: number;
|
|
13614
|
+
readonly 'negative_balance_fee'?: number;
|
|
13458
13615
|
readonly 'order_service_fee'?: io.flow.billing.internal.v0.models.TieredFee;
|
|
13459
13616
|
readonly 'label_fee'?: io.flow.billing.internal.v0.models.TieredFee;
|
|
13460
13617
|
}
|
|
@@ -13465,20 +13622,6 @@ declare namespace io.flow.billing.internal.v0.models {
|
|
|
13465
13622
|
readonly 'url': string;
|
|
13466
13623
|
}
|
|
13467
13624
|
|
|
13468
|
-
interface BillingStatementBatch {
|
|
13469
|
-
readonly 'id': string;
|
|
13470
|
-
}
|
|
13471
|
-
|
|
13472
|
-
interface BillingStatementBatchReference {
|
|
13473
|
-
readonly 'id': string;
|
|
13474
|
-
}
|
|
13475
|
-
|
|
13476
|
-
interface BillingStatementBatchStatement {
|
|
13477
|
-
readonly 'id': string;
|
|
13478
|
-
readonly 'batch': io.flow.billing.internal.v0.models.BillingStatementBatchReference;
|
|
13479
|
-
readonly 'statement': io.flow.billing.internal.v0.models.BillingStatementReference;
|
|
13480
|
-
}
|
|
13481
|
-
|
|
13482
13625
|
interface BillingStatementReference {
|
|
13483
13626
|
readonly 'id': string;
|
|
13484
13627
|
}
|
|
@@ -13742,6 +13885,7 @@ declare namespace io.flow.billing.internal.v0.models {
|
|
|
13742
13885
|
readonly 'fx'?: io.flow.billing.internal.v0.models.Fee;
|
|
13743
13886
|
readonly 'duty_guarantee'?: io.flow.billing.internal.v0.models.Fee;
|
|
13744
13887
|
readonly 'transfer'?: io.flow.billing.internal.v0.models.Fee;
|
|
13888
|
+
readonly 'negative_balance'?: io.flow.billing.internal.v0.models.Fee;
|
|
13745
13889
|
}
|
|
13746
13890
|
|
|
13747
13891
|
interface FinanceBankAccount {
|
|
@@ -13782,6 +13926,14 @@ declare namespace io.flow.billing.internal.v0.models {
|
|
|
13782
13926
|
readonly 'created_at': string;
|
|
13783
13927
|
}
|
|
13784
13928
|
|
|
13929
|
+
interface FlowBillingStatement {
|
|
13930
|
+
readonly 'id': string;
|
|
13931
|
+
readonly 'account': io.flow.billing.v0.models.AccountReference;
|
|
13932
|
+
readonly 'period': io.flow.common.v0.models.DatetimeRange;
|
|
13933
|
+
readonly 'totals': io.flow.billing.internal.v0.models.BillingStatementTotals;
|
|
13934
|
+
readonly 'attachments': io.flow.billing.internal.v0.models.BillingStatementAttachment[];
|
|
13935
|
+
}
|
|
13936
|
+
|
|
13785
13937
|
interface FxFee {
|
|
13786
13938
|
readonly 'base': io.flow.common.v0.models.Money;
|
|
13787
13939
|
readonly 'local': io.flow.common.v0.models.Money;
|
|
@@ -15868,8 +16020,9 @@ declare namespace io.flow.checkout.v0.unions {
|
|
|
15868
16020
|
}
|
|
15869
16021
|
|
|
15870
16022
|
declare namespace io.flow.organization.onboarding.state.v0.enums {
|
|
16023
|
+
type MerchantDisabledReason = 'merchant_deactivated' | 'merchant_rejected';
|
|
15871
16024
|
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';
|
|
16025
|
+
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
16026
|
}
|
|
15874
16027
|
|
|
15875
16028
|
declare namespace io.flow.organization.onboarding.state.v0.models {
|
|
@@ -15896,6 +16049,11 @@ declare namespace io.flow.organization.onboarding.state.v0.models {
|
|
|
15896
16049
|
readonly 'reason': string;
|
|
15897
16050
|
}
|
|
15898
16051
|
|
|
16052
|
+
interface MerchantDisabled {
|
|
16053
|
+
readonly 'discriminator': 'merchant_disabled';
|
|
16054
|
+
readonly 'reason': io.flow.organization.onboarding.state.v0.enums.MerchantDisabledReason;
|
|
16055
|
+
}
|
|
16056
|
+
|
|
15899
16057
|
interface MerchantRejected {
|
|
15900
16058
|
readonly 'discriminator': 'merchant_rejected';
|
|
15901
16059
|
readonly 'reason': io.flow.organization.onboarding.state.v0.enums.MerchantRejectedReason;
|
|
@@ -15939,7 +16097,7 @@ declare namespace io.flow.organization.onboarding.state.v0.models {
|
|
|
15939
16097
|
}
|
|
15940
16098
|
|
|
15941
16099
|
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);
|
|
16100
|
+
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
16101
|
}
|
|
15944
16102
|
|
|
15945
16103
|
declare namespace io.flow.fraud.v0.enums {
|
|
@@ -16298,6 +16456,7 @@ declare namespace io.flow.billing.bank.account.v0.unions {
|
|
|
16298
16456
|
}
|
|
16299
16457
|
|
|
16300
16458
|
declare namespace io.flow.internal.v0.enums {
|
|
16459
|
+
type AccountPaymentHoldReason = 'fraudulent' | 'invalid_bank_account';
|
|
16301
16460
|
type AccountSettingLiabilitiesMethod = 'withholding' | 'transaction';
|
|
16302
16461
|
type AccountType = 'channel' | 'organization';
|
|
16303
16462
|
type AddressConfigurationSettingProvinceCode = 'iso_3166_2' | 'name';
|
|
@@ -16309,9 +16468,8 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16309
16468
|
type BankPaymentPromiseCompletedMethod = 'credit' | 'time';
|
|
16310
16469
|
type BankPaymentStatusCode = 'scheduled' | 'sent' | 'failed';
|
|
16311
16470
|
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' | '
|
|
16471
|
+
type BillingMetricKey = 'adjustment_transactions_count' | 'adjustment_transactions_total' | 'capture_transactions_count' | 'capture_transactions_ignored_fraud_count' | 'capture_transactions_ignored_fully_refunded_count' | 'capture_transactions_ignored_other_count' | 'capture_transactions_ignored_previously_processed_count' | 'capture_queued_count' | 'capture_transactions_total' | 'carrier_charge_transactions_count' | 'carrier_charge_transactions_total' | 'channel_transactions_processing_count' | 'channel_transactions_processing_total' | 'channel_transactions_adjustment_count' | 'channel_transactions_adjustment_total' | 'channel_transactions_reversal_count' | 'channel_transactions_reversal_total' | 'channel_billed_transactions_count' | 'channel_billed_transactions_total' | 'credit_payment_transactions_count' | 'credit_payment_transactions_total' | 'duty_transactions_count' | 'duty_transactions_total' | 'fully_subsidized_order_transactions_count' | 'fully_subsidized_order_transactions_total' | 'billable_label_transactions_count' | 'billable_label_transactions_count_for_unique_orders' | 'billable_label_transactions_total' | 'revenue_share_label_transactions_count' | 'revenue_share_label_transactions_count_for_unique_orders' | 'revenue_share_label_transactions_total' | 'manual_transactions_count' | 'manual_transactions_total' | 'order_transactions_count' | 'order_transactions_total' | 'refund_transactions_count' | 'refund_transactions_ignored_fraud_count' | 'refund_transactions_ignored_fully_refunded_count' | 'refund_transactions_ignored_other_count' | 'refund_transactions_ignored_previously_processed_count' | 'refund_queued_count' | 'refund_transactions_total' | 'refund_transactions_succeeded_then_failed_count' | 'refund_transactions_succeeded_then_failed_total' | 'reversal_order_cancellations_transactions_count' | 'reversal_order_cancellations_transactions_total' | 'reversal_external_fulfillment_transactions_count' | 'reversal_external_fulfillment_transactions_total' | 'reversal_other_transactions_count' | 'reversal_other_transactions_total' | 'reversal_all_transactions_count' | 'reversal_all_transactions_total' | 'tax_transactions_count' | 'tax_transactions_total' | 'transfer_transactions_count' | 'transfer_transactions_total' | 'trueup_transactions_count' | 'trueup_transactions_total' | 'fulfillments_count' | 'fulfilled_via_replacement_order_count' | 'percentage_orders_with_fulfillment_proof_2_weeks' | 'percentage_orders_with_fulfillment_proof_4_weeks' | 'percentage_orders_with_fulfillment_proof_6_weeks' | 'percentage_orders_with_fulfillment_proof_all' | 'pending_payouts_max_age_in_millis' | 'shipping_notifications_count' | 'queued_capture_unprocessed_count' | 'queued_refund_unprocessed_count' | 'queued_label_invoice_request_unprocessed_count' | 'queued_other_unprocessed_count' | 'task_snooze_count' | 'task_snooze_ending_in_48_hours_count' | 'payouts_scheduled_count' | 'payouts_scheduled_total' | 'payouts_sent_count' | 'payouts_sent_total' | 'payouts_failed_count' | 'payouts_failed_total' | 'average_payout_amount' | 'capture_transaction_with_zero_fees_and_no_channel_transaction_count' | 'percentage_billable_label_transactions_with_carrier_charge_10_days' | 'percentage_billable_label_transactions_with_carrier_charge_20_days' | 'percentage_billable_label_transactions_with_carrier_charge_30_days' | 'percentage_billable_label_transactions_with_carrier_charge_60_days' | 'percentage_billable_label_transactions_with_carrier_charge_90_days' | 'percentage_bank_account_inserts' | 'percentage_bank_account_updates' | 'percentage_bank_account_unique_updates' | 'percentage_bank_account_deletes' | 'negative_balance_number_accounts' | 'negative_balance_number_accounts_with_order_in_past_30_days' | 'negative_balance_number_accounts_without_order_in_past_30_days' | 'negative_balance_total' | 'negative_balance_total_with_order_in_past_30_days' | 'negative_balance_total_without_order_in_past_30_days' | 'negative_balance_single_account_max' | 'negative_balance_fee_total' | 'accounts_with_payment_holds_count' | 'accounts_with_payment_holds_pending_payment_promise_count' | 'accounts_with_payment_holds_pending_payment_promise_total' | 'accounts_with_final_statements_count' | 'accounts_with_final_statements_pending_transaction_count' | 'accounts_with_final_statements_pending_transaction_total';
|
|
16313
16472
|
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
|
-
type BillingStatementBatchFileKey = 'summary';
|
|
16315
16473
|
type BillingTransactionStatus = 'pending' | 'pending_proof' | 'posted';
|
|
16316
16474
|
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';
|
|
16317
16475
|
type BlazeCheckoutEvent = 'begin_checkout' | 'select_promotion' | 'add_shipping_info' | 'add_payment_info' | 'purchase';
|
|
@@ -16331,7 +16489,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16331
16489
|
type ChannelOrderFulfillmentStatusCode = 'unfulfilled' | 'fulfilled' | 'partial' | 'cancelled';
|
|
16332
16490
|
type ChannelTransactionType = 'adjustment' | 'reversal' | 'processing';
|
|
16333
16491
|
type ChargeEstimateSource = 'global-e' | 'shopify';
|
|
16334
|
-
type ChargeInputType = 'fuelsc' | 'incoterm_ddp' | 'delivery_confirmation' | 'base_charge' | 'package_pickup' | 'insurance' | 'usps_first_mile' | 'oversize_piece' | 'incoterm_dap' | 'emergency_situation' | 'remote_area_delivery';
|
|
16492
|
+
type ChargeInputType = 'fuelsc' | 'incoterm_ddp' | 'delivery_confirmation' | 'base_charge' | 'package_pickup' | 'insurance' | 'usps_first_mile' | 'oversize_piece' | 'incoterm_dap' | 'emergency_situation' | 'remote_area_delivery' | 'customs_clearance_surcharge' | 'security_surcharge' | 'duties_fx_surcharge';
|
|
16335
16493
|
type ChargebackPaymentStatus = 'captured' | 'refunded';
|
|
16336
16494
|
type ChargebackProcessStatus = 'inquiry' | 'open' | 'closed';
|
|
16337
16495
|
type CheckoutAddAuthorizationErrorCode = 'checkout_not_found' | 'authorization_not_found';
|
|
@@ -16438,7 +16596,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16438
16596
|
type DutyTransactionType = 'adjustment' | 'reversal' | 'duty';
|
|
16439
16597
|
type EmptyAttribute = 'irrelevant';
|
|
16440
16598
|
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';
|
|
16599
|
+
type EventType = 'adyen_authorization_deleted' | 'adyen_authorization_upserted' | 'adyen_cancel_deleted' | 'adyen_cancel_upserted' | 'adyen_capture_deleted' | 'adyen_capture_upserted' | 'adyen_refund_deleted' | 'adyen_refund_upserted' | 'index_assignment_upserted' | 'index_assignment_deleted' | 'fulfillment_upserted' | 'fulfillment_deleted' | 'merchant_upserted' | 'merchant_deleted' | 'account_upserted' | 'account_upserted_v2' | 'account_deleted_v2' | 'account_contact_upserted' | 'account_contact_deleted' | 'billing_statement_upserted' | 'billing_statement_deleted' | 'tax_remittance_transaction_upserted' | 'tax_remittance_transaction_deleted' | 'channel_account_upserted_v2' | 'channel_account_deleted' | 'organization_account_upserted_v2' | 'organization_account_deleted' | 'account_transactions_export_request' | 'account_orders_export_request' | 'main_transaction_upserted' | 'main_transaction_deleted' | 'main_transaction_upserted_v2' | 'main_transaction_deleted_v2' | 'transfer_transaction_upserted' | 'transfer_transaction_deleted' | 'transfer_transaction_upserted_v2' | 'transfer_transaction_deleted_v2' | 'processing_transaction_upserted' | 'processing_transaction_deleted' | 'bank_payment_upserted' | 'bank_payment_upserted_v2' | 'bank_payment_deleted_v2' | 'channel_transaction_upserted' | 'channel_transaction_deleted' | 'order_transaction_upserted' | 'order_transaction_deleted' | 'label_transaction_upserted' | 'label_transaction_deleted' | 'channel_billed_transaction_upserted' | 'channel_billed_transaction_deleted' | 'tax_transaction_upserted' | 'tax_transaction_deleted' | 'duty_transaction_upserted' | 'duty_transaction_deleted' | 'transaction_statement_upserted' | 'transaction_statement_deleted' | 'daily_value_upserted' | 'daily_value_deleted' | 'sales_record_upserted' | 'sales_record_deleted' | 'revenue_record_upserted' | 'revenue_record_deleted' | 'calculator_organization_settings_upserted' | 'calculator_organization_settings_deleted' | 'carrier_account_upserted_v2' | 'carrier_account_deleted' | 'label_generation_settings_upserted' | 'label_generation_settings_deleted' | 'catalog_import_request' | 'exclusion_rule_upserted' | 'exclusion_rule_deleted' | 'exclusion_rule_export_request' | 'catalog_item_region_availabilities_published' | 'return_policy_upserted' | 'return_policy_deleted' | 'return_policy_item_result_upserted' | 'return_policy_item_result_deleted' | 'catalog_settings_upserted' | 'catalog_settings_deleted' | 'channel_order_acceptance_upserted' | 'channel_order_acceptance_deleted' | 'checkout_configuration_upserted' | 'checkout_configuration_deleted' | 'commercial_invoice_internal_upserted' | 'commercial_invoice_internal_deleted' | 'localized_content_upserted' | 'localization_upserted' | 'internal_channel_rate_deleted' | 'internal_channel_rate_upserted' | 'rate_deleted' | 'rate_upserted' | 'spot_rate_deleted' | 'spot_rate_upserted' | 'usd_spot_rate_deleted' | 'usd_spot_rate_upserted' | 'rate_deleted_v2' | 'rate_upserted_v2' | 'organization_currency_setting_upserted' | 'organization_currency_setting_deleted' | 'channel_currency_setting_upserted' | 'channel_currency_setting_deleted' | 'customer_purge_upserted' | 'customs_description_import' | 'customs_description_tariffs_import' | 'item_dimension_estimate_upserted_v2' | 'item_dimension_estimate_deleted_v2' | 'dispute_upserted' | 'dispute_deleted' | 'duty_rates_published_v2' | 'duty_rate_request' | 'duty_rate_bulk_request' | 'duty_raw_upserted' | 'duty_raw_bulk_upserted' | 'duty_rate_upserted' | 'duty_rate_response' | 'duty_rate_bulk_response' | 'item_sales_margin_deleted' | 'item_sales_margin_upserted' | 'order_attribute_deleted' | 'order_attribute_upserted' | 'experience_export_request' | 'experience_import_request' | 'submitted_order_upserted' | 'levy_rate_summary_upserted' | 'experiment_upserted' | 'experiment_deleted' | 'experiment_results_upserted' | 'experiment_results_deleted' | 'daily_experiment_results_upserted' | 'daily_experiment_results_deleted' | 'experiment_milestone_upserted' | 'experiment_milestone_deleted' | 'export_completed' | 'export_failed' | 'feature_upserted' | 'feature_deleted' | 'organization_boolean_value_upserted' | 'organization_boolean_value_deleted' | 'account_settings_upserted' | 'account_settings_deleted' | 'account_processing_rates_upserted' | 'account_processing_rates_deleted' | 'billing_organization_processing_rates_upserted' | 'billing_organization_processing_rates_deleted' | 'billing_organization_settings_upserted' | 'billing_organization_settings_deleted' | 'standalone_attachment_upserted' | 'standalone_attachment_deleted' | 'platform_fee_change_upserted' | 'platform_fee_change_deleted' | 'organization_bank_account_upserted' | 'organization_bank_account_deleted' | 'billing_csv_transaction_upserted' | 'billing_csv_transaction_deleted' | 'label_invoice_request_upserted' | 'label_invoice_request_deleted' | 'carrier_charge_upserted' | 'carrier_charge_deleted' | 'fraud_review_upserted' | 'fraud_review_deleted' | 'fraud_pending_review_upserted' | 'fraud_pending_review_deleted' | 'fraud_review_decision_upserted' | 'fraud_review_decision_deleted' | 'fraud_provider_configuration_upserted' | 'fraud_provider_configuration_deleted' | 'manual_review_rule_upserted' | 'manual_review_rule_deleted' | 'ftp_file_upserted' | 'ftp_file_deleted' | 'ftp_file_to_process_uploaded' | 'center_defaults_upserted' | 'center_defaults_deleted' | 'pregenerated_request_event' | 'quote_upserted' | 'quote_deleted' | 'all_items_export' | 'harmonized_items_hs6_export' | 'unharmonized_items_export' | 'dutied_items_export' | 'tariff_codes_export' | 'harmonization_phrase_suggestion_request_import' | 'harmonization_codes_import' | 'item_classification_created' | 'harmonize_fully_request_v2' | 'hybris_catalog_items_import_request' | 'import_completed' | 'import_failed' | 'time_to_classify_upserted' | 'time_to_classify_deleted' | 'time_to_classify_aggregated_upserted' | 'time_to_classify_aggregated_deleted' | 'rate_source_summary_upserted' | 'rate_source_summary_deleted' | 'rate_freshness_summary_upserted' | 'rate_freshness_summary_deleted' | 'item_harmonization_upserted' | 'item_harmonization_deleted' | 'harmonization_item_classification_upserted' | 'harmonization_item_classification_deleted' | 'harmonization_classification_statistics_published' | 'issuer_upserted' | 'issuer_deleted' | 'item_form_import_request' | 'label_request_error_upserted' | 'label_request_error_deleted' | 'order_validation_failure_upserted' | 'order_validation_failure_deleted' | 'order_validation_upserted' | 'order_validation_deleted' | 'label_tracking_summary_upserted' | 'label_tracking_summary_deleted' | 'localized_item_upserted_v2' | 'localized_item_deleted' | 'localized_item_deleted_v2' | 'localized_item_snapshot' | 'localized_price_book_item_upserted' | 'localized_price_book_item_deleted' | 'feed_upserted' | 'feed_deleted' | 'feeds_export' | 'localized_item_prices_export_request' | 'optin_prompt_upserted' | 'optin_prompt_deleted' | 'order_combined_shipment_upserted' | 'order_combined_shipment_deleted' | 'order_fulfillment_deleted' | 'order_fulfillment_upserted' | 'order_placed' | 'ready_to_fulfill' | 'fulfillment_cancel' | 'order_shipped' | 'items_shipped' | 'organization_business_entity_deleted' | 'organization_business_entity_upserted' | 'organization_status_change_upserted' | 'organization_status_change_deleted' | 'organization_deactivation_upserted' | 'organization_deactivation_deleted' | 'merchant_guid_assignment_upserted' | 'merchant_guid_assignment_deleted' | 'partner_organization_settings_upserted' | 'partner_organization_settings_deleted' | 'unassigned_merchant_guid_upserted' | 'unassigned_merchant_guid_deleted' | 'internal_authorization_upserted' | 'internal_authorization_deleted' | 'afterpay_authorization_upserted' | 'afterpay_authorization_deleted' | 'afterpay_capture_upserted' | 'afterpay_capture_deleted' | 'afterpay_refund_upserted' | 'afterpay_refund_deleted' | 'adyen_merchant_account_upserted' | 'adyen_merchant_account_deleted' | 'chargeback_upserted' | 'chargeback_deleted' | 'payment_processor_account_upserted' | 'payment_processor_account_deleted' | 'payment_processor_merchant_upserted' | 'payment_processor_merchant_deleted' | 'virtual_card_provider_upserted' | 'virtual_card_provider_deleted' | 'authorization_bundle_upserted' | 'authorization_bundle_deleted' | 'organization_payment_setting_upserted' | 'organization_payment_setting_deleted' | 'paypal_payment_deleted' | 'paypal_payment_upserted' | 'paypal_execution_deleted' | 'paypal_execution_upserted' | 'paypal_refund_deleted' | 'paypal_refund_upserted' | 'pricing_indicator' | 'product_restriction_rule_decision_upserted' | 'product_restriction_rule_decision_deleted' | 'order_rates_published_v3' | 'ratecard_dimension_estimate_upserted' | 'ratecard_dimension_estimate_deleted' | 'ratecard_lanes_import_request' | 'ratecard_standard_configuration_upserted' | 'ratecard_standard_configuration_deleted' | 'ratecard_service_fee_upserted' | 'ratecard_service_fee_deleted' | 'ratecard_lane_aggregate_upserted' | 'ratecard_lane_aggregate_deleted' | 'ratecard_rate_level_upserted' | 'ratecard_rate_level_deleted' | 'ratecard_rate_level_ratecard_upserted' | 'ratecard_rate_level_ratecard_deleted' | 'ratecard_rate_level_organization_upserted' | 'ratecard_rate_level_organization_deleted' | 'organization_restriction_snapshot_upserted' | 'organization_restriction_snapshot_deleted' | 'restriction_organization_status_upserted' | 'restriction_organization_status_deleted' | 'organization_restriction_status_upserted' | 'organization_restriction_status_deleted' | 'screening_status_change_upserted' | 'screening_status_change_deleted' | 'shopify_shop_upserted' | 'shopify_shop_deleted' | 'shopify_experience_short_id_upserted' | 'shopify_experience_short_id_deleted' | 'shopify_markets_order_upserted' | 'shopify_markets_order_deleted' | 'shopify_markets_shop_upserted' | 'shopify_markets_shop_deleted' | 'shopify_markets_webhook_registration_upserted' | 'shopify_markets_webhook_registration_deleted' | 'shopify_markets_shop_statistics_upserted' | 'shopify_markets_shop_statistics_deleted' | 'shopify_markets_metrics_upserted' | 'shopify_markets_metrics_deleted' | 'channel_order_summary_upserted' | 'channel_order_summary_deleted' | 'shopify_monitoring_order_monitor_event_upserted' | 'shopify_monitoring_order_monitor_event_deleted' | 'shopify_order_fulfillments_snapshot_upserted' | 'shopify_order_fulfillments_snapshot_deleted' | 'stripe_authorization_deleted' | 'stripe_authorization_upserted' | 'stripe_reversal_deleted' | 'stripe_reversal_upserted' | 'stripe_capture_deleted' | 'stripe_capture_upserted' | 'stripe_refund_deleted' | 'stripe_refund_upserted' | 'svb_virtual_card_clearing_upserted' | 'svb_virtual_card_clearing_deleted' | 'liability_remittance_plan_upserted' | 'liability_remittance_plan_deleted' | 'svitlana_item_upserted' | 'svitlana_item_deleted' | 'colm_item_upserted' | 'colm_item_deleted' | 'matias_item_upserted' | 'matias_item_deleted' | 'shruti_demo_item_upserted' | 'shruti_demo_item_deleted' | 'tam_item_upserted' | 'tam_item_deleted' | 'tracking_processing_error_upserted' | 'tracking_processing_error_deleted' | 'tracking_label_event_upserted_v2' | 'tracking_label_event_deleted_v2' | 'tracking_label_upserted' | 'tracking_label_deleted' | 'tracking_upserted' | 'tracking_deleted' | 'tracking_request_upserted' | 'tracking_response_upserted' | 'user_upserted_v2' | 'user_deleted_v2';
|
|
16442
16600
|
type ExperienceImportType = 'experience_with_settings';
|
|
16443
16601
|
type ExperienceOrderAction = 'submit' | 'refund_gift_cards';
|
|
16444
16602
|
type ExperienceOrderActionTrigger = 'zero_balance' | 'unsubmitted_order';
|
|
@@ -16486,6 +16644,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16486
16644
|
type MarketingGatewayPlatform = 'google' | 'facebook' | 'adroll' | 'aliexpress' | 'amazon' | 'bing' | 'criteo' | 'fruugo' | 'pinterest' | 'rakuten_japan' | 'wish' | 'snapchat' | 'stylight';
|
|
16487
16645
|
type MarketingGatewayProductStatus = 'approved' | 'not_approved' | 'pending' | 'not_found' | 'excluded';
|
|
16488
16646
|
type MarketingGatewaySchemaCompatibility = 'google' | 'facebook_primary' | 'facebook_country_override' | 'supplemental';
|
|
16647
|
+
type MatiasItemType = 'physical' | 'digital';
|
|
16489
16648
|
type MixedBagWeight = '0' | '1' | '2';
|
|
16490
16649
|
type NatureOfSale = 'consumer' | 'to_non_registered_business' | 'to_registered_business' | 'flash_title';
|
|
16491
16650
|
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';
|
|
@@ -16543,7 +16702,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16543
16702
|
type RestrictionAction = 'prohibited' | 'restricted';
|
|
16544
16703
|
type RestrictionDecision = 'accept' | 'escalate' | 'reject' | 'review';
|
|
16545
16704
|
type RestrictionStatus = 'pending' | 'in_review' | 'escalated' | 'accepted' | 'restricted';
|
|
16546
|
-
type RevenueRecordType = 'sales' | 'refund';
|
|
16705
|
+
type RevenueRecordType = 'pending' | 'sales' | 'refund';
|
|
16547
16706
|
type RiskCheck = 'three_d_secure';
|
|
16548
16707
|
type RiskEvaluation = 'Pending' | 'High-Risk' | 'Low-Risk' | 'Restricted-Party' | 'none';
|
|
16549
16708
|
type Scope = 'organization' | 'global';
|
|
@@ -16567,7 +16726,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16567
16726
|
type SignificanceAction = 'end_and_implement_winner' | 'end_and_revert' | 'do_nothing';
|
|
16568
16727
|
type SimpleRoundingStrategy = 'no_rounding' | 'currency_precision';
|
|
16569
16728
|
type SnoozeNextActionWith = 'customer_service' | 'engineering';
|
|
16570
|
-
type SnoozeSourceType = '
|
|
16729
|
+
type SnoozeSourceType = 'task';
|
|
16571
16730
|
type StatementStatus = 'created' | 'no_transactions' | 'transactions_assigned' | 'statement_generated' | 'statement_regenerated' | 'failed';
|
|
16572
16731
|
type StatementTransferTransactionLocation = 'transactions_file' | 'summary';
|
|
16573
16732
|
type StatisticType = 'time-to-classify' | 'time-to-classify-aggregated' | 'rate-source' | 'rate-freshness';
|
|
@@ -16583,6 +16742,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16583
16742
|
type TaxTransactionType = 'adjustment' | 'reversal' | 'tax';
|
|
16584
16743
|
type TimeseriesType = 'daily' | 'weekly' | 'monthly' | 'yearly';
|
|
16585
16744
|
type TrackingIntegrationType = 'api' | 'bulk' | 'aftership';
|
|
16745
|
+
type TrackingProcessingFailureClassification = 'tracking_expired' | 'expired_tracking_number_new_event' | 'new_tracking_number_expired_event' | 'origin_mismatch' | 'destination_mismatch' | 'other';
|
|
16586
16746
|
type TransactionPostingMethod = 'time' | 'proof';
|
|
16587
16747
|
type TransferMethod = 'ach';
|
|
16588
16748
|
type TrueupTransactionType = 'adjustment' | 'reversal' | 'trueup';
|
|
@@ -16670,6 +16830,17 @@ declare namespace io.flow.internal.v0.models {
|
|
|
16670
16830
|
readonly 'country': string;
|
|
16671
16831
|
}
|
|
16672
16832
|
|
|
16833
|
+
interface AccountPaymentHold {
|
|
16834
|
+
readonly 'id': string;
|
|
16835
|
+
readonly 'account': io.flow.internal.v0.models.SimpleAccountReference;
|
|
16836
|
+
readonly 'reason': io.flow.internal.v0.enums.AccountPaymentHoldReason;
|
|
16837
|
+
}
|
|
16838
|
+
|
|
16839
|
+
interface AccountPaymentHoldForm {
|
|
16840
|
+
readonly 'account_id': string;
|
|
16841
|
+
readonly 'reason': io.flow.internal.v0.enums.AccountPaymentHoldReason;
|
|
16842
|
+
}
|
|
16843
|
+
|
|
16673
16844
|
interface AccountProcessingRateForm {
|
|
16674
16845
|
readonly 'query': string;
|
|
16675
16846
|
readonly 'capture': number;
|
|
@@ -16726,7 +16897,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
16726
16897
|
readonly 'merchant_of_record_fee'?: number;
|
|
16727
16898
|
readonly 'duty_guarantee_fee'?: number;
|
|
16728
16899
|
readonly 'transfer_fee'?: number;
|
|
16729
|
-
readonly '
|
|
16900
|
+
readonly 'negative_balance_fee'?: number;
|
|
16730
16901
|
readonly 'order_service_fee'?: io.flow.internal.v0.models.TieredFee;
|
|
16731
16902
|
readonly 'label_fees'?: io.flow.internal.v0.models.AccountSettingLabelFees;
|
|
16732
16903
|
readonly 'charge_label_cost_directly': boolean;
|
|
@@ -16809,11 +16980,23 @@ declare namespace io.flow.internal.v0.models {
|
|
|
16809
16980
|
readonly 'account': io.flow.internal.v0.models.FlowAccount;
|
|
16810
16981
|
}
|
|
16811
16982
|
|
|
16983
|
+
interface AccountingFulfillmentMetadata {
|
|
16984
|
+
readonly 'discriminator': 'accounting_fulfillment_metadata';
|
|
16985
|
+
readonly 'order': io.flow.internal.v0.models.OrderReference;
|
|
16986
|
+
readonly 'proof': io.flow.internal.v0.unions.FulfillmentProof;
|
|
16987
|
+
}
|
|
16988
|
+
|
|
16812
16989
|
interface ActionQuantity {
|
|
16813
16990
|
readonly 'action': io.flow.internal.v0.enums.ItemQuantityAction;
|
|
16814
16991
|
readonly 'quantity': number;
|
|
16815
16992
|
}
|
|
16816
16993
|
|
|
16994
|
+
interface AdditionalImportTax {
|
|
16995
|
+
readonly 'name'?: string;
|
|
16996
|
+
readonly 'additional_import_tax_value'?: io.flow.common.v0.models.Money;
|
|
16997
|
+
readonly 'rate'?: number;
|
|
16998
|
+
}
|
|
16999
|
+
|
|
16817
17000
|
interface AddressConfigurationProvinceSetting {
|
|
16818
17001
|
readonly 'code': io.flow.internal.v0.enums.AddressConfigurationSettingProvinceCode;
|
|
16819
17002
|
}
|
|
@@ -17543,6 +17726,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17543
17726
|
readonly 'b2b_tax_remittance_days'?: number;
|
|
17544
17727
|
readonly 'mor_fee'?: number;
|
|
17545
17728
|
readonly 'duty_guarantee_fee'?: number;
|
|
17729
|
+
readonly 'negative_balance_fee'?: number;
|
|
17546
17730
|
readonly 'order_service_fee'?: io.flow.internal.v0.models.TieredFee;
|
|
17547
17731
|
readonly 'label_fee'?: io.flow.internal.v0.models.TieredFee;
|
|
17548
17732
|
}
|
|
@@ -17569,48 +17753,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17569
17753
|
readonly 'url': string;
|
|
17570
17754
|
}
|
|
17571
17755
|
|
|
17572
|
-
interface BillingStatementBatch {
|
|
17573
|
-
readonly 'id': string;
|
|
17574
|
-
}
|
|
17575
|
-
|
|
17576
|
-
interface BillingStatementBatchDeleted {
|
|
17577
|
-
readonly 'discriminator': 'billing_statement_batch_deleted';
|
|
17578
|
-
readonly 'event_id': string;
|
|
17579
|
-
readonly 'timestamp': string;
|
|
17580
|
-
readonly 'id': string;
|
|
17581
|
-
}
|
|
17582
|
-
|
|
17583
|
-
interface BillingStatementBatchReference {
|
|
17584
|
-
readonly 'id': string;
|
|
17585
|
-
}
|
|
17586
|
-
|
|
17587
|
-
interface BillingStatementBatchStatement {
|
|
17588
|
-
readonly 'id': string;
|
|
17589
|
-
readonly 'batch': io.flow.internal.v0.models.BillingStatementBatchReference;
|
|
17590
|
-
readonly 'statement': io.flow.internal.v0.models.BillingStatementReference;
|
|
17591
|
-
}
|
|
17592
|
-
|
|
17593
|
-
interface BillingStatementBatchStatementDeleted {
|
|
17594
|
-
readonly 'discriminator': 'billing_statement_batch_statement_deleted';
|
|
17595
|
-
readonly 'event_id': string;
|
|
17596
|
-
readonly 'timestamp': string;
|
|
17597
|
-
readonly 'id': string;
|
|
17598
|
-
}
|
|
17599
|
-
|
|
17600
|
-
interface BillingStatementBatchStatementUpserted {
|
|
17601
|
-
readonly 'discriminator': 'billing_statement_batch_statement_upserted';
|
|
17602
|
-
readonly 'event_id': string;
|
|
17603
|
-
readonly 'timestamp': string;
|
|
17604
|
-
readonly 'billing_statement_batch_statement': io.flow.internal.v0.models.BillingStatementBatchStatement;
|
|
17605
|
-
}
|
|
17606
|
-
|
|
17607
|
-
interface BillingStatementBatchUpserted {
|
|
17608
|
-
readonly 'discriminator': 'billing_statement_batch_upserted';
|
|
17609
|
-
readonly 'event_id': string;
|
|
17610
|
-
readonly 'timestamp': string;
|
|
17611
|
-
readonly 'billing_statement_batch': io.flow.internal.v0.models.BillingStatementBatch;
|
|
17612
|
-
}
|
|
17613
|
-
|
|
17614
17756
|
interface BillingStatementDeleted {
|
|
17615
17757
|
readonly 'discriminator': 'billing_statement_deleted';
|
|
17616
17758
|
readonly 'event_id': string;
|
|
@@ -17972,6 +18114,51 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17972
18114
|
readonly 'name': string;
|
|
17973
18115
|
}
|
|
17974
18116
|
|
|
18117
|
+
interface CalculationStampingLineItem {
|
|
18118
|
+
readonly 'id'?: string;
|
|
18119
|
+
readonly 'hs_code'?: string;
|
|
18120
|
+
readonly 'duty': io.flow.common.v0.models.Money;
|
|
18121
|
+
readonly 'duty_rate': number;
|
|
18122
|
+
readonly 'sales_tax': io.flow.common.v0.models.Money;
|
|
18123
|
+
readonly 'sales_tax_rate': number;
|
|
18124
|
+
readonly 'additional_tax'?: io.flow.common.v0.models.Money;
|
|
18125
|
+
readonly 'additional_tax_rate'?: number;
|
|
18126
|
+
readonly 'total': io.flow.common.v0.models.Money;
|
|
18127
|
+
}
|
|
18128
|
+
|
|
18129
|
+
interface CalculationStampingShippingLine {
|
|
18130
|
+
readonly 'first_ship_from'?: string;
|
|
18131
|
+
readonly 'duty'?: number;
|
|
18132
|
+
readonly 'duty_rate'?: number;
|
|
18133
|
+
readonly 'tax'?: number;
|
|
18134
|
+
readonly 'tax_rate'?: number;
|
|
18135
|
+
readonly 'price'?: number;
|
|
18136
|
+
readonly 'duty_rate_on_shipping'?: number;
|
|
18137
|
+
readonly 'tax_rate_on_shipping'?: number;
|
|
18138
|
+
readonly 'import_fee'?: number;
|
|
18139
|
+
}
|
|
18140
|
+
|
|
18141
|
+
interface CalculationStep {
|
|
18142
|
+
readonly 'discriminator': 'calculation_step';
|
|
18143
|
+
readonly 'primary_identifier': string;
|
|
18144
|
+
readonly 'line_item': io.flow.internal.v0.models.CalculationStampingLineItem[];
|
|
18145
|
+
readonly 'shipping_line_item': io.flow.internal.v0.models.CalculationStampingShippingLine;
|
|
18146
|
+
readonly 'total': io.flow.internal.v0.models.CalculationTotal;
|
|
18147
|
+
readonly 'explanation'?: string;
|
|
18148
|
+
}
|
|
18149
|
+
|
|
18150
|
+
interface CalculationTotal {
|
|
18151
|
+
readonly 'customs_value_name': string;
|
|
18152
|
+
readonly 'customs_value_amount': io.flow.common.v0.models.Money;
|
|
18153
|
+
readonly 'additional_import_included'?: boolean;
|
|
18154
|
+
readonly 'additional_import_value'?: io.flow.common.v0.models.Money;
|
|
18155
|
+
readonly 'duty': io.flow.common.v0.models.Money;
|
|
18156
|
+
readonly 'sales_tax': io.flow.common.v0.models.Money;
|
|
18157
|
+
readonly 'additional_tax_import_included': boolean;
|
|
18158
|
+
readonly 'additional_tax'?: io.flow.common.v0.models.Money;
|
|
18159
|
+
readonly 'additional_import_tax'?: io.flow.internal.v0.models.AdditionalImportTax[];
|
|
18160
|
+
}
|
|
18161
|
+
|
|
17975
18162
|
interface CalculatorDtcePostBody {
|
|
17976
18163
|
readonly 'products': io.flow.internal.v0.models.CalculatorDtceProduct[];
|
|
17977
18164
|
readonly 'countryCodeFrom': string;
|
|
@@ -18126,6 +18313,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18126
18313
|
interface CarrierChargeFormOther {
|
|
18127
18314
|
readonly 'discriminator': 'other';
|
|
18128
18315
|
readonly 'id': string;
|
|
18316
|
+
readonly 'label_invoice_request_id'?: string;
|
|
18129
18317
|
readonly 'reason': io.flow.trueup.v0.enums.CarrierChargeReason;
|
|
18130
18318
|
readonly 'organization_id': string;
|
|
18131
18319
|
readonly 'order_number': string;
|
|
@@ -18469,6 +18657,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18469
18657
|
readonly 'tracking_numbers'?: string[];
|
|
18470
18658
|
readonly 'carrier'?: io.flow.reference.v0.models.CarrierService;
|
|
18471
18659
|
readonly 'duty_paid': boolean;
|
|
18660
|
+
readonly 'shop_id'?: string;
|
|
18472
18661
|
}
|
|
18473
18662
|
|
|
18474
18663
|
interface ChannelOrderAcceptance {
|
|
@@ -18478,6 +18667,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18478
18667
|
readonly 'channel_id': string;
|
|
18479
18668
|
readonly 'external_order_reference': string;
|
|
18480
18669
|
readonly 'payment_request_id'?: string;
|
|
18670
|
+
readonly 'order_edit_payment_request_ids'?: string[];
|
|
18481
18671
|
readonly 'status': io.flow.internal.v0.enums.ChannelOrderAcceptanceStatus;
|
|
18482
18672
|
readonly 'reasons': io.flow.internal.v0.models.ChannelOrderAcceptanceReason[];
|
|
18483
18673
|
readonly 'next_action_from'?: io.flow.internal.v0.enums.ChannelOrderAcceptanceNextActionFrom;
|
|
@@ -21029,6 +21219,12 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21029
21219
|
readonly 'invoice': io.flow.internal.v0.models.CommercialInvoiceInternal;
|
|
21030
21220
|
}
|
|
21031
21221
|
|
|
21222
|
+
interface CommercialInvoiceSummary {
|
|
21223
|
+
readonly 'id': string;
|
|
21224
|
+
readonly 'label_id': string;
|
|
21225
|
+
readonly 'line_items': io.flow.internal.v0.models.InvoiceLineItem[];
|
|
21226
|
+
}
|
|
21227
|
+
|
|
21032
21228
|
interface CompanyReference {
|
|
21033
21229
|
readonly 'id': string;
|
|
21034
21230
|
}
|
|
@@ -21944,6 +22140,9 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21944
22140
|
readonly 'bank_code': string;
|
|
21945
22141
|
readonly 'id': string;
|
|
21946
22142
|
readonly 'tax_code'?: string;
|
|
22143
|
+
readonly 'tax_code_2'?: string;
|
|
22144
|
+
readonly 'debit_entry_code'?: string;
|
|
22145
|
+
readonly 'credit_entry_code'?: string;
|
|
21947
22146
|
readonly 'vat_flag'?: string;
|
|
21948
22147
|
readonly 'w_tax_percent'?: string;
|
|
21949
22148
|
readonly 'iban'?: string;
|
|
@@ -21991,6 +22190,9 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21991
22190
|
readonly 'id': string;
|
|
21992
22191
|
readonly 'acc_des'?: string;
|
|
21993
22192
|
readonly 'tax_code'?: string;
|
|
22193
|
+
readonly 'tax_code_2'?: string;
|
|
22194
|
+
readonly 'debit_entry_code'?: string;
|
|
22195
|
+
readonly 'credit_entry_code'?: string;
|
|
21994
22196
|
readonly 'vat_flag'?: string;
|
|
21995
22197
|
readonly 'country_name'?: string;
|
|
21996
22198
|
readonly 'w_tax_percent'?: string;
|
|
@@ -22607,6 +22809,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22607
22809
|
readonly 'fx'?: io.flow.internal.v0.models.Fee;
|
|
22608
22810
|
readonly 'duty_guarantee'?: io.flow.internal.v0.models.Fee;
|
|
22609
22811
|
readonly 'transfer'?: io.flow.internal.v0.models.Fee;
|
|
22812
|
+
readonly 'negative_balance'?: io.flow.internal.v0.models.Fee;
|
|
22610
22813
|
}
|
|
22611
22814
|
|
|
22612
22815
|
interface FinanceBankAccount {
|
|
@@ -22763,6 +22966,14 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22763
22966
|
readonly 'created_at': string;
|
|
22764
22967
|
}
|
|
22765
22968
|
|
|
22969
|
+
interface FlowBillingStatement {
|
|
22970
|
+
readonly 'id': string;
|
|
22971
|
+
readonly 'account': io.flow.billing.v0.models.AccountReference;
|
|
22972
|
+
readonly 'period': io.flow.common.v0.models.DatetimeRange;
|
|
22973
|
+
readonly 'totals': io.flow.internal.v0.models.BillingStatementTotals;
|
|
22974
|
+
readonly 'attachments': io.flow.internal.v0.models.BillingStatementAttachment[];
|
|
22975
|
+
}
|
|
22976
|
+
|
|
22766
22977
|
interface FlowChannelOrganization {
|
|
22767
22978
|
readonly 'placeholder'?: string;
|
|
22768
22979
|
}
|
|
@@ -23055,6 +23266,14 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23055
23266
|
readonly 'cancelled_lines': io.flow.order.management.v0.models.FulfillmentLineCancelForm[];
|
|
23056
23267
|
}
|
|
23057
23268
|
|
|
23269
|
+
interface FulfillmentDeleted {
|
|
23270
|
+
readonly 'discriminator': 'fulfillment_deleted';
|
|
23271
|
+
readonly 'event_id': string;
|
|
23272
|
+
readonly 'timestamp': string;
|
|
23273
|
+
readonly 'organization': string;
|
|
23274
|
+
readonly 'id': string;
|
|
23275
|
+
}
|
|
23276
|
+
|
|
23058
23277
|
interface FulfillmentInternalExperienceReference {
|
|
23059
23278
|
readonly 'id': string;
|
|
23060
23279
|
readonly 'key': string;
|
|
@@ -23154,6 +23373,14 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23154
23373
|
readonly 'placeholder'?: string;
|
|
23155
23374
|
}
|
|
23156
23375
|
|
|
23376
|
+
interface FulfillmentUpserted {
|
|
23377
|
+
readonly 'discriminator': 'fulfillment_upserted';
|
|
23378
|
+
readonly 'event_id': string;
|
|
23379
|
+
readonly 'timestamp': string;
|
|
23380
|
+
readonly 'organization': string;
|
|
23381
|
+
readonly 'fulfillment': io.flow.internal.v0.models.Fulfillment;
|
|
23382
|
+
}
|
|
23383
|
+
|
|
23157
23384
|
interface FxFee {
|
|
23158
23385
|
readonly 'base': io.flow.common.v0.models.Money;
|
|
23159
23386
|
readonly 'local': io.flow.common.v0.models.Money;
|
|
@@ -24588,6 +24815,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
24588
24815
|
readonly 'number': string;
|
|
24589
24816
|
readonly 'fulfillment_method': io.flow.catalog.v0.enums.FulfillmentMethodValue;
|
|
24590
24817
|
readonly 'country_of_origin'?: string;
|
|
24818
|
+
readonly 'tarriff_code'?: string;
|
|
24591
24819
|
readonly 'inferred'?: boolean;
|
|
24592
24820
|
}
|
|
24593
24821
|
|
|
@@ -24810,6 +25038,10 @@ declare namespace io.flow.internal.v0.models {
|
|
|
24810
25038
|
readonly 'emergency'?: io.flow.internal.v0.models.LabelSurchargeSingleForm;
|
|
24811
25039
|
readonly 'peak'?: io.flow.internal.v0.models.LabelSurchargeSingleForm;
|
|
24812
25040
|
readonly 'address_correction'?: io.flow.internal.v0.models.LabelSurchargeSingleForm;
|
|
25041
|
+
readonly 'security'?: io.flow.internal.v0.models.LabelSurchargeSingleForm;
|
|
25042
|
+
readonly 'eei_filing'?: io.flow.internal.v0.models.LabelSurchargeSingleForm;
|
|
25043
|
+
readonly 'fixed_ddp'?: io.flow.internal.v0.models.LabelSurchargeSingleForm;
|
|
25044
|
+
readonly 'fixed_currency_conversion'?: io.flow.internal.v0.models.LabelSurchargeSingleForm;
|
|
24813
25045
|
}
|
|
24814
25046
|
|
|
24815
25047
|
interface LabelSurchargeSingleForm {
|
|
@@ -25559,6 +25791,37 @@ declare namespace io.flow.internal.v0.models {
|
|
|
25559
25791
|
readonly 'flow_authorization'?: io.flow.payment.v0.unions.Authorization;
|
|
25560
25792
|
}
|
|
25561
25793
|
|
|
25794
|
+
interface MatiasItem {
|
|
25795
|
+
readonly 'id': string;
|
|
25796
|
+
readonly 'number': string;
|
|
25797
|
+
readonly 'amount': io.flow.common.v0.models.Price;
|
|
25798
|
+
readonly 'description'?: string;
|
|
25799
|
+
readonly 'type': io.flow.internal.v0.enums.MatiasItemType;
|
|
25800
|
+
readonly 'added_on': string;
|
|
25801
|
+
}
|
|
25802
|
+
|
|
25803
|
+
interface MatiasItemDeleted {
|
|
25804
|
+
readonly 'discriminator': 'matias_item_deleted';
|
|
25805
|
+
readonly 'event_id': string;
|
|
25806
|
+
readonly 'timestamp': string;
|
|
25807
|
+
readonly 'id': string;
|
|
25808
|
+
}
|
|
25809
|
+
|
|
25810
|
+
interface MatiasItemForm {
|
|
25811
|
+
readonly 'number': string;
|
|
25812
|
+
readonly 'amount': io.flow.common.v0.models.Price;
|
|
25813
|
+
readonly 'description'?: string;
|
|
25814
|
+
readonly 'type': io.flow.internal.v0.enums.MatiasItemType;
|
|
25815
|
+
readonly 'added_on': string;
|
|
25816
|
+
}
|
|
25817
|
+
|
|
25818
|
+
interface MatiasItemUpserted {
|
|
25819
|
+
readonly 'discriminator': 'matias_item_upserted';
|
|
25820
|
+
readonly 'event_id': string;
|
|
25821
|
+
readonly 'timestamp': string;
|
|
25822
|
+
readonly 'item': io.flow.internal.v0.models.MatiasItem;
|
|
25823
|
+
}
|
|
25824
|
+
|
|
25562
25825
|
interface Merchant {
|
|
25563
25826
|
readonly 'id': string;
|
|
25564
25827
|
readonly 'account': io.flow.internal.v0.models.AccountReference;
|
|
@@ -25678,6 +25941,11 @@ declare namespace io.flow.internal.v0.models {
|
|
|
25678
25941
|
readonly 'merchant': io.flow.internal.v0.models.Merchant;
|
|
25679
25942
|
}
|
|
25680
25943
|
|
|
25944
|
+
interface MessageStamp {
|
|
25945
|
+
readonly 'discriminator': 'message_stamp';
|
|
25946
|
+
readonly 'message': string;
|
|
25947
|
+
}
|
|
25948
|
+
|
|
25681
25949
|
interface MetadataProposition {
|
|
25682
25950
|
readonly 'shipping_method': io.flow.internal.v0.models.ShippingMethodReference;
|
|
25683
25951
|
readonly 'name': string;
|
|
@@ -26035,6 +26303,11 @@ declare namespace io.flow.internal.v0.models {
|
|
|
26035
26303
|
readonly 'data': io.flow.internal.v0.models.OrderRatesDataV3;
|
|
26036
26304
|
}
|
|
26037
26305
|
|
|
26306
|
+
interface OrderReference {
|
|
26307
|
+
readonly 'organization': io.flow.common.v0.models.OrganizationReference;
|
|
26308
|
+
readonly 'number': string;
|
|
26309
|
+
}
|
|
26310
|
+
|
|
26038
26311
|
interface OrderRevenueRegionChart {
|
|
26039
26312
|
readonly 'total': io.flow.common.v0.models.Price;
|
|
26040
26313
|
readonly 'period': io.flow.common.v0.models.DatetimeRange;
|
|
@@ -26125,6 +26398,16 @@ declare namespace io.flow.internal.v0.models {
|
|
|
26125
26398
|
readonly 'service_id': string;
|
|
26126
26399
|
readonly 'status': io.flow.internal.v0.enums.OrderValidationStatus;
|
|
26127
26400
|
readonly 'updated_by_user_id': string;
|
|
26401
|
+
readonly 'created_at': string;
|
|
26402
|
+
readonly 'resolved_at'?: string;
|
|
26403
|
+
}
|
|
26404
|
+
|
|
26405
|
+
interface OrderValidationDeleted {
|
|
26406
|
+
readonly 'discriminator': 'order_validation_deleted';
|
|
26407
|
+
readonly 'event_id': string;
|
|
26408
|
+
readonly 'timestamp': string;
|
|
26409
|
+
readonly 'organization': string;
|
|
26410
|
+
readonly 'id': string;
|
|
26128
26411
|
}
|
|
26129
26412
|
|
|
26130
26413
|
interface OrderValidationError {
|
|
@@ -26147,6 +26430,14 @@ declare namespace io.flow.internal.v0.models {
|
|
|
26147
26430
|
readonly 'errors': string[];
|
|
26148
26431
|
}
|
|
26149
26432
|
|
|
26433
|
+
interface OrderValidationFailureDeleted {
|
|
26434
|
+
readonly 'discriminator': 'order_validation_failure_deleted';
|
|
26435
|
+
readonly 'event_id': string;
|
|
26436
|
+
readonly 'timestamp': string;
|
|
26437
|
+
readonly 'organization': string;
|
|
26438
|
+
readonly 'id': string;
|
|
26439
|
+
}
|
|
26440
|
+
|
|
26150
26441
|
interface OrderValidationFailureSummary {
|
|
26151
26442
|
readonly 'organization_id': string;
|
|
26152
26443
|
readonly 'order_number': string;
|
|
@@ -26157,6 +26448,22 @@ declare namespace io.flow.internal.v0.models {
|
|
|
26157
26448
|
readonly 'created_at': string;
|
|
26158
26449
|
}
|
|
26159
26450
|
|
|
26451
|
+
interface OrderValidationFailureUpserted {
|
|
26452
|
+
readonly 'discriminator': 'order_validation_failure_upserted';
|
|
26453
|
+
readonly 'event_id': string;
|
|
26454
|
+
readonly 'timestamp': string;
|
|
26455
|
+
readonly 'organization': string;
|
|
26456
|
+
readonly 'order_validation_failure': io.flow.internal.v0.models.OrderValidationFailure;
|
|
26457
|
+
}
|
|
26458
|
+
|
|
26459
|
+
interface OrderValidationUpserted {
|
|
26460
|
+
readonly 'discriminator': 'order_validation_upserted';
|
|
26461
|
+
readonly 'event_id': string;
|
|
26462
|
+
readonly 'timestamp': string;
|
|
26463
|
+
readonly 'organization': string;
|
|
26464
|
+
readonly 'order_validation': io.flow.internal.v0.models.OrderValidation;
|
|
26465
|
+
}
|
|
26466
|
+
|
|
26160
26467
|
interface OrganizationAccount {
|
|
26161
26468
|
readonly 'organization': io.flow.common.v0.models.OrganizationReference;
|
|
26162
26469
|
readonly 'id': string;
|
|
@@ -26916,6 +27223,16 @@ declare namespace io.flow.internal.v0.models {
|
|
|
26916
27223
|
readonly 'statement': io.flow.internal.v0.models.BillingStatementReference;
|
|
26917
27224
|
}
|
|
26918
27225
|
|
|
27226
|
+
interface PendingOrder {
|
|
27227
|
+
readonly 'id': string;
|
|
27228
|
+
readonly 'order': io.flow.internal.v0.models.OrderSummary;
|
|
27229
|
+
readonly 'shopper': io.flow.internal.v0.models.ShopperSummary;
|
|
27230
|
+
readonly 'merchant': io.flow.internal.v0.models.MerchantSummary;
|
|
27231
|
+
readonly 'remittance': io.flow.internal.v0.models.RemittanceResponsibility;
|
|
27232
|
+
readonly 'sequence_number': number;
|
|
27233
|
+
readonly 'posting_cutoff': string;
|
|
27234
|
+
}
|
|
27235
|
+
|
|
26919
27236
|
interface PhraseClassified {
|
|
26920
27237
|
readonly 'event_id': string;
|
|
26921
27238
|
readonly 'timestamp': string;
|
|
@@ -27250,20 +27567,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
27250
27567
|
readonly 'shipping_notification_id': string;
|
|
27251
27568
|
}
|
|
27252
27569
|
|
|
27253
|
-
interface QueuedRecord {
|
|
27254
|
-
readonly 'type': string;
|
|
27255
|
-
readonly 'type_id': string;
|
|
27256
|
-
readonly 'source_type'?: string;
|
|
27257
|
-
readonly 'source_id'?: string;
|
|
27258
|
-
readonly 'environment'?: string;
|
|
27259
|
-
readonly 'created_at': string;
|
|
27260
|
-
readonly 'num_attempts': number;
|
|
27261
|
-
readonly 'next_attempt_at': string;
|
|
27262
|
-
readonly 'errors'?: string[];
|
|
27263
|
-
readonly 'stacktrace'?: string;
|
|
27264
|
-
readonly 'snooze_id'?: string;
|
|
27265
|
-
}
|
|
27266
|
-
|
|
27267
27570
|
interface Quote {
|
|
27268
27571
|
readonly 'id': string;
|
|
27269
27572
|
readonly 'base': string;
|
|
@@ -28281,8 +28584,8 @@ declare namespace io.flow.internal.v0.models {
|
|
|
28281
28584
|
readonly 'id': string;
|
|
28282
28585
|
readonly 'order': io.flow.internal.v0.models.OrderSummary;
|
|
28283
28586
|
readonly 'shopper': io.flow.internal.v0.models.ShopperSummary;
|
|
28284
|
-
readonly 'remittance': io.flow.internal.v0.models.RemittanceResponsibility;
|
|
28285
28587
|
readonly 'merchant': io.flow.internal.v0.models.MerchantSummary;
|
|
28588
|
+
readonly 'remittance': io.flow.internal.v0.models.RemittanceResponsibility;
|
|
28286
28589
|
readonly 'sequence_number': number;
|
|
28287
28590
|
readonly 'posting_cutoff': string;
|
|
28288
28591
|
readonly 'trigger': io.flow.internal.v0.unions.ReturnTrigger;
|
|
@@ -29379,6 +29682,11 @@ declare namespace io.flow.internal.v0.models {
|
|
|
29379
29682
|
readonly 'attachment': io.flow.internal.v0.models.StandaloneAttachment;
|
|
29380
29683
|
}
|
|
29381
29684
|
|
|
29685
|
+
interface StatementCreationMetadata {
|
|
29686
|
+
readonly 'discriminator': 'statement_creation_metadata';
|
|
29687
|
+
readonly 'period': io.flow.common.v0.models.DatetimeRange;
|
|
29688
|
+
}
|
|
29689
|
+
|
|
29382
29690
|
interface StoreConnection {
|
|
29383
29691
|
readonly 'organization'?: io.flow.common.v0.models.OrganizationReference;
|
|
29384
29692
|
readonly 'id': string;
|
|
@@ -29762,6 +30070,20 @@ declare namespace io.flow.internal.v0.models {
|
|
|
29762
30070
|
readonly 'data': io.flow.internal.v0.unions.TariffEligibilityData;
|
|
29763
30071
|
}
|
|
29764
30072
|
|
|
30073
|
+
interface Task {
|
|
30074
|
+
readonly 'type': string;
|
|
30075
|
+
readonly 'type_id': string;
|
|
30076
|
+
readonly 'source_type'?: string;
|
|
30077
|
+
readonly 'source_id'?: string;
|
|
30078
|
+
readonly 'environment'?: string;
|
|
30079
|
+
readonly 'created_at': string;
|
|
30080
|
+
readonly 'num_attempts': number;
|
|
30081
|
+
readonly 'next_attempt_at': string;
|
|
30082
|
+
readonly 'errors'?: string[];
|
|
30083
|
+
readonly 'stacktrace'?: string;
|
|
30084
|
+
readonly 'snooze_id'?: string;
|
|
30085
|
+
}
|
|
30086
|
+
|
|
29765
30087
|
interface TaskCount {
|
|
29766
30088
|
readonly 'discriminator': string;
|
|
29767
30089
|
readonly 'count': number;
|
|
@@ -30063,6 +30385,31 @@ declare namespace io.flow.internal.v0.models {
|
|
|
30063
30385
|
readonly 'tracking_label': io.flow.internal.v0.models.ExportTrackingLabel;
|
|
30064
30386
|
}
|
|
30065
30387
|
|
|
30388
|
+
interface TrackingProcessingError {
|
|
30389
|
+
readonly 'id': string;
|
|
30390
|
+
readonly 'aftership_webhook_id': string;
|
|
30391
|
+
readonly 'carrier_id': string;
|
|
30392
|
+
readonly 'carrier_tracking_number': string;
|
|
30393
|
+
readonly 'organization_id'?: string;
|
|
30394
|
+
readonly 'tracking_label_id'?: string;
|
|
30395
|
+
readonly 'errors': string[];
|
|
30396
|
+
readonly 'failure_classification': io.flow.internal.v0.enums.TrackingProcessingFailureClassification;
|
|
30397
|
+
}
|
|
30398
|
+
|
|
30399
|
+
interface TrackingProcessingErrorDeleted {
|
|
30400
|
+
readonly 'discriminator': 'tracking_processing_error_deleted';
|
|
30401
|
+
readonly 'event_id': string;
|
|
30402
|
+
readonly 'timestamp': string;
|
|
30403
|
+
readonly 'id': string;
|
|
30404
|
+
}
|
|
30405
|
+
|
|
30406
|
+
interface TrackingProcessingErrorUpserted {
|
|
30407
|
+
readonly 'discriminator': 'tracking_processing_error_upserted';
|
|
30408
|
+
readonly 'event_id': string;
|
|
30409
|
+
readonly 'timestamp': string;
|
|
30410
|
+
readonly 'tracking_processing_error': io.flow.internal.v0.models.TrackingProcessingError;
|
|
30411
|
+
}
|
|
30412
|
+
|
|
30066
30413
|
interface TrackingRequest {
|
|
30067
30414
|
readonly 'carrier': string;
|
|
30068
30415
|
readonly 'carrier_tracking_number': string;
|
|
@@ -30446,6 +30793,7 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
30446
30793
|
type AuthorizedOrderCharge = (io.flow.internal.v0.models.AuthorizedShippingCharge);
|
|
30447
30794
|
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
30795
|
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);
|
|
30796
|
+
type CalculatorStamp = (io.flow.internal.v0.models.MessageStamp | io.flow.internal.v0.models.CalculationStep);
|
|
30449
30797
|
type CarrierChargeForm = (io.flow.internal.v0.models.CarrierChargeFormLabel | io.flow.internal.v0.models.CarrierChargeFormOther);
|
|
30450
30798
|
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
30799
|
type ChannelRateMetadata = (io.flow.internal.v0.models.ChannelRateMetadataIdentity | io.flow.internal.v0.models.ChannelRateMetadataRate);
|
|
@@ -30544,7 +30892,7 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
30544
30892
|
type DiscountRequestOfferForm = (io.flow.internal.v0.models.DiscountRequestOfferFixedAmountForm);
|
|
30545
30893
|
type DisputeDetails = (io.flow.internal.v0.models.DisputeDetailsAdyen | io.flow.internal.v0.models.DisputeDetailsPaypal);
|
|
30546
30894
|
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);
|
|
30895
|
+
type Event = (io.flow.internal.v0.models.AdyenAuthorizationDeleted | io.flow.internal.v0.models.AdyenAuthorizationUpserted | io.flow.internal.v0.models.AdyenCancelDeleted | io.flow.internal.v0.models.AdyenCancelUpserted | io.flow.internal.v0.models.AdyenCaptureDeleted | io.flow.internal.v0.models.AdyenCaptureUpserted | io.flow.internal.v0.models.AdyenRefundDeleted | io.flow.internal.v0.models.AdyenRefundUpserted | io.flow.internal.v0.models.IndexAssignmentUpserted | io.flow.internal.v0.models.IndexAssignmentDeleted | io.flow.internal.v0.models.FulfillmentUpserted | io.flow.internal.v0.models.FulfillmentDeleted | io.flow.internal.v0.models.MerchantUpserted | io.flow.internal.v0.models.MerchantDeleted | io.flow.internal.v0.models.AccountUpserted | io.flow.internal.v0.models.AccountUpsertedV2 | io.flow.internal.v0.models.AccountDeletedV2 | io.flow.internal.v0.models.AccountContactUpserted | io.flow.internal.v0.models.AccountContactDeleted | io.flow.internal.v0.models.BillingStatementUpserted | io.flow.internal.v0.models.BillingStatementDeleted | io.flow.internal.v0.models.TaxRemittanceTransactionUpserted | io.flow.internal.v0.models.TaxRemittanceTransactionDeleted | io.flow.internal.v0.models.ChannelAccountUpsertedV2 | io.flow.internal.v0.models.ChannelAccountDeleted | io.flow.internal.v0.models.OrganizationAccountUpsertedV2 | io.flow.internal.v0.models.OrganizationAccountDeleted | io.flow.internal.v0.models.AccountTransactionsExportRequest | io.flow.internal.v0.models.AccountOrdersExportRequest | io.flow.internal.v0.models.MainTransactionUpserted | io.flow.internal.v0.models.MainTransactionDeleted | io.flow.internal.v0.models.MainTransactionUpsertedV2 | io.flow.internal.v0.models.MainTransactionDeletedV2 | io.flow.internal.v0.models.TransferTransactionUpserted | io.flow.internal.v0.models.TransferTransactionDeleted | io.flow.internal.v0.models.TransferTransactionUpsertedV2 | io.flow.internal.v0.models.TransferTransactionDeletedV2 | io.flow.internal.v0.models.ProcessingTransactionUpserted | io.flow.internal.v0.models.ProcessingTransactionDeleted | io.flow.internal.v0.models.BankPaymentUpserted | io.flow.internal.v0.models.BankPaymentUpsertedV2 | io.flow.internal.v0.models.BankPaymentDeletedV2 | io.flow.internal.v0.models.ChannelTransactionUpserted | io.flow.internal.v0.models.ChannelTransactionDeleted | io.flow.internal.v0.models.OrderTransactionUpserted | io.flow.internal.v0.models.OrderTransactionDeleted | io.flow.internal.v0.models.LabelTransactionUpserted | io.flow.internal.v0.models.LabelTransactionDeleted | io.flow.internal.v0.models.ChannelBilledTransactionUpserted | io.flow.internal.v0.models.ChannelBilledTransactionDeleted | io.flow.internal.v0.models.TaxTransactionUpserted | io.flow.internal.v0.models.TaxTransactionDeleted | io.flow.internal.v0.models.DutyTransactionUpserted | io.flow.internal.v0.models.DutyTransactionDeleted | io.flow.internal.v0.models.TransactionStatementUpserted | io.flow.internal.v0.models.TransactionStatementDeleted | io.flow.internal.v0.models.DailyValueUpserted | io.flow.internal.v0.models.DailyValueDeleted | io.flow.internal.v0.models.SalesRecordUpserted | io.flow.internal.v0.models.SalesRecordDeleted | io.flow.internal.v0.models.RevenueRecordUpserted | io.flow.internal.v0.models.RevenueRecordDeleted | io.flow.internal.v0.models.CalculatorOrganizationSettingsUpserted | io.flow.internal.v0.models.CalculatorOrganizationSettingsDeleted | io.flow.internal.v0.models.CarrierAccountUpsertedV2 | io.flow.internal.v0.models.CarrierAccountDeleted | io.flow.internal.v0.models.LabelGenerationSettingsUpserted | io.flow.internal.v0.models.LabelGenerationSettingsDeleted | io.flow.internal.v0.models.CatalogImportRequest | io.flow.internal.v0.models.ExclusionRuleUpserted | io.flow.internal.v0.models.ExclusionRuleDeleted | io.flow.internal.v0.models.ExclusionRuleExportRequest | io.flow.internal.v0.models.CatalogItemRegionAvailabilitiesPublished | io.flow.internal.v0.models.ReturnPolicyUpserted | io.flow.internal.v0.models.ReturnPolicyDeleted | io.flow.internal.v0.models.ReturnPolicyItemResultUpserted | io.flow.internal.v0.models.ReturnPolicyItemResultDeleted | io.flow.internal.v0.models.CatalogSettingsUpserted | io.flow.internal.v0.models.CatalogSettingsDeleted | io.flow.internal.v0.models.ChannelOrderAcceptanceUpserted | io.flow.internal.v0.models.ChannelOrderAcceptanceDeleted | io.flow.internal.v0.models.CheckoutConfigurationUpserted | io.flow.internal.v0.models.CheckoutConfigurationDeleted | io.flow.internal.v0.models.CommercialInvoiceInternalUpserted | io.flow.internal.v0.models.CommercialInvoiceInternalDeleted | io.flow.internal.v0.models.LocalizedContentUpserted | io.flow.internal.v0.models.LocalizationUpserted | io.flow.internal.v0.models.InternalChannelRateDeleted | io.flow.internal.v0.models.InternalChannelRateUpserted | io.flow.internal.v0.models.RateDeleted | io.flow.internal.v0.models.RateUpserted | io.flow.internal.v0.models.SpotRateDeleted | io.flow.internal.v0.models.SpotRateUpserted | io.flow.internal.v0.models.UsdSpotRateDeleted | io.flow.internal.v0.models.UsdSpotRateUpserted | io.flow.internal.v0.models.RateDeletedV2 | io.flow.internal.v0.models.RateUpsertedV2 | io.flow.internal.v0.models.OrganizationCurrencySettingUpserted | io.flow.internal.v0.models.OrganizationCurrencySettingDeleted | io.flow.internal.v0.models.ChannelCurrencySettingUpserted | io.flow.internal.v0.models.ChannelCurrencySettingDeleted | io.flow.internal.v0.models.CustomerPurgeUpserted | io.flow.internal.v0.models.CustomsDescriptionImport | io.flow.internal.v0.models.CustomsDescriptionTariffsImport | io.flow.internal.v0.models.ItemDimensionEstimateUpsertedV2 | io.flow.internal.v0.models.ItemDimensionEstimateDeletedV2 | io.flow.internal.v0.models.DisputeUpserted | io.flow.internal.v0.models.DisputeDeleted | io.flow.internal.v0.models.DutyRatesPublishedV2 | io.flow.internal.v0.models.DutyRateRequest | io.flow.internal.v0.models.DutyRateBulkRequest | io.flow.internal.v0.models.DutyRawUpserted | io.flow.internal.v0.models.DutyRawBulkUpserted | io.flow.internal.v0.models.DutyRateUpserted | io.flow.internal.v0.models.DutyRateResponse | io.flow.internal.v0.models.DutyRateBulkResponse | io.flow.internal.v0.models.ItemSalesMarginDeleted | io.flow.internal.v0.models.ItemSalesMarginUpserted | io.flow.internal.v0.models.OrderAttributeDeleted | io.flow.internal.v0.models.OrderAttributeUpserted | io.flow.internal.v0.models.ExperienceExportRequest | io.flow.internal.v0.models.ExperienceImportRequest | io.flow.internal.v0.models.SubmittedOrderUpserted | io.flow.internal.v0.models.LevyRateSummaryUpserted | io.flow.internal.v0.models.ExperimentUpserted | io.flow.internal.v0.models.ExperimentDeleted | io.flow.internal.v0.models.ExperimentResultsUpserted | io.flow.internal.v0.models.ExperimentResultsDeleted | io.flow.internal.v0.models.DailyExperimentResultsUpserted | io.flow.internal.v0.models.DailyExperimentResultsDeleted | io.flow.internal.v0.models.ExperimentMilestoneUpserted | io.flow.internal.v0.models.ExperimentMilestoneDeleted | io.flow.internal.v0.models.ExportCompleted | io.flow.internal.v0.models.ExportFailed | io.flow.internal.v0.models.FeatureUpserted | io.flow.internal.v0.models.FeatureDeleted | io.flow.internal.v0.models.OrganizationBooleanValueUpserted | io.flow.internal.v0.models.OrganizationBooleanValueDeleted | io.flow.internal.v0.models.AccountSettingsUpserted | io.flow.internal.v0.models.AccountSettingsDeleted | io.flow.internal.v0.models.AccountProcessingRatesUpserted | io.flow.internal.v0.models.AccountProcessingRatesDeleted | io.flow.internal.v0.models.BillingOrganizationProcessingRatesUpserted | io.flow.internal.v0.models.BillingOrganizationProcessingRatesDeleted | io.flow.internal.v0.models.BillingOrganizationSettingsUpserted | io.flow.internal.v0.models.BillingOrganizationSettingsDeleted | io.flow.internal.v0.models.StandaloneAttachmentUpserted | io.flow.internal.v0.models.StandaloneAttachmentDeleted | io.flow.internal.v0.models.PlatformFeeChangeUpserted | io.flow.internal.v0.models.PlatformFeeChangeDeleted | io.flow.internal.v0.models.OrganizationBankAccountUpserted | io.flow.internal.v0.models.OrganizationBankAccountDeleted | io.flow.internal.v0.models.BillingCsvTransactionUpserted | io.flow.internal.v0.models.BillingCsvTransactionDeleted | io.flow.internal.v0.models.LabelInvoiceRequestUpserted | io.flow.internal.v0.models.LabelInvoiceRequestDeleted | io.flow.internal.v0.models.CarrierChargeUpserted | io.flow.internal.v0.models.CarrierChargeDeleted | io.flow.internal.v0.models.FraudReviewUpserted | io.flow.internal.v0.models.FraudReviewDeleted | io.flow.internal.v0.models.FraudPendingReviewUpserted | io.flow.internal.v0.models.FraudPendingReviewDeleted | io.flow.internal.v0.models.FraudReviewDecisionUpserted | io.flow.internal.v0.models.FraudReviewDecisionDeleted | io.flow.internal.v0.models.FraudProviderConfigurationUpserted | io.flow.internal.v0.models.FraudProviderConfigurationDeleted | io.flow.internal.v0.models.ManualReviewRuleUpserted | io.flow.internal.v0.models.ManualReviewRuleDeleted | io.flow.internal.v0.models.FtpFileUpserted | io.flow.internal.v0.models.FtpFileDeleted | io.flow.internal.v0.models.FtpFileToProcessUploaded | io.flow.internal.v0.models.CenterDefaultsUpserted | io.flow.internal.v0.models.CenterDefaultsDeleted | io.flow.internal.v0.models.PregeneratedRequestEvent | io.flow.internal.v0.models.QuoteUpserted | io.flow.internal.v0.models.QuoteDeleted | io.flow.internal.v0.models.AllItemsExport | io.flow.internal.v0.models.HarmonizedItemsHs6Export | io.flow.internal.v0.models.UnharmonizedItemsExport | io.flow.internal.v0.models.DutiedItemsExport | io.flow.internal.v0.models.TariffCodesExport | io.flow.internal.v0.models.HarmonizationPhraseSuggestionRequestImport | io.flow.internal.v0.models.HarmonizationCodesImport | io.flow.internal.v0.models.ItemClassificationCreated | io.flow.internal.v0.models.HarmonizeFullyRequestV2 | io.flow.internal.v0.models.HybrisCatalogItemsImportRequest | io.flow.internal.v0.models.ImportCompleted | io.flow.internal.v0.models.ImportFailed | io.flow.internal.v0.models.TimeToClassifyUpserted | io.flow.internal.v0.models.TimeToClassifyDeleted | io.flow.internal.v0.models.TimeToClassifyAggregatedUpserted | io.flow.internal.v0.models.TimeToClassifyAggregatedDeleted | io.flow.internal.v0.models.RateSourceSummaryUpserted | io.flow.internal.v0.models.RateSourceSummaryDeleted | io.flow.internal.v0.models.RateFreshnessSummaryUpserted | io.flow.internal.v0.models.RateFreshnessSummaryDeleted | io.flow.internal.v0.models.ItemHarmonizationUpserted | io.flow.internal.v0.models.ItemHarmonizationDeleted | io.flow.internal.v0.models.HarmonizationItemClassificationUpserted | io.flow.internal.v0.models.HarmonizationItemClassificationDeleted | io.flow.internal.v0.models.HarmonizationClassificationStatisticsPublished | io.flow.internal.v0.models.IssuerUpserted | io.flow.internal.v0.models.IssuerDeleted | io.flow.internal.v0.models.ItemFormImportRequest | io.flow.internal.v0.models.LabelRequestErrorUpserted | io.flow.internal.v0.models.LabelRequestErrorDeleted | io.flow.internal.v0.models.OrderValidationFailureUpserted | io.flow.internal.v0.models.OrderValidationFailureDeleted | io.flow.internal.v0.models.OrderValidationUpserted | io.flow.internal.v0.models.OrderValidationDeleted | io.flow.internal.v0.models.LabelTrackingSummaryUpserted | io.flow.internal.v0.models.LabelTrackingSummaryDeleted | io.flow.internal.v0.models.LocalizedItemUpsertedV2 | io.flow.internal.v0.models.LocalizedItemDeleted | io.flow.internal.v0.models.LocalizedItemDeletedV2 | io.flow.internal.v0.models.LocalizedItemSnapshot | io.flow.internal.v0.models.LocalizedPriceBookItemUpserted | io.flow.internal.v0.models.LocalizedPriceBookItemDeleted | io.flow.internal.v0.models.FeedUpserted | io.flow.internal.v0.models.FeedDeleted | io.flow.internal.v0.models.FeedsExport | io.flow.internal.v0.models.LocalizedItemPricesExportRequest | io.flow.internal.v0.models.OptinPromptUpserted | io.flow.internal.v0.models.OptinPromptDeleted | io.flow.internal.v0.models.OrderCombinedShipmentUpserted | io.flow.internal.v0.models.OrderCombinedShipmentDeleted | io.flow.internal.v0.models.OrderFulfillmentDeleted | io.flow.internal.v0.models.OrderFulfillmentUpserted | io.flow.internal.v0.models.OrderPlaced | io.flow.internal.v0.models.ReadyToFulfill | io.flow.internal.v0.models.FulfillmentCancel | io.flow.internal.v0.models.OrderShipped | io.flow.internal.v0.models.ItemsShipped | io.flow.internal.v0.models.OrganizationBusinessEntityDeleted | io.flow.internal.v0.models.OrganizationBusinessEntityUpserted | io.flow.internal.v0.models.OrganizationStatusChangeUpserted | io.flow.internal.v0.models.OrganizationStatusChangeDeleted | io.flow.internal.v0.models.OrganizationDeactivationUpserted | io.flow.internal.v0.models.OrganizationDeactivationDeleted | io.flow.internal.v0.models.MerchantGuidAssignmentUpserted | io.flow.internal.v0.models.MerchantGuidAssignmentDeleted | io.flow.internal.v0.models.PartnerOrganizationSettingsUpserted | io.flow.internal.v0.models.PartnerOrganizationSettingsDeleted | io.flow.internal.v0.models.UnassignedMerchantGuidUpserted | io.flow.internal.v0.models.UnassignedMerchantGuidDeleted | io.flow.internal.v0.models.InternalAuthorizationUpserted | io.flow.internal.v0.models.InternalAuthorizationDeleted | io.flow.internal.v0.models.AfterpayAuthorizationUpserted | io.flow.internal.v0.models.AfterpayAuthorizationDeleted | io.flow.internal.v0.models.AfterpayCaptureUpserted | io.flow.internal.v0.models.AfterpayCaptureDeleted | io.flow.internal.v0.models.AfterpayRefundUpserted | io.flow.internal.v0.models.AfterpayRefundDeleted | io.flow.internal.v0.models.AdyenMerchantAccountUpserted | io.flow.internal.v0.models.AdyenMerchantAccountDeleted | io.flow.internal.v0.models.ChargebackUpserted | io.flow.internal.v0.models.ChargebackDeleted | io.flow.internal.v0.models.PaymentProcessorAccountUpserted | io.flow.internal.v0.models.PaymentProcessorAccountDeleted | io.flow.internal.v0.models.PaymentProcessorMerchantUpserted | io.flow.internal.v0.models.PaymentProcessorMerchantDeleted | io.flow.internal.v0.models.VirtualCardProviderUpserted | io.flow.internal.v0.models.VirtualCardProviderDeleted | io.flow.internal.v0.models.AuthorizationBundleUpserted | io.flow.internal.v0.models.AuthorizationBundleDeleted | io.flow.internal.v0.models.OrganizationPaymentSettingUpserted | io.flow.internal.v0.models.OrganizationPaymentSettingDeleted | io.flow.internal.v0.models.PaypalPaymentDeleted | io.flow.internal.v0.models.PaypalPaymentUpserted | io.flow.internal.v0.models.PaypalExecutionDeleted | io.flow.internal.v0.models.PaypalExecutionUpserted | io.flow.internal.v0.models.PaypalRefundDeleted | io.flow.internal.v0.models.PaypalRefundUpserted | io.flow.internal.v0.models.PricingIndicator | io.flow.internal.v0.models.ProductRestrictionRuleDecisionUpserted | io.flow.internal.v0.models.ProductRestrictionRuleDecisionDeleted | io.flow.internal.v0.models.OrderRatesPublishedV3 | io.flow.internal.v0.models.RatecardDimensionEstimateUpserted | io.flow.internal.v0.models.RatecardDimensionEstimateDeleted | io.flow.internal.v0.models.RatecardLanesImportRequest | io.flow.internal.v0.models.RatecardStandardConfigurationUpserted | io.flow.internal.v0.models.RatecardStandardConfigurationDeleted | io.flow.internal.v0.models.RatecardServiceFeeUpserted | io.flow.internal.v0.models.RatecardServiceFeeDeleted | io.flow.internal.v0.models.RatecardLaneAggregateUpserted | io.flow.internal.v0.models.RatecardLaneAggregateDeleted | io.flow.internal.v0.models.RatecardRateLevelUpserted | io.flow.internal.v0.models.RatecardRateLevelDeleted | io.flow.internal.v0.models.RatecardRateLevelRatecardUpserted | io.flow.internal.v0.models.RatecardRateLevelRatecardDeleted | io.flow.internal.v0.models.RatecardRateLevelOrganizationUpserted | io.flow.internal.v0.models.RatecardRateLevelOrganizationDeleted | io.flow.internal.v0.models.OrganizationRestrictionSnapshotUpserted | io.flow.internal.v0.models.OrganizationRestrictionSnapshotDeleted | io.flow.internal.v0.models.RestrictionOrganizationStatusUpserted | io.flow.internal.v0.models.RestrictionOrganizationStatusDeleted | io.flow.internal.v0.models.OrganizationRestrictionStatusUpserted | io.flow.internal.v0.models.OrganizationRestrictionStatusDeleted | io.flow.internal.v0.models.ScreeningStatusChangeUpserted | io.flow.internal.v0.models.ScreeningStatusChangeDeleted | io.flow.internal.v0.models.ShopifyShopUpserted | io.flow.internal.v0.models.ShopifyShopDeleted | io.flow.internal.v0.models.ShopifyExperienceShortIdUpserted | io.flow.internal.v0.models.ShopifyExperienceShortIdDeleted | io.flow.internal.v0.models.ShopifyMarketsOrderUpserted | io.flow.internal.v0.models.ShopifyMarketsOrderDeleted | io.flow.internal.v0.models.ShopifyMarketsShopUpserted | io.flow.internal.v0.models.ShopifyMarketsShopDeleted | io.flow.internal.v0.models.ShopifyMarketsWebhookRegistrationUpserted | io.flow.internal.v0.models.ShopifyMarketsWebhookRegistrationDeleted | io.flow.internal.v0.models.ShopifyMarketsShopStatisticsUpserted | io.flow.internal.v0.models.ShopifyMarketsShopStatisticsDeleted | io.flow.internal.v0.models.ShopifyMarketsMetricsUpserted | io.flow.internal.v0.models.ShopifyMarketsMetricsDeleted | io.flow.internal.v0.models.ChannelOrderSummaryUpserted | io.flow.internal.v0.models.ChannelOrderSummaryDeleted | io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventUpserted | io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventDeleted | io.flow.internal.v0.models.ShopifyOrderFulfillmentsSnapshotUpserted | io.flow.internal.v0.models.ShopifyOrderFulfillmentsSnapshotDeleted | io.flow.internal.v0.models.StripeAuthorizationDeleted | io.flow.internal.v0.models.StripeAuthorizationUpserted | io.flow.internal.v0.models.StripeReversalDeleted | io.flow.internal.v0.models.StripeReversalUpserted | io.flow.internal.v0.models.StripeCaptureDeleted | io.flow.internal.v0.models.StripeCaptureUpserted | io.flow.internal.v0.models.StripeRefundDeleted | io.flow.internal.v0.models.StripeRefundUpserted | io.flow.internal.v0.models.SvbVirtualCardClearingUpserted | io.flow.internal.v0.models.SvbVirtualCardClearingDeleted | io.flow.internal.v0.models.LiabilityRemittancePlanUpserted | io.flow.internal.v0.models.LiabilityRemittancePlanDeleted | io.flow.internal.v0.models.SvitlanaItemUpserted | io.flow.internal.v0.models.SvitlanaItemDeleted | io.flow.internal.v0.models.ColmItemUpserted | io.flow.internal.v0.models.ColmItemDeleted | io.flow.internal.v0.models.MatiasItemUpserted | io.flow.internal.v0.models.MatiasItemDeleted | io.flow.internal.v0.models.ShrutiDemoItemUpserted | io.flow.internal.v0.models.ShrutiDemoItemDeleted | io.flow.internal.v0.models.TamItemUpserted | io.flow.internal.v0.models.TamItemDeleted | io.flow.internal.v0.models.TrackingProcessingErrorUpserted | io.flow.internal.v0.models.TrackingProcessingErrorDeleted | io.flow.internal.v0.models.TrackingLabelEventUpsertedV2 | io.flow.internal.v0.models.TrackingLabelEventDeletedV2 | io.flow.internal.v0.models.TrackingLabelUpserted | io.flow.internal.v0.models.TrackingLabelDeleted | io.flow.internal.v0.models.TrackingUpserted | io.flow.internal.v0.models.TrackingDeleted | io.flow.internal.v0.models.TrackingRequestUpserted | io.flow.internal.v0.models.TrackingResponseUpserted | io.flow.internal.v0.models.UserUpsertedV2 | io.flow.internal.v0.models.UserDeletedV2);
|
|
30548
30896
|
type Experiment = (io.flow.internal.v0.models.ExperienceExperiment | io.flow.internal.v0.models.FeatureExperiment);
|
|
30549
30897
|
type ExportSchedule = (io.flow.internal.v0.models.ExportScheduleDaily | io.flow.internal.v0.models.ExportScheduleRepeated);
|
|
30550
30898
|
type FeatureDefaultValue = (io.flow.internal.v0.models.BooleanFeatureDefaultValue | io.flow.internal.v0.models.StringFeatureDefaultValue);
|
|
@@ -30598,6 +30946,7 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
30598
30946
|
type TariffEligibilityData = (io.flow.internal.v0.models.RegisteredExporterTariffEligibilityData);
|
|
30599
30947
|
type TariffEligibilityForm = (io.flow.internal.v0.models.RegisteredExporterTariffEligibilityForm);
|
|
30600
30948
|
type TaskData = (io.flow.internal.v0.models.TaskProcessQueuedEvent | io.flow.internal.v0.models.TaskSummarizeCode | io.flow.internal.v0.models.TaskItemUpserted | io.flow.internal.v0.models.TaskImport);
|
|
30949
|
+
type TaskMetadata = (io.flow.internal.v0.models.StatementCreationMetadata | io.flow.internal.v0.models.AccountingFulfillmentMetadata);
|
|
30601
30950
|
type TaxAmount = (io.flow.internal.v0.models.CalculatedTaxAmount | io.flow.internal.v0.models.NoCalculatedTaxAmount);
|
|
30602
30951
|
type Tracker = (io.flow.internal.v0.models.GoogleAnalytics | io.flow.internal.v0.models.GoogleGlobalSiteTag | io.flow.internal.v0.models.GoogleTagManager | io.flow.internal.v0.models.FacebookPixel | io.flow.internal.v0.models.SnapchatPixel);
|
|
30603
30952
|
type Transaction = (io.flow.internal.v0.models.InvoiceTransaction | io.flow.internal.v0.models.ManualTransaction | io.flow.internal.v0.models.ProcessingTransaction | io.flow.internal.v0.models.SubscriptionTransaction | io.flow.internal.v0.models.TaxRemittanceTransaction | io.flow.internal.v0.models.TransferTransaction | io.flow.internal.v0.models.VirtualCardTransaction | io.flow.internal.v0.models.DisputeTransaction | io.flow.internal.v0.models.ChannelTransaction | io.flow.internal.v0.models.LabelTransaction | io.flow.internal.v0.models.OrderTransaction | io.flow.internal.v0.models.ChannelBilledTransaction | io.flow.internal.v0.models.TaxTransaction | io.flow.internal.v0.models.DutyTransaction | io.flow.internal.v0.models.TrueupTransaction | io.flow.internal.v0.models.CarrierChargeTransaction);
|
|
@@ -30607,6 +30956,7 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
30607
30956
|
type VariantForm = (io.flow.internal.v0.models.ExperienceVariantForm | io.flow.internal.v0.models.FeatureVariantForm);
|
|
30608
30957
|
}
|
|
30609
30958
|
|
|
30959
|
+
export const accountPaymentHoldReason: PropTypes.Requireable<io.flow.internal.v0.enums.AccountPaymentHoldReason>;
|
|
30610
30960
|
export const accountSettingLiabilitiesMethod: PropTypes.Requireable<io.flow.internal.v0.enums.AccountSettingLiabilitiesMethod>;
|
|
30611
30961
|
export const accountType: PropTypes.Requireable<io.flow.internal.v0.enums.AccountType>;
|
|
30612
30962
|
export const addressConfigurationSettingProvinceCode: PropTypes.Requireable<io.flow.internal.v0.enums.AddressConfigurationSettingProvinceCode>;
|
|
@@ -30620,7 +30970,6 @@ export const bankPaymentStatusCode: PropTypes.Requireable<io.flow.internal.v0.en
|
|
|
30620
30970
|
export const billingAllocationKey: PropTypes.Requireable<io.flow.internal.v0.enums.BillingAllocationKey>;
|
|
30621
30971
|
export const billingMetricKey: PropTypes.Requireable<io.flow.internal.v0.enums.BillingMetricKey>;
|
|
30622
30972
|
export const billingStatementAttachmentKey: PropTypes.Requireable<io.flow.internal.v0.enums.BillingStatementAttachmentKey>;
|
|
30623
|
-
export const billingStatementBatchFileKey: PropTypes.Requireable<io.flow.internal.v0.enums.BillingStatementBatchFileKey>;
|
|
30624
30973
|
export const billingTransactionStatus: PropTypes.Requireable<io.flow.internal.v0.enums.BillingTransactionStatus>;
|
|
30625
30974
|
export const billingTransactionType: PropTypes.Requireable<io.flow.internal.v0.enums.BillingTransactionType>;
|
|
30626
30975
|
export const blazeCheckoutEvent: PropTypes.Requireable<io.flow.internal.v0.enums.BlazeCheckoutEvent>;
|
|
@@ -30795,6 +31144,7 @@ export const marketingGatewayFeedState: PropTypes.Requireable<io.flow.internal.v
|
|
|
30795
31144
|
export const marketingGatewayPlatform: PropTypes.Requireable<io.flow.internal.v0.enums.MarketingGatewayPlatform>;
|
|
30796
31145
|
export const marketingGatewayProductStatus: PropTypes.Requireable<io.flow.internal.v0.enums.MarketingGatewayProductStatus>;
|
|
30797
31146
|
export const marketingGatewaySchemaCompatibility: PropTypes.Requireable<io.flow.internal.v0.enums.MarketingGatewaySchemaCompatibility>;
|
|
31147
|
+
export const matiasItemType: PropTypes.Requireable<io.flow.internal.v0.enums.MatiasItemType>;
|
|
30798
31148
|
export const mixedBagWeight: PropTypes.Requireable<io.flow.internal.v0.enums.MixedBagWeight>;
|
|
30799
31149
|
export const natureOfSale: PropTypes.Requireable<io.flow.internal.v0.enums.NatureOfSale>;
|
|
30800
31150
|
export const noLiabilityReasonCode: PropTypes.Requireable<io.flow.internal.v0.enums.NoLiabilityReasonCode>;
|
|
@@ -30892,6 +31242,7 @@ export const taxParty: PropTypes.Requireable<io.flow.internal.v0.enums.TaxParty>
|
|
|
30892
31242
|
export const taxTransactionType: PropTypes.Requireable<io.flow.internal.v0.enums.TaxTransactionType>;
|
|
30893
31243
|
export const timeseriesType: PropTypes.Requireable<io.flow.internal.v0.enums.TimeseriesType>;
|
|
30894
31244
|
export const trackingIntegrationType: PropTypes.Requireable<io.flow.internal.v0.enums.TrackingIntegrationType>;
|
|
31245
|
+
export const trackingProcessingFailureClassification: PropTypes.Requireable<io.flow.internal.v0.enums.TrackingProcessingFailureClassification>;
|
|
30895
31246
|
export const transactionPostingMethod: PropTypes.Requireable<io.flow.internal.v0.enums.TransactionPostingMethod>;
|
|
30896
31247
|
export const transferMethod: PropTypes.Requireable<io.flow.internal.v0.enums.TransferMethod>;
|
|
30897
31248
|
export const trueupTransactionType: PropTypes.Requireable<io.flow.internal.v0.enums.TrueupTransactionType>;
|
|
@@ -30906,6 +31257,8 @@ export const accountDepositRule: PropTypes.Requireable<io.flow.internal.v0.model
|
|
|
30906
31257
|
export const accountDepositRuleForm: PropTypes.Requireable<io.flow.internal.v0.models.AccountDepositRuleForm>;
|
|
30907
31258
|
export const accountOrdersExportRequest: PropTypes.Requireable<io.flow.internal.v0.models.AccountOrdersExportRequest>;
|
|
30908
31259
|
export const accountOrigin: PropTypes.Requireable<io.flow.internal.v0.models.AccountOrigin>;
|
|
31260
|
+
export const accountPaymentHold: PropTypes.Requireable<io.flow.internal.v0.models.AccountPaymentHold>;
|
|
31261
|
+
export const accountPaymentHoldForm: PropTypes.Requireable<io.flow.internal.v0.models.AccountPaymentHoldForm>;
|
|
30909
31262
|
export const accountProcessingRateForm: PropTypes.Requireable<io.flow.internal.v0.models.AccountProcessingRateForm>;
|
|
30910
31263
|
export const accountProcessingRates: PropTypes.Requireable<io.flow.internal.v0.models.AccountProcessingRates>;
|
|
30911
31264
|
export const accountProcessingRatesDeleted: PropTypes.Requireable<io.flow.internal.v0.models.AccountProcessingRatesDeleted>;
|
|
@@ -30922,7 +31275,9 @@ export const accountSummary: PropTypes.Requireable<io.flow.internal.v0.models.Ac
|
|
|
30922
31275
|
export const accountTransactionsExportRequest: PropTypes.Requireable<io.flow.internal.v0.models.AccountTransactionsExportRequest>;
|
|
30923
31276
|
export const accountUpserted: PropTypes.Requireable<io.flow.internal.v0.models.AccountUpserted>;
|
|
30924
31277
|
export const accountUpsertedV2: PropTypes.Requireable<io.flow.internal.v0.models.AccountUpsertedV2>;
|
|
31278
|
+
export const accountingFulfillmentMetadata: PropTypes.Requireable<io.flow.internal.v0.models.AccountingFulfillmentMetadata>;
|
|
30925
31279
|
export const actionQuantity: PropTypes.Requireable<io.flow.internal.v0.models.ActionQuantity>;
|
|
31280
|
+
export const additionalImportTax: PropTypes.Requireable<io.flow.internal.v0.models.AdditionalImportTax>;
|
|
30926
31281
|
export const addressConfigurationProvinceSetting: PropTypes.Requireable<io.flow.internal.v0.models.AddressConfigurationProvinceSetting>;
|
|
30927
31282
|
export const addressConfigurationSetting: PropTypes.Requireable<io.flow.internal.v0.models.AddressConfigurationSetting>;
|
|
30928
31283
|
export const addressConfigurationSettingForm: PropTypes.Requireable<io.flow.internal.v0.models.AddressConfigurationSettingForm>;
|
|
@@ -31029,13 +31384,6 @@ export const billingOrganizationSettings: PropTypes.Requireable<io.flow.internal
|
|
|
31029
31384
|
export const billingOrganizationSettingsDeleted: PropTypes.Requireable<io.flow.internal.v0.models.BillingOrganizationSettingsDeleted>;
|
|
31030
31385
|
export const billingOrganizationSettingsUpserted: PropTypes.Requireable<io.flow.internal.v0.models.BillingOrganizationSettingsUpserted>;
|
|
31031
31386
|
export const billingStatementAttachment: PropTypes.Requireable<io.flow.internal.v0.models.BillingStatementAttachment>;
|
|
31032
|
-
export const billingStatementBatch: PropTypes.Requireable<io.flow.internal.v0.models.BillingStatementBatch>;
|
|
31033
|
-
export const billingStatementBatchDeleted: PropTypes.Requireable<io.flow.internal.v0.models.BillingStatementBatchDeleted>;
|
|
31034
|
-
export const billingStatementBatchReference: PropTypes.Requireable<io.flow.internal.v0.models.BillingStatementBatchReference>;
|
|
31035
|
-
export const billingStatementBatchStatement: PropTypes.Requireable<io.flow.internal.v0.models.BillingStatementBatchStatement>;
|
|
31036
|
-
export const billingStatementBatchStatementDeleted: PropTypes.Requireable<io.flow.internal.v0.models.BillingStatementBatchStatementDeleted>;
|
|
31037
|
-
export const billingStatementBatchStatementUpserted: PropTypes.Requireable<io.flow.internal.v0.models.BillingStatementBatchStatementUpserted>;
|
|
31038
|
-
export const billingStatementBatchUpserted: PropTypes.Requireable<io.flow.internal.v0.models.BillingStatementBatchUpserted>;
|
|
31039
31387
|
export const billingStatementDeleted: PropTypes.Requireable<io.flow.internal.v0.models.BillingStatementDeleted>;
|
|
31040
31388
|
export const billingStatementReference: PropTypes.Requireable<io.flow.internal.v0.models.BillingStatementReference>;
|
|
31041
31389
|
export const billingStatementSummary: PropTypes.Requireable<io.flow.internal.v0.models.BillingStatementSummary>;
|
|
@@ -31090,6 +31438,10 @@ export const browserBundlePaymentMethods: PropTypes.Requireable<io.flow.internal
|
|
|
31090
31438
|
export const bulkClassificationAction: PropTypes.Requireable<io.flow.internal.v0.models.BulkClassificationAction>;
|
|
31091
31439
|
export const byRuleSnapshot: PropTypes.Requireable<io.flow.internal.v0.models.ByRuleSnapshot>;
|
|
31092
31440
|
export const calculatedTaxAmount: PropTypes.Requireable<io.flow.internal.v0.models.CalculatedTaxAmount>;
|
|
31441
|
+
export const calculationStampingLineItem: PropTypes.Requireable<io.flow.internal.v0.models.CalculationStampingLineItem>;
|
|
31442
|
+
export const calculationStampingShippingLine: PropTypes.Requireable<io.flow.internal.v0.models.CalculationStampingShippingLine>;
|
|
31443
|
+
export const calculationStep: PropTypes.Requireable<io.flow.internal.v0.models.CalculationStep>;
|
|
31444
|
+
export const calculationTotal: PropTypes.Requireable<io.flow.internal.v0.models.CalculationTotal>;
|
|
31093
31445
|
export const calculatorDtcePostBody: PropTypes.Requireable<io.flow.internal.v0.models.CalculatorDtcePostBody>;
|
|
31094
31446
|
export const calculatorDtceProduct: PropTypes.Requireable<io.flow.internal.v0.models.CalculatorDtceProduct>;
|
|
31095
31447
|
export const calculatorOrganizationSettings: PropTypes.Requireable<io.flow.internal.v0.models.CalculatorOrganizationSettings>;
|
|
@@ -31588,6 +31940,7 @@ export const commercialInvoiceComparison: PropTypes.Requireable<io.flow.internal
|
|
|
31588
31940
|
export const commercialInvoiceInternal: PropTypes.Requireable<io.flow.internal.v0.models.CommercialInvoiceInternal>;
|
|
31589
31941
|
export const commercialInvoiceInternalDeleted: PropTypes.Requireable<io.flow.internal.v0.models.CommercialInvoiceInternalDeleted>;
|
|
31590
31942
|
export const commercialInvoiceInternalUpserted: PropTypes.Requireable<io.flow.internal.v0.models.CommercialInvoiceInternalUpserted>;
|
|
31943
|
+
export const commercialInvoiceSummary: PropTypes.Requireable<io.flow.internal.v0.models.CommercialInvoiceSummary>;
|
|
31591
31944
|
export const companyReference: PropTypes.Requireable<io.flow.internal.v0.models.CompanyReference>;
|
|
31592
31945
|
export const compliance: PropTypes.Requireable<io.flow.internal.v0.models.Compliance>;
|
|
31593
31946
|
export const components: PropTypes.Requireable<io.flow.internal.v0.models.Components>;
|
|
@@ -31810,6 +32163,7 @@ export const fiservMerchant: PropTypes.Requireable<io.flow.internal.v0.models.Fi
|
|
|
31810
32163
|
export const fiservMerchantModificationForm: PropTypes.Requireable<io.flow.internal.v0.models.FiservMerchantModificationForm>;
|
|
31811
32164
|
export const fiservMerchantPutForm: PropTypes.Requireable<io.flow.internal.v0.models.FiservMerchantPutForm>;
|
|
31812
32165
|
export const flowAccount: PropTypes.Requireable<io.flow.internal.v0.models.FlowAccount>;
|
|
32166
|
+
export const flowBillingStatement: PropTypes.Requireable<io.flow.internal.v0.models.FlowBillingStatement>;
|
|
31813
32167
|
export const flowChannelOrganization: PropTypes.Requireable<io.flow.internal.v0.models.FlowChannelOrganization>;
|
|
31814
32168
|
export const flowLabProject: PropTypes.Requireable<io.flow.internal.v0.models.FlowLabProject>;
|
|
31815
32169
|
export const flowLabProjectPostForm: PropTypes.Requireable<io.flow.internal.v0.models.FlowLabProjectPostForm>;
|
|
@@ -31847,6 +32201,7 @@ export const fulfillment: PropTypes.Requireable<io.flow.internal.v0.models.Fulfi
|
|
|
31847
32201
|
export const fulfillmentActionForm: PropTypes.Requireable<io.flow.internal.v0.models.FulfillmentActionForm>;
|
|
31848
32202
|
export const fulfillmentBusiness: PropTypes.Requireable<io.flow.internal.v0.models.FulfillmentBusiness>;
|
|
31849
32203
|
export const fulfillmentCancel: PropTypes.Requireable<io.flow.internal.v0.models.FulfillmentCancel>;
|
|
32204
|
+
export const fulfillmentDeleted: PropTypes.Requireable<io.flow.internal.v0.models.FulfillmentDeleted>;
|
|
31850
32205
|
export const fulfillmentInternalExperienceReference: PropTypes.Requireable<io.flow.internal.v0.models.FulfillmentInternalExperienceReference>;
|
|
31851
32206
|
export const fulfillmentOrigin: PropTypes.Requireable<io.flow.internal.v0.models.FulfillmentOrigin>;
|
|
31852
32207
|
export const fulfillmentProofExternalFulfillmentProofReference: PropTypes.Requireable<io.flow.internal.v0.models.FulfillmentProofExternalFulfillmentProofReference>;
|
|
@@ -31860,6 +32215,7 @@ export const fulfillmentSnapshot: PropTypes.Requireable<io.flow.internal.v0.mode
|
|
|
31860
32215
|
export const fulfillmentSubsidyBreakdown: PropTypes.Requireable<io.flow.internal.v0.models.FulfillmentSubsidyBreakdown>;
|
|
31861
32216
|
export const fulfillmentTriggerProof: PropTypes.Requireable<io.flow.internal.v0.models.FulfillmentTriggerProof>;
|
|
31862
32217
|
export const fulfillmentTriggerTime: PropTypes.Requireable<io.flow.internal.v0.models.FulfillmentTriggerTime>;
|
|
32218
|
+
export const fulfillmentUpserted: PropTypes.Requireable<io.flow.internal.v0.models.FulfillmentUpserted>;
|
|
31863
32219
|
export const fxFee: PropTypes.Requireable<io.flow.internal.v0.models.FxFee>;
|
|
31864
32220
|
export const fxRevenueRecognition: PropTypes.Requireable<io.flow.internal.v0.models.FxRevenueRecognition>;
|
|
31865
32221
|
export const fxRevenueRecognitionAccount: PropTypes.Requireable<io.flow.internal.v0.models.FxRevenueRecognitionAccount>;
|
|
@@ -32147,6 +32503,10 @@ export const marketingGatewayProductDatasourceSummary: PropTypes.Requireable<io.
|
|
|
32147
32503
|
export const marketingGatewaySchemaSummary: PropTypes.Requireable<io.flow.internal.v0.models.MarketingGatewaySchemaSummary>;
|
|
32148
32504
|
export const marketingGatewaySupportedChannelDetails: PropTypes.Requireable<io.flow.internal.v0.models.MarketingGatewaySupportedChannelDetails>;
|
|
32149
32505
|
export const marketsOrder: PropTypes.Requireable<io.flow.internal.v0.models.MarketsOrder>;
|
|
32506
|
+
export const matiasItem: PropTypes.Requireable<io.flow.internal.v0.models.MatiasItem>;
|
|
32507
|
+
export const matiasItemDeleted: PropTypes.Requireable<io.flow.internal.v0.models.MatiasItemDeleted>;
|
|
32508
|
+
export const matiasItemForm: PropTypes.Requireable<io.flow.internal.v0.models.MatiasItemForm>;
|
|
32509
|
+
export const matiasItemUpserted: PropTypes.Requireable<io.flow.internal.v0.models.MatiasItemUpserted>;
|
|
32150
32510
|
export const merchant: PropTypes.Requireable<io.flow.internal.v0.models.Merchant>;
|
|
32151
32511
|
export const merchantApplicationSummaries: PropTypes.Requireable<io.flow.internal.v0.models.MerchantApplicationSummaries>;
|
|
32152
32512
|
export const merchantApplicationSummary: PropTypes.Requireable<io.flow.internal.v0.models.MerchantApplicationSummary>;
|
|
@@ -32162,6 +32522,7 @@ export const merchantSubsidies: PropTypes.Requireable<io.flow.internal.v0.models
|
|
|
32162
32522
|
export const merchantSummary: PropTypes.Requireable<io.flow.internal.v0.models.MerchantSummary>;
|
|
32163
32523
|
export const merchantTransactions: PropTypes.Requireable<io.flow.internal.v0.models.MerchantTransactions>;
|
|
32164
32524
|
export const merchantUpserted: PropTypes.Requireable<io.flow.internal.v0.models.MerchantUpserted>;
|
|
32525
|
+
export const messageStamp: PropTypes.Requireable<io.flow.internal.v0.models.MessageStamp>;
|
|
32165
32526
|
export const metadataProposition: PropTypes.Requireable<io.flow.internal.v0.models.MetadataProposition>;
|
|
32166
32527
|
export const metadataRatecard: PropTypes.Requireable<io.flow.internal.v0.models.MetadataRatecard>;
|
|
32167
32528
|
export const nextBillingStatement: PropTypes.Requireable<io.flow.internal.v0.models.NextBillingStatement>;
|
|
@@ -32211,6 +32572,7 @@ export const orderPaymentAuthorization: PropTypes.Requireable<io.flow.internal.v
|
|
|
32211
32572
|
export const orderPlaced: PropTypes.Requireable<io.flow.internal.v0.models.OrderPlaced>;
|
|
32212
32573
|
export const orderRatesDataV3: PropTypes.Requireable<io.flow.internal.v0.models.OrderRatesDataV3>;
|
|
32213
32574
|
export const orderRatesPublishedV3: PropTypes.Requireable<io.flow.internal.v0.models.OrderRatesPublishedV3>;
|
|
32575
|
+
export const orderReference: PropTypes.Requireable<io.flow.internal.v0.models.OrderReference>;
|
|
32214
32576
|
export const orderRevenueRegionChart: PropTypes.Requireable<io.flow.internal.v0.models.OrderRevenueRegionChart>;
|
|
32215
32577
|
export const orderRevenueRegionDataPoint: PropTypes.Requireable<io.flow.internal.v0.models.OrderRevenueRegionDataPoint>;
|
|
32216
32578
|
export const orderRevenueTimelineChart: PropTypes.Requireable<io.flow.internal.v0.models.OrderRevenueTimelineChart>;
|
|
@@ -32223,9 +32585,13 @@ export const orderTransaction: PropTypes.Requireable<io.flow.internal.v0.models.
|
|
|
32223
32585
|
export const orderTransactionDeleted: PropTypes.Requireable<io.flow.internal.v0.models.OrderTransactionDeleted>;
|
|
32224
32586
|
export const orderTransactionUpserted: PropTypes.Requireable<io.flow.internal.v0.models.OrderTransactionUpserted>;
|
|
32225
32587
|
export const orderValidation: PropTypes.Requireable<io.flow.internal.v0.models.OrderValidation>;
|
|
32588
|
+
export const orderValidationDeleted: PropTypes.Requireable<io.flow.internal.v0.models.OrderValidationDeleted>;
|
|
32226
32589
|
export const orderValidationError: PropTypes.Requireable<io.flow.internal.v0.models.OrderValidationError>;
|
|
32227
32590
|
export const orderValidationFailure: PropTypes.Requireable<io.flow.internal.v0.models.OrderValidationFailure>;
|
|
32591
|
+
export const orderValidationFailureDeleted: PropTypes.Requireable<io.flow.internal.v0.models.OrderValidationFailureDeleted>;
|
|
32228
32592
|
export const orderValidationFailureSummary: PropTypes.Requireable<io.flow.internal.v0.models.OrderValidationFailureSummary>;
|
|
32593
|
+
export const orderValidationFailureUpserted: PropTypes.Requireable<io.flow.internal.v0.models.OrderValidationFailureUpserted>;
|
|
32594
|
+
export const orderValidationUpserted: PropTypes.Requireable<io.flow.internal.v0.models.OrderValidationUpserted>;
|
|
32229
32595
|
export const organizationAccount: PropTypes.Requireable<io.flow.internal.v0.models.OrganizationAccount>;
|
|
32230
32596
|
export const organizationAccountDeleted: PropTypes.Requireable<io.flow.internal.v0.models.OrganizationAccountDeleted>;
|
|
32231
32597
|
export const organizationAccountUpsertedV2: PropTypes.Requireable<io.flow.internal.v0.models.OrganizationAccountUpsertedV2>;
|
|
@@ -32322,6 +32688,7 @@ export const paypalRefundDeleted: PropTypes.Requireable<io.flow.internal.v0.mode
|
|
|
32322
32688
|
export const paypalRefundUpserted: PropTypes.Requireable<io.flow.internal.v0.models.PaypalRefundUpserted>;
|
|
32323
32689
|
export const pendingBankPayment: PropTypes.Requireable<io.flow.internal.v0.models.PendingBankPayment>;
|
|
32324
32690
|
export const pendingBankPaymentDetail: PropTypes.Requireable<io.flow.internal.v0.models.PendingBankPaymentDetail>;
|
|
32691
|
+
export const pendingOrder: PropTypes.Requireable<io.flow.internal.v0.models.PendingOrder>;
|
|
32325
32692
|
export const phraseClassified: PropTypes.Requireable<io.flow.internal.v0.models.PhraseClassified>;
|
|
32326
32693
|
export const phrasePropagated: PropTypes.Requireable<io.flow.internal.v0.models.PhrasePropagated>;
|
|
32327
32694
|
export const pingRequestForm: PropTypes.Requireable<io.flow.internal.v0.models.PingRequestForm>;
|
|
@@ -32366,7 +32733,6 @@ export const proofOfPostingFulfilled: PropTypes.Requireable<io.flow.internal.v0.
|
|
|
32366
32733
|
export const proofOfPostingOrderCancellation: PropTypes.Requireable<io.flow.internal.v0.models.ProofOfPostingOrderCancellation>;
|
|
32367
32734
|
export const proofOfPostingOrderCombinedShipment: PropTypes.Requireable<io.flow.internal.v0.models.ProofOfPostingOrderCombinedShipment>;
|
|
32368
32735
|
export const proofOfPostingShippingNotification: PropTypes.Requireable<io.flow.internal.v0.models.ProofOfPostingShippingNotification>;
|
|
32369
|
-
export const queuedRecord: PropTypes.Requireable<io.flow.internal.v0.models.QueuedRecord>;
|
|
32370
32736
|
export const quote: PropTypes.Requireable<io.flow.internal.v0.models.Quote>;
|
|
32371
32737
|
export const quoteDeleted: PropTypes.Requireable<io.flow.internal.v0.models.QuoteDeleted>;
|
|
32372
32738
|
export const quoteRequest: PropTypes.Requireable<io.flow.internal.v0.models.QuoteRequest>;
|
|
@@ -32668,6 +33034,7 @@ export const spotRateVersion: PropTypes.Requireable<io.flow.internal.v0.models.S
|
|
|
32668
33034
|
export const standaloneAttachment: PropTypes.Requireable<io.flow.internal.v0.models.StandaloneAttachment>;
|
|
32669
33035
|
export const standaloneAttachmentDeleted: PropTypes.Requireable<io.flow.internal.v0.models.StandaloneAttachmentDeleted>;
|
|
32670
33036
|
export const standaloneAttachmentUpserted: PropTypes.Requireable<io.flow.internal.v0.models.StandaloneAttachmentUpserted>;
|
|
33037
|
+
export const statementCreationMetadata: PropTypes.Requireable<io.flow.internal.v0.models.StatementCreationMetadata>;
|
|
32671
33038
|
export const storeConnection: PropTypes.Requireable<io.flow.internal.v0.models.StoreConnection>;
|
|
32672
33039
|
export const storeConnectionForm: PropTypes.Requireable<io.flow.internal.v0.models.StoreConnectionForm>;
|
|
32673
33040
|
export const stringFeatureDefaultValue: PropTypes.Requireable<io.flow.internal.v0.models.StringFeatureDefaultValue>;
|
|
@@ -32716,6 +33083,7 @@ export const tamItemUpserted: PropTypes.Requireable<io.flow.internal.v0.models.T
|
|
|
32716
33083
|
export const tariffCodeDuty: PropTypes.Requireable<io.flow.internal.v0.models.TariffCodeDuty>;
|
|
32717
33084
|
export const tariffCodesExport: PropTypes.Requireable<io.flow.internal.v0.models.TariffCodesExport>;
|
|
32718
33085
|
export const tariffEligibility: PropTypes.Requireable<io.flow.internal.v0.models.TariffEligibility>;
|
|
33086
|
+
export const task: PropTypes.Requireable<io.flow.internal.v0.models.Task>;
|
|
32719
33087
|
export const taskCount: PropTypes.Requireable<io.flow.internal.v0.models.TaskCount>;
|
|
32720
33088
|
export const taskImport: PropTypes.Requireable<io.flow.internal.v0.models.TaskImport>;
|
|
32721
33089
|
export const taskItemUpserted: PropTypes.Requireable<io.flow.internal.v0.models.TaskItemUpserted>;
|
|
@@ -32757,6 +33125,9 @@ export const trackingLabelDeleted: PropTypes.Requireable<io.flow.internal.v0.mod
|
|
|
32757
33125
|
export const trackingLabelEventDeletedV2: PropTypes.Requireable<io.flow.internal.v0.models.TrackingLabelEventDeletedV2>;
|
|
32758
33126
|
export const trackingLabelEventUpsertedV2: PropTypes.Requireable<io.flow.internal.v0.models.TrackingLabelEventUpsertedV2>;
|
|
32759
33127
|
export const trackingLabelUpserted: PropTypes.Requireable<io.flow.internal.v0.models.TrackingLabelUpserted>;
|
|
33128
|
+
export const trackingProcessingError: PropTypes.Requireable<io.flow.internal.v0.models.TrackingProcessingError>;
|
|
33129
|
+
export const trackingProcessingErrorDeleted: PropTypes.Requireable<io.flow.internal.v0.models.TrackingProcessingErrorDeleted>;
|
|
33130
|
+
export const trackingProcessingErrorUpserted: PropTypes.Requireable<io.flow.internal.v0.models.TrackingProcessingErrorUpserted>;
|
|
32760
33131
|
export const trackingRequest: PropTypes.Requireable<io.flow.internal.v0.models.TrackingRequest>;
|
|
32761
33132
|
export const trackingRequestUpserted: PropTypes.Requireable<io.flow.internal.v0.models.TrackingRequestUpserted>;
|
|
32762
33133
|
export const trackingResponse: PropTypes.Requireable<io.flow.internal.v0.models.TrackingResponse>;
|
|
@@ -32815,6 +33186,7 @@ export const authorizationPayload: PropTypes.Requireable<io.flow.internal.v0.uni
|
|
|
32815
33186
|
export const authorizedOrderCharge: PropTypes.Requireable<io.flow.internal.v0.unions.AuthorizedOrderCharge>;
|
|
32816
33187
|
export const blazeConsumerMessage: PropTypes.Requireable<io.flow.internal.v0.unions.BlazeConsumerMessage>;
|
|
32817
33188
|
export const blazeProviderMessage: PropTypes.Requireable<io.flow.internal.v0.unions.BlazeProviderMessage>;
|
|
33189
|
+
export const calculatorStamp: PropTypes.Requireable<io.flow.internal.v0.unions.CalculatorStamp>;
|
|
32818
33190
|
export const carrierChargeForm: PropTypes.Requireable<io.flow.internal.v0.unions.CarrierChargeForm>;
|
|
32819
33191
|
export const carrierCredentials: PropTypes.Requireable<io.flow.internal.v0.unions.CarrierCredentials>;
|
|
32820
33192
|
export const channelRateMetadata: PropTypes.Requireable<io.flow.internal.v0.unions.ChannelRateMetadata>;
|
|
@@ -32962,6 +33334,7 @@ export const spotRateMetadata: PropTypes.Requireable<io.flow.internal.v0.unions.
|
|
|
32962
33334
|
export const tariffEligibilityData: PropTypes.Requireable<io.flow.internal.v0.unions.TariffEligibilityData>;
|
|
32963
33335
|
export const tariffEligibilityForm: PropTypes.Requireable<io.flow.internal.v0.unions.TariffEligibilityForm>;
|
|
32964
33336
|
export const taskData: PropTypes.Requireable<io.flow.internal.v0.unions.TaskData>;
|
|
33337
|
+
export const taskMetadata: PropTypes.Requireable<io.flow.internal.v0.unions.TaskMetadata>;
|
|
32965
33338
|
export const taxAmount: PropTypes.Requireable<io.flow.internal.v0.unions.TaxAmount>;
|
|
32966
33339
|
export const tracker: PropTypes.Requireable<io.flow.internal.v0.unions.Tracker>;
|
|
32967
33340
|
export const transaction: PropTypes.Requireable<io.flow.internal.v0.unions.Transaction>;
|