@flowio/types 11.24.131 → 11.24.135

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.
@@ -1285,6 +1285,10 @@ declare namespace io.flow.restrictions.v0.models {
1285
1285
  readonly hs_code?: string;
1286
1286
  readonly restricted_regions_by_type?: io.flow.sellability.v0.models.SellabilityRegionResult[];
1287
1287
  readonly needs_action_attributes?: io.flow.restrictions.v0.models.NeedsActionAttributes[];
1288
+ readonly fingerprint?: string;
1289
+ readonly restriction_created_at?: string;
1290
+ readonly first_reviewed_at?: string;
1291
+ readonly seconds_to_first_review?: number;
1288
1292
  }
1289
1293
 
1290
1294
  interface ReasonsPerRegion {
@@ -2334,7 +2338,7 @@ declare namespace io.flow.payment.v0.enums {
2334
2338
  | 'invalid_customer'
2335
2339
  | 'invalid_destination'
2336
2340
  | 'unknown';
2337
- type PaymentFeeType = 'fx' | 'mor' | 'sp';
2341
+ type PaymentFeeType = 'fx' | 'mor' | 'sp' | 'mor_tax';
2338
2342
  type PaymentSourceConfirmationActionType =
2339
2343
  | 'cvv'
2340
2344
  | 'billing_address'
@@ -5315,7 +5319,8 @@ declare namespace io.flow.label.v0.enums {
5315
5319
  | 'partner_api_sync'
5316
5320
  | 'notification_requiring_crossdock'
5317
5321
  | 'flow_simulation_sync'
5318
- | 'autogenerated';
5322
+ | 'autogenerated'
5323
+ | 'legacy_shopify_graphql_server';
5319
5324
  type LabelTriggerMethod = 'autogenerated' | 'on_demand';
5320
5325
  type OriginLocationSource =
5321
5326
  | 'public_hub_code'
@@ -7216,6 +7221,11 @@ declare namespace io.flow.shopify.markets.internal.v0.models {
7216
7221
  readonly initial_product_restrictions_synced_at?: string;
7217
7222
  }
7218
7223
 
7224
+ interface ShopifyTestOrder {
7225
+ readonly id: string;
7226
+ readonly submitted_at: string;
7227
+ }
7228
+
7219
7229
  interface ThirdPartyLogisticsPartner {
7220
7230
  readonly warehouse_address: io.flow.common.v0.models.BillingAddress;
7221
7231
  readonly warehouse_url?: string;
@@ -7261,6 +7271,7 @@ declare namespace io.flow.consumer.invoice.v0.models {
7261
7271
  readonly b2b_invoice_type: io.flow.consumer.invoice.v0.enums.B2BInvoiceType;
7262
7272
  readonly center?: io.flow.consumer.invoice.v0.models.ConsumerInvoiceCenterReference;
7263
7273
  readonly order?: io.flow.consumer.invoice.v0.models.ConsumerInvoiceOrderSummary;
7274
+ readonly voids_b2b_invoice?: boolean;
7264
7275
  }
7265
7276
 
7266
7277
  interface B2BInvoice {
@@ -9722,6 +9733,7 @@ declare namespace io.flow.shopify.markets.v0.models {
9722
9733
  readonly tags?: string;
9723
9734
  readonly tax_lines: io.flow.shopify.markets.v0.models.ShopifyOrderTaxLine[];
9724
9735
  readonly taxes_included: boolean;
9736
+ readonly test?: boolean;
9725
9737
  readonly token?: string;
9726
9738
  readonly total_weight?: number;
9727
9739
  readonly updated_at?: string;
@@ -10263,7 +10275,8 @@ declare namespace io.flow.order.price.v0.enums {
10263
10275
  | 'tax'
10264
10276
  | 'duties'
10265
10277
  | 'tax_and_duties'
10266
- | 'product';
10278
+ | 'product'
10279
+ | 'mor_tax';
10267
10280
  }
10268
10281
 
10269
10282
  declare namespace io.flow.order.price.v0.models {
@@ -10783,7 +10796,7 @@ declare namespace io.flow.common.v0.models {
10783
10796
 
10784
10797
  interface DiscountForm {
10785
10798
  readonly offer: io.flow.common.v0.unions.DiscountOffer;
10786
- readonly target?: io.flow.common.v0.enums.DiscountTarget;
10799
+ readonly target: io.flow.common.v0.enums.DiscountTarget;
10787
10800
  readonly label?: string;
10788
10801
  }
10789
10802
 
@@ -10875,6 +10888,7 @@ declare namespace io.flow.common.v0.models {
10875
10888
  interface LineItemForm {
10876
10889
  readonly number: string;
10877
10890
  readonly quantity: number;
10891
+ readonly line_item_identifier?: string;
10878
10892
  readonly shipment_estimate?: io.flow.common.v0.models.DatetimeRange;
10879
10893
  readonly price?: io.flow.common.v0.models.Money;
10880
10894
  readonly attributes?: Record<string, string>;
@@ -10984,7 +10998,7 @@ declare namespace io.flow.common.v0.models {
10984
10998
  readonly parent?: io.flow.common.v0.models.OrganizationReference;
10985
10999
  readonly defaults?: io.flow.common.v0.models.OrganizationDefaults;
10986
11000
  readonly created_at?: string;
10987
- readonly status?: io.flow.common.v0.enums.OrganizationStatus;
11001
+ readonly status: io.flow.common.v0.enums.OrganizationStatus;
10988
11002
  readonly type?: io.flow.common.v0.enums.OrganizationType;
10989
11003
  }
10990
11004
 
@@ -11392,6 +11406,22 @@ declare namespace io.flow.shopify.markets.internal.event.v0.models {
11392
11406
  readonly timestamp: string;
11393
11407
  readonly shopify_product_taxonomy_attribute_value: io.flow.shopify.markets.internal.v0.models.ShopifyProductTaxonomyAttributeValue;
11394
11408
  }
11409
+
11410
+ interface ShopifyTestOrderDeleted {
11411
+ readonly discriminator: 'shopify_test_order_deleted';
11412
+ readonly event_id: string;
11413
+ readonly timestamp: string;
11414
+ readonly organization: string;
11415
+ readonly id: string;
11416
+ }
11417
+
11418
+ interface ShopifyTestOrderUpserted {
11419
+ readonly discriminator: 'shopify_test_order_upserted';
11420
+ readonly event_id: string;
11421
+ readonly timestamp: string;
11422
+ readonly organization: string;
11423
+ readonly shopify_test_order: io.flow.shopify.markets.internal.v0.models.ShopifyTestOrder;
11424
+ }
11395
11425
  }
11396
11426
 
11397
11427
  declare namespace io.flow.shopify.markets.internal.event.v0.unions {
@@ -11424,7 +11454,9 @@ declare namespace io.flow.shopify.markets.internal.event.v0.unions {
11424
11454
  | io.flow.shopify.markets.internal.event.v0.models.ShopifyOrderRiskAssessmentUpserted
11425
11455
  | io.flow.shopify.markets.internal.event.v0.models.ShopifyOrderRiskAssessmentDeleted
11426
11456
  | io.flow.shopify.markets.internal.event.v0.models.ShopifyOrderTransactionUpserted
11427
- | io.flow.shopify.markets.internal.event.v0.models.ShopifyOrderTransactionDeleted;
11457
+ | io.flow.shopify.markets.internal.event.v0.models.ShopifyOrderTransactionDeleted
11458
+ | io.flow.shopify.markets.internal.event.v0.models.ShopifyTestOrderUpserted
11459
+ | io.flow.shopify.markets.internal.event.v0.models.ShopifyTestOrderDeleted;
11428
11460
  }
11429
11461
 
11430
11462
  declare namespace io.flow.experience.v0.enums {
@@ -11493,6 +11525,7 @@ declare namespace io.flow.experience.v0.enums {
11493
11525
  type OrganizationPaymentMethodTag = 'deny';
11494
11526
  type PaymentMethodRuleContentKey = 'description';
11495
11527
  type PriceFacetBoundary = 'min' | 'max';
11528
+ type PricingType = 'inclusive_pricing';
11496
11529
  type PromotionTriggerType = 'automatic' | 'order_subtotal';
11497
11530
  }
11498
11531
 
@@ -12114,6 +12147,7 @@ declare namespace io.flow.experience.v0.models {
12114
12147
  readonly payment_source?: io.flow.experience.v0.enums.OrderPaymentSourceType;
12115
12148
  readonly edits?: io.flow.experience.v0.models.EditSummary[];
12116
12149
  readonly rates?: io.flow.experience.v0.models.OrderRate[];
12150
+ readonly pricing_type?: io.flow.experience.v0.enums.PricingType;
12117
12151
  }
12118
12152
 
12119
12153
  interface OrderAddress {
@@ -12885,6 +12919,12 @@ declare namespace io.flow.ratecard.v0.models {
12885
12919
  readonly name: string;
12886
12920
  }
12887
12921
 
12922
+ interface RatecardData {
12923
+ readonly dhlParcelDistributionCenter?: string;
12924
+ readonly glbeRatecardMetadataLaneIdentifier?: string;
12925
+ readonly pickupCenter?: string;
12926
+ }
12927
+
12888
12928
  interface RatecardEstimateForm {
12889
12929
  readonly origin_address: io.flow.common.v0.models.Address;
12890
12930
  readonly destination_address: io.flow.common.v0.models.Address;
@@ -12977,7 +13017,7 @@ declare namespace io.flow.ratecard.v0.models {
12977
13017
  readonly glbe_shipping_method_id?: string;
12978
13018
  readonly glbe_proposition_name?: string;
12979
13019
  readonly channel_revenue_share_percentage?: number;
12980
- readonly data?: Record<string, string>;
13020
+ readonly data?: io.flow.ratecard.v0.models.RatecardData;
12981
13021
  }
12982
13022
 
12983
13023
  interface RatecardLane {
@@ -14241,7 +14281,6 @@ declare namespace io.flow.merchant.onboarding.v0.models {
14241
14281
  readonly beneficiary_details?: io.flow.merchant.onboarding.v0.models.MerchantOnboardingBeneficiaryDetails;
14242
14282
  readonly other_trade_sector?: string;
14243
14283
  readonly center_contact?: io.flow.merchant.onboarding.v0.models.OperationsContact;
14244
- readonly center_address?: io.flow.common.v0.models.Address;
14245
14284
  readonly average_order_weight?: number;
14246
14285
  readonly average_order_weight_unit?: io.flow.common.v0.enums.UnitOfMeasurement;
14247
14286
  readonly package_dimensions?: io.flow.common.v0.models.Dimension[];
@@ -14269,7 +14308,6 @@ declare namespace io.flow.merchant.onboarding.v0.models {
14269
14308
  readonly beneficiary_details?: io.flow.merchant.onboarding.v0.models.MerchantOnboardingBeneficiaryDetails;
14270
14309
  readonly other_trade_sector?: string;
14271
14310
  readonly center_contact?: io.flow.merchant.onboarding.v0.models.OperationsContact;
14272
- readonly center_address?: io.flow.common.v0.models.Address;
14273
14311
  readonly average_order_weight?: number;
14274
14312
  readonly average_order_weight_unit?: io.flow.common.v0.enums.UnitOfMeasurement;
14275
14313
  readonly package_dimensions?: io.flow.common.v0.models.Dimension[];
@@ -14370,6 +14408,7 @@ declare namespace io.flow.merchant.onboarding.v0.models {
14370
14408
  readonly company?: string;
14371
14409
  readonly email?: string;
14372
14410
  readonly phone?: string;
14411
+ readonly address?: io.flow.common.v0.models.Address;
14373
14412
  }
14374
14413
 
14375
14414
  interface Shop {
@@ -14909,7 +14948,7 @@ declare namespace io.flow.inventory.v0.models {
14909
14948
 
14910
14949
  interface InventoryUnlimited {
14911
14950
  readonly discriminator: 'inventory_unlimited';
14912
- readonly placeholder?: string;
14951
+ readonly placeholder: string;
14913
14952
  }
14914
14953
 
14915
14954
  interface InventoryUpdate {
@@ -15204,7 +15243,8 @@ declare namespace io.flow.billing.v0.enums {
15204
15243
  | 'rate_lock'
15205
15244
  | 'transfer'
15206
15245
  | 'negative_balance_guarantee'
15207
- | 'sp';
15246
+ | 'sp'
15247
+ | 'rev_share';
15208
15248
  type PayoutAttachmentType = 'transactions';
15209
15249
  type PayoutStatusFailureCode =
15210
15250
  | 'invalid_account_number'
@@ -15232,7 +15272,8 @@ declare namespace io.flow.billing.v0.enums {
15232
15272
  | 'order_cancellation_above_de_min'
15233
15273
  | 'wyol_shipment_above_de_min'
15234
15274
  | 'full_refund_without_shipment'
15235
- | 'unfulfilled_order_above_de_min';
15275
+ | 'unfulfilled_order_above_de_min'
15276
+ | 'order_cancellation_without_capture';
15236
15277
  type TransactionSource =
15237
15278
  | 'capture'
15238
15279
  | 'refund'
@@ -15267,7 +15308,9 @@ declare namespace io.flow.billing.v0.enums {
15267
15308
  | 'ge_revenue_share'
15268
15309
  | 'merchant_fee'
15269
15310
  | 'b2b_tax'
15270
- | 'b2b_tax_refund';
15311
+ | 'b2b_tax_refund'
15312
+ | 'b2b_fee_mor_tax'
15313
+ | 'b2b_fee_shipping_tax';
15271
15314
  type TrueupSource =
15272
15315
  | 'flow'
15273
15316
  | 'channel'
@@ -15567,7 +15610,7 @@ declare namespace io.flow.billing.v0.models {
15567
15610
  readonly label_created_at: string;
15568
15611
  readonly carrier_id: string;
15569
15612
  readonly carrier_tracking_number: string;
15570
- readonly revenue_share_percentage: number;
15613
+ readonly revenue_share_percentage?: number;
15571
15614
  readonly outbound?: io.flow.billing.v0.models.TransactionMetadataOutboundTransaction;
15572
15615
  }
15573
15616
 
@@ -15607,6 +15650,19 @@ declare namespace io.flow.billing.v0.models {
15607
15650
  readonly description: string;
15608
15651
  readonly original?: io.flow.billing.v0.models.TransactionMetadataOriginalTransaction;
15609
15652
  readonly url?: string;
15653
+ readonly recoup?: boolean;
15654
+ }
15655
+
15656
+ interface TransactionMetadataMerchantFee {
15657
+ readonly discriminator: 'merchant_fee';
15658
+ readonly items: io.flow.billing.v0.models.TransactionMetadataMerchantFeeItem[];
15659
+ }
15660
+
15661
+ interface TransactionMetadataMerchantFeeItem {
15662
+ readonly type: string;
15663
+ readonly amount: number;
15664
+ readonly local_amount?: number;
15665
+ readonly description?: string;
15610
15666
  }
15611
15667
 
15612
15668
  interface TransactionMetadataOriginalTransaction {
@@ -15774,7 +15830,8 @@ declare namespace io.flow.billing.v0.unions {
15774
15830
  | io.flow.billing.v0.models.TransactionMetadataManual
15775
15831
  | io.flow.billing.v0.models.TransactionMetadataFailedPayout
15776
15832
  | io.flow.billing.v0.models.TransactionMetadataPaymentTransaction
15777
- | io.flow.billing.v0.models.TransactionMetadataTaxDuty;
15833
+ | io.flow.billing.v0.models.TransactionMetadataTaxDuty
15834
+ | io.flow.billing.v0.models.TransactionMetadataMerchantFee;
15778
15835
  }
15779
15836
 
15780
15837
  declare namespace io.flow.harmonization.v0.enums {
@@ -15799,6 +15856,11 @@ declare namespace io.flow.harmonization.v0.models {
15799
15856
  readonly company_name_match_result_reason?: string;
15800
15857
  }
15801
15858
 
15859
+ interface HarmonizationTariffCode {
15860
+ readonly tariff_code: string;
15861
+ readonly destination: string;
15862
+ }
15863
+
15802
15864
  interface HarmonizedCategoryReference {
15803
15865
  readonly id: string;
15804
15866
  }
@@ -15894,6 +15956,13 @@ declare namespace io.flow.harmonization.v0.models {
15894
15956
  readonly tax: io.flow.price.v0.models.Tax;
15895
15957
  }
15896
15958
 
15959
+ interface TariffCodes {
15960
+ readonly item_number: string;
15961
+ readonly product_id: string;
15962
+ readonly hs6_code: string;
15963
+ readonly codes: io.flow.harmonization.v0.models.HarmonizationTariffCode[];
15964
+ }
15965
+
15897
15966
  interface TaxRegistration {
15898
15967
  readonly id: string;
15899
15968
  readonly key: string;
@@ -16205,7 +16274,13 @@ declare namespace io.flow.sellability.v0.enums {
16205
16274
  | 'wait_for_high_fidelity'
16206
16275
  | 'external_service_unavailable';
16207
16276
  type SellabilityRequestStatus = 'commit';
16208
- type SellabilityResultErrorCode = 'insufficient_details' | 'generic_error';
16277
+ type SellabilityResultErrorCode =
16278
+ | 'insufficient_details'
16279
+ | 'ineligible_category'
16280
+ | 'wait_for_high_fidelity'
16281
+ | 'external_service_unavailable'
16282
+ | 'generic_error'
16283
+ | 'catalog_processing_threshold';
16209
16284
  type SellabilityResultStatus = 'in_review' | 'succeeded' | 'failed';
16210
16285
  type SellabilityScreeningMode = 'pre_onboarding' | 'default_on' | 'active';
16211
16286
  }
@@ -16233,11 +16308,14 @@ declare namespace io.flow.sellability.v0.models {
16233
16308
  }
16234
16309
 
16235
16310
  interface ProductSellabilityResult {
16311
+ readonly id: string;
16236
16312
  readonly merchant_id?: string;
16237
16313
  readonly product_id: string;
16238
16314
  readonly restricted_regions: io.flow.sellability.v0.models.SellabilityRestrictedRegion[];
16315
+ readonly restricted_reasons: io.flow.sellability.v0.models.SellabilityRestrictedReason[];
16239
16316
  readonly needs_action_attributes?: io.flow.sellability.v0.models.SellabilityNeedsActionAttributes[];
16240
16317
  readonly request_id?: string;
16318
+ readonly hs6_code?: string;
16241
16319
  }
16242
16320
 
16243
16321
  interface SellabilityError {
@@ -16249,9 +16327,16 @@ declare namespace io.flow.sellability.v0.models {
16249
16327
  interface SellabilityNeedsActionAttributes {
16250
16328
  readonly reason_code: string;
16251
16329
  readonly category_metafield_handles: string[];
16330
+ readonly category_metafield_ids: string[];
16252
16331
  readonly require_msds?: boolean;
16253
16332
  }
16254
16333
 
16334
+ interface SellabilityReasonWithRegions {
16335
+ readonly reason: string;
16336
+ readonly regions: string[];
16337
+ readonly review_status?: string;
16338
+ }
16339
+
16255
16340
  interface SellabilityRegionResult {
16256
16341
  readonly type: io.flow.sellability.v0.enums.RuleEffectType;
16257
16342
  readonly regions: string[];
@@ -16262,14 +16347,19 @@ declare namespace io.flow.sellability.v0.models {
16262
16347
  readonly reasons: string[];
16263
16348
  }
16264
16349
 
16350
+ interface SellabilityRestrictedReason {
16351
+ readonly type: io.flow.sellability.v0.enums.RuleEffectType;
16352
+ readonly reasons_with_regions: io.flow.sellability.v0.models.SellabilityReasonWithRegions[];
16353
+ }
16354
+
16265
16355
  interface SellabilityRestrictedRegion {
16266
16356
  readonly type: io.flow.sellability.v0.enums.RuleEffectType;
16267
- readonly regions_with_reasons: io.flow.sellability.v0.models.SellabilityRegionWithReasons[];
16357
+ readonly regions: string[];
16268
16358
  }
16269
16359
 
16270
16360
  interface SellabilityScreening {
16271
16361
  readonly discriminator: 'sellability_screening';
16272
- readonly sellability_result?: io.flow.sellability.v0.models.ProductSellabilityResult;
16362
+ readonly product_sellability_result?: io.flow.sellability.v0.models.ProductSellabilityResult;
16273
16363
  readonly request_id: string;
16274
16364
  readonly status: io.flow.sellability.v0.enums.SellabilityResultStatus;
16275
16365
  readonly error_code?: io.flow.sellability.v0.enums.SellabilityResultErrorCode;
@@ -16521,6 +16611,14 @@ declare namespace io.flow.billing.bank.account.v0.models {
16521
16611
  readonly iban: string;
16522
16612
  }
16523
16613
 
16614
+ interface BankAccountInfoKor {
16615
+ readonly discriminator: 'kor';
16616
+ readonly name: string;
16617
+ readonly bank_account_number: string;
16618
+ readonly bank_routing_number: string;
16619
+ readonly bank_name: string;
16620
+ }
16621
+
16524
16622
  interface BankAccountInfoUsa {
16525
16623
  readonly discriminator: 'usa';
16526
16624
  readonly routing_number: string;
@@ -16534,10 +16632,12 @@ declare namespace io.flow.billing.bank.account.v0.unions {
16534
16632
  | io.flow.billing.bank.account.v0.models.BankAccountInfoCan
16535
16633
  | io.flow.billing.bank.account.v0.models.BankAccountInfoGbr
16536
16634
  | io.flow.billing.bank.account.v0.models.BankAccountInfoFra
16537
- | io.flow.billing.bank.account.v0.models.BankAccountInfoIta;
16635
+ | io.flow.billing.bank.account.v0.models.BankAccountInfoIta
16636
+ | io.flow.billing.bank.account.v0.models.BankAccountInfoKor;
16538
16637
  }
16539
16638
 
16540
16639
  declare namespace io.flow.internal.v0.enums {
16640
+ type AccountCurrencyFilter = 'GBP' | 'CAD' | 'USD';
16541
16641
  type AccountPaymentHoldReason =
16542
16642
  | 'fraudulent'
16543
16643
  | 'frozen'
@@ -16549,9 +16649,7 @@ declare namespace io.flow.internal.v0.enums {
16549
16649
  | 'hosted_payment_page'
16550
16650
  | 'checkout_payments_api'
16551
16651
  | 'classic_authorise_api';
16552
- type AldoItemType = 'physical' | 'digital';
16553
- type AnirbanItemType = 'physical' | 'digital';
16554
- type AnshItemType = 'physical' | 'digital';
16652
+ type AmruthaItemType = 'physical' | 'digital';
16555
16653
  type AnyDangerousGoods = 'yes' | 'no' | 'i_dont_know';
16556
16654
  type ApiCallReferenceId =
16557
16655
  | 'duty_rates_data_event'
@@ -16573,6 +16671,8 @@ declare namespace io.flow.internal.v0.enums {
16573
16671
  | 'prr-76544617791b4ce8af96b3a7879474c6'
16574
16672
  | 'prr-566cc67167944bc4bd08167aa9c0beba'
16575
16673
  | 'prr-74e1320efb7741cf9ace400b69800f9b';
16674
+ type B2BFeeMorTaxTriggerType = 'capture' | 'order';
16675
+ type B2BFeeShippingTaxTriggerType = 'label' | 'trueup';
16576
16676
  type B2BTaxLedgerDocumentType = 'b2b_invoice' | 'b2b_credit_memo';
16577
16677
  type B2BTaxRateType = 'basic' | 'preferential' | 'exempt';
16578
16678
  type BankAccountStatus = 'on_hold' | 'not_on_hold';
@@ -16847,7 +16947,10 @@ declare namespace io.flow.internal.v0.enums {
16847
16947
  | 'merchant_payout'
16848
16948
  | 'merchant_refund'
16849
16949
  | 'b2b_tax'
16850
- | 'b2b_tax_refund';
16950
+ | 'b2b_tax_refund'
16951
+ | 'b2b_fee_mor_tax'
16952
+ | 'b2b_fee_shipping_tax';
16953
+ type BojanaItemType = 'physical' | 'digital';
16851
16954
  type CalculatorEngine =
16852
16955
  | 'dtce_with_deminimis'
16853
16956
  | 'dtce_with_inclusive_pricing'
@@ -16959,15 +17062,21 @@ declare namespace io.flow.internal.v0.enums {
16959
17062
  | 'continue_shopping'
16960
17063
  | 'confirmation'
16961
17064
  | 'invalid_checkout';
17065
+ type ChenglinItemType = 'physical' | 'digital';
16962
17066
  type ClassificationDecision = 'Accept' | 'Reject';
16963
17067
  type ClassificationErrorCode = 'generic_error';
16964
- type ClassificationFailureReason = 'low_confidence' | 'timeout';
17068
+ type ClassificationFailureReason =
17069
+ | 'low_confidence'
17070
+ | 'timeout'
17071
+ | 'missing_hs6_code'
17072
+ | 'invalid_price';
16965
17073
  type ClassificationPlatform =
16966
17074
  | 'GlobalE'
16967
17075
  | 'Flow'
16968
17076
  | 'FlowOnboarding'
16969
17077
  | 'Borderfree';
16970
17078
  type ClassificationScope = 'Item' | 'Product';
17079
+ type ClassificationSource = 'sellability';
16971
17080
  type ClassificationType = 'None' | 'Manual' | 'ML' | 'System';
16972
17081
  type ClothingAgeClassification =
16973
17082
  | 'None'
@@ -17105,8 +17214,6 @@ declare namespace io.flow.internal.v0.enums {
17105
17214
  | 'calculator_organization_settings_deleted'
17106
17215
  | 'carrier_account_upserted_v2'
17107
17216
  | 'carrier_account_deleted'
17108
- | 'label_generation_settings_upserted'
17109
- | 'label_generation_settings_deleted'
17110
17217
  | 'catalog_import_request'
17111
17218
  | 'exclusion_rule_upserted'
17112
17219
  | 'exclusion_rule_deleted'
@@ -17176,6 +17283,8 @@ declare namespace io.flow.internal.v0.enums {
17176
17283
  | 'carrier_charge_deleted'
17177
17284
  | 'bank_payment_order_upserted'
17178
17285
  | 'bank_payment_order_deleted'
17286
+ | 'shipping_cost_upserted'
17287
+ | 'shipping_cost_deleted'
17179
17288
  | 'fraud_review_upserted'
17180
17289
  | 'fraud_review_deleted'
17181
17290
  | 'fraud_pending_review_upserted'
@@ -17289,11 +17398,17 @@ declare namespace io.flow.internal.v0.enums {
17289
17398
  | 'paypal_refund_upserted'
17290
17399
  | 'paypal_dispute_upserted'
17291
17400
  | 'paypal_dispute_deleted'
17401
+ | 'preonboarding_sellability_result_inserted'
17402
+ | 'preonboarding_sellability_result_updated'
17403
+ | 'preonboarding_sellability_result_deleted'
17292
17404
  | 'product_restriction_rule_decision_upserted'
17293
17405
  | 'product_restriction_rule_decision_deleted'
17294
17406
  | 'product_restriction_state_inserted'
17295
17407
  | 'product_restriction_state_updated'
17296
17408
  | 'product_restriction_state_deleted'
17409
+ | 'product_sellability_result_inserted'
17410
+ | 'product_sellability_result_updated'
17411
+ | 'product_sellability_result_deleted'
17297
17412
  | 'order_rates_published_v3'
17298
17413
  | 'ratecard_dimension_estimate_upserted'
17299
17414
  | 'ratecard_dimension_estimate_deleted'
@@ -17353,6 +17468,8 @@ declare namespace io.flow.internal.v0.enums {
17353
17468
  | 'shopify_order_risk_assessment_deleted'
17354
17469
  | 'shopify_order_transaction_upserted'
17355
17470
  | 'shopify_order_transaction_deleted'
17471
+ | 'shopify_test_order_upserted'
17472
+ | 'shopify_test_order_deleted'
17356
17473
  | 'shopify_product_create_upserted'
17357
17474
  | 'shopify_product_create_deleted'
17358
17475
  | 'shopify_product_update_upserted'
@@ -17389,22 +17506,10 @@ declare namespace io.flow.internal.v0.enums {
17389
17506
  | 'stripe_connect_report_record_deleted'
17390
17507
  | 'liability_remittance_plan_upserted'
17391
17508
  | 'liability_remittance_plan_deleted'
17392
- | 'anirban_item_upserted'
17393
- | 'anirban_item_deleted'
17394
- | 'sarvesh_item_upserted'
17395
- | 'sarvesh_item_deleted'
17396
- | 'hosein_item_upserted'
17397
- | 'hosein_item_deleted'
17398
- | 'niall_item_upserted'
17399
- | 'niall_item_deleted'
17400
- | 'rohan_item_upserted'
17401
- | 'rohan_item_deleted'
17402
- | 'aldo_item_upserted'
17403
- | 'aldo_item_deleted'
17404
- | 'ansh_item_upserted'
17405
- | 'ansh_item_deleted'
17406
17509
  | 'gabriel_item_upserted'
17407
17510
  | 'gabriel_item_deleted'
17511
+ | 'chenglin_item_upserted'
17512
+ | 'chenglin_item_deleted'
17408
17513
  | 'tracking_processing_error_upserted'
17409
17514
  | 'tracking_processing_error_deleted'
17410
17515
  | 'tracking_label_event_upserted_v2'
@@ -17468,7 +17573,6 @@ declare namespace io.flow.internal.v0.enums {
17468
17573
  | 'legacy_model'
17469
17574
  | 'enterprise_model'
17470
17575
  | 'merchant';
17471
- type HoseinItemType = 'physical' | 'digital';
17472
17576
  type Hs6CodeSource = 'sellability' | 'classification' | 'human';
17473
17577
  type HttpMethod = 'get' | 'post';
17474
17578
  type InternalPaymentEntityType =
@@ -17513,8 +17617,8 @@ declare namespace io.flow.internal.v0.enums {
17513
17617
  | 'carrier';
17514
17618
  type LabelRequestResultOrganizationType =
17515
17619
  | 'all'
17516
- | 'legacy_production'
17517
- | 'managed_markets_production'
17620
+ | 'cafe24_production'
17621
+ | 'shopify_production'
17518
17622
  | 'sandbox';
17519
17623
  type LabelRequestResultState = 'success' | 'failure';
17520
17624
  type LabelTransactionType =
@@ -17523,7 +17627,9 @@ declare namespace io.flow.internal.v0.enums {
17523
17627
  | 'billable_label'
17524
17628
  | 'fee'
17525
17629
  | 'revenue_share';
17526
- type LedgerReportType = 'periodic_mor_jurisdiction_report';
17630
+ type LedgerReportType =
17631
+ | 'periodic_mor_jurisdiction_report'
17632
+ | 'periodic_mor_jurisdiction_sandbox_report';
17527
17633
  type LedgerReportUrlType = 'sharepoint' | 's3';
17528
17634
  type LiabilityType =
17529
17635
  | 'full_value_tax'
@@ -17546,7 +17652,8 @@ declare namespace io.flow.internal.v0.enums {
17546
17652
  | 'carrier_credit'
17547
17653
  | 'negative_balance_guarantee'
17548
17654
  | 'bank_payment_failure'
17549
- | 'non_fraud_chargeback';
17655
+ | 'non_fraud_chargeback'
17656
+ | 'v1_migration_neg_balance_settlement';
17550
17657
  type MerchantFeeTransactionType = 'adjustment' | 'reversal' | 'fee';
17551
17658
  type MerchantOfRecord =
17552
17659
  | 'global_e_united_states'
@@ -17570,7 +17677,6 @@ declare namespace io.flow.internal.v0.enums {
17570
17677
  | 'to_non_registered_business'
17571
17678
  | 'to_registered_business'
17572
17679
  | 'flash_title';
17573
- type NiallItemType = 'physical' | 'digital';
17574
17680
  type NoLiabilityReasonCode =
17575
17681
  | 'zero_basis'
17576
17682
  | 'zero_rate_on_goods'
@@ -17652,6 +17758,7 @@ declare namespace io.flow.internal.v0.enums {
17652
17758
  type OrganizationCapability = 'organization' | 'flow' | 'dynamic';
17653
17759
  type OrganizationMetricType = 'organization_restriction_status';
17654
17760
  type OrganizationPaymentStatus = 'active' | 'archived';
17761
+ type OrganizationPromotionStatus = 'in_progress' | 'completed' | 'failed';
17655
17762
  type OrganizationRestrictionApprovalStatus = 'ready' | 'not-ready';
17656
17763
  type OrganizationRestrictionNoteType =
17657
17764
  | 'internal'
@@ -17689,7 +17796,6 @@ declare namespace io.flow.internal.v0.enums {
17689
17796
  | 'credit';
17690
17797
  type PaymentTerm = 'net7' | 'net15' | 'net30';
17691
17798
  type PendingRecordType = 'verification' | 'classification' | 'restriction';
17692
- type PrateekItemType = 'physical' | 'digital';
17693
17799
  type PreferredBillingSchedule = 'monthly' | 'bi-monthly';
17694
17800
  type PreonboardingClassificationDecision = 'Accept' | 'Reject';
17695
17801
  type PreonboardingClassificationPlatform = 'FlowOnboarding';
@@ -17779,7 +17885,9 @@ declare namespace io.flow.internal.v0.enums {
17779
17885
  | 'enterprise'
17780
17886
  | 'shopify-sandbox'
17781
17887
  | 'enterprise-sandbox'
17782
- | 'enterprise-qa';
17888
+ | 'enterprise-qa'
17889
+ | 'cafe24'
17890
+ | 'cafe24-sandbox';
17783
17891
  type RestrictionOrganizationSource = 'smb' | 'enterprise';
17784
17892
  type RestrictionRuleActivationStatus = 'draft' | 'active' | 'inactive';
17785
17893
  type RestrictionRuleCommunityExemption =
@@ -17801,15 +17909,79 @@ declare namespace io.flow.internal.v0.enums {
17801
17909
  | 'Low-Risk'
17802
17910
  | 'Restricted-Party'
17803
17911
  | 'none';
17804
- type RohanItemType = 'physical' | 'digital';
17805
- type SarveshItemType = 'physical' | 'digital';
17806
17912
  type SellabilityCheckStatus =
17807
17913
  | 'more_restrictive'
17808
17914
  | 'less_restrictive'
17809
17915
  | 'similar'
17810
17916
  | 'regions_differ'
17811
17917
  | 'rules_differ';
17918
+ type SellabilityInternalMatchType = 'positive_keyword' | 'auto_restricted';
17812
17919
  type SellabilityStatus = 'complete' | 'incomplete';
17920
+ type ShopifyCallbackErrorCode =
17921
+ | 'UNKNOWN'
17922
+ | 'SYSTEM_ERROR'
17923
+ | 'THIRD_PARTY_SYSTEM_ERROR'
17924
+ | 'TIMEOUT'
17925
+ | 'VERSION_MISMATCH'
17926
+ | 'INVALID_AUTHENTICATION'
17927
+ | 'RATE_LIMIT_EXCEEDED'
17928
+ | 'TEMPORARILY_UNAVAILABLE'
17929
+ | 'FAILED_VALIDATION'
17930
+ | 'INVALID_FORMAT'
17931
+ | 'MISSING_VALUE'
17932
+ | 'OUT_OF_RANGE'
17933
+ | 'OVER_LIMIT'
17934
+ | 'UNDER_LIMIT'
17935
+ | 'UNAUTHORIZED'
17936
+ | 'NOT_FOUND'
17937
+ | 'EXPIRED';
17938
+ type ShopifyChargeCode =
17939
+ | 'transport_cost'
17940
+ | 'above_threshold'
17941
+ | 'additional_handling'
17942
+ | 'customs_additional_fees'
17943
+ | 'customs_clearance'
17944
+ | 'customs_duties'
17945
+ | 'customs_regulatory_fee'
17946
+ | 'customs_duty'
17947
+ | 'customs_taxes'
17948
+ | 'dangerous_goods'
17949
+ | 'delivery_area_surcharge'
17950
+ | 'duties_fx_surcharge'
17951
+ | 'discount'
17952
+ | 'eei_filing'
17953
+ | 'elevated_risk_area_surcharge'
17954
+ | 'emergency_situation_surcharge'
17955
+ | 'environmental_surcharge'
17956
+ | 'fuel_surcharge'
17957
+ | 'oversize_piece_surcharge'
17958
+ | 'packaging'
17959
+ | 'pickup_area_surcharge'
17960
+ | 'peak_surcharge'
17961
+ | 'remote_delivery_area_surcharge'
17962
+ | 'residential_surcharge'
17963
+ | 'security_surcharge'
17964
+ | 'shipper_intercept'
17965
+ | 'address_correction'
17966
+ | 'undeliverable'
17967
+ | 'unknown'
17968
+ | 'prohibited_item'
17969
+ | 'trade_restriction_surcharge'
17970
+ | 'processing'
17971
+ | 'delivery'
17972
+ | 'notification'
17973
+ | 'broker_notification'
17974
+ | 'delivery_confirmation'
17975
+ | 'signature_required'
17976
+ | 'tax_gst'
17977
+ | 'tax_hst'
17978
+ | 'tax_pst'
17979
+ | 'tax_vat'
17980
+ | 'discount_tax'
17981
+ | 'incoterm_ddp';
17982
+ type ShopifyDeliveryMethodType = 'SHIPPING' | 'PICKUP_POINT';
17983
+ type ShopifyDimensionUnit = 'cm' | 'ft' | 'in' | 'm' | 'mm';
17984
+ type ShopifyIncoterm = 'DAP' | 'DDP';
17813
17985
  type ShopifyIncotermConfiguration = 'DDP' | 'DAP' | 'DDU' | 'UNSUPPORTED';
17814
17986
  type ShopifyMarketsDangerousGoods =
17815
17987
  | 'aerosols'
@@ -17864,8 +18036,43 @@ declare namespace io.flow.internal.v0.enums {
17864
18036
  | 'tracking_number'
17865
18037
  | 'carrier_service'
17866
18038
  | 'tracking_url';
18039
+ type ShopifyPackageType =
18040
+ | 'BOX'
18041
+ | 'ENVELOPE'
18042
+ | 'SOFT_PACK'
18043
+ | 'TUBE'
18044
+ | 'CARRIER_PACKAGING';
17867
18045
  type ShopifyPlanType = 'standard' | 'shopify_plus';
17868
18046
  type ShopifyService = 'payment' | 'duty_tax_calculator' | 'sellability';
18047
+ type ShopifyShipmentOptionCode =
18048
+ | 'adult_signature_required'
18049
+ | 'delivery_confirmation'
18050
+ | 'insurance'
18051
+ | 'named_person_only'
18052
+ | 'no_neighbour_delivery'
18053
+ | 'pickup'
18054
+ | 'package_pickup'
18055
+ | 'signature_required'
18056
+ | 'proof_of_age'
18057
+ | 'proof_of_age_16'
18058
+ | 'proof_of_age_18'
18059
+ | 'proof_of_age_19'
18060
+ | 'proof_of_age_21'
18061
+ | 'incoterm_ddp'
18062
+ | 'incoterm_dap'
18063
+ | 'usps_first_mile';
18064
+ type ShopifyUnavailableRateReasonCode =
18065
+ | 'SERVICE_NOT_AVAILABLE'
18066
+ | 'TEMPORARILY_UNAVAILABLE'
18067
+ | 'TIMEOUT'
18068
+ | 'RATE_LIMIT_EXCEEDED'
18069
+ | 'SYSTEM_ERROR'
18070
+ | 'THIRD_PARTY_SYSTEM_ERROR'
18071
+ | 'FAILED_VALIDATION'
18072
+ | 'INVALID_FORMAT'
18073
+ | 'MISSING_VALUE'
18074
+ | 'OUT_OF_RANGE';
18075
+ type ShopifyWeightUnit = 'g' | 'kg' | 'lb' | 'oz';
17869
18076
  type SimpleRoundingStrategy = 'no_rounding' | 'currency_precision';
17870
18077
  type SnoozeNextActionWith = 'customer_service' | 'engineering';
17871
18078
  type SnoozeSourceType = 'task' | 'invariant';
@@ -18069,11 +18276,13 @@ declare namespace io.flow.internal.v0.models {
18069
18276
  readonly transfer_method?: io.flow.internal.v0.enums.TransferMethod;
18070
18277
  readonly b2b_tax_remittance_days?: number;
18071
18278
  readonly merchant_of_record_fee?: number;
18279
+ readonly merchant_of_record_fee_create_on_order?: boolean;
18072
18280
  readonly duty_guarantee_fee?: number;
18073
18281
  readonly transfer_fee?: number;
18074
18282
  readonly negative_balance_fee?: number;
18075
18283
  readonly order_service_fee?: io.flow.internal.v0.models.TieredFee;
18076
18284
  readonly label_fees?: io.flow.internal.v0.models.AccountSettingLabelFees;
18285
+ readonly revenue_share_rate?: number;
18077
18286
  readonly charge_label_cost_directly: boolean;
18078
18287
  readonly transaction_posting_method: io.flow.internal.v0.enums.TransactionPostingMethod;
18079
18288
  readonly statement_transfer_transaction_location: io.flow.internal.v0.enums.StatementTransferTransactionLocation;
@@ -18084,6 +18293,10 @@ declare namespace io.flow.internal.v0.models {
18084
18293
  readonly enable_fee_reversals: boolean;
18085
18294
  readonly record_reason_for_transactions_pending_payout: boolean;
18086
18295
  readonly enable_negative_debits: boolean;
18296
+ readonly enable_statement_pdf: boolean;
18297
+ readonly enable_shipping_label_revenue_share?: boolean;
18298
+ readonly enable_carrier_charge_revenue_share?: boolean;
18299
+ readonly always_charge_organization_for_trueup?: boolean;
18087
18300
  }
18088
18301
 
18089
18302
  interface AccountSettingsDeleted {
@@ -18613,37 +18826,6 @@ declare namespace io.flow.internal.v0.models {
18613
18826
  readonly placeholder?: boolean;
18614
18827
  }
18615
18828
 
18616
- interface AldoItem {
18617
- readonly id: string;
18618
- readonly number: string;
18619
- readonly amount: io.flow.common.v0.models.Price;
18620
- readonly description?: string;
18621
- readonly type: io.flow.internal.v0.enums.AldoItemType;
18622
- readonly added_on: string;
18623
- }
18624
-
18625
- interface AldoItemDeleted {
18626
- readonly discriminator: 'aldo_item_deleted';
18627
- readonly event_id: string;
18628
- readonly timestamp: string;
18629
- readonly id: string;
18630
- }
18631
-
18632
- interface AldoItemForm {
18633
- readonly number: string;
18634
- readonly amount: io.flow.common.v0.models.Price;
18635
- readonly description?: string;
18636
- readonly type: io.flow.internal.v0.enums.AldoItemType;
18637
- readonly added_on: string;
18638
- }
18639
-
18640
- interface AldoItemUpserted {
18641
- readonly discriminator: 'aldo_item_upserted';
18642
- readonly event_id: string;
18643
- readonly timestamp: string;
18644
- readonly item: io.flow.internal.v0.models.AldoItem;
18645
- }
18646
-
18647
18829
  interface AllItemsExport {
18648
18830
  readonly discriminator: 'all_items_export';
18649
18831
  readonly event_id: string;
@@ -18666,68 +18848,23 @@ declare namespace io.flow.internal.v0.models {
18666
18848
  readonly labels: Record<string, string[]>;
18667
18849
  }
18668
18850
 
18669
- interface AnirbanItem {
18670
- readonly id: string;
18671
- readonly number: string;
18672
- readonly amount: io.flow.common.v0.models.Price;
18673
- readonly description?: string;
18674
- readonly type: io.flow.internal.v0.enums.AnirbanItemType;
18675
- readonly added_on: string;
18676
- }
18677
-
18678
- interface AnirbanItemDeleted {
18679
- readonly discriminator: 'anirban_item_deleted';
18680
- readonly event_id: string;
18681
- readonly timestamp: string;
18682
- readonly id: string;
18683
- }
18684
-
18685
- interface AnirbanItemForm {
18686
- readonly number: string;
18687
- readonly amount: io.flow.common.v0.models.Price;
18688
- readonly description?: string;
18689
- readonly type: io.flow.internal.v0.enums.AnirbanItemType;
18690
- readonly added_on: string;
18691
- }
18692
-
18693
- interface AnirbanItemUpserted {
18694
- readonly discriminator: 'anirban_item_upserted';
18695
- readonly event_id: string;
18696
- readonly timestamp: string;
18697
- readonly item: io.flow.internal.v0.models.AnirbanItem;
18698
- }
18699
-
18700
- interface AnshItem {
18851
+ interface AmruthaItem {
18701
18852
  readonly id: string;
18702
18853
  readonly number: string;
18703
18854
  readonly amount: io.flow.common.v0.models.Price;
18704
18855
  readonly description?: string;
18705
- readonly type: io.flow.internal.v0.enums.AnshItemType;
18856
+ readonly type: io.flow.internal.v0.enums.AmruthaItemType;
18706
18857
  readonly added_on: string;
18707
18858
  }
18708
18859
 
18709
- interface AnshItemDeleted {
18710
- readonly discriminator: 'ansh_item_deleted';
18711
- readonly event_id: string;
18712
- readonly timestamp: string;
18713
- readonly id: string;
18714
- }
18715
-
18716
- interface AnshItemForm {
18860
+ interface AmruthaItemForm {
18717
18861
  readonly number: string;
18718
18862
  readonly amount: io.flow.common.v0.models.Price;
18719
18863
  readonly description?: string;
18720
- readonly type: io.flow.internal.v0.enums.AnshItemType;
18864
+ readonly type: io.flow.internal.v0.enums.AmruthaItemType;
18721
18865
  readonly added_on: string;
18722
18866
  }
18723
18867
 
18724
- interface AnshItemUpserted {
18725
- readonly discriminator: 'ansh_item_upserted';
18726
- readonly event_id: string;
18727
- readonly timestamp: string;
18728
- readonly item: io.flow.internal.v0.models.AnshItem;
18729
- }
18730
-
18731
18868
  interface ApplePayAuthorizationPayload {
18732
18869
  readonly discriminator: 'apple_pay_authorization_payload';
18733
18870
  readonly apple_pay_token: string;
@@ -18831,6 +18968,16 @@ declare namespace io.flow.internal.v0.models {
18831
18968
  readonly action?: io.flow.internal.v0.enums.RestrictionStatus;
18832
18969
  }
18833
18970
 
18971
+ interface B2BFeeMorTaxTriggerMetadata {
18972
+ readonly discriminator: 'b2b_fee_mor_tax_trigger_metadata';
18973
+ readonly trigger_type: io.flow.internal.v0.enums.B2BFeeMorTaxTriggerType;
18974
+ }
18975
+
18976
+ interface B2BFeeShippingTaxTriggerMetadata {
18977
+ readonly discriminator: 'b2b_fee_shipping_tax_trigger_metadata';
18978
+ readonly trigger_type: io.flow.internal.v0.enums.B2BFeeShippingTaxTriggerType;
18979
+ }
18980
+
18834
18981
  interface B2BTaxLedger {
18835
18982
  readonly id: string;
18836
18983
  readonly total_amount: io.flow.internal.v0.models.TaxTypeTotal;
@@ -18848,6 +18995,8 @@ declare namespace io.flow.internal.v0.models {
18848
18995
  readonly document_type: io.flow.internal.v0.enums.B2BTaxLedgerDocumentType;
18849
18996
  readonly document_date: string;
18850
18997
  readonly ledger_report_id?: string;
18998
+ readonly voids_invoice_number?: string;
18999
+ readonly document_number?: string;
18851
19000
  }
18852
19001
 
18853
19002
  interface B2BTaxLedgerForm {
@@ -18866,6 +19015,8 @@ declare namespace io.flow.internal.v0.models {
18866
19015
  readonly document_type: io.flow.internal.v0.enums.B2BTaxLedgerDocumentType;
18867
19016
  readonly document_date: string;
18868
19017
  readonly ledger_report_id?: string;
19018
+ readonly voids_invoice_number?: string;
19019
+ readonly document_number?: string;
18869
19020
  }
18870
19021
 
18871
19022
  interface BankAccount {
@@ -19176,6 +19327,9 @@ declare namespace io.flow.internal.v0.models {
19176
19327
  readonly tax_refund: io.flow.common.v0.models.Price;
19177
19328
  readonly b2b_tax: io.flow.common.v0.models.Price;
19178
19329
  readonly b2b_tax_refund: io.flow.common.v0.models.Price;
19330
+ readonly merchant_fee: io.flow.common.v0.models.Price;
19331
+ readonly b2b_fee_mor_tax: io.flow.common.v0.models.Price;
19332
+ readonly b2b_fee_shipping_tax: io.flow.common.v0.models.Price;
19179
19333
  }
19180
19334
 
19181
19335
  interface BillingStatementUpserted {
@@ -19242,6 +19396,23 @@ declare namespace io.flow.internal.v0.models {
19242
19396
  readonly secret_key: string;
19243
19397
  }
19244
19398
 
19399
+ interface BojanaItem {
19400
+ readonly id: string;
19401
+ readonly number: string;
19402
+ readonly amount: io.flow.common.v0.models.Price;
19403
+ readonly description?: string;
19404
+ readonly type: io.flow.internal.v0.enums.BojanaItemType;
19405
+ readonly added_on: string;
19406
+ }
19407
+
19408
+ interface BojanaItemForm {
19409
+ readonly number: string;
19410
+ readonly amount: io.flow.common.v0.models.Price;
19411
+ readonly description?: string;
19412
+ readonly type: io.flow.internal.v0.enums.BojanaItemType;
19413
+ readonly added_on: string;
19414
+ }
19415
+
19245
19416
  interface BooleanFeatureDefaultValue {
19246
19417
  readonly discriminator: 'boolean';
19247
19418
  readonly value: boolean;
@@ -20255,6 +20426,37 @@ declare namespace io.flow.internal.v0.models {
20255
20426
  readonly type: io.flow.internal.v0.enums.CheckoutUrlType;
20256
20427
  }
20257
20428
 
20429
+ interface ChenglinItem {
20430
+ readonly id: string;
20431
+ readonly number: string;
20432
+ readonly amount: io.flow.common.v0.models.Price;
20433
+ readonly description?: string;
20434
+ readonly type: io.flow.internal.v0.enums.GabrielItemType;
20435
+ readonly added_on: string;
20436
+ }
20437
+
20438
+ interface ChenglinItemDeleted {
20439
+ readonly discriminator: 'chenglin_item_deleted';
20440
+ readonly event_id: string;
20441
+ readonly timestamp: string;
20442
+ readonly id: string;
20443
+ }
20444
+
20445
+ interface ChenglinItemForm {
20446
+ readonly number: string;
20447
+ readonly amount: io.flow.common.v0.models.Price;
20448
+ readonly description?: string;
20449
+ readonly type: io.flow.internal.v0.enums.GabrielItemType;
20450
+ readonly added_on: string;
20451
+ }
20452
+
20453
+ interface ChenglinItemUpserted {
20454
+ readonly discriminator: 'chenglin_item_upserted';
20455
+ readonly event_id: string;
20456
+ readonly timestamp: string;
20457
+ readonly item: io.flow.internal.v0.models.ChenglinItem;
20458
+ }
20459
+
20258
20460
  interface Cipher {
20259
20461
  readonly id: string;
20260
20462
  readonly attributes: Record<string, string>;
@@ -20828,7 +21030,7 @@ declare namespace io.flow.internal.v0.models {
20828
21030
  readonly debug: io.flow.internal.v0.models.DebugDetails;
20829
21031
  readonly transactions: io.flow.internal.v0.models.DebugOrderTransactionDetails[];
20830
21032
  readonly reporting: io.flow.internal.v0.models.ReportingDetails;
20831
- readonly banking: io.flow.internal.v0.models.DebugBankingDetails;
21033
+ readonly banking?: io.flow.internal.v0.models.DebugBankingDetails;
20832
21034
  }
20833
21035
 
20834
21036
  interface DebugOrderTransactionDetails {
@@ -22626,6 +22828,12 @@ declare namespace io.flow.internal.v0.models {
22626
22828
  readonly num_events: number;
22627
22829
  }
22628
22830
 
22831
+ interface GenerateLoadRate {
22832
+ readonly organization_ids: string[];
22833
+ readonly events_per_second: number;
22834
+ readonly duration_seconds: number;
22835
+ }
22836
+
22629
22837
  interface GenerateLoadSingleOrg {
22630
22838
  readonly discriminator: 'generate_load_single_org';
22631
22839
  readonly organization_id: string;
@@ -22796,44 +23004,14 @@ declare namespace io.flow.internal.v0.models {
22796
23004
  readonly export_id: string;
22797
23005
  }
22798
23006
 
22799
- interface HoseinItem {
22800
- readonly id: string;
22801
- readonly number: string;
22802
- readonly amount: io.flow.common.v0.models.Price;
22803
- readonly description?: string;
22804
- readonly type: io.flow.internal.v0.enums.HoseinItemType;
22805
- readonly added_on: string;
22806
- }
22807
-
22808
- interface HoseinItemDeleted {
22809
- readonly discriminator: 'hosein_item_deleted';
22810
- readonly event_id: string;
22811
- readonly timestamp: string;
22812
- readonly id: string;
22813
- }
22814
-
22815
- interface HoseinItemForm {
22816
- readonly number: string;
22817
- readonly amount: io.flow.common.v0.models.Price;
22818
- readonly description?: string;
22819
- readonly type: io.flow.internal.v0.enums.HoseinItemType;
22820
- readonly added_on: string;
22821
- }
22822
-
22823
- interface HoseinItemUpserted {
22824
- readonly discriminator: 'hosein_item_upserted';
22825
- readonly event_id: string;
22826
- readonly timestamp: string;
22827
- readonly item: io.flow.internal.v0.models.HoseinItem;
22828
- }
22829
-
22830
23007
  interface Hs6 {
22831
23008
  readonly code: string;
22832
23009
  readonly description: string;
22833
23010
  }
22834
23011
 
22835
23012
  interface Hs6Metadata {
22836
- readonly description: string;
23013
+ readonly description?: string;
23014
+ readonly classification_source?: io.flow.internal.v0.enums.ClassificationSource;
22837
23015
  }
22838
23016
 
22839
23017
  interface ImportCompleted {
@@ -23345,11 +23523,6 @@ declare namespace io.flow.internal.v0.models {
23345
23523
  readonly values: string[];
23346
23524
  }
23347
23525
 
23348
- interface JeanDemoItem {
23349
- readonly id: string;
23350
- readonly name: string;
23351
- }
23352
-
23353
23526
  interface Journal {
23354
23527
  readonly name: string;
23355
23528
  readonly queued: number;
@@ -23470,34 +23643,6 @@ declare namespace io.flow.internal.v0.models {
23470
23643
  readonly postal?: string;
23471
23644
  }
23472
23645
 
23473
- interface LabelGenerationSettings {
23474
- readonly id: string;
23475
- readonly auto_generate_query?: string;
23476
- readonly commercial_invoice_only_query?: string;
23477
- }
23478
-
23479
- interface LabelGenerationSettingsDeleted {
23480
- readonly discriminator: 'label_generation_settings_deleted';
23481
- readonly event_id: string;
23482
- readonly timestamp: string;
23483
- readonly organization: string;
23484
- readonly id: string;
23485
- }
23486
-
23487
- interface LabelGenerationSettingsForm {
23488
- readonly item_identifier?: string;
23489
- readonly auto_generate_query?: string;
23490
- readonly commercial_invoice_only_query?: string;
23491
- }
23492
-
23493
- interface LabelGenerationSettingsUpserted {
23494
- readonly discriminator: 'label_generation_settings_upserted';
23495
- readonly event_id: string;
23496
- readonly timestamp: string;
23497
- readonly organization: string;
23498
- readonly label_generation_settings: io.flow.internal.v0.models.LabelGenerationSettings;
23499
- }
23500
-
23501
23646
  interface LabelInvoiceRequest {
23502
23647
  readonly id: string;
23503
23648
  readonly label: io.flow.internal.v0.models.TrueupLabelSummary;
@@ -23582,6 +23727,7 @@ declare namespace io.flow.internal.v0.models {
23582
23727
  readonly reference_id?: string;
23583
23728
  readonly logistics_integration_provider?: string;
23584
23729
  readonly tax_lrp_liabilities?: io.flow.internal.v0.models.Liability[];
23730
+ readonly channel_id?: string;
23585
23731
  }
23586
23732
 
23587
23733
  interface LabelSummary {
@@ -24002,6 +24148,7 @@ declare namespace io.flow.internal.v0.models {
24002
24148
  readonly original_transaction?: io.flow.internal.v0.models.TransactionReference;
24003
24149
  readonly order?: io.flow.internal.v0.models.BillingOrderTransactionOrderReference;
24004
24150
  readonly attributes?: Record<string, string>;
24151
+ readonly recoup?: boolean;
24005
24152
  readonly id: string;
24006
24153
  readonly type: io.flow.internal.v0.enums.BillingTransactionType;
24007
24154
  readonly status: io.flow.internal.v0.enums.BillingTransactionStatus;
@@ -24019,6 +24166,7 @@ declare namespace io.flow.internal.v0.models {
24019
24166
  readonly category?: io.flow.internal.v0.enums.ManualTransactionCategory;
24020
24167
  readonly order?: io.flow.internal.v0.models.ManualTransactionFormOrder;
24021
24168
  readonly original_transaction_id?: string;
24169
+ readonly recoup?: boolean;
24022
24170
  readonly attributes?: Record<string, string>;
24023
24171
  }
24024
24172
 
@@ -24262,37 +24410,6 @@ declare namespace io.flow.internal.v0.models {
24262
24410
  readonly conditions?: string;
24263
24411
  }
24264
24412
 
24265
- interface NiallItem {
24266
- readonly id: string;
24267
- readonly number: string;
24268
- readonly amount: io.flow.common.v0.models.Price;
24269
- readonly description?: string;
24270
- readonly type: io.flow.internal.v0.enums.NiallItemType;
24271
- readonly added_on: string;
24272
- }
24273
-
24274
- interface NiallItemDeleted {
24275
- readonly discriminator: 'niall_item_deleted';
24276
- readonly event_id: string;
24277
- readonly timestamp: string;
24278
- readonly id: string;
24279
- }
24280
-
24281
- interface NiallItemForm {
24282
- readonly number: string;
24283
- readonly amount: io.flow.common.v0.models.Price;
24284
- readonly description?: string;
24285
- readonly type: io.flow.internal.v0.enums.NiallItemType;
24286
- readonly added_on: string;
24287
- }
24288
-
24289
- interface NiallItemUpserted {
24290
- readonly discriminator: 'niall_item_upserted';
24291
- readonly event_id: string;
24292
- readonly timestamp: string;
24293
- readonly item: io.flow.internal.v0.models.NiallItem;
24294
- }
24295
-
24296
24413
  interface NoCalculatedTaxAmount {
24297
24414
  readonly discriminator: 'no_calculated_tax_amount';
24298
24415
  readonly amount: number;
@@ -24375,6 +24492,7 @@ declare namespace io.flow.internal.v0.models {
24375
24492
  readonly audit_result?: io.flow.internal.v0.enums.OnboardingAuditResult;
24376
24493
  readonly blocked_since?: string;
24377
24494
  readonly onboarding_segment?: string;
24495
+ readonly country?: string;
24378
24496
  }
24379
24497
 
24380
24498
  interface OnboardingStateForm {
@@ -25015,6 +25133,16 @@ declare namespace io.flow.internal.v0.models {
25015
25133
  readonly organization_payment_setting: io.flow.internal.v0.models.OrganizationPaymentSetting;
25016
25134
  }
25017
25135
 
25136
+ interface OrganizationPromotion {
25137
+ readonly status: io.flow.internal.v0.enums.OrganizationPromotionStatus;
25138
+ readonly prod_org: string;
25139
+ }
25140
+
25141
+ interface OrganizationPromotionWarning {
25142
+ readonly prod_org: string;
25143
+ readonly message: string;
25144
+ }
25145
+
25018
25146
  interface OrganizationRestrictionNoteForm {
25019
25147
  readonly note: string;
25020
25148
  readonly note_type: io.flow.internal.v0.enums.OrganizationRestrictionNoteType;
@@ -25201,7 +25329,7 @@ declare namespace io.flow.internal.v0.models {
25201
25329
  readonly label_created_at: string;
25202
25330
  readonly carrier_id: string;
25203
25331
  readonly carrier_tracking_number: string;
25204
- readonly revenue_share_percentage: number;
25332
+ readonly revenue_share_percentage?: number;
25205
25333
  readonly outbound_transaction_id?: string;
25206
25334
  }
25207
25335
 
@@ -25236,6 +25364,7 @@ declare namespace io.flow.internal.v0.models {
25236
25364
  readonly label_transaction_id: string;
25237
25365
  readonly label_invoice_request_id: string;
25238
25366
  readonly carrier_charge_id: string;
25367
+ readonly subtype?: string;
25239
25368
  }
25240
25369
 
25241
25370
  interface OtherRecordOrderSummary {
@@ -25855,23 +25984,6 @@ declare namespace io.flow.internal.v0.models {
25855
25984
  readonly rate: number;
25856
25985
  }
25857
25986
 
25858
- interface PrateekItem {
25859
- readonly id: string;
25860
- readonly number: string;
25861
- readonly amount: io.flow.common.v0.models.Price;
25862
- readonly description?: string;
25863
- readonly type: io.flow.internal.v0.enums.PrateekItemType;
25864
- readonly added_on: string;
25865
- }
25866
-
25867
- interface PrateekItemForm {
25868
- readonly number: string;
25869
- readonly amount: io.flow.common.v0.models.Price;
25870
- readonly description?: string;
25871
- readonly type: io.flow.internal.v0.enums.PrateekItemType;
25872
- readonly added_on: string;
25873
- }
25874
-
25875
25987
  interface Prediction {
25876
25988
  readonly main_material: string;
25877
25989
  readonly gender: string;
@@ -25933,6 +26045,7 @@ declare namespace io.flow.internal.v0.models {
25933
26045
  }
25934
26046
 
25935
26047
  interface PreonboardingSellabilityResult {
26048
+ readonly id?: string;
25936
26049
  readonly merchant_id: string;
25937
26050
  readonly product_id: string;
25938
26051
  readonly channel: string;
@@ -25949,6 +26062,28 @@ declare namespace io.flow.internal.v0.models {
25949
26062
  readonly fingerprint: string;
25950
26063
  }
25951
26064
 
26065
+ interface PreonboardingSellabilityResultDeleted {
26066
+ readonly discriminator: 'preonboarding_sellability_result_deleted';
26067
+ readonly event_id: string;
26068
+ readonly timestamp: string;
26069
+ readonly id: string;
26070
+ }
26071
+
26072
+ interface PreonboardingSellabilityResultInserted {
26073
+ readonly discriminator: 'preonboarding_sellability_result_inserted';
26074
+ readonly event_id: string;
26075
+ readonly timestamp: string;
26076
+ readonly preonboarding_sellability_result: io.flow.internal.v0.models.PreonboardingSellabilityResult;
26077
+ }
26078
+
26079
+ interface PreonboardingSellabilityResultUpdated {
26080
+ readonly discriminator: 'preonboarding_sellability_result_updated';
26081
+ readonly event_id: string;
26082
+ readonly timestamp: string;
26083
+ readonly previous_preonboarding_sellability_result: io.flow.internal.v0.models.PreonboardingSellabilityResult;
26084
+ readonly preonboarding_sellability_result: io.flow.internal.v0.models.PreonboardingSellabilityResult;
26085
+ }
26086
+
25952
26087
  interface PriceInclusivity {
25953
26088
  readonly tax?: boolean;
25954
26089
  readonly duty?: boolean;
@@ -26215,10 +26350,17 @@ declare namespace io.flow.internal.v0.models {
26215
26350
 
26216
26351
  interface ProductSellabilityInternalResult {
26217
26352
  readonly restricted_regions: io.flow.sellability.v0.models.SellabilityRegionResult[];
26218
- readonly rule_ids: string[];
26353
+ readonly rule_matches: io.flow.internal.v0.models.ProductSellabilityInternalRuleMatch[];
26354
+ readonly matching_positive_keywords?: string[];
26355
+ }
26356
+
26357
+ interface ProductSellabilityInternalRuleMatch {
26358
+ readonly rule_id: string;
26359
+ readonly match_types: io.flow.internal.v0.enums.SellabilityInternalMatchType[];
26219
26360
  }
26220
26361
 
26221
26362
  interface ProductSellabilityResult {
26363
+ readonly id?: string;
26222
26364
  readonly shop_id: string;
26223
26365
  readonly product_number: string;
26224
26366
  readonly request_id: string;
@@ -26227,6 +26369,30 @@ declare namespace io.flow.internal.v0.models {
26227
26369
  readonly restricted_regions_by_type?: io.flow.sellability.v0.models.SellabilityRegionResult[];
26228
26370
  readonly rule_ids?: string[];
26229
26371
  readonly taxonomy_category?: string;
26372
+ readonly fingerprint?: string;
26373
+ readonly processed_at?: string;
26374
+ }
26375
+
26376
+ interface ProductSellabilityResultDeleted {
26377
+ readonly discriminator: 'product_sellability_result_deleted';
26378
+ readonly event_id: string;
26379
+ readonly timestamp: string;
26380
+ readonly id: string;
26381
+ }
26382
+
26383
+ interface ProductSellabilityResultInserted {
26384
+ readonly discriminator: 'product_sellability_result_inserted';
26385
+ readonly event_id: string;
26386
+ readonly timestamp: string;
26387
+ readonly product_sellability_result: io.flow.internal.v0.models.ProductSellabilityResult;
26388
+ }
26389
+
26390
+ interface ProductSellabilityResultUpdated {
26391
+ readonly discriminator: 'product_sellability_result_updated';
26392
+ readonly event_id: string;
26393
+ readonly timestamp: string;
26394
+ readonly previous_product_sellability_result: io.flow.internal.v0.models.ProductSellabilityResult;
26395
+ readonly product_sellability_result: io.flow.internal.v0.models.ProductSellabilityResult;
26230
26396
  }
26231
26397
 
26232
26398
  interface ProductTransaction {
@@ -26775,6 +26941,7 @@ declare namespace io.flow.internal.v0.models {
26775
26941
  readonly source_type?: io.flow.internal.v0.enums.SourceTypeFilter;
26776
26942
  readonly order_payment_source?: io.flow.experience.v0.enums.OrderPaymentSourceType;
26777
26943
  readonly amount_range?: io.flow.internal.v0.models.ReportAmountRange;
26944
+ readonly account_currency?: io.flow.internal.v0.enums.AccountCurrencyFilter;
26778
26945
  }
26779
26946
 
26780
26947
  interface ReportForm {
@@ -27606,37 +27773,6 @@ declare namespace io.flow.internal.v0.models {
27606
27773
  readonly revenue_record: io.flow.internal.v0.models.RevenueRecord;
27607
27774
  }
27608
27775
 
27609
- interface RohanItem {
27610
- readonly id: string;
27611
- readonly number: string;
27612
- readonly amount: io.flow.common.v0.models.Price;
27613
- readonly description?: string;
27614
- readonly type: io.flow.internal.v0.enums.RohanItemType;
27615
- readonly added_on: string;
27616
- }
27617
-
27618
- interface RohanItemDeleted {
27619
- readonly discriminator: 'rohan_item_deleted';
27620
- readonly event_id: string;
27621
- readonly timestamp: string;
27622
- readonly id: string;
27623
- }
27624
-
27625
- interface RohanItemForm {
27626
- readonly number: string;
27627
- readonly amount: io.flow.common.v0.models.Price;
27628
- readonly description?: string;
27629
- readonly type: io.flow.internal.v0.enums.RohanItemType;
27630
- readonly added_on: string;
27631
- }
27632
-
27633
- interface RohanItemUpserted {
27634
- readonly discriminator: 'rohan_item_upserted';
27635
- readonly event_id: string;
27636
- readonly timestamp: string;
27637
- readonly item: io.flow.internal.v0.models.RohanItem;
27638
- }
27639
-
27640
27776
  interface RoutingAccount {
27641
27777
  readonly discriminator: 'routing_account';
27642
27778
  readonly processor: io.flow.internal.v0.enums.Processor;
@@ -27671,6 +27807,9 @@ declare namespace io.flow.internal.v0.models {
27671
27807
  readonly price_inclusivity?: io.flow.internal.v0.models.PriceInclusivity;
27672
27808
  readonly destination_country: string;
27673
27809
  readonly fulfilled_at?: string;
27810
+ readonly reconciliation?: io.flow.internal.v0.models.ReportingReconciliation;
27811
+ readonly is_eu_destination?: boolean;
27812
+ readonly debug_url?: string;
27674
27813
  }
27675
27814
 
27676
27815
  interface SandboxSetup {
@@ -27681,37 +27820,6 @@ declare namespace io.flow.internal.v0.models {
27681
27820
  readonly requested_by: string;
27682
27821
  }
27683
27822
 
27684
- interface SarveshItem {
27685
- readonly id: string;
27686
- readonly number: string;
27687
- readonly amount: io.flow.common.v0.models.Price;
27688
- readonly description?: string;
27689
- readonly type: io.flow.internal.v0.enums.SarveshItemType;
27690
- readonly added_on: string;
27691
- }
27692
-
27693
- interface SarveshItemDeleted {
27694
- readonly discriminator: 'sarvesh_item_deleted';
27695
- readonly event_id: string;
27696
- readonly timestamp: string;
27697
- readonly id: string;
27698
- }
27699
-
27700
- interface SarveshItemForm {
27701
- readonly number: string;
27702
- readonly amount: io.flow.common.v0.models.Price;
27703
- readonly description?: string;
27704
- readonly type: io.flow.internal.v0.enums.SarveshItemType;
27705
- readonly added_on: string;
27706
- }
27707
-
27708
- interface SarveshItemUpserted {
27709
- readonly discriminator: 'sarvesh_item_upserted';
27710
- readonly event_id: string;
27711
- readonly timestamp: string;
27712
- readonly item: io.flow.internal.v0.models.SarveshItem;
27713
- }
27714
-
27715
27823
  interface ScheduledPayment {
27716
27824
  readonly payment: io.flow.internal.v0.models.ReportPayment;
27717
27825
  readonly bank_account: io.flow.internal.v0.models.ReportBankAccountCleartext;
@@ -27851,6 +27959,34 @@ declare namespace io.flow.internal.v0.models {
27851
27959
  readonly cost: io.flow.common.v0.models.Money;
27852
27960
  }
27853
27961
 
27962
+ interface ShippingCostDeleted {
27963
+ readonly discriminator: 'shipping_cost_deleted';
27964
+ readonly event_id: string;
27965
+ readonly timestamp: string;
27966
+ readonly organization: string;
27967
+ readonly id: string;
27968
+ }
27969
+
27970
+ interface ShippingCostSummary {
27971
+ readonly id: string;
27972
+ readonly source: io.flow.billing.v0.enums.TransactionSource;
27973
+ readonly organization_id: string;
27974
+ readonly order_number: string;
27975
+ readonly amount: io.flow.common.v0.models.Money;
27976
+ readonly tax: io.flow.common.v0.models.Money;
27977
+ readonly label_id?: string;
27978
+ readonly base?: io.flow.trueup.v0.models.LabelBase;
27979
+ readonly surcharges?: io.flow.trueup.v0.models.LabelSurcharge[];
27980
+ }
27981
+
27982
+ interface ShippingCostUpserted {
27983
+ readonly discriminator: 'shipping_cost_upserted';
27984
+ readonly event_id: string;
27985
+ readonly timestamp: string;
27986
+ readonly organization: string;
27987
+ readonly shipping_cost: io.flow.internal.v0.models.ShippingCostSummary;
27988
+ }
27989
+
27854
27990
  interface ShippingLane {
27855
27991
  readonly origin: string;
27856
27992
  readonly destination: string;
@@ -27910,6 +28046,25 @@ declare namespace io.flow.internal.v0.models {
27910
28046
  readonly include_unpublished?: boolean;
27911
28047
  }
27912
28048
 
28049
+ interface ShopifyAddress {
28050
+ readonly address1: string;
28051
+ readonly city: string;
28052
+ readonly country_code: string;
28053
+ readonly address2?: string;
28054
+ readonly postal_code?: string;
28055
+ readonly province?: string;
28056
+ }
28057
+
28058
+ interface ShopifyCallbackError {
28059
+ readonly errors: io.flow.internal.v0.models.ShopifyCallbackErrorItem[];
28060
+ }
28061
+
28062
+ interface ShopifyCallbackErrorItem {
28063
+ readonly code: io.flow.internal.v0.enums.ShopifyCallbackErrorCode;
28064
+ readonly message: string;
28065
+ readonly field?: string;
28066
+ }
28067
+
27913
28068
  interface ShopifyCatalogPublication {
27914
28069
  readonly owner: io.flow.internal.v0.enums.CatalogPublicationOwner;
27915
28070
  }
@@ -27923,6 +28078,13 @@ declare namespace io.flow.internal.v0.models {
27923
28078
  readonly service: io.flow.internal.v0.enums.ShopifyService;
27924
28079
  }
27925
28080
 
28081
+ interface ShopifyContactDetails {
28082
+ readonly company?: string;
28083
+ readonly email?: string;
28084
+ readonly name?: string;
28085
+ readonly phone?: string;
28086
+ }
28087
+
27926
28088
  interface ShopifyDispute {
27927
28089
  readonly id: string;
27928
28090
  readonly organization_id: string;
@@ -28278,6 +28440,15 @@ declare namespace io.flow.internal.v0.models {
28278
28440
  readonly registration: io.flow.internal.v0.models.ShopifyMarketsWebhookRegistration;
28279
28441
  }
28280
28442
 
28443
+ interface ShopifyMeasurements {
28444
+ readonly dimension_unit: io.flow.internal.v0.enums.ShopifyDimensionUnit;
28445
+ readonly height: number;
28446
+ readonly length: number;
28447
+ readonly width: number;
28448
+ readonly weight: number;
28449
+ readonly weight_unit: io.flow.internal.v0.enums.ShopifyWeightUnit;
28450
+ }
28451
+
28281
28452
  interface ShopifyMerchantPlan {
28282
28453
  readonly id: string;
28283
28454
  readonly authorization: io.flow.payment.v0.models.AuthorizationReference;
@@ -28305,6 +28476,11 @@ declare namespace io.flow.internal.v0.models {
28305
28476
  readonly token: string;
28306
28477
  }
28307
28478
 
28479
+ interface ShopifyMoney {
28480
+ readonly amount: number;
28481
+ readonly currency_code: string;
28482
+ }
28483
+
28308
28484
  interface ShopifyMonitoringCarrierService {
28309
28485
  readonly service: string;
28310
28486
  }
@@ -28586,6 +28762,15 @@ declare namespace io.flow.internal.v0.models {
28586
28762
  readonly deleted_at?: string;
28587
28763
  }
28588
28764
 
28765
+ interface ShopifyRateCustomsDetail {
28766
+ readonly incoterm: io.flow.internal.v0.enums.ShopifyIncoterm;
28767
+ readonly net_value: io.flow.internal.v0.models.ShopifyMoney;
28768
+ }
28769
+
28770
+ interface ShopifyRatePickupPoint {
28771
+ readonly partner_reference_id: string;
28772
+ }
28773
+
28589
28774
  interface ShopifyReportFileDeleted {
28590
28775
  readonly discriminator: 'shopify_report_file_deleted';
28591
28776
  readonly event_id: string;
@@ -28600,6 +28785,85 @@ declare namespace io.flow.internal.v0.models {
28600
28785
  readonly shopify_report_file: io.flow.internal.v0.models.ReportFile;
28601
28786
  }
28602
28787
 
28788
+ interface ShopifyShipmentRateAvailable {
28789
+ readonly carrier_service_id: string;
28790
+ readonly total_charges: io.flow.internal.v0.models.ShopifyShipmentRateTotalCharges;
28791
+ readonly charges: io.flow.internal.v0.models.ShopifyShipmentRateCharge[];
28792
+ readonly shipment_options: io.flow.internal.v0.models.ShopifyShipmentRateOption[];
28793
+ readonly expected_delivery_date?: string;
28794
+ readonly guaranteed_delivery_date?: string;
28795
+ readonly incoterm?: io.flow.internal.v0.enums.ShopifyIncoterm;
28796
+ }
28797
+
28798
+ interface ShopifyShipmentRateCharge {
28799
+ readonly code: io.flow.internal.v0.enums.ShopifyChargeCode;
28800
+ readonly cost: io.flow.internal.v0.models.ShopifyMoney;
28801
+ }
28802
+
28803
+ interface ShopifyShipmentRateOption {
28804
+ readonly code: io.flow.internal.v0.enums.ShopifyShipmentOptionCode;
28805
+ readonly cost: io.flow.internal.v0.models.ShopifyMoney;
28806
+ readonly optional?: boolean;
28807
+ }
28808
+
28809
+ interface ShopifyShipmentRatePackage {
28810
+ readonly type: io.flow.internal.v0.enums.ShopifyPackageType;
28811
+ readonly measurements: io.flow.internal.v0.models.ShopifyMeasurements;
28812
+ }
28813
+
28814
+ interface ShopifyShipmentRateReason {
28815
+ readonly code: io.flow.internal.v0.enums.ShopifyUnavailableRateReasonCode;
28816
+ readonly field?: string;
28817
+ readonly message?: string;
28818
+ }
28819
+
28820
+ interface ShopifyShipmentRateRequest {
28821
+ readonly idempotency_key: string;
28822
+ readonly webhook_id: string;
28823
+ readonly test: boolean;
28824
+ readonly shipper: io.flow.internal.v0.models.ShopifyShipmentRateShipper;
28825
+ readonly shipment: io.flow.internal.v0.models.ShopifyShipmentRateShipment;
28826
+ }
28827
+
28828
+ interface ShopifyShipmentRateResponse {
28829
+ readonly rates: io.flow.internal.v0.models.ShopifyShipmentRateAvailable[];
28830
+ readonly unavailable_rates: io.flow.internal.v0.models.ShopifyShipmentRateUnavailable[];
28831
+ }
28832
+
28833
+ interface ShopifyShipmentRateShipment {
28834
+ readonly carrier_id: string;
28835
+ readonly delivery_method_type: io.flow.internal.v0.enums.ShopifyDeliveryMethodType;
28836
+ readonly shipping_date_time: string;
28837
+ readonly return: boolean;
28838
+ readonly origin: io.flow.internal.v0.models.ShopifyShippingLocation;
28839
+ readonly destination: io.flow.internal.v0.models.ShopifyShippingLocation;
28840
+ readonly package: io.flow.internal.v0.models.ShopifyShipmentRatePackage;
28841
+ readonly pickup_point?: io.flow.internal.v0.models.ShopifyRatePickupPoint;
28842
+ readonly customs_detail?: io.flow.internal.v0.models.ShopifyRateCustomsDetail;
28843
+ }
28844
+
28845
+ interface ShopifyShipmentRateShipper {
28846
+ readonly account_id: string;
28847
+ readonly carrier_account_reference_id: string;
28848
+ readonly byoa: boolean;
28849
+ }
28850
+
28851
+ interface ShopifyShipmentRateTotalCharges {
28852
+ readonly subtotal: io.flow.internal.v0.models.ShopifyMoney;
28853
+ readonly tax: io.flow.internal.v0.models.ShopifyMoney;
28854
+ readonly total: io.flow.internal.v0.models.ShopifyMoney;
28855
+ }
28856
+
28857
+ interface ShopifyShipmentRateUnavailable {
28858
+ readonly carrier_service_id: string;
28859
+ readonly reasons: io.flow.internal.v0.models.ShopifyShipmentRateReason[];
28860
+ }
28861
+
28862
+ interface ShopifyShippingLocation {
28863
+ readonly address: io.flow.internal.v0.models.ShopifyAddress;
28864
+ readonly contact_details: io.flow.internal.v0.models.ShopifyContactDetails;
28865
+ }
28866
+
28603
28867
  interface ShopifyShopStatistics {
28604
28868
  readonly id: string;
28605
28869
  readonly initial_catalog_synced_at?: string;
@@ -28638,12 +28902,34 @@ declare namespace io.flow.internal.v0.models {
28638
28902
  readonly auto_correct: boolean;
28639
28903
  }
28640
28904
 
28905
+ interface ShopifyTestOrder {
28906
+ readonly id: string;
28907
+ readonly submitted_at: string;
28908
+ }
28909
+
28910
+ interface ShopifyTestOrderDeleted {
28911
+ readonly discriminator: 'shopify_test_order_deleted';
28912
+ readonly event_id: string;
28913
+ readonly timestamp: string;
28914
+ readonly organization: string;
28915
+ readonly id: string;
28916
+ }
28917
+
28918
+ interface ShopifyTestOrderUpserted {
28919
+ readonly discriminator: 'shopify_test_order_upserted';
28920
+ readonly event_id: string;
28921
+ readonly timestamp: string;
28922
+ readonly organization: string;
28923
+ readonly shopify_test_order: io.flow.internal.v0.models.ShopifyTestOrder;
28924
+ }
28925
+
28641
28926
  interface ShopperBreakdown {
28642
28927
  readonly product: io.flow.internal.v0.models.ReportingMonetaryValue;
28643
28928
  readonly product_purchase_price?: io.flow.internal.v0.models.ReportingMonetaryValue;
28644
28929
  readonly tax: io.flow.internal.v0.models.ReportingMonetaryValue;
28645
28930
  readonly duty: io.flow.internal.v0.models.ReportingMonetaryValue;
28646
28931
  readonly discount: io.flow.internal.v0.models.ReportingMonetaryValue;
28932
+ readonly subtotal?: io.flow.internal.v0.models.ReportingMonetaryValue;
28647
28933
  readonly total: io.flow.internal.v0.models.ReportingMonetaryValue;
28648
28934
  }
28649
28935
 
@@ -28997,6 +29283,7 @@ declare namespace io.flow.internal.v0.models {
28997
29283
  readonly mor_fees?: number;
28998
29284
  readonly mor_foreign_exchange_fees?: number;
28999
29285
  readonly sp_processing_fees?: number;
29286
+ readonly mor_fees_tax?: number;
29000
29287
  }
29001
29288
 
29002
29289
  interface StripeConnectReportRecordTransferMetadata {
@@ -30035,7 +30322,6 @@ declare namespace io.flow.internal.v0.models {
30035
30322
  readonly fulfillment_key?: string;
30036
30323
  readonly rex_number?: string;
30037
30324
  readonly weee_number?: string;
30038
- readonly generate_commercial_invoice_only: boolean;
30039
30325
  readonly liability_remittance_plan?: io.flow.internal.v0.models.LiabilityRemittancePlan;
30040
30326
  readonly shipment_cost_summary?: io.flow.internal.v0.models.ShipmentCostSummary;
30041
30327
  readonly shipping_label_hop_cost_itemized_estimate?: io.flow.label.v0.models.ShippingLabelHopCostItemizedEstimate;
@@ -30241,8 +30527,6 @@ declare namespace io.flow.internal.v0.unions {
30241
30527
  | io.flow.internal.v0.models.CalculatorOrganizationSettingsDeleted
30242
30528
  | io.flow.internal.v0.models.CarrierAccountUpsertedV2
30243
30529
  | io.flow.internal.v0.models.CarrierAccountDeleted
30244
- | io.flow.internal.v0.models.LabelGenerationSettingsUpserted
30245
- | io.flow.internal.v0.models.LabelGenerationSettingsDeleted
30246
30530
  | io.flow.internal.v0.models.CatalogImportRequest
30247
30531
  | io.flow.internal.v0.models.ExclusionRuleUpserted
30248
30532
  | io.flow.internal.v0.models.ExclusionRuleDeleted
@@ -30312,6 +30596,8 @@ declare namespace io.flow.internal.v0.unions {
30312
30596
  | io.flow.internal.v0.models.CarrierChargeDeleted
30313
30597
  | io.flow.internal.v0.models.BankPaymentOrderUpserted
30314
30598
  | io.flow.internal.v0.models.BankPaymentOrderDeleted
30599
+ | io.flow.internal.v0.models.ShippingCostUpserted
30600
+ | io.flow.internal.v0.models.ShippingCostDeleted
30315
30601
  | io.flow.internal.v0.models.FraudReviewUpserted
30316
30602
  | io.flow.internal.v0.models.FraudReviewDeleted
30317
30603
  | io.flow.internal.v0.models.FraudPendingReviewUpserted
@@ -30425,11 +30711,17 @@ declare namespace io.flow.internal.v0.unions {
30425
30711
  | io.flow.internal.v0.models.PaypalRefundUpserted
30426
30712
  | io.flow.internal.v0.models.PaypalDisputeUpserted
30427
30713
  | io.flow.internal.v0.models.PaypalDisputeDeleted
30714
+ | io.flow.internal.v0.models.PreonboardingSellabilityResultInserted
30715
+ | io.flow.internal.v0.models.PreonboardingSellabilityResultUpdated
30716
+ | io.flow.internal.v0.models.PreonboardingSellabilityResultDeleted
30428
30717
  | io.flow.internal.v0.models.ProductRestrictionRuleDecisionUpserted
30429
30718
  | io.flow.internal.v0.models.ProductRestrictionRuleDecisionDeleted
30430
30719
  | io.flow.internal.v0.models.ProductRestrictionStateInserted
30431
30720
  | io.flow.internal.v0.models.ProductRestrictionStateUpdated
30432
30721
  | io.flow.internal.v0.models.ProductRestrictionStateDeleted
30722
+ | io.flow.internal.v0.models.ProductSellabilityResultInserted
30723
+ | io.flow.internal.v0.models.ProductSellabilityResultUpdated
30724
+ | io.flow.internal.v0.models.ProductSellabilityResultDeleted
30433
30725
  | io.flow.internal.v0.models.OrderRatesPublishedV3
30434
30726
  | io.flow.internal.v0.models.RatecardDimensionEstimateUpserted
30435
30727
  | io.flow.internal.v0.models.RatecardDimensionEstimateDeleted
@@ -30489,6 +30781,8 @@ declare namespace io.flow.internal.v0.unions {
30489
30781
  | io.flow.internal.v0.models.ShopifyOrderRiskAssessmentDeleted
30490
30782
  | io.flow.internal.v0.models.ShopifyOrderTransactionUpserted
30491
30783
  | io.flow.internal.v0.models.ShopifyOrderTransactionDeleted
30784
+ | io.flow.internal.v0.models.ShopifyTestOrderUpserted
30785
+ | io.flow.internal.v0.models.ShopifyTestOrderDeleted
30492
30786
  | io.flow.internal.v0.models.ShopifyProductCreateUpserted
30493
30787
  | io.flow.internal.v0.models.ShopifyProductCreateDeleted
30494
30788
  | io.flow.internal.v0.models.ShopifyProductUpdateUpserted
@@ -30525,22 +30819,10 @@ declare namespace io.flow.internal.v0.unions {
30525
30819
  | io.flow.internal.v0.models.StripeConnectReportRecordDeleted
30526
30820
  | io.flow.internal.v0.models.LiabilityRemittancePlanUpserted
30527
30821
  | io.flow.internal.v0.models.LiabilityRemittancePlanDeleted
30528
- | io.flow.internal.v0.models.AnirbanItemUpserted
30529
- | io.flow.internal.v0.models.AnirbanItemDeleted
30530
- | io.flow.internal.v0.models.SarveshItemUpserted
30531
- | io.flow.internal.v0.models.SarveshItemDeleted
30532
- | io.flow.internal.v0.models.HoseinItemUpserted
30533
- | io.flow.internal.v0.models.HoseinItemDeleted
30534
- | io.flow.internal.v0.models.NiallItemUpserted
30535
- | io.flow.internal.v0.models.NiallItemDeleted
30536
- | io.flow.internal.v0.models.RohanItemUpserted
30537
- | io.flow.internal.v0.models.RohanItemDeleted
30538
- | io.flow.internal.v0.models.AldoItemUpserted
30539
- | io.flow.internal.v0.models.AldoItemDeleted
30540
- | io.flow.internal.v0.models.AnshItemUpserted
30541
- | io.flow.internal.v0.models.AnshItemDeleted
30542
30822
  | io.flow.internal.v0.models.GabrielItemUpserted
30543
30823
  | io.flow.internal.v0.models.GabrielItemDeleted
30824
+ | io.flow.internal.v0.models.ChenglinItemUpserted
30825
+ | io.flow.internal.v0.models.ChenglinItemDeleted
30544
30826
  | io.flow.internal.v0.models.TrackingProcessingErrorUpserted
30545
30827
  | io.flow.internal.v0.models.TrackingProcessingErrorDeleted
30546
30828
  | io.flow.internal.v0.models.TrackingLabelEventUpsertedV2
@@ -30729,7 +31011,9 @@ declare namespace io.flow.internal.v0.unions {
30729
31011
  | io.flow.internal.v0.models.TaxDutyReasonCodeMetadata
30730
31012
  | io.flow.internal.v0.models.AccountingReturnMetadata
30731
31013
  | io.flow.internal.v0.models.NonL4LTaxDutyFxFeeMetadata
30732
- | io.flow.internal.v0.models.ChannelTransactionTriggerMetadata;
31014
+ | io.flow.internal.v0.models.ChannelTransactionTriggerMetadata
31015
+ | io.flow.internal.v0.models.B2BFeeMorTaxTriggerMetadata
31016
+ | io.flow.internal.v0.models.B2BFeeShippingTaxTriggerMetadata;
30733
31017
  type TaxAmount =
30734
31018
  | io.flow.internal.v0.models.CalculatedTaxAmount
30735
31019
  | io.flow.internal.v0.models.NoCalculatedTaxAmount;
@@ -30771,6 +31055,8 @@ export type AccountContactDeleted =
30771
31055
  export type AccountContactForm = io.flow.internal.v0.models.AccountContactForm;
30772
31056
  export type AccountContactUpserted =
30773
31057
  io.flow.internal.v0.models.AccountContactUpserted;
31058
+ export type AccountCurrencyFilter =
31059
+ io.flow.internal.v0.enums.AccountCurrencyFilter;
30774
31060
  export type AccountDeletedV2 = io.flow.internal.v0.models.AccountDeletedV2;
30775
31061
  export type AccountDepositRule = io.flow.internal.v0.models.AccountDepositRule;
30776
31062
  export type AccountDepositRuleForm =
@@ -30921,28 +31207,15 @@ export type AfterpayRefundDeleted =
30921
31207
  export type AfterpayRefundUpserted =
30922
31208
  io.flow.internal.v0.models.AfterpayRefundUpserted;
30923
31209
  export type AftershipWebhook = io.flow.internal.v0.models.AftershipWebhook;
30924
- export type AldoItem = io.flow.internal.v0.models.AldoItem;
30925
- export type AldoItemDeleted = io.flow.internal.v0.models.AldoItemDeleted;
30926
- export type AldoItemForm = io.flow.internal.v0.models.AldoItemForm;
30927
- export type AldoItemType = io.flow.internal.v0.enums.AldoItemType;
30928
- export type AldoItemUpserted = io.flow.internal.v0.models.AldoItemUpserted;
30929
31210
  export type AllItemsExport = io.flow.internal.v0.models.AllItemsExport;
30930
31211
  export type AllOrganizationsMembership =
30931
31212
  io.flow.internal.v0.models.AllOrganizationsMembership;
30932
31213
  export type AllocationItemReference =
30933
31214
  io.flow.internal.v0.models.AllocationItemReference;
30934
31215
  export type AllowedLabels = io.flow.internal.v0.models.AllowedLabels;
30935
- export type AnirbanItem = io.flow.internal.v0.models.AnirbanItem;
30936
- export type AnirbanItemDeleted = io.flow.internal.v0.models.AnirbanItemDeleted;
30937
- export type AnirbanItemForm = io.flow.internal.v0.models.AnirbanItemForm;
30938
- export type AnirbanItemType = io.flow.internal.v0.enums.AnirbanItemType;
30939
- export type AnirbanItemUpserted =
30940
- io.flow.internal.v0.models.AnirbanItemUpserted;
30941
- export type AnshItem = io.flow.internal.v0.models.AnshItem;
30942
- export type AnshItemDeleted = io.flow.internal.v0.models.AnshItemDeleted;
30943
- export type AnshItemForm = io.flow.internal.v0.models.AnshItemForm;
30944
- export type AnshItemType = io.flow.internal.v0.enums.AnshItemType;
30945
- export type AnshItemUpserted = io.flow.internal.v0.models.AnshItemUpserted;
31216
+ export type AmruthaItem = io.flow.internal.v0.models.AmruthaItem;
31217
+ export type AmruthaItemForm = io.flow.internal.v0.models.AmruthaItemForm;
31218
+ export type AmruthaItemType = io.flow.internal.v0.enums.AmruthaItemType;
30946
31219
  export type AnyDangerousGoods = io.flow.internal.v0.enums.AnyDangerousGoods;
30947
31220
  export type ApiCallReferenceId = io.flow.internal.v0.enums.ApiCallReferenceId;
30948
31221
  export type ApplePayAuthorizationPayload =
@@ -30978,6 +31251,14 @@ export type AuthorizedShippingCharge =
30978
31251
  io.flow.internal.v0.models.AuthorizedShippingCharge;
30979
31252
  export type AutoRestrictRule = io.flow.internal.v0.enums.AutoRestrictRule;
30980
31253
  export type AutoReviewCriteria = io.flow.internal.v0.models.AutoReviewCriteria;
31254
+ export type B2BFeeMorTaxTriggerMetadata =
31255
+ io.flow.internal.v0.models.B2BFeeMorTaxTriggerMetadata;
31256
+ export type B2BFeeMorTaxTriggerType =
31257
+ io.flow.internal.v0.enums.B2BFeeMorTaxTriggerType;
31258
+ export type B2BFeeShippingTaxTriggerMetadata =
31259
+ io.flow.internal.v0.models.B2BFeeShippingTaxTriggerMetadata;
31260
+ export type B2BFeeShippingTaxTriggerType =
31261
+ io.flow.internal.v0.enums.B2BFeeShippingTaxTriggerType;
30981
31262
  export type B2BTaxLedger = io.flow.internal.v0.models.B2BTaxLedger;
30982
31263
  export type B2BTaxLedgerDocumentType =
30983
31264
  io.flow.internal.v0.enums.B2BTaxLedgerDocumentType;
@@ -31088,6 +31369,9 @@ export type BitpayAuthenticationDataReference =
31088
31369
  io.flow.internal.v0.models.BitpayAuthenticationDataReference;
31089
31370
  export type BitpayAuthenticationForm =
31090
31371
  io.flow.internal.v0.models.BitpayAuthenticationForm;
31372
+ export type BojanaItem = io.flow.internal.v0.models.BojanaItem;
31373
+ export type BojanaItemForm = io.flow.internal.v0.models.BojanaItemForm;
31374
+ export type BojanaItemType = io.flow.internal.v0.enums.BojanaItemType;
31091
31375
  export type BooleanFeatureDefaultValue =
31092
31376
  io.flow.internal.v0.models.BooleanFeatureDefaultValue;
31093
31377
  export type BooleanFeatureRule = io.flow.internal.v0.models.BooleanFeatureRule;
@@ -31378,6 +31662,13 @@ export type CheckoutShippingMethodPromptBehavior =
31378
31662
  io.flow.internal.v0.enums.CheckoutShippingMethodPromptBehavior;
31379
31663
  export type CheckoutUrl = io.flow.internal.v0.models.CheckoutUrl;
31380
31664
  export type CheckoutUrlType = io.flow.internal.v0.enums.CheckoutUrlType;
31665
+ export type ChenglinItem = io.flow.internal.v0.models.ChenglinItem;
31666
+ export type ChenglinItemDeleted =
31667
+ io.flow.internal.v0.models.ChenglinItemDeleted;
31668
+ export type ChenglinItemForm = io.flow.internal.v0.models.ChenglinItemForm;
31669
+ export type ChenglinItemType = io.flow.internal.v0.enums.ChenglinItemType;
31670
+ export type ChenglinItemUpserted =
31671
+ io.flow.internal.v0.models.ChenglinItemUpserted;
31381
31672
  export type Cipher = io.flow.internal.v0.models.Cipher;
31382
31673
  export type CipherForm = io.flow.internal.v0.models.CipherForm;
31383
31674
  export type CipherReference = io.flow.internal.v0.models.CipherReference;
@@ -31437,6 +31728,8 @@ export type ClassificationRequeueRequest =
31437
31728
  export type ClassificationResponse =
31438
31729
  io.flow.internal.v0.unions.ClassificationResponse;
31439
31730
  export type ClassificationScope = io.flow.internal.v0.enums.ClassificationScope;
31731
+ export type ClassificationSource =
31732
+ io.flow.internal.v0.enums.ClassificationSource;
31440
31733
  export type ClassificationStatistics =
31441
31734
  io.flow.internal.v0.models.ClassificationStatistics;
31442
31735
  export type ClassificationSummaryReportPayload =
@@ -31981,6 +32274,7 @@ export type GeRevenueShareTransactionType =
31981
32274
  export type GenerateLoad = io.flow.internal.v0.unions.GenerateLoad;
31982
32275
  export type GenerateLoadMultipleOrgs =
31983
32276
  io.flow.internal.v0.models.GenerateLoadMultipleOrgs;
32277
+ export type GenerateLoadRate = io.flow.internal.v0.models.GenerateLoadRate;
31984
32278
  export type GenerateLoadSingleOrg =
31985
32279
  io.flow.internal.v0.models.GenerateLoadSingleOrg;
31986
32280
  export type GenericValidationError =
@@ -32031,11 +32325,6 @@ export type HarmonizeFullyRequestV2 =
32031
32325
  io.flow.internal.v0.models.HarmonizeFullyRequestV2;
32032
32326
  export type HarmonizedItemsHs6Export =
32033
32327
  io.flow.internal.v0.models.HarmonizedItemsHs6Export;
32034
- export type HoseinItem = io.flow.internal.v0.models.HoseinItem;
32035
- export type HoseinItemDeleted = io.flow.internal.v0.models.HoseinItemDeleted;
32036
- export type HoseinItemForm = io.flow.internal.v0.models.HoseinItemForm;
32037
- export type HoseinItemType = io.flow.internal.v0.enums.HoseinItemType;
32038
- export type HoseinItemUpserted = io.flow.internal.v0.models.HoseinItemUpserted;
32039
32328
  export type Hs6 = io.flow.internal.v0.models.Hs6;
32040
32329
  export type Hs6CodeSource = io.flow.internal.v0.enums.Hs6CodeSource;
32041
32330
  export type Hs6Metadata = io.flow.internal.v0.models.Hs6Metadata;
@@ -32153,7 +32442,6 @@ export type ItemSalesMarginVersion =
32153
32442
  export type ItemSummary = io.flow.internal.v0.models.ItemSummary;
32154
32443
  export type ItemType = io.flow.internal.v0.enums.ItemType;
32155
32444
  export type ItemValuesForm = io.flow.internal.v0.models.ItemValuesForm;
32156
- export type JeanDemoItem = io.flow.internal.v0.models.JeanDemoItem;
32157
32445
  export type Journal = io.flow.internal.v0.models.Journal;
32158
32446
  export type JournalFailure = io.flow.internal.v0.models.JournalFailure;
32159
32447
  export type JournalOperation = io.flow.internal.v0.enums.JournalOperation;
@@ -32191,14 +32479,6 @@ export type LabelCreationStatus = io.flow.internal.v0.enums.LabelCreationStatus;
32191
32479
  export type LabelDestination = io.flow.internal.v0.models.LabelDestination;
32192
32480
  export type LabelEventMedium = io.flow.internal.v0.enums.LabelEventMedium;
32193
32481
  export type LabelEventSource = io.flow.internal.v0.enums.LabelEventSource;
32194
- export type LabelGenerationSettings =
32195
- io.flow.internal.v0.models.LabelGenerationSettings;
32196
- export type LabelGenerationSettingsDeleted =
32197
- io.flow.internal.v0.models.LabelGenerationSettingsDeleted;
32198
- export type LabelGenerationSettingsForm =
32199
- io.flow.internal.v0.models.LabelGenerationSettingsForm;
32200
- export type LabelGenerationSettingsUpserted =
32201
- io.flow.internal.v0.models.LabelGenerationSettingsUpserted;
32202
32482
  export type LabelInvoiceRequest =
32203
32483
  io.flow.internal.v0.models.LabelInvoiceRequest;
32204
32484
  export type LabelInvoiceRequestDeleted =
@@ -32371,11 +32651,6 @@ export type NegativeDebitMetrics =
32371
32651
  io.flow.internal.v0.models.NegativeDebitMetrics;
32372
32652
  export type NextBillingStatement =
32373
32653
  io.flow.internal.v0.models.NextBillingStatement;
32374
- export type NiallItem = io.flow.internal.v0.models.NiallItem;
32375
- export type NiallItemDeleted = io.flow.internal.v0.models.NiallItemDeleted;
32376
- export type NiallItemForm = io.flow.internal.v0.models.NiallItemForm;
32377
- export type NiallItemType = io.flow.internal.v0.enums.NiallItemType;
32378
- export type NiallItemUpserted = io.flow.internal.v0.models.NiallItemUpserted;
32379
32654
  export type NoCalculatedTaxAmount =
32380
32655
  io.flow.internal.v0.models.NoCalculatedTaxAmount;
32381
32656
  export type NoClassificationForm =
@@ -32589,6 +32864,12 @@ export type OrganizationPaymentSettingVersion =
32589
32864
  io.flow.internal.v0.models.OrganizationPaymentSettingVersion;
32590
32865
  export type OrganizationPaymentStatus =
32591
32866
  io.flow.internal.v0.enums.OrganizationPaymentStatus;
32867
+ export type OrganizationPromotion =
32868
+ io.flow.internal.v0.models.OrganizationPromotion;
32869
+ export type OrganizationPromotionStatus =
32870
+ io.flow.internal.v0.enums.OrganizationPromotionStatus;
32871
+ export type OrganizationPromotionWarning =
32872
+ io.flow.internal.v0.models.OrganizationPromotionWarning;
32592
32873
  export type OrganizationRestrictionApprovalStatus =
32593
32874
  io.flow.internal.v0.enums.OrganizationRestrictionApprovalStatus;
32594
32875
  export type OrganizationRestrictionNoteForm =
@@ -32800,9 +33081,6 @@ export type PlatformFeePercentage =
32800
33081
  io.flow.internal.v0.models.PlatformFeePercentage;
32801
33082
  export type PlatformFeePercentageTier =
32802
33083
  io.flow.internal.v0.models.PlatformFeePercentageTier;
32803
- export type PrateekItem = io.flow.internal.v0.models.PrateekItem;
32804
- export type PrateekItemForm = io.flow.internal.v0.models.PrateekItemForm;
32805
- export type PrateekItemType = io.flow.internal.v0.enums.PrateekItemType;
32806
33084
  export type Prediction = io.flow.internal.v0.models.Prediction;
32807
33085
  export type PreferredBillingSchedule =
32808
33086
  io.flow.internal.v0.enums.PreferredBillingSchedule;
@@ -32826,6 +33104,12 @@ export type PreonboardingRequestStatus =
32826
33104
  io.flow.internal.v0.enums.PreonboardingRequestStatus;
32827
33105
  export type PreonboardingSellabilityResult =
32828
33106
  io.flow.internal.v0.models.PreonboardingSellabilityResult;
33107
+ export type PreonboardingSellabilityResultDeleted =
33108
+ io.flow.internal.v0.models.PreonboardingSellabilityResultDeleted;
33109
+ export type PreonboardingSellabilityResultInserted =
33110
+ io.flow.internal.v0.models.PreonboardingSellabilityResultInserted;
33111
+ export type PreonboardingSellabilityResultUpdated =
33112
+ io.flow.internal.v0.models.PreonboardingSellabilityResultUpdated;
32829
33113
  export type PriceInclusivity = io.flow.internal.v0.models.PriceInclusivity;
32830
33114
  export type PriceSelector = io.flow.internal.v0.enums.PriceSelector;
32831
33115
  export type PrioritizedCenterReference =
@@ -32904,8 +33188,16 @@ export type ProductSellabilityInternalForm =
32904
33188
  io.flow.internal.v0.models.ProductSellabilityInternalForm;
32905
33189
  export type ProductSellabilityInternalResult =
32906
33190
  io.flow.internal.v0.models.ProductSellabilityInternalResult;
33191
+ export type ProductSellabilityInternalRuleMatch =
33192
+ io.flow.internal.v0.models.ProductSellabilityInternalRuleMatch;
32907
33193
  export type ProductSellabilityResult =
32908
33194
  io.flow.internal.v0.models.ProductSellabilityResult;
33195
+ export type ProductSellabilityResultDeleted =
33196
+ io.flow.internal.v0.models.ProductSellabilityResultDeleted;
33197
+ export type ProductSellabilityResultInserted =
33198
+ io.flow.internal.v0.models.ProductSellabilityResultInserted;
33199
+ export type ProductSellabilityResultUpdated =
33200
+ io.flow.internal.v0.models.ProductSellabilityResultUpdated;
32909
33201
  export type ProductStatus = io.flow.internal.v0.enums.ProductStatus;
32910
33202
  export type ProductTransaction = io.flow.internal.v0.models.ProductTransaction;
32911
33203
  export type ProofOfPosting = io.flow.internal.v0.unions.ProofOfPosting;
@@ -33247,11 +33539,6 @@ export type RevenueRecordUpserted =
33247
33539
  io.flow.internal.v0.models.RevenueRecordUpserted;
33248
33540
  export type RiskCheck = io.flow.internal.v0.enums.RiskCheck;
33249
33541
  export type RiskEvaluation = io.flow.internal.v0.enums.RiskEvaluation;
33250
- export type RohanItem = io.flow.internal.v0.models.RohanItem;
33251
- export type RohanItemDeleted = io.flow.internal.v0.models.RohanItemDeleted;
33252
- export type RohanItemForm = io.flow.internal.v0.models.RohanItemForm;
33253
- export type RohanItemType = io.flow.internal.v0.enums.RohanItemType;
33254
- export type RohanItemUpserted = io.flow.internal.v0.models.RohanItemUpserted;
33255
33542
  export type RoutingAccount = io.flow.internal.v0.models.RoutingAccount;
33256
33543
  export type RoutingEntity = io.flow.internal.v0.unions.RoutingEntity;
33257
33544
  export type RoutingMerchant = io.flow.internal.v0.models.RoutingMerchant;
@@ -33259,12 +33546,6 @@ export type RoutingProcessor = io.flow.internal.v0.models.RoutingProcessor;
33259
33546
  export type SalesPaymentRecord = io.flow.internal.v0.models.SalesPaymentRecord;
33260
33547
  export type SandboxSetup = io.flow.internal.v0.models.SandboxSetup;
33261
33548
  export type SandboxSetupForm = io.flow.internal.v0.models.SandboxSetupForm;
33262
- export type SarveshItem = io.flow.internal.v0.models.SarveshItem;
33263
- export type SarveshItemDeleted = io.flow.internal.v0.models.SarveshItemDeleted;
33264
- export type SarveshItemForm = io.flow.internal.v0.models.SarveshItemForm;
33265
- export type SarveshItemType = io.flow.internal.v0.enums.SarveshItemType;
33266
- export type SarveshItemUpserted =
33267
- io.flow.internal.v0.models.SarveshItemUpserted;
33268
33549
  export type ScheduledPayment = io.flow.internal.v0.models.ScheduledPayment;
33269
33550
  export type Screen = io.flow.internal.v0.models.Screen;
33270
33551
  export type ScreenForm = io.flow.internal.v0.models.ScreenForm;
@@ -33290,12 +33571,20 @@ export type SellabilityCheckResult =
33290
33571
  io.flow.internal.v0.models.SellabilityCheckResult;
33291
33572
  export type SellabilityCheckStatus =
33292
33573
  io.flow.internal.v0.enums.SellabilityCheckStatus;
33574
+ export type SellabilityInternalMatchType =
33575
+ io.flow.internal.v0.enums.SellabilityInternalMatchType;
33293
33576
  export type SellabilityStatus = io.flow.internal.v0.enums.SellabilityStatus;
33294
33577
  export type SessionOrderData = io.flow.internal.v0.models.SessionOrderData;
33295
33578
  export type SetupBlockPutForm = io.flow.internal.v0.models.SetupBlockPutForm;
33296
33579
  export type SfExpress = io.flow.internal.v0.models.SfExpress;
33297
33580
  export type ShipmentCostSummary =
33298
33581
  io.flow.internal.v0.models.ShipmentCostSummary;
33582
+ export type ShippingCostDeleted =
33583
+ io.flow.internal.v0.models.ShippingCostDeleted;
33584
+ export type ShippingCostSummary =
33585
+ io.flow.internal.v0.models.ShippingCostSummary;
33586
+ export type ShippingCostUpserted =
33587
+ io.flow.internal.v0.models.ShippingCostUpserted;
33299
33588
  export type ShippingLane = io.flow.internal.v0.models.ShippingLane;
33300
33589
  export type ShippingMethodReference =
33301
33590
  io.flow.internal.v0.models.ShippingMethodReference;
@@ -33306,12 +33595,26 @@ export type ShippingRateEstimateInternal =
33306
33595
  io.flow.internal.v0.models.ShippingRateEstimateInternal;
33307
33596
  export type ShippingRateEstimateRequestInternal =
33308
33597
  io.flow.internal.v0.models.ShippingRateEstimateRequestInternal;
33598
+ export type ShopifyAddress = io.flow.internal.v0.models.ShopifyAddress;
33599
+ export type ShopifyCallbackError =
33600
+ io.flow.internal.v0.models.ShopifyCallbackError;
33601
+ export type ShopifyCallbackErrorCode =
33602
+ io.flow.internal.v0.enums.ShopifyCallbackErrorCode;
33603
+ export type ShopifyCallbackErrorItem =
33604
+ io.flow.internal.v0.models.ShopifyCallbackErrorItem;
33309
33605
  export type ShopifyCatalogPublication =
33310
33606
  io.flow.internal.v0.models.ShopifyCatalogPublication;
33311
33607
  export type ShopifyChannelOrganizationToken =
33312
33608
  io.flow.internal.v0.models.ShopifyChannelOrganizationToken;
33313
33609
  export type ShopifyChannelOrganizationTokens =
33314
33610
  io.flow.internal.v0.models.ShopifyChannelOrganizationTokens;
33611
+ export type ShopifyChargeCode = io.flow.internal.v0.enums.ShopifyChargeCode;
33612
+ export type ShopifyContactDetails =
33613
+ io.flow.internal.v0.models.ShopifyContactDetails;
33614
+ export type ShopifyDeliveryMethodType =
33615
+ io.flow.internal.v0.enums.ShopifyDeliveryMethodType;
33616
+ export type ShopifyDimensionUnit =
33617
+ io.flow.internal.v0.enums.ShopifyDimensionUnit;
33315
33618
  export type ShopifyDispute = io.flow.internal.v0.models.ShopifyDispute;
33316
33619
  export type ShopifyDisputeDeleted =
33317
33620
  io.flow.internal.v0.models.ShopifyDisputeDeleted;
@@ -33323,6 +33626,7 @@ export type ShopifyHs10CodesDeleted =
33323
33626
  io.flow.internal.v0.models.ShopifyHs10CodesDeleted;
33324
33627
  export type ShopifyHs10CodesUpserted =
33325
33628
  io.flow.internal.v0.models.ShopifyHs10CodesUpserted;
33629
+ export type ShopifyIncoterm = io.flow.internal.v0.enums.ShopifyIncoterm;
33326
33630
  export type ShopifyIncotermConfiguration =
33327
33631
  io.flow.internal.v0.enums.ShopifyIncotermConfiguration;
33328
33632
  export type ShopifyIncotermIncludes =
@@ -33413,6 +33717,8 @@ export type ShopifyMarketsWebhookRegistrationDeleted =
33413
33717
  io.flow.internal.v0.models.ShopifyMarketsWebhookRegistrationDeleted;
33414
33718
  export type ShopifyMarketsWebhookRegistrationUpserted =
33415
33719
  io.flow.internal.v0.models.ShopifyMarketsWebhookRegistrationUpserted;
33720
+ export type ShopifyMeasurements =
33721
+ io.flow.internal.v0.models.ShopifyMeasurements;
33416
33722
  export type ShopifyMerchantPlan =
33417
33723
  io.flow.internal.v0.models.ShopifyMerchantPlan;
33418
33724
  export type ShopifyMerchantPlanDeleted =
@@ -33420,6 +33726,7 @@ export type ShopifyMerchantPlanDeleted =
33420
33726
  export type ShopifyMerchantPlanUpserted =
33421
33727
  io.flow.internal.v0.models.ShopifyMerchantPlanUpserted;
33422
33728
  export type ShopifyMetadata = io.flow.internal.v0.models.ShopifyMetadata;
33729
+ export type ShopifyMoney = io.flow.internal.v0.models.ShopifyMoney;
33423
33730
  export type ShopifyMonitoringCarrierService =
33424
33731
  io.flow.internal.v0.models.ShopifyMonitoringCarrierService;
33425
33732
  export type ShopifyMonitoringFulfillmentExternal =
@@ -33466,6 +33773,7 @@ export type ShopifyOrderTransactionDeleted =
33466
33773
  io.flow.internal.v0.models.ShopifyOrderTransactionDeleted;
33467
33774
  export type ShopifyOrderTransactionUpserted =
33468
33775
  io.flow.internal.v0.models.ShopifyOrderTransactionUpserted;
33776
+ export type ShopifyPackageType = io.flow.internal.v0.enums.ShopifyPackageType;
33469
33777
  export type ShopifyPartnerWebhook =
33470
33778
  io.flow.internal.v0.models.ShopifyPartnerWebhook;
33471
33779
  export type ShopifyPartnerWebhookRaw =
@@ -33511,11 +33819,41 @@ export type ShopifyProductUpdateWebhookEvent =
33511
33819
  io.flow.internal.v0.models.ShopifyProductUpdateWebhookEvent;
33512
33820
  export type ShopifyProductWrapper =
33513
33821
  io.flow.internal.v0.models.ShopifyProductWrapper;
33822
+ export type ShopifyRateCustomsDetail =
33823
+ io.flow.internal.v0.models.ShopifyRateCustomsDetail;
33824
+ export type ShopifyRatePickupPoint =
33825
+ io.flow.internal.v0.models.ShopifyRatePickupPoint;
33514
33826
  export type ShopifyReportFileDeleted =
33515
33827
  io.flow.internal.v0.models.ShopifyReportFileDeleted;
33516
33828
  export type ShopifyReportFileUpserted =
33517
33829
  io.flow.internal.v0.models.ShopifyReportFileUpserted;
33518
33830
  export type ShopifyService = io.flow.internal.v0.enums.ShopifyService;
33831
+ export type ShopifyShipmentOptionCode =
33832
+ io.flow.internal.v0.enums.ShopifyShipmentOptionCode;
33833
+ export type ShopifyShipmentRateAvailable =
33834
+ io.flow.internal.v0.models.ShopifyShipmentRateAvailable;
33835
+ export type ShopifyShipmentRateCharge =
33836
+ io.flow.internal.v0.models.ShopifyShipmentRateCharge;
33837
+ export type ShopifyShipmentRateOption =
33838
+ io.flow.internal.v0.models.ShopifyShipmentRateOption;
33839
+ export type ShopifyShipmentRatePackage =
33840
+ io.flow.internal.v0.models.ShopifyShipmentRatePackage;
33841
+ export type ShopifyShipmentRateReason =
33842
+ io.flow.internal.v0.models.ShopifyShipmentRateReason;
33843
+ export type ShopifyShipmentRateRequest =
33844
+ io.flow.internal.v0.models.ShopifyShipmentRateRequest;
33845
+ export type ShopifyShipmentRateResponse =
33846
+ io.flow.internal.v0.models.ShopifyShipmentRateResponse;
33847
+ export type ShopifyShipmentRateShipment =
33848
+ io.flow.internal.v0.models.ShopifyShipmentRateShipment;
33849
+ export type ShopifyShipmentRateShipper =
33850
+ io.flow.internal.v0.models.ShopifyShipmentRateShipper;
33851
+ export type ShopifyShipmentRateTotalCharges =
33852
+ io.flow.internal.v0.models.ShopifyShipmentRateTotalCharges;
33853
+ export type ShopifyShipmentRateUnavailable =
33854
+ io.flow.internal.v0.models.ShopifyShipmentRateUnavailable;
33855
+ export type ShopifyShippingLocation =
33856
+ io.flow.internal.v0.models.ShopifyShippingLocation;
33519
33857
  export type ShopifyShopStatistics =
33520
33858
  io.flow.internal.v0.models.ShopifyShopStatistics;
33521
33859
  export type ShopifyStoreDetail = io.flow.internal.v0.models.ShopifyStoreDetail;
@@ -33524,6 +33862,14 @@ export type ShopifyTaxonomyAlignmentConfig =
33524
33862
  io.flow.internal.v0.models.ShopifyTaxonomyAlignmentConfig;
33525
33863
  export type ShopifyTaxonomyAlignmentConfigForm =
33526
33864
  io.flow.internal.v0.models.ShopifyTaxonomyAlignmentConfigForm;
33865
+ export type ShopifyTestOrder = io.flow.internal.v0.models.ShopifyTestOrder;
33866
+ export type ShopifyTestOrderDeleted =
33867
+ io.flow.internal.v0.models.ShopifyTestOrderDeleted;
33868
+ export type ShopifyTestOrderUpserted =
33869
+ io.flow.internal.v0.models.ShopifyTestOrderUpserted;
33870
+ export type ShopifyUnavailableRateReasonCode =
33871
+ io.flow.internal.v0.enums.ShopifyUnavailableRateReasonCode;
33872
+ export type ShopifyWeightUnit = io.flow.internal.v0.enums.ShopifyWeightUnit;
33527
33873
  export type ShopperBreakdown = io.flow.internal.v0.models.ShopperBreakdown;
33528
33874
  export type ShopperFees = io.flow.internal.v0.models.ShopperFees;
33529
33875
  export type ShopperFreight = io.flow.internal.v0.models.ShopperFreight;