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

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -237,6 +237,12 @@ declare namespace io.flow.RESERVED_WORD_return.v0.unions {
237
237
  type ReturnSource = (io.flow.RESERVED_WORD_return.v0.models.ReturnSourceFlow | io.flow.RESERVED_WORD_return.v0.models.ReturnSourceExternalVendor);
238
238
  }
239
239
 
240
+ declare namespace io.flow.units.v0.enums {
241
+ type UnitOfLength = 'millimeter' | 'centimeter' | 'inch' | 'foot' | 'meter';
242
+ type UnitOfVolume = 'cubic_inch' | 'cubic_meter';
243
+ type UnitOfWeight = 'gram' | 'kilogram' | 'ounce' | 'pound';
244
+ }
245
+
240
246
  declare namespace io.flow.order.price.v0.enums {
241
247
  type OrderPriceDetailComponentKey = 'adjustment' | 'vat_deminimis' | 'duty_deminimis' | 'duties_item_price' | 'duties_freight' | 'duties_insurance' | 'vat_item_price' | 'vat_freight' | 'vat_insurance' | 'vat_duties_item_price' | 'vat_duties_freight' | 'vat_duties_insurance' | 'item_price' | 'item_discount' | 'rounding' | 'insurance' | 'shipping' | 'shipping_discount' | 'order_discount' | 'subtotal_percent_sales_margin' | 'subtotal_vat_percent_sales_margin' | 'subtotal_duty_percent_sales_margin' | 'vat_subsidy' | 'duty_subsidy' | 'remote_area_surcharge' | 'fuel_surcharge' | 'emergency_situation_surcharge' | 'peak_surcharge' | 'duties_taxes_paid_surcharge';
242
248
  type OrderPriceDetailKey = 'adjustment' | 'subtotal' | 'vat' | 'duty' | 'shipping' | 'insurance' | 'discount' | 'surcharges';
@@ -266,179 +272,6 @@ declare namespace io.flow.order.price.v0.models {
266
272
  }
267
273
  }
268
274
 
269
- declare namespace io.flow.error.v0.enums {
270
- type GenericErrorCode = 'generic_error' | 'client_error' | 'server_error';
271
- }
272
-
273
- declare namespace io.flow.error.v0.models {
274
- interface GenericError {
275
- readonly 'code': io.flow.error.v0.enums.GenericErrorCode;
276
- readonly 'messages': string[];
277
- }
278
- }
279
-
280
- declare namespace io.flow.price.v0.enums {
281
- type LevyComponent = 'goods' | 'duty' | 'insurance' | 'freight' | 'vat';
282
- type LevyStrategy = 'minimum' | 'average' | 'maximum';
283
- type PriceAccuracy = 'calculated' | 'estimated_from_partial_destination';
284
- type PriceDetailComponentKey = 'base_price' | 'discount' | 'currency_margin' | 'percent_item_margin' | 'fixed_item_margin' | 'duties_item_price' | 'duties_added_margin' | 'duties_rounding' | 'duties_deminimis' | 'vat_item_price' | 'vat_added_margin' | 'vat_rounding' | 'vat_duties_item_price' | 'vat_duties_added_margin' | 'vat_duties_rounding' | 'vat_deminimis' | 'item_price_percent_sales_margin' | 'margins_percent_sales_margin' | 'rounding_percent_sales_margin' | 'vat_percent_sales_margin' | 'vat_duty_percent_sales_margin' | 'duty_percent_sales_margin';
285
- type PriceDetailKey = 'item_price' | 'margins' | 'vat' | 'duty' | 'rounding' | 'adjustment';
286
- type PricingLevySetting = 'included' | 'displayed' | 'ignored';
287
- }
288
-
289
- declare namespace io.flow.price.v0.models {
290
- interface CurrencyFormat {
291
- readonly 'symbol': io.flow.common.v0.enums.CurrencySymbolFormat;
292
- readonly 'label_formatters': io.flow.common.v0.enums.CurrencyLabelFormatter[];
293
- }
294
-
295
- interface DeminimisPerItem {
296
- readonly 'discriminator': 'deminimis_per_item';
297
- readonly 'currency': string;
298
- readonly 'minimum'?: number;
299
- readonly 'maximum'?: number;
300
- }
301
-
302
- interface DeminimisSimple {
303
- readonly 'discriminator': 'deminimis_simple';
304
- readonly 'value'?: number;
305
- readonly 'currency': string;
306
- readonly 'components': io.flow.price.v0.enums.LevyComponent[];
307
- readonly 'minimum'?: number;
308
- }
309
-
310
- interface Duty {
311
- readonly 'rate': number;
312
- readonly 'components': io.flow.price.v0.enums.LevyComponent[];
313
- readonly 'deminimis'?: io.flow.price.v0.unions.Deminimis;
314
- readonly 'name'?: string;
315
- }
316
-
317
- interface LocalPriceDetails {
318
- readonly 'base': io.flow.price.v0.models.PriceDetails;
319
- readonly 'local': io.flow.price.v0.models.PriceDetails;
320
- readonly 'discount'?: io.flow.price.v0.models.PriceDetail;
321
- readonly 'local_before_discount'?: io.flow.price.v0.models.PriceDetail;
322
- }
323
-
324
- interface PriceBook {
325
- readonly 'id': string;
326
- readonly 'key': string;
327
- readonly 'currency': string;
328
- readonly 'name': string;
329
- readonly 'includes': io.flow.common.v0.models.IncludedLevies;
330
- readonly 'status': io.flow.common.v0.enums.PriceBookStatus;
331
- }
332
-
333
- interface PriceBookForm {
334
- readonly 'currency': string;
335
- readonly 'name': string;
336
- readonly 'includes': io.flow.common.v0.enums.IncludedLevyKey;
337
- readonly 'status'?: io.flow.common.v0.enums.PriceBookStatus;
338
- }
339
-
340
- interface PriceBookItem {
341
- readonly 'id': string;
342
- readonly 'key': string;
343
- readonly 'price_book': io.flow.price.v0.models.PriceBookReference;
344
- readonly 'price': io.flow.common.v0.models.Price;
345
- readonly 'item_number': string;
346
- readonly 'schedule': io.flow.price.v0.models.PriceBookItemSchedule;
347
- readonly 'item_attributes'?: Record<string, string>;
348
- }
349
-
350
- interface PriceBookItemForm {
351
- readonly 'price_book_key': string;
352
- readonly 'item_number': string;
353
- readonly 'amount': number;
354
- readonly 'schedule'?: io.flow.price.v0.models.PriceBookItemSchedule;
355
- readonly 'item_attributes'?: Record<string, string>;
356
- }
357
-
358
- interface PriceBookItemQueryForm {
359
- readonly 'price_book_key': string;
360
- readonly 'item_query': string;
361
- readonly 'amount': number;
362
- readonly 'schedule'?: io.flow.price.v0.models.PriceBookItemSchedule;
363
- readonly 'item_attributes'?: Record<string, string>;
364
- }
365
-
366
- interface PriceBookItemSchedule {
367
- readonly 'starts_at': string;
368
- readonly 'ends_at'?: string;
369
- }
370
-
371
- interface PriceBookReference {
372
- readonly 'id': string;
373
- readonly 'key': string;
374
- }
375
-
376
- interface PriceCheck {
377
- readonly 'display': io.flow.price.v0.models.LocalPriceDetails;
378
- readonly 'final': io.flow.price.v0.models.LocalPriceDetails;
379
- }
380
-
381
- interface PriceDetail {
382
- readonly 'key': io.flow.price.v0.enums.PriceDetailKey;
383
- readonly 'components': io.flow.price.v0.models.PriceDetailComponent[];
384
- readonly 'amount': number;
385
- readonly 'label': string;
386
- readonly 'name'?: string;
387
- readonly 'basis'?: number;
388
- }
389
-
390
- interface PriceDetailComponent {
391
- readonly 'key': io.flow.price.v0.enums.PriceDetailComponentKey;
392
- readonly 'amount': number;
393
- readonly 'label': string;
394
- readonly 'name'?: string;
395
- }
396
-
397
- interface PriceDetails {
398
- readonly 'currency': string;
399
- readonly 'item_price': io.flow.price.v0.models.PriceDetail;
400
- readonly 'margins': io.flow.price.v0.models.PriceDetail;
401
- readonly 'vat': io.flow.price.v0.models.PriceDetail;
402
- readonly 'duty': io.flow.price.v0.models.PriceDetail;
403
- readonly 'rounding': io.flow.price.v0.models.PriceDetail;
404
- readonly 'price': io.flow.common.v0.models.Price;
405
- readonly 'total': io.flow.common.v0.models.Price;
406
- readonly 'adjustment'?: io.flow.price.v0.models.PriceDetail;
407
- }
408
-
409
- interface PriceEquation {
410
- readonly 'contracted_rate': number;
411
- readonly 'rate': number;
412
- readonly 'pricing': io.flow.price.v0.models.Pricing;
413
- readonly 'base_price': number;
414
- readonly 'discount': number;
415
- readonly 'fixed_margin': number;
416
- readonly 'percent_margin': number;
417
- readonly 'insurance': number;
418
- readonly 'freight': number;
419
- readonly 'duty'?: io.flow.price.v0.models.Duty;
420
- readonly 'tax'?: io.flow.price.v0.models.Tax;
421
- readonly 'percent_sales_margin': number;
422
- }
423
-
424
- interface Pricing {
425
- readonly 'vat': io.flow.price.v0.enums.PricingLevySetting;
426
- readonly 'duty': io.flow.price.v0.enums.PricingLevySetting;
427
- readonly 'rounding'?: io.flow.common.v0.models.Rounding;
428
- }
429
-
430
- interface Tax {
431
- readonly 'name': string;
432
- readonly 'rate': number;
433
- readonly 'components': io.flow.price.v0.enums.LevyComponent[];
434
- readonly 'deminimis'?: io.flow.price.v0.unions.Deminimis;
435
- }
436
- }
437
-
438
- declare namespace io.flow.price.v0.unions {
439
- type Deminimis = (io.flow.price.v0.models.DeminimisSimple | io.flow.price.v0.models.DeminimisPerItem);
440
- }
441
-
442
275
  declare namespace io.flow.channel.v0.enums {
443
276
  type ChannelCurrencyCapability = 'payment_authorizations' | 'settlement_currency';
444
277
  }
@@ -1180,6 +1013,7 @@ declare namespace io.flow.payment.v0.enums {
1180
1013
  type RefundStatus = 'pending' | 'succeeded' | 'failed' | 'canceled';
1181
1014
  type ReversalErrorCode = 'amount_exceeds_balance' | 'authorization_declined' | 'authorization_expired' | 'invalid_authorization' | 'invalid_key' | 'invalid_amount' | 'invalid_currency' | 'no_remaining_balance' | 'partial_reversal_not_supported' | 'unknown';
1182
1015
  type ReversalStatus = 'pending' | 'processed' | 'failed';
1016
+ type StoredMethodUsageStep = 'initial' | 'subsequent';
1183
1017
  type ThreeDSecureCode = 'verified' | 'not_verified' | 'failed';
1184
1018
  type ThreedsTwoChallengeViewport = 'xxx_small' | 'xx_small' | 'x_small' | 'small' | 'fullscreen';
1185
1019
  type TokenType = 'permanent' | 'one_time';
@@ -1431,6 +1265,8 @@ declare namespace io.flow.payment.v0.models {
1431
1265
  readonly 'expires_at'?: string;
1432
1266
  readonly 'base'?: io.flow.common.v0.models.Money;
1433
1267
  readonly 'processor'?: io.flow.payment.v0.unions.ExpandablePaymentProcessor;
1268
+ readonly 'stored_method_usage_step'?: io.flow.payment.v0.enums.StoredMethodUsageStep;
1269
+ readonly 'authorized_at'?: string;
1434
1270
  }
1435
1271
 
1436
1272
  interface CardBrowserActionConfiguration {
@@ -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,13 @@ declare namespace io.flow.stripe.v0.models {
2840
2760
  readonly 'customer'?: string;
2841
2761
  }
2842
2762
 
2763
+ interface ThreeDSecureCharge {
2764
+ readonly 'authentication_flow'?: io.flow.stripe.v0.enums.ThreeDsAuthenticationFlow;
2765
+ readonly 'result'?: io.flow.stripe.v0.enums.ThreeDsResult;
2766
+ readonly 'result_reason'?: io.flow.stripe.v0.enums.ThreeDsResultReason;
2767
+ readonly 'version'?: string;
2768
+ }
2769
+
2843
2770
  interface ThreeDSecureRedirect {
2844
2771
  readonly 'type': io.flow.stripe.v0.enums.UseStripeSdkType;
2845
2772
  readonly 'stripe_js': string;
@@ -2866,6 +2793,24 @@ declare namespace io.flow.stripe.v0.models {
2866
2793
  readonly 'amount'?: number;
2867
2794
  readonly 'destination'?: string;
2868
2795
  }
2796
+
2797
+ interface VisaCheckout {
2798
+ readonly 'type': 'visa_checkout';
2799
+ readonly 'visa_checkout': io.flow.stripe.v0.models.VisaCheckoutInformation;
2800
+ readonly 'dynamic_last4'?: string;
2801
+ }
2802
+
2803
+ interface VisaCheckoutInformation {
2804
+ readonly 'billing_address'?: io.flow.stripe.v0.models.Address;
2805
+ readonly 'email'?: string;
2806
+ readonly 'name'?: string;
2807
+ readonly 'shipping_address'?: io.flow.stripe.v0.models.Address;
2808
+ }
2809
+ }
2810
+
2811
+ declare namespace io.flow.stripe.v0.unions {
2812
+ type CardWallet = (io.flow.stripe.v0.models.Masterpass | io.flow.stripe.v0.models.ApplePay | io.flow.stripe.v0.models.VisaCheckout);
2813
+ type PaymentMethodDetails = (io.flow.stripe.v0.models.PaymentMethodDetailsCard | io.flow.stripe.v0.models.PaymentMethodDetailsKlarna);
2869
2814
  }
2870
2815
 
2871
2816
  declare namespace io.flow.customer.v0.enums {
@@ -2967,6 +2912,7 @@ declare namespace io.flow.label.v0.enums {
2967
2912
  type Direction = 'outbound' | 'return';
2968
2913
  type LabelRequestMethod = 'flow_web_sync' | 'channel_web_async' | 'direct_api_sync' | 'direct_api_async' | 'bridge_api_sync' | 'partner_api_sync' | 'notification_requiring_crossdock' | 'autogenerated';
2969
2914
  type LabelTriggerMethod = 'autogenerated' | 'on_demand';
2915
+ type PackageDimensionsSource = 'provided' | 'dimensions_estimated';
2970
2916
  type ShipmentRecipient = 'customer' | 'return' | 'crossdock';
2971
2917
  type TrackingNumberType = 'flow' | 'carrier';
2972
2918
  }
@@ -3010,6 +2956,7 @@ declare namespace io.flow.label.v0.models {
3010
2956
  readonly 'order_number': string;
3011
2957
  readonly 'service'?: string;
3012
2958
  readonly 'shipment_recipient'?: io.flow.label.v0.enums.ShipmentRecipient;
2959
+ readonly 'package_dimensions_source'?: io.flow.label.v0.enums.PackageDimensionsSource;
3013
2960
  }
3014
2961
 
3015
2962
  interface DetailedShippingNotificationForm {
@@ -3056,6 +3003,9 @@ declare namespace io.flow.label.v0.models {
3056
3003
  readonly 'carrier_tracking_number_url': string;
3057
3004
  readonly 'cost_estimate_source'?: io.flow.label.v0.enums.CostEstimateSource;
3058
3005
  readonly 'cost'?: io.flow.common.v0.models.Price;
3006
+ readonly 'delivered_duty'?: io.flow.common.v0.enums.DeliveredDuty;
3007
+ readonly 'taxes_owed'?: io.flow.common.v0.models.Money;
3008
+ readonly 'duties_owed'?: io.flow.common.v0.models.Money;
3059
3009
  readonly 'destination': io.flow.fulfillment.v0.models.ShippingAddress;
3060
3010
  readonly 'flow_tracking_number': string;
3061
3011
  readonly 'flow_tracking_number_url': string;
@@ -3067,6 +3017,7 @@ declare namespace io.flow.label.v0.models {
3067
3017
  readonly 'return'?: io.flow.label.v0.models.ShippingLabelDocument;
3068
3018
  readonly 'order'?: io.flow.label.v0.models.LabelOrderSummary;
3069
3019
  readonly 'package'?: io.flow.label.v0.models.ShippingLabelPackage;
3020
+ readonly 'package_dimension_source'?: io.flow.label.v0.enums.PackageDimensionsSource;
3070
3021
  readonly 'order_identifier'?: string;
3071
3022
  readonly 'fulfillment_key'?: string;
3072
3023
  readonly 'shipment_recipient': io.flow.label.v0.enums.ShipmentRecipient;
@@ -3086,9 +3037,16 @@ declare namespace io.flow.label.v0.models {
3086
3037
  readonly 'required': boolean;
3087
3038
  }
3088
3039
 
3040
+ interface ShippingLabelHopCostItemizedEstimate {
3041
+ readonly 'units': io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelUnits;
3042
+ readonly 'base': io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelBase;
3043
+ readonly 'surcharges': io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelSurcharge[];
3044
+ }
3045
+
3089
3046
  interface ShippingLabelHopSummary {
3090
3047
  readonly 'lane': io.flow.label.v0.models.ShippingLabelLaneSummary;
3091
3048
  readonly 'cost': io.flow.common.v0.models.Money;
3049
+ readonly 'itemized_estimate'?: io.flow.label.v0.models.ShippingLabelHopCostItemizedEstimate;
3092
3050
  }
3093
3051
 
3094
3052
  interface ShippingLabelLaneSummary {
@@ -3098,6 +3056,7 @@ declare namespace io.flow.label.v0.models {
3098
3056
 
3099
3057
  interface ShippingLabelPackage {
3100
3058
  readonly 'dimensions': io.flow.common.v0.models.Dimension;
3059
+ readonly 'volumetric_weight'?: number;
3101
3060
  readonly 'items': io.flow.common.v0.models.LineItemForm[];
3102
3061
  readonly 'reference_number'?: string;
3103
3062
  }
@@ -3105,6 +3064,11 @@ declare namespace io.flow.label.v0.models {
3105
3064
  interface ShippingLabelRatecardSummary {
3106
3065
  readonly 'id'?: string;
3107
3066
  readonly 'ratecard_owner': io.flow.fulfillment.v0.enums.RatecardOwner;
3067
+ readonly 'rate_level_key'?: string;
3068
+ readonly 'glbe_shipping_method_id'?: string;
3069
+ readonly 'glbe_proposition_name'?: string;
3070
+ readonly 'channel_revenue_share_percentage'?: number;
3071
+ readonly 'shopify_grc_gid'?: string;
3108
3072
  }
3109
3073
 
3110
3074
  interface ShippingLabelSummary {
@@ -3609,14 +3573,14 @@ declare namespace io.flow.external.paypal.v1.models {
3609
3573
  }
3610
3574
 
3611
3575
  interface ShippingAddress {
3612
- readonly 'recipient_name': string;
3576
+ readonly 'recipient_name'?: string;
3613
3577
  readonly 'line1': string;
3614
3578
  readonly 'line2'?: string;
3615
- readonly 'city': string;
3579
+ readonly 'city'?: string;
3616
3580
  readonly 'country_code': string;
3617
- readonly 'postal_code': string;
3581
+ readonly 'postal_code'?: string;
3618
3582
  readonly 'phone'?: string;
3619
- readonly 'state': string;
3583
+ readonly 'state'?: string;
3620
3584
  }
3621
3585
 
3622
3586
  interface SupportingInfo {
@@ -4041,7 +4005,7 @@ declare namespace io.flow.adyen.v0.models {
4041
4005
  readonly 'merchantOrderReference'?: string;
4042
4006
  readonly 'shopperInteraction': io.flow.adyen.v0.enums.ShopperInteraction;
4043
4007
  readonly 'bankAccount'?: io.flow.adyen.v0.models.BankAccount;
4044
- readonly 'additionalData'?: any/*object*/;
4008
+ readonly 'additionalData'?: io.flow.adyen.v0.models.AuthorizeRequestAdditionalData;
4045
4009
  readonly 'mpiData'?: io.flow.adyen.v0.models.ThreeDSecureData;
4046
4010
  readonly 'selectedBrand'?: string;
4047
4011
  readonly 'browserInfo'?: io.flow.adyen.v0.unions.BrowserInfo;
@@ -4049,6 +4013,7 @@ declare namespace io.flow.adyen.v0.models {
4049
4013
  readonly 'recurringProcessingModel'?: io.flow.adyen.v0.enums.RecurringProcessingModel;
4050
4014
  readonly 'mcc'?: string;
4051
4015
  readonly 'metadata'?: any/*object*/;
4016
+ readonly 'captureDelayHours'?: number;
4052
4017
  }
4053
4018
 
4054
4019
  interface AuthorizeRequest3D {
@@ -4065,6 +4030,11 @@ declare namespace io.flow.adyen.v0.models {
4065
4030
  readonly 'threeDS2Result'?: io.flow.adyen.v0.models.Threeds2Result;
4066
4031
  }
4067
4032
 
4033
+ interface AuthorizeRequestAdditionalData {
4034
+ readonly 'manualCapture'?: boolean;
4035
+ readonly 'paywithgoogle.token'?: string;
4036
+ }
4037
+
4068
4038
  interface AuthorizeResponse {
4069
4039
  readonly 'pspReference': string;
4070
4040
  readonly 'resultCode': io.flow.adyen.v0.enums.ResultCode;
@@ -4240,6 +4210,7 @@ declare namespace io.flow.adyen.v0.models {
4240
4210
  readonly 'redirectToIssuerMethod'?: io.flow.adyen.v0.enums.HttpRedirectMethod;
4241
4211
  readonly 'redirectFromIssuerMethod'?: io.flow.adyen.v0.enums.HttpRedirectMethod;
4242
4212
  readonly 'storePaymentMethod'?: boolean;
4213
+ readonly 'captureDelayHours'?: number;
4243
4214
  }
4244
4215
 
4245
4216
  interface PaymentResponse {
@@ -4372,6 +4343,7 @@ declare namespace io.flow.adyen.v0.models {
4372
4343
  interface ThreedsAdditionalData {
4373
4344
  readonly 'executeThreeD'?: boolean;
4374
4345
  readonly 'allow3DS2'?: boolean;
4346
+ readonly 'manualCapture'?: boolean;
4375
4347
  }
4376
4348
  }
4377
4349
 
@@ -4521,7 +4493,7 @@ declare namespace io.flow.shopify.external.v0.models {
4521
4493
  readonly 'starts_at': string;
4522
4494
  readonly 'ends_at'?: string;
4523
4495
  readonly 'prerequisite_subtotal_range'?: io.flow.shopify.external.v0.models.PriceRuleGreaterThanRange;
4524
- readonly 'prerequisite_shipping_range'?: io.flow.shopify.external.v0.models.PriceRuleLessThanRange;
4496
+ readonly 'prerequisite_shipping_price_range'?: io.flow.shopify.external.v0.models.PriceRuleLessThanRange;
4525
4497
  readonly 'usage_limit'?: number;
4526
4498
  readonly 'entitled_product_ids': number[];
4527
4499
  readonly 'entitled_variant_ids': number[];
@@ -4531,7 +4503,7 @@ declare namespace io.flow.shopify.external.v0.models {
4531
4503
  readonly 'once_per_customer': boolean;
4532
4504
  readonly 'target_selection': io.flow.shopify.external.v0.enums.PriceRuleTargetSelection;
4533
4505
  readonly 'customer_selection': io.flow.shopify.external.v0.enums.PriceRuleCustomerSelection;
4534
- readonly 'prerequisite_saved_search_ids': number[];
4506
+ readonly 'customer_segment_prerequisite_ids'?: number[];
4535
4507
  readonly 'prerequisite_customer_ids'?: number[];
4536
4508
  readonly 'prerequisite_quantity_range'?: io.flow.shopify.external.v0.models.PriceRuleGreaterThanRange;
4537
4509
  readonly 'prerequisite_product_ids'?: number[];
@@ -5630,6 +5602,7 @@ declare namespace io.flow.shopify.markets.v0.models {
5630
5602
  readonly 'send_receipt'?: boolean;
5631
5603
  readonly 'metafields'?: io.flow.shopify.markets.v0.models.ShopifyOrderMetafield[];
5632
5604
  readonly 'merchant_of_record_app_id'?: number;
5605
+ readonly 'total_shipping_price_set'?: io.flow.shopify.markets.v0.models.ShopifyOrderMoneySet;
5633
5606
  }
5634
5607
 
5635
5608
  interface ShopifyOrderAddress {
@@ -5783,7 +5756,7 @@ declare namespace io.flow.shopify.markets.v0.models {
5783
5756
  readonly 'grams'?: number;
5784
5757
  readonly 'id': number;
5785
5758
  readonly 'price'?: string;
5786
- readonly 'price_set'?: io.flow.shopify.markets.v0.models.ShopifyOrderMoneySet;
5759
+ readonly 'price_set': io.flow.shopify.markets.v0.models.ShopifyOrderMoneySet;
5787
5760
  readonly 'product_id'?: number;
5788
5761
  readonly 'quantity': number;
5789
5762
  readonly 'requires_shipping': boolean;
@@ -5792,7 +5765,7 @@ declare namespace io.flow.shopify.markets.v0.models {
5792
5765
  readonly 'variant_id'?: number;
5793
5766
  readonly 'variant_title'?: string;
5794
5767
  readonly 'vendor'?: string;
5795
- readonly 'name'?: string;
5768
+ readonly 'name': string;
5796
5769
  readonly 'gift_card': boolean;
5797
5770
  readonly 'properties': io.flow.shopify.markets.v0.models.ShopifyOrderProperty[];
5798
5771
  readonly 'taxable': boolean;
@@ -5892,6 +5865,7 @@ declare namespace io.flow.shopify.markets.v0.models {
5892
5865
  readonly 'carrier_identifier'?: string;
5893
5866
  readonly 'price_set': io.flow.shopify.markets.v0.models.ShopifyOrderMoneySet;
5894
5867
  readonly 'discounted_price_set': io.flow.shopify.markets.v0.models.ShopifyOrderMoneySet;
5868
+ readonly 'discount_allocations'?: io.flow.shopify.markets.v0.models.ShopifyOrderDiscountAllocation[];
5895
5869
  }
5896
5870
 
5897
5871
  interface ShopifyOrderTaxLine {
@@ -5921,8 +5895,8 @@ declare namespace io.flow.shopify.markets.v0.models {
5921
5895
  readonly 'user_id'?: number;
5922
5896
  }
5923
5897
 
5924
- interface ShopifyOrderUpdateShippingAddressForm {
5925
- readonly 'order': io.flow.shopify.markets.v0.models.ShopifyUpdateShippingAddress;
5898
+ interface ShopifyOrderUpdateForm {
5899
+ readonly 'order': io.flow.shopify.markets.v0.models.ShopifyUpdateOrder;
5926
5900
  }
5927
5901
 
5928
5902
  interface ShopifyOrderWrapper {
@@ -5981,9 +5955,10 @@ declare namespace io.flow.shopify.markets.v0.models {
5981
5955
  readonly 'gateway': string;
5982
5956
  }
5983
5957
 
5984
- interface ShopifyUpdateShippingAddress {
5958
+ interface ShopifyUpdateOrder {
5985
5959
  readonly 'id': number;
5986
- readonly 'shipping_address': io.flow.shopify.markets.v0.models.ShopifyOrderAddress;
5960
+ readonly 'shipping_address'?: io.flow.shopify.markets.v0.models.ShopifyOrderAddress;
5961
+ readonly 'note_attributes'?: io.flow.shopify.markets.v0.models.ShopifyOrderAttribute[];
5987
5962
  }
5988
5963
 
5989
5964
  interface ShopifyWebhookCustomersDataRequest {
@@ -8785,12 +8760,22 @@ declare namespace io.flow.ratecard.v0.models {
8785
8760
  readonly 'ratecard': io.flow.ratecard.v0.models.RatecardSummary;
8786
8761
  }
8787
8762
 
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;
8763
+ interface OversizePieceSurchargeRatecardFee {
8764
+ readonly 'discriminator': 'oversize_piece_surcharge_ratecard_fee';
8765
+ readonly 'dimensional_threshold'?: number;
8766
+ readonly 'dimensional_unit'?: io.flow.common.v0.enums.UnitOfMeasurement;
8767
+ readonly 'weight_threshold'?: number;
8768
+ readonly 'weight_unit'?: io.flow.common.v0.enums.UnitOfMeasurement;
8769
+ readonly 'amount': io.flow.common.v0.models.Money;
8770
+ }
8771
+
8772
+ interface OversizePieceSurchargeServiceFee {
8773
+ readonly 'discriminator': 'oversize_piece_surcharge_service_fee';
8774
+ readonly 'dimensional_threshold'?: number;
8775
+ readonly 'dimensional_unit'?: io.flow.common.v0.enums.UnitOfMeasurement;
8776
+ readonly 'weight_threshold'?: number;
8777
+ readonly 'weight_unit'?: io.flow.common.v0.enums.UnitOfMeasurement;
8778
+ readonly 'amount': io.flow.common.v0.models.Money;
8794
8779
  }
8795
8780
 
8796
8781
  interface PeakSurchargeByWeightServiceFee {
@@ -8819,12 +8804,16 @@ declare namespace io.flow.ratecard.v0.models {
8819
8804
  interface Ratecard {
8820
8805
  readonly 'id': string;
8821
8806
  readonly 'number': string;
8807
+ readonly 'rate_level_key'?: string;
8822
8808
  readonly 'direction': io.flow.label.v0.enums.Direction;
8823
8809
  readonly 'effective_at': string;
8824
8810
  readonly 'origination_zones': io.flow.common.v0.models.Zone[];
8825
8811
  readonly 'service': io.flow.ratecard.v0.models.RatecardServiceSummary;
8826
8812
  readonly 'published_at'?: string;
8827
8813
  readonly 'ratecard_owner': io.flow.fulfillment.v0.enums.RatecardOwner;
8814
+ readonly 'glbe_shipping_method_id'?: string;
8815
+ readonly 'glbe_proposition_name'?: string;
8816
+ readonly 'channel_revenue_share_percentage'?: number;
8828
8817
  }
8829
8818
 
8830
8819
  interface RatecardCarrierSummary {
@@ -8895,6 +8884,10 @@ declare namespace io.flow.ratecard.v0.models {
8895
8884
  readonly 'dimensional_weight'?: io.flow.common.v0.models.Measurement;
8896
8885
  readonly 'gravitational_weight'?: io.flow.common.v0.models.Measurement;
8897
8886
  readonly 'ratecard_id'?: string;
8887
+ readonly 'glbe_shipping_method_id'?: string;
8888
+ readonly 'glbe_proposition_name'?: string;
8889
+ readonly 'channel_revenue_share_percentage'?: number;
8890
+ readonly 'rate_level_key'?: string;
8898
8891
  readonly 'line_items'?: io.flow.common.v0.models.LineItemForm[];
8899
8892
  }
8900
8893
 
@@ -8904,7 +8897,12 @@ declare namespace io.flow.ratecard.v0.models {
8904
8897
  readonly 'origination_zones': io.flow.common.v0.models.Zone[];
8905
8898
  readonly 'service': string;
8906
8899
  readonly 'number'?: string;
8900
+ readonly 'rate_level_key'?: string;
8907
8901
  readonly 'ratecard_owner'?: io.flow.fulfillment.v0.enums.RatecardOwner;
8902
+ readonly 'glbe_shipping_method_id'?: string;
8903
+ readonly 'glbe_proposition_name'?: string;
8904
+ readonly 'channel_revenue_share_percentage'?: number;
8905
+ readonly 'data'?: Record<string, string>;
8908
8906
  }
8909
8907
 
8910
8908
  interface RatecardLane {
@@ -9034,8 +9032,8 @@ declare namespace io.flow.ratecard.v0.models {
9034
9032
 
9035
9033
  declare namespace io.flow.ratecard.v0.unions {
9036
9034
  type RatecardEstimate = (io.flow.ratecard.v0.models.RatecardEstimateV1 | io.flow.ratecard.v0.models.RatecardEstimateV2 | io.flow.ratecard.v0.models.RatecardEstimateV3 | io.flow.ratecard.v0.models.RatecardEstimateV4);
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);
9035
+ type RatecardFee = (io.flow.ratecard.v0.models.DdpRatecardFee | io.flow.ratecard.v0.models.FuelSurchargeRatecardFee | io.flow.ratecard.v0.models.OversizePieceSurchargeRatecardFee | io.flow.ratecard.v0.models.ReturnPackageRatecardFee | io.flow.ratecard.v0.models.CrossdockRatecardFee | io.flow.ratecard.v0.models.RemoteAreaRatecardFee | io.flow.ratecard.v0.models.EmergencySituationSurchargeRatecardFee | io.flow.ratecard.v0.models.PeakSurchargeRatecardFee | io.flow.ratecard.v0.models.DutiesTaxesPaidSurchargeRatecardFee);
9036
+ type ServiceFee = (io.flow.ratecard.v0.models.FuelSurchargeServiceFee | io.flow.ratecard.v0.models.FuelSurchargeAmountByWeightServiceFee | io.flow.ratecard.v0.models.RemoteAreaServiceFee | io.flow.ratecard.v0.models.EmergencySituationSurchargeServiceFee | io.flow.ratecard.v0.models.PeakSurchargeServiceFee | io.flow.ratecard.v0.models.PeakSurchargeByWeightServiceFee | io.flow.ratecard.v0.models.DutiesTaxesPaidSurchargeServiceFee | io.flow.ratecard.v0.models.OversizePieceSurchargeServiceFee);
9039
9037
  }
9040
9038
 
9041
9039
  declare namespace io.flow.token.v0.models {
@@ -9312,8 +9310,344 @@ declare namespace io.flow.crypto.v0.models {
9312
9310
  }
9313
9311
  }
9314
9312
 
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';
9313
+ declare namespace io.flow.error.v0.enums {
9314
+ type GenericErrorCode = 'generic_error' | 'client_error' | 'server_error';
9315
+ }
9316
+
9317
+ declare namespace io.flow.error.v0.models {
9318
+ interface GenericError {
9319
+ readonly 'code': io.flow.error.v0.enums.GenericErrorCode;
9320
+ readonly 'messages': string[];
9321
+ }
9322
+ }
9323
+
9324
+ declare namespace io.flow.billing.RESERVED_WORD_true.up.v0.enums {
9325
+ type TrueUpSurchargeType = 'fuel' | 'remote_area' | 'oversize' | 'duties_paid' | 'emergency' | 'peak';
9326
+ type WeightSelection = 'dead' | 'dimensional';
9327
+ }
9328
+
9329
+ declare namespace io.flow.billing.RESERVED_WORD_true.up.v0.models {
9330
+ interface LabelBase {
9331
+ readonly 'amount': number;
9332
+ readonly 'weight': number;
9333
+ }
9334
+
9335
+ interface LabelDestination {
9336
+ readonly 'country': string;
9337
+ }
9338
+
9339
+ interface LabelInvoiceRequest {
9340
+ readonly 'id': string;
9341
+ readonly 'label': io.flow.billing.RESERVED_WORD_true.up.v0.models.TrueUpLabelSummary;
9342
+ readonly 'units': io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelUnits;
9343
+ readonly 'base': io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelBase;
9344
+ readonly 'surcharges': io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelSurcharge[];
9345
+ readonly 'total': number;
9346
+ readonly 'destination': io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelDestination;
9347
+ readonly 'metadata': io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelMetadata;
9348
+ }
9349
+
9350
+ interface LabelMetadata {
9351
+ readonly 'ratecard': io.flow.billing.RESERVED_WORD_true.up.v0.models.MetadataRatecard;
9352
+ readonly 'weights': io.flow.billing.RESERVED_WORD_true.up.v0.models.MetadataWeights;
9353
+ }
9354
+
9355
+ interface LabelSurcharge {
9356
+ readonly 'amount': number;
9357
+ readonly 'type': io.flow.billing.RESERVED_WORD_true.up.v0.enums.TrueUpSurchargeType;
9358
+ readonly 'detail': io.flow.billing.RESERVED_WORD_true.up.v0.unions.LabelSurchargeDetail;
9359
+ }
9360
+
9361
+ interface LabelSurchargeDetailFlat {
9362
+ readonly 'discriminator': 'flat';
9363
+ readonly 'placeholder'?: string;
9364
+ }
9365
+
9366
+ interface LabelSurchargeDetailPerWeightUnit {
9367
+ readonly 'discriminator': 'per_weight_unit';
9368
+ readonly 'fee': number;
9369
+ }
9370
+
9371
+ interface LabelSurchargeDetailPercentage {
9372
+ readonly 'discriminator': 'percentage';
9373
+ readonly 'percentage': number;
9374
+ }
9375
+
9376
+ interface LabelUnits {
9377
+ readonly 'currency': string;
9378
+ readonly 'weight': io.flow.units.v0.enums.UnitOfWeight;
9379
+ readonly 'length': io.flow.units.v0.enums.UnitOfLength;
9380
+ }
9381
+
9382
+ interface MetadataProposition {
9383
+ readonly 'shipping_method': io.flow.billing.RESERVED_WORD_true.up.v0.models.ShippingMethodReference;
9384
+ readonly 'name': string;
9385
+ }
9386
+
9387
+ interface MetadataRatecard {
9388
+ readonly 'id': string;
9389
+ readonly 'proposition': io.flow.billing.RESERVED_WORD_true.up.v0.models.MetadataProposition;
9390
+ }
9391
+
9392
+ interface MetadataWeights {
9393
+ readonly 'selected': io.flow.billing.RESERVED_WORD_true.up.v0.enums.WeightSelection;
9394
+ readonly 'dead'?: io.flow.billing.RESERVED_WORD_true.up.v0.models.WeightsDead;
9395
+ readonly 'dimensional'?: io.flow.billing.RESERVED_WORD_true.up.v0.models.WeightsDimensional;
9396
+ }
9397
+
9398
+ interface ShippingMethodReference {
9399
+ readonly 'id': string;
9400
+ }
9401
+
9402
+ interface TrueUpLabelSummary {
9403
+ readonly 'id': string;
9404
+ readonly 'carrier_service_id': string;
9405
+ readonly 'carrier_tracking_number': string;
9406
+ readonly 'flow_tracking_number': string;
9407
+ readonly 'created_at': string;
9408
+ }
9409
+
9410
+ interface WeightsDead {
9411
+ readonly 'weight': number;
9412
+ }
9413
+
9414
+ interface WeightsDimensional {
9415
+ readonly 'weight': number;
9416
+ readonly 'length': number;
9417
+ readonly 'width': number;
9418
+ readonly 'height': number;
9419
+ }
9420
+ }
9421
+
9422
+ declare namespace io.flow.billing.RESERVED_WORD_true.up.v0.unions {
9423
+ type LabelSurchargeDetail = (io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelSurchargeDetailFlat | io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelSurchargeDetailPercentage | io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelSurchargeDetailPerWeightUnit);
9424
+ }
9425
+
9426
+ declare namespace io.flow.shopify.merchant.config.v0.models {
9427
+ interface Company {
9428
+ readonly 'discriminator': 'company';
9429
+ readonly 'legal_name': string;
9430
+ readonly 'incorporation_country': string;
9431
+ readonly 'incorporation_jurisdiction': string;
9432
+ readonly 'tax_registration_number': string;
9433
+ }
9434
+
9435
+ interface CountryOfOrigin {
9436
+ readonly 'country': io.flow.reference.v0.models.Country;
9437
+ }
9438
+
9439
+ interface CountryOfOriginForm {
9440
+ readonly 'country': string;
9441
+ }
9442
+
9443
+ interface Individual {
9444
+ readonly 'discriminator': 'individual';
9445
+ readonly 'legal_name': string;
9446
+ readonly 'tax_registration_number'?: string;
9447
+ readonly 'date_of_birth': string;
9448
+ }
9449
+
9450
+ interface KnowYourBusinessUsa {
9451
+ readonly 'discriminator': 'know_your_business_usa';
9452
+ readonly 'id': string;
9453
+ readonly 'organization_id': string;
9454
+ readonly 'primary_entity': io.flow.shopify.merchant.config.v0.unions.Entity;
9455
+ readonly 'parent_company'?: io.flow.shopify.merchant.config.v0.models.Company;
9456
+ readonly 'ultimate_parent_company'?: io.flow.shopify.merchant.config.v0.models.Company;
9457
+ readonly 'ultimate_beneficiary_owner': io.flow.shopify.merchant.config.v0.models.Individual;
9458
+ readonly 'business_url': string;
9459
+ readonly 'business_address': io.flow.common.v0.models.Address;
9460
+ }
9461
+
9462
+ interface KnowYourBusinessUsaForm {
9463
+ readonly 'discriminator': 'know_your_business_usa_form';
9464
+ readonly 'primary_entity': io.flow.shopify.merchant.config.v0.unions.Entity;
9465
+ readonly 'parent_company'?: io.flow.shopify.merchant.config.v0.models.Company;
9466
+ readonly 'ultimate_parent_company'?: io.flow.shopify.merchant.config.v0.models.Company;
9467
+ readonly 'ultimate_beneficiary_owner': io.flow.shopify.merchant.config.v0.models.Individual;
9468
+ readonly 'business_url': string;
9469
+ readonly 'business_address': io.flow.common.v0.models.Address;
9470
+ }
9471
+
9472
+ interface PackageDimensions {
9473
+ readonly 'dimensions': io.flow.common.v0.models.Dimension[];
9474
+ }
9475
+
9476
+ interface PackageDimensionsForm {
9477
+ readonly 'dimensions': io.flow.common.v0.models.Dimension[];
9478
+ }
9479
+ }
9480
+
9481
+ declare namespace io.flow.shopify.merchant.config.v0.unions {
9482
+ type Entity = (io.flow.shopify.merchant.config.v0.models.Company | io.flow.shopify.merchant.config.v0.models.Individual);
9483
+ type KnowYourBusiness = (io.flow.shopify.merchant.config.v0.models.KnowYourBusinessUsa);
9484
+ type KnowYourBusinessForm = (io.flow.shopify.merchant.config.v0.models.KnowYourBusinessUsaForm);
9485
+ }
9486
+
9487
+ declare namespace io.flow.price.v0.enums {
9488
+ type LevyComponent = 'goods' | 'duty' | 'insurance' | 'freight' | 'vat';
9489
+ type LevyStrategy = 'minimum' | 'average' | 'maximum';
9490
+ type PriceAccuracy = 'calculated' | 'estimated_from_partial_destination';
9491
+ type PriceDetailComponentKey = 'base_price' | 'discount' | 'currency_margin' | 'percent_item_margin' | 'fixed_item_margin' | 'duties_item_price' | 'duties_added_margin' | 'duties_rounding' | 'duties_deminimis' | 'vat_item_price' | 'vat_added_margin' | 'vat_rounding' | 'vat_duties_item_price' | 'vat_duties_added_margin' | 'vat_duties_rounding' | 'vat_deminimis' | 'item_price_percent_sales_margin' | 'margins_percent_sales_margin' | 'rounding_percent_sales_margin' | 'vat_percent_sales_margin' | 'vat_duty_percent_sales_margin' | 'duty_percent_sales_margin';
9492
+ type PriceDetailKey = 'item_price' | 'margins' | 'vat' | 'duty' | 'rounding' | 'adjustment';
9493
+ type PricingLevySetting = 'included' | 'displayed' | 'ignored';
9494
+ }
9495
+
9496
+ declare namespace io.flow.price.v0.models {
9497
+ interface CurrencyFormat {
9498
+ readonly 'symbol': io.flow.common.v0.enums.CurrencySymbolFormat;
9499
+ readonly 'label_formatters': io.flow.common.v0.enums.CurrencyLabelFormatter[];
9500
+ }
9501
+
9502
+ interface DeminimisPerItem {
9503
+ readonly 'discriminator': 'deminimis_per_item';
9504
+ readonly 'currency': string;
9505
+ readonly 'minimum'?: number;
9506
+ readonly 'maximum'?: number;
9507
+ }
9508
+
9509
+ interface DeminimisSimple {
9510
+ readonly 'discriminator': 'deminimis_simple';
9511
+ readonly 'value'?: number;
9512
+ readonly 'currency': string;
9513
+ readonly 'components': io.flow.price.v0.enums.LevyComponent[];
9514
+ readonly 'minimum'?: number;
9515
+ }
9516
+
9517
+ interface Duty {
9518
+ readonly 'rate': number;
9519
+ readonly 'components': io.flow.price.v0.enums.LevyComponent[];
9520
+ readonly 'deminimis'?: io.flow.price.v0.unions.Deminimis;
9521
+ readonly 'name'?: string;
9522
+ }
9523
+
9524
+ interface LocalPriceDetails {
9525
+ readonly 'base': io.flow.price.v0.models.PriceDetails;
9526
+ readonly 'local': io.flow.price.v0.models.PriceDetails;
9527
+ readonly 'discount'?: io.flow.price.v0.models.PriceDetail;
9528
+ readonly 'local_before_discount'?: io.flow.price.v0.models.PriceDetail;
9529
+ }
9530
+
9531
+ interface PriceBook {
9532
+ readonly 'id': string;
9533
+ readonly 'key': string;
9534
+ readonly 'currency': string;
9535
+ readonly 'name': string;
9536
+ readonly 'includes': io.flow.common.v0.models.IncludedLevies;
9537
+ readonly 'status': io.flow.common.v0.enums.PriceBookStatus;
9538
+ }
9539
+
9540
+ interface PriceBookForm {
9541
+ readonly 'currency': string;
9542
+ readonly 'name': string;
9543
+ readonly 'includes': io.flow.common.v0.enums.IncludedLevyKey;
9544
+ readonly 'status'?: io.flow.common.v0.enums.PriceBookStatus;
9545
+ }
9546
+
9547
+ interface PriceBookItem {
9548
+ readonly 'id': string;
9549
+ readonly 'key': string;
9550
+ readonly 'price_book': io.flow.price.v0.models.PriceBookReference;
9551
+ readonly 'price': io.flow.common.v0.models.Price;
9552
+ readonly 'item_number': string;
9553
+ readonly 'schedule': io.flow.price.v0.models.PriceBookItemSchedule;
9554
+ readonly 'item_attributes'?: Record<string, string>;
9555
+ }
9556
+
9557
+ interface PriceBookItemForm {
9558
+ readonly 'price_book_key': string;
9559
+ readonly 'item_number': string;
9560
+ readonly 'amount': number;
9561
+ readonly 'schedule'?: io.flow.price.v0.models.PriceBookItemSchedule;
9562
+ readonly 'item_attributes'?: Record<string, string>;
9563
+ }
9564
+
9565
+ interface PriceBookItemQueryForm {
9566
+ readonly 'price_book_key': string;
9567
+ readonly 'item_query': string;
9568
+ readonly 'amount': number;
9569
+ readonly 'schedule'?: io.flow.price.v0.models.PriceBookItemSchedule;
9570
+ readonly 'item_attributes'?: Record<string, string>;
9571
+ }
9572
+
9573
+ interface PriceBookItemSchedule {
9574
+ readonly 'starts_at': string;
9575
+ readonly 'ends_at'?: string;
9576
+ }
9577
+
9578
+ interface PriceBookReference {
9579
+ readonly 'id': string;
9580
+ readonly 'key': string;
9581
+ }
9582
+
9583
+ interface PriceCheck {
9584
+ readonly 'display': io.flow.price.v0.models.LocalPriceDetails;
9585
+ readonly 'final': io.flow.price.v0.models.LocalPriceDetails;
9586
+ }
9587
+
9588
+ interface PriceDetail {
9589
+ readonly 'key': io.flow.price.v0.enums.PriceDetailKey;
9590
+ readonly 'components': io.flow.price.v0.models.PriceDetailComponent[];
9591
+ readonly 'amount': number;
9592
+ readonly 'label': string;
9593
+ readonly 'name'?: string;
9594
+ readonly 'basis'?: number;
9595
+ }
9596
+
9597
+ interface PriceDetailComponent {
9598
+ readonly 'key': io.flow.price.v0.enums.PriceDetailComponentKey;
9599
+ readonly 'amount': number;
9600
+ readonly 'label': string;
9601
+ readonly 'name'?: string;
9602
+ }
9603
+
9604
+ interface PriceDetails {
9605
+ readonly 'currency': string;
9606
+ readonly 'item_price': io.flow.price.v0.models.PriceDetail;
9607
+ readonly 'margins': io.flow.price.v0.models.PriceDetail;
9608
+ readonly 'vat': io.flow.price.v0.models.PriceDetail;
9609
+ readonly 'duty': io.flow.price.v0.models.PriceDetail;
9610
+ readonly 'rounding': io.flow.price.v0.models.PriceDetail;
9611
+ readonly 'price': io.flow.common.v0.models.Price;
9612
+ readonly 'total': io.flow.common.v0.models.Price;
9613
+ readonly 'adjustment'?: io.flow.price.v0.models.PriceDetail;
9614
+ }
9615
+
9616
+ interface PriceEquation {
9617
+ readonly 'contracted_rate': number;
9618
+ readonly 'rate': number;
9619
+ readonly 'pricing': io.flow.price.v0.models.Pricing;
9620
+ readonly 'base_price': number;
9621
+ readonly 'discount': number;
9622
+ readonly 'fixed_margin': number;
9623
+ readonly 'percent_margin': number;
9624
+ readonly 'insurance': number;
9625
+ readonly 'freight': number;
9626
+ readonly 'duty'?: io.flow.price.v0.models.Duty;
9627
+ readonly 'tax'?: io.flow.price.v0.models.Tax;
9628
+ readonly 'percent_sales_margin': number;
9629
+ }
9630
+
9631
+ interface Pricing {
9632
+ readonly 'vat': io.flow.price.v0.enums.PricingLevySetting;
9633
+ readonly 'duty': io.flow.price.v0.enums.PricingLevySetting;
9634
+ readonly 'rounding'?: io.flow.common.v0.models.Rounding;
9635
+ }
9636
+
9637
+ interface Tax {
9638
+ readonly 'name': string;
9639
+ readonly 'rate': number;
9640
+ readonly 'components': io.flow.price.v0.enums.LevyComponent[];
9641
+ readonly 'deminimis'?: io.flow.price.v0.unions.Deminimis;
9642
+ }
9643
+ }
9644
+
9645
+ declare namespace io.flow.price.v0.unions {
9646
+ type Deminimis = (io.flow.price.v0.models.DeminimisSimple | io.flow.price.v0.models.DeminimisPerItem);
9647
+ }
9648
+
9649
+ declare namespace io.flow.tracking.v0.enums {
9650
+ type TrackingStatus = 'label_created' | 'pending' | 'info_received' | 'picked_up' | 'in_transit' | 'out_for_delivery' | 'attempt_fail' | 'delivered' | 'exception' | 'returned' | 'expired';
9317
9651
  }
9318
9652
 
9319
9653
  declare namespace io.flow.tracking.v0.models {
@@ -9330,6 +9664,7 @@ declare namespace io.flow.tracking.v0.models {
9330
9664
  readonly 'label'?: io.flow.label.v0.models.LabelReference;
9331
9665
  readonly 'in_transit': io.flow.tracking.v0.models.LabelTrackingSummaryUpdate;
9332
9666
  readonly 'delivered'?: io.flow.tracking.v0.models.LabelTrackingSummaryUpdate;
9667
+ readonly 'rejected'?: io.flow.tracking.v0.models.LabelTrackingSummaryUpdate;
9333
9668
  }
9334
9669
 
9335
9670
  interface LabelTrackingSummaryUpdate {
@@ -9504,7 +9839,6 @@ declare namespace io.flow.merchant.onboarding.v0.models {
9504
9839
  }
9505
9840
 
9506
9841
  interface OperationsContact {
9507
- readonly 'full_name'?: string;
9508
9842
  readonly 'company'?: string;
9509
9843
  readonly 'email'?: string;
9510
9844
  readonly 'phone'?: string;
@@ -9523,7 +9857,6 @@ declare namespace io.flow.merchant.onboarding.v0.models {
9523
9857
  readonly 'status': io.flow.merchant.onboarding.v0.enums.OnboardingApplicationStatus;
9524
9858
  readonly 'company'?: io.flow.merchant.onboarding.v0.models.MerchantInfo;
9525
9859
  readonly 'indirect_tax'?: io.flow.merchant.onboarding.v0.models.IndirectTax;
9526
- readonly 'parent_company'?: io.flow.merchant.onboarding.v0.models.MerchantInfo;
9527
9860
  readonly 'beneficiary'?: string;
9528
9861
  readonly 'ultimate_beneficiary_owner'?: io.flow.merchant.onboarding.v0.models.UltimateBeneficiaryOwner;
9529
9862
  readonly 'business_url'?: string;
@@ -9533,31 +9866,30 @@ declare namespace io.flow.merchant.onboarding.v0.models {
9533
9866
  readonly 'chargeback_percentage'?: number;
9534
9867
  readonly 'bank_account_number'?: string;
9535
9868
  readonly 'aba_routing_transit_number'?: string;
9536
- readonly 'trade_sectors'?: io.flow.merchant.onboarding.v0.enums.OnboardingTradeSector[];
9537
9869
  readonly 'other_trade_sector'?: string;
9538
9870
  readonly 'third_party_logistics_partners'?: io.flow.merchant.onboarding.v0.models.ThirdPartyLogisticsPartner[];
9871
+ readonly 'center_contact'?: io.flow.merchant.onboarding.v0.models.OperationsContact;
9539
9872
  readonly 'average_order_weight'?: number;
9540
9873
  readonly 'package_dimensions'?: io.flow.common.v0.models.Dimension[];
9541
9874
  readonly 'monthly_average'?: io.flow.merchant.onboarding.v0.models.MonthlyAverage;
9542
- readonly 'dangerous_goods'?: boolean;
9543
9875
  readonly 'default_country_of_origin'?: string;
9544
9876
  readonly 'ratecard'?: io.flow.ratecard.v0.models.RatecardReference;
9545
9877
  readonly 'rate_card': string;
9546
9878
  readonly 'created_at': string;
9547
9879
  readonly 'activated_at'?: string;
9548
9880
  readonly 'status_updated_at'?: string;
9549
- readonly 'logistics_format'?: io.flow.merchant.onboarding.v0.models.LogisticsFormat;
9550
9881
  readonly 'shop'?: io.flow.merchant.onboarding.v0.models.Shop;
9551
9882
  readonly 'last_year_xborder_gmv'?: io.flow.common.v0.models.Money;
9552
9883
  readonly 'last_month_xborder_gmv'?: io.flow.common.v0.models.Money;
9553
9884
  readonly 'average_order_value'?: io.flow.common.v0.models.Money;
9885
+ readonly 'glbe_merchant_guid'?: string;
9886
+ readonly 'mcc_codes'?: number[];
9554
9887
  }
9555
9888
 
9556
9889
  interface ShopifyMerchantApplicationForm {
9557
9890
  readonly 'discriminator': 'shopify_merchant_application_form';
9558
9891
  readonly 'company'?: io.flow.merchant.onboarding.v0.models.MerchantInfo;
9559
9892
  readonly 'indirect_tax'?: io.flow.merchant.onboarding.v0.models.IndirectTax;
9560
- readonly 'parent_company'?: io.flow.merchant.onboarding.v0.models.MerchantInfo;
9561
9893
  readonly 'beneficiary'?: string;
9562
9894
  readonly 'ultimate_beneficiary_owner'?: io.flow.merchant.onboarding.v0.models.UltimateBeneficiaryOwner;
9563
9895
  readonly 'business_url'?: string;
@@ -9567,23 +9899,22 @@ declare namespace io.flow.merchant.onboarding.v0.models {
9567
9899
  readonly 'chargeback_percentage'?: number;
9568
9900
  readonly 'bank_account_number'?: string;
9569
9901
  readonly 'aba_routing_transit_number'?: string;
9570
- readonly 'trade_sectors'?: io.flow.merchant.onboarding.v0.enums.OnboardingTradeSector[];
9571
9902
  readonly 'other_trade_sector'?: string;
9572
9903
  readonly 'third_party_logistics_partners'?: io.flow.merchant.onboarding.v0.models.ThirdPartyLogisticsPartner[];
9904
+ readonly 'center_contact'?: io.flow.merchant.onboarding.v0.models.OperationsContact;
9573
9905
  readonly 'average_order_weight'?: number;
9574
9906
  readonly 'package_dimensions'?: io.flow.common.v0.models.Dimension[];
9575
9907
  readonly 'monthly_average_volume_amount'?: number;
9576
9908
  readonly 'monthly_average_volume_currency'?: string;
9577
9909
  readonly 'monthly_average_number_transactions'?: number;
9578
- readonly 'dangerous_goods'?: boolean;
9579
9910
  readonly 'default_country_of_origin'?: string;
9580
9911
  readonly 'ratecard_id'?: string;
9581
9912
  readonly 'rate_card': string;
9582
- readonly 'logistics_format'?: io.flow.merchant.onboarding.v0.models.LogisticsFormat;
9583
9913
  readonly 'shop'?: io.flow.merchant.onboarding.v0.models.Shop;
9584
9914
  readonly 'last_year_xborder_gmv'?: io.flow.common.v0.models.Money;
9585
9915
  readonly 'last_month_xborder_gmv'?: io.flow.common.v0.models.Money;
9586
9916
  readonly 'average_order_value'?: io.flow.common.v0.models.Money;
9917
+ readonly 'mcc_codes'?: number[];
9587
9918
  }
9588
9919
 
9589
9920
  interface ShopifyMerchantApplicationPutForm {
@@ -10246,6 +10577,7 @@ declare namespace io.flow.billing.v0.enums {
10246
10577
  type PayoutAttachmentType = 'transactions';
10247
10578
  type PayoutStatusFailureCode = 'invalid_account_number' | 'account_closed' | 'could_not_process';
10248
10579
  type StatementAttachmentType = 'csv';
10580
+ type TransactionPayoutPendingReason = 'waiting_for_full_refund' | 'waiting_for_fulfillment' | 'waiting_for_in_transit' | 'waiting_for_next_payout_date' | 'external_fulfillment_missing_tracking_info' | 'waiting_for_positive_account_balance';
10249
10581
  type TransactionSource = 'capture' | 'refund' | 'dispute' | 'adjustment' | 'reversal' | 'shipping_label' | 'shipping_label_service' | 'shipping_label_revenue_share' | 'platform_fee' | 'tax' | 'duty' | 'withholding' | 'other_adjustment' | 'tax_adjustment' | 'channel' | 'channel_billed' | 'order_service' | 'virtual_card_capture' | 'virtual_card_refund';
10250
10582
  type WithholdingDeductionType = 'tax' | 'duty' | 'freight' | 'insurance';
10251
10583
  }
@@ -10338,6 +10670,7 @@ declare namespace io.flow.billing.v0.models {
10338
10670
  interface ChannelTransaction {
10339
10671
  readonly 'statement'?: io.flow.billing.v0.models.BillingChannelStatementReference;
10340
10672
  readonly 'id': string;
10673
+ readonly 'metadata'?: io.flow.billing.v0.unions.TransactionMetadata;
10341
10674
  readonly 'order'?: io.flow.billing.v0.models.BillingChannelOrderSummary;
10342
10675
  readonly 'payment_request'?: io.flow.billing.v0.models.BillingChannelPaymentRequestReference;
10343
10676
  readonly 'currency': string;
@@ -10353,6 +10686,12 @@ declare namespace io.flow.billing.v0.models {
10353
10686
  readonly 'updated_at': string;
10354
10687
  }
10355
10688
 
10689
+ interface ChannelTransactionPayout {
10690
+ readonly 'transaction': io.flow.billing.v0.models.TransactionReference;
10691
+ readonly 'waiting_for'?: io.flow.billing.v0.enums.TransactionPayoutPendingReason;
10692
+ readonly 'payout'?: io.flow.billing.v0.models.PayoutReference;
10693
+ }
10694
+
10356
10695
  interface DefaultBankAccountForm {
10357
10696
  readonly 'bank_account_id': string;
10358
10697
  }
@@ -10385,6 +10724,12 @@ declare namespace io.flow.billing.v0.models {
10385
10724
  readonly 'updated_at': string;
10386
10725
  }
10387
10726
 
10727
+ interface OrganizationTransactionPayout {
10728
+ readonly 'transaction': io.flow.billing.v0.models.TransactionReference;
10729
+ readonly 'waiting_for'?: io.flow.billing.v0.enums.TransactionPayoutPendingReason;
10730
+ readonly 'payout'?: io.flow.billing.v0.models.PayoutReference;
10731
+ }
10732
+
10388
10733
  interface ParentTransactionSummary {
10389
10734
  readonly 'id': string;
10390
10735
  readonly 'source': io.flow.billing.v0.enums.TransactionSource;
@@ -10395,6 +10740,10 @@ declare namespace io.flow.billing.v0.models {
10395
10740
  readonly 'url': string;
10396
10741
  }
10397
10742
 
10743
+ interface PayoutReference {
10744
+ readonly 'id': string;
10745
+ }
10746
+
10398
10747
  interface PayoutStatusFailed {
10399
10748
  readonly 'code': 'failed';
10400
10749
  readonly 'timestamp': string;
@@ -10413,6 +10762,7 @@ declare namespace io.flow.billing.v0.models {
10413
10762
 
10414
10763
  interface PayoutTransaction {
10415
10764
  readonly 'id': string;
10765
+ readonly 'metadata'?: io.flow.billing.v0.unions.TransactionMetadata;
10416
10766
  readonly 'order'?: io.flow.billing.v0.models.BillingChannelOrderSummary;
10417
10767
  readonly 'payment_request'?: io.flow.billing.v0.models.BillingChannelPaymentRequestReference;
10418
10768
  readonly 'currency': string;
@@ -10452,6 +10802,7 @@ declare namespace io.flow.billing.v0.models {
10452
10802
  interface Transaction {
10453
10803
  readonly 'statement'?: io.flow.billing.v0.models.BillingChannelStatementReference;
10454
10804
  readonly 'id': string;
10805
+ readonly 'metadata'?: io.flow.billing.v0.unions.TransactionMetadata;
10455
10806
  readonly 'order'?: io.flow.billing.v0.models.BillingChannelOrderSummary;
10456
10807
  readonly 'payment_request'?: io.flow.billing.v0.models.BillingChannelPaymentRequestReference;
10457
10808
  readonly 'currency': string;
@@ -10467,6 +10818,15 @@ declare namespace io.flow.billing.v0.models {
10467
10818
  readonly 'updated_at': string;
10468
10819
  }
10469
10820
 
10821
+ interface TransactionMetadataShippingLabel {
10822
+ readonly 'discriminator': 'shipping_label';
10823
+ readonly 'request_method'?: io.flow.label.v0.enums.LabelRequestMethod;
10824
+ }
10825
+
10826
+ interface TransactionReference {
10827
+ readonly 'id': string;
10828
+ }
10829
+
10470
10830
  interface WithholdingDeduction {
10471
10831
  readonly 'type': io.flow.billing.v0.enums.WithholdingDeductionType;
10472
10832
  readonly 'amount': number;
@@ -10478,6 +10838,7 @@ declare namespace io.flow.billing.v0.unions {
10478
10838
  type BankAccountForm = (io.flow.billing.v0.models.BankAccountFormInfo | io.flow.billing.v0.models.BankAccountFormSimple);
10479
10839
  type PayoutStatus = (io.flow.billing.v0.models.PayoutStatusScheduled | io.flow.billing.v0.models.PayoutStatusSent | io.flow.billing.v0.models.PayoutStatusFailed);
10480
10840
  type Settlement = (io.flow.billing.v0.models.SettlementNoPayout | io.flow.billing.v0.models.SettlementPayout);
10841
+ type TransactionMetadata = (io.flow.billing.v0.models.TransactionMetadataShippingLabel);
10481
10842
  }
10482
10843
 
10483
10844
  declare namespace io.flow.harmonization.v0.enums {
@@ -10899,6 +11260,7 @@ declare namespace io.flow.fulfillment.v0.enums {
10899
11260
  type LanePreselectPreference = 'lowest_cost' | 'default_tier';
10900
11261
  type LaneStrategy = 'oldest' | 'fastest' | 'lowest_cost' | 'highest_priority';
10901
11262
  type PhysicalDeliverySpecialSerivce = 'cold_storage' | 'hazardous' | 'perishable';
11263
+ type PreferredServiceSelectionStrategy = 'calculated_rate' | 'flat_rate' | 'custom_rate';
10902
11264
  type QuoteErrorCode = 'generic_error' | 'items_not_available' | 'shipping_unavailable';
10903
11265
  type RatecardOwner = 'flow' | 'organization';
10904
11266
  type ShipmentIntegrationType = 'direct' | 'information' | 'preadvice';
@@ -11208,6 +11570,12 @@ declare namespace io.flow.fulfillment.v0.models {
11208
11570
  readonly 'total'?: io.flow.catalog.v0.models.LocalizedTotal;
11209
11571
  readonly 'goods_supply'?: io.flow.common.v0.enums.GoodsSupply;
11210
11572
  readonly 'merchant_of_record_flow_entity'?: io.flow.merchant.of.record.v0.enums.FlowEntity;
11573
+ readonly 'preferred_service'?: io.flow.fulfillment.v0.models.PhysicalDeliveryPreferredService;
11574
+ }
11575
+
11576
+ interface PhysicalDeliveryPreferredService {
11577
+ readonly 'id': string;
11578
+ readonly 'selection_stratey': io.flow.fulfillment.v0.enums.PreferredServiceSelectionStrategy;
11211
11579
  }
11212
11580
 
11213
11581
  interface PriceWithBaseAndDetails {
@@ -11699,6 +12067,10 @@ declare namespace io.flow.organization.onboarding.state.v0.models {
11699
12067
  readonly 'placeholder'?: boolean;
11700
12068
  }
11701
12069
 
12070
+ interface DeactivationPutForm {
12071
+ readonly 'reason': string;
12072
+ }
12073
+
11702
12074
  interface InComplianceReview {
11703
12075
  readonly 'discriminator': 'in_compliance_review';
11704
12076
  readonly 'placeholder'?: boolean;
@@ -11709,6 +12081,11 @@ declare namespace io.flow.organization.onboarding.state.v0.models {
11709
12081
  readonly 'placeholder'?: boolean;
11710
12082
  }
11711
12083
 
12084
+ interface MerchantDeactivated {
12085
+ readonly 'discriminator': 'merchant_deactivated';
12086
+ readonly 'reason': string;
12087
+ }
12088
+
11712
12089
  interface MerchantRejected {
11713
12090
  readonly 'discriminator': 'merchant_rejected';
11714
12091
  readonly 'reason': io.flow.organization.onboarding.state.v0.enums.MerchantRejectedReason;
@@ -11730,6 +12107,7 @@ declare namespace io.flow.organization.onboarding.state.v0.models {
11730
12107
  readonly 'time_blocked'?: number;
11731
12108
  readonly 'blocked_since'?: string;
11732
12109
  readonly 'completed_at'?: string;
12110
+ readonly 'onboarding_started_at'?: string;
11733
12111
  }
11734
12112
 
11735
12113
  interface SetupBlocked {
@@ -11749,7 +12127,7 @@ declare namespace io.flow.organization.onboarding.state.v0.models {
11749
12127
  }
11750
12128
 
11751
12129
  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);
12130
+ type OnboardingState = (io.flow.organization.onboarding.state.v0.models.InComplianceReview | io.flow.organization.onboarding.state.v0.models.SetupInProgress | io.flow.organization.onboarding.state.v0.models.MerchantRejected | io.flow.organization.onboarding.state.v0.models.SetupBlocked | io.flow.organization.onboarding.state.v0.models.SetupCompleted | io.flow.organization.onboarding.state.v0.models.MerchantActivated | io.flow.organization.onboarding.state.v0.models.MerchantDeactivated);
11753
12131
  }
11754
12132
 
11755
12133
  declare namespace io.flow.fraud.v0.enums {
@@ -12118,9 +12496,9 @@ declare namespace io.flow.internal.v0.enums {
12118
12496
  type AutoRestrictRule = 'prr-3ce7d556f2464314ab0a3e8eee33e0ce' | 'prr-599c6246a1a24752aeb85e8f79030781' | 'prr-79e41878ea564f9c81cc432a0e84703f' | 'prr-f29c26dc09e04536bc77f9c32786ed70' | 'prr-0522d426a5b741c791ba05496c35297a';
12119
12497
  type BankPaymentStatusCode = 'scheduled' | 'sent' | 'failed';
12120
12498
  type BillingAllocationKey = 'freight_cost' | 'adjustment' | 'vat_deminimis' | 'duty_deminimis' | 'duties_item_price' | 'duties_freight' | 'duties_insurance' | 'vat_item_price' | 'vat_freight' | 'vat_insurance' | 'vat_duties_item_price' | 'vat_duties_freight' | 'vat_duties_insurance' | 'item_price' | 'item_discount' | 'rounding' | 'insurance' | 'shipping' | 'order_discount' | 'subtotal_percent_sales_margin' | 'subtotal_vat_percent_sales_margin' | 'subtotal_duty_percent_sales_margin' | 'vat_subsidy' | 'duty_subsidy' | 'fuel_surcharge' | 'remote_area_surcharge';
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';
12499
+ type BillingMetricKey = 'adjustment_transactions_count' | 'adjustment_transactions_total' | 'capture_transactions_count' | 'capture_transactions_ignored_fraud_count' | 'capture_transactions_ignored_fully_refunded_count' | 'capture_transactions_ignored_other_count' | 'capture_transactions_total' | 'channel_transactions_capture_count' | 'channel_transactions_capture_total' | 'channel_transactions_adjustment_count' | 'channel_transactions_adjustment_total' | 'channel_transactions_reversal_count' | 'channel_transactions_reversal_total' | 'channel_transactions_other_count' | 'channel_transactions_other_total' | 'channel_billed_transactions_count' | 'channel_billed_transactions_total' | 'credit_payment_transactions_count' | 'credit_payment_transactions_total' | 'duty_transactions_count' | 'duty_transactions_total' | 'fully_subsidized_order_transactions_count' | 'fully_subsidized_order_transactions_total' | 'billable_label_transactions_count' | 'billable_label_transactions_count_for_unique_orders' | 'billable_label_transactions_total' | 'revenue_share_label_transactions_count' | 'revenue_share_label_transactions_count_for_unique_orders' | 'revenue_share_label_transactions_total' | 'manual_transactions_count' | 'manual_transactions_total' | 'order_transactions_count' | 'order_transactions_total' | 'refund_transactions_count' | 'refund_transactions_ignored_fraud_count' | 'refund_transactions_ignored_fully_refunded_count' | 'refund_transactions_ignored_other_count' | 'refund_transactions_total' | 'reversal_order_cancellations_transactions_count' | 'reversal_order_cancellations_transactions_total' | 'reversal_external_fulfillment_transactions_count' | 'reversal_external_fulfillment_transactions_total' | 'tax_transactions_count' | 'tax_transactions_total' | 'transfer_transactions_count' | 'transfer_transactions_total' | 'fulfillments_count' | 'fulfilled_via_replacement_order_count' | 'percentage_orders_with_fulfillment_proof_2_weeks' | 'percentage_orders_with_fulfillment_proof_4_weeks' | 'percentage_orders_with_fulfillment_proof_6_weeks' | 'percentage_orders_with_fulfillment_proof_all' | 'shipping_notifications_count' | 'queued_capture_unprocessed_count' | 'queued_capture_deletion_unprocessed_count' | 'queued_channel_transaction_unprocessed_count' | 'queued_channel_organization_unprocessed_count' | 'queued_consumer_invoice_unprocessed_count' | 'queued_fulfillment_external_unprocessed_count' | 'queued_fulfillment_in_transit_unprocessed_count' | 'queued_fulfillment_shipping_notification_unprocessed_count' | 'queued_label_invoice_request_unprocessed_count' | 'queued_label_tracking_summary_unprocessed_count' | 'queued_label_origin_unprocessed_count' | 'queued_order_unprocessed_count' | 'queued_order_identifier_unprocessed_count' | 'queued_refund_unprocessed_count' | 'queued_refund_deletion_unprocessed_count' | 'queued_refund_over_capture_unprocessed_count' | 'queued_sales_record_unprocessed_count' | 'queued_statement_batch_unprocessed_count' | 'queued_statement_email_unprocessed_count' | 'queued_statement_summary_email_unprocessed_count' | 'queued_record_snooze_count' | 'queued_record_snooze_ending_in_48_hours_count' | 'statements_no_payout_count' | 'statements_no_payout_total' | 'statements_pending_payout_count' | 'statements_pending_payout_total' | 'payouts_scheduled_count' | 'payouts_scheduled_total' | 'payouts_sent_count' | 'payouts_sent_total' | 'payouts_failed_count' | 'payouts_failed_total' | 'pending_payouts_max_age' | 'average_payout_amount' | 'orders_with_payments_count' | 'orders_without_payments_count' | 'capture_transaction_with_zero_fees_and_no_channel_transaction_count';
12122
12500
  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';
12501
+ type BillingStatementBatchFileKey = 'summary';
12124
12502
  type BillingTransactionStatus = 'pending' | 'pending_proof' | 'posted';
12125
12503
  type BillingTransactionType = 'manual' | 'subscription' | 'invoice' | 'transfer' | 'adjustment' | 'reversal' | 'capture' | 'refund' | 'virtual_card_capture' | 'virtual_card_refund' | 'tax_remittance' | 'fully_subsidized_order' | 'credit_payment' | 'dispute' | 'channel' | 'label' | 'order' | 'channel_billed' | 'tax' | 'duty';
12126
12504
  type BlazeCheckoutEvent = 'begin_checkout' | 'select_promotion' | 'add_shipping_info' | 'add_payment_info' | 'purchase';
@@ -12128,10 +12506,12 @@ declare namespace io.flow.internal.v0.enums {
12128
12506
  type BrowserBundleErrorCode = 'generic_error' | 'country_invalid';
12129
12507
  type CalculatorEngine = 'flow_rate_and_rule' | 'dtce' | 'dtce_two_calls' | 'dtce_with_deminimis' | 'dtce_merged_with_tax';
12130
12508
  type CarrierLabelGenerationMethod = 'direct' | 'easypost';
12509
+ type CarrierValidationStatus = 'success' | 'error';
12131
12510
  type CatalogImportType = 'catalog_items' | 'item_form_overlays' | 'item_prices' | 'price_book_items_import' | 'price_book_items_query_import';
12132
12511
  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';
12512
+ type ChannelOrderAcceptanceErrorAction = 'auto_reject' | 'auto_accept';
12513
+ type ChannelOrderAcceptanceNextActionFrom = 'cx_team' | 'core_team' | 'core_team_investigate' | 'mex_team' | 'payments_team' | 'tlc_team';
12514
+ type ChannelOrderAcceptanceRejectionReason = 'unsupported_origin_country' | 'unsupported_destination_country' | 'domestic_order' | 'order_contains_gift_card' | 'order_contains_restricted_goods' | 'missing_order_information' | 'unsupported_payment_information' | 'unsupported_shop_currency' | 'unsupported_free_order' | 'extracting_distribution_info_failed' | 'shipping_estimation_failed' | 'payment_authorization_failed' | 'unsupported_subsidized_order' | 'unsupported_virtual_goods' | 'non_matching_currencies';
12135
12515
  type ChannelOrderAcceptanceStatus = 'accepted' | 'rejected' | 'review';
12136
12516
  type ChannelTransactionType = 'adjustment' | 'reversal' | 'processing';
12137
12517
  type ChargebackPaymentStatus = 'captured' | 'refunded';
@@ -12227,6 +12607,7 @@ declare namespace io.flow.internal.v0.enums {
12227
12607
  type DisputeLiability = 'flow' | 'organization';
12228
12608
  type DisputeProcessor = 'adyen' | 'paypal';
12229
12609
  type DisputeStatus = 'pending' | 'won' | 'lost' | 'expired';
12610
+ type DisputeTransactionType = 'adjustment' | 'dispute';
12230
12611
  type DisputeType = 'chargeback';
12231
12612
  type DutyCompoundExpressionType = 'sum' | 'max' | 'min';
12232
12613
  type DutyExemptItemTypes = 'gift_card' | 'service' | 'digital_item' | 'personalization';
@@ -12237,7 +12618,7 @@ declare namespace io.flow.internal.v0.enums {
12237
12618
  type DutyTransactionType = 'adjustment' | 'reversal' | 'duty';
12238
12619
  type EmptyAttribute = 'irrelevant';
12239
12620
  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';
12621
+ type EventType = 'adyen_authorization_deleted' | 'adyen_authorization_upserted' | 'adyen_cancel_deleted' | 'adyen_cancel_upserted' | 'adyen_capture_deleted' | 'adyen_capture_upserted' | 'adyen_refund_deleted' | 'adyen_refund_upserted' | 'index_assignment_upserted' | 'index_assignment_deleted' | 'account_upserted' | 'account_upserted_v2' | 'account_deleted_v2' | 'account_contact_upserted' | 'account_contact_deleted' | 'billing_statement_upserted' | 'billing_statement_deleted' | 'tax_remittance_transaction_upserted' | 'tax_remittance_transaction_deleted' | 'channel_account_upserted_v2' | 'channel_account_deleted' | 'organization_account_upserted_v2' | 'organization_account_deleted' | 'account_transactions_export_request' | 'account_orders_export_request' | 'main_transaction_upserted' | 'main_transaction_deleted' | 'main_transaction_upserted_v2' | 'main_transaction_deleted_v2' | 'transfer_transaction_upserted' | 'transfer_transaction_deleted' | 'transfer_transaction_upserted_v2' | 'transfer_transaction_deleted_v2' | 'processing_transaction_upserted' | 'processing_transaction_deleted' | 'bank_payment_upserted' | 'bank_payment_deleted' | 'bank_payment_upserted_v2' | 'bank_payment_deleted_v2' | 'channel_transaction_upserted' | 'channel_transaction_deleted' | 'order_transaction_upserted' | 'order_transaction_deleted' | 'label_transaction_upserted' | 'label_transaction_deleted' | 'channel_billed_transaction_upserted' | 'channel_billed_transaction_deleted' | 'tax_transaction_upserted' | 'tax_transaction_deleted' | 'duty_transaction_upserted' | 'duty_transaction_deleted' | 'transaction_statement_upserted' | 'transaction_statement_deleted' | 'daily_value_upserted' | 'daily_value_deleted' | 'label_invoice_request_upserted' | 'label_invoice_request_deleted' | 'calculator_organization_settings_upserted' | 'calculator_organization_settings_deleted' | 'carrier_account_upserted_v2' | 'carrier_account_deleted' | 'label_generation_settings_upserted' | 'label_generation_settings_deleted' | 'catalog_import_request' | 'exclusion_rule_upserted' | 'exclusion_rule_deleted' | 'exclusion_rule_export_request' | 'catalog_item_region_availabilities_published' | 'return_policy_upserted' | 'return_policy_deleted' | 'return_policy_item_result_upserted' | 'return_policy_item_result_deleted' | 'catalog_settings_upserted' | 'catalog_settings_deleted' | 'channel_order_acceptance_upserted' | 'channel_order_acceptance_deleted' | 'checkout_configuration_upserted' | 'checkout_configuration_deleted' | 'localized_content_upserted' | 'localization_upserted' | 'internal_channel_rate_deleted' | 'internal_channel_rate_upserted' | 'rate_deleted' | 'rate_upserted' | 'spot_rate_deleted' | 'spot_rate_upserted' | 'usd_spot_rate_deleted' | 'usd_spot_rate_upserted' | 'rate_deleted_v2' | 'rate_upserted_v2' | 'organization_currency_setting_upserted' | 'organization_currency_setting_deleted' | 'channel_currency_setting_upserted' | 'channel_currency_setting_deleted' | 'customer_purge_upserted' | 'customs_description_import' | 'customs_description_tariffs_import' | 'item_dimension_estimate_upserted_v2' | 'item_dimension_estimate_deleted_v2' | 'dispute_upserted' | 'dispute_deleted' | 'duty_rates_published_v2' | 'duty_rate_request' | 'duty_rate_bulk_request' | 'duty_raw_upserted' | 'duty_raw_bulk_upserted' | 'duty_rate_upserted' | 'duty_rate_response' | 'duty_rate_bulk_response' | 'item_sales_margin_deleted' | 'item_sales_margin_upserted' | 'order_attribute_deleted' | 'order_attribute_upserted' | 'experience_export_request' | 'experience_import_request' | 'submitted_order_upserted' | 'levy_rate_summary_upserted' | 'experiment_upserted' | 'experiment_deleted' | 'experiment_results_upserted' | 'experiment_results_deleted' | 'daily_experiment_results_upserted' | 'daily_experiment_results_deleted' | 'experiment_milestone_upserted' | 'experiment_milestone_deleted' | 'export_completed' | 'export_failed' | 'feature_upserted' | 'feature_deleted' | 'organization_boolean_value_upserted' | 'organization_boolean_value_deleted' | 'account_settings_upserted' | 'account_settings_deleted' | 'account_processing_rates_upserted' | 'account_processing_rates_deleted' | 'billing_organization_processing_rates_upserted' | 'billing_organization_processing_rates_deleted' | 'billing_organization_settings_upserted' | 'billing_organization_settings_deleted' | 'billing_statement_batch_upserted' | 'billing_statement_batch_deleted' | 'billing_statement_batch_statement_upserted' | 'billing_statement_batch_statement_deleted' | 'standalone_attachment_upserted' | 'standalone_attachment_deleted' | 'platform_fee_change_upserted' | 'platform_fee_change_deleted' | 'organization_bank_account_upserted' | 'organization_bank_account_deleted' | 'fraud_review_upserted' | 'fraud_review_deleted' | 'fraud_pending_review_upserted' | 'fraud_pending_review_deleted' | 'fraud_review_decision_upserted' | 'fraud_review_decision_deleted' | 'fraud_provider_configuration_upserted' | 'fraud_provider_configuration_deleted' | 'manual_review_rule_upserted' | 'manual_review_rule_deleted' | 'ftp_file_upserted' | 'ftp_file_deleted' | 'ftp_file_to_process_uploaded' | 'center_defaults_upserted' | 'center_defaults_deleted' | 'pregenerated_request_event' | 'all_items_export' | 'harmonized_items_hs6_export' | 'unharmonized_items_export' | 'dutied_items_export' | 'tariff_codes_export' | 'harmonization_phrase_suggestion_request_import' | 'harmonization_codes_import' | 'item_classification_created' | 'harmonize_fully_request_v2' | 'hybris_catalog_items_import_request' | 'import_completed' | 'import_failed' | 'time_to_classify_upserted' | 'time_to_classify_deleted' | 'time_to_classify_aggregated_upserted' | 'time_to_classify_aggregated_deleted' | 'rate_source_summary_upserted' | 'rate_source_summary_deleted' | 'rate_freshness_summary_upserted' | 'rate_freshness_summary_deleted' | 'item_harmonization_upserted' | 'item_harmonization_deleted' | 'harmonization_item_classification_upserted' | 'harmonization_item_classification_deleted' | 'harmonization_classification_statistics_published' | 'issuer_upserted' | 'issuer_deleted' | 'item_form_import_request' | 'label_request_error_upserted' | 'label_request_error_deleted' | 'label_tracking_summary_upserted' | 'label_tracking_summary_deleted' | 'localized_item_upserted_v2' | 'localized_item_deleted' | 'localized_item_deleted_v2' | 'localized_item_snapshot' | 'localized_price_book_item_upserted' | 'localized_price_book_item_deleted' | 'feed_upserted' | 'feed_deleted' | 'feeds_export' | 'localized_item_prices_export_request' | 'optin_prompt_upserted' | 'optin_prompt_deleted' | 'order_fulfillment_deleted' | 'order_fulfillment_upserted' | 'order_placed' | 'ready_to_fulfill' | 'fulfillment_cancel' | 'order_shipped' | 'items_shipped' | 'organization_business_entity_deleted' | 'organization_business_entity_upserted' | 'organization_status_change_upserted' | 'organization_status_change_deleted' | 'organization_deactivation_upserted' | 'organization_deactivation_deleted' | 'merchant_guid_assignment_upserted' | 'merchant_guid_assignment_deleted' | 'partner_organization_settings_upserted' | 'partner_organization_settings_deleted' | 'unassigned_merchant_guid_upserted' | 'unassigned_merchant_guid_deleted' | 'internal_authorization_upserted' | 'internal_authorization_deleted' | 'afterpay_authorization_upserted' | 'afterpay_authorization_deleted' | 'afterpay_capture_upserted' | 'afterpay_capture_deleted' | 'afterpay_refund_upserted' | 'afterpay_refund_deleted' | 'adyen_merchant_account_upserted' | 'adyen_merchant_account_deleted' | 'chargeback_upserted' | 'chargeback_deleted' | 'payment_processor_account_upserted' | 'payment_processor_account_deleted' | 'payment_processor_merchant_upserted' | 'payment_processor_merchant_deleted' | 'virtual_card_provider_upserted' | 'virtual_card_provider_deleted' | 'authorization_bundle_upserted' | 'authorization_bundle_deleted' | 'organization_payment_setting_upserted' | 'organization_payment_setting_deleted' | 'paypal_payment_deleted' | 'paypal_payment_upserted' | 'paypal_execution_deleted' | 'paypal_execution_upserted' | 'paypal_refund_deleted' | 'paypal_refund_upserted' | 'pricing_indicator' | 'order_rates_published_v3' | 'ratecard_dimension_estimate_upserted' | 'ratecard_dimension_estimate_deleted' | 'ratecard_lanes_import_request' | 'ratecard_standard_configuration_upserted' | 'ratecard_standard_configuration_deleted' | 'ratecard_service_fee_upserted' | 'ratecard_service_fee_deleted' | 'ratecard_lane_aggregate_upserted' | 'ratecard_lane_aggregate_deleted' | 'ratecard_rate_level_upserted' | 'ratecard_rate_level_deleted' | 'ratecard_rate_level_ratecard_upserted' | 'ratecard_rate_level_ratecard_deleted' | 'ratecard_rate_level_organization_upserted' | 'ratecard_rate_level_organization_deleted' | 'organization_restriction_snapshot_upserted' | 'organization_restriction_snapshot_deleted' | 'restriction_organization_status_upserted' | 'restriction_organization_status_deleted' | 'organization_restriction_status_upserted' | 'organization_restriction_status_deleted' | 'shopify_shop_upserted' | 'shopify_shop_deleted' | 'shopify_experience_short_id_upserted' | 'shopify_experience_short_id_deleted' | 'shopify_markets_order_upserted' | 'shopify_markets_order_deleted' | 'shopify_markets_shop_upserted' | 'shopify_markets_shop_deleted' | 'shopify_markets_webhook_registration_upserted' | 'shopify_markets_webhook_registration_deleted' | 'shopify_markets_shop_statistics_upserted' | 'shopify_markets_shop_statistics_deleted' | 'shopify_markets_metrics_upserted' | 'shopify_markets_metrics_deleted' | 'shopify_monitoring_order_monitor_event_upserted' | 'shopify_monitoring_order_monitor_event_deleted' | 'shopify_order_fulfillments_snapshot_upserted' | 'shopify_order_fulfillments_snapshot_deleted' | 'stripe_authorization_deleted' | 'stripe_authorization_upserted' | 'stripe_reversal_deleted' | 'stripe_reversal_upserted' | 'stripe_capture_deleted' | 'stripe_capture_upserted' | 'stripe_refund_deleted' | 'stripe_refund_upserted' | 'svb_virtual_card_clearing_upserted' | 'svb_virtual_card_clearing_deleted' | 'liability_remittance_plan_upserted' | 'liability_remittance_plan_deleted' | 'tracking_label_event_upserted_v2' | 'tracking_label_event_deleted_v2' | 'tracking_label_upserted' | 'tracking_label_deleted' | 'tracking_upserted' | 'tracking_deleted' | 'tracking_request_upserted' | 'tracking_response_upserted' | 'user_upserted_v2' | 'user_deleted_v2';
12241
12622
  type ExperienceImportType = 'experience_with_settings';
12242
12623
  type ExperienceOrderAction = 'submit' | 'refund_gift_cards';
12243
12624
  type ExperienceOrderActionTrigger = 'zero_balance' | 'unsubmitted_order';
@@ -12271,6 +12652,7 @@ declare namespace io.flow.internal.v0.enums {
12271
12652
  type LabelCreationStatus = 'success' | 'error' | 'pending' | 'cancelled';
12272
12653
  type LabelGenerationAddressFailureStatus = 'in_review' | 'resolved' | 'unresolved';
12273
12654
  type LabelInputSource = 'estimate';
12655
+ type LabelRequestErrorHandlingResponsibility = 'merchant' | 'merchant_integration' | 'shopify_integration' | 'globale_cx' | 'globale_system';
12274
12656
  type LabelTransactionType = 'adjustment' | 'reversal' | 'billable_label' | 'fee' | 'revenue_share';
12275
12657
  type LiabilityType = 'full_value_tax' | 'low_value_goods_tax' | 'high_value_goods_tax' | 'duties';
12276
12658
  type MainTransactionStatus = 'scheduled' | 'pending_proof';
@@ -12294,7 +12676,7 @@ declare namespace io.flow.internal.v0.enums {
12294
12676
  type OnboardingAuditThemeKey = 'billing' | 'b2b_invoicing' | 'catalog' | 'currency' | 'checkout' | 'fraud' | 'logistics' | 'payments' | 'shopify_markets' | 'integration_partner' | 'dtce' | 'restrictions' | 'organization_status' | 'miscellaneous';
12295
12677
  type OnboardingAutomationProcessState = 'not_started' | 'in_progress' | 'success' | 'failed';
12296
12678
  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';
12679
+ type OnboardingStateSource = 'unknown' | 'unit_test' | 'api' | 'api_activation' | 'api_sandbox_setup' | 'api_internal' | 'api_internal_block' | 'api_internal_unblock' | 'api_internal_delete_transaction' | 'onboarding_application' | 'organization_state_change' | 'restriction_organization_status';
12298
12680
  type OrderAction = 'consumer_submit' | 'fraud_review_accept' | 'fraud_review_decline' | 'payment_fully_authorize' | 'payment_fully_capture';
12299
12681
  type OrderAttributeIntent = 'discount_code';
12300
12682
  type OrderCancellationInitiatedBy = 'flow' | 'organization';
@@ -12325,13 +12707,15 @@ declare namespace io.flow.internal.v0.enums {
12325
12707
  type PromptCheckoutDisplayPosition = 'email' | 'submission';
12326
12708
  type PromptOptions = 'notice_only' | 'require_consent' | 'consent_by_default';
12327
12709
  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';
12710
+ type QueuedRecordType = 'capture' | 'capture_deletion' | 'channel_transaction' | 'channel_organization' | 'consumer_invoice' | 'fulfillment_in_transit' | 'fulfillment_shipping_notification' | 'fulfillment_external' | 'label_tracking_summary' | 'label_invoice_request' | 'label_origin' | 'order' | 'order_identifier' | 'refund' | 'refund_deletion' | 'refund_over_capture' | 'sales_record' | 'statement_batch' | 'statement_email' | 'statement_summary_email' | 'wash';
12329
12711
  type QuoteRequestType = 'generate' | 'delete' | 'update_currency_rate' | 'update_country';
12712
+ type RateLevelKey = 'shopify_small_usa' | 'shopify_medium_usa' | 'shopify_enterprise_usa' | 'shopify_small_sdc_usa';
12330
12713
  type RateSource = 'calculated' | 'market';
12331
12714
  type ReboundConfigurationStatus = 'active' | 'inactive';
12332
12715
  type RedirectReason = 'three_d_secure';
12333
- type RejectionReason = 'suspicious_behavior' | 'suspicious_past_activity' | 'risky_velocity' | 'previous_chargebacks' | 'restricted_party_screening';
12716
+ type RejectionReason = 'merchant_policy' | 'previous_chargebacks' | 'restricted_party_screening' | 'risky_velocity' | 'suspicious_behavior' | 'suspicious_past_activity';
12334
12717
  type ReportInterval = 'hourly' | 'daily' | 'weekly' | 'monthly';
12718
+ type ReportStatus = 'created' | 'completed' | 'completed_no_records' | 'failed';
12335
12719
  type ReportingScheme = 'immediate_reporting_to_tax_authority' | 'periodic_reporting_to_tax_authority' | 'paid_at_border' | 'paid_on_delivery';
12336
12720
  type ResponsibleParty = 'flow' | 'organization';
12337
12721
  type RestrictionAction = 'prohibited' | 'restricted';
@@ -12347,6 +12731,7 @@ declare namespace io.flow.internal.v0.enums {
12347
12731
  type ShopifyGrantStatus = 'pass' | 'fail';
12348
12732
  type ShopifyMarketsDangerousGoods = 'aerosols' | 'air_bag_inflators_or_seat_belt_pretensioners' | 'alcoholic_beverages_containing_more_than_24_percent_alcohol_by_volume' | 'batteries' | 'carbon_dioxide_or_dry_ice' | 'corrosives' | 'cannabidiol_products' | 'cologne_or_perfume' | 'currency_or_gift_cards_or_monetary_instruments' | 'exotic_leather_goods' | 'environmental_waste' | 'explosives_or_ammunition' | 'flammable_liquids' | 'gases' | 'hazardous_or_combustible_materials' | 'infectious_or_biological_substances' | 'knives' | 'matches_or_lighter_or_lighter_refills' | 'nail_polish' | 'oxidizing_materials_or_organic_peroxides' | 'pornography' | 'prohibited_carriage' | 'pesticides_or_toxic_herbicides_or_insecticides_or_poisonous_toxic_substances';
12349
12733
  type ShopifyMarketsHtsNumberAvailable = 'yes' | 'no' | 'i_dont_know';
12734
+ type ShopifyMarketsQueuedRecordType = 'order_update' | 'card_payment' | 'online_payment' | 'flow_shop' | 'catalog_publication_sync' | 'product_restriction_result';
12350
12735
  type ShopifyMarketsTradeSector = 'apparel_and_accessories' | 'beauty_and_cosmetics' | 'electronics' | 'food_or_perishables' | 'jewellery_and_watches' | 'paper_and_art' | 'sports_and_fitness' | 'toys_hobbies_gifts' | 'other';
12351
12736
  type ShopifyMonitoringMonitorReviewStatus = 'in_review' | 'reviewed';
12352
12737
  type ShopifyMonitoringTrackingField = 'tracking_number' | 'carrier_service' | 'tracking_url';
@@ -12367,7 +12752,7 @@ declare namespace io.flow.internal.v0.enums {
12367
12752
  type SuggestionAction = 'accept' | 'validate' | 'review';
12368
12753
  type SurchargeType = 'fuel' | 'remote_area' | 'oversize' | 'duties_paid';
12369
12754
  type TariffEligibilityType = 'rex';
12370
- type TaskProcessorKey = 'order_messenger' | 'harmonization' | 'fraud_review' | 'carrier_account' | 'payment' | 'ratecard' | 'logistics_center' | 'center_defaults';
12755
+ type TaskProcessorKey = 'order_messenger' | 'harmonization' | 'fraud_review' | 'carrier_account' | 'payment' | 'rate_levels' | 'center_defaults';
12371
12756
  type TaxCalculationErrorCode = 'generic_error' | 'outside_of_jurisdiction';
12372
12757
  type TaxParty = 'consumer' | 'organization' | 'flow' | 'carrier';
12373
12758
  type TaxTransactionType = 'adjustment' | 'reversal' | 'tax';
@@ -12375,7 +12760,10 @@ declare namespace io.flow.internal.v0.enums {
12375
12760
  type TrackingIntegrationType = 'api' | 'bulk' | 'aftership';
12376
12761
  type TransactionPostingMethod = 'time' | 'proof';
12377
12762
  type TransferMethod = 'ach';
12763
+ type TrueUpSurchargeType = 'fuel' | 'remote_area' | 'oversize' | 'duties_paid' | 'emergency' | 'peak';
12378
12764
  type UnclassifiedProductStatus = 'ignored' | 'escalated' | 'requeued' | 'unverified' | 'queued' | 'unconfident';
12765
+ type WashCarrierActualFileStatus = 'pending' | 'processing' | 'processed' | 'failed';
12766
+ type WeightSelection = 'dead' | 'dimensional';
12379
12767
  }
12380
12768
 
12381
12769
  declare namespace io.flow.internal.v0.models {
@@ -12683,6 +13071,7 @@ declare namespace io.flow.internal.v0.models {
12683
13071
  readonly 'authentication': io.flow.internal.v0.models.AdyenAuthenticationForm;
12684
13072
  readonly 'country': string;
12685
13073
  readonly 'status'?: io.flow.internal.v0.enums.ProcessorEntityStatus;
13074
+ readonly 'organization_capability'?: io.flow.internal.v0.enums.OrganizationCapability;
12686
13075
  }
12687
13076
 
12688
13077
  interface AdyenAuthentication {
@@ -12844,6 +13233,7 @@ declare namespace io.flow.internal.v0.models {
12844
13233
  readonly 'external_id': string;
12845
13234
  readonly 'country': string;
12846
13235
  readonly 'status'?: io.flow.internal.v0.enums.ProcessorEntityStatus;
13236
+ readonly 'organization_capability'?: io.flow.internal.v0.enums.OrganizationCapability;
12847
13237
  }
12848
13238
 
12849
13239
  interface AdyenPaymentDetailsForm {
@@ -12902,6 +13292,7 @@ declare namespace io.flow.internal.v0.models {
12902
13292
  readonly 'country': string;
12903
13293
  readonly 'authentication': io.flow.internal.v0.models.AfterpayAuthenticationForm;
12904
13294
  readonly 'status'?: io.flow.internal.v0.enums.ProcessorEntityStatus;
13295
+ readonly 'organization_capability'?: io.flow.internal.v0.enums.OrganizationCapability;
12905
13296
  }
12906
13297
 
12907
13298
  interface AfterpayAuthentication {
@@ -13025,6 +13416,12 @@ declare namespace io.flow.internal.v0.models {
13025
13416
  readonly 'count': number;
13026
13417
  }
13027
13418
 
13419
+ interface AlgoliaIndexAssignment {
13420
+ readonly 'id': string;
13421
+ readonly 'name': string;
13422
+ readonly 'application_id': string;
13423
+ }
13424
+
13028
13425
  interface AllItemsExport {
13029
13426
  readonly 'discriminator': 'all_items_export';
13030
13427
  readonly 'event_id': string;
@@ -13130,6 +13527,12 @@ declare namespace io.flow.internal.v0.models {
13130
13527
  readonly 'charge_trigger': io.flow.internal.v0.enums.OrderChargeTrigger;
13131
13528
  }
13132
13529
 
13530
+ interface AutoReviewCriteria {
13531
+ readonly 'hs_code'?: string;
13532
+ readonly 'keywords'?: string[];
13533
+ readonly 'action'?: io.flow.internal.v0.enums.RestrictionStatus;
13534
+ }
13535
+
13133
13536
  interface Backfill {
13134
13537
  readonly 'days_to_backfill': string[];
13135
13538
  }
@@ -13306,7 +13709,6 @@ declare namespace io.flow.internal.v0.models {
13306
13709
 
13307
13710
  interface BillingStatementBatch {
13308
13711
  readonly 'id': string;
13309
- readonly 'reconciliation': io.flow.internal.v0.models.BillingStatementBatchReconciliation;
13310
13712
  }
13311
13713
 
13312
13714
  interface BillingStatementBatchDeleted {
@@ -13316,10 +13718,6 @@ declare namespace io.flow.internal.v0.models {
13316
13718
  readonly 'id': string;
13317
13719
  }
13318
13720
 
13319
- interface BillingStatementBatchReconciliation {
13320
- readonly 'month': string;
13321
- }
13322
-
13323
13721
  interface BillingStatementBatchReference {
13324
13722
  readonly 'id': string;
13325
13723
  }
@@ -13440,6 +13838,7 @@ declare namespace io.flow.internal.v0.models {
13440
13838
  readonly 'authentication': io.flow.internal.v0.models.BitpayAuthenticationForm;
13441
13839
  readonly 'country': string;
13442
13840
  readonly 'status'?: io.flow.internal.v0.enums.ProcessorEntityStatus;
13841
+ readonly 'organization_capability'?: io.flow.internal.v0.enums.OrganizationCapability;
13443
13842
  }
13444
13843
 
13445
13844
  interface BitpayAuthentication {
@@ -13709,6 +14108,32 @@ declare namespace io.flow.internal.v0.models {
13709
14108
  readonly 'name': string;
13710
14109
  }
13711
14110
 
14111
+ interface CalculatorDtcePostBody {
14112
+ readonly 'products': io.flow.internal.v0.models.CalculatorDtceProduct[];
14113
+ readonly 'countryCodeFrom': string;
14114
+ readonly 'countryCodeTo': string;
14115
+ readonly 'classification': string;
14116
+ readonly 'shippingCost': number;
14117
+ readonly 'insuranceCost': number;
14118
+ readonly 'totalShipmentWeight': number;
14119
+ readonly 'currencyCode': string;
14120
+ readonly 'outputCurrencyCode': string;
14121
+ readonly 'explanation': boolean;
14122
+ readonly 'responseFormat': number;
14123
+ readonly 'requestId': string;
14124
+ readonly 'provinceCode'?: string;
14125
+ }
14126
+
14127
+ interface CalculatorDtceProduct {
14128
+ readonly 'origin': string;
14129
+ readonly 'hsCode': string;
14130
+ readonly 'sku': string;
14131
+ readonly 'value': number;
14132
+ readonly 'weight': number;
14133
+ readonly 'quantity': number;
14134
+ readonly 'reference'?: string;
14135
+ }
14136
+
13712
14137
  interface CalculatorOrganizationSettings {
13713
14138
  readonly 'id': string;
13714
14139
  readonly 'default_country_of_origin'?: string;
@@ -13767,6 +14192,12 @@ declare namespace io.flow.internal.v0.models {
13767
14192
  readonly 'carrier_account': io.flow.internal.v0.models.CarrierAccount;
13768
14193
  }
13769
14194
 
14195
+ interface CarrierAccountValidation {
14196
+ readonly 'organization': string;
14197
+ readonly 'status': io.flow.internal.v0.enums.CarrierValidationStatus;
14198
+ readonly 'error_message'?: string;
14199
+ }
14200
+
13770
14201
  interface CarrierInvoice {
13771
14202
  readonly 'number': string;
13772
14203
  readonly 'timestamp': string;
@@ -13819,6 +14250,12 @@ declare namespace io.flow.internal.v0.models {
13819
14250
  readonly 'data': io.flow.internal.v0.models.CatalogItemRegionAvailabilitiesData;
13820
14251
  }
13821
14252
 
14253
+ interface CatalogPublicationSyncValidationError {
14254
+ readonly 'message': string;
14255
+ readonly 'reason': string;
14256
+ readonly 'next_action_from': io.flow.internal.v0.enums.ChannelOrderAcceptanceNextActionFrom;
14257
+ }
14258
+
13822
14259
  interface CatalogSettings {
13823
14260
  readonly 'id': string;
13824
14261
  readonly 'mixed_bag_weight': io.flow.internal.v0.enums.MixedBagWeight;
@@ -14040,6 +14477,7 @@ declare namespace io.flow.internal.v0.models {
14040
14477
  readonly 'payment_request_id'?: string;
14041
14478
  readonly 'status': io.flow.internal.v0.enums.ChannelOrderAcceptanceStatus;
14042
14479
  readonly 'reasons': io.flow.internal.v0.models.ChannelOrderAcceptanceReason[];
14480
+ readonly 'next_action_from'?: io.flow.internal.v0.enums.ChannelOrderAcceptanceNextActionFrom;
14043
14481
  readonly 'order_created_at'?: string;
14044
14482
  }
14045
14483
 
@@ -16393,6 +16831,7 @@ declare namespace io.flow.internal.v0.models {
16393
16831
  readonly 'customs_description'?: string;
16394
16832
  readonly 'hs6_code'?: string;
16395
16833
  readonly 'hs6_description'?: string;
16834
+ readonly 'status'?: io.flow.internal.v0.enums.ItemHarmonizationStatus;
16396
16835
  }
16397
16836
 
16398
16837
  interface ClassificationProductId {
@@ -16457,6 +16896,10 @@ declare namespace io.flow.internal.v0.models {
16457
16896
  readonly 'urls': string[];
16458
16897
  }
16459
16898
 
16899
+ interface CompanyReference {
16900
+ readonly 'id': string;
16901
+ }
16902
+
16460
16903
  interface Compliance {
16461
16904
  readonly 'id': string;
16462
16905
  readonly 'destination': string;
@@ -16585,6 +17028,7 @@ declare namespace io.flow.internal.v0.models {
16585
17028
  readonly 'authentication': io.flow.internal.v0.models.CryptoAuthenticationForm;
16586
17029
  readonly 'country': string;
16587
17030
  readonly 'status'?: io.flow.internal.v0.enums.ProcessorEntityStatus;
17031
+ readonly 'organization_capability'?: io.flow.internal.v0.enums.OrganizationCapability;
16588
17032
  }
16589
17033
 
16590
17034
  interface CryptoAuthentication {
@@ -16605,7 +17049,7 @@ declare namespace io.flow.internal.v0.models {
16605
17049
  readonly 'base_amount': number;
16606
17050
  readonly 'surcharges': io.flow.internal.v0.models.CsvSurcharges;
16607
17051
  readonly 'total': number;
16608
- readonly 'weight_unit': io.flow.common.v0.enums.UnitOfMeasurement;
17052
+ readonly 'weight_unit': io.flow.units.v0.enums.UnitOfWeight;
16609
17053
  readonly 'weight': number;
16610
17054
  readonly 'ratecard': io.flow.internal.v0.models.CsvActualRatecard;
16611
17055
  }
@@ -16615,7 +17059,7 @@ declare namespace io.flow.internal.v0.models {
16615
17059
  }
16616
17060
 
16617
17061
  interface CsvDimensions {
16618
- readonly 'unit': io.flow.common.v0.enums.UnitOfMeasurement;
17062
+ readonly 'unit': io.flow.units.v0.enums.UnitOfLength;
16619
17063
  readonly 'length': number;
16620
17064
  readonly 'width': number;
16621
17065
  readonly 'depth': number;
@@ -16654,7 +17098,7 @@ declare namespace io.flow.internal.v0.models {
16654
17098
  readonly 'base_amount': number;
16655
17099
  readonly 'surcharges': io.flow.internal.v0.models.CsvSurcharges;
16656
17100
  readonly 'total': number;
16657
- readonly 'weight_unit': io.flow.common.v0.enums.UnitOfMeasurement;
17101
+ readonly 'weight_unit': io.flow.units.v0.enums.UnitOfWeight;
16658
17102
  readonly 'weight': number;
16659
17103
  readonly 'variance': number;
16660
17104
  }
@@ -16719,7 +17163,7 @@ declare namespace io.flow.internal.v0.models {
16719
17163
  }
16720
17164
 
16721
17165
  interface CsvWeight {
16722
- readonly 'unit': io.flow.common.v0.enums.UnitOfMeasurement;
17166
+ readonly 'unit': io.flow.units.v0.enums.UnitOfWeight;
16723
17167
  readonly 'provided': number;
16724
17168
  readonly 'dimensional': number;
16725
17169
  readonly 'lookup': number;
@@ -16928,6 +17372,7 @@ declare namespace io.flow.internal.v0.models {
16928
17372
  readonly 'order': io.flow.internal.v0.models.DebugOrder;
16929
17373
  readonly 'debug': io.flow.internal.v0.models.DebugDetails;
16930
17374
  readonly 'transactions': io.flow.billing.v0.models.Transaction[];
17375
+ readonly 'reporting': io.flow.internal.v0.models.ReportingDetails;
16931
17376
  }
16932
17377
 
16933
17378
  interface DebugOrderTransactionForm {
@@ -16939,6 +17384,8 @@ declare namespace io.flow.internal.v0.models {
16939
17384
  readonly 'refund_id'?: string;
16940
17385
  readonly 'order_identifier'?: io.flow.internal.v0.models.DebugOrderTransactionFormOrderIdentifier;
16941
17386
  readonly 'authorization_id'?: string;
17387
+ readonly 'posting_proof_id'?: string;
17388
+ readonly 'label_tracking_summary_id'?: string;
16942
17389
  }
16943
17390
 
16944
17391
  interface DebugOrderTransactionFormOrderIdentifier {
@@ -17445,6 +17892,8 @@ declare namespace io.flow.internal.v0.models {
17445
17892
  }
17446
17893
 
17447
17894
  interface ErpFlowVendor {
17895
+ readonly 'company': io.flow.internal.v0.models.CompanyReference;
17896
+ readonly 'entity': io.flow.internal.v0.models.EntityReference;
17448
17897
  readonly 'acc_des': string;
17449
17898
  readonly 'country_name': string;
17450
17899
  readonly 'acng_code': string;
@@ -17456,7 +17905,6 @@ declare namespace io.flow.internal.v0.models {
17456
17905
  readonly 'state_a': string;
17457
17906
  readonly 'bank_code': string;
17458
17907
  readonly 'id': string;
17459
- readonly 'entity': io.flow.internal.v0.models.EntityReference;
17460
17908
  readonly 'tax_code'?: string;
17461
17909
  readonly 'vat_flag'?: string;
17462
17910
  readonly 'w_tax_percent'?: string;
@@ -17497,16 +17945,101 @@ declare namespace io.flow.internal.v0.models {
17497
17945
 
17498
17946
  interface ErpPriorityFileForm {
17499
17947
  readonly 'type': io.flow.internal.v0.enums.ErpFileType;
17948
+ readonly 'name': string;
17500
17949
  readonly 'url': string;
17501
17950
  }
17502
17951
 
17952
+ interface ErpPriorityVendor {
17953
+ readonly 'id': string;
17954
+ readonly 'acc_des'?: string;
17955
+ readonly 'tax_code'?: string;
17956
+ readonly 'vat_flag'?: string;
17957
+ readonly 'country_name'?: string;
17958
+ readonly 'w_tax_percent'?: string;
17959
+ readonly 'iban'?: string;
17960
+ readonly 'confirmed_date'?: string;
17961
+ readonly 'w_tax_date'?: string;
17962
+ readonly 'w_tax_num_expl'?: string;
17963
+ readonly 'acng_code'?: string;
17964
+ readonly 'phone'?: string;
17965
+ readonly 'address'?: string;
17966
+ readonly 'address_a'?: string;
17967
+ readonly 'address_2'?: string;
17968
+ readonly 'address_3'?: string;
17969
+ readonly 'state_name'?: string;
17970
+ readonly 'code'?: string;
17971
+ readonly 'zip'?: string;
17972
+ readonly 'pay_account'?: string;
17973
+ readonly 'comp_num'?: string;
17974
+ readonly 'w_tax_num'?: string;
17975
+ readonly 'vat_num'?: string;
17976
+ readonly 'orig_acc_name'?: string;
17977
+ readonly 'branch'?: string;
17978
+ readonly 'form_1099_code'?: string;
17979
+ readonly 'trial_bal_code'?: string;
17980
+ readonly 'sec_name'?: string;
17981
+ readonly 'state'?: string;
17982
+ readonly 'state_a'?: string;
17983
+ readonly 'fax'?: string;
17984
+ readonly 'details'?: string;
17985
+ readonly 'bank_code'?: string;
17986
+ readonly 'state_code'?: string;
17987
+ readonly 'tax_office_code'?: string;
17988
+ readonly 'pay_code'?: string;
17989
+ readonly 'eacc_des'?: string;
17990
+ readonly 'acng_des'?: string;
17991
+ readonly 'branch_des'?: string;
17992
+ }
17993
+
17994
+ interface ErpPriorityVendorForm {
17995
+ readonly 'acc_des'?: string;
17996
+ readonly 'tax_code'?: string;
17997
+ readonly 'vat_flag'?: string;
17998
+ readonly 'country_name'?: string;
17999
+ readonly 'w_tax_percent'?: string;
18000
+ readonly 'iban'?: string;
18001
+ readonly 'confirmed_date'?: string;
18002
+ readonly 'w_tax_date'?: string;
18003
+ readonly 'w_tax_num_expl'?: string;
18004
+ readonly 'acng_code'?: string;
18005
+ readonly 'phone'?: string;
18006
+ readonly 'address'?: string;
18007
+ readonly 'address_a'?: string;
18008
+ readonly 'address_2'?: string;
18009
+ readonly 'address_3'?: string;
18010
+ readonly 'state_name'?: string;
18011
+ readonly 'code'?: string;
18012
+ readonly 'zip'?: string;
18013
+ readonly 'pay_account'?: string;
18014
+ readonly 'comp_num'?: string;
18015
+ readonly 'w_tax_num'?: string;
18016
+ readonly 'vat_num'?: string;
18017
+ readonly 'orig_acc_name'?: string;
18018
+ readonly 'branch'?: string;
18019
+ readonly 'form_1099_code'?: string;
18020
+ readonly 'trial_bal_code'?: string;
18021
+ readonly 'sec_name'?: string;
18022
+ readonly 'state'?: string;
18023
+ readonly 'state_a'?: string;
18024
+ readonly 'fax'?: string;
18025
+ readonly 'details'?: string;
18026
+ readonly 'bank_code'?: string;
18027
+ readonly 'state_code'?: string;
18028
+ readonly 'tax_office_code'?: string;
18029
+ readonly 'pay_code'?: string;
18030
+ readonly 'eacc_des'?: string;
18031
+ readonly 'acng_des'?: string;
18032
+ readonly 'branch_des'?: string;
18033
+ }
18034
+
17503
18035
  interface ErpVendor {
17504
18036
  readonly 'placeholder'?: string;
17505
18037
  }
17506
18038
 
17507
18039
  interface ErpVendorStatus {
17508
18040
  readonly 'entities': io.flow.internal.v0.models.ErpVendorStatusEntity[];
17509
- readonly 'latest_priority_file'?: io.flow.internal.v0.models.ErpVendorStatusFile;
18041
+ readonly 'latest_flow_file'?: io.flow.internal.v0.models.ErpVendorStatusFlowFile;
18042
+ readonly 'latest_priority_file'?: io.flow.internal.v0.models.ErpVendorStatusPriorityFile;
17510
18043
  }
17511
18044
 
17512
18045
  interface ErpVendorStatusEntity {
@@ -17514,8 +18047,14 @@ declare namespace io.flow.internal.v0.models {
17514
18047
  readonly 'number_differences': number;
17515
18048
  }
17516
18049
 
17517
- interface ErpVendorStatusFile {
18050
+ interface ErpVendorStatusFlowFile {
18051
+ readonly 'url': string;
18052
+ readonly 'created_at': string;
18053
+ }
18054
+
18055
+ interface ErpVendorStatusPriorityFile {
17518
18056
  readonly 'name': string;
18057
+ readonly 'url': string;
17519
18058
  readonly 'created_at': string;
17520
18059
  readonly 'errors'?: string[];
17521
18060
  readonly 'processed_at'?: string;
@@ -17832,12 +18371,14 @@ declare namespace io.flow.internal.v0.models {
17832
18371
  readonly 'carrier_id'?: string;
17833
18372
  readonly 'service_id'?: string;
17834
18373
  readonly 'carrier_tracking_number'?: string;
18374
+ readonly 'fulfilled_via_replacement_order'?: boolean;
17835
18375
  }
17836
18376
 
17837
18377
  interface ExternalFulfillmentProofTrackingForm {
17838
18378
  readonly 'carrier_id'?: string;
17839
18379
  readonly 'service_id'?: string;
17840
18380
  readonly 'carrier_tracking_number'?: string;
18381
+ readonly 'fulfilled_via_replacement_order'?: boolean;
17841
18382
  }
17842
18383
 
17843
18384
  interface FacebookPixel {
@@ -18109,6 +18650,7 @@ declare namespace io.flow.internal.v0.models {
18109
18650
  readonly 'authentication': io.flow.internal.v0.models.FiservAuthenticationForm;
18110
18651
  readonly 'country': string;
18111
18652
  readonly 'status'?: io.flow.internal.v0.enums.ProcessorEntityStatus;
18653
+ readonly 'organization_capability'?: io.flow.internal.v0.enums.OrganizationCapability;
18112
18654
  }
18113
18655
 
18114
18656
  interface FiservAuthentication {
@@ -18159,6 +18701,7 @@ declare namespace io.flow.internal.v0.models {
18159
18701
  readonly 'funding_currency': string;
18160
18702
  readonly 'country': string;
18161
18703
  readonly 'status'?: io.flow.internal.v0.enums.ProcessorEntityStatus;
18704
+ readonly 'organization_capability'?: io.flow.internal.v0.enums.OrganizationCapability;
18162
18705
  }
18163
18706
 
18164
18707
  interface FlowAccount {
@@ -18207,6 +18750,12 @@ declare namespace io.flow.internal.v0.models {
18207
18750
  readonly 'default_contents': string;
18208
18751
  }
18209
18752
 
18753
+ interface FlowShopValidationError {
18754
+ readonly 'message': string;
18755
+ readonly 'reason': string;
18756
+ readonly 'next_action_from': io.flow.internal.v0.enums.ChannelOrderAcceptanceNextActionFrom;
18757
+ }
18758
+
18210
18759
  interface FraudPendingReview {
18211
18760
  readonly 'id': string;
18212
18761
  readonly 'fraud_review_id': string;
@@ -18293,6 +18842,7 @@ declare namespace io.flow.internal.v0.models {
18293
18842
  readonly 'provider'?: io.flow.internal.v0.enums.FraudProvider;
18294
18843
  readonly 'payment_authorization_id'?: string;
18295
18844
  readonly 'decline_reason'?: io.flow.internal.v0.unions.DeclineReason;
18845
+ readonly 'created_at'?: string;
18296
18846
  }
18297
18847
 
18298
18848
  interface FraudReviewDecision {
@@ -18303,6 +18853,7 @@ declare namespace io.flow.internal.v0.models {
18303
18853
  readonly 'status': io.flow.fraud.v0.enums.FraudStatus;
18304
18854
  readonly 'created_at': string;
18305
18855
  readonly 'liability'?: io.flow.fraud.v0.enums.FraudLiability;
18856
+ readonly 'updated_by_user'?: io.flow.common.v0.models.UserReference;
18306
18857
  }
18307
18858
 
18308
18859
  interface FraudReviewDecisionDeleted {
@@ -18421,12 +18972,31 @@ declare namespace io.flow.internal.v0.models {
18421
18972
  readonly 'percent': number;
18422
18973
  }
18423
18974
 
18975
+ interface Fulfillment {
18976
+ readonly 'id': string;
18977
+ readonly 'fulfilled_at': string;
18978
+ readonly 'currency': string;
18979
+ readonly 'order': io.flow.internal.v0.models.OrderSummary;
18980
+ readonly 'origin'?: io.flow.internal.v0.models.FulfillmentOrigin;
18981
+ readonly 'lines': io.flow.internal.v0.models.FulfillmentLine[];
18982
+ readonly 'shipping': io.flow.internal.v0.models.FulfillmentShipping;
18983
+ readonly 'shopper': io.flow.internal.v0.models.ShopperSummary;
18984
+ readonly 'merchant': io.flow.internal.v0.models.MerchantSummary;
18985
+ readonly 'completes_order': boolean;
18986
+ readonly 'sequence_number': number;
18987
+ readonly 'business'?: io.flow.internal.v0.models.FulfillmentBusiness;
18988
+ }
18989
+
18424
18990
  interface FulfillmentActionForm {
18425
18991
  readonly 'discriminator': 'fulfillment_action_form';
18426
18992
  readonly 'fulfillment_key': string;
18427
18993
  readonly 'actions': io.flow.internal.v0.models.LineActionQuantities[];
18428
18994
  }
18429
18995
 
18996
+ interface FulfillmentBusiness {
18997
+ readonly 'vat_registration_number': string;
18998
+ }
18999
+
18430
19000
  interface FulfillmentCancel {
18431
19001
  readonly 'discriminator': 'fulfillment_cancel';
18432
19002
  readonly 'event_id': string;
@@ -18445,6 +19015,41 @@ declare namespace io.flow.internal.v0.models {
18445
19015
  readonly 'key': string;
18446
19016
  }
18447
19017
 
19018
+ interface FulfillmentLine {
19019
+ readonly 'item': io.flow.internal.v0.models.ItemSummary;
19020
+ readonly 'quantity': number;
19021
+ readonly 'unit_price': number;
19022
+ readonly 'price': number;
19023
+ readonly 'discount': number;
19024
+ readonly 'tax': number;
19025
+ readonly 'duty': number;
19026
+ readonly 'subsidies': io.flow.internal.v0.models.FulfillmentSubsidyBreakdown;
19027
+ }
19028
+
19029
+ interface FulfillmentOrigin {
19030
+ readonly 'country': string;
19031
+ readonly 'province_code'?: string;
19032
+ }
19033
+
19034
+ interface FulfillmentProofExternalFulfillmentProofReference {
19035
+ readonly 'discriminator': 'external_fulfillment';
19036
+ readonly 'id': string;
19037
+ }
19038
+
19039
+ interface FulfillmentProofLabelTrackingReference {
19040
+ readonly 'discriminator': 'label_tracking';
19041
+ readonly 'id': string;
19042
+ }
19043
+
19044
+ interface FulfillmentProofShippingNotificationReference {
19045
+ readonly 'discriminator': 'shipping_notification';
19046
+ readonly 'id': string;
19047
+ }
19048
+
19049
+ interface FulfillmentReference {
19050
+ readonly 'id': string;
19051
+ }
19052
+
18448
19053
  interface FulfillmentShipmentTracking {
18449
19054
  readonly 'fulfillment_key': string;
18450
19055
  readonly 'flow_tracking_number': string;
@@ -18453,6 +19058,14 @@ declare namespace io.flow.internal.v0.models {
18453
19058
  readonly 'items': io.flow.order.management.v0.models.FulfillmentItem[];
18454
19059
  }
18455
19060
 
19061
+ interface FulfillmentShipping {
19062
+ readonly 'price': number;
19063
+ readonly 'discount': number;
19064
+ readonly 'tax': number;
19065
+ readonly 'duty': number;
19066
+ readonly 'subsidies': io.flow.internal.v0.models.FulfillmentSubsidyBreakdown;
19067
+ }
19068
+
18456
19069
  interface FulfillmentSnapshot {
18457
19070
  readonly 'tracking_source': string;
18458
19071
  readonly 'fulfillment_status'?: string;
@@ -18463,6 +19076,11 @@ declare namespace io.flow.internal.v0.models {
18463
19076
  readonly 'fulfillment_updated_at'?: string;
18464
19077
  }
18465
19078
 
19079
+ interface FulfillmentSubsidyBreakdown {
19080
+ readonly 'tax': number;
19081
+ readonly 'duty': number;
19082
+ }
19083
+
18466
19084
  interface FxFee {
18467
19085
  readonly 'base': io.flow.common.v0.models.Money;
18468
19086
  readonly 'local': io.flow.common.v0.models.Money;
@@ -18523,6 +19141,12 @@ declare namespace io.flow.internal.v0.models {
18523
19141
  readonly 'num_events': number;
18524
19142
  }
18525
19143
 
19144
+ interface GenericValidationError {
19145
+ readonly 'message': string;
19146
+ readonly 'reason': string;
19147
+ readonly 'next_action_from': io.flow.internal.v0.enums.ChannelOrderAcceptanceNextActionFrom;
19148
+ }
19149
+
18526
19150
  interface GiftCard {
18527
19151
  readonly 'id': string;
18528
19152
  readonly 'number': string;
@@ -18662,6 +19286,18 @@ declare namespace io.flow.internal.v0.models {
18662
19286
  readonly 'filename'?: string;
18663
19287
  }
18664
19288
 
19289
+ interface HarmonizationThreshold {
19290
+ readonly 'id': string;
19291
+ readonly 'chapter': number;
19292
+ readonly 'value': number;
19293
+ readonly 'updated_at': string;
19294
+ }
19295
+
19296
+ interface HarmonizationThresholdForm {
19297
+ readonly 'chapter': number;
19298
+ readonly 'value': number;
19299
+ }
19300
+
18665
19301
  interface HarmonizationUnclassifiedStatistics {
18666
19302
  readonly 'organization': io.flow.common.v0.models.OrganizationSummary;
18667
19303
  readonly 'statistics': io.flow.internal.v0.models.UnclassifiedProductStatistic[];
@@ -19409,6 +20045,22 @@ declare namespace io.flow.internal.v0.models {
19409
20045
  readonly 'error': string;
19410
20046
  }
19411
20047
 
20048
+ interface IndexAssignmentDeleted {
20049
+ readonly 'discriminator': 'index_assignment_deleted';
20050
+ readonly 'event_id': string;
20051
+ readonly 'timestamp': string;
20052
+ readonly 'organization': string;
20053
+ readonly 'id': string;
20054
+ }
20055
+
20056
+ interface IndexAssignmentUpserted {
20057
+ readonly 'discriminator': 'index_assignment_upserted';
20058
+ readonly 'event_id': string;
20059
+ readonly 'timestamp': string;
20060
+ readonly 'organization': string;
20061
+ readonly 'assignment': io.flow.internal.v0.models.AlgoliaIndexAssignment;
20062
+ }
20063
+
19412
20064
  interface InstallForm {
19413
20065
  readonly 'token': string;
19414
20066
  }
@@ -19723,7 +20375,7 @@ declare namespace io.flow.internal.v0.models {
19723
20375
  }
19724
20376
 
19725
20377
  interface ItemHarmonization {
19726
- readonly 'id'?: string;
20378
+ readonly 'id': string;
19727
20379
  readonly 'organization_id': string;
19728
20380
  readonly 'item_number': string;
19729
20381
  readonly 'item_name'?: string;
@@ -19843,6 +20495,11 @@ declare namespace io.flow.internal.v0.models {
19843
20495
  readonly 'item_sales_margin': io.flow.internal.v0.models.ItemSalesMargin;
19844
20496
  }
19845
20497
 
20498
+ interface ItemSummary {
20499
+ readonly 'number': string;
20500
+ readonly 'fulfillment_method': io.flow.catalog.v0.enums.FulfillmentMethodValue;
20501
+ }
20502
+
19846
20503
  interface ItemValuesForm {
19847
20504
  readonly 'values': string[];
19848
20505
  }
@@ -19907,6 +20564,11 @@ declare namespace io.flow.internal.v0.models {
19907
20564
  readonly 'constructions': Record<string, string[]>;
19908
20565
  }
19909
20566
 
20567
+ interface LabelBase {
20568
+ readonly 'amount': number;
20569
+ readonly 'weight': number;
20570
+ }
20571
+
19910
20572
  interface LabelCancellationError {
19911
20573
  readonly 'code': io.flow.internal.v0.enums.LabelCancellationErrorCode;
19912
20574
  readonly 'messages': string[];
@@ -19936,47 +20598,113 @@ declare namespace io.flow.internal.v0.models {
19936
20598
  readonly 'reference_id'?: string;
19937
20599
  }
19938
20600
 
19939
- interface LabelGenerationAddressFailureStatusUpdateForm {
19940
- readonly 'status': io.flow.internal.v0.enums.LabelGenerationAddressFailureStatus;
20601
+ interface LabelDestination {
20602
+ readonly 'country': string;
20603
+ }
20604
+
20605
+ interface LabelGenerationAddressFailureStatusUpdateForm {
20606
+ readonly 'status': io.flow.internal.v0.enums.LabelGenerationAddressFailureStatus;
20607
+ }
20608
+
20609
+ interface LabelGenerationAddressFailures {
20610
+ readonly 'id': string;
20611
+ readonly 'organization_id': string;
20612
+ readonly 'status': io.flow.internal.v0.enums.LabelGenerationAddressFailureStatus;
20613
+ readonly 'order_number': string;
20614
+ readonly 'order_submitted_at': string;
20615
+ readonly 'carrier_id': string;
20616
+ readonly 'destination_errors': io.flow.internal.v0.models.DestinationError[];
20617
+ }
20618
+
20619
+ interface LabelGenerationSettings {
20620
+ readonly 'id': string;
20621
+ readonly 'item_identifier'?: string;
20622
+ readonly 'auto_generate_query'?: string;
20623
+ readonly 'commercial_invoice_only_query'?: string;
20624
+ }
20625
+
20626
+ interface LabelGenerationSettingsDeleted {
20627
+ readonly 'discriminator': 'label_generation_settings_deleted';
20628
+ readonly 'event_id': string;
20629
+ readonly 'timestamp': string;
20630
+ readonly 'organization': string;
20631
+ readonly 'id': string;
20632
+ }
20633
+
20634
+ interface LabelGenerationSettingsForm {
20635
+ readonly 'item_identifier'?: string;
20636
+ readonly 'auto_generate_query'?: string;
20637
+ readonly 'commercial_invoice_only_query'?: string;
20638
+ }
20639
+
20640
+ interface LabelGenerationSettingsUpserted {
20641
+ readonly 'discriminator': 'label_generation_settings_upserted';
20642
+ readonly 'event_id': string;
20643
+ readonly 'timestamp': string;
20644
+ readonly 'organization': string;
20645
+ readonly 'label_generation_settings': io.flow.internal.v0.models.LabelGenerationSettings;
20646
+ }
20647
+
20648
+ interface LabelInvoiceRequest {
20649
+ readonly 'id': string;
20650
+ readonly 'label': io.flow.internal.v0.models.TrueUpLabelSummary;
20651
+ readonly 'units': io.flow.internal.v0.models.LabelUnits;
20652
+ readonly 'base': io.flow.internal.v0.models.LabelBase;
20653
+ readonly 'surcharges': io.flow.internal.v0.models.LabelSurcharge[];
20654
+ readonly 'total': number;
20655
+ readonly 'destination': io.flow.internal.v0.models.LabelDestination;
20656
+ readonly 'metadata': io.flow.internal.v0.models.LabelMetadata;
20657
+ }
20658
+
20659
+ interface LabelInvoiceRequestDeleted {
20660
+ readonly 'discriminator': 'label_invoice_request_deleted';
20661
+ readonly 'event_id': string;
20662
+ readonly 'timestamp': string;
20663
+ readonly 'organization': string;
20664
+ readonly 'id': string;
20665
+ }
20666
+
20667
+ interface LabelInvoiceRequestUpserted {
20668
+ readonly 'discriminator': 'label_invoice_request_upserted';
20669
+ readonly 'event_id': string;
20670
+ readonly 'timestamp': string;
20671
+ readonly 'organization': string;
20672
+ readonly 'label_invoice_request': io.flow.internal.v0.models.LabelInvoiceRequest;
19941
20673
  }
19942
20674
 
19943
- interface LabelGenerationAddressFailures {
19944
- readonly 'id': string;
19945
- readonly 'organization_id': string;
19946
- readonly 'status': io.flow.internal.v0.enums.LabelGenerationAddressFailureStatus;
19947
- readonly 'order_number': string;
19948
- readonly 'order_submitted_at': string;
19949
- readonly 'carrier_id': string;
19950
- readonly 'destination_errors': io.flow.internal.v0.models.DestinationError[];
20675
+ interface LabelMetadata {
20676
+ readonly 'ratecard': io.flow.internal.v0.models.MetadataRatecard;
20677
+ readonly 'weights': io.flow.internal.v0.models.MetadataWeights;
19951
20678
  }
19952
20679
 
19953
- interface LabelGenerationSettings {
20680
+ interface LabelRequestError {
19954
20681
  readonly 'id': string;
19955
- readonly 'item_identifier'?: string;
19956
- readonly 'auto_generate_query'?: string;
19957
- readonly 'commercial_invoice_only_query'?: string;
20682
+ readonly 'order_number': string;
20683
+ readonly 'created_at': string;
20684
+ readonly 'reference_id': string;
20685
+ readonly 'label_request_method'?: io.flow.label.v0.enums.LabelRequestMethod;
20686
+ readonly 'label_trigger_method'?: io.flow.label.v0.enums.LabelTriggerMethod;
20687
+ readonly 'order_identifier': string[];
20688
+ readonly 'suggested_responsibility': io.flow.internal.v0.enums.LabelRequestErrorHandlingResponsibility;
20689
+ readonly 'carrier_id'?: string;
20690
+ readonly 'service_id'?: string;
20691
+ readonly 'errors': string[];
19958
20692
  }
19959
20693
 
19960
- interface LabelGenerationSettingsDeleted {
19961
- readonly 'discriminator': 'label_generation_settings_deleted';
20694
+ interface LabelRequestErrorDeleted {
20695
+ readonly 'discriminator': 'label_request_error_deleted';
19962
20696
  readonly 'event_id': string;
19963
20697
  readonly 'timestamp': string;
19964
20698
  readonly 'organization': string;
19965
20699
  readonly 'id': string;
19966
20700
  }
19967
20701
 
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';
20702
+ interface LabelRequestErrorUpserted {
20703
+ readonly 'discriminator': 'label_request_error_upserted';
19976
20704
  readonly 'event_id': string;
19977
20705
  readonly 'timestamp': string;
19978
20706
  readonly 'organization': string;
19979
- readonly 'label_generation_settings': io.flow.internal.v0.models.LabelGenerationSettings;
20707
+ readonly 'label_request_error': io.flow.internal.v0.models.LabelRequestError;
19980
20708
  }
19981
20709
 
19982
20710
  interface LabelSummary {
@@ -19993,6 +20721,27 @@ declare namespace io.flow.internal.v0.models {
19993
20721
  readonly 'service'?: io.flow.reference.v0.models.CarrierService;
19994
20722
  }
19995
20723
 
20724
+ interface LabelSurcharge {
20725
+ readonly 'amount': number;
20726
+ readonly 'type': io.flow.internal.v0.enums.TrueUpSurchargeType;
20727
+ readonly 'detail': io.flow.internal.v0.unions.LabelSurchargeDetail;
20728
+ }
20729
+
20730
+ interface LabelSurchargeDetailFlat {
20731
+ readonly 'discriminator': 'flat';
20732
+ readonly 'placeholder'?: string;
20733
+ }
20734
+
20735
+ interface LabelSurchargeDetailPerWeightUnit {
20736
+ readonly 'discriminator': 'per_weight_unit';
20737
+ readonly 'fee': number;
20738
+ }
20739
+
20740
+ interface LabelSurchargeDetailPercentage {
20741
+ readonly 'discriminator': 'percentage';
20742
+ readonly 'percentage': number;
20743
+ }
20744
+
19996
20745
  interface LabelTaxonomy {
19997
20746
  readonly 'discriminator': 'item';
19998
20747
  readonly 'item_type': string;
@@ -20021,8 +20770,10 @@ declare namespace io.flow.internal.v0.models {
20021
20770
  interface LabelTransaction {
20022
20771
  readonly 'discriminator': 'label_transaction';
20023
20772
  readonly 'label': io.flow.internal.v0.models.BillingLabelSummary;
20024
- readonly 'order'?: io.flow.internal.v0.models.BillingOrderTransactionOrderReference;
20025
20773
  readonly 'tracking': io.flow.internal.v0.models.BillingLabelTrackingSummaryReference;
20774
+ readonly 'gross_value': io.flow.common.v0.models.Price;
20775
+ readonly 'discount': io.flow.internal.v0.models.Discount;
20776
+ readonly 'order'?: io.flow.internal.v0.models.BillingOrderTransactionOrderReference;
20026
20777
  readonly 'id': string;
20027
20778
  readonly 'type': io.flow.internal.v0.enums.BillingTransactionType;
20028
20779
  readonly 'status': io.flow.internal.v0.enums.BillingTransactionStatus;
@@ -20047,6 +20798,12 @@ declare namespace io.flow.internal.v0.models {
20047
20798
  readonly 'label_transaction': io.flow.internal.v0.models.LabelTransaction;
20048
20799
  }
20049
20800
 
20801
+ interface LabelUnits {
20802
+ readonly 'currency': string;
20803
+ readonly 'weight': io.flow.units.v0.enums.UnitOfWeight;
20804
+ readonly 'length': io.flow.units.v0.enums.UnitOfLength;
20805
+ }
20806
+
20050
20807
  interface LabeledContent {
20051
20808
  readonly 'label': io.flow.internal.v0.models.ContentLabel;
20052
20809
  readonly 'contents': io.flow.internal.v0.unions.ContentItem[];
@@ -20339,11 +21096,6 @@ declare namespace io.flow.internal.v0.models {
20339
21096
  readonly 'url': string;
20340
21097
  }
20341
21098
 
20342
- interface LogisticsCenterCheck {
20343
- readonly 'issues'?: string[];
20344
- readonly 'is_valid': boolean;
20345
- }
20346
-
20347
21099
  interface Logo {
20348
21100
  readonly 'url': string;
20349
21101
  }
@@ -20744,6 +21496,44 @@ declare namespace io.flow.internal.v0.models {
20744
21496
  readonly 'organization_reference': io.flow.common.v0.models.Organization;
20745
21497
  }
20746
21498
 
21499
+ interface MerchantCharges {
21500
+ readonly 'labels': number;
21501
+ readonly 'total': number;
21502
+ }
21503
+
21504
+ interface MerchantFees {
21505
+ readonly 'duty_guarantee': number;
21506
+ readonly 'mor': number;
21507
+ readonly 'fraud': number;
21508
+ readonly 'fx': number;
21509
+ readonly 'processing': number;
21510
+ readonly 'rate_lock': number;
21511
+ readonly 'transfer': number;
21512
+ readonly 'total': number;
21513
+ }
21514
+
21515
+ interface MerchantGuidAssignment {
21516
+ readonly 'id': string;
21517
+ readonly 'merchant_guid': string;
21518
+ readonly 'created_at': string;
21519
+ }
21520
+
21521
+ interface MerchantGuidAssignmentDeleted {
21522
+ readonly 'discriminator': 'merchant_guid_assignment_deleted';
21523
+ readonly 'event_id': string;
21524
+ readonly 'timestamp': string;
21525
+ readonly 'organization': string;
21526
+ readonly 'id': string;
21527
+ }
21528
+
21529
+ interface MerchantGuidAssignmentUpserted {
21530
+ readonly 'discriminator': 'merchant_guid_assignment_upserted';
21531
+ readonly 'event_id': string;
21532
+ readonly 'timestamp': string;
21533
+ readonly 'organization': string;
21534
+ readonly 'merchant_guid_assignment': io.flow.internal.v0.models.MerchantGuidAssignment;
21535
+ }
21536
+
20747
21537
  interface MerchantOfRecordEntitySettings {
20748
21538
  readonly 'id': string;
20749
21539
  readonly 'merchant_of_record_entity': io.flow.common.v0.models.MerchantOfRecordEntity;
@@ -20769,6 +21559,44 @@ declare namespace io.flow.internal.v0.models {
20769
21559
  readonly 'currency'?: string;
20770
21560
  }
20771
21561
 
21562
+ interface MerchantSearchResult {
21563
+ readonly 'organization_id': string;
21564
+ readonly 'shop_name'?: string;
21565
+ readonly 'legal_name': string;
21566
+ readonly 'onboarding_current_state': io.flow.organization.onboarding.state.v0.unions.OnboardingState;
21567
+ }
21568
+
21569
+ interface MerchantSubsidies {
21570
+ readonly 'fees': io.flow.internal.v0.models.ShopperFees;
21571
+ readonly 'shipping': number;
21572
+ readonly 'tax': number;
21573
+ readonly 'duty': number;
21574
+ readonly 'total': number;
21575
+ }
21576
+
21577
+ interface MerchantSummary {
21578
+ readonly 'subsidies': io.flow.internal.v0.models.MerchantSubsidies;
21579
+ readonly 'fees': io.flow.internal.v0.models.MerchantFees;
21580
+ readonly 'charges': io.flow.internal.v0.models.MerchantCharges;
21581
+ readonly 'discounts': number;
21582
+ }
21583
+
21584
+ interface MetadataProposition {
21585
+ readonly 'shipping_method': io.flow.internal.v0.models.ShippingMethodReference;
21586
+ readonly 'name': string;
21587
+ }
21588
+
21589
+ interface MetadataRatecard {
21590
+ readonly 'id': string;
21591
+ readonly 'proposition': io.flow.internal.v0.models.MetadataProposition;
21592
+ }
21593
+
21594
+ interface MetadataWeights {
21595
+ readonly 'selected': io.flow.internal.v0.enums.WeightSelection;
21596
+ readonly 'dead'?: io.flow.internal.v0.models.WeightsDead;
21597
+ readonly 'dimensional'?: io.flow.internal.v0.models.WeightsDimensional;
21598
+ }
21599
+
20772
21600
  interface NextBillingStatement {
20773
21601
  readonly 'date': string;
20774
21602
  readonly 'amount': io.flow.common.v0.models.Price;
@@ -20804,6 +21632,7 @@ declare namespace io.flow.internal.v0.models {
20804
21632
  readonly 'description': string;
20805
21633
  readonly 'result': io.flow.internal.v0.enums.OnboardingAuditResult;
20806
21634
  readonly 'messages': io.flow.internal.v0.models.OnboardingAuditMessage[];
21635
+ readonly 'execution_time_ms'?: number;
20807
21636
  }
20808
21637
 
20809
21638
  interface OnboardingAuditSnapshot {
@@ -20828,7 +21657,7 @@ declare namespace io.flow.internal.v0.models {
20828
21657
  readonly 'compliance_full_review_required': boolean;
20829
21658
  readonly 'application_received': string;
20830
21659
  readonly 'legal_name': string;
20831
- readonly 'shop_name': string;
21660
+ readonly 'shop_name'?: string;
20832
21661
  readonly 'organization_id': string;
20833
21662
  readonly 'onboarding_current_state': io.flow.organization.onboarding.state.v0.unions.OnboardingState;
20834
21663
  readonly 'setup_completed_at'?: string;
@@ -21107,6 +21936,12 @@ declare namespace io.flow.internal.v0.models {
21107
21936
  readonly 'authorization'?: io.flow.payment.v0.unions.AuthorizationForm;
21108
21937
  }
21109
21938
 
21939
+ interface OrderSummary {
21940
+ readonly 'id': string;
21941
+ readonly 'organization': io.flow.common.v0.models.OrganizationReference;
21942
+ readonly 'number': string;
21943
+ }
21944
+
21110
21945
  interface OrderTransaction {
21111
21946
  readonly 'discriminator': 'order_transaction';
21112
21947
  readonly 'order': io.flow.internal.v0.models.BillingOrderTransactionOrderReference;
@@ -21134,6 +21969,13 @@ declare namespace io.flow.internal.v0.models {
21134
21969
  readonly 'order_transaction': io.flow.internal.v0.models.OrderTransaction;
21135
21970
  }
21136
21971
 
21972
+ interface OrderValidationError {
21973
+ readonly 'message': string;
21974
+ readonly 'reason': io.flow.internal.v0.enums.ChannelOrderAcceptanceRejectionReason;
21975
+ readonly 'action'?: io.flow.internal.v0.enums.ChannelOrderAcceptanceErrorAction;
21976
+ readonly 'next_action_from': io.flow.internal.v0.enums.ChannelOrderAcceptanceNextActionFrom;
21977
+ }
21978
+
21137
21979
  interface OrganizationAccount {
21138
21980
  readonly 'organization': io.flow.common.v0.models.OrganizationReference;
21139
21981
  readonly 'id': string;
@@ -21272,6 +22114,32 @@ declare namespace io.flow.internal.v0.models {
21272
22114
  readonly 'organization_currency_setting': io.flow.internal.v0.models.OrganizationCurrencySetting;
21273
22115
  }
21274
22116
 
22117
+ interface OrganizationDeactivation {
22118
+ readonly 'id': string;
22119
+ readonly 'deactivate_at': string;
22120
+ readonly 'created_at': string;
22121
+ }
22122
+
22123
+ interface OrganizationDeactivationDeleted {
22124
+ readonly 'discriminator': 'organization_deactivation_deleted';
22125
+ readonly 'event_id': string;
22126
+ readonly 'timestamp': string;
22127
+ readonly 'organization': string;
22128
+ readonly 'id': string;
22129
+ }
22130
+
22131
+ interface OrganizationDeactivationForm {
22132
+ readonly 'deactivate_at': string;
22133
+ }
22134
+
22135
+ interface OrganizationDeactivationUpserted {
22136
+ readonly 'discriminator': 'organization_deactivation_upserted';
22137
+ readonly 'event_id': string;
22138
+ readonly 'timestamp': string;
22139
+ readonly 'organization': string;
22140
+ readonly 'organization_deactivation': io.flow.internal.v0.models.OrganizationDeactivation;
22141
+ }
22142
+
21275
22143
  interface OrganizationDebugTransaction {
21276
22144
  readonly 'debug'?: io.flow.internal.v0.models.DebugTransactionDetails;
21277
22145
  readonly 'order'?: io.flow.internal.v0.models.DebugOrder;
@@ -21476,6 +22344,13 @@ declare namespace io.flow.internal.v0.models {
21476
22344
  readonly 'organization_status_change': io.flow.internal.v0.models.OrganizationStatusChange;
21477
22345
  }
21478
22346
 
22347
+ interface OrganizationsAuditCheckReport {
22348
+ readonly 'organization_id': string;
22349
+ readonly 'organization_status': io.flow.common.v0.enums.OrganizationStatus;
22350
+ readonly 'onboarding_state': io.flow.organization.onboarding.state.v0.unions.OnboardingState;
22351
+ readonly 'audit_result': io.flow.internal.v0.enums.OnboardingAuditResult;
22352
+ }
22353
+
21479
22354
  interface Partner {
21480
22355
  readonly 'id': string;
21481
22356
  readonly 'name': string;
@@ -21660,6 +22535,12 @@ declare namespace io.flow.internal.v0.models {
21660
22535
  readonly 'status'?: io.flow.internal.v0.enums.PaymentSummaryStatus;
21661
22536
  }
21662
22537
 
22538
+ interface PayoutStatusCounts {
22539
+ readonly 'scheduled': number;
22540
+ readonly 'sent': number;
22541
+ readonly 'failed': number;
22542
+ }
22543
+
21663
22544
  interface PaypalAccount {
21664
22545
  readonly 'discriminator': 'paypal_account';
21665
22546
  readonly 'id': string;
@@ -21687,6 +22568,7 @@ declare namespace io.flow.internal.v0.models {
21687
22568
  readonly 'country': string;
21688
22569
  readonly 'authentication': io.flow.internal.v0.models.PaypalAuthenticationForm;
21689
22570
  readonly 'status'?: io.flow.internal.v0.enums.ProcessorEntityStatus;
22571
+ readonly 'organization_capability'?: io.flow.internal.v0.enums.OrganizationCapability;
21690
22572
  }
21691
22573
 
21692
22574
  interface PaypalAccountReference {
@@ -21809,6 +22691,7 @@ declare namespace io.flow.internal.v0.models {
21809
22691
  readonly 'external_id': string;
21810
22692
  readonly 'country': string;
21811
22693
  readonly 'status'?: io.flow.internal.v0.enums.ProcessorEntityStatus;
22694
+ readonly 'organization_capability'?: io.flow.internal.v0.enums.OrganizationCapability;
21812
22695
  }
21813
22696
 
21814
22697
  interface PaypalPaymentDeleted {
@@ -22118,6 +23001,12 @@ declare namespace io.flow.internal.v0.models {
22118
23001
  readonly 'column_settings': io.flow.internal.v0.models.HarmonizationColumnSetting[];
22119
23002
  }
22120
23003
 
23004
+ interface ProductRestrictionResultValidationError {
23005
+ readonly 'message': string;
23006
+ readonly 'reason': string;
23007
+ readonly 'next_action_from': io.flow.internal.v0.enums.ChannelOrderAcceptanceNextActionFrom;
23008
+ }
23009
+
22121
23010
  interface ProductReviewHistory {
22122
23011
  readonly 'product_id': string;
22123
23012
  readonly 'reviews': io.flow.internal.v0.models.RestrictionHistoryItemReviewDecision[];
@@ -22143,6 +23032,20 @@ declare namespace io.flow.internal.v0.models {
22143
23032
  readonly 'shipping_notification_id': string;
22144
23033
  }
22145
23034
 
23035
+ interface QueuedRecord {
23036
+ readonly 'type': string;
23037
+ readonly 'type_id': string;
23038
+ readonly 'source_type'?: string;
23039
+ readonly 'source_id'?: string;
23040
+ readonly 'environment'?: string;
23041
+ readonly 'created_at': string;
23042
+ readonly 'num_attempts': number;
23043
+ readonly 'next_attempt_at': string;
23044
+ readonly 'errors'?: string[];
23045
+ readonly 'stacktrace'?: string;
23046
+ readonly 'snooze_id'?: string;
23047
+ }
23048
+
22146
23049
  interface QuoteRequest {
22147
23050
  readonly 'id': string;
22148
23051
  readonly 'request_type': io.flow.internal.v0.enums.QuoteRequestType;
@@ -22250,10 +23153,12 @@ declare namespace io.flow.internal.v0.models {
22250
23153
  interface RateLevel {
22251
23154
  readonly 'id': string;
22252
23155
  readonly 'name': string;
23156
+ readonly 'key': string;
22253
23157
  }
22254
23158
 
22255
23159
  interface RateLevelForm {
22256
23160
  readonly 'name': string;
23161
+ readonly 'key': string;
22257
23162
  }
22258
23163
 
22259
23164
  interface RateLevelOrganization {
@@ -22282,6 +23187,7 @@ declare namespace io.flow.internal.v0.models {
22282
23187
  readonly 'id': string;
22283
23188
  readonly 'name': string;
22284
23189
  readonly 'effective_at': string;
23190
+ readonly 'key': string;
22285
23191
  }
22286
23192
 
22287
23193
  interface RateNameSummary {
@@ -22587,6 +23493,23 @@ declare namespace io.flow.internal.v0.models {
22587
23493
  readonly 'number': string;
22588
23494
  }
22589
23495
 
23496
+ interface Report {
23497
+ readonly 'key': string;
23498
+ readonly 'status': io.flow.internal.v0.enums.ReportStatus;
23499
+ readonly 'from': string;
23500
+ readonly 'to': string;
23501
+ readonly 'organization_id'?: string;
23502
+ readonly 'sales_url'?: string;
23503
+ readonly 'refunds_url'?: string;
23504
+ }
23505
+
23506
+ interface ReportForm {
23507
+ readonly 'key'?: string;
23508
+ readonly 'from': string;
23509
+ readonly 'to': string;
23510
+ readonly 'organization_id'?: string;
23511
+ }
23512
+
22590
23513
  interface ReportRuleDecision {
22591
23514
  readonly 'rule_id': string;
22592
23515
  readonly 'rule_name': string;
@@ -22598,6 +23521,11 @@ declare namespace io.flow.internal.v0.models {
22598
23521
  readonly 'task_id': string;
22599
23522
  }
22600
23523
 
23524
+ interface ReportingDetails {
23525
+ readonly 'sales_records'?: any/*object*/[];
23526
+ readonly 'refund_records'?: any/*object*/[];
23527
+ }
23528
+
22601
23529
  interface RequeueRequestForm {
22602
23530
  readonly 'product_ids'?: string[];
22603
23531
  readonly 'hs6_codes'?: string[];
@@ -22758,6 +23686,7 @@ declare namespace io.flow.internal.v0.models {
22758
23686
  readonly 'positive_keywords': string[];
22759
23687
  readonly 'negative_keywords': string[];
22760
23688
  readonly 'value_threshold_usd'?: number;
23689
+ readonly 'auto_review_criteria'?: io.flow.internal.v0.models.AutoReviewCriteria[];
22761
23690
  }
22762
23691
 
22763
23692
  interface RestrictionRuleDecisionForm {
@@ -22774,6 +23703,7 @@ declare namespace io.flow.internal.v0.models {
22774
23703
  readonly 'positive_keywords': string[];
22775
23704
  readonly 'negative_keywords': string[];
22776
23705
  readonly 'value_threshold_usd'?: number;
23706
+ readonly 'auto_review_criteria'?: io.flow.internal.v0.models.AutoReviewCriteria[];
22777
23707
  }
22778
23708
 
22779
23709
  interface RestrictionRuleMetadata {
@@ -22811,6 +23741,16 @@ declare namespace io.flow.internal.v0.models {
22811
23741
  readonly 'destinations': io.flow.reference.v0.models.Country[];
22812
23742
  }
22813
23743
 
23744
+ interface Retracking {
23745
+ readonly 'carrier': string;
23746
+ readonly 'tracking_number'?: string;
23747
+ }
23748
+
23749
+ interface RetrackingForm {
23750
+ readonly 'carrier': string;
23751
+ readonly 'carrier_tracking_numbers': string[];
23752
+ }
23753
+
22814
23754
  interface ReturnPolicyDeleted {
22815
23755
  readonly 'discriminator': 'return_policy_deleted';
22816
23756
  readonly 'event_id': string;
@@ -22868,6 +23808,14 @@ declare namespace io.flow.internal.v0.models {
22868
23808
  readonly 'processor': io.flow.internal.v0.enums.Processor;
22869
23809
  }
22870
23810
 
23811
+ interface SandboxSetup {
23812
+ readonly 'requested_by': string;
23813
+ }
23814
+
23815
+ interface SandboxSetupForm {
23816
+ readonly 'requested_by': string;
23817
+ }
23818
+
22871
23819
  interface Screen {
22872
23820
  readonly 'id': string;
22873
23821
  readonly 'q': string;
@@ -22999,6 +23947,10 @@ declare namespace io.flow.internal.v0.models {
22999
23947
  readonly 'destination': string;
23000
23948
  }
23001
23949
 
23950
+ interface ShippingMethodReference {
23951
+ readonly 'id': string;
23952
+ }
23953
+
23002
23954
  interface Shop {
23003
23955
  readonly 'id': string;
23004
23956
  readonly 'organization'?: io.flow.common.v0.models.OrganizationReference;
@@ -23107,6 +24059,16 @@ declare namespace io.flow.internal.v0.models {
23107
24059
  readonly 'placeholder': string;
23108
24060
  }
23109
24061
 
24062
+ interface ShopifyMarketsDiscrepancy {
24063
+ readonly 'organization_id': string;
24064
+ readonly 'count': number;
24065
+ }
24066
+
24067
+ interface ShopifyMarketsDiscrepancyData {
24068
+ readonly 'total_count': number;
24069
+ readonly 'discrepancies': io.flow.internal.v0.models.ShopifyMarketsDiscrepancy[];
24070
+ }
24071
+
23110
24072
  interface ShopifyMarketsIncorporationCountry {
23111
24073
  readonly 'country': string;
23112
24074
  readonly 'state'?: string;
@@ -23114,6 +24076,24 @@ declare namespace io.flow.internal.v0.models {
23114
24076
  readonly 'jurisdiction'?: string;
23115
24077
  }
23116
24078
 
24079
+ interface ShopifyMarketsInternalOrderMetrics {
24080
+ readonly 'total_order_count': number;
24081
+ }
24082
+
24083
+ interface ShopifyMarketsMetricsDeleted {
24084
+ readonly 'discriminator': 'shopify_markets_metrics_deleted';
24085
+ readonly 'event_id': string;
24086
+ readonly 'timestamp': string;
24087
+ readonly 'id': string;
24088
+ }
24089
+
24090
+ interface ShopifyMarketsMetricsUpserted {
24091
+ readonly 'discriminator': 'shopify_markets_metrics_upserted';
24092
+ readonly 'event_id': string;
24093
+ readonly 'timestamp': string;
24094
+ readonly 'shopify_markets_metrics': io.flow.internal.v0.models.ShopifyMarketsOrdersMetrics;
24095
+ }
24096
+
23117
24097
  interface ShopifyMarketsOrder {
23118
24098
  readonly 'id': string;
23119
24099
  readonly 'model': io.flow.shopify.markets.v0.models.ShopifyOrder;
@@ -23135,8 +24115,17 @@ declare namespace io.flow.internal.v0.models {
23135
24115
  readonly 'shopify_markets_order': io.flow.internal.v0.models.ShopifyMarketsOrder;
23136
24116
  }
23137
24117
 
24118
+ interface ShopifyMarketsOrdersMetrics {
24119
+ readonly 'id': string;
24120
+ readonly 'range': io.flow.common.v0.models.DatetimeRange;
24121
+ readonly 'shopify': io.flow.internal.v0.models.ShopifyMarketsShopifyOrderMetrics;
24122
+ readonly 'internal': io.flow.internal.v0.models.ShopifyMarketsInternalOrderMetrics;
24123
+ readonly 'discrepancy_data': io.flow.internal.v0.models.ShopifyMarketsDiscrepancyData;
24124
+ }
24125
+
23138
24126
  interface ShopifyMarketsShop {
23139
24127
  readonly 'id': string;
24128
+ readonly 'shopify_shop_id'?: string;
23140
24129
  readonly 'channel': io.flow.common.v0.models.ChannelReference;
23141
24130
  readonly 'domain': string;
23142
24131
  readonly 'myshopify_domain': string;
@@ -23196,6 +24185,10 @@ declare namespace io.flow.internal.v0.models {
23196
24185
  readonly 'shopify_markets_shop': io.flow.internal.v0.models.ShopifyMarketsShop;
23197
24186
  }
23198
24187
 
24188
+ interface ShopifyMarketsShopifyOrderMetrics {
24189
+ readonly 'total_order_count': number;
24190
+ }
24191
+
23199
24192
  interface ShopifyMarketsSubsidiaryCompany {
23200
24193
  readonly 'legal_name'?: string;
23201
24194
  readonly 'incorporation_country'?: io.flow.internal.v0.models.ShopifyMarketsIncorporationCountry;
@@ -23502,6 +24495,11 @@ declare namespace io.flow.internal.v0.models {
23502
24495
  readonly 'shop': io.flow.internal.v0.models.Shop;
23503
24496
  }
23504
24497
 
24498
+ interface ShopifyStorePassword {
24499
+ readonly 'temporary_password': string;
24500
+ readonly 'expiry': string;
24501
+ }
24502
+
23505
24503
  interface ShopifyWebhook {
23506
24504
  readonly 'id': string;
23507
24505
  readonly 'shop_id': string;
@@ -23519,6 +24517,18 @@ declare namespace io.flow.internal.v0.models {
23519
24517
  readonly 'topic': io.flow.shopify.external.v0.enums.Topic;
23520
24518
  }
23521
24519
 
24520
+ interface ShopperFees {
24521
+ readonly 'fuel': number;
24522
+ readonly 'remote_area': number;
24523
+ readonly 'oversize': number;
24524
+ readonly 'ccf': number;
24525
+ readonly 'total': number;
24526
+ }
24527
+
24528
+ interface ShopperSummary {
24529
+ readonly 'fees': io.flow.internal.v0.models.ShopperFees;
24530
+ }
24531
+
23522
24532
  interface SimpleAccountReference {
23523
24533
  readonly 'id': string;
23524
24534
  }
@@ -23734,6 +24744,7 @@ declare namespace io.flow.internal.v0.models {
23734
24744
  readonly 'country': string;
23735
24745
  readonly 'authentication': io.flow.internal.v0.models.StripeAuthenticationForm;
23736
24746
  readonly 'status'?: io.flow.internal.v0.enums.ProcessorEntityStatus;
24747
+ readonly 'organization_capability'?: io.flow.internal.v0.enums.OrganizationCapability;
23737
24748
  }
23738
24749
 
23739
24750
  interface StripeAuthentication {
@@ -23862,6 +24873,7 @@ declare namespace io.flow.internal.v0.models {
23862
24873
  readonly 'account_type': io.flow.stripe.v0.enums.AccountType;
23863
24874
  readonly 'status'?: io.flow.internal.v0.enums.ProcessorEntityStatus;
23864
24875
  readonly 'country': string;
24876
+ readonly 'organization_capability'?: io.flow.internal.v0.enums.OrganizationCapability;
23865
24877
  }
23866
24878
 
23867
24879
  interface StripeRefundDeleted {
@@ -24327,6 +25339,25 @@ declare namespace io.flow.internal.v0.models {
24327
25339
  readonly 'id': string;
24328
25340
  }
24329
25341
 
25342
+ interface TransactionStatement {
25343
+ readonly 'id': string;
25344
+ readonly 'statement': io.flow.internal.v0.models.BillingStatementReference;
25345
+ }
25346
+
25347
+ interface TransactionStatementDeleted {
25348
+ readonly 'discriminator': 'transaction_statement_deleted';
25349
+ readonly 'event_id': string;
25350
+ readonly 'timestamp': string;
25351
+ readonly 'id': string;
25352
+ }
25353
+
25354
+ interface TransactionStatementUpserted {
25355
+ readonly 'discriminator': 'transaction_statement_upserted';
25356
+ readonly 'event_id': string;
25357
+ readonly 'timestamp': string;
25358
+ readonly 'transaction_statement': io.flow.internal.v0.models.TransactionStatement;
25359
+ }
25360
+
24330
25361
  interface TransferTransaction {
24331
25362
  readonly 'discriminator': 'transfer_transaction';
24332
25363
  readonly 'method': io.flow.internal.v0.enums.TransferMethod;
@@ -24375,6 +25406,34 @@ declare namespace io.flow.internal.v0.models {
24375
25406
  readonly 'description': string;
24376
25407
  }
24377
25408
 
25409
+ interface TrueUpLabelSummary {
25410
+ readonly 'id': string;
25411
+ readonly 'carrier_service_id': string;
25412
+ readonly 'carrier_tracking_number': string;
25413
+ readonly 'flow_tracking_number': string;
25414
+ readonly 'created_at': string;
25415
+ }
25416
+
25417
+ interface UnassignedMerchantGuid {
25418
+ readonly 'id': string;
25419
+ readonly 'merchant_guid': string;
25420
+ readonly 'created_at': string;
25421
+ }
25422
+
25423
+ interface UnassignedMerchantGuidDeleted {
25424
+ readonly 'discriminator': 'unassigned_merchant_guid_deleted';
25425
+ readonly 'event_id': string;
25426
+ readonly 'timestamp': string;
25427
+ readonly 'id': string;
25428
+ }
25429
+
25430
+ interface UnassignedMerchantGuidUpserted {
25431
+ readonly 'discriminator': 'unassigned_merchant_guid_upserted';
25432
+ readonly 'event_id': string;
25433
+ readonly 'timestamp': string;
25434
+ readonly 'unassigned_merchant_guid': io.flow.internal.v0.models.UnassignedMerchantGuid;
25435
+ }
25436
+
24378
25437
  interface UnclassifiedProductStatistic {
24379
25438
  readonly 'status': io.flow.internal.v0.enums.UnclassifiedProductStatus;
24380
25439
  readonly 'number_of_items': number;
@@ -24596,6 +25655,16 @@ declare namespace io.flow.internal.v0.models {
24596
25655
  readonly 'created_at': string;
24597
25656
  }
24598
25657
 
25658
+ interface WashCarrierActualFile {
25659
+ readonly 'id': string;
25660
+ readonly 'url': string;
25661
+ readonly 'status': io.flow.internal.v0.enums.WashCarrierActualFileStatus;
25662
+ }
25663
+
25664
+ interface WashCarrierActualFileForm {
25665
+ readonly 'url': string;
25666
+ }
25667
+
24599
25668
  interface WashExportRequest {
24600
25669
  readonly 'url': string;
24601
25670
  }
@@ -24616,6 +25685,17 @@ declare namespace io.flow.internal.v0.models {
24616
25685
  readonly 'placeholder'?: any/*json*/;
24617
25686
  }
24618
25687
 
25688
+ interface WeightsDead {
25689
+ readonly 'weight': number;
25690
+ }
25691
+
25692
+ interface WeightsDimensional {
25693
+ readonly 'weight': number;
25694
+ readonly 'length': number;
25695
+ readonly 'width': number;
25696
+ readonly 'height': number;
25697
+ }
25698
+
24619
25699
  interface WholeOrderActionForm {
24620
25700
  readonly 'discriminator': 'whole_order_action_form';
24621
25701
  readonly 'action': io.flow.internal.v0.enums.OrderAction;
@@ -24725,7 +25805,7 @@ declare namespace io.flow.internal.v0.unions {
24725
25805
  type DiscountRequestOfferForm = (io.flow.internal.v0.models.DiscountRequestOfferFixedAmountForm);
24726
25806
  type DisputeDetails = (io.flow.internal.v0.models.DisputeDetailsAdyen | io.flow.internal.v0.models.DisputeDetailsPaypal);
24727
25807
  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);
25808
+ type Event = (io.flow.internal.v0.models.AdyenAuthorizationDeleted | io.flow.internal.v0.models.AdyenAuthorizationUpserted | io.flow.internal.v0.models.AdyenCancelDeleted | io.flow.internal.v0.models.AdyenCancelUpserted | io.flow.internal.v0.models.AdyenCaptureDeleted | io.flow.internal.v0.models.AdyenCaptureUpserted | io.flow.internal.v0.models.AdyenRefundDeleted | io.flow.internal.v0.models.AdyenRefundUpserted | io.flow.internal.v0.models.IndexAssignmentUpserted | io.flow.internal.v0.models.IndexAssignmentDeleted | io.flow.internal.v0.models.AccountUpserted | io.flow.internal.v0.models.AccountUpsertedV2 | io.flow.internal.v0.models.AccountDeletedV2 | io.flow.internal.v0.models.AccountContactUpserted | io.flow.internal.v0.models.AccountContactDeleted | io.flow.internal.v0.models.BillingStatementUpserted | io.flow.internal.v0.models.BillingStatementDeleted | io.flow.internal.v0.models.TaxRemittanceTransactionUpserted | io.flow.internal.v0.models.TaxRemittanceTransactionDeleted | io.flow.internal.v0.models.ChannelAccountUpsertedV2 | io.flow.internal.v0.models.ChannelAccountDeleted | io.flow.internal.v0.models.OrganizationAccountUpsertedV2 | io.flow.internal.v0.models.OrganizationAccountDeleted | io.flow.internal.v0.models.AccountTransactionsExportRequest | io.flow.internal.v0.models.AccountOrdersExportRequest | io.flow.internal.v0.models.MainTransactionUpserted | io.flow.internal.v0.models.MainTransactionDeleted | io.flow.internal.v0.models.MainTransactionUpsertedV2 | io.flow.internal.v0.models.MainTransactionDeletedV2 | io.flow.internal.v0.models.TransferTransactionUpserted | io.flow.internal.v0.models.TransferTransactionDeleted | io.flow.internal.v0.models.TransferTransactionUpsertedV2 | io.flow.internal.v0.models.TransferTransactionDeletedV2 | io.flow.internal.v0.models.ProcessingTransactionUpserted | io.flow.internal.v0.models.ProcessingTransactionDeleted | io.flow.internal.v0.models.BankPaymentUpserted | io.flow.internal.v0.models.BankPaymentDeleted | io.flow.internal.v0.models.BankPaymentUpsertedV2 | io.flow.internal.v0.models.BankPaymentDeletedV2 | io.flow.internal.v0.models.ChannelTransactionUpserted | io.flow.internal.v0.models.ChannelTransactionDeleted | io.flow.internal.v0.models.OrderTransactionUpserted | io.flow.internal.v0.models.OrderTransactionDeleted | io.flow.internal.v0.models.LabelTransactionUpserted | io.flow.internal.v0.models.LabelTransactionDeleted | io.flow.internal.v0.models.ChannelBilledTransactionUpserted | io.flow.internal.v0.models.ChannelBilledTransactionDeleted | io.flow.internal.v0.models.TaxTransactionUpserted | io.flow.internal.v0.models.TaxTransactionDeleted | io.flow.internal.v0.models.DutyTransactionUpserted | io.flow.internal.v0.models.DutyTransactionDeleted | io.flow.internal.v0.models.TransactionStatementUpserted | io.flow.internal.v0.models.TransactionStatementDeleted | io.flow.internal.v0.models.DailyValueUpserted | io.flow.internal.v0.models.DailyValueDeleted | io.flow.internal.v0.models.LabelInvoiceRequestUpserted | io.flow.internal.v0.models.LabelInvoiceRequestDeleted | io.flow.internal.v0.models.CalculatorOrganizationSettingsUpserted | io.flow.internal.v0.models.CalculatorOrganizationSettingsDeleted | io.flow.internal.v0.models.CarrierAccountUpsertedV2 | io.flow.internal.v0.models.CarrierAccountDeleted | io.flow.internal.v0.models.LabelGenerationSettingsUpserted | io.flow.internal.v0.models.LabelGenerationSettingsDeleted | io.flow.internal.v0.models.CatalogImportRequest | io.flow.internal.v0.models.ExclusionRuleUpserted | io.flow.internal.v0.models.ExclusionRuleDeleted | io.flow.internal.v0.models.ExclusionRuleExportRequest | io.flow.internal.v0.models.CatalogItemRegionAvailabilitiesPublished | io.flow.internal.v0.models.ReturnPolicyUpserted | io.flow.internal.v0.models.ReturnPolicyDeleted | io.flow.internal.v0.models.ReturnPolicyItemResultUpserted | io.flow.internal.v0.models.ReturnPolicyItemResultDeleted | io.flow.internal.v0.models.CatalogSettingsUpserted | io.flow.internal.v0.models.CatalogSettingsDeleted | io.flow.internal.v0.models.ChannelOrderAcceptanceUpserted | io.flow.internal.v0.models.ChannelOrderAcceptanceDeleted | io.flow.internal.v0.models.CheckoutConfigurationUpserted | io.flow.internal.v0.models.CheckoutConfigurationDeleted | io.flow.internal.v0.models.LocalizedContentUpserted | io.flow.internal.v0.models.LocalizationUpserted | io.flow.internal.v0.models.InternalChannelRateDeleted | io.flow.internal.v0.models.InternalChannelRateUpserted | io.flow.internal.v0.models.RateDeleted | io.flow.internal.v0.models.RateUpserted | io.flow.internal.v0.models.SpotRateDeleted | io.flow.internal.v0.models.SpotRateUpserted | io.flow.internal.v0.models.UsdSpotRateDeleted | io.flow.internal.v0.models.UsdSpotRateUpserted | io.flow.internal.v0.models.RateDeletedV2 | io.flow.internal.v0.models.RateUpsertedV2 | io.flow.internal.v0.models.OrganizationCurrencySettingUpserted | io.flow.internal.v0.models.OrganizationCurrencySettingDeleted | io.flow.internal.v0.models.ChannelCurrencySettingUpserted | io.flow.internal.v0.models.ChannelCurrencySettingDeleted | io.flow.internal.v0.models.CustomerPurgeUpserted | io.flow.internal.v0.models.CustomsDescriptionImport | io.flow.internal.v0.models.CustomsDescriptionTariffsImport | io.flow.internal.v0.models.ItemDimensionEstimateUpsertedV2 | io.flow.internal.v0.models.ItemDimensionEstimateDeletedV2 | io.flow.internal.v0.models.DisputeUpserted | io.flow.internal.v0.models.DisputeDeleted | io.flow.internal.v0.models.DutyRatesPublishedV2 | io.flow.internal.v0.models.DutyRateRequest | io.flow.internal.v0.models.DutyRateBulkRequest | io.flow.internal.v0.models.DutyRawUpserted | io.flow.internal.v0.models.DutyRawBulkUpserted | io.flow.internal.v0.models.DutyRateUpserted | io.flow.internal.v0.models.DutyRateResponse | io.flow.internal.v0.models.DutyRateBulkResponse | io.flow.internal.v0.models.ItemSalesMarginDeleted | io.flow.internal.v0.models.ItemSalesMarginUpserted | io.flow.internal.v0.models.OrderAttributeDeleted | io.flow.internal.v0.models.OrderAttributeUpserted | io.flow.internal.v0.models.ExperienceExportRequest | io.flow.internal.v0.models.ExperienceImportRequest | io.flow.internal.v0.models.SubmittedOrderUpserted | io.flow.internal.v0.models.LevyRateSummaryUpserted | io.flow.internal.v0.models.ExperimentUpserted | io.flow.internal.v0.models.ExperimentDeleted | io.flow.internal.v0.models.ExperimentResultsUpserted | io.flow.internal.v0.models.ExperimentResultsDeleted | io.flow.internal.v0.models.DailyExperimentResultsUpserted | io.flow.internal.v0.models.DailyExperimentResultsDeleted | io.flow.internal.v0.models.ExperimentMilestoneUpserted | io.flow.internal.v0.models.ExperimentMilestoneDeleted | io.flow.internal.v0.models.ExportCompleted | io.flow.internal.v0.models.ExportFailed | io.flow.internal.v0.models.FeatureUpserted | io.flow.internal.v0.models.FeatureDeleted | io.flow.internal.v0.models.OrganizationBooleanValueUpserted | io.flow.internal.v0.models.OrganizationBooleanValueDeleted | io.flow.internal.v0.models.AccountSettingsUpserted | io.flow.internal.v0.models.AccountSettingsDeleted | io.flow.internal.v0.models.AccountProcessingRatesUpserted | io.flow.internal.v0.models.AccountProcessingRatesDeleted | io.flow.internal.v0.models.BillingOrganizationProcessingRatesUpserted | io.flow.internal.v0.models.BillingOrganizationProcessingRatesDeleted | io.flow.internal.v0.models.BillingOrganizationSettingsUpserted | io.flow.internal.v0.models.BillingOrganizationSettingsDeleted | io.flow.internal.v0.models.BillingStatementBatchUpserted | io.flow.internal.v0.models.BillingStatementBatchDeleted | io.flow.internal.v0.models.BillingStatementBatchStatementUpserted | io.flow.internal.v0.models.BillingStatementBatchStatementDeleted | io.flow.internal.v0.models.StandaloneAttachmentUpserted | io.flow.internal.v0.models.StandaloneAttachmentDeleted | io.flow.internal.v0.models.PlatformFeeChangeUpserted | io.flow.internal.v0.models.PlatformFeeChangeDeleted | io.flow.internal.v0.models.OrganizationBankAccountUpserted | io.flow.internal.v0.models.OrganizationBankAccountDeleted | io.flow.internal.v0.models.FraudReviewUpserted | io.flow.internal.v0.models.FraudReviewDeleted | io.flow.internal.v0.models.FraudPendingReviewUpserted | io.flow.internal.v0.models.FraudPendingReviewDeleted | io.flow.internal.v0.models.FraudReviewDecisionUpserted | io.flow.internal.v0.models.FraudReviewDecisionDeleted | io.flow.internal.v0.models.FraudProviderConfigurationUpserted | io.flow.internal.v0.models.FraudProviderConfigurationDeleted | io.flow.internal.v0.models.ManualReviewRuleUpserted | io.flow.internal.v0.models.ManualReviewRuleDeleted | io.flow.internal.v0.models.FtpFileUpserted | io.flow.internal.v0.models.FtpFileDeleted | io.flow.internal.v0.models.FtpFileToProcessUploaded | io.flow.internal.v0.models.CenterDefaultsUpserted | io.flow.internal.v0.models.CenterDefaultsDeleted | io.flow.internal.v0.models.PregeneratedRequestEvent | io.flow.internal.v0.models.AllItemsExport | io.flow.internal.v0.models.HarmonizedItemsHs6Export | io.flow.internal.v0.models.UnharmonizedItemsExport | io.flow.internal.v0.models.DutiedItemsExport | io.flow.internal.v0.models.TariffCodesExport | io.flow.internal.v0.models.HarmonizationPhraseSuggestionRequestImport | io.flow.internal.v0.models.HarmonizationCodesImport | io.flow.internal.v0.models.ItemClassificationCreated | io.flow.internal.v0.models.HarmonizeFullyRequestV2 | io.flow.internal.v0.models.HybrisCatalogItemsImportRequest | io.flow.internal.v0.models.ImportCompleted | io.flow.internal.v0.models.ImportFailed | io.flow.internal.v0.models.TimeToClassifyUpserted | io.flow.internal.v0.models.TimeToClassifyDeleted | io.flow.internal.v0.models.TimeToClassifyAggregatedUpserted | io.flow.internal.v0.models.TimeToClassifyAggregatedDeleted | io.flow.internal.v0.models.RateSourceSummaryUpserted | io.flow.internal.v0.models.RateSourceSummaryDeleted | io.flow.internal.v0.models.RateFreshnessSummaryUpserted | io.flow.internal.v0.models.RateFreshnessSummaryDeleted | io.flow.internal.v0.models.ItemHarmonizationUpserted | io.flow.internal.v0.models.ItemHarmonizationDeleted | io.flow.internal.v0.models.HarmonizationItemClassificationUpserted | io.flow.internal.v0.models.HarmonizationItemClassificationDeleted | io.flow.internal.v0.models.HarmonizationClassificationStatisticsPublished | io.flow.internal.v0.models.IssuerUpserted | io.flow.internal.v0.models.IssuerDeleted | io.flow.internal.v0.models.ItemFormImportRequest | io.flow.internal.v0.models.LabelRequestErrorUpserted | io.flow.internal.v0.models.LabelRequestErrorDeleted | io.flow.internal.v0.models.LabelTrackingSummaryUpserted | io.flow.internal.v0.models.LabelTrackingSummaryDeleted | io.flow.internal.v0.models.LocalizedItemUpsertedV2 | io.flow.internal.v0.models.LocalizedItemDeleted | io.flow.internal.v0.models.LocalizedItemDeletedV2 | io.flow.internal.v0.models.LocalizedItemSnapshot | io.flow.internal.v0.models.LocalizedPriceBookItemUpserted | io.flow.internal.v0.models.LocalizedPriceBookItemDeleted | io.flow.internal.v0.models.FeedUpserted | io.flow.internal.v0.models.FeedDeleted | io.flow.internal.v0.models.FeedsExport | io.flow.internal.v0.models.LocalizedItemPricesExportRequest | io.flow.internal.v0.models.OptinPromptUpserted | io.flow.internal.v0.models.OptinPromptDeleted | io.flow.internal.v0.models.OrderFulfillmentDeleted | io.flow.internal.v0.models.OrderFulfillmentUpserted | io.flow.internal.v0.models.OrderPlaced | io.flow.internal.v0.models.ReadyToFulfill | io.flow.internal.v0.models.FulfillmentCancel | io.flow.internal.v0.models.OrderShipped | io.flow.internal.v0.models.ItemsShipped | io.flow.internal.v0.models.OrganizationBusinessEntityDeleted | io.flow.internal.v0.models.OrganizationBusinessEntityUpserted | io.flow.internal.v0.models.OrganizationStatusChangeUpserted | io.flow.internal.v0.models.OrganizationStatusChangeDeleted | io.flow.internal.v0.models.OrganizationDeactivationUpserted | io.flow.internal.v0.models.OrganizationDeactivationDeleted | io.flow.internal.v0.models.MerchantGuidAssignmentUpserted | io.flow.internal.v0.models.MerchantGuidAssignmentDeleted | io.flow.internal.v0.models.PartnerOrganizationSettingsUpserted | io.flow.internal.v0.models.PartnerOrganizationSettingsDeleted | io.flow.internal.v0.models.UnassignedMerchantGuidUpserted | io.flow.internal.v0.models.UnassignedMerchantGuidDeleted | io.flow.internal.v0.models.InternalAuthorizationUpserted | io.flow.internal.v0.models.InternalAuthorizationDeleted | io.flow.internal.v0.models.AfterpayAuthorizationUpserted | io.flow.internal.v0.models.AfterpayAuthorizationDeleted | io.flow.internal.v0.models.AfterpayCaptureUpserted | io.flow.internal.v0.models.AfterpayCaptureDeleted | io.flow.internal.v0.models.AfterpayRefundUpserted | io.flow.internal.v0.models.AfterpayRefundDeleted | io.flow.internal.v0.models.AdyenMerchantAccountUpserted | io.flow.internal.v0.models.AdyenMerchantAccountDeleted | io.flow.internal.v0.models.ChargebackUpserted | io.flow.internal.v0.models.ChargebackDeleted | io.flow.internal.v0.models.PaymentProcessorAccountUpserted | io.flow.internal.v0.models.PaymentProcessorAccountDeleted | io.flow.internal.v0.models.PaymentProcessorMerchantUpserted | io.flow.internal.v0.models.PaymentProcessorMerchantDeleted | io.flow.internal.v0.models.VirtualCardProviderUpserted | io.flow.internal.v0.models.VirtualCardProviderDeleted | io.flow.internal.v0.models.AuthorizationBundleUpserted | io.flow.internal.v0.models.AuthorizationBundleDeleted | io.flow.internal.v0.models.OrganizationPaymentSettingUpserted | io.flow.internal.v0.models.OrganizationPaymentSettingDeleted | io.flow.internal.v0.models.PaypalPaymentDeleted | io.flow.internal.v0.models.PaypalPaymentUpserted | io.flow.internal.v0.models.PaypalExecutionDeleted | io.flow.internal.v0.models.PaypalExecutionUpserted | io.flow.internal.v0.models.PaypalRefundDeleted | io.flow.internal.v0.models.PaypalRefundUpserted | io.flow.internal.v0.models.PricingIndicator | io.flow.internal.v0.models.OrderRatesPublishedV3 | io.flow.internal.v0.models.RatecardDimensionEstimateUpserted | io.flow.internal.v0.models.RatecardDimensionEstimateDeleted | io.flow.internal.v0.models.RatecardLanesImportRequest | io.flow.internal.v0.models.RatecardStandardConfigurationUpserted | io.flow.internal.v0.models.RatecardStandardConfigurationDeleted | io.flow.internal.v0.models.RatecardServiceFeeUpserted | io.flow.internal.v0.models.RatecardServiceFeeDeleted | io.flow.internal.v0.models.RatecardLaneAggregateUpserted | io.flow.internal.v0.models.RatecardLaneAggregateDeleted | io.flow.internal.v0.models.RatecardRateLevelUpserted | io.flow.internal.v0.models.RatecardRateLevelDeleted | io.flow.internal.v0.models.RatecardRateLevelRatecardUpserted | io.flow.internal.v0.models.RatecardRateLevelRatecardDeleted | io.flow.internal.v0.models.RatecardRateLevelOrganizationUpserted | io.flow.internal.v0.models.RatecardRateLevelOrganizationDeleted | io.flow.internal.v0.models.OrganizationRestrictionSnapshotUpserted | io.flow.internal.v0.models.OrganizationRestrictionSnapshotDeleted | io.flow.internal.v0.models.RestrictionOrganizationStatusUpserted | io.flow.internal.v0.models.RestrictionOrganizationStatusDeleted | io.flow.internal.v0.models.OrganizationRestrictionStatusUpserted | io.flow.internal.v0.models.OrganizationRestrictionStatusDeleted | io.flow.internal.v0.models.ShopifyShopUpserted | io.flow.internal.v0.models.ShopifyShopDeleted | io.flow.internal.v0.models.ShopifyExperienceShortIdUpserted | io.flow.internal.v0.models.ShopifyExperienceShortIdDeleted | io.flow.internal.v0.models.ShopifyMarketsOrderUpserted | io.flow.internal.v0.models.ShopifyMarketsOrderDeleted | io.flow.internal.v0.models.ShopifyMarketsShopUpserted | io.flow.internal.v0.models.ShopifyMarketsShopDeleted | io.flow.internal.v0.models.ShopifyMarketsWebhookRegistrationUpserted | io.flow.internal.v0.models.ShopifyMarketsWebhookRegistrationDeleted | io.flow.internal.v0.models.ShopifyMarketsShopStatisticsUpserted | io.flow.internal.v0.models.ShopifyMarketsShopStatisticsDeleted | io.flow.internal.v0.models.ShopifyMarketsMetricsUpserted | io.flow.internal.v0.models.ShopifyMarketsMetricsDeleted | io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventUpserted | io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventDeleted | io.flow.internal.v0.models.ShopifyOrderFulfillmentsSnapshotUpserted | io.flow.internal.v0.models.ShopifyOrderFulfillmentsSnapshotDeleted | io.flow.internal.v0.models.StripeAuthorizationDeleted | io.flow.internal.v0.models.StripeAuthorizationUpserted | io.flow.internal.v0.models.StripeReversalDeleted | io.flow.internal.v0.models.StripeReversalUpserted | io.flow.internal.v0.models.StripeCaptureDeleted | io.flow.internal.v0.models.StripeCaptureUpserted | io.flow.internal.v0.models.StripeRefundDeleted | io.flow.internal.v0.models.StripeRefundUpserted | io.flow.internal.v0.models.SvbVirtualCardClearingUpserted | io.flow.internal.v0.models.SvbVirtualCardClearingDeleted | io.flow.internal.v0.models.LiabilityRemittancePlanUpserted | io.flow.internal.v0.models.LiabilityRemittancePlanDeleted | io.flow.internal.v0.models.TrackingLabelEventUpsertedV2 | io.flow.internal.v0.models.TrackingLabelEventDeletedV2 | io.flow.internal.v0.models.TrackingLabelUpserted | io.flow.internal.v0.models.TrackingLabelDeleted | io.flow.internal.v0.models.TrackingUpserted | io.flow.internal.v0.models.TrackingDeleted | io.flow.internal.v0.models.TrackingRequestUpserted | io.flow.internal.v0.models.TrackingResponseUpserted | io.flow.internal.v0.models.UserUpsertedV2 | io.flow.internal.v0.models.UserDeletedV2);
24729
25809
  type Experiment = (io.flow.internal.v0.models.ExperienceExperiment | io.flow.internal.v0.models.FeatureExperiment);
24730
25810
  type ExportSchedule = (io.flow.internal.v0.models.ExportScheduleDaily | io.flow.internal.v0.models.ExportScheduleRepeated);
24731
25811
  type FeatureDefaultValue = (io.flow.internal.v0.models.BooleanFeatureDefaultValue | io.flow.internal.v0.models.StringFeatureDefaultValue);
@@ -24736,6 +25816,7 @@ declare namespace io.flow.internal.v0.unions {
24736
25816
  type FraudProviderConfiguration = (io.flow.internal.v0.models.FraudProviderConfigurationRiskified);
24737
25817
  type FraudProviderConfigurationForm = (io.flow.internal.v0.models.FraudProviderConfigurationFormRiskified);
24738
25818
  type FuelSurchargeServiceFeePutForm = (io.flow.internal.v0.models.FuelSurchargeServiceFeePercentPutForm | io.flow.internal.v0.models.FuelSurchargeServiceFeeAmountByWeightPutForm);
25819
+ type FulfillmentProof = (io.flow.internal.v0.models.FulfillmentProofLabelTrackingReference | io.flow.internal.v0.models.FulfillmentProofShippingNotificationReference | io.flow.internal.v0.models.FulfillmentProofExternalFulfillmentProofReference);
24739
25820
  type GenerateLoad = (io.flow.internal.v0.models.GenerateLoadSingleOrg | io.flow.internal.v0.models.GenerateLoadMultipleOrgs);
24740
25821
  type GlobalSearchResult = (io.flow.internal.v0.models.SearchExperienceSummary | io.flow.internal.v0.models.SearchExperimentSummary | io.flow.internal.v0.models.SearchOrderSummary | io.flow.internal.v0.models.SearchItemSummary);
24741
25822
  type HeapEvent = (io.flow.internal.v0.models.HeapAddressPredictionClick | io.flow.internal.v0.models.HeapAfterpayPopupOpened | io.flow.internal.v0.models.HeapAfterpayPopupClosed | io.flow.internal.v0.models.HeapAuthorizationDeclined | io.flow.internal.v0.models.HeapAuthorizationError | io.flow.internal.v0.models.HeapCardError | io.flow.internal.v0.models.HeapCheckoutEvent | io.flow.internal.v0.models.HeapCheckoutProgress | io.flow.internal.v0.models.HeapCheckoutStarted | io.flow.internal.v0.models.HeapContinueClick | io.flow.internal.v0.models.HeapDeliveryFormDataReceived | io.flow.internal.v0.models.HeapDeliveryFormDataTimeout | io.flow.internal.v0.models.HeapDeliveryOptionCount | io.flow.internal.v0.models.HeapDeliveryOptionSelected | io.flow.internal.v0.models.HeapExitCheckout | io.flow.internal.v0.models.HeapFieldBlur | io.flow.internal.v0.models.HeapFieldErrorTooltipShown | io.flow.internal.v0.models.HeapFieldFocus | io.flow.internal.v0.models.HeapFieldValidation | io.flow.internal.v0.models.HeapGiftCardApply | io.flow.internal.v0.models.HeapGiftCardOpen | io.flow.internal.v0.models.HeapGiftCardWithPin | io.flow.internal.v0.models.HeapOptinPromptDeselected | io.flow.internal.v0.models.HeapOptinPromptSelected | io.flow.internal.v0.models.HeapOrderSummaryClose | io.flow.internal.v0.models.HeapOrderSummaryOpen | io.flow.internal.v0.models.HeapPayClick | io.flow.internal.v0.models.HeapPaymentFormDataReceived | io.flow.internal.v0.models.HeapPaymentFormDataTimeout | io.flow.internal.v0.models.HeapPaymentMethodSelected | io.flow.internal.v0.models.HeapPerformance | io.flow.internal.v0.models.HeapPromoCodeApply | io.flow.internal.v0.models.HeapPromoCodeError | io.flow.internal.v0.models.HeapPromoCodeOpen | io.flow.internal.v0.models.HeapPurchase | io.flow.internal.v0.models.HeapRageClick | io.flow.internal.v0.models.HeapScriptError | io.flow.internal.v0.models.HeapSequencedError | io.flow.internal.v0.models.HeapSequencedTiming | io.flow.internal.v0.models.HeapSplitLoaded | io.flow.internal.v0.models.HeapSplitTimeout | io.flow.internal.v0.models.HeapStartCheckout | io.flow.internal.v0.models.HeapStreamError | io.flow.internal.v0.models.HeapSubmitError | io.flow.internal.v0.models.HeapWebsocketClose | io.flow.internal.v0.models.HeapWebsocketConnectionLost | io.flow.internal.v0.models.HeapWebsocketError | io.flow.internal.v0.models.HeapWebsocketGiveUp | io.flow.internal.v0.models.HeapWebsocketOpen | io.flow.internal.v0.models.HeapWebsocketRequest | io.flow.internal.v0.models.HeapWebsocketResponse | io.flow.internal.v0.models.HeapWebsocketRetry);
@@ -24745,6 +25826,7 @@ declare namespace io.flow.internal.v0.unions {
24745
25826
  type InternalHarmonizationStatistic = (io.flow.internal.v0.models.TimeToClassify | io.flow.internal.v0.models.TimeToClassifyAggregated | io.flow.internal.v0.models.RateSourceSummary | io.flow.internal.v0.models.RateFreshnessSummary);
24746
25827
  type InternalRefundForm = (io.flow.internal.v0.models.AdyenRefundForm);
24747
25828
  type InternalTransactionDetails = (io.flow.internal.v0.models.InternalTransactionDetailsCard);
25829
+ type LabelSurchargeDetail = (io.flow.internal.v0.models.LabelSurchargeDetailFlat | io.flow.internal.v0.models.LabelSurchargeDetailPercentage | io.flow.internal.v0.models.LabelSurchargeDetailPerWeightUnit);
24748
25830
  type LocalizableContent = (io.flow.internal.v0.models.LocalizableContentReference | io.flow.internal.v0.models.Localization);
24749
25831
  type MarketingGatewayChannelDetails = (io.flow.internal.v0.models.MarketingGatewayGoogleChannelDetails | io.flow.internal.v0.models.MarketingGatewayFacebookChannelDetails | io.flow.internal.v0.models.MarketingGatewaySupportedChannelDetails);
24750
25832
  type MarketingGatewayDistributionChannel = (io.flow.internal.v0.models.MarketingGatewayDistributionChannelGoogle | io.flow.internal.v0.models.MarketingGatewayDistributionChannelFacebook);
@@ -24805,9 +25887,11 @@ export const blazeCheckoutStep: PropTypes.Requireable<io.flow.internal.v0.enums.
24805
25887
  export const browserBundleErrorCode: PropTypes.Requireable<io.flow.internal.v0.enums.BrowserBundleErrorCode>;
24806
25888
  export const calculatorEngine: PropTypes.Requireable<io.flow.internal.v0.enums.CalculatorEngine>;
24807
25889
  export const carrierLabelGenerationMethod: PropTypes.Requireable<io.flow.internal.v0.enums.CarrierLabelGenerationMethod>;
25890
+ export const carrierValidationStatus: PropTypes.Requireable<io.flow.internal.v0.enums.CarrierValidationStatus>;
24808
25891
  export const catalogImportType: PropTypes.Requireable<io.flow.internal.v0.enums.CatalogImportType>;
24809
25892
  export const channelBilledTransactionType: PropTypes.Requireable<io.flow.internal.v0.enums.ChannelBilledTransactionType>;
24810
25893
  export const channelOrderAcceptanceErrorAction: PropTypes.Requireable<io.flow.internal.v0.enums.ChannelOrderAcceptanceErrorAction>;
25894
+ export const channelOrderAcceptanceNextActionFrom: PropTypes.Requireable<io.flow.internal.v0.enums.ChannelOrderAcceptanceNextActionFrom>;
24811
25895
  export const channelOrderAcceptanceRejectionReason: PropTypes.Requireable<io.flow.internal.v0.enums.ChannelOrderAcceptanceRejectionReason>;
24812
25896
  export const channelOrderAcceptanceStatus: PropTypes.Requireable<io.flow.internal.v0.enums.ChannelOrderAcceptanceStatus>;
24813
25897
  export const channelTransactionType: PropTypes.Requireable<io.flow.internal.v0.enums.ChannelTransactionType>;
@@ -24904,6 +25988,7 @@ export const disputeImportType: PropTypes.Requireable<io.flow.internal.v0.enums.
24904
25988
  export const disputeLiability: PropTypes.Requireable<io.flow.internal.v0.enums.DisputeLiability>;
24905
25989
  export const disputeProcessor: PropTypes.Requireable<io.flow.internal.v0.enums.DisputeProcessor>;
24906
25990
  export const disputeStatus: PropTypes.Requireable<io.flow.internal.v0.enums.DisputeStatus>;
25991
+ export const disputeTransactionType: PropTypes.Requireable<io.flow.internal.v0.enums.DisputeTransactionType>;
24907
25992
  export const disputeType: PropTypes.Requireable<io.flow.internal.v0.enums.DisputeType>;
24908
25993
  export const dutyCompoundExpressionType: PropTypes.Requireable<io.flow.internal.v0.enums.DutyCompoundExpressionType>;
24909
25994
  export const dutyExemptItemTypes: PropTypes.Requireable<io.flow.internal.v0.enums.DutyExemptItemTypes>;
@@ -24948,6 +26033,7 @@ export const labelCancellationErrorCode: PropTypes.Requireable<io.flow.internal.
24948
26033
  export const labelCreationStatus: PropTypes.Requireable<io.flow.internal.v0.enums.LabelCreationStatus>;
24949
26034
  export const labelGenerationAddressFailureStatus: PropTypes.Requireable<io.flow.internal.v0.enums.LabelGenerationAddressFailureStatus>;
24950
26035
  export const labelInputSource: PropTypes.Requireable<io.flow.internal.v0.enums.LabelInputSource>;
26036
+ export const labelRequestErrorHandlingResponsibility: PropTypes.Requireable<io.flow.internal.v0.enums.LabelRequestErrorHandlingResponsibility>;
24951
26037
  export const labelTransactionType: PropTypes.Requireable<io.flow.internal.v0.enums.LabelTransactionType>;
24952
26038
  export const liabilityType: PropTypes.Requireable<io.flow.internal.v0.enums.LiabilityType>;
24953
26039
  export const mainTransactionStatus: PropTypes.Requireable<io.flow.internal.v0.enums.MainTransactionStatus>;
@@ -25004,11 +26090,13 @@ export const promptOptions: PropTypes.Requireable<io.flow.internal.v0.enums.Prom
25004
26090
  export const promptTarget: PropTypes.Requireable<io.flow.internal.v0.enums.PromptTarget>;
25005
26091
  export const queuedRecordType: PropTypes.Requireable<io.flow.internal.v0.enums.QueuedRecordType>;
25006
26092
  export const quoteRequestType: PropTypes.Requireable<io.flow.internal.v0.enums.QuoteRequestType>;
26093
+ export const rateLevelKey: PropTypes.Requireable<io.flow.internal.v0.enums.RateLevelKey>;
25007
26094
  export const rateSource: PropTypes.Requireable<io.flow.internal.v0.enums.RateSource>;
25008
26095
  export const reboundConfigurationStatus: PropTypes.Requireable<io.flow.internal.v0.enums.ReboundConfigurationStatus>;
25009
26096
  export const redirectReason: PropTypes.Requireable<io.flow.internal.v0.enums.RedirectReason>;
25010
26097
  export const rejectionReason: PropTypes.Requireable<io.flow.internal.v0.enums.RejectionReason>;
25011
26098
  export const reportInterval: PropTypes.Requireable<io.flow.internal.v0.enums.ReportInterval>;
26099
+ export const reportStatus: PropTypes.Requireable<io.flow.internal.v0.enums.ReportStatus>;
25012
26100
  export const reportingScheme: PropTypes.Requireable<io.flow.internal.v0.enums.ReportingScheme>;
25013
26101
  export const responsibleParty: PropTypes.Requireable<io.flow.internal.v0.enums.ResponsibleParty>;
25014
26102
  export const restrictionAction: PropTypes.Requireable<io.flow.internal.v0.enums.RestrictionAction>;
@@ -25024,6 +26112,7 @@ export const shopifyCheckInventoryErrorCode: PropTypes.Requireable<io.flow.inter
25024
26112
  export const shopifyGrantStatus: PropTypes.Requireable<io.flow.internal.v0.enums.ShopifyGrantStatus>;
25025
26113
  export const shopifyMarketsDangerousGoods: PropTypes.Requireable<io.flow.internal.v0.enums.ShopifyMarketsDangerousGoods>;
25026
26114
  export const shopifyMarketsHtsNumberAvailable: PropTypes.Requireable<io.flow.internal.v0.enums.ShopifyMarketsHtsNumberAvailable>;
26115
+ export const shopifyMarketsQueuedRecordType: PropTypes.Requireable<io.flow.internal.v0.enums.ShopifyMarketsQueuedRecordType>;
25027
26116
  export const shopifyMarketsTradeSector: PropTypes.Requireable<io.flow.internal.v0.enums.ShopifyMarketsTradeSector>;
25028
26117
  export const shopifyMonitoringMonitorReviewStatus: PropTypes.Requireable<io.flow.internal.v0.enums.ShopifyMonitoringMonitorReviewStatus>;
25029
26118
  export const shopifyMonitoringTrackingField: PropTypes.Requireable<io.flow.internal.v0.enums.ShopifyMonitoringTrackingField>;
@@ -25052,7 +26141,10 @@ export const timeseriesType: PropTypes.Requireable<io.flow.internal.v0.enums.Tim
25052
26141
  export const trackingIntegrationType: PropTypes.Requireable<io.flow.internal.v0.enums.TrackingIntegrationType>;
25053
26142
  export const transactionPostingMethod: PropTypes.Requireable<io.flow.internal.v0.enums.TransactionPostingMethod>;
25054
26143
  export const transferMethod: PropTypes.Requireable<io.flow.internal.v0.enums.TransferMethod>;
26144
+ export const trueUpSurchargeType: PropTypes.Requireable<io.flow.internal.v0.enums.TrueUpSurchargeType>;
25055
26145
  export const unclassifiedProductStatus: PropTypes.Requireable<io.flow.internal.v0.enums.UnclassifiedProductStatus>;
26146
+ export const washCarrierActualFileStatus: PropTypes.Requireable<io.flow.internal.v0.enums.WashCarrierActualFileStatus>;
26147
+ export const weightSelection: PropTypes.Requireable<io.flow.internal.v0.enums.WeightSelection>;
25056
26148
  export const acceptance: PropTypes.Requireable<io.flow.internal.v0.models.Acceptance>;
25057
26149
  export const accountContact: PropTypes.Requireable<io.flow.internal.v0.models.AccountContact>;
25058
26150
  export const accountContactDeleted: PropTypes.Requireable<io.flow.internal.v0.models.AccountContactDeleted>;
@@ -25135,6 +26227,7 @@ export const alertFailureSummary: PropTypes.Requireable<io.flow.internal.v0.mode
25135
26227
  export const alertFailureSummaryDetail: PropTypes.Requireable<io.flow.internal.v0.models.AlertFailureSummaryDetail>;
25136
26228
  export const alertImportSummary: PropTypes.Requireable<io.flow.internal.v0.models.AlertImportSummary>;
25137
26229
  export const alertRequeueSummary: PropTypes.Requireable<io.flow.internal.v0.models.AlertRequeueSummary>;
26230
+ export const algoliaIndexAssignment: PropTypes.Requireable<io.flow.internal.v0.models.AlgoliaIndexAssignment>;
25138
26231
  export const allItemsExport: PropTypes.Requireable<io.flow.internal.v0.models.AllItemsExport>;
25139
26232
  export const allOrganizationsMembership: PropTypes.Requireable<io.flow.internal.v0.models.AllOrganizationsMembership>;
25140
26233
  export const allocationItemReference: PropTypes.Requireable<io.flow.internal.v0.models.AllocationItemReference>;
@@ -25152,6 +26245,7 @@ export const authorizationParametersForm: PropTypes.Requireable<io.flow.internal
25152
26245
  export const authorizedChargeStatus: PropTypes.Requireable<io.flow.internal.v0.models.AuthorizedChargeStatus>;
25153
26246
  export const authorizedLineItemCharge: PropTypes.Requireable<io.flow.internal.v0.models.AuthorizedLineItemCharge>;
25154
26247
  export const authorizedShippingCharge: PropTypes.Requireable<io.flow.internal.v0.models.AuthorizedShippingCharge>;
26248
+ export const autoReviewCriteria: PropTypes.Requireable<io.flow.internal.v0.models.AutoReviewCriteria>;
25155
26249
  export const backfill: PropTypes.Requireable<io.flow.internal.v0.models.Backfill>;
25156
26250
  export const backfillForm: PropTypes.Requireable<io.flow.internal.v0.models.BackfillForm>;
25157
26251
  export const bankAccountReference: PropTypes.Requireable<io.flow.internal.v0.models.BankAccountReference>;
@@ -25178,7 +26272,6 @@ export const billingOrganizationSettingsUpserted: PropTypes.Requireable<io.flow.
25178
26272
  export const billingStatementAttachment: PropTypes.Requireable<io.flow.internal.v0.models.BillingStatementAttachment>;
25179
26273
  export const billingStatementBatch: PropTypes.Requireable<io.flow.internal.v0.models.BillingStatementBatch>;
25180
26274
  export const billingStatementBatchDeleted: PropTypes.Requireable<io.flow.internal.v0.models.BillingStatementBatchDeleted>;
25181
- export const billingStatementBatchReconciliation: PropTypes.Requireable<io.flow.internal.v0.models.BillingStatementBatchReconciliation>;
25182
26275
  export const billingStatementBatchReference: PropTypes.Requireable<io.flow.internal.v0.models.BillingStatementBatchReference>;
25183
26276
  export const billingStatementBatchStatement: PropTypes.Requireable<io.flow.internal.v0.models.BillingStatementBatchStatement>;
25184
26277
  export const billingStatementBatchStatementDeleted: PropTypes.Requireable<io.flow.internal.v0.models.BillingStatementBatchStatementDeleted>;
@@ -25238,6 +26331,8 @@ export const browserBundlePaymentMethods: PropTypes.Requireable<io.flow.internal
25238
26331
  export const bulkClassificationAction: PropTypes.Requireable<io.flow.internal.v0.models.BulkClassificationAction>;
25239
26332
  export const byRuleSnapshot: PropTypes.Requireable<io.flow.internal.v0.models.ByRuleSnapshot>;
25240
26333
  export const calculatedTaxAmount: PropTypes.Requireable<io.flow.internal.v0.models.CalculatedTaxAmount>;
26334
+ export const calculatorDtcePostBody: PropTypes.Requireable<io.flow.internal.v0.models.CalculatorDtcePostBody>;
26335
+ export const calculatorDtceProduct: PropTypes.Requireable<io.flow.internal.v0.models.CalculatorDtceProduct>;
25241
26336
  export const calculatorOrganizationSettings: PropTypes.Requireable<io.flow.internal.v0.models.CalculatorOrganizationSettings>;
25242
26337
  export const calculatorOrganizationSettingsDeleted: PropTypes.Requireable<io.flow.internal.v0.models.CalculatorOrganizationSettingsDeleted>;
25243
26338
  export const calculatorOrganizationSettingsForm: PropTypes.Requireable<io.flow.internal.v0.models.CalculatorOrganizationSettingsForm>;
@@ -25246,6 +26341,7 @@ export const carrierAccount: PropTypes.Requireable<io.flow.internal.v0.models.Ca
25246
26341
  export const carrierAccountDeleted: PropTypes.Requireable<io.flow.internal.v0.models.CarrierAccountDeleted>;
25247
26342
  export const carrierAccountForm: PropTypes.Requireable<io.flow.internal.v0.models.CarrierAccountForm>;
25248
26343
  export const carrierAccountUpsertedV2: PropTypes.Requireable<io.flow.internal.v0.models.CarrierAccountUpsertedV2>;
26344
+ export const carrierAccountValidation: PropTypes.Requireable<io.flow.internal.v0.models.CarrierAccountValidation>;
25249
26345
  export const carrierInvoice: PropTypes.Requireable<io.flow.internal.v0.models.CarrierInvoice>;
25250
26346
  export const catalogImportRequest: PropTypes.Requireable<io.flow.internal.v0.models.CatalogImportRequest>;
25251
26347
  export const catalogItemBatchIndexTask: PropTypes.Requireable<io.flow.internal.v0.models.CatalogItemBatchIndexTask>;
@@ -25254,6 +26350,7 @@ export const catalogItemIndexTask: PropTypes.Requireable<io.flow.internal.v0.mod
25254
26350
  export const catalogItemRegionAvailabilities: PropTypes.Requireable<io.flow.internal.v0.models.CatalogItemRegionAvailabilities>;
25255
26351
  export const catalogItemRegionAvailabilitiesData: PropTypes.Requireable<io.flow.internal.v0.models.CatalogItemRegionAvailabilitiesData>;
25256
26352
  export const catalogItemRegionAvailabilitiesPublished: PropTypes.Requireable<io.flow.internal.v0.models.CatalogItemRegionAvailabilitiesPublished>;
26353
+ export const catalogPublicationSyncValidationError: PropTypes.Requireable<io.flow.internal.v0.models.CatalogPublicationSyncValidationError>;
25257
26354
  export const catalogSettings: PropTypes.Requireable<io.flow.internal.v0.models.CatalogSettings>;
25258
26355
  export const catalogSettingsDeleted: PropTypes.Requireable<io.flow.internal.v0.models.CatalogSettingsDeleted>;
25259
26356
  export const catalogSettingsPutForm: PropTypes.Requireable<io.flow.internal.v0.models.CatalogSettingsPutForm>;
@@ -25706,6 +26803,7 @@ export const classificationWrapper: PropTypes.Requireable<io.flow.internal.v0.mo
25706
26803
  export const classifiedProduct: PropTypes.Requireable<io.flow.internal.v0.models.ClassifiedProduct>;
25707
26804
  export const classifiedProductDetail: PropTypes.Requireable<io.flow.internal.v0.models.ClassifiedProductDetail>;
25708
26805
  export const commercialInvoiceComparison: PropTypes.Requireable<io.flow.internal.v0.models.CommercialInvoiceComparison>;
26806
+ export const companyReference: PropTypes.Requireable<io.flow.internal.v0.models.CompanyReference>;
25709
26807
  export const compliance: PropTypes.Requireable<io.flow.internal.v0.models.Compliance>;
25710
26808
  export const components: PropTypes.Requireable<io.flow.internal.v0.models.Components>;
25711
26809
  export const consumerOptinActivity: PropTypes.Requireable<io.flow.internal.v0.models.ConsumerOptinActivity>;
@@ -25846,10 +26944,13 @@ export const erpFlowFileForm: PropTypes.Requireable<io.flow.internal.v0.models.E
25846
26944
  export const erpFlowVendor: PropTypes.Requireable<io.flow.internal.v0.models.ErpFlowVendor>;
25847
26945
  export const erpPriorityFile: PropTypes.Requireable<io.flow.internal.v0.models.ErpPriorityFile>;
25848
26946
  export const erpPriorityFileForm: PropTypes.Requireable<io.flow.internal.v0.models.ErpPriorityFileForm>;
26947
+ export const erpPriorityVendor: PropTypes.Requireable<io.flow.internal.v0.models.ErpPriorityVendor>;
26948
+ export const erpPriorityVendorForm: PropTypes.Requireable<io.flow.internal.v0.models.ErpPriorityVendorForm>;
25849
26949
  export const erpVendor: PropTypes.Requireable<io.flow.internal.v0.models.ErpVendor>;
25850
26950
  export const erpVendorStatus: PropTypes.Requireable<io.flow.internal.v0.models.ErpVendorStatus>;
25851
26951
  export const erpVendorStatusEntity: PropTypes.Requireable<io.flow.internal.v0.models.ErpVendorStatusEntity>;
25852
- export const erpVendorStatusFile: PropTypes.Requireable<io.flow.internal.v0.models.ErpVendorStatusFile>;
26952
+ export const erpVendorStatusFlowFile: PropTypes.Requireable<io.flow.internal.v0.models.ErpVendorStatusFlowFile>;
26953
+ export const erpVendorStatusPriorityFile: PropTypes.Requireable<io.flow.internal.v0.models.ErpVendorStatusPriorityFile>;
25853
26954
  export const exclusionRuleDeleted: PropTypes.Requireable<io.flow.internal.v0.models.ExclusionRuleDeleted>;
25854
26955
  export const exclusionRuleExportRequest: PropTypes.Requireable<io.flow.internal.v0.models.ExclusionRuleExportRequest>;
25855
26956
  export const exclusionRuleUpserted: PropTypes.Requireable<io.flow.internal.v0.models.ExclusionRuleUpserted>;
@@ -25942,6 +27043,7 @@ export const flowLabProjectPostForm: PropTypes.Requireable<io.flow.internal.v0.m
25942
27043
  export const flowLabProjectPutForm: PropTypes.Requireable<io.flow.internal.v0.models.FlowLabProjectPutForm>;
25943
27044
  export const flowLabelSetting: PropTypes.Requireable<io.flow.internal.v0.models.FlowLabelSetting>;
25944
27045
  export const flowLabelSettingForm: PropTypes.Requireable<io.flow.internal.v0.models.FlowLabelSettingForm>;
27046
+ export const flowShopValidationError: PropTypes.Requireable<io.flow.internal.v0.models.FlowShopValidationError>;
25945
27047
  export const fraudPendingReview: PropTypes.Requireable<io.flow.internal.v0.models.FraudPendingReview>;
25946
27048
  export const fraudPendingReviewDeleted: PropTypes.Requireable<io.flow.internal.v0.models.FraudPendingReviewDeleted>;
25947
27049
  export const fraudPendingReviewDetail: PropTypes.Requireable<io.flow.internal.v0.models.FraudPendingReviewDetail>;
@@ -25968,11 +27070,21 @@ export const ftpSettingVersion: PropTypes.Requireable<io.flow.internal.v0.models
25968
27070
  export const ftpSettingsPaths: PropTypes.Requireable<io.flow.internal.v0.models.FtpSettingsPaths>;
25969
27071
  export const fuelSurchargeServiceFeeAmountByWeightPutForm: PropTypes.Requireable<io.flow.internal.v0.models.FuelSurchargeServiceFeeAmountByWeightPutForm>;
25970
27072
  export const fuelSurchargeServiceFeePercentPutForm: PropTypes.Requireable<io.flow.internal.v0.models.FuelSurchargeServiceFeePercentPutForm>;
27073
+ export const fulfillment: PropTypes.Requireable<io.flow.internal.v0.models.Fulfillment>;
25971
27074
  export const fulfillmentActionForm: PropTypes.Requireable<io.flow.internal.v0.models.FulfillmentActionForm>;
27075
+ export const fulfillmentBusiness: PropTypes.Requireable<io.flow.internal.v0.models.FulfillmentBusiness>;
25972
27076
  export const fulfillmentCancel: PropTypes.Requireable<io.flow.internal.v0.models.FulfillmentCancel>;
25973
27077
  export const fulfillmentInternalExperienceReference: PropTypes.Requireable<io.flow.internal.v0.models.FulfillmentInternalExperienceReference>;
27078
+ export const fulfillmentLine: PropTypes.Requireable<io.flow.internal.v0.models.FulfillmentLine>;
27079
+ export const fulfillmentOrigin: PropTypes.Requireable<io.flow.internal.v0.models.FulfillmentOrigin>;
27080
+ export const fulfillmentProofExternalFulfillmentProofReference: PropTypes.Requireable<io.flow.internal.v0.models.FulfillmentProofExternalFulfillmentProofReference>;
27081
+ export const fulfillmentProofLabelTrackingReference: PropTypes.Requireable<io.flow.internal.v0.models.FulfillmentProofLabelTrackingReference>;
27082
+ export const fulfillmentProofShippingNotificationReference: PropTypes.Requireable<io.flow.internal.v0.models.FulfillmentProofShippingNotificationReference>;
27083
+ export const fulfillmentReference: PropTypes.Requireable<io.flow.internal.v0.models.FulfillmentReference>;
25974
27084
  export const fulfillmentShipmentTracking: PropTypes.Requireable<io.flow.internal.v0.models.FulfillmentShipmentTracking>;
27085
+ export const fulfillmentShipping: PropTypes.Requireable<io.flow.internal.v0.models.FulfillmentShipping>;
25975
27086
  export const fulfillmentSnapshot: PropTypes.Requireable<io.flow.internal.v0.models.FulfillmentSnapshot>;
27087
+ export const fulfillmentSubsidyBreakdown: PropTypes.Requireable<io.flow.internal.v0.models.FulfillmentSubsidyBreakdown>;
25976
27088
  export const fxFee: PropTypes.Requireable<io.flow.internal.v0.models.FxFee>;
25977
27089
  export const fxRevenueRecognition: PropTypes.Requireable<io.flow.internal.v0.models.FxRevenueRecognition>;
25978
27090
  export const fxRevenueRecognitionAccount: PropTypes.Requireable<io.flow.internal.v0.models.FxRevenueRecognitionAccount>;
@@ -25983,6 +27095,7 @@ export const fxRevenueRecognitionRate: PropTypes.Requireable<io.flow.internal.v0
25983
27095
  export const fxRevenueRecognitionSource: PropTypes.Requireable<io.flow.internal.v0.models.FxRevenueRecognitionSource>;
25984
27096
  export const generateLoadMultipleOrgs: PropTypes.Requireable<io.flow.internal.v0.models.GenerateLoadMultipleOrgs>;
25985
27097
  export const generateLoadSingleOrg: PropTypes.Requireable<io.flow.internal.v0.models.GenerateLoadSingleOrg>;
27098
+ export const genericValidationError: PropTypes.Requireable<io.flow.internal.v0.models.GenericValidationError>;
25986
27099
  export const giftCard: PropTypes.Requireable<io.flow.internal.v0.models.GiftCard>;
25987
27100
  export const giftCardAuthorizationError: PropTypes.Requireable<io.flow.internal.v0.models.GiftCardAuthorizationError>;
25988
27101
  export const giftCardForm: PropTypes.Requireable<io.flow.internal.v0.models.GiftCardForm>;
@@ -26003,6 +27116,8 @@ export const harmonizationItemClassificationUpserted: PropTypes.Requireable<io.f
26003
27116
  export const harmonizationItemSummary: PropTypes.Requireable<io.flow.internal.v0.models.HarmonizationItemSummary>;
26004
27117
  export const harmonizationMlModelSummary: PropTypes.Requireable<io.flow.internal.v0.models.HarmonizationMlModelSummary>;
26005
27118
  export const harmonizationPhraseSuggestionRequestImport: PropTypes.Requireable<io.flow.internal.v0.models.HarmonizationPhraseSuggestionRequestImport>;
27119
+ export const harmonizationThreshold: PropTypes.Requireable<io.flow.internal.v0.models.HarmonizationThreshold>;
27120
+ export const harmonizationThresholdForm: PropTypes.Requireable<io.flow.internal.v0.models.HarmonizationThresholdForm>;
26006
27121
  export const harmonizationUnclassifiedStatistics: PropTypes.Requireable<io.flow.internal.v0.models.HarmonizationUnclassifiedStatistics>;
26007
27122
  export const harmonizeFullyRequestV2: PropTypes.Requireable<io.flow.internal.v0.models.HarmonizeFullyRequestV2>;
26008
27123
  export const harmonizedItemsHs6Export: PropTypes.Requireable<io.flow.internal.v0.models.HarmonizedItemsHs6Export>;
@@ -26065,6 +27180,8 @@ export const hybrisCatalogItemsImportRequest: PropTypes.Requireable<io.flow.inte
26065
27180
  export const hybrisCatalogItemsImportRequestData: PropTypes.Requireable<io.flow.internal.v0.models.HybrisCatalogItemsImportRequestData>;
26066
27181
  export const importCompleted: PropTypes.Requireable<io.flow.internal.v0.models.ImportCompleted>;
26067
27182
  export const importFailed: PropTypes.Requireable<io.flow.internal.v0.models.ImportFailed>;
27183
+ export const indexAssignmentDeleted: PropTypes.Requireable<io.flow.internal.v0.models.IndexAssignmentDeleted>;
27184
+ export const indexAssignmentUpserted: PropTypes.Requireable<io.flow.internal.v0.models.IndexAssignmentUpserted>;
26068
27185
  export const installForm: PropTypes.Requireable<io.flow.internal.v0.models.InstallForm>;
26069
27186
  export const internalAdyenAuthorizationDetails: PropTypes.Requireable<io.flow.internal.v0.models.InternalAdyenAuthorizationDetails>;
26070
27187
  export const internalAfterpayAuthorizationDetails: PropTypes.Requireable<io.flow.internal.v0.models.InternalAfterpayAuthorizationDetails>;
@@ -26122,6 +27239,7 @@ export const itemSalesMarginPostForm: PropTypes.Requireable<io.flow.internal.v0.
26122
27239
  export const itemSalesMarginPutForm: PropTypes.Requireable<io.flow.internal.v0.models.ItemSalesMarginPutForm>;
26123
27240
  export const itemSalesMarginUpserted: PropTypes.Requireable<io.flow.internal.v0.models.ItemSalesMarginUpserted>;
26124
27241
  export const itemSalesMarginVersion: PropTypes.Requireable<io.flow.internal.v0.models.ItemSalesMarginVersion>;
27242
+ export const itemSummary: PropTypes.Requireable<io.flow.internal.v0.models.ItemSummary>;
26125
27243
  export const itemValuesForm: PropTypes.Requireable<io.flow.internal.v0.models.ItemValuesForm>;
26126
27244
  export const itemsShipped: PropTypes.Requireable<io.flow.internal.v0.models.ItemsShipped>;
26127
27245
  export const key: PropTypes.Requireable<io.flow.internal.v0.models.Key>;
@@ -26133,23 +27251,37 @@ export const labProjectSettingsForm: PropTypes.Requireable<io.flow.internal.v0.m
26133
27251
  export const labProjectSettingsFormAcceptance: PropTypes.Requireable<io.flow.internal.v0.models.LabProjectSettingsFormAcceptance>;
26134
27252
  export const labelAliases: PropTypes.Requireable<io.flow.internal.v0.models.LabelAliases>;
26135
27253
  export const labelAssociation: PropTypes.Requireable<io.flow.internal.v0.models.LabelAssociation>;
27254
+ export const labelBase: PropTypes.Requireable<io.flow.internal.v0.models.LabelBase>;
26136
27255
  export const labelCancellationError: PropTypes.Requireable<io.flow.internal.v0.models.LabelCancellationError>;
26137
27256
  export const labelCreationJob: PropTypes.Requireable<io.flow.internal.v0.models.LabelCreationJob>;
26138
27257
  export const labelCreationJobSummary: PropTypes.Requireable<io.flow.internal.v0.models.LabelCreationJobSummary>;
26139
27258
  export const labelCreationRequestForm: PropTypes.Requireable<io.flow.internal.v0.models.LabelCreationRequestForm>;
27259
+ export const labelDestination: PropTypes.Requireable<io.flow.internal.v0.models.LabelDestination>;
26140
27260
  export const labelGenerationAddressFailureStatusUpdateForm: PropTypes.Requireable<io.flow.internal.v0.models.LabelGenerationAddressFailureStatusUpdateForm>;
26141
27261
  export const labelGenerationAddressFailures: PropTypes.Requireable<io.flow.internal.v0.models.LabelGenerationAddressFailures>;
26142
27262
  export const labelGenerationSettings: PropTypes.Requireable<io.flow.internal.v0.models.LabelGenerationSettings>;
26143
27263
  export const labelGenerationSettingsDeleted: PropTypes.Requireable<io.flow.internal.v0.models.LabelGenerationSettingsDeleted>;
26144
27264
  export const labelGenerationSettingsForm: PropTypes.Requireable<io.flow.internal.v0.models.LabelGenerationSettingsForm>;
26145
27265
  export const labelGenerationSettingsUpserted: PropTypes.Requireable<io.flow.internal.v0.models.LabelGenerationSettingsUpserted>;
27266
+ export const labelInvoiceRequest: PropTypes.Requireable<io.flow.internal.v0.models.LabelInvoiceRequest>;
27267
+ export const labelInvoiceRequestDeleted: PropTypes.Requireable<io.flow.internal.v0.models.LabelInvoiceRequestDeleted>;
27268
+ export const labelInvoiceRequestUpserted: PropTypes.Requireable<io.flow.internal.v0.models.LabelInvoiceRequestUpserted>;
27269
+ export const labelMetadata: PropTypes.Requireable<io.flow.internal.v0.models.LabelMetadata>;
27270
+ export const labelRequestError: PropTypes.Requireable<io.flow.internal.v0.models.LabelRequestError>;
27271
+ export const labelRequestErrorDeleted: PropTypes.Requireable<io.flow.internal.v0.models.LabelRequestErrorDeleted>;
27272
+ export const labelRequestErrorUpserted: PropTypes.Requireable<io.flow.internal.v0.models.LabelRequestErrorUpserted>;
26146
27273
  export const labelSummary: PropTypes.Requireable<io.flow.internal.v0.models.LabelSummary>;
27274
+ export const labelSurcharge: PropTypes.Requireable<io.flow.internal.v0.models.LabelSurcharge>;
27275
+ export const labelSurchargeDetailFlat: PropTypes.Requireable<io.flow.internal.v0.models.LabelSurchargeDetailFlat>;
27276
+ export const labelSurchargeDetailPerWeightUnit: PropTypes.Requireable<io.flow.internal.v0.models.LabelSurchargeDetailPerWeightUnit>;
27277
+ export const labelSurchargeDetailPercentage: PropTypes.Requireable<io.flow.internal.v0.models.LabelSurchargeDetailPercentage>;
26147
27278
  export const labelTaxonomy: PropTypes.Requireable<io.flow.internal.v0.models.LabelTaxonomy>;
26148
27279
  export const labelTrackingSummaryDeleted: PropTypes.Requireable<io.flow.internal.v0.models.LabelTrackingSummaryDeleted>;
26149
27280
  export const labelTrackingSummaryUpserted: PropTypes.Requireable<io.flow.internal.v0.models.LabelTrackingSummaryUpserted>;
26150
27281
  export const labelTransaction: PropTypes.Requireable<io.flow.internal.v0.models.LabelTransaction>;
26151
27282
  export const labelTransactionDeleted: PropTypes.Requireable<io.flow.internal.v0.models.LabelTransactionDeleted>;
26152
27283
  export const labelTransactionUpserted: PropTypes.Requireable<io.flow.internal.v0.models.LabelTransactionUpserted>;
27284
+ export const labelUnits: PropTypes.Requireable<io.flow.internal.v0.models.LabelUnits>;
26153
27285
  export const labeledContent: PropTypes.Requireable<io.flow.internal.v0.models.LabeledContent>;
26154
27286
  export const labelsPrediction: PropTypes.Requireable<io.flow.internal.v0.models.LabelsPrediction>;
26155
27287
  export const landedCostItem: PropTypes.Requireable<io.flow.internal.v0.models.LandedCostItem>;
@@ -26187,7 +27319,6 @@ export const localizedPriceBookItemData: PropTypes.Requireable<io.flow.internal.
26187
27319
  export const localizedPriceBookItemDeleted: PropTypes.Requireable<io.flow.internal.v0.models.LocalizedPriceBookItemDeleted>;
26188
27320
  export const localizedPriceBookItemUpserted: PropTypes.Requireable<io.flow.internal.v0.models.LocalizedPriceBookItemUpserted>;
26189
27321
  export const location: PropTypes.Requireable<io.flow.internal.v0.models.Location>;
26190
- export const logisticsCenterCheck: PropTypes.Requireable<io.flow.internal.v0.models.LogisticsCenterCheck>;
26191
27322
  export const logo: PropTypes.Requireable<io.flow.internal.v0.models.Logo>;
26192
27323
  export const loyaltyProgram: PropTypes.Requireable<io.flow.internal.v0.models.LoyaltyProgram>;
26193
27324
  export const loyaltyProgramMessage: PropTypes.Requireable<io.flow.internal.v0.models.LoyaltyProgramMessage>;
@@ -26246,8 +27377,19 @@ export const marketingGatewaySupportedChannelDetails: PropTypes.Requireable<io.f
26246
27377
  export const marketsOrder: PropTypes.Requireable<io.flow.internal.v0.models.MarketsOrder>;
26247
27378
  export const merchantApplicationSummaries: PropTypes.Requireable<io.flow.internal.v0.models.MerchantApplicationSummaries>;
26248
27379
  export const merchantApplicationSummary: PropTypes.Requireable<io.flow.internal.v0.models.MerchantApplicationSummary>;
27380
+ export const merchantCharges: PropTypes.Requireable<io.flow.internal.v0.models.MerchantCharges>;
27381
+ export const merchantFees: PropTypes.Requireable<io.flow.internal.v0.models.MerchantFees>;
27382
+ export const merchantGuidAssignment: PropTypes.Requireable<io.flow.internal.v0.models.MerchantGuidAssignment>;
27383
+ export const merchantGuidAssignmentDeleted: PropTypes.Requireable<io.flow.internal.v0.models.MerchantGuidAssignmentDeleted>;
27384
+ export const merchantGuidAssignmentUpserted: PropTypes.Requireable<io.flow.internal.v0.models.MerchantGuidAssignmentUpserted>;
26249
27385
  export const merchantOfRecordEntitySettings: PropTypes.Requireable<io.flow.internal.v0.models.MerchantOfRecordEntitySettings>;
26250
27386
  export const merchantOfRecordEntitySettingsForm: PropTypes.Requireable<io.flow.internal.v0.models.MerchantOfRecordEntitySettingsForm>;
27387
+ export const merchantSearchResult: PropTypes.Requireable<io.flow.internal.v0.models.MerchantSearchResult>;
27388
+ export const merchantSubsidies: PropTypes.Requireable<io.flow.internal.v0.models.MerchantSubsidies>;
27389
+ export const merchantSummary: PropTypes.Requireable<io.flow.internal.v0.models.MerchantSummary>;
27390
+ export const metadataProposition: PropTypes.Requireable<io.flow.internal.v0.models.MetadataProposition>;
27391
+ export const metadataRatecard: PropTypes.Requireable<io.flow.internal.v0.models.MetadataRatecard>;
27392
+ export const metadataWeights: PropTypes.Requireable<io.flow.internal.v0.models.MetadataWeights>;
26251
27393
  export const nextBillingStatement: PropTypes.Requireable<io.flow.internal.v0.models.NextBillingStatement>;
26252
27394
  export const noCalculatedTaxAmount: PropTypes.Requireable<io.flow.internal.v0.models.NoCalculatedTaxAmount>;
26253
27395
  export const noClassificationForm: PropTypes.Requireable<io.flow.internal.v0.models.NoClassificationForm>;
@@ -26296,9 +27438,11 @@ export const orderRevenueTimelineDataPoint: PropTypes.Requireable<io.flow.intern
26296
27438
  export const orderServiceChangeCsvForm: PropTypes.Requireable<io.flow.internal.v0.models.OrderServiceChangeCsvForm>;
26297
27439
  export const orderShipped: PropTypes.Requireable<io.flow.internal.v0.models.OrderShipped>;
26298
27440
  export const orderSubmissionForm: PropTypes.Requireable<io.flow.internal.v0.models.OrderSubmissionForm>;
27441
+ export const orderSummary: PropTypes.Requireable<io.flow.internal.v0.models.OrderSummary>;
26299
27442
  export const orderTransaction: PropTypes.Requireable<io.flow.internal.v0.models.OrderTransaction>;
26300
27443
  export const orderTransactionDeleted: PropTypes.Requireable<io.flow.internal.v0.models.OrderTransactionDeleted>;
26301
27444
  export const orderTransactionUpserted: PropTypes.Requireable<io.flow.internal.v0.models.OrderTransactionUpserted>;
27445
+ export const orderValidationError: PropTypes.Requireable<io.flow.internal.v0.models.OrderValidationError>;
26302
27446
  export const organizationAccount: PropTypes.Requireable<io.flow.internal.v0.models.OrganizationAccount>;
26303
27447
  export const organizationAccountDeleted: PropTypes.Requireable<io.flow.internal.v0.models.OrganizationAccountDeleted>;
26304
27448
  export const organizationAccountUpsertedV2: PropTypes.Requireable<io.flow.internal.v0.models.OrganizationAccountUpsertedV2>;
@@ -26316,6 +27460,10 @@ export const organizationCurrencySettingDeleted: PropTypes.Requireable<io.flow.i
26316
27460
  export const organizationCurrencySettingForm: PropTypes.Requireable<io.flow.internal.v0.models.OrganizationCurrencySettingForm>;
26317
27461
  export const organizationCurrencySettingUpserted: PropTypes.Requireable<io.flow.internal.v0.models.OrganizationCurrencySettingUpserted>;
26318
27462
  export const organizationCurrencySettingVersion: PropTypes.Requireable<io.flow.internal.v0.models.OrganizationCurrencySettingVersion>;
27463
+ export const organizationDeactivation: PropTypes.Requireable<io.flow.internal.v0.models.OrganizationDeactivation>;
27464
+ export const organizationDeactivationDeleted: PropTypes.Requireable<io.flow.internal.v0.models.OrganizationDeactivationDeleted>;
27465
+ export const organizationDeactivationForm: PropTypes.Requireable<io.flow.internal.v0.models.OrganizationDeactivationForm>;
27466
+ export const organizationDeactivationUpserted: PropTypes.Requireable<io.flow.internal.v0.models.OrganizationDeactivationUpserted>;
26319
27467
  export const organizationDebugTransaction: PropTypes.Requireable<io.flow.internal.v0.models.OrganizationDebugTransaction>;
26320
27468
  export const organizationInvitationAcceptForm: PropTypes.Requireable<io.flow.internal.v0.models.OrganizationInvitationAcceptForm>;
26321
27469
  export const organizationMembershipCopy: PropTypes.Requireable<io.flow.internal.v0.models.OrganizationMembershipCopy>;
@@ -26342,6 +27490,7 @@ export const organizationSettingsForm: PropTypes.Requireable<io.flow.internal.v0
26342
27490
  export const organizationStatusChange: PropTypes.Requireable<io.flow.internal.v0.models.OrganizationStatusChange>;
26343
27491
  export const organizationStatusChangeDeleted: PropTypes.Requireable<io.flow.internal.v0.models.OrganizationStatusChangeDeleted>;
26344
27492
  export const organizationStatusChangeUpserted: PropTypes.Requireable<io.flow.internal.v0.models.OrganizationStatusChangeUpserted>;
27493
+ export const organizationsAuditCheckReport: PropTypes.Requireable<io.flow.internal.v0.models.OrganizationsAuditCheckReport>;
26345
27494
  export const partner: PropTypes.Requireable<io.flow.internal.v0.models.Partner>;
26346
27495
  export const partnerAuthorization: PropTypes.Requireable<io.flow.internal.v0.models.PartnerAuthorization>;
26347
27496
  export const partnerAuthorizationForm: PropTypes.Requireable<io.flow.internal.v0.models.PartnerAuthorizationForm>;
@@ -26369,6 +27518,7 @@ export const paymentProcessorAccountUpserted: PropTypes.Requireable<io.flow.inte
26369
27518
  export const paymentProcessorMerchantDeleted: PropTypes.Requireable<io.flow.internal.v0.models.PaymentProcessorMerchantDeleted>;
26370
27519
  export const paymentProcessorMerchantUpserted: PropTypes.Requireable<io.flow.internal.v0.models.PaymentProcessorMerchantUpserted>;
26371
27520
  export const paymentSummaryV2: PropTypes.Requireable<io.flow.internal.v0.models.PaymentSummaryV2>;
27521
+ export const payoutStatusCounts: PropTypes.Requireable<io.flow.internal.v0.models.PayoutStatusCounts>;
26372
27522
  export const paypalAccount: PropTypes.Requireable<io.flow.internal.v0.models.PaypalAccount>;
26373
27523
  export const paypalAccountModificationForm: PropTypes.Requireable<io.flow.internal.v0.models.PaypalAccountModificationForm>;
26374
27524
  export const paypalAccountPutForm: PropTypes.Requireable<io.flow.internal.v0.models.PaypalAccountPutForm>;
@@ -26424,11 +27574,13 @@ export const productHarmonization: PropTypes.Requireable<io.flow.internal.v0.mod
26424
27574
  export const productHarmonizationForm: PropTypes.Requireable<io.flow.internal.v0.models.ProductHarmonizationForm>;
26425
27575
  export const productLabels: PropTypes.Requireable<io.flow.internal.v0.models.ProductLabels>;
26426
27576
  export const productListSettingsForm: PropTypes.Requireable<io.flow.internal.v0.models.ProductListSettingsForm>;
27577
+ export const productRestrictionResultValidationError: PropTypes.Requireable<io.flow.internal.v0.models.ProductRestrictionResultValidationError>;
26427
27578
  export const productReviewHistory: PropTypes.Requireable<io.flow.internal.v0.models.ProductReviewHistory>;
26428
27579
  export const proofOfPostingExternallyFulfilled: PropTypes.Requireable<io.flow.internal.v0.models.ProofOfPostingExternallyFulfilled>;
26429
27580
  export const proofOfPostingFulfilled: PropTypes.Requireable<io.flow.internal.v0.models.ProofOfPostingFulfilled>;
26430
27581
  export const proofOfPostingOrderCancellation: PropTypes.Requireable<io.flow.internal.v0.models.ProofOfPostingOrderCancellation>;
26431
27582
  export const proofOfPostingShippingNotification: PropTypes.Requireable<io.flow.internal.v0.models.ProofOfPostingShippingNotification>;
27583
+ export const queuedRecord: PropTypes.Requireable<io.flow.internal.v0.models.QueuedRecord>;
26432
27584
  export const quoteRequest: PropTypes.Requireable<io.flow.internal.v0.models.QuoteRequest>;
26433
27585
  export const rateAndRuleItem: PropTypes.Requireable<io.flow.internal.v0.models.RateAndRuleItem>;
26434
27586
  export const rateAndRuleItemForm: PropTypes.Requireable<io.flow.internal.v0.models.RateAndRuleItemForm>;
@@ -26489,8 +27641,11 @@ export const redirect: PropTypes.Requireable<io.flow.internal.v0.models.Redirect
26489
27641
  export const redirectActionCompleted: PropTypes.Requireable<io.flow.internal.v0.models.RedirectActionCompleted>;
26490
27642
  export const registeredExporterTariffEligibilityData: PropTypes.Requireable<io.flow.internal.v0.models.RegisteredExporterTariffEligibilityData>;
26491
27643
  export const registeredExporterTariffEligibilityForm: PropTypes.Requireable<io.flow.internal.v0.models.RegisteredExporterTariffEligibilityForm>;
27644
+ export const report: PropTypes.Requireable<io.flow.internal.v0.models.Report>;
27645
+ export const reportForm: PropTypes.Requireable<io.flow.internal.v0.models.ReportForm>;
26492
27646
  export const reportRuleDecision: PropTypes.Requireable<io.flow.internal.v0.models.ReportRuleDecision>;
26493
27647
  export const reportSummary: PropTypes.Requireable<io.flow.internal.v0.models.ReportSummary>;
27648
+ export const reportingDetails: PropTypes.Requireable<io.flow.internal.v0.models.ReportingDetails>;
26494
27649
  export const requeueRequestForm: PropTypes.Requireable<io.flow.internal.v0.models.RequeueRequestForm>;
26495
27650
  export const restrictionCategory: PropTypes.Requireable<io.flow.internal.v0.models.RestrictionCategory>;
26496
27651
  export const restrictionFilter: PropTypes.Requireable<io.flow.internal.v0.models.RestrictionFilter>;
@@ -26518,6 +27673,8 @@ export const resyncByDestinations: PropTypes.Requireable<io.flow.internal.v0.mod
26518
27673
  export const resyncByHs6Destinations: PropTypes.Requireable<io.flow.internal.v0.models.ResyncByHs6Destinations>;
26519
27674
  export const resyncByHs6Origin: PropTypes.Requireable<io.flow.internal.v0.models.ResyncByHs6Origin>;
26520
27675
  export const resyncFallbackRates: PropTypes.Requireable<io.flow.internal.v0.models.ResyncFallbackRates>;
27676
+ export const retracking: PropTypes.Requireable<io.flow.internal.v0.models.Retracking>;
27677
+ export const retrackingForm: PropTypes.Requireable<io.flow.internal.v0.models.RetrackingForm>;
26521
27678
  export const returnPolicyDeleted: PropTypes.Requireable<io.flow.internal.v0.models.ReturnPolicyDeleted>;
26522
27679
  export const returnPolicyItemResultDeleted: PropTypes.Requireable<io.flow.internal.v0.models.ReturnPolicyItemResultDeleted>;
26523
27680
  export const returnPolicyItemResultUpserted: PropTypes.Requireable<io.flow.internal.v0.models.ReturnPolicyItemResultUpserted>;
@@ -26526,6 +27683,8 @@ export const returnSummary: PropTypes.Requireable<io.flow.internal.v0.models.Ret
26526
27683
  export const routingAccount: PropTypes.Requireable<io.flow.internal.v0.models.RoutingAccount>;
26527
27684
  export const routingMerchant: PropTypes.Requireable<io.flow.internal.v0.models.RoutingMerchant>;
26528
27685
  export const routingProcessor: PropTypes.Requireable<io.flow.internal.v0.models.RoutingProcessor>;
27686
+ export const sandboxSetup: PropTypes.Requireable<io.flow.internal.v0.models.SandboxSetup>;
27687
+ export const sandboxSetupForm: PropTypes.Requireable<io.flow.internal.v0.models.SandboxSetupForm>;
26529
27688
  export const screen: PropTypes.Requireable<io.flow.internal.v0.models.Screen>;
26530
27689
  export const screenForm: PropTypes.Requireable<io.flow.internal.v0.models.ScreenForm>;
26531
27690
  export const searchAuthorization: PropTypes.Requireable<io.flow.internal.v0.models.SearchAuthorization>;
@@ -26547,6 +27706,7 @@ export const sfExpress: PropTypes.Requireable<io.flow.internal.v0.models.SfExpre
26547
27706
  export const shippedItemValue: PropTypes.Requireable<io.flow.internal.v0.models.ShippedItemValue>;
26548
27707
  export const shipperAccountInfoForm: PropTypes.Requireable<io.flow.internal.v0.models.ShipperAccountInfoForm>;
26549
27708
  export const shippingLane: PropTypes.Requireable<io.flow.internal.v0.models.ShippingLane>;
27709
+ export const shippingMethodReference: PropTypes.Requireable<io.flow.internal.v0.models.ShippingMethodReference>;
26550
27710
  export const shop: PropTypes.Requireable<io.flow.internal.v0.models.Shop>;
26551
27711
  export const shopForm: PropTypes.Requireable<io.flow.internal.v0.models.ShopForm>;
26552
27712
  export const shopVersion: PropTypes.Requireable<io.flow.internal.v0.models.ShopVersion>;
@@ -26565,10 +27725,16 @@ export const shopifyGiftCardRedemptionForm: PropTypes.Requireable<io.flow.intern
26565
27725
  export const shopifyGiftCardReversal: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyGiftCardReversal>;
26566
27726
  export const shopifyGiftCardReversalForm: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyGiftCardReversalForm>;
26567
27727
  export const shopifyGrantsCheck: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyGrantsCheck>;
27728
+ export const shopifyMarketsDiscrepancy: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMarketsDiscrepancy>;
27729
+ export const shopifyMarketsDiscrepancyData: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMarketsDiscrepancyData>;
26568
27730
  export const shopifyMarketsIncorporationCountry: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMarketsIncorporationCountry>;
27731
+ export const shopifyMarketsInternalOrderMetrics: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMarketsInternalOrderMetrics>;
27732
+ export const shopifyMarketsMetricsDeleted: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMarketsMetricsDeleted>;
27733
+ export const shopifyMarketsMetricsUpserted: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMarketsMetricsUpserted>;
26569
27734
  export const shopifyMarketsOrder: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMarketsOrder>;
26570
27735
  export const shopifyMarketsOrderDeleted: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMarketsOrderDeleted>;
26571
27736
  export const shopifyMarketsOrderUpserted: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMarketsOrderUpserted>;
27737
+ export const shopifyMarketsOrdersMetrics: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMarketsOrdersMetrics>;
26572
27738
  export const shopifyMarketsShop: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMarketsShop>;
26573
27739
  export const shopifyMarketsShopDeleted: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMarketsShopDeleted>;
26574
27740
  export const shopifyMarketsShopForm: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMarketsShopForm>;
@@ -26576,6 +27742,7 @@ export const shopifyMarketsShopStatisticsDeleted: PropTypes.Requireable<io.flow.
26576
27742
  export const shopifyMarketsShopStatisticsUpserted: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMarketsShopStatisticsUpserted>;
26577
27743
  export const shopifyMarketsShopSummary: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMarketsShopSummary>;
26578
27744
  export const shopifyMarketsShopUpserted: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMarketsShopUpserted>;
27745
+ export const shopifyMarketsShopifyOrderMetrics: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMarketsShopifyOrderMetrics>;
26579
27746
  export const shopifyMarketsSubsidiaryCompany: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMarketsSubsidiaryCompany>;
26580
27747
  export const shopifyMarketsSync: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMarketsSync>;
26581
27748
  export const shopifyMarketsWebhookRegistration: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMarketsWebhookRegistration>;
@@ -26624,9 +27791,12 @@ export const shopifyPromotionRule: PropTypes.Requireable<io.flow.internal.v0.mod
26624
27791
  export const shopifyShopDeleted: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyShopDeleted>;
26625
27792
  export const shopifyShopStatistics: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyShopStatistics>;
26626
27793
  export const shopifyShopUpserted: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyShopUpserted>;
27794
+ export const shopifyStorePassword: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyStorePassword>;
26627
27795
  export const shopifyWebhook: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyWebhook>;
26628
27796
  export const shopifyWebhookEvent: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyWebhookEvent>;
26629
27797
  export const shopifyWebhookForm: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyWebhookForm>;
27798
+ export const shopperFees: PropTypes.Requireable<io.flow.internal.v0.models.ShopperFees>;
27799
+ export const shopperSummary: PropTypes.Requireable<io.flow.internal.v0.models.ShopperSummary>;
26630
27800
  export const simpleAccountReference: PropTypes.Requireable<io.flow.internal.v0.models.SimpleAccountReference>;
26631
27801
  export const simplifiedItemLabel: PropTypes.Requireable<io.flow.internal.v0.models.SimplifiedItemLabel>;
26632
27802
  export const simplifiedTaxonomyCategory: PropTypes.Requireable<io.flow.internal.v0.models.SimplifiedTaxonomyCategory>;
@@ -26732,12 +27902,19 @@ export const trackingUpserted: PropTypes.Requireable<io.flow.internal.v0.models.
26732
27902
  export const transactionAdjustment: PropTypes.Requireable<io.flow.internal.v0.models.TransactionAdjustment>;
26733
27903
  export const transactionAdjustmentForm: PropTypes.Requireable<io.flow.internal.v0.models.TransactionAdjustmentForm>;
26734
27904
  export const transactionReference: PropTypes.Requireable<io.flow.internal.v0.models.TransactionReference>;
27905
+ export const transactionStatement: PropTypes.Requireable<io.flow.internal.v0.models.TransactionStatement>;
27906
+ export const transactionStatementDeleted: PropTypes.Requireable<io.flow.internal.v0.models.TransactionStatementDeleted>;
27907
+ export const transactionStatementUpserted: PropTypes.Requireable<io.flow.internal.v0.models.TransactionStatementUpserted>;
26735
27908
  export const transferTransaction: PropTypes.Requireable<io.flow.internal.v0.models.TransferTransaction>;
26736
27909
  export const transferTransactionDeleted: PropTypes.Requireable<io.flow.internal.v0.models.TransferTransactionDeleted>;
26737
27910
  export const transferTransactionDeletedV2: PropTypes.Requireable<io.flow.internal.v0.models.TransferTransactionDeletedV2>;
26738
27911
  export const transferTransactionUpserted: PropTypes.Requireable<io.flow.internal.v0.models.TransferTransactionUpserted>;
26739
27912
  export const transferTransactionUpsertedV2: PropTypes.Requireable<io.flow.internal.v0.models.TransferTransactionUpsertedV2>;
26740
27913
  export const tribe: PropTypes.Requireable<io.flow.internal.v0.models.Tribe>;
27914
+ export const trueUpLabelSummary: PropTypes.Requireable<io.flow.internal.v0.models.TrueUpLabelSummary>;
27915
+ export const unassignedMerchantGuid: PropTypes.Requireable<io.flow.internal.v0.models.UnassignedMerchantGuid>;
27916
+ export const unassignedMerchantGuidDeleted: PropTypes.Requireable<io.flow.internal.v0.models.UnassignedMerchantGuidDeleted>;
27917
+ export const unassignedMerchantGuidUpserted: PropTypes.Requireable<io.flow.internal.v0.models.UnassignedMerchantGuidUpserted>;
26741
27918
  export const unclassifiedProductStatistic: PropTypes.Requireable<io.flow.internal.v0.models.UnclassifiedProductStatistic>;
26742
27919
  export const unclassifiedProductsPurgeRequest: PropTypes.Requireable<io.flow.internal.v0.models.UnclassifiedProductsPurgeRequest>;
26743
27920
  export const unclassifiedProductsSummary: PropTypes.Requireable<io.flow.internal.v0.models.UnclassifiedProductsSummary>;
@@ -26768,10 +27945,14 @@ export const virtualCardProvider: PropTypes.Requireable<io.flow.internal.v0.mode
26768
27945
  export const virtualCardProviderDeleted: PropTypes.Requireable<io.flow.internal.v0.models.VirtualCardProviderDeleted>;
26769
27946
  export const virtualCardProviderUpserted: PropTypes.Requireable<io.flow.internal.v0.models.VirtualCardProviderUpserted>;
26770
27947
  export const virtualCardTransaction: PropTypes.Requireable<io.flow.internal.v0.models.VirtualCardTransaction>;
27948
+ export const washCarrierActualFile: PropTypes.Requireable<io.flow.internal.v0.models.WashCarrierActualFile>;
27949
+ export const washCarrierActualFileForm: PropTypes.Requireable<io.flow.internal.v0.models.WashCarrierActualFileForm>;
26771
27950
  export const washExportRequest: PropTypes.Requireable<io.flow.internal.v0.models.WashExportRequest>;
26772
27951
  export const wasteElectricalAndElectronicEquipmentComplianceData: PropTypes.Requireable<io.flow.internal.v0.models.WasteElectricalAndElectronicEquipmentComplianceData>;
26773
27952
  export const wasteElectricalAndElectronicEquipmentComplianceForm: PropTypes.Requireable<io.flow.internal.v0.models.WasteElectricalAndElectronicEquipmentComplianceForm>;
26774
27953
  export const webhook: PropTypes.Requireable<io.flow.internal.v0.models.Webhook>;
27954
+ export const weightsDead: PropTypes.Requireable<io.flow.internal.v0.models.WeightsDead>;
27955
+ export const weightsDimensional: PropTypes.Requireable<io.flow.internal.v0.models.WeightsDimensional>;
26775
27956
  export const wholeOrderActionForm: PropTypes.Requireable<io.flow.internal.v0.models.WholeOrderActionForm>;
26776
27957
  export const adjustmentAmount: PropTypes.Requireable<io.flow.internal.v0.unions.AdjustmentAmount>;
26777
27958
  export const adjustmentDetails: PropTypes.Requireable<io.flow.internal.v0.unions.AdjustmentDetails>;
@@ -26881,6 +28062,7 @@ export const featureValue: PropTypes.Requireable<io.flow.internal.v0.unions.Feat
26881
28062
  export const fraudProviderConfiguration: PropTypes.Requireable<io.flow.internal.v0.unions.FraudProviderConfiguration>;
26882
28063
  export const fraudProviderConfigurationForm: PropTypes.Requireable<io.flow.internal.v0.unions.FraudProviderConfigurationForm>;
26883
28064
  export const fuelSurchargeServiceFeePutForm: PropTypes.Requireable<io.flow.internal.v0.unions.FuelSurchargeServiceFeePutForm>;
28065
+ export const fulfillmentProof: PropTypes.Requireable<io.flow.internal.v0.unions.FulfillmentProof>;
26884
28066
  export const generateLoad: PropTypes.Requireable<io.flow.internal.v0.unions.GenerateLoad>;
26885
28067
  export const globalSearchResult: PropTypes.Requireable<io.flow.internal.v0.unions.GlobalSearchResult>;
26886
28068
  export const heapEvent: PropTypes.Requireable<io.flow.internal.v0.unions.HeapEvent>;
@@ -26890,6 +28072,7 @@ export const internalAuthorizationDetails: PropTypes.Requireable<io.flow.interna
26890
28072
  export const internalHarmonizationStatistic: PropTypes.Requireable<io.flow.internal.v0.unions.InternalHarmonizationStatistic>;
26891
28073
  export const internalRefundForm: PropTypes.Requireable<io.flow.internal.v0.unions.InternalRefundForm>;
26892
28074
  export const internalTransactionDetails: PropTypes.Requireable<io.flow.internal.v0.unions.InternalTransactionDetails>;
28075
+ export const labelSurchargeDetail: PropTypes.Requireable<io.flow.internal.v0.unions.LabelSurchargeDetail>;
26893
28076
  export const localizableContent: PropTypes.Requireable<io.flow.internal.v0.unions.LocalizableContent>;
26894
28077
  export const marketingGatewayChannelDetails: PropTypes.Requireable<io.flow.internal.v0.unions.MarketingGatewayChannelDetails>;
26895
28078
  export const marketingGatewayDistributionChannel: PropTypes.Requireable<io.flow.internal.v0.unions.MarketingGatewayDistributionChannel>;