@flowio/api-internal-prop-types 9.24.65 → 9.24.67

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.
@@ -237,6 +237,12 @@ declare namespace io.flow.RESERVED_WORD_return.v0.unions {
237
237
  type ReturnSource = (io.flow.RESERVED_WORD_return.v0.models.ReturnSourceFlow | io.flow.RESERVED_WORD_return.v0.models.ReturnSourceExternalVendor);
238
238
  }
239
239
 
240
+ declare namespace io.flow.units.v0.enums {
241
+ type UnitOfLength = 'millimeter' | 'centimeter' | 'inch' | 'foot' | 'meter';
242
+ type UnitOfVolume = 'cubic_inch' | 'cubic_meter';
243
+ type UnitOfWeight = 'gram' | 'kilogram' | 'ounce' | 'pound';
244
+ }
245
+
240
246
  declare namespace io.flow.order.price.v0.enums {
241
247
  type OrderPriceDetailComponentKey = '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' | 'shipping_discount' | 'order_discount' | 'subtotal_percent_sales_margin' | 'subtotal_vat_percent_sales_margin' | 'subtotal_duty_percent_sales_margin' | 'vat_subsidy' | 'duty_subsidy' | 'remote_area_surcharge' | 'fuel_surcharge' | 'emergency_situation_surcharge' | 'peak_surcharge' | 'duties_taxes_paid_surcharge';
242
248
  type OrderPriceDetailKey = 'adjustment' | 'subtotal' | 'vat' | 'duty' | 'shipping' | 'insurance' | 'discount' | 'surcharges';
@@ -266,179 +272,6 @@ declare namespace io.flow.order.price.v0.models {
266
272
  }
267
273
  }
268
274
 
269
- declare namespace io.flow.error.v0.enums {
270
- type GenericErrorCode = 'generic_error' | 'client_error' | 'server_error';
271
- }
272
-
273
- declare namespace io.flow.error.v0.models {
274
- interface GenericError {
275
- readonly 'code': io.flow.error.v0.enums.GenericErrorCode;
276
- readonly 'messages': string[];
277
- }
278
- }
279
-
280
- declare namespace io.flow.price.v0.enums {
281
- type LevyComponent = 'goods' | 'duty' | 'insurance' | 'freight' | 'vat';
282
- type LevyStrategy = 'minimum' | 'average' | 'maximum';
283
- type PriceAccuracy = 'calculated' | 'estimated_from_partial_destination';
284
- type PriceDetailComponentKey = 'base_price' | 'discount' | 'currency_margin' | 'percent_item_margin' | 'fixed_item_margin' | 'duties_item_price' | 'duties_added_margin' | 'duties_rounding' | 'duties_deminimis' | 'vat_item_price' | 'vat_added_margin' | 'vat_rounding' | 'vat_duties_item_price' | 'vat_duties_added_margin' | 'vat_duties_rounding' | 'vat_deminimis' | 'item_price_percent_sales_margin' | 'margins_percent_sales_margin' | 'rounding_percent_sales_margin' | 'vat_percent_sales_margin' | 'vat_duty_percent_sales_margin' | 'duty_percent_sales_margin';
285
- type PriceDetailKey = 'item_price' | 'margins' | 'vat' | 'duty' | 'rounding' | 'adjustment';
286
- type PricingLevySetting = 'included' | 'displayed' | 'ignored';
287
- }
288
-
289
- declare namespace io.flow.price.v0.models {
290
- interface CurrencyFormat {
291
- readonly 'symbol': io.flow.common.v0.enums.CurrencySymbolFormat;
292
- readonly 'label_formatters': io.flow.common.v0.enums.CurrencyLabelFormatter[];
293
- }
294
-
295
- interface DeminimisPerItem {
296
- readonly 'discriminator': 'deminimis_per_item';
297
- readonly 'currency': string;
298
- readonly 'minimum'?: number;
299
- readonly 'maximum'?: number;
300
- }
301
-
302
- interface DeminimisSimple {
303
- readonly 'discriminator': 'deminimis_simple';
304
- readonly 'value'?: number;
305
- readonly 'currency': string;
306
- readonly 'components': io.flow.price.v0.enums.LevyComponent[];
307
- readonly 'minimum'?: number;
308
- }
309
-
310
- interface Duty {
311
- readonly 'rate': number;
312
- readonly 'components': io.flow.price.v0.enums.LevyComponent[];
313
- readonly 'deminimis'?: io.flow.price.v0.unions.Deminimis;
314
- readonly 'name'?: string;
315
- }
316
-
317
- interface LocalPriceDetails {
318
- readonly 'base': io.flow.price.v0.models.PriceDetails;
319
- readonly 'local': io.flow.price.v0.models.PriceDetails;
320
- readonly 'discount'?: io.flow.price.v0.models.PriceDetail;
321
- readonly 'local_before_discount'?: io.flow.price.v0.models.PriceDetail;
322
- }
323
-
324
- interface PriceBook {
325
- readonly 'id': string;
326
- readonly 'key': string;
327
- readonly 'currency': string;
328
- readonly 'name': string;
329
- readonly 'includes': io.flow.common.v0.models.IncludedLevies;
330
- readonly 'status': io.flow.common.v0.enums.PriceBookStatus;
331
- }
332
-
333
- interface PriceBookForm {
334
- readonly 'currency': string;
335
- readonly 'name': string;
336
- readonly 'includes': io.flow.common.v0.enums.IncludedLevyKey;
337
- readonly 'status'?: io.flow.common.v0.enums.PriceBookStatus;
338
- }
339
-
340
- interface PriceBookItem {
341
- readonly 'id': string;
342
- readonly 'key': string;
343
- readonly 'price_book': io.flow.price.v0.models.PriceBookReference;
344
- readonly 'price': io.flow.common.v0.models.Price;
345
- readonly 'item_number': string;
346
- readonly 'schedule': io.flow.price.v0.models.PriceBookItemSchedule;
347
- readonly 'item_attributes'?: Record<string, string>;
348
- }
349
-
350
- interface PriceBookItemForm {
351
- readonly 'price_book_key': string;
352
- readonly 'item_number': string;
353
- readonly 'amount': number;
354
- readonly 'schedule'?: io.flow.price.v0.models.PriceBookItemSchedule;
355
- readonly 'item_attributes'?: Record<string, string>;
356
- }
357
-
358
- interface PriceBookItemQueryForm {
359
- readonly 'price_book_key': string;
360
- readonly 'item_query': string;
361
- readonly 'amount': number;
362
- readonly 'schedule'?: io.flow.price.v0.models.PriceBookItemSchedule;
363
- readonly 'item_attributes'?: Record<string, string>;
364
- }
365
-
366
- interface PriceBookItemSchedule {
367
- readonly 'starts_at': string;
368
- readonly 'ends_at'?: string;
369
- }
370
-
371
- interface PriceBookReference {
372
- readonly 'id': string;
373
- readonly 'key': string;
374
- }
375
-
376
- interface PriceCheck {
377
- readonly 'display': io.flow.price.v0.models.LocalPriceDetails;
378
- readonly 'final': io.flow.price.v0.models.LocalPriceDetails;
379
- }
380
-
381
- interface PriceDetail {
382
- readonly 'key': io.flow.price.v0.enums.PriceDetailKey;
383
- readonly 'components': io.flow.price.v0.models.PriceDetailComponent[];
384
- readonly 'amount': number;
385
- readonly 'label': string;
386
- readonly 'name'?: string;
387
- readonly 'basis'?: number;
388
- }
389
-
390
- interface PriceDetailComponent {
391
- readonly 'key': io.flow.price.v0.enums.PriceDetailComponentKey;
392
- readonly 'amount': number;
393
- readonly 'label': string;
394
- readonly 'name'?: string;
395
- }
396
-
397
- interface PriceDetails {
398
- readonly 'currency': string;
399
- readonly 'item_price': io.flow.price.v0.models.PriceDetail;
400
- readonly 'margins': io.flow.price.v0.models.PriceDetail;
401
- readonly 'vat': io.flow.price.v0.models.PriceDetail;
402
- readonly 'duty': io.flow.price.v0.models.PriceDetail;
403
- readonly 'rounding': io.flow.price.v0.models.PriceDetail;
404
- readonly 'price': io.flow.common.v0.models.Price;
405
- readonly 'total': io.flow.common.v0.models.Price;
406
- readonly 'adjustment'?: io.flow.price.v0.models.PriceDetail;
407
- }
408
-
409
- interface PriceEquation {
410
- readonly 'contracted_rate': number;
411
- readonly 'rate': number;
412
- readonly 'pricing': io.flow.price.v0.models.Pricing;
413
- readonly 'base_price': number;
414
- readonly 'discount': number;
415
- readonly 'fixed_margin': number;
416
- readonly 'percent_margin': number;
417
- readonly 'insurance': number;
418
- readonly 'freight': number;
419
- readonly 'duty'?: io.flow.price.v0.models.Duty;
420
- readonly 'tax'?: io.flow.price.v0.models.Tax;
421
- readonly 'percent_sales_margin': number;
422
- }
423
-
424
- interface Pricing {
425
- readonly 'vat': io.flow.price.v0.enums.PricingLevySetting;
426
- readonly 'duty': io.flow.price.v0.enums.PricingLevySetting;
427
- readonly 'rounding'?: io.flow.common.v0.models.Rounding;
428
- }
429
-
430
- interface Tax {
431
- readonly 'name': string;
432
- readonly 'rate': number;
433
- readonly 'components': io.flow.price.v0.enums.LevyComponent[];
434
- readonly 'deminimis'?: io.flow.price.v0.unions.Deminimis;
435
- }
436
- }
437
-
438
- declare namespace io.flow.price.v0.unions {
439
- type Deminimis = (io.flow.price.v0.models.DeminimisSimple | io.flow.price.v0.models.DeminimisPerItem);
440
- }
441
-
442
275
  declare namespace io.flow.channel.v0.enums {
443
276
  type ChannelCurrencyCapability = 'payment_authorizations' | 'settlement_currency';
444
277
  }
@@ -1180,6 +1013,7 @@ declare namespace io.flow.payment.v0.enums {
1180
1013
  type RefundStatus = 'pending' | 'succeeded' | 'failed' | 'canceled';
1181
1014
  type ReversalErrorCode = 'amount_exceeds_balance' | 'authorization_declined' | 'authorization_expired' | 'invalid_authorization' | 'invalid_key' | 'invalid_amount' | 'invalid_currency' | 'no_remaining_balance' | 'partial_reversal_not_supported' | 'unknown';
1182
1015
  type ReversalStatus = 'pending' | 'processed' | 'failed';
1016
+ type StoredMethodUsageStep = 'initial' | 'subsequent';
1183
1017
  type ThreeDSecureCode = 'verified' | 'not_verified' | 'failed';
1184
1018
  type ThreedsTwoChallengeViewport = 'xxx_small' | 'xx_small' | 'x_small' | 'small' | 'fullscreen';
1185
1019
  type TokenType = 'permanent' | 'one_time';
@@ -1431,6 +1265,8 @@ declare namespace io.flow.payment.v0.models {
1431
1265
  readonly 'expires_at'?: string;
1432
1266
  readonly 'base'?: io.flow.common.v0.models.Money;
1433
1267
  readonly 'processor'?: io.flow.payment.v0.unions.ExpandablePaymentProcessor;
1268
+ readonly 'stored_method_usage_step'?: io.flow.payment.v0.enums.StoredMethodUsageStep;
1269
+ readonly 'authorized_at'?: string;
1434
1270
  }
1435
1271
 
1436
1272
  interface CardBrowserActionConfiguration {
@@ -1565,6 +1401,7 @@ declare namespace io.flow.payment.v0.models {
1565
1401
  readonly 'cookie_created_at'?: number;
1566
1402
  readonly 'session_duration'?: number;
1567
1403
  readonly 'fingerprint'?: string;
1404
+ readonly 'fraud_references'?: Record<string, string>;
1568
1405
  }
1569
1406
 
1570
1407
  interface DirectAuthorizationForm {
@@ -1710,6 +1547,7 @@ declare namespace io.flow.payment.v0.models {
1710
1547
  readonly 'base'?: io.flow.common.v0.models.Money;
1711
1548
  readonly 'processor'?: io.flow.payment.v0.unions.ExpandablePaymentProcessor;
1712
1549
  readonly 'confirmation_details'?: io.flow.payment.v0.unions.ConfirmationDetails;
1550
+ readonly 'authorized_at'?: string;
1713
1551
  }
1714
1552
 
1715
1553
  interface OnlinePaymentAuthorizationForm {
@@ -2154,11 +1992,13 @@ declare namespace io.flow.field.validation.v0.unions {
2154
1992
 
2155
1993
  declare namespace io.flow.stripe.v0.enums {
2156
1994
  type AccountType = 'platform' | 'custom' | 'standard' | 'express';
1995
+ type ApplePayType = 'apple_pay' | 'apple_pay_later';
2157
1996
  type CancellationReason = 'abandoned' | 'automatic' | 'duplicate' | 'failed_invoice' | 'fraudulent' | 'requested_by_customer' | 'void_invoice';
2158
1997
  type CaptureMethod = 'automatic' | 'manual';
2159
1998
  type CardBrand = 'American Express' | 'MasterCard' | 'Discover' | 'JCB' | 'Diners Club' | 'Unknown';
2160
1999
  type CardErrorCode = 'invalid_number' | 'invalid_expiry_month' | 'invalid_expiry_year' | 'invalid_cvc' | 'invalid_swipe_data' | 'incorrect_number' | 'expired_card' | 'incorrect_cvc' | 'incorrect_zip' | 'card_declined' | 'missing' | 'processing_error';
2161
2000
  type CardFundingType = 'credit' | 'debit' | 'prepaid' | 'unknown';
2001
+ type CardNetwork = 'amex' | 'cartes_bancaires' | 'diners' | 'discover' | 'eftpos_au' | 'interac' | 'jcb' | 'mastercard' | 'unionpay' | 'visa' | 'unknown';
2162
2002
  type CheckOutcome = 'pass' | 'fail' | 'unavailable' | 'unchecked';
2163
2003
  type CodeVerificationStatus = 'pending' | 'succeeded' | 'failed';
2164
2004
  type ConfirmationMethod = 'automatic' | 'manual';
@@ -2171,9 +2011,11 @@ declare namespace io.flow.stripe.v0.enums {
2171
2011
  type NextActionType = 'redirect_to_url' | 'use_stripe_sdk';
2172
2012
  type OrderItemType = 'sku' | 'tax' | 'shipping' | 'discount';
2173
2013
  type PaymentIntentStatus = 'canceled' | 'processing' | 'requires_action' | 'requires_capture' | 'requires_confirmation' | 'requires_payment_method' | 'succeeded';
2014
+ type PaymentMethodCategoryKlarna = 'pay_later' | 'pay_now' | 'pay_with_financing' | 'pay_in_installments';
2174
2015
  type PaymentMethodType = 'card' | 'card_present';
2175
2016
  type PaymentOutcomeType = 'authorized' | 'manual_review' | 'issuer_declined' | 'blocked' | 'invalid';
2176
2017
  type PaymentStatus = 'succeeded' | 'pending' | 'failed';
2018
+ 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';
2177
2019
  type RefundFailureReason = 'lost_or_stolen_card' | 'expired_or_canceled_card' | 'unknown';
2178
2020
  type RefundReason = 'duplicate' | 'fraudulent' | 'requested_by_customer';
2179
2021
  type RefundStatus = 'succeeded' | 'failed' | 'pending' | 'canceled';
@@ -2185,6 +2027,9 @@ declare namespace io.flow.stripe.v0.enums {
2185
2027
  type SourceType = 'ach_credit_transfer' | 'ach_debit' | 'alipay' | 'bancontact' | 'bitcoin' | 'card' | 'eps' | 'giropay' | 'ideal' | 'klarna' | 'multibanco' | 'p24' | 'sepa_debit' | 'sofort' | 'three_d_secure';
2186
2028
  type SourceUsageType = 'reusable' | 'single_use';
2187
2029
  type ThreeDSecureSupport = 'required' | 'recommended' | 'optional' | 'not_supported';
2030
+ type ThreeDsAuthenticationFlow = 'challenge' | 'frictionless';
2031
+ type ThreeDsResult = 'authenticated' | 'attempt_acknowledged' | 'exempted' | 'not_supported' | 'failed' | 'processing_error';
2032
+ type ThreeDsResultReason = 'card_not_enrolled' | 'network_not_supported' | 'abandoned' | 'canceled' | 'rejected' | 'bypassed' | 'protocol_error';
2188
2033
  type TokenType = 'account' | 'bank_account' | 'card' | 'pii';
2189
2034
  type UseStripeSdkType = 'three_d_secure_redirect' | 'stripe_3ds2_fingerprint';
2190
2035
  }
@@ -2234,6 +2079,16 @@ declare namespace io.flow.stripe.v0.models {
2234
2079
  readonly 'state'?: string;
2235
2080
  }
2236
2081
 
2082
+ interface ApplePay {
2083
+ readonly 'type': 'apple_pay';
2084
+ readonly 'apple_pay': io.flow.stripe.v0.models.ApplePayInformation;
2085
+ readonly 'dynamic_last4'?: string;
2086
+ }
2087
+
2088
+ interface ApplePayInformation {
2089
+ readonly 'type': io.flow.stripe.v0.enums.ApplePayType;
2090
+ }
2091
+
2237
2092
  interface Card {
2238
2093
  readonly 'id': string;
2239
2094
  readonly 'object': string;
@@ -2259,6 +2114,12 @@ declare namespace io.flow.stripe.v0.models {
2259
2114
  readonly 'tokenization_method'?: string;
2260
2115
  }
2261
2116
 
2117
+ interface CardChecks {
2118
+ readonly 'address_line1_check'?: io.flow.stripe.v0.enums.CheckOutcome;
2119
+ readonly 'address_postal_code_check'?: io.flow.stripe.v0.enums.CheckOutcome;
2120
+ readonly 'cvc_check'?: io.flow.stripe.v0.enums.CheckOutcome;
2121
+ }
2122
+
2262
2123
  interface CardRequest {
2263
2124
  readonly 'object': string;
2264
2125
  readonly 'exp_month': string;
@@ -2302,7 +2163,7 @@ declare namespace io.flow.stripe.v0.models {
2302
2163
  readonly 'payment_intent'?: string;
2303
2164
  readonly 'calculated_statement_descriptor'?: string;
2304
2165
  readonly 'statement_descriptor'?: string;
2305
- readonly 'payment_method_details'?: any/*object*/;
2166
+ readonly 'payment_method_details'?: io.flow.stripe.v0.unions.PaymentMethodDetails;
2306
2167
  }
2307
2168
 
2308
2169
  interface ChargeDestination {
@@ -2352,7 +2213,7 @@ declare namespace io.flow.stripe.v0.models {
2352
2213
  readonly 'payment_intent'?: string;
2353
2214
  readonly 'calculated_statement_descriptor'?: string;
2354
2215
  readonly 'statement_descriptor'?: string;
2355
- readonly 'payment_method_details'?: any/*object*/;
2216
+ readonly 'payment_method_details'?: io.flow.stripe.v0.unions.PaymentMethodDetails;
2356
2217
  }
2357
2218
 
2358
2219
  interface CodeVerification {
@@ -2409,12 +2270,29 @@ declare namespace io.flow.stripe.v0.models {
2409
2270
  readonly 'additional_owners'?: io.flow.stripe.v0.models.Owner[];
2410
2271
  }
2411
2272
 
2273
+ interface Masterpass {
2274
+ readonly 'type': 'masterpass';
2275
+ readonly 'masterpass': io.flow.stripe.v0.models.MasterpassInformation;
2276
+ readonly 'dynamic_last4'?: string;
2277
+ }
2278
+
2279
+ interface MasterpassInformation {
2280
+ readonly 'billing_address'?: io.flow.stripe.v0.models.Address;
2281
+ readonly 'email'?: string;
2282
+ readonly 'name'?: string;
2283
+ readonly 'shipping_address'?: io.flow.stripe.v0.models.Address;
2284
+ }
2285
+
2412
2286
  interface Metadata {
2413
2287
  readonly 'order_number'?: string;
2414
2288
  readonly 'authorization_id'?: string;
2415
2289
  readonly 'organization_id'?: string;
2416
2290
  }
2417
2291
 
2292
+ interface NetworkTokenUsed {
2293
+ readonly 'used'?: boolean;
2294
+ }
2295
+
2418
2296
  interface NextAction {
2419
2297
  readonly 'type': io.flow.stripe.v0.enums.NextActionType;
2420
2298
  readonly 'use_stripe_sdk'?: any/*object*/;
@@ -2596,6 +2474,43 @@ declare namespace io.flow.stripe.v0.models {
2596
2474
  readonly 'phone'?: string;
2597
2475
  }
2598
2476
 
2477
+ interface PaymentMethodDetailsCard {
2478
+ readonly 'type': 'card';
2479
+ readonly 'card': io.flow.stripe.v0.models.PaymentMethodDetailsCardInformation;
2480
+ }
2481
+
2482
+ interface PaymentMethodDetailsCardInformation {
2483
+ readonly 'brand'?: string;
2484
+ readonly 'checks'?: io.flow.stripe.v0.models.CardChecks;
2485
+ readonly 'country'?: string;
2486
+ readonly 'exp_month'?: number;
2487
+ readonly 'exp_year'?: number;
2488
+ readonly 'fingerprint'?: string;
2489
+ readonly 'funding'?: io.flow.stripe.v0.enums.CardFundingType;
2490
+ readonly 'installments'?: io.flow.stripe.v0.models.Plan;
2491
+ readonly 'last4'?: string;
2492
+ readonly 'mandate'?: string;
2493
+ readonly 'network'?: io.flow.stripe.v0.enums.CardNetwork;
2494
+ readonly 'network_token'?: io.flow.stripe.v0.models.NetworkTokenUsed;
2495
+ readonly 'three_d_secure'?: io.flow.stripe.v0.models.ThreeDSecureCharge;
2496
+ readonly 'capture_before'?: number;
2497
+ readonly 'description'?: string;
2498
+ readonly 'iin'?: string;
2499
+ readonly 'issuer'?: string;
2500
+ readonly 'wallet'?: io.flow.stripe.v0.unions.CardWallet;
2501
+ readonly 'network_transaction_id'?: string;
2502
+ }
2503
+
2504
+ interface PaymentMethodDetailsKlarna {
2505
+ readonly 'type': 'klarna';
2506
+ readonly 'klarna': io.flow.stripe.v0.models.PaymentMethodDetailsKlarnaInformation;
2507
+ }
2508
+
2509
+ interface PaymentMethodDetailsKlarnaInformation {
2510
+ readonly 'payment_method_category'?: io.flow.stripe.v0.enums.PaymentMethodCategoryKlarna;
2511
+ readonly 'preferred_locale'?: io.flow.stripe.v0.enums.PreferredLocaleKlarna;
2512
+ }
2513
+
2599
2514
  interface PaymentMethodForm {
2600
2515
  readonly 'type': io.flow.stripe.v0.enums.PaymentMethodType;
2601
2516
  readonly 'billing_details'?: io.flow.stripe.v0.models.PaymentMethodBillingDetails;
@@ -2618,6 +2533,12 @@ declare namespace io.flow.stripe.v0.models {
2618
2533
  readonly 'type'?: io.flow.stripe.v0.enums.PaymentOutcomeType;
2619
2534
  }
2620
2535
 
2536
+ interface Plan {
2537
+ readonly 'count'?: number;
2538
+ readonly 'interval'?: string;
2539
+ readonly 'type'?: string;
2540
+ }
2541
+
2621
2542
  interface Receiver {
2622
2543
  readonly 'address'?: string;
2623
2544
  readonly 'amount_charged'?: number;
@@ -2839,6 +2760,13 @@ declare namespace io.flow.stripe.v0.models {
2839
2760
  readonly 'customer'?: string;
2840
2761
  }
2841
2762
 
2763
+ interface ThreeDSecureCharge {
2764
+ readonly 'authentication_flow'?: io.flow.stripe.v0.enums.ThreeDsAuthenticationFlow;
2765
+ readonly 'result'?: io.flow.stripe.v0.enums.ThreeDsResult;
2766
+ readonly 'result_reason'?: io.flow.stripe.v0.enums.ThreeDsResultReason;
2767
+ readonly 'version'?: string;
2768
+ }
2769
+
2842
2770
  interface ThreeDSecureRedirect {
2843
2771
  readonly 'type': io.flow.stripe.v0.enums.UseStripeSdkType;
2844
2772
  readonly 'stripe_js': string;
@@ -2865,6 +2793,24 @@ declare namespace io.flow.stripe.v0.models {
2865
2793
  readonly 'amount'?: number;
2866
2794
  readonly 'destination'?: string;
2867
2795
  }
2796
+
2797
+ interface VisaCheckout {
2798
+ readonly 'type': 'visa_checkout';
2799
+ readonly 'visa_checkout': io.flow.stripe.v0.models.VisaCheckoutInformation;
2800
+ readonly 'dynamic_last4'?: string;
2801
+ }
2802
+
2803
+ interface VisaCheckoutInformation {
2804
+ readonly 'billing_address'?: io.flow.stripe.v0.models.Address;
2805
+ readonly 'email'?: string;
2806
+ readonly 'name'?: string;
2807
+ readonly 'shipping_address'?: io.flow.stripe.v0.models.Address;
2808
+ }
2809
+ }
2810
+
2811
+ declare namespace io.flow.stripe.v0.unions {
2812
+ type CardWallet = (io.flow.stripe.v0.models.Masterpass | io.flow.stripe.v0.models.ApplePay | io.flow.stripe.v0.models.VisaCheckout);
2813
+ type PaymentMethodDetails = (io.flow.stripe.v0.models.PaymentMethodDetailsCard | io.flow.stripe.v0.models.PaymentMethodDetailsKlarna);
2868
2814
  }
2869
2815
 
2870
2816
  declare namespace io.flow.customer.v0.enums {
@@ -2966,6 +2912,7 @@ declare namespace io.flow.label.v0.enums {
2966
2912
  type Direction = 'outbound' | 'return';
2967
2913
  type LabelRequestMethod = 'flow_web_sync' | 'channel_web_async' | 'direct_api_sync' | 'direct_api_async' | 'bridge_api_sync' | 'partner_api_sync' | 'notification_requiring_crossdock' | 'autogenerated';
2968
2914
  type LabelTriggerMethod = 'autogenerated' | 'on_demand';
2915
+ type PackageDimensionsSource = 'provided' | 'dimensions_estimated';
2969
2916
  type ShipmentRecipient = 'customer' | 'return' | 'crossdock';
2970
2917
  type TrackingNumberType = 'flow' | 'carrier';
2971
2918
  }
@@ -3009,6 +2956,7 @@ declare namespace io.flow.label.v0.models {
3009
2956
  readonly 'order_number': string;
3010
2957
  readonly 'service'?: string;
3011
2958
  readonly 'shipment_recipient'?: io.flow.label.v0.enums.ShipmentRecipient;
2959
+ readonly 'package_dimensions_source'?: io.flow.label.v0.enums.PackageDimensionsSource;
3012
2960
  }
3013
2961
 
3014
2962
  interface DetailedShippingNotificationForm {
@@ -3055,6 +3003,9 @@ declare namespace io.flow.label.v0.models {
3055
3003
  readonly 'carrier_tracking_number_url': string;
3056
3004
  readonly 'cost_estimate_source'?: io.flow.label.v0.enums.CostEstimateSource;
3057
3005
  readonly 'cost'?: io.flow.common.v0.models.Price;
3006
+ readonly 'delivered_duty'?: io.flow.common.v0.enums.DeliveredDuty;
3007
+ readonly 'taxes_owed'?: io.flow.common.v0.models.Money;
3008
+ readonly 'duties_owed'?: io.flow.common.v0.models.Money;
3058
3009
  readonly 'destination': io.flow.fulfillment.v0.models.ShippingAddress;
3059
3010
  readonly 'flow_tracking_number': string;
3060
3011
  readonly 'flow_tracking_number_url': string;
@@ -3066,6 +3017,7 @@ declare namespace io.flow.label.v0.models {
3066
3017
  readonly 'return'?: io.flow.label.v0.models.ShippingLabelDocument;
3067
3018
  readonly 'order'?: io.flow.label.v0.models.LabelOrderSummary;
3068
3019
  readonly 'package'?: io.flow.label.v0.models.ShippingLabelPackage;
3020
+ readonly 'package_dimension_source'?: io.flow.label.v0.enums.PackageDimensionsSource;
3069
3021
  readonly 'order_identifier'?: string;
3070
3022
  readonly 'fulfillment_key'?: string;
3071
3023
  readonly 'shipment_recipient': io.flow.label.v0.enums.ShipmentRecipient;
@@ -3085,9 +3037,16 @@ declare namespace io.flow.label.v0.models {
3085
3037
  readonly 'required': boolean;
3086
3038
  }
3087
3039
 
3040
+ interface ShippingLabelHopCostItemizedEstimate {
3041
+ readonly 'units': io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelUnits;
3042
+ readonly 'base': io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelBase;
3043
+ readonly 'surcharges': io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelSurcharge[];
3044
+ }
3045
+
3088
3046
  interface ShippingLabelHopSummary {
3089
3047
  readonly 'lane': io.flow.label.v0.models.ShippingLabelLaneSummary;
3090
3048
  readonly 'cost': io.flow.common.v0.models.Money;
3049
+ readonly 'itemized_estimate'?: io.flow.label.v0.models.ShippingLabelHopCostItemizedEstimate;
3091
3050
  }
3092
3051
 
3093
3052
  interface ShippingLabelLaneSummary {
@@ -3097,6 +3056,7 @@ declare namespace io.flow.label.v0.models {
3097
3056
 
3098
3057
  interface ShippingLabelPackage {
3099
3058
  readonly 'dimensions': io.flow.common.v0.models.Dimension;
3059
+ readonly 'volumetric_weight'?: number;
3100
3060
  readonly 'items': io.flow.common.v0.models.LineItemForm[];
3101
3061
  readonly 'reference_number'?: string;
3102
3062
  }
@@ -3104,6 +3064,11 @@ declare namespace io.flow.label.v0.models {
3104
3064
  interface ShippingLabelRatecardSummary {
3105
3065
  readonly 'id'?: string;
3106
3066
  readonly 'ratecard_owner': io.flow.fulfillment.v0.enums.RatecardOwner;
3067
+ readonly 'rate_level_key'?: string;
3068
+ readonly 'glbe_shipping_method_id'?: string;
3069
+ readonly 'glbe_proposition_name'?: string;
3070
+ readonly 'channel_revenue_share_percentage'?: number;
3071
+ readonly 'shopify_grc_gid'?: string;
3107
3072
  }
3108
3073
 
3109
3074
  interface ShippingLabelSummary {
@@ -3608,14 +3573,14 @@ declare namespace io.flow.external.paypal.v1.models {
3608
3573
  }
3609
3574
 
3610
3575
  interface ShippingAddress {
3611
- readonly 'recipient_name': string;
3576
+ readonly 'recipient_name'?: string;
3612
3577
  readonly 'line1': string;
3613
3578
  readonly 'line2'?: string;
3614
- readonly 'city': string;
3579
+ readonly 'city'?: string;
3615
3580
  readonly 'country_code': string;
3616
- readonly 'postal_code': string;
3581
+ readonly 'postal_code'?: string;
3617
3582
  readonly 'phone'?: string;
3618
- readonly 'state': string;
3583
+ readonly 'state'?: string;
3619
3584
  }
3620
3585
 
3621
3586
  interface SupportingInfo {
@@ -4040,7 +4005,7 @@ declare namespace io.flow.adyen.v0.models {
4040
4005
  readonly 'merchantOrderReference'?: string;
4041
4006
  readonly 'shopperInteraction': io.flow.adyen.v0.enums.ShopperInteraction;
4042
4007
  readonly 'bankAccount'?: io.flow.adyen.v0.models.BankAccount;
4043
- readonly 'additionalData'?: any/*object*/;
4008
+ readonly 'additionalData'?: io.flow.adyen.v0.models.AuthorizeRequestAdditionalData;
4044
4009
  readonly 'mpiData'?: io.flow.adyen.v0.models.ThreeDSecureData;
4045
4010
  readonly 'selectedBrand'?: string;
4046
4011
  readonly 'browserInfo'?: io.flow.adyen.v0.unions.BrowserInfo;
@@ -4048,6 +4013,7 @@ declare namespace io.flow.adyen.v0.models {
4048
4013
  readonly 'recurringProcessingModel'?: io.flow.adyen.v0.enums.RecurringProcessingModel;
4049
4014
  readonly 'mcc'?: string;
4050
4015
  readonly 'metadata'?: any/*object*/;
4016
+ readonly 'captureDelayHours'?: number;
4051
4017
  }
4052
4018
 
4053
4019
  interface AuthorizeRequest3D {
@@ -4064,6 +4030,11 @@ declare namespace io.flow.adyen.v0.models {
4064
4030
  readonly 'threeDS2Result'?: io.flow.adyen.v0.models.Threeds2Result;
4065
4031
  }
4066
4032
 
4033
+ interface AuthorizeRequestAdditionalData {
4034
+ readonly 'manualCapture'?: boolean;
4035
+ readonly 'paywithgoogle.token'?: string;
4036
+ }
4037
+
4067
4038
  interface AuthorizeResponse {
4068
4039
  readonly 'pspReference': string;
4069
4040
  readonly 'resultCode': io.flow.adyen.v0.enums.ResultCode;
@@ -4239,6 +4210,7 @@ declare namespace io.flow.adyen.v0.models {
4239
4210
  readonly 'redirectToIssuerMethod'?: io.flow.adyen.v0.enums.HttpRedirectMethod;
4240
4211
  readonly 'redirectFromIssuerMethod'?: io.flow.adyen.v0.enums.HttpRedirectMethod;
4241
4212
  readonly 'storePaymentMethod'?: boolean;
4213
+ readonly 'captureDelayHours'?: number;
4242
4214
  }
4243
4215
 
4244
4216
  interface PaymentResponse {
@@ -4371,6 +4343,7 @@ declare namespace io.flow.adyen.v0.models {
4371
4343
  interface ThreedsAdditionalData {
4372
4344
  readonly 'executeThreeD'?: boolean;
4373
4345
  readonly 'allow3DS2'?: boolean;
4346
+ readonly 'manualCapture'?: boolean;
4374
4347
  }
4375
4348
  }
4376
4349
 
@@ -4520,7 +4493,7 @@ declare namespace io.flow.shopify.external.v0.models {
4520
4493
  readonly 'starts_at': string;
4521
4494
  readonly 'ends_at'?: string;
4522
4495
  readonly 'prerequisite_subtotal_range'?: io.flow.shopify.external.v0.models.PriceRuleGreaterThanRange;
4523
- readonly 'prerequisite_shipping_range'?: io.flow.shopify.external.v0.models.PriceRuleLessThanRange;
4496
+ readonly 'prerequisite_shipping_price_range'?: io.flow.shopify.external.v0.models.PriceRuleLessThanRange;
4524
4497
  readonly 'usage_limit'?: number;
4525
4498
  readonly 'entitled_product_ids': number[];
4526
4499
  readonly 'entitled_variant_ids': number[];
@@ -4530,7 +4503,7 @@ declare namespace io.flow.shopify.external.v0.models {
4530
4503
  readonly 'once_per_customer': boolean;
4531
4504
  readonly 'target_selection': io.flow.shopify.external.v0.enums.PriceRuleTargetSelection;
4532
4505
  readonly 'customer_selection': io.flow.shopify.external.v0.enums.PriceRuleCustomerSelection;
4533
- readonly 'prerequisite_saved_search_ids': number[];
4506
+ readonly 'customer_segment_prerequisite_ids'?: number[];
4534
4507
  readonly 'prerequisite_customer_ids'?: number[];
4535
4508
  readonly 'prerequisite_quantity_range'?: io.flow.shopify.external.v0.models.PriceRuleGreaterThanRange;
4536
4509
  readonly 'prerequisite_product_ids'?: number[];
@@ -5629,6 +5602,7 @@ declare namespace io.flow.shopify.markets.v0.models {
5629
5602
  readonly 'send_receipt'?: boolean;
5630
5603
  readonly 'metafields'?: io.flow.shopify.markets.v0.models.ShopifyOrderMetafield[];
5631
5604
  readonly 'merchant_of_record_app_id'?: number;
5605
+ readonly 'total_shipping_price_set'?: io.flow.shopify.markets.v0.models.ShopifyOrderMoneySet;
5632
5606
  }
5633
5607
 
5634
5608
  interface ShopifyOrderAddress {
@@ -5782,7 +5756,7 @@ declare namespace io.flow.shopify.markets.v0.models {
5782
5756
  readonly 'grams'?: number;
5783
5757
  readonly 'id': number;
5784
5758
  readonly 'price'?: string;
5785
- readonly 'price_set'?: io.flow.shopify.markets.v0.models.ShopifyOrderMoneySet;
5759
+ readonly 'price_set': io.flow.shopify.markets.v0.models.ShopifyOrderMoneySet;
5786
5760
  readonly 'product_id'?: number;
5787
5761
  readonly 'quantity': number;
5788
5762
  readonly 'requires_shipping': boolean;
@@ -5791,7 +5765,7 @@ declare namespace io.flow.shopify.markets.v0.models {
5791
5765
  readonly 'variant_id'?: number;
5792
5766
  readonly 'variant_title'?: string;
5793
5767
  readonly 'vendor'?: string;
5794
- readonly 'name'?: string;
5768
+ readonly 'name': string;
5795
5769
  readonly 'gift_card': boolean;
5796
5770
  readonly 'properties': io.flow.shopify.markets.v0.models.ShopifyOrderProperty[];
5797
5771
  readonly 'taxable': boolean;
@@ -5885,12 +5859,13 @@ declare namespace io.flow.shopify.markets.v0.models {
5885
5859
  interface ShopifyOrderShippingLine {
5886
5860
  readonly 'code'?: string;
5887
5861
  readonly 'price': string;
5888
- readonly 'source': string;
5862
+ readonly 'source'?: string;
5889
5863
  readonly 'title': string;
5890
5864
  readonly 'tax_lines': io.flow.shopify.markets.v0.models.ShopifyOrderTaxLine[];
5891
5865
  readonly 'carrier_identifier'?: string;
5892
5866
  readonly 'price_set': io.flow.shopify.markets.v0.models.ShopifyOrderMoneySet;
5893
5867
  readonly 'discounted_price_set': io.flow.shopify.markets.v0.models.ShopifyOrderMoneySet;
5868
+ readonly 'discount_allocations'?: io.flow.shopify.markets.v0.models.ShopifyOrderDiscountAllocation[];
5894
5869
  }
5895
5870
 
5896
5871
  interface ShopifyOrderTaxLine {
@@ -5920,8 +5895,8 @@ declare namespace io.flow.shopify.markets.v0.models {
5920
5895
  readonly 'user_id'?: number;
5921
5896
  }
5922
5897
 
5923
- interface ShopifyOrderUpdateShippingAddressForm {
5924
- readonly 'order': io.flow.shopify.markets.v0.models.ShopifyUpdateShippingAddress;
5898
+ interface ShopifyOrderUpdateForm {
5899
+ readonly 'order': io.flow.shopify.markets.v0.models.ShopifyUpdateOrder;
5925
5900
  }
5926
5901
 
5927
5902
  interface ShopifyOrderWrapper {
@@ -5980,9 +5955,10 @@ declare namespace io.flow.shopify.markets.v0.models {
5980
5955
  readonly 'gateway': string;
5981
5956
  }
5982
5957
 
5983
- interface ShopifyUpdateShippingAddress {
5958
+ interface ShopifyUpdateOrder {
5984
5959
  readonly 'id': number;
5985
- readonly 'shipping_address': io.flow.shopify.markets.v0.models.ShopifyOrderAddress;
5960
+ readonly 'shipping_address'?: io.flow.shopify.markets.v0.models.ShopifyOrderAddress;
5961
+ readonly 'note_attributes'?: io.flow.shopify.markets.v0.models.ShopifyOrderAttribute[];
5986
5962
  }
5987
5963
 
5988
5964
  interface ShopifyWebhookCustomersDataRequest {
@@ -8784,12 +8760,22 @@ declare namespace io.flow.ratecard.v0.models {
8784
8760
  readonly 'ratecard': io.flow.ratecard.v0.models.RatecardSummary;
8785
8761
  }
8786
8762
 
8787
- interface OversizedShipmentRatecardFee {
8788
- readonly 'discriminator': 'oversized_shipment_ratecard_fee';
8789
- readonly 'weight_threshold': number;
8790
- readonly 'weight_unit': io.flow.common.v0.enums.UnitOfMeasurement;
8791
- readonly 'margin'?: number;
8792
- readonly 'amount'?: number;
8763
+ interface OversizePieceSurchargeRatecardFee {
8764
+ readonly 'discriminator': 'oversize_piece_surcharge_ratecard_fee';
8765
+ readonly 'dimensional_threshold'?: number;
8766
+ readonly 'dimensional_unit'?: io.flow.common.v0.enums.UnitOfMeasurement;
8767
+ readonly 'weight_threshold'?: number;
8768
+ readonly 'weight_unit'?: io.flow.common.v0.enums.UnitOfMeasurement;
8769
+ readonly 'amount': io.flow.common.v0.models.Money;
8770
+ }
8771
+
8772
+ interface OversizePieceSurchargeServiceFee {
8773
+ readonly 'discriminator': 'oversize_piece_surcharge_service_fee';
8774
+ readonly 'dimensional_threshold'?: number;
8775
+ readonly 'dimensional_unit'?: io.flow.common.v0.enums.UnitOfMeasurement;
8776
+ readonly 'weight_threshold'?: number;
8777
+ readonly 'weight_unit'?: io.flow.common.v0.enums.UnitOfMeasurement;
8778
+ readonly 'amount': io.flow.common.v0.models.Money;
8793
8779
  }
8794
8780
 
8795
8781
  interface PeakSurchargeByWeightServiceFee {
@@ -8818,12 +8804,16 @@ declare namespace io.flow.ratecard.v0.models {
8818
8804
  interface Ratecard {
8819
8805
  readonly 'id': string;
8820
8806
  readonly 'number': string;
8807
+ readonly 'rate_level_key'?: string;
8821
8808
  readonly 'direction': io.flow.label.v0.enums.Direction;
8822
8809
  readonly 'effective_at': string;
8823
8810
  readonly 'origination_zones': io.flow.common.v0.models.Zone[];
8824
8811
  readonly 'service': io.flow.ratecard.v0.models.RatecardServiceSummary;
8825
8812
  readonly 'published_at'?: string;
8826
8813
  readonly 'ratecard_owner': io.flow.fulfillment.v0.enums.RatecardOwner;
8814
+ readonly 'glbe_shipping_method_id'?: string;
8815
+ readonly 'glbe_proposition_name'?: string;
8816
+ readonly 'channel_revenue_share_percentage'?: number;
8827
8817
  }
8828
8818
 
8829
8819
  interface RatecardCarrierSummary {
@@ -8894,6 +8884,10 @@ declare namespace io.flow.ratecard.v0.models {
8894
8884
  readonly 'dimensional_weight'?: io.flow.common.v0.models.Measurement;
8895
8885
  readonly 'gravitational_weight'?: io.flow.common.v0.models.Measurement;
8896
8886
  readonly 'ratecard_id'?: string;
8887
+ readonly 'glbe_shipping_method_id'?: string;
8888
+ readonly 'glbe_proposition_name'?: string;
8889
+ readonly 'channel_revenue_share_percentage'?: number;
8890
+ readonly 'rate_level_key'?: string;
8897
8891
  readonly 'line_items'?: io.flow.common.v0.models.LineItemForm[];
8898
8892
  }
8899
8893
 
@@ -8903,7 +8897,12 @@ declare namespace io.flow.ratecard.v0.models {
8903
8897
  readonly 'origination_zones': io.flow.common.v0.models.Zone[];
8904
8898
  readonly 'service': string;
8905
8899
  readonly 'number'?: string;
8900
+ readonly 'rate_level_key'?: string;
8906
8901
  readonly 'ratecard_owner'?: io.flow.fulfillment.v0.enums.RatecardOwner;
8902
+ readonly 'glbe_shipping_method_id'?: string;
8903
+ readonly 'glbe_proposition_name'?: string;
8904
+ readonly 'channel_revenue_share_percentage'?: number;
8905
+ readonly 'data'?: Record<string, string>;
8907
8906
  }
8908
8907
 
8909
8908
  interface RatecardLane {
@@ -9033,8 +9032,8 @@ declare namespace io.flow.ratecard.v0.models {
9033
9032
 
9034
9033
  declare namespace io.flow.ratecard.v0.unions {
9035
9034
  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);
9036
- type RatecardFee = (io.flow.ratecard.v0.models.DdpRatecardFee | io.flow.ratecard.v0.models.FuelSurchargeRatecardFee | io.flow.ratecard.v0.models.OversizedShipmentRatecardFee | 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);
9037
- 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);
9035
+ 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);
9036
+ 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);
9038
9037
  }
9039
9038
 
9040
9039
  declare namespace io.flow.token.v0.models {
@@ -9311,8 +9310,344 @@ declare namespace io.flow.crypto.v0.models {
9311
9310
  }
9312
9311
  }
9313
9312
 
9314
- declare namespace io.flow.tracking.v0.enums {
9315
- type TrackingStatus = 'label_created' | 'pending' | 'info_received' | 'picked_up' | 'in_transit' | 'out_for_delivery' | 'attempt_fail' | 'delivered' | 'exception' | 'returned' | 'expired';
9313
+ declare namespace io.flow.error.v0.enums {
9314
+ type GenericErrorCode = 'generic_error' | 'client_error' | 'server_error';
9315
+ }
9316
+
9317
+ declare namespace io.flow.error.v0.models {
9318
+ interface GenericError {
9319
+ readonly 'code': io.flow.error.v0.enums.GenericErrorCode;
9320
+ readonly 'messages': string[];
9321
+ }
9322
+ }
9323
+
9324
+ declare namespace io.flow.billing.RESERVED_WORD_true.up.v0.enums {
9325
+ type TrueUpSurchargeType = 'fuel' | 'remote_area' | 'oversize' | 'duties_paid' | 'emergency' | 'peak';
9326
+ type WeightSelection = 'dead' | 'dimensional';
9327
+ }
9328
+
9329
+ declare namespace io.flow.billing.RESERVED_WORD_true.up.v0.models {
9330
+ interface LabelBase {
9331
+ readonly 'amount': number;
9332
+ readonly 'weight': number;
9333
+ }
9334
+
9335
+ interface LabelDestination {
9336
+ readonly 'country': string;
9337
+ }
9338
+
9339
+ interface LabelInvoiceRequest {
9340
+ readonly 'id': string;
9341
+ readonly 'label': io.flow.billing.RESERVED_WORD_true.up.v0.models.TrueUpLabelSummary;
9342
+ readonly 'units': io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelUnits;
9343
+ readonly 'base': io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelBase;
9344
+ readonly 'surcharges': io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelSurcharge[];
9345
+ readonly 'total': number;
9346
+ readonly 'destination': io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelDestination;
9347
+ readonly 'metadata': io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelMetadata;
9348
+ }
9349
+
9350
+ interface LabelMetadata {
9351
+ readonly 'ratecard': io.flow.billing.RESERVED_WORD_true.up.v0.models.MetadataRatecard;
9352
+ readonly 'weights': io.flow.billing.RESERVED_WORD_true.up.v0.models.MetadataWeights;
9353
+ }
9354
+
9355
+ interface LabelSurcharge {
9356
+ readonly 'amount': number;
9357
+ readonly 'type': io.flow.billing.RESERVED_WORD_true.up.v0.enums.TrueUpSurchargeType;
9358
+ readonly 'detail': io.flow.billing.RESERVED_WORD_true.up.v0.unions.LabelSurchargeDetail;
9359
+ }
9360
+
9361
+ interface LabelSurchargeDetailFlat {
9362
+ readonly 'discriminator': 'flat';
9363
+ readonly 'placeholder'?: string;
9364
+ }
9365
+
9366
+ interface LabelSurchargeDetailPerWeightUnit {
9367
+ readonly 'discriminator': 'per_weight_unit';
9368
+ readonly 'fee': number;
9369
+ }
9370
+
9371
+ interface LabelSurchargeDetailPercentage {
9372
+ readonly 'discriminator': 'percentage';
9373
+ readonly 'percentage': number;
9374
+ }
9375
+
9376
+ interface LabelUnits {
9377
+ readonly 'currency': string;
9378
+ readonly 'weight': io.flow.units.v0.enums.UnitOfWeight;
9379
+ readonly 'length': io.flow.units.v0.enums.UnitOfLength;
9380
+ }
9381
+
9382
+ interface MetadataProposition {
9383
+ readonly 'shipping_method': io.flow.billing.RESERVED_WORD_true.up.v0.models.ShippingMethodReference;
9384
+ readonly 'name': string;
9385
+ }
9386
+
9387
+ interface MetadataRatecard {
9388
+ readonly 'id': string;
9389
+ readonly 'proposition': io.flow.billing.RESERVED_WORD_true.up.v0.models.MetadataProposition;
9390
+ }
9391
+
9392
+ interface MetadataWeights {
9393
+ readonly 'selected': io.flow.billing.RESERVED_WORD_true.up.v0.enums.WeightSelection;
9394
+ readonly 'dead'?: io.flow.billing.RESERVED_WORD_true.up.v0.models.WeightsDead;
9395
+ readonly 'dimensional'?: io.flow.billing.RESERVED_WORD_true.up.v0.models.WeightsDimensional;
9396
+ }
9397
+
9398
+ interface ShippingMethodReference {
9399
+ readonly 'id': string;
9400
+ }
9401
+
9402
+ interface TrueUpLabelSummary {
9403
+ readonly 'id': string;
9404
+ readonly 'carrier_service_id': string;
9405
+ readonly 'carrier_tracking_number': string;
9406
+ readonly 'flow_tracking_number': string;
9407
+ readonly 'created_at': string;
9408
+ }
9409
+
9410
+ interface WeightsDead {
9411
+ readonly 'weight': number;
9412
+ }
9413
+
9414
+ interface WeightsDimensional {
9415
+ readonly 'weight': number;
9416
+ readonly 'length': number;
9417
+ readonly 'width': number;
9418
+ readonly 'height': number;
9419
+ }
9420
+ }
9421
+
9422
+ declare namespace io.flow.billing.RESERVED_WORD_true.up.v0.unions {
9423
+ type LabelSurchargeDetail = (io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelSurchargeDetailFlat | io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelSurchargeDetailPercentage | io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelSurchargeDetailPerWeightUnit);
9424
+ }
9425
+
9426
+ declare namespace io.flow.shopify.merchant.config.v0.models {
9427
+ interface Company {
9428
+ readonly 'discriminator': 'company';
9429
+ readonly 'legal_name': string;
9430
+ readonly 'incorporation_country': string;
9431
+ readonly 'incorporation_jurisdiction': string;
9432
+ readonly 'tax_registration_number': string;
9433
+ }
9434
+
9435
+ interface CountryOfOrigin {
9436
+ readonly 'country': io.flow.reference.v0.models.Country;
9437
+ }
9438
+
9439
+ interface CountryOfOriginForm {
9440
+ readonly 'country': string;
9441
+ }
9442
+
9443
+ interface Individual {
9444
+ readonly 'discriminator': 'individual';
9445
+ readonly 'legal_name': string;
9446
+ readonly 'tax_registration_number'?: string;
9447
+ readonly 'date_of_birth': string;
9448
+ }
9449
+
9450
+ interface KnowYourBusinessUsa {
9451
+ readonly 'discriminator': 'know_your_business_usa';
9452
+ readonly 'id': string;
9453
+ readonly 'organization_id': string;
9454
+ readonly 'primary_entity': io.flow.shopify.merchant.config.v0.unions.Entity;
9455
+ readonly 'parent_company'?: io.flow.shopify.merchant.config.v0.models.Company;
9456
+ readonly 'ultimate_parent_company'?: io.flow.shopify.merchant.config.v0.models.Company;
9457
+ readonly 'ultimate_beneficiary_owner': io.flow.shopify.merchant.config.v0.models.Individual;
9458
+ readonly 'business_url': string;
9459
+ readonly 'business_address': io.flow.common.v0.models.Address;
9460
+ }
9461
+
9462
+ interface KnowYourBusinessUsaForm {
9463
+ readonly 'discriminator': 'know_your_business_usa_form';
9464
+ readonly 'primary_entity': io.flow.shopify.merchant.config.v0.unions.Entity;
9465
+ readonly 'parent_company'?: io.flow.shopify.merchant.config.v0.models.Company;
9466
+ readonly 'ultimate_parent_company'?: io.flow.shopify.merchant.config.v0.models.Company;
9467
+ readonly 'ultimate_beneficiary_owner': io.flow.shopify.merchant.config.v0.models.Individual;
9468
+ readonly 'business_url': string;
9469
+ readonly 'business_address': io.flow.common.v0.models.Address;
9470
+ }
9471
+
9472
+ interface PackageDimensions {
9473
+ readonly 'dimensions': io.flow.common.v0.models.Dimension[];
9474
+ }
9475
+
9476
+ interface PackageDimensionsForm {
9477
+ readonly 'dimensions': io.flow.common.v0.models.Dimension[];
9478
+ }
9479
+ }
9480
+
9481
+ declare namespace io.flow.shopify.merchant.config.v0.unions {
9482
+ type Entity = (io.flow.shopify.merchant.config.v0.models.Company | io.flow.shopify.merchant.config.v0.models.Individual);
9483
+ type KnowYourBusiness = (io.flow.shopify.merchant.config.v0.models.KnowYourBusinessUsa);
9484
+ type KnowYourBusinessForm = (io.flow.shopify.merchant.config.v0.models.KnowYourBusinessUsaForm);
9485
+ }
9486
+
9487
+ declare namespace io.flow.price.v0.enums {
9488
+ type LevyComponent = 'goods' | 'duty' | 'insurance' | 'freight' | 'vat';
9489
+ type LevyStrategy = 'minimum' | 'average' | 'maximum';
9490
+ type PriceAccuracy = 'calculated' | 'estimated_from_partial_destination';
9491
+ type PriceDetailComponentKey = 'base_price' | 'discount' | 'currency_margin' | 'percent_item_margin' | 'fixed_item_margin' | 'duties_item_price' | 'duties_added_margin' | 'duties_rounding' | 'duties_deminimis' | 'vat_item_price' | 'vat_added_margin' | 'vat_rounding' | 'vat_duties_item_price' | 'vat_duties_added_margin' | 'vat_duties_rounding' | 'vat_deminimis' | 'item_price_percent_sales_margin' | 'margins_percent_sales_margin' | 'rounding_percent_sales_margin' | 'vat_percent_sales_margin' | 'vat_duty_percent_sales_margin' | 'duty_percent_sales_margin';
9492
+ type PriceDetailKey = 'item_price' | 'margins' | 'vat' | 'duty' | 'rounding' | 'adjustment';
9493
+ type PricingLevySetting = 'included' | 'displayed' | 'ignored';
9494
+ }
9495
+
9496
+ declare namespace io.flow.price.v0.models {
9497
+ interface CurrencyFormat {
9498
+ readonly 'symbol': io.flow.common.v0.enums.CurrencySymbolFormat;
9499
+ readonly 'label_formatters': io.flow.common.v0.enums.CurrencyLabelFormatter[];
9500
+ }
9501
+
9502
+ interface DeminimisPerItem {
9503
+ readonly 'discriminator': 'deminimis_per_item';
9504
+ readonly 'currency': string;
9505
+ readonly 'minimum'?: number;
9506
+ readonly 'maximum'?: number;
9507
+ }
9508
+
9509
+ interface DeminimisSimple {
9510
+ readonly 'discriminator': 'deminimis_simple';
9511
+ readonly 'value'?: number;
9512
+ readonly 'currency': string;
9513
+ readonly 'components': io.flow.price.v0.enums.LevyComponent[];
9514
+ readonly 'minimum'?: number;
9515
+ }
9516
+
9517
+ interface Duty {
9518
+ readonly 'rate': number;
9519
+ readonly 'components': io.flow.price.v0.enums.LevyComponent[];
9520
+ readonly 'deminimis'?: io.flow.price.v0.unions.Deminimis;
9521
+ readonly 'name'?: string;
9522
+ }
9523
+
9524
+ interface LocalPriceDetails {
9525
+ readonly 'base': io.flow.price.v0.models.PriceDetails;
9526
+ readonly 'local': io.flow.price.v0.models.PriceDetails;
9527
+ readonly 'discount'?: io.flow.price.v0.models.PriceDetail;
9528
+ readonly 'local_before_discount'?: io.flow.price.v0.models.PriceDetail;
9529
+ }
9530
+
9531
+ interface PriceBook {
9532
+ readonly 'id': string;
9533
+ readonly 'key': string;
9534
+ readonly 'currency': string;
9535
+ readonly 'name': string;
9536
+ readonly 'includes': io.flow.common.v0.models.IncludedLevies;
9537
+ readonly 'status': io.flow.common.v0.enums.PriceBookStatus;
9538
+ }
9539
+
9540
+ interface PriceBookForm {
9541
+ readonly 'currency': string;
9542
+ readonly 'name': string;
9543
+ readonly 'includes': io.flow.common.v0.enums.IncludedLevyKey;
9544
+ readonly 'status'?: io.flow.common.v0.enums.PriceBookStatus;
9545
+ }
9546
+
9547
+ interface PriceBookItem {
9548
+ readonly 'id': string;
9549
+ readonly 'key': string;
9550
+ readonly 'price_book': io.flow.price.v0.models.PriceBookReference;
9551
+ readonly 'price': io.flow.common.v0.models.Price;
9552
+ readonly 'item_number': string;
9553
+ readonly 'schedule': io.flow.price.v0.models.PriceBookItemSchedule;
9554
+ readonly 'item_attributes'?: Record<string, string>;
9555
+ }
9556
+
9557
+ interface PriceBookItemForm {
9558
+ readonly 'price_book_key': string;
9559
+ readonly 'item_number': string;
9560
+ readonly 'amount': number;
9561
+ readonly 'schedule'?: io.flow.price.v0.models.PriceBookItemSchedule;
9562
+ readonly 'item_attributes'?: Record<string, string>;
9563
+ }
9564
+
9565
+ interface PriceBookItemQueryForm {
9566
+ readonly 'price_book_key': string;
9567
+ readonly 'item_query': string;
9568
+ readonly 'amount': number;
9569
+ readonly 'schedule'?: io.flow.price.v0.models.PriceBookItemSchedule;
9570
+ readonly 'item_attributes'?: Record<string, string>;
9571
+ }
9572
+
9573
+ interface PriceBookItemSchedule {
9574
+ readonly 'starts_at': string;
9575
+ readonly 'ends_at'?: string;
9576
+ }
9577
+
9578
+ interface PriceBookReference {
9579
+ readonly 'id': string;
9580
+ readonly 'key': string;
9581
+ }
9582
+
9583
+ interface PriceCheck {
9584
+ readonly 'display': io.flow.price.v0.models.LocalPriceDetails;
9585
+ readonly 'final': io.flow.price.v0.models.LocalPriceDetails;
9586
+ }
9587
+
9588
+ interface PriceDetail {
9589
+ readonly 'key': io.flow.price.v0.enums.PriceDetailKey;
9590
+ readonly 'components': io.flow.price.v0.models.PriceDetailComponent[];
9591
+ readonly 'amount': number;
9592
+ readonly 'label': string;
9593
+ readonly 'name'?: string;
9594
+ readonly 'basis'?: number;
9595
+ }
9596
+
9597
+ interface PriceDetailComponent {
9598
+ readonly 'key': io.flow.price.v0.enums.PriceDetailComponentKey;
9599
+ readonly 'amount': number;
9600
+ readonly 'label': string;
9601
+ readonly 'name'?: string;
9602
+ }
9603
+
9604
+ interface PriceDetails {
9605
+ readonly 'currency': string;
9606
+ readonly 'item_price': io.flow.price.v0.models.PriceDetail;
9607
+ readonly 'margins': io.flow.price.v0.models.PriceDetail;
9608
+ readonly 'vat': io.flow.price.v0.models.PriceDetail;
9609
+ readonly 'duty': io.flow.price.v0.models.PriceDetail;
9610
+ readonly 'rounding': io.flow.price.v0.models.PriceDetail;
9611
+ readonly 'price': io.flow.common.v0.models.Price;
9612
+ readonly 'total': io.flow.common.v0.models.Price;
9613
+ readonly 'adjustment'?: io.flow.price.v0.models.PriceDetail;
9614
+ }
9615
+
9616
+ interface PriceEquation {
9617
+ readonly 'contracted_rate': number;
9618
+ readonly 'rate': number;
9619
+ readonly 'pricing': io.flow.price.v0.models.Pricing;
9620
+ readonly 'base_price': number;
9621
+ readonly 'discount': number;
9622
+ readonly 'fixed_margin': number;
9623
+ readonly 'percent_margin': number;
9624
+ readonly 'insurance': number;
9625
+ readonly 'freight': number;
9626
+ readonly 'duty'?: io.flow.price.v0.models.Duty;
9627
+ readonly 'tax'?: io.flow.price.v0.models.Tax;
9628
+ readonly 'percent_sales_margin': number;
9629
+ }
9630
+
9631
+ interface Pricing {
9632
+ readonly 'vat': io.flow.price.v0.enums.PricingLevySetting;
9633
+ readonly 'duty': io.flow.price.v0.enums.PricingLevySetting;
9634
+ readonly 'rounding'?: io.flow.common.v0.models.Rounding;
9635
+ }
9636
+
9637
+ interface Tax {
9638
+ readonly 'name': string;
9639
+ readonly 'rate': number;
9640
+ readonly 'components': io.flow.price.v0.enums.LevyComponent[];
9641
+ readonly 'deminimis'?: io.flow.price.v0.unions.Deminimis;
9642
+ }
9643
+ }
9644
+
9645
+ declare namespace io.flow.price.v0.unions {
9646
+ type Deminimis = (io.flow.price.v0.models.DeminimisSimple | io.flow.price.v0.models.DeminimisPerItem);
9647
+ }
9648
+
9649
+ declare namespace io.flow.tracking.v0.enums {
9650
+ type TrackingStatus = 'label_created' | 'pending' | 'info_received' | 'picked_up' | 'in_transit' | 'out_for_delivery' | 'attempt_fail' | 'delivered' | 'exception' | 'returned' | 'expired';
9316
9651
  }
9317
9652
 
9318
9653
  declare namespace io.flow.tracking.v0.models {
@@ -9329,6 +9664,7 @@ declare namespace io.flow.tracking.v0.models {
9329
9664
  readonly 'label'?: io.flow.label.v0.models.LabelReference;
9330
9665
  readonly 'in_transit': io.flow.tracking.v0.models.LabelTrackingSummaryUpdate;
9331
9666
  readonly 'delivered'?: io.flow.tracking.v0.models.LabelTrackingSummaryUpdate;
9667
+ readonly 'rejected'?: io.flow.tracking.v0.models.LabelTrackingSummaryUpdate;
9332
9668
  }
9333
9669
 
9334
9670
  interface LabelTrackingSummaryUpdate {
@@ -9503,7 +9839,6 @@ declare namespace io.flow.merchant.onboarding.v0.models {
9503
9839
  }
9504
9840
 
9505
9841
  interface OperationsContact {
9506
- readonly 'full_name'?: string;
9507
9842
  readonly 'company'?: string;
9508
9843
  readonly 'email'?: string;
9509
9844
  readonly 'phone'?: string;
@@ -9522,7 +9857,6 @@ declare namespace io.flow.merchant.onboarding.v0.models {
9522
9857
  readonly 'status': io.flow.merchant.onboarding.v0.enums.OnboardingApplicationStatus;
9523
9858
  readonly 'company'?: io.flow.merchant.onboarding.v0.models.MerchantInfo;
9524
9859
  readonly 'indirect_tax'?: io.flow.merchant.onboarding.v0.models.IndirectTax;
9525
- readonly 'parent_company'?: io.flow.merchant.onboarding.v0.models.MerchantInfo;
9526
9860
  readonly 'beneficiary'?: string;
9527
9861
  readonly 'ultimate_beneficiary_owner'?: io.flow.merchant.onboarding.v0.models.UltimateBeneficiaryOwner;
9528
9862
  readonly 'business_url'?: string;
@@ -9532,31 +9866,30 @@ declare namespace io.flow.merchant.onboarding.v0.models {
9532
9866
  readonly 'chargeback_percentage'?: number;
9533
9867
  readonly 'bank_account_number'?: string;
9534
9868
  readonly 'aba_routing_transit_number'?: string;
9535
- readonly 'trade_sectors'?: io.flow.merchant.onboarding.v0.enums.OnboardingTradeSector[];
9536
9869
  readonly 'other_trade_sector'?: string;
9537
9870
  readonly 'third_party_logistics_partners'?: io.flow.merchant.onboarding.v0.models.ThirdPartyLogisticsPartner[];
9871
+ readonly 'center_contact'?: io.flow.merchant.onboarding.v0.models.OperationsContact;
9538
9872
  readonly 'average_order_weight'?: number;
9539
9873
  readonly 'package_dimensions'?: io.flow.common.v0.models.Dimension[];
9540
9874
  readonly 'monthly_average'?: io.flow.merchant.onboarding.v0.models.MonthlyAverage;
9541
- readonly 'dangerous_goods'?: boolean;
9542
9875
  readonly 'default_country_of_origin'?: string;
9543
9876
  readonly 'ratecard'?: io.flow.ratecard.v0.models.RatecardReference;
9544
9877
  readonly 'rate_card': string;
9545
9878
  readonly 'created_at': string;
9546
9879
  readonly 'activated_at'?: string;
9547
9880
  readonly 'status_updated_at'?: string;
9548
- readonly 'logistics_format'?: io.flow.merchant.onboarding.v0.models.LogisticsFormat;
9549
9881
  readonly 'shop'?: io.flow.merchant.onboarding.v0.models.Shop;
9550
9882
  readonly 'last_year_xborder_gmv'?: io.flow.common.v0.models.Money;
9551
9883
  readonly 'last_month_xborder_gmv'?: io.flow.common.v0.models.Money;
9552
9884
  readonly 'average_order_value'?: io.flow.common.v0.models.Money;
9885
+ readonly 'glbe_merchant_guid'?: string;
9886
+ readonly 'mcc_codes'?: number[];
9553
9887
  }
9554
9888
 
9555
9889
  interface ShopifyMerchantApplicationForm {
9556
9890
  readonly 'discriminator': 'shopify_merchant_application_form';
9557
9891
  readonly 'company'?: io.flow.merchant.onboarding.v0.models.MerchantInfo;
9558
9892
  readonly 'indirect_tax'?: io.flow.merchant.onboarding.v0.models.IndirectTax;
9559
- readonly 'parent_company'?: io.flow.merchant.onboarding.v0.models.MerchantInfo;
9560
9893
  readonly 'beneficiary'?: string;
9561
9894
  readonly 'ultimate_beneficiary_owner'?: io.flow.merchant.onboarding.v0.models.UltimateBeneficiaryOwner;
9562
9895
  readonly 'business_url'?: string;
@@ -9566,23 +9899,22 @@ declare namespace io.flow.merchant.onboarding.v0.models {
9566
9899
  readonly 'chargeback_percentage'?: number;
9567
9900
  readonly 'bank_account_number'?: string;
9568
9901
  readonly 'aba_routing_transit_number'?: string;
9569
- readonly 'trade_sectors'?: io.flow.merchant.onboarding.v0.enums.OnboardingTradeSector[];
9570
9902
  readonly 'other_trade_sector'?: string;
9571
9903
  readonly 'third_party_logistics_partners'?: io.flow.merchant.onboarding.v0.models.ThirdPartyLogisticsPartner[];
9904
+ readonly 'center_contact'?: io.flow.merchant.onboarding.v0.models.OperationsContact;
9572
9905
  readonly 'average_order_weight'?: number;
9573
9906
  readonly 'package_dimensions'?: io.flow.common.v0.models.Dimension[];
9574
9907
  readonly 'monthly_average_volume_amount'?: number;
9575
9908
  readonly 'monthly_average_volume_currency'?: string;
9576
9909
  readonly 'monthly_average_number_transactions'?: number;
9577
- readonly 'dangerous_goods'?: boolean;
9578
9910
  readonly 'default_country_of_origin'?: string;
9579
9911
  readonly 'ratecard_id'?: string;
9580
9912
  readonly 'rate_card': string;
9581
- readonly 'logistics_format'?: io.flow.merchant.onboarding.v0.models.LogisticsFormat;
9582
9913
  readonly 'shop'?: io.flow.merchant.onboarding.v0.models.Shop;
9583
9914
  readonly 'last_year_xborder_gmv'?: io.flow.common.v0.models.Money;
9584
9915
  readonly 'last_month_xborder_gmv'?: io.flow.common.v0.models.Money;
9585
9916
  readonly 'average_order_value'?: io.flow.common.v0.models.Money;
9917
+ readonly 'mcc_codes'?: number[];
9586
9918
  }
9587
9919
 
9588
9920
  interface ShopifyMerchantApplicationPutForm {
@@ -10245,6 +10577,7 @@ declare namespace io.flow.billing.v0.enums {
10245
10577
  type PayoutAttachmentType = 'transactions';
10246
10578
  type PayoutStatusFailureCode = 'invalid_account_number' | 'account_closed' | 'could_not_process';
10247
10579
  type StatementAttachmentType = 'csv';
10580
+ type TransactionPayoutPendingReason = 'waiting_for_full_refund' | 'waiting_for_fulfillment' | 'waiting_for_in_transit' | 'waiting_for_next_payout_date' | 'external_fulfillment_missing_tracking_info' | 'waiting_for_positive_account_balance';
10248
10581
  type TransactionSource = 'capture' | 'refund' | 'dispute' | 'adjustment' | 'reversal' | 'shipping_label' | 'shipping_label_service' | 'shipping_label_revenue_share' | 'platform_fee' | 'tax' | 'duty' | 'withholding' | 'other_adjustment' | 'tax_adjustment' | 'channel' | 'channel_billed' | 'order_service' | 'virtual_card_capture' | 'virtual_card_refund';
10249
10582
  type WithholdingDeductionType = 'tax' | 'duty' | 'freight' | 'insurance';
10250
10583
  }
@@ -10337,6 +10670,7 @@ declare namespace io.flow.billing.v0.models {
10337
10670
  interface ChannelTransaction {
10338
10671
  readonly 'statement'?: io.flow.billing.v0.models.BillingChannelStatementReference;
10339
10672
  readonly 'id': string;
10673
+ readonly 'metadata'?: io.flow.billing.v0.unions.TransactionMetadata;
10340
10674
  readonly 'order'?: io.flow.billing.v0.models.BillingChannelOrderSummary;
10341
10675
  readonly 'payment_request'?: io.flow.billing.v0.models.BillingChannelPaymentRequestReference;
10342
10676
  readonly 'currency': string;
@@ -10352,6 +10686,12 @@ declare namespace io.flow.billing.v0.models {
10352
10686
  readonly 'updated_at': string;
10353
10687
  }
10354
10688
 
10689
+ interface ChannelTransactionPayout {
10690
+ readonly 'transaction': io.flow.billing.v0.models.TransactionReference;
10691
+ readonly 'waiting_for'?: io.flow.billing.v0.enums.TransactionPayoutPendingReason;
10692
+ readonly 'payout'?: io.flow.billing.v0.models.PayoutReference;
10693
+ }
10694
+
10355
10695
  interface DefaultBankAccountForm {
10356
10696
  readonly 'bank_account_id': string;
10357
10697
  }
@@ -10384,6 +10724,12 @@ declare namespace io.flow.billing.v0.models {
10384
10724
  readonly 'updated_at': string;
10385
10725
  }
10386
10726
 
10727
+ interface OrganizationTransactionPayout {
10728
+ readonly 'transaction': io.flow.billing.v0.models.TransactionReference;
10729
+ readonly 'waiting_for'?: io.flow.billing.v0.enums.TransactionPayoutPendingReason;
10730
+ readonly 'payout'?: io.flow.billing.v0.models.PayoutReference;
10731
+ }
10732
+
10387
10733
  interface ParentTransactionSummary {
10388
10734
  readonly 'id': string;
10389
10735
  readonly 'source': io.flow.billing.v0.enums.TransactionSource;
@@ -10394,6 +10740,10 @@ declare namespace io.flow.billing.v0.models {
10394
10740
  readonly 'url': string;
10395
10741
  }
10396
10742
 
10743
+ interface PayoutReference {
10744
+ readonly 'id': string;
10745
+ }
10746
+
10397
10747
  interface PayoutStatusFailed {
10398
10748
  readonly 'code': 'failed';
10399
10749
  readonly 'timestamp': string;
@@ -10412,6 +10762,7 @@ declare namespace io.flow.billing.v0.models {
10412
10762
 
10413
10763
  interface PayoutTransaction {
10414
10764
  readonly 'id': string;
10765
+ readonly 'metadata'?: io.flow.billing.v0.unions.TransactionMetadata;
10415
10766
  readonly 'order'?: io.flow.billing.v0.models.BillingChannelOrderSummary;
10416
10767
  readonly 'payment_request'?: io.flow.billing.v0.models.BillingChannelPaymentRequestReference;
10417
10768
  readonly 'currency': string;
@@ -10451,6 +10802,7 @@ declare namespace io.flow.billing.v0.models {
10451
10802
  interface Transaction {
10452
10803
  readonly 'statement'?: io.flow.billing.v0.models.BillingChannelStatementReference;
10453
10804
  readonly 'id': string;
10805
+ readonly 'metadata'?: io.flow.billing.v0.unions.TransactionMetadata;
10454
10806
  readonly 'order'?: io.flow.billing.v0.models.BillingChannelOrderSummary;
10455
10807
  readonly 'payment_request'?: io.flow.billing.v0.models.BillingChannelPaymentRequestReference;
10456
10808
  readonly 'currency': string;
@@ -10466,6 +10818,15 @@ declare namespace io.flow.billing.v0.models {
10466
10818
  readonly 'updated_at': string;
10467
10819
  }
10468
10820
 
10821
+ interface TransactionMetadataShippingLabel {
10822
+ readonly 'discriminator': 'shipping_label';
10823
+ readonly 'request_method'?: io.flow.label.v0.enums.LabelRequestMethod;
10824
+ }
10825
+
10826
+ interface TransactionReference {
10827
+ readonly 'id': string;
10828
+ }
10829
+
10469
10830
  interface WithholdingDeduction {
10470
10831
  readonly 'type': io.flow.billing.v0.enums.WithholdingDeductionType;
10471
10832
  readonly 'amount': number;
@@ -10477,6 +10838,7 @@ declare namespace io.flow.billing.v0.unions {
10477
10838
  type BankAccountForm = (io.flow.billing.v0.models.BankAccountFormInfo | io.flow.billing.v0.models.BankAccountFormSimple);
10478
10839
  type PayoutStatus = (io.flow.billing.v0.models.PayoutStatusScheduled | io.flow.billing.v0.models.PayoutStatusSent | io.flow.billing.v0.models.PayoutStatusFailed);
10479
10840
  type Settlement = (io.flow.billing.v0.models.SettlementNoPayout | io.flow.billing.v0.models.SettlementPayout);
10841
+ type TransactionMetadata = (io.flow.billing.v0.models.TransactionMetadataShippingLabel);
10480
10842
  }
10481
10843
 
10482
10844
  declare namespace io.flow.harmonization.v0.enums {
@@ -10898,6 +11260,7 @@ declare namespace io.flow.fulfillment.v0.enums {
10898
11260
  type LanePreselectPreference = 'lowest_cost' | 'default_tier';
10899
11261
  type LaneStrategy = 'oldest' | 'fastest' | 'lowest_cost' | 'highest_priority';
10900
11262
  type PhysicalDeliverySpecialSerivce = 'cold_storage' | 'hazardous' | 'perishable';
11263
+ type PreferredServiceSelectionStrategy = 'calculated_rate' | 'flat_rate' | 'custom_rate';
10901
11264
  type QuoteErrorCode = 'generic_error' | 'items_not_available' | 'shipping_unavailable';
10902
11265
  type RatecardOwner = 'flow' | 'organization';
10903
11266
  type ShipmentIntegrationType = 'direct' | 'information' | 'preadvice';
@@ -11207,6 +11570,12 @@ declare namespace io.flow.fulfillment.v0.models {
11207
11570
  readonly 'total'?: io.flow.catalog.v0.models.LocalizedTotal;
11208
11571
  readonly 'goods_supply'?: io.flow.common.v0.enums.GoodsSupply;
11209
11572
  readonly 'merchant_of_record_flow_entity'?: io.flow.merchant.of.record.v0.enums.FlowEntity;
11573
+ readonly 'preferred_service'?: io.flow.fulfillment.v0.models.PhysicalDeliveryPreferredService;
11574
+ }
11575
+
11576
+ interface PhysicalDeliveryPreferredService {
11577
+ readonly 'id': string;
11578
+ readonly 'selection_stratey': io.flow.fulfillment.v0.enums.PreferredServiceSelectionStrategy;
11210
11579
  }
11211
11580
 
11212
11581
  interface PriceWithBaseAndDetails {
@@ -11698,6 +12067,10 @@ declare namespace io.flow.organization.onboarding.state.v0.models {
11698
12067
  readonly 'placeholder'?: boolean;
11699
12068
  }
11700
12069
 
12070
+ interface DeactivationPutForm {
12071
+ readonly 'reason': string;
12072
+ }
12073
+
11701
12074
  interface InComplianceReview {
11702
12075
  readonly 'discriminator': 'in_compliance_review';
11703
12076
  readonly 'placeholder'?: boolean;
@@ -11708,6 +12081,11 @@ declare namespace io.flow.organization.onboarding.state.v0.models {
11708
12081
  readonly 'placeholder'?: boolean;
11709
12082
  }
11710
12083
 
12084
+ interface MerchantDeactivated {
12085
+ readonly 'discriminator': 'merchant_deactivated';
12086
+ readonly 'reason': string;
12087
+ }
12088
+
11711
12089
  interface MerchantRejected {
11712
12090
  readonly 'discriminator': 'merchant_rejected';
11713
12091
  readonly 'reason': io.flow.organization.onboarding.state.v0.enums.MerchantRejectedReason;
@@ -11729,6 +12107,7 @@ declare namespace io.flow.organization.onboarding.state.v0.models {
11729
12107
  readonly 'time_blocked'?: number;
11730
12108
  readonly 'blocked_since'?: string;
11731
12109
  readonly 'completed_at'?: string;
12110
+ readonly 'onboarding_started_at'?: string;
11732
12111
  }
11733
12112
 
11734
12113
  interface SetupBlocked {
@@ -11748,7 +12127,7 @@ declare namespace io.flow.organization.onboarding.state.v0.models {
11748
12127
  }
11749
12128
 
11750
12129
  declare namespace io.flow.organization.onboarding.state.v0.unions {
11751
- 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);
12130
+ 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);
11752
12131
  }
11753
12132
 
11754
12133
  declare namespace io.flow.fraud.v0.enums {
@@ -12117,9 +12496,9 @@ declare namespace io.flow.internal.v0.enums {
12117
12496
  type AutoRestrictRule = 'prr-3ce7d556f2464314ab0a3e8eee33e0ce' | 'prr-599c6246a1a24752aeb85e8f79030781' | 'prr-79e41878ea564f9c81cc432a0e84703f' | 'prr-f29c26dc09e04536bc77f9c32786ed70' | 'prr-0522d426a5b741c791ba05496c35297a';
12118
12497
  type BankPaymentStatusCode = 'scheduled' | 'sent' | 'failed';
12119
12498
  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';
12120
- type BillingMetricKey = 'adjustment_transactions_count' | 'adjustment_transactions_total' | 'capture_transactions_count' | 'capture_transactions_total' | 'channel_transactions_count' | 'channel_transactions_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_total' | 'revenue_share_label_transactions_count' | 'revenue_share_label_transactions_total' | 'manual_transactions_count' | 'manual_transactions_total' | 'order_transactions_count' | 'order_transactions_total' | 'refund_transactions_count' | 'refund_transactions_total' | 'reversal_order_cancellations_transactions_count' | 'reversal_order_cancellations_transactions_total' | 'reversal_external_fulfillment_transactions_count' | 'reversal_external_fulfillment_transactions_total' | 'tax_transactions_count' | 'tax_transactions_total' | 'transfer_transactions_count' | 'transfer_transactions_total' | 'fulfillments_count' | 'fulfillments_total' | 'shipping_notifications_count' | 'queued_capture_unprocessed_count' | 'queued_capture_deletion_unprocessed_count' | 'queued_channel_transaction_unprocessed_count' | 'queued_channel_organization_unprocessed_count' | 'queued_consumer_invoice_unprocessed_count' | 'queued_label_tracking_summary_unprocessed_count' | 'queued_order_unprocessed_count' | 'queued_order_identifier_unprocessed_count' | 'queued_refund_unprocessed_count' | 'queued_refund_deletion_unprocessed_count' | 'queued_statement_batch_unprocessed_count' | 'queued_statement_batch_email_unprocessed_count' | 'queued_statement_email_unprocessed_count' | 'queued_statement_summary_email_unprocessed_count' | 'shipping_notifications_total' | 'statements_no_payout_count' | 'statements_no_payout_total' | 'statements_pending_payout_count' | 'statements_pending_payout_total' | 'payouts_scheduled_count' | 'payouts_scheduled_total' | 'payouts_sent_count' | 'payouts_sent_total' | 'payouts_failed_count' | 'payouts_failed_total' | 'pending_payouts_max_age' | 'average_payout_amount';
12499
+ 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_total' | 'channel_transactions_capture_count' | 'channel_transactions_capture_total' | 'channel_transactions_adjustment_count' | 'channel_transactions_adjustment_total' | 'channel_transactions_reversal_count' | 'channel_transactions_reversal_total' | 'channel_transactions_other_count' | 'channel_transactions_other_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_total' | 'reversal_order_cancellations_transactions_count' | 'reversal_order_cancellations_transactions_total' | 'reversal_external_fulfillment_transactions_count' | 'reversal_external_fulfillment_transactions_total' | 'tax_transactions_count' | 'tax_transactions_total' | 'transfer_transactions_count' | 'transfer_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' | 'shipping_notifications_count' | 'queued_capture_unprocessed_count' | 'queued_capture_deletion_unprocessed_count' | 'queued_channel_transaction_unprocessed_count' | 'queued_channel_organization_unprocessed_count' | 'queued_consumer_invoice_unprocessed_count' | 'queued_fulfillment_external_unprocessed_count' | 'queued_fulfillment_in_transit_unprocessed_count' | 'queued_fulfillment_shipping_notification_unprocessed_count' | 'queued_label_invoice_request_unprocessed_count' | 'queued_label_tracking_summary_unprocessed_count' | 'queued_label_origin_unprocessed_count' | 'queued_order_unprocessed_count' | 'queued_order_identifier_unprocessed_count' | 'queued_refund_unprocessed_count' | 'queued_refund_deletion_unprocessed_count' | 'queued_refund_over_capture_unprocessed_count' | 'queued_sales_record_unprocessed_count' | 'queued_statement_batch_unprocessed_count' | 'queued_statement_email_unprocessed_count' | 'queued_statement_summary_email_unprocessed_count' | 'queued_record_snooze_count' | 'queued_record_snooze_ending_in_48_hours_count' | 'statements_no_payout_count' | 'statements_no_payout_total' | 'statements_pending_payout_count' | 'statements_pending_payout_total' | 'payouts_scheduled_count' | 'payouts_scheduled_total' | 'payouts_sent_count' | 'payouts_sent_total' | 'payouts_failed_count' | 'payouts_failed_total' | 'pending_payouts_max_age' | 'average_payout_amount' | 'orders_with_payments_count' | 'orders_without_payments_count' | 'capture_transaction_with_zero_fees_and_no_channel_transaction_count';
12121
12500
  type BillingStatementAttachmentKey = 'invoice' | 'statement' | 'consumer_invoice' | 'credit_memo' | 'channel_billed' | 'transactions' | 'virtual_card' | 'tax_remittance' | 'manual' | 'orders' | 'label' | 'order_service' | 'tax' | 'all';
12122
- type BillingStatementBatchFileKey = 'archive' | 'summary';
12501
+ type BillingStatementBatchFileKey = 'summary';
12123
12502
  type BillingTransactionStatus = 'pending' | 'pending_proof' | 'posted';
12124
12503
  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';
12125
12504
  type BlazeCheckoutEvent = 'begin_checkout' | 'select_promotion' | 'add_shipping_info' | 'add_payment_info' | 'purchase';
@@ -12127,10 +12506,12 @@ declare namespace io.flow.internal.v0.enums {
12127
12506
  type BrowserBundleErrorCode = 'generic_error' | 'country_invalid';
12128
12507
  type CalculatorEngine = 'flow_rate_and_rule' | 'dtce' | 'dtce_two_calls' | 'dtce_with_deminimis' | 'dtce_merged_with_tax';
12129
12508
  type CarrierLabelGenerationMethod = 'direct' | 'easypost';
12509
+ type CarrierValidationStatus = 'success' | 'error';
12130
12510
  type CatalogImportType = 'catalog_items' | 'item_form_overlays' | 'item_prices' | 'price_book_items_import' | 'price_book_items_query_import';
12131
12511
  type ChannelBilledTransactionType = 'adjustment' | 'reversal' | 'channel_initiated';
12132
- type ChannelOrderAcceptanceErrorAction = 'auto_reject';
12133
- type ChannelOrderAcceptanceRejectionReason = 'unsupported_origin_country' | 'unsupported_destination_country' | 'domestic_order' | 'order_contains_gift_card' | 'order_contains_restricted_goods' | 'missing_order_information' | 'unsupported_payment_information' | 'unsupported_shop_currency' | 'unsupported_free_order' | 'extracting_distribution_info_failed' | 'shipping_estimation_failed' | 'payment_authorization_failed' | 'unsupported_subsidized_order' | 'unsupported_virtual_goods';
12512
+ type ChannelOrderAcceptanceErrorAction = 'auto_reject' | 'auto_accept';
12513
+ type ChannelOrderAcceptanceNextActionFrom = 'cx_team' | 'core_team' | 'core_team_investigate' | 'mex_team' | 'payments_team' | 'tlc_team';
12514
+ type ChannelOrderAcceptanceRejectionReason = 'unsupported_origin_country' | 'unsupported_destination_country' | 'domestic_order' | 'order_contains_gift_card' | 'order_contains_restricted_goods' | 'missing_order_information' | 'unsupported_payment_information' | 'unsupported_shop_currency' | 'unsupported_free_order' | 'extracting_distribution_info_failed' | 'shipping_estimation_failed' | 'payment_authorization_failed' | 'unsupported_subsidized_order' | 'unsupported_virtual_goods' | 'non_matching_currencies';
12134
12515
  type ChannelOrderAcceptanceStatus = 'accepted' | 'rejected' | 'review';
12135
12516
  type ChannelTransactionType = 'adjustment' | 'reversal' | 'processing';
12136
12517
  type ChargebackPaymentStatus = 'captured' | 'refunded';
@@ -12226,6 +12607,7 @@ declare namespace io.flow.internal.v0.enums {
12226
12607
  type DisputeLiability = 'flow' | 'organization';
12227
12608
  type DisputeProcessor = 'adyen' | 'paypal';
12228
12609
  type DisputeStatus = 'pending' | 'won' | 'lost' | 'expired';
12610
+ type DisputeTransactionType = 'adjustment' | 'dispute';
12229
12611
  type DisputeType = 'chargeback';
12230
12612
  type DutyCompoundExpressionType = 'sum' | 'max' | 'min';
12231
12613
  type DutyExemptItemTypes = 'gift_card' | 'service' | 'digital_item' | 'personalization';
@@ -12236,7 +12618,7 @@ declare namespace io.flow.internal.v0.enums {
12236
12618
  type DutyTransactionType = 'adjustment' | 'reversal' | 'duty';
12237
12619
  type EmptyAttribute = 'irrelevant';
12238
12620
  type ErpFileType = 'vendor';
12239
- 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' | '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_deleted' | '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' | 'daily_value_upserted' | 'daily_value_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' | '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' | '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' | '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_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_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' | 'partner_organization_settings_upserted' | 'partner_organization_settings_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' | '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' | '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_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' | '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';
12621
+ 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' | '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_deleted' | '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' | 'label_invoice_request_upserted' | 'label_invoice_request_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' | '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' | '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' | '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_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' | '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' | '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' | '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' | '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';
12240
12622
  type ExperienceImportType = 'experience_with_settings';
12241
12623
  type ExperienceOrderAction = 'submit' | 'refund_gift_cards';
12242
12624
  type ExperienceOrderActionTrigger = 'zero_balance' | 'unsubmitted_order';
@@ -12270,6 +12652,7 @@ declare namespace io.flow.internal.v0.enums {
12270
12652
  type LabelCreationStatus = 'success' | 'error' | 'pending' | 'cancelled';
12271
12653
  type LabelGenerationAddressFailureStatus = 'in_review' | 'resolved' | 'unresolved';
12272
12654
  type LabelInputSource = 'estimate';
12655
+ type LabelRequestErrorHandlingResponsibility = 'merchant' | 'merchant_integration' | 'shopify_integration' | 'globale_cx' | 'globale_system';
12273
12656
  type LabelTransactionType = 'adjustment' | 'reversal' | 'billable_label' | 'fee' | 'revenue_share';
12274
12657
  type LiabilityType = 'full_value_tax' | 'low_value_goods_tax' | 'high_value_goods_tax' | 'duties';
12275
12658
  type MainTransactionStatus = 'scheduled' | 'pending_proof';
@@ -12293,7 +12676,7 @@ declare namespace io.flow.internal.v0.enums {
12293
12676
  type OnboardingAuditThemeKey = 'billing' | 'b2b_invoicing' | 'catalog' | 'currency' | 'checkout' | 'fraud' | 'logistics' | 'payments' | 'shopify_markets' | 'integration_partner' | 'dtce' | 'restrictions' | 'organization_status' | 'miscellaneous';
12294
12677
  type OnboardingAutomationProcessState = 'not_started' | 'in_progress' | 'success' | 'failed';
12295
12678
  type OnboardingAutomationTaskState = 'not_started' | 'in_progress' | 'success' | 'failed';
12296
- type OnboardingStateSource = 'unknown' | 'unit_test' | 'api' | 'api_activation' | 'api_internal' | 'api_internal_block' | 'api_internal_unblock' | 'api_internal_delete_transaction' | 'onboarding_application' | 'organization_state_change' | 'restriction_organization_status';
12679
+ type OnboardingStateSource = 'unknown' | 'unit_test' | 'api' | 'api_activation' | 'api_sandbox_setup' | 'api_internal' | 'api_internal_block' | 'api_internal_unblock' | 'api_internal_delete_transaction' | 'onboarding_application' | 'organization_state_change' | 'restriction_organization_status';
12297
12680
  type OrderAction = 'consumer_submit' | 'fraud_review_accept' | 'fraud_review_decline' | 'payment_fully_authorize' | 'payment_fully_capture';
12298
12681
  type OrderAttributeIntent = 'discount_code';
12299
12682
  type OrderCancellationInitiatedBy = 'flow' | 'organization';
@@ -12324,13 +12707,15 @@ declare namespace io.flow.internal.v0.enums {
12324
12707
  type PromptCheckoutDisplayPosition = 'email' | 'submission';
12325
12708
  type PromptOptions = 'notice_only' | 'require_consent' | 'consent_by_default';
12326
12709
  type PromptTarget = 'browse' | 'checkout';
12327
- type QueuedRecordType = 'capture' | 'capture_deletion' | 'channel_transaction' | 'channel_organization' | 'consumer_invoice' | 'label_tracking_summary' | 'order' | 'order_identifier' | 'refund' | 'refund_deletion' | 'statement_batch' | 'statement_batch_email' | 'statement_email' | 'statement_summary_email' | 'wash';
12710
+ type QueuedRecordType = 'capture' | 'capture_deletion' | 'channel_transaction' | 'channel_organization' | 'consumer_invoice' | 'fulfillment_in_transit' | 'fulfillment_shipping_notification' | 'fulfillment_external' | 'label_tracking_summary' | 'label_invoice_request' | 'label_origin' | 'order' | 'order_identifier' | 'refund' | 'refund_deletion' | 'refund_over_capture' | 'sales_record' | 'statement_batch' | 'statement_email' | 'statement_summary_email' | 'wash';
12328
12711
  type QuoteRequestType = 'generate' | 'delete' | 'update_currency_rate' | 'update_country';
12712
+ type RateLevelKey = 'shopify_small_usa' | 'shopify_medium_usa' | 'shopify_enterprise_usa' | 'shopify_small_sdc_usa';
12329
12713
  type RateSource = 'calculated' | 'market';
12330
12714
  type ReboundConfigurationStatus = 'active' | 'inactive';
12331
12715
  type RedirectReason = 'three_d_secure';
12332
- type RejectionReason = 'suspicious_behavior' | 'suspicious_past_activity' | 'risky_velocity' | 'previous_chargebacks' | 'restricted_party_screening';
12716
+ type RejectionReason = 'merchant_policy' | 'previous_chargebacks' | 'restricted_party_screening' | 'risky_velocity' | 'suspicious_behavior' | 'suspicious_past_activity';
12333
12717
  type ReportInterval = 'hourly' | 'daily' | 'weekly' | 'monthly';
12718
+ type ReportStatus = 'created' | 'completed' | 'completed_no_records' | 'failed';
12334
12719
  type ReportingScheme = 'immediate_reporting_to_tax_authority' | 'periodic_reporting_to_tax_authority' | 'paid_at_border' | 'paid_on_delivery';
12335
12720
  type ResponsibleParty = 'flow' | 'organization';
12336
12721
  type RestrictionAction = 'prohibited' | 'restricted';
@@ -12346,6 +12731,7 @@ declare namespace io.flow.internal.v0.enums {
12346
12731
  type ShopifyGrantStatus = 'pass' | 'fail';
12347
12732
  type ShopifyMarketsDangerousGoods = 'aerosols' | 'air_bag_inflators_or_seat_belt_pretensioners' | 'alcoholic_beverages_containing_more_than_24_percent_alcohol_by_volume' | 'batteries' | 'carbon_dioxide_or_dry_ice' | 'corrosives' | 'cannabidiol_products' | 'cologne_or_perfume' | 'currency_or_gift_cards_or_monetary_instruments' | 'exotic_leather_goods' | 'environmental_waste' | 'explosives_or_ammunition' | 'flammable_liquids' | 'gases' | 'hazardous_or_combustible_materials' | 'infectious_or_biological_substances' | 'knives' | 'matches_or_lighter_or_lighter_refills' | 'nail_polish' | 'oxidizing_materials_or_organic_peroxides' | 'pornography' | 'prohibited_carriage' | 'pesticides_or_toxic_herbicides_or_insecticides_or_poisonous_toxic_substances';
12348
12733
  type ShopifyMarketsHtsNumberAvailable = 'yes' | 'no' | 'i_dont_know';
12734
+ type ShopifyMarketsQueuedRecordType = 'order_update' | 'card_payment' | 'online_payment' | 'flow_shop' | 'catalog_publication_sync' | 'product_restriction_result';
12349
12735
  type ShopifyMarketsTradeSector = 'apparel_and_accessories' | 'beauty_and_cosmetics' | 'electronics' | 'food_or_perishables' | 'jewellery_and_watches' | 'paper_and_art' | 'sports_and_fitness' | 'toys_hobbies_gifts' | 'other';
12350
12736
  type ShopifyMonitoringMonitorReviewStatus = 'in_review' | 'reviewed';
12351
12737
  type ShopifyMonitoringTrackingField = 'tracking_number' | 'carrier_service' | 'tracking_url';
@@ -12366,7 +12752,7 @@ declare namespace io.flow.internal.v0.enums {
12366
12752
  type SuggestionAction = 'accept' | 'validate' | 'review';
12367
12753
  type SurchargeType = 'fuel' | 'remote_area' | 'oversize' | 'duties_paid';
12368
12754
  type TariffEligibilityType = 'rex';
12369
- type TaskProcessorKey = 'order_messenger' | 'harmonization' | 'fraud_review' | 'carrier_account' | 'payment' | 'label_generation_settings' | 'ratecard' | 'logistics_center' | 'center_defaults';
12755
+ type TaskProcessorKey = 'order_messenger' | 'harmonization' | 'fraud_review' | 'carrier_account' | 'payment' | 'rate_levels' | 'center_defaults';
12370
12756
  type TaxCalculationErrorCode = 'generic_error' | 'outside_of_jurisdiction';
12371
12757
  type TaxParty = 'consumer' | 'organization' | 'flow' | 'carrier';
12372
12758
  type TaxTransactionType = 'adjustment' | 'reversal' | 'tax';
@@ -12374,7 +12760,10 @@ declare namespace io.flow.internal.v0.enums {
12374
12760
  type TrackingIntegrationType = 'api' | 'bulk' | 'aftership';
12375
12761
  type TransactionPostingMethod = 'time' | 'proof';
12376
12762
  type TransferMethod = 'ach';
12763
+ type TrueUpSurchargeType = 'fuel' | 'remote_area' | 'oversize' | 'duties_paid' | 'emergency' | 'peak';
12377
12764
  type UnclassifiedProductStatus = 'ignored' | 'escalated' | 'requeued' | 'unverified' | 'queued' | 'unconfident';
12765
+ type WashCarrierActualFileStatus = 'pending' | 'processing' | 'processed' | 'failed';
12766
+ type WeightSelection = 'dead' | 'dimensional';
12378
12767
  }
12379
12768
 
12380
12769
  declare namespace io.flow.internal.v0.models {
@@ -12682,6 +13071,7 @@ declare namespace io.flow.internal.v0.models {
12682
13071
  readonly 'authentication': io.flow.internal.v0.models.AdyenAuthenticationForm;
12683
13072
  readonly 'country': string;
12684
13073
  readonly 'status'?: io.flow.internal.v0.enums.ProcessorEntityStatus;
13074
+ readonly 'organization_capability'?: io.flow.internal.v0.enums.OrganizationCapability;
12685
13075
  }
12686
13076
 
12687
13077
  interface AdyenAuthentication {
@@ -12843,6 +13233,7 @@ declare namespace io.flow.internal.v0.models {
12843
13233
  readonly 'external_id': string;
12844
13234
  readonly 'country': string;
12845
13235
  readonly 'status'?: io.flow.internal.v0.enums.ProcessorEntityStatus;
13236
+ readonly 'organization_capability'?: io.flow.internal.v0.enums.OrganizationCapability;
12846
13237
  }
12847
13238
 
12848
13239
  interface AdyenPaymentDetailsForm {
@@ -12901,6 +13292,7 @@ declare namespace io.flow.internal.v0.models {
12901
13292
  readonly 'country': string;
12902
13293
  readonly 'authentication': io.flow.internal.v0.models.AfterpayAuthenticationForm;
12903
13294
  readonly 'status'?: io.flow.internal.v0.enums.ProcessorEntityStatus;
13295
+ readonly 'organization_capability'?: io.flow.internal.v0.enums.OrganizationCapability;
12904
13296
  }
12905
13297
 
12906
13298
  interface AfterpayAuthentication {
@@ -13024,6 +13416,12 @@ declare namespace io.flow.internal.v0.models {
13024
13416
  readonly 'count': number;
13025
13417
  }
13026
13418
 
13419
+ interface AlgoliaIndexAssignment {
13420
+ readonly 'id': string;
13421
+ readonly 'name': string;
13422
+ readonly 'application_id': string;
13423
+ }
13424
+
13027
13425
  interface AllItemsExport {
13028
13426
  readonly 'discriminator': 'all_items_export';
13029
13427
  readonly 'event_id': string;
@@ -13129,6 +13527,12 @@ declare namespace io.flow.internal.v0.models {
13129
13527
  readonly 'charge_trigger': io.flow.internal.v0.enums.OrderChargeTrigger;
13130
13528
  }
13131
13529
 
13530
+ interface AutoReviewCriteria {
13531
+ readonly 'hs_code'?: string;
13532
+ readonly 'keywords'?: string[];
13533
+ readonly 'action'?: io.flow.internal.v0.enums.RestrictionStatus;
13534
+ }
13535
+
13132
13536
  interface Backfill {
13133
13537
  readonly 'days_to_backfill': string[];
13134
13538
  }
@@ -13305,7 +13709,6 @@ declare namespace io.flow.internal.v0.models {
13305
13709
 
13306
13710
  interface BillingStatementBatch {
13307
13711
  readonly 'id': string;
13308
- readonly 'reconciliation': io.flow.internal.v0.models.BillingStatementBatchReconciliation;
13309
13712
  }
13310
13713
 
13311
13714
  interface BillingStatementBatchDeleted {
@@ -13315,10 +13718,6 @@ declare namespace io.flow.internal.v0.models {
13315
13718
  readonly 'id': string;
13316
13719
  }
13317
13720
 
13318
- interface BillingStatementBatchReconciliation {
13319
- readonly 'month': string;
13320
- }
13321
-
13322
13721
  interface BillingStatementBatchReference {
13323
13722
  readonly 'id': string;
13324
13723
  }
@@ -13439,6 +13838,7 @@ declare namespace io.flow.internal.v0.models {
13439
13838
  readonly 'authentication': io.flow.internal.v0.models.BitpayAuthenticationForm;
13440
13839
  readonly 'country': string;
13441
13840
  readonly 'status'?: io.flow.internal.v0.enums.ProcessorEntityStatus;
13841
+ readonly 'organization_capability'?: io.flow.internal.v0.enums.OrganizationCapability;
13442
13842
  }
13443
13843
 
13444
13844
  interface BitpayAuthentication {
@@ -13708,6 +14108,32 @@ declare namespace io.flow.internal.v0.models {
13708
14108
  readonly 'name': string;
13709
14109
  }
13710
14110
 
14111
+ interface CalculatorDtcePostBody {
14112
+ readonly 'products': io.flow.internal.v0.models.CalculatorDtceProduct[];
14113
+ readonly 'countryCodeFrom': string;
14114
+ readonly 'countryCodeTo': string;
14115
+ readonly 'classification': string;
14116
+ readonly 'shippingCost': number;
14117
+ readonly 'insuranceCost': number;
14118
+ readonly 'totalShipmentWeight': number;
14119
+ readonly 'currencyCode': string;
14120
+ readonly 'outputCurrencyCode': string;
14121
+ readonly 'explanation': boolean;
14122
+ readonly 'responseFormat': number;
14123
+ readonly 'requestId': string;
14124
+ readonly 'provinceCode'?: string;
14125
+ }
14126
+
14127
+ interface CalculatorDtceProduct {
14128
+ readonly 'origin': string;
14129
+ readonly 'hsCode': string;
14130
+ readonly 'sku': string;
14131
+ readonly 'value': number;
14132
+ readonly 'weight': number;
14133
+ readonly 'quantity': number;
14134
+ readonly 'reference'?: string;
14135
+ }
14136
+
13711
14137
  interface CalculatorOrganizationSettings {
13712
14138
  readonly 'id': string;
13713
14139
  readonly 'default_country_of_origin'?: string;
@@ -13766,6 +14192,12 @@ declare namespace io.flow.internal.v0.models {
13766
14192
  readonly 'carrier_account': io.flow.internal.v0.models.CarrierAccount;
13767
14193
  }
13768
14194
 
14195
+ interface CarrierAccountValidation {
14196
+ readonly 'organization': string;
14197
+ readonly 'status': io.flow.internal.v0.enums.CarrierValidationStatus;
14198
+ readonly 'error_message'?: string;
14199
+ }
14200
+
13769
14201
  interface CarrierInvoice {
13770
14202
  readonly 'number': string;
13771
14203
  readonly 'timestamp': string;
@@ -13818,6 +14250,12 @@ declare namespace io.flow.internal.v0.models {
13818
14250
  readonly 'data': io.flow.internal.v0.models.CatalogItemRegionAvailabilitiesData;
13819
14251
  }
13820
14252
 
14253
+ interface CatalogPublicationSyncValidationError {
14254
+ readonly 'message': string;
14255
+ readonly 'reason': string;
14256
+ readonly 'next_action_from': io.flow.internal.v0.enums.ChannelOrderAcceptanceNextActionFrom;
14257
+ }
14258
+
13821
14259
  interface CatalogSettings {
13822
14260
  readonly 'id': string;
13823
14261
  readonly 'mixed_bag_weight': io.flow.internal.v0.enums.MixedBagWeight;
@@ -14039,6 +14477,7 @@ declare namespace io.flow.internal.v0.models {
14039
14477
  readonly 'payment_request_id'?: string;
14040
14478
  readonly 'status': io.flow.internal.v0.enums.ChannelOrderAcceptanceStatus;
14041
14479
  readonly 'reasons': io.flow.internal.v0.models.ChannelOrderAcceptanceReason[];
14480
+ readonly 'next_action_from'?: io.flow.internal.v0.enums.ChannelOrderAcceptanceNextActionFrom;
14042
14481
  readonly 'order_created_at'?: string;
14043
14482
  }
14044
14483
 
@@ -16392,6 +16831,7 @@ declare namespace io.flow.internal.v0.models {
16392
16831
  readonly 'customs_description'?: string;
16393
16832
  readonly 'hs6_code'?: string;
16394
16833
  readonly 'hs6_description'?: string;
16834
+ readonly 'status'?: io.flow.internal.v0.enums.ItemHarmonizationStatus;
16395
16835
  }
16396
16836
 
16397
16837
  interface ClassificationProductId {
@@ -16456,6 +16896,10 @@ declare namespace io.flow.internal.v0.models {
16456
16896
  readonly 'urls': string[];
16457
16897
  }
16458
16898
 
16899
+ interface CompanyReference {
16900
+ readonly 'id': string;
16901
+ }
16902
+
16459
16903
  interface Compliance {
16460
16904
  readonly 'id': string;
16461
16905
  readonly 'destination': string;
@@ -16584,6 +17028,7 @@ declare namespace io.flow.internal.v0.models {
16584
17028
  readonly 'authentication': io.flow.internal.v0.models.CryptoAuthenticationForm;
16585
17029
  readonly 'country': string;
16586
17030
  readonly 'status'?: io.flow.internal.v0.enums.ProcessorEntityStatus;
17031
+ readonly 'organization_capability'?: io.flow.internal.v0.enums.OrganizationCapability;
16587
17032
  }
16588
17033
 
16589
17034
  interface CryptoAuthentication {
@@ -16604,7 +17049,7 @@ declare namespace io.flow.internal.v0.models {
16604
17049
  readonly 'base_amount': number;
16605
17050
  readonly 'surcharges': io.flow.internal.v0.models.CsvSurcharges;
16606
17051
  readonly 'total': number;
16607
- readonly 'weight_unit': io.flow.common.v0.enums.UnitOfMeasurement;
17052
+ readonly 'weight_unit': io.flow.units.v0.enums.UnitOfWeight;
16608
17053
  readonly 'weight': number;
16609
17054
  readonly 'ratecard': io.flow.internal.v0.models.CsvActualRatecard;
16610
17055
  }
@@ -16614,7 +17059,7 @@ declare namespace io.flow.internal.v0.models {
16614
17059
  }
16615
17060
 
16616
17061
  interface CsvDimensions {
16617
- readonly 'unit': io.flow.common.v0.enums.UnitOfMeasurement;
17062
+ readonly 'unit': io.flow.units.v0.enums.UnitOfLength;
16618
17063
  readonly 'length': number;
16619
17064
  readonly 'width': number;
16620
17065
  readonly 'depth': number;
@@ -16653,7 +17098,7 @@ declare namespace io.flow.internal.v0.models {
16653
17098
  readonly 'base_amount': number;
16654
17099
  readonly 'surcharges': io.flow.internal.v0.models.CsvSurcharges;
16655
17100
  readonly 'total': number;
16656
- readonly 'weight_unit': io.flow.common.v0.enums.UnitOfMeasurement;
17101
+ readonly 'weight_unit': io.flow.units.v0.enums.UnitOfWeight;
16657
17102
  readonly 'weight': number;
16658
17103
  readonly 'variance': number;
16659
17104
  }
@@ -16718,7 +17163,7 @@ declare namespace io.flow.internal.v0.models {
16718
17163
  }
16719
17164
 
16720
17165
  interface CsvWeight {
16721
- readonly 'unit': io.flow.common.v0.enums.UnitOfMeasurement;
17166
+ readonly 'unit': io.flow.units.v0.enums.UnitOfWeight;
16722
17167
  readonly 'provided': number;
16723
17168
  readonly 'dimensional': number;
16724
17169
  readonly 'lookup': number;
@@ -16927,6 +17372,7 @@ declare namespace io.flow.internal.v0.models {
16927
17372
  readonly 'order': io.flow.internal.v0.models.DebugOrder;
16928
17373
  readonly 'debug': io.flow.internal.v0.models.DebugDetails;
16929
17374
  readonly 'transactions': io.flow.billing.v0.models.Transaction[];
17375
+ readonly 'reporting': io.flow.internal.v0.models.ReportingDetails;
16930
17376
  }
16931
17377
 
16932
17378
  interface DebugOrderTransactionForm {
@@ -16938,6 +17384,8 @@ declare namespace io.flow.internal.v0.models {
16938
17384
  readonly 'refund_id'?: string;
16939
17385
  readonly 'order_identifier'?: io.flow.internal.v0.models.DebugOrderTransactionFormOrderIdentifier;
16940
17386
  readonly 'authorization_id'?: string;
17387
+ readonly 'posting_proof_id'?: string;
17388
+ readonly 'label_tracking_summary_id'?: string;
16941
17389
  }
16942
17390
 
16943
17391
  interface DebugOrderTransactionFormOrderIdentifier {
@@ -17428,6 +17876,10 @@ declare namespace io.flow.internal.v0.models {
17428
17876
  readonly 'passphrase_ids': string[];
17429
17877
  }
17430
17878
 
17879
+ interface EntityReference {
17880
+ readonly 'id': string;
17881
+ }
17882
+
17431
17883
  interface ErpFlowFile {
17432
17884
  readonly 'id': string;
17433
17885
  readonly 'type': io.flow.internal.v0.enums.ErpFileType;
@@ -17435,12 +17887,56 @@ declare namespace io.flow.internal.v0.models {
17435
17887
  readonly 'created_at': string;
17436
17888
  }
17437
17889
 
17438
- interface ErpFlowFileBatchForm {
17439
- readonly 'environment': io.flow.common.v0.enums.Environment;
17890
+ interface ErpFlowFileForm {
17440
17891
  readonly 'type': io.flow.internal.v0.enums.ErpFileType;
17441
17892
  }
17442
17893
 
17894
+ interface ErpFlowVendor {
17895
+ readonly 'company': io.flow.internal.v0.models.CompanyReference;
17896
+ readonly 'entity': io.flow.internal.v0.models.EntityReference;
17897
+ readonly 'acc_des': string;
17898
+ readonly 'country_name': string;
17899
+ readonly 'acng_code': string;
17900
+ readonly 'code': string;
17901
+ readonly 'branch': string;
17902
+ readonly 'trial_bal_code': string;
17903
+ readonly 'sec_name': string;
17904
+ readonly 'branch_des': string;
17905
+ readonly 'state_a': string;
17906
+ readonly 'bank_code': string;
17907
+ readonly 'id': string;
17908
+ readonly 'tax_code'?: string;
17909
+ readonly 'vat_flag'?: string;
17910
+ readonly 'w_tax_percent'?: string;
17911
+ readonly 'iban'?: string;
17912
+ readonly 'confirmed_date'?: string;
17913
+ readonly 'w_tax_date'?: string;
17914
+ readonly 'w_tax_num_expl'?: string;
17915
+ readonly 'phone'?: string;
17916
+ readonly 'address'?: string;
17917
+ readonly 'address_a'?: string;
17918
+ readonly 'address_2'?: string;
17919
+ readonly 'address_3'?: string;
17920
+ readonly 'state_name'?: string;
17921
+ readonly 'zip'?: string;
17922
+ readonly 'pay_account'?: string;
17923
+ readonly 'comp_num'?: string;
17924
+ readonly 'w_tax_num'?: string;
17925
+ readonly 'vat_num'?: string;
17926
+ readonly 'orig_acc_name'?: string;
17927
+ readonly 'form_1099_code'?: string;
17928
+ readonly 'state'?: string;
17929
+ readonly 'fax'?: string;
17930
+ readonly 'details'?: string;
17931
+ readonly 'state_code'?: string;
17932
+ readonly 'tax_office_code'?: string;
17933
+ readonly 'pay_code'?: string;
17934
+ readonly 'eacc_des'?: string;
17935
+ readonly 'acng_des'?: string;
17936
+ }
17937
+
17443
17938
  interface ErpPriorityFile {
17939
+ readonly 'name': string;
17444
17940
  readonly 'id': string;
17445
17941
  readonly 'type': io.flow.internal.v0.enums.ErpFileType;
17446
17942
  readonly 'url': string;
@@ -17449,16 +17945,119 @@ declare namespace io.flow.internal.v0.models {
17449
17945
 
17450
17946
  interface ErpPriorityFileForm {
17451
17947
  readonly 'type': io.flow.internal.v0.enums.ErpFileType;
17948
+ readonly 'name': string;
17452
17949
  readonly 'url': string;
17453
17950
  }
17454
17951
 
17952
+ interface ErpPriorityVendor {
17953
+ readonly 'id': string;
17954
+ readonly 'acc_des'?: string;
17955
+ readonly 'tax_code'?: string;
17956
+ readonly 'vat_flag'?: string;
17957
+ readonly 'country_name'?: string;
17958
+ readonly 'w_tax_percent'?: string;
17959
+ readonly 'iban'?: string;
17960
+ readonly 'confirmed_date'?: string;
17961
+ readonly 'w_tax_date'?: string;
17962
+ readonly 'w_tax_num_expl'?: string;
17963
+ readonly 'acng_code'?: string;
17964
+ readonly 'phone'?: string;
17965
+ readonly 'address'?: string;
17966
+ readonly 'address_a'?: string;
17967
+ readonly 'address_2'?: string;
17968
+ readonly 'address_3'?: string;
17969
+ readonly 'state_name'?: string;
17970
+ readonly 'code'?: string;
17971
+ readonly 'zip'?: string;
17972
+ readonly 'pay_account'?: string;
17973
+ readonly 'comp_num'?: string;
17974
+ readonly 'w_tax_num'?: string;
17975
+ readonly 'vat_num'?: string;
17976
+ readonly 'orig_acc_name'?: string;
17977
+ readonly 'branch'?: string;
17978
+ readonly 'form_1099_code'?: string;
17979
+ readonly 'trial_bal_code'?: string;
17980
+ readonly 'sec_name'?: string;
17981
+ readonly 'state'?: string;
17982
+ readonly 'state_a'?: string;
17983
+ readonly 'fax'?: string;
17984
+ readonly 'details'?: string;
17985
+ readonly 'bank_code'?: string;
17986
+ readonly 'state_code'?: string;
17987
+ readonly 'tax_office_code'?: string;
17988
+ readonly 'pay_code'?: string;
17989
+ readonly 'eacc_des'?: string;
17990
+ readonly 'acng_des'?: string;
17991
+ readonly 'branch_des'?: string;
17992
+ }
17993
+
17994
+ interface ErpPriorityVendorForm {
17995
+ readonly 'acc_des'?: string;
17996
+ readonly 'tax_code'?: string;
17997
+ readonly 'vat_flag'?: string;
17998
+ readonly 'country_name'?: string;
17999
+ readonly 'w_tax_percent'?: string;
18000
+ readonly 'iban'?: string;
18001
+ readonly 'confirmed_date'?: string;
18002
+ readonly 'w_tax_date'?: string;
18003
+ readonly 'w_tax_num_expl'?: string;
18004
+ readonly 'acng_code'?: string;
18005
+ readonly 'phone'?: string;
18006
+ readonly 'address'?: string;
18007
+ readonly 'address_a'?: string;
18008
+ readonly 'address_2'?: string;
18009
+ readonly 'address_3'?: string;
18010
+ readonly 'state_name'?: string;
18011
+ readonly 'code'?: string;
18012
+ readonly 'zip'?: string;
18013
+ readonly 'pay_account'?: string;
18014
+ readonly 'comp_num'?: string;
18015
+ readonly 'w_tax_num'?: string;
18016
+ readonly 'vat_num'?: string;
18017
+ readonly 'orig_acc_name'?: string;
18018
+ readonly 'branch'?: string;
18019
+ readonly 'form_1099_code'?: string;
18020
+ readonly 'trial_bal_code'?: string;
18021
+ readonly 'sec_name'?: string;
18022
+ readonly 'state'?: string;
18023
+ readonly 'state_a'?: string;
18024
+ readonly 'fax'?: string;
18025
+ readonly 'details'?: string;
18026
+ readonly 'bank_code'?: string;
18027
+ readonly 'state_code'?: string;
18028
+ readonly 'tax_office_code'?: string;
18029
+ readonly 'pay_code'?: string;
18030
+ readonly 'eacc_des'?: string;
18031
+ readonly 'acng_des'?: string;
18032
+ readonly 'branch_des'?: string;
18033
+ }
18034
+
17455
18035
  interface ErpVendor {
17456
18036
  readonly 'placeholder'?: string;
17457
18037
  }
17458
18038
 
17459
- interface ErpVendorsDelta {
17460
- readonly 'entity': io.flow.merchant.of.record.v0.enums.FlowEntity;
17461
- readonly 'count': number;
18039
+ interface ErpVendorStatus {
18040
+ readonly 'entities': io.flow.internal.v0.models.ErpVendorStatusEntity[];
18041
+ readonly 'latest_flow_file'?: io.flow.internal.v0.models.ErpVendorStatusFlowFile;
18042
+ readonly 'latest_priority_file'?: io.flow.internal.v0.models.ErpVendorStatusPriorityFile;
18043
+ }
18044
+
18045
+ interface ErpVendorStatusEntity {
18046
+ readonly 'entity': io.flow.internal.v0.models.EntityReference;
18047
+ readonly 'number_differences': number;
18048
+ }
18049
+
18050
+ interface ErpVendorStatusFlowFile {
18051
+ readonly 'url': string;
18052
+ readonly 'created_at': string;
18053
+ }
18054
+
18055
+ interface ErpVendorStatusPriorityFile {
18056
+ readonly 'name': string;
18057
+ readonly 'url': string;
18058
+ readonly 'created_at': string;
18059
+ readonly 'errors'?: string[];
18060
+ readonly 'processed_at'?: string;
17462
18061
  }
17463
18062
 
17464
18063
  interface ExclusionRuleDeleted {
@@ -17772,12 +18371,14 @@ declare namespace io.flow.internal.v0.models {
17772
18371
  readonly 'carrier_id'?: string;
17773
18372
  readonly 'service_id'?: string;
17774
18373
  readonly 'carrier_tracking_number'?: string;
18374
+ readonly 'fulfilled_via_replacement_order'?: boolean;
17775
18375
  }
17776
18376
 
17777
18377
  interface ExternalFulfillmentProofTrackingForm {
17778
18378
  readonly 'carrier_id'?: string;
17779
18379
  readonly 'service_id'?: string;
17780
18380
  readonly 'carrier_tracking_number'?: string;
18381
+ readonly 'fulfilled_via_replacement_order'?: boolean;
17781
18382
  }
17782
18383
 
17783
18384
  interface FacebookPixel {
@@ -18049,6 +18650,7 @@ declare namespace io.flow.internal.v0.models {
18049
18650
  readonly 'authentication': io.flow.internal.v0.models.FiservAuthenticationForm;
18050
18651
  readonly 'country': string;
18051
18652
  readonly 'status'?: io.flow.internal.v0.enums.ProcessorEntityStatus;
18653
+ readonly 'organization_capability'?: io.flow.internal.v0.enums.OrganizationCapability;
18052
18654
  }
18053
18655
 
18054
18656
  interface FiservAuthentication {
@@ -18099,6 +18701,7 @@ declare namespace io.flow.internal.v0.models {
18099
18701
  readonly 'funding_currency': string;
18100
18702
  readonly 'country': string;
18101
18703
  readonly 'status'?: io.flow.internal.v0.enums.ProcessorEntityStatus;
18704
+ readonly 'organization_capability'?: io.flow.internal.v0.enums.OrganizationCapability;
18102
18705
  }
18103
18706
 
18104
18707
  interface FlowAccount {
@@ -18147,6 +18750,12 @@ declare namespace io.flow.internal.v0.models {
18147
18750
  readonly 'default_contents': string;
18148
18751
  }
18149
18752
 
18753
+ interface FlowShopValidationError {
18754
+ readonly 'message': string;
18755
+ readonly 'reason': string;
18756
+ readonly 'next_action_from': io.flow.internal.v0.enums.ChannelOrderAcceptanceNextActionFrom;
18757
+ }
18758
+
18150
18759
  interface FraudPendingReview {
18151
18760
  readonly 'id': string;
18152
18761
  readonly 'fraud_review_id': string;
@@ -18233,6 +18842,7 @@ declare namespace io.flow.internal.v0.models {
18233
18842
  readonly 'provider'?: io.flow.internal.v0.enums.FraudProvider;
18234
18843
  readonly 'payment_authorization_id'?: string;
18235
18844
  readonly 'decline_reason'?: io.flow.internal.v0.unions.DeclineReason;
18845
+ readonly 'created_at'?: string;
18236
18846
  }
18237
18847
 
18238
18848
  interface FraudReviewDecision {
@@ -18243,6 +18853,7 @@ declare namespace io.flow.internal.v0.models {
18243
18853
  readonly 'status': io.flow.fraud.v0.enums.FraudStatus;
18244
18854
  readonly 'created_at': string;
18245
18855
  readonly 'liability'?: io.flow.fraud.v0.enums.FraudLiability;
18856
+ readonly 'updated_by_user'?: io.flow.common.v0.models.UserReference;
18246
18857
  }
18247
18858
 
18248
18859
  interface FraudReviewDecisionDeleted {
@@ -18361,12 +18972,31 @@ declare namespace io.flow.internal.v0.models {
18361
18972
  readonly 'percent': number;
18362
18973
  }
18363
18974
 
18975
+ interface Fulfillment {
18976
+ readonly 'id': string;
18977
+ readonly 'fulfilled_at': string;
18978
+ readonly 'currency': string;
18979
+ readonly 'order': io.flow.internal.v0.models.OrderSummary;
18980
+ readonly 'origin'?: io.flow.internal.v0.models.FulfillmentOrigin;
18981
+ readonly 'lines': io.flow.internal.v0.models.FulfillmentLine[];
18982
+ readonly 'shipping': io.flow.internal.v0.models.FulfillmentShipping;
18983
+ readonly 'shopper': io.flow.internal.v0.models.ShopperSummary;
18984
+ readonly 'merchant': io.flow.internal.v0.models.MerchantSummary;
18985
+ readonly 'completes_order': boolean;
18986
+ readonly 'sequence_number': number;
18987
+ readonly 'business'?: io.flow.internal.v0.models.FulfillmentBusiness;
18988
+ }
18989
+
18364
18990
  interface FulfillmentActionForm {
18365
18991
  readonly 'discriminator': 'fulfillment_action_form';
18366
18992
  readonly 'fulfillment_key': string;
18367
18993
  readonly 'actions': io.flow.internal.v0.models.LineActionQuantities[];
18368
18994
  }
18369
18995
 
18996
+ interface FulfillmentBusiness {
18997
+ readonly 'vat_registration_number': string;
18998
+ }
18999
+
18370
19000
  interface FulfillmentCancel {
18371
19001
  readonly 'discriminator': 'fulfillment_cancel';
18372
19002
  readonly 'event_id': string;
@@ -18385,6 +19015,41 @@ declare namespace io.flow.internal.v0.models {
18385
19015
  readonly 'key': string;
18386
19016
  }
18387
19017
 
19018
+ interface FulfillmentLine {
19019
+ readonly 'item': io.flow.internal.v0.models.ItemSummary;
19020
+ readonly 'quantity': number;
19021
+ readonly 'unit_price': number;
19022
+ readonly 'price': number;
19023
+ readonly 'discount': number;
19024
+ readonly 'tax': number;
19025
+ readonly 'duty': number;
19026
+ readonly 'subsidies': io.flow.internal.v0.models.FulfillmentSubsidyBreakdown;
19027
+ }
19028
+
19029
+ interface FulfillmentOrigin {
19030
+ readonly 'country': string;
19031
+ readonly 'province_code'?: string;
19032
+ }
19033
+
19034
+ interface FulfillmentProofExternalFulfillmentProofReference {
19035
+ readonly 'discriminator': 'external_fulfillment';
19036
+ readonly 'id': string;
19037
+ }
19038
+
19039
+ interface FulfillmentProofLabelTrackingReference {
19040
+ readonly 'discriminator': 'label_tracking';
19041
+ readonly 'id': string;
19042
+ }
19043
+
19044
+ interface FulfillmentProofShippingNotificationReference {
19045
+ readonly 'discriminator': 'shipping_notification';
19046
+ readonly 'id': string;
19047
+ }
19048
+
19049
+ interface FulfillmentReference {
19050
+ readonly 'id': string;
19051
+ }
19052
+
18388
19053
  interface FulfillmentShipmentTracking {
18389
19054
  readonly 'fulfillment_key': string;
18390
19055
  readonly 'flow_tracking_number': string;
@@ -18393,6 +19058,14 @@ declare namespace io.flow.internal.v0.models {
18393
19058
  readonly 'items': io.flow.order.management.v0.models.FulfillmentItem[];
18394
19059
  }
18395
19060
 
19061
+ interface FulfillmentShipping {
19062
+ readonly 'price': number;
19063
+ readonly 'discount': number;
19064
+ readonly 'tax': number;
19065
+ readonly 'duty': number;
19066
+ readonly 'subsidies': io.flow.internal.v0.models.FulfillmentSubsidyBreakdown;
19067
+ }
19068
+
18396
19069
  interface FulfillmentSnapshot {
18397
19070
  readonly 'tracking_source': string;
18398
19071
  readonly 'fulfillment_status'?: string;
@@ -18403,6 +19076,11 @@ declare namespace io.flow.internal.v0.models {
18403
19076
  readonly 'fulfillment_updated_at'?: string;
18404
19077
  }
18405
19078
 
19079
+ interface FulfillmentSubsidyBreakdown {
19080
+ readonly 'tax': number;
19081
+ readonly 'duty': number;
19082
+ }
19083
+
18406
19084
  interface FxFee {
18407
19085
  readonly 'base': io.flow.common.v0.models.Money;
18408
19086
  readonly 'local': io.flow.common.v0.models.Money;
@@ -18463,6 +19141,12 @@ declare namespace io.flow.internal.v0.models {
18463
19141
  readonly 'num_events': number;
18464
19142
  }
18465
19143
 
19144
+ interface GenericValidationError {
19145
+ readonly 'message': string;
19146
+ readonly 'reason': string;
19147
+ readonly 'next_action_from': io.flow.internal.v0.enums.ChannelOrderAcceptanceNextActionFrom;
19148
+ }
19149
+
18466
19150
  interface GiftCard {
18467
19151
  readonly 'id': string;
18468
19152
  readonly 'number': string;
@@ -18602,6 +19286,18 @@ declare namespace io.flow.internal.v0.models {
18602
19286
  readonly 'filename'?: string;
18603
19287
  }
18604
19288
 
19289
+ interface HarmonizationThreshold {
19290
+ readonly 'id': string;
19291
+ readonly 'chapter': number;
19292
+ readonly 'value': number;
19293
+ readonly 'updated_at': string;
19294
+ }
19295
+
19296
+ interface HarmonizationThresholdForm {
19297
+ readonly 'chapter': number;
19298
+ readonly 'value': number;
19299
+ }
19300
+
18605
19301
  interface HarmonizationUnclassifiedStatistics {
18606
19302
  readonly 'organization': io.flow.common.v0.models.OrganizationSummary;
18607
19303
  readonly 'statistics': io.flow.internal.v0.models.UnclassifiedProductStatistic[];
@@ -19349,6 +20045,22 @@ declare namespace io.flow.internal.v0.models {
19349
20045
  readonly 'error': string;
19350
20046
  }
19351
20047
 
20048
+ interface IndexAssignmentDeleted {
20049
+ readonly 'discriminator': 'index_assignment_deleted';
20050
+ readonly 'event_id': string;
20051
+ readonly 'timestamp': string;
20052
+ readonly 'organization': string;
20053
+ readonly 'id': string;
20054
+ }
20055
+
20056
+ interface IndexAssignmentUpserted {
20057
+ readonly 'discriminator': 'index_assignment_upserted';
20058
+ readonly 'event_id': string;
20059
+ readonly 'timestamp': string;
20060
+ readonly 'organization': string;
20061
+ readonly 'assignment': io.flow.internal.v0.models.AlgoliaIndexAssignment;
20062
+ }
20063
+
19352
20064
  interface InstallForm {
19353
20065
  readonly 'token': string;
19354
20066
  }
@@ -19663,7 +20375,7 @@ declare namespace io.flow.internal.v0.models {
19663
20375
  }
19664
20376
 
19665
20377
  interface ItemHarmonization {
19666
- readonly 'id'?: string;
20378
+ readonly 'id': string;
19667
20379
  readonly 'organization_id': string;
19668
20380
  readonly 'item_number': string;
19669
20381
  readonly 'item_name'?: string;
@@ -19783,6 +20495,11 @@ declare namespace io.flow.internal.v0.models {
19783
20495
  readonly 'item_sales_margin': io.flow.internal.v0.models.ItemSalesMargin;
19784
20496
  }
19785
20497
 
20498
+ interface ItemSummary {
20499
+ readonly 'number': string;
20500
+ readonly 'fulfillment_method': io.flow.catalog.v0.enums.FulfillmentMethodValue;
20501
+ }
20502
+
19786
20503
  interface ItemValuesForm {
19787
20504
  readonly 'values': string[];
19788
20505
  }
@@ -19847,6 +20564,11 @@ declare namespace io.flow.internal.v0.models {
19847
20564
  readonly 'constructions': Record<string, string[]>;
19848
20565
  }
19849
20566
 
20567
+ interface LabelBase {
20568
+ readonly 'amount': number;
20569
+ readonly 'weight': number;
20570
+ }
20571
+
19850
20572
  interface LabelCancellationError {
19851
20573
  readonly 'code': io.flow.internal.v0.enums.LabelCancellationErrorCode;
19852
20574
  readonly 'messages': string[];
@@ -19876,47 +20598,113 @@ declare namespace io.flow.internal.v0.models {
19876
20598
  readonly 'reference_id'?: string;
19877
20599
  }
19878
20600
 
19879
- interface LabelGenerationAddressFailureStatusUpdateForm {
19880
- readonly 'status': io.flow.internal.v0.enums.LabelGenerationAddressFailureStatus;
20601
+ interface LabelDestination {
20602
+ readonly 'country': string;
20603
+ }
20604
+
20605
+ interface LabelGenerationAddressFailureStatusUpdateForm {
20606
+ readonly 'status': io.flow.internal.v0.enums.LabelGenerationAddressFailureStatus;
20607
+ }
20608
+
20609
+ interface LabelGenerationAddressFailures {
20610
+ readonly 'id': string;
20611
+ readonly 'organization_id': string;
20612
+ readonly 'status': io.flow.internal.v0.enums.LabelGenerationAddressFailureStatus;
20613
+ readonly 'order_number': string;
20614
+ readonly 'order_submitted_at': string;
20615
+ readonly 'carrier_id': string;
20616
+ readonly 'destination_errors': io.flow.internal.v0.models.DestinationError[];
20617
+ }
20618
+
20619
+ interface LabelGenerationSettings {
20620
+ readonly 'id': string;
20621
+ readonly 'item_identifier'?: string;
20622
+ readonly 'auto_generate_query'?: string;
20623
+ readonly 'commercial_invoice_only_query'?: string;
20624
+ }
20625
+
20626
+ interface LabelGenerationSettingsDeleted {
20627
+ readonly 'discriminator': 'label_generation_settings_deleted';
20628
+ readonly 'event_id': string;
20629
+ readonly 'timestamp': string;
20630
+ readonly 'organization': string;
20631
+ readonly 'id': string;
20632
+ }
20633
+
20634
+ interface LabelGenerationSettingsForm {
20635
+ readonly 'item_identifier'?: string;
20636
+ readonly 'auto_generate_query'?: string;
20637
+ readonly 'commercial_invoice_only_query'?: string;
20638
+ }
20639
+
20640
+ interface LabelGenerationSettingsUpserted {
20641
+ readonly 'discriminator': 'label_generation_settings_upserted';
20642
+ readonly 'event_id': string;
20643
+ readonly 'timestamp': string;
20644
+ readonly 'organization': string;
20645
+ readonly 'label_generation_settings': io.flow.internal.v0.models.LabelGenerationSettings;
20646
+ }
20647
+
20648
+ interface LabelInvoiceRequest {
20649
+ readonly 'id': string;
20650
+ readonly 'label': io.flow.internal.v0.models.TrueUpLabelSummary;
20651
+ readonly 'units': io.flow.internal.v0.models.LabelUnits;
20652
+ readonly 'base': io.flow.internal.v0.models.LabelBase;
20653
+ readonly 'surcharges': io.flow.internal.v0.models.LabelSurcharge[];
20654
+ readonly 'total': number;
20655
+ readonly 'destination': io.flow.internal.v0.models.LabelDestination;
20656
+ readonly 'metadata': io.flow.internal.v0.models.LabelMetadata;
20657
+ }
20658
+
20659
+ interface LabelInvoiceRequestDeleted {
20660
+ readonly 'discriminator': 'label_invoice_request_deleted';
20661
+ readonly 'event_id': string;
20662
+ readonly 'timestamp': string;
20663
+ readonly 'organization': string;
20664
+ readonly 'id': string;
20665
+ }
20666
+
20667
+ interface LabelInvoiceRequestUpserted {
20668
+ readonly 'discriminator': 'label_invoice_request_upserted';
20669
+ readonly 'event_id': string;
20670
+ readonly 'timestamp': string;
20671
+ readonly 'organization': string;
20672
+ readonly 'label_invoice_request': io.flow.internal.v0.models.LabelInvoiceRequest;
19881
20673
  }
19882
20674
 
19883
- interface LabelGenerationAddressFailures {
19884
- readonly 'id': string;
19885
- readonly 'organization_id': string;
19886
- readonly 'status': io.flow.internal.v0.enums.LabelGenerationAddressFailureStatus;
19887
- readonly 'order_number': string;
19888
- readonly 'order_submitted_at': string;
19889
- readonly 'carrier_id': string;
19890
- readonly 'destination_errors': io.flow.internal.v0.models.DestinationError[];
20675
+ interface LabelMetadata {
20676
+ readonly 'ratecard': io.flow.internal.v0.models.MetadataRatecard;
20677
+ readonly 'weights': io.flow.internal.v0.models.MetadataWeights;
19891
20678
  }
19892
20679
 
19893
- interface LabelGenerationSettings {
20680
+ interface LabelRequestError {
19894
20681
  readonly 'id': string;
19895
- readonly 'item_identifier'?: string;
19896
- readonly 'auto_generate_query'?: string;
19897
- readonly 'commercial_invoice_only_query'?: string;
20682
+ readonly 'order_number': string;
20683
+ readonly 'created_at': string;
20684
+ readonly 'reference_id': string;
20685
+ readonly 'label_request_method'?: io.flow.label.v0.enums.LabelRequestMethod;
20686
+ readonly 'label_trigger_method'?: io.flow.label.v0.enums.LabelTriggerMethod;
20687
+ readonly 'order_identifier': string[];
20688
+ readonly 'suggested_responsibility': io.flow.internal.v0.enums.LabelRequestErrorHandlingResponsibility;
20689
+ readonly 'carrier_id'?: string;
20690
+ readonly 'service_id'?: string;
20691
+ readonly 'errors': string[];
19898
20692
  }
19899
20693
 
19900
- interface LabelGenerationSettingsDeleted {
19901
- readonly 'discriminator': 'label_generation_settings_deleted';
20694
+ interface LabelRequestErrorDeleted {
20695
+ readonly 'discriminator': 'label_request_error_deleted';
19902
20696
  readonly 'event_id': string;
19903
20697
  readonly 'timestamp': string;
19904
20698
  readonly 'organization': string;
19905
20699
  readonly 'id': string;
19906
20700
  }
19907
20701
 
19908
- interface LabelGenerationSettingsForm {
19909
- readonly 'item_identifier'?: string;
19910
- readonly 'auto_generate_query'?: string;
19911
- readonly 'commercial_invoice_only_query'?: string;
19912
- }
19913
-
19914
- interface LabelGenerationSettingsUpserted {
19915
- readonly 'discriminator': 'label_generation_settings_upserted';
20702
+ interface LabelRequestErrorUpserted {
20703
+ readonly 'discriminator': 'label_request_error_upserted';
19916
20704
  readonly 'event_id': string;
19917
20705
  readonly 'timestamp': string;
19918
20706
  readonly 'organization': string;
19919
- readonly 'label_generation_settings': io.flow.internal.v0.models.LabelGenerationSettings;
20707
+ readonly 'label_request_error': io.flow.internal.v0.models.LabelRequestError;
19920
20708
  }
19921
20709
 
19922
20710
  interface LabelSummary {
@@ -19933,6 +20721,27 @@ declare namespace io.flow.internal.v0.models {
19933
20721
  readonly 'service'?: io.flow.reference.v0.models.CarrierService;
19934
20722
  }
19935
20723
 
20724
+ interface LabelSurcharge {
20725
+ readonly 'amount': number;
20726
+ readonly 'type': io.flow.internal.v0.enums.TrueUpSurchargeType;
20727
+ readonly 'detail': io.flow.internal.v0.unions.LabelSurchargeDetail;
20728
+ }
20729
+
20730
+ interface LabelSurchargeDetailFlat {
20731
+ readonly 'discriminator': 'flat';
20732
+ readonly 'placeholder'?: string;
20733
+ }
20734
+
20735
+ interface LabelSurchargeDetailPerWeightUnit {
20736
+ readonly 'discriminator': 'per_weight_unit';
20737
+ readonly 'fee': number;
20738
+ }
20739
+
20740
+ interface LabelSurchargeDetailPercentage {
20741
+ readonly 'discriminator': 'percentage';
20742
+ readonly 'percentage': number;
20743
+ }
20744
+
19936
20745
  interface LabelTaxonomy {
19937
20746
  readonly 'discriminator': 'item';
19938
20747
  readonly 'item_type': string;
@@ -19961,8 +20770,10 @@ declare namespace io.flow.internal.v0.models {
19961
20770
  interface LabelTransaction {
19962
20771
  readonly 'discriminator': 'label_transaction';
19963
20772
  readonly 'label': io.flow.internal.v0.models.BillingLabelSummary;
19964
- readonly 'order'?: io.flow.internal.v0.models.BillingOrderTransactionOrderReference;
19965
20773
  readonly 'tracking': io.flow.internal.v0.models.BillingLabelTrackingSummaryReference;
20774
+ readonly 'gross_value': io.flow.common.v0.models.Price;
20775
+ readonly 'discount': io.flow.internal.v0.models.Discount;
20776
+ readonly 'order'?: io.flow.internal.v0.models.BillingOrderTransactionOrderReference;
19966
20777
  readonly 'id': string;
19967
20778
  readonly 'type': io.flow.internal.v0.enums.BillingTransactionType;
19968
20779
  readonly 'status': io.flow.internal.v0.enums.BillingTransactionStatus;
@@ -19987,6 +20798,12 @@ declare namespace io.flow.internal.v0.models {
19987
20798
  readonly 'label_transaction': io.flow.internal.v0.models.LabelTransaction;
19988
20799
  }
19989
20800
 
20801
+ interface LabelUnits {
20802
+ readonly 'currency': string;
20803
+ readonly 'weight': io.flow.units.v0.enums.UnitOfWeight;
20804
+ readonly 'length': io.flow.units.v0.enums.UnitOfLength;
20805
+ }
20806
+
19990
20807
  interface LabeledContent {
19991
20808
  readonly 'label': io.flow.internal.v0.models.ContentLabel;
19992
20809
  readonly 'contents': io.flow.internal.v0.unions.ContentItem[];
@@ -20279,11 +21096,6 @@ declare namespace io.flow.internal.v0.models {
20279
21096
  readonly 'url': string;
20280
21097
  }
20281
21098
 
20282
- interface LogisticsCenterCheck {
20283
- readonly 'issues'?: string[];
20284
- readonly 'is_valid': boolean;
20285
- }
20286
-
20287
21099
  interface Logo {
20288
21100
  readonly 'url': string;
20289
21101
  }
@@ -20684,6 +21496,44 @@ declare namespace io.flow.internal.v0.models {
20684
21496
  readonly 'organization_reference': io.flow.common.v0.models.Organization;
20685
21497
  }
20686
21498
 
21499
+ interface MerchantCharges {
21500
+ readonly 'labels': number;
21501
+ readonly 'total': number;
21502
+ }
21503
+
21504
+ interface MerchantFees {
21505
+ readonly 'duty_guarantee': number;
21506
+ readonly 'mor': number;
21507
+ readonly 'fraud': number;
21508
+ readonly 'fx': number;
21509
+ readonly 'processing': number;
21510
+ readonly 'rate_lock': number;
21511
+ readonly 'transfer': number;
21512
+ readonly 'total': number;
21513
+ }
21514
+
21515
+ interface MerchantGuidAssignment {
21516
+ readonly 'id': string;
21517
+ readonly 'merchant_guid': string;
21518
+ readonly 'created_at': string;
21519
+ }
21520
+
21521
+ interface MerchantGuidAssignmentDeleted {
21522
+ readonly 'discriminator': 'merchant_guid_assignment_deleted';
21523
+ readonly 'event_id': string;
21524
+ readonly 'timestamp': string;
21525
+ readonly 'organization': string;
21526
+ readonly 'id': string;
21527
+ }
21528
+
21529
+ interface MerchantGuidAssignmentUpserted {
21530
+ readonly 'discriminator': 'merchant_guid_assignment_upserted';
21531
+ readonly 'event_id': string;
21532
+ readonly 'timestamp': string;
21533
+ readonly 'organization': string;
21534
+ readonly 'merchant_guid_assignment': io.flow.internal.v0.models.MerchantGuidAssignment;
21535
+ }
21536
+
20687
21537
  interface MerchantOfRecordEntitySettings {
20688
21538
  readonly 'id': string;
20689
21539
  readonly 'merchant_of_record_entity': io.flow.common.v0.models.MerchantOfRecordEntity;
@@ -20709,6 +21559,44 @@ declare namespace io.flow.internal.v0.models {
20709
21559
  readonly 'currency'?: string;
20710
21560
  }
20711
21561
 
21562
+ interface MerchantSearchResult {
21563
+ readonly 'organization_id': string;
21564
+ readonly 'shop_name'?: string;
21565
+ readonly 'legal_name': string;
21566
+ readonly 'onboarding_current_state': io.flow.organization.onboarding.state.v0.unions.OnboardingState;
21567
+ }
21568
+
21569
+ interface MerchantSubsidies {
21570
+ readonly 'fees': io.flow.internal.v0.models.ShopperFees;
21571
+ readonly 'shipping': number;
21572
+ readonly 'tax': number;
21573
+ readonly 'duty': number;
21574
+ readonly 'total': number;
21575
+ }
21576
+
21577
+ interface MerchantSummary {
21578
+ readonly 'subsidies': io.flow.internal.v0.models.MerchantSubsidies;
21579
+ readonly 'fees': io.flow.internal.v0.models.MerchantFees;
21580
+ readonly 'charges': io.flow.internal.v0.models.MerchantCharges;
21581
+ readonly 'discounts': number;
21582
+ }
21583
+
21584
+ interface MetadataProposition {
21585
+ readonly 'shipping_method': io.flow.internal.v0.models.ShippingMethodReference;
21586
+ readonly 'name': string;
21587
+ }
21588
+
21589
+ interface MetadataRatecard {
21590
+ readonly 'id': string;
21591
+ readonly 'proposition': io.flow.internal.v0.models.MetadataProposition;
21592
+ }
21593
+
21594
+ interface MetadataWeights {
21595
+ readonly 'selected': io.flow.internal.v0.enums.WeightSelection;
21596
+ readonly 'dead'?: io.flow.internal.v0.models.WeightsDead;
21597
+ readonly 'dimensional'?: io.flow.internal.v0.models.WeightsDimensional;
21598
+ }
21599
+
20712
21600
  interface NextBillingStatement {
20713
21601
  readonly 'date': string;
20714
21602
  readonly 'amount': io.flow.common.v0.models.Price;
@@ -20744,6 +21632,7 @@ declare namespace io.flow.internal.v0.models {
20744
21632
  readonly 'description': string;
20745
21633
  readonly 'result': io.flow.internal.v0.enums.OnboardingAuditResult;
20746
21634
  readonly 'messages': io.flow.internal.v0.models.OnboardingAuditMessage[];
21635
+ readonly 'execution_time_ms'?: number;
20747
21636
  }
20748
21637
 
20749
21638
  interface OnboardingAuditSnapshot {
@@ -20768,13 +21657,14 @@ declare namespace io.flow.internal.v0.models {
20768
21657
  readonly 'compliance_full_review_required': boolean;
20769
21658
  readonly 'application_received': string;
20770
21659
  readonly 'legal_name': string;
20771
- readonly 'shop_name': string;
21660
+ readonly 'shop_name'?: string;
20772
21661
  readonly 'organization_id': string;
20773
21662
  readonly 'onboarding_current_state': io.flow.organization.onboarding.state.v0.unions.OnboardingState;
20774
21663
  readonly 'setup_completed_at'?: string;
20775
21664
  readonly 'activated_at'?: string;
20776
21665
  readonly 'gmv': number;
20777
21666
  readonly 'health_score': number;
21667
+ readonly 'audit_result'?: io.flow.internal.v0.enums.OnboardingAuditResult;
20778
21668
  readonly 'blocked_since'?: string;
20779
21669
  }
20780
21670
 
@@ -21046,6 +21936,12 @@ declare namespace io.flow.internal.v0.models {
21046
21936
  readonly 'authorization'?: io.flow.payment.v0.unions.AuthorizationForm;
21047
21937
  }
21048
21938
 
21939
+ interface OrderSummary {
21940
+ readonly 'id': string;
21941
+ readonly 'organization': io.flow.common.v0.models.OrganizationReference;
21942
+ readonly 'number': string;
21943
+ }
21944
+
21049
21945
  interface OrderTransaction {
21050
21946
  readonly 'discriminator': 'order_transaction';
21051
21947
  readonly 'order': io.flow.internal.v0.models.BillingOrderTransactionOrderReference;
@@ -21073,6 +21969,13 @@ declare namespace io.flow.internal.v0.models {
21073
21969
  readonly 'order_transaction': io.flow.internal.v0.models.OrderTransaction;
21074
21970
  }
21075
21971
 
21972
+ interface OrderValidationError {
21973
+ readonly 'message': string;
21974
+ readonly 'reason': io.flow.internal.v0.enums.ChannelOrderAcceptanceRejectionReason;
21975
+ readonly 'action'?: io.flow.internal.v0.enums.ChannelOrderAcceptanceErrorAction;
21976
+ readonly 'next_action_from': io.flow.internal.v0.enums.ChannelOrderAcceptanceNextActionFrom;
21977
+ }
21978
+
21076
21979
  interface OrganizationAccount {
21077
21980
  readonly 'organization': io.flow.common.v0.models.OrganizationReference;
21078
21981
  readonly 'id': string;
@@ -21211,6 +22114,32 @@ declare namespace io.flow.internal.v0.models {
21211
22114
  readonly 'organization_currency_setting': io.flow.internal.v0.models.OrganizationCurrencySetting;
21212
22115
  }
21213
22116
 
22117
+ interface OrganizationDeactivation {
22118
+ readonly 'id': string;
22119
+ readonly 'deactivate_at': string;
22120
+ readonly 'created_at': string;
22121
+ }
22122
+
22123
+ interface OrganizationDeactivationDeleted {
22124
+ readonly 'discriminator': 'organization_deactivation_deleted';
22125
+ readonly 'event_id': string;
22126
+ readonly 'timestamp': string;
22127
+ readonly 'organization': string;
22128
+ readonly 'id': string;
22129
+ }
22130
+
22131
+ interface OrganizationDeactivationForm {
22132
+ readonly 'deactivate_at': string;
22133
+ }
22134
+
22135
+ interface OrganizationDeactivationUpserted {
22136
+ readonly 'discriminator': 'organization_deactivation_upserted';
22137
+ readonly 'event_id': string;
22138
+ readonly 'timestamp': string;
22139
+ readonly 'organization': string;
22140
+ readonly 'organization_deactivation': io.flow.internal.v0.models.OrganizationDeactivation;
22141
+ }
22142
+
21214
22143
  interface OrganizationDebugTransaction {
21215
22144
  readonly 'debug'?: io.flow.internal.v0.models.DebugTransactionDetails;
21216
22145
  readonly 'order'?: io.flow.internal.v0.models.DebugOrder;
@@ -21415,6 +22344,13 @@ declare namespace io.flow.internal.v0.models {
21415
22344
  readonly 'organization_status_change': io.flow.internal.v0.models.OrganizationStatusChange;
21416
22345
  }
21417
22346
 
22347
+ interface OrganizationsAuditCheckReport {
22348
+ readonly 'organization_id': string;
22349
+ readonly 'organization_status': io.flow.common.v0.enums.OrganizationStatus;
22350
+ readonly 'onboarding_state': io.flow.organization.onboarding.state.v0.unions.OnboardingState;
22351
+ readonly 'audit_result': io.flow.internal.v0.enums.OnboardingAuditResult;
22352
+ }
22353
+
21418
22354
  interface Partner {
21419
22355
  readonly 'id': string;
21420
22356
  readonly 'name': string;
@@ -21599,6 +22535,12 @@ declare namespace io.flow.internal.v0.models {
21599
22535
  readonly 'status'?: io.flow.internal.v0.enums.PaymentSummaryStatus;
21600
22536
  }
21601
22537
 
22538
+ interface PayoutStatusCounts {
22539
+ readonly 'scheduled': number;
22540
+ readonly 'sent': number;
22541
+ readonly 'failed': number;
22542
+ }
22543
+
21602
22544
  interface PaypalAccount {
21603
22545
  readonly 'discriminator': 'paypal_account';
21604
22546
  readonly 'id': string;
@@ -21626,6 +22568,7 @@ declare namespace io.flow.internal.v0.models {
21626
22568
  readonly 'country': string;
21627
22569
  readonly 'authentication': io.flow.internal.v0.models.PaypalAuthenticationForm;
21628
22570
  readonly 'status'?: io.flow.internal.v0.enums.ProcessorEntityStatus;
22571
+ readonly 'organization_capability'?: io.flow.internal.v0.enums.OrganizationCapability;
21629
22572
  }
21630
22573
 
21631
22574
  interface PaypalAccountReference {
@@ -21748,6 +22691,7 @@ declare namespace io.flow.internal.v0.models {
21748
22691
  readonly 'external_id': string;
21749
22692
  readonly 'country': string;
21750
22693
  readonly 'status'?: io.flow.internal.v0.enums.ProcessorEntityStatus;
22694
+ readonly 'organization_capability'?: io.flow.internal.v0.enums.OrganizationCapability;
21751
22695
  }
21752
22696
 
21753
22697
  interface PaypalPaymentDeleted {
@@ -22057,6 +23001,12 @@ declare namespace io.flow.internal.v0.models {
22057
23001
  readonly 'column_settings': io.flow.internal.v0.models.HarmonizationColumnSetting[];
22058
23002
  }
22059
23003
 
23004
+ interface ProductRestrictionResultValidationError {
23005
+ readonly 'message': string;
23006
+ readonly 'reason': string;
23007
+ readonly 'next_action_from': io.flow.internal.v0.enums.ChannelOrderAcceptanceNextActionFrom;
23008
+ }
23009
+
22060
23010
  interface ProductReviewHistory {
22061
23011
  readonly 'product_id': string;
22062
23012
  readonly 'reviews': io.flow.internal.v0.models.RestrictionHistoryItemReviewDecision[];
@@ -22082,6 +23032,20 @@ declare namespace io.flow.internal.v0.models {
22082
23032
  readonly 'shipping_notification_id': string;
22083
23033
  }
22084
23034
 
23035
+ interface QueuedRecord {
23036
+ readonly 'type': string;
23037
+ readonly 'type_id': string;
23038
+ readonly 'source_type'?: string;
23039
+ readonly 'source_id'?: string;
23040
+ readonly 'environment'?: string;
23041
+ readonly 'created_at': string;
23042
+ readonly 'num_attempts': number;
23043
+ readonly 'next_attempt_at': string;
23044
+ readonly 'errors'?: string[];
23045
+ readonly 'stacktrace'?: string;
23046
+ readonly 'snooze_id'?: string;
23047
+ }
23048
+
22085
23049
  interface QuoteRequest {
22086
23050
  readonly 'id': string;
22087
23051
  readonly 'request_type': io.flow.internal.v0.enums.QuoteRequestType;
@@ -22189,10 +23153,12 @@ declare namespace io.flow.internal.v0.models {
22189
23153
  interface RateLevel {
22190
23154
  readonly 'id': string;
22191
23155
  readonly 'name': string;
23156
+ readonly 'key': string;
22192
23157
  }
22193
23158
 
22194
23159
  interface RateLevelForm {
22195
23160
  readonly 'name': string;
23161
+ readonly 'key': string;
22196
23162
  }
22197
23163
 
22198
23164
  interface RateLevelOrganization {
@@ -22221,6 +23187,7 @@ declare namespace io.flow.internal.v0.models {
22221
23187
  readonly 'id': string;
22222
23188
  readonly 'name': string;
22223
23189
  readonly 'effective_at': string;
23190
+ readonly 'key': string;
22224
23191
  }
22225
23192
 
22226
23193
  interface RateNameSummary {
@@ -22526,6 +23493,23 @@ declare namespace io.flow.internal.v0.models {
22526
23493
  readonly 'number': string;
22527
23494
  }
22528
23495
 
23496
+ interface Report {
23497
+ readonly 'key': string;
23498
+ readonly 'status': io.flow.internal.v0.enums.ReportStatus;
23499
+ readonly 'from': string;
23500
+ readonly 'to': string;
23501
+ readonly 'organization_id'?: string;
23502
+ readonly 'sales_url'?: string;
23503
+ readonly 'refunds_url'?: string;
23504
+ }
23505
+
23506
+ interface ReportForm {
23507
+ readonly 'key'?: string;
23508
+ readonly 'from': string;
23509
+ readonly 'to': string;
23510
+ readonly 'organization_id'?: string;
23511
+ }
23512
+
22529
23513
  interface ReportRuleDecision {
22530
23514
  readonly 'rule_id': string;
22531
23515
  readonly 'rule_name': string;
@@ -22537,6 +23521,11 @@ declare namespace io.flow.internal.v0.models {
22537
23521
  readonly 'task_id': string;
22538
23522
  }
22539
23523
 
23524
+ interface ReportingDetails {
23525
+ readonly 'sales_records'?: any/*object*/[];
23526
+ readonly 'refund_records'?: any/*object*/[];
23527
+ }
23528
+
22540
23529
  interface RequeueRequestForm {
22541
23530
  readonly 'product_ids'?: string[];
22542
23531
  readonly 'hs6_codes'?: string[];
@@ -22697,6 +23686,7 @@ declare namespace io.flow.internal.v0.models {
22697
23686
  readonly 'positive_keywords': string[];
22698
23687
  readonly 'negative_keywords': string[];
22699
23688
  readonly 'value_threshold_usd'?: number;
23689
+ readonly 'auto_review_criteria'?: io.flow.internal.v0.models.AutoReviewCriteria[];
22700
23690
  }
22701
23691
 
22702
23692
  interface RestrictionRuleDecisionForm {
@@ -22713,6 +23703,7 @@ declare namespace io.flow.internal.v0.models {
22713
23703
  readonly 'positive_keywords': string[];
22714
23704
  readonly 'negative_keywords': string[];
22715
23705
  readonly 'value_threshold_usd'?: number;
23706
+ readonly 'auto_review_criteria'?: io.flow.internal.v0.models.AutoReviewCriteria[];
22716
23707
  }
22717
23708
 
22718
23709
  interface RestrictionRuleMetadata {
@@ -22750,6 +23741,16 @@ declare namespace io.flow.internal.v0.models {
22750
23741
  readonly 'destinations': io.flow.reference.v0.models.Country[];
22751
23742
  }
22752
23743
 
23744
+ interface Retracking {
23745
+ readonly 'carrier': string;
23746
+ readonly 'tracking_number'?: string;
23747
+ }
23748
+
23749
+ interface RetrackingForm {
23750
+ readonly 'carrier': string;
23751
+ readonly 'carrier_tracking_numbers': string[];
23752
+ }
23753
+
22753
23754
  interface ReturnPolicyDeleted {
22754
23755
  readonly 'discriminator': 'return_policy_deleted';
22755
23756
  readonly 'event_id': string;
@@ -22807,6 +23808,14 @@ declare namespace io.flow.internal.v0.models {
22807
23808
  readonly 'processor': io.flow.internal.v0.enums.Processor;
22808
23809
  }
22809
23810
 
23811
+ interface SandboxSetup {
23812
+ readonly 'requested_by': string;
23813
+ }
23814
+
23815
+ interface SandboxSetupForm {
23816
+ readonly 'requested_by': string;
23817
+ }
23818
+
22810
23819
  interface Screen {
22811
23820
  readonly 'id': string;
22812
23821
  readonly 'q': string;
@@ -22938,6 +23947,10 @@ declare namespace io.flow.internal.v0.models {
22938
23947
  readonly 'destination': string;
22939
23948
  }
22940
23949
 
23950
+ interface ShippingMethodReference {
23951
+ readonly 'id': string;
23952
+ }
23953
+
22941
23954
  interface Shop {
22942
23955
  readonly 'id': string;
22943
23956
  readonly 'organization'?: io.flow.common.v0.models.OrganizationReference;
@@ -23046,6 +24059,16 @@ declare namespace io.flow.internal.v0.models {
23046
24059
  readonly 'placeholder': string;
23047
24060
  }
23048
24061
 
24062
+ interface ShopifyMarketsDiscrepancy {
24063
+ readonly 'organization_id': string;
24064
+ readonly 'count': number;
24065
+ }
24066
+
24067
+ interface ShopifyMarketsDiscrepancyData {
24068
+ readonly 'total_count': number;
24069
+ readonly 'discrepancies': io.flow.internal.v0.models.ShopifyMarketsDiscrepancy[];
24070
+ }
24071
+
23049
24072
  interface ShopifyMarketsIncorporationCountry {
23050
24073
  readonly 'country': string;
23051
24074
  readonly 'state'?: string;
@@ -23053,6 +24076,24 @@ declare namespace io.flow.internal.v0.models {
23053
24076
  readonly 'jurisdiction'?: string;
23054
24077
  }
23055
24078
 
24079
+ interface ShopifyMarketsInternalOrderMetrics {
24080
+ readonly 'total_order_count': number;
24081
+ }
24082
+
24083
+ interface ShopifyMarketsMetricsDeleted {
24084
+ readonly 'discriminator': 'shopify_markets_metrics_deleted';
24085
+ readonly 'event_id': string;
24086
+ readonly 'timestamp': string;
24087
+ readonly 'id': string;
24088
+ }
24089
+
24090
+ interface ShopifyMarketsMetricsUpserted {
24091
+ readonly 'discriminator': 'shopify_markets_metrics_upserted';
24092
+ readonly 'event_id': string;
24093
+ readonly 'timestamp': string;
24094
+ readonly 'shopify_markets_metrics': io.flow.internal.v0.models.ShopifyMarketsOrdersMetrics;
24095
+ }
24096
+
23056
24097
  interface ShopifyMarketsOrder {
23057
24098
  readonly 'id': string;
23058
24099
  readonly 'model': io.flow.shopify.markets.v0.models.ShopifyOrder;
@@ -23074,8 +24115,17 @@ declare namespace io.flow.internal.v0.models {
23074
24115
  readonly 'shopify_markets_order': io.flow.internal.v0.models.ShopifyMarketsOrder;
23075
24116
  }
23076
24117
 
24118
+ interface ShopifyMarketsOrdersMetrics {
24119
+ readonly 'id': string;
24120
+ readonly 'range': io.flow.common.v0.models.DatetimeRange;
24121
+ readonly 'shopify': io.flow.internal.v0.models.ShopifyMarketsShopifyOrderMetrics;
24122
+ readonly 'internal': io.flow.internal.v0.models.ShopifyMarketsInternalOrderMetrics;
24123
+ readonly 'discrepancy_data': io.flow.internal.v0.models.ShopifyMarketsDiscrepancyData;
24124
+ }
24125
+
23077
24126
  interface ShopifyMarketsShop {
23078
24127
  readonly 'id': string;
24128
+ readonly 'shopify_shop_id'?: string;
23079
24129
  readonly 'channel': io.flow.common.v0.models.ChannelReference;
23080
24130
  readonly 'domain': string;
23081
24131
  readonly 'myshopify_domain': string;
@@ -23135,6 +24185,10 @@ declare namespace io.flow.internal.v0.models {
23135
24185
  readonly 'shopify_markets_shop': io.flow.internal.v0.models.ShopifyMarketsShop;
23136
24186
  }
23137
24187
 
24188
+ interface ShopifyMarketsShopifyOrderMetrics {
24189
+ readonly 'total_order_count': number;
24190
+ }
24191
+
23138
24192
  interface ShopifyMarketsSubsidiaryCompany {
23139
24193
  readonly 'legal_name'?: string;
23140
24194
  readonly 'incorporation_country'?: io.flow.internal.v0.models.ShopifyMarketsIncorporationCountry;
@@ -23441,6 +24495,11 @@ declare namespace io.flow.internal.v0.models {
23441
24495
  readonly 'shop': io.flow.internal.v0.models.Shop;
23442
24496
  }
23443
24497
 
24498
+ interface ShopifyStorePassword {
24499
+ readonly 'temporary_password': string;
24500
+ readonly 'expiry': string;
24501
+ }
24502
+
23444
24503
  interface ShopifyWebhook {
23445
24504
  readonly 'id': string;
23446
24505
  readonly 'shop_id': string;
@@ -23458,6 +24517,18 @@ declare namespace io.flow.internal.v0.models {
23458
24517
  readonly 'topic': io.flow.shopify.external.v0.enums.Topic;
23459
24518
  }
23460
24519
 
24520
+ interface ShopperFees {
24521
+ readonly 'fuel': number;
24522
+ readonly 'remote_area': number;
24523
+ readonly 'oversize': number;
24524
+ readonly 'ccf': number;
24525
+ readonly 'total': number;
24526
+ }
24527
+
24528
+ interface ShopperSummary {
24529
+ readonly 'fees': io.flow.internal.v0.models.ShopperFees;
24530
+ }
24531
+
23461
24532
  interface SimpleAccountReference {
23462
24533
  readonly 'id': string;
23463
24534
  }
@@ -23673,6 +24744,7 @@ declare namespace io.flow.internal.v0.models {
23673
24744
  readonly 'country': string;
23674
24745
  readonly 'authentication': io.flow.internal.v0.models.StripeAuthenticationForm;
23675
24746
  readonly 'status'?: io.flow.internal.v0.enums.ProcessorEntityStatus;
24747
+ readonly 'organization_capability'?: io.flow.internal.v0.enums.OrganizationCapability;
23676
24748
  }
23677
24749
 
23678
24750
  interface StripeAuthentication {
@@ -23801,6 +24873,7 @@ declare namespace io.flow.internal.v0.models {
23801
24873
  readonly 'account_type': io.flow.stripe.v0.enums.AccountType;
23802
24874
  readonly 'status'?: io.flow.internal.v0.enums.ProcessorEntityStatus;
23803
24875
  readonly 'country': string;
24876
+ readonly 'organization_capability'?: io.flow.internal.v0.enums.OrganizationCapability;
23804
24877
  }
23805
24878
 
23806
24879
  interface StripeRefundDeleted {
@@ -24266,6 +25339,25 @@ declare namespace io.flow.internal.v0.models {
24266
25339
  readonly 'id': string;
24267
25340
  }
24268
25341
 
25342
+ interface TransactionStatement {
25343
+ readonly 'id': string;
25344
+ readonly 'statement': io.flow.internal.v0.models.BillingStatementReference;
25345
+ }
25346
+
25347
+ interface TransactionStatementDeleted {
25348
+ readonly 'discriminator': 'transaction_statement_deleted';
25349
+ readonly 'event_id': string;
25350
+ readonly 'timestamp': string;
25351
+ readonly 'id': string;
25352
+ }
25353
+
25354
+ interface TransactionStatementUpserted {
25355
+ readonly 'discriminator': 'transaction_statement_upserted';
25356
+ readonly 'event_id': string;
25357
+ readonly 'timestamp': string;
25358
+ readonly 'transaction_statement': io.flow.internal.v0.models.TransactionStatement;
25359
+ }
25360
+
24269
25361
  interface TransferTransaction {
24270
25362
  readonly 'discriminator': 'transfer_transaction';
24271
25363
  readonly 'method': io.flow.internal.v0.enums.TransferMethod;
@@ -24314,6 +25406,34 @@ declare namespace io.flow.internal.v0.models {
24314
25406
  readonly 'description': string;
24315
25407
  }
24316
25408
 
25409
+ interface TrueUpLabelSummary {
25410
+ readonly 'id': string;
25411
+ readonly 'carrier_service_id': string;
25412
+ readonly 'carrier_tracking_number': string;
25413
+ readonly 'flow_tracking_number': string;
25414
+ readonly 'created_at': string;
25415
+ }
25416
+
25417
+ interface UnassignedMerchantGuid {
25418
+ readonly 'id': string;
25419
+ readonly 'merchant_guid': string;
25420
+ readonly 'created_at': string;
25421
+ }
25422
+
25423
+ interface UnassignedMerchantGuidDeleted {
25424
+ readonly 'discriminator': 'unassigned_merchant_guid_deleted';
25425
+ readonly 'event_id': string;
25426
+ readonly 'timestamp': string;
25427
+ readonly 'id': string;
25428
+ }
25429
+
25430
+ interface UnassignedMerchantGuidUpserted {
25431
+ readonly 'discriminator': 'unassigned_merchant_guid_upserted';
25432
+ readonly 'event_id': string;
25433
+ readonly 'timestamp': string;
25434
+ readonly 'unassigned_merchant_guid': io.flow.internal.v0.models.UnassignedMerchantGuid;
25435
+ }
25436
+
24317
25437
  interface UnclassifiedProductStatistic {
24318
25438
  readonly 'status': io.flow.internal.v0.enums.UnclassifiedProductStatus;
24319
25439
  readonly 'number_of_items': number;
@@ -24535,6 +25655,16 @@ declare namespace io.flow.internal.v0.models {
24535
25655
  readonly 'created_at': string;
24536
25656
  }
24537
25657
 
25658
+ interface WashCarrierActualFile {
25659
+ readonly 'id': string;
25660
+ readonly 'url': string;
25661
+ readonly 'status': io.flow.internal.v0.enums.WashCarrierActualFileStatus;
25662
+ }
25663
+
25664
+ interface WashCarrierActualFileForm {
25665
+ readonly 'url': string;
25666
+ }
25667
+
24538
25668
  interface WashExportRequest {
24539
25669
  readonly 'url': string;
24540
25670
  }
@@ -24555,6 +25685,17 @@ declare namespace io.flow.internal.v0.models {
24555
25685
  readonly 'placeholder'?: any/*json*/;
24556
25686
  }
24557
25687
 
25688
+ interface WeightsDead {
25689
+ readonly 'weight': number;
25690
+ }
25691
+
25692
+ interface WeightsDimensional {
25693
+ readonly 'weight': number;
25694
+ readonly 'length': number;
25695
+ readonly 'width': number;
25696
+ readonly 'height': number;
25697
+ }
25698
+
24558
25699
  interface WholeOrderActionForm {
24559
25700
  readonly 'discriminator': 'whole_order_action_form';
24560
25701
  readonly 'action': io.flow.internal.v0.enums.OrderAction;
@@ -24664,7 +25805,7 @@ declare namespace io.flow.internal.v0.unions {
24664
25805
  type DiscountRequestOfferForm = (io.flow.internal.v0.models.DiscountRequestOfferFixedAmountForm);
24665
25806
  type DisputeDetails = (io.flow.internal.v0.models.DisputeDetailsAdyen | io.flow.internal.v0.models.DisputeDetailsPaypal);
24666
25807
  type DutyExpression = (io.flow.internal.v0.models.DutyCompoundExpression | io.flow.internal.v0.models.DutySimpleExpression);
24667
- 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.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.BankPaymentDeleted | 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.DailyValueUpserted | io.flow.internal.v0.models.DailyValueDeleted | 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.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.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.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.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.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.PartnerOrganizationSettingsUpserted | io.flow.internal.v0.models.PartnerOrganizationSettingsDeleted | 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.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.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.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.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);
25808
+ 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.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.BankPaymentDeleted | 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.LabelInvoiceRequestUpserted | io.flow.internal.v0.models.LabelInvoiceRequestDeleted | 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.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.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.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.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.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.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.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.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);
24668
25809
  type Experiment = (io.flow.internal.v0.models.ExperienceExperiment | io.flow.internal.v0.models.FeatureExperiment);
24669
25810
  type ExportSchedule = (io.flow.internal.v0.models.ExportScheduleDaily | io.flow.internal.v0.models.ExportScheduleRepeated);
24670
25811
  type FeatureDefaultValue = (io.flow.internal.v0.models.BooleanFeatureDefaultValue | io.flow.internal.v0.models.StringFeatureDefaultValue);
@@ -24675,6 +25816,7 @@ declare namespace io.flow.internal.v0.unions {
24675
25816
  type FraudProviderConfiguration = (io.flow.internal.v0.models.FraudProviderConfigurationRiskified);
24676
25817
  type FraudProviderConfigurationForm = (io.flow.internal.v0.models.FraudProviderConfigurationFormRiskified);
24677
25818
  type FuelSurchargeServiceFeePutForm = (io.flow.internal.v0.models.FuelSurchargeServiceFeePercentPutForm | io.flow.internal.v0.models.FuelSurchargeServiceFeeAmountByWeightPutForm);
25819
+ type FulfillmentProof = (io.flow.internal.v0.models.FulfillmentProofLabelTrackingReference | io.flow.internal.v0.models.FulfillmentProofShippingNotificationReference | io.flow.internal.v0.models.FulfillmentProofExternalFulfillmentProofReference);
24678
25820
  type GenerateLoad = (io.flow.internal.v0.models.GenerateLoadSingleOrg | io.flow.internal.v0.models.GenerateLoadMultipleOrgs);
24679
25821
  type GlobalSearchResult = (io.flow.internal.v0.models.SearchExperienceSummary | io.flow.internal.v0.models.SearchExperimentSummary | io.flow.internal.v0.models.SearchOrderSummary | io.flow.internal.v0.models.SearchItemSummary);
24680
25822
  type HeapEvent = (io.flow.internal.v0.models.HeapAddressPredictionClick | io.flow.internal.v0.models.HeapAfterpayPopupOpened | io.flow.internal.v0.models.HeapAfterpayPopupClosed | io.flow.internal.v0.models.HeapAuthorizationDeclined | io.flow.internal.v0.models.HeapAuthorizationError | io.flow.internal.v0.models.HeapCardError | io.flow.internal.v0.models.HeapCheckoutEvent | io.flow.internal.v0.models.HeapCheckoutProgress | io.flow.internal.v0.models.HeapCheckoutStarted | io.flow.internal.v0.models.HeapContinueClick | io.flow.internal.v0.models.HeapDeliveryFormDataReceived | io.flow.internal.v0.models.HeapDeliveryFormDataTimeout | io.flow.internal.v0.models.HeapDeliveryOptionCount | io.flow.internal.v0.models.HeapDeliveryOptionSelected | io.flow.internal.v0.models.HeapExitCheckout | io.flow.internal.v0.models.HeapFieldBlur | io.flow.internal.v0.models.HeapFieldErrorTooltipShown | io.flow.internal.v0.models.HeapFieldFocus | io.flow.internal.v0.models.HeapFieldValidation | io.flow.internal.v0.models.HeapGiftCardApply | io.flow.internal.v0.models.HeapGiftCardOpen | io.flow.internal.v0.models.HeapGiftCardWithPin | io.flow.internal.v0.models.HeapOptinPromptDeselected | io.flow.internal.v0.models.HeapOptinPromptSelected | io.flow.internal.v0.models.HeapOrderSummaryClose | io.flow.internal.v0.models.HeapOrderSummaryOpen | io.flow.internal.v0.models.HeapPayClick | io.flow.internal.v0.models.HeapPaymentFormDataReceived | io.flow.internal.v0.models.HeapPaymentFormDataTimeout | io.flow.internal.v0.models.HeapPaymentMethodSelected | io.flow.internal.v0.models.HeapPerformance | io.flow.internal.v0.models.HeapPromoCodeApply | io.flow.internal.v0.models.HeapPromoCodeError | io.flow.internal.v0.models.HeapPromoCodeOpen | io.flow.internal.v0.models.HeapPurchase | io.flow.internal.v0.models.HeapRageClick | io.flow.internal.v0.models.HeapScriptError | io.flow.internal.v0.models.HeapSequencedError | io.flow.internal.v0.models.HeapSequencedTiming | io.flow.internal.v0.models.HeapSplitLoaded | io.flow.internal.v0.models.HeapSplitTimeout | io.flow.internal.v0.models.HeapStartCheckout | io.flow.internal.v0.models.HeapStreamError | io.flow.internal.v0.models.HeapSubmitError | io.flow.internal.v0.models.HeapWebsocketClose | io.flow.internal.v0.models.HeapWebsocketConnectionLost | io.flow.internal.v0.models.HeapWebsocketError | io.flow.internal.v0.models.HeapWebsocketGiveUp | io.flow.internal.v0.models.HeapWebsocketOpen | io.flow.internal.v0.models.HeapWebsocketRequest | io.flow.internal.v0.models.HeapWebsocketResponse | io.flow.internal.v0.models.HeapWebsocketRetry);
@@ -24684,6 +25826,7 @@ declare namespace io.flow.internal.v0.unions {
24684
25826
  type InternalHarmonizationStatistic = (io.flow.internal.v0.models.TimeToClassify | io.flow.internal.v0.models.TimeToClassifyAggregated | io.flow.internal.v0.models.RateSourceSummary | io.flow.internal.v0.models.RateFreshnessSummary);
24685
25827
  type InternalRefundForm = (io.flow.internal.v0.models.AdyenRefundForm);
24686
25828
  type InternalTransactionDetails = (io.flow.internal.v0.models.InternalTransactionDetailsCard);
25829
+ type LabelSurchargeDetail = (io.flow.internal.v0.models.LabelSurchargeDetailFlat | io.flow.internal.v0.models.LabelSurchargeDetailPercentage | io.flow.internal.v0.models.LabelSurchargeDetailPerWeightUnit);
24687
25830
  type LocalizableContent = (io.flow.internal.v0.models.LocalizableContentReference | io.flow.internal.v0.models.Localization);
24688
25831
  type MarketingGatewayChannelDetails = (io.flow.internal.v0.models.MarketingGatewayGoogleChannelDetails | io.flow.internal.v0.models.MarketingGatewayFacebookChannelDetails | io.flow.internal.v0.models.MarketingGatewaySupportedChannelDetails);
24689
25832
  type MarketingGatewayDistributionChannel = (io.flow.internal.v0.models.MarketingGatewayDistributionChannelGoogle | io.flow.internal.v0.models.MarketingGatewayDistributionChannelFacebook);
@@ -24744,9 +25887,11 @@ export const blazeCheckoutStep: PropTypes.Requireable<io.flow.internal.v0.enums.
24744
25887
  export const browserBundleErrorCode: PropTypes.Requireable<io.flow.internal.v0.enums.BrowserBundleErrorCode>;
24745
25888
  export const calculatorEngine: PropTypes.Requireable<io.flow.internal.v0.enums.CalculatorEngine>;
24746
25889
  export const carrierLabelGenerationMethod: PropTypes.Requireable<io.flow.internal.v0.enums.CarrierLabelGenerationMethod>;
25890
+ export const carrierValidationStatus: PropTypes.Requireable<io.flow.internal.v0.enums.CarrierValidationStatus>;
24747
25891
  export const catalogImportType: PropTypes.Requireable<io.flow.internal.v0.enums.CatalogImportType>;
24748
25892
  export const channelBilledTransactionType: PropTypes.Requireable<io.flow.internal.v0.enums.ChannelBilledTransactionType>;
24749
25893
  export const channelOrderAcceptanceErrorAction: PropTypes.Requireable<io.flow.internal.v0.enums.ChannelOrderAcceptanceErrorAction>;
25894
+ export const channelOrderAcceptanceNextActionFrom: PropTypes.Requireable<io.flow.internal.v0.enums.ChannelOrderAcceptanceNextActionFrom>;
24750
25895
  export const channelOrderAcceptanceRejectionReason: PropTypes.Requireable<io.flow.internal.v0.enums.ChannelOrderAcceptanceRejectionReason>;
24751
25896
  export const channelOrderAcceptanceStatus: PropTypes.Requireable<io.flow.internal.v0.enums.ChannelOrderAcceptanceStatus>;
24752
25897
  export const channelTransactionType: PropTypes.Requireable<io.flow.internal.v0.enums.ChannelTransactionType>;
@@ -24843,6 +25988,7 @@ export const disputeImportType: PropTypes.Requireable<io.flow.internal.v0.enums.
24843
25988
  export const disputeLiability: PropTypes.Requireable<io.flow.internal.v0.enums.DisputeLiability>;
24844
25989
  export const disputeProcessor: PropTypes.Requireable<io.flow.internal.v0.enums.DisputeProcessor>;
24845
25990
  export const disputeStatus: PropTypes.Requireable<io.flow.internal.v0.enums.DisputeStatus>;
25991
+ export const disputeTransactionType: PropTypes.Requireable<io.flow.internal.v0.enums.DisputeTransactionType>;
24846
25992
  export const disputeType: PropTypes.Requireable<io.flow.internal.v0.enums.DisputeType>;
24847
25993
  export const dutyCompoundExpressionType: PropTypes.Requireable<io.flow.internal.v0.enums.DutyCompoundExpressionType>;
24848
25994
  export const dutyExemptItemTypes: PropTypes.Requireable<io.flow.internal.v0.enums.DutyExemptItemTypes>;
@@ -24887,6 +26033,7 @@ export const labelCancellationErrorCode: PropTypes.Requireable<io.flow.internal.
24887
26033
  export const labelCreationStatus: PropTypes.Requireable<io.flow.internal.v0.enums.LabelCreationStatus>;
24888
26034
  export const labelGenerationAddressFailureStatus: PropTypes.Requireable<io.flow.internal.v0.enums.LabelGenerationAddressFailureStatus>;
24889
26035
  export const labelInputSource: PropTypes.Requireable<io.flow.internal.v0.enums.LabelInputSource>;
26036
+ export const labelRequestErrorHandlingResponsibility: PropTypes.Requireable<io.flow.internal.v0.enums.LabelRequestErrorHandlingResponsibility>;
24890
26037
  export const labelTransactionType: PropTypes.Requireable<io.flow.internal.v0.enums.LabelTransactionType>;
24891
26038
  export const liabilityType: PropTypes.Requireable<io.flow.internal.v0.enums.LiabilityType>;
24892
26039
  export const mainTransactionStatus: PropTypes.Requireable<io.flow.internal.v0.enums.MainTransactionStatus>;
@@ -24943,11 +26090,13 @@ export const promptOptions: PropTypes.Requireable<io.flow.internal.v0.enums.Prom
24943
26090
  export const promptTarget: PropTypes.Requireable<io.flow.internal.v0.enums.PromptTarget>;
24944
26091
  export const queuedRecordType: PropTypes.Requireable<io.flow.internal.v0.enums.QueuedRecordType>;
24945
26092
  export const quoteRequestType: PropTypes.Requireable<io.flow.internal.v0.enums.QuoteRequestType>;
26093
+ export const rateLevelKey: PropTypes.Requireable<io.flow.internal.v0.enums.RateLevelKey>;
24946
26094
  export const rateSource: PropTypes.Requireable<io.flow.internal.v0.enums.RateSource>;
24947
26095
  export const reboundConfigurationStatus: PropTypes.Requireable<io.flow.internal.v0.enums.ReboundConfigurationStatus>;
24948
26096
  export const redirectReason: PropTypes.Requireable<io.flow.internal.v0.enums.RedirectReason>;
24949
26097
  export const rejectionReason: PropTypes.Requireable<io.flow.internal.v0.enums.RejectionReason>;
24950
26098
  export const reportInterval: PropTypes.Requireable<io.flow.internal.v0.enums.ReportInterval>;
26099
+ export const reportStatus: PropTypes.Requireable<io.flow.internal.v0.enums.ReportStatus>;
24951
26100
  export const reportingScheme: PropTypes.Requireable<io.flow.internal.v0.enums.ReportingScheme>;
24952
26101
  export const responsibleParty: PropTypes.Requireable<io.flow.internal.v0.enums.ResponsibleParty>;
24953
26102
  export const restrictionAction: PropTypes.Requireable<io.flow.internal.v0.enums.RestrictionAction>;
@@ -24963,6 +26112,7 @@ export const shopifyCheckInventoryErrorCode: PropTypes.Requireable<io.flow.inter
24963
26112
  export const shopifyGrantStatus: PropTypes.Requireable<io.flow.internal.v0.enums.ShopifyGrantStatus>;
24964
26113
  export const shopifyMarketsDangerousGoods: PropTypes.Requireable<io.flow.internal.v0.enums.ShopifyMarketsDangerousGoods>;
24965
26114
  export const shopifyMarketsHtsNumberAvailable: PropTypes.Requireable<io.flow.internal.v0.enums.ShopifyMarketsHtsNumberAvailable>;
26115
+ export const shopifyMarketsQueuedRecordType: PropTypes.Requireable<io.flow.internal.v0.enums.ShopifyMarketsQueuedRecordType>;
24966
26116
  export const shopifyMarketsTradeSector: PropTypes.Requireable<io.flow.internal.v0.enums.ShopifyMarketsTradeSector>;
24967
26117
  export const shopifyMonitoringMonitorReviewStatus: PropTypes.Requireable<io.flow.internal.v0.enums.ShopifyMonitoringMonitorReviewStatus>;
24968
26118
  export const shopifyMonitoringTrackingField: PropTypes.Requireable<io.flow.internal.v0.enums.ShopifyMonitoringTrackingField>;
@@ -24991,7 +26141,10 @@ export const timeseriesType: PropTypes.Requireable<io.flow.internal.v0.enums.Tim
24991
26141
  export const trackingIntegrationType: PropTypes.Requireable<io.flow.internal.v0.enums.TrackingIntegrationType>;
24992
26142
  export const transactionPostingMethod: PropTypes.Requireable<io.flow.internal.v0.enums.TransactionPostingMethod>;
24993
26143
  export const transferMethod: PropTypes.Requireable<io.flow.internal.v0.enums.TransferMethod>;
26144
+ export const trueUpSurchargeType: PropTypes.Requireable<io.flow.internal.v0.enums.TrueUpSurchargeType>;
24994
26145
  export const unclassifiedProductStatus: PropTypes.Requireable<io.flow.internal.v0.enums.UnclassifiedProductStatus>;
26146
+ export const washCarrierActualFileStatus: PropTypes.Requireable<io.flow.internal.v0.enums.WashCarrierActualFileStatus>;
26147
+ export const weightSelection: PropTypes.Requireable<io.flow.internal.v0.enums.WeightSelection>;
24995
26148
  export const acceptance: PropTypes.Requireable<io.flow.internal.v0.models.Acceptance>;
24996
26149
  export const accountContact: PropTypes.Requireable<io.flow.internal.v0.models.AccountContact>;
24997
26150
  export const accountContactDeleted: PropTypes.Requireable<io.flow.internal.v0.models.AccountContactDeleted>;
@@ -25074,6 +26227,7 @@ export const alertFailureSummary: PropTypes.Requireable<io.flow.internal.v0.mode
25074
26227
  export const alertFailureSummaryDetail: PropTypes.Requireable<io.flow.internal.v0.models.AlertFailureSummaryDetail>;
25075
26228
  export const alertImportSummary: PropTypes.Requireable<io.flow.internal.v0.models.AlertImportSummary>;
25076
26229
  export const alertRequeueSummary: PropTypes.Requireable<io.flow.internal.v0.models.AlertRequeueSummary>;
26230
+ export const algoliaIndexAssignment: PropTypes.Requireable<io.flow.internal.v0.models.AlgoliaIndexAssignment>;
25077
26231
  export const allItemsExport: PropTypes.Requireable<io.flow.internal.v0.models.AllItemsExport>;
25078
26232
  export const allOrganizationsMembership: PropTypes.Requireable<io.flow.internal.v0.models.AllOrganizationsMembership>;
25079
26233
  export const allocationItemReference: PropTypes.Requireable<io.flow.internal.v0.models.AllocationItemReference>;
@@ -25091,6 +26245,7 @@ export const authorizationParametersForm: PropTypes.Requireable<io.flow.internal
25091
26245
  export const authorizedChargeStatus: PropTypes.Requireable<io.flow.internal.v0.models.AuthorizedChargeStatus>;
25092
26246
  export const authorizedLineItemCharge: PropTypes.Requireable<io.flow.internal.v0.models.AuthorizedLineItemCharge>;
25093
26247
  export const authorizedShippingCharge: PropTypes.Requireable<io.flow.internal.v0.models.AuthorizedShippingCharge>;
26248
+ export const autoReviewCriteria: PropTypes.Requireable<io.flow.internal.v0.models.AutoReviewCriteria>;
25094
26249
  export const backfill: PropTypes.Requireable<io.flow.internal.v0.models.Backfill>;
25095
26250
  export const backfillForm: PropTypes.Requireable<io.flow.internal.v0.models.BackfillForm>;
25096
26251
  export const bankAccountReference: PropTypes.Requireable<io.flow.internal.v0.models.BankAccountReference>;
@@ -25117,7 +26272,6 @@ export const billingOrganizationSettingsUpserted: PropTypes.Requireable<io.flow.
25117
26272
  export const billingStatementAttachment: PropTypes.Requireable<io.flow.internal.v0.models.BillingStatementAttachment>;
25118
26273
  export const billingStatementBatch: PropTypes.Requireable<io.flow.internal.v0.models.BillingStatementBatch>;
25119
26274
  export const billingStatementBatchDeleted: PropTypes.Requireable<io.flow.internal.v0.models.BillingStatementBatchDeleted>;
25120
- export const billingStatementBatchReconciliation: PropTypes.Requireable<io.flow.internal.v0.models.BillingStatementBatchReconciliation>;
25121
26275
  export const billingStatementBatchReference: PropTypes.Requireable<io.flow.internal.v0.models.BillingStatementBatchReference>;
25122
26276
  export const billingStatementBatchStatement: PropTypes.Requireable<io.flow.internal.v0.models.BillingStatementBatchStatement>;
25123
26277
  export const billingStatementBatchStatementDeleted: PropTypes.Requireable<io.flow.internal.v0.models.BillingStatementBatchStatementDeleted>;
@@ -25177,6 +26331,8 @@ export const browserBundlePaymentMethods: PropTypes.Requireable<io.flow.internal
25177
26331
  export const bulkClassificationAction: PropTypes.Requireable<io.flow.internal.v0.models.BulkClassificationAction>;
25178
26332
  export const byRuleSnapshot: PropTypes.Requireable<io.flow.internal.v0.models.ByRuleSnapshot>;
25179
26333
  export const calculatedTaxAmount: PropTypes.Requireable<io.flow.internal.v0.models.CalculatedTaxAmount>;
26334
+ export const calculatorDtcePostBody: PropTypes.Requireable<io.flow.internal.v0.models.CalculatorDtcePostBody>;
26335
+ export const calculatorDtceProduct: PropTypes.Requireable<io.flow.internal.v0.models.CalculatorDtceProduct>;
25180
26336
  export const calculatorOrganizationSettings: PropTypes.Requireable<io.flow.internal.v0.models.CalculatorOrganizationSettings>;
25181
26337
  export const calculatorOrganizationSettingsDeleted: PropTypes.Requireable<io.flow.internal.v0.models.CalculatorOrganizationSettingsDeleted>;
25182
26338
  export const calculatorOrganizationSettingsForm: PropTypes.Requireable<io.flow.internal.v0.models.CalculatorOrganizationSettingsForm>;
@@ -25185,6 +26341,7 @@ export const carrierAccount: PropTypes.Requireable<io.flow.internal.v0.models.Ca
25185
26341
  export const carrierAccountDeleted: PropTypes.Requireable<io.flow.internal.v0.models.CarrierAccountDeleted>;
25186
26342
  export const carrierAccountForm: PropTypes.Requireable<io.flow.internal.v0.models.CarrierAccountForm>;
25187
26343
  export const carrierAccountUpsertedV2: PropTypes.Requireable<io.flow.internal.v0.models.CarrierAccountUpsertedV2>;
26344
+ export const carrierAccountValidation: PropTypes.Requireable<io.flow.internal.v0.models.CarrierAccountValidation>;
25188
26345
  export const carrierInvoice: PropTypes.Requireable<io.flow.internal.v0.models.CarrierInvoice>;
25189
26346
  export const catalogImportRequest: PropTypes.Requireable<io.flow.internal.v0.models.CatalogImportRequest>;
25190
26347
  export const catalogItemBatchIndexTask: PropTypes.Requireable<io.flow.internal.v0.models.CatalogItemBatchIndexTask>;
@@ -25193,6 +26350,7 @@ export const catalogItemIndexTask: PropTypes.Requireable<io.flow.internal.v0.mod
25193
26350
  export const catalogItemRegionAvailabilities: PropTypes.Requireable<io.flow.internal.v0.models.CatalogItemRegionAvailabilities>;
25194
26351
  export const catalogItemRegionAvailabilitiesData: PropTypes.Requireable<io.flow.internal.v0.models.CatalogItemRegionAvailabilitiesData>;
25195
26352
  export const catalogItemRegionAvailabilitiesPublished: PropTypes.Requireable<io.flow.internal.v0.models.CatalogItemRegionAvailabilitiesPublished>;
26353
+ export const catalogPublicationSyncValidationError: PropTypes.Requireable<io.flow.internal.v0.models.CatalogPublicationSyncValidationError>;
25196
26354
  export const catalogSettings: PropTypes.Requireable<io.flow.internal.v0.models.CatalogSettings>;
25197
26355
  export const catalogSettingsDeleted: PropTypes.Requireable<io.flow.internal.v0.models.CatalogSettingsDeleted>;
25198
26356
  export const catalogSettingsPutForm: PropTypes.Requireable<io.flow.internal.v0.models.CatalogSettingsPutForm>;
@@ -25645,6 +26803,7 @@ export const classificationWrapper: PropTypes.Requireable<io.flow.internal.v0.mo
25645
26803
  export const classifiedProduct: PropTypes.Requireable<io.flow.internal.v0.models.ClassifiedProduct>;
25646
26804
  export const classifiedProductDetail: PropTypes.Requireable<io.flow.internal.v0.models.ClassifiedProductDetail>;
25647
26805
  export const commercialInvoiceComparison: PropTypes.Requireable<io.flow.internal.v0.models.CommercialInvoiceComparison>;
26806
+ export const companyReference: PropTypes.Requireable<io.flow.internal.v0.models.CompanyReference>;
25648
26807
  export const compliance: PropTypes.Requireable<io.flow.internal.v0.models.Compliance>;
25649
26808
  export const components: PropTypes.Requireable<io.flow.internal.v0.models.Components>;
25650
26809
  export const consumerOptinActivity: PropTypes.Requireable<io.flow.internal.v0.models.ConsumerOptinActivity>;
@@ -25779,12 +26938,19 @@ export const emailForm: PropTypes.Requireable<io.flow.internal.v0.models.EmailFo
25779
26938
  export const emailModificationForm: PropTypes.Requireable<io.flow.internal.v0.models.EmailModificationForm>;
25780
26939
  export const emptyClassificationForm: PropTypes.Requireable<io.flow.internal.v0.models.EmptyClassificationForm>;
25781
26940
  export const encryption: PropTypes.Requireable<io.flow.internal.v0.models.Encryption>;
26941
+ export const entityReference: PropTypes.Requireable<io.flow.internal.v0.models.EntityReference>;
25782
26942
  export const erpFlowFile: PropTypes.Requireable<io.flow.internal.v0.models.ErpFlowFile>;
25783
- export const erpFlowFileBatchForm: PropTypes.Requireable<io.flow.internal.v0.models.ErpFlowFileBatchForm>;
26943
+ export const erpFlowFileForm: PropTypes.Requireable<io.flow.internal.v0.models.ErpFlowFileForm>;
26944
+ export const erpFlowVendor: PropTypes.Requireable<io.flow.internal.v0.models.ErpFlowVendor>;
25784
26945
  export const erpPriorityFile: PropTypes.Requireable<io.flow.internal.v0.models.ErpPriorityFile>;
25785
26946
  export const erpPriorityFileForm: PropTypes.Requireable<io.flow.internal.v0.models.ErpPriorityFileForm>;
26947
+ export const erpPriorityVendor: PropTypes.Requireable<io.flow.internal.v0.models.ErpPriorityVendor>;
26948
+ export const erpPriorityVendorForm: PropTypes.Requireable<io.flow.internal.v0.models.ErpPriorityVendorForm>;
25786
26949
  export const erpVendor: PropTypes.Requireable<io.flow.internal.v0.models.ErpVendor>;
25787
- export const erpVendorsDelta: PropTypes.Requireable<io.flow.internal.v0.models.ErpVendorsDelta>;
26950
+ export const erpVendorStatus: PropTypes.Requireable<io.flow.internal.v0.models.ErpVendorStatus>;
26951
+ export const erpVendorStatusEntity: PropTypes.Requireable<io.flow.internal.v0.models.ErpVendorStatusEntity>;
26952
+ export const erpVendorStatusFlowFile: PropTypes.Requireable<io.flow.internal.v0.models.ErpVendorStatusFlowFile>;
26953
+ export const erpVendorStatusPriorityFile: PropTypes.Requireable<io.flow.internal.v0.models.ErpVendorStatusPriorityFile>;
25788
26954
  export const exclusionRuleDeleted: PropTypes.Requireable<io.flow.internal.v0.models.ExclusionRuleDeleted>;
25789
26955
  export const exclusionRuleExportRequest: PropTypes.Requireable<io.flow.internal.v0.models.ExclusionRuleExportRequest>;
25790
26956
  export const exclusionRuleUpserted: PropTypes.Requireable<io.flow.internal.v0.models.ExclusionRuleUpserted>;
@@ -25877,6 +27043,7 @@ export const flowLabProjectPostForm: PropTypes.Requireable<io.flow.internal.v0.m
25877
27043
  export const flowLabProjectPutForm: PropTypes.Requireable<io.flow.internal.v0.models.FlowLabProjectPutForm>;
25878
27044
  export const flowLabelSetting: PropTypes.Requireable<io.flow.internal.v0.models.FlowLabelSetting>;
25879
27045
  export const flowLabelSettingForm: PropTypes.Requireable<io.flow.internal.v0.models.FlowLabelSettingForm>;
27046
+ export const flowShopValidationError: PropTypes.Requireable<io.flow.internal.v0.models.FlowShopValidationError>;
25880
27047
  export const fraudPendingReview: PropTypes.Requireable<io.flow.internal.v0.models.FraudPendingReview>;
25881
27048
  export const fraudPendingReviewDeleted: PropTypes.Requireable<io.flow.internal.v0.models.FraudPendingReviewDeleted>;
25882
27049
  export const fraudPendingReviewDetail: PropTypes.Requireable<io.flow.internal.v0.models.FraudPendingReviewDetail>;
@@ -25903,11 +27070,21 @@ export const ftpSettingVersion: PropTypes.Requireable<io.flow.internal.v0.models
25903
27070
  export const ftpSettingsPaths: PropTypes.Requireable<io.flow.internal.v0.models.FtpSettingsPaths>;
25904
27071
  export const fuelSurchargeServiceFeeAmountByWeightPutForm: PropTypes.Requireable<io.flow.internal.v0.models.FuelSurchargeServiceFeeAmountByWeightPutForm>;
25905
27072
  export const fuelSurchargeServiceFeePercentPutForm: PropTypes.Requireable<io.flow.internal.v0.models.FuelSurchargeServiceFeePercentPutForm>;
27073
+ export const fulfillment: PropTypes.Requireable<io.flow.internal.v0.models.Fulfillment>;
25906
27074
  export const fulfillmentActionForm: PropTypes.Requireable<io.flow.internal.v0.models.FulfillmentActionForm>;
27075
+ export const fulfillmentBusiness: PropTypes.Requireable<io.flow.internal.v0.models.FulfillmentBusiness>;
25907
27076
  export const fulfillmentCancel: PropTypes.Requireable<io.flow.internal.v0.models.FulfillmentCancel>;
25908
27077
  export const fulfillmentInternalExperienceReference: PropTypes.Requireable<io.flow.internal.v0.models.FulfillmentInternalExperienceReference>;
27078
+ export const fulfillmentLine: PropTypes.Requireable<io.flow.internal.v0.models.FulfillmentLine>;
27079
+ export const fulfillmentOrigin: PropTypes.Requireable<io.flow.internal.v0.models.FulfillmentOrigin>;
27080
+ export const fulfillmentProofExternalFulfillmentProofReference: PropTypes.Requireable<io.flow.internal.v0.models.FulfillmentProofExternalFulfillmentProofReference>;
27081
+ export const fulfillmentProofLabelTrackingReference: PropTypes.Requireable<io.flow.internal.v0.models.FulfillmentProofLabelTrackingReference>;
27082
+ export const fulfillmentProofShippingNotificationReference: PropTypes.Requireable<io.flow.internal.v0.models.FulfillmentProofShippingNotificationReference>;
27083
+ export const fulfillmentReference: PropTypes.Requireable<io.flow.internal.v0.models.FulfillmentReference>;
25909
27084
  export const fulfillmentShipmentTracking: PropTypes.Requireable<io.flow.internal.v0.models.FulfillmentShipmentTracking>;
27085
+ export const fulfillmentShipping: PropTypes.Requireable<io.flow.internal.v0.models.FulfillmentShipping>;
25910
27086
  export const fulfillmentSnapshot: PropTypes.Requireable<io.flow.internal.v0.models.FulfillmentSnapshot>;
27087
+ export const fulfillmentSubsidyBreakdown: PropTypes.Requireable<io.flow.internal.v0.models.FulfillmentSubsidyBreakdown>;
25911
27088
  export const fxFee: PropTypes.Requireable<io.flow.internal.v0.models.FxFee>;
25912
27089
  export const fxRevenueRecognition: PropTypes.Requireable<io.flow.internal.v0.models.FxRevenueRecognition>;
25913
27090
  export const fxRevenueRecognitionAccount: PropTypes.Requireable<io.flow.internal.v0.models.FxRevenueRecognitionAccount>;
@@ -25918,6 +27095,7 @@ export const fxRevenueRecognitionRate: PropTypes.Requireable<io.flow.internal.v0
25918
27095
  export const fxRevenueRecognitionSource: PropTypes.Requireable<io.flow.internal.v0.models.FxRevenueRecognitionSource>;
25919
27096
  export const generateLoadMultipleOrgs: PropTypes.Requireable<io.flow.internal.v0.models.GenerateLoadMultipleOrgs>;
25920
27097
  export const generateLoadSingleOrg: PropTypes.Requireable<io.flow.internal.v0.models.GenerateLoadSingleOrg>;
27098
+ export const genericValidationError: PropTypes.Requireable<io.flow.internal.v0.models.GenericValidationError>;
25921
27099
  export const giftCard: PropTypes.Requireable<io.flow.internal.v0.models.GiftCard>;
25922
27100
  export const giftCardAuthorizationError: PropTypes.Requireable<io.flow.internal.v0.models.GiftCardAuthorizationError>;
25923
27101
  export const giftCardForm: PropTypes.Requireable<io.flow.internal.v0.models.GiftCardForm>;
@@ -25938,6 +27116,8 @@ export const harmonizationItemClassificationUpserted: PropTypes.Requireable<io.f
25938
27116
  export const harmonizationItemSummary: PropTypes.Requireable<io.flow.internal.v0.models.HarmonizationItemSummary>;
25939
27117
  export const harmonizationMlModelSummary: PropTypes.Requireable<io.flow.internal.v0.models.HarmonizationMlModelSummary>;
25940
27118
  export const harmonizationPhraseSuggestionRequestImport: PropTypes.Requireable<io.flow.internal.v0.models.HarmonizationPhraseSuggestionRequestImport>;
27119
+ export const harmonizationThreshold: PropTypes.Requireable<io.flow.internal.v0.models.HarmonizationThreshold>;
27120
+ export const harmonizationThresholdForm: PropTypes.Requireable<io.flow.internal.v0.models.HarmonizationThresholdForm>;
25941
27121
  export const harmonizationUnclassifiedStatistics: PropTypes.Requireable<io.flow.internal.v0.models.HarmonizationUnclassifiedStatistics>;
25942
27122
  export const harmonizeFullyRequestV2: PropTypes.Requireable<io.flow.internal.v0.models.HarmonizeFullyRequestV2>;
25943
27123
  export const harmonizedItemsHs6Export: PropTypes.Requireable<io.flow.internal.v0.models.HarmonizedItemsHs6Export>;
@@ -26000,6 +27180,8 @@ export const hybrisCatalogItemsImportRequest: PropTypes.Requireable<io.flow.inte
26000
27180
  export const hybrisCatalogItemsImportRequestData: PropTypes.Requireable<io.flow.internal.v0.models.HybrisCatalogItemsImportRequestData>;
26001
27181
  export const importCompleted: PropTypes.Requireable<io.flow.internal.v0.models.ImportCompleted>;
26002
27182
  export const importFailed: PropTypes.Requireable<io.flow.internal.v0.models.ImportFailed>;
27183
+ export const indexAssignmentDeleted: PropTypes.Requireable<io.flow.internal.v0.models.IndexAssignmentDeleted>;
27184
+ export const indexAssignmentUpserted: PropTypes.Requireable<io.flow.internal.v0.models.IndexAssignmentUpserted>;
26003
27185
  export const installForm: PropTypes.Requireable<io.flow.internal.v0.models.InstallForm>;
26004
27186
  export const internalAdyenAuthorizationDetails: PropTypes.Requireable<io.flow.internal.v0.models.InternalAdyenAuthorizationDetails>;
26005
27187
  export const internalAfterpayAuthorizationDetails: PropTypes.Requireable<io.flow.internal.v0.models.InternalAfterpayAuthorizationDetails>;
@@ -26057,6 +27239,7 @@ export const itemSalesMarginPostForm: PropTypes.Requireable<io.flow.internal.v0.
26057
27239
  export const itemSalesMarginPutForm: PropTypes.Requireable<io.flow.internal.v0.models.ItemSalesMarginPutForm>;
26058
27240
  export const itemSalesMarginUpserted: PropTypes.Requireable<io.flow.internal.v0.models.ItemSalesMarginUpserted>;
26059
27241
  export const itemSalesMarginVersion: PropTypes.Requireable<io.flow.internal.v0.models.ItemSalesMarginVersion>;
27242
+ export const itemSummary: PropTypes.Requireable<io.flow.internal.v0.models.ItemSummary>;
26060
27243
  export const itemValuesForm: PropTypes.Requireable<io.flow.internal.v0.models.ItemValuesForm>;
26061
27244
  export const itemsShipped: PropTypes.Requireable<io.flow.internal.v0.models.ItemsShipped>;
26062
27245
  export const key: PropTypes.Requireable<io.flow.internal.v0.models.Key>;
@@ -26068,23 +27251,37 @@ export const labProjectSettingsForm: PropTypes.Requireable<io.flow.internal.v0.m
26068
27251
  export const labProjectSettingsFormAcceptance: PropTypes.Requireable<io.flow.internal.v0.models.LabProjectSettingsFormAcceptance>;
26069
27252
  export const labelAliases: PropTypes.Requireable<io.flow.internal.v0.models.LabelAliases>;
26070
27253
  export const labelAssociation: PropTypes.Requireable<io.flow.internal.v0.models.LabelAssociation>;
27254
+ export const labelBase: PropTypes.Requireable<io.flow.internal.v0.models.LabelBase>;
26071
27255
  export const labelCancellationError: PropTypes.Requireable<io.flow.internal.v0.models.LabelCancellationError>;
26072
27256
  export const labelCreationJob: PropTypes.Requireable<io.flow.internal.v0.models.LabelCreationJob>;
26073
27257
  export const labelCreationJobSummary: PropTypes.Requireable<io.flow.internal.v0.models.LabelCreationJobSummary>;
26074
27258
  export const labelCreationRequestForm: PropTypes.Requireable<io.flow.internal.v0.models.LabelCreationRequestForm>;
27259
+ export const labelDestination: PropTypes.Requireable<io.flow.internal.v0.models.LabelDestination>;
26075
27260
  export const labelGenerationAddressFailureStatusUpdateForm: PropTypes.Requireable<io.flow.internal.v0.models.LabelGenerationAddressFailureStatusUpdateForm>;
26076
27261
  export const labelGenerationAddressFailures: PropTypes.Requireable<io.flow.internal.v0.models.LabelGenerationAddressFailures>;
26077
27262
  export const labelGenerationSettings: PropTypes.Requireable<io.flow.internal.v0.models.LabelGenerationSettings>;
26078
27263
  export const labelGenerationSettingsDeleted: PropTypes.Requireable<io.flow.internal.v0.models.LabelGenerationSettingsDeleted>;
26079
27264
  export const labelGenerationSettingsForm: PropTypes.Requireable<io.flow.internal.v0.models.LabelGenerationSettingsForm>;
26080
27265
  export const labelGenerationSettingsUpserted: PropTypes.Requireable<io.flow.internal.v0.models.LabelGenerationSettingsUpserted>;
27266
+ export const labelInvoiceRequest: PropTypes.Requireable<io.flow.internal.v0.models.LabelInvoiceRequest>;
27267
+ export const labelInvoiceRequestDeleted: PropTypes.Requireable<io.flow.internal.v0.models.LabelInvoiceRequestDeleted>;
27268
+ export const labelInvoiceRequestUpserted: PropTypes.Requireable<io.flow.internal.v0.models.LabelInvoiceRequestUpserted>;
27269
+ export const labelMetadata: PropTypes.Requireable<io.flow.internal.v0.models.LabelMetadata>;
27270
+ export const labelRequestError: PropTypes.Requireable<io.flow.internal.v0.models.LabelRequestError>;
27271
+ export const labelRequestErrorDeleted: PropTypes.Requireable<io.flow.internal.v0.models.LabelRequestErrorDeleted>;
27272
+ export const labelRequestErrorUpserted: PropTypes.Requireable<io.flow.internal.v0.models.LabelRequestErrorUpserted>;
26081
27273
  export const labelSummary: PropTypes.Requireable<io.flow.internal.v0.models.LabelSummary>;
27274
+ export const labelSurcharge: PropTypes.Requireable<io.flow.internal.v0.models.LabelSurcharge>;
27275
+ export const labelSurchargeDetailFlat: PropTypes.Requireable<io.flow.internal.v0.models.LabelSurchargeDetailFlat>;
27276
+ export const labelSurchargeDetailPerWeightUnit: PropTypes.Requireable<io.flow.internal.v0.models.LabelSurchargeDetailPerWeightUnit>;
27277
+ export const labelSurchargeDetailPercentage: PropTypes.Requireable<io.flow.internal.v0.models.LabelSurchargeDetailPercentage>;
26082
27278
  export const labelTaxonomy: PropTypes.Requireable<io.flow.internal.v0.models.LabelTaxonomy>;
26083
27279
  export const labelTrackingSummaryDeleted: PropTypes.Requireable<io.flow.internal.v0.models.LabelTrackingSummaryDeleted>;
26084
27280
  export const labelTrackingSummaryUpserted: PropTypes.Requireable<io.flow.internal.v0.models.LabelTrackingSummaryUpserted>;
26085
27281
  export const labelTransaction: PropTypes.Requireable<io.flow.internal.v0.models.LabelTransaction>;
26086
27282
  export const labelTransactionDeleted: PropTypes.Requireable<io.flow.internal.v0.models.LabelTransactionDeleted>;
26087
27283
  export const labelTransactionUpserted: PropTypes.Requireable<io.flow.internal.v0.models.LabelTransactionUpserted>;
27284
+ export const labelUnits: PropTypes.Requireable<io.flow.internal.v0.models.LabelUnits>;
26088
27285
  export const labeledContent: PropTypes.Requireable<io.flow.internal.v0.models.LabeledContent>;
26089
27286
  export const labelsPrediction: PropTypes.Requireable<io.flow.internal.v0.models.LabelsPrediction>;
26090
27287
  export const landedCostItem: PropTypes.Requireable<io.flow.internal.v0.models.LandedCostItem>;
@@ -26122,7 +27319,6 @@ export const localizedPriceBookItemData: PropTypes.Requireable<io.flow.internal.
26122
27319
  export const localizedPriceBookItemDeleted: PropTypes.Requireable<io.flow.internal.v0.models.LocalizedPriceBookItemDeleted>;
26123
27320
  export const localizedPriceBookItemUpserted: PropTypes.Requireable<io.flow.internal.v0.models.LocalizedPriceBookItemUpserted>;
26124
27321
  export const location: PropTypes.Requireable<io.flow.internal.v0.models.Location>;
26125
- export const logisticsCenterCheck: PropTypes.Requireable<io.flow.internal.v0.models.LogisticsCenterCheck>;
26126
27322
  export const logo: PropTypes.Requireable<io.flow.internal.v0.models.Logo>;
26127
27323
  export const loyaltyProgram: PropTypes.Requireable<io.flow.internal.v0.models.LoyaltyProgram>;
26128
27324
  export const loyaltyProgramMessage: PropTypes.Requireable<io.flow.internal.v0.models.LoyaltyProgramMessage>;
@@ -26181,8 +27377,19 @@ export const marketingGatewaySupportedChannelDetails: PropTypes.Requireable<io.f
26181
27377
  export const marketsOrder: PropTypes.Requireable<io.flow.internal.v0.models.MarketsOrder>;
26182
27378
  export const merchantApplicationSummaries: PropTypes.Requireable<io.flow.internal.v0.models.MerchantApplicationSummaries>;
26183
27379
  export const merchantApplicationSummary: PropTypes.Requireable<io.flow.internal.v0.models.MerchantApplicationSummary>;
27380
+ export const merchantCharges: PropTypes.Requireable<io.flow.internal.v0.models.MerchantCharges>;
27381
+ export const merchantFees: PropTypes.Requireable<io.flow.internal.v0.models.MerchantFees>;
27382
+ export const merchantGuidAssignment: PropTypes.Requireable<io.flow.internal.v0.models.MerchantGuidAssignment>;
27383
+ export const merchantGuidAssignmentDeleted: PropTypes.Requireable<io.flow.internal.v0.models.MerchantGuidAssignmentDeleted>;
27384
+ export const merchantGuidAssignmentUpserted: PropTypes.Requireable<io.flow.internal.v0.models.MerchantGuidAssignmentUpserted>;
26184
27385
  export const merchantOfRecordEntitySettings: PropTypes.Requireable<io.flow.internal.v0.models.MerchantOfRecordEntitySettings>;
26185
27386
  export const merchantOfRecordEntitySettingsForm: PropTypes.Requireable<io.flow.internal.v0.models.MerchantOfRecordEntitySettingsForm>;
27387
+ export const merchantSearchResult: PropTypes.Requireable<io.flow.internal.v0.models.MerchantSearchResult>;
27388
+ export const merchantSubsidies: PropTypes.Requireable<io.flow.internal.v0.models.MerchantSubsidies>;
27389
+ export const merchantSummary: PropTypes.Requireable<io.flow.internal.v0.models.MerchantSummary>;
27390
+ export const metadataProposition: PropTypes.Requireable<io.flow.internal.v0.models.MetadataProposition>;
27391
+ export const metadataRatecard: PropTypes.Requireable<io.flow.internal.v0.models.MetadataRatecard>;
27392
+ export const metadataWeights: PropTypes.Requireable<io.flow.internal.v0.models.MetadataWeights>;
26186
27393
  export const nextBillingStatement: PropTypes.Requireable<io.flow.internal.v0.models.NextBillingStatement>;
26187
27394
  export const noCalculatedTaxAmount: PropTypes.Requireable<io.flow.internal.v0.models.NoCalculatedTaxAmount>;
26188
27395
  export const noClassificationForm: PropTypes.Requireable<io.flow.internal.v0.models.NoClassificationForm>;
@@ -26231,9 +27438,11 @@ export const orderRevenueTimelineDataPoint: PropTypes.Requireable<io.flow.intern
26231
27438
  export const orderServiceChangeCsvForm: PropTypes.Requireable<io.flow.internal.v0.models.OrderServiceChangeCsvForm>;
26232
27439
  export const orderShipped: PropTypes.Requireable<io.flow.internal.v0.models.OrderShipped>;
26233
27440
  export const orderSubmissionForm: PropTypes.Requireable<io.flow.internal.v0.models.OrderSubmissionForm>;
27441
+ export const orderSummary: PropTypes.Requireable<io.flow.internal.v0.models.OrderSummary>;
26234
27442
  export const orderTransaction: PropTypes.Requireable<io.flow.internal.v0.models.OrderTransaction>;
26235
27443
  export const orderTransactionDeleted: PropTypes.Requireable<io.flow.internal.v0.models.OrderTransactionDeleted>;
26236
27444
  export const orderTransactionUpserted: PropTypes.Requireable<io.flow.internal.v0.models.OrderTransactionUpserted>;
27445
+ export const orderValidationError: PropTypes.Requireable<io.flow.internal.v0.models.OrderValidationError>;
26237
27446
  export const organizationAccount: PropTypes.Requireable<io.flow.internal.v0.models.OrganizationAccount>;
26238
27447
  export const organizationAccountDeleted: PropTypes.Requireable<io.flow.internal.v0.models.OrganizationAccountDeleted>;
26239
27448
  export const organizationAccountUpsertedV2: PropTypes.Requireable<io.flow.internal.v0.models.OrganizationAccountUpsertedV2>;
@@ -26251,6 +27460,10 @@ export const organizationCurrencySettingDeleted: PropTypes.Requireable<io.flow.i
26251
27460
  export const organizationCurrencySettingForm: PropTypes.Requireable<io.flow.internal.v0.models.OrganizationCurrencySettingForm>;
26252
27461
  export const organizationCurrencySettingUpserted: PropTypes.Requireable<io.flow.internal.v0.models.OrganizationCurrencySettingUpserted>;
26253
27462
  export const organizationCurrencySettingVersion: PropTypes.Requireable<io.flow.internal.v0.models.OrganizationCurrencySettingVersion>;
27463
+ export const organizationDeactivation: PropTypes.Requireable<io.flow.internal.v0.models.OrganizationDeactivation>;
27464
+ export const organizationDeactivationDeleted: PropTypes.Requireable<io.flow.internal.v0.models.OrganizationDeactivationDeleted>;
27465
+ export const organizationDeactivationForm: PropTypes.Requireable<io.flow.internal.v0.models.OrganizationDeactivationForm>;
27466
+ export const organizationDeactivationUpserted: PropTypes.Requireable<io.flow.internal.v0.models.OrganizationDeactivationUpserted>;
26254
27467
  export const organizationDebugTransaction: PropTypes.Requireable<io.flow.internal.v0.models.OrganizationDebugTransaction>;
26255
27468
  export const organizationInvitationAcceptForm: PropTypes.Requireable<io.flow.internal.v0.models.OrganizationInvitationAcceptForm>;
26256
27469
  export const organizationMembershipCopy: PropTypes.Requireable<io.flow.internal.v0.models.OrganizationMembershipCopy>;
@@ -26277,6 +27490,7 @@ export const organizationSettingsForm: PropTypes.Requireable<io.flow.internal.v0
26277
27490
  export const organizationStatusChange: PropTypes.Requireable<io.flow.internal.v0.models.OrganizationStatusChange>;
26278
27491
  export const organizationStatusChangeDeleted: PropTypes.Requireable<io.flow.internal.v0.models.OrganizationStatusChangeDeleted>;
26279
27492
  export const organizationStatusChangeUpserted: PropTypes.Requireable<io.flow.internal.v0.models.OrganizationStatusChangeUpserted>;
27493
+ export const organizationsAuditCheckReport: PropTypes.Requireable<io.flow.internal.v0.models.OrganizationsAuditCheckReport>;
26280
27494
  export const partner: PropTypes.Requireable<io.flow.internal.v0.models.Partner>;
26281
27495
  export const partnerAuthorization: PropTypes.Requireable<io.flow.internal.v0.models.PartnerAuthorization>;
26282
27496
  export const partnerAuthorizationForm: PropTypes.Requireable<io.flow.internal.v0.models.PartnerAuthorizationForm>;
@@ -26304,6 +27518,7 @@ export const paymentProcessorAccountUpserted: PropTypes.Requireable<io.flow.inte
26304
27518
  export const paymentProcessorMerchantDeleted: PropTypes.Requireable<io.flow.internal.v0.models.PaymentProcessorMerchantDeleted>;
26305
27519
  export const paymentProcessorMerchantUpserted: PropTypes.Requireable<io.flow.internal.v0.models.PaymentProcessorMerchantUpserted>;
26306
27520
  export const paymentSummaryV2: PropTypes.Requireable<io.flow.internal.v0.models.PaymentSummaryV2>;
27521
+ export const payoutStatusCounts: PropTypes.Requireable<io.flow.internal.v0.models.PayoutStatusCounts>;
26307
27522
  export const paypalAccount: PropTypes.Requireable<io.flow.internal.v0.models.PaypalAccount>;
26308
27523
  export const paypalAccountModificationForm: PropTypes.Requireable<io.flow.internal.v0.models.PaypalAccountModificationForm>;
26309
27524
  export const paypalAccountPutForm: PropTypes.Requireable<io.flow.internal.v0.models.PaypalAccountPutForm>;
@@ -26359,11 +27574,13 @@ export const productHarmonization: PropTypes.Requireable<io.flow.internal.v0.mod
26359
27574
  export const productHarmonizationForm: PropTypes.Requireable<io.flow.internal.v0.models.ProductHarmonizationForm>;
26360
27575
  export const productLabels: PropTypes.Requireable<io.flow.internal.v0.models.ProductLabels>;
26361
27576
  export const productListSettingsForm: PropTypes.Requireable<io.flow.internal.v0.models.ProductListSettingsForm>;
27577
+ export const productRestrictionResultValidationError: PropTypes.Requireable<io.flow.internal.v0.models.ProductRestrictionResultValidationError>;
26362
27578
  export const productReviewHistory: PropTypes.Requireable<io.flow.internal.v0.models.ProductReviewHistory>;
26363
27579
  export const proofOfPostingExternallyFulfilled: PropTypes.Requireable<io.flow.internal.v0.models.ProofOfPostingExternallyFulfilled>;
26364
27580
  export const proofOfPostingFulfilled: PropTypes.Requireable<io.flow.internal.v0.models.ProofOfPostingFulfilled>;
26365
27581
  export const proofOfPostingOrderCancellation: PropTypes.Requireable<io.flow.internal.v0.models.ProofOfPostingOrderCancellation>;
26366
27582
  export const proofOfPostingShippingNotification: PropTypes.Requireable<io.flow.internal.v0.models.ProofOfPostingShippingNotification>;
27583
+ export const queuedRecord: PropTypes.Requireable<io.flow.internal.v0.models.QueuedRecord>;
26367
27584
  export const quoteRequest: PropTypes.Requireable<io.flow.internal.v0.models.QuoteRequest>;
26368
27585
  export const rateAndRuleItem: PropTypes.Requireable<io.flow.internal.v0.models.RateAndRuleItem>;
26369
27586
  export const rateAndRuleItemForm: PropTypes.Requireable<io.flow.internal.v0.models.RateAndRuleItemForm>;
@@ -26424,8 +27641,11 @@ export const redirect: PropTypes.Requireable<io.flow.internal.v0.models.Redirect
26424
27641
  export const redirectActionCompleted: PropTypes.Requireable<io.flow.internal.v0.models.RedirectActionCompleted>;
26425
27642
  export const registeredExporterTariffEligibilityData: PropTypes.Requireable<io.flow.internal.v0.models.RegisteredExporterTariffEligibilityData>;
26426
27643
  export const registeredExporterTariffEligibilityForm: PropTypes.Requireable<io.flow.internal.v0.models.RegisteredExporterTariffEligibilityForm>;
27644
+ export const report: PropTypes.Requireable<io.flow.internal.v0.models.Report>;
27645
+ export const reportForm: PropTypes.Requireable<io.flow.internal.v0.models.ReportForm>;
26427
27646
  export const reportRuleDecision: PropTypes.Requireable<io.flow.internal.v0.models.ReportRuleDecision>;
26428
27647
  export const reportSummary: PropTypes.Requireable<io.flow.internal.v0.models.ReportSummary>;
27648
+ export const reportingDetails: PropTypes.Requireable<io.flow.internal.v0.models.ReportingDetails>;
26429
27649
  export const requeueRequestForm: PropTypes.Requireable<io.flow.internal.v0.models.RequeueRequestForm>;
26430
27650
  export const restrictionCategory: PropTypes.Requireable<io.flow.internal.v0.models.RestrictionCategory>;
26431
27651
  export const restrictionFilter: PropTypes.Requireable<io.flow.internal.v0.models.RestrictionFilter>;
@@ -26453,6 +27673,8 @@ export const resyncByDestinations: PropTypes.Requireable<io.flow.internal.v0.mod
26453
27673
  export const resyncByHs6Destinations: PropTypes.Requireable<io.flow.internal.v0.models.ResyncByHs6Destinations>;
26454
27674
  export const resyncByHs6Origin: PropTypes.Requireable<io.flow.internal.v0.models.ResyncByHs6Origin>;
26455
27675
  export const resyncFallbackRates: PropTypes.Requireable<io.flow.internal.v0.models.ResyncFallbackRates>;
27676
+ export const retracking: PropTypes.Requireable<io.flow.internal.v0.models.Retracking>;
27677
+ export const retrackingForm: PropTypes.Requireable<io.flow.internal.v0.models.RetrackingForm>;
26456
27678
  export const returnPolicyDeleted: PropTypes.Requireable<io.flow.internal.v0.models.ReturnPolicyDeleted>;
26457
27679
  export const returnPolicyItemResultDeleted: PropTypes.Requireable<io.flow.internal.v0.models.ReturnPolicyItemResultDeleted>;
26458
27680
  export const returnPolicyItemResultUpserted: PropTypes.Requireable<io.flow.internal.v0.models.ReturnPolicyItemResultUpserted>;
@@ -26461,6 +27683,8 @@ export const returnSummary: PropTypes.Requireable<io.flow.internal.v0.models.Ret
26461
27683
  export const routingAccount: PropTypes.Requireable<io.flow.internal.v0.models.RoutingAccount>;
26462
27684
  export const routingMerchant: PropTypes.Requireable<io.flow.internal.v0.models.RoutingMerchant>;
26463
27685
  export const routingProcessor: PropTypes.Requireable<io.flow.internal.v0.models.RoutingProcessor>;
27686
+ export const sandboxSetup: PropTypes.Requireable<io.flow.internal.v0.models.SandboxSetup>;
27687
+ export const sandboxSetupForm: PropTypes.Requireable<io.flow.internal.v0.models.SandboxSetupForm>;
26464
27688
  export const screen: PropTypes.Requireable<io.flow.internal.v0.models.Screen>;
26465
27689
  export const screenForm: PropTypes.Requireable<io.flow.internal.v0.models.ScreenForm>;
26466
27690
  export const searchAuthorization: PropTypes.Requireable<io.flow.internal.v0.models.SearchAuthorization>;
@@ -26482,6 +27706,7 @@ export const sfExpress: PropTypes.Requireable<io.flow.internal.v0.models.SfExpre
26482
27706
  export const shippedItemValue: PropTypes.Requireable<io.flow.internal.v0.models.ShippedItemValue>;
26483
27707
  export const shipperAccountInfoForm: PropTypes.Requireable<io.flow.internal.v0.models.ShipperAccountInfoForm>;
26484
27708
  export const shippingLane: PropTypes.Requireable<io.flow.internal.v0.models.ShippingLane>;
27709
+ export const shippingMethodReference: PropTypes.Requireable<io.flow.internal.v0.models.ShippingMethodReference>;
26485
27710
  export const shop: PropTypes.Requireable<io.flow.internal.v0.models.Shop>;
26486
27711
  export const shopForm: PropTypes.Requireable<io.flow.internal.v0.models.ShopForm>;
26487
27712
  export const shopVersion: PropTypes.Requireable<io.flow.internal.v0.models.ShopVersion>;
@@ -26500,10 +27725,16 @@ export const shopifyGiftCardRedemptionForm: PropTypes.Requireable<io.flow.intern
26500
27725
  export const shopifyGiftCardReversal: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyGiftCardReversal>;
26501
27726
  export const shopifyGiftCardReversalForm: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyGiftCardReversalForm>;
26502
27727
  export const shopifyGrantsCheck: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyGrantsCheck>;
27728
+ export const shopifyMarketsDiscrepancy: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMarketsDiscrepancy>;
27729
+ export const shopifyMarketsDiscrepancyData: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMarketsDiscrepancyData>;
26503
27730
  export const shopifyMarketsIncorporationCountry: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMarketsIncorporationCountry>;
27731
+ export const shopifyMarketsInternalOrderMetrics: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMarketsInternalOrderMetrics>;
27732
+ export const shopifyMarketsMetricsDeleted: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMarketsMetricsDeleted>;
27733
+ export const shopifyMarketsMetricsUpserted: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMarketsMetricsUpserted>;
26504
27734
  export const shopifyMarketsOrder: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMarketsOrder>;
26505
27735
  export const shopifyMarketsOrderDeleted: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMarketsOrderDeleted>;
26506
27736
  export const shopifyMarketsOrderUpserted: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMarketsOrderUpserted>;
27737
+ export const shopifyMarketsOrdersMetrics: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMarketsOrdersMetrics>;
26507
27738
  export const shopifyMarketsShop: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMarketsShop>;
26508
27739
  export const shopifyMarketsShopDeleted: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMarketsShopDeleted>;
26509
27740
  export const shopifyMarketsShopForm: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMarketsShopForm>;
@@ -26511,6 +27742,7 @@ export const shopifyMarketsShopStatisticsDeleted: PropTypes.Requireable<io.flow.
26511
27742
  export const shopifyMarketsShopStatisticsUpserted: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMarketsShopStatisticsUpserted>;
26512
27743
  export const shopifyMarketsShopSummary: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMarketsShopSummary>;
26513
27744
  export const shopifyMarketsShopUpserted: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMarketsShopUpserted>;
27745
+ export const shopifyMarketsShopifyOrderMetrics: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMarketsShopifyOrderMetrics>;
26514
27746
  export const shopifyMarketsSubsidiaryCompany: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMarketsSubsidiaryCompany>;
26515
27747
  export const shopifyMarketsSync: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMarketsSync>;
26516
27748
  export const shopifyMarketsWebhookRegistration: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMarketsWebhookRegistration>;
@@ -26559,9 +27791,12 @@ export const shopifyPromotionRule: PropTypes.Requireable<io.flow.internal.v0.mod
26559
27791
  export const shopifyShopDeleted: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyShopDeleted>;
26560
27792
  export const shopifyShopStatistics: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyShopStatistics>;
26561
27793
  export const shopifyShopUpserted: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyShopUpserted>;
27794
+ export const shopifyStorePassword: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyStorePassword>;
26562
27795
  export const shopifyWebhook: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyWebhook>;
26563
27796
  export const shopifyWebhookEvent: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyWebhookEvent>;
26564
27797
  export const shopifyWebhookForm: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyWebhookForm>;
27798
+ export const shopperFees: PropTypes.Requireable<io.flow.internal.v0.models.ShopperFees>;
27799
+ export const shopperSummary: PropTypes.Requireable<io.flow.internal.v0.models.ShopperSummary>;
26565
27800
  export const simpleAccountReference: PropTypes.Requireable<io.flow.internal.v0.models.SimpleAccountReference>;
26566
27801
  export const simplifiedItemLabel: PropTypes.Requireable<io.flow.internal.v0.models.SimplifiedItemLabel>;
26567
27802
  export const simplifiedTaxonomyCategory: PropTypes.Requireable<io.flow.internal.v0.models.SimplifiedTaxonomyCategory>;
@@ -26667,12 +27902,19 @@ export const trackingUpserted: PropTypes.Requireable<io.flow.internal.v0.models.
26667
27902
  export const transactionAdjustment: PropTypes.Requireable<io.flow.internal.v0.models.TransactionAdjustment>;
26668
27903
  export const transactionAdjustmentForm: PropTypes.Requireable<io.flow.internal.v0.models.TransactionAdjustmentForm>;
26669
27904
  export const transactionReference: PropTypes.Requireable<io.flow.internal.v0.models.TransactionReference>;
27905
+ export const transactionStatement: PropTypes.Requireable<io.flow.internal.v0.models.TransactionStatement>;
27906
+ export const transactionStatementDeleted: PropTypes.Requireable<io.flow.internal.v0.models.TransactionStatementDeleted>;
27907
+ export const transactionStatementUpserted: PropTypes.Requireable<io.flow.internal.v0.models.TransactionStatementUpserted>;
26670
27908
  export const transferTransaction: PropTypes.Requireable<io.flow.internal.v0.models.TransferTransaction>;
26671
27909
  export const transferTransactionDeleted: PropTypes.Requireable<io.flow.internal.v0.models.TransferTransactionDeleted>;
26672
27910
  export const transferTransactionDeletedV2: PropTypes.Requireable<io.flow.internal.v0.models.TransferTransactionDeletedV2>;
26673
27911
  export const transferTransactionUpserted: PropTypes.Requireable<io.flow.internal.v0.models.TransferTransactionUpserted>;
26674
27912
  export const transferTransactionUpsertedV2: PropTypes.Requireable<io.flow.internal.v0.models.TransferTransactionUpsertedV2>;
26675
27913
  export const tribe: PropTypes.Requireable<io.flow.internal.v0.models.Tribe>;
27914
+ export const trueUpLabelSummary: PropTypes.Requireable<io.flow.internal.v0.models.TrueUpLabelSummary>;
27915
+ export const unassignedMerchantGuid: PropTypes.Requireable<io.flow.internal.v0.models.UnassignedMerchantGuid>;
27916
+ export const unassignedMerchantGuidDeleted: PropTypes.Requireable<io.flow.internal.v0.models.UnassignedMerchantGuidDeleted>;
27917
+ export const unassignedMerchantGuidUpserted: PropTypes.Requireable<io.flow.internal.v0.models.UnassignedMerchantGuidUpserted>;
26676
27918
  export const unclassifiedProductStatistic: PropTypes.Requireable<io.flow.internal.v0.models.UnclassifiedProductStatistic>;
26677
27919
  export const unclassifiedProductsPurgeRequest: PropTypes.Requireable<io.flow.internal.v0.models.UnclassifiedProductsPurgeRequest>;
26678
27920
  export const unclassifiedProductsSummary: PropTypes.Requireable<io.flow.internal.v0.models.UnclassifiedProductsSummary>;
@@ -26703,10 +27945,14 @@ export const virtualCardProvider: PropTypes.Requireable<io.flow.internal.v0.mode
26703
27945
  export const virtualCardProviderDeleted: PropTypes.Requireable<io.flow.internal.v0.models.VirtualCardProviderDeleted>;
26704
27946
  export const virtualCardProviderUpserted: PropTypes.Requireable<io.flow.internal.v0.models.VirtualCardProviderUpserted>;
26705
27947
  export const virtualCardTransaction: PropTypes.Requireable<io.flow.internal.v0.models.VirtualCardTransaction>;
27948
+ export const washCarrierActualFile: PropTypes.Requireable<io.flow.internal.v0.models.WashCarrierActualFile>;
27949
+ export const washCarrierActualFileForm: PropTypes.Requireable<io.flow.internal.v0.models.WashCarrierActualFileForm>;
26706
27950
  export const washExportRequest: PropTypes.Requireable<io.flow.internal.v0.models.WashExportRequest>;
26707
27951
  export const wasteElectricalAndElectronicEquipmentComplianceData: PropTypes.Requireable<io.flow.internal.v0.models.WasteElectricalAndElectronicEquipmentComplianceData>;
26708
27952
  export const wasteElectricalAndElectronicEquipmentComplianceForm: PropTypes.Requireable<io.flow.internal.v0.models.WasteElectricalAndElectronicEquipmentComplianceForm>;
26709
27953
  export const webhook: PropTypes.Requireable<io.flow.internal.v0.models.Webhook>;
27954
+ export const weightsDead: PropTypes.Requireable<io.flow.internal.v0.models.WeightsDead>;
27955
+ export const weightsDimensional: PropTypes.Requireable<io.flow.internal.v0.models.WeightsDimensional>;
26710
27956
  export const wholeOrderActionForm: PropTypes.Requireable<io.flow.internal.v0.models.WholeOrderActionForm>;
26711
27957
  export const adjustmentAmount: PropTypes.Requireable<io.flow.internal.v0.unions.AdjustmentAmount>;
26712
27958
  export const adjustmentDetails: PropTypes.Requireable<io.flow.internal.v0.unions.AdjustmentDetails>;
@@ -26816,6 +28062,7 @@ export const featureValue: PropTypes.Requireable<io.flow.internal.v0.unions.Feat
26816
28062
  export const fraudProviderConfiguration: PropTypes.Requireable<io.flow.internal.v0.unions.FraudProviderConfiguration>;
26817
28063
  export const fraudProviderConfigurationForm: PropTypes.Requireable<io.flow.internal.v0.unions.FraudProviderConfigurationForm>;
26818
28064
  export const fuelSurchargeServiceFeePutForm: PropTypes.Requireable<io.flow.internal.v0.unions.FuelSurchargeServiceFeePutForm>;
28065
+ export const fulfillmentProof: PropTypes.Requireable<io.flow.internal.v0.unions.FulfillmentProof>;
26819
28066
  export const generateLoad: PropTypes.Requireable<io.flow.internal.v0.unions.GenerateLoad>;
26820
28067
  export const globalSearchResult: PropTypes.Requireable<io.flow.internal.v0.unions.GlobalSearchResult>;
26821
28068
  export const heapEvent: PropTypes.Requireable<io.flow.internal.v0.unions.HeapEvent>;
@@ -26825,6 +28072,7 @@ export const internalAuthorizationDetails: PropTypes.Requireable<io.flow.interna
26825
28072
  export const internalHarmonizationStatistic: PropTypes.Requireable<io.flow.internal.v0.unions.InternalHarmonizationStatistic>;
26826
28073
  export const internalRefundForm: PropTypes.Requireable<io.flow.internal.v0.unions.InternalRefundForm>;
26827
28074
  export const internalTransactionDetails: PropTypes.Requireable<io.flow.internal.v0.unions.InternalTransactionDetails>;
28075
+ export const labelSurchargeDetail: PropTypes.Requireable<io.flow.internal.v0.unions.LabelSurchargeDetail>;
26828
28076
  export const localizableContent: PropTypes.Requireable<io.flow.internal.v0.unions.LocalizableContent>;
26829
28077
  export const marketingGatewayChannelDetails: PropTypes.Requireable<io.flow.internal.v0.unions.MarketingGatewayChannelDetails>;
26830
28078
  export const marketingGatewayDistributionChannel: PropTypes.Requireable<io.flow.internal.v0.unions.MarketingGatewayDistributionChannel>;