@flowio/api-internal-prop-types 9.24.66 → 9.24.68

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 {
@@ -1711,6 +1547,7 @@ declare namespace io.flow.payment.v0.models {
1711
1547
  readonly 'base'?: io.flow.common.v0.models.Money;
1712
1548
  readonly 'processor'?: io.flow.payment.v0.unions.ExpandablePaymentProcessor;
1713
1549
  readonly 'confirmation_details'?: io.flow.payment.v0.unions.ConfirmationDetails;
1550
+ readonly 'authorized_at'?: string;
1714
1551
  }
1715
1552
 
1716
1553
  interface OnlinePaymentAuthorizationForm {
@@ -2155,11 +1992,13 @@ declare namespace io.flow.field.validation.v0.unions {
2155
1992
 
2156
1993
  declare namespace io.flow.stripe.v0.enums {
2157
1994
  type AccountType = 'platform' | 'custom' | 'standard' | 'express';
1995
+ type ApplePayType = 'apple_pay' | 'apple_pay_later';
2158
1996
  type CancellationReason = 'abandoned' | 'automatic' | 'duplicate' | 'failed_invoice' | 'fraudulent' | 'requested_by_customer' | 'void_invoice';
2159
1997
  type CaptureMethod = 'automatic' | 'manual';
2160
1998
  type CardBrand = 'American Express' | 'MasterCard' | 'Discover' | 'JCB' | 'Diners Club' | 'Unknown';
2161
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';
2162
2000
  type CardFundingType = 'credit' | 'debit' | 'prepaid' | 'unknown';
2001
+ type CardNetwork = 'amex' | 'cartes_bancaires' | 'diners' | 'discover' | 'eftpos_au' | 'interac' | 'jcb' | 'mastercard' | 'unionpay' | 'visa' | 'unknown';
2163
2002
  type CheckOutcome = 'pass' | 'fail' | 'unavailable' | 'unchecked';
2164
2003
  type CodeVerificationStatus = 'pending' | 'succeeded' | 'failed';
2165
2004
  type ConfirmationMethod = 'automatic' | 'manual';
@@ -2172,9 +2011,11 @@ declare namespace io.flow.stripe.v0.enums {
2172
2011
  type NextActionType = 'redirect_to_url' | 'use_stripe_sdk';
2173
2012
  type OrderItemType = 'sku' | 'tax' | 'shipping' | 'discount';
2174
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';
2175
2015
  type PaymentMethodType = 'card' | 'card_present';
2176
2016
  type PaymentOutcomeType = 'authorized' | 'manual_review' | 'issuer_declined' | 'blocked' | 'invalid';
2177
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';
2178
2019
  type RefundFailureReason = 'lost_or_stolen_card' | 'expired_or_canceled_card' | 'unknown';
2179
2020
  type RefundReason = 'duplicate' | 'fraudulent' | 'requested_by_customer';
2180
2021
  type RefundStatus = 'succeeded' | 'failed' | 'pending' | 'canceled';
@@ -2186,6 +2027,9 @@ declare namespace io.flow.stripe.v0.enums {
2186
2027
  type SourceType = 'ach_credit_transfer' | 'ach_debit' | 'alipay' | 'bancontact' | 'bitcoin' | 'card' | 'eps' | 'giropay' | 'ideal' | 'klarna' | 'multibanco' | 'p24' | 'sepa_debit' | 'sofort' | 'three_d_secure';
2187
2028
  type SourceUsageType = 'reusable' | 'single_use';
2188
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';
2189
2033
  type TokenType = 'account' | 'bank_account' | 'card' | 'pii';
2190
2034
  type UseStripeSdkType = 'three_d_secure_redirect' | 'stripe_3ds2_fingerprint';
2191
2035
  }
@@ -2235,6 +2079,16 @@ declare namespace io.flow.stripe.v0.models {
2235
2079
  readonly 'state'?: string;
2236
2080
  }
2237
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
+
2238
2092
  interface Card {
2239
2093
  readonly 'id': string;
2240
2094
  readonly 'object': string;
@@ -2260,6 +2114,12 @@ declare namespace io.flow.stripe.v0.models {
2260
2114
  readonly 'tokenization_method'?: string;
2261
2115
  }
2262
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
+
2263
2123
  interface CardRequest {
2264
2124
  readonly 'object': string;
2265
2125
  readonly 'exp_month': string;
@@ -2303,7 +2163,7 @@ declare namespace io.flow.stripe.v0.models {
2303
2163
  readonly 'payment_intent'?: string;
2304
2164
  readonly 'calculated_statement_descriptor'?: string;
2305
2165
  readonly 'statement_descriptor'?: string;
2306
- readonly 'payment_method_details'?: any/*object*/;
2166
+ readonly 'payment_method_details'?: io.flow.stripe.v0.unions.PaymentMethodDetails;
2307
2167
  }
2308
2168
 
2309
2169
  interface ChargeDestination {
@@ -2353,7 +2213,7 @@ declare namespace io.flow.stripe.v0.models {
2353
2213
  readonly 'payment_intent'?: string;
2354
2214
  readonly 'calculated_statement_descriptor'?: string;
2355
2215
  readonly 'statement_descriptor'?: string;
2356
- readonly 'payment_method_details'?: any/*object*/;
2216
+ readonly 'payment_method_details'?: io.flow.stripe.v0.unions.PaymentMethodDetails;
2357
2217
  }
2358
2218
 
2359
2219
  interface CodeVerification {
@@ -2410,12 +2270,29 @@ declare namespace io.flow.stripe.v0.models {
2410
2270
  readonly 'additional_owners'?: io.flow.stripe.v0.models.Owner[];
2411
2271
  }
2412
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
+
2413
2286
  interface Metadata {
2414
2287
  readonly 'order_number'?: string;
2415
2288
  readonly 'authorization_id'?: string;
2416
2289
  readonly 'organization_id'?: string;
2417
2290
  }
2418
2291
 
2292
+ interface NetworkTokenUsed {
2293
+ readonly 'used'?: boolean;
2294
+ }
2295
+
2419
2296
  interface NextAction {
2420
2297
  readonly 'type': io.flow.stripe.v0.enums.NextActionType;
2421
2298
  readonly 'use_stripe_sdk'?: any/*object*/;
@@ -2597,6 +2474,43 @@ declare namespace io.flow.stripe.v0.models {
2597
2474
  readonly 'phone'?: string;
2598
2475
  }
2599
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
+
2600
2514
  interface PaymentMethodForm {
2601
2515
  readonly 'type': io.flow.stripe.v0.enums.PaymentMethodType;
2602
2516
  readonly 'billing_details'?: io.flow.stripe.v0.models.PaymentMethodBillingDetails;
@@ -2619,6 +2533,12 @@ declare namespace io.flow.stripe.v0.models {
2619
2533
  readonly 'type'?: io.flow.stripe.v0.enums.PaymentOutcomeType;
2620
2534
  }
2621
2535
 
2536
+ interface Plan {
2537
+ readonly 'count'?: number;
2538
+ readonly 'interval'?: string;
2539
+ readonly 'type'?: string;
2540
+ }
2541
+
2622
2542
  interface Receiver {
2623
2543
  readonly 'address'?: string;
2624
2544
  readonly 'amount_charged'?: number;
@@ -2840,6 +2760,15 @@ declare namespace io.flow.stripe.v0.models {
2840
2760
  readonly 'customer'?: string;
2841
2761
  }
2842
2762
 
2763
+ interface ThreeDSecureCharge {
2764
+ readonly 'authenticated'?: boolean;
2765
+ readonly 'authentication_flow'?: io.flow.stripe.v0.enums.ThreeDsAuthenticationFlow;
2766
+ readonly 'result'?: io.flow.stripe.v0.enums.ThreeDsResult;
2767
+ readonly 'result_reason'?: io.flow.stripe.v0.enums.ThreeDsResultReason;
2768
+ readonly 'succeeded'?: boolean;
2769
+ readonly 'version'?: string;
2770
+ }
2771
+
2843
2772
  interface ThreeDSecureRedirect {
2844
2773
  readonly 'type': io.flow.stripe.v0.enums.UseStripeSdkType;
2845
2774
  readonly 'stripe_js': string;
@@ -2866,6 +2795,24 @@ declare namespace io.flow.stripe.v0.models {
2866
2795
  readonly 'amount'?: number;
2867
2796
  readonly 'destination'?: string;
2868
2797
  }
2798
+
2799
+ interface VisaCheckout {
2800
+ readonly 'type': 'visa_checkout';
2801
+ readonly 'visa_checkout': io.flow.stripe.v0.models.VisaCheckoutInformation;
2802
+ readonly 'dynamic_last4'?: string;
2803
+ }
2804
+
2805
+ interface VisaCheckoutInformation {
2806
+ readonly 'billing_address'?: io.flow.stripe.v0.models.Address;
2807
+ readonly 'email'?: string;
2808
+ readonly 'name'?: string;
2809
+ readonly 'shipping_address'?: io.flow.stripe.v0.models.Address;
2810
+ }
2811
+ }
2812
+
2813
+ declare namespace io.flow.stripe.v0.unions {
2814
+ type CardWallet = (io.flow.stripe.v0.models.Masterpass | io.flow.stripe.v0.models.ApplePay | io.flow.stripe.v0.models.VisaCheckout);
2815
+ type PaymentMethodDetails = (io.flow.stripe.v0.models.PaymentMethodDetailsCard | io.flow.stripe.v0.models.PaymentMethodDetailsKlarna);
2869
2816
  }
2870
2817
 
2871
2818
  declare namespace io.flow.customer.v0.enums {
@@ -2967,6 +2914,7 @@ declare namespace io.flow.label.v0.enums {
2967
2914
  type Direction = 'outbound' | 'return';
2968
2915
  type LabelRequestMethod = 'flow_web_sync' | 'channel_web_async' | 'direct_api_sync' | 'direct_api_async' | 'bridge_api_sync' | 'partner_api_sync' | 'notification_requiring_crossdock' | 'autogenerated';
2969
2916
  type LabelTriggerMethod = 'autogenerated' | 'on_demand';
2917
+ type PackageDimensionsSource = 'provided' | 'dimensions_estimated';
2970
2918
  type ShipmentRecipient = 'customer' | 'return' | 'crossdock';
2971
2919
  type TrackingNumberType = 'flow' | 'carrier';
2972
2920
  }
@@ -3010,6 +2958,7 @@ declare namespace io.flow.label.v0.models {
3010
2958
  readonly 'order_number': string;
3011
2959
  readonly 'service'?: string;
3012
2960
  readonly 'shipment_recipient'?: io.flow.label.v0.enums.ShipmentRecipient;
2961
+ readonly 'package_dimensions_source'?: io.flow.label.v0.enums.PackageDimensionsSource;
3013
2962
  }
3014
2963
 
3015
2964
  interface DetailedShippingNotificationForm {
@@ -3056,6 +3005,9 @@ declare namespace io.flow.label.v0.models {
3056
3005
  readonly 'carrier_tracking_number_url': string;
3057
3006
  readonly 'cost_estimate_source'?: io.flow.label.v0.enums.CostEstimateSource;
3058
3007
  readonly 'cost'?: io.flow.common.v0.models.Price;
3008
+ readonly 'delivered_duty'?: io.flow.common.v0.enums.DeliveredDuty;
3009
+ readonly 'taxes_owed'?: io.flow.common.v0.models.Money;
3010
+ readonly 'duties_owed'?: io.flow.common.v0.models.Money;
3059
3011
  readonly 'destination': io.flow.fulfillment.v0.models.ShippingAddress;
3060
3012
  readonly 'flow_tracking_number': string;
3061
3013
  readonly 'flow_tracking_number_url': string;
@@ -3067,6 +3019,7 @@ declare namespace io.flow.label.v0.models {
3067
3019
  readonly 'return'?: io.flow.label.v0.models.ShippingLabelDocument;
3068
3020
  readonly 'order'?: io.flow.label.v0.models.LabelOrderSummary;
3069
3021
  readonly 'package'?: io.flow.label.v0.models.ShippingLabelPackage;
3022
+ readonly 'package_dimension_source'?: io.flow.label.v0.enums.PackageDimensionsSource;
3070
3023
  readonly 'order_identifier'?: string;
3071
3024
  readonly 'fulfillment_key'?: string;
3072
3025
  readonly 'shipment_recipient': io.flow.label.v0.enums.ShipmentRecipient;
@@ -3086,9 +3039,16 @@ declare namespace io.flow.label.v0.models {
3086
3039
  readonly 'required': boolean;
3087
3040
  }
3088
3041
 
3042
+ interface ShippingLabelHopCostItemizedEstimate {
3043
+ readonly 'units': io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelUnits;
3044
+ readonly 'base': io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelBase;
3045
+ readonly 'surcharges': io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelSurcharge[];
3046
+ }
3047
+
3089
3048
  interface ShippingLabelHopSummary {
3090
3049
  readonly 'lane': io.flow.label.v0.models.ShippingLabelLaneSummary;
3091
3050
  readonly 'cost': io.flow.common.v0.models.Money;
3051
+ readonly 'itemized_estimate'?: io.flow.label.v0.models.ShippingLabelHopCostItemizedEstimate;
3092
3052
  }
3093
3053
 
3094
3054
  interface ShippingLabelLaneSummary {
@@ -3098,6 +3058,7 @@ declare namespace io.flow.label.v0.models {
3098
3058
 
3099
3059
  interface ShippingLabelPackage {
3100
3060
  readonly 'dimensions': io.flow.common.v0.models.Dimension;
3061
+ readonly 'volumetric_weight'?: number;
3101
3062
  readonly 'items': io.flow.common.v0.models.LineItemForm[];
3102
3063
  readonly 'reference_number'?: string;
3103
3064
  }
@@ -3105,6 +3066,11 @@ declare namespace io.flow.label.v0.models {
3105
3066
  interface ShippingLabelRatecardSummary {
3106
3067
  readonly 'id'?: string;
3107
3068
  readonly 'ratecard_owner': io.flow.fulfillment.v0.enums.RatecardOwner;
3069
+ readonly 'rate_level_key'?: string;
3070
+ readonly 'glbe_shipping_method_id'?: string;
3071
+ readonly 'glbe_proposition_name'?: string;
3072
+ readonly 'channel_revenue_share_percentage'?: number;
3073
+ readonly 'shopify_grc_gid'?: string;
3108
3074
  }
3109
3075
 
3110
3076
  interface ShippingLabelSummary {
@@ -3609,14 +3575,14 @@ declare namespace io.flow.external.paypal.v1.models {
3609
3575
  }
3610
3576
 
3611
3577
  interface ShippingAddress {
3612
- readonly 'recipient_name': string;
3578
+ readonly 'recipient_name'?: string;
3613
3579
  readonly 'line1': string;
3614
3580
  readonly 'line2'?: string;
3615
- readonly 'city': string;
3581
+ readonly 'city'?: string;
3616
3582
  readonly 'country_code': string;
3617
- readonly 'postal_code': string;
3583
+ readonly 'postal_code'?: string;
3618
3584
  readonly 'phone'?: string;
3619
- readonly 'state': string;
3585
+ readonly 'state'?: string;
3620
3586
  }
3621
3587
 
3622
3588
  interface SupportingInfo {
@@ -4041,7 +4007,7 @@ declare namespace io.flow.adyen.v0.models {
4041
4007
  readonly 'merchantOrderReference'?: string;
4042
4008
  readonly 'shopperInteraction': io.flow.adyen.v0.enums.ShopperInteraction;
4043
4009
  readonly 'bankAccount'?: io.flow.adyen.v0.models.BankAccount;
4044
- readonly 'additionalData'?: any/*object*/;
4010
+ readonly 'additionalData'?: io.flow.adyen.v0.models.AuthorizeRequestAdditionalData;
4045
4011
  readonly 'mpiData'?: io.flow.adyen.v0.models.ThreeDSecureData;
4046
4012
  readonly 'selectedBrand'?: string;
4047
4013
  readonly 'browserInfo'?: io.flow.adyen.v0.unions.BrowserInfo;
@@ -4049,6 +4015,7 @@ declare namespace io.flow.adyen.v0.models {
4049
4015
  readonly 'recurringProcessingModel'?: io.flow.adyen.v0.enums.RecurringProcessingModel;
4050
4016
  readonly 'mcc'?: string;
4051
4017
  readonly 'metadata'?: any/*object*/;
4018
+ readonly 'captureDelayHours'?: number;
4052
4019
  }
4053
4020
 
4054
4021
  interface AuthorizeRequest3D {
@@ -4065,6 +4032,11 @@ declare namespace io.flow.adyen.v0.models {
4065
4032
  readonly 'threeDS2Result'?: io.flow.adyen.v0.models.Threeds2Result;
4066
4033
  }
4067
4034
 
4035
+ interface AuthorizeRequestAdditionalData {
4036
+ readonly 'manualCapture'?: boolean;
4037
+ readonly 'paywithgoogle.token'?: string;
4038
+ }
4039
+
4068
4040
  interface AuthorizeResponse {
4069
4041
  readonly 'pspReference': string;
4070
4042
  readonly 'resultCode': io.flow.adyen.v0.enums.ResultCode;
@@ -4240,6 +4212,7 @@ declare namespace io.flow.adyen.v0.models {
4240
4212
  readonly 'redirectToIssuerMethod'?: io.flow.adyen.v0.enums.HttpRedirectMethod;
4241
4213
  readonly 'redirectFromIssuerMethod'?: io.flow.adyen.v0.enums.HttpRedirectMethod;
4242
4214
  readonly 'storePaymentMethod'?: boolean;
4215
+ readonly 'captureDelayHours'?: number;
4243
4216
  }
4244
4217
 
4245
4218
  interface PaymentResponse {
@@ -4372,6 +4345,7 @@ declare namespace io.flow.adyen.v0.models {
4372
4345
  interface ThreedsAdditionalData {
4373
4346
  readonly 'executeThreeD'?: boolean;
4374
4347
  readonly 'allow3DS2'?: boolean;
4348
+ readonly 'manualCapture'?: boolean;
4375
4349
  }
4376
4350
  }
4377
4351
 
@@ -4521,7 +4495,7 @@ declare namespace io.flow.shopify.external.v0.models {
4521
4495
  readonly 'starts_at': string;
4522
4496
  readonly 'ends_at'?: string;
4523
4497
  readonly 'prerequisite_subtotal_range'?: io.flow.shopify.external.v0.models.PriceRuleGreaterThanRange;
4524
- readonly 'prerequisite_shipping_range'?: io.flow.shopify.external.v0.models.PriceRuleLessThanRange;
4498
+ readonly 'prerequisite_shipping_price_range'?: io.flow.shopify.external.v0.models.PriceRuleLessThanRange;
4525
4499
  readonly 'usage_limit'?: number;
4526
4500
  readonly 'entitled_product_ids': number[];
4527
4501
  readonly 'entitled_variant_ids': number[];
@@ -4531,7 +4505,7 @@ declare namespace io.flow.shopify.external.v0.models {
4531
4505
  readonly 'once_per_customer': boolean;
4532
4506
  readonly 'target_selection': io.flow.shopify.external.v0.enums.PriceRuleTargetSelection;
4533
4507
  readonly 'customer_selection': io.flow.shopify.external.v0.enums.PriceRuleCustomerSelection;
4534
- readonly 'prerequisite_saved_search_ids': number[];
4508
+ readonly 'customer_segment_prerequisite_ids'?: number[];
4535
4509
  readonly 'prerequisite_customer_ids'?: number[];
4536
4510
  readonly 'prerequisite_quantity_range'?: io.flow.shopify.external.v0.models.PriceRuleGreaterThanRange;
4537
4511
  readonly 'prerequisite_product_ids'?: number[];
@@ -5630,6 +5604,7 @@ declare namespace io.flow.shopify.markets.v0.models {
5630
5604
  readonly 'send_receipt'?: boolean;
5631
5605
  readonly 'metafields'?: io.flow.shopify.markets.v0.models.ShopifyOrderMetafield[];
5632
5606
  readonly 'merchant_of_record_app_id'?: number;
5607
+ readonly 'total_shipping_price_set'?: io.flow.shopify.markets.v0.models.ShopifyOrderMoneySet;
5633
5608
  }
5634
5609
 
5635
5610
  interface ShopifyOrderAddress {
@@ -5783,7 +5758,7 @@ declare namespace io.flow.shopify.markets.v0.models {
5783
5758
  readonly 'grams'?: number;
5784
5759
  readonly 'id': number;
5785
5760
  readonly 'price'?: string;
5786
- readonly 'price_set'?: io.flow.shopify.markets.v0.models.ShopifyOrderMoneySet;
5761
+ readonly 'price_set': io.flow.shopify.markets.v0.models.ShopifyOrderMoneySet;
5787
5762
  readonly 'product_id'?: number;
5788
5763
  readonly 'quantity': number;
5789
5764
  readonly 'requires_shipping': boolean;
@@ -5792,7 +5767,7 @@ declare namespace io.flow.shopify.markets.v0.models {
5792
5767
  readonly 'variant_id'?: number;
5793
5768
  readonly 'variant_title'?: string;
5794
5769
  readonly 'vendor'?: string;
5795
- readonly 'name'?: string;
5770
+ readonly 'name': string;
5796
5771
  readonly 'gift_card': boolean;
5797
5772
  readonly 'properties': io.flow.shopify.markets.v0.models.ShopifyOrderProperty[];
5798
5773
  readonly 'taxable': boolean;
@@ -5892,6 +5867,7 @@ declare namespace io.flow.shopify.markets.v0.models {
5892
5867
  readonly 'carrier_identifier'?: string;
5893
5868
  readonly 'price_set': io.flow.shopify.markets.v0.models.ShopifyOrderMoneySet;
5894
5869
  readonly 'discounted_price_set': io.flow.shopify.markets.v0.models.ShopifyOrderMoneySet;
5870
+ readonly 'discount_allocations'?: io.flow.shopify.markets.v0.models.ShopifyOrderDiscountAllocation[];
5895
5871
  }
5896
5872
 
5897
5873
  interface ShopifyOrderTaxLine {
@@ -5921,8 +5897,8 @@ declare namespace io.flow.shopify.markets.v0.models {
5921
5897
  readonly 'user_id'?: number;
5922
5898
  }
5923
5899
 
5924
- interface ShopifyOrderUpdateShippingAddressForm {
5925
- readonly 'order': io.flow.shopify.markets.v0.models.ShopifyUpdateShippingAddress;
5900
+ interface ShopifyOrderUpdateForm {
5901
+ readonly 'order': io.flow.shopify.markets.v0.models.ShopifyUpdateOrder;
5926
5902
  }
5927
5903
 
5928
5904
  interface ShopifyOrderWrapper {
@@ -5981,9 +5957,10 @@ declare namespace io.flow.shopify.markets.v0.models {
5981
5957
  readonly 'gateway': string;
5982
5958
  }
5983
5959
 
5984
- interface ShopifyUpdateShippingAddress {
5960
+ interface ShopifyUpdateOrder {
5985
5961
  readonly 'id': number;
5986
- readonly 'shipping_address': io.flow.shopify.markets.v0.models.ShopifyOrderAddress;
5962
+ readonly 'shipping_address'?: io.flow.shopify.markets.v0.models.ShopifyOrderAddress;
5963
+ readonly 'note_attributes'?: io.flow.shopify.markets.v0.models.ShopifyOrderAttribute[];
5987
5964
  }
5988
5965
 
5989
5966
  interface ShopifyWebhookCustomersDataRequest {
@@ -6250,7 +6227,7 @@ declare namespace io.flow.payment.gateway.v0.enums {
6250
6227
  type PaymentFailureCode = 'action_expired' | 'action_cancelled' | 'action_failed' | 'authorization_declined' | 'not_supported' | 'fraudulent' | 'error' | 'payment_checks_declined';
6251
6228
  type PaymentMethodDataOptionType = 'ideal_issuer_option';
6252
6229
  type PaymentRequestReviewCheckStatus = 'passed' | 'failed';
6253
- type PaymentRequestReviewCheckType = 'restricted_party_screening' | 'fraud_suspicious_behavior' | 'fraud_suspicious_past_activity' | 'fraud_risky_velocity' | 'fraud_previous_chargebacks' | 'order_restricted_goods' | 'order_unsupported_destination' | 'order_missing_information' | 'order_domestic';
6230
+ type PaymentRequestReviewCheckType = 'restricted_party_screening' | 'fraud_suspicious_behavior' | 'fraud_suspicious_past_activity' | 'fraud_risky_velocity' | 'fraud_previous_chargebacks' | 'order_restricted_goods' | 'order_unsupported_destination' | 'order_missing_information' | 'order_domestic' | 'order_mismatched_currencies';
6254
6231
  type PaymentRequestReviewStatus = 'pending' | 'approved' | 'rejected';
6255
6232
  type PaymentStatus = 'requires_payment_method' | 'requires_action' | 'processing' | 'cancelled' | 'expired' | 'authorized' | 'reversed' | 'captured' | 'refunded' | 'in_dispute' | 'charged_back';
6256
6233
  type PaymentType = 'card' | 'klarna' | 'googlepay' | 'paypal' | 'applepay' | 'ideal' | 'sofort' | 'afterpay' | 'bancontact';
@@ -8785,12 +8762,22 @@ declare namespace io.flow.ratecard.v0.models {
8785
8762
  readonly 'ratecard': io.flow.ratecard.v0.models.RatecardSummary;
8786
8763
  }
8787
8764
 
8788
- interface OversizedShipmentRatecardFee {
8789
- readonly 'discriminator': 'oversized_shipment_ratecard_fee';
8790
- readonly 'weight_threshold': number;
8791
- readonly 'weight_unit': io.flow.common.v0.enums.UnitOfMeasurement;
8792
- readonly 'margin'?: number;
8793
- readonly 'amount'?: number;
8765
+ interface OversizePieceSurchargeRatecardFee {
8766
+ readonly 'discriminator': 'oversize_piece_surcharge_ratecard_fee';
8767
+ readonly 'dimensional_threshold'?: number;
8768
+ readonly 'dimensional_unit'?: io.flow.common.v0.enums.UnitOfMeasurement;
8769
+ readonly 'weight_threshold'?: number;
8770
+ readonly 'weight_unit'?: io.flow.common.v0.enums.UnitOfMeasurement;
8771
+ readonly 'amount': io.flow.common.v0.models.Money;
8772
+ }
8773
+
8774
+ interface OversizePieceSurchargeServiceFee {
8775
+ readonly 'discriminator': 'oversize_piece_surcharge_service_fee';
8776
+ readonly 'dimensional_threshold'?: number;
8777
+ readonly 'dimensional_unit'?: io.flow.common.v0.enums.UnitOfMeasurement;
8778
+ readonly 'weight_threshold'?: number;
8779
+ readonly 'weight_unit'?: io.flow.common.v0.enums.UnitOfMeasurement;
8780
+ readonly 'amount': io.flow.common.v0.models.Money;
8794
8781
  }
8795
8782
 
8796
8783
  interface PeakSurchargeByWeightServiceFee {
@@ -8819,12 +8806,16 @@ declare namespace io.flow.ratecard.v0.models {
8819
8806
  interface Ratecard {
8820
8807
  readonly 'id': string;
8821
8808
  readonly 'number': string;
8809
+ readonly 'rate_level_key'?: string;
8822
8810
  readonly 'direction': io.flow.label.v0.enums.Direction;
8823
8811
  readonly 'effective_at': string;
8824
8812
  readonly 'origination_zones': io.flow.common.v0.models.Zone[];
8825
8813
  readonly 'service': io.flow.ratecard.v0.models.RatecardServiceSummary;
8826
8814
  readonly 'published_at'?: string;
8827
8815
  readonly 'ratecard_owner': io.flow.fulfillment.v0.enums.RatecardOwner;
8816
+ readonly 'glbe_shipping_method_id'?: string;
8817
+ readonly 'glbe_proposition_name'?: string;
8818
+ readonly 'channel_revenue_share_percentage'?: number;
8828
8819
  }
8829
8820
 
8830
8821
  interface RatecardCarrierSummary {
@@ -8895,6 +8886,10 @@ declare namespace io.flow.ratecard.v0.models {
8895
8886
  readonly 'dimensional_weight'?: io.flow.common.v0.models.Measurement;
8896
8887
  readonly 'gravitational_weight'?: io.flow.common.v0.models.Measurement;
8897
8888
  readonly 'ratecard_id'?: string;
8889
+ readonly 'glbe_shipping_method_id'?: string;
8890
+ readonly 'glbe_proposition_name'?: string;
8891
+ readonly 'channel_revenue_share_percentage'?: number;
8892
+ readonly 'rate_level_key'?: string;
8898
8893
  readonly 'line_items'?: io.flow.common.v0.models.LineItemForm[];
8899
8894
  }
8900
8895
 
@@ -8904,7 +8899,12 @@ declare namespace io.flow.ratecard.v0.models {
8904
8899
  readonly 'origination_zones': io.flow.common.v0.models.Zone[];
8905
8900
  readonly 'service': string;
8906
8901
  readonly 'number'?: string;
8902
+ readonly 'rate_level_key'?: string;
8907
8903
  readonly 'ratecard_owner'?: io.flow.fulfillment.v0.enums.RatecardOwner;
8904
+ readonly 'glbe_shipping_method_id'?: string;
8905
+ readonly 'glbe_proposition_name'?: string;
8906
+ readonly 'channel_revenue_share_percentage'?: number;
8907
+ readonly 'data'?: Record<string, string>;
8908
8908
  }
8909
8909
 
8910
8910
  interface RatecardLane {
@@ -9034,8 +9034,8 @@ declare namespace io.flow.ratecard.v0.models {
9034
9034
 
9035
9035
  declare namespace io.flow.ratecard.v0.unions {
9036
9036
  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);
9037
- 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);
9038
- 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);
9037
+ 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);
9038
+ 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);
9039
9039
  }
9040
9040
 
9041
9041
  declare namespace io.flow.token.v0.models {
@@ -9312,8 +9312,345 @@ declare namespace io.flow.crypto.v0.models {
9312
9312
  }
9313
9313
  }
9314
9314
 
9315
- declare namespace io.flow.tracking.v0.enums {
9316
- type TrackingStatus = 'label_created' | 'pending' | 'info_received' | 'picked_up' | 'in_transit' | 'out_for_delivery' | 'attempt_fail' | 'delivered' | 'exception' | 'returned' | 'expired';
9315
+ declare namespace io.flow.error.v0.enums {
9316
+ type GenericErrorCode = 'generic_error' | 'client_error' | 'server_error';
9317
+ }
9318
+
9319
+ declare namespace io.flow.error.v0.models {
9320
+ interface GenericError {
9321
+ readonly 'code': io.flow.error.v0.enums.GenericErrorCode;
9322
+ readonly 'messages': string[];
9323
+ }
9324
+ }
9325
+
9326
+ declare namespace io.flow.billing.RESERVED_WORD_true.up.v0.enums {
9327
+ type TrueUpSurchargeType = 'fuel' | 'remote_area' | 'oversize' | 'duties_paid' | 'emergency' | 'peak';
9328
+ type WeightSelection = 'dead' | 'dimensional';
9329
+ }
9330
+
9331
+ declare namespace io.flow.billing.RESERVED_WORD_true.up.v0.models {
9332
+ interface LabelBase {
9333
+ readonly 'amount': number;
9334
+ readonly 'weight': number;
9335
+ }
9336
+
9337
+ interface LabelDestination {
9338
+ readonly 'country': string;
9339
+ }
9340
+
9341
+ interface LabelInvoiceRequest {
9342
+ readonly 'id': string;
9343
+ readonly 'label': io.flow.billing.RESERVED_WORD_true.up.v0.models.TrueUpLabelSummary;
9344
+ readonly 'units': io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelUnits;
9345
+ readonly 'base': io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelBase;
9346
+ readonly 'surcharges': io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelSurcharge[];
9347
+ readonly 'total': number;
9348
+ readonly 'destination': io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelDestination;
9349
+ readonly 'metadata': io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelMetadata;
9350
+ }
9351
+
9352
+ interface LabelMetadata {
9353
+ readonly 'ratecard': io.flow.billing.RESERVED_WORD_true.up.v0.models.MetadataRatecard;
9354
+ readonly 'weights': io.flow.billing.RESERVED_WORD_true.up.v0.models.MetadataWeights;
9355
+ }
9356
+
9357
+ interface LabelSurcharge {
9358
+ readonly 'amount': number;
9359
+ readonly 'type': io.flow.billing.RESERVED_WORD_true.up.v0.enums.TrueUpSurchargeType;
9360
+ readonly 'detail': io.flow.billing.RESERVED_WORD_true.up.v0.unions.LabelSurchargeDetail;
9361
+ }
9362
+
9363
+ interface LabelSurchargeDetailFlat {
9364
+ readonly 'discriminator': 'flat';
9365
+ readonly 'placeholder'?: string;
9366
+ }
9367
+
9368
+ interface LabelSurchargeDetailPerWeightUnit {
9369
+ readonly 'discriminator': 'per_weight_unit';
9370
+ readonly 'fee': number;
9371
+ }
9372
+
9373
+ interface LabelSurchargeDetailPercentage {
9374
+ readonly 'discriminator': 'percentage';
9375
+ readonly 'percentage': number;
9376
+ }
9377
+
9378
+ interface LabelUnits {
9379
+ readonly 'currency': string;
9380
+ readonly 'weight': io.flow.units.v0.enums.UnitOfWeight;
9381
+ readonly 'length': io.flow.units.v0.enums.UnitOfLength;
9382
+ }
9383
+
9384
+ interface MetadataProposition {
9385
+ readonly 'shipping_method': io.flow.billing.RESERVED_WORD_true.up.v0.models.ShippingMethodReference;
9386
+ readonly 'name': string;
9387
+ }
9388
+
9389
+ interface MetadataRatecard {
9390
+ readonly 'id': string;
9391
+ readonly 'proposition': io.flow.billing.RESERVED_WORD_true.up.v0.models.MetadataProposition;
9392
+ }
9393
+
9394
+ interface MetadataWeights {
9395
+ readonly 'selected': io.flow.billing.RESERVED_WORD_true.up.v0.enums.WeightSelection;
9396
+ readonly 'dead'?: io.flow.billing.RESERVED_WORD_true.up.v0.models.WeightsDead;
9397
+ readonly 'dimensional'?: io.flow.billing.RESERVED_WORD_true.up.v0.models.WeightsDimensional;
9398
+ }
9399
+
9400
+ interface ShippingMethodReference {
9401
+ readonly 'id': string;
9402
+ }
9403
+
9404
+ interface TrueUpLabelSummary {
9405
+ readonly 'id': string;
9406
+ readonly 'carrier_service_id': string;
9407
+ readonly 'carrier_tracking_number': string;
9408
+ readonly 'flow_tracking_number': string;
9409
+ readonly 'created_at': string;
9410
+ }
9411
+
9412
+ interface WeightsDead {
9413
+ readonly 'weight': number;
9414
+ }
9415
+
9416
+ interface WeightsDimensional {
9417
+ readonly 'weight': number;
9418
+ readonly 'length': number;
9419
+ readonly 'width': number;
9420
+ readonly 'height': number;
9421
+ }
9422
+ }
9423
+
9424
+ declare namespace io.flow.billing.RESERVED_WORD_true.up.v0.unions {
9425
+ 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);
9426
+ }
9427
+
9428
+ declare namespace io.flow.shopify.merchant.config.v0.models {
9429
+ interface Company {
9430
+ readonly 'discriminator': 'company';
9431
+ readonly 'legal_name': string;
9432
+ readonly 'incorporation_country': string;
9433
+ readonly 'incorporation_jurisdiction': string;
9434
+ readonly 'tax_registration_number': string;
9435
+ }
9436
+
9437
+ interface CountryOfOrigin {
9438
+ readonly 'country': io.flow.reference.v0.models.Country;
9439
+ }
9440
+
9441
+ interface CountryOfOriginForm {
9442
+ readonly 'country': string;
9443
+ }
9444
+
9445
+ interface Individual {
9446
+ readonly 'discriminator': 'individual';
9447
+ readonly 'legal_name': string;
9448
+ readonly 'tax_registration_number'?: string;
9449
+ readonly 'date_of_birth': string;
9450
+ }
9451
+
9452
+ interface KnowYourBusinessUsa {
9453
+ readonly 'discriminator': 'know_your_business_usa';
9454
+ readonly 'id': string;
9455
+ readonly 'organization_id': string;
9456
+ readonly 'shop'?: io.flow.merchant.onboarding.v0.models.Shop;
9457
+ readonly 'primary_entity': io.flow.shopify.merchant.config.v0.unions.Entity;
9458
+ readonly 'parent_company'?: io.flow.shopify.merchant.config.v0.models.Company;
9459
+ readonly 'ultimate_parent_company'?: io.flow.shopify.merchant.config.v0.models.Company;
9460
+ readonly 'ultimate_beneficiary_owner': io.flow.shopify.merchant.config.v0.models.Individual;
9461
+ readonly 'business_url': string;
9462
+ readonly 'business_address': io.flow.common.v0.models.Address;
9463
+ }
9464
+
9465
+ interface KnowYourBusinessUsaForm {
9466
+ readonly 'discriminator': 'know_your_business_usa_form';
9467
+ readonly 'primary_entity': io.flow.shopify.merchant.config.v0.unions.Entity;
9468
+ readonly 'parent_company'?: io.flow.shopify.merchant.config.v0.models.Company;
9469
+ readonly 'ultimate_parent_company'?: io.flow.shopify.merchant.config.v0.models.Company;
9470
+ readonly 'ultimate_beneficiary_owner': io.flow.shopify.merchant.config.v0.models.Individual;
9471
+ readonly 'business_url': string;
9472
+ readonly 'business_address': io.flow.common.v0.models.Address;
9473
+ }
9474
+
9475
+ interface PackageDimensions {
9476
+ readonly 'dimensions': io.flow.common.v0.models.Dimension[];
9477
+ }
9478
+
9479
+ interface PackageDimensionsForm {
9480
+ readonly 'dimensions': io.flow.common.v0.models.Dimension[];
9481
+ }
9482
+ }
9483
+
9484
+ declare namespace io.flow.shopify.merchant.config.v0.unions {
9485
+ type Entity = (io.flow.shopify.merchant.config.v0.models.Company | io.flow.shopify.merchant.config.v0.models.Individual);
9486
+ type KnowYourBusiness = (io.flow.shopify.merchant.config.v0.models.KnowYourBusinessUsa);
9487
+ type KnowYourBusinessForm = (io.flow.shopify.merchant.config.v0.models.KnowYourBusinessUsaForm);
9488
+ }
9489
+
9490
+ declare namespace io.flow.price.v0.enums {
9491
+ type LevyComponent = 'goods' | 'duty' | 'insurance' | 'freight' | 'vat';
9492
+ type LevyStrategy = 'minimum' | 'average' | 'maximum';
9493
+ type PriceAccuracy = 'calculated' | 'estimated_from_partial_destination';
9494
+ 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';
9495
+ type PriceDetailKey = 'item_price' | 'margins' | 'vat' | 'duty' | 'rounding' | 'adjustment';
9496
+ type PricingLevySetting = 'included' | 'displayed' | 'ignored';
9497
+ }
9498
+
9499
+ declare namespace io.flow.price.v0.models {
9500
+ interface CurrencyFormat {
9501
+ readonly 'symbol': io.flow.common.v0.enums.CurrencySymbolFormat;
9502
+ readonly 'label_formatters': io.flow.common.v0.enums.CurrencyLabelFormatter[];
9503
+ }
9504
+
9505
+ interface DeminimisPerItem {
9506
+ readonly 'discriminator': 'deminimis_per_item';
9507
+ readonly 'currency': string;
9508
+ readonly 'minimum'?: number;
9509
+ readonly 'maximum'?: number;
9510
+ }
9511
+
9512
+ interface DeminimisSimple {
9513
+ readonly 'discriminator': 'deminimis_simple';
9514
+ readonly 'value'?: number;
9515
+ readonly 'currency': string;
9516
+ readonly 'components': io.flow.price.v0.enums.LevyComponent[];
9517
+ readonly 'minimum'?: number;
9518
+ }
9519
+
9520
+ interface Duty {
9521
+ readonly 'rate': number;
9522
+ readonly 'components': io.flow.price.v0.enums.LevyComponent[];
9523
+ readonly 'deminimis'?: io.flow.price.v0.unions.Deminimis;
9524
+ readonly 'name'?: string;
9525
+ }
9526
+
9527
+ interface LocalPriceDetails {
9528
+ readonly 'base': io.flow.price.v0.models.PriceDetails;
9529
+ readonly 'local': io.flow.price.v0.models.PriceDetails;
9530
+ readonly 'discount'?: io.flow.price.v0.models.PriceDetail;
9531
+ readonly 'local_before_discount'?: io.flow.price.v0.models.PriceDetail;
9532
+ }
9533
+
9534
+ interface PriceBook {
9535
+ readonly 'id': string;
9536
+ readonly 'key': string;
9537
+ readonly 'currency': string;
9538
+ readonly 'name': string;
9539
+ readonly 'includes': io.flow.common.v0.models.IncludedLevies;
9540
+ readonly 'status': io.flow.common.v0.enums.PriceBookStatus;
9541
+ }
9542
+
9543
+ interface PriceBookForm {
9544
+ readonly 'currency': string;
9545
+ readonly 'name': string;
9546
+ readonly 'includes': io.flow.common.v0.enums.IncludedLevyKey;
9547
+ readonly 'status'?: io.flow.common.v0.enums.PriceBookStatus;
9548
+ }
9549
+
9550
+ interface PriceBookItem {
9551
+ readonly 'id': string;
9552
+ readonly 'key': string;
9553
+ readonly 'price_book': io.flow.price.v0.models.PriceBookReference;
9554
+ readonly 'price': io.flow.common.v0.models.Price;
9555
+ readonly 'item_number': string;
9556
+ readonly 'schedule': io.flow.price.v0.models.PriceBookItemSchedule;
9557
+ readonly 'item_attributes'?: Record<string, string>;
9558
+ }
9559
+
9560
+ interface PriceBookItemForm {
9561
+ readonly 'price_book_key': string;
9562
+ readonly 'item_number': string;
9563
+ readonly 'amount': number;
9564
+ readonly 'schedule'?: io.flow.price.v0.models.PriceBookItemSchedule;
9565
+ readonly 'item_attributes'?: Record<string, string>;
9566
+ }
9567
+
9568
+ interface PriceBookItemQueryForm {
9569
+ readonly 'price_book_key': string;
9570
+ readonly 'item_query': string;
9571
+ readonly 'amount': number;
9572
+ readonly 'schedule'?: io.flow.price.v0.models.PriceBookItemSchedule;
9573
+ readonly 'item_attributes'?: Record<string, string>;
9574
+ }
9575
+
9576
+ interface PriceBookItemSchedule {
9577
+ readonly 'starts_at': string;
9578
+ readonly 'ends_at'?: string;
9579
+ }
9580
+
9581
+ interface PriceBookReference {
9582
+ readonly 'id': string;
9583
+ readonly 'key': string;
9584
+ }
9585
+
9586
+ interface PriceCheck {
9587
+ readonly 'display': io.flow.price.v0.models.LocalPriceDetails;
9588
+ readonly 'final': io.flow.price.v0.models.LocalPriceDetails;
9589
+ }
9590
+
9591
+ interface PriceDetail {
9592
+ readonly 'key': io.flow.price.v0.enums.PriceDetailKey;
9593
+ readonly 'components': io.flow.price.v0.models.PriceDetailComponent[];
9594
+ readonly 'amount': number;
9595
+ readonly 'label': string;
9596
+ readonly 'name'?: string;
9597
+ readonly 'basis'?: number;
9598
+ }
9599
+
9600
+ interface PriceDetailComponent {
9601
+ readonly 'key': io.flow.price.v0.enums.PriceDetailComponentKey;
9602
+ readonly 'amount': number;
9603
+ readonly 'label': string;
9604
+ readonly 'name'?: string;
9605
+ }
9606
+
9607
+ interface PriceDetails {
9608
+ readonly 'currency': string;
9609
+ readonly 'item_price': io.flow.price.v0.models.PriceDetail;
9610
+ readonly 'margins': io.flow.price.v0.models.PriceDetail;
9611
+ readonly 'vat': io.flow.price.v0.models.PriceDetail;
9612
+ readonly 'duty': io.flow.price.v0.models.PriceDetail;
9613
+ readonly 'rounding': io.flow.price.v0.models.PriceDetail;
9614
+ readonly 'price': io.flow.common.v0.models.Price;
9615
+ readonly 'total': io.flow.common.v0.models.Price;
9616
+ readonly 'adjustment'?: io.flow.price.v0.models.PriceDetail;
9617
+ }
9618
+
9619
+ interface PriceEquation {
9620
+ readonly 'contracted_rate': number;
9621
+ readonly 'rate': number;
9622
+ readonly 'pricing': io.flow.price.v0.models.Pricing;
9623
+ readonly 'base_price': number;
9624
+ readonly 'discount': number;
9625
+ readonly 'fixed_margin': number;
9626
+ readonly 'percent_margin': number;
9627
+ readonly 'insurance': number;
9628
+ readonly 'freight': number;
9629
+ readonly 'duty'?: io.flow.price.v0.models.Duty;
9630
+ readonly 'tax'?: io.flow.price.v0.models.Tax;
9631
+ readonly 'percent_sales_margin': number;
9632
+ }
9633
+
9634
+ interface Pricing {
9635
+ readonly 'vat': io.flow.price.v0.enums.PricingLevySetting;
9636
+ readonly 'duty': io.flow.price.v0.enums.PricingLevySetting;
9637
+ readonly 'rounding'?: io.flow.common.v0.models.Rounding;
9638
+ }
9639
+
9640
+ interface Tax {
9641
+ readonly 'name': string;
9642
+ readonly 'rate': number;
9643
+ readonly 'components': io.flow.price.v0.enums.LevyComponent[];
9644
+ readonly 'deminimis'?: io.flow.price.v0.unions.Deminimis;
9645
+ }
9646
+ }
9647
+
9648
+ declare namespace io.flow.price.v0.unions {
9649
+ type Deminimis = (io.flow.price.v0.models.DeminimisSimple | io.flow.price.v0.models.DeminimisPerItem);
9650
+ }
9651
+
9652
+ declare namespace io.flow.tracking.v0.enums {
9653
+ type TrackingStatus = 'label_created' | 'pending' | 'info_received' | 'picked_up' | 'in_transit' | 'out_for_delivery' | 'attempt_fail' | 'delivered' | 'exception' | 'returned' | 'expired';
9317
9654
  }
9318
9655
 
9319
9656
  declare namespace io.flow.tracking.v0.models {
@@ -9330,6 +9667,7 @@ declare namespace io.flow.tracking.v0.models {
9330
9667
  readonly 'label'?: io.flow.label.v0.models.LabelReference;
9331
9668
  readonly 'in_transit': io.flow.tracking.v0.models.LabelTrackingSummaryUpdate;
9332
9669
  readonly 'delivered'?: io.flow.tracking.v0.models.LabelTrackingSummaryUpdate;
9670
+ readonly 'rejected'?: io.flow.tracking.v0.models.LabelTrackingSummaryUpdate;
9333
9671
  }
9334
9672
 
9335
9673
  interface LabelTrackingSummaryUpdate {
@@ -9504,7 +9842,6 @@ declare namespace io.flow.merchant.onboarding.v0.models {
9504
9842
  }
9505
9843
 
9506
9844
  interface OperationsContact {
9507
- readonly 'full_name'?: string;
9508
9845
  readonly 'company'?: string;
9509
9846
  readonly 'email'?: string;
9510
9847
  readonly 'phone'?: string;
@@ -9523,7 +9860,6 @@ declare namespace io.flow.merchant.onboarding.v0.models {
9523
9860
  readonly 'status': io.flow.merchant.onboarding.v0.enums.OnboardingApplicationStatus;
9524
9861
  readonly 'company'?: io.flow.merchant.onboarding.v0.models.MerchantInfo;
9525
9862
  readonly 'indirect_tax'?: io.flow.merchant.onboarding.v0.models.IndirectTax;
9526
- readonly 'parent_company'?: io.flow.merchant.onboarding.v0.models.MerchantInfo;
9527
9863
  readonly 'beneficiary'?: string;
9528
9864
  readonly 'ultimate_beneficiary_owner'?: io.flow.merchant.onboarding.v0.models.UltimateBeneficiaryOwner;
9529
9865
  readonly 'business_url'?: string;
@@ -9533,31 +9869,30 @@ declare namespace io.flow.merchant.onboarding.v0.models {
9533
9869
  readonly 'chargeback_percentage'?: number;
9534
9870
  readonly 'bank_account_number'?: string;
9535
9871
  readonly 'aba_routing_transit_number'?: string;
9536
- readonly 'trade_sectors'?: io.flow.merchant.onboarding.v0.enums.OnboardingTradeSector[];
9537
9872
  readonly 'other_trade_sector'?: string;
9538
9873
  readonly 'third_party_logistics_partners'?: io.flow.merchant.onboarding.v0.models.ThirdPartyLogisticsPartner[];
9874
+ readonly 'center_contact'?: io.flow.merchant.onboarding.v0.models.OperationsContact;
9539
9875
  readonly 'average_order_weight'?: number;
9540
9876
  readonly 'package_dimensions'?: io.flow.common.v0.models.Dimension[];
9541
9877
  readonly 'monthly_average'?: io.flow.merchant.onboarding.v0.models.MonthlyAverage;
9542
- readonly 'dangerous_goods'?: boolean;
9543
9878
  readonly 'default_country_of_origin'?: string;
9544
9879
  readonly 'ratecard'?: io.flow.ratecard.v0.models.RatecardReference;
9545
9880
  readonly 'rate_card': string;
9546
9881
  readonly 'created_at': string;
9547
9882
  readonly 'activated_at'?: string;
9548
9883
  readonly 'status_updated_at'?: string;
9549
- readonly 'logistics_format'?: io.flow.merchant.onboarding.v0.models.LogisticsFormat;
9550
9884
  readonly 'shop'?: io.flow.merchant.onboarding.v0.models.Shop;
9551
9885
  readonly 'last_year_xborder_gmv'?: io.flow.common.v0.models.Money;
9552
9886
  readonly 'last_month_xborder_gmv'?: io.flow.common.v0.models.Money;
9553
9887
  readonly 'average_order_value'?: io.flow.common.v0.models.Money;
9888
+ readonly 'glbe_merchant_guid'?: string;
9889
+ readonly 'mcc_codes'?: number[];
9554
9890
  }
9555
9891
 
9556
9892
  interface ShopifyMerchantApplicationForm {
9557
9893
  readonly 'discriminator': 'shopify_merchant_application_form';
9558
9894
  readonly 'company'?: io.flow.merchant.onboarding.v0.models.MerchantInfo;
9559
9895
  readonly 'indirect_tax'?: io.flow.merchant.onboarding.v0.models.IndirectTax;
9560
- readonly 'parent_company'?: io.flow.merchant.onboarding.v0.models.MerchantInfo;
9561
9896
  readonly 'beneficiary'?: string;
9562
9897
  readonly 'ultimate_beneficiary_owner'?: io.flow.merchant.onboarding.v0.models.UltimateBeneficiaryOwner;
9563
9898
  readonly 'business_url'?: string;
@@ -9567,23 +9902,22 @@ declare namespace io.flow.merchant.onboarding.v0.models {
9567
9902
  readonly 'chargeback_percentage'?: number;
9568
9903
  readonly 'bank_account_number'?: string;
9569
9904
  readonly 'aba_routing_transit_number'?: string;
9570
- readonly 'trade_sectors'?: io.flow.merchant.onboarding.v0.enums.OnboardingTradeSector[];
9571
9905
  readonly 'other_trade_sector'?: string;
9572
9906
  readonly 'third_party_logistics_partners'?: io.flow.merchant.onboarding.v0.models.ThirdPartyLogisticsPartner[];
9907
+ readonly 'center_contact'?: io.flow.merchant.onboarding.v0.models.OperationsContact;
9573
9908
  readonly 'average_order_weight'?: number;
9574
9909
  readonly 'package_dimensions'?: io.flow.common.v0.models.Dimension[];
9575
9910
  readonly 'monthly_average_volume_amount'?: number;
9576
9911
  readonly 'monthly_average_volume_currency'?: string;
9577
9912
  readonly 'monthly_average_number_transactions'?: number;
9578
- readonly 'dangerous_goods'?: boolean;
9579
9913
  readonly 'default_country_of_origin'?: string;
9580
9914
  readonly 'ratecard_id'?: string;
9581
9915
  readonly 'rate_card': string;
9582
- readonly 'logistics_format'?: io.flow.merchant.onboarding.v0.models.LogisticsFormat;
9583
9916
  readonly 'shop'?: io.flow.merchant.onboarding.v0.models.Shop;
9584
9917
  readonly 'last_year_xborder_gmv'?: io.flow.common.v0.models.Money;
9585
9918
  readonly 'last_month_xborder_gmv'?: io.flow.common.v0.models.Money;
9586
9919
  readonly 'average_order_value'?: io.flow.common.v0.models.Money;
9920
+ readonly 'mcc_codes'?: number[];
9587
9921
  }
9588
9922
 
9589
9923
  interface ShopifyMerchantApplicationPutForm {
@@ -10246,6 +10580,7 @@ declare namespace io.flow.billing.v0.enums {
10246
10580
  type PayoutAttachmentType = 'transactions';
10247
10581
  type PayoutStatusFailureCode = 'invalid_account_number' | 'account_closed' | 'could_not_process';
10248
10582
  type StatementAttachmentType = 'csv';
10583
+ 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';
10249
10584
  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';
10250
10585
  type WithholdingDeductionType = 'tax' | 'duty' | 'freight' | 'insurance';
10251
10586
  }
@@ -10338,6 +10673,7 @@ declare namespace io.flow.billing.v0.models {
10338
10673
  interface ChannelTransaction {
10339
10674
  readonly 'statement'?: io.flow.billing.v0.models.BillingChannelStatementReference;
10340
10675
  readonly 'id': string;
10676
+ readonly 'metadata'?: io.flow.billing.v0.unions.TransactionMetadata;
10341
10677
  readonly 'order'?: io.flow.billing.v0.models.BillingChannelOrderSummary;
10342
10678
  readonly 'payment_request'?: io.flow.billing.v0.models.BillingChannelPaymentRequestReference;
10343
10679
  readonly 'currency': string;
@@ -10353,6 +10689,12 @@ declare namespace io.flow.billing.v0.models {
10353
10689
  readonly 'updated_at': string;
10354
10690
  }
10355
10691
 
10692
+ interface ChannelTransactionPayout {
10693
+ readonly 'transaction': io.flow.billing.v0.models.TransactionReference;
10694
+ readonly 'waiting_for'?: io.flow.billing.v0.enums.TransactionPayoutPendingReason;
10695
+ readonly 'payout'?: io.flow.billing.v0.models.PayoutReference;
10696
+ }
10697
+
10356
10698
  interface DefaultBankAccountForm {
10357
10699
  readonly 'bank_account_id': string;
10358
10700
  }
@@ -10385,6 +10727,12 @@ declare namespace io.flow.billing.v0.models {
10385
10727
  readonly 'updated_at': string;
10386
10728
  }
10387
10729
 
10730
+ interface OrganizationTransactionPayout {
10731
+ readonly 'transaction': io.flow.billing.v0.models.TransactionReference;
10732
+ readonly 'waiting_for'?: io.flow.billing.v0.enums.TransactionPayoutPendingReason;
10733
+ readonly 'payout'?: io.flow.billing.v0.models.PayoutReference;
10734
+ }
10735
+
10388
10736
  interface ParentTransactionSummary {
10389
10737
  readonly 'id': string;
10390
10738
  readonly 'source': io.flow.billing.v0.enums.TransactionSource;
@@ -10395,6 +10743,10 @@ declare namespace io.flow.billing.v0.models {
10395
10743
  readonly 'url': string;
10396
10744
  }
10397
10745
 
10746
+ interface PayoutReference {
10747
+ readonly 'id': string;
10748
+ }
10749
+
10398
10750
  interface PayoutStatusFailed {
10399
10751
  readonly 'code': 'failed';
10400
10752
  readonly 'timestamp': string;
@@ -10413,6 +10765,7 @@ declare namespace io.flow.billing.v0.models {
10413
10765
 
10414
10766
  interface PayoutTransaction {
10415
10767
  readonly 'id': string;
10768
+ readonly 'metadata'?: io.flow.billing.v0.unions.TransactionMetadata;
10416
10769
  readonly 'order'?: io.flow.billing.v0.models.BillingChannelOrderSummary;
10417
10770
  readonly 'payment_request'?: io.flow.billing.v0.models.BillingChannelPaymentRequestReference;
10418
10771
  readonly 'currency': string;
@@ -10452,6 +10805,7 @@ declare namespace io.flow.billing.v0.models {
10452
10805
  interface Transaction {
10453
10806
  readonly 'statement'?: io.flow.billing.v0.models.BillingChannelStatementReference;
10454
10807
  readonly 'id': string;
10808
+ readonly 'metadata'?: io.flow.billing.v0.unions.TransactionMetadata;
10455
10809
  readonly 'order'?: io.flow.billing.v0.models.BillingChannelOrderSummary;
10456
10810
  readonly 'payment_request'?: io.flow.billing.v0.models.BillingChannelPaymentRequestReference;
10457
10811
  readonly 'currency': string;
@@ -10467,6 +10821,15 @@ declare namespace io.flow.billing.v0.models {
10467
10821
  readonly 'updated_at': string;
10468
10822
  }
10469
10823
 
10824
+ interface TransactionMetadataShippingLabel {
10825
+ readonly 'discriminator': 'shipping_label';
10826
+ readonly 'request_method'?: io.flow.label.v0.enums.LabelRequestMethod;
10827
+ }
10828
+
10829
+ interface TransactionReference {
10830
+ readonly 'id': string;
10831
+ }
10832
+
10470
10833
  interface WithholdingDeduction {
10471
10834
  readonly 'type': io.flow.billing.v0.enums.WithholdingDeductionType;
10472
10835
  readonly 'amount': number;
@@ -10478,6 +10841,7 @@ declare namespace io.flow.billing.v0.unions {
10478
10841
  type BankAccountForm = (io.flow.billing.v0.models.BankAccountFormInfo | io.flow.billing.v0.models.BankAccountFormSimple);
10479
10842
  type PayoutStatus = (io.flow.billing.v0.models.PayoutStatusScheduled | io.flow.billing.v0.models.PayoutStatusSent | io.flow.billing.v0.models.PayoutStatusFailed);
10480
10843
  type Settlement = (io.flow.billing.v0.models.SettlementNoPayout | io.flow.billing.v0.models.SettlementPayout);
10844
+ type TransactionMetadata = (io.flow.billing.v0.models.TransactionMetadataShippingLabel);
10481
10845
  }
10482
10846
 
10483
10847
  declare namespace io.flow.harmonization.v0.enums {
@@ -10899,6 +11263,7 @@ declare namespace io.flow.fulfillment.v0.enums {
10899
11263
  type LanePreselectPreference = 'lowest_cost' | 'default_tier';
10900
11264
  type LaneStrategy = 'oldest' | 'fastest' | 'lowest_cost' | 'highest_priority';
10901
11265
  type PhysicalDeliverySpecialSerivce = 'cold_storage' | 'hazardous' | 'perishable';
11266
+ type PreferredServiceSelectionStrategy = 'calculated_rate' | 'flat_rate' | 'custom_rate';
10902
11267
  type QuoteErrorCode = 'generic_error' | 'items_not_available' | 'shipping_unavailable';
10903
11268
  type RatecardOwner = 'flow' | 'organization';
10904
11269
  type ShipmentIntegrationType = 'direct' | 'information' | 'preadvice';
@@ -11208,6 +11573,12 @@ declare namespace io.flow.fulfillment.v0.models {
11208
11573
  readonly 'total'?: io.flow.catalog.v0.models.LocalizedTotal;
11209
11574
  readonly 'goods_supply'?: io.flow.common.v0.enums.GoodsSupply;
11210
11575
  readonly 'merchant_of_record_flow_entity'?: io.flow.merchant.of.record.v0.enums.FlowEntity;
11576
+ readonly 'preferred_service'?: io.flow.fulfillment.v0.models.PhysicalDeliveryPreferredService;
11577
+ }
11578
+
11579
+ interface PhysicalDeliveryPreferredService {
11580
+ readonly 'id': string;
11581
+ readonly 'selection_stratey': io.flow.fulfillment.v0.enums.PreferredServiceSelectionStrategy;
11211
11582
  }
11212
11583
 
11213
11584
  interface PriceWithBaseAndDetails {
@@ -11699,6 +12070,10 @@ declare namespace io.flow.organization.onboarding.state.v0.models {
11699
12070
  readonly 'placeholder'?: boolean;
11700
12071
  }
11701
12072
 
12073
+ interface DeactivationPutForm {
12074
+ readonly 'reason': string;
12075
+ }
12076
+
11702
12077
  interface InComplianceReview {
11703
12078
  readonly 'discriminator': 'in_compliance_review';
11704
12079
  readonly 'placeholder'?: boolean;
@@ -11709,6 +12084,11 @@ declare namespace io.flow.organization.onboarding.state.v0.models {
11709
12084
  readonly 'placeholder'?: boolean;
11710
12085
  }
11711
12086
 
12087
+ interface MerchantDeactivated {
12088
+ readonly 'discriminator': 'merchant_deactivated';
12089
+ readonly 'reason': string;
12090
+ }
12091
+
11712
12092
  interface MerchantRejected {
11713
12093
  readonly 'discriminator': 'merchant_rejected';
11714
12094
  readonly 'reason': io.flow.organization.onboarding.state.v0.enums.MerchantRejectedReason;
@@ -11730,6 +12110,7 @@ declare namespace io.flow.organization.onboarding.state.v0.models {
11730
12110
  readonly 'time_blocked'?: number;
11731
12111
  readonly 'blocked_since'?: string;
11732
12112
  readonly 'completed_at'?: string;
12113
+ readonly 'onboarding_started_at'?: string;
11733
12114
  }
11734
12115
 
11735
12116
  interface SetupBlocked {
@@ -11749,7 +12130,7 @@ declare namespace io.flow.organization.onboarding.state.v0.models {
11749
12130
  }
11750
12131
 
11751
12132
  declare namespace io.flow.organization.onboarding.state.v0.unions {
11752
- 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);
12133
+ 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);
11753
12134
  }
11754
12135
 
11755
12136
  declare namespace io.flow.fraud.v0.enums {
@@ -12118,9 +12499,9 @@ declare namespace io.flow.internal.v0.enums {
12118
12499
  type AutoRestrictRule = 'prr-3ce7d556f2464314ab0a3e8eee33e0ce' | 'prr-599c6246a1a24752aeb85e8f79030781' | 'prr-79e41878ea564f9c81cc432a0e84703f' | 'prr-f29c26dc09e04536bc77f9c32786ed70' | 'prr-0522d426a5b741c791ba05496c35297a';
12119
12500
  type BankPaymentStatusCode = 'scheduled' | 'sent' | 'failed';
12120
12501
  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';
12121
- 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';
12502
+ 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_processing_count' | 'channel_transactions_processing_total' | 'channel_transactions_adjustment_count' | 'channel_transactions_adjustment_total' | 'channel_transactions_reversal_count' | 'channel_transactions_reversal_total' | 'channel_billed_transactions_count' | 'channel_billed_transactions_total' | 'credit_payment_transactions_count' | 'credit_payment_transactions_total' | 'duty_transactions_count' | 'duty_transactions_total' | 'fully_subsidized_order_transactions_count' | 'fully_subsidized_order_transactions_total' | 'billable_label_transactions_count' | 'billable_label_transactions_count_for_unique_orders' | 'billable_label_transactions_total' | 'revenue_share_label_transactions_count' | 'revenue_share_label_transactions_count_for_unique_orders' | 'revenue_share_label_transactions_total' | 'manual_transactions_count' | 'manual_transactions_total' | 'order_transactions_count' | 'order_transactions_total' | 'refund_transactions_count' | 'refund_transactions_ignored_fraud_count' | 'refund_transactions_ignored_fully_refunded_count' | 'refund_transactions_ignored_other_count' | 'refund_transactions_total' | 'reversal_order_cancellations_transactions_count' | 'reversal_order_cancellations_transactions_total' | 'reversal_external_fulfillment_transactions_count' | 'reversal_external_fulfillment_transactions_total' | 'reversal_other_transactions_count' | 'reversal_other_transactions_total' | 'reversal_all_transactions_count' | 'reversal_all_transactions_total' | 'tax_transactions_count' | 'tax_transactions_total' | 'transfer_transactions_count' | 'transfer_transactions_total' | 'fulfillments_count' | 'fulfilled_via_replacement_order_count' | 'percentage_orders_with_fulfillment_proof_2_weeks' | 'percentage_orders_with_fulfillment_proof_4_weeks' | 'percentage_orders_with_fulfillment_proof_6_weeks' | 'percentage_orders_with_fulfillment_proof_all' | 'pending_payouts_max_age_in_millis' | 'shipping_notifications_count' | 'queued_capture_unprocessed_count' | 'queued_refund_unprocessed_count' | 'queued_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' | 'average_payout_amount' | 'capture_transaction_with_zero_fees_and_no_channel_transaction_count';
12122
12503
  type BillingStatementAttachmentKey = 'invoice' | 'statement' | 'consumer_invoice' | 'credit_memo' | 'channel_billed' | 'transactions' | 'virtual_card' | 'tax_remittance' | 'manual' | 'orders' | 'label' | 'order_service' | 'tax' | 'all';
12123
- type BillingStatementBatchFileKey = 'archive' | 'summary';
12504
+ type BillingStatementBatchFileKey = 'summary';
12124
12505
  type BillingTransactionStatus = 'pending' | 'pending_proof' | 'posted';
12125
12506
  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';
12126
12507
  type BlazeCheckoutEvent = 'begin_checkout' | 'select_promotion' | 'add_shipping_info' | 'add_payment_info' | 'purchase';
@@ -12128,10 +12509,12 @@ declare namespace io.flow.internal.v0.enums {
12128
12509
  type BrowserBundleErrorCode = 'generic_error' | 'country_invalid';
12129
12510
  type CalculatorEngine = 'flow_rate_and_rule' | 'dtce' | 'dtce_two_calls' | 'dtce_with_deminimis' | 'dtce_merged_with_tax';
12130
12511
  type CarrierLabelGenerationMethod = 'direct' | 'easypost';
12512
+ type CarrierValidationStatus = 'success' | 'error';
12131
12513
  type CatalogImportType = 'catalog_items' | 'item_form_overlays' | 'item_prices' | 'price_book_items_import' | 'price_book_items_query_import';
12132
12514
  type ChannelBilledTransactionType = 'adjustment' | 'reversal' | 'channel_initiated';
12133
- type ChannelOrderAcceptanceErrorAction = 'auto_reject';
12134
- 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';
12515
+ type ChannelOrderAcceptanceErrorAction = 'auto_reject' | 'auto_accept';
12516
+ type ChannelOrderAcceptanceNextActionFrom = 'cx_team' | 'core_team' | 'core_team_investigate' | 'mex_team' | 'payments_team' | 'tc_team' | 'logistics_team';
12517
+ 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';
12135
12518
  type ChannelOrderAcceptanceStatus = 'accepted' | 'rejected' | 'review';
12136
12519
  type ChannelTransactionType = 'adjustment' | 'reversal' | 'processing';
12137
12520
  type ChargebackPaymentStatus = 'captured' | 'refunded';
@@ -12227,6 +12610,7 @@ declare namespace io.flow.internal.v0.enums {
12227
12610
  type DisputeLiability = 'flow' | 'organization';
12228
12611
  type DisputeProcessor = 'adyen' | 'paypal';
12229
12612
  type DisputeStatus = 'pending' | 'won' | 'lost' | 'expired';
12613
+ type DisputeTransactionType = 'adjustment' | 'dispute';
12230
12614
  type DisputeType = 'chargeback';
12231
12615
  type DutyCompoundExpressionType = 'sum' | 'max' | 'min';
12232
12616
  type DutyExemptItemTypes = 'gift_card' | 'service' | 'digital_item' | 'personalization';
@@ -12237,7 +12621,7 @@ declare namespace io.flow.internal.v0.enums {
12237
12621
  type DutyTransactionType = 'adjustment' | 'reversal' | 'duty';
12238
12622
  type EmptyAttribute = 'irrelevant';
12239
12623
  type ErpFileType = 'vendor';
12240
- 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';
12624
+ 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';
12241
12625
  type ExperienceImportType = 'experience_with_settings';
12242
12626
  type ExperienceOrderAction = 'submit' | 'refund_gift_cards';
12243
12627
  type ExperienceOrderActionTrigger = 'zero_balance' | 'unsubmitted_order';
@@ -12271,6 +12655,7 @@ declare namespace io.flow.internal.v0.enums {
12271
12655
  type LabelCreationStatus = 'success' | 'error' | 'pending' | 'cancelled';
12272
12656
  type LabelGenerationAddressFailureStatus = 'in_review' | 'resolved' | 'unresolved';
12273
12657
  type LabelInputSource = 'estimate';
12658
+ type LabelRequestErrorHandlingResponsibility = 'merchant' | 'merchant_integration' | 'shopify_integration' | 'globale_cx' | 'globale_system';
12274
12659
  type LabelTransactionType = 'adjustment' | 'reversal' | 'billable_label' | 'fee' | 'revenue_share';
12275
12660
  type LiabilityType = 'full_value_tax' | 'low_value_goods_tax' | 'high_value_goods_tax' | 'duties';
12276
12661
  type MainTransactionStatus = 'scheduled' | 'pending_proof';
@@ -12294,7 +12679,7 @@ declare namespace io.flow.internal.v0.enums {
12294
12679
  type OnboardingAuditThemeKey = 'billing' | 'b2b_invoicing' | 'catalog' | 'currency' | 'checkout' | 'fraud' | 'logistics' | 'payments' | 'shopify_markets' | 'integration_partner' | 'dtce' | 'restrictions' | 'organization_status' | 'miscellaneous';
12295
12680
  type OnboardingAutomationProcessState = 'not_started' | 'in_progress' | 'success' | 'failed';
12296
12681
  type OnboardingAutomationTaskState = 'not_started' | 'in_progress' | 'success' | 'failed';
12297
- 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';
12682
+ 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';
12298
12683
  type OrderAction = 'consumer_submit' | 'fraud_review_accept' | 'fraud_review_decline' | 'payment_fully_authorize' | 'payment_fully_capture';
12299
12684
  type OrderAttributeIntent = 'discount_code';
12300
12685
  type OrderCancellationInitiatedBy = 'flow' | 'organization';
@@ -12325,13 +12710,15 @@ declare namespace io.flow.internal.v0.enums {
12325
12710
  type PromptCheckoutDisplayPosition = 'email' | 'submission';
12326
12711
  type PromptOptions = 'notice_only' | 'require_consent' | 'consent_by_default';
12327
12712
  type PromptTarget = 'browse' | 'checkout';
12328
- 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';
12713
+ 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';
12329
12714
  type QuoteRequestType = 'generate' | 'delete' | 'update_currency_rate' | 'update_country';
12715
+ type RateLevelKey = 'shopify_small_usa' | 'shopify_medium_usa' | 'shopify_enterprise_usa' | 'shopify_small_sdc_usa';
12330
12716
  type RateSource = 'calculated' | 'market';
12331
12717
  type ReboundConfigurationStatus = 'active' | 'inactive';
12332
12718
  type RedirectReason = 'three_d_secure';
12333
- type RejectionReason = 'suspicious_behavior' | 'suspicious_past_activity' | 'risky_velocity' | 'previous_chargebacks' | 'restricted_party_screening';
12719
+ type RejectionReason = 'merchant_policy' | 'previous_chargebacks' | 'restricted_party_screening' | 'risky_velocity' | 'suspicious_behavior' | 'suspicious_past_activity';
12334
12720
  type ReportInterval = 'hourly' | 'daily' | 'weekly' | 'monthly';
12721
+ type ReportStatus = 'created' | 'completed' | 'completed_no_records' | 'failed';
12335
12722
  type ReportingScheme = 'immediate_reporting_to_tax_authority' | 'periodic_reporting_to_tax_authority' | 'paid_at_border' | 'paid_on_delivery';
12336
12723
  type ResponsibleParty = 'flow' | 'organization';
12337
12724
  type RestrictionAction = 'prohibited' | 'restricted';
@@ -12347,6 +12734,7 @@ declare namespace io.flow.internal.v0.enums {
12347
12734
  type ShopifyGrantStatus = 'pass' | 'fail';
12348
12735
  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';
12349
12736
  type ShopifyMarketsHtsNumberAvailable = 'yes' | 'no' | 'i_dont_know';
12737
+ type ShopifyMarketsQueuedRecordType = 'order_update' | 'card_payment' | 'online_payment' | 'flow_shop' | 'catalog_publication_sync' | 'product_restriction_result';
12350
12738
  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';
12351
12739
  type ShopifyMonitoringMonitorReviewStatus = 'in_review' | 'reviewed';
12352
12740
  type ShopifyMonitoringTrackingField = 'tracking_number' | 'carrier_service' | 'tracking_url';
@@ -12367,7 +12755,7 @@ declare namespace io.flow.internal.v0.enums {
12367
12755
  type SuggestionAction = 'accept' | 'validate' | 'review';
12368
12756
  type SurchargeType = 'fuel' | 'remote_area' | 'oversize' | 'duties_paid';
12369
12757
  type TariffEligibilityType = 'rex';
12370
- type TaskProcessorKey = 'order_messenger' | 'harmonization' | 'fraud_review' | 'carrier_account' | 'payment' | 'ratecard' | 'logistics_center' | 'center_defaults';
12758
+ type TaskProcessorKey = 'order_messenger' | 'harmonization' | 'fraud_review' | 'carrier_account' | 'payment' | 'rate_levels' | 'center_defaults';
12371
12759
  type TaxCalculationErrorCode = 'generic_error' | 'outside_of_jurisdiction';
12372
12760
  type TaxParty = 'consumer' | 'organization' | 'flow' | 'carrier';
12373
12761
  type TaxTransactionType = 'adjustment' | 'reversal' | 'tax';
@@ -12375,7 +12763,9 @@ declare namespace io.flow.internal.v0.enums {
12375
12763
  type TrackingIntegrationType = 'api' | 'bulk' | 'aftership';
12376
12764
  type TransactionPostingMethod = 'time' | 'proof';
12377
12765
  type TransferMethod = 'ach';
12766
+ type TrueUpSurchargeType = 'fuel' | 'remote_area' | 'oversize' | 'duties_paid' | 'emergency' | 'peak';
12378
12767
  type UnclassifiedProductStatus = 'ignored' | 'escalated' | 'requeued' | 'unverified' | 'queued' | 'unconfident';
12768
+ type WashCarrierActualFileStatus = 'pending' | 'processing' | 'processed' | 'failed';
12379
12769
  }
12380
12770
 
12381
12771
  declare namespace io.flow.internal.v0.models {
@@ -12683,6 +13073,7 @@ declare namespace io.flow.internal.v0.models {
12683
13073
  readonly 'authentication': io.flow.internal.v0.models.AdyenAuthenticationForm;
12684
13074
  readonly 'country': string;
12685
13075
  readonly 'status'?: io.flow.internal.v0.enums.ProcessorEntityStatus;
13076
+ readonly 'organization_capability'?: io.flow.internal.v0.enums.OrganizationCapability;
12686
13077
  }
12687
13078
 
12688
13079
  interface AdyenAuthentication {
@@ -12844,6 +13235,7 @@ declare namespace io.flow.internal.v0.models {
12844
13235
  readonly 'external_id': string;
12845
13236
  readonly 'country': string;
12846
13237
  readonly 'status'?: io.flow.internal.v0.enums.ProcessorEntityStatus;
13238
+ readonly 'organization_capability'?: io.flow.internal.v0.enums.OrganizationCapability;
12847
13239
  }
12848
13240
 
12849
13241
  interface AdyenPaymentDetailsForm {
@@ -12902,6 +13294,7 @@ declare namespace io.flow.internal.v0.models {
12902
13294
  readonly 'country': string;
12903
13295
  readonly 'authentication': io.flow.internal.v0.models.AfterpayAuthenticationForm;
12904
13296
  readonly 'status'?: io.flow.internal.v0.enums.ProcessorEntityStatus;
13297
+ readonly 'organization_capability'?: io.flow.internal.v0.enums.OrganizationCapability;
12905
13298
  }
12906
13299
 
12907
13300
  interface AfterpayAuthentication {
@@ -13025,6 +13418,12 @@ declare namespace io.flow.internal.v0.models {
13025
13418
  readonly 'count': number;
13026
13419
  }
13027
13420
 
13421
+ interface AlgoliaIndexAssignment {
13422
+ readonly 'id': string;
13423
+ readonly 'name': string;
13424
+ readonly 'application_id': string;
13425
+ }
13426
+
13028
13427
  interface AllItemsExport {
13029
13428
  readonly 'discriminator': 'all_items_export';
13030
13429
  readonly 'event_id': string;
@@ -13130,6 +13529,12 @@ declare namespace io.flow.internal.v0.models {
13130
13529
  readonly 'charge_trigger': io.flow.internal.v0.enums.OrderChargeTrigger;
13131
13530
  }
13132
13531
 
13532
+ interface AutoReviewCriteria {
13533
+ readonly 'hs_code'?: string;
13534
+ readonly 'keywords'?: string[];
13535
+ readonly 'action'?: io.flow.internal.v0.enums.RestrictionStatus;
13536
+ }
13537
+
13133
13538
  interface Backfill {
13134
13539
  readonly 'days_to_backfill': string[];
13135
13540
  }
@@ -13306,7 +13711,6 @@ declare namespace io.flow.internal.v0.models {
13306
13711
 
13307
13712
  interface BillingStatementBatch {
13308
13713
  readonly 'id': string;
13309
- readonly 'reconciliation': io.flow.internal.v0.models.BillingStatementBatchReconciliation;
13310
13714
  }
13311
13715
 
13312
13716
  interface BillingStatementBatchDeleted {
@@ -13316,10 +13720,6 @@ declare namespace io.flow.internal.v0.models {
13316
13720
  readonly 'id': string;
13317
13721
  }
13318
13722
 
13319
- interface BillingStatementBatchReconciliation {
13320
- readonly 'month': string;
13321
- }
13322
-
13323
13723
  interface BillingStatementBatchReference {
13324
13724
  readonly 'id': string;
13325
13725
  }
@@ -13440,6 +13840,7 @@ declare namespace io.flow.internal.v0.models {
13440
13840
  readonly 'authentication': io.flow.internal.v0.models.BitpayAuthenticationForm;
13441
13841
  readonly 'country': string;
13442
13842
  readonly 'status'?: io.flow.internal.v0.enums.ProcessorEntityStatus;
13843
+ readonly 'organization_capability'?: io.flow.internal.v0.enums.OrganizationCapability;
13443
13844
  }
13444
13845
 
13445
13846
  interface BitpayAuthentication {
@@ -13709,6 +14110,32 @@ declare namespace io.flow.internal.v0.models {
13709
14110
  readonly 'name': string;
13710
14111
  }
13711
14112
 
14113
+ interface CalculatorDtcePostBody {
14114
+ readonly 'products': io.flow.internal.v0.models.CalculatorDtceProduct[];
14115
+ readonly 'countryCodeFrom': string;
14116
+ readonly 'countryCodeTo': string;
14117
+ readonly 'classification': string;
14118
+ readonly 'shippingCost': number;
14119
+ readonly 'insuranceCost': number;
14120
+ readonly 'totalShipmentWeight': number;
14121
+ readonly 'currencyCode': string;
14122
+ readonly 'outputCurrencyCode': string;
14123
+ readonly 'explanation': boolean;
14124
+ readonly 'responseFormat': number;
14125
+ readonly 'requestId': string;
14126
+ readonly 'provinceCode'?: string;
14127
+ }
14128
+
14129
+ interface CalculatorDtceProduct {
14130
+ readonly 'origin': string;
14131
+ readonly 'hsCode': string;
14132
+ readonly 'sku': string;
14133
+ readonly 'value': number;
14134
+ readonly 'weight': number;
14135
+ readonly 'quantity': number;
14136
+ readonly 'reference'?: string;
14137
+ }
14138
+
13712
14139
  interface CalculatorOrganizationSettings {
13713
14140
  readonly 'id': string;
13714
14141
  readonly 'default_country_of_origin'?: string;
@@ -13767,6 +14194,12 @@ declare namespace io.flow.internal.v0.models {
13767
14194
  readonly 'carrier_account': io.flow.internal.v0.models.CarrierAccount;
13768
14195
  }
13769
14196
 
14197
+ interface CarrierAccountValidation {
14198
+ readonly 'organization': string;
14199
+ readonly 'status': io.flow.internal.v0.enums.CarrierValidationStatus;
14200
+ readonly 'error_message'?: string;
14201
+ }
14202
+
13770
14203
  interface CarrierInvoice {
13771
14204
  readonly 'number': string;
13772
14205
  readonly 'timestamp': string;
@@ -13819,6 +14252,12 @@ declare namespace io.flow.internal.v0.models {
13819
14252
  readonly 'data': io.flow.internal.v0.models.CatalogItemRegionAvailabilitiesData;
13820
14253
  }
13821
14254
 
14255
+ interface CatalogPublicationSyncValidationError {
14256
+ readonly 'message': string;
14257
+ readonly 'reason': string;
14258
+ readonly 'next_action_from': io.flow.internal.v0.enums.ChannelOrderAcceptanceNextActionFrom;
14259
+ }
14260
+
13822
14261
  interface CatalogSettings {
13823
14262
  readonly 'id': string;
13824
14263
  readonly 'mixed_bag_weight': io.flow.internal.v0.enums.MixedBagWeight;
@@ -14040,6 +14479,7 @@ declare namespace io.flow.internal.v0.models {
14040
14479
  readonly 'payment_request_id'?: string;
14041
14480
  readonly 'status': io.flow.internal.v0.enums.ChannelOrderAcceptanceStatus;
14042
14481
  readonly 'reasons': io.flow.internal.v0.models.ChannelOrderAcceptanceReason[];
14482
+ readonly 'next_action_from'?: io.flow.internal.v0.enums.ChannelOrderAcceptanceNextActionFrom;
14043
14483
  readonly 'order_created_at'?: string;
14044
14484
  }
14045
14485
 
@@ -16393,6 +16833,7 @@ declare namespace io.flow.internal.v0.models {
16393
16833
  readonly 'customs_description'?: string;
16394
16834
  readonly 'hs6_code'?: string;
16395
16835
  readonly 'hs6_description'?: string;
16836
+ readonly 'status'?: io.flow.internal.v0.enums.ItemHarmonizationStatus;
16396
16837
  }
16397
16838
 
16398
16839
  interface ClassificationProductId {
@@ -16457,6 +16898,10 @@ declare namespace io.flow.internal.v0.models {
16457
16898
  readonly 'urls': string[];
16458
16899
  }
16459
16900
 
16901
+ interface CompanyReference {
16902
+ readonly 'id': string;
16903
+ }
16904
+
16460
16905
  interface Compliance {
16461
16906
  readonly 'id': string;
16462
16907
  readonly 'destination': string;
@@ -16585,6 +17030,7 @@ declare namespace io.flow.internal.v0.models {
16585
17030
  readonly 'authentication': io.flow.internal.v0.models.CryptoAuthenticationForm;
16586
17031
  readonly 'country': string;
16587
17032
  readonly 'status'?: io.flow.internal.v0.enums.ProcessorEntityStatus;
17033
+ readonly 'organization_capability'?: io.flow.internal.v0.enums.OrganizationCapability;
16588
17034
  }
16589
17035
 
16590
17036
  interface CryptoAuthentication {
@@ -16605,7 +17051,7 @@ declare namespace io.flow.internal.v0.models {
16605
17051
  readonly 'base_amount': number;
16606
17052
  readonly 'surcharges': io.flow.internal.v0.models.CsvSurcharges;
16607
17053
  readonly 'total': number;
16608
- readonly 'weight_unit': io.flow.common.v0.enums.UnitOfMeasurement;
17054
+ readonly 'weight_unit': io.flow.units.v0.enums.UnitOfWeight;
16609
17055
  readonly 'weight': number;
16610
17056
  readonly 'ratecard': io.flow.internal.v0.models.CsvActualRatecard;
16611
17057
  }
@@ -16615,7 +17061,7 @@ declare namespace io.flow.internal.v0.models {
16615
17061
  }
16616
17062
 
16617
17063
  interface CsvDimensions {
16618
- readonly 'unit': io.flow.common.v0.enums.UnitOfMeasurement;
17064
+ readonly 'unit': io.flow.units.v0.enums.UnitOfLength;
16619
17065
  readonly 'length': number;
16620
17066
  readonly 'width': number;
16621
17067
  readonly 'depth': number;
@@ -16654,7 +17100,7 @@ declare namespace io.flow.internal.v0.models {
16654
17100
  readonly 'base_amount': number;
16655
17101
  readonly 'surcharges': io.flow.internal.v0.models.CsvSurcharges;
16656
17102
  readonly 'total': number;
16657
- readonly 'weight_unit': io.flow.common.v0.enums.UnitOfMeasurement;
17103
+ readonly 'weight_unit': io.flow.units.v0.enums.UnitOfWeight;
16658
17104
  readonly 'weight': number;
16659
17105
  readonly 'variance': number;
16660
17106
  }
@@ -16719,7 +17165,7 @@ declare namespace io.flow.internal.v0.models {
16719
17165
  }
16720
17166
 
16721
17167
  interface CsvWeight {
16722
- readonly 'unit': io.flow.common.v0.enums.UnitOfMeasurement;
17168
+ readonly 'unit': io.flow.units.v0.enums.UnitOfWeight;
16723
17169
  readonly 'provided': number;
16724
17170
  readonly 'dimensional': number;
16725
17171
  readonly 'lookup': number;
@@ -16928,6 +17374,7 @@ declare namespace io.flow.internal.v0.models {
16928
17374
  readonly 'order': io.flow.internal.v0.models.DebugOrder;
16929
17375
  readonly 'debug': io.flow.internal.v0.models.DebugDetails;
16930
17376
  readonly 'transactions': io.flow.billing.v0.models.Transaction[];
17377
+ readonly 'reporting': io.flow.internal.v0.models.ReportingDetails;
16931
17378
  }
16932
17379
 
16933
17380
  interface DebugOrderTransactionForm {
@@ -16939,6 +17386,8 @@ declare namespace io.flow.internal.v0.models {
16939
17386
  readonly 'refund_id'?: string;
16940
17387
  readonly 'order_identifier'?: io.flow.internal.v0.models.DebugOrderTransactionFormOrderIdentifier;
16941
17388
  readonly 'authorization_id'?: string;
17389
+ readonly 'posting_proof_id'?: string;
17390
+ readonly 'label_tracking_summary_id'?: string;
16942
17391
  }
16943
17392
 
16944
17393
  interface DebugOrderTransactionFormOrderIdentifier {
@@ -17445,6 +17894,8 @@ declare namespace io.flow.internal.v0.models {
17445
17894
  }
17446
17895
 
17447
17896
  interface ErpFlowVendor {
17897
+ readonly 'company': io.flow.internal.v0.models.CompanyReference;
17898
+ readonly 'entity': io.flow.internal.v0.models.EntityReference;
17448
17899
  readonly 'acc_des': string;
17449
17900
  readonly 'country_name': string;
17450
17901
  readonly 'acng_code': string;
@@ -17456,7 +17907,6 @@ declare namespace io.flow.internal.v0.models {
17456
17907
  readonly 'state_a': string;
17457
17908
  readonly 'bank_code': string;
17458
17909
  readonly 'id': string;
17459
- readonly 'entity': io.flow.internal.v0.models.EntityReference;
17460
17910
  readonly 'tax_code'?: string;
17461
17911
  readonly 'vat_flag'?: string;
17462
17912
  readonly 'w_tax_percent'?: string;
@@ -17497,16 +17947,101 @@ declare namespace io.flow.internal.v0.models {
17497
17947
 
17498
17948
  interface ErpPriorityFileForm {
17499
17949
  readonly 'type': io.flow.internal.v0.enums.ErpFileType;
17950
+ readonly 'name': string;
17500
17951
  readonly 'url': string;
17501
17952
  }
17502
17953
 
17954
+ interface ErpPriorityVendor {
17955
+ readonly 'id': string;
17956
+ readonly 'acc_des'?: string;
17957
+ readonly 'tax_code'?: string;
17958
+ readonly 'vat_flag'?: string;
17959
+ readonly 'country_name'?: string;
17960
+ readonly 'w_tax_percent'?: string;
17961
+ readonly 'iban'?: string;
17962
+ readonly 'confirmed_date'?: string;
17963
+ readonly 'w_tax_date'?: string;
17964
+ readonly 'w_tax_num_expl'?: string;
17965
+ readonly 'acng_code'?: string;
17966
+ readonly 'phone'?: string;
17967
+ readonly 'address'?: string;
17968
+ readonly 'address_a'?: string;
17969
+ readonly 'address_2'?: string;
17970
+ readonly 'address_3'?: string;
17971
+ readonly 'state_name'?: string;
17972
+ readonly 'code'?: string;
17973
+ readonly 'zip'?: string;
17974
+ readonly 'pay_account'?: string;
17975
+ readonly 'comp_num'?: string;
17976
+ readonly 'w_tax_num'?: string;
17977
+ readonly 'vat_num'?: string;
17978
+ readonly 'orig_acc_name'?: string;
17979
+ readonly 'branch'?: string;
17980
+ readonly 'form_1099_code'?: string;
17981
+ readonly 'trial_bal_code'?: string;
17982
+ readonly 'sec_name'?: string;
17983
+ readonly 'state'?: string;
17984
+ readonly 'state_a'?: string;
17985
+ readonly 'fax'?: string;
17986
+ readonly 'details'?: string;
17987
+ readonly 'bank_code'?: string;
17988
+ readonly 'state_code'?: string;
17989
+ readonly 'tax_office_code'?: string;
17990
+ readonly 'pay_code'?: string;
17991
+ readonly 'eacc_des'?: string;
17992
+ readonly 'acng_des'?: string;
17993
+ readonly 'branch_des'?: string;
17994
+ }
17995
+
17996
+ interface ErpPriorityVendorForm {
17997
+ readonly 'acc_des'?: string;
17998
+ readonly 'tax_code'?: string;
17999
+ readonly 'vat_flag'?: string;
18000
+ readonly 'country_name'?: string;
18001
+ readonly 'w_tax_percent'?: string;
18002
+ readonly 'iban'?: string;
18003
+ readonly 'confirmed_date'?: string;
18004
+ readonly 'w_tax_date'?: string;
18005
+ readonly 'w_tax_num_expl'?: string;
18006
+ readonly 'acng_code'?: string;
18007
+ readonly 'phone'?: string;
18008
+ readonly 'address'?: string;
18009
+ readonly 'address_a'?: string;
18010
+ readonly 'address_2'?: string;
18011
+ readonly 'address_3'?: string;
18012
+ readonly 'state_name'?: string;
18013
+ readonly 'code'?: string;
18014
+ readonly 'zip'?: string;
18015
+ readonly 'pay_account'?: string;
18016
+ readonly 'comp_num'?: string;
18017
+ readonly 'w_tax_num'?: string;
18018
+ readonly 'vat_num'?: string;
18019
+ readonly 'orig_acc_name'?: string;
18020
+ readonly 'branch'?: string;
18021
+ readonly 'form_1099_code'?: string;
18022
+ readonly 'trial_bal_code'?: string;
18023
+ readonly 'sec_name'?: string;
18024
+ readonly 'state'?: string;
18025
+ readonly 'state_a'?: string;
18026
+ readonly 'fax'?: string;
18027
+ readonly 'details'?: string;
18028
+ readonly 'bank_code'?: string;
18029
+ readonly 'state_code'?: string;
18030
+ readonly 'tax_office_code'?: string;
18031
+ readonly 'pay_code'?: string;
18032
+ readonly 'eacc_des'?: string;
18033
+ readonly 'acng_des'?: string;
18034
+ readonly 'branch_des'?: string;
18035
+ }
18036
+
17503
18037
  interface ErpVendor {
17504
18038
  readonly 'placeholder'?: string;
17505
18039
  }
17506
18040
 
17507
18041
  interface ErpVendorStatus {
17508
18042
  readonly 'entities': io.flow.internal.v0.models.ErpVendorStatusEntity[];
17509
- readonly 'latest_priority_file'?: io.flow.internal.v0.models.ErpVendorStatusFile;
18043
+ readonly 'latest_flow_file'?: io.flow.internal.v0.models.ErpVendorStatusFlowFile;
18044
+ readonly 'latest_priority_file'?: io.flow.internal.v0.models.ErpVendorStatusPriorityFile;
17510
18045
  }
17511
18046
 
17512
18047
  interface ErpVendorStatusEntity {
@@ -17514,8 +18049,14 @@ declare namespace io.flow.internal.v0.models {
17514
18049
  readonly 'number_differences': number;
17515
18050
  }
17516
18051
 
17517
- interface ErpVendorStatusFile {
18052
+ interface ErpVendorStatusFlowFile {
18053
+ readonly 'url': string;
18054
+ readonly 'created_at': string;
18055
+ }
18056
+
18057
+ interface ErpVendorStatusPriorityFile {
17518
18058
  readonly 'name': string;
18059
+ readonly 'url': string;
17519
18060
  readonly 'created_at': string;
17520
18061
  readonly 'errors'?: string[];
17521
18062
  readonly 'processed_at'?: string;
@@ -17832,12 +18373,14 @@ declare namespace io.flow.internal.v0.models {
17832
18373
  readonly 'carrier_id'?: string;
17833
18374
  readonly 'service_id'?: string;
17834
18375
  readonly 'carrier_tracking_number'?: string;
18376
+ readonly 'fulfilled_via_replacement_order'?: boolean;
17835
18377
  }
17836
18378
 
17837
18379
  interface ExternalFulfillmentProofTrackingForm {
17838
18380
  readonly 'carrier_id'?: string;
17839
18381
  readonly 'service_id'?: string;
17840
18382
  readonly 'carrier_tracking_number'?: string;
18383
+ readonly 'fulfilled_via_replacement_order'?: boolean;
17841
18384
  }
17842
18385
 
17843
18386
  interface FacebookPixel {
@@ -18109,6 +18652,7 @@ declare namespace io.flow.internal.v0.models {
18109
18652
  readonly 'authentication': io.flow.internal.v0.models.FiservAuthenticationForm;
18110
18653
  readonly 'country': string;
18111
18654
  readonly 'status'?: io.flow.internal.v0.enums.ProcessorEntityStatus;
18655
+ readonly 'organization_capability'?: io.flow.internal.v0.enums.OrganizationCapability;
18112
18656
  }
18113
18657
 
18114
18658
  interface FiservAuthentication {
@@ -18159,6 +18703,7 @@ declare namespace io.flow.internal.v0.models {
18159
18703
  readonly 'funding_currency': string;
18160
18704
  readonly 'country': string;
18161
18705
  readonly 'status'?: io.flow.internal.v0.enums.ProcessorEntityStatus;
18706
+ readonly 'organization_capability'?: io.flow.internal.v0.enums.OrganizationCapability;
18162
18707
  }
18163
18708
 
18164
18709
  interface FlowAccount {
@@ -18207,6 +18752,12 @@ declare namespace io.flow.internal.v0.models {
18207
18752
  readonly 'default_contents': string;
18208
18753
  }
18209
18754
 
18755
+ interface FlowShopValidationError {
18756
+ readonly 'message': string;
18757
+ readonly 'reason': string;
18758
+ readonly 'next_action_from': io.flow.internal.v0.enums.ChannelOrderAcceptanceNextActionFrom;
18759
+ }
18760
+
18210
18761
  interface FraudPendingReview {
18211
18762
  readonly 'id': string;
18212
18763
  readonly 'fraud_review_id': string;
@@ -18293,6 +18844,7 @@ declare namespace io.flow.internal.v0.models {
18293
18844
  readonly 'provider'?: io.flow.internal.v0.enums.FraudProvider;
18294
18845
  readonly 'payment_authorization_id'?: string;
18295
18846
  readonly 'decline_reason'?: io.flow.internal.v0.unions.DeclineReason;
18847
+ readonly 'created_at'?: string;
18296
18848
  }
18297
18849
 
18298
18850
  interface FraudReviewDecision {
@@ -18303,6 +18855,7 @@ declare namespace io.flow.internal.v0.models {
18303
18855
  readonly 'status': io.flow.fraud.v0.enums.FraudStatus;
18304
18856
  readonly 'created_at': string;
18305
18857
  readonly 'liability'?: io.flow.fraud.v0.enums.FraudLiability;
18858
+ readonly 'updated_by_user'?: io.flow.common.v0.models.UserReference;
18306
18859
  }
18307
18860
 
18308
18861
  interface FraudReviewDecisionDeleted {
@@ -18421,12 +18974,31 @@ declare namespace io.flow.internal.v0.models {
18421
18974
  readonly 'percent': number;
18422
18975
  }
18423
18976
 
18977
+ interface Fulfillment {
18978
+ readonly 'id': string;
18979
+ readonly 'fulfilled_at': string;
18980
+ readonly 'currency': string;
18981
+ readonly 'order': io.flow.internal.v0.models.OrderSummary;
18982
+ readonly 'origin'?: io.flow.internal.v0.models.FulfillmentOrigin;
18983
+ readonly 'lines': io.flow.internal.v0.models.FulfillmentLine[];
18984
+ readonly 'shipping': io.flow.internal.v0.models.FulfillmentShipping;
18985
+ readonly 'shopper': io.flow.internal.v0.models.ShopperSummary;
18986
+ readonly 'merchant': io.flow.internal.v0.models.MerchantSummary;
18987
+ readonly 'completes_order': boolean;
18988
+ readonly 'sequence_number': number;
18989
+ readonly 'business'?: io.flow.internal.v0.models.FulfillmentBusiness;
18990
+ }
18991
+
18424
18992
  interface FulfillmentActionForm {
18425
18993
  readonly 'discriminator': 'fulfillment_action_form';
18426
18994
  readonly 'fulfillment_key': string;
18427
18995
  readonly 'actions': io.flow.internal.v0.models.LineActionQuantities[];
18428
18996
  }
18429
18997
 
18998
+ interface FulfillmentBusiness {
18999
+ readonly 'vat_registration_number': string;
19000
+ }
19001
+
18430
19002
  interface FulfillmentCancel {
18431
19003
  readonly 'discriminator': 'fulfillment_cancel';
18432
19004
  readonly 'event_id': string;
@@ -18445,6 +19017,41 @@ declare namespace io.flow.internal.v0.models {
18445
19017
  readonly 'key': string;
18446
19018
  }
18447
19019
 
19020
+ interface FulfillmentLine {
19021
+ readonly 'item': io.flow.internal.v0.models.ItemSummary;
19022
+ readonly 'quantity': number;
19023
+ readonly 'unit_price': number;
19024
+ readonly 'price': number;
19025
+ readonly 'discount': number;
19026
+ readonly 'tax': number;
19027
+ readonly 'duty': number;
19028
+ readonly 'subsidies': io.flow.internal.v0.models.FulfillmentSubsidyBreakdown;
19029
+ }
19030
+
19031
+ interface FulfillmentOrigin {
19032
+ readonly 'country': string;
19033
+ readonly 'province_code'?: string;
19034
+ }
19035
+
19036
+ interface FulfillmentProofExternalFulfillmentProofReference {
19037
+ readonly 'discriminator': 'external_fulfillment';
19038
+ readonly 'id': string;
19039
+ }
19040
+
19041
+ interface FulfillmentProofLabelTrackingReference {
19042
+ readonly 'discriminator': 'label_tracking';
19043
+ readonly 'id': string;
19044
+ }
19045
+
19046
+ interface FulfillmentProofShippingNotificationReference {
19047
+ readonly 'discriminator': 'shipping_notification';
19048
+ readonly 'id': string;
19049
+ }
19050
+
19051
+ interface FulfillmentReference {
19052
+ readonly 'id': string;
19053
+ }
19054
+
18448
19055
  interface FulfillmentShipmentTracking {
18449
19056
  readonly 'fulfillment_key': string;
18450
19057
  readonly 'flow_tracking_number': string;
@@ -18453,6 +19060,14 @@ declare namespace io.flow.internal.v0.models {
18453
19060
  readonly 'items': io.flow.order.management.v0.models.FulfillmentItem[];
18454
19061
  }
18455
19062
 
19063
+ interface FulfillmentShipping {
19064
+ readonly 'price': number;
19065
+ readonly 'discount': number;
19066
+ readonly 'tax': number;
19067
+ readonly 'duty': number;
19068
+ readonly 'subsidies': io.flow.internal.v0.models.FulfillmentSubsidyBreakdown;
19069
+ }
19070
+
18456
19071
  interface FulfillmentSnapshot {
18457
19072
  readonly 'tracking_source': string;
18458
19073
  readonly 'fulfillment_status'?: string;
@@ -18463,6 +19078,11 @@ declare namespace io.flow.internal.v0.models {
18463
19078
  readonly 'fulfillment_updated_at'?: string;
18464
19079
  }
18465
19080
 
19081
+ interface FulfillmentSubsidyBreakdown {
19082
+ readonly 'tax': number;
19083
+ readonly 'duty': number;
19084
+ }
19085
+
18466
19086
  interface FxFee {
18467
19087
  readonly 'base': io.flow.common.v0.models.Money;
18468
19088
  readonly 'local': io.flow.common.v0.models.Money;
@@ -18523,6 +19143,12 @@ declare namespace io.flow.internal.v0.models {
18523
19143
  readonly 'num_events': number;
18524
19144
  }
18525
19145
 
19146
+ interface GenericValidationError {
19147
+ readonly 'message': string;
19148
+ readonly 'reason': string;
19149
+ readonly 'next_action_from': io.flow.internal.v0.enums.ChannelOrderAcceptanceNextActionFrom;
19150
+ }
19151
+
18526
19152
  interface GiftCard {
18527
19153
  readonly 'id': string;
18528
19154
  readonly 'number': string;
@@ -18662,6 +19288,18 @@ declare namespace io.flow.internal.v0.models {
18662
19288
  readonly 'filename'?: string;
18663
19289
  }
18664
19290
 
19291
+ interface HarmonizationThreshold {
19292
+ readonly 'id': string;
19293
+ readonly 'chapter': number;
19294
+ readonly 'value': number;
19295
+ readonly 'updated_at': string;
19296
+ }
19297
+
19298
+ interface HarmonizationThresholdForm {
19299
+ readonly 'chapter': number;
19300
+ readonly 'value': number;
19301
+ }
19302
+
18665
19303
  interface HarmonizationUnclassifiedStatistics {
18666
19304
  readonly 'organization': io.flow.common.v0.models.OrganizationSummary;
18667
19305
  readonly 'statistics': io.flow.internal.v0.models.UnclassifiedProductStatistic[];
@@ -19409,6 +20047,22 @@ declare namespace io.flow.internal.v0.models {
19409
20047
  readonly 'error': string;
19410
20048
  }
19411
20049
 
20050
+ interface IndexAssignmentDeleted {
20051
+ readonly 'discriminator': 'index_assignment_deleted';
20052
+ readonly 'event_id': string;
20053
+ readonly 'timestamp': string;
20054
+ readonly 'organization': string;
20055
+ readonly 'id': string;
20056
+ }
20057
+
20058
+ interface IndexAssignmentUpserted {
20059
+ readonly 'discriminator': 'index_assignment_upserted';
20060
+ readonly 'event_id': string;
20061
+ readonly 'timestamp': string;
20062
+ readonly 'organization': string;
20063
+ readonly 'assignment': io.flow.internal.v0.models.AlgoliaIndexAssignment;
20064
+ }
20065
+
19412
20066
  interface InstallForm {
19413
20067
  readonly 'token': string;
19414
20068
  }
@@ -19723,7 +20377,7 @@ declare namespace io.flow.internal.v0.models {
19723
20377
  }
19724
20378
 
19725
20379
  interface ItemHarmonization {
19726
- readonly 'id'?: string;
20380
+ readonly 'id': string;
19727
20381
  readonly 'organization_id': string;
19728
20382
  readonly 'item_number': string;
19729
20383
  readonly 'item_name'?: string;
@@ -19843,6 +20497,11 @@ declare namespace io.flow.internal.v0.models {
19843
20497
  readonly 'item_sales_margin': io.flow.internal.v0.models.ItemSalesMargin;
19844
20498
  }
19845
20499
 
20500
+ interface ItemSummary {
20501
+ readonly 'number': string;
20502
+ readonly 'fulfillment_method': io.flow.catalog.v0.enums.FulfillmentMethodValue;
20503
+ }
20504
+
19846
20505
  interface ItemValuesForm {
19847
20506
  readonly 'values': string[];
19848
20507
  }
@@ -19907,6 +20566,11 @@ declare namespace io.flow.internal.v0.models {
19907
20566
  readonly 'constructions': Record<string, string[]>;
19908
20567
  }
19909
20568
 
20569
+ interface LabelBase {
20570
+ readonly 'amount': number;
20571
+ readonly 'weight': number;
20572
+ }
20573
+
19910
20574
  interface LabelCancellationError {
19911
20575
  readonly 'code': io.flow.internal.v0.enums.LabelCancellationErrorCode;
19912
20576
  readonly 'messages': string[];
@@ -19936,6 +20600,10 @@ declare namespace io.flow.internal.v0.models {
19936
20600
  readonly 'reference_id'?: string;
19937
20601
  }
19938
20602
 
20603
+ interface LabelDestination {
20604
+ readonly 'country': string;
20605
+ }
20606
+
19939
20607
  interface LabelGenerationAddressFailureStatusUpdateForm {
19940
20608
  readonly 'status': io.flow.internal.v0.enums.LabelGenerationAddressFailureStatus;
19941
20609
  }
@@ -19950,33 +20618,110 @@ declare namespace io.flow.internal.v0.models {
19950
20618
  readonly 'destination_errors': io.flow.internal.v0.models.DestinationError[];
19951
20619
  }
19952
20620
 
19953
- interface LabelGenerationSettings {
20621
+ interface LabelGenerationSettings {
20622
+ readonly 'id': string;
20623
+ readonly 'item_identifier'?: string;
20624
+ readonly 'auto_generate_query'?: string;
20625
+ readonly 'commercial_invoice_only_query'?: string;
20626
+ }
20627
+
20628
+ interface LabelGenerationSettingsDeleted {
20629
+ readonly 'discriminator': 'label_generation_settings_deleted';
20630
+ readonly 'event_id': string;
20631
+ readonly 'timestamp': string;
20632
+ readonly 'organization': string;
20633
+ readonly 'id': string;
20634
+ }
20635
+
20636
+ interface LabelGenerationSettingsForm {
20637
+ readonly 'item_identifier'?: string;
20638
+ readonly 'auto_generate_query'?: string;
20639
+ readonly 'commercial_invoice_only_query'?: string;
20640
+ }
20641
+
20642
+ interface LabelGenerationSettingsUpserted {
20643
+ readonly 'discriminator': 'label_generation_settings_upserted';
20644
+ readonly 'event_id': string;
20645
+ readonly 'timestamp': string;
20646
+ readonly 'organization': string;
20647
+ readonly 'label_generation_settings': io.flow.internal.v0.models.LabelGenerationSettings;
20648
+ }
20649
+
20650
+ interface LabelInvoiceRequest {
20651
+ readonly 'id': string;
20652
+ readonly 'label': io.flow.internal.v0.models.TrueUpLabelSummary;
20653
+ readonly 'units': io.flow.internal.v0.models.LabelUnits;
20654
+ readonly 'base': io.flow.internal.v0.models.LabelBase;
20655
+ readonly 'surcharges': io.flow.internal.v0.models.LabelSurcharge[];
20656
+ readonly 'total': number;
20657
+ readonly 'destination': io.flow.internal.v0.models.LabelDestination;
20658
+ readonly 'metadata': io.flow.internal.v0.models.LabelMetadata;
20659
+ }
20660
+
20661
+ interface LabelInvoiceRequestDeleted {
20662
+ readonly 'discriminator': 'label_invoice_request_deleted';
20663
+ readonly 'event_id': string;
20664
+ readonly 'timestamp': string;
20665
+ readonly 'organization': string;
20666
+ readonly 'id': string;
20667
+ }
20668
+
20669
+ interface LabelInvoiceRequestUpserted {
20670
+ readonly 'discriminator': 'label_invoice_request_upserted';
20671
+ readonly 'event_id': string;
20672
+ readonly 'timestamp': string;
20673
+ readonly 'organization': string;
20674
+ readonly 'label_invoice_request': io.flow.internal.v0.models.LabelInvoiceRequest;
20675
+ }
20676
+
20677
+ interface LabelInvoiceResponseForm {
19954
20678
  readonly 'id': string;
19955
- readonly 'item_identifier'?: string;
19956
- readonly 'auto_generate_query'?: string;
19957
- readonly 'commercial_invoice_only_query'?: string;
20679
+ readonly 'label_invoice_request_id': string;
20680
+ readonly 'units': io.flow.internal.v0.models.LabelResponseUnits;
20681
+ readonly 'base': io.flow.internal.v0.models.LabelBase;
20682
+ readonly 'surcharges': io.flow.internal.v0.models.LabelSurchargeForm;
20683
+ readonly 'total': number;
19958
20684
  }
19959
20685
 
19960
- interface LabelGenerationSettingsDeleted {
19961
- readonly 'discriminator': 'label_generation_settings_deleted';
20686
+ interface LabelMetadata {
20687
+ readonly 'ratecard': io.flow.internal.v0.models.MetadataRatecard;
20688
+ readonly 'weights': io.flow.internal.v0.models.MetadataWeights;
20689
+ }
20690
+
20691
+ interface LabelRequestError {
20692
+ readonly 'id': string;
20693
+ readonly 'order_number': string;
20694
+ readonly 'created_at': string;
20695
+ readonly 'reference_id': string;
20696
+ readonly 'label_request_method'?: io.flow.label.v0.enums.LabelRequestMethod;
20697
+ readonly 'label_trigger_method'?: io.flow.label.v0.enums.LabelTriggerMethod;
20698
+ readonly 'order_identifier': string[];
20699
+ readonly 'suggested_responsibility': io.flow.internal.v0.enums.LabelRequestErrorHandlingResponsibility;
20700
+ readonly 'carrier_id'?: string;
20701
+ readonly 'service_id'?: string;
20702
+ readonly 'errors': string[];
20703
+ }
20704
+
20705
+ interface LabelRequestErrorDeleted {
20706
+ readonly 'discriminator': 'label_request_error_deleted';
19962
20707
  readonly 'event_id': string;
19963
20708
  readonly 'timestamp': string;
19964
20709
  readonly 'organization': string;
19965
20710
  readonly 'id': string;
19966
20711
  }
19967
20712
 
19968
- interface LabelGenerationSettingsForm {
19969
- readonly 'item_identifier'?: string;
19970
- readonly 'auto_generate_query'?: string;
19971
- readonly 'commercial_invoice_only_query'?: string;
19972
- }
19973
-
19974
- interface LabelGenerationSettingsUpserted {
19975
- readonly 'discriminator': 'label_generation_settings_upserted';
20713
+ interface LabelRequestErrorUpserted {
20714
+ readonly 'discriminator': 'label_request_error_upserted';
19976
20715
  readonly 'event_id': string;
19977
20716
  readonly 'timestamp': string;
19978
20717
  readonly 'organization': string;
19979
- readonly 'label_generation_settings': io.flow.internal.v0.models.LabelGenerationSettings;
20718
+ readonly 'label_request_error': io.flow.internal.v0.models.LabelRequestError;
20719
+ }
20720
+
20721
+ interface LabelResponseUnits {
20722
+ readonly 'currency': string;
20723
+ readonly 'weight': io.flow.units.v0.enums.UnitOfWeight;
20724
+ readonly 'length'?: io.flow.units.v0.enums.UnitOfLength;
19980
20725
  }
19981
20726
 
19982
20727
  interface LabelSummary {
@@ -19993,6 +20738,42 @@ declare namespace io.flow.internal.v0.models {
19993
20738
  readonly 'service'?: io.flow.reference.v0.models.CarrierService;
19994
20739
  }
19995
20740
 
20741
+ interface LabelSurcharge {
20742
+ readonly 'amount': number;
20743
+ readonly 'type': io.flow.internal.v0.enums.TrueUpSurchargeType;
20744
+ readonly 'detail': io.flow.internal.v0.unions.LabelSurchargeDetail;
20745
+ }
20746
+
20747
+ interface LabelSurchargeDetailFlat {
20748
+ readonly 'discriminator': 'flat';
20749
+ readonly 'placeholder'?: string;
20750
+ }
20751
+
20752
+ interface LabelSurchargeDetailPerWeightUnit {
20753
+ readonly 'discriminator': 'per_weight_unit';
20754
+ readonly 'fee': number;
20755
+ }
20756
+
20757
+ interface LabelSurchargeDetailPercentage {
20758
+ readonly 'discriminator': 'percentage';
20759
+ readonly 'percentage': number;
20760
+ }
20761
+
20762
+ interface LabelSurchargeForm {
20763
+ readonly 'fuel'?: io.flow.internal.v0.models.LabelSurchargeSingleForm;
20764
+ readonly 'remote_area'?: io.flow.internal.v0.models.LabelSurchargeSingleForm;
20765
+ readonly 'oversize'?: io.flow.internal.v0.models.LabelSurchargeSingleForm;
20766
+ readonly 'duties_paid'?: io.flow.internal.v0.models.LabelSurchargeSingleForm;
20767
+ readonly 'emergency'?: io.flow.internal.v0.models.LabelSurchargeSingleForm;
20768
+ readonly 'peak'?: io.flow.internal.v0.models.LabelSurchargeSingleForm;
20769
+ }
20770
+
20771
+ interface LabelSurchargeSingleForm {
20772
+ readonly 'amount': number;
20773
+ readonly 'percentage'?: number;
20774
+ readonly 'fee_per_weight_unit'?: number;
20775
+ }
20776
+
19996
20777
  interface LabelTaxonomy {
19997
20778
  readonly 'discriminator': 'item';
19998
20779
  readonly 'item_type': string;
@@ -20021,8 +20802,10 @@ declare namespace io.flow.internal.v0.models {
20021
20802
  interface LabelTransaction {
20022
20803
  readonly 'discriminator': 'label_transaction';
20023
20804
  readonly 'label': io.flow.internal.v0.models.BillingLabelSummary;
20024
- readonly 'order'?: io.flow.internal.v0.models.BillingOrderTransactionOrderReference;
20025
20805
  readonly 'tracking': io.flow.internal.v0.models.BillingLabelTrackingSummaryReference;
20806
+ readonly 'gross_value': io.flow.common.v0.models.Price;
20807
+ readonly 'discount': io.flow.internal.v0.models.Discount;
20808
+ readonly 'order'?: io.flow.internal.v0.models.BillingOrderTransactionOrderReference;
20026
20809
  readonly 'id': string;
20027
20810
  readonly 'type': io.flow.internal.v0.enums.BillingTransactionType;
20028
20811
  readonly 'status': io.flow.internal.v0.enums.BillingTransactionStatus;
@@ -20047,6 +20830,12 @@ declare namespace io.flow.internal.v0.models {
20047
20830
  readonly 'label_transaction': io.flow.internal.v0.models.LabelTransaction;
20048
20831
  }
20049
20832
 
20833
+ interface LabelUnits {
20834
+ readonly 'currency': string;
20835
+ readonly 'weight': io.flow.units.v0.enums.UnitOfWeight;
20836
+ readonly 'length': io.flow.units.v0.enums.UnitOfLength;
20837
+ }
20838
+
20050
20839
  interface LabeledContent {
20051
20840
  readonly 'label': io.flow.internal.v0.models.ContentLabel;
20052
20841
  readonly 'contents': io.flow.internal.v0.unions.ContentItem[];
@@ -20339,11 +21128,6 @@ declare namespace io.flow.internal.v0.models {
20339
21128
  readonly 'url': string;
20340
21129
  }
20341
21130
 
20342
- interface LogisticsCenterCheck {
20343
- readonly 'issues'?: string[];
20344
- readonly 'is_valid': boolean;
20345
- }
20346
-
20347
21131
  interface Logo {
20348
21132
  readonly 'url': string;
20349
21133
  }
@@ -20744,6 +21528,44 @@ declare namespace io.flow.internal.v0.models {
20744
21528
  readonly 'organization_reference': io.flow.common.v0.models.Organization;
20745
21529
  }
20746
21530
 
21531
+ interface MerchantCharges {
21532
+ readonly 'labels': number;
21533
+ readonly 'total': number;
21534
+ }
21535
+
21536
+ interface MerchantFees {
21537
+ readonly 'duty_guarantee': number;
21538
+ readonly 'mor': number;
21539
+ readonly 'fraud': number;
21540
+ readonly 'fx': number;
21541
+ readonly 'processing': number;
21542
+ readonly 'rate_lock': number;
21543
+ readonly 'transfer': number;
21544
+ readonly 'total': number;
21545
+ }
21546
+
21547
+ interface MerchantGuidAssignment {
21548
+ readonly 'id': string;
21549
+ readonly 'merchant_guid': string;
21550
+ readonly 'created_at': string;
21551
+ }
21552
+
21553
+ interface MerchantGuidAssignmentDeleted {
21554
+ readonly 'discriminator': 'merchant_guid_assignment_deleted';
21555
+ readonly 'event_id': string;
21556
+ readonly 'timestamp': string;
21557
+ readonly 'organization': string;
21558
+ readonly 'id': string;
21559
+ }
21560
+
21561
+ interface MerchantGuidAssignmentUpserted {
21562
+ readonly 'discriminator': 'merchant_guid_assignment_upserted';
21563
+ readonly 'event_id': string;
21564
+ readonly 'timestamp': string;
21565
+ readonly 'organization': string;
21566
+ readonly 'merchant_guid_assignment': io.flow.internal.v0.models.MerchantGuidAssignment;
21567
+ }
21568
+
20747
21569
  interface MerchantOfRecordEntitySettings {
20748
21570
  readonly 'id': string;
20749
21571
  readonly 'merchant_of_record_entity': io.flow.common.v0.models.MerchantOfRecordEntity;
@@ -20769,6 +21591,42 @@ declare namespace io.flow.internal.v0.models {
20769
21591
  readonly 'currency'?: string;
20770
21592
  }
20771
21593
 
21594
+ interface MerchantSearchResult {
21595
+ readonly 'organization_id': string;
21596
+ readonly 'shop_name'?: string;
21597
+ readonly 'legal_name': string;
21598
+ readonly 'onboarding_current_state': io.flow.organization.onboarding.state.v0.unions.OnboardingState;
21599
+ }
21600
+
21601
+ interface MerchantSubsidies {
21602
+ readonly 'fees': io.flow.internal.v0.models.ShopperFees;
21603
+ readonly 'tax': number;
21604
+ readonly 'duty': number;
21605
+ readonly 'total': number;
21606
+ }
21607
+
21608
+ interface MerchantSummary {
21609
+ readonly 'subsidies': io.flow.internal.v0.models.MerchantSubsidies;
21610
+ readonly 'fees': io.flow.internal.v0.models.MerchantFees;
21611
+ readonly 'charges': io.flow.internal.v0.models.MerchantCharges;
21612
+ readonly 'discounts': number;
21613
+ }
21614
+
21615
+ interface MetadataProposition {
21616
+ readonly 'shipping_method': io.flow.internal.v0.models.ShippingMethodReference;
21617
+ readonly 'name': string;
21618
+ }
21619
+
21620
+ interface MetadataRatecard {
21621
+ readonly 'id': string;
21622
+ readonly 'proposition': io.flow.internal.v0.models.MetadataProposition;
21623
+ }
21624
+
21625
+ interface MetadataWeights {
21626
+ readonly 'dead'?: io.flow.internal.v0.models.WeightsDead;
21627
+ readonly 'dimensional'?: io.flow.internal.v0.models.WeightsDimensional;
21628
+ }
21629
+
20772
21630
  interface NextBillingStatement {
20773
21631
  readonly 'date': string;
20774
21632
  readonly 'amount': io.flow.common.v0.models.Price;
@@ -20804,6 +21662,7 @@ declare namespace io.flow.internal.v0.models {
20804
21662
  readonly 'description': string;
20805
21663
  readonly 'result': io.flow.internal.v0.enums.OnboardingAuditResult;
20806
21664
  readonly 'messages': io.flow.internal.v0.models.OnboardingAuditMessage[];
21665
+ readonly 'execution_time_ms'?: number;
20807
21666
  }
20808
21667
 
20809
21668
  interface OnboardingAuditSnapshot {
@@ -20828,7 +21687,7 @@ declare namespace io.flow.internal.v0.models {
20828
21687
  readonly 'compliance_full_review_required': boolean;
20829
21688
  readonly 'application_received': string;
20830
21689
  readonly 'legal_name': string;
20831
- readonly 'shop_name': string;
21690
+ readonly 'shop_name'?: string;
20832
21691
  readonly 'organization_id': string;
20833
21692
  readonly 'onboarding_current_state': io.flow.organization.onboarding.state.v0.unions.OnboardingState;
20834
21693
  readonly 'setup_completed_at'?: string;
@@ -21107,6 +21966,12 @@ declare namespace io.flow.internal.v0.models {
21107
21966
  readonly 'authorization'?: io.flow.payment.v0.unions.AuthorizationForm;
21108
21967
  }
21109
21968
 
21969
+ interface OrderSummary {
21970
+ readonly 'id': string;
21971
+ readonly 'organization': io.flow.common.v0.models.OrganizationReference;
21972
+ readonly 'number': string;
21973
+ }
21974
+
21110
21975
  interface OrderTransaction {
21111
21976
  readonly 'discriminator': 'order_transaction';
21112
21977
  readonly 'order': io.flow.internal.v0.models.BillingOrderTransactionOrderReference;
@@ -21134,6 +21999,13 @@ declare namespace io.flow.internal.v0.models {
21134
21999
  readonly 'order_transaction': io.flow.internal.v0.models.OrderTransaction;
21135
22000
  }
21136
22001
 
22002
+ interface OrderValidationError {
22003
+ readonly 'message': string;
22004
+ readonly 'reason': io.flow.internal.v0.enums.ChannelOrderAcceptanceRejectionReason;
22005
+ readonly 'action'?: io.flow.internal.v0.enums.ChannelOrderAcceptanceErrorAction;
22006
+ readonly 'next_action_from': io.flow.internal.v0.enums.ChannelOrderAcceptanceNextActionFrom;
22007
+ }
22008
+
21137
22009
  interface OrganizationAccount {
21138
22010
  readonly 'organization': io.flow.common.v0.models.OrganizationReference;
21139
22011
  readonly 'id': string;
@@ -21272,6 +22144,32 @@ declare namespace io.flow.internal.v0.models {
21272
22144
  readonly 'organization_currency_setting': io.flow.internal.v0.models.OrganizationCurrencySetting;
21273
22145
  }
21274
22146
 
22147
+ interface OrganizationDeactivation {
22148
+ readonly 'id': string;
22149
+ readonly 'deactivate_at': string;
22150
+ readonly 'created_at': string;
22151
+ }
22152
+
22153
+ interface OrganizationDeactivationDeleted {
22154
+ readonly 'discriminator': 'organization_deactivation_deleted';
22155
+ readonly 'event_id': string;
22156
+ readonly 'timestamp': string;
22157
+ readonly 'organization': string;
22158
+ readonly 'id': string;
22159
+ }
22160
+
22161
+ interface OrganizationDeactivationForm {
22162
+ readonly 'deactivate_at': string;
22163
+ }
22164
+
22165
+ interface OrganizationDeactivationUpserted {
22166
+ readonly 'discriminator': 'organization_deactivation_upserted';
22167
+ readonly 'event_id': string;
22168
+ readonly 'timestamp': string;
22169
+ readonly 'organization': string;
22170
+ readonly 'organization_deactivation': io.flow.internal.v0.models.OrganizationDeactivation;
22171
+ }
22172
+
21275
22173
  interface OrganizationDebugTransaction {
21276
22174
  readonly 'debug'?: io.flow.internal.v0.models.DebugTransactionDetails;
21277
22175
  readonly 'order'?: io.flow.internal.v0.models.DebugOrder;
@@ -21476,6 +22374,13 @@ declare namespace io.flow.internal.v0.models {
21476
22374
  readonly 'organization_status_change': io.flow.internal.v0.models.OrganizationStatusChange;
21477
22375
  }
21478
22376
 
22377
+ interface OrganizationsAuditCheckReport {
22378
+ readonly 'organization_id': string;
22379
+ readonly 'organization_status': io.flow.common.v0.enums.OrganizationStatus;
22380
+ readonly 'onboarding_state': io.flow.organization.onboarding.state.v0.unions.OnboardingState;
22381
+ readonly 'audit_result': io.flow.internal.v0.enums.OnboardingAuditResult;
22382
+ }
22383
+
21479
22384
  interface Partner {
21480
22385
  readonly 'id': string;
21481
22386
  readonly 'name': string;
@@ -21660,6 +22565,12 @@ declare namespace io.flow.internal.v0.models {
21660
22565
  readonly 'status'?: io.flow.internal.v0.enums.PaymentSummaryStatus;
21661
22566
  }
21662
22567
 
22568
+ interface PayoutStatusCounts {
22569
+ readonly 'scheduled': number;
22570
+ readonly 'sent': number;
22571
+ readonly 'failed': number;
22572
+ }
22573
+
21663
22574
  interface PaypalAccount {
21664
22575
  readonly 'discriminator': 'paypal_account';
21665
22576
  readonly 'id': string;
@@ -21687,6 +22598,7 @@ declare namespace io.flow.internal.v0.models {
21687
22598
  readonly 'country': string;
21688
22599
  readonly 'authentication': io.flow.internal.v0.models.PaypalAuthenticationForm;
21689
22600
  readonly 'status'?: io.flow.internal.v0.enums.ProcessorEntityStatus;
22601
+ readonly 'organization_capability'?: io.flow.internal.v0.enums.OrganizationCapability;
21690
22602
  }
21691
22603
 
21692
22604
  interface PaypalAccountReference {
@@ -21809,6 +22721,7 @@ declare namespace io.flow.internal.v0.models {
21809
22721
  readonly 'external_id': string;
21810
22722
  readonly 'country': string;
21811
22723
  readonly 'status'?: io.flow.internal.v0.enums.ProcessorEntityStatus;
22724
+ readonly 'organization_capability'?: io.flow.internal.v0.enums.OrganizationCapability;
21812
22725
  }
21813
22726
 
21814
22727
  interface PaypalPaymentDeleted {
@@ -22118,6 +23031,12 @@ declare namespace io.flow.internal.v0.models {
22118
23031
  readonly 'column_settings': io.flow.internal.v0.models.HarmonizationColumnSetting[];
22119
23032
  }
22120
23033
 
23034
+ interface ProductRestrictionResultValidationError {
23035
+ readonly 'message': string;
23036
+ readonly 'reason': string;
23037
+ readonly 'next_action_from': io.flow.internal.v0.enums.ChannelOrderAcceptanceNextActionFrom;
23038
+ }
23039
+
22121
23040
  interface ProductReviewHistory {
22122
23041
  readonly 'product_id': string;
22123
23042
  readonly 'reviews': io.flow.internal.v0.models.RestrictionHistoryItemReviewDecision[];
@@ -22143,6 +23062,20 @@ declare namespace io.flow.internal.v0.models {
22143
23062
  readonly 'shipping_notification_id': string;
22144
23063
  }
22145
23064
 
23065
+ interface QueuedRecord {
23066
+ readonly 'type': string;
23067
+ readonly 'type_id': string;
23068
+ readonly 'source_type'?: string;
23069
+ readonly 'source_id'?: string;
23070
+ readonly 'environment'?: string;
23071
+ readonly 'created_at': string;
23072
+ readonly 'num_attempts': number;
23073
+ readonly 'next_attempt_at': string;
23074
+ readonly 'errors'?: string[];
23075
+ readonly 'stacktrace'?: string;
23076
+ readonly 'snooze_id'?: string;
23077
+ }
23078
+
22146
23079
  interface QuoteRequest {
22147
23080
  readonly 'id': string;
22148
23081
  readonly 'request_type': io.flow.internal.v0.enums.QuoteRequestType;
@@ -22250,10 +23183,12 @@ declare namespace io.flow.internal.v0.models {
22250
23183
  interface RateLevel {
22251
23184
  readonly 'id': string;
22252
23185
  readonly 'name': string;
23186
+ readonly 'key': string;
22253
23187
  }
22254
23188
 
22255
23189
  interface RateLevelForm {
22256
23190
  readonly 'name': string;
23191
+ readonly 'key': string;
22257
23192
  }
22258
23193
 
22259
23194
  interface RateLevelOrganization {
@@ -22282,6 +23217,7 @@ declare namespace io.flow.internal.v0.models {
22282
23217
  readonly 'id': string;
22283
23218
  readonly 'name': string;
22284
23219
  readonly 'effective_at': string;
23220
+ readonly 'key': string;
22285
23221
  }
22286
23222
 
22287
23223
  interface RateNameSummary {
@@ -22587,6 +23523,23 @@ declare namespace io.flow.internal.v0.models {
22587
23523
  readonly 'number': string;
22588
23524
  }
22589
23525
 
23526
+ interface Report {
23527
+ readonly 'key': string;
23528
+ readonly 'status': io.flow.internal.v0.enums.ReportStatus;
23529
+ readonly 'from': string;
23530
+ readonly 'to': string;
23531
+ readonly 'organization_id'?: string;
23532
+ readonly 'sales_url'?: string;
23533
+ readonly 'refunds_url'?: string;
23534
+ }
23535
+
23536
+ interface ReportForm {
23537
+ readonly 'key'?: string;
23538
+ readonly 'from': string;
23539
+ readonly 'to': string;
23540
+ readonly 'organization_id'?: string;
23541
+ }
23542
+
22590
23543
  interface ReportRuleDecision {
22591
23544
  readonly 'rule_id': string;
22592
23545
  readonly 'rule_name': string;
@@ -22598,6 +23551,11 @@ declare namespace io.flow.internal.v0.models {
22598
23551
  readonly 'task_id': string;
22599
23552
  }
22600
23553
 
23554
+ interface ReportingDetails {
23555
+ readonly 'sales_records'?: any/*object*/[];
23556
+ readonly 'refund_records'?: any/*object*/[];
23557
+ }
23558
+
22601
23559
  interface RequeueRequestForm {
22602
23560
  readonly 'product_ids'?: string[];
22603
23561
  readonly 'hs6_codes'?: string[];
@@ -22689,6 +23647,7 @@ declare namespace io.flow.internal.v0.models {
22689
23647
  interface RestrictionOrganizationDecisionSummary {
22690
23648
  readonly 'organization': io.flow.internal.v0.models.RestrictionOrganization;
22691
23649
  readonly 'earliest_pending_date': string;
23650
+ readonly 'priority_score': number;
22692
23651
  readonly 'date': string;
22693
23652
  readonly 'statuses': io.flow.internal.v0.models.RestrictionStatusMetadata[];
22694
23653
  readonly 'rules': io.flow.internal.v0.models.RestrictionRuleMetadata[];
@@ -22758,6 +23717,7 @@ declare namespace io.flow.internal.v0.models {
22758
23717
  readonly 'positive_keywords': string[];
22759
23718
  readonly 'negative_keywords': string[];
22760
23719
  readonly 'value_threshold_usd'?: number;
23720
+ readonly 'auto_review_criteria'?: io.flow.internal.v0.models.AutoReviewCriteria[];
22761
23721
  }
22762
23722
 
22763
23723
  interface RestrictionRuleDecisionForm {
@@ -22774,6 +23734,7 @@ declare namespace io.flow.internal.v0.models {
22774
23734
  readonly 'positive_keywords': string[];
22775
23735
  readonly 'negative_keywords': string[];
22776
23736
  readonly 'value_threshold_usd'?: number;
23737
+ readonly 'auto_review_criteria'?: io.flow.internal.v0.models.AutoReviewCriteria[];
22777
23738
  }
22778
23739
 
22779
23740
  interface RestrictionRuleMetadata {
@@ -22811,6 +23772,16 @@ declare namespace io.flow.internal.v0.models {
22811
23772
  readonly 'destinations': io.flow.reference.v0.models.Country[];
22812
23773
  }
22813
23774
 
23775
+ interface Retracking {
23776
+ readonly 'carrier': string;
23777
+ readonly 'tracking_number'?: string;
23778
+ }
23779
+
23780
+ interface RetrackingForm {
23781
+ readonly 'carrier': string;
23782
+ readonly 'carrier_tracking_numbers': string[];
23783
+ }
23784
+
22814
23785
  interface ReturnPolicyDeleted {
22815
23786
  readonly 'discriminator': 'return_policy_deleted';
22816
23787
  readonly 'event_id': string;
@@ -22868,6 +23839,14 @@ declare namespace io.flow.internal.v0.models {
22868
23839
  readonly 'processor': io.flow.internal.v0.enums.Processor;
22869
23840
  }
22870
23841
 
23842
+ interface SandboxSetup {
23843
+ readonly 'requested_by': string;
23844
+ }
23845
+
23846
+ interface SandboxSetupForm {
23847
+ readonly 'requested_by': string;
23848
+ }
23849
+
22871
23850
  interface Screen {
22872
23851
  readonly 'id': string;
22873
23852
  readonly 'q': string;
@@ -22999,6 +23978,10 @@ declare namespace io.flow.internal.v0.models {
22999
23978
  readonly 'destination': string;
23000
23979
  }
23001
23980
 
23981
+ interface ShippingMethodReference {
23982
+ readonly 'id': string;
23983
+ }
23984
+
23002
23985
  interface Shop {
23003
23986
  readonly 'id': string;
23004
23987
  readonly 'organization'?: io.flow.common.v0.models.OrganizationReference;
@@ -23107,6 +24090,16 @@ declare namespace io.flow.internal.v0.models {
23107
24090
  readonly 'placeholder': string;
23108
24091
  }
23109
24092
 
24093
+ interface ShopifyMarketsDiscrepancy {
24094
+ readonly 'organization_id': string;
24095
+ readonly 'count': number;
24096
+ }
24097
+
24098
+ interface ShopifyMarketsDiscrepancyData {
24099
+ readonly 'total_count': number;
24100
+ readonly 'discrepancies': io.flow.internal.v0.models.ShopifyMarketsDiscrepancy[];
24101
+ }
24102
+
23110
24103
  interface ShopifyMarketsIncorporationCountry {
23111
24104
  readonly 'country': string;
23112
24105
  readonly 'state'?: string;
@@ -23114,6 +24107,24 @@ declare namespace io.flow.internal.v0.models {
23114
24107
  readonly 'jurisdiction'?: string;
23115
24108
  }
23116
24109
 
24110
+ interface ShopifyMarketsInternalOrderMetrics {
24111
+ readonly 'total_order_count': number;
24112
+ }
24113
+
24114
+ interface ShopifyMarketsMetricsDeleted {
24115
+ readonly 'discriminator': 'shopify_markets_metrics_deleted';
24116
+ readonly 'event_id': string;
24117
+ readonly 'timestamp': string;
24118
+ readonly 'id': string;
24119
+ }
24120
+
24121
+ interface ShopifyMarketsMetricsUpserted {
24122
+ readonly 'discriminator': 'shopify_markets_metrics_upserted';
24123
+ readonly 'event_id': string;
24124
+ readonly 'timestamp': string;
24125
+ readonly 'shopify_markets_metrics': io.flow.internal.v0.models.ShopifyMarketsOrdersMetrics;
24126
+ }
24127
+
23117
24128
  interface ShopifyMarketsOrder {
23118
24129
  readonly 'id': string;
23119
24130
  readonly 'model': io.flow.shopify.markets.v0.models.ShopifyOrder;
@@ -23135,8 +24146,17 @@ declare namespace io.flow.internal.v0.models {
23135
24146
  readonly 'shopify_markets_order': io.flow.internal.v0.models.ShopifyMarketsOrder;
23136
24147
  }
23137
24148
 
24149
+ interface ShopifyMarketsOrdersMetrics {
24150
+ readonly 'id': string;
24151
+ readonly 'range': io.flow.common.v0.models.DatetimeRange;
24152
+ readonly 'shopify': io.flow.internal.v0.models.ShopifyMarketsShopifyOrderMetrics;
24153
+ readonly 'internal': io.flow.internal.v0.models.ShopifyMarketsInternalOrderMetrics;
24154
+ readonly 'discrepancy_data': io.flow.internal.v0.models.ShopifyMarketsDiscrepancyData;
24155
+ }
24156
+
23138
24157
  interface ShopifyMarketsShop {
23139
24158
  readonly 'id': string;
24159
+ readonly 'shopify_shop_id'?: string;
23140
24160
  readonly 'channel': io.flow.common.v0.models.ChannelReference;
23141
24161
  readonly 'domain': string;
23142
24162
  readonly 'myshopify_domain': string;
@@ -23196,6 +24216,10 @@ declare namespace io.flow.internal.v0.models {
23196
24216
  readonly 'shopify_markets_shop': io.flow.internal.v0.models.ShopifyMarketsShop;
23197
24217
  }
23198
24218
 
24219
+ interface ShopifyMarketsShopifyOrderMetrics {
24220
+ readonly 'total_order_count': number;
24221
+ }
24222
+
23199
24223
  interface ShopifyMarketsSubsidiaryCompany {
23200
24224
  readonly 'legal_name'?: string;
23201
24225
  readonly 'incorporation_country'?: io.flow.internal.v0.models.ShopifyMarketsIncorporationCountry;
@@ -23502,6 +24526,11 @@ declare namespace io.flow.internal.v0.models {
23502
24526
  readonly 'shop': io.flow.internal.v0.models.Shop;
23503
24527
  }
23504
24528
 
24529
+ interface ShopifyStorePassword {
24530
+ readonly 'temporary_password': string;
24531
+ readonly 'expiry': string;
24532
+ }
24533
+
23505
24534
  interface ShopifyWebhook {
23506
24535
  readonly 'id': string;
23507
24536
  readonly 'shop_id': string;
@@ -23519,6 +24548,18 @@ declare namespace io.flow.internal.v0.models {
23519
24548
  readonly 'topic': io.flow.shopify.external.v0.enums.Topic;
23520
24549
  }
23521
24550
 
24551
+ interface ShopperFees {
24552
+ readonly 'fuel': number;
24553
+ readonly 'remote_area': number;
24554
+ readonly 'oversize': number;
24555
+ readonly 'ccf': number;
24556
+ readonly 'total': number;
24557
+ }
24558
+
24559
+ interface ShopperSummary {
24560
+ readonly 'fees': io.flow.internal.v0.models.ShopperFees;
24561
+ }
24562
+
23522
24563
  interface SimpleAccountReference {
23523
24564
  readonly 'id': string;
23524
24565
  }
@@ -23734,6 +24775,7 @@ declare namespace io.flow.internal.v0.models {
23734
24775
  readonly 'country': string;
23735
24776
  readonly 'authentication': io.flow.internal.v0.models.StripeAuthenticationForm;
23736
24777
  readonly 'status'?: io.flow.internal.v0.enums.ProcessorEntityStatus;
24778
+ readonly 'organization_capability'?: io.flow.internal.v0.enums.OrganizationCapability;
23737
24779
  }
23738
24780
 
23739
24781
  interface StripeAuthentication {
@@ -23862,6 +24904,7 @@ declare namespace io.flow.internal.v0.models {
23862
24904
  readonly 'account_type': io.flow.stripe.v0.enums.AccountType;
23863
24905
  readonly 'status'?: io.flow.internal.v0.enums.ProcessorEntityStatus;
23864
24906
  readonly 'country': string;
24907
+ readonly 'organization_capability'?: io.flow.internal.v0.enums.OrganizationCapability;
23865
24908
  }
23866
24909
 
23867
24910
  interface StripeRefundDeleted {
@@ -24327,6 +25370,25 @@ declare namespace io.flow.internal.v0.models {
24327
25370
  readonly 'id': string;
24328
25371
  }
24329
25372
 
25373
+ interface TransactionStatement {
25374
+ readonly 'id': string;
25375
+ readonly 'statement': io.flow.internal.v0.models.BillingStatementReference;
25376
+ }
25377
+
25378
+ interface TransactionStatementDeleted {
25379
+ readonly 'discriminator': 'transaction_statement_deleted';
25380
+ readonly 'event_id': string;
25381
+ readonly 'timestamp': string;
25382
+ readonly 'id': string;
25383
+ }
25384
+
25385
+ interface TransactionStatementUpserted {
25386
+ readonly 'discriminator': 'transaction_statement_upserted';
25387
+ readonly 'event_id': string;
25388
+ readonly 'timestamp': string;
25389
+ readonly 'transaction_statement': io.flow.internal.v0.models.TransactionStatement;
25390
+ }
25391
+
24330
25392
  interface TransferTransaction {
24331
25393
  readonly 'discriminator': 'transfer_transaction';
24332
25394
  readonly 'method': io.flow.internal.v0.enums.TransferMethod;
@@ -24375,6 +25437,34 @@ declare namespace io.flow.internal.v0.models {
24375
25437
  readonly 'description': string;
24376
25438
  }
24377
25439
 
25440
+ interface TrueUpLabelSummary {
25441
+ readonly 'id': string;
25442
+ readonly 'carrier_service_id': string;
25443
+ readonly 'carrier_tracking_number': string;
25444
+ readonly 'flow_tracking_number': string;
25445
+ readonly 'created_at': string;
25446
+ }
25447
+
25448
+ interface UnassignedMerchantGuid {
25449
+ readonly 'id': string;
25450
+ readonly 'merchant_guid': string;
25451
+ readonly 'created_at': string;
25452
+ }
25453
+
25454
+ interface UnassignedMerchantGuidDeleted {
25455
+ readonly 'discriminator': 'unassigned_merchant_guid_deleted';
25456
+ readonly 'event_id': string;
25457
+ readonly 'timestamp': string;
25458
+ readonly 'id': string;
25459
+ }
25460
+
25461
+ interface UnassignedMerchantGuidUpserted {
25462
+ readonly 'discriminator': 'unassigned_merchant_guid_upserted';
25463
+ readonly 'event_id': string;
25464
+ readonly 'timestamp': string;
25465
+ readonly 'unassigned_merchant_guid': io.flow.internal.v0.models.UnassignedMerchantGuid;
25466
+ }
25467
+
24378
25468
  interface UnclassifiedProductStatistic {
24379
25469
  readonly 'status': io.flow.internal.v0.enums.UnclassifiedProductStatus;
24380
25470
  readonly 'number_of_items': number;
@@ -24596,6 +25686,16 @@ declare namespace io.flow.internal.v0.models {
24596
25686
  readonly 'created_at': string;
24597
25687
  }
24598
25688
 
25689
+ interface WashCarrierActualFile {
25690
+ readonly 'id': string;
25691
+ readonly 'url': string;
25692
+ readonly 'status': io.flow.internal.v0.enums.WashCarrierActualFileStatus;
25693
+ }
25694
+
25695
+ interface WashCarrierActualFileForm {
25696
+ readonly 'url': string;
25697
+ }
25698
+
24599
25699
  interface WashExportRequest {
24600
25700
  readonly 'url': string;
24601
25701
  }
@@ -24616,6 +25716,17 @@ declare namespace io.flow.internal.v0.models {
24616
25716
  readonly 'placeholder'?: any/*json*/;
24617
25717
  }
24618
25718
 
25719
+ interface WeightsDead {
25720
+ readonly 'weight': number;
25721
+ }
25722
+
25723
+ interface WeightsDimensional {
25724
+ readonly 'weight': number;
25725
+ readonly 'length': number;
25726
+ readonly 'width': number;
25727
+ readonly 'height': number;
25728
+ }
25729
+
24619
25730
  interface WholeOrderActionForm {
24620
25731
  readonly 'discriminator': 'whole_order_action_form';
24621
25732
  readonly 'action': io.flow.internal.v0.enums.OrderAction;
@@ -24725,7 +25836,7 @@ declare namespace io.flow.internal.v0.unions {
24725
25836
  type DiscountRequestOfferForm = (io.flow.internal.v0.models.DiscountRequestOfferFixedAmountForm);
24726
25837
  type DisputeDetails = (io.flow.internal.v0.models.DisputeDetailsAdyen | io.flow.internal.v0.models.DisputeDetailsPaypal);
24727
25838
  type DutyExpression = (io.flow.internal.v0.models.DutyCompoundExpression | io.flow.internal.v0.models.DutySimpleExpression);
24728
- 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);
25839
+ 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);
24729
25840
  type Experiment = (io.flow.internal.v0.models.ExperienceExperiment | io.flow.internal.v0.models.FeatureExperiment);
24730
25841
  type ExportSchedule = (io.flow.internal.v0.models.ExportScheduleDaily | io.flow.internal.v0.models.ExportScheduleRepeated);
24731
25842
  type FeatureDefaultValue = (io.flow.internal.v0.models.BooleanFeatureDefaultValue | io.flow.internal.v0.models.StringFeatureDefaultValue);
@@ -24736,6 +25847,7 @@ declare namespace io.flow.internal.v0.unions {
24736
25847
  type FraudProviderConfiguration = (io.flow.internal.v0.models.FraudProviderConfigurationRiskified);
24737
25848
  type FraudProviderConfigurationForm = (io.flow.internal.v0.models.FraudProviderConfigurationFormRiskified);
24738
25849
  type FuelSurchargeServiceFeePutForm = (io.flow.internal.v0.models.FuelSurchargeServiceFeePercentPutForm | io.flow.internal.v0.models.FuelSurchargeServiceFeeAmountByWeightPutForm);
25850
+ type FulfillmentProof = (io.flow.internal.v0.models.FulfillmentProofLabelTrackingReference | io.flow.internal.v0.models.FulfillmentProofShippingNotificationReference | io.flow.internal.v0.models.FulfillmentProofExternalFulfillmentProofReference);
24739
25851
  type GenerateLoad = (io.flow.internal.v0.models.GenerateLoadSingleOrg | io.flow.internal.v0.models.GenerateLoadMultipleOrgs);
24740
25852
  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);
24741
25853
  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);
@@ -24745,6 +25857,7 @@ declare namespace io.flow.internal.v0.unions {
24745
25857
  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);
24746
25858
  type InternalRefundForm = (io.flow.internal.v0.models.AdyenRefundForm);
24747
25859
  type InternalTransactionDetails = (io.flow.internal.v0.models.InternalTransactionDetailsCard);
25860
+ type LabelSurchargeDetail = (io.flow.internal.v0.models.LabelSurchargeDetailFlat | io.flow.internal.v0.models.LabelSurchargeDetailPercentage | io.flow.internal.v0.models.LabelSurchargeDetailPerWeightUnit);
24748
25861
  type LocalizableContent = (io.flow.internal.v0.models.LocalizableContentReference | io.flow.internal.v0.models.Localization);
24749
25862
  type MarketingGatewayChannelDetails = (io.flow.internal.v0.models.MarketingGatewayGoogleChannelDetails | io.flow.internal.v0.models.MarketingGatewayFacebookChannelDetails | io.flow.internal.v0.models.MarketingGatewaySupportedChannelDetails);
24750
25863
  type MarketingGatewayDistributionChannel = (io.flow.internal.v0.models.MarketingGatewayDistributionChannelGoogle | io.flow.internal.v0.models.MarketingGatewayDistributionChannelFacebook);
@@ -24805,9 +25918,11 @@ export const blazeCheckoutStep: PropTypes.Requireable<io.flow.internal.v0.enums.
24805
25918
  export const browserBundleErrorCode: PropTypes.Requireable<io.flow.internal.v0.enums.BrowserBundleErrorCode>;
24806
25919
  export const calculatorEngine: PropTypes.Requireable<io.flow.internal.v0.enums.CalculatorEngine>;
24807
25920
  export const carrierLabelGenerationMethod: PropTypes.Requireable<io.flow.internal.v0.enums.CarrierLabelGenerationMethod>;
25921
+ export const carrierValidationStatus: PropTypes.Requireable<io.flow.internal.v0.enums.CarrierValidationStatus>;
24808
25922
  export const catalogImportType: PropTypes.Requireable<io.flow.internal.v0.enums.CatalogImportType>;
24809
25923
  export const channelBilledTransactionType: PropTypes.Requireable<io.flow.internal.v0.enums.ChannelBilledTransactionType>;
24810
25924
  export const channelOrderAcceptanceErrorAction: PropTypes.Requireable<io.flow.internal.v0.enums.ChannelOrderAcceptanceErrorAction>;
25925
+ export const channelOrderAcceptanceNextActionFrom: PropTypes.Requireable<io.flow.internal.v0.enums.ChannelOrderAcceptanceNextActionFrom>;
24811
25926
  export const channelOrderAcceptanceRejectionReason: PropTypes.Requireable<io.flow.internal.v0.enums.ChannelOrderAcceptanceRejectionReason>;
24812
25927
  export const channelOrderAcceptanceStatus: PropTypes.Requireable<io.flow.internal.v0.enums.ChannelOrderAcceptanceStatus>;
24813
25928
  export const channelTransactionType: PropTypes.Requireable<io.flow.internal.v0.enums.ChannelTransactionType>;
@@ -24904,6 +26019,7 @@ export const disputeImportType: PropTypes.Requireable<io.flow.internal.v0.enums.
24904
26019
  export const disputeLiability: PropTypes.Requireable<io.flow.internal.v0.enums.DisputeLiability>;
24905
26020
  export const disputeProcessor: PropTypes.Requireable<io.flow.internal.v0.enums.DisputeProcessor>;
24906
26021
  export const disputeStatus: PropTypes.Requireable<io.flow.internal.v0.enums.DisputeStatus>;
26022
+ export const disputeTransactionType: PropTypes.Requireable<io.flow.internal.v0.enums.DisputeTransactionType>;
24907
26023
  export const disputeType: PropTypes.Requireable<io.flow.internal.v0.enums.DisputeType>;
24908
26024
  export const dutyCompoundExpressionType: PropTypes.Requireable<io.flow.internal.v0.enums.DutyCompoundExpressionType>;
24909
26025
  export const dutyExemptItemTypes: PropTypes.Requireable<io.flow.internal.v0.enums.DutyExemptItemTypes>;
@@ -24948,6 +26064,7 @@ export const labelCancellationErrorCode: PropTypes.Requireable<io.flow.internal.
24948
26064
  export const labelCreationStatus: PropTypes.Requireable<io.flow.internal.v0.enums.LabelCreationStatus>;
24949
26065
  export const labelGenerationAddressFailureStatus: PropTypes.Requireable<io.flow.internal.v0.enums.LabelGenerationAddressFailureStatus>;
24950
26066
  export const labelInputSource: PropTypes.Requireable<io.flow.internal.v0.enums.LabelInputSource>;
26067
+ export const labelRequestErrorHandlingResponsibility: PropTypes.Requireable<io.flow.internal.v0.enums.LabelRequestErrorHandlingResponsibility>;
24951
26068
  export const labelTransactionType: PropTypes.Requireable<io.flow.internal.v0.enums.LabelTransactionType>;
24952
26069
  export const liabilityType: PropTypes.Requireable<io.flow.internal.v0.enums.LiabilityType>;
24953
26070
  export const mainTransactionStatus: PropTypes.Requireable<io.flow.internal.v0.enums.MainTransactionStatus>;
@@ -25004,11 +26121,13 @@ export const promptOptions: PropTypes.Requireable<io.flow.internal.v0.enums.Prom
25004
26121
  export const promptTarget: PropTypes.Requireable<io.flow.internal.v0.enums.PromptTarget>;
25005
26122
  export const queuedRecordType: PropTypes.Requireable<io.flow.internal.v0.enums.QueuedRecordType>;
25006
26123
  export const quoteRequestType: PropTypes.Requireable<io.flow.internal.v0.enums.QuoteRequestType>;
26124
+ export const rateLevelKey: PropTypes.Requireable<io.flow.internal.v0.enums.RateLevelKey>;
25007
26125
  export const rateSource: PropTypes.Requireable<io.flow.internal.v0.enums.RateSource>;
25008
26126
  export const reboundConfigurationStatus: PropTypes.Requireable<io.flow.internal.v0.enums.ReboundConfigurationStatus>;
25009
26127
  export const redirectReason: PropTypes.Requireable<io.flow.internal.v0.enums.RedirectReason>;
25010
26128
  export const rejectionReason: PropTypes.Requireable<io.flow.internal.v0.enums.RejectionReason>;
25011
26129
  export const reportInterval: PropTypes.Requireable<io.flow.internal.v0.enums.ReportInterval>;
26130
+ export const reportStatus: PropTypes.Requireable<io.flow.internal.v0.enums.ReportStatus>;
25012
26131
  export const reportingScheme: PropTypes.Requireable<io.flow.internal.v0.enums.ReportingScheme>;
25013
26132
  export const responsibleParty: PropTypes.Requireable<io.flow.internal.v0.enums.ResponsibleParty>;
25014
26133
  export const restrictionAction: PropTypes.Requireable<io.flow.internal.v0.enums.RestrictionAction>;
@@ -25024,6 +26143,7 @@ export const shopifyCheckInventoryErrorCode: PropTypes.Requireable<io.flow.inter
25024
26143
  export const shopifyGrantStatus: PropTypes.Requireable<io.flow.internal.v0.enums.ShopifyGrantStatus>;
25025
26144
  export const shopifyMarketsDangerousGoods: PropTypes.Requireable<io.flow.internal.v0.enums.ShopifyMarketsDangerousGoods>;
25026
26145
  export const shopifyMarketsHtsNumberAvailable: PropTypes.Requireable<io.flow.internal.v0.enums.ShopifyMarketsHtsNumberAvailable>;
26146
+ export const shopifyMarketsQueuedRecordType: PropTypes.Requireable<io.flow.internal.v0.enums.ShopifyMarketsQueuedRecordType>;
25027
26147
  export const shopifyMarketsTradeSector: PropTypes.Requireable<io.flow.internal.v0.enums.ShopifyMarketsTradeSector>;
25028
26148
  export const shopifyMonitoringMonitorReviewStatus: PropTypes.Requireable<io.flow.internal.v0.enums.ShopifyMonitoringMonitorReviewStatus>;
25029
26149
  export const shopifyMonitoringTrackingField: PropTypes.Requireable<io.flow.internal.v0.enums.ShopifyMonitoringTrackingField>;
@@ -25052,7 +26172,9 @@ export const timeseriesType: PropTypes.Requireable<io.flow.internal.v0.enums.Tim
25052
26172
  export const trackingIntegrationType: PropTypes.Requireable<io.flow.internal.v0.enums.TrackingIntegrationType>;
25053
26173
  export const transactionPostingMethod: PropTypes.Requireable<io.flow.internal.v0.enums.TransactionPostingMethod>;
25054
26174
  export const transferMethod: PropTypes.Requireable<io.flow.internal.v0.enums.TransferMethod>;
26175
+ export const trueUpSurchargeType: PropTypes.Requireable<io.flow.internal.v0.enums.TrueUpSurchargeType>;
25055
26176
  export const unclassifiedProductStatus: PropTypes.Requireable<io.flow.internal.v0.enums.UnclassifiedProductStatus>;
26177
+ export const washCarrierActualFileStatus: PropTypes.Requireable<io.flow.internal.v0.enums.WashCarrierActualFileStatus>;
25056
26178
  export const acceptance: PropTypes.Requireable<io.flow.internal.v0.models.Acceptance>;
25057
26179
  export const accountContact: PropTypes.Requireable<io.flow.internal.v0.models.AccountContact>;
25058
26180
  export const accountContactDeleted: PropTypes.Requireable<io.flow.internal.v0.models.AccountContactDeleted>;
@@ -25135,6 +26257,7 @@ export const alertFailureSummary: PropTypes.Requireable<io.flow.internal.v0.mode
25135
26257
  export const alertFailureSummaryDetail: PropTypes.Requireable<io.flow.internal.v0.models.AlertFailureSummaryDetail>;
25136
26258
  export const alertImportSummary: PropTypes.Requireable<io.flow.internal.v0.models.AlertImportSummary>;
25137
26259
  export const alertRequeueSummary: PropTypes.Requireable<io.flow.internal.v0.models.AlertRequeueSummary>;
26260
+ export const algoliaIndexAssignment: PropTypes.Requireable<io.flow.internal.v0.models.AlgoliaIndexAssignment>;
25138
26261
  export const allItemsExport: PropTypes.Requireable<io.flow.internal.v0.models.AllItemsExport>;
25139
26262
  export const allOrganizationsMembership: PropTypes.Requireable<io.flow.internal.v0.models.AllOrganizationsMembership>;
25140
26263
  export const allocationItemReference: PropTypes.Requireable<io.flow.internal.v0.models.AllocationItemReference>;
@@ -25152,6 +26275,7 @@ export const authorizationParametersForm: PropTypes.Requireable<io.flow.internal
25152
26275
  export const authorizedChargeStatus: PropTypes.Requireable<io.flow.internal.v0.models.AuthorizedChargeStatus>;
25153
26276
  export const authorizedLineItemCharge: PropTypes.Requireable<io.flow.internal.v0.models.AuthorizedLineItemCharge>;
25154
26277
  export const authorizedShippingCharge: PropTypes.Requireable<io.flow.internal.v0.models.AuthorizedShippingCharge>;
26278
+ export const autoReviewCriteria: PropTypes.Requireable<io.flow.internal.v0.models.AutoReviewCriteria>;
25155
26279
  export const backfill: PropTypes.Requireable<io.flow.internal.v0.models.Backfill>;
25156
26280
  export const backfillForm: PropTypes.Requireable<io.flow.internal.v0.models.BackfillForm>;
25157
26281
  export const bankAccountReference: PropTypes.Requireable<io.flow.internal.v0.models.BankAccountReference>;
@@ -25178,7 +26302,6 @@ export const billingOrganizationSettingsUpserted: PropTypes.Requireable<io.flow.
25178
26302
  export const billingStatementAttachment: PropTypes.Requireable<io.flow.internal.v0.models.BillingStatementAttachment>;
25179
26303
  export const billingStatementBatch: PropTypes.Requireable<io.flow.internal.v0.models.BillingStatementBatch>;
25180
26304
  export const billingStatementBatchDeleted: PropTypes.Requireable<io.flow.internal.v0.models.BillingStatementBatchDeleted>;
25181
- export const billingStatementBatchReconciliation: PropTypes.Requireable<io.flow.internal.v0.models.BillingStatementBatchReconciliation>;
25182
26305
  export const billingStatementBatchReference: PropTypes.Requireable<io.flow.internal.v0.models.BillingStatementBatchReference>;
25183
26306
  export const billingStatementBatchStatement: PropTypes.Requireable<io.flow.internal.v0.models.BillingStatementBatchStatement>;
25184
26307
  export const billingStatementBatchStatementDeleted: PropTypes.Requireable<io.flow.internal.v0.models.BillingStatementBatchStatementDeleted>;
@@ -25238,6 +26361,8 @@ export const browserBundlePaymentMethods: PropTypes.Requireable<io.flow.internal
25238
26361
  export const bulkClassificationAction: PropTypes.Requireable<io.flow.internal.v0.models.BulkClassificationAction>;
25239
26362
  export const byRuleSnapshot: PropTypes.Requireable<io.flow.internal.v0.models.ByRuleSnapshot>;
25240
26363
  export const calculatedTaxAmount: PropTypes.Requireable<io.flow.internal.v0.models.CalculatedTaxAmount>;
26364
+ export const calculatorDtcePostBody: PropTypes.Requireable<io.flow.internal.v0.models.CalculatorDtcePostBody>;
26365
+ export const calculatorDtceProduct: PropTypes.Requireable<io.flow.internal.v0.models.CalculatorDtceProduct>;
25241
26366
  export const calculatorOrganizationSettings: PropTypes.Requireable<io.flow.internal.v0.models.CalculatorOrganizationSettings>;
25242
26367
  export const calculatorOrganizationSettingsDeleted: PropTypes.Requireable<io.flow.internal.v0.models.CalculatorOrganizationSettingsDeleted>;
25243
26368
  export const calculatorOrganizationSettingsForm: PropTypes.Requireable<io.flow.internal.v0.models.CalculatorOrganizationSettingsForm>;
@@ -25246,6 +26371,7 @@ export const carrierAccount: PropTypes.Requireable<io.flow.internal.v0.models.Ca
25246
26371
  export const carrierAccountDeleted: PropTypes.Requireable<io.flow.internal.v0.models.CarrierAccountDeleted>;
25247
26372
  export const carrierAccountForm: PropTypes.Requireable<io.flow.internal.v0.models.CarrierAccountForm>;
25248
26373
  export const carrierAccountUpsertedV2: PropTypes.Requireable<io.flow.internal.v0.models.CarrierAccountUpsertedV2>;
26374
+ export const carrierAccountValidation: PropTypes.Requireable<io.flow.internal.v0.models.CarrierAccountValidation>;
25249
26375
  export const carrierInvoice: PropTypes.Requireable<io.flow.internal.v0.models.CarrierInvoice>;
25250
26376
  export const catalogImportRequest: PropTypes.Requireable<io.flow.internal.v0.models.CatalogImportRequest>;
25251
26377
  export const catalogItemBatchIndexTask: PropTypes.Requireable<io.flow.internal.v0.models.CatalogItemBatchIndexTask>;
@@ -25254,6 +26380,7 @@ export const catalogItemIndexTask: PropTypes.Requireable<io.flow.internal.v0.mod
25254
26380
  export const catalogItemRegionAvailabilities: PropTypes.Requireable<io.flow.internal.v0.models.CatalogItemRegionAvailabilities>;
25255
26381
  export const catalogItemRegionAvailabilitiesData: PropTypes.Requireable<io.flow.internal.v0.models.CatalogItemRegionAvailabilitiesData>;
25256
26382
  export const catalogItemRegionAvailabilitiesPublished: PropTypes.Requireable<io.flow.internal.v0.models.CatalogItemRegionAvailabilitiesPublished>;
26383
+ export const catalogPublicationSyncValidationError: PropTypes.Requireable<io.flow.internal.v0.models.CatalogPublicationSyncValidationError>;
25257
26384
  export const catalogSettings: PropTypes.Requireable<io.flow.internal.v0.models.CatalogSettings>;
25258
26385
  export const catalogSettingsDeleted: PropTypes.Requireable<io.flow.internal.v0.models.CatalogSettingsDeleted>;
25259
26386
  export const catalogSettingsPutForm: PropTypes.Requireable<io.flow.internal.v0.models.CatalogSettingsPutForm>;
@@ -25706,6 +26833,7 @@ export const classificationWrapper: PropTypes.Requireable<io.flow.internal.v0.mo
25706
26833
  export const classifiedProduct: PropTypes.Requireable<io.flow.internal.v0.models.ClassifiedProduct>;
25707
26834
  export const classifiedProductDetail: PropTypes.Requireable<io.flow.internal.v0.models.ClassifiedProductDetail>;
25708
26835
  export const commercialInvoiceComparison: PropTypes.Requireable<io.flow.internal.v0.models.CommercialInvoiceComparison>;
26836
+ export const companyReference: PropTypes.Requireable<io.flow.internal.v0.models.CompanyReference>;
25709
26837
  export const compliance: PropTypes.Requireable<io.flow.internal.v0.models.Compliance>;
25710
26838
  export const components: PropTypes.Requireable<io.flow.internal.v0.models.Components>;
25711
26839
  export const consumerOptinActivity: PropTypes.Requireable<io.flow.internal.v0.models.ConsumerOptinActivity>;
@@ -25846,10 +26974,13 @@ export const erpFlowFileForm: PropTypes.Requireable<io.flow.internal.v0.models.E
25846
26974
  export const erpFlowVendor: PropTypes.Requireable<io.flow.internal.v0.models.ErpFlowVendor>;
25847
26975
  export const erpPriorityFile: PropTypes.Requireable<io.flow.internal.v0.models.ErpPriorityFile>;
25848
26976
  export const erpPriorityFileForm: PropTypes.Requireable<io.flow.internal.v0.models.ErpPriorityFileForm>;
26977
+ export const erpPriorityVendor: PropTypes.Requireable<io.flow.internal.v0.models.ErpPriorityVendor>;
26978
+ export const erpPriorityVendorForm: PropTypes.Requireable<io.flow.internal.v0.models.ErpPriorityVendorForm>;
25849
26979
  export const erpVendor: PropTypes.Requireable<io.flow.internal.v0.models.ErpVendor>;
25850
26980
  export const erpVendorStatus: PropTypes.Requireable<io.flow.internal.v0.models.ErpVendorStatus>;
25851
26981
  export const erpVendorStatusEntity: PropTypes.Requireable<io.flow.internal.v0.models.ErpVendorStatusEntity>;
25852
- export const erpVendorStatusFile: PropTypes.Requireable<io.flow.internal.v0.models.ErpVendorStatusFile>;
26982
+ export const erpVendorStatusFlowFile: PropTypes.Requireable<io.flow.internal.v0.models.ErpVendorStatusFlowFile>;
26983
+ export const erpVendorStatusPriorityFile: PropTypes.Requireable<io.flow.internal.v0.models.ErpVendorStatusPriorityFile>;
25853
26984
  export const exclusionRuleDeleted: PropTypes.Requireable<io.flow.internal.v0.models.ExclusionRuleDeleted>;
25854
26985
  export const exclusionRuleExportRequest: PropTypes.Requireable<io.flow.internal.v0.models.ExclusionRuleExportRequest>;
25855
26986
  export const exclusionRuleUpserted: PropTypes.Requireable<io.flow.internal.v0.models.ExclusionRuleUpserted>;
@@ -25942,6 +27073,7 @@ export const flowLabProjectPostForm: PropTypes.Requireable<io.flow.internal.v0.m
25942
27073
  export const flowLabProjectPutForm: PropTypes.Requireable<io.flow.internal.v0.models.FlowLabProjectPutForm>;
25943
27074
  export const flowLabelSetting: PropTypes.Requireable<io.flow.internal.v0.models.FlowLabelSetting>;
25944
27075
  export const flowLabelSettingForm: PropTypes.Requireable<io.flow.internal.v0.models.FlowLabelSettingForm>;
27076
+ export const flowShopValidationError: PropTypes.Requireable<io.flow.internal.v0.models.FlowShopValidationError>;
25945
27077
  export const fraudPendingReview: PropTypes.Requireable<io.flow.internal.v0.models.FraudPendingReview>;
25946
27078
  export const fraudPendingReviewDeleted: PropTypes.Requireable<io.flow.internal.v0.models.FraudPendingReviewDeleted>;
25947
27079
  export const fraudPendingReviewDetail: PropTypes.Requireable<io.flow.internal.v0.models.FraudPendingReviewDetail>;
@@ -25968,11 +27100,21 @@ export const ftpSettingVersion: PropTypes.Requireable<io.flow.internal.v0.models
25968
27100
  export const ftpSettingsPaths: PropTypes.Requireable<io.flow.internal.v0.models.FtpSettingsPaths>;
25969
27101
  export const fuelSurchargeServiceFeeAmountByWeightPutForm: PropTypes.Requireable<io.flow.internal.v0.models.FuelSurchargeServiceFeeAmountByWeightPutForm>;
25970
27102
  export const fuelSurchargeServiceFeePercentPutForm: PropTypes.Requireable<io.flow.internal.v0.models.FuelSurchargeServiceFeePercentPutForm>;
27103
+ export const fulfillment: PropTypes.Requireable<io.flow.internal.v0.models.Fulfillment>;
25971
27104
  export const fulfillmentActionForm: PropTypes.Requireable<io.flow.internal.v0.models.FulfillmentActionForm>;
27105
+ export const fulfillmentBusiness: PropTypes.Requireable<io.flow.internal.v0.models.FulfillmentBusiness>;
25972
27106
  export const fulfillmentCancel: PropTypes.Requireable<io.flow.internal.v0.models.FulfillmentCancel>;
25973
27107
  export const fulfillmentInternalExperienceReference: PropTypes.Requireable<io.flow.internal.v0.models.FulfillmentInternalExperienceReference>;
27108
+ export const fulfillmentLine: PropTypes.Requireable<io.flow.internal.v0.models.FulfillmentLine>;
27109
+ export const fulfillmentOrigin: PropTypes.Requireable<io.flow.internal.v0.models.FulfillmentOrigin>;
27110
+ export const fulfillmentProofExternalFulfillmentProofReference: PropTypes.Requireable<io.flow.internal.v0.models.FulfillmentProofExternalFulfillmentProofReference>;
27111
+ export const fulfillmentProofLabelTrackingReference: PropTypes.Requireable<io.flow.internal.v0.models.FulfillmentProofLabelTrackingReference>;
27112
+ export const fulfillmentProofShippingNotificationReference: PropTypes.Requireable<io.flow.internal.v0.models.FulfillmentProofShippingNotificationReference>;
27113
+ export const fulfillmentReference: PropTypes.Requireable<io.flow.internal.v0.models.FulfillmentReference>;
25974
27114
  export const fulfillmentShipmentTracking: PropTypes.Requireable<io.flow.internal.v0.models.FulfillmentShipmentTracking>;
27115
+ export const fulfillmentShipping: PropTypes.Requireable<io.flow.internal.v0.models.FulfillmentShipping>;
25975
27116
  export const fulfillmentSnapshot: PropTypes.Requireable<io.flow.internal.v0.models.FulfillmentSnapshot>;
27117
+ export const fulfillmentSubsidyBreakdown: PropTypes.Requireable<io.flow.internal.v0.models.FulfillmentSubsidyBreakdown>;
25976
27118
  export const fxFee: PropTypes.Requireable<io.flow.internal.v0.models.FxFee>;
25977
27119
  export const fxRevenueRecognition: PropTypes.Requireable<io.flow.internal.v0.models.FxRevenueRecognition>;
25978
27120
  export const fxRevenueRecognitionAccount: PropTypes.Requireable<io.flow.internal.v0.models.FxRevenueRecognitionAccount>;
@@ -25983,6 +27125,7 @@ export const fxRevenueRecognitionRate: PropTypes.Requireable<io.flow.internal.v0
25983
27125
  export const fxRevenueRecognitionSource: PropTypes.Requireable<io.flow.internal.v0.models.FxRevenueRecognitionSource>;
25984
27126
  export const generateLoadMultipleOrgs: PropTypes.Requireable<io.flow.internal.v0.models.GenerateLoadMultipleOrgs>;
25985
27127
  export const generateLoadSingleOrg: PropTypes.Requireable<io.flow.internal.v0.models.GenerateLoadSingleOrg>;
27128
+ export const genericValidationError: PropTypes.Requireable<io.flow.internal.v0.models.GenericValidationError>;
25986
27129
  export const giftCard: PropTypes.Requireable<io.flow.internal.v0.models.GiftCard>;
25987
27130
  export const giftCardAuthorizationError: PropTypes.Requireable<io.flow.internal.v0.models.GiftCardAuthorizationError>;
25988
27131
  export const giftCardForm: PropTypes.Requireable<io.flow.internal.v0.models.GiftCardForm>;
@@ -26003,6 +27146,8 @@ export const harmonizationItemClassificationUpserted: PropTypes.Requireable<io.f
26003
27146
  export const harmonizationItemSummary: PropTypes.Requireable<io.flow.internal.v0.models.HarmonizationItemSummary>;
26004
27147
  export const harmonizationMlModelSummary: PropTypes.Requireable<io.flow.internal.v0.models.HarmonizationMlModelSummary>;
26005
27148
  export const harmonizationPhraseSuggestionRequestImport: PropTypes.Requireable<io.flow.internal.v0.models.HarmonizationPhraseSuggestionRequestImport>;
27149
+ export const harmonizationThreshold: PropTypes.Requireable<io.flow.internal.v0.models.HarmonizationThreshold>;
27150
+ export const harmonizationThresholdForm: PropTypes.Requireable<io.flow.internal.v0.models.HarmonizationThresholdForm>;
26006
27151
  export const harmonizationUnclassifiedStatistics: PropTypes.Requireable<io.flow.internal.v0.models.HarmonizationUnclassifiedStatistics>;
26007
27152
  export const harmonizeFullyRequestV2: PropTypes.Requireable<io.flow.internal.v0.models.HarmonizeFullyRequestV2>;
26008
27153
  export const harmonizedItemsHs6Export: PropTypes.Requireable<io.flow.internal.v0.models.HarmonizedItemsHs6Export>;
@@ -26065,6 +27210,8 @@ export const hybrisCatalogItemsImportRequest: PropTypes.Requireable<io.flow.inte
26065
27210
  export const hybrisCatalogItemsImportRequestData: PropTypes.Requireable<io.flow.internal.v0.models.HybrisCatalogItemsImportRequestData>;
26066
27211
  export const importCompleted: PropTypes.Requireable<io.flow.internal.v0.models.ImportCompleted>;
26067
27212
  export const importFailed: PropTypes.Requireable<io.flow.internal.v0.models.ImportFailed>;
27213
+ export const indexAssignmentDeleted: PropTypes.Requireable<io.flow.internal.v0.models.IndexAssignmentDeleted>;
27214
+ export const indexAssignmentUpserted: PropTypes.Requireable<io.flow.internal.v0.models.IndexAssignmentUpserted>;
26068
27215
  export const installForm: PropTypes.Requireable<io.flow.internal.v0.models.InstallForm>;
26069
27216
  export const internalAdyenAuthorizationDetails: PropTypes.Requireable<io.flow.internal.v0.models.InternalAdyenAuthorizationDetails>;
26070
27217
  export const internalAfterpayAuthorizationDetails: PropTypes.Requireable<io.flow.internal.v0.models.InternalAfterpayAuthorizationDetails>;
@@ -26122,6 +27269,7 @@ export const itemSalesMarginPostForm: PropTypes.Requireable<io.flow.internal.v0.
26122
27269
  export const itemSalesMarginPutForm: PropTypes.Requireable<io.flow.internal.v0.models.ItemSalesMarginPutForm>;
26123
27270
  export const itemSalesMarginUpserted: PropTypes.Requireable<io.flow.internal.v0.models.ItemSalesMarginUpserted>;
26124
27271
  export const itemSalesMarginVersion: PropTypes.Requireable<io.flow.internal.v0.models.ItemSalesMarginVersion>;
27272
+ export const itemSummary: PropTypes.Requireable<io.flow.internal.v0.models.ItemSummary>;
26125
27273
  export const itemValuesForm: PropTypes.Requireable<io.flow.internal.v0.models.ItemValuesForm>;
26126
27274
  export const itemsShipped: PropTypes.Requireable<io.flow.internal.v0.models.ItemsShipped>;
26127
27275
  export const key: PropTypes.Requireable<io.flow.internal.v0.models.Key>;
@@ -26133,23 +27281,41 @@ export const labProjectSettingsForm: PropTypes.Requireable<io.flow.internal.v0.m
26133
27281
  export const labProjectSettingsFormAcceptance: PropTypes.Requireable<io.flow.internal.v0.models.LabProjectSettingsFormAcceptance>;
26134
27282
  export const labelAliases: PropTypes.Requireable<io.flow.internal.v0.models.LabelAliases>;
26135
27283
  export const labelAssociation: PropTypes.Requireable<io.flow.internal.v0.models.LabelAssociation>;
27284
+ export const labelBase: PropTypes.Requireable<io.flow.internal.v0.models.LabelBase>;
26136
27285
  export const labelCancellationError: PropTypes.Requireable<io.flow.internal.v0.models.LabelCancellationError>;
26137
27286
  export const labelCreationJob: PropTypes.Requireable<io.flow.internal.v0.models.LabelCreationJob>;
26138
27287
  export const labelCreationJobSummary: PropTypes.Requireable<io.flow.internal.v0.models.LabelCreationJobSummary>;
26139
27288
  export const labelCreationRequestForm: PropTypes.Requireable<io.flow.internal.v0.models.LabelCreationRequestForm>;
27289
+ export const labelDestination: PropTypes.Requireable<io.flow.internal.v0.models.LabelDestination>;
26140
27290
  export const labelGenerationAddressFailureStatusUpdateForm: PropTypes.Requireable<io.flow.internal.v0.models.LabelGenerationAddressFailureStatusUpdateForm>;
26141
27291
  export const labelGenerationAddressFailures: PropTypes.Requireable<io.flow.internal.v0.models.LabelGenerationAddressFailures>;
26142
27292
  export const labelGenerationSettings: PropTypes.Requireable<io.flow.internal.v0.models.LabelGenerationSettings>;
26143
27293
  export const labelGenerationSettingsDeleted: PropTypes.Requireable<io.flow.internal.v0.models.LabelGenerationSettingsDeleted>;
26144
27294
  export const labelGenerationSettingsForm: PropTypes.Requireable<io.flow.internal.v0.models.LabelGenerationSettingsForm>;
26145
27295
  export const labelGenerationSettingsUpserted: PropTypes.Requireable<io.flow.internal.v0.models.LabelGenerationSettingsUpserted>;
27296
+ export const labelInvoiceRequest: PropTypes.Requireable<io.flow.internal.v0.models.LabelInvoiceRequest>;
27297
+ export const labelInvoiceRequestDeleted: PropTypes.Requireable<io.flow.internal.v0.models.LabelInvoiceRequestDeleted>;
27298
+ export const labelInvoiceRequestUpserted: PropTypes.Requireable<io.flow.internal.v0.models.LabelInvoiceRequestUpserted>;
27299
+ export const labelInvoiceResponseForm: PropTypes.Requireable<io.flow.internal.v0.models.LabelInvoiceResponseForm>;
27300
+ export const labelMetadata: PropTypes.Requireable<io.flow.internal.v0.models.LabelMetadata>;
27301
+ export const labelRequestError: PropTypes.Requireable<io.flow.internal.v0.models.LabelRequestError>;
27302
+ export const labelRequestErrorDeleted: PropTypes.Requireable<io.flow.internal.v0.models.LabelRequestErrorDeleted>;
27303
+ export const labelRequestErrorUpserted: PropTypes.Requireable<io.flow.internal.v0.models.LabelRequestErrorUpserted>;
27304
+ export const labelResponseUnits: PropTypes.Requireable<io.flow.internal.v0.models.LabelResponseUnits>;
26146
27305
  export const labelSummary: PropTypes.Requireable<io.flow.internal.v0.models.LabelSummary>;
27306
+ export const labelSurcharge: PropTypes.Requireable<io.flow.internal.v0.models.LabelSurcharge>;
27307
+ export const labelSurchargeDetailFlat: PropTypes.Requireable<io.flow.internal.v0.models.LabelSurchargeDetailFlat>;
27308
+ export const labelSurchargeDetailPerWeightUnit: PropTypes.Requireable<io.flow.internal.v0.models.LabelSurchargeDetailPerWeightUnit>;
27309
+ export const labelSurchargeDetailPercentage: PropTypes.Requireable<io.flow.internal.v0.models.LabelSurchargeDetailPercentage>;
27310
+ export const labelSurchargeForm: PropTypes.Requireable<io.flow.internal.v0.models.LabelSurchargeForm>;
27311
+ export const labelSurchargeSingleForm: PropTypes.Requireable<io.flow.internal.v0.models.LabelSurchargeSingleForm>;
26147
27312
  export const labelTaxonomy: PropTypes.Requireable<io.flow.internal.v0.models.LabelTaxonomy>;
26148
27313
  export const labelTrackingSummaryDeleted: PropTypes.Requireable<io.flow.internal.v0.models.LabelTrackingSummaryDeleted>;
26149
27314
  export const labelTrackingSummaryUpserted: PropTypes.Requireable<io.flow.internal.v0.models.LabelTrackingSummaryUpserted>;
26150
27315
  export const labelTransaction: PropTypes.Requireable<io.flow.internal.v0.models.LabelTransaction>;
26151
27316
  export const labelTransactionDeleted: PropTypes.Requireable<io.flow.internal.v0.models.LabelTransactionDeleted>;
26152
27317
  export const labelTransactionUpserted: PropTypes.Requireable<io.flow.internal.v0.models.LabelTransactionUpserted>;
27318
+ export const labelUnits: PropTypes.Requireable<io.flow.internal.v0.models.LabelUnits>;
26153
27319
  export const labeledContent: PropTypes.Requireable<io.flow.internal.v0.models.LabeledContent>;
26154
27320
  export const labelsPrediction: PropTypes.Requireable<io.flow.internal.v0.models.LabelsPrediction>;
26155
27321
  export const landedCostItem: PropTypes.Requireable<io.flow.internal.v0.models.LandedCostItem>;
@@ -26187,7 +27353,6 @@ export const localizedPriceBookItemData: PropTypes.Requireable<io.flow.internal.
26187
27353
  export const localizedPriceBookItemDeleted: PropTypes.Requireable<io.flow.internal.v0.models.LocalizedPriceBookItemDeleted>;
26188
27354
  export const localizedPriceBookItemUpserted: PropTypes.Requireable<io.flow.internal.v0.models.LocalizedPriceBookItemUpserted>;
26189
27355
  export const location: PropTypes.Requireable<io.flow.internal.v0.models.Location>;
26190
- export const logisticsCenterCheck: PropTypes.Requireable<io.flow.internal.v0.models.LogisticsCenterCheck>;
26191
27356
  export const logo: PropTypes.Requireable<io.flow.internal.v0.models.Logo>;
26192
27357
  export const loyaltyProgram: PropTypes.Requireable<io.flow.internal.v0.models.LoyaltyProgram>;
26193
27358
  export const loyaltyProgramMessage: PropTypes.Requireable<io.flow.internal.v0.models.LoyaltyProgramMessage>;
@@ -26246,8 +27411,19 @@ export const marketingGatewaySupportedChannelDetails: PropTypes.Requireable<io.f
26246
27411
  export const marketsOrder: PropTypes.Requireable<io.flow.internal.v0.models.MarketsOrder>;
26247
27412
  export const merchantApplicationSummaries: PropTypes.Requireable<io.flow.internal.v0.models.MerchantApplicationSummaries>;
26248
27413
  export const merchantApplicationSummary: PropTypes.Requireable<io.flow.internal.v0.models.MerchantApplicationSummary>;
27414
+ export const merchantCharges: PropTypes.Requireable<io.flow.internal.v0.models.MerchantCharges>;
27415
+ export const merchantFees: PropTypes.Requireable<io.flow.internal.v0.models.MerchantFees>;
27416
+ export const merchantGuidAssignment: PropTypes.Requireable<io.flow.internal.v0.models.MerchantGuidAssignment>;
27417
+ export const merchantGuidAssignmentDeleted: PropTypes.Requireable<io.flow.internal.v0.models.MerchantGuidAssignmentDeleted>;
27418
+ export const merchantGuidAssignmentUpserted: PropTypes.Requireable<io.flow.internal.v0.models.MerchantGuidAssignmentUpserted>;
26249
27419
  export const merchantOfRecordEntitySettings: PropTypes.Requireable<io.flow.internal.v0.models.MerchantOfRecordEntitySettings>;
26250
27420
  export const merchantOfRecordEntitySettingsForm: PropTypes.Requireable<io.flow.internal.v0.models.MerchantOfRecordEntitySettingsForm>;
27421
+ export const merchantSearchResult: PropTypes.Requireable<io.flow.internal.v0.models.MerchantSearchResult>;
27422
+ export const merchantSubsidies: PropTypes.Requireable<io.flow.internal.v0.models.MerchantSubsidies>;
27423
+ export const merchantSummary: PropTypes.Requireable<io.flow.internal.v0.models.MerchantSummary>;
27424
+ export const metadataProposition: PropTypes.Requireable<io.flow.internal.v0.models.MetadataProposition>;
27425
+ export const metadataRatecard: PropTypes.Requireable<io.flow.internal.v0.models.MetadataRatecard>;
27426
+ export const metadataWeights: PropTypes.Requireable<io.flow.internal.v0.models.MetadataWeights>;
26251
27427
  export const nextBillingStatement: PropTypes.Requireable<io.flow.internal.v0.models.NextBillingStatement>;
26252
27428
  export const noCalculatedTaxAmount: PropTypes.Requireable<io.flow.internal.v0.models.NoCalculatedTaxAmount>;
26253
27429
  export const noClassificationForm: PropTypes.Requireable<io.flow.internal.v0.models.NoClassificationForm>;
@@ -26296,9 +27472,11 @@ export const orderRevenueTimelineDataPoint: PropTypes.Requireable<io.flow.intern
26296
27472
  export const orderServiceChangeCsvForm: PropTypes.Requireable<io.flow.internal.v0.models.OrderServiceChangeCsvForm>;
26297
27473
  export const orderShipped: PropTypes.Requireable<io.flow.internal.v0.models.OrderShipped>;
26298
27474
  export const orderSubmissionForm: PropTypes.Requireable<io.flow.internal.v0.models.OrderSubmissionForm>;
27475
+ export const orderSummary: PropTypes.Requireable<io.flow.internal.v0.models.OrderSummary>;
26299
27476
  export const orderTransaction: PropTypes.Requireable<io.flow.internal.v0.models.OrderTransaction>;
26300
27477
  export const orderTransactionDeleted: PropTypes.Requireable<io.flow.internal.v0.models.OrderTransactionDeleted>;
26301
27478
  export const orderTransactionUpserted: PropTypes.Requireable<io.flow.internal.v0.models.OrderTransactionUpserted>;
27479
+ export const orderValidationError: PropTypes.Requireable<io.flow.internal.v0.models.OrderValidationError>;
26302
27480
  export const organizationAccount: PropTypes.Requireable<io.flow.internal.v0.models.OrganizationAccount>;
26303
27481
  export const organizationAccountDeleted: PropTypes.Requireable<io.flow.internal.v0.models.OrganizationAccountDeleted>;
26304
27482
  export const organizationAccountUpsertedV2: PropTypes.Requireable<io.flow.internal.v0.models.OrganizationAccountUpsertedV2>;
@@ -26316,6 +27494,10 @@ export const organizationCurrencySettingDeleted: PropTypes.Requireable<io.flow.i
26316
27494
  export const organizationCurrencySettingForm: PropTypes.Requireable<io.flow.internal.v0.models.OrganizationCurrencySettingForm>;
26317
27495
  export const organizationCurrencySettingUpserted: PropTypes.Requireable<io.flow.internal.v0.models.OrganizationCurrencySettingUpserted>;
26318
27496
  export const organizationCurrencySettingVersion: PropTypes.Requireable<io.flow.internal.v0.models.OrganizationCurrencySettingVersion>;
27497
+ export const organizationDeactivation: PropTypes.Requireable<io.flow.internal.v0.models.OrganizationDeactivation>;
27498
+ export const organizationDeactivationDeleted: PropTypes.Requireable<io.flow.internal.v0.models.OrganizationDeactivationDeleted>;
27499
+ export const organizationDeactivationForm: PropTypes.Requireable<io.flow.internal.v0.models.OrganizationDeactivationForm>;
27500
+ export const organizationDeactivationUpserted: PropTypes.Requireable<io.flow.internal.v0.models.OrganizationDeactivationUpserted>;
26319
27501
  export const organizationDebugTransaction: PropTypes.Requireable<io.flow.internal.v0.models.OrganizationDebugTransaction>;
26320
27502
  export const organizationInvitationAcceptForm: PropTypes.Requireable<io.flow.internal.v0.models.OrganizationInvitationAcceptForm>;
26321
27503
  export const organizationMembershipCopy: PropTypes.Requireable<io.flow.internal.v0.models.OrganizationMembershipCopy>;
@@ -26342,6 +27524,7 @@ export const organizationSettingsForm: PropTypes.Requireable<io.flow.internal.v0
26342
27524
  export const organizationStatusChange: PropTypes.Requireable<io.flow.internal.v0.models.OrganizationStatusChange>;
26343
27525
  export const organizationStatusChangeDeleted: PropTypes.Requireable<io.flow.internal.v0.models.OrganizationStatusChangeDeleted>;
26344
27526
  export const organizationStatusChangeUpserted: PropTypes.Requireable<io.flow.internal.v0.models.OrganizationStatusChangeUpserted>;
27527
+ export const organizationsAuditCheckReport: PropTypes.Requireable<io.flow.internal.v0.models.OrganizationsAuditCheckReport>;
26345
27528
  export const partner: PropTypes.Requireable<io.flow.internal.v0.models.Partner>;
26346
27529
  export const partnerAuthorization: PropTypes.Requireable<io.flow.internal.v0.models.PartnerAuthorization>;
26347
27530
  export const partnerAuthorizationForm: PropTypes.Requireable<io.flow.internal.v0.models.PartnerAuthorizationForm>;
@@ -26369,6 +27552,7 @@ export const paymentProcessorAccountUpserted: PropTypes.Requireable<io.flow.inte
26369
27552
  export const paymentProcessorMerchantDeleted: PropTypes.Requireable<io.flow.internal.v0.models.PaymentProcessorMerchantDeleted>;
26370
27553
  export const paymentProcessorMerchantUpserted: PropTypes.Requireable<io.flow.internal.v0.models.PaymentProcessorMerchantUpserted>;
26371
27554
  export const paymentSummaryV2: PropTypes.Requireable<io.flow.internal.v0.models.PaymentSummaryV2>;
27555
+ export const payoutStatusCounts: PropTypes.Requireable<io.flow.internal.v0.models.PayoutStatusCounts>;
26372
27556
  export const paypalAccount: PropTypes.Requireable<io.flow.internal.v0.models.PaypalAccount>;
26373
27557
  export const paypalAccountModificationForm: PropTypes.Requireable<io.flow.internal.v0.models.PaypalAccountModificationForm>;
26374
27558
  export const paypalAccountPutForm: PropTypes.Requireable<io.flow.internal.v0.models.PaypalAccountPutForm>;
@@ -26424,11 +27608,13 @@ export const productHarmonization: PropTypes.Requireable<io.flow.internal.v0.mod
26424
27608
  export const productHarmonizationForm: PropTypes.Requireable<io.flow.internal.v0.models.ProductHarmonizationForm>;
26425
27609
  export const productLabels: PropTypes.Requireable<io.flow.internal.v0.models.ProductLabels>;
26426
27610
  export const productListSettingsForm: PropTypes.Requireable<io.flow.internal.v0.models.ProductListSettingsForm>;
27611
+ export const productRestrictionResultValidationError: PropTypes.Requireable<io.flow.internal.v0.models.ProductRestrictionResultValidationError>;
26427
27612
  export const productReviewHistory: PropTypes.Requireable<io.flow.internal.v0.models.ProductReviewHistory>;
26428
27613
  export const proofOfPostingExternallyFulfilled: PropTypes.Requireable<io.flow.internal.v0.models.ProofOfPostingExternallyFulfilled>;
26429
27614
  export const proofOfPostingFulfilled: PropTypes.Requireable<io.flow.internal.v0.models.ProofOfPostingFulfilled>;
26430
27615
  export const proofOfPostingOrderCancellation: PropTypes.Requireable<io.flow.internal.v0.models.ProofOfPostingOrderCancellation>;
26431
27616
  export const proofOfPostingShippingNotification: PropTypes.Requireable<io.flow.internal.v0.models.ProofOfPostingShippingNotification>;
27617
+ export const queuedRecord: PropTypes.Requireable<io.flow.internal.v0.models.QueuedRecord>;
26432
27618
  export const quoteRequest: PropTypes.Requireable<io.flow.internal.v0.models.QuoteRequest>;
26433
27619
  export const rateAndRuleItem: PropTypes.Requireable<io.flow.internal.v0.models.RateAndRuleItem>;
26434
27620
  export const rateAndRuleItemForm: PropTypes.Requireable<io.flow.internal.v0.models.RateAndRuleItemForm>;
@@ -26489,8 +27675,11 @@ export const redirect: PropTypes.Requireable<io.flow.internal.v0.models.Redirect
26489
27675
  export const redirectActionCompleted: PropTypes.Requireable<io.flow.internal.v0.models.RedirectActionCompleted>;
26490
27676
  export const registeredExporterTariffEligibilityData: PropTypes.Requireable<io.flow.internal.v0.models.RegisteredExporterTariffEligibilityData>;
26491
27677
  export const registeredExporterTariffEligibilityForm: PropTypes.Requireable<io.flow.internal.v0.models.RegisteredExporterTariffEligibilityForm>;
27678
+ export const report: PropTypes.Requireable<io.flow.internal.v0.models.Report>;
27679
+ export const reportForm: PropTypes.Requireable<io.flow.internal.v0.models.ReportForm>;
26492
27680
  export const reportRuleDecision: PropTypes.Requireable<io.flow.internal.v0.models.ReportRuleDecision>;
26493
27681
  export const reportSummary: PropTypes.Requireable<io.flow.internal.v0.models.ReportSummary>;
27682
+ export const reportingDetails: PropTypes.Requireable<io.flow.internal.v0.models.ReportingDetails>;
26494
27683
  export const requeueRequestForm: PropTypes.Requireable<io.flow.internal.v0.models.RequeueRequestForm>;
26495
27684
  export const restrictionCategory: PropTypes.Requireable<io.flow.internal.v0.models.RestrictionCategory>;
26496
27685
  export const restrictionFilter: PropTypes.Requireable<io.flow.internal.v0.models.RestrictionFilter>;
@@ -26518,6 +27707,8 @@ export const resyncByDestinations: PropTypes.Requireable<io.flow.internal.v0.mod
26518
27707
  export const resyncByHs6Destinations: PropTypes.Requireable<io.flow.internal.v0.models.ResyncByHs6Destinations>;
26519
27708
  export const resyncByHs6Origin: PropTypes.Requireable<io.flow.internal.v0.models.ResyncByHs6Origin>;
26520
27709
  export const resyncFallbackRates: PropTypes.Requireable<io.flow.internal.v0.models.ResyncFallbackRates>;
27710
+ export const retracking: PropTypes.Requireable<io.flow.internal.v0.models.Retracking>;
27711
+ export const retrackingForm: PropTypes.Requireable<io.flow.internal.v0.models.RetrackingForm>;
26521
27712
  export const returnPolicyDeleted: PropTypes.Requireable<io.flow.internal.v0.models.ReturnPolicyDeleted>;
26522
27713
  export const returnPolicyItemResultDeleted: PropTypes.Requireable<io.flow.internal.v0.models.ReturnPolicyItemResultDeleted>;
26523
27714
  export const returnPolicyItemResultUpserted: PropTypes.Requireable<io.flow.internal.v0.models.ReturnPolicyItemResultUpserted>;
@@ -26526,6 +27717,8 @@ export const returnSummary: PropTypes.Requireable<io.flow.internal.v0.models.Ret
26526
27717
  export const routingAccount: PropTypes.Requireable<io.flow.internal.v0.models.RoutingAccount>;
26527
27718
  export const routingMerchant: PropTypes.Requireable<io.flow.internal.v0.models.RoutingMerchant>;
26528
27719
  export const routingProcessor: PropTypes.Requireable<io.flow.internal.v0.models.RoutingProcessor>;
27720
+ export const sandboxSetup: PropTypes.Requireable<io.flow.internal.v0.models.SandboxSetup>;
27721
+ export const sandboxSetupForm: PropTypes.Requireable<io.flow.internal.v0.models.SandboxSetupForm>;
26529
27722
  export const screen: PropTypes.Requireable<io.flow.internal.v0.models.Screen>;
26530
27723
  export const screenForm: PropTypes.Requireable<io.flow.internal.v0.models.ScreenForm>;
26531
27724
  export const searchAuthorization: PropTypes.Requireable<io.flow.internal.v0.models.SearchAuthorization>;
@@ -26547,6 +27740,7 @@ export const sfExpress: PropTypes.Requireable<io.flow.internal.v0.models.SfExpre
26547
27740
  export const shippedItemValue: PropTypes.Requireable<io.flow.internal.v0.models.ShippedItemValue>;
26548
27741
  export const shipperAccountInfoForm: PropTypes.Requireable<io.flow.internal.v0.models.ShipperAccountInfoForm>;
26549
27742
  export const shippingLane: PropTypes.Requireable<io.flow.internal.v0.models.ShippingLane>;
27743
+ export const shippingMethodReference: PropTypes.Requireable<io.flow.internal.v0.models.ShippingMethodReference>;
26550
27744
  export const shop: PropTypes.Requireable<io.flow.internal.v0.models.Shop>;
26551
27745
  export const shopForm: PropTypes.Requireable<io.flow.internal.v0.models.ShopForm>;
26552
27746
  export const shopVersion: PropTypes.Requireable<io.flow.internal.v0.models.ShopVersion>;
@@ -26565,10 +27759,16 @@ export const shopifyGiftCardRedemptionForm: PropTypes.Requireable<io.flow.intern
26565
27759
  export const shopifyGiftCardReversal: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyGiftCardReversal>;
26566
27760
  export const shopifyGiftCardReversalForm: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyGiftCardReversalForm>;
26567
27761
  export const shopifyGrantsCheck: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyGrantsCheck>;
27762
+ export const shopifyMarketsDiscrepancy: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMarketsDiscrepancy>;
27763
+ export const shopifyMarketsDiscrepancyData: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMarketsDiscrepancyData>;
26568
27764
  export const shopifyMarketsIncorporationCountry: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMarketsIncorporationCountry>;
27765
+ export const shopifyMarketsInternalOrderMetrics: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMarketsInternalOrderMetrics>;
27766
+ export const shopifyMarketsMetricsDeleted: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMarketsMetricsDeleted>;
27767
+ export const shopifyMarketsMetricsUpserted: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMarketsMetricsUpserted>;
26569
27768
  export const shopifyMarketsOrder: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMarketsOrder>;
26570
27769
  export const shopifyMarketsOrderDeleted: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMarketsOrderDeleted>;
26571
27770
  export const shopifyMarketsOrderUpserted: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMarketsOrderUpserted>;
27771
+ export const shopifyMarketsOrdersMetrics: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMarketsOrdersMetrics>;
26572
27772
  export const shopifyMarketsShop: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMarketsShop>;
26573
27773
  export const shopifyMarketsShopDeleted: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMarketsShopDeleted>;
26574
27774
  export const shopifyMarketsShopForm: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMarketsShopForm>;
@@ -26576,6 +27776,7 @@ export const shopifyMarketsShopStatisticsDeleted: PropTypes.Requireable<io.flow.
26576
27776
  export const shopifyMarketsShopStatisticsUpserted: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMarketsShopStatisticsUpserted>;
26577
27777
  export const shopifyMarketsShopSummary: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMarketsShopSummary>;
26578
27778
  export const shopifyMarketsShopUpserted: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMarketsShopUpserted>;
27779
+ export const shopifyMarketsShopifyOrderMetrics: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMarketsShopifyOrderMetrics>;
26579
27780
  export const shopifyMarketsSubsidiaryCompany: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMarketsSubsidiaryCompany>;
26580
27781
  export const shopifyMarketsSync: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMarketsSync>;
26581
27782
  export const shopifyMarketsWebhookRegistration: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMarketsWebhookRegistration>;
@@ -26624,9 +27825,12 @@ export const shopifyPromotionRule: PropTypes.Requireable<io.flow.internal.v0.mod
26624
27825
  export const shopifyShopDeleted: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyShopDeleted>;
26625
27826
  export const shopifyShopStatistics: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyShopStatistics>;
26626
27827
  export const shopifyShopUpserted: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyShopUpserted>;
27828
+ export const shopifyStorePassword: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyStorePassword>;
26627
27829
  export const shopifyWebhook: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyWebhook>;
26628
27830
  export const shopifyWebhookEvent: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyWebhookEvent>;
26629
27831
  export const shopifyWebhookForm: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyWebhookForm>;
27832
+ export const shopperFees: PropTypes.Requireable<io.flow.internal.v0.models.ShopperFees>;
27833
+ export const shopperSummary: PropTypes.Requireable<io.flow.internal.v0.models.ShopperSummary>;
26630
27834
  export const simpleAccountReference: PropTypes.Requireable<io.flow.internal.v0.models.SimpleAccountReference>;
26631
27835
  export const simplifiedItemLabel: PropTypes.Requireable<io.flow.internal.v0.models.SimplifiedItemLabel>;
26632
27836
  export const simplifiedTaxonomyCategory: PropTypes.Requireable<io.flow.internal.v0.models.SimplifiedTaxonomyCategory>;
@@ -26732,12 +27936,19 @@ export const trackingUpserted: PropTypes.Requireable<io.flow.internal.v0.models.
26732
27936
  export const transactionAdjustment: PropTypes.Requireable<io.flow.internal.v0.models.TransactionAdjustment>;
26733
27937
  export const transactionAdjustmentForm: PropTypes.Requireable<io.flow.internal.v0.models.TransactionAdjustmentForm>;
26734
27938
  export const transactionReference: PropTypes.Requireable<io.flow.internal.v0.models.TransactionReference>;
27939
+ export const transactionStatement: PropTypes.Requireable<io.flow.internal.v0.models.TransactionStatement>;
27940
+ export const transactionStatementDeleted: PropTypes.Requireable<io.flow.internal.v0.models.TransactionStatementDeleted>;
27941
+ export const transactionStatementUpserted: PropTypes.Requireable<io.flow.internal.v0.models.TransactionStatementUpserted>;
26735
27942
  export const transferTransaction: PropTypes.Requireable<io.flow.internal.v0.models.TransferTransaction>;
26736
27943
  export const transferTransactionDeleted: PropTypes.Requireable<io.flow.internal.v0.models.TransferTransactionDeleted>;
26737
27944
  export const transferTransactionDeletedV2: PropTypes.Requireable<io.flow.internal.v0.models.TransferTransactionDeletedV2>;
26738
27945
  export const transferTransactionUpserted: PropTypes.Requireable<io.flow.internal.v0.models.TransferTransactionUpserted>;
26739
27946
  export const transferTransactionUpsertedV2: PropTypes.Requireable<io.flow.internal.v0.models.TransferTransactionUpsertedV2>;
26740
27947
  export const tribe: PropTypes.Requireable<io.flow.internal.v0.models.Tribe>;
27948
+ export const trueUpLabelSummary: PropTypes.Requireable<io.flow.internal.v0.models.TrueUpLabelSummary>;
27949
+ export const unassignedMerchantGuid: PropTypes.Requireable<io.flow.internal.v0.models.UnassignedMerchantGuid>;
27950
+ export const unassignedMerchantGuidDeleted: PropTypes.Requireable<io.flow.internal.v0.models.UnassignedMerchantGuidDeleted>;
27951
+ export const unassignedMerchantGuidUpserted: PropTypes.Requireable<io.flow.internal.v0.models.UnassignedMerchantGuidUpserted>;
26741
27952
  export const unclassifiedProductStatistic: PropTypes.Requireable<io.flow.internal.v0.models.UnclassifiedProductStatistic>;
26742
27953
  export const unclassifiedProductsPurgeRequest: PropTypes.Requireable<io.flow.internal.v0.models.UnclassifiedProductsPurgeRequest>;
26743
27954
  export const unclassifiedProductsSummary: PropTypes.Requireable<io.flow.internal.v0.models.UnclassifiedProductsSummary>;
@@ -26768,10 +27979,14 @@ export const virtualCardProvider: PropTypes.Requireable<io.flow.internal.v0.mode
26768
27979
  export const virtualCardProviderDeleted: PropTypes.Requireable<io.flow.internal.v0.models.VirtualCardProviderDeleted>;
26769
27980
  export const virtualCardProviderUpserted: PropTypes.Requireable<io.flow.internal.v0.models.VirtualCardProviderUpserted>;
26770
27981
  export const virtualCardTransaction: PropTypes.Requireable<io.flow.internal.v0.models.VirtualCardTransaction>;
27982
+ export const washCarrierActualFile: PropTypes.Requireable<io.flow.internal.v0.models.WashCarrierActualFile>;
27983
+ export const washCarrierActualFileForm: PropTypes.Requireable<io.flow.internal.v0.models.WashCarrierActualFileForm>;
26771
27984
  export const washExportRequest: PropTypes.Requireable<io.flow.internal.v0.models.WashExportRequest>;
26772
27985
  export const wasteElectricalAndElectronicEquipmentComplianceData: PropTypes.Requireable<io.flow.internal.v0.models.WasteElectricalAndElectronicEquipmentComplianceData>;
26773
27986
  export const wasteElectricalAndElectronicEquipmentComplianceForm: PropTypes.Requireable<io.flow.internal.v0.models.WasteElectricalAndElectronicEquipmentComplianceForm>;
26774
27987
  export const webhook: PropTypes.Requireable<io.flow.internal.v0.models.Webhook>;
27988
+ export const weightsDead: PropTypes.Requireable<io.flow.internal.v0.models.WeightsDead>;
27989
+ export const weightsDimensional: PropTypes.Requireable<io.flow.internal.v0.models.WeightsDimensional>;
26775
27990
  export const wholeOrderActionForm: PropTypes.Requireable<io.flow.internal.v0.models.WholeOrderActionForm>;
26776
27991
  export const adjustmentAmount: PropTypes.Requireable<io.flow.internal.v0.unions.AdjustmentAmount>;
26777
27992
  export const adjustmentDetails: PropTypes.Requireable<io.flow.internal.v0.unions.AdjustmentDetails>;
@@ -26881,6 +28096,7 @@ export const featureValue: PropTypes.Requireable<io.flow.internal.v0.unions.Feat
26881
28096
  export const fraudProviderConfiguration: PropTypes.Requireable<io.flow.internal.v0.unions.FraudProviderConfiguration>;
26882
28097
  export const fraudProviderConfigurationForm: PropTypes.Requireable<io.flow.internal.v0.unions.FraudProviderConfigurationForm>;
26883
28098
  export const fuelSurchargeServiceFeePutForm: PropTypes.Requireable<io.flow.internal.v0.unions.FuelSurchargeServiceFeePutForm>;
28099
+ export const fulfillmentProof: PropTypes.Requireable<io.flow.internal.v0.unions.FulfillmentProof>;
26884
28100
  export const generateLoad: PropTypes.Requireable<io.flow.internal.v0.unions.GenerateLoad>;
26885
28101
  export const globalSearchResult: PropTypes.Requireable<io.flow.internal.v0.unions.GlobalSearchResult>;
26886
28102
  export const heapEvent: PropTypes.Requireable<io.flow.internal.v0.unions.HeapEvent>;
@@ -26890,6 +28106,7 @@ export const internalAuthorizationDetails: PropTypes.Requireable<io.flow.interna
26890
28106
  export const internalHarmonizationStatistic: PropTypes.Requireable<io.flow.internal.v0.unions.InternalHarmonizationStatistic>;
26891
28107
  export const internalRefundForm: PropTypes.Requireable<io.flow.internal.v0.unions.InternalRefundForm>;
26892
28108
  export const internalTransactionDetails: PropTypes.Requireable<io.flow.internal.v0.unions.InternalTransactionDetails>;
28109
+ export const labelSurchargeDetail: PropTypes.Requireable<io.flow.internal.v0.unions.LabelSurchargeDetail>;
26893
28110
  export const localizableContent: PropTypes.Requireable<io.flow.internal.v0.unions.LocalizableContent>;
26894
28111
  export const marketingGatewayChannelDetails: PropTypes.Requireable<io.flow.internal.v0.unions.MarketingGatewayChannelDetails>;
26895
28112
  export const marketingGatewayDistributionChannel: PropTypes.Requireable<io.flow.internal.v0.unions.MarketingGatewayDistributionChannel>;