@flowio/types 11.24.132 → 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 {
@@ -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'
@@ -7218,6 +7223,7 @@ declare namespace io.flow.shopify.markets.internal.v0.models {
7218
7223
 
7219
7224
  interface ShopifyTestOrder {
7220
7225
  readonly id: string;
7226
+ readonly submitted_at: string;
7221
7227
  }
7222
7228
 
7223
7229
  interface ThirdPartyLogisticsPartner {
@@ -7265,6 +7271,7 @@ declare namespace io.flow.consumer.invoice.v0.models {
7265
7271
  readonly b2b_invoice_type: io.flow.consumer.invoice.v0.enums.B2BInvoiceType;
7266
7272
  readonly center?: io.flow.consumer.invoice.v0.models.ConsumerInvoiceCenterReference;
7267
7273
  readonly order?: io.flow.consumer.invoice.v0.models.ConsumerInvoiceOrderSummary;
7274
+ readonly voids_b2b_invoice?: boolean;
7268
7275
  }
7269
7276
 
7270
7277
  interface B2BInvoice {
@@ -10268,7 +10275,8 @@ declare namespace io.flow.order.price.v0.enums {
10268
10275
  | 'tax'
10269
10276
  | 'duties'
10270
10277
  | 'tax_and_duties'
10271
- | 'product';
10278
+ | 'product'
10279
+ | 'mor_tax';
10272
10280
  }
10273
10281
 
10274
10282
  declare namespace io.flow.order.price.v0.models {
@@ -10788,7 +10796,7 @@ declare namespace io.flow.common.v0.models {
10788
10796
 
10789
10797
  interface DiscountForm {
10790
10798
  readonly offer: io.flow.common.v0.unions.DiscountOffer;
10791
- readonly target?: io.flow.common.v0.enums.DiscountTarget;
10799
+ readonly target: io.flow.common.v0.enums.DiscountTarget;
10792
10800
  readonly label?: string;
10793
10801
  }
10794
10802
 
@@ -10880,6 +10888,7 @@ declare namespace io.flow.common.v0.models {
10880
10888
  interface LineItemForm {
10881
10889
  readonly number: string;
10882
10890
  readonly quantity: number;
10891
+ readonly line_item_identifier?: string;
10883
10892
  readonly shipment_estimate?: io.flow.common.v0.models.DatetimeRange;
10884
10893
  readonly price?: io.flow.common.v0.models.Money;
10885
10894
  readonly attributes?: Record<string, string>;
@@ -10989,7 +10998,7 @@ declare namespace io.flow.common.v0.models {
10989
10998
  readonly parent?: io.flow.common.v0.models.OrganizationReference;
10990
10999
  readonly defaults?: io.flow.common.v0.models.OrganizationDefaults;
10991
11000
  readonly created_at?: string;
10992
- readonly status?: io.flow.common.v0.enums.OrganizationStatus;
11001
+ readonly status: io.flow.common.v0.enums.OrganizationStatus;
10993
11002
  readonly type?: io.flow.common.v0.enums.OrganizationType;
10994
11003
  }
10995
11004
 
@@ -12910,6 +12919,12 @@ declare namespace io.flow.ratecard.v0.models {
12910
12919
  readonly name: string;
12911
12920
  }
12912
12921
 
12922
+ interface RatecardData {
12923
+ readonly dhlParcelDistributionCenter?: string;
12924
+ readonly glbeRatecardMetadataLaneIdentifier?: string;
12925
+ readonly pickupCenter?: string;
12926
+ }
12927
+
12913
12928
  interface RatecardEstimateForm {
12914
12929
  readonly origin_address: io.flow.common.v0.models.Address;
12915
12930
  readonly destination_address: io.flow.common.v0.models.Address;
@@ -13002,7 +13017,7 @@ declare namespace io.flow.ratecard.v0.models {
13002
13017
  readonly glbe_shipping_method_id?: string;
13003
13018
  readonly glbe_proposition_name?: string;
13004
13019
  readonly channel_revenue_share_percentage?: number;
13005
- readonly data?: Record<string, string>;
13020
+ readonly data?: io.flow.ratecard.v0.models.RatecardData;
13006
13021
  }
13007
13022
 
13008
13023
  interface RatecardLane {
@@ -14266,7 +14281,6 @@ declare namespace io.flow.merchant.onboarding.v0.models {
14266
14281
  readonly beneficiary_details?: io.flow.merchant.onboarding.v0.models.MerchantOnboardingBeneficiaryDetails;
14267
14282
  readonly other_trade_sector?: string;
14268
14283
  readonly center_contact?: io.flow.merchant.onboarding.v0.models.OperationsContact;
14269
- readonly center_address?: io.flow.common.v0.models.Address;
14270
14284
  readonly average_order_weight?: number;
14271
14285
  readonly average_order_weight_unit?: io.flow.common.v0.enums.UnitOfMeasurement;
14272
14286
  readonly package_dimensions?: io.flow.common.v0.models.Dimension[];
@@ -14294,7 +14308,6 @@ declare namespace io.flow.merchant.onboarding.v0.models {
14294
14308
  readonly beneficiary_details?: io.flow.merchant.onboarding.v0.models.MerchantOnboardingBeneficiaryDetails;
14295
14309
  readonly other_trade_sector?: string;
14296
14310
  readonly center_contact?: io.flow.merchant.onboarding.v0.models.OperationsContact;
14297
- readonly center_address?: io.flow.common.v0.models.Address;
14298
14311
  readonly average_order_weight?: number;
14299
14312
  readonly average_order_weight_unit?: io.flow.common.v0.enums.UnitOfMeasurement;
14300
14313
  readonly package_dimensions?: io.flow.common.v0.models.Dimension[];
@@ -14395,6 +14408,7 @@ declare namespace io.flow.merchant.onboarding.v0.models {
14395
14408
  readonly company?: string;
14396
14409
  readonly email?: string;
14397
14410
  readonly phone?: string;
14411
+ readonly address?: io.flow.common.v0.models.Address;
14398
14412
  }
14399
14413
 
14400
14414
  interface Shop {
@@ -14934,7 +14948,7 @@ declare namespace io.flow.inventory.v0.models {
14934
14948
 
14935
14949
  interface InventoryUnlimited {
14936
14950
  readonly discriminator: 'inventory_unlimited';
14937
- readonly placeholder?: string;
14951
+ readonly placeholder: string;
14938
14952
  }
14939
14953
 
14940
14954
  interface InventoryUpdate {
@@ -15229,7 +15243,8 @@ declare namespace io.flow.billing.v0.enums {
15229
15243
  | 'rate_lock'
15230
15244
  | 'transfer'
15231
15245
  | 'negative_balance_guarantee'
15232
- | 'sp';
15246
+ | 'sp'
15247
+ | 'rev_share';
15233
15248
  type PayoutAttachmentType = 'transactions';
15234
15249
  type PayoutStatusFailureCode =
15235
15250
  | 'invalid_account_number'
@@ -15257,7 +15272,8 @@ declare namespace io.flow.billing.v0.enums {
15257
15272
  | 'order_cancellation_above_de_min'
15258
15273
  | 'wyol_shipment_above_de_min'
15259
15274
  | 'full_refund_without_shipment'
15260
- | 'unfulfilled_order_above_de_min';
15275
+ | 'unfulfilled_order_above_de_min'
15276
+ | 'order_cancellation_without_capture';
15261
15277
  type TransactionSource =
15262
15278
  | 'capture'
15263
15279
  | 'refund'
@@ -15292,7 +15308,9 @@ declare namespace io.flow.billing.v0.enums {
15292
15308
  | 'ge_revenue_share'
15293
15309
  | 'merchant_fee'
15294
15310
  | 'b2b_tax'
15295
- | 'b2b_tax_refund';
15311
+ | 'b2b_tax_refund'
15312
+ | 'b2b_fee_mor_tax'
15313
+ | 'b2b_fee_shipping_tax';
15296
15314
  type TrueupSource =
15297
15315
  | 'flow'
15298
15316
  | 'channel'
@@ -15592,7 +15610,7 @@ declare namespace io.flow.billing.v0.models {
15592
15610
  readonly label_created_at: string;
15593
15611
  readonly carrier_id: string;
15594
15612
  readonly carrier_tracking_number: string;
15595
- readonly revenue_share_percentage: number;
15613
+ readonly revenue_share_percentage?: number;
15596
15614
  readonly outbound?: io.flow.billing.v0.models.TransactionMetadataOutboundTransaction;
15597
15615
  }
15598
15616
 
@@ -15632,6 +15650,19 @@ declare namespace io.flow.billing.v0.models {
15632
15650
  readonly description: string;
15633
15651
  readonly original?: io.flow.billing.v0.models.TransactionMetadataOriginalTransaction;
15634
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;
15635
15666
  }
15636
15667
 
15637
15668
  interface TransactionMetadataOriginalTransaction {
@@ -15799,7 +15830,8 @@ declare namespace io.flow.billing.v0.unions {
15799
15830
  | io.flow.billing.v0.models.TransactionMetadataManual
15800
15831
  | io.flow.billing.v0.models.TransactionMetadataFailedPayout
15801
15832
  | io.flow.billing.v0.models.TransactionMetadataPaymentTransaction
15802
- | io.flow.billing.v0.models.TransactionMetadataTaxDuty;
15833
+ | io.flow.billing.v0.models.TransactionMetadataTaxDuty
15834
+ | io.flow.billing.v0.models.TransactionMetadataMerchantFee;
15803
15835
  }
15804
15836
 
15805
15837
  declare namespace io.flow.harmonization.v0.enums {
@@ -15824,6 +15856,11 @@ declare namespace io.flow.harmonization.v0.models {
15824
15856
  readonly company_name_match_result_reason?: string;
15825
15857
  }
15826
15858
 
15859
+ interface HarmonizationTariffCode {
15860
+ readonly tariff_code: string;
15861
+ readonly destination: string;
15862
+ }
15863
+
15827
15864
  interface HarmonizedCategoryReference {
15828
15865
  readonly id: string;
15829
15866
  }
@@ -15919,6 +15956,13 @@ declare namespace io.flow.harmonization.v0.models {
15919
15956
  readonly tax: io.flow.price.v0.models.Tax;
15920
15957
  }
15921
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
+
15922
15966
  interface TaxRegistration {
15923
15967
  readonly id: string;
15924
15968
  readonly key: string;
@@ -16230,7 +16274,13 @@ declare namespace io.flow.sellability.v0.enums {
16230
16274
  | 'wait_for_high_fidelity'
16231
16275
  | 'external_service_unavailable';
16232
16276
  type SellabilityRequestStatus = 'commit';
16233
- 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';
16234
16284
  type SellabilityResultStatus = 'in_review' | 'succeeded' | 'failed';
16235
16285
  type SellabilityScreeningMode = 'pre_onboarding' | 'default_on' | 'active';
16236
16286
  }
@@ -16258,6 +16308,7 @@ declare namespace io.flow.sellability.v0.models {
16258
16308
  }
16259
16309
 
16260
16310
  interface ProductSellabilityResult {
16311
+ readonly id: string;
16261
16312
  readonly merchant_id?: string;
16262
16313
  readonly product_id: string;
16263
16314
  readonly restricted_regions: io.flow.sellability.v0.models.SellabilityRestrictedRegion[];
@@ -16276,12 +16327,14 @@ declare namespace io.flow.sellability.v0.models {
16276
16327
  interface SellabilityNeedsActionAttributes {
16277
16328
  readonly reason_code: string;
16278
16329
  readonly category_metafield_handles: string[];
16330
+ readonly category_metafield_ids: string[];
16279
16331
  readonly require_msds?: boolean;
16280
16332
  }
16281
16333
 
16282
16334
  interface SellabilityReasonWithRegions {
16283
16335
  readonly reason: string;
16284
16336
  readonly regions: string[];
16337
+ readonly review_status?: string;
16285
16338
  }
16286
16339
 
16287
16340
  interface SellabilityRegionResult {
@@ -16560,14 +16613,10 @@ declare namespace io.flow.billing.bank.account.v0.models {
16560
16613
 
16561
16614
  interface BankAccountInfoKor {
16562
16615
  readonly discriminator: 'kor';
16563
- readonly name?: string;
16564
- readonly address?: io.flow.common.v0.models.Address;
16565
- readonly phone?: string;
16566
- readonly email?: string;
16616
+ readonly name: string;
16567
16617
  readonly bank_account_number: string;
16568
- readonly bank_routing_number?: string;
16569
- readonly bank_name?: string;
16570
- readonly bank_address?: io.flow.common.v0.models.Address;
16618
+ readonly bank_routing_number: string;
16619
+ readonly bank_name: string;
16571
16620
  }
16572
16621
 
16573
16622
  interface BankAccountInfoUsa {
@@ -16588,6 +16637,7 @@ declare namespace io.flow.billing.bank.account.v0.unions {
16588
16637
  }
16589
16638
 
16590
16639
  declare namespace io.flow.internal.v0.enums {
16640
+ type AccountCurrencyFilter = 'GBP' | 'CAD' | 'USD';
16591
16641
  type AccountPaymentHoldReason =
16592
16642
  | 'fraudulent'
16593
16643
  | 'frozen'
@@ -16599,10 +16649,7 @@ declare namespace io.flow.internal.v0.enums {
16599
16649
  | 'hosted_payment_page'
16600
16650
  | 'checkout_payments_api'
16601
16651
  | 'classic_authorise_api';
16602
- type AldoItemType = 'physical' | 'digital';
16603
16652
  type AmruthaItemType = 'physical' | 'digital';
16604
- type AnirbanItemType = 'physical' | 'digital';
16605
- type AnshItemType = 'physical' | 'digital';
16606
16653
  type AnyDangerousGoods = 'yes' | 'no' | 'i_dont_know';
16607
16654
  type ApiCallReferenceId =
16608
16655
  | 'duty_rates_data_event'
@@ -16624,6 +16671,8 @@ declare namespace io.flow.internal.v0.enums {
16624
16671
  | 'prr-76544617791b4ce8af96b3a7879474c6'
16625
16672
  | 'prr-566cc67167944bc4bd08167aa9c0beba'
16626
16673
  | 'prr-74e1320efb7741cf9ace400b69800f9b';
16674
+ type B2BFeeMorTaxTriggerType = 'capture' | 'order';
16675
+ type B2BFeeShippingTaxTriggerType = 'label' | 'trueup';
16627
16676
  type B2BTaxLedgerDocumentType = 'b2b_invoice' | 'b2b_credit_memo';
16628
16677
  type B2BTaxRateType = 'basic' | 'preferential' | 'exempt';
16629
16678
  type BankAccountStatus = 'on_hold' | 'not_on_hold';
@@ -16898,7 +16947,10 @@ declare namespace io.flow.internal.v0.enums {
16898
16947
  | 'merchant_payout'
16899
16948
  | 'merchant_refund'
16900
16949
  | 'b2b_tax'
16901
- | 'b2b_tax_refund';
16950
+ | 'b2b_tax_refund'
16951
+ | 'b2b_fee_mor_tax'
16952
+ | 'b2b_fee_shipping_tax';
16953
+ type BojanaItemType = 'physical' | 'digital';
16902
16954
  type CalculatorEngine =
16903
16955
  | 'dtce_with_deminimis'
16904
16956
  | 'dtce_with_inclusive_pricing'
@@ -17010,15 +17062,21 @@ declare namespace io.flow.internal.v0.enums {
17010
17062
  | 'continue_shopping'
17011
17063
  | 'confirmation'
17012
17064
  | 'invalid_checkout';
17065
+ type ChenglinItemType = 'physical' | 'digital';
17013
17066
  type ClassificationDecision = 'Accept' | 'Reject';
17014
17067
  type ClassificationErrorCode = 'generic_error';
17015
- type ClassificationFailureReason = 'low_confidence' | 'timeout';
17068
+ type ClassificationFailureReason =
17069
+ | 'low_confidence'
17070
+ | 'timeout'
17071
+ | 'missing_hs6_code'
17072
+ | 'invalid_price';
17016
17073
  type ClassificationPlatform =
17017
17074
  | 'GlobalE'
17018
17075
  | 'Flow'
17019
17076
  | 'FlowOnboarding'
17020
17077
  | 'Borderfree';
17021
17078
  type ClassificationScope = 'Item' | 'Product';
17079
+ type ClassificationSource = 'sellability';
17022
17080
  type ClassificationType = 'None' | 'Manual' | 'ML' | 'System';
17023
17081
  type ClothingAgeClassification =
17024
17082
  | 'None'
@@ -17156,8 +17214,6 @@ declare namespace io.flow.internal.v0.enums {
17156
17214
  | 'calculator_organization_settings_deleted'
17157
17215
  | 'carrier_account_upserted_v2'
17158
17216
  | 'carrier_account_deleted'
17159
- | 'label_generation_settings_upserted'
17160
- | 'label_generation_settings_deleted'
17161
17217
  | 'catalog_import_request'
17162
17218
  | 'exclusion_rule_upserted'
17163
17219
  | 'exclusion_rule_deleted'
@@ -17227,6 +17283,8 @@ declare namespace io.flow.internal.v0.enums {
17227
17283
  | 'carrier_charge_deleted'
17228
17284
  | 'bank_payment_order_upserted'
17229
17285
  | 'bank_payment_order_deleted'
17286
+ | 'shipping_cost_upserted'
17287
+ | 'shipping_cost_deleted'
17230
17288
  | 'fraud_review_upserted'
17231
17289
  | 'fraud_review_deleted'
17232
17290
  | 'fraud_pending_review_upserted'
@@ -17340,11 +17398,17 @@ declare namespace io.flow.internal.v0.enums {
17340
17398
  | 'paypal_refund_upserted'
17341
17399
  | 'paypal_dispute_upserted'
17342
17400
  | 'paypal_dispute_deleted'
17401
+ | 'preonboarding_sellability_result_inserted'
17402
+ | 'preonboarding_sellability_result_updated'
17403
+ | 'preonboarding_sellability_result_deleted'
17343
17404
  | 'product_restriction_rule_decision_upserted'
17344
17405
  | 'product_restriction_rule_decision_deleted'
17345
17406
  | 'product_restriction_state_inserted'
17346
17407
  | 'product_restriction_state_updated'
17347
17408
  | 'product_restriction_state_deleted'
17409
+ | 'product_sellability_result_inserted'
17410
+ | 'product_sellability_result_updated'
17411
+ | 'product_sellability_result_deleted'
17348
17412
  | 'order_rates_published_v3'
17349
17413
  | 'ratecard_dimension_estimate_upserted'
17350
17414
  | 'ratecard_dimension_estimate_deleted'
@@ -17442,22 +17506,10 @@ declare namespace io.flow.internal.v0.enums {
17442
17506
  | 'stripe_connect_report_record_deleted'
17443
17507
  | 'liability_remittance_plan_upserted'
17444
17508
  | 'liability_remittance_plan_deleted'
17445
- | 'anirban_item_upserted'
17446
- | 'anirban_item_deleted'
17447
- | 'sarvesh_item_upserted'
17448
- | 'sarvesh_item_deleted'
17449
- | 'hosein_item_upserted'
17450
- | 'hosein_item_deleted'
17451
- | 'niall_item_upserted'
17452
- | 'niall_item_deleted'
17453
- | 'rohan_item_upserted'
17454
- | 'rohan_item_deleted'
17455
- | 'aldo_item_upserted'
17456
- | 'aldo_item_deleted'
17457
- | 'ansh_item_upserted'
17458
- | 'ansh_item_deleted'
17459
17509
  | 'gabriel_item_upserted'
17460
17510
  | 'gabriel_item_deleted'
17511
+ | 'chenglin_item_upserted'
17512
+ | 'chenglin_item_deleted'
17461
17513
  | 'tracking_processing_error_upserted'
17462
17514
  | 'tracking_processing_error_deleted'
17463
17515
  | 'tracking_label_event_upserted_v2'
@@ -17521,7 +17573,6 @@ declare namespace io.flow.internal.v0.enums {
17521
17573
  | 'legacy_model'
17522
17574
  | 'enterprise_model'
17523
17575
  | 'merchant';
17524
- type HoseinItemType = 'physical' | 'digital';
17525
17576
  type Hs6CodeSource = 'sellability' | 'classification' | 'human';
17526
17577
  type HttpMethod = 'get' | 'post';
17527
17578
  type InternalPaymentEntityType =
@@ -17566,8 +17617,8 @@ declare namespace io.flow.internal.v0.enums {
17566
17617
  | 'carrier';
17567
17618
  type LabelRequestResultOrganizationType =
17568
17619
  | 'all'
17569
- | 'legacy_production'
17570
- | 'managed_markets_production'
17620
+ | 'cafe24_production'
17621
+ | 'shopify_production'
17571
17622
  | 'sandbox';
17572
17623
  type LabelRequestResultState = 'success' | 'failure';
17573
17624
  type LabelTransactionType =
@@ -17576,7 +17627,9 @@ declare namespace io.flow.internal.v0.enums {
17576
17627
  | 'billable_label'
17577
17628
  | 'fee'
17578
17629
  | 'revenue_share';
17579
- type LedgerReportType = 'periodic_mor_jurisdiction_report';
17630
+ type LedgerReportType =
17631
+ | 'periodic_mor_jurisdiction_report'
17632
+ | 'periodic_mor_jurisdiction_sandbox_report';
17580
17633
  type LedgerReportUrlType = 'sharepoint' | 's3';
17581
17634
  type LiabilityType =
17582
17635
  | 'full_value_tax'
@@ -17599,7 +17652,8 @@ declare namespace io.flow.internal.v0.enums {
17599
17652
  | 'carrier_credit'
17600
17653
  | 'negative_balance_guarantee'
17601
17654
  | 'bank_payment_failure'
17602
- | 'non_fraud_chargeback';
17655
+ | 'non_fraud_chargeback'
17656
+ | 'v1_migration_neg_balance_settlement';
17603
17657
  type MerchantFeeTransactionType = 'adjustment' | 'reversal' | 'fee';
17604
17658
  type MerchantOfRecord =
17605
17659
  | 'global_e_united_states'
@@ -17623,7 +17677,6 @@ declare namespace io.flow.internal.v0.enums {
17623
17677
  | 'to_non_registered_business'
17624
17678
  | 'to_registered_business'
17625
17679
  | 'flash_title';
17626
- type NiallItemType = 'physical' | 'digital';
17627
17680
  type NoLiabilityReasonCode =
17628
17681
  | 'zero_basis'
17629
17682
  | 'zero_rate_on_goods'
@@ -17705,6 +17758,7 @@ declare namespace io.flow.internal.v0.enums {
17705
17758
  type OrganizationCapability = 'organization' | 'flow' | 'dynamic';
17706
17759
  type OrganizationMetricType = 'organization_restriction_status';
17707
17760
  type OrganizationPaymentStatus = 'active' | 'archived';
17761
+ type OrganizationPromotionStatus = 'in_progress' | 'completed' | 'failed';
17708
17762
  type OrganizationRestrictionApprovalStatus = 'ready' | 'not-ready';
17709
17763
  type OrganizationRestrictionNoteType =
17710
17764
  | 'internal'
@@ -17742,7 +17796,6 @@ declare namespace io.flow.internal.v0.enums {
17742
17796
  | 'credit';
17743
17797
  type PaymentTerm = 'net7' | 'net15' | 'net30';
17744
17798
  type PendingRecordType = 'verification' | 'classification' | 'restriction';
17745
- type PrateekItemType = 'physical' | 'digital';
17746
17799
  type PreferredBillingSchedule = 'monthly' | 'bi-monthly';
17747
17800
  type PreonboardingClassificationDecision = 'Accept' | 'Reject';
17748
17801
  type PreonboardingClassificationPlatform = 'FlowOnboarding';
@@ -17832,7 +17885,9 @@ declare namespace io.flow.internal.v0.enums {
17832
17885
  | 'enterprise'
17833
17886
  | 'shopify-sandbox'
17834
17887
  | 'enterprise-sandbox'
17835
- | 'enterprise-qa';
17888
+ | 'enterprise-qa'
17889
+ | 'cafe24'
17890
+ | 'cafe24-sandbox';
17836
17891
  type RestrictionOrganizationSource = 'smb' | 'enterprise';
17837
17892
  type RestrictionRuleActivationStatus = 'draft' | 'active' | 'inactive';
17838
17893
  type RestrictionRuleCommunityExemption =
@@ -17854,15 +17909,79 @@ declare namespace io.flow.internal.v0.enums {
17854
17909
  | 'Low-Risk'
17855
17910
  | 'Restricted-Party'
17856
17911
  | 'none';
17857
- type RohanItemType = 'physical' | 'digital';
17858
- type SarveshItemType = 'physical' | 'digital';
17859
17912
  type SellabilityCheckStatus =
17860
17913
  | 'more_restrictive'
17861
17914
  | 'less_restrictive'
17862
17915
  | 'similar'
17863
17916
  | 'regions_differ'
17864
17917
  | 'rules_differ';
17918
+ type SellabilityInternalMatchType = 'positive_keyword' | 'auto_restricted';
17865
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';
17866
17985
  type ShopifyIncotermConfiguration = 'DDP' | 'DAP' | 'DDU' | 'UNSUPPORTED';
17867
17986
  type ShopifyMarketsDangerousGoods =
17868
17987
  | 'aerosols'
@@ -17917,8 +18036,43 @@ declare namespace io.flow.internal.v0.enums {
17917
18036
  | 'tracking_number'
17918
18037
  | 'carrier_service'
17919
18038
  | 'tracking_url';
18039
+ type ShopifyPackageType =
18040
+ | 'BOX'
18041
+ | 'ENVELOPE'
18042
+ | 'SOFT_PACK'
18043
+ | 'TUBE'
18044
+ | 'CARRIER_PACKAGING';
17920
18045
  type ShopifyPlanType = 'standard' | 'shopify_plus';
17921
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';
17922
18076
  type SimpleRoundingStrategy = 'no_rounding' | 'currency_precision';
17923
18077
  type SnoozeNextActionWith = 'customer_service' | 'engineering';
17924
18078
  type SnoozeSourceType = 'task' | 'invariant';
@@ -18122,11 +18276,13 @@ declare namespace io.flow.internal.v0.models {
18122
18276
  readonly transfer_method?: io.flow.internal.v0.enums.TransferMethod;
18123
18277
  readonly b2b_tax_remittance_days?: number;
18124
18278
  readonly merchant_of_record_fee?: number;
18279
+ readonly merchant_of_record_fee_create_on_order?: boolean;
18125
18280
  readonly duty_guarantee_fee?: number;
18126
18281
  readonly transfer_fee?: number;
18127
18282
  readonly negative_balance_fee?: number;
18128
18283
  readonly order_service_fee?: io.flow.internal.v0.models.TieredFee;
18129
18284
  readonly label_fees?: io.flow.internal.v0.models.AccountSettingLabelFees;
18285
+ readonly revenue_share_rate?: number;
18130
18286
  readonly charge_label_cost_directly: boolean;
18131
18287
  readonly transaction_posting_method: io.flow.internal.v0.enums.TransactionPostingMethod;
18132
18288
  readonly statement_transfer_transaction_location: io.flow.internal.v0.enums.StatementTransferTransactionLocation;
@@ -18137,6 +18293,10 @@ declare namespace io.flow.internal.v0.models {
18137
18293
  readonly enable_fee_reversals: boolean;
18138
18294
  readonly record_reason_for_transactions_pending_payout: boolean;
18139
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;
18140
18300
  }
18141
18301
 
18142
18302
  interface AccountSettingsDeleted {
@@ -18666,37 +18826,6 @@ declare namespace io.flow.internal.v0.models {
18666
18826
  readonly placeholder?: boolean;
18667
18827
  }
18668
18828
 
18669
- interface AldoItem {
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.AldoItemType;
18675
- readonly added_on: string;
18676
- }
18677
-
18678
- interface AldoItemDeleted {
18679
- readonly discriminator: 'aldo_item_deleted';
18680
- readonly event_id: string;
18681
- readonly timestamp: string;
18682
- readonly id: string;
18683
- }
18684
-
18685
- interface AldoItemForm {
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.AldoItemType;
18690
- readonly added_on: string;
18691
- }
18692
-
18693
- interface AldoItemUpserted {
18694
- readonly discriminator: 'aldo_item_upserted';
18695
- readonly event_id: string;
18696
- readonly timestamp: string;
18697
- readonly item: io.flow.internal.v0.models.AldoItem;
18698
- }
18699
-
18700
18829
  interface AllItemsExport {
18701
18830
  readonly discriminator: 'all_items_export';
18702
18831
  readonly event_id: string;
@@ -18736,68 +18865,6 @@ declare namespace io.flow.internal.v0.models {
18736
18865
  readonly added_on: string;
18737
18866
  }
18738
18867
 
18739
- interface AnirbanItem {
18740
- readonly id: string;
18741
- readonly number: string;
18742
- readonly amount: io.flow.common.v0.models.Price;
18743
- readonly description?: string;
18744
- readonly type: io.flow.internal.v0.enums.AnirbanItemType;
18745
- readonly added_on: string;
18746
- }
18747
-
18748
- interface AnirbanItemDeleted {
18749
- readonly discriminator: 'anirban_item_deleted';
18750
- readonly event_id: string;
18751
- readonly timestamp: string;
18752
- readonly id: string;
18753
- }
18754
-
18755
- interface AnirbanItemForm {
18756
- readonly number: string;
18757
- readonly amount: io.flow.common.v0.models.Price;
18758
- readonly description?: string;
18759
- readonly type: io.flow.internal.v0.enums.AnirbanItemType;
18760
- readonly added_on: string;
18761
- }
18762
-
18763
- interface AnirbanItemUpserted {
18764
- readonly discriminator: 'anirban_item_upserted';
18765
- readonly event_id: string;
18766
- readonly timestamp: string;
18767
- readonly item: io.flow.internal.v0.models.AnirbanItem;
18768
- }
18769
-
18770
- interface AnshItem {
18771
- readonly id: string;
18772
- readonly number: string;
18773
- readonly amount: io.flow.common.v0.models.Price;
18774
- readonly description?: string;
18775
- readonly type: io.flow.internal.v0.enums.AnshItemType;
18776
- readonly added_on: string;
18777
- }
18778
-
18779
- interface AnshItemDeleted {
18780
- readonly discriminator: 'ansh_item_deleted';
18781
- readonly event_id: string;
18782
- readonly timestamp: string;
18783
- readonly id: string;
18784
- }
18785
-
18786
- interface AnshItemForm {
18787
- readonly number: string;
18788
- readonly amount: io.flow.common.v0.models.Price;
18789
- readonly description?: string;
18790
- readonly type: io.flow.internal.v0.enums.AnshItemType;
18791
- readonly added_on: string;
18792
- }
18793
-
18794
- interface AnshItemUpserted {
18795
- readonly discriminator: 'ansh_item_upserted';
18796
- readonly event_id: string;
18797
- readonly timestamp: string;
18798
- readonly item: io.flow.internal.v0.models.AnshItem;
18799
- }
18800
-
18801
18868
  interface ApplePayAuthorizationPayload {
18802
18869
  readonly discriminator: 'apple_pay_authorization_payload';
18803
18870
  readonly apple_pay_token: string;
@@ -18901,6 +18968,16 @@ declare namespace io.flow.internal.v0.models {
18901
18968
  readonly action?: io.flow.internal.v0.enums.RestrictionStatus;
18902
18969
  }
18903
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
+
18904
18981
  interface B2BTaxLedger {
18905
18982
  readonly id: string;
18906
18983
  readonly total_amount: io.flow.internal.v0.models.TaxTypeTotal;
@@ -18918,6 +18995,8 @@ declare namespace io.flow.internal.v0.models {
18918
18995
  readonly document_type: io.flow.internal.v0.enums.B2BTaxLedgerDocumentType;
18919
18996
  readonly document_date: string;
18920
18997
  readonly ledger_report_id?: string;
18998
+ readonly voids_invoice_number?: string;
18999
+ readonly document_number?: string;
18921
19000
  }
18922
19001
 
18923
19002
  interface B2BTaxLedgerForm {
@@ -18936,6 +19015,8 @@ declare namespace io.flow.internal.v0.models {
18936
19015
  readonly document_type: io.flow.internal.v0.enums.B2BTaxLedgerDocumentType;
18937
19016
  readonly document_date: string;
18938
19017
  readonly ledger_report_id?: string;
19018
+ readonly voids_invoice_number?: string;
19019
+ readonly document_number?: string;
18939
19020
  }
18940
19021
 
18941
19022
  interface BankAccount {
@@ -19246,6 +19327,9 @@ declare namespace io.flow.internal.v0.models {
19246
19327
  readonly tax_refund: io.flow.common.v0.models.Price;
19247
19328
  readonly b2b_tax: io.flow.common.v0.models.Price;
19248
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;
19249
19333
  }
19250
19334
 
19251
19335
  interface BillingStatementUpserted {
@@ -19312,6 +19396,23 @@ declare namespace io.flow.internal.v0.models {
19312
19396
  readonly secret_key: string;
19313
19397
  }
19314
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
+
19315
19416
  interface BooleanFeatureDefaultValue {
19316
19417
  readonly discriminator: 'boolean';
19317
19418
  readonly value: boolean;
@@ -20325,6 +20426,37 @@ declare namespace io.flow.internal.v0.models {
20325
20426
  readonly type: io.flow.internal.v0.enums.CheckoutUrlType;
20326
20427
  }
20327
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
+
20328
20460
  interface Cipher {
20329
20461
  readonly id: string;
20330
20462
  readonly attributes: Record<string, string>;
@@ -20898,7 +21030,7 @@ declare namespace io.flow.internal.v0.models {
20898
21030
  readonly debug: io.flow.internal.v0.models.DebugDetails;
20899
21031
  readonly transactions: io.flow.internal.v0.models.DebugOrderTransactionDetails[];
20900
21032
  readonly reporting: io.flow.internal.v0.models.ReportingDetails;
20901
- readonly banking: io.flow.internal.v0.models.DebugBankingDetails;
21033
+ readonly banking?: io.flow.internal.v0.models.DebugBankingDetails;
20902
21034
  }
20903
21035
 
20904
21036
  interface DebugOrderTransactionDetails {
@@ -22696,6 +22828,12 @@ declare namespace io.flow.internal.v0.models {
22696
22828
  readonly num_events: number;
22697
22829
  }
22698
22830
 
22831
+ interface GenerateLoadRate {
22832
+ readonly organization_ids: string[];
22833
+ readonly events_per_second: number;
22834
+ readonly duration_seconds: number;
22835
+ }
22836
+
22699
22837
  interface GenerateLoadSingleOrg {
22700
22838
  readonly discriminator: 'generate_load_single_org';
22701
22839
  readonly organization_id: string;
@@ -22866,44 +23004,14 @@ declare namespace io.flow.internal.v0.models {
22866
23004
  readonly export_id: string;
22867
23005
  }
22868
23006
 
22869
- interface HoseinItem {
22870
- readonly id: string;
22871
- readonly number: string;
22872
- readonly amount: io.flow.common.v0.models.Price;
22873
- readonly description?: string;
22874
- readonly type: io.flow.internal.v0.enums.HoseinItemType;
22875
- readonly added_on: string;
22876
- }
22877
-
22878
- interface HoseinItemDeleted {
22879
- readonly discriminator: 'hosein_item_deleted';
22880
- readonly event_id: string;
22881
- readonly timestamp: string;
22882
- readonly id: string;
22883
- }
22884
-
22885
- interface HoseinItemForm {
22886
- readonly number: string;
22887
- readonly amount: io.flow.common.v0.models.Price;
22888
- readonly description?: string;
22889
- readonly type: io.flow.internal.v0.enums.HoseinItemType;
22890
- readonly added_on: string;
22891
- }
22892
-
22893
- interface HoseinItemUpserted {
22894
- readonly discriminator: 'hosein_item_upserted';
22895
- readonly event_id: string;
22896
- readonly timestamp: string;
22897
- readonly item: io.flow.internal.v0.models.HoseinItem;
22898
- }
22899
-
22900
23007
  interface Hs6 {
22901
23008
  readonly code: string;
22902
23009
  readonly description: string;
22903
23010
  }
22904
23011
 
22905
23012
  interface Hs6Metadata {
22906
- readonly description: string;
23013
+ readonly description?: string;
23014
+ readonly classification_source?: io.flow.internal.v0.enums.ClassificationSource;
22907
23015
  }
22908
23016
 
22909
23017
  interface ImportCompleted {
@@ -23415,11 +23523,6 @@ declare namespace io.flow.internal.v0.models {
23415
23523
  readonly values: string[];
23416
23524
  }
23417
23525
 
23418
- interface JeanDemoItem {
23419
- readonly id: string;
23420
- readonly name: string;
23421
- }
23422
-
23423
23526
  interface Journal {
23424
23527
  readonly name: string;
23425
23528
  readonly queued: number;
@@ -23540,34 +23643,6 @@ declare namespace io.flow.internal.v0.models {
23540
23643
  readonly postal?: string;
23541
23644
  }
23542
23645
 
23543
- interface LabelGenerationSettings {
23544
- readonly id: string;
23545
- readonly auto_generate_query?: string;
23546
- readonly commercial_invoice_only_query?: string;
23547
- }
23548
-
23549
- interface LabelGenerationSettingsDeleted {
23550
- readonly discriminator: 'label_generation_settings_deleted';
23551
- readonly event_id: string;
23552
- readonly timestamp: string;
23553
- readonly organization: string;
23554
- readonly id: string;
23555
- }
23556
-
23557
- interface LabelGenerationSettingsForm {
23558
- readonly item_identifier?: string;
23559
- readonly auto_generate_query?: string;
23560
- readonly commercial_invoice_only_query?: string;
23561
- }
23562
-
23563
- interface LabelGenerationSettingsUpserted {
23564
- readonly discriminator: 'label_generation_settings_upserted';
23565
- readonly event_id: string;
23566
- readonly timestamp: string;
23567
- readonly organization: string;
23568
- readonly label_generation_settings: io.flow.internal.v0.models.LabelGenerationSettings;
23569
- }
23570
-
23571
23646
  interface LabelInvoiceRequest {
23572
23647
  readonly id: string;
23573
23648
  readonly label: io.flow.internal.v0.models.TrueupLabelSummary;
@@ -23652,6 +23727,7 @@ declare namespace io.flow.internal.v0.models {
23652
23727
  readonly reference_id?: string;
23653
23728
  readonly logistics_integration_provider?: string;
23654
23729
  readonly tax_lrp_liabilities?: io.flow.internal.v0.models.Liability[];
23730
+ readonly channel_id?: string;
23655
23731
  }
23656
23732
 
23657
23733
  interface LabelSummary {
@@ -24072,6 +24148,7 @@ declare namespace io.flow.internal.v0.models {
24072
24148
  readonly original_transaction?: io.flow.internal.v0.models.TransactionReference;
24073
24149
  readonly order?: io.flow.internal.v0.models.BillingOrderTransactionOrderReference;
24074
24150
  readonly attributes?: Record<string, string>;
24151
+ readonly recoup?: boolean;
24075
24152
  readonly id: string;
24076
24153
  readonly type: io.flow.internal.v0.enums.BillingTransactionType;
24077
24154
  readonly status: io.flow.internal.v0.enums.BillingTransactionStatus;
@@ -24089,6 +24166,7 @@ declare namespace io.flow.internal.v0.models {
24089
24166
  readonly category?: io.flow.internal.v0.enums.ManualTransactionCategory;
24090
24167
  readonly order?: io.flow.internal.v0.models.ManualTransactionFormOrder;
24091
24168
  readonly original_transaction_id?: string;
24169
+ readonly recoup?: boolean;
24092
24170
  readonly attributes?: Record<string, string>;
24093
24171
  }
24094
24172
 
@@ -24332,37 +24410,6 @@ declare namespace io.flow.internal.v0.models {
24332
24410
  readonly conditions?: string;
24333
24411
  }
24334
24412
 
24335
- interface NiallItem {
24336
- readonly id: string;
24337
- readonly number: string;
24338
- readonly amount: io.flow.common.v0.models.Price;
24339
- readonly description?: string;
24340
- readonly type: io.flow.internal.v0.enums.NiallItemType;
24341
- readonly added_on: string;
24342
- }
24343
-
24344
- interface NiallItemDeleted {
24345
- readonly discriminator: 'niall_item_deleted';
24346
- readonly event_id: string;
24347
- readonly timestamp: string;
24348
- readonly id: string;
24349
- }
24350
-
24351
- interface NiallItemForm {
24352
- readonly number: string;
24353
- readonly amount: io.flow.common.v0.models.Price;
24354
- readonly description?: string;
24355
- readonly type: io.flow.internal.v0.enums.NiallItemType;
24356
- readonly added_on: string;
24357
- }
24358
-
24359
- interface NiallItemUpserted {
24360
- readonly discriminator: 'niall_item_upserted';
24361
- readonly event_id: string;
24362
- readonly timestamp: string;
24363
- readonly item: io.flow.internal.v0.models.NiallItem;
24364
- }
24365
-
24366
24413
  interface NoCalculatedTaxAmount {
24367
24414
  readonly discriminator: 'no_calculated_tax_amount';
24368
24415
  readonly amount: number;
@@ -24445,6 +24492,7 @@ declare namespace io.flow.internal.v0.models {
24445
24492
  readonly audit_result?: io.flow.internal.v0.enums.OnboardingAuditResult;
24446
24493
  readonly blocked_since?: string;
24447
24494
  readonly onboarding_segment?: string;
24495
+ readonly country?: string;
24448
24496
  }
24449
24497
 
24450
24498
  interface OnboardingStateForm {
@@ -25085,6 +25133,16 @@ declare namespace io.flow.internal.v0.models {
25085
25133
  readonly organization_payment_setting: io.flow.internal.v0.models.OrganizationPaymentSetting;
25086
25134
  }
25087
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
+
25088
25146
  interface OrganizationRestrictionNoteForm {
25089
25147
  readonly note: string;
25090
25148
  readonly note_type: io.flow.internal.v0.enums.OrganizationRestrictionNoteType;
@@ -25271,7 +25329,7 @@ declare namespace io.flow.internal.v0.models {
25271
25329
  readonly label_created_at: string;
25272
25330
  readonly carrier_id: string;
25273
25331
  readonly carrier_tracking_number: string;
25274
- readonly revenue_share_percentage: number;
25332
+ readonly revenue_share_percentage?: number;
25275
25333
  readonly outbound_transaction_id?: string;
25276
25334
  }
25277
25335
 
@@ -25306,6 +25364,7 @@ declare namespace io.flow.internal.v0.models {
25306
25364
  readonly label_transaction_id: string;
25307
25365
  readonly label_invoice_request_id: string;
25308
25366
  readonly carrier_charge_id: string;
25367
+ readonly subtype?: string;
25309
25368
  }
25310
25369
 
25311
25370
  interface OtherRecordOrderSummary {
@@ -25925,23 +25984,6 @@ declare namespace io.flow.internal.v0.models {
25925
25984
  readonly rate: number;
25926
25985
  }
25927
25986
 
25928
- interface PrateekItem {
25929
- readonly id: string;
25930
- readonly number: string;
25931
- readonly amount: io.flow.common.v0.models.Price;
25932
- readonly description?: string;
25933
- readonly type: io.flow.internal.v0.enums.PrateekItemType;
25934
- readonly added_on: string;
25935
- }
25936
-
25937
- interface PrateekItemForm {
25938
- readonly number: string;
25939
- readonly amount: io.flow.common.v0.models.Price;
25940
- readonly description?: string;
25941
- readonly type: io.flow.internal.v0.enums.PrateekItemType;
25942
- readonly added_on: string;
25943
- }
25944
-
25945
25987
  interface Prediction {
25946
25988
  readonly main_material: string;
25947
25989
  readonly gender: string;
@@ -26003,6 +26045,7 @@ declare namespace io.flow.internal.v0.models {
26003
26045
  }
26004
26046
 
26005
26047
  interface PreonboardingSellabilityResult {
26048
+ readonly id?: string;
26006
26049
  readonly merchant_id: string;
26007
26050
  readonly product_id: string;
26008
26051
  readonly channel: string;
@@ -26019,6 +26062,28 @@ declare namespace io.flow.internal.v0.models {
26019
26062
  readonly fingerprint: string;
26020
26063
  }
26021
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
+
26022
26087
  interface PriceInclusivity {
26023
26088
  readonly tax?: boolean;
26024
26089
  readonly duty?: boolean;
@@ -26285,10 +26350,17 @@ declare namespace io.flow.internal.v0.models {
26285
26350
 
26286
26351
  interface ProductSellabilityInternalResult {
26287
26352
  readonly restricted_regions: io.flow.sellability.v0.models.SellabilityRegionResult[];
26288
- 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[];
26289
26360
  }
26290
26361
 
26291
26362
  interface ProductSellabilityResult {
26363
+ readonly id?: string;
26292
26364
  readonly shop_id: string;
26293
26365
  readonly product_number: string;
26294
26366
  readonly request_id: string;
@@ -26297,6 +26369,30 @@ declare namespace io.flow.internal.v0.models {
26297
26369
  readonly restricted_regions_by_type?: io.flow.sellability.v0.models.SellabilityRegionResult[];
26298
26370
  readonly rule_ids?: string[];
26299
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;
26300
26396
  }
26301
26397
 
26302
26398
  interface ProductTransaction {
@@ -26845,6 +26941,7 @@ declare namespace io.flow.internal.v0.models {
26845
26941
  readonly source_type?: io.flow.internal.v0.enums.SourceTypeFilter;
26846
26942
  readonly order_payment_source?: io.flow.experience.v0.enums.OrderPaymentSourceType;
26847
26943
  readonly amount_range?: io.flow.internal.v0.models.ReportAmountRange;
26944
+ readonly account_currency?: io.flow.internal.v0.enums.AccountCurrencyFilter;
26848
26945
  }
26849
26946
 
26850
26947
  interface ReportForm {
@@ -27676,37 +27773,6 @@ declare namespace io.flow.internal.v0.models {
27676
27773
  readonly revenue_record: io.flow.internal.v0.models.RevenueRecord;
27677
27774
  }
27678
27775
 
27679
- interface RohanItem {
27680
- readonly id: string;
27681
- readonly number: string;
27682
- readonly amount: io.flow.common.v0.models.Price;
27683
- readonly description?: string;
27684
- readonly type: io.flow.internal.v0.enums.RohanItemType;
27685
- readonly added_on: string;
27686
- }
27687
-
27688
- interface RohanItemDeleted {
27689
- readonly discriminator: 'rohan_item_deleted';
27690
- readonly event_id: string;
27691
- readonly timestamp: string;
27692
- readonly id: string;
27693
- }
27694
-
27695
- interface RohanItemForm {
27696
- readonly number: string;
27697
- readonly amount: io.flow.common.v0.models.Price;
27698
- readonly description?: string;
27699
- readonly type: io.flow.internal.v0.enums.RohanItemType;
27700
- readonly added_on: string;
27701
- }
27702
-
27703
- interface RohanItemUpserted {
27704
- readonly discriminator: 'rohan_item_upserted';
27705
- readonly event_id: string;
27706
- readonly timestamp: string;
27707
- readonly item: io.flow.internal.v0.models.RohanItem;
27708
- }
27709
-
27710
27776
  interface RoutingAccount {
27711
27777
  readonly discriminator: 'routing_account';
27712
27778
  readonly processor: io.flow.internal.v0.enums.Processor;
@@ -27741,6 +27807,9 @@ declare namespace io.flow.internal.v0.models {
27741
27807
  readonly price_inclusivity?: io.flow.internal.v0.models.PriceInclusivity;
27742
27808
  readonly destination_country: string;
27743
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;
27744
27813
  }
27745
27814
 
27746
27815
  interface SandboxSetup {
@@ -27751,37 +27820,6 @@ declare namespace io.flow.internal.v0.models {
27751
27820
  readonly requested_by: string;
27752
27821
  }
27753
27822
 
27754
- interface SarveshItem {
27755
- readonly id: string;
27756
- readonly number: string;
27757
- readonly amount: io.flow.common.v0.models.Price;
27758
- readonly description?: string;
27759
- readonly type: io.flow.internal.v0.enums.SarveshItemType;
27760
- readonly added_on: string;
27761
- }
27762
-
27763
- interface SarveshItemDeleted {
27764
- readonly discriminator: 'sarvesh_item_deleted';
27765
- readonly event_id: string;
27766
- readonly timestamp: string;
27767
- readonly id: string;
27768
- }
27769
-
27770
- interface SarveshItemForm {
27771
- readonly number: string;
27772
- readonly amount: io.flow.common.v0.models.Price;
27773
- readonly description?: string;
27774
- readonly type: io.flow.internal.v0.enums.SarveshItemType;
27775
- readonly added_on: string;
27776
- }
27777
-
27778
- interface SarveshItemUpserted {
27779
- readonly discriminator: 'sarvesh_item_upserted';
27780
- readonly event_id: string;
27781
- readonly timestamp: string;
27782
- readonly item: io.flow.internal.v0.models.SarveshItem;
27783
- }
27784
-
27785
27823
  interface ScheduledPayment {
27786
27824
  readonly payment: io.flow.internal.v0.models.ReportPayment;
27787
27825
  readonly bank_account: io.flow.internal.v0.models.ReportBankAccountCleartext;
@@ -27921,6 +27959,34 @@ declare namespace io.flow.internal.v0.models {
27921
27959
  readonly cost: io.flow.common.v0.models.Money;
27922
27960
  }
27923
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
+
27924
27990
  interface ShippingLane {
27925
27991
  readonly origin: string;
27926
27992
  readonly destination: string;
@@ -27980,6 +28046,25 @@ declare namespace io.flow.internal.v0.models {
27980
28046
  readonly include_unpublished?: boolean;
27981
28047
  }
27982
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
+
27983
28068
  interface ShopifyCatalogPublication {
27984
28069
  readonly owner: io.flow.internal.v0.enums.CatalogPublicationOwner;
27985
28070
  }
@@ -27993,6 +28078,13 @@ declare namespace io.flow.internal.v0.models {
27993
28078
  readonly service: io.flow.internal.v0.enums.ShopifyService;
27994
28079
  }
27995
28080
 
28081
+ interface ShopifyContactDetails {
28082
+ readonly company?: string;
28083
+ readonly email?: string;
28084
+ readonly name?: string;
28085
+ readonly phone?: string;
28086
+ }
28087
+
27996
28088
  interface ShopifyDispute {
27997
28089
  readonly id: string;
27998
28090
  readonly organization_id: string;
@@ -28348,6 +28440,15 @@ declare namespace io.flow.internal.v0.models {
28348
28440
  readonly registration: io.flow.internal.v0.models.ShopifyMarketsWebhookRegistration;
28349
28441
  }
28350
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
+
28351
28452
  interface ShopifyMerchantPlan {
28352
28453
  readonly id: string;
28353
28454
  readonly authorization: io.flow.payment.v0.models.AuthorizationReference;
@@ -28375,6 +28476,11 @@ declare namespace io.flow.internal.v0.models {
28375
28476
  readonly token: string;
28376
28477
  }
28377
28478
 
28479
+ interface ShopifyMoney {
28480
+ readonly amount: number;
28481
+ readonly currency_code: string;
28482
+ }
28483
+
28378
28484
  interface ShopifyMonitoringCarrierService {
28379
28485
  readonly service: string;
28380
28486
  }
@@ -28656,6 +28762,15 @@ declare namespace io.flow.internal.v0.models {
28656
28762
  readonly deleted_at?: string;
28657
28763
  }
28658
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
+
28659
28774
  interface ShopifyReportFileDeleted {
28660
28775
  readonly discriminator: 'shopify_report_file_deleted';
28661
28776
  readonly event_id: string;
@@ -28670,6 +28785,85 @@ declare namespace io.flow.internal.v0.models {
28670
28785
  readonly shopify_report_file: io.flow.internal.v0.models.ReportFile;
28671
28786
  }
28672
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
+
28673
28867
  interface ShopifyShopStatistics {
28674
28868
  readonly id: string;
28675
28869
  readonly initial_catalog_synced_at?: string;
@@ -28710,6 +28904,7 @@ declare namespace io.flow.internal.v0.models {
28710
28904
 
28711
28905
  interface ShopifyTestOrder {
28712
28906
  readonly id: string;
28907
+ readonly submitted_at: string;
28713
28908
  }
28714
28909
 
28715
28910
  interface ShopifyTestOrderDeleted {
@@ -28734,6 +28929,7 @@ declare namespace io.flow.internal.v0.models {
28734
28929
  readonly tax: io.flow.internal.v0.models.ReportingMonetaryValue;
28735
28930
  readonly duty: io.flow.internal.v0.models.ReportingMonetaryValue;
28736
28931
  readonly discount: io.flow.internal.v0.models.ReportingMonetaryValue;
28932
+ readonly subtotal?: io.flow.internal.v0.models.ReportingMonetaryValue;
28737
28933
  readonly total: io.flow.internal.v0.models.ReportingMonetaryValue;
28738
28934
  }
28739
28935
 
@@ -30126,7 +30322,6 @@ declare namespace io.flow.internal.v0.models {
30126
30322
  readonly fulfillment_key?: string;
30127
30323
  readonly rex_number?: string;
30128
30324
  readonly weee_number?: string;
30129
- readonly generate_commercial_invoice_only: boolean;
30130
30325
  readonly liability_remittance_plan?: io.flow.internal.v0.models.LiabilityRemittancePlan;
30131
30326
  readonly shipment_cost_summary?: io.flow.internal.v0.models.ShipmentCostSummary;
30132
30327
  readonly shipping_label_hop_cost_itemized_estimate?: io.flow.label.v0.models.ShippingLabelHopCostItemizedEstimate;
@@ -30332,8 +30527,6 @@ declare namespace io.flow.internal.v0.unions {
30332
30527
  | io.flow.internal.v0.models.CalculatorOrganizationSettingsDeleted
30333
30528
  | io.flow.internal.v0.models.CarrierAccountUpsertedV2
30334
30529
  | io.flow.internal.v0.models.CarrierAccountDeleted
30335
- | io.flow.internal.v0.models.LabelGenerationSettingsUpserted
30336
- | io.flow.internal.v0.models.LabelGenerationSettingsDeleted
30337
30530
  | io.flow.internal.v0.models.CatalogImportRequest
30338
30531
  | io.flow.internal.v0.models.ExclusionRuleUpserted
30339
30532
  | io.flow.internal.v0.models.ExclusionRuleDeleted
@@ -30403,6 +30596,8 @@ declare namespace io.flow.internal.v0.unions {
30403
30596
  | io.flow.internal.v0.models.CarrierChargeDeleted
30404
30597
  | io.flow.internal.v0.models.BankPaymentOrderUpserted
30405
30598
  | io.flow.internal.v0.models.BankPaymentOrderDeleted
30599
+ | io.flow.internal.v0.models.ShippingCostUpserted
30600
+ | io.flow.internal.v0.models.ShippingCostDeleted
30406
30601
  | io.flow.internal.v0.models.FraudReviewUpserted
30407
30602
  | io.flow.internal.v0.models.FraudReviewDeleted
30408
30603
  | io.flow.internal.v0.models.FraudPendingReviewUpserted
@@ -30516,11 +30711,17 @@ declare namespace io.flow.internal.v0.unions {
30516
30711
  | io.flow.internal.v0.models.PaypalRefundUpserted
30517
30712
  | io.flow.internal.v0.models.PaypalDisputeUpserted
30518
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
30519
30717
  | io.flow.internal.v0.models.ProductRestrictionRuleDecisionUpserted
30520
30718
  | io.flow.internal.v0.models.ProductRestrictionRuleDecisionDeleted
30521
30719
  | io.flow.internal.v0.models.ProductRestrictionStateInserted
30522
30720
  | io.flow.internal.v0.models.ProductRestrictionStateUpdated
30523
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
30524
30725
  | io.flow.internal.v0.models.OrderRatesPublishedV3
30525
30726
  | io.flow.internal.v0.models.RatecardDimensionEstimateUpserted
30526
30727
  | io.flow.internal.v0.models.RatecardDimensionEstimateDeleted
@@ -30618,22 +30819,10 @@ declare namespace io.flow.internal.v0.unions {
30618
30819
  | io.flow.internal.v0.models.StripeConnectReportRecordDeleted
30619
30820
  | io.flow.internal.v0.models.LiabilityRemittancePlanUpserted
30620
30821
  | io.flow.internal.v0.models.LiabilityRemittancePlanDeleted
30621
- | io.flow.internal.v0.models.AnirbanItemUpserted
30622
- | io.flow.internal.v0.models.AnirbanItemDeleted
30623
- | io.flow.internal.v0.models.SarveshItemUpserted
30624
- | io.flow.internal.v0.models.SarveshItemDeleted
30625
- | io.flow.internal.v0.models.HoseinItemUpserted
30626
- | io.flow.internal.v0.models.HoseinItemDeleted
30627
- | io.flow.internal.v0.models.NiallItemUpserted
30628
- | io.flow.internal.v0.models.NiallItemDeleted
30629
- | io.flow.internal.v0.models.RohanItemUpserted
30630
- | io.flow.internal.v0.models.RohanItemDeleted
30631
- | io.flow.internal.v0.models.AldoItemUpserted
30632
- | io.flow.internal.v0.models.AldoItemDeleted
30633
- | io.flow.internal.v0.models.AnshItemUpserted
30634
- | io.flow.internal.v0.models.AnshItemDeleted
30635
30822
  | io.flow.internal.v0.models.GabrielItemUpserted
30636
30823
  | io.flow.internal.v0.models.GabrielItemDeleted
30824
+ | io.flow.internal.v0.models.ChenglinItemUpserted
30825
+ | io.flow.internal.v0.models.ChenglinItemDeleted
30637
30826
  | io.flow.internal.v0.models.TrackingProcessingErrorUpserted
30638
30827
  | io.flow.internal.v0.models.TrackingProcessingErrorDeleted
30639
30828
  | io.flow.internal.v0.models.TrackingLabelEventUpsertedV2
@@ -30822,7 +31011,9 @@ declare namespace io.flow.internal.v0.unions {
30822
31011
  | io.flow.internal.v0.models.TaxDutyReasonCodeMetadata
30823
31012
  | io.flow.internal.v0.models.AccountingReturnMetadata
30824
31013
  | io.flow.internal.v0.models.NonL4LTaxDutyFxFeeMetadata
30825
- | 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;
30826
31017
  type TaxAmount =
30827
31018
  | io.flow.internal.v0.models.CalculatedTaxAmount
30828
31019
  | io.flow.internal.v0.models.NoCalculatedTaxAmount;
@@ -30864,6 +31055,8 @@ export type AccountContactDeleted =
30864
31055
  export type AccountContactForm = io.flow.internal.v0.models.AccountContactForm;
30865
31056
  export type AccountContactUpserted =
30866
31057
  io.flow.internal.v0.models.AccountContactUpserted;
31058
+ export type AccountCurrencyFilter =
31059
+ io.flow.internal.v0.enums.AccountCurrencyFilter;
30867
31060
  export type AccountDeletedV2 = io.flow.internal.v0.models.AccountDeletedV2;
30868
31061
  export type AccountDepositRule = io.flow.internal.v0.models.AccountDepositRule;
30869
31062
  export type AccountDepositRuleForm =
@@ -31014,11 +31207,6 @@ export type AfterpayRefundDeleted =
31014
31207
  export type AfterpayRefundUpserted =
31015
31208
  io.flow.internal.v0.models.AfterpayRefundUpserted;
31016
31209
  export type AftershipWebhook = io.flow.internal.v0.models.AftershipWebhook;
31017
- export type AldoItem = io.flow.internal.v0.models.AldoItem;
31018
- export type AldoItemDeleted = io.flow.internal.v0.models.AldoItemDeleted;
31019
- export type AldoItemForm = io.flow.internal.v0.models.AldoItemForm;
31020
- export type AldoItemType = io.flow.internal.v0.enums.AldoItemType;
31021
- export type AldoItemUpserted = io.flow.internal.v0.models.AldoItemUpserted;
31022
31210
  export type AllItemsExport = io.flow.internal.v0.models.AllItemsExport;
31023
31211
  export type AllOrganizationsMembership =
31024
31212
  io.flow.internal.v0.models.AllOrganizationsMembership;
@@ -31028,17 +31216,6 @@ export type AllowedLabels = io.flow.internal.v0.models.AllowedLabels;
31028
31216
  export type AmruthaItem = io.flow.internal.v0.models.AmruthaItem;
31029
31217
  export type AmruthaItemForm = io.flow.internal.v0.models.AmruthaItemForm;
31030
31218
  export type AmruthaItemType = io.flow.internal.v0.enums.AmruthaItemType;
31031
- export type AnirbanItem = io.flow.internal.v0.models.AnirbanItem;
31032
- export type AnirbanItemDeleted = io.flow.internal.v0.models.AnirbanItemDeleted;
31033
- export type AnirbanItemForm = io.flow.internal.v0.models.AnirbanItemForm;
31034
- export type AnirbanItemType = io.flow.internal.v0.enums.AnirbanItemType;
31035
- export type AnirbanItemUpserted =
31036
- io.flow.internal.v0.models.AnirbanItemUpserted;
31037
- export type AnshItem = io.flow.internal.v0.models.AnshItem;
31038
- export type AnshItemDeleted = io.flow.internal.v0.models.AnshItemDeleted;
31039
- export type AnshItemForm = io.flow.internal.v0.models.AnshItemForm;
31040
- export type AnshItemType = io.flow.internal.v0.enums.AnshItemType;
31041
- export type AnshItemUpserted = io.flow.internal.v0.models.AnshItemUpserted;
31042
31219
  export type AnyDangerousGoods = io.flow.internal.v0.enums.AnyDangerousGoods;
31043
31220
  export type ApiCallReferenceId = io.flow.internal.v0.enums.ApiCallReferenceId;
31044
31221
  export type ApplePayAuthorizationPayload =
@@ -31074,6 +31251,14 @@ export type AuthorizedShippingCharge =
31074
31251
  io.flow.internal.v0.models.AuthorizedShippingCharge;
31075
31252
  export type AutoRestrictRule = io.flow.internal.v0.enums.AutoRestrictRule;
31076
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;
31077
31262
  export type B2BTaxLedger = io.flow.internal.v0.models.B2BTaxLedger;
31078
31263
  export type B2BTaxLedgerDocumentType =
31079
31264
  io.flow.internal.v0.enums.B2BTaxLedgerDocumentType;
@@ -31184,6 +31369,9 @@ export type BitpayAuthenticationDataReference =
31184
31369
  io.flow.internal.v0.models.BitpayAuthenticationDataReference;
31185
31370
  export type BitpayAuthenticationForm =
31186
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;
31187
31375
  export type BooleanFeatureDefaultValue =
31188
31376
  io.flow.internal.v0.models.BooleanFeatureDefaultValue;
31189
31377
  export type BooleanFeatureRule = io.flow.internal.v0.models.BooleanFeatureRule;
@@ -31474,6 +31662,13 @@ export type CheckoutShippingMethodPromptBehavior =
31474
31662
  io.flow.internal.v0.enums.CheckoutShippingMethodPromptBehavior;
31475
31663
  export type CheckoutUrl = io.flow.internal.v0.models.CheckoutUrl;
31476
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;
31477
31672
  export type Cipher = io.flow.internal.v0.models.Cipher;
31478
31673
  export type CipherForm = io.flow.internal.v0.models.CipherForm;
31479
31674
  export type CipherReference = io.flow.internal.v0.models.CipherReference;
@@ -31533,6 +31728,8 @@ export type ClassificationRequeueRequest =
31533
31728
  export type ClassificationResponse =
31534
31729
  io.flow.internal.v0.unions.ClassificationResponse;
31535
31730
  export type ClassificationScope = io.flow.internal.v0.enums.ClassificationScope;
31731
+ export type ClassificationSource =
31732
+ io.flow.internal.v0.enums.ClassificationSource;
31536
31733
  export type ClassificationStatistics =
31537
31734
  io.flow.internal.v0.models.ClassificationStatistics;
31538
31735
  export type ClassificationSummaryReportPayload =
@@ -32077,6 +32274,7 @@ export type GeRevenueShareTransactionType =
32077
32274
  export type GenerateLoad = io.flow.internal.v0.unions.GenerateLoad;
32078
32275
  export type GenerateLoadMultipleOrgs =
32079
32276
  io.flow.internal.v0.models.GenerateLoadMultipleOrgs;
32277
+ export type GenerateLoadRate = io.flow.internal.v0.models.GenerateLoadRate;
32080
32278
  export type GenerateLoadSingleOrg =
32081
32279
  io.flow.internal.v0.models.GenerateLoadSingleOrg;
32082
32280
  export type GenericValidationError =
@@ -32127,11 +32325,6 @@ export type HarmonizeFullyRequestV2 =
32127
32325
  io.flow.internal.v0.models.HarmonizeFullyRequestV2;
32128
32326
  export type HarmonizedItemsHs6Export =
32129
32327
  io.flow.internal.v0.models.HarmonizedItemsHs6Export;
32130
- export type HoseinItem = io.flow.internal.v0.models.HoseinItem;
32131
- export type HoseinItemDeleted = io.flow.internal.v0.models.HoseinItemDeleted;
32132
- export type HoseinItemForm = io.flow.internal.v0.models.HoseinItemForm;
32133
- export type HoseinItemType = io.flow.internal.v0.enums.HoseinItemType;
32134
- export type HoseinItemUpserted = io.flow.internal.v0.models.HoseinItemUpserted;
32135
32328
  export type Hs6 = io.flow.internal.v0.models.Hs6;
32136
32329
  export type Hs6CodeSource = io.flow.internal.v0.enums.Hs6CodeSource;
32137
32330
  export type Hs6Metadata = io.flow.internal.v0.models.Hs6Metadata;
@@ -32249,7 +32442,6 @@ export type ItemSalesMarginVersion =
32249
32442
  export type ItemSummary = io.flow.internal.v0.models.ItemSummary;
32250
32443
  export type ItemType = io.flow.internal.v0.enums.ItemType;
32251
32444
  export type ItemValuesForm = io.flow.internal.v0.models.ItemValuesForm;
32252
- export type JeanDemoItem = io.flow.internal.v0.models.JeanDemoItem;
32253
32445
  export type Journal = io.flow.internal.v0.models.Journal;
32254
32446
  export type JournalFailure = io.flow.internal.v0.models.JournalFailure;
32255
32447
  export type JournalOperation = io.flow.internal.v0.enums.JournalOperation;
@@ -32287,14 +32479,6 @@ export type LabelCreationStatus = io.flow.internal.v0.enums.LabelCreationStatus;
32287
32479
  export type LabelDestination = io.flow.internal.v0.models.LabelDestination;
32288
32480
  export type LabelEventMedium = io.flow.internal.v0.enums.LabelEventMedium;
32289
32481
  export type LabelEventSource = io.flow.internal.v0.enums.LabelEventSource;
32290
- export type LabelGenerationSettings =
32291
- io.flow.internal.v0.models.LabelGenerationSettings;
32292
- export type LabelGenerationSettingsDeleted =
32293
- io.flow.internal.v0.models.LabelGenerationSettingsDeleted;
32294
- export type LabelGenerationSettingsForm =
32295
- io.flow.internal.v0.models.LabelGenerationSettingsForm;
32296
- export type LabelGenerationSettingsUpserted =
32297
- io.flow.internal.v0.models.LabelGenerationSettingsUpserted;
32298
32482
  export type LabelInvoiceRequest =
32299
32483
  io.flow.internal.v0.models.LabelInvoiceRequest;
32300
32484
  export type LabelInvoiceRequestDeleted =
@@ -32467,11 +32651,6 @@ export type NegativeDebitMetrics =
32467
32651
  io.flow.internal.v0.models.NegativeDebitMetrics;
32468
32652
  export type NextBillingStatement =
32469
32653
  io.flow.internal.v0.models.NextBillingStatement;
32470
- export type NiallItem = io.flow.internal.v0.models.NiallItem;
32471
- export type NiallItemDeleted = io.flow.internal.v0.models.NiallItemDeleted;
32472
- export type NiallItemForm = io.flow.internal.v0.models.NiallItemForm;
32473
- export type NiallItemType = io.flow.internal.v0.enums.NiallItemType;
32474
- export type NiallItemUpserted = io.flow.internal.v0.models.NiallItemUpserted;
32475
32654
  export type NoCalculatedTaxAmount =
32476
32655
  io.flow.internal.v0.models.NoCalculatedTaxAmount;
32477
32656
  export type NoClassificationForm =
@@ -32685,6 +32864,12 @@ export type OrganizationPaymentSettingVersion =
32685
32864
  io.flow.internal.v0.models.OrganizationPaymentSettingVersion;
32686
32865
  export type OrganizationPaymentStatus =
32687
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;
32688
32873
  export type OrganizationRestrictionApprovalStatus =
32689
32874
  io.flow.internal.v0.enums.OrganizationRestrictionApprovalStatus;
32690
32875
  export type OrganizationRestrictionNoteForm =
@@ -32896,9 +33081,6 @@ export type PlatformFeePercentage =
32896
33081
  io.flow.internal.v0.models.PlatformFeePercentage;
32897
33082
  export type PlatformFeePercentageTier =
32898
33083
  io.flow.internal.v0.models.PlatformFeePercentageTier;
32899
- export type PrateekItem = io.flow.internal.v0.models.PrateekItem;
32900
- export type PrateekItemForm = io.flow.internal.v0.models.PrateekItemForm;
32901
- export type PrateekItemType = io.flow.internal.v0.enums.PrateekItemType;
32902
33084
  export type Prediction = io.flow.internal.v0.models.Prediction;
32903
33085
  export type PreferredBillingSchedule =
32904
33086
  io.flow.internal.v0.enums.PreferredBillingSchedule;
@@ -32922,6 +33104,12 @@ export type PreonboardingRequestStatus =
32922
33104
  io.flow.internal.v0.enums.PreonboardingRequestStatus;
32923
33105
  export type PreonboardingSellabilityResult =
32924
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;
32925
33113
  export type PriceInclusivity = io.flow.internal.v0.models.PriceInclusivity;
32926
33114
  export type PriceSelector = io.flow.internal.v0.enums.PriceSelector;
32927
33115
  export type PrioritizedCenterReference =
@@ -33000,8 +33188,16 @@ export type ProductSellabilityInternalForm =
33000
33188
  io.flow.internal.v0.models.ProductSellabilityInternalForm;
33001
33189
  export type ProductSellabilityInternalResult =
33002
33190
  io.flow.internal.v0.models.ProductSellabilityInternalResult;
33191
+ export type ProductSellabilityInternalRuleMatch =
33192
+ io.flow.internal.v0.models.ProductSellabilityInternalRuleMatch;
33003
33193
  export type ProductSellabilityResult =
33004
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;
33005
33201
  export type ProductStatus = io.flow.internal.v0.enums.ProductStatus;
33006
33202
  export type ProductTransaction = io.flow.internal.v0.models.ProductTransaction;
33007
33203
  export type ProofOfPosting = io.flow.internal.v0.unions.ProofOfPosting;
@@ -33343,11 +33539,6 @@ export type RevenueRecordUpserted =
33343
33539
  io.flow.internal.v0.models.RevenueRecordUpserted;
33344
33540
  export type RiskCheck = io.flow.internal.v0.enums.RiskCheck;
33345
33541
  export type RiskEvaluation = io.flow.internal.v0.enums.RiskEvaluation;
33346
- export type RohanItem = io.flow.internal.v0.models.RohanItem;
33347
- export type RohanItemDeleted = io.flow.internal.v0.models.RohanItemDeleted;
33348
- export type RohanItemForm = io.flow.internal.v0.models.RohanItemForm;
33349
- export type RohanItemType = io.flow.internal.v0.enums.RohanItemType;
33350
- export type RohanItemUpserted = io.flow.internal.v0.models.RohanItemUpserted;
33351
33542
  export type RoutingAccount = io.flow.internal.v0.models.RoutingAccount;
33352
33543
  export type RoutingEntity = io.flow.internal.v0.unions.RoutingEntity;
33353
33544
  export type RoutingMerchant = io.flow.internal.v0.models.RoutingMerchant;
@@ -33355,12 +33546,6 @@ export type RoutingProcessor = io.flow.internal.v0.models.RoutingProcessor;
33355
33546
  export type SalesPaymentRecord = io.flow.internal.v0.models.SalesPaymentRecord;
33356
33547
  export type SandboxSetup = io.flow.internal.v0.models.SandboxSetup;
33357
33548
  export type SandboxSetupForm = io.flow.internal.v0.models.SandboxSetupForm;
33358
- export type SarveshItem = io.flow.internal.v0.models.SarveshItem;
33359
- export type SarveshItemDeleted = io.flow.internal.v0.models.SarveshItemDeleted;
33360
- export type SarveshItemForm = io.flow.internal.v0.models.SarveshItemForm;
33361
- export type SarveshItemType = io.flow.internal.v0.enums.SarveshItemType;
33362
- export type SarveshItemUpserted =
33363
- io.flow.internal.v0.models.SarveshItemUpserted;
33364
33549
  export type ScheduledPayment = io.flow.internal.v0.models.ScheduledPayment;
33365
33550
  export type Screen = io.flow.internal.v0.models.Screen;
33366
33551
  export type ScreenForm = io.flow.internal.v0.models.ScreenForm;
@@ -33386,12 +33571,20 @@ export type SellabilityCheckResult =
33386
33571
  io.flow.internal.v0.models.SellabilityCheckResult;
33387
33572
  export type SellabilityCheckStatus =
33388
33573
  io.flow.internal.v0.enums.SellabilityCheckStatus;
33574
+ export type SellabilityInternalMatchType =
33575
+ io.flow.internal.v0.enums.SellabilityInternalMatchType;
33389
33576
  export type SellabilityStatus = io.flow.internal.v0.enums.SellabilityStatus;
33390
33577
  export type SessionOrderData = io.flow.internal.v0.models.SessionOrderData;
33391
33578
  export type SetupBlockPutForm = io.flow.internal.v0.models.SetupBlockPutForm;
33392
33579
  export type SfExpress = io.flow.internal.v0.models.SfExpress;
33393
33580
  export type ShipmentCostSummary =
33394
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;
33395
33588
  export type ShippingLane = io.flow.internal.v0.models.ShippingLane;
33396
33589
  export type ShippingMethodReference =
33397
33590
  io.flow.internal.v0.models.ShippingMethodReference;
@@ -33402,12 +33595,26 @@ export type ShippingRateEstimateInternal =
33402
33595
  io.flow.internal.v0.models.ShippingRateEstimateInternal;
33403
33596
  export type ShippingRateEstimateRequestInternal =
33404
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;
33405
33605
  export type ShopifyCatalogPublication =
33406
33606
  io.flow.internal.v0.models.ShopifyCatalogPublication;
33407
33607
  export type ShopifyChannelOrganizationToken =
33408
33608
  io.flow.internal.v0.models.ShopifyChannelOrganizationToken;
33409
33609
  export type ShopifyChannelOrganizationTokens =
33410
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;
33411
33618
  export type ShopifyDispute = io.flow.internal.v0.models.ShopifyDispute;
33412
33619
  export type ShopifyDisputeDeleted =
33413
33620
  io.flow.internal.v0.models.ShopifyDisputeDeleted;
@@ -33419,6 +33626,7 @@ export type ShopifyHs10CodesDeleted =
33419
33626
  io.flow.internal.v0.models.ShopifyHs10CodesDeleted;
33420
33627
  export type ShopifyHs10CodesUpserted =
33421
33628
  io.flow.internal.v0.models.ShopifyHs10CodesUpserted;
33629
+ export type ShopifyIncoterm = io.flow.internal.v0.enums.ShopifyIncoterm;
33422
33630
  export type ShopifyIncotermConfiguration =
33423
33631
  io.flow.internal.v0.enums.ShopifyIncotermConfiguration;
33424
33632
  export type ShopifyIncotermIncludes =
@@ -33509,6 +33717,8 @@ export type ShopifyMarketsWebhookRegistrationDeleted =
33509
33717
  io.flow.internal.v0.models.ShopifyMarketsWebhookRegistrationDeleted;
33510
33718
  export type ShopifyMarketsWebhookRegistrationUpserted =
33511
33719
  io.flow.internal.v0.models.ShopifyMarketsWebhookRegistrationUpserted;
33720
+ export type ShopifyMeasurements =
33721
+ io.flow.internal.v0.models.ShopifyMeasurements;
33512
33722
  export type ShopifyMerchantPlan =
33513
33723
  io.flow.internal.v0.models.ShopifyMerchantPlan;
33514
33724
  export type ShopifyMerchantPlanDeleted =
@@ -33516,6 +33726,7 @@ export type ShopifyMerchantPlanDeleted =
33516
33726
  export type ShopifyMerchantPlanUpserted =
33517
33727
  io.flow.internal.v0.models.ShopifyMerchantPlanUpserted;
33518
33728
  export type ShopifyMetadata = io.flow.internal.v0.models.ShopifyMetadata;
33729
+ export type ShopifyMoney = io.flow.internal.v0.models.ShopifyMoney;
33519
33730
  export type ShopifyMonitoringCarrierService =
33520
33731
  io.flow.internal.v0.models.ShopifyMonitoringCarrierService;
33521
33732
  export type ShopifyMonitoringFulfillmentExternal =
@@ -33562,6 +33773,7 @@ export type ShopifyOrderTransactionDeleted =
33562
33773
  io.flow.internal.v0.models.ShopifyOrderTransactionDeleted;
33563
33774
  export type ShopifyOrderTransactionUpserted =
33564
33775
  io.flow.internal.v0.models.ShopifyOrderTransactionUpserted;
33776
+ export type ShopifyPackageType = io.flow.internal.v0.enums.ShopifyPackageType;
33565
33777
  export type ShopifyPartnerWebhook =
33566
33778
  io.flow.internal.v0.models.ShopifyPartnerWebhook;
33567
33779
  export type ShopifyPartnerWebhookRaw =
@@ -33607,11 +33819,41 @@ export type ShopifyProductUpdateWebhookEvent =
33607
33819
  io.flow.internal.v0.models.ShopifyProductUpdateWebhookEvent;
33608
33820
  export type ShopifyProductWrapper =
33609
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;
33610
33826
  export type ShopifyReportFileDeleted =
33611
33827
  io.flow.internal.v0.models.ShopifyReportFileDeleted;
33612
33828
  export type ShopifyReportFileUpserted =
33613
33829
  io.flow.internal.v0.models.ShopifyReportFileUpserted;
33614
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;
33615
33857
  export type ShopifyShopStatistics =
33616
33858
  io.flow.internal.v0.models.ShopifyShopStatistics;
33617
33859
  export type ShopifyStoreDetail = io.flow.internal.v0.models.ShopifyStoreDetail;
@@ -33625,6 +33867,9 @@ export type ShopifyTestOrderDeleted =
33625
33867
  io.flow.internal.v0.models.ShopifyTestOrderDeleted;
33626
33868
  export type ShopifyTestOrderUpserted =
33627
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;
33628
33873
  export type ShopperBreakdown = io.flow.internal.v0.models.ShopperBreakdown;
33629
33874
  export type ShopperFees = io.flow.internal.v0.models.ShopperFees;
33630
33875
  export type ShopperFreight = io.flow.internal.v0.models.ShopperFreight;