@flowio/types 11.24.67 → 11.24.69

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.
@@ -257,6 +257,12 @@ declare namespace io.flow.RESERVED_WORD_return.v0.unions {
257
257
  | io.flow.RESERVED_WORD_return.v0.models.ReturnSourceExternalVendor;
258
258
  }
259
259
 
260
+ declare namespace io.flow.units.v0.enums {
261
+ type UnitOfLength = 'millimeter' | 'centimeter' | 'inch' | 'foot' | 'meter';
262
+ type UnitOfVolume = 'cubic_inch' | 'cubic_meter';
263
+ type UnitOfWeight = 'gram' | 'kilogram' | 'ounce' | 'pound';
264
+ }
265
+
260
266
  declare namespace io.flow.order.price.v0.enums {
261
267
  type OrderPriceDetailComponentKey =
262
268
  | 'adjustment'
@@ -323,209 +329,6 @@ declare namespace io.flow.order.price.v0.models {
323
329
  }
324
330
  }
325
331
 
326
- declare namespace io.flow.error.v0.enums {
327
- type GenericErrorCode = 'generic_error' | 'client_error' | 'server_error';
328
- }
329
-
330
- declare namespace io.flow.error.v0.models {
331
- interface GenericError {
332
- readonly code: io.flow.error.v0.enums.GenericErrorCode;
333
- readonly messages: string[];
334
- }
335
- }
336
-
337
- declare namespace io.flow.price.v0.enums {
338
- type LevyComponent = 'goods' | 'duty' | 'insurance' | 'freight' | 'vat';
339
- type LevyStrategy = 'minimum' | 'average' | 'maximum';
340
- type PriceAccuracy = 'calculated' | 'estimated_from_partial_destination';
341
- type PriceDetailComponentKey =
342
- | 'base_price'
343
- | 'discount'
344
- | 'currency_margin'
345
- | 'percent_item_margin'
346
- | 'fixed_item_margin'
347
- | 'duties_item_price'
348
- | 'duties_added_margin'
349
- | 'duties_rounding'
350
- | 'duties_deminimis'
351
- | 'vat_item_price'
352
- | 'vat_added_margin'
353
- | 'vat_rounding'
354
- | 'vat_duties_item_price'
355
- | 'vat_duties_added_margin'
356
- | 'vat_duties_rounding'
357
- | 'vat_deminimis'
358
- | 'item_price_percent_sales_margin'
359
- | 'margins_percent_sales_margin'
360
- | 'rounding_percent_sales_margin'
361
- | 'vat_percent_sales_margin'
362
- | 'vat_duty_percent_sales_margin'
363
- | 'duty_percent_sales_margin';
364
- type PriceDetailKey =
365
- | 'item_price'
366
- | 'margins'
367
- | 'vat'
368
- | 'duty'
369
- | 'rounding'
370
- | 'adjustment';
371
- type PricingLevySetting = 'included' | 'displayed' | 'ignored';
372
- }
373
-
374
- declare namespace io.flow.price.v0.models {
375
- interface CurrencyFormat {
376
- readonly symbol: io.flow.common.v0.enums.CurrencySymbolFormat;
377
- readonly label_formatters: io.flow.common.v0.enums.CurrencyLabelFormatter[];
378
- }
379
-
380
- interface DeminimisPerItem {
381
- readonly discriminator: 'deminimis_per_item';
382
- readonly currency: string;
383
- readonly minimum?: number;
384
- readonly maximum?: number;
385
- }
386
-
387
- interface DeminimisSimple {
388
- readonly discriminator: 'deminimis_simple';
389
- readonly value?: number;
390
- readonly currency: string;
391
- readonly components: io.flow.price.v0.enums.LevyComponent[];
392
- readonly minimum?: number;
393
- }
394
-
395
- interface Duty {
396
- readonly rate: number;
397
- readonly components: io.flow.price.v0.enums.LevyComponent[];
398
- readonly deminimis?: io.flow.price.v0.unions.Deminimis;
399
- readonly name?: string;
400
- }
401
-
402
- interface LocalPriceDetails {
403
- readonly base: io.flow.price.v0.models.PriceDetails;
404
- readonly local: io.flow.price.v0.models.PriceDetails;
405
- readonly discount?: io.flow.price.v0.models.PriceDetail;
406
- readonly local_before_discount?: io.flow.price.v0.models.PriceDetail;
407
- }
408
-
409
- interface PriceBook {
410
- readonly id: string;
411
- readonly key: string;
412
- readonly currency: string;
413
- readonly name: string;
414
- readonly includes: io.flow.common.v0.models.IncludedLevies;
415
- readonly status: io.flow.common.v0.enums.PriceBookStatus;
416
- }
417
-
418
- interface PriceBookForm {
419
- readonly currency: string;
420
- readonly name: string;
421
- readonly includes: io.flow.common.v0.enums.IncludedLevyKey;
422
- readonly status?: io.flow.common.v0.enums.PriceBookStatus;
423
- }
424
-
425
- interface PriceBookItem {
426
- readonly id: string;
427
- readonly key: string;
428
- readonly price_book: io.flow.price.v0.models.PriceBookReference;
429
- readonly price: io.flow.common.v0.models.Price;
430
- readonly item_number: string;
431
- readonly schedule: io.flow.price.v0.models.PriceBookItemSchedule;
432
- readonly item_attributes?: Record<string, string>;
433
- }
434
-
435
- interface PriceBookItemForm {
436
- readonly price_book_key: string;
437
- readonly item_number: string;
438
- readonly amount: number;
439
- readonly schedule?: io.flow.price.v0.models.PriceBookItemSchedule;
440
- readonly item_attributes?: Record<string, string>;
441
- }
442
-
443
- interface PriceBookItemQueryForm {
444
- readonly price_book_key: string;
445
- readonly item_query: string;
446
- readonly amount: number;
447
- readonly schedule?: io.flow.price.v0.models.PriceBookItemSchedule;
448
- readonly item_attributes?: Record<string, string>;
449
- }
450
-
451
- interface PriceBookItemSchedule {
452
- readonly starts_at: string;
453
- readonly ends_at?: string;
454
- }
455
-
456
- interface PriceBookReference {
457
- readonly id: string;
458
- readonly key: string;
459
- }
460
-
461
- interface PriceCheck {
462
- readonly display: io.flow.price.v0.models.LocalPriceDetails;
463
- readonly final: io.flow.price.v0.models.LocalPriceDetails;
464
- }
465
-
466
- interface PriceDetail {
467
- readonly key: io.flow.price.v0.enums.PriceDetailKey;
468
- readonly components: io.flow.price.v0.models.PriceDetailComponent[];
469
- readonly amount: number;
470
- readonly label: string;
471
- readonly name?: string;
472
- readonly basis?: number;
473
- }
474
-
475
- interface PriceDetailComponent {
476
- readonly key: io.flow.price.v0.enums.PriceDetailComponentKey;
477
- readonly amount: number;
478
- readonly label: string;
479
- readonly name?: string;
480
- }
481
-
482
- interface PriceDetails {
483
- readonly currency: string;
484
- readonly item_price: io.flow.price.v0.models.PriceDetail;
485
- readonly margins: io.flow.price.v0.models.PriceDetail;
486
- readonly vat: io.flow.price.v0.models.PriceDetail;
487
- readonly duty: io.flow.price.v0.models.PriceDetail;
488
- readonly rounding: io.flow.price.v0.models.PriceDetail;
489
- readonly price: io.flow.common.v0.models.Price;
490
- readonly total: io.flow.common.v0.models.Price;
491
- readonly adjustment?: io.flow.price.v0.models.PriceDetail;
492
- }
493
-
494
- interface PriceEquation {
495
- readonly contracted_rate: number;
496
- readonly rate: number;
497
- readonly pricing: io.flow.price.v0.models.Pricing;
498
- readonly base_price: number;
499
- readonly discount: number;
500
- readonly fixed_margin: number;
501
- readonly percent_margin: number;
502
- readonly insurance: number;
503
- readonly freight: number;
504
- readonly duty?: io.flow.price.v0.models.Duty;
505
- readonly tax?: io.flow.price.v0.models.Tax;
506
- readonly percent_sales_margin: number;
507
- }
508
-
509
- interface Pricing {
510
- readonly vat: io.flow.price.v0.enums.PricingLevySetting;
511
- readonly duty: io.flow.price.v0.enums.PricingLevySetting;
512
- readonly rounding?: io.flow.common.v0.models.Rounding;
513
- }
514
-
515
- interface Tax {
516
- readonly name: string;
517
- readonly rate: number;
518
- readonly components: io.flow.price.v0.enums.LevyComponent[];
519
- readonly deminimis?: io.flow.price.v0.unions.Deminimis;
520
- }
521
- }
522
-
523
- declare namespace io.flow.price.v0.unions {
524
- type Deminimis =
525
- | io.flow.price.v0.models.DeminimisSimple
526
- | io.flow.price.v0.models.DeminimisPerItem;
527
- }
528
-
529
332
  declare namespace io.flow.channel.v0.enums {
530
333
  type ChannelCurrencyCapability =
531
334
  | 'payment_authorizations'
@@ -1399,6 +1202,7 @@ declare namespace io.flow.payment.v0.enums {
1399
1202
  | 'partial_reversal_not_supported'
1400
1203
  | 'unknown';
1401
1204
  type ReversalStatus = 'pending' | 'processed' | 'failed';
1205
+ type StoredMethodUsageStep = 'initial' | 'subsequent';
1402
1206
  type ThreeDSecureCode = 'verified' | 'not_verified' | 'failed';
1403
1207
  type ThreedsTwoChallengeViewport =
1404
1208
  | 'xxx_small'
@@ -1655,6 +1459,8 @@ declare namespace io.flow.payment.v0.models {
1655
1459
  readonly expires_at?: string;
1656
1460
  readonly base?: io.flow.common.v0.models.Money;
1657
1461
  readonly processor?: io.flow.payment.v0.unions.ExpandablePaymentProcessor;
1462
+ readonly stored_method_usage_step?: io.flow.payment.v0.enums.StoredMethodUsageStep;
1463
+ readonly authorized_at?: string;
1658
1464
  }
1659
1465
 
1660
1466
  interface CardBrowserActionConfiguration {
@@ -1935,6 +1741,7 @@ declare namespace io.flow.payment.v0.models {
1935
1741
  readonly base?: io.flow.common.v0.models.Money;
1936
1742
  readonly processor?: io.flow.payment.v0.unions.ExpandablePaymentProcessor;
1937
1743
  readonly confirmation_details?: io.flow.payment.v0.unions.ConfirmationDetails;
1744
+ readonly authorized_at?: string;
1938
1745
  }
1939
1746
 
1940
1747
  interface OnlinePaymentAuthorizationForm {
@@ -2431,6 +2238,7 @@ declare namespace io.flow.field.validation.v0.unions {
2431
2238
 
2432
2239
  declare namespace io.flow.stripe.v0.enums {
2433
2240
  type AccountType = 'platform' | 'custom' | 'standard' | 'express';
2241
+ type ApplePayType = 'apple_pay' | 'apple_pay_later';
2434
2242
  type CancellationReason =
2435
2243
  | 'abandoned'
2436
2244
  | 'automatic'
@@ -2461,6 +2269,18 @@ declare namespace io.flow.stripe.v0.enums {
2461
2269
  | 'missing'
2462
2270
  | 'processing_error';
2463
2271
  type CardFundingType = 'credit' | 'debit' | 'prepaid' | 'unknown';
2272
+ type CardNetwork =
2273
+ | 'amex'
2274
+ | 'cartes_bancaires'
2275
+ | 'diners'
2276
+ | 'discover'
2277
+ | 'eftpos_au'
2278
+ | 'interac'
2279
+ | 'jcb'
2280
+ | 'mastercard'
2281
+ | 'unionpay'
2282
+ | 'visa'
2283
+ | 'unknown';
2464
2284
  type CheckOutcome = 'pass' | 'fail' | 'unavailable' | 'unchecked';
2465
2285
  type CodeVerificationStatus = 'pending' | 'succeeded' | 'failed';
2466
2286
  type ConfirmationMethod = 'automatic' | 'manual';
@@ -2552,6 +2372,11 @@ declare namespace io.flow.stripe.v0.enums {
2552
2372
  | 'requires_confirmation'
2553
2373
  | 'requires_payment_method'
2554
2374
  | 'succeeded';
2375
+ type PaymentMethodCategoryKlarna =
2376
+ | 'pay_later'
2377
+ | 'pay_now'
2378
+ | 'pay_with_financing'
2379
+ | 'pay_in_installments';
2555
2380
  type PaymentMethodType = 'card' | 'card_present';
2556
2381
  type PaymentOutcomeType =
2557
2382
  | 'authorized'
@@ -2560,6 +2385,51 @@ declare namespace io.flow.stripe.v0.enums {
2560
2385
  | 'blocked'
2561
2386
  | 'invalid';
2562
2387
  type PaymentStatus = 'succeeded' | 'pending' | 'failed';
2388
+ type PreferredLocaleKlarna =
2389
+ | 'de-AT'
2390
+ | 'en-AT'
2391
+ | 'nl-BE'
2392
+ | 'fr-BE'
2393
+ | 'en-BE'
2394
+ | 'de-DE'
2395
+ | 'en-DE'
2396
+ | 'da-DK'
2397
+ | 'en-DK'
2398
+ | 'es-ES'
2399
+ | 'en-ES'
2400
+ | 'fi-FI'
2401
+ | 'sv-FI'
2402
+ | 'en-FI'
2403
+ | 'en-GB'
2404
+ | 'en-IE'
2405
+ | 'it-IT'
2406
+ | 'en-IT'
2407
+ | 'nl-NL'
2408
+ | 'en-NL'
2409
+ | 'nb-NO'
2410
+ | 'en-NO'
2411
+ | 'sv-SE'
2412
+ | 'en-SE'
2413
+ | 'en-US'
2414
+ | 'es-US'
2415
+ | 'fr-FR'
2416
+ | 'en-FR'
2417
+ | 'cs-CZ'
2418
+ | 'en-CZ'
2419
+ | 'el-GR'
2420
+ | 'en-GR'
2421
+ | 'en-AU'
2422
+ | 'en-NZ'
2423
+ | 'en-CA'
2424
+ | 'fr-CA'
2425
+ | 'pl-PL'
2426
+ | 'en-PL'
2427
+ | 'pt-PT'
2428
+ | 'en-PT'
2429
+ | 'de-CH'
2430
+ | 'fr-CH'
2431
+ | 'it-CH'
2432
+ | 'en-CH';
2563
2433
  type RefundFailureReason =
2564
2434
  | 'lost_or_stolen_card'
2565
2435
  | 'expired_or_canceled_card'
@@ -2601,6 +2471,22 @@ declare namespace io.flow.stripe.v0.enums {
2601
2471
  | 'recommended'
2602
2472
  | 'optional'
2603
2473
  | 'not_supported';
2474
+ type ThreeDsAuthenticationFlow = 'challenge' | 'frictionless';
2475
+ type ThreeDsResult =
2476
+ | 'authenticated'
2477
+ | 'attempt_acknowledged'
2478
+ | 'exempted'
2479
+ | 'not_supported'
2480
+ | 'failed'
2481
+ | 'processing_error';
2482
+ type ThreeDsResultReason =
2483
+ | 'card_not_enrolled'
2484
+ | 'network_not_supported'
2485
+ | 'abandoned'
2486
+ | 'canceled'
2487
+ | 'rejected'
2488
+ | 'bypassed'
2489
+ | 'protocol_error';
2604
2490
  type TokenType = 'account' | 'bank_account' | 'card' | 'pii';
2605
2491
  type UseStripeSdkType = 'three_d_secure_redirect' | 'stripe_3ds2_fingerprint';
2606
2492
  }
@@ -2650,6 +2536,16 @@ declare namespace io.flow.stripe.v0.models {
2650
2536
  readonly state?: string;
2651
2537
  }
2652
2538
 
2539
+ interface ApplePay {
2540
+ readonly type: 'apple_pay';
2541
+ readonly apple_pay: io.flow.stripe.v0.models.ApplePayInformation;
2542
+ readonly dynamic_last4?: string;
2543
+ }
2544
+
2545
+ interface ApplePayInformation {
2546
+ readonly type: io.flow.stripe.v0.enums.ApplePayType;
2547
+ }
2548
+
2653
2549
  interface Card {
2654
2550
  readonly id: string;
2655
2551
  readonly object: string;
@@ -2675,6 +2571,12 @@ declare namespace io.flow.stripe.v0.models {
2675
2571
  readonly tokenization_method?: string;
2676
2572
  }
2677
2573
 
2574
+ interface CardChecks {
2575
+ readonly address_line1_check?: io.flow.stripe.v0.enums.CheckOutcome;
2576
+ readonly address_postal_code_check?: io.flow.stripe.v0.enums.CheckOutcome;
2577
+ readonly cvc_check?: io.flow.stripe.v0.enums.CheckOutcome;
2578
+ }
2579
+
2678
2580
  interface CardRequest {
2679
2581
  readonly object: string;
2680
2582
  readonly exp_month: string;
@@ -2718,7 +2620,7 @@ declare namespace io.flow.stripe.v0.models {
2718
2620
  readonly payment_intent?: string;
2719
2621
  readonly calculated_statement_descriptor?: string;
2720
2622
  readonly statement_descriptor?: string;
2721
- readonly payment_method_details?: any /*object*/;
2623
+ readonly payment_method_details?: io.flow.stripe.v0.unions.PaymentMethodDetails;
2722
2624
  }
2723
2625
 
2724
2626
  interface ChargeDestination {
@@ -2768,7 +2670,7 @@ declare namespace io.flow.stripe.v0.models {
2768
2670
  readonly payment_intent?: string;
2769
2671
  readonly calculated_statement_descriptor?: string;
2770
2672
  readonly statement_descriptor?: string;
2771
- readonly payment_method_details?: any /*object*/;
2673
+ readonly payment_method_details?: io.flow.stripe.v0.unions.PaymentMethodDetails;
2772
2674
  }
2773
2675
 
2774
2676
  interface CodeVerification {
@@ -2825,12 +2727,29 @@ declare namespace io.flow.stripe.v0.models {
2825
2727
  readonly additional_owners?: io.flow.stripe.v0.models.Owner[];
2826
2728
  }
2827
2729
 
2730
+ interface Masterpass {
2731
+ readonly type: 'masterpass';
2732
+ readonly masterpass: io.flow.stripe.v0.models.MasterpassInformation;
2733
+ readonly dynamic_last4?: string;
2734
+ }
2735
+
2736
+ interface MasterpassInformation {
2737
+ readonly billing_address?: io.flow.stripe.v0.models.Address;
2738
+ readonly email?: string;
2739
+ readonly name?: string;
2740
+ readonly shipping_address?: io.flow.stripe.v0.models.Address;
2741
+ }
2742
+
2828
2743
  interface Metadata {
2829
2744
  readonly order_number?: string;
2830
2745
  readonly authorization_id?: string;
2831
2746
  readonly organization_id?: string;
2832
2747
  }
2833
2748
 
2749
+ interface NetworkTokenUsed {
2750
+ readonly used?: boolean;
2751
+ }
2752
+
2834
2753
  interface NextAction {
2835
2754
  readonly type: io.flow.stripe.v0.enums.NextActionType;
2836
2755
  readonly use_stripe_sdk?: any /*object*/;
@@ -3012,28 +2931,71 @@ declare namespace io.flow.stripe.v0.models {
3012
2931
  readonly phone?: string;
3013
2932
  }
3014
2933
 
3015
- interface PaymentMethodForm {
3016
- readonly type: io.flow.stripe.v0.enums.PaymentMethodType;
3017
- readonly billing_details?: io.flow.stripe.v0.models.PaymentMethodBillingDetails;
3018
- readonly card?: io.flow.stripe.v0.models.SourceCardRequest;
3019
- }
3020
-
3021
- interface PaymentMethodOptions {
3022
- readonly card?: io.flow.stripe.v0.models.PaymentMethodOptionsCard;
3023
- }
3024
-
3025
- interface PaymentMethodOptionsCard {
3026
- readonly request_three_d_secure?: io.flow.stripe.v0.enums.RequestThreeDSecureType;
2934
+ interface PaymentMethodDetailsCard {
2935
+ readonly type: 'card';
2936
+ readonly card: io.flow.stripe.v0.models.PaymentMethodDetailsCardInformation;
3027
2937
  }
3028
2938
 
3029
- interface PaymentOutcome {
3030
- readonly network_status: io.flow.stripe.v0.enums.NetworkStatus;
2939
+ interface PaymentMethodDetailsCardInformation {
2940
+ readonly brand?: string;
2941
+ readonly checks?: io.flow.stripe.v0.models.CardChecks;
2942
+ readonly country?: string;
2943
+ readonly exp_month?: number;
2944
+ readonly exp_year?: number;
2945
+ readonly fingerprint?: string;
2946
+ readonly funding?: io.flow.stripe.v0.enums.CardFundingType;
2947
+ readonly installments?: io.flow.stripe.v0.models.Plan;
2948
+ readonly last4?: string;
2949
+ readonly mandate?: string;
2950
+ readonly network?: io.flow.stripe.v0.enums.CardNetwork;
2951
+ readonly network_token?: io.flow.stripe.v0.models.NetworkTokenUsed;
2952
+ readonly three_d_secure?: io.flow.stripe.v0.models.ThreeDSecureCharge;
2953
+ readonly capture_before?: number;
2954
+ readonly description?: string;
2955
+ readonly iin?: string;
2956
+ readonly issuer?: string;
2957
+ readonly wallet?: io.flow.stripe.v0.unions.CardWallet;
2958
+ readonly network_transaction_id?: string;
2959
+ }
2960
+
2961
+ interface PaymentMethodDetailsKlarna {
2962
+ readonly type: 'klarna';
2963
+ readonly klarna: io.flow.stripe.v0.models.PaymentMethodDetailsKlarnaInformation;
2964
+ }
2965
+
2966
+ interface PaymentMethodDetailsKlarnaInformation {
2967
+ readonly payment_method_category?: io.flow.stripe.v0.enums.PaymentMethodCategoryKlarna;
2968
+ readonly preferred_locale?: io.flow.stripe.v0.enums.PreferredLocaleKlarna;
2969
+ }
2970
+
2971
+ interface PaymentMethodForm {
2972
+ readonly type: io.flow.stripe.v0.enums.PaymentMethodType;
2973
+ readonly billing_details?: io.flow.stripe.v0.models.PaymentMethodBillingDetails;
2974
+ readonly card?: io.flow.stripe.v0.models.SourceCardRequest;
2975
+ }
2976
+
2977
+ interface PaymentMethodOptions {
2978
+ readonly card?: io.flow.stripe.v0.models.PaymentMethodOptionsCard;
2979
+ }
2980
+
2981
+ interface PaymentMethodOptionsCard {
2982
+ readonly request_three_d_secure?: io.flow.stripe.v0.enums.RequestThreeDSecureType;
2983
+ }
2984
+
2985
+ interface PaymentOutcome {
2986
+ readonly network_status: io.flow.stripe.v0.enums.NetworkStatus;
3031
2987
  readonly risk_level: string;
3032
2988
  readonly seller_message: string;
3033
2989
  readonly reason?: string;
3034
2990
  readonly type?: io.flow.stripe.v0.enums.PaymentOutcomeType;
3035
2991
  }
3036
2992
 
2993
+ interface Plan {
2994
+ readonly count?: number;
2995
+ readonly interval?: string;
2996
+ readonly type?: string;
2997
+ }
2998
+
3037
2999
  interface Receiver {
3038
3000
  readonly address?: string;
3039
3001
  readonly amount_charged?: number;
@@ -3255,6 +3217,15 @@ declare namespace io.flow.stripe.v0.models {
3255
3217
  readonly customer?: string;
3256
3218
  }
3257
3219
 
3220
+ interface ThreeDSecureCharge {
3221
+ readonly authenticated?: boolean;
3222
+ readonly authentication_flow?: io.flow.stripe.v0.enums.ThreeDsAuthenticationFlow;
3223
+ readonly result?: io.flow.stripe.v0.enums.ThreeDsResult;
3224
+ readonly result_reason?: io.flow.stripe.v0.enums.ThreeDsResultReason;
3225
+ readonly succeeded?: boolean;
3226
+ readonly version?: string;
3227
+ }
3228
+
3258
3229
  interface ThreeDSecureRedirect {
3259
3230
  readonly type: io.flow.stripe.v0.enums.UseStripeSdkType;
3260
3231
  readonly stripe_js: string;
@@ -3281,6 +3252,29 @@ declare namespace io.flow.stripe.v0.models {
3281
3252
  readonly amount?: number;
3282
3253
  readonly destination?: string;
3283
3254
  }
3255
+
3256
+ interface VisaCheckout {
3257
+ readonly type: 'visa_checkout';
3258
+ readonly visa_checkout: io.flow.stripe.v0.models.VisaCheckoutInformation;
3259
+ readonly dynamic_last4?: string;
3260
+ }
3261
+
3262
+ interface VisaCheckoutInformation {
3263
+ readonly billing_address?: io.flow.stripe.v0.models.Address;
3264
+ readonly email?: string;
3265
+ readonly name?: string;
3266
+ readonly shipping_address?: io.flow.stripe.v0.models.Address;
3267
+ }
3268
+ }
3269
+
3270
+ declare namespace io.flow.stripe.v0.unions {
3271
+ type CardWallet =
3272
+ | io.flow.stripe.v0.models.Masterpass
3273
+ | io.flow.stripe.v0.models.ApplePay
3274
+ | io.flow.stripe.v0.models.VisaCheckout;
3275
+ type PaymentMethodDetails =
3276
+ | io.flow.stripe.v0.models.PaymentMethodDetailsCard
3277
+ | io.flow.stripe.v0.models.PaymentMethodDetailsKlarna;
3284
3278
  }
3285
3279
 
3286
3280
  declare namespace io.flow.customer.v0.enums {
@@ -3390,6 +3384,7 @@ declare namespace io.flow.label.v0.enums {
3390
3384
  | 'notification_requiring_crossdock'
3391
3385
  | 'autogenerated';
3392
3386
  type LabelTriggerMethod = 'autogenerated' | 'on_demand';
3387
+ type PackageDimensionsSource = 'provided' | 'dimensions_estimated';
3393
3388
  type ShipmentRecipient = 'customer' | 'return' | 'crossdock';
3394
3389
  type TrackingNumberType = 'flow' | 'carrier';
3395
3390
  }
@@ -3433,6 +3428,7 @@ declare namespace io.flow.label.v0.models {
3433
3428
  readonly order_number: string;
3434
3429
  readonly service?: string;
3435
3430
  readonly shipment_recipient?: io.flow.label.v0.enums.ShipmentRecipient;
3431
+ readonly package_dimensions_source?: io.flow.label.v0.enums.PackageDimensionsSource;
3436
3432
  }
3437
3433
 
3438
3434
  interface DetailedShippingNotificationForm {
@@ -3479,6 +3475,9 @@ declare namespace io.flow.label.v0.models {
3479
3475
  readonly carrier_tracking_number_url: string;
3480
3476
  readonly cost_estimate_source?: io.flow.label.v0.enums.CostEstimateSource;
3481
3477
  readonly cost?: io.flow.common.v0.models.Price;
3478
+ readonly delivered_duty?: io.flow.common.v0.enums.DeliveredDuty;
3479
+ readonly taxes_owed?: io.flow.common.v0.models.Money;
3480
+ readonly duties_owed?: io.flow.common.v0.models.Money;
3482
3481
  readonly destination: io.flow.fulfillment.v0.models.ShippingAddress;
3483
3482
  readonly flow_tracking_number: string;
3484
3483
  readonly flow_tracking_number_url: string;
@@ -3490,6 +3489,7 @@ declare namespace io.flow.label.v0.models {
3490
3489
  readonly return?: io.flow.label.v0.models.ShippingLabelDocument;
3491
3490
  readonly order?: io.flow.label.v0.models.LabelOrderSummary;
3492
3491
  readonly package?: io.flow.label.v0.models.ShippingLabelPackage;
3492
+ readonly package_dimension_source?: io.flow.label.v0.enums.PackageDimensionsSource;
3493
3493
  readonly order_identifier?: string;
3494
3494
  readonly fulfillment_key?: string;
3495
3495
  readonly shipment_recipient: io.flow.label.v0.enums.ShipmentRecipient;
@@ -3509,9 +3509,16 @@ declare namespace io.flow.label.v0.models {
3509
3509
  readonly required: boolean;
3510
3510
  }
3511
3511
 
3512
+ interface ShippingLabelHopCostItemizedEstimate {
3513
+ readonly units: io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelUnits;
3514
+ readonly base: io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelBase;
3515
+ readonly surcharges: io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelSurcharge[];
3516
+ }
3517
+
3512
3518
  interface ShippingLabelHopSummary {
3513
3519
  readonly lane: io.flow.label.v0.models.ShippingLabelLaneSummary;
3514
3520
  readonly cost: io.flow.common.v0.models.Money;
3521
+ readonly itemized_estimate?: io.flow.label.v0.models.ShippingLabelHopCostItemizedEstimate;
3515
3522
  }
3516
3523
 
3517
3524
  interface ShippingLabelLaneSummary {
@@ -3521,6 +3528,7 @@ declare namespace io.flow.label.v0.models {
3521
3528
 
3522
3529
  interface ShippingLabelPackage {
3523
3530
  readonly dimensions: io.flow.common.v0.models.Dimension;
3531
+ readonly volumetric_weight?: number;
3524
3532
  readonly items: io.flow.common.v0.models.LineItemForm[];
3525
3533
  readonly reference_number?: string;
3526
3534
  }
@@ -3528,6 +3536,11 @@ declare namespace io.flow.label.v0.models {
3528
3536
  interface ShippingLabelRatecardSummary {
3529
3537
  readonly id?: string;
3530
3538
  readonly ratecard_owner: io.flow.fulfillment.v0.enums.RatecardOwner;
3539
+ readonly rate_level_key?: string;
3540
+ readonly glbe_shipping_method_id?: string;
3541
+ readonly glbe_proposition_name?: string;
3542
+ readonly channel_revenue_share_percentage?: number;
3543
+ readonly shopify_grc_gid?: string;
3531
3544
  }
3532
3545
 
3533
3546
  interface ShippingLabelSummary {
@@ -4320,14 +4333,14 @@ declare namespace io.flow.external.paypal.v1.models {
4320
4333
  }
4321
4334
 
4322
4335
  interface ShippingAddress {
4323
- readonly recipient_name: string;
4336
+ readonly recipient_name?: string;
4324
4337
  readonly line1: string;
4325
4338
  readonly line2?: string;
4326
- readonly city: string;
4339
+ readonly city?: string;
4327
4340
  readonly country_code: string;
4328
- readonly postal_code: string;
4341
+ readonly postal_code?: string;
4329
4342
  readonly phone?: string;
4330
- readonly state: string;
4343
+ readonly state?: string;
4331
4344
  }
4332
4345
 
4333
4346
  interface SupportingInfo {
@@ -4897,7 +4910,7 @@ declare namespace io.flow.adyen.v0.models {
4897
4910
  readonly merchantOrderReference?: string;
4898
4911
  readonly shopperInteraction: io.flow.adyen.v0.enums.ShopperInteraction;
4899
4912
  readonly bankAccount?: io.flow.adyen.v0.models.BankAccount;
4900
- readonly additionalData?: any /*object*/;
4913
+ readonly additionalData?: io.flow.adyen.v0.models.AuthorizeRequestAdditionalData;
4901
4914
  readonly mpiData?: io.flow.adyen.v0.models.ThreeDSecureData;
4902
4915
  readonly selectedBrand?: string;
4903
4916
  readonly browserInfo?: io.flow.adyen.v0.unions.BrowserInfo;
@@ -4905,6 +4918,7 @@ declare namespace io.flow.adyen.v0.models {
4905
4918
  readonly recurringProcessingModel?: io.flow.adyen.v0.enums.RecurringProcessingModel;
4906
4919
  readonly mcc?: string;
4907
4920
  readonly metadata?: any /*object*/;
4921
+ readonly captureDelayHours?: number;
4908
4922
  }
4909
4923
 
4910
4924
  interface AuthorizeRequest3D {
@@ -4921,6 +4935,11 @@ declare namespace io.flow.adyen.v0.models {
4921
4935
  readonly threeDS2Result?: io.flow.adyen.v0.models.Threeds2Result;
4922
4936
  }
4923
4937
 
4938
+ interface AuthorizeRequestAdditionalData {
4939
+ readonly manualCapture?: boolean;
4940
+ readonly 'paywithgoogle.token'?: string;
4941
+ }
4942
+
4924
4943
  interface AuthorizeResponse {
4925
4944
  readonly pspReference: string;
4926
4945
  readonly resultCode: io.flow.adyen.v0.enums.ResultCode;
@@ -5096,6 +5115,7 @@ declare namespace io.flow.adyen.v0.models {
5096
5115
  readonly redirectToIssuerMethod?: io.flow.adyen.v0.enums.HttpRedirectMethod;
5097
5116
  readonly redirectFromIssuerMethod?: io.flow.adyen.v0.enums.HttpRedirectMethod;
5098
5117
  readonly storePaymentMethod?: boolean;
5118
+ readonly captureDelayHours?: number;
5099
5119
  }
5100
5120
 
5101
5121
  interface PaymentResponse {
@@ -5228,6 +5248,7 @@ declare namespace io.flow.adyen.v0.models {
5228
5248
  interface ThreedsAdditionalData {
5229
5249
  readonly executeThreeD?: boolean;
5230
5250
  readonly allow3DS2?: boolean;
5251
+ readonly manualCapture?: boolean;
5231
5252
  }
5232
5253
  }
5233
5254
 
@@ -5479,7 +5500,7 @@ declare namespace io.flow.shopify.external.v0.models {
5479
5500
  readonly starts_at: string;
5480
5501
  readonly ends_at?: string;
5481
5502
  readonly prerequisite_subtotal_range?: io.flow.shopify.external.v0.models.PriceRuleGreaterThanRange;
5482
- readonly prerequisite_shipping_range?: io.flow.shopify.external.v0.models.PriceRuleLessThanRange;
5503
+ readonly prerequisite_shipping_price_range?: io.flow.shopify.external.v0.models.PriceRuleLessThanRange;
5483
5504
  readonly usage_limit?: number;
5484
5505
  readonly entitled_product_ids: number[];
5485
5506
  readonly entitled_variant_ids: number[];
@@ -5489,7 +5510,7 @@ declare namespace io.flow.shopify.external.v0.models {
5489
5510
  readonly once_per_customer: boolean;
5490
5511
  readonly target_selection: io.flow.shopify.external.v0.enums.PriceRuleTargetSelection;
5491
5512
  readonly customer_selection: io.flow.shopify.external.v0.enums.PriceRuleCustomerSelection;
5492
- readonly prerequisite_saved_search_ids: number[];
5513
+ readonly customer_segment_prerequisite_ids?: number[];
5493
5514
  readonly prerequisite_customer_ids?: number[];
5494
5515
  readonly prerequisite_quantity_range?: io.flow.shopify.external.v0.models.PriceRuleGreaterThanRange;
5495
5516
  readonly prerequisite_product_ids?: number[];
@@ -6731,6 +6752,7 @@ declare namespace io.flow.shopify.markets.v0.models {
6731
6752
  readonly send_receipt?: boolean;
6732
6753
  readonly metafields?: io.flow.shopify.markets.v0.models.ShopifyOrderMetafield[];
6733
6754
  readonly merchant_of_record_app_id?: number;
6755
+ readonly total_shipping_price_set?: io.flow.shopify.markets.v0.models.ShopifyOrderMoneySet;
6734
6756
  }
6735
6757
 
6736
6758
  interface ShopifyOrderAddress {
@@ -6884,7 +6906,7 @@ declare namespace io.flow.shopify.markets.v0.models {
6884
6906
  readonly grams?: number;
6885
6907
  readonly id: number;
6886
6908
  readonly price?: string;
6887
- readonly price_set?: io.flow.shopify.markets.v0.models.ShopifyOrderMoneySet;
6909
+ readonly price_set: io.flow.shopify.markets.v0.models.ShopifyOrderMoneySet;
6888
6910
  readonly product_id?: number;
6889
6911
  readonly quantity: number;
6890
6912
  readonly requires_shipping: boolean;
@@ -6893,7 +6915,7 @@ declare namespace io.flow.shopify.markets.v0.models {
6893
6915
  readonly variant_id?: number;
6894
6916
  readonly variant_title?: string;
6895
6917
  readonly vendor?: string;
6896
- readonly name?: string;
6918
+ readonly name: string;
6897
6919
  readonly gift_card: boolean;
6898
6920
  readonly properties: io.flow.shopify.markets.v0.models.ShopifyOrderProperty[];
6899
6921
  readonly taxable: boolean;
@@ -6993,6 +7015,7 @@ declare namespace io.flow.shopify.markets.v0.models {
6993
7015
  readonly carrier_identifier?: string;
6994
7016
  readonly price_set: io.flow.shopify.markets.v0.models.ShopifyOrderMoneySet;
6995
7017
  readonly discounted_price_set: io.flow.shopify.markets.v0.models.ShopifyOrderMoneySet;
7018
+ readonly discount_allocations?: io.flow.shopify.markets.v0.models.ShopifyOrderDiscountAllocation[];
6996
7019
  }
6997
7020
 
6998
7021
  interface ShopifyOrderTaxLine {
@@ -7022,8 +7045,8 @@ declare namespace io.flow.shopify.markets.v0.models {
7022
7045
  readonly user_id?: number;
7023
7046
  }
7024
7047
 
7025
- interface ShopifyOrderUpdateShippingAddressForm {
7026
- readonly order: io.flow.shopify.markets.v0.models.ShopifyUpdateShippingAddress;
7048
+ interface ShopifyOrderUpdateForm {
7049
+ readonly order: io.flow.shopify.markets.v0.models.ShopifyUpdateOrder;
7027
7050
  }
7028
7051
 
7029
7052
  interface ShopifyOrderWrapper {
@@ -7082,9 +7105,10 @@ declare namespace io.flow.shopify.markets.v0.models {
7082
7105
  readonly gateway: string;
7083
7106
  }
7084
7107
 
7085
- interface ShopifyUpdateShippingAddress {
7108
+ interface ShopifyUpdateOrder {
7086
7109
  readonly id: number;
7087
- readonly shipping_address: io.flow.shopify.markets.v0.models.ShopifyOrderAddress;
7110
+ readonly shipping_address?: io.flow.shopify.markets.v0.models.ShopifyOrderAddress;
7111
+ readonly note_attributes?: io.flow.shopify.markets.v0.models.ShopifyOrderAttribute[];
7088
7112
  }
7089
7113
 
7090
7114
  interface ShopifyWebhookCustomersDataRequest {
@@ -7400,7 +7424,8 @@ declare namespace io.flow.payment.gateway.v0.enums {
7400
7424
  | 'order_restricted_goods'
7401
7425
  | 'order_unsupported_destination'
7402
7426
  | 'order_missing_information'
7403
- | 'order_domestic';
7427
+ | 'order_domestic'
7428
+ | 'order_mismatched_currencies';
7404
7429
  type PaymentRequestReviewStatus = 'pending' | 'approved' | 'rejected';
7405
7430
  type PaymentStatus =
7406
7431
  | 'requires_payment_method'
@@ -10143,12 +10168,22 @@ declare namespace io.flow.ratecard.v0.models {
10143
10168
  readonly ratecard: io.flow.ratecard.v0.models.RatecardSummary;
10144
10169
  }
10145
10170
 
10146
- interface OversizedShipmentRatecardFee {
10147
- readonly discriminator: 'oversized_shipment_ratecard_fee';
10148
- readonly weight_threshold: number;
10149
- readonly weight_unit: io.flow.common.v0.enums.UnitOfMeasurement;
10150
- readonly margin?: number;
10151
- readonly amount?: number;
10171
+ interface OversizePieceSurchargeRatecardFee {
10172
+ readonly discriminator: 'oversize_piece_surcharge_ratecard_fee';
10173
+ readonly dimensional_threshold?: number;
10174
+ readonly dimensional_unit?: io.flow.common.v0.enums.UnitOfMeasurement;
10175
+ readonly weight_threshold?: number;
10176
+ readonly weight_unit?: io.flow.common.v0.enums.UnitOfMeasurement;
10177
+ readonly amount: io.flow.common.v0.models.Money;
10178
+ }
10179
+
10180
+ interface OversizePieceSurchargeServiceFee {
10181
+ readonly discriminator: 'oversize_piece_surcharge_service_fee';
10182
+ readonly dimensional_threshold?: number;
10183
+ readonly dimensional_unit?: io.flow.common.v0.enums.UnitOfMeasurement;
10184
+ readonly weight_threshold?: number;
10185
+ readonly weight_unit?: io.flow.common.v0.enums.UnitOfMeasurement;
10186
+ readonly amount: io.flow.common.v0.models.Money;
10152
10187
  }
10153
10188
 
10154
10189
  interface PeakSurchargeByWeightServiceFee {
@@ -10177,12 +10212,16 @@ declare namespace io.flow.ratecard.v0.models {
10177
10212
  interface Ratecard {
10178
10213
  readonly id: string;
10179
10214
  readonly number: string;
10215
+ readonly rate_level_key?: string;
10180
10216
  readonly direction: io.flow.label.v0.enums.Direction;
10181
10217
  readonly effective_at: string;
10182
10218
  readonly origination_zones: io.flow.common.v0.models.Zone[];
10183
10219
  readonly service: io.flow.ratecard.v0.models.RatecardServiceSummary;
10184
10220
  readonly published_at?: string;
10185
10221
  readonly ratecard_owner: io.flow.fulfillment.v0.enums.RatecardOwner;
10222
+ readonly glbe_shipping_method_id?: string;
10223
+ readonly glbe_proposition_name?: string;
10224
+ readonly channel_revenue_share_percentage?: number;
10186
10225
  }
10187
10226
 
10188
10227
  interface RatecardCarrierSummary {
@@ -10253,6 +10292,10 @@ declare namespace io.flow.ratecard.v0.models {
10253
10292
  readonly dimensional_weight?: io.flow.common.v0.models.Measurement;
10254
10293
  readonly gravitational_weight?: io.flow.common.v0.models.Measurement;
10255
10294
  readonly ratecard_id?: string;
10295
+ readonly glbe_shipping_method_id?: string;
10296
+ readonly glbe_proposition_name?: string;
10297
+ readonly channel_revenue_share_percentage?: number;
10298
+ readonly rate_level_key?: string;
10256
10299
  readonly line_items?: io.flow.common.v0.models.LineItemForm[];
10257
10300
  }
10258
10301
 
@@ -10262,7 +10305,12 @@ declare namespace io.flow.ratecard.v0.models {
10262
10305
  readonly origination_zones: io.flow.common.v0.models.Zone[];
10263
10306
  readonly service: string;
10264
10307
  readonly number?: string;
10308
+ readonly rate_level_key?: string;
10265
10309
  readonly ratecard_owner?: io.flow.fulfillment.v0.enums.RatecardOwner;
10310
+ readonly glbe_shipping_method_id?: string;
10311
+ readonly glbe_proposition_name?: string;
10312
+ readonly channel_revenue_share_percentage?: number;
10313
+ readonly data?: Record<string, string>;
10266
10314
  }
10267
10315
 
10268
10316
  interface RatecardLane {
@@ -10399,7 +10447,7 @@ declare namespace io.flow.ratecard.v0.unions {
10399
10447
  type RatecardFee =
10400
10448
  | io.flow.ratecard.v0.models.DdpRatecardFee
10401
10449
  | io.flow.ratecard.v0.models.FuelSurchargeRatecardFee
10402
- | io.flow.ratecard.v0.models.OversizedShipmentRatecardFee
10450
+ | io.flow.ratecard.v0.models.OversizePieceSurchargeRatecardFee
10403
10451
  | io.flow.ratecard.v0.models.ReturnPackageRatecardFee
10404
10452
  | io.flow.ratecard.v0.models.CrossdockRatecardFee
10405
10453
  | io.flow.ratecard.v0.models.RemoteAreaRatecardFee
@@ -10413,7 +10461,8 @@ declare namespace io.flow.ratecard.v0.unions {
10413
10461
  | io.flow.ratecard.v0.models.EmergencySituationSurchargeServiceFee
10414
10462
  | io.flow.ratecard.v0.models.PeakSurchargeServiceFee
10415
10463
  | io.flow.ratecard.v0.models.PeakSurchargeByWeightServiceFee
10416
- | io.flow.ratecard.v0.models.DutiesTaxesPaidSurchargeServiceFee;
10464
+ | io.flow.ratecard.v0.models.DutiesTaxesPaidSurchargeServiceFee
10465
+ | io.flow.ratecard.v0.models.OversizePieceSurchargeServiceFee;
10417
10466
  }
10418
10467
 
10419
10468
  declare namespace io.flow.token.v0.models {
@@ -10706,6 +10755,386 @@ declare namespace io.flow.crypto.v0.models {
10706
10755
  }
10707
10756
  }
10708
10757
 
10758
+ declare namespace io.flow.error.v0.enums {
10759
+ type GenericErrorCode = 'generic_error' | 'client_error' | 'server_error';
10760
+ }
10761
+
10762
+ declare namespace io.flow.error.v0.models {
10763
+ interface GenericError {
10764
+ readonly code: io.flow.error.v0.enums.GenericErrorCode;
10765
+ readonly messages: string[];
10766
+ }
10767
+ }
10768
+
10769
+ declare namespace io.flow.billing.RESERVED_WORD_true.up.v0.enums {
10770
+ type TrueUpSurchargeType =
10771
+ | 'fuel'
10772
+ | 'remote_area'
10773
+ | 'oversize'
10774
+ | 'duties_paid'
10775
+ | 'emergency'
10776
+ | 'peak';
10777
+ type WeightSelection = 'dead' | 'dimensional';
10778
+ }
10779
+
10780
+ declare namespace io.flow.billing.RESERVED_WORD_true.up.v0.models {
10781
+ interface LabelBase {
10782
+ readonly amount: number;
10783
+ readonly weight: number;
10784
+ }
10785
+
10786
+ interface LabelDestination {
10787
+ readonly country: string;
10788
+ }
10789
+
10790
+ interface LabelInvoiceRequest {
10791
+ readonly id: string;
10792
+ readonly label: io.flow.billing.RESERVED_WORD_true.up.v0.models.TrueUpLabelSummary;
10793
+ readonly units: io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelUnits;
10794
+ readonly base: io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelBase;
10795
+ readonly surcharges: io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelSurcharge[];
10796
+ readonly total: number;
10797
+ readonly destination: io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelDestination;
10798
+ readonly metadata: io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelMetadata;
10799
+ }
10800
+
10801
+ interface LabelMetadata {
10802
+ readonly ratecard: io.flow.billing.RESERVED_WORD_true.up.v0.models.MetadataRatecard;
10803
+ readonly weights: io.flow.billing.RESERVED_WORD_true.up.v0.models.MetadataWeights;
10804
+ }
10805
+
10806
+ interface LabelSurcharge {
10807
+ readonly amount: number;
10808
+ readonly type: io.flow.billing.RESERVED_WORD_true.up.v0.enums.TrueUpSurchargeType;
10809
+ readonly detail: io.flow.billing.RESERVED_WORD_true.up.v0.unions.LabelSurchargeDetail;
10810
+ }
10811
+
10812
+ interface LabelSurchargeDetailFlat {
10813
+ readonly discriminator: 'flat';
10814
+ readonly placeholder?: string;
10815
+ }
10816
+
10817
+ interface LabelSurchargeDetailPerWeightUnit {
10818
+ readonly discriminator: 'per_weight_unit';
10819
+ readonly fee: number;
10820
+ }
10821
+
10822
+ interface LabelSurchargeDetailPercentage {
10823
+ readonly discriminator: 'percentage';
10824
+ readonly percentage: number;
10825
+ }
10826
+
10827
+ interface LabelUnits {
10828
+ readonly currency: string;
10829
+ readonly weight: io.flow.units.v0.enums.UnitOfWeight;
10830
+ readonly length: io.flow.units.v0.enums.UnitOfLength;
10831
+ }
10832
+
10833
+ interface MetadataProposition {
10834
+ readonly shipping_method: io.flow.billing.RESERVED_WORD_true.up.v0.models.ShippingMethodReference;
10835
+ readonly name: string;
10836
+ }
10837
+
10838
+ interface MetadataRatecard {
10839
+ readonly id: string;
10840
+ readonly proposition: io.flow.billing.RESERVED_WORD_true.up.v0.models.MetadataProposition;
10841
+ }
10842
+
10843
+ interface MetadataWeights {
10844
+ readonly selected: io.flow.billing.RESERVED_WORD_true.up.v0.enums.WeightSelection;
10845
+ readonly dead?: io.flow.billing.RESERVED_WORD_true.up.v0.models.WeightsDead;
10846
+ readonly dimensional?: io.flow.billing.RESERVED_WORD_true.up.v0.models.WeightsDimensional;
10847
+ }
10848
+
10849
+ interface ShippingMethodReference {
10850
+ readonly id: string;
10851
+ }
10852
+
10853
+ interface TrueUpLabelSummary {
10854
+ readonly id: string;
10855
+ readonly carrier_service_id: string;
10856
+ readonly carrier_tracking_number: string;
10857
+ readonly flow_tracking_number: string;
10858
+ readonly created_at: string;
10859
+ }
10860
+
10861
+ interface WeightsDead {
10862
+ readonly weight: number;
10863
+ }
10864
+
10865
+ interface WeightsDimensional {
10866
+ readonly weight: number;
10867
+ readonly length: number;
10868
+ readonly width: number;
10869
+ readonly height: number;
10870
+ }
10871
+ }
10872
+
10873
+ declare namespace io.flow.billing.RESERVED_WORD_true.up.v0.unions {
10874
+ type LabelSurchargeDetail =
10875
+ | io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelSurchargeDetailFlat
10876
+ | io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelSurchargeDetailPercentage
10877
+ | io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelSurchargeDetailPerWeightUnit;
10878
+ }
10879
+
10880
+ declare namespace io.flow.shopify.merchant.config.v0.models {
10881
+ interface Company {
10882
+ readonly discriminator: 'company';
10883
+ readonly legal_name: string;
10884
+ readonly incorporation_country: string;
10885
+ readonly incorporation_jurisdiction: string;
10886
+ readonly tax_registration_number: string;
10887
+ }
10888
+
10889
+ interface CountryOfOrigin {
10890
+ readonly country: io.flow.reference.v0.models.Country;
10891
+ }
10892
+
10893
+ interface CountryOfOriginForm {
10894
+ readonly country: string;
10895
+ }
10896
+
10897
+ interface Individual {
10898
+ readonly discriminator: 'individual';
10899
+ readonly legal_name: string;
10900
+ readonly tax_registration_number?: string;
10901
+ readonly date_of_birth: string;
10902
+ }
10903
+
10904
+ interface KnowYourBusinessUsa {
10905
+ readonly discriminator: 'know_your_business_usa';
10906
+ readonly id: string;
10907
+ readonly organization_id: string;
10908
+ readonly shop?: io.flow.merchant.onboarding.v0.models.Shop;
10909
+ readonly primary_entity: io.flow.shopify.merchant.config.v0.unions.Entity;
10910
+ readonly parent_company?: io.flow.shopify.merchant.config.v0.models.Company;
10911
+ readonly ultimate_parent_company?: io.flow.shopify.merchant.config.v0.models.Company;
10912
+ readonly ultimate_beneficiary_owner: io.flow.shopify.merchant.config.v0.models.Individual;
10913
+ readonly business_url: string;
10914
+ readonly business_address: io.flow.common.v0.models.Address;
10915
+ }
10916
+
10917
+ interface KnowYourBusinessUsaForm {
10918
+ readonly discriminator: 'know_your_business_usa_form';
10919
+ readonly primary_entity: io.flow.shopify.merchant.config.v0.unions.Entity;
10920
+ readonly parent_company?: io.flow.shopify.merchant.config.v0.models.Company;
10921
+ readonly ultimate_parent_company?: io.flow.shopify.merchant.config.v0.models.Company;
10922
+ readonly ultimate_beneficiary_owner: io.flow.shopify.merchant.config.v0.models.Individual;
10923
+ readonly business_url: string;
10924
+ readonly business_address: io.flow.common.v0.models.Address;
10925
+ }
10926
+
10927
+ interface PackageDimensions {
10928
+ readonly dimensions: io.flow.common.v0.models.Dimension[];
10929
+ }
10930
+
10931
+ interface PackageDimensionsForm {
10932
+ readonly dimensions: io.flow.common.v0.models.Dimension[];
10933
+ }
10934
+ }
10935
+
10936
+ declare namespace io.flow.shopify.merchant.config.v0.unions {
10937
+ type Entity =
10938
+ | io.flow.shopify.merchant.config.v0.models.Company
10939
+ | io.flow.shopify.merchant.config.v0.models.Individual;
10940
+ type KnowYourBusiness =
10941
+ io.flow.shopify.merchant.config.v0.models.KnowYourBusinessUsa;
10942
+ type KnowYourBusinessForm =
10943
+ io.flow.shopify.merchant.config.v0.models.KnowYourBusinessUsaForm;
10944
+ }
10945
+
10946
+ declare namespace io.flow.price.v0.enums {
10947
+ type LevyComponent = 'goods' | 'duty' | 'insurance' | 'freight' | 'vat';
10948
+ type LevyStrategy = 'minimum' | 'average' | 'maximum';
10949
+ type PriceAccuracy = 'calculated' | 'estimated_from_partial_destination';
10950
+ type PriceDetailComponentKey =
10951
+ | 'base_price'
10952
+ | 'discount'
10953
+ | 'currency_margin'
10954
+ | 'percent_item_margin'
10955
+ | 'fixed_item_margin'
10956
+ | 'duties_item_price'
10957
+ | 'duties_added_margin'
10958
+ | 'duties_rounding'
10959
+ | 'duties_deminimis'
10960
+ | 'vat_item_price'
10961
+ | 'vat_added_margin'
10962
+ | 'vat_rounding'
10963
+ | 'vat_duties_item_price'
10964
+ | 'vat_duties_added_margin'
10965
+ | 'vat_duties_rounding'
10966
+ | 'vat_deminimis'
10967
+ | 'item_price_percent_sales_margin'
10968
+ | 'margins_percent_sales_margin'
10969
+ | 'rounding_percent_sales_margin'
10970
+ | 'vat_percent_sales_margin'
10971
+ | 'vat_duty_percent_sales_margin'
10972
+ | 'duty_percent_sales_margin';
10973
+ type PriceDetailKey =
10974
+ | 'item_price'
10975
+ | 'margins'
10976
+ | 'vat'
10977
+ | 'duty'
10978
+ | 'rounding'
10979
+ | 'adjustment';
10980
+ type PricingLevySetting = 'included' | 'displayed' | 'ignored';
10981
+ }
10982
+
10983
+ declare namespace io.flow.price.v0.models {
10984
+ interface CurrencyFormat {
10985
+ readonly symbol: io.flow.common.v0.enums.CurrencySymbolFormat;
10986
+ readonly label_formatters: io.flow.common.v0.enums.CurrencyLabelFormatter[];
10987
+ }
10988
+
10989
+ interface DeminimisPerItem {
10990
+ readonly discriminator: 'deminimis_per_item';
10991
+ readonly currency: string;
10992
+ readonly minimum?: number;
10993
+ readonly maximum?: number;
10994
+ }
10995
+
10996
+ interface DeminimisSimple {
10997
+ readonly discriminator: 'deminimis_simple';
10998
+ readonly value?: number;
10999
+ readonly currency: string;
11000
+ readonly components: io.flow.price.v0.enums.LevyComponent[];
11001
+ readonly minimum?: number;
11002
+ }
11003
+
11004
+ interface Duty {
11005
+ readonly rate: number;
11006
+ readonly components: io.flow.price.v0.enums.LevyComponent[];
11007
+ readonly deminimis?: io.flow.price.v0.unions.Deminimis;
11008
+ readonly name?: string;
11009
+ }
11010
+
11011
+ interface LocalPriceDetails {
11012
+ readonly base: io.flow.price.v0.models.PriceDetails;
11013
+ readonly local: io.flow.price.v0.models.PriceDetails;
11014
+ readonly discount?: io.flow.price.v0.models.PriceDetail;
11015
+ readonly local_before_discount?: io.flow.price.v0.models.PriceDetail;
11016
+ }
11017
+
11018
+ interface PriceBook {
11019
+ readonly id: string;
11020
+ readonly key: string;
11021
+ readonly currency: string;
11022
+ readonly name: string;
11023
+ readonly includes: io.flow.common.v0.models.IncludedLevies;
11024
+ readonly status: io.flow.common.v0.enums.PriceBookStatus;
11025
+ }
11026
+
11027
+ interface PriceBookForm {
11028
+ readonly currency: string;
11029
+ readonly name: string;
11030
+ readonly includes: io.flow.common.v0.enums.IncludedLevyKey;
11031
+ readonly status?: io.flow.common.v0.enums.PriceBookStatus;
11032
+ }
11033
+
11034
+ interface PriceBookItem {
11035
+ readonly id: string;
11036
+ readonly key: string;
11037
+ readonly price_book: io.flow.price.v0.models.PriceBookReference;
11038
+ readonly price: io.flow.common.v0.models.Price;
11039
+ readonly item_number: string;
11040
+ readonly schedule: io.flow.price.v0.models.PriceBookItemSchedule;
11041
+ readonly item_attributes?: Record<string, string>;
11042
+ }
11043
+
11044
+ interface PriceBookItemForm {
11045
+ readonly price_book_key: string;
11046
+ readonly item_number: string;
11047
+ readonly amount: number;
11048
+ readonly schedule?: io.flow.price.v0.models.PriceBookItemSchedule;
11049
+ readonly item_attributes?: Record<string, string>;
11050
+ }
11051
+
11052
+ interface PriceBookItemQueryForm {
11053
+ readonly price_book_key: string;
11054
+ readonly item_query: string;
11055
+ readonly amount: number;
11056
+ readonly schedule?: io.flow.price.v0.models.PriceBookItemSchedule;
11057
+ readonly item_attributes?: Record<string, string>;
11058
+ }
11059
+
11060
+ interface PriceBookItemSchedule {
11061
+ readonly starts_at: string;
11062
+ readonly ends_at?: string;
11063
+ }
11064
+
11065
+ interface PriceBookReference {
11066
+ readonly id: string;
11067
+ readonly key: string;
11068
+ }
11069
+
11070
+ interface PriceCheck {
11071
+ readonly display: io.flow.price.v0.models.LocalPriceDetails;
11072
+ readonly final: io.flow.price.v0.models.LocalPriceDetails;
11073
+ }
11074
+
11075
+ interface PriceDetail {
11076
+ readonly key: io.flow.price.v0.enums.PriceDetailKey;
11077
+ readonly components: io.flow.price.v0.models.PriceDetailComponent[];
11078
+ readonly amount: number;
11079
+ readonly label: string;
11080
+ readonly name?: string;
11081
+ readonly basis?: number;
11082
+ }
11083
+
11084
+ interface PriceDetailComponent {
11085
+ readonly key: io.flow.price.v0.enums.PriceDetailComponentKey;
11086
+ readonly amount: number;
11087
+ readonly label: string;
11088
+ readonly name?: string;
11089
+ }
11090
+
11091
+ interface PriceDetails {
11092
+ readonly currency: string;
11093
+ readonly item_price: io.flow.price.v0.models.PriceDetail;
11094
+ readonly margins: io.flow.price.v0.models.PriceDetail;
11095
+ readonly vat: io.flow.price.v0.models.PriceDetail;
11096
+ readonly duty: io.flow.price.v0.models.PriceDetail;
11097
+ readonly rounding: io.flow.price.v0.models.PriceDetail;
11098
+ readonly price: io.flow.common.v0.models.Price;
11099
+ readonly total: io.flow.common.v0.models.Price;
11100
+ readonly adjustment?: io.flow.price.v0.models.PriceDetail;
11101
+ }
11102
+
11103
+ interface PriceEquation {
11104
+ readonly contracted_rate: number;
11105
+ readonly rate: number;
11106
+ readonly pricing: io.flow.price.v0.models.Pricing;
11107
+ readonly base_price: number;
11108
+ readonly discount: number;
11109
+ readonly fixed_margin: number;
11110
+ readonly percent_margin: number;
11111
+ readonly insurance: number;
11112
+ readonly freight: number;
11113
+ readonly duty?: io.flow.price.v0.models.Duty;
11114
+ readonly tax?: io.flow.price.v0.models.Tax;
11115
+ readonly percent_sales_margin: number;
11116
+ }
11117
+
11118
+ interface Pricing {
11119
+ readonly vat: io.flow.price.v0.enums.PricingLevySetting;
11120
+ readonly duty: io.flow.price.v0.enums.PricingLevySetting;
11121
+ readonly rounding?: io.flow.common.v0.models.Rounding;
11122
+ }
11123
+
11124
+ interface Tax {
11125
+ readonly name: string;
11126
+ readonly rate: number;
11127
+ readonly components: io.flow.price.v0.enums.LevyComponent[];
11128
+ readonly deminimis?: io.flow.price.v0.unions.Deminimis;
11129
+ }
11130
+ }
11131
+
11132
+ declare namespace io.flow.price.v0.unions {
11133
+ type Deminimis =
11134
+ | io.flow.price.v0.models.DeminimisSimple
11135
+ | io.flow.price.v0.models.DeminimisPerItem;
11136
+ }
11137
+
10709
11138
  declare namespace io.flow.tracking.v0.enums {
10710
11139
  type TrackingStatus =
10711
11140
  | 'label_created'
@@ -10735,6 +11164,7 @@ declare namespace io.flow.tracking.v0.models {
10735
11164
  readonly label?: io.flow.label.v0.models.LabelReference;
10736
11165
  readonly in_transit: io.flow.tracking.v0.models.LabelTrackingSummaryUpdate;
10737
11166
  readonly delivered?: io.flow.tracking.v0.models.LabelTrackingSummaryUpdate;
11167
+ readonly rejected?: io.flow.tracking.v0.models.LabelTrackingSummaryUpdate;
10738
11168
  }
10739
11169
 
10740
11170
  interface LabelTrackingSummaryUpdate {
@@ -10946,7 +11376,6 @@ declare namespace io.flow.merchant.onboarding.v0.models {
10946
11376
  }
10947
11377
 
10948
11378
  interface OperationsContact {
10949
- readonly full_name?: string;
10950
11379
  readonly company?: string;
10951
11380
  readonly email?: string;
10952
11381
  readonly phone?: string;
@@ -10965,7 +11394,6 @@ declare namespace io.flow.merchant.onboarding.v0.models {
10965
11394
  readonly status: io.flow.merchant.onboarding.v0.enums.OnboardingApplicationStatus;
10966
11395
  readonly company?: io.flow.merchant.onboarding.v0.models.MerchantInfo;
10967
11396
  readonly indirect_tax?: io.flow.merchant.onboarding.v0.models.IndirectTax;
10968
- readonly parent_company?: io.flow.merchant.onboarding.v0.models.MerchantInfo;
10969
11397
  readonly beneficiary?: string;
10970
11398
  readonly ultimate_beneficiary_owner?: io.flow.merchant.onboarding.v0.models.UltimateBeneficiaryOwner;
10971
11399
  readonly business_url?: string;
@@ -10975,31 +11403,30 @@ declare namespace io.flow.merchant.onboarding.v0.models {
10975
11403
  readonly chargeback_percentage?: number;
10976
11404
  readonly bank_account_number?: string;
10977
11405
  readonly aba_routing_transit_number?: string;
10978
- readonly trade_sectors?: io.flow.merchant.onboarding.v0.enums.OnboardingTradeSector[];
10979
11406
  readonly other_trade_sector?: string;
10980
11407
  readonly third_party_logistics_partners?: io.flow.merchant.onboarding.v0.models.ThirdPartyLogisticsPartner[];
11408
+ readonly center_contact?: io.flow.merchant.onboarding.v0.models.OperationsContact;
10981
11409
  readonly average_order_weight?: number;
10982
11410
  readonly package_dimensions?: io.flow.common.v0.models.Dimension[];
10983
11411
  readonly monthly_average?: io.flow.merchant.onboarding.v0.models.MonthlyAverage;
10984
- readonly dangerous_goods?: boolean;
10985
11412
  readonly default_country_of_origin?: string;
10986
11413
  readonly ratecard?: io.flow.ratecard.v0.models.RatecardReference;
10987
11414
  readonly rate_card: string;
10988
11415
  readonly created_at: string;
10989
11416
  readonly activated_at?: string;
10990
11417
  readonly status_updated_at?: string;
10991
- readonly logistics_format?: io.flow.merchant.onboarding.v0.models.LogisticsFormat;
10992
11418
  readonly shop?: io.flow.merchant.onboarding.v0.models.Shop;
10993
11419
  readonly last_year_xborder_gmv?: io.flow.common.v0.models.Money;
10994
11420
  readonly last_month_xborder_gmv?: io.flow.common.v0.models.Money;
10995
11421
  readonly average_order_value?: io.flow.common.v0.models.Money;
11422
+ readonly glbe_merchant_guid?: string;
11423
+ readonly mcc_codes?: number[];
10996
11424
  }
10997
11425
 
10998
11426
  interface ShopifyMerchantApplicationForm {
10999
11427
  readonly discriminator: 'shopify_merchant_application_form';
11000
11428
  readonly company?: io.flow.merchant.onboarding.v0.models.MerchantInfo;
11001
11429
  readonly indirect_tax?: io.flow.merchant.onboarding.v0.models.IndirectTax;
11002
- readonly parent_company?: io.flow.merchant.onboarding.v0.models.MerchantInfo;
11003
11430
  readonly beneficiary?: string;
11004
11431
  readonly ultimate_beneficiary_owner?: io.flow.merchant.onboarding.v0.models.UltimateBeneficiaryOwner;
11005
11432
  readonly business_url?: string;
@@ -11009,23 +11436,22 @@ declare namespace io.flow.merchant.onboarding.v0.models {
11009
11436
  readonly chargeback_percentage?: number;
11010
11437
  readonly bank_account_number?: string;
11011
11438
  readonly aba_routing_transit_number?: string;
11012
- readonly trade_sectors?: io.flow.merchant.onboarding.v0.enums.OnboardingTradeSector[];
11013
11439
  readonly other_trade_sector?: string;
11014
11440
  readonly third_party_logistics_partners?: io.flow.merchant.onboarding.v0.models.ThirdPartyLogisticsPartner[];
11441
+ readonly center_contact?: io.flow.merchant.onboarding.v0.models.OperationsContact;
11015
11442
  readonly average_order_weight?: number;
11016
11443
  readonly package_dimensions?: io.flow.common.v0.models.Dimension[];
11017
11444
  readonly monthly_average_volume_amount?: number;
11018
11445
  readonly monthly_average_volume_currency?: string;
11019
11446
  readonly monthly_average_number_transactions?: number;
11020
- readonly dangerous_goods?: boolean;
11021
11447
  readonly default_country_of_origin?: string;
11022
11448
  readonly ratecard_id?: string;
11023
11449
  readonly rate_card: string;
11024
- readonly logistics_format?: io.flow.merchant.onboarding.v0.models.LogisticsFormat;
11025
11450
  readonly shop?: io.flow.merchant.onboarding.v0.models.Shop;
11026
11451
  readonly last_year_xborder_gmv?: io.flow.common.v0.models.Money;
11027
11452
  readonly last_month_xborder_gmv?: io.flow.common.v0.models.Money;
11028
11453
  readonly average_order_value?: io.flow.common.v0.models.Money;
11454
+ readonly mcc_codes?: number[];
11029
11455
  }
11030
11456
 
11031
11457
  interface ShopifyMerchantApplicationPutForm {
@@ -11775,6 +12201,13 @@ declare namespace io.flow.billing.v0.enums {
11775
12201
  | 'account_closed'
11776
12202
  | 'could_not_process';
11777
12203
  type StatementAttachmentType = 'csv';
12204
+ type TransactionPayoutPendingReason =
12205
+ | 'waiting_for_full_refund'
12206
+ | 'waiting_for_fulfillment'
12207
+ | 'waiting_for_in_transit'
12208
+ | 'waiting_for_next_payout_date'
12209
+ | 'external_fulfillment_missing_tracking_info'
12210
+ | 'waiting_for_positive_account_balance';
11778
12211
  type TransactionSource =
11779
12212
  | 'capture'
11780
12213
  | 'refund'
@@ -11886,6 +12319,7 @@ declare namespace io.flow.billing.v0.models {
11886
12319
  interface ChannelTransaction {
11887
12320
  readonly statement?: io.flow.billing.v0.models.BillingChannelStatementReference;
11888
12321
  readonly id: string;
12322
+ readonly metadata?: io.flow.billing.v0.unions.TransactionMetadata;
11889
12323
  readonly order?: io.flow.billing.v0.models.BillingChannelOrderSummary;
11890
12324
  readonly payment_request?: io.flow.billing.v0.models.BillingChannelPaymentRequestReference;
11891
12325
  readonly currency: string;
@@ -11901,6 +12335,12 @@ declare namespace io.flow.billing.v0.models {
11901
12335
  readonly updated_at: string;
11902
12336
  }
11903
12337
 
12338
+ interface ChannelTransactionPayout {
12339
+ readonly transaction: io.flow.billing.v0.models.TransactionReference;
12340
+ readonly waiting_for?: io.flow.billing.v0.enums.TransactionPayoutPendingReason;
12341
+ readonly payout?: io.flow.billing.v0.models.PayoutReference;
12342
+ }
12343
+
11904
12344
  interface DefaultBankAccountForm {
11905
12345
  readonly bank_account_id: string;
11906
12346
  }
@@ -11933,6 +12373,12 @@ declare namespace io.flow.billing.v0.models {
11933
12373
  readonly updated_at: string;
11934
12374
  }
11935
12375
 
12376
+ interface OrganizationTransactionPayout {
12377
+ readonly transaction: io.flow.billing.v0.models.TransactionReference;
12378
+ readonly waiting_for?: io.flow.billing.v0.enums.TransactionPayoutPendingReason;
12379
+ readonly payout?: io.flow.billing.v0.models.PayoutReference;
12380
+ }
12381
+
11936
12382
  interface ParentTransactionSummary {
11937
12383
  readonly id: string;
11938
12384
  readonly source: io.flow.billing.v0.enums.TransactionSource;
@@ -11943,6 +12389,10 @@ declare namespace io.flow.billing.v0.models {
11943
12389
  readonly url: string;
11944
12390
  }
11945
12391
 
12392
+ interface PayoutReference {
12393
+ readonly id: string;
12394
+ }
12395
+
11946
12396
  interface PayoutStatusFailed {
11947
12397
  readonly code: 'failed';
11948
12398
  readonly timestamp: string;
@@ -11961,6 +12411,7 @@ declare namespace io.flow.billing.v0.models {
11961
12411
 
11962
12412
  interface PayoutTransaction {
11963
12413
  readonly id: string;
12414
+ readonly metadata?: io.flow.billing.v0.unions.TransactionMetadata;
11964
12415
  readonly order?: io.flow.billing.v0.models.BillingChannelOrderSummary;
11965
12416
  readonly payment_request?: io.flow.billing.v0.models.BillingChannelPaymentRequestReference;
11966
12417
  readonly currency: string;
@@ -12000,6 +12451,7 @@ declare namespace io.flow.billing.v0.models {
12000
12451
  interface Transaction {
12001
12452
  readonly statement?: io.flow.billing.v0.models.BillingChannelStatementReference;
12002
12453
  readonly id: string;
12454
+ readonly metadata?: io.flow.billing.v0.unions.TransactionMetadata;
12003
12455
  readonly order?: io.flow.billing.v0.models.BillingChannelOrderSummary;
12004
12456
  readonly payment_request?: io.flow.billing.v0.models.BillingChannelPaymentRequestReference;
12005
12457
  readonly currency: string;
@@ -12015,6 +12467,15 @@ declare namespace io.flow.billing.v0.models {
12015
12467
  readonly updated_at: string;
12016
12468
  }
12017
12469
 
12470
+ interface TransactionMetadataShippingLabel {
12471
+ readonly discriminator: 'shipping_label';
12472
+ readonly request_method?: io.flow.label.v0.enums.LabelRequestMethod;
12473
+ }
12474
+
12475
+ interface TransactionReference {
12476
+ readonly id: string;
12477
+ }
12478
+
12018
12479
  interface WithholdingDeduction {
12019
12480
  readonly type: io.flow.billing.v0.enums.WithholdingDeductionType;
12020
12481
  readonly amount: number;
@@ -12033,6 +12494,8 @@ declare namespace io.flow.billing.v0.unions {
12033
12494
  type Settlement =
12034
12495
  | io.flow.billing.v0.models.SettlementNoPayout
12035
12496
  | io.flow.billing.v0.models.SettlementPayout;
12497
+ type TransactionMetadata =
12498
+ io.flow.billing.v0.models.TransactionMetadataShippingLabel;
12036
12499
  }
12037
12500
 
12038
12501
  declare namespace io.flow.harmonization.v0.enums {
@@ -12487,6 +12950,10 @@ declare namespace io.flow.fulfillment.v0.enums {
12487
12950
  | 'cold_storage'
12488
12951
  | 'hazardous'
12489
12952
  | 'perishable';
12953
+ type PreferredServiceSelectionStrategy =
12954
+ | 'calculated_rate'
12955
+ | 'flat_rate'
12956
+ | 'custom_rate';
12490
12957
  type QuoteErrorCode =
12491
12958
  | 'generic_error'
12492
12959
  | 'items_not_available'
@@ -12799,6 +13266,12 @@ declare namespace io.flow.fulfillment.v0.models {
12799
13266
  readonly total?: io.flow.catalog.v0.models.LocalizedTotal;
12800
13267
  readonly goods_supply?: io.flow.common.v0.enums.GoodsSupply;
12801
13268
  readonly merchant_of_record_flow_entity?: io.flow.merchant.of.record.v0.enums.FlowEntity;
13269
+ readonly preferred_service?: io.flow.fulfillment.v0.models.PhysicalDeliveryPreferredService;
13270
+ }
13271
+
13272
+ interface PhysicalDeliveryPreferredService {
13273
+ readonly id: string;
13274
+ readonly selection_stratey: io.flow.fulfillment.v0.enums.PreferredServiceSelectionStrategy;
12802
13275
  }
12803
13276
 
12804
13277
  interface PriceWithBaseAndDetails {
@@ -13336,6 +13809,10 @@ declare namespace io.flow.organization.onboarding.state.v0.models {
13336
13809
  readonly placeholder?: boolean;
13337
13810
  }
13338
13811
 
13812
+ interface DeactivationPutForm {
13813
+ readonly reason: string;
13814
+ }
13815
+
13339
13816
  interface InComplianceReview {
13340
13817
  readonly discriminator: 'in_compliance_review';
13341
13818
  readonly placeholder?: boolean;
@@ -13346,6 +13823,11 @@ declare namespace io.flow.organization.onboarding.state.v0.models {
13346
13823
  readonly placeholder?: boolean;
13347
13824
  }
13348
13825
 
13826
+ interface MerchantDeactivated {
13827
+ readonly discriminator: 'merchant_deactivated';
13828
+ readonly reason: string;
13829
+ }
13830
+
13349
13831
  interface MerchantRejected {
13350
13832
  readonly discriminator: 'merchant_rejected';
13351
13833
  readonly reason: io.flow.organization.onboarding.state.v0.enums.MerchantRejectedReason;
@@ -13367,6 +13849,7 @@ declare namespace io.flow.organization.onboarding.state.v0.models {
13367
13849
  readonly time_blocked?: number;
13368
13850
  readonly blocked_since?: string;
13369
13851
  readonly completed_at?: string;
13852
+ readonly onboarding_started_at?: string;
13370
13853
  }
13371
13854
 
13372
13855
  interface SetupBlocked {
@@ -13392,7 +13875,8 @@ declare namespace io.flow.organization.onboarding.state.v0.unions {
13392
13875
  | io.flow.organization.onboarding.state.v0.models.MerchantRejected
13393
13876
  | io.flow.organization.onboarding.state.v0.models.SetupBlocked
13394
13877
  | io.flow.organization.onboarding.state.v0.models.SetupCompleted
13395
- | io.flow.organization.onboarding.state.v0.models.MerchantActivated;
13878
+ | io.flow.organization.onboarding.state.v0.models.MerchantActivated
13879
+ | io.flow.organization.onboarding.state.v0.models.MerchantDeactivated;
13396
13880
  }
13397
13881
 
13398
13882
  declare namespace io.flow.fraud.v0.enums {
@@ -13819,9 +14303,16 @@ declare namespace io.flow.internal.v0.enums {
13819
14303
  | 'adjustment_transactions_count'
13820
14304
  | 'adjustment_transactions_total'
13821
14305
  | 'capture_transactions_count'
14306
+ | 'capture_transactions_ignored_fraud_count'
14307
+ | 'capture_transactions_ignored_fully_refunded_count'
14308
+ | 'capture_transactions_ignored_other_count'
13822
14309
  | 'capture_transactions_total'
13823
- | 'channel_transactions_count'
13824
- | 'channel_transactions_total'
14310
+ | 'channel_transactions_processing_count'
14311
+ | 'channel_transactions_processing_total'
14312
+ | 'channel_transactions_adjustment_count'
14313
+ | 'channel_transactions_adjustment_total'
14314
+ | 'channel_transactions_reversal_count'
14315
+ | 'channel_transactions_reversal_total'
13825
14316
  | 'channel_billed_transactions_count'
13826
14317
  | 'channel_billed_transactions_total'
13827
14318
  | 'credit_payment_transactions_count'
@@ -13831,41 +14322,44 @@ declare namespace io.flow.internal.v0.enums {
13831
14322
  | 'fully_subsidized_order_transactions_count'
13832
14323
  | 'fully_subsidized_order_transactions_total'
13833
14324
  | 'billable_label_transactions_count'
14325
+ | 'billable_label_transactions_count_for_unique_orders'
13834
14326
  | 'billable_label_transactions_total'
13835
14327
  | 'revenue_share_label_transactions_count'
14328
+ | 'revenue_share_label_transactions_count_for_unique_orders'
13836
14329
  | 'revenue_share_label_transactions_total'
13837
14330
  | 'manual_transactions_count'
13838
14331
  | 'manual_transactions_total'
13839
14332
  | 'order_transactions_count'
13840
14333
  | 'order_transactions_total'
13841
14334
  | 'refund_transactions_count'
14335
+ | 'refund_transactions_ignored_fraud_count'
14336
+ | 'refund_transactions_ignored_fully_refunded_count'
14337
+ | 'refund_transactions_ignored_other_count'
13842
14338
  | 'refund_transactions_total'
13843
14339
  | 'reversal_order_cancellations_transactions_count'
13844
14340
  | 'reversal_order_cancellations_transactions_total'
13845
14341
  | 'reversal_external_fulfillment_transactions_count'
13846
14342
  | 'reversal_external_fulfillment_transactions_total'
14343
+ | 'reversal_other_transactions_count'
14344
+ | 'reversal_other_transactions_total'
14345
+ | 'reversal_all_transactions_count'
14346
+ | 'reversal_all_transactions_total'
13847
14347
  | 'tax_transactions_count'
13848
14348
  | 'tax_transactions_total'
13849
14349
  | 'transfer_transactions_count'
13850
14350
  | 'transfer_transactions_total'
13851
14351
  | 'fulfillments_count'
13852
- | 'fulfillments_total'
14352
+ | 'fulfilled_via_replacement_order_count'
14353
+ | 'percentage_orders_with_fulfillment_proof_2_weeks'
14354
+ | 'percentage_orders_with_fulfillment_proof_4_weeks'
14355
+ | 'percentage_orders_with_fulfillment_proof_6_weeks'
14356
+ | 'percentage_orders_with_fulfillment_proof_all'
14357
+ | 'pending_payouts_max_age_in_millis'
13853
14358
  | 'shipping_notifications_count'
13854
14359
  | 'queued_capture_unprocessed_count'
13855
- | 'queued_capture_deletion_unprocessed_count'
13856
- | 'queued_channel_transaction_unprocessed_count'
13857
- | 'queued_channel_organization_unprocessed_count'
13858
- | 'queued_consumer_invoice_unprocessed_count'
13859
- | 'queued_label_tracking_summary_unprocessed_count'
13860
- | 'queued_order_unprocessed_count'
13861
- | 'queued_order_identifier_unprocessed_count'
13862
14360
  | 'queued_refund_unprocessed_count'
13863
- | 'queued_refund_deletion_unprocessed_count'
13864
- | 'queued_statement_batch_unprocessed_count'
13865
- | 'queued_statement_batch_email_unprocessed_count'
13866
- | 'queued_statement_email_unprocessed_count'
13867
- | 'queued_statement_summary_email_unprocessed_count'
13868
- | 'shipping_notifications_total'
14361
+ | 'queued_record_snooze_count'
14362
+ | 'queued_record_snooze_ending_in_48_hours_count'
13869
14363
  | 'statements_no_payout_count'
13870
14364
  | 'statements_no_payout_total'
13871
14365
  | 'statements_pending_payout_count'
@@ -13876,8 +14370,8 @@ declare namespace io.flow.internal.v0.enums {
13876
14370
  | 'payouts_sent_total'
13877
14371
  | 'payouts_failed_count'
13878
14372
  | 'payouts_failed_total'
13879
- | 'pending_payouts_max_age'
13880
- | 'average_payout_amount';
14373
+ | 'average_payout_amount'
14374
+ | 'capture_transaction_with_zero_fees_and_no_channel_transaction_count';
13881
14375
  type BillingStatementAttachmentKey =
13882
14376
  | 'invoice'
13883
14377
  | 'statement'
@@ -13893,7 +14387,7 @@ declare namespace io.flow.internal.v0.enums {
13893
14387
  | 'order_service'
13894
14388
  | 'tax'
13895
14389
  | 'all';
13896
- type BillingStatementBatchFileKey = 'archive' | 'summary';
14390
+ type BillingStatementBatchFileKey = 'summary';
13897
14391
  type BillingTransactionStatus = 'pending' | 'pending_proof' | 'posted';
13898
14392
  type BillingTransactionType =
13899
14393
  | 'manual'
@@ -13931,6 +14425,7 @@ declare namespace io.flow.internal.v0.enums {
13931
14425
  | 'dtce_with_deminimis'
13932
14426
  | 'dtce_merged_with_tax';
13933
14427
  type CarrierLabelGenerationMethod = 'direct' | 'easypost';
14428
+ type CarrierValidationStatus = 'success' | 'error';
13934
14429
  type CatalogImportType =
13935
14430
  | 'catalog_items'
13936
14431
  | 'item_form_overlays'
@@ -13941,7 +14436,15 @@ declare namespace io.flow.internal.v0.enums {
13941
14436
  | 'adjustment'
13942
14437
  | 'reversal'
13943
14438
  | 'channel_initiated';
13944
- type ChannelOrderAcceptanceErrorAction = 'auto_reject';
14439
+ type ChannelOrderAcceptanceErrorAction = 'auto_reject' | 'auto_accept';
14440
+ type ChannelOrderAcceptanceNextActionFrom =
14441
+ | 'cx_team'
14442
+ | 'core_team'
14443
+ | 'core_team_investigate'
14444
+ | 'mex_team'
14445
+ | 'payments_team'
14446
+ | 'tc_team'
14447
+ | 'logistics_team';
13945
14448
  type ChannelOrderAcceptanceRejectionReason =
13946
14449
  | 'unsupported_origin_country'
13947
14450
  | 'unsupported_destination_country'
@@ -13956,7 +14459,8 @@ declare namespace io.flow.internal.v0.enums {
13956
14459
  | 'shipping_estimation_failed'
13957
14460
  | 'payment_authorization_failed'
13958
14461
  | 'unsupported_subsidized_order'
13959
- | 'unsupported_virtual_goods';
14462
+ | 'unsupported_virtual_goods'
14463
+ | 'non_matching_currencies';
13960
14464
  type ChannelOrderAcceptanceStatus = 'accepted' | 'rejected' | 'review';
13961
14465
  type ChannelTransactionType = 'adjustment' | 'reversal' | 'processing';
13962
14466
  type ChargebackPaymentStatus = 'captured' | 'refunded';
@@ -14265,6 +14769,7 @@ declare namespace io.flow.internal.v0.enums {
14265
14769
  type DisputeLiability = 'flow' | 'organization';
14266
14770
  type DisputeProcessor = 'adyen' | 'paypal';
14267
14771
  type DisputeStatus = 'pending' | 'won' | 'lost' | 'expired';
14772
+ type DisputeTransactionType = 'adjustment' | 'dispute';
14268
14773
  type DisputeType = 'chargeback';
14269
14774
  type DutyCompoundExpressionType = 'sum' | 'max' | 'min';
14270
14775
  type DutyExemptItemTypes =
@@ -14300,6 +14805,8 @@ declare namespace io.flow.internal.v0.enums {
14300
14805
  | 'adyen_capture_upserted'
14301
14806
  | 'adyen_refund_deleted'
14302
14807
  | 'adyen_refund_upserted'
14808
+ | 'index_assignment_upserted'
14809
+ | 'index_assignment_deleted'
14303
14810
  | 'account_upserted'
14304
14811
  | 'account_upserted_v2'
14305
14812
  | 'account_deleted_v2'
@@ -14341,8 +14848,12 @@ declare namespace io.flow.internal.v0.enums {
14341
14848
  | 'tax_transaction_deleted'
14342
14849
  | 'duty_transaction_upserted'
14343
14850
  | 'duty_transaction_deleted'
14851
+ | 'transaction_statement_upserted'
14852
+ | 'transaction_statement_deleted'
14344
14853
  | 'daily_value_upserted'
14345
14854
  | 'daily_value_deleted'
14855
+ | 'label_invoice_request_upserted'
14856
+ | 'label_invoice_request_deleted'
14346
14857
  | 'calculator_organization_settings_upserted'
14347
14858
  | 'calculator_organization_settings_deleted'
14348
14859
  | 'carrier_account_upserted_v2'
@@ -14479,6 +14990,8 @@ declare namespace io.flow.internal.v0.enums {
14479
14990
  | 'issuer_upserted'
14480
14991
  | 'issuer_deleted'
14481
14992
  | 'item_form_import_request'
14993
+ | 'label_request_error_upserted'
14994
+ | 'label_request_error_deleted'
14482
14995
  | 'label_tracking_summary_upserted'
14483
14996
  | 'label_tracking_summary_deleted'
14484
14997
  | 'localized_item_upserted_v2'
@@ -14504,8 +15017,14 @@ declare namespace io.flow.internal.v0.enums {
14504
15017
  | 'organization_business_entity_upserted'
14505
15018
  | 'organization_status_change_upserted'
14506
15019
  | 'organization_status_change_deleted'
15020
+ | 'organization_deactivation_upserted'
15021
+ | 'organization_deactivation_deleted'
15022
+ | 'merchant_guid_assignment_upserted'
15023
+ | 'merchant_guid_assignment_deleted'
14507
15024
  | 'partner_organization_settings_upserted'
14508
15025
  | 'partner_organization_settings_deleted'
15026
+ | 'unassigned_merchant_guid_upserted'
15027
+ | 'unassigned_merchant_guid_deleted'
14509
15028
  | 'internal_authorization_upserted'
14510
15029
  | 'internal_authorization_deleted'
14511
15030
  | 'afterpay_authorization_upserted'
@@ -14569,6 +15088,8 @@ declare namespace io.flow.internal.v0.enums {
14569
15088
  | 'shopify_markets_webhook_registration_deleted'
14570
15089
  | 'shopify_markets_shop_statistics_upserted'
14571
15090
  | 'shopify_markets_shop_statistics_deleted'
15091
+ | 'shopify_markets_metrics_upserted'
15092
+ | 'shopify_markets_metrics_deleted'
14572
15093
  | 'shopify_monitoring_order_monitor_event_upserted'
14573
15094
  | 'shopify_monitoring_order_monitor_event_deleted'
14574
15095
  | 'shopify_order_fulfillments_snapshot_upserted'
@@ -14656,6 +15177,12 @@ declare namespace io.flow.internal.v0.enums {
14656
15177
  | 'resolved'
14657
15178
  | 'unresolved';
14658
15179
  type LabelInputSource = 'estimate';
15180
+ type LabelRequestErrorHandlingResponsibility =
15181
+ | 'merchant'
15182
+ | 'merchant_integration'
15183
+ | 'shopify_integration'
15184
+ | 'globale_cx'
15185
+ | 'globale_system';
14659
15186
  type LabelTransactionType =
14660
15187
  | 'adjustment'
14661
15188
  | 'reversal'
@@ -14780,6 +15307,7 @@ declare namespace io.flow.internal.v0.enums {
14780
15307
  | 'unit_test'
14781
15308
  | 'api'
14782
15309
  | 'api_activation'
15310
+ | 'api_sandbox_setup'
14783
15311
  | 'api_internal'
14784
15312
  | 'api_internal_block'
14785
15313
  | 'api_internal_unblock'
@@ -14873,13 +15401,19 @@ declare namespace io.flow.internal.v0.enums {
14873
15401
  | 'channel_transaction'
14874
15402
  | 'channel_organization'
14875
15403
  | 'consumer_invoice'
15404
+ | 'fulfillment_in_transit'
15405
+ | 'fulfillment_shipping_notification'
15406
+ | 'fulfillment_external'
14876
15407
  | 'label_tracking_summary'
15408
+ | 'label_invoice_request'
15409
+ | 'label_origin'
14877
15410
  | 'order'
14878
15411
  | 'order_identifier'
14879
15412
  | 'refund'
14880
15413
  | 'refund_deletion'
15414
+ | 'refund_over_capture'
15415
+ | 'sales_record'
14881
15416
  | 'statement_batch'
14882
- | 'statement_batch_email'
14883
15417
  | 'statement_email'
14884
15418
  | 'statement_summary_email'
14885
15419
  | 'wash';
@@ -14888,16 +15422,27 @@ declare namespace io.flow.internal.v0.enums {
14888
15422
  | 'delete'
14889
15423
  | 'update_currency_rate'
14890
15424
  | 'update_country';
15425
+ type RateLevelKey =
15426
+ | 'shopify_small_usa'
15427
+ | 'shopify_medium_usa'
15428
+ | 'shopify_enterprise_usa'
15429
+ | 'shopify_small_sdc_usa';
14891
15430
  type RateSource = 'calculated' | 'market';
14892
15431
  type ReboundConfigurationStatus = 'active' | 'inactive';
14893
15432
  type RedirectReason = 'three_d_secure';
14894
15433
  type RejectionReason =
14895
- | 'suspicious_behavior'
14896
- | 'suspicious_past_activity'
14897
- | 'risky_velocity'
15434
+ | 'merchant_policy'
14898
15435
  | 'previous_chargebacks'
14899
- | 'restricted_party_screening';
15436
+ | 'restricted_party_screening'
15437
+ | 'risky_velocity'
15438
+ | 'suspicious_behavior'
15439
+ | 'suspicious_past_activity';
14900
15440
  type ReportInterval = 'hourly' | 'daily' | 'weekly' | 'monthly';
15441
+ type ReportStatus =
15442
+ | 'created'
15443
+ | 'completed'
15444
+ | 'completed_no_records'
15445
+ | 'failed';
14901
15446
  type ReportingScheme =
14902
15447
  | 'immediate_reporting_to_tax_authority'
14903
15448
  | 'periodic_reporting_to_tax_authority'
@@ -14953,6 +15498,13 @@ declare namespace io.flow.internal.v0.enums {
14953
15498
  | 'prohibited_carriage'
14954
15499
  | 'pesticides_or_toxic_herbicides_or_insecticides_or_poisonous_toxic_substances';
14955
15500
  type ShopifyMarketsHtsNumberAvailable = 'yes' | 'no' | 'i_dont_know';
15501
+ type ShopifyMarketsQueuedRecordType =
15502
+ | 'order_update'
15503
+ | 'card_payment'
15504
+ | 'online_payment'
15505
+ | 'flow_shop'
15506
+ | 'catalog_publication_sync'
15507
+ | 'product_restriction_result';
14956
15508
  type ShopifyMarketsTradeSector =
14957
15509
  | 'apparel_and_accessories'
14958
15510
  | 'beauty_and_cosmetics'
@@ -15008,8 +15560,7 @@ declare namespace io.flow.internal.v0.enums {
15008
15560
  | 'fraud_review'
15009
15561
  | 'carrier_account'
15010
15562
  | 'payment'
15011
- | 'ratecard'
15012
- | 'logistics_center'
15563
+ | 'rate_levels'
15013
15564
  | 'center_defaults';
15014
15565
  type TaxCalculationErrorCode = 'generic_error' | 'outside_of_jurisdiction';
15015
15566
  type TaxParty = 'consumer' | 'organization' | 'flow' | 'carrier';
@@ -15018,6 +15569,13 @@ declare namespace io.flow.internal.v0.enums {
15018
15569
  type TrackingIntegrationType = 'api' | 'bulk' | 'aftership';
15019
15570
  type TransactionPostingMethod = 'time' | 'proof';
15020
15571
  type TransferMethod = 'ach';
15572
+ type TrueUpSurchargeType =
15573
+ | 'fuel'
15574
+ | 'remote_area'
15575
+ | 'oversize'
15576
+ | 'duties_paid'
15577
+ | 'emergency'
15578
+ | 'peak';
15021
15579
  type UnclassifiedProductStatus =
15022
15580
  | 'ignored'
15023
15581
  | 'escalated'
@@ -15025,6 +15583,11 @@ declare namespace io.flow.internal.v0.enums {
15025
15583
  | 'unverified'
15026
15584
  | 'queued'
15027
15585
  | 'unconfident';
15586
+ type WashCarrierActualFileStatus =
15587
+ | 'pending'
15588
+ | 'processing'
15589
+ | 'processed'
15590
+ | 'failed';
15028
15591
  }
15029
15592
 
15030
15593
  declare namespace io.flow.internal.v0.models {
@@ -15332,6 +15895,7 @@ declare namespace io.flow.internal.v0.models {
15332
15895
  readonly authentication: io.flow.internal.v0.models.AdyenAuthenticationForm;
15333
15896
  readonly country: string;
15334
15897
  readonly status?: io.flow.internal.v0.enums.ProcessorEntityStatus;
15898
+ readonly organization_capability?: io.flow.internal.v0.enums.OrganizationCapability;
15335
15899
  }
15336
15900
 
15337
15901
  interface AdyenAuthentication {
@@ -15493,6 +16057,7 @@ declare namespace io.flow.internal.v0.models {
15493
16057
  readonly external_id: string;
15494
16058
  readonly country: string;
15495
16059
  readonly status?: io.flow.internal.v0.enums.ProcessorEntityStatus;
16060
+ readonly organization_capability?: io.flow.internal.v0.enums.OrganizationCapability;
15496
16061
  }
15497
16062
 
15498
16063
  interface AdyenPaymentDetailsForm {
@@ -15551,6 +16116,7 @@ declare namespace io.flow.internal.v0.models {
15551
16116
  readonly country: string;
15552
16117
  readonly authentication: io.flow.internal.v0.models.AfterpayAuthenticationForm;
15553
16118
  readonly status?: io.flow.internal.v0.enums.ProcessorEntityStatus;
16119
+ readonly organization_capability?: io.flow.internal.v0.enums.OrganizationCapability;
15554
16120
  }
15555
16121
 
15556
16122
  interface AfterpayAuthentication {
@@ -15674,6 +16240,12 @@ declare namespace io.flow.internal.v0.models {
15674
16240
  readonly count: number;
15675
16241
  }
15676
16242
 
16243
+ interface AlgoliaIndexAssignment {
16244
+ readonly id: string;
16245
+ readonly name: string;
16246
+ readonly application_id: string;
16247
+ }
16248
+
15677
16249
  interface AllItemsExport {
15678
16250
  readonly discriminator: 'all_items_export';
15679
16251
  readonly event_id: string;
@@ -15779,6 +16351,12 @@ declare namespace io.flow.internal.v0.models {
15779
16351
  readonly charge_trigger: io.flow.internal.v0.enums.OrderChargeTrigger;
15780
16352
  }
15781
16353
 
16354
+ interface AutoReviewCriteria {
16355
+ readonly hs_code?: string;
16356
+ readonly keywords?: string[];
16357
+ readonly action?: io.flow.internal.v0.enums.RestrictionStatus;
16358
+ }
16359
+
15782
16360
  interface Backfill {
15783
16361
  readonly days_to_backfill: string[];
15784
16362
  }
@@ -15955,7 +16533,6 @@ declare namespace io.flow.internal.v0.models {
15955
16533
 
15956
16534
  interface BillingStatementBatch {
15957
16535
  readonly id: string;
15958
- readonly reconciliation: io.flow.internal.v0.models.BillingStatementBatchReconciliation;
15959
16536
  }
15960
16537
 
15961
16538
  interface BillingStatementBatchDeleted {
@@ -15965,10 +16542,6 @@ declare namespace io.flow.internal.v0.models {
15965
16542
  readonly id: string;
15966
16543
  }
15967
16544
 
15968
- interface BillingStatementBatchReconciliation {
15969
- readonly month: string;
15970
- }
15971
-
15972
16545
  interface BillingStatementBatchReference {
15973
16546
  readonly id: string;
15974
16547
  }
@@ -16089,6 +16662,7 @@ declare namespace io.flow.internal.v0.models {
16089
16662
  readonly authentication: io.flow.internal.v0.models.BitpayAuthenticationForm;
16090
16663
  readonly country: string;
16091
16664
  readonly status?: io.flow.internal.v0.enums.ProcessorEntityStatus;
16665
+ readonly organization_capability?: io.flow.internal.v0.enums.OrganizationCapability;
16092
16666
  }
16093
16667
 
16094
16668
  interface BitpayAuthentication {
@@ -16358,6 +16932,32 @@ declare namespace io.flow.internal.v0.models {
16358
16932
  readonly name: string;
16359
16933
  }
16360
16934
 
16935
+ interface CalculatorDtcePostBody {
16936
+ readonly products: io.flow.internal.v0.models.CalculatorDtceProduct[];
16937
+ readonly countryCodeFrom: string;
16938
+ readonly countryCodeTo: string;
16939
+ readonly classification: string;
16940
+ readonly shippingCost: number;
16941
+ readonly insuranceCost: number;
16942
+ readonly totalShipmentWeight: number;
16943
+ readonly currencyCode: string;
16944
+ readonly outputCurrencyCode: string;
16945
+ readonly explanation: boolean;
16946
+ readonly responseFormat: number;
16947
+ readonly requestId: string;
16948
+ readonly provinceCode?: string;
16949
+ }
16950
+
16951
+ interface CalculatorDtceProduct {
16952
+ readonly origin: string;
16953
+ readonly hsCode: string;
16954
+ readonly sku: string;
16955
+ readonly value: number;
16956
+ readonly weight: number;
16957
+ readonly quantity: number;
16958
+ readonly reference?: string;
16959
+ }
16960
+
16361
16961
  interface CalculatorOrganizationSettings {
16362
16962
  readonly id: string;
16363
16963
  readonly default_country_of_origin?: string;
@@ -16416,6 +17016,12 @@ declare namespace io.flow.internal.v0.models {
16416
17016
  readonly carrier_account: io.flow.internal.v0.models.CarrierAccount;
16417
17017
  }
16418
17018
 
17019
+ interface CarrierAccountValidation {
17020
+ readonly organization: string;
17021
+ readonly status: io.flow.internal.v0.enums.CarrierValidationStatus;
17022
+ readonly error_message?: string;
17023
+ }
17024
+
16419
17025
  interface CarrierInvoice {
16420
17026
  readonly number: string;
16421
17027
  readonly timestamp: string;
@@ -16468,6 +17074,12 @@ declare namespace io.flow.internal.v0.models {
16468
17074
  readonly data: io.flow.internal.v0.models.CatalogItemRegionAvailabilitiesData;
16469
17075
  }
16470
17076
 
17077
+ interface CatalogPublicationSyncValidationError {
17078
+ readonly message: string;
17079
+ readonly reason: string;
17080
+ readonly next_action_from: io.flow.internal.v0.enums.ChannelOrderAcceptanceNextActionFrom;
17081
+ }
17082
+
16471
17083
  interface CatalogSettings {
16472
17084
  readonly id: string;
16473
17085
  readonly mixed_bag_weight: io.flow.internal.v0.enums.MixedBagWeight;
@@ -16689,6 +17301,7 @@ declare namespace io.flow.internal.v0.models {
16689
17301
  readonly payment_request_id?: string;
16690
17302
  readonly status: io.flow.internal.v0.enums.ChannelOrderAcceptanceStatus;
16691
17303
  readonly reasons: io.flow.internal.v0.models.ChannelOrderAcceptanceReason[];
17304
+ readonly next_action_from?: io.flow.internal.v0.enums.ChannelOrderAcceptanceNextActionFrom;
16692
17305
  readonly order_created_at?: string;
16693
17306
  }
16694
17307
 
@@ -19045,6 +19658,7 @@ declare namespace io.flow.internal.v0.models {
19045
19658
  readonly customs_description?: string;
19046
19659
  readonly hs6_code?: string;
19047
19660
  readonly hs6_description?: string;
19661
+ readonly status?: io.flow.internal.v0.enums.ItemHarmonizationStatus;
19048
19662
  }
19049
19663
 
19050
19664
  interface ClassificationProductId {
@@ -19109,6 +19723,10 @@ declare namespace io.flow.internal.v0.models {
19109
19723
  readonly urls: string[];
19110
19724
  }
19111
19725
 
19726
+ interface CompanyReference {
19727
+ readonly id: string;
19728
+ }
19729
+
19112
19730
  interface Compliance {
19113
19731
  readonly id: string;
19114
19732
  readonly destination: string;
@@ -19243,6 +19861,7 @@ declare namespace io.flow.internal.v0.models {
19243
19861
  readonly authentication: io.flow.internal.v0.models.CryptoAuthenticationForm;
19244
19862
  readonly country: string;
19245
19863
  readonly status?: io.flow.internal.v0.enums.ProcessorEntityStatus;
19864
+ readonly organization_capability?: io.flow.internal.v0.enums.OrganizationCapability;
19246
19865
  }
19247
19866
 
19248
19867
  interface CryptoAuthentication {
@@ -19263,7 +19882,7 @@ declare namespace io.flow.internal.v0.models {
19263
19882
  readonly base_amount: number;
19264
19883
  readonly surcharges: io.flow.internal.v0.models.CsvSurcharges;
19265
19884
  readonly total: number;
19266
- readonly weight_unit: io.flow.common.v0.enums.UnitOfMeasurement;
19885
+ readonly weight_unit: io.flow.units.v0.enums.UnitOfWeight;
19267
19886
  readonly weight: number;
19268
19887
  readonly ratecard: io.flow.internal.v0.models.CsvActualRatecard;
19269
19888
  }
@@ -19273,7 +19892,7 @@ declare namespace io.flow.internal.v0.models {
19273
19892
  }
19274
19893
 
19275
19894
  interface CsvDimensions {
19276
- readonly unit: io.flow.common.v0.enums.UnitOfMeasurement;
19895
+ readonly unit: io.flow.units.v0.enums.UnitOfLength;
19277
19896
  readonly length: number;
19278
19897
  readonly width: number;
19279
19898
  readonly depth: number;
@@ -19312,7 +19931,7 @@ declare namespace io.flow.internal.v0.models {
19312
19931
  readonly base_amount: number;
19313
19932
  readonly surcharges: io.flow.internal.v0.models.CsvSurcharges;
19314
19933
  readonly total: number;
19315
- readonly weight_unit: io.flow.common.v0.enums.UnitOfMeasurement;
19934
+ readonly weight_unit: io.flow.units.v0.enums.UnitOfWeight;
19316
19935
  readonly weight: number;
19317
19936
  readonly variance: number;
19318
19937
  }
@@ -19377,7 +19996,7 @@ declare namespace io.flow.internal.v0.models {
19377
19996
  }
19378
19997
 
19379
19998
  interface CsvWeight {
19380
- readonly unit: io.flow.common.v0.enums.UnitOfMeasurement;
19999
+ readonly unit: io.flow.units.v0.enums.UnitOfWeight;
19381
20000
  readonly provided: number;
19382
20001
  readonly dimensional: number;
19383
20002
  readonly lookup: number;
@@ -19592,6 +20211,7 @@ declare namespace io.flow.internal.v0.models {
19592
20211
  readonly order: io.flow.internal.v0.models.DebugOrder;
19593
20212
  readonly debug: io.flow.internal.v0.models.DebugDetails;
19594
20213
  readonly transactions: io.flow.billing.v0.models.Transaction[];
20214
+ readonly reporting: io.flow.internal.v0.models.ReportingDetails;
19595
20215
  }
19596
20216
 
19597
20217
  interface DebugOrderTransactionForm {
@@ -19603,6 +20223,8 @@ declare namespace io.flow.internal.v0.models {
19603
20223
  readonly refund_id?: string;
19604
20224
  readonly order_identifier?: io.flow.internal.v0.models.DebugOrderTransactionFormOrderIdentifier;
19605
20225
  readonly authorization_id?: string;
20226
+ readonly posting_proof_id?: string;
20227
+ readonly label_tracking_summary_id?: string;
19606
20228
  }
19607
20229
 
19608
20230
  interface DebugOrderTransactionFormOrderIdentifier {
@@ -20109,6 +20731,8 @@ declare namespace io.flow.internal.v0.models {
20109
20731
  }
20110
20732
 
20111
20733
  interface ErpFlowVendor {
20734
+ readonly company: io.flow.internal.v0.models.CompanyReference;
20735
+ readonly entity: io.flow.internal.v0.models.EntityReference;
20112
20736
  readonly acc_des: string;
20113
20737
  readonly country_name: string;
20114
20738
  readonly acng_code: string;
@@ -20120,7 +20744,6 @@ declare namespace io.flow.internal.v0.models {
20120
20744
  readonly state_a: string;
20121
20745
  readonly bank_code: string;
20122
20746
  readonly id: string;
20123
- readonly entity: io.flow.internal.v0.models.EntityReference;
20124
20747
  readonly tax_code?: string;
20125
20748
  readonly vat_flag?: string;
20126
20749
  readonly w_tax_percent?: string;
@@ -20161,16 +20784,101 @@ declare namespace io.flow.internal.v0.models {
20161
20784
 
20162
20785
  interface ErpPriorityFileForm {
20163
20786
  readonly type: io.flow.internal.v0.enums.ErpFileType;
20787
+ readonly name: string;
20164
20788
  readonly url: string;
20165
20789
  }
20166
20790
 
20791
+ interface ErpPriorityVendor {
20792
+ readonly id: string;
20793
+ readonly acc_des?: string;
20794
+ readonly tax_code?: string;
20795
+ readonly vat_flag?: string;
20796
+ readonly country_name?: string;
20797
+ readonly w_tax_percent?: string;
20798
+ readonly iban?: string;
20799
+ readonly confirmed_date?: string;
20800
+ readonly w_tax_date?: string;
20801
+ readonly w_tax_num_expl?: string;
20802
+ readonly acng_code?: string;
20803
+ readonly phone?: string;
20804
+ readonly address?: string;
20805
+ readonly address_a?: string;
20806
+ readonly address_2?: string;
20807
+ readonly address_3?: string;
20808
+ readonly state_name?: string;
20809
+ readonly code?: string;
20810
+ readonly zip?: string;
20811
+ readonly pay_account?: string;
20812
+ readonly comp_num?: string;
20813
+ readonly w_tax_num?: string;
20814
+ readonly vat_num?: string;
20815
+ readonly orig_acc_name?: string;
20816
+ readonly branch?: string;
20817
+ readonly form_1099_code?: string;
20818
+ readonly trial_bal_code?: string;
20819
+ readonly sec_name?: string;
20820
+ readonly state?: string;
20821
+ readonly state_a?: string;
20822
+ readonly fax?: string;
20823
+ readonly details?: string;
20824
+ readonly bank_code?: string;
20825
+ readonly state_code?: string;
20826
+ readonly tax_office_code?: string;
20827
+ readonly pay_code?: string;
20828
+ readonly eacc_des?: string;
20829
+ readonly acng_des?: string;
20830
+ readonly branch_des?: string;
20831
+ }
20832
+
20833
+ interface ErpPriorityVendorForm {
20834
+ readonly acc_des?: string;
20835
+ readonly tax_code?: string;
20836
+ readonly vat_flag?: string;
20837
+ readonly country_name?: string;
20838
+ readonly w_tax_percent?: string;
20839
+ readonly iban?: string;
20840
+ readonly confirmed_date?: string;
20841
+ readonly w_tax_date?: string;
20842
+ readonly w_tax_num_expl?: string;
20843
+ readonly acng_code?: string;
20844
+ readonly phone?: string;
20845
+ readonly address?: string;
20846
+ readonly address_a?: string;
20847
+ readonly address_2?: string;
20848
+ readonly address_3?: string;
20849
+ readonly state_name?: string;
20850
+ readonly code?: string;
20851
+ readonly zip?: string;
20852
+ readonly pay_account?: string;
20853
+ readonly comp_num?: string;
20854
+ readonly w_tax_num?: string;
20855
+ readonly vat_num?: string;
20856
+ readonly orig_acc_name?: string;
20857
+ readonly branch?: string;
20858
+ readonly form_1099_code?: string;
20859
+ readonly trial_bal_code?: string;
20860
+ readonly sec_name?: string;
20861
+ readonly state?: string;
20862
+ readonly state_a?: string;
20863
+ readonly fax?: string;
20864
+ readonly details?: string;
20865
+ readonly bank_code?: string;
20866
+ readonly state_code?: string;
20867
+ readonly tax_office_code?: string;
20868
+ readonly pay_code?: string;
20869
+ readonly eacc_des?: string;
20870
+ readonly acng_des?: string;
20871
+ readonly branch_des?: string;
20872
+ }
20873
+
20167
20874
  interface ErpVendor {
20168
20875
  readonly placeholder?: string;
20169
20876
  }
20170
20877
 
20171
20878
  interface ErpVendorStatus {
20172
20879
  readonly entities: io.flow.internal.v0.models.ErpVendorStatusEntity[];
20173
- readonly latest_priority_file?: io.flow.internal.v0.models.ErpVendorStatusFile;
20880
+ readonly latest_flow_file?: io.flow.internal.v0.models.ErpVendorStatusFlowFile;
20881
+ readonly latest_priority_file?: io.flow.internal.v0.models.ErpVendorStatusPriorityFile;
20174
20882
  }
20175
20883
 
20176
20884
  interface ErpVendorStatusEntity {
@@ -20178,8 +20886,14 @@ declare namespace io.flow.internal.v0.models {
20178
20886
  readonly number_differences: number;
20179
20887
  }
20180
20888
 
20181
- interface ErpVendorStatusFile {
20889
+ interface ErpVendorStatusFlowFile {
20890
+ readonly url: string;
20891
+ readonly created_at: string;
20892
+ }
20893
+
20894
+ interface ErpVendorStatusPriorityFile {
20182
20895
  readonly name: string;
20896
+ readonly url: string;
20183
20897
  readonly created_at: string;
20184
20898
  readonly errors?: string[];
20185
20899
  readonly processed_at?: string;
@@ -20496,12 +21210,14 @@ declare namespace io.flow.internal.v0.models {
20496
21210
  readonly carrier_id?: string;
20497
21211
  readonly service_id?: string;
20498
21212
  readonly carrier_tracking_number?: string;
21213
+ readonly fulfilled_via_replacement_order?: boolean;
20499
21214
  }
20500
21215
 
20501
21216
  interface ExternalFulfillmentProofTrackingForm {
20502
21217
  readonly carrier_id?: string;
20503
21218
  readonly service_id?: string;
20504
21219
  readonly carrier_tracking_number?: string;
21220
+ readonly fulfilled_via_replacement_order?: boolean;
20505
21221
  }
20506
21222
 
20507
21223
  interface FacebookPixel {
@@ -20773,6 +21489,7 @@ declare namespace io.flow.internal.v0.models {
20773
21489
  readonly authentication: io.flow.internal.v0.models.FiservAuthenticationForm;
20774
21490
  readonly country: string;
20775
21491
  readonly status?: io.flow.internal.v0.enums.ProcessorEntityStatus;
21492
+ readonly organization_capability?: io.flow.internal.v0.enums.OrganizationCapability;
20776
21493
  }
20777
21494
 
20778
21495
  interface FiservAuthentication {
@@ -20823,6 +21540,7 @@ declare namespace io.flow.internal.v0.models {
20823
21540
  readonly funding_currency: string;
20824
21541
  readonly country: string;
20825
21542
  readonly status?: io.flow.internal.v0.enums.ProcessorEntityStatus;
21543
+ readonly organization_capability?: io.flow.internal.v0.enums.OrganizationCapability;
20826
21544
  }
20827
21545
 
20828
21546
  interface FlowAccount {
@@ -20871,6 +21589,12 @@ declare namespace io.flow.internal.v0.models {
20871
21589
  readonly default_contents: string;
20872
21590
  }
20873
21591
 
21592
+ interface FlowShopValidationError {
21593
+ readonly message: string;
21594
+ readonly reason: string;
21595
+ readonly next_action_from: io.flow.internal.v0.enums.ChannelOrderAcceptanceNextActionFrom;
21596
+ }
21597
+
20874
21598
  interface FraudPendingReview {
20875
21599
  readonly id: string;
20876
21600
  readonly fraud_review_id: string;
@@ -20957,6 +21681,7 @@ declare namespace io.flow.internal.v0.models {
20957
21681
  readonly provider?: io.flow.internal.v0.enums.FraudProvider;
20958
21682
  readonly payment_authorization_id?: string;
20959
21683
  readonly decline_reason?: io.flow.internal.v0.unions.DeclineReason;
21684
+ readonly created_at?: string;
20960
21685
  }
20961
21686
 
20962
21687
  interface FraudReviewDecision {
@@ -20967,6 +21692,7 @@ declare namespace io.flow.internal.v0.models {
20967
21692
  readonly status: io.flow.fraud.v0.enums.FraudStatus;
20968
21693
  readonly created_at: string;
20969
21694
  readonly liability?: io.flow.fraud.v0.enums.FraudLiability;
21695
+ readonly updated_by_user?: io.flow.common.v0.models.UserReference;
20970
21696
  }
20971
21697
 
20972
21698
  interface FraudReviewDecisionDeleted {
@@ -21085,12 +21811,31 @@ declare namespace io.flow.internal.v0.models {
21085
21811
  readonly percent: number;
21086
21812
  }
21087
21813
 
21814
+ interface Fulfillment {
21815
+ readonly id: string;
21816
+ readonly fulfilled_at: string;
21817
+ readonly currency: string;
21818
+ readonly order: io.flow.internal.v0.models.OrderSummary;
21819
+ readonly origin?: io.flow.internal.v0.models.FulfillmentOrigin;
21820
+ readonly lines: io.flow.internal.v0.models.FulfillmentLine[];
21821
+ readonly shipping: io.flow.internal.v0.models.FulfillmentShipping;
21822
+ readonly shopper: io.flow.internal.v0.models.ShopperSummary;
21823
+ readonly merchant: io.flow.internal.v0.models.MerchantSummary;
21824
+ readonly completes_order: boolean;
21825
+ readonly sequence_number: number;
21826
+ readonly business?: io.flow.internal.v0.models.FulfillmentBusiness;
21827
+ }
21828
+
21088
21829
  interface FulfillmentActionForm {
21089
21830
  readonly discriminator: 'fulfillment_action_form';
21090
21831
  readonly fulfillment_key: string;
21091
21832
  readonly actions: io.flow.internal.v0.models.LineActionQuantities[];
21092
21833
  }
21093
21834
 
21835
+ interface FulfillmentBusiness {
21836
+ readonly vat_registration_number: string;
21837
+ }
21838
+
21094
21839
  interface FulfillmentCancel {
21095
21840
  readonly discriminator: 'fulfillment_cancel';
21096
21841
  readonly event_id: string;
@@ -21109,6 +21854,41 @@ declare namespace io.flow.internal.v0.models {
21109
21854
  readonly key: string;
21110
21855
  }
21111
21856
 
21857
+ interface FulfillmentLine {
21858
+ readonly item: io.flow.internal.v0.models.ItemSummary;
21859
+ readonly quantity: number;
21860
+ readonly unit_price: number;
21861
+ readonly price: number;
21862
+ readonly discount: number;
21863
+ readonly tax: number;
21864
+ readonly duty: number;
21865
+ readonly subsidies: io.flow.internal.v0.models.FulfillmentSubsidyBreakdown;
21866
+ }
21867
+
21868
+ interface FulfillmentOrigin {
21869
+ readonly country: string;
21870
+ readonly province_code?: string;
21871
+ }
21872
+
21873
+ interface FulfillmentProofExternalFulfillmentProofReference {
21874
+ readonly discriminator: 'external_fulfillment';
21875
+ readonly id: string;
21876
+ }
21877
+
21878
+ interface FulfillmentProofLabelTrackingReference {
21879
+ readonly discriminator: 'label_tracking';
21880
+ readonly id: string;
21881
+ }
21882
+
21883
+ interface FulfillmentProofShippingNotificationReference {
21884
+ readonly discriminator: 'shipping_notification';
21885
+ readonly id: string;
21886
+ }
21887
+
21888
+ interface FulfillmentReference {
21889
+ readonly id: string;
21890
+ }
21891
+
21112
21892
  interface FulfillmentShipmentTracking {
21113
21893
  readonly fulfillment_key: string;
21114
21894
  readonly flow_tracking_number: string;
@@ -21117,6 +21897,14 @@ declare namespace io.flow.internal.v0.models {
21117
21897
  readonly items: io.flow.order.management.v0.models.FulfillmentItem[];
21118
21898
  }
21119
21899
 
21900
+ interface FulfillmentShipping {
21901
+ readonly price: number;
21902
+ readonly discount: number;
21903
+ readonly tax: number;
21904
+ readonly duty: number;
21905
+ readonly subsidies: io.flow.internal.v0.models.FulfillmentSubsidyBreakdown;
21906
+ }
21907
+
21120
21908
  interface FulfillmentSnapshot {
21121
21909
  readonly tracking_source: string;
21122
21910
  readonly fulfillment_status?: string;
@@ -21127,6 +21915,11 @@ declare namespace io.flow.internal.v0.models {
21127
21915
  readonly fulfillment_updated_at?: string;
21128
21916
  }
21129
21917
 
21918
+ interface FulfillmentSubsidyBreakdown {
21919
+ readonly tax: number;
21920
+ readonly duty: number;
21921
+ }
21922
+
21130
21923
  interface FxFee {
21131
21924
  readonly base: io.flow.common.v0.models.Money;
21132
21925
  readonly local: io.flow.common.v0.models.Money;
@@ -21187,6 +21980,12 @@ declare namespace io.flow.internal.v0.models {
21187
21980
  readonly num_events: number;
21188
21981
  }
21189
21982
 
21983
+ interface GenericValidationError {
21984
+ readonly message: string;
21985
+ readonly reason: string;
21986
+ readonly next_action_from: io.flow.internal.v0.enums.ChannelOrderAcceptanceNextActionFrom;
21987
+ }
21988
+
21190
21989
  interface GiftCard {
21191
21990
  readonly id: string;
21192
21991
  readonly number: string;
@@ -21326,6 +22125,18 @@ declare namespace io.flow.internal.v0.models {
21326
22125
  readonly filename?: string;
21327
22126
  }
21328
22127
 
22128
+ interface HarmonizationThreshold {
22129
+ readonly id: string;
22130
+ readonly chapter: number;
22131
+ readonly value: number;
22132
+ readonly updated_at: string;
22133
+ }
22134
+
22135
+ interface HarmonizationThresholdForm {
22136
+ readonly chapter: number;
22137
+ readonly value: number;
22138
+ }
22139
+
21329
22140
  interface HarmonizationUnclassifiedStatistics {
21330
22141
  readonly organization: io.flow.common.v0.models.OrganizationSummary;
21331
22142
  readonly statistics: io.flow.internal.v0.models.UnclassifiedProductStatistic[];
@@ -22073,6 +22884,22 @@ declare namespace io.flow.internal.v0.models {
22073
22884
  readonly error: string;
22074
22885
  }
22075
22886
 
22887
+ interface IndexAssignmentDeleted {
22888
+ readonly discriminator: 'index_assignment_deleted';
22889
+ readonly event_id: string;
22890
+ readonly timestamp: string;
22891
+ readonly organization: string;
22892
+ readonly id: string;
22893
+ }
22894
+
22895
+ interface IndexAssignmentUpserted {
22896
+ readonly discriminator: 'index_assignment_upserted';
22897
+ readonly event_id: string;
22898
+ readonly timestamp: string;
22899
+ readonly organization: string;
22900
+ readonly assignment: io.flow.internal.v0.models.AlgoliaIndexAssignment;
22901
+ }
22902
+
22076
22903
  interface InstallForm {
22077
22904
  readonly token: string;
22078
22905
  }
@@ -22387,7 +23214,7 @@ declare namespace io.flow.internal.v0.models {
22387
23214
  }
22388
23215
 
22389
23216
  interface ItemHarmonization {
22390
- readonly id?: string;
23217
+ readonly id: string;
22391
23218
  readonly organization_id: string;
22392
23219
  readonly item_number: string;
22393
23220
  readonly item_name?: string;
@@ -22510,6 +23337,11 @@ declare namespace io.flow.internal.v0.models {
22510
23337
  readonly item_sales_margin: io.flow.internal.v0.models.ItemSalesMargin;
22511
23338
  }
22512
23339
 
23340
+ interface ItemSummary {
23341
+ readonly number: string;
23342
+ readonly fulfillment_method: io.flow.catalog.v0.enums.FulfillmentMethodValue;
23343
+ }
23344
+
22513
23345
  interface ItemValuesForm {
22514
23346
  readonly values: string[];
22515
23347
  }
@@ -22574,6 +23406,11 @@ declare namespace io.flow.internal.v0.models {
22574
23406
  readonly constructions: Record<string, string[]>;
22575
23407
  }
22576
23408
 
23409
+ interface LabelBase {
23410
+ readonly amount: number;
23411
+ readonly weight: number;
23412
+ }
23413
+
22577
23414
  interface LabelCancellationError {
22578
23415
  readonly code: io.flow.internal.v0.enums.LabelCancellationErrorCode;
22579
23416
  readonly messages: string[];
@@ -22603,6 +23440,10 @@ declare namespace io.flow.internal.v0.models {
22603
23440
  readonly reference_id?: string;
22604
23441
  }
22605
23442
 
23443
+ interface LabelDestination {
23444
+ readonly country: string;
23445
+ }
23446
+
22606
23447
  interface LabelGenerationAddressFailureStatusUpdateForm {
22607
23448
  readonly status: io.flow.internal.v0.enums.LabelGenerationAddressFailureStatus;
22608
23449
  }
@@ -22617,33 +23458,110 @@ declare namespace io.flow.internal.v0.models {
22617
23458
  readonly destination_errors: io.flow.internal.v0.models.DestinationError[];
22618
23459
  }
22619
23460
 
22620
- interface LabelGenerationSettings {
23461
+ interface LabelGenerationSettings {
23462
+ readonly id: string;
23463
+ readonly item_identifier?: string;
23464
+ readonly auto_generate_query?: string;
23465
+ readonly commercial_invoice_only_query?: string;
23466
+ }
23467
+
23468
+ interface LabelGenerationSettingsDeleted {
23469
+ readonly discriminator: 'label_generation_settings_deleted';
23470
+ readonly event_id: string;
23471
+ readonly timestamp: string;
23472
+ readonly organization: string;
23473
+ readonly id: string;
23474
+ }
23475
+
23476
+ interface LabelGenerationSettingsForm {
23477
+ readonly item_identifier?: string;
23478
+ readonly auto_generate_query?: string;
23479
+ readonly commercial_invoice_only_query?: string;
23480
+ }
23481
+
23482
+ interface LabelGenerationSettingsUpserted {
23483
+ readonly discriminator: 'label_generation_settings_upserted';
23484
+ readonly event_id: string;
23485
+ readonly timestamp: string;
23486
+ readonly organization: string;
23487
+ readonly label_generation_settings: io.flow.internal.v0.models.LabelGenerationSettings;
23488
+ }
23489
+
23490
+ interface LabelInvoiceRequest {
23491
+ readonly id: string;
23492
+ readonly label: io.flow.internal.v0.models.TrueUpLabelSummary;
23493
+ readonly units: io.flow.internal.v0.models.LabelUnits;
23494
+ readonly base: io.flow.internal.v0.models.LabelBase;
23495
+ readonly surcharges: io.flow.internal.v0.models.LabelSurcharge[];
23496
+ readonly total: number;
23497
+ readonly destination: io.flow.internal.v0.models.LabelDestination;
23498
+ readonly metadata: io.flow.internal.v0.models.LabelMetadata;
23499
+ }
23500
+
23501
+ interface LabelInvoiceRequestDeleted {
23502
+ readonly discriminator: 'label_invoice_request_deleted';
23503
+ readonly event_id: string;
23504
+ readonly timestamp: string;
23505
+ readonly organization: string;
23506
+ readonly id: string;
23507
+ }
23508
+
23509
+ interface LabelInvoiceRequestUpserted {
23510
+ readonly discriminator: 'label_invoice_request_upserted';
23511
+ readonly event_id: string;
23512
+ readonly timestamp: string;
23513
+ readonly organization: string;
23514
+ readonly label_invoice_request: io.flow.internal.v0.models.LabelInvoiceRequest;
23515
+ }
23516
+
23517
+ interface LabelInvoiceResponseForm {
22621
23518
  readonly id: string;
22622
- readonly item_identifier?: string;
22623
- readonly auto_generate_query?: string;
22624
- readonly commercial_invoice_only_query?: string;
23519
+ readonly label_invoice_request_id: string;
23520
+ readonly units: io.flow.internal.v0.models.LabelResponseUnits;
23521
+ readonly base: io.flow.internal.v0.models.LabelBase;
23522
+ readonly surcharges: io.flow.internal.v0.models.LabelSurchargeForm;
23523
+ readonly total: number;
22625
23524
  }
22626
23525
 
22627
- interface LabelGenerationSettingsDeleted {
22628
- readonly discriminator: 'label_generation_settings_deleted';
23526
+ interface LabelMetadata {
23527
+ readonly ratecard: io.flow.internal.v0.models.MetadataRatecard;
23528
+ readonly weights: io.flow.internal.v0.models.MetadataWeights;
23529
+ }
23530
+
23531
+ interface LabelRequestError {
23532
+ readonly id: string;
23533
+ readonly order_number: string;
23534
+ readonly created_at: string;
23535
+ readonly reference_id: string;
23536
+ readonly label_request_method?: io.flow.label.v0.enums.LabelRequestMethod;
23537
+ readonly label_trigger_method?: io.flow.label.v0.enums.LabelTriggerMethod;
23538
+ readonly order_identifier: string[];
23539
+ readonly suggested_responsibility: io.flow.internal.v0.enums.LabelRequestErrorHandlingResponsibility;
23540
+ readonly carrier_id?: string;
23541
+ readonly service_id?: string;
23542
+ readonly errors: string[];
23543
+ }
23544
+
23545
+ interface LabelRequestErrorDeleted {
23546
+ readonly discriminator: 'label_request_error_deleted';
22629
23547
  readonly event_id: string;
22630
23548
  readonly timestamp: string;
22631
23549
  readonly organization: string;
22632
23550
  readonly id: string;
22633
23551
  }
22634
23552
 
22635
- interface LabelGenerationSettingsForm {
22636
- readonly item_identifier?: string;
22637
- readonly auto_generate_query?: string;
22638
- readonly commercial_invoice_only_query?: string;
22639
- }
22640
-
22641
- interface LabelGenerationSettingsUpserted {
22642
- readonly discriminator: 'label_generation_settings_upserted';
23553
+ interface LabelRequestErrorUpserted {
23554
+ readonly discriminator: 'label_request_error_upserted';
22643
23555
  readonly event_id: string;
22644
23556
  readonly timestamp: string;
22645
23557
  readonly organization: string;
22646
- readonly label_generation_settings: io.flow.internal.v0.models.LabelGenerationSettings;
23558
+ readonly label_request_error: io.flow.internal.v0.models.LabelRequestError;
23559
+ }
23560
+
23561
+ interface LabelResponseUnits {
23562
+ readonly currency: string;
23563
+ readonly weight: io.flow.units.v0.enums.UnitOfWeight;
23564
+ readonly length?: io.flow.units.v0.enums.UnitOfLength;
22647
23565
  }
22648
23566
 
22649
23567
  interface LabelSummary {
@@ -22660,6 +23578,42 @@ declare namespace io.flow.internal.v0.models {
22660
23578
  readonly service?: io.flow.reference.v0.models.CarrierService;
22661
23579
  }
22662
23580
 
23581
+ interface LabelSurcharge {
23582
+ readonly amount: number;
23583
+ readonly type: io.flow.internal.v0.enums.TrueUpSurchargeType;
23584
+ readonly detail: io.flow.internal.v0.unions.LabelSurchargeDetail;
23585
+ }
23586
+
23587
+ interface LabelSurchargeDetailFlat {
23588
+ readonly discriminator: 'flat';
23589
+ readonly placeholder?: string;
23590
+ }
23591
+
23592
+ interface LabelSurchargeDetailPerWeightUnit {
23593
+ readonly discriminator: 'per_weight_unit';
23594
+ readonly fee: number;
23595
+ }
23596
+
23597
+ interface LabelSurchargeDetailPercentage {
23598
+ readonly discriminator: 'percentage';
23599
+ readonly percentage: number;
23600
+ }
23601
+
23602
+ interface LabelSurchargeForm {
23603
+ readonly fuel?: io.flow.internal.v0.models.LabelSurchargeSingleForm;
23604
+ readonly remote_area?: io.flow.internal.v0.models.LabelSurchargeSingleForm;
23605
+ readonly oversize?: io.flow.internal.v0.models.LabelSurchargeSingleForm;
23606
+ readonly duties_paid?: io.flow.internal.v0.models.LabelSurchargeSingleForm;
23607
+ readonly emergency?: io.flow.internal.v0.models.LabelSurchargeSingleForm;
23608
+ readonly peak?: io.flow.internal.v0.models.LabelSurchargeSingleForm;
23609
+ }
23610
+
23611
+ interface LabelSurchargeSingleForm {
23612
+ readonly amount: number;
23613
+ readonly percentage?: number;
23614
+ readonly fee_per_weight_unit?: number;
23615
+ }
23616
+
22663
23617
  interface LabelTaxonomy {
22664
23618
  readonly discriminator: 'item';
22665
23619
  readonly item_type: string;
@@ -22688,8 +23642,10 @@ declare namespace io.flow.internal.v0.models {
22688
23642
  interface LabelTransaction {
22689
23643
  readonly discriminator: 'label_transaction';
22690
23644
  readonly label: io.flow.internal.v0.models.BillingLabelSummary;
22691
- readonly order?: io.flow.internal.v0.models.BillingOrderTransactionOrderReference;
22692
23645
  readonly tracking: io.flow.internal.v0.models.BillingLabelTrackingSummaryReference;
23646
+ readonly gross_value: io.flow.common.v0.models.Price;
23647
+ readonly discount: io.flow.internal.v0.models.Discount;
23648
+ readonly order?: io.flow.internal.v0.models.BillingOrderTransactionOrderReference;
22693
23649
  readonly id: string;
22694
23650
  readonly type: io.flow.internal.v0.enums.BillingTransactionType;
22695
23651
  readonly status: io.flow.internal.v0.enums.BillingTransactionStatus;
@@ -22714,6 +23670,12 @@ declare namespace io.flow.internal.v0.models {
22714
23670
  readonly label_transaction: io.flow.internal.v0.models.LabelTransaction;
22715
23671
  }
22716
23672
 
23673
+ interface LabelUnits {
23674
+ readonly currency: string;
23675
+ readonly weight: io.flow.units.v0.enums.UnitOfWeight;
23676
+ readonly length: io.flow.units.v0.enums.UnitOfLength;
23677
+ }
23678
+
22717
23679
  interface LabeledContent {
22718
23680
  readonly label: io.flow.internal.v0.models.ContentLabel;
22719
23681
  readonly contents: io.flow.internal.v0.unions.ContentItem[];
@@ -23012,11 +23974,6 @@ declare namespace io.flow.internal.v0.models {
23012
23974
  readonly url: string;
23013
23975
  }
23014
23976
 
23015
- interface LogisticsCenterCheck {
23016
- readonly issues?: string[];
23017
- readonly is_valid: boolean;
23018
- }
23019
-
23020
23977
  interface Logo {
23021
23978
  readonly url: string;
23022
23979
  }
@@ -23417,6 +24374,44 @@ declare namespace io.flow.internal.v0.models {
23417
24374
  readonly organization_reference: io.flow.common.v0.models.Organization;
23418
24375
  }
23419
24376
 
24377
+ interface MerchantCharges {
24378
+ readonly labels: number;
24379
+ readonly total: number;
24380
+ }
24381
+
24382
+ interface MerchantFees {
24383
+ readonly duty_guarantee: number;
24384
+ readonly mor: number;
24385
+ readonly fraud: number;
24386
+ readonly fx: number;
24387
+ readonly processing: number;
24388
+ readonly rate_lock: number;
24389
+ readonly transfer: number;
24390
+ readonly total: number;
24391
+ }
24392
+
24393
+ interface MerchantGuidAssignment {
24394
+ readonly id: string;
24395
+ readonly merchant_guid: string;
24396
+ readonly created_at: string;
24397
+ }
24398
+
24399
+ interface MerchantGuidAssignmentDeleted {
24400
+ readonly discriminator: 'merchant_guid_assignment_deleted';
24401
+ readonly event_id: string;
24402
+ readonly timestamp: string;
24403
+ readonly organization: string;
24404
+ readonly id: string;
24405
+ }
24406
+
24407
+ interface MerchantGuidAssignmentUpserted {
24408
+ readonly discriminator: 'merchant_guid_assignment_upserted';
24409
+ readonly event_id: string;
24410
+ readonly timestamp: string;
24411
+ readonly organization: string;
24412
+ readonly merchant_guid_assignment: io.flow.internal.v0.models.MerchantGuidAssignment;
24413
+ }
24414
+
23420
24415
  interface MerchantOfRecordEntitySettings {
23421
24416
  readonly id: string;
23422
24417
  readonly merchant_of_record_entity: io.flow.common.v0.models.MerchantOfRecordEntity;
@@ -23442,6 +24437,42 @@ declare namespace io.flow.internal.v0.models {
23442
24437
  readonly currency?: string;
23443
24438
  }
23444
24439
 
24440
+ interface MerchantSearchResult {
24441
+ readonly organization_id: string;
24442
+ readonly shop_name?: string;
24443
+ readonly legal_name: string;
24444
+ readonly onboarding_current_state: io.flow.organization.onboarding.state.v0.unions.OnboardingState;
24445
+ }
24446
+
24447
+ interface MerchantSubsidies {
24448
+ readonly fees: io.flow.internal.v0.models.ShopperFees;
24449
+ readonly tax: number;
24450
+ readonly duty: number;
24451
+ readonly total: number;
24452
+ }
24453
+
24454
+ interface MerchantSummary {
24455
+ readonly subsidies: io.flow.internal.v0.models.MerchantSubsidies;
24456
+ readonly fees: io.flow.internal.v0.models.MerchantFees;
24457
+ readonly charges: io.flow.internal.v0.models.MerchantCharges;
24458
+ readonly discounts: number;
24459
+ }
24460
+
24461
+ interface MetadataProposition {
24462
+ readonly shipping_method: io.flow.internal.v0.models.ShippingMethodReference;
24463
+ readonly name: string;
24464
+ }
24465
+
24466
+ interface MetadataRatecard {
24467
+ readonly id: string;
24468
+ readonly proposition: io.flow.internal.v0.models.MetadataProposition;
24469
+ }
24470
+
24471
+ interface MetadataWeights {
24472
+ readonly dead?: io.flow.internal.v0.models.WeightsDead;
24473
+ readonly dimensional?: io.flow.internal.v0.models.WeightsDimensional;
24474
+ }
24475
+
23445
24476
  interface NextBillingStatement {
23446
24477
  readonly date: string;
23447
24478
  readonly amount: io.flow.common.v0.models.Price;
@@ -23477,6 +24508,7 @@ declare namespace io.flow.internal.v0.models {
23477
24508
  readonly description: string;
23478
24509
  readonly result: io.flow.internal.v0.enums.OnboardingAuditResult;
23479
24510
  readonly messages: io.flow.internal.v0.models.OnboardingAuditMessage[];
24511
+ readonly execution_time_ms?: number;
23480
24512
  }
23481
24513
 
23482
24514
  interface OnboardingAuditSnapshot {
@@ -23501,7 +24533,7 @@ declare namespace io.flow.internal.v0.models {
23501
24533
  readonly compliance_full_review_required: boolean;
23502
24534
  readonly application_received: string;
23503
24535
  readonly legal_name: string;
23504
- readonly shop_name: string;
24536
+ readonly shop_name?: string;
23505
24537
  readonly organization_id: string;
23506
24538
  readonly onboarding_current_state: io.flow.organization.onboarding.state.v0.unions.OnboardingState;
23507
24539
  readonly setup_completed_at?: string;
@@ -23780,6 +24812,12 @@ declare namespace io.flow.internal.v0.models {
23780
24812
  readonly authorization?: io.flow.payment.v0.unions.AuthorizationForm;
23781
24813
  }
23782
24814
 
24815
+ interface OrderSummary {
24816
+ readonly id: string;
24817
+ readonly organization: io.flow.common.v0.models.OrganizationReference;
24818
+ readonly number: string;
24819
+ }
24820
+
23783
24821
  interface OrderTransaction {
23784
24822
  readonly discriminator: 'order_transaction';
23785
24823
  readonly order: io.flow.internal.v0.models.BillingOrderTransactionOrderReference;
@@ -23807,6 +24845,13 @@ declare namespace io.flow.internal.v0.models {
23807
24845
  readonly order_transaction: io.flow.internal.v0.models.OrderTransaction;
23808
24846
  }
23809
24847
 
24848
+ interface OrderValidationError {
24849
+ readonly message: string;
24850
+ readonly reason: io.flow.internal.v0.enums.ChannelOrderAcceptanceRejectionReason;
24851
+ readonly action?: io.flow.internal.v0.enums.ChannelOrderAcceptanceErrorAction;
24852
+ readonly next_action_from: io.flow.internal.v0.enums.ChannelOrderAcceptanceNextActionFrom;
24853
+ }
24854
+
23810
24855
  interface OrganizationAccount {
23811
24856
  readonly organization: io.flow.common.v0.models.OrganizationReference;
23812
24857
  readonly id: string;
@@ -23945,6 +24990,32 @@ declare namespace io.flow.internal.v0.models {
23945
24990
  readonly organization_currency_setting: io.flow.internal.v0.models.OrganizationCurrencySetting;
23946
24991
  }
23947
24992
 
24993
+ interface OrganizationDeactivation {
24994
+ readonly id: string;
24995
+ readonly deactivate_at: string;
24996
+ readonly created_at: string;
24997
+ }
24998
+
24999
+ interface OrganizationDeactivationDeleted {
25000
+ readonly discriminator: 'organization_deactivation_deleted';
25001
+ readonly event_id: string;
25002
+ readonly timestamp: string;
25003
+ readonly organization: string;
25004
+ readonly id: string;
25005
+ }
25006
+
25007
+ interface OrganizationDeactivationForm {
25008
+ readonly deactivate_at: string;
25009
+ }
25010
+
25011
+ interface OrganizationDeactivationUpserted {
25012
+ readonly discriminator: 'organization_deactivation_upserted';
25013
+ readonly event_id: string;
25014
+ readonly timestamp: string;
25015
+ readonly organization: string;
25016
+ readonly organization_deactivation: io.flow.internal.v0.models.OrganizationDeactivation;
25017
+ }
25018
+
23948
25019
  interface OrganizationDebugTransaction {
23949
25020
  readonly debug?: io.flow.internal.v0.models.DebugTransactionDetails;
23950
25021
  readonly order?: io.flow.internal.v0.models.DebugOrder;
@@ -24149,6 +25220,13 @@ declare namespace io.flow.internal.v0.models {
24149
25220
  readonly organization_status_change: io.flow.internal.v0.models.OrganizationStatusChange;
24150
25221
  }
24151
25222
 
25223
+ interface OrganizationsAuditCheckReport {
25224
+ readonly organization_id: string;
25225
+ readonly organization_status: io.flow.common.v0.enums.OrganizationStatus;
25226
+ readonly onboarding_state: io.flow.organization.onboarding.state.v0.unions.OnboardingState;
25227
+ readonly audit_result: io.flow.internal.v0.enums.OnboardingAuditResult;
25228
+ }
25229
+
24152
25230
  interface Partner {
24153
25231
  readonly id: string;
24154
25232
  readonly name: string;
@@ -24333,6 +25411,12 @@ declare namespace io.flow.internal.v0.models {
24333
25411
  readonly status?: io.flow.internal.v0.enums.PaymentSummaryStatus;
24334
25412
  }
24335
25413
 
25414
+ interface PayoutStatusCounts {
25415
+ readonly scheduled: number;
25416
+ readonly sent: number;
25417
+ readonly failed: number;
25418
+ }
25419
+
24336
25420
  interface PaypalAccount {
24337
25421
  readonly discriminator: 'paypal_account';
24338
25422
  readonly id: string;
@@ -24360,6 +25444,7 @@ declare namespace io.flow.internal.v0.models {
24360
25444
  readonly country: string;
24361
25445
  readonly authentication: io.flow.internal.v0.models.PaypalAuthenticationForm;
24362
25446
  readonly status?: io.flow.internal.v0.enums.ProcessorEntityStatus;
25447
+ readonly organization_capability?: io.flow.internal.v0.enums.OrganizationCapability;
24363
25448
  }
24364
25449
 
24365
25450
  interface PaypalAccountReference {
@@ -24482,6 +25567,7 @@ declare namespace io.flow.internal.v0.models {
24482
25567
  readonly external_id: string;
24483
25568
  readonly country: string;
24484
25569
  readonly status?: io.flow.internal.v0.enums.ProcessorEntityStatus;
25570
+ readonly organization_capability?: io.flow.internal.v0.enums.OrganizationCapability;
24485
25571
  }
24486
25572
 
24487
25573
  interface PaypalPaymentDeleted {
@@ -24791,6 +25877,12 @@ declare namespace io.flow.internal.v0.models {
24791
25877
  readonly column_settings: io.flow.internal.v0.models.HarmonizationColumnSetting[];
24792
25878
  }
24793
25879
 
25880
+ interface ProductRestrictionResultValidationError {
25881
+ readonly message: string;
25882
+ readonly reason: string;
25883
+ readonly next_action_from: io.flow.internal.v0.enums.ChannelOrderAcceptanceNextActionFrom;
25884
+ }
25885
+
24794
25886
  interface ProductReviewHistory {
24795
25887
  readonly product_id: string;
24796
25888
  readonly reviews: io.flow.internal.v0.models.RestrictionHistoryItemReviewDecision[];
@@ -24816,6 +25908,20 @@ declare namespace io.flow.internal.v0.models {
24816
25908
  readonly shipping_notification_id: string;
24817
25909
  }
24818
25910
 
25911
+ interface QueuedRecord {
25912
+ readonly type: string;
25913
+ readonly type_id: string;
25914
+ readonly source_type?: string;
25915
+ readonly source_id?: string;
25916
+ readonly environment?: string;
25917
+ readonly created_at: string;
25918
+ readonly num_attempts: number;
25919
+ readonly next_attempt_at: string;
25920
+ readonly errors?: string[];
25921
+ readonly stacktrace?: string;
25922
+ readonly snooze_id?: string;
25923
+ }
25924
+
24819
25925
  interface QuoteRequest {
24820
25926
  readonly id: string;
24821
25927
  readonly request_type: io.flow.internal.v0.enums.QuoteRequestType;
@@ -24923,10 +26029,12 @@ declare namespace io.flow.internal.v0.models {
24923
26029
  interface RateLevel {
24924
26030
  readonly id: string;
24925
26031
  readonly name: string;
26032
+ readonly key: string;
24926
26033
  }
24927
26034
 
24928
26035
  interface RateLevelForm {
24929
26036
  readonly name: string;
26037
+ readonly key: string;
24930
26038
  }
24931
26039
 
24932
26040
  interface RateLevelOrganization {
@@ -24955,6 +26063,7 @@ declare namespace io.flow.internal.v0.models {
24955
26063
  readonly id: string;
24956
26064
  readonly name: string;
24957
26065
  readonly effective_at: string;
26066
+ readonly key: string;
24958
26067
  }
24959
26068
 
24960
26069
  interface RateNameSummary {
@@ -25260,6 +26369,23 @@ declare namespace io.flow.internal.v0.models {
25260
26369
  readonly number: string;
25261
26370
  }
25262
26371
 
26372
+ interface Report {
26373
+ readonly key: string;
26374
+ readonly status: io.flow.internal.v0.enums.ReportStatus;
26375
+ readonly from: string;
26376
+ readonly to: string;
26377
+ readonly organization_id?: string;
26378
+ readonly sales_url?: string;
26379
+ readonly refunds_url?: string;
26380
+ }
26381
+
26382
+ interface ReportForm {
26383
+ readonly key?: string;
26384
+ readonly from: string;
26385
+ readonly to: string;
26386
+ readonly organization_id?: string;
26387
+ }
26388
+
25263
26389
  interface ReportRuleDecision {
25264
26390
  readonly rule_id: string;
25265
26391
  readonly rule_name: string;
@@ -25271,6 +26397,11 @@ declare namespace io.flow.internal.v0.models {
25271
26397
  readonly task_id: string;
25272
26398
  }
25273
26399
 
26400
+ interface ReportingDetails {
26401
+ readonly sales_records?: any /*object*/[];
26402
+ readonly refund_records?: any /*object*/[];
26403
+ }
26404
+
25274
26405
  interface RequeueRequestForm {
25275
26406
  readonly product_ids?: string[];
25276
26407
  readonly hs6_codes?: string[];
@@ -25362,6 +26493,7 @@ declare namespace io.flow.internal.v0.models {
25362
26493
  interface RestrictionOrganizationDecisionSummary {
25363
26494
  readonly organization: io.flow.internal.v0.models.RestrictionOrganization;
25364
26495
  readonly earliest_pending_date: string;
26496
+ readonly priority_score: number;
25365
26497
  readonly date: string;
25366
26498
  readonly statuses: io.flow.internal.v0.models.RestrictionStatusMetadata[];
25367
26499
  readonly rules: io.flow.internal.v0.models.RestrictionRuleMetadata[];
@@ -25431,6 +26563,7 @@ declare namespace io.flow.internal.v0.models {
25431
26563
  readonly positive_keywords: string[];
25432
26564
  readonly negative_keywords: string[];
25433
26565
  readonly value_threshold_usd?: number;
26566
+ readonly auto_review_criteria?: io.flow.internal.v0.models.AutoReviewCriteria[];
25434
26567
  }
25435
26568
 
25436
26569
  interface RestrictionRuleDecisionForm {
@@ -25447,6 +26580,7 @@ declare namespace io.flow.internal.v0.models {
25447
26580
  readonly positive_keywords: string[];
25448
26581
  readonly negative_keywords: string[];
25449
26582
  readonly value_threshold_usd?: number;
26583
+ readonly auto_review_criteria?: io.flow.internal.v0.models.AutoReviewCriteria[];
25450
26584
  }
25451
26585
 
25452
26586
  interface RestrictionRuleMetadata {
@@ -25484,6 +26618,16 @@ declare namespace io.flow.internal.v0.models {
25484
26618
  readonly destinations: io.flow.reference.v0.models.Country[];
25485
26619
  }
25486
26620
 
26621
+ interface Retracking {
26622
+ readonly carrier: string;
26623
+ readonly tracking_number?: string;
26624
+ }
26625
+
26626
+ interface RetrackingForm {
26627
+ readonly carrier: string;
26628
+ readonly carrier_tracking_numbers: string[];
26629
+ }
26630
+
25487
26631
  interface ReturnPolicyDeleted {
25488
26632
  readonly discriminator: 'return_policy_deleted';
25489
26633
  readonly event_id: string;
@@ -25541,6 +26685,14 @@ declare namespace io.flow.internal.v0.models {
25541
26685
  readonly processor: io.flow.internal.v0.enums.Processor;
25542
26686
  }
25543
26687
 
26688
+ interface SandboxSetup {
26689
+ readonly requested_by: string;
26690
+ }
26691
+
26692
+ interface SandboxSetupForm {
26693
+ readonly requested_by: string;
26694
+ }
26695
+
25544
26696
  interface Screen {
25545
26697
  readonly id: string;
25546
26698
  readonly q: string;
@@ -25672,6 +26824,10 @@ declare namespace io.flow.internal.v0.models {
25672
26824
  readonly destination: string;
25673
26825
  }
25674
26826
 
26827
+ interface ShippingMethodReference {
26828
+ readonly id: string;
26829
+ }
26830
+
25675
26831
  interface Shop {
25676
26832
  readonly id: string;
25677
26833
  readonly organization?: io.flow.common.v0.models.OrganizationReference;
@@ -25780,6 +26936,16 @@ declare namespace io.flow.internal.v0.models {
25780
26936
  readonly placeholder: string;
25781
26937
  }
25782
26938
 
26939
+ interface ShopifyMarketsDiscrepancy {
26940
+ readonly organization_id: string;
26941
+ readonly count: number;
26942
+ }
26943
+
26944
+ interface ShopifyMarketsDiscrepancyData {
26945
+ readonly total_count: number;
26946
+ readonly discrepancies: io.flow.internal.v0.models.ShopifyMarketsDiscrepancy[];
26947
+ }
26948
+
25783
26949
  interface ShopifyMarketsIncorporationCountry {
25784
26950
  readonly country: string;
25785
26951
  readonly state?: string;
@@ -25787,6 +26953,24 @@ declare namespace io.flow.internal.v0.models {
25787
26953
  readonly jurisdiction?: string;
25788
26954
  }
25789
26955
 
26956
+ interface ShopifyMarketsInternalOrderMetrics {
26957
+ readonly total_order_count: number;
26958
+ }
26959
+
26960
+ interface ShopifyMarketsMetricsDeleted {
26961
+ readonly discriminator: 'shopify_markets_metrics_deleted';
26962
+ readonly event_id: string;
26963
+ readonly timestamp: string;
26964
+ readonly id: string;
26965
+ }
26966
+
26967
+ interface ShopifyMarketsMetricsUpserted {
26968
+ readonly discriminator: 'shopify_markets_metrics_upserted';
26969
+ readonly event_id: string;
26970
+ readonly timestamp: string;
26971
+ readonly shopify_markets_metrics: io.flow.internal.v0.models.ShopifyMarketsOrdersMetrics;
26972
+ }
26973
+
25790
26974
  interface ShopifyMarketsOrder {
25791
26975
  readonly id: string;
25792
26976
  readonly model: io.flow.shopify.markets.v0.models.ShopifyOrder;
@@ -25808,8 +26992,17 @@ declare namespace io.flow.internal.v0.models {
25808
26992
  readonly shopify_markets_order: io.flow.internal.v0.models.ShopifyMarketsOrder;
25809
26993
  }
25810
26994
 
26995
+ interface ShopifyMarketsOrdersMetrics {
26996
+ readonly id: string;
26997
+ readonly range: io.flow.common.v0.models.DatetimeRange;
26998
+ readonly shopify: io.flow.internal.v0.models.ShopifyMarketsShopifyOrderMetrics;
26999
+ readonly internal: io.flow.internal.v0.models.ShopifyMarketsInternalOrderMetrics;
27000
+ readonly discrepancy_data: io.flow.internal.v0.models.ShopifyMarketsDiscrepancyData;
27001
+ }
27002
+
25811
27003
  interface ShopifyMarketsShop {
25812
27004
  readonly id: string;
27005
+ readonly shopify_shop_id?: string;
25813
27006
  readonly channel: io.flow.common.v0.models.ChannelReference;
25814
27007
  readonly domain: string;
25815
27008
  readonly myshopify_domain: string;
@@ -25869,6 +27062,10 @@ declare namespace io.flow.internal.v0.models {
25869
27062
  readonly shopify_markets_shop: io.flow.internal.v0.models.ShopifyMarketsShop;
25870
27063
  }
25871
27064
 
27065
+ interface ShopifyMarketsShopifyOrderMetrics {
27066
+ readonly total_order_count: number;
27067
+ }
27068
+
25872
27069
  interface ShopifyMarketsSubsidiaryCompany {
25873
27070
  readonly legal_name?: string;
25874
27071
  readonly incorporation_country?: io.flow.internal.v0.models.ShopifyMarketsIncorporationCountry;
@@ -26175,6 +27372,11 @@ declare namespace io.flow.internal.v0.models {
26175
27372
  readonly shop: io.flow.internal.v0.models.Shop;
26176
27373
  }
26177
27374
 
27375
+ interface ShopifyStorePassword {
27376
+ readonly temporary_password: string;
27377
+ readonly expiry: string;
27378
+ }
27379
+
26178
27380
  interface ShopifyWebhook {
26179
27381
  readonly id: string;
26180
27382
  readonly shop_id: string;
@@ -26192,6 +27394,18 @@ declare namespace io.flow.internal.v0.models {
26192
27394
  readonly topic: io.flow.shopify.external.v0.enums.Topic;
26193
27395
  }
26194
27396
 
27397
+ interface ShopperFees {
27398
+ readonly fuel: number;
27399
+ readonly remote_area: number;
27400
+ readonly oversize: number;
27401
+ readonly ccf: number;
27402
+ readonly total: number;
27403
+ }
27404
+
27405
+ interface ShopperSummary {
27406
+ readonly fees: io.flow.internal.v0.models.ShopperFees;
27407
+ }
27408
+
26195
27409
  interface SimpleAccountReference {
26196
27410
  readonly id: string;
26197
27411
  }
@@ -26407,6 +27621,7 @@ declare namespace io.flow.internal.v0.models {
26407
27621
  readonly country: string;
26408
27622
  readonly authentication: io.flow.internal.v0.models.StripeAuthenticationForm;
26409
27623
  readonly status?: io.flow.internal.v0.enums.ProcessorEntityStatus;
27624
+ readonly organization_capability?: io.flow.internal.v0.enums.OrganizationCapability;
26410
27625
  }
26411
27626
 
26412
27627
  interface StripeAuthentication {
@@ -26535,6 +27750,7 @@ declare namespace io.flow.internal.v0.models {
26535
27750
  readonly account_type: io.flow.stripe.v0.enums.AccountType;
26536
27751
  readonly status?: io.flow.internal.v0.enums.ProcessorEntityStatus;
26537
27752
  readonly country: string;
27753
+ readonly organization_capability?: io.flow.internal.v0.enums.OrganizationCapability;
26538
27754
  }
26539
27755
 
26540
27756
  interface StripeRefundDeleted {
@@ -27000,6 +28216,25 @@ declare namespace io.flow.internal.v0.models {
27000
28216
  readonly id: string;
27001
28217
  }
27002
28218
 
28219
+ interface TransactionStatement {
28220
+ readonly id: string;
28221
+ readonly statement: io.flow.internal.v0.models.BillingStatementReference;
28222
+ }
28223
+
28224
+ interface TransactionStatementDeleted {
28225
+ readonly discriminator: 'transaction_statement_deleted';
28226
+ readonly event_id: string;
28227
+ readonly timestamp: string;
28228
+ readonly id: string;
28229
+ }
28230
+
28231
+ interface TransactionStatementUpserted {
28232
+ readonly discriminator: 'transaction_statement_upserted';
28233
+ readonly event_id: string;
28234
+ readonly timestamp: string;
28235
+ readonly transaction_statement: io.flow.internal.v0.models.TransactionStatement;
28236
+ }
28237
+
27003
28238
  interface TransferTransaction {
27004
28239
  readonly discriminator: 'transfer_transaction';
27005
28240
  readonly method: io.flow.internal.v0.enums.TransferMethod;
@@ -27048,6 +28283,34 @@ declare namespace io.flow.internal.v0.models {
27048
28283
  readonly description: string;
27049
28284
  }
27050
28285
 
28286
+ interface TrueUpLabelSummary {
28287
+ readonly id: string;
28288
+ readonly carrier_service_id: string;
28289
+ readonly carrier_tracking_number: string;
28290
+ readonly flow_tracking_number: string;
28291
+ readonly created_at: string;
28292
+ }
28293
+
28294
+ interface UnassignedMerchantGuid {
28295
+ readonly id: string;
28296
+ readonly merchant_guid: string;
28297
+ readonly created_at: string;
28298
+ }
28299
+
28300
+ interface UnassignedMerchantGuidDeleted {
28301
+ readonly discriminator: 'unassigned_merchant_guid_deleted';
28302
+ readonly event_id: string;
28303
+ readonly timestamp: string;
28304
+ readonly id: string;
28305
+ }
28306
+
28307
+ interface UnassignedMerchantGuidUpserted {
28308
+ readonly discriminator: 'unassigned_merchant_guid_upserted';
28309
+ readonly event_id: string;
28310
+ readonly timestamp: string;
28311
+ readonly unassigned_merchant_guid: io.flow.internal.v0.models.UnassignedMerchantGuid;
28312
+ }
28313
+
27051
28314
  interface UnclassifiedProductStatistic {
27052
28315
  readonly status: io.flow.internal.v0.enums.UnclassifiedProductStatus;
27053
28316
  readonly number_of_items: number;
@@ -27269,6 +28532,16 @@ declare namespace io.flow.internal.v0.models {
27269
28532
  readonly created_at: string;
27270
28533
  }
27271
28534
 
28535
+ interface WashCarrierActualFile {
28536
+ readonly id: string;
28537
+ readonly url: string;
28538
+ readonly status: io.flow.internal.v0.enums.WashCarrierActualFileStatus;
28539
+ }
28540
+
28541
+ interface WashCarrierActualFileForm {
28542
+ readonly url: string;
28543
+ }
28544
+
27272
28545
  interface WashExportRequest {
27273
28546
  readonly url: string;
27274
28547
  }
@@ -27289,6 +28562,17 @@ declare namespace io.flow.internal.v0.models {
27289
28562
  readonly placeholder?: any /*json*/;
27290
28563
  }
27291
28564
 
28565
+ interface WeightsDead {
28566
+ readonly weight: number;
28567
+ }
28568
+
28569
+ interface WeightsDimensional {
28570
+ readonly weight: number;
28571
+ readonly length: number;
28572
+ readonly width: number;
28573
+ readonly height: number;
28574
+ }
28575
+
27292
28576
  interface WholeOrderActionForm {
27293
28577
  readonly discriminator: 'whole_order_action_form';
27294
28578
  readonly action: io.flow.internal.v0.enums.OrderAction;
@@ -27751,6 +29035,8 @@ declare namespace io.flow.internal.v0.unions {
27751
29035
  | io.flow.internal.v0.models.AdyenCaptureUpserted
27752
29036
  | io.flow.internal.v0.models.AdyenRefundDeleted
27753
29037
  | io.flow.internal.v0.models.AdyenRefundUpserted
29038
+ | io.flow.internal.v0.models.IndexAssignmentUpserted
29039
+ | io.flow.internal.v0.models.IndexAssignmentDeleted
27754
29040
  | io.flow.internal.v0.models.AccountUpserted
27755
29041
  | io.flow.internal.v0.models.AccountUpsertedV2
27756
29042
  | io.flow.internal.v0.models.AccountDeletedV2
@@ -27792,8 +29078,12 @@ declare namespace io.flow.internal.v0.unions {
27792
29078
  | io.flow.internal.v0.models.TaxTransactionDeleted
27793
29079
  | io.flow.internal.v0.models.DutyTransactionUpserted
27794
29080
  | io.flow.internal.v0.models.DutyTransactionDeleted
29081
+ | io.flow.internal.v0.models.TransactionStatementUpserted
29082
+ | io.flow.internal.v0.models.TransactionStatementDeleted
27795
29083
  | io.flow.internal.v0.models.DailyValueUpserted
27796
29084
  | io.flow.internal.v0.models.DailyValueDeleted
29085
+ | io.flow.internal.v0.models.LabelInvoiceRequestUpserted
29086
+ | io.flow.internal.v0.models.LabelInvoiceRequestDeleted
27797
29087
  | io.flow.internal.v0.models.CalculatorOrganizationSettingsUpserted
27798
29088
  | io.flow.internal.v0.models.CalculatorOrganizationSettingsDeleted
27799
29089
  | io.flow.internal.v0.models.CarrierAccountUpsertedV2
@@ -27930,6 +29220,8 @@ declare namespace io.flow.internal.v0.unions {
27930
29220
  | io.flow.internal.v0.models.IssuerUpserted
27931
29221
  | io.flow.internal.v0.models.IssuerDeleted
27932
29222
  | io.flow.internal.v0.models.ItemFormImportRequest
29223
+ | io.flow.internal.v0.models.LabelRequestErrorUpserted
29224
+ | io.flow.internal.v0.models.LabelRequestErrorDeleted
27933
29225
  | io.flow.internal.v0.models.LabelTrackingSummaryUpserted
27934
29226
  | io.flow.internal.v0.models.LabelTrackingSummaryDeleted
27935
29227
  | io.flow.internal.v0.models.LocalizedItemUpsertedV2
@@ -27955,8 +29247,14 @@ declare namespace io.flow.internal.v0.unions {
27955
29247
  | io.flow.internal.v0.models.OrganizationBusinessEntityUpserted
27956
29248
  | io.flow.internal.v0.models.OrganizationStatusChangeUpserted
27957
29249
  | io.flow.internal.v0.models.OrganizationStatusChangeDeleted
29250
+ | io.flow.internal.v0.models.OrganizationDeactivationUpserted
29251
+ | io.flow.internal.v0.models.OrganizationDeactivationDeleted
29252
+ | io.flow.internal.v0.models.MerchantGuidAssignmentUpserted
29253
+ | io.flow.internal.v0.models.MerchantGuidAssignmentDeleted
27958
29254
  | io.flow.internal.v0.models.PartnerOrganizationSettingsUpserted
27959
29255
  | io.flow.internal.v0.models.PartnerOrganizationSettingsDeleted
29256
+ | io.flow.internal.v0.models.UnassignedMerchantGuidUpserted
29257
+ | io.flow.internal.v0.models.UnassignedMerchantGuidDeleted
27960
29258
  | io.flow.internal.v0.models.InternalAuthorizationUpserted
27961
29259
  | io.flow.internal.v0.models.InternalAuthorizationDeleted
27962
29260
  | io.flow.internal.v0.models.AfterpayAuthorizationUpserted
@@ -28020,6 +29318,8 @@ declare namespace io.flow.internal.v0.unions {
28020
29318
  | io.flow.internal.v0.models.ShopifyMarketsWebhookRegistrationDeleted
28021
29319
  | io.flow.internal.v0.models.ShopifyMarketsShopStatisticsUpserted
28022
29320
  | io.flow.internal.v0.models.ShopifyMarketsShopStatisticsDeleted
29321
+ | io.flow.internal.v0.models.ShopifyMarketsMetricsUpserted
29322
+ | io.flow.internal.v0.models.ShopifyMarketsMetricsDeleted
28023
29323
  | io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventUpserted
28024
29324
  | io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventDeleted
28025
29325
  | io.flow.internal.v0.models.ShopifyOrderFulfillmentsSnapshotUpserted
@@ -28074,6 +29374,10 @@ declare namespace io.flow.internal.v0.unions {
28074
29374
  type FuelSurchargeServiceFeePutForm =
28075
29375
  | io.flow.internal.v0.models.FuelSurchargeServiceFeePercentPutForm
28076
29376
  | io.flow.internal.v0.models.FuelSurchargeServiceFeeAmountByWeightPutForm;
29377
+ type FulfillmentProof =
29378
+ | io.flow.internal.v0.models.FulfillmentProofLabelTrackingReference
29379
+ | io.flow.internal.v0.models.FulfillmentProofShippingNotificationReference
29380
+ | io.flow.internal.v0.models.FulfillmentProofExternalFulfillmentProofReference;
28077
29381
  type GenerateLoad =
28078
29382
  | io.flow.internal.v0.models.GenerateLoadSingleOrg
28079
29383
  | io.flow.internal.v0.models.GenerateLoadMultipleOrgs;
@@ -28158,6 +29462,10 @@ declare namespace io.flow.internal.v0.unions {
28158
29462
  type InternalRefundForm = io.flow.internal.v0.models.AdyenRefundForm;
28159
29463
  type InternalTransactionDetails =
28160
29464
  io.flow.internal.v0.models.InternalTransactionDetailsCard;
29465
+ type LabelSurchargeDetail =
29466
+ | io.flow.internal.v0.models.LabelSurchargeDetailFlat
29467
+ | io.flow.internal.v0.models.LabelSurchargeDetailPercentage
29468
+ | io.flow.internal.v0.models.LabelSurchargeDetailPerWeightUnit;
28161
29469
  type LocalizableContent =
28162
29470
  | io.flow.internal.v0.models.LocalizableContentReference
28163
29471
  | io.flow.internal.v0.models.Localization;
@@ -28463,6 +29771,8 @@ export type AlertFailureSummaryDetail =
28463
29771
  export type AlertImportSummary = io.flow.internal.v0.models.AlertImportSummary;
28464
29772
  export type AlertRequeueSummary =
28465
29773
  io.flow.internal.v0.models.AlertRequeueSummary;
29774
+ export type AlgoliaIndexAssignment =
29775
+ io.flow.internal.v0.models.AlgoliaIndexAssignment;
28466
29776
  export type AllItemsExport = io.flow.internal.v0.models.AllItemsExport;
28467
29777
  export type AllOrganizationsMembership =
28468
29778
  io.flow.internal.v0.models.AllOrganizationsMembership;
@@ -28499,6 +29809,7 @@ export type AuthorizedOrderCharge =
28499
29809
  export type AuthorizedShippingCharge =
28500
29810
  io.flow.internal.v0.models.AuthorizedShippingCharge;
28501
29811
  export type AutoRestrictRule = io.flow.internal.v0.enums.AutoRestrictRule;
29812
+ export type AutoReviewCriteria = io.flow.internal.v0.models.AutoReviewCriteria;
28502
29813
  export type Backfill = io.flow.internal.v0.models.Backfill;
28503
29814
  export type BackfillForm = io.flow.internal.v0.models.BackfillForm;
28504
29815
  export type BankAccountReference =
@@ -28555,8 +29866,6 @@ export type BillingStatementBatchDeleted =
28555
29866
  io.flow.internal.v0.models.BillingStatementBatchDeleted;
28556
29867
  export type BillingStatementBatchFileKey =
28557
29868
  io.flow.internal.v0.enums.BillingStatementBatchFileKey;
28558
- export type BillingStatementBatchReconciliation =
28559
- io.flow.internal.v0.models.BillingStatementBatchReconciliation;
28560
29869
  export type BillingStatementBatchReference =
28561
29870
  io.flow.internal.v0.models.BillingStatementBatchReference;
28562
29871
  export type BillingStatementBatchStatement =
@@ -28677,6 +29986,10 @@ export type BulkClassificationAction =
28677
29986
  export type ByRuleSnapshot = io.flow.internal.v0.models.ByRuleSnapshot;
28678
29987
  export type CalculatedTaxAmount =
28679
29988
  io.flow.internal.v0.models.CalculatedTaxAmount;
29989
+ export type CalculatorDtcePostBody =
29990
+ io.flow.internal.v0.models.CalculatorDtcePostBody;
29991
+ export type CalculatorDtceProduct =
29992
+ io.flow.internal.v0.models.CalculatorDtceProduct;
28680
29993
  export type CalculatorEngine = io.flow.internal.v0.enums.CalculatorEngine;
28681
29994
  export type CalculatorOrganizationSettings =
28682
29995
  io.flow.internal.v0.models.CalculatorOrganizationSettings;
@@ -28692,10 +30005,14 @@ export type CarrierAccountDeleted =
28692
30005
  export type CarrierAccountForm = io.flow.internal.v0.models.CarrierAccountForm;
28693
30006
  export type CarrierAccountUpsertedV2 =
28694
30007
  io.flow.internal.v0.models.CarrierAccountUpsertedV2;
30008
+ export type CarrierAccountValidation =
30009
+ io.flow.internal.v0.models.CarrierAccountValidation;
28695
30010
  export type CarrierCredentials = io.flow.internal.v0.unions.CarrierCredentials;
28696
30011
  export type CarrierInvoice = io.flow.internal.v0.models.CarrierInvoice;
28697
30012
  export type CarrierLabelGenerationMethod =
28698
30013
  io.flow.internal.v0.enums.CarrierLabelGenerationMethod;
30014
+ export type CarrierValidationStatus =
30015
+ io.flow.internal.v0.enums.CarrierValidationStatus;
28699
30016
  export type CatalogImportRequest =
28700
30017
  io.flow.internal.v0.models.CatalogImportRequest;
28701
30018
  export type CatalogImportType = io.flow.internal.v0.enums.CatalogImportType;
@@ -28711,6 +30028,8 @@ export type CatalogItemRegionAvailabilitiesData =
28711
30028
  io.flow.internal.v0.models.CatalogItemRegionAvailabilitiesData;
28712
30029
  export type CatalogItemRegionAvailabilitiesPublished =
28713
30030
  io.flow.internal.v0.models.CatalogItemRegionAvailabilitiesPublished;
30031
+ export type CatalogPublicationSyncValidationError =
30032
+ io.flow.internal.v0.models.CatalogPublicationSyncValidationError;
28714
30033
  export type CatalogSettings = io.flow.internal.v0.models.CatalogSettings;
28715
30034
  export type CatalogSettingsDeleted =
28716
30035
  io.flow.internal.v0.models.CatalogSettingsDeleted;
@@ -28774,6 +30093,8 @@ export type ChannelOrderAcceptanceErrorAction =
28774
30093
  io.flow.internal.v0.enums.ChannelOrderAcceptanceErrorAction;
28775
30094
  export type ChannelOrderAcceptanceForm =
28776
30095
  io.flow.internal.v0.models.ChannelOrderAcceptanceForm;
30096
+ export type ChannelOrderAcceptanceNextActionFrom =
30097
+ io.flow.internal.v0.enums.ChannelOrderAcceptanceNextActionFrom;
28777
30098
  export type ChannelOrderAcceptanceReason =
28778
30099
  io.flow.internal.v0.models.ChannelOrderAcceptanceReason;
28779
30100
  export type ChannelOrderAcceptanceRejectionReason =
@@ -29891,6 +31212,7 @@ export type ClassifiedProductDetail =
29891
31212
  io.flow.internal.v0.models.ClassifiedProductDetail;
29892
31213
  export type CommercialInvoiceComparison =
29893
31214
  io.flow.internal.v0.models.CommercialInvoiceComparison;
31215
+ export type CompanyReference = io.flow.internal.v0.models.CompanyReference;
29894
31216
  export type Compliance = io.flow.internal.v0.models.Compliance;
29895
31217
  export type ComplianceData = io.flow.internal.v0.unions.ComplianceData;
29896
31218
  export type ComplianceForm = io.flow.internal.v0.unions.ComplianceForm;
@@ -30085,6 +31407,8 @@ export type DisputeProcessor = io.flow.internal.v0.enums.DisputeProcessor;
30085
31407
  export type DisputeStatus = io.flow.internal.v0.enums.DisputeStatus;
30086
31408
  export type DisputeStatusForm = io.flow.internal.v0.models.DisputeStatusForm;
30087
31409
  export type DisputeTransaction = io.flow.internal.v0.models.DisputeTransaction;
31410
+ export type DisputeTransactionType =
31411
+ io.flow.internal.v0.enums.DisputeTransactionType;
30088
31412
  export type DisputeType = io.flow.internal.v0.enums.DisputeType;
30089
31413
  export type DisputeUpserted = io.flow.internal.v0.models.DisputeUpserted;
30090
31414
  export type DutiedItemsExport = io.flow.internal.v0.models.DutiedItemsExport;
@@ -30145,12 +31469,17 @@ export type ErpFlowVendor = io.flow.internal.v0.models.ErpFlowVendor;
30145
31469
  export type ErpPriorityFile = io.flow.internal.v0.models.ErpPriorityFile;
30146
31470
  export type ErpPriorityFileForm =
30147
31471
  io.flow.internal.v0.models.ErpPriorityFileForm;
31472
+ export type ErpPriorityVendor = io.flow.internal.v0.models.ErpPriorityVendor;
31473
+ export type ErpPriorityVendorForm =
31474
+ io.flow.internal.v0.models.ErpPriorityVendorForm;
30148
31475
  export type ErpVendor = io.flow.internal.v0.models.ErpVendor;
30149
31476
  export type ErpVendorStatus = io.flow.internal.v0.models.ErpVendorStatus;
30150
31477
  export type ErpVendorStatusEntity =
30151
31478
  io.flow.internal.v0.models.ErpVendorStatusEntity;
30152
- export type ErpVendorStatusFile =
30153
- io.flow.internal.v0.models.ErpVendorStatusFile;
31479
+ export type ErpVendorStatusFlowFile =
31480
+ io.flow.internal.v0.models.ErpVendorStatusFlowFile;
31481
+ export type ErpVendorStatusPriorityFile =
31482
+ io.flow.internal.v0.models.ErpVendorStatusPriorityFile;
30154
31483
  export type Event = io.flow.internal.v0.unions.Event;
30155
31484
  export type EventType = io.flow.internal.v0.enums.EventType;
30156
31485
  export type ExclusionRuleDeleted =
@@ -30322,6 +31651,8 @@ export type FlowLabProjectPutForm =
30322
31651
  export type FlowLabelSetting = io.flow.internal.v0.models.FlowLabelSetting;
30323
31652
  export type FlowLabelSettingForm =
30324
31653
  io.flow.internal.v0.models.FlowLabelSettingForm;
31654
+ export type FlowShopValidationError =
31655
+ io.flow.internal.v0.models.FlowShopValidationError;
30325
31656
  export type Format = io.flow.internal.v0.enums.Format;
30326
31657
  export type FraudPendingReview = io.flow.internal.v0.models.FraudPendingReview;
30327
31658
  export type FraudPendingReviewDeleted =
@@ -30376,15 +31707,33 @@ export type FuelSurchargeServiceFeePercentPutForm =
30376
31707
  io.flow.internal.v0.models.FuelSurchargeServiceFeePercentPutForm;
30377
31708
  export type FuelSurchargeServiceFeePutForm =
30378
31709
  io.flow.internal.v0.unions.FuelSurchargeServiceFeePutForm;
31710
+ export type Fulfillment = io.flow.internal.v0.models.Fulfillment;
30379
31711
  export type FulfillmentActionForm =
30380
31712
  io.flow.internal.v0.models.FulfillmentActionForm;
31713
+ export type FulfillmentBusiness =
31714
+ io.flow.internal.v0.models.FulfillmentBusiness;
30381
31715
  export type FulfillmentCancel = io.flow.internal.v0.models.FulfillmentCancel;
30382
31716
  export type FulfillmentInternalExperienceReference =
30383
31717
  io.flow.internal.v0.models.FulfillmentInternalExperienceReference;
31718
+ export type FulfillmentLine = io.flow.internal.v0.models.FulfillmentLine;
31719
+ export type FulfillmentOrigin = io.flow.internal.v0.models.FulfillmentOrigin;
31720
+ export type FulfillmentProof = io.flow.internal.v0.unions.FulfillmentProof;
31721
+ export type FulfillmentProofExternalFulfillmentProofReference =
31722
+ io.flow.internal.v0.models.FulfillmentProofExternalFulfillmentProofReference;
31723
+ export type FulfillmentProofLabelTrackingReference =
31724
+ io.flow.internal.v0.models.FulfillmentProofLabelTrackingReference;
31725
+ export type FulfillmentProofShippingNotificationReference =
31726
+ io.flow.internal.v0.models.FulfillmentProofShippingNotificationReference;
31727
+ export type FulfillmentReference =
31728
+ io.flow.internal.v0.models.FulfillmentReference;
30384
31729
  export type FulfillmentShipmentTracking =
30385
31730
  io.flow.internal.v0.models.FulfillmentShipmentTracking;
31731
+ export type FulfillmentShipping =
31732
+ io.flow.internal.v0.models.FulfillmentShipping;
30386
31733
  export type FulfillmentSnapshot =
30387
31734
  io.flow.internal.v0.models.FulfillmentSnapshot;
31735
+ export type FulfillmentSubsidyBreakdown =
31736
+ io.flow.internal.v0.models.FulfillmentSubsidyBreakdown;
30388
31737
  export type FxFee = io.flow.internal.v0.models.FxFee;
30389
31738
  export type FxRevenueRecognition =
30390
31739
  io.flow.internal.v0.models.FxRevenueRecognition;
@@ -30405,6 +31754,8 @@ export type GenerateLoadMultipleOrgs =
30405
31754
  io.flow.internal.v0.models.GenerateLoadMultipleOrgs;
30406
31755
  export type GenerateLoadSingleOrg =
30407
31756
  io.flow.internal.v0.models.GenerateLoadSingleOrg;
31757
+ export type GenericValidationError =
31758
+ io.flow.internal.v0.models.GenericValidationError;
30408
31759
  export type GiftCard = io.flow.internal.v0.models.GiftCard;
30409
31760
  export type GiftCardAuthorizationError =
30410
31761
  io.flow.internal.v0.models.GiftCardAuthorizationError;
@@ -30442,6 +31793,10 @@ export type HarmonizationMlModelSummary =
30442
31793
  io.flow.internal.v0.models.HarmonizationMlModelSummary;
30443
31794
  export type HarmonizationPhraseSuggestionRequestImport =
30444
31795
  io.flow.internal.v0.models.HarmonizationPhraseSuggestionRequestImport;
31796
+ export type HarmonizationThreshold =
31797
+ io.flow.internal.v0.models.HarmonizationThreshold;
31798
+ export type HarmonizationThresholdForm =
31799
+ io.flow.internal.v0.models.HarmonizationThresholdForm;
30445
31800
  export type HarmonizationUnclassifiedStatistics =
30446
31801
  io.flow.internal.v0.models.HarmonizationUnclassifiedStatistics;
30447
31802
  export type HarmonizeFullyRequestV2 =
@@ -30537,6 +31892,10 @@ export type HybrisCatalogItemsImportRequestData =
30537
31892
  io.flow.internal.v0.models.HybrisCatalogItemsImportRequestData;
30538
31893
  export type ImportCompleted = io.flow.internal.v0.models.ImportCompleted;
30539
31894
  export type ImportFailed = io.flow.internal.v0.models.ImportFailed;
31895
+ export type IndexAssignmentDeleted =
31896
+ io.flow.internal.v0.models.IndexAssignmentDeleted;
31897
+ export type IndexAssignmentUpserted =
31898
+ io.flow.internal.v0.models.IndexAssignmentUpserted;
30540
31899
  export type IndexTaskType = io.flow.internal.v0.unions.IndexTaskType;
30541
31900
  export type InitialInputDataSource =
30542
31901
  io.flow.internal.v0.enums.InitialInputDataSource;
@@ -30657,6 +32016,7 @@ export type ItemSalesMarginUpserted =
30657
32016
  io.flow.internal.v0.models.ItemSalesMarginUpserted;
30658
32017
  export type ItemSalesMarginVersion =
30659
32018
  io.flow.internal.v0.models.ItemSalesMarginVersion;
32019
+ export type ItemSummary = io.flow.internal.v0.models.ItemSummary;
30660
32020
  export type ItemType = io.flow.internal.v0.enums.ItemType;
30661
32021
  export type ItemValuesForm = io.flow.internal.v0.models.ItemValuesForm;
30662
32022
  export type ItemsShipped = io.flow.internal.v0.models.ItemsShipped;
@@ -30674,6 +32034,7 @@ export type LabProjectSettingsFormAcceptance =
30674
32034
  io.flow.internal.v0.models.LabProjectSettingsFormAcceptance;
30675
32035
  export type LabelAliases = io.flow.internal.v0.models.LabelAliases;
30676
32036
  export type LabelAssociation = io.flow.internal.v0.models.LabelAssociation;
32037
+ export type LabelBase = io.flow.internal.v0.models.LabelBase;
30677
32038
  export type LabelBillingStrategy =
30678
32039
  io.flow.internal.v0.enums.LabelBillingStrategy;
30679
32040
  export type LabelCancellationError =
@@ -30686,6 +32047,7 @@ export type LabelCreationJobSummary =
30686
32047
  export type LabelCreationRequestForm =
30687
32048
  io.flow.internal.v0.models.LabelCreationRequestForm;
30688
32049
  export type LabelCreationStatus = io.flow.internal.v0.enums.LabelCreationStatus;
32050
+ export type LabelDestination = io.flow.internal.v0.models.LabelDestination;
30689
32051
  export type LabelGenerationAddressFailureStatus =
30690
32052
  io.flow.internal.v0.enums.LabelGenerationAddressFailureStatus;
30691
32053
  export type LabelGenerationAddressFailureStatusUpdateForm =
@@ -30701,7 +32063,36 @@ export type LabelGenerationSettingsForm =
30701
32063
  export type LabelGenerationSettingsUpserted =
30702
32064
  io.flow.internal.v0.models.LabelGenerationSettingsUpserted;
30703
32065
  export type LabelInputSource = io.flow.internal.v0.enums.LabelInputSource;
32066
+ export type LabelInvoiceRequest =
32067
+ io.flow.internal.v0.models.LabelInvoiceRequest;
32068
+ export type LabelInvoiceRequestDeleted =
32069
+ io.flow.internal.v0.models.LabelInvoiceRequestDeleted;
32070
+ export type LabelInvoiceRequestUpserted =
32071
+ io.flow.internal.v0.models.LabelInvoiceRequestUpserted;
32072
+ export type LabelInvoiceResponseForm =
32073
+ io.flow.internal.v0.models.LabelInvoiceResponseForm;
32074
+ export type LabelMetadata = io.flow.internal.v0.models.LabelMetadata;
32075
+ export type LabelRequestError = io.flow.internal.v0.models.LabelRequestError;
32076
+ export type LabelRequestErrorDeleted =
32077
+ io.flow.internal.v0.models.LabelRequestErrorDeleted;
32078
+ export type LabelRequestErrorHandlingResponsibility =
32079
+ io.flow.internal.v0.enums.LabelRequestErrorHandlingResponsibility;
32080
+ export type LabelRequestErrorUpserted =
32081
+ io.flow.internal.v0.models.LabelRequestErrorUpserted;
32082
+ export type LabelResponseUnits = io.flow.internal.v0.models.LabelResponseUnits;
30704
32083
  export type LabelSummary = io.flow.internal.v0.models.LabelSummary;
32084
+ export type LabelSurcharge = io.flow.internal.v0.models.LabelSurcharge;
32085
+ export type LabelSurchargeDetail =
32086
+ io.flow.internal.v0.unions.LabelSurchargeDetail;
32087
+ export type LabelSurchargeDetailFlat =
32088
+ io.flow.internal.v0.models.LabelSurchargeDetailFlat;
32089
+ export type LabelSurchargeDetailPerWeightUnit =
32090
+ io.flow.internal.v0.models.LabelSurchargeDetailPerWeightUnit;
32091
+ export type LabelSurchargeDetailPercentage =
32092
+ io.flow.internal.v0.models.LabelSurchargeDetailPercentage;
32093
+ export type LabelSurchargeForm = io.flow.internal.v0.models.LabelSurchargeForm;
32094
+ export type LabelSurchargeSingleForm =
32095
+ io.flow.internal.v0.models.LabelSurchargeSingleForm;
30705
32096
  export type LabelTaxonomy = io.flow.internal.v0.models.LabelTaxonomy;
30706
32097
  export type LabelTrackingSummaryDeleted =
30707
32098
  io.flow.internal.v0.models.LabelTrackingSummaryDeleted;
@@ -30714,6 +32105,7 @@ export type LabelTransactionType =
30714
32105
  io.flow.internal.v0.enums.LabelTransactionType;
30715
32106
  export type LabelTransactionUpserted =
30716
32107
  io.flow.internal.v0.models.LabelTransactionUpserted;
32108
+ export type LabelUnits = io.flow.internal.v0.models.LabelUnits;
30717
32109
  export type LabeledContent = io.flow.internal.v0.models.LabeledContent;
30718
32110
  export type LabelsPrediction = io.flow.internal.v0.models.LabelsPrediction;
30719
32111
  export type LandedCostItem = io.flow.internal.v0.models.LandedCostItem;
@@ -30774,8 +32166,6 @@ export type LocalizedPriceBookItemDeleted =
30774
32166
  export type LocalizedPriceBookItemUpserted =
30775
32167
  io.flow.internal.v0.models.LocalizedPriceBookItemUpserted;
30776
32168
  export type Location = io.flow.internal.v0.models.Location;
30777
- export type LogisticsCenterCheck =
30778
- io.flow.internal.v0.models.LogisticsCenterCheck;
30779
32169
  export type Logo = io.flow.internal.v0.models.Logo;
30780
32170
  export type LoyaltyProgram = io.flow.internal.v0.models.LoyaltyProgram;
30781
32171
  export type LoyaltyProgramMessage =
@@ -30921,10 +32311,26 @@ export type MerchantApplicationSummaries =
30921
32311
  io.flow.internal.v0.models.MerchantApplicationSummaries;
30922
32312
  export type MerchantApplicationSummary =
30923
32313
  io.flow.internal.v0.models.MerchantApplicationSummary;
32314
+ export type MerchantCharges = io.flow.internal.v0.models.MerchantCharges;
32315
+ export type MerchantFees = io.flow.internal.v0.models.MerchantFees;
32316
+ export type MerchantGuidAssignment =
32317
+ io.flow.internal.v0.models.MerchantGuidAssignment;
32318
+ export type MerchantGuidAssignmentDeleted =
32319
+ io.flow.internal.v0.models.MerchantGuidAssignmentDeleted;
32320
+ export type MerchantGuidAssignmentUpserted =
32321
+ io.flow.internal.v0.models.MerchantGuidAssignmentUpserted;
30924
32322
  export type MerchantOfRecordEntitySettings =
30925
32323
  io.flow.internal.v0.models.MerchantOfRecordEntitySettings;
30926
32324
  export type MerchantOfRecordEntitySettingsForm =
30927
32325
  io.flow.internal.v0.models.MerchantOfRecordEntitySettingsForm;
32326
+ export type MerchantSearchResult =
32327
+ io.flow.internal.v0.models.MerchantSearchResult;
32328
+ export type MerchantSubsidies = io.flow.internal.v0.models.MerchantSubsidies;
32329
+ export type MerchantSummary = io.flow.internal.v0.models.MerchantSummary;
32330
+ export type MetadataProposition =
32331
+ io.flow.internal.v0.models.MetadataProposition;
32332
+ export type MetadataRatecard = io.flow.internal.v0.models.MetadataRatecard;
32333
+ export type MetadataWeights = io.flow.internal.v0.models.MetadataWeights;
30928
32334
  export type MixedBagWeight = io.flow.internal.v0.enums.MixedBagWeight;
30929
32335
  export type NatureOfSale = io.flow.internal.v0.enums.NatureOfSale;
30930
32336
  export type NextBillingStatement =
@@ -31031,6 +32437,7 @@ export type OrderServiceChangeCsvForm =
31031
32437
  export type OrderShipped = io.flow.internal.v0.models.OrderShipped;
31032
32438
  export type OrderSubmissionForm =
31033
32439
  io.flow.internal.v0.models.OrderSubmissionForm;
32440
+ export type OrderSummary = io.flow.internal.v0.models.OrderSummary;
31034
32441
  export type OrderTransaction = io.flow.internal.v0.models.OrderTransaction;
31035
32442
  export type OrderTransactionDeleted =
31036
32443
  io.flow.internal.v0.models.OrderTransactionDeleted;
@@ -31038,6 +32445,8 @@ export type OrderTransactionType =
31038
32445
  io.flow.internal.v0.enums.OrderTransactionType;
31039
32446
  export type OrderTransactionUpserted =
31040
32447
  io.flow.internal.v0.models.OrderTransactionUpserted;
32448
+ export type OrderValidationError =
32449
+ io.flow.internal.v0.models.OrderValidationError;
31041
32450
  export type OrganizationAccount =
31042
32451
  io.flow.internal.v0.models.OrganizationAccount;
31043
32452
  export type OrganizationAccountDeleted =
@@ -31074,6 +32483,14 @@ export type OrganizationCurrencySettingUpserted =
31074
32483
  io.flow.internal.v0.models.OrganizationCurrencySettingUpserted;
31075
32484
  export type OrganizationCurrencySettingVersion =
31076
32485
  io.flow.internal.v0.models.OrganizationCurrencySettingVersion;
32486
+ export type OrganizationDeactivation =
32487
+ io.flow.internal.v0.models.OrganizationDeactivation;
32488
+ export type OrganizationDeactivationDeleted =
32489
+ io.flow.internal.v0.models.OrganizationDeactivationDeleted;
32490
+ export type OrganizationDeactivationForm =
32491
+ io.flow.internal.v0.models.OrganizationDeactivationForm;
32492
+ export type OrganizationDeactivationUpserted =
32493
+ io.flow.internal.v0.models.OrganizationDeactivationUpserted;
31077
32494
  export type OrganizationDebugTransaction =
31078
32495
  io.flow.internal.v0.models.OrganizationDebugTransaction;
31079
32496
  export type OrganizationInvitationAcceptForm =
@@ -31138,6 +32555,8 @@ export type OrganizationStatusChangeDeleted =
31138
32555
  io.flow.internal.v0.models.OrganizationStatusChangeDeleted;
31139
32556
  export type OrganizationStatusChangeUpserted =
31140
32557
  io.flow.internal.v0.models.OrganizationStatusChangeUpserted;
32558
+ export type OrganizationsAuditCheckReport =
32559
+ io.flow.internal.v0.models.OrganizationsAuditCheckReport;
31141
32560
  export type OutputStyle = io.flow.internal.v0.enums.OutputStyle;
31142
32561
  export type Owner = io.flow.internal.v0.enums.Owner;
31143
32562
  export type Partner = io.flow.internal.v0.models.Partner;
@@ -31194,6 +32613,7 @@ export type PaymentSummaryStatus =
31194
32613
  export type PaymentSummaryType = io.flow.internal.v0.enums.PaymentSummaryType;
31195
32614
  export type PaymentSummaryV2 = io.flow.internal.v0.models.PaymentSummaryV2;
31196
32615
  export type PaymentTerm = io.flow.internal.v0.enums.PaymentTerm;
32616
+ export type PayoutStatusCounts = io.flow.internal.v0.models.PayoutStatusCounts;
31197
32617
  export type PaypalAccount = io.flow.internal.v0.models.PaypalAccount;
31198
32618
  export type PaypalAccountModificationForm =
31199
32619
  io.flow.internal.v0.models.PaypalAccountModificationForm;
@@ -31315,6 +32735,8 @@ export type ProductHarmonizationForm =
31315
32735
  export type ProductLabels = io.flow.internal.v0.models.ProductLabels;
31316
32736
  export type ProductListSettingsForm =
31317
32737
  io.flow.internal.v0.models.ProductListSettingsForm;
32738
+ export type ProductRestrictionResultValidationError =
32739
+ io.flow.internal.v0.models.ProductRestrictionResultValidationError;
31318
32740
  export type ProductReviewHistory =
31319
32741
  io.flow.internal.v0.models.ProductReviewHistory;
31320
32742
  export type ProductStatus = io.flow.internal.v0.enums.ProductStatus;
@@ -31332,6 +32754,7 @@ export type ProofOfPostingOrderCancellation =
31332
32754
  io.flow.internal.v0.models.ProofOfPostingOrderCancellation;
31333
32755
  export type ProofOfPostingShippingNotification =
31334
32756
  io.flow.internal.v0.models.ProofOfPostingShippingNotification;
32757
+ export type QueuedRecord = io.flow.internal.v0.models.QueuedRecord;
31335
32758
  export type QueuedRecordType = io.flow.internal.v0.enums.QueuedRecordType;
31336
32759
  export type QuoteRequest = io.flow.internal.v0.models.QuoteRequest;
31337
32760
  export type QuoteRequestType = io.flow.internal.v0.enums.QuoteRequestType;
@@ -31355,6 +32778,7 @@ export type RateFreshnessSummaryUpserted =
31355
32778
  io.flow.internal.v0.models.RateFreshnessSummaryUpserted;
31356
32779
  export type RateLevel = io.flow.internal.v0.models.RateLevel;
31357
32780
  export type RateLevelForm = io.flow.internal.v0.models.RateLevelForm;
32781
+ export type RateLevelKey = io.flow.internal.v0.enums.RateLevelKey;
31358
32782
  export type RateLevelOrganization =
31359
32783
  io.flow.internal.v0.models.RateLevelOrganization;
31360
32784
  export type RateLevelOrganizationForm =
@@ -31440,9 +32864,13 @@ export type RegisteredExporterTariffEligibilityData =
31440
32864
  export type RegisteredExporterTariffEligibilityForm =
31441
32865
  io.flow.internal.v0.models.RegisteredExporterTariffEligibilityForm;
31442
32866
  export type RejectionReason = io.flow.internal.v0.enums.RejectionReason;
32867
+ export type Report = io.flow.internal.v0.models.Report;
32868
+ export type ReportForm = io.flow.internal.v0.models.ReportForm;
31443
32869
  export type ReportInterval = io.flow.internal.v0.enums.ReportInterval;
31444
32870
  export type ReportRuleDecision = io.flow.internal.v0.models.ReportRuleDecision;
32871
+ export type ReportStatus = io.flow.internal.v0.enums.ReportStatus;
31445
32872
  export type ReportSummary = io.flow.internal.v0.models.ReportSummary;
32873
+ export type ReportingDetails = io.flow.internal.v0.models.ReportingDetails;
31446
32874
  export type ReportingScheme = io.flow.internal.v0.enums.ReportingScheme;
31447
32875
  export type RequeueRequestForm = io.flow.internal.v0.models.RequeueRequestForm;
31448
32876
  export type ResponsibleParty = io.flow.internal.v0.enums.ResponsibleParty;
@@ -31495,6 +32923,8 @@ export type ResyncByHs6Destinations =
31495
32923
  export type ResyncByHs6Origin = io.flow.internal.v0.models.ResyncByHs6Origin;
31496
32924
  export type ResyncFallbackRates =
31497
32925
  io.flow.internal.v0.models.ResyncFallbackRates;
32926
+ export type Retracking = io.flow.internal.v0.models.Retracking;
32927
+ export type RetrackingForm = io.flow.internal.v0.models.RetrackingForm;
31498
32928
  export type ReturnPolicyDeleted =
31499
32929
  io.flow.internal.v0.models.ReturnPolicyDeleted;
31500
32930
  export type ReturnPolicyItemResultDeleted =
@@ -31510,6 +32940,8 @@ export type RoutingAccount = io.flow.internal.v0.models.RoutingAccount;
31510
32940
  export type RoutingEntity = io.flow.internal.v0.unions.RoutingEntity;
31511
32941
  export type RoutingMerchant = io.flow.internal.v0.models.RoutingMerchant;
31512
32942
  export type RoutingProcessor = io.flow.internal.v0.models.RoutingProcessor;
32943
+ export type SandboxSetup = io.flow.internal.v0.models.SandboxSetup;
32944
+ export type SandboxSetupForm = io.flow.internal.v0.models.SandboxSetupForm;
31513
32945
  export type Scope = io.flow.internal.v0.enums.Scope;
31514
32946
  export type Screen = io.flow.internal.v0.models.Screen;
31515
32947
  export type ScreenForm = io.flow.internal.v0.models.ScreenForm;
@@ -31544,6 +32976,8 @@ export type ShippedItemValue = io.flow.internal.v0.models.ShippedItemValue;
31544
32976
  export type ShipperAccountInfoForm =
31545
32977
  io.flow.internal.v0.models.ShipperAccountInfoForm;
31546
32978
  export type ShippingLane = io.flow.internal.v0.models.ShippingLane;
32979
+ export type ShippingMethodReference =
32980
+ io.flow.internal.v0.models.ShippingMethodReference;
31547
32981
  export type Shop = io.flow.internal.v0.models.Shop;
31548
32982
  export type ShopForm = io.flow.internal.v0.models.ShopForm;
31549
32983
  export type ShopVersion = io.flow.internal.v0.models.ShopVersion;
@@ -31580,16 +33014,30 @@ export type ShopifyGrantStatus = io.flow.internal.v0.enums.ShopifyGrantStatus;
31580
33014
  export type ShopifyGrantsCheck = io.flow.internal.v0.models.ShopifyGrantsCheck;
31581
33015
  export type ShopifyMarketsDangerousGoods =
31582
33016
  io.flow.internal.v0.enums.ShopifyMarketsDangerousGoods;
33017
+ export type ShopifyMarketsDiscrepancy =
33018
+ io.flow.internal.v0.models.ShopifyMarketsDiscrepancy;
33019
+ export type ShopifyMarketsDiscrepancyData =
33020
+ io.flow.internal.v0.models.ShopifyMarketsDiscrepancyData;
31583
33021
  export type ShopifyMarketsHtsNumberAvailable =
31584
33022
  io.flow.internal.v0.enums.ShopifyMarketsHtsNumberAvailable;
31585
33023
  export type ShopifyMarketsIncorporationCountry =
31586
33024
  io.flow.internal.v0.models.ShopifyMarketsIncorporationCountry;
33025
+ export type ShopifyMarketsInternalOrderMetrics =
33026
+ io.flow.internal.v0.models.ShopifyMarketsInternalOrderMetrics;
33027
+ export type ShopifyMarketsMetricsDeleted =
33028
+ io.flow.internal.v0.models.ShopifyMarketsMetricsDeleted;
33029
+ export type ShopifyMarketsMetricsUpserted =
33030
+ io.flow.internal.v0.models.ShopifyMarketsMetricsUpserted;
31587
33031
  export type ShopifyMarketsOrder =
31588
33032
  io.flow.internal.v0.models.ShopifyMarketsOrder;
31589
33033
  export type ShopifyMarketsOrderDeleted =
31590
33034
  io.flow.internal.v0.models.ShopifyMarketsOrderDeleted;
31591
33035
  export type ShopifyMarketsOrderUpserted =
31592
33036
  io.flow.internal.v0.models.ShopifyMarketsOrderUpserted;
33037
+ export type ShopifyMarketsOrdersMetrics =
33038
+ io.flow.internal.v0.models.ShopifyMarketsOrdersMetrics;
33039
+ export type ShopifyMarketsQueuedRecordType =
33040
+ io.flow.internal.v0.enums.ShopifyMarketsQueuedRecordType;
31593
33041
  export type ShopifyMarketsShop = io.flow.internal.v0.models.ShopifyMarketsShop;
31594
33042
  export type ShopifyMarketsShopDeleted =
31595
33043
  io.flow.internal.v0.models.ShopifyMarketsShopDeleted;
@@ -31603,6 +33051,8 @@ export type ShopifyMarketsShopSummary =
31603
33051
  io.flow.internal.v0.models.ShopifyMarketsShopSummary;
31604
33052
  export type ShopifyMarketsShopUpserted =
31605
33053
  io.flow.internal.v0.models.ShopifyMarketsShopUpserted;
33054
+ export type ShopifyMarketsShopifyOrderMetrics =
33055
+ io.flow.internal.v0.models.ShopifyMarketsShopifyOrderMetrics;
31606
33056
  export type ShopifyMarketsSubsidiaryCompany =
31607
33057
  io.flow.internal.v0.models.ShopifyMarketsSubsidiaryCompany;
31608
33058
  export type ShopifyMarketsSync = io.flow.internal.v0.models.ShopifyMarketsSync;
@@ -31718,10 +33168,14 @@ export type ShopifyShopStatistics =
31718
33168
  io.flow.internal.v0.models.ShopifyShopStatistics;
31719
33169
  export type ShopifyShopUpserted =
31720
33170
  io.flow.internal.v0.models.ShopifyShopUpserted;
33171
+ export type ShopifyStorePassword =
33172
+ io.flow.internal.v0.models.ShopifyStorePassword;
31721
33173
  export type ShopifyWebhook = io.flow.internal.v0.models.ShopifyWebhook;
31722
33174
  export type ShopifyWebhookEvent =
31723
33175
  io.flow.internal.v0.models.ShopifyWebhookEvent;
31724
33176
  export type ShopifyWebhookForm = io.flow.internal.v0.models.ShopifyWebhookForm;
33177
+ export type ShopperFees = io.flow.internal.v0.models.ShopperFees;
33178
+ export type ShopperSummary = io.flow.internal.v0.models.ShopperSummary;
31725
33179
  export type SignificanceAction = io.flow.internal.v0.enums.SignificanceAction;
31726
33180
  export type SimpleAccountReference =
31727
33181
  io.flow.internal.v0.models.SimpleAccountReference;
@@ -31929,6 +33383,12 @@ export type TransactionPostingMethod =
31929
33383
  io.flow.internal.v0.enums.TransactionPostingMethod;
31930
33384
  export type TransactionReference =
31931
33385
  io.flow.internal.v0.models.TransactionReference;
33386
+ export type TransactionStatement =
33387
+ io.flow.internal.v0.models.TransactionStatement;
33388
+ export type TransactionStatementDeleted =
33389
+ io.flow.internal.v0.models.TransactionStatementDeleted;
33390
+ export type TransactionStatementUpserted =
33391
+ io.flow.internal.v0.models.TransactionStatementUpserted;
31932
33392
  export type TransactionSummary = io.flow.internal.v0.unions.TransactionSummary;
31933
33393
  export type TransferMethod = io.flow.internal.v0.enums.TransferMethod;
31934
33394
  export type TransferTransaction =
@@ -31942,6 +33402,14 @@ export type TransferTransactionUpserted =
31942
33402
  export type TransferTransactionUpsertedV2 =
31943
33403
  io.flow.internal.v0.models.TransferTransactionUpsertedV2;
31944
33404
  export type Tribe = io.flow.internal.v0.models.Tribe;
33405
+ export type TrueUpLabelSummary = io.flow.internal.v0.models.TrueUpLabelSummary;
33406
+ export type TrueUpSurchargeType = io.flow.internal.v0.enums.TrueUpSurchargeType;
33407
+ export type UnassignedMerchantGuid =
33408
+ io.flow.internal.v0.models.UnassignedMerchantGuid;
33409
+ export type UnassignedMerchantGuidDeleted =
33410
+ io.flow.internal.v0.models.UnassignedMerchantGuidDeleted;
33411
+ export type UnassignedMerchantGuidUpserted =
33412
+ io.flow.internal.v0.models.UnassignedMerchantGuidUpserted;
31945
33413
  export type UnclassifiedProductStatistic =
31946
33414
  io.flow.internal.v0.models.UnclassifiedProductStatistic;
31947
33415
  export type UnclassifiedProductStatus =
@@ -31992,11 +33460,19 @@ export type VirtualCardProviderUpserted =
31992
33460
  io.flow.internal.v0.models.VirtualCardProviderUpserted;
31993
33461
  export type VirtualCardTransaction =
31994
33462
  io.flow.internal.v0.models.VirtualCardTransaction;
33463
+ export type WashCarrierActualFile =
33464
+ io.flow.internal.v0.models.WashCarrierActualFile;
33465
+ export type WashCarrierActualFileForm =
33466
+ io.flow.internal.v0.models.WashCarrierActualFileForm;
33467
+ export type WashCarrierActualFileStatus =
33468
+ io.flow.internal.v0.enums.WashCarrierActualFileStatus;
31995
33469
  export type WashExportRequest = io.flow.internal.v0.models.WashExportRequest;
31996
33470
  export type WasteElectricalAndElectronicEquipmentComplianceData =
31997
33471
  io.flow.internal.v0.models.WasteElectricalAndElectronicEquipmentComplianceData;
31998
33472
  export type WasteElectricalAndElectronicEquipmentComplianceForm =
31999
33473
  io.flow.internal.v0.models.WasteElectricalAndElectronicEquipmentComplianceForm;
32000
33474
  export type Webhook = io.flow.internal.v0.models.Webhook;
33475
+ export type WeightsDead = io.flow.internal.v0.models.WeightsDead;
33476
+ export type WeightsDimensional = io.flow.internal.v0.models.WeightsDimensional;
32001
33477
  export type WholeOrderActionForm =
32002
33478
  io.flow.internal.v0.models.WholeOrderActionForm;