@flowio/types 11.24.121 → 11.24.122

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.
package/src/api.ts CHANGED
@@ -4818,9 +4818,11 @@ declare namespace io.flow.merchant.of.record.v0.enums {
4818
4818
  declare namespace io.flow.tech.onboarding.playground.v0.enums {
4819
4819
  type AldoItemType = 'physical' | 'digital';
4820
4820
  type AnshItemType = 'physical' | 'digital';
4821
+ type HoseinItemType = 'physical' | 'digital';
4821
4822
  type NiallItemType = 'physical' | 'digital';
4822
4823
  type PrateekItemType = 'physical' | 'digital';
4823
4824
  type RohanItemType = 'physical' | 'digital';
4825
+ type SarveshItemType = 'physical' | 'digital';
4824
4826
  }
4825
4827
 
4826
4828
  declare namespace io.flow.tech.onboarding.playground.v0.models {
@@ -4858,6 +4860,23 @@ declare namespace io.flow.tech.onboarding.playground.v0.models {
4858
4860
  readonly added_on: string;
4859
4861
  }
4860
4862
 
4863
+ interface HoseinItem {
4864
+ readonly id: string;
4865
+ readonly number: string;
4866
+ readonly amount: io.flow.common.v0.models.Price;
4867
+ readonly description?: string;
4868
+ readonly type: io.flow.tech.onboarding.playground.v0.enums.HoseinItemType;
4869
+ readonly added_on: string;
4870
+ }
4871
+
4872
+ interface HoseinItemForm {
4873
+ readonly number: string;
4874
+ readonly amount: io.flow.common.v0.models.Price;
4875
+ readonly description?: string;
4876
+ readonly type: io.flow.tech.onboarding.playground.v0.enums.HoseinItemType;
4877
+ readonly added_on: string;
4878
+ }
4879
+
4861
4880
  interface JeanDemoItem {
4862
4881
  readonly id: string;
4863
4882
  readonly name: string;
@@ -4914,11 +4933,51 @@ declare namespace io.flow.tech.onboarding.playground.v0.models {
4914
4933
  readonly added_on: string;
4915
4934
  }
4916
4935
 
4936
+ interface SarveshItem {
4937
+ readonly id: string;
4938
+ readonly number: string;
4939
+ readonly amount: io.flow.common.v0.models.Price;
4940
+ readonly description?: string;
4941
+ readonly type: io.flow.tech.onboarding.playground.v0.enums.SarveshItemType;
4942
+ readonly added_on: string;
4943
+ }
4944
+
4945
+ interface SarveshItemForm {
4946
+ readonly number: string;
4947
+ readonly amount: io.flow.common.v0.models.Price;
4948
+ readonly description?: string;
4949
+ readonly type: io.flow.tech.onboarding.playground.v0.enums.SarveshItemType;
4950
+ readonly added_on: string;
4951
+ }
4952
+
4917
4953
  interface TechOnboardingDescription {
4918
4954
  readonly description: string;
4919
4955
  }
4920
4956
  }
4921
4957
 
4958
+ declare namespace io.flow.currency.v0.models {
4959
+ interface Rate {
4960
+ readonly id: string;
4961
+ readonly base: string;
4962
+ readonly target: string;
4963
+ readonly effective_at: string;
4964
+ readonly value: number;
4965
+ }
4966
+
4967
+ interface RateForm {
4968
+ readonly base: string;
4969
+ readonly target: string;
4970
+ readonly effective_at: string;
4971
+ }
4972
+
4973
+ interface RateVersion {
4974
+ readonly id: string;
4975
+ readonly timestamp: string;
4976
+ readonly type: io.flow.common.v0.enums.ChangeType;
4977
+ readonly rate: io.flow.currency.v0.models.Rate;
4978
+ }
4979
+ }
4980
+
4922
4981
  declare namespace io.flow.organization.v0.enums {
4923
4982
  type CountryPickerSource = 'experience' | 'destination';
4924
4983
  type EcommercePlatformType =
@@ -5266,6 +5325,7 @@ declare namespace io.flow.product.v0.models {
5266
5325
  readonly taxonomy_category?: io.flow.product.v0.models.ProductTaxonomyCategory;
5267
5326
  readonly taxonomy_data?: io.flow.product.v0.models.ProductTaxonomyData[];
5268
5327
  readonly item_numbers: string[];
5328
+ readonly highest_value_item_number?: string;
5269
5329
  readonly updated_at: string;
5270
5330
  readonly deleted_at?: string;
5271
5331
  }
@@ -5980,83 +6040,6 @@ declare namespace io.flow.query.builder.v0.unions {
5980
6040
  | io.flow.query.builder.v0.models.QueryFilterUnstructuredForm;
5981
6041
  }
5982
6042
 
5983
- declare namespace io.flow.sellability.v0.enums {
5984
- type RuleEffectType = 'market' | 'dhl' | 'dhl_ecommerce' | 'ups';
5985
- type SellabilityErrorCode =
5986
- | 'insufficient_details'
5987
- | 'ineligible_category'
5988
- | 'wait_for_high_fidelity'
5989
- | 'external_service_unavailable';
5990
- type SellabilityRequestStatus = 'commit';
5991
- }
5992
-
5993
- declare namespace io.flow.sellability.v0.models {
5994
- interface ProductSellability {
5995
- readonly discriminator: 'product_sellability';
5996
- readonly shop_id: string;
5997
- readonly product_id?: string;
5998
- readonly request_id: string;
5999
- readonly hs6_code: string;
6000
- readonly restricted_regions: io.flow.sellability.v0.models.SellablilityRegionResult[];
6001
- }
6002
-
6003
- interface ProductSellabilityForm {
6004
- readonly shop_id: string;
6005
- readonly product_id?: string;
6006
- readonly name: string;
6007
- readonly price: io.flow.sellability.v0.models.ProductSellabilityPrice;
6008
- readonly description: string;
6009
- readonly taxonomy_category: io.flow.product.v0.models.ProductTaxonomyCategory;
6010
- readonly status?: io.flow.sellability.v0.enums.SellabilityRequestStatus;
6011
- readonly dry_run?: boolean;
6012
- }
6013
-
6014
- interface ProductSellabilityPrice {
6015
- readonly currency: string;
6016
- readonly amount: number;
6017
- }
6018
-
6019
- interface SellabilityError {
6020
- readonly discriminator: 'sellability_error';
6021
- readonly code: io.flow.sellability.v0.enums.SellabilityErrorCode;
6022
- readonly messages: string[];
6023
- }
6024
-
6025
- interface SellablilityRegionResult {
6026
- readonly type: io.flow.sellability.v0.enums.RuleEffectType;
6027
- readonly regions: string[];
6028
- }
6029
- }
6030
-
6031
- declare namespace io.flow.sellability.v0.unions {
6032
- type SellabilityResponse =
6033
- | io.flow.sellability.v0.models.ProductSellability
6034
- | io.flow.sellability.v0.models.SellabilityError;
6035
- }
6036
-
6037
- declare namespace io.flow.currency.v0.models {
6038
- interface Rate {
6039
- readonly id: string;
6040
- readonly base: string;
6041
- readonly target: string;
6042
- readonly effective_at: string;
6043
- readonly value: number;
6044
- }
6045
-
6046
- interface RateForm {
6047
- readonly base: string;
6048
- readonly target: string;
6049
- readonly effective_at: string;
6050
- }
6051
-
6052
- interface RateVersion {
6053
- readonly id: string;
6054
- readonly timestamp: string;
6055
- readonly type: io.flow.common.v0.enums.ChangeType;
6056
- readonly rate: io.flow.currency.v0.models.Rate;
6057
- }
6058
- }
6059
-
6060
6043
  declare namespace io.flow.v0.enums {
6061
6044
  type AbandonedOrderPromotionStatus = 'active' | 'inactive';
6062
6045
  type AbandonedOrderSettingStatus = 'active' | 'inactive';
@@ -6273,6 +6256,10 @@ declare namespace io.flow.v0.enums {
6273
6256
  type EventType =
6274
6257
  | 'test_upserted'
6275
6258
  | 'generate_load'
6259
+ | 'sarvesh_item_upserted'
6260
+ | 'sarvesh_item_deleted'
6261
+ | 'hosein_item_upserted'
6262
+ | 'hosein_item_deleted'
6276
6263
  | 'niall_item_upserted'
6277
6264
  | 'niall_item_deleted'
6278
6265
  | 'rohan_item_upserted'
@@ -6335,44 +6322,12 @@ declare namespace io.flow.v0.enums {
6335
6322
  | 'rate_upserted'
6336
6323
  | 'rate_deleted_v3'
6337
6324
  | 'rate_upserted_v3'
6338
- | 'available_promotions_upserted'
6339
- | 'available_promotions_deleted'
6340
- | 'available_promotions_upserted_v2'
6341
- | 'available_promotions_deleted_v2'
6342
6325
  | 'allocation_deleted_v2'
6343
6326
  | 'allocation_upserted_v2'
6344
- | 'currency_format_deleted'
6345
- | 'currency_format_upserted'
6346
- | 'experience_deleted'
6347
- | 'experience_upserted'
6348
- | 'experience_deleted_v2'
6349
- | 'experience_upserted_v2'
6350
- | 'country_status_upserted'
6351
- | 'country_status_deleted'
6352
- | 'experience_price_book_mapping_deleted'
6353
- | 'experience_price_book_mapping_upserted'
6354
- | 'experience_logistics_settings_upserted'
6355
- | 'experience_logistics_settings_deleted'
6356
- | 'item_margin_deleted_v2'
6357
- | 'item_margin_upserted_v2'
6358
- | 'item_sales_margin_deleted'
6359
- | 'item_sales_margin_upserted'
6360
- | 'label_format_deleted'
6361
- | 'label_format_upserted'
6362
- | 'order_deleted'
6363
- | 'order_upserted'
6364
6327
  | 'order_deleted_v2'
6365
6328
  | 'order_upserted_v2'
6366
- | 'order_identifier_deleted'
6367
- | 'order_identifier_upserted'
6368
6329
  | 'order_identifier_deleted_v2'
6369
- | 'order_identifier_upserted_v2'
6370
6330
  | 'order_identifier_upserted_v3'
6371
- | 'order_replacement_upserted'
6372
- | 'order_replacement_deleted'
6373
- | 'pricing_deleted'
6374
- | 'pricing_upserted'
6375
- | 'order_service_change_request'
6376
6331
  | 'fraud_status_changed'
6377
6332
  | 'center_upserted'
6378
6333
  | 'center_deleted'
@@ -6397,8 +6352,6 @@ declare namespace io.flow.v0.enums {
6397
6352
  | 'item_origin_deleted'
6398
6353
  | 'harmonized_landed_cost_upserted'
6399
6354
  | 'fully_harmonized_item_upserted'
6400
- | 'import_completed_v2'
6401
- | 'import_failed_v2'
6402
6355
  | 'label_upserted'
6403
6356
  | 'label_deleted_v2'
6404
6357
  | 'label_upserted_v2'
@@ -6574,6 +6527,7 @@ declare namespace io.flow.v0.enums {
6574
6527
  type LanePreselectPreference = 'lowest_cost' | 'default_tier';
6575
6528
  type LaneStrategy = 'oldest' | 'fastest' | 'lowest_cost' | 'highest_priority';
6576
6529
  type LevyComponent = 'goods' | 'duty' | 'insurance' | 'freight' | 'vat';
6530
+ type LevyInclusion = 'tax' | 'duty';
6577
6531
  type LevyStrategy = 'minimum' | 'average' | 'maximum';
6578
6532
  type LocationErrorCode =
6579
6533
  | 'address_required'
@@ -6844,6 +6798,7 @@ declare namespace io.flow.v0.enums {
6844
6798
  | 'hazardous'
6845
6799
  | 'perishable';
6846
6800
  type PostalType = 'eircode' | 'pin' | 'postal' | 'zip';
6801
+ type PreferentialRateEligibility = 'baby_clothing' | 'kids_clothing';
6847
6802
  type PreferredServiceSelectionStrategy =
6848
6803
  | 'calculated_rate'
6849
6804
  | 'flat_rate'
@@ -6908,9 +6863,11 @@ declare namespace io.flow.v0.enums {
6908
6863
  | 'Knives'
6909
6864
  | 'Liquids'
6910
6865
  | 'Oversized'
6866
+ | 'Pending Classification'
6911
6867
  | 'Restrict by Default'
6912
6868
  | 'Supplements'
6913
6869
  | 'Tattoo Ink And PMU'
6870
+ | 'Unknown Bundles'
6914
6871
  | 'Weapon'
6915
6872
  | 'Wood';
6916
6873
  type PromotionTriggerType = 'automatic' | 'order_subtotal';
@@ -6994,7 +6951,14 @@ declare namespace io.flow.v0.enums {
6994
6951
  type Role = 'admin' | 'member';
6995
6952
  type RoundingMethod = 'up' | 'down' | 'nearest';
6996
6953
  type RoundingType = 'pattern' | 'multiple';
6954
+ type RuleEffectType = 'market' | 'dhl' | 'dhl_ecommerce' | 'ups';
6997
6955
  type ScheduleExceptionStatus = 'Open' | 'Closed';
6956
+ type SellabilityErrorCode =
6957
+ | 'insufficient_details'
6958
+ | 'ineligible_category'
6959
+ | 'wait_for_high_fidelity'
6960
+ | 'external_service_unavailable';
6961
+ type SellabilityRequestStatus = 'commit';
6998
6962
  type ShipmentIntegrationType = 'direct' | 'information' | 'preadvice';
6999
6963
  type ShipmentRecipient = 'customer' | 'return' | 'crossdock';
7000
6964
  type ShippingConfigurationType = 'default' | 'variant';
@@ -7068,6 +7032,28 @@ declare namespace io.flow.v0.enums {
7068
7032
  | 'Expired_001';
7069
7033
  type SurchargeResponsibleParty = 'organization' | 'customer';
7070
7034
  type TaxApplicability = 'none' | 'all';
7035
+ type TaxDutyCalculatorValidationErrorCode =
7036
+ | 'generic_error'
7037
+ | 'destination_country_not_defined'
7038
+ | 'destination_address_iso3166_unrecognized'
7039
+ | 'line_item_shipfrom_shipto_country_invalid'
7040
+ | 'line_item_ship_from_invalid'
7041
+ | 'line_item_currency_iso4217_unrecognized'
7042
+ | 'line_quantity_invalid'
7043
+ | 'line_item_quantity_invalid'
7044
+ | 'line_item_unit_price_precision_invalid'
7045
+ | 'line_item_unit_price_negative'
7046
+ | 'line_item_discount_amount_precision_invalid'
7047
+ | 'line_item_discount_amount_positive'
7048
+ | 'line_item_country_of_origin_iso3166_unrecognized'
7049
+ | 'line_item_hs_code_invalid'
7050
+ | 'line_item_duty_provider_invalid'
7051
+ | 'shipping_unit_price_precision_invalid'
7052
+ | 'shipping_unit_price_negative'
7053
+ | 'shipping_discount_amount_precision_invalid'
7054
+ | 'shipping_discount_amount_invalid'
7055
+ | 'merchant_of_record_invalid'
7056
+ | 'wrong_unit_specified';
7071
7057
  type TaxDutyTransactionReasonCode =
7072
7058
  | 'post_capture'
7073
7059
  | 'post_fulfilment'
@@ -7140,6 +7126,8 @@ declare namespace io.flow.v0.enums {
7140
7126
  | 'tax_refund'
7141
7127
  | 'duty_refund'
7142
7128
  | 'non_l4l_tax_duty_fx'
7129
+ | 'merchant_payout'
7130
+ | 'merchant_refund'
7143
7131
  | 'ge_revenue_share';
7144
7132
  type TransferStatus = 'succeeded' | 'canceled';
7145
7133
  type TransferType =
@@ -7200,6 +7188,17 @@ declare namespace io.flow.v0.enums {
7200
7188
  type WebhookStatus = 'pending' | 'success' | 'failure' | 'ignored';
7201
7189
  type WithholdingDeductionType = 'tax' | 'duty' | 'freight' | 'insurance';
7202
7190
  type ZeroAmountIndicator = 'zero' | 'free';
7191
+ type ZeroLevyReasonCode =
7192
+ | 'zero_basis'
7193
+ | 'zero_rate_on_goods'
7194
+ | 'value_rounds_to_zero'
7195
+ | 'order_below_de_minimis_threshold'
7196
+ | 'amount_below_de_minimis_threshold'
7197
+ | 'delivered_unpaid'
7198
+ | 'duty_free_domestic'
7199
+ | 'duty_free_intra_community'
7200
+ | 'duty_free_reimport'
7201
+ | 'duty_free_by_trade_agreement';
7203
7202
  }
7204
7203
 
7205
7204
  declare namespace io.flow.v0.models {
@@ -7917,39 +7916,6 @@ declare namespace io.flow.v0.models {
7917
7916
  readonly promotions: io.flow.v0.unions.Promotion[];
7918
7917
  }
7919
7918
 
7920
- interface AvailablePromotionsDeleted {
7921
- readonly discriminator: 'available_promotions_deleted';
7922
- readonly event_id: string;
7923
- readonly timestamp: string;
7924
- readonly organization: string;
7925
- readonly experience_key: string;
7926
- }
7927
-
7928
- interface AvailablePromotionsDeletedV2 {
7929
- readonly discriminator: 'available_promotions_deleted_v2';
7930
- readonly event_id: string;
7931
- readonly timestamp: string;
7932
- readonly organization: string;
7933
- readonly available_promotion: io.flow.v0.models.AvailablePromotion;
7934
- }
7935
-
7936
- interface AvailablePromotionsUpserted {
7937
- readonly discriminator: 'available_promotions_upserted';
7938
- readonly event_id: string;
7939
- readonly timestamp: string;
7940
- readonly organization: string;
7941
- readonly experience_key: string;
7942
- readonly available_promotions: any /*object*/[];
7943
- }
7944
-
7945
- interface AvailablePromotionsUpsertedV2 {
7946
- readonly discriminator: 'available_promotions_upserted_v2';
7947
- readonly event_id: string;
7948
- readonly timestamp: string;
7949
- readonly organization: string;
7950
- readonly available_promotion: io.flow.v0.models.AvailablePromotion;
7951
- }
7952
-
7953
7919
  interface AvailableService {
7954
7920
  readonly service: string;
7955
7921
  readonly scheduled_pickups?: io.flow.v0.models.ScheduledPickup[];
@@ -9243,26 +9209,10 @@ declare namespace io.flow.v0.models {
9243
9209
  readonly status: io.flow.v0.enums.ExperienceCountryStatus;
9244
9210
  }
9245
9211
 
9246
- interface CountryStatusDeleted {
9247
- readonly discriminator: 'country_status_deleted';
9248
- readonly event_id: string;
9249
- readonly timestamp: string;
9250
- readonly organization: string;
9251
- readonly country_status: io.flow.v0.models.CountryStatus;
9252
- }
9253
-
9254
9212
  interface CountryStatusForm {
9255
9213
  readonly status: io.flow.v0.enums.ExperienceCountryStatus;
9256
9214
  }
9257
9215
 
9258
- interface CountryStatusUpserted {
9259
- readonly discriminator: 'country_status_upserted';
9260
- readonly event_id: string;
9261
- readonly timestamp: string;
9262
- readonly organization: string;
9263
- readonly country_status: io.flow.v0.models.CountryStatus;
9264
- }
9265
-
9266
9216
  interface CreditMemo {
9267
9217
  readonly id: string;
9268
9218
  readonly number?: string;
@@ -9393,25 +9343,6 @@ declare namespace io.flow.v0.models {
9393
9343
  readonly label_formatters: io.flow.v0.enums.CurrencyLabelFormatter[];
9394
9344
  }
9395
9345
 
9396
- interface CurrencyFormatDeleted {
9397
- readonly discriminator: 'currency_format_deleted';
9398
- readonly event_id: string;
9399
- readonly timestamp: string;
9400
- readonly organization: string;
9401
- readonly id: string;
9402
- }
9403
-
9404
- interface CurrencyFormatUpserted {
9405
- readonly discriminator: 'currency_format_upserted';
9406
- readonly event_id: string;
9407
- readonly timestamp: string;
9408
- readonly organization: string;
9409
- readonly id: string;
9410
- readonly experience_key: string;
9411
- readonly symbol: io.flow.v0.enums.CurrencySymbolFormat;
9412
- readonly label_formatters: io.flow.v0.enums.CurrencyLabelFormatter[];
9413
- }
9414
-
9415
9346
  interface CurrencySymbols {
9416
9347
  readonly primary: string;
9417
9348
  readonly narrow?: string;
@@ -10206,23 +10137,6 @@ declare namespace io.flow.v0.models {
10206
10137
  readonly measurement_system: io.flow.v0.enums.MeasurementSystem;
10207
10138
  }
10208
10139
 
10209
- interface ExperienceDeleted {
10210
- readonly discriminator: 'experience_deleted';
10211
- readonly event_id: string;
10212
- readonly timestamp: string;
10213
- readonly organization: string;
10214
- readonly key: string;
10215
- readonly subcatalog_id: string;
10216
- }
10217
-
10218
- interface ExperienceDeletedV2 {
10219
- readonly discriminator: 'experience_deleted_v2';
10220
- readonly event_id: string;
10221
- readonly timestamp: string;
10222
- readonly organization: string;
10223
- readonly experience: io.flow.v0.models.Experience;
10224
- }
10225
-
10226
10140
  interface ExperienceExportType {
10227
10141
  readonly discriminator: 'experience_export_type';
10228
10142
  readonly organization_id: string;
@@ -10259,26 +10173,10 @@ declare namespace io.flow.v0.models {
10259
10173
  readonly shipping_configuration: io.flow.v0.models.ShippingConfigurationReference;
10260
10174
  }
10261
10175
 
10262
- interface ExperienceLogisticsSettingsDeleted {
10263
- readonly discriminator: 'experience_logistics_settings_deleted';
10264
- readonly event_id: string;
10265
- readonly timestamp: string;
10266
- readonly organization: string;
10267
- readonly logistics_settings: io.flow.v0.models.ExperienceLogisticsSettings;
10268
- }
10269
-
10270
10176
  interface ExperienceLogisticsSettingsPutForm {
10271
10177
  readonly shipping_configuration_key: string;
10272
10178
  }
10273
10179
 
10274
- interface ExperienceLogisticsSettingsUpserted {
10275
- readonly discriminator: 'experience_logistics_settings_upserted';
10276
- readonly event_id: string;
10277
- readonly timestamp: string;
10278
- readonly organization: string;
10279
- readonly logistics_settings: io.flow.v0.models.ExperienceLogisticsSettings;
10280
- }
10281
-
10282
10180
  interface ExperienceLogisticsSummary {
10283
10181
  readonly outbound?: io.flow.v0.models.ExperienceLogisticsTierSummary;
10284
10182
  readonly return?: io.flow.v0.models.ExperienceLogisticsTierSummary;
@@ -10315,14 +10213,6 @@ declare namespace io.flow.v0.models {
10315
10213
  readonly position: number;
10316
10214
  }
10317
10215
 
10318
- interface ExperiencePriceBookMappingDeleted {
10319
- readonly discriminator: 'experience_price_book_mapping_deleted';
10320
- readonly event_id: string;
10321
- readonly timestamp: string;
10322
- readonly organization: string;
10323
- readonly id: string;
10324
- }
10325
-
10326
10216
  interface ExperiencePriceBookMappingForm {
10327
10217
  readonly price_book_key: string;
10328
10218
  readonly position?: number;
@@ -10332,14 +10222,6 @@ declare namespace io.flow.v0.models {
10332
10222
  readonly price_books: io.flow.v0.models.ExperiencePriceBookMappingForm[];
10333
10223
  }
10334
10224
 
10335
- interface ExperiencePriceBookMappingUpserted {
10336
- readonly discriminator: 'experience_price_book_mapping_upserted';
10337
- readonly event_id: string;
10338
- readonly timestamp: string;
10339
- readonly organization: string;
10340
- readonly experience_price_book_mapping: io.flow.v0.models.ExperiencePriceBookMapping;
10341
- }
10342
-
10343
10225
  interface ExperiencePriceConversion {
10344
10226
  readonly request: io.flow.v0.models.ExperiencePriceConversionRequest;
10345
10227
  readonly price: io.flow.v0.models.PriceWithBase;
@@ -10396,32 +10278,6 @@ declare namespace io.flow.v0.models {
10396
10278
  readonly language?: string;
10397
10279
  }
10398
10280
 
10399
- interface ExperienceUpserted {
10400
- readonly discriminator: 'experience_upserted';
10401
- readonly event_id: string;
10402
- readonly timestamp: string;
10403
- readonly organization: string;
10404
- readonly key: string;
10405
- readonly name: string;
10406
- readonly delivered_duty: string;
10407
- readonly subcatalog_id: string;
10408
- readonly region_id: string;
10409
- readonly country: string;
10410
- readonly currency: string;
10411
- readonly language: string;
10412
- readonly measurement_system: string;
10413
- readonly position: number;
10414
- readonly status?: string;
10415
- }
10416
-
10417
- interface ExperienceUpsertedV2 {
10418
- readonly discriminator: 'experience_upserted_v2';
10419
- readonly event_id: string;
10420
- readonly timestamp: string;
10421
- readonly organization: string;
10422
- readonly experience: io.flow.v0.models.Experience;
10423
- }
10424
-
10425
10281
  interface ExperienceVersion {
10426
10282
  readonly id: string;
10427
10283
  readonly timestamp: string;
@@ -11064,6 +10920,20 @@ declare namespace io.flow.v0.models {
11064
10920
  readonly hop_estimate: io.flow.v0.models.HopEstimateV2;
11065
10921
  }
11066
10922
 
10923
+ interface HoseinItemDeleted {
10924
+ readonly discriminator: 'hosein_item_deleted';
10925
+ readonly event_id: string;
10926
+ readonly timestamp: string;
10927
+ readonly id: string;
10928
+ }
10929
+
10930
+ interface HoseinItemUpserted {
10931
+ readonly discriminator: 'hosein_item_upserted';
10932
+ readonly event_id: string;
10933
+ readonly timestamp: string;
10934
+ readonly item: io.flow.tech.onboarding.playground.v0.models.HoseinItem;
10935
+ }
10936
+
11067
10937
  interface Hs10 {
11068
10938
  readonly id: string;
11069
10939
  readonly item: io.flow.v0.models.HarmonizedItemReference;
@@ -11153,22 +11023,6 @@ declare namespace io.flow.v0.models {
11153
11023
  readonly deliveries: io.flow.v0.unions.ExportDelivery[];
11154
11024
  }
11155
11025
 
11156
- interface ImportCompletedV2 {
11157
- readonly discriminator: 'import_completed_v2';
11158
- readonly event_id: string;
11159
- readonly timestamp: string;
11160
- readonly organization: string;
11161
- readonly import: io.flow.v0.models.Import;
11162
- }
11163
-
11164
- interface ImportFailedV2 {
11165
- readonly discriminator: 'import_failed_v2';
11166
- readonly event_id: string;
11167
- readonly timestamp: string;
11168
- readonly organization: string;
11169
- readonly import: io.flow.v0.models.Import;
11170
- }
11171
-
11172
11026
  interface ImportForm {
11173
11027
  readonly type: io.flow.v0.enums.ImportType;
11174
11028
  readonly source_url: string;
@@ -11431,14 +11285,6 @@ declare namespace io.flow.v0.models {
11431
11285
  readonly experience?: io.flow.v0.models.ExperienceReference;
11432
11286
  }
11433
11287
 
11434
- interface ItemMarginDeletedV2 {
11435
- readonly discriminator: 'item_margin_deleted_v2';
11436
- readonly event_id: string;
11437
- readonly timestamp: string;
11438
- readonly organization: string;
11439
- readonly item_margin: io.flow.v0.models.ItemMargin;
11440
- }
11441
-
11442
11288
  interface ItemMarginPostForm {
11443
11289
  readonly name: string;
11444
11290
  readonly q: string;
@@ -11456,14 +11302,6 @@ declare namespace io.flow.v0.models {
11456
11302
  readonly position?: number;
11457
11303
  }
11458
11304
 
11459
- interface ItemMarginUpsertedV2 {
11460
- readonly discriminator: 'item_margin_upserted_v2';
11461
- readonly event_id: string;
11462
- readonly timestamp: string;
11463
- readonly organization: string;
11464
- readonly item_margin: io.flow.v0.models.ItemMargin;
11465
- }
11466
-
11467
11305
  interface ItemMarginVersion {
11468
11306
  readonly id: string;
11469
11307
  readonly timestamp: string;
@@ -11511,29 +11349,6 @@ declare namespace io.flow.v0.models {
11511
11349
  readonly number: string;
11512
11350
  }
11513
11351
 
11514
- interface ItemSalesMarginDeleted {
11515
- readonly discriminator: 'item_sales_margin_deleted';
11516
- readonly event_id: string;
11517
- readonly timestamp: string;
11518
- readonly item_sales_margin_id: string;
11519
- readonly organization_id: string;
11520
- readonly experience_key: string;
11521
- }
11522
-
11523
- interface ItemSalesMarginUpserted {
11524
- readonly discriminator: 'item_sales_margin_upserted';
11525
- readonly event_id: string;
11526
- readonly timestamp: string;
11527
- readonly item_sales_margin_id: string;
11528
- readonly organization_id: string;
11529
- readonly experience_key: string;
11530
- readonly name: string;
11531
- readonly q: string;
11532
- readonly fixed: number;
11533
- readonly percent: number;
11534
- readonly position: number;
11535
- }
11536
-
11537
11352
  interface ItemShippingPricing {
11538
11353
  readonly min: io.flow.v0.models.Price;
11539
11354
  readonly max?: io.flow.v0.models.Price;
@@ -11648,23 +11463,6 @@ declare namespace io.flow.v0.models {
11648
11463
  readonly label: io.flow.v0.models.ShippingLabel;
11649
11464
  }
11650
11465
 
11651
- interface LabelFormatDeleted {
11652
- readonly discriminator: 'label_format_deleted';
11653
- readonly event_id: string;
11654
- readonly timestamp: string;
11655
- readonly organization: string;
11656
- readonly experience_key: string;
11657
- }
11658
-
11659
- interface LabelFormatUpserted {
11660
- readonly discriminator: 'label_format_upserted';
11661
- readonly event_id: string;
11662
- readonly timestamp: string;
11663
- readonly organization: string;
11664
- readonly experience_key: string;
11665
- readonly format: string;
11666
- }
11667
-
11668
11466
  interface LabelOrderSummary {
11669
11467
  readonly id: string;
11670
11468
  readonly number: string;
@@ -12523,14 +12321,6 @@ declare namespace io.flow.v0.models {
12523
12321
  readonly invoice?: io.flow.v0.models.CustomerInvoice;
12524
12322
  }
12525
12323
 
12526
- interface OrderDeleted {
12527
- readonly discriminator: 'order_deleted';
12528
- readonly event_id: string;
12529
- readonly timestamp: string;
12530
- readonly organization: string;
12531
- readonly number: string;
12532
- }
12533
-
12534
12324
  interface OrderDeletedV2 {
12535
12325
  readonly discriminator: 'order_deleted_v2';
12536
12326
  readonly event_id: string;
@@ -12625,13 +12415,6 @@ declare namespace io.flow.v0.models {
12625
12415
  readonly number?: string;
12626
12416
  }
12627
12417
 
12628
- interface OrderIdentifierDeleted {
12629
- readonly discriminator: 'order_identifier_deleted';
12630
- readonly event_id: string;
12631
- readonly timestamp: string;
12632
- readonly id: string;
12633
- }
12634
-
12635
12418
  interface OrderIdentifierDeletedV2 {
12636
12419
  readonly discriminator: 'order_identifier_deleted_v2';
12637
12420
  readonly event_id: string;
@@ -12654,27 +12437,6 @@ declare namespace io.flow.v0.models {
12654
12437
  readonly primary?: boolean;
12655
12438
  }
12656
12439
 
12657
- interface OrderIdentifierUpserted {
12658
- readonly discriminator: 'order_identifier_upserted';
12659
- readonly event_id: string;
12660
- readonly timestamp: string;
12661
- readonly id: string;
12662
- readonly organization: string;
12663
- readonly number: string;
12664
- readonly order_number: string;
12665
- }
12666
-
12667
- interface OrderIdentifierUpsertedV2 {
12668
- readonly discriminator: 'order_identifier_upserted_v2';
12669
- readonly event_id: string;
12670
- readonly timestamp: string;
12671
- readonly organization: string;
12672
- readonly id: string;
12673
- readonly order_number: string;
12674
- readonly identifier: string;
12675
- readonly primary: boolean;
12676
- }
12677
-
12678
12440
  interface OrderIdentifierUpsertedV3 {
12679
12441
  readonly discriminator: 'order_identifier_upserted_v3';
12680
12442
  readonly event_id: string;
@@ -12872,26 +12634,10 @@ declare namespace io.flow.v0.models {
12872
12634
  readonly replacement_order: io.flow.v0.models.Order;
12873
12635
  }
12874
12636
 
12875
- interface OrderReplacementDeleted {
12876
- readonly discriminator: 'order_replacement_deleted';
12877
- readonly event_id: string;
12878
- readonly timestamp: string;
12879
- readonly organization: string;
12880
- readonly order_replacement: io.flow.v0.models.OrderReplacement;
12881
- }
12882
-
12883
12637
  interface OrderReplacementForm {
12884
12638
  readonly items?: io.flow.v0.models.LineItemForm[];
12885
12639
  }
12886
12640
 
12887
- interface OrderReplacementUpserted {
12888
- readonly discriminator: 'order_replacement_upserted';
12889
- readonly event_id: string;
12890
- readonly timestamp: string;
12891
- readonly organization: string;
12892
- readonly order_replacement: io.flow.v0.models.OrderReplacement;
12893
- }
12894
-
12895
12641
  interface OrderRuleReference {
12896
12642
  readonly id: string;
12897
12643
  readonly key: string;
@@ -12912,14 +12658,6 @@ declare namespace io.flow.v0.models {
12912
12658
  readonly to_service_id: string;
12913
12659
  }
12914
12660
 
12915
- interface OrderServiceChangeRequest {
12916
- readonly discriminator: 'order_service_change_request';
12917
- readonly event_id: string;
12918
- readonly timestamp: string;
12919
- readonly organization: string;
12920
- readonly request: io.flow.v0.models.OrderServiceChangeRequestData;
12921
- }
12922
-
12923
12661
  interface OrderServiceChangeRequestData {
12924
12662
  readonly id: string;
12925
12663
  readonly source_url: string;
@@ -12994,36 +12732,6 @@ declare namespace io.flow.v0.models {
12994
12732
  readonly rate_label?: string;
12995
12733
  }
12996
12734
 
12997
- interface OrderUpserted {
12998
- readonly discriminator: 'order_upserted';
12999
- readonly event_id: string;
13000
- readonly timestamp: string;
13001
- readonly organization: string;
13002
- readonly number: string;
13003
- readonly environment: string;
13004
- readonly experience_id: string;
13005
- readonly expires_at: string;
13006
- readonly customer: io.flow.v0.models.OrderCustomer;
13007
- readonly selections: string[];
13008
- readonly items: io.flow.v0.models.LocalizedLineItem[];
13009
- readonly destination: io.flow.v0.models.OrderAddress;
13010
- readonly deliveries: io.flow.v0.unions.Delivery[];
13011
- readonly prices: io.flow.v0.models.OrderPriceDetail[];
13012
- readonly order_id?: string;
13013
- readonly payments?: io.flow.v0.models.OrderPayment[];
13014
- readonly discount?: io.flow.v0.models.Money;
13015
- readonly delivered_duty?: string;
13016
- readonly total: io.flow.v0.models.LocalizedTotal;
13017
- readonly created_at?: string;
13018
- readonly updated_at?: string;
13019
- readonly submitted_at?: string;
13020
- readonly lines?: io.flow.v0.models.Line[];
13021
- readonly attributes?: Record<string, string>;
13022
- readonly geo?: io.flow.v0.models.OrderGeo;
13023
- readonly merchant_of_record?: io.flow.v0.enums.OrderMerchantOfRecord;
13024
- readonly tax_registration?: io.flow.v0.models.TaxRegistration;
13025
- }
13026
-
13027
12735
  interface OrderUpsertedV2 {
13028
12736
  readonly discriminator: 'order_upserted_v2';
13029
12737
  readonly event_id: string;
@@ -14509,33 +14217,12 @@ declare namespace io.flow.v0.models {
14509
14217
  readonly rounding?: io.flow.v0.models.Rounding;
14510
14218
  }
14511
14219
 
14512
- interface PricingDeleted {
14513
- readonly discriminator: 'pricing_deleted';
14514
- readonly event_id: string;
14515
- readonly timestamp: string;
14516
- readonly organization: string;
14517
- readonly experience_key: string;
14518
- }
14519
-
14520
14220
  interface PricingSettings {
14521
14221
  readonly editable: boolean;
14522
14222
  readonly default_tax_display: io.flow.v0.enums.PricingLevySetting;
14523
14223
  readonly default_duty_display: io.flow.v0.enums.PricingLevySetting;
14524
14224
  }
14525
14225
 
14526
- interface PricingUpserted {
14527
- readonly discriminator: 'pricing_upserted';
14528
- readonly event_id: string;
14529
- readonly timestamp: string;
14530
- readonly organization: string;
14531
- readonly experience_key: string;
14532
- readonly vat: string;
14533
- readonly duty: string;
14534
- readonly rounding_type?: string;
14535
- readonly rounding_method?: string;
14536
- readonly rounding_value?: number;
14537
- }
14538
-
14539
14226
  interface PricingVersion {
14540
14227
  readonly id: string;
14541
14228
  readonly timestamp: string;
@@ -14556,6 +14243,7 @@ declare namespace io.flow.v0.models {
14556
14243
  readonly taxonomy_category?: io.flow.v0.models.ProductTaxonomyCategory;
14557
14244
  readonly taxonomy_data?: io.flow.v0.models.ProductTaxonomyData[];
14558
14245
  readonly item_numbers: string[];
14246
+ readonly highest_value_item_number?: string;
14559
14247
  readonly updated_at: string;
14560
14248
  readonly deleted_at?: string;
14561
14249
  }
@@ -14588,7 +14276,7 @@ declare namespace io.flow.v0.models {
14588
14276
  readonly updated_by?: string;
14589
14277
  readonly product_restriction_id?: string;
14590
14278
  readonly hs_code?: string;
14591
- readonly restricted_regions_by_type?: io.flow.sellability.v0.models.SellablilityRegionResult[];
14279
+ readonly restricted_regions_by_type?: io.flow.v0.models.SellablilityRegionResult[];
14592
14280
  }
14593
14281
 
14594
14282
  interface ProductRestrictionResultDeleted {
@@ -14607,6 +14295,26 @@ declare namespace io.flow.v0.models {
14607
14295
  readonly product_restriction_result: io.flow.v0.models.ProductRestrictionResult;
14608
14296
  }
14609
14297
 
14298
+ interface ProductSellability {
14299
+ readonly discriminator: 'product_sellability';
14300
+ readonly shop_id: string;
14301
+ readonly product_id?: string;
14302
+ readonly request_id: string;
14303
+ readonly hs6_code: string;
14304
+ readonly restricted_regions: io.flow.v0.models.SellablilityRegionResult[];
14305
+ }
14306
+
14307
+ interface ProductSellabilityForm {
14308
+ readonly shop_id: string;
14309
+ readonly product_id?: string;
14310
+ readonly name: string;
14311
+ readonly price: io.flow.v0.models.Money;
14312
+ readonly description: string;
14313
+ readonly taxonomy_category: io.flow.v0.models.ProductTaxonomyCategory;
14314
+ readonly status?: io.flow.v0.enums.SellabilityRequestStatus;
14315
+ readonly dry_run?: boolean;
14316
+ }
14317
+
14610
14318
  interface ProductTaxonomyCategory {
14611
14319
  readonly name: string;
14612
14320
  readonly full_name: string;
@@ -15505,6 +15213,20 @@ declare namespace io.flow.v0.models {
15505
15213
  readonly roles: io.flow.v0.enums.FlowRole[];
15506
15214
  }
15507
15215
 
15216
+ interface SarveshItemDeleted {
15217
+ readonly discriminator: 'sarvesh_item_deleted';
15218
+ readonly event_id: string;
15219
+ readonly timestamp: string;
15220
+ readonly id: string;
15221
+ }
15222
+
15223
+ interface SarveshItemUpserted {
15224
+ readonly discriminator: 'sarvesh_item_upserted';
15225
+ readonly event_id: string;
15226
+ readonly timestamp: string;
15227
+ readonly item: io.flow.tech.onboarding.playground.v0.models.SarveshItem;
15228
+ }
15229
+
15508
15230
  interface Schedule {
15509
15231
  readonly calendar?: io.flow.v0.enums.Calendar;
15510
15232
  readonly holiday: io.flow.v0.enums.HolidayCalendar;
@@ -15556,6 +15278,17 @@ declare namespace io.flow.v0.models {
15556
15278
  readonly issuer_options: io.flow.v0.models.IssuerReference[];
15557
15279
  }
15558
15280
 
15281
+ interface SellabilityError {
15282
+ readonly discriminator: 'sellability_error';
15283
+ readonly code: io.flow.v0.enums.SellabilityErrorCode;
15284
+ readonly messages: string[];
15285
+ }
15286
+
15287
+ interface SellablilityRegionResult {
15288
+ readonly type: io.flow.v0.enums.RuleEffectType;
15289
+ readonly regions: string[];
15290
+ }
15291
+
15559
15292
  interface ServiceReference {
15560
15293
  readonly id: string;
15561
15294
  }
@@ -16357,6 +16090,14 @@ declare namespace io.flow.v0.models {
16357
16090
  readonly statement: io.flow.v0.models.Statement;
16358
16091
  }
16359
16092
 
16093
+ interface StreetAddress {
16094
+ readonly streets?: string[];
16095
+ readonly city?: string;
16096
+ readonly province?: string;
16097
+ readonly postal?: string;
16098
+ readonly country?: string;
16099
+ }
16100
+
16360
16101
  interface StripeAuthenticationData {
16361
16102
  readonly discriminator: 'stripe_authentication_data';
16362
16103
  readonly secret_key_reference: string;
@@ -16511,6 +16252,93 @@ declare namespace io.flow.v0.models {
16511
16252
  readonly deminimis?: io.flow.v0.unions.Deminimis;
16512
16253
  }
16513
16254
 
16255
+ interface TaxDutyCalculatorValidationError {
16256
+ readonly code: io.flow.v0.enums.TaxDutyCalculatorValidationErrorCode;
16257
+ readonly messages: string[];
16258
+ }
16259
+
16260
+ interface TaxDutyQuote {
16261
+ readonly id: string;
16262
+ readonly primary_identifier: string;
16263
+ readonly attributes?: Record<string, string>;
16264
+ readonly merchant_of_record: io.flow.v0.enums.MerchantOfRecord;
16265
+ readonly delivered_duty: io.flow.v0.enums.DeliveredDuty;
16266
+ readonly destination: io.flow.v0.models.StreetAddress;
16267
+ readonly quote_date: string;
16268
+ readonly currency: string;
16269
+ readonly lines: io.flow.v0.models.TaxDutyQuoteLineItem[];
16270
+ readonly shipping: io.flow.v0.models.TaxDutyQuoteSimpleShipping[];
16271
+ readonly total_values: io.flow.v0.models.TaxDutyQuoteValues;
16272
+ }
16273
+
16274
+ interface TaxDutyQuoteFeeValue {
16275
+ readonly amount: number;
16276
+ readonly description: string;
16277
+ readonly amount_refundable_on_return: number;
16278
+ }
16279
+
16280
+ interface TaxDutyQuoteForm {
16281
+ readonly primary_identifier: string;
16282
+ readonly attributes?: Record<string, string>;
16283
+ readonly delivered_duty: io.flow.v0.enums.DeliveredDuty;
16284
+ readonly destination: io.flow.v0.models.StreetAddress;
16285
+ readonly currency: string;
16286
+ readonly lines: io.flow.v0.models.TaxDutyQuoteLineItemForm[];
16287
+ readonly shipping: io.flow.v0.models.TaxDutyQuoteSimpleShippingForm[];
16288
+ readonly includes?: io.flow.v0.enums.LevyInclusion[];
16289
+ }
16290
+
16291
+ interface TaxDutyQuoteLineItem {
16292
+ readonly primary_identifier: string;
16293
+ readonly attributes?: Record<string, string>;
16294
+ readonly ship_from: io.flow.v0.models.StreetAddress;
16295
+ readonly quantity: number;
16296
+ readonly unit_values: io.flow.v0.models.TaxDutyQuoteValues;
16297
+ readonly country_of_origin: string;
16298
+ readonly hs_code: string;
16299
+ }
16300
+
16301
+ interface TaxDutyQuoteLineItemForm {
16302
+ readonly primary_identifier: string;
16303
+ readonly attributes?: Record<string, string>;
16304
+ readonly ship_from: io.flow.v0.models.StreetAddress;
16305
+ readonly quantity: number;
16306
+ readonly unit_price: number;
16307
+ readonly unit_weight?: io.flow.v0.models.Measurement;
16308
+ readonly country_of_origin?: string;
16309
+ readonly hs_code?: string;
16310
+ readonly includes: io.flow.v0.enums.LevyInclusion[];
16311
+ readonly preferential_rate_eligibilities?: io.flow.v0.enums.PreferentialRateEligibility[];
16312
+ }
16313
+
16314
+ interface TaxDutyQuoteSimpleLevyValue {
16315
+ readonly discriminator: 'tax_duty_quote_simple_levy_value';
16316
+ readonly amount: number;
16317
+ readonly rate: number;
16318
+ readonly description: string;
16319
+ readonly zero_levy_reason?: io.flow.v0.enums.ZeroLevyReasonCode[];
16320
+ readonly amount_refundable_on_return: number;
16321
+ }
16322
+
16323
+ interface TaxDutyQuoteSimpleShipping {
16324
+ readonly values: io.flow.v0.models.TaxDutyQuoteValues;
16325
+ readonly ship_from: io.flow.v0.models.StreetAddress;
16326
+ }
16327
+
16328
+ interface TaxDutyQuoteSimpleShippingForm {
16329
+ readonly price: number;
16330
+ readonly includes: io.flow.v0.enums.LevyInclusion[];
16331
+ readonly ship_from?: io.flow.v0.models.StreetAddress;
16332
+ }
16333
+
16334
+ interface TaxDutyQuoteValues {
16335
+ readonly price: number;
16336
+ readonly duty: io.flow.v0.models.TaxDutyQuoteSimpleLevyValue;
16337
+ readonly tax: io.flow.v0.models.TaxDutyQuoteSimpleLevyValue;
16338
+ readonly fees: io.flow.v0.models.TaxDutyQuoteFeeValue;
16339
+ readonly total: number;
16340
+ }
16341
+
16514
16342
  interface TaxRegistration {
16515
16343
  readonly id: string;
16516
16344
  readonly key: string;
@@ -17448,6 +17276,10 @@ declare namespace io.flow.v0.unions {
17448
17276
  type Event =
17449
17277
  | io.flow.v0.models.TestUpserted
17450
17278
  | io.flow.v0.models.GenerateLoad
17279
+ | io.flow.v0.models.SarveshItemUpserted
17280
+ | io.flow.v0.models.SarveshItemDeleted
17281
+ | io.flow.v0.models.HoseinItemUpserted
17282
+ | io.flow.v0.models.HoseinItemDeleted
17451
17283
  | io.flow.v0.models.NiallItemUpserted
17452
17284
  | io.flow.v0.models.NiallItemDeleted
17453
17285
  | io.flow.v0.models.RohanItemUpserted
@@ -17510,44 +17342,12 @@ declare namespace io.flow.v0.unions {
17510
17342
  | io.flow.v0.models.RateUpserted
17511
17343
  | io.flow.v0.models.RateDeletedV3
17512
17344
  | io.flow.v0.models.RateUpsertedV3
17513
- | io.flow.v0.models.AvailablePromotionsUpserted
17514
- | io.flow.v0.models.AvailablePromotionsDeleted
17515
- | io.flow.v0.models.AvailablePromotionsUpsertedV2
17516
- | io.flow.v0.models.AvailablePromotionsDeletedV2
17517
17345
  | io.flow.v0.models.AllocationDeletedV2
17518
17346
  | io.flow.v0.models.AllocationUpsertedV2
17519
- | io.flow.v0.models.CurrencyFormatDeleted
17520
- | io.flow.v0.models.CurrencyFormatUpserted
17521
- | io.flow.v0.models.ExperienceDeleted
17522
- | io.flow.v0.models.ExperienceUpserted
17523
- | io.flow.v0.models.ExperienceDeletedV2
17524
- | io.flow.v0.models.ExperienceUpsertedV2
17525
- | io.flow.v0.models.CountryStatusUpserted
17526
- | io.flow.v0.models.CountryStatusDeleted
17527
- | io.flow.v0.models.ExperiencePriceBookMappingDeleted
17528
- | io.flow.v0.models.ExperiencePriceBookMappingUpserted
17529
- | io.flow.v0.models.ExperienceLogisticsSettingsUpserted
17530
- | io.flow.v0.models.ExperienceLogisticsSettingsDeleted
17531
- | io.flow.v0.models.ItemMarginDeletedV2
17532
- | io.flow.v0.models.ItemMarginUpsertedV2
17533
- | io.flow.v0.models.ItemSalesMarginDeleted
17534
- | io.flow.v0.models.ItemSalesMarginUpserted
17535
- | io.flow.v0.models.LabelFormatDeleted
17536
- | io.flow.v0.models.LabelFormatUpserted
17537
- | io.flow.v0.models.OrderDeleted
17538
- | io.flow.v0.models.OrderUpserted
17539
17347
  | io.flow.v0.models.OrderDeletedV2
17540
17348
  | io.flow.v0.models.OrderUpsertedV2
17541
- | io.flow.v0.models.OrderIdentifierDeleted
17542
- | io.flow.v0.models.OrderIdentifierUpserted
17543
17349
  | io.flow.v0.models.OrderIdentifierDeletedV2
17544
- | io.flow.v0.models.OrderIdentifierUpsertedV2
17545
17350
  | io.flow.v0.models.OrderIdentifierUpsertedV3
17546
- | io.flow.v0.models.OrderReplacementUpserted
17547
- | io.flow.v0.models.OrderReplacementDeleted
17548
- | io.flow.v0.models.PricingDeleted
17549
- | io.flow.v0.models.PricingUpserted
17550
- | io.flow.v0.models.OrderServiceChangeRequest
17551
17351
  | io.flow.v0.models.FraudStatusChanged
17552
17352
  | io.flow.v0.models.CenterUpserted
17553
17353
  | io.flow.v0.models.CenterDeleted
@@ -17572,8 +17372,6 @@ declare namespace io.flow.v0.unions {
17572
17372
  | io.flow.v0.models.ItemOriginDeleted
17573
17373
  | io.flow.v0.models.HarmonizedLandedCostUpserted
17574
17374
  | io.flow.v0.models.FullyHarmonizedItemUpserted
17575
- | io.flow.v0.models.ImportCompletedV2
17576
- | io.flow.v0.models.ImportFailedV2
17577
17375
  | io.flow.v0.models.LabelUpserted
17578
17376
  | io.flow.v0.models.LabelDeletedV2
17579
17377
  | io.flow.v0.models.LabelUpsertedV2
@@ -17895,6 +17693,9 @@ declare namespace io.flow.v0.unions {
17895
17693
  type SdkAdyenV3AuthenticationToken =
17896
17694
  | io.flow.v0.models.AdyenV3FingerprintToken
17897
17695
  | io.flow.v0.models.AdyenV3ChallengeToken;
17696
+ type SellabilityResponse =
17697
+ | io.flow.v0.models.ProductSellability
17698
+ | io.flow.v0.models.SellabilityError;
17898
17699
  type ServiceDescription =
17899
17700
  | io.flow.v0.models.ServiceSummary
17900
17701
  | io.flow.v0.models.ServiceUnknown;
@@ -17933,6 +17734,7 @@ declare namespace io.flow.v0.unions {
17933
17734
  | io.flow.v0.models.ShopifyCartAddSingleForm
17934
17735
  | io.flow.v0.models.ShopifyCartAddMultipleForm;
17935
17736
  type ShopifyEventBucket = io.flow.v0.models.ShopifyItemEventBucket;
17737
+ type TaxDutyQuoteLevyValue = io.flow.v0.models.TaxDutyQuoteSimpleLevyValue;
17936
17738
  type TaxSetting =
17937
17739
  | io.flow.v0.models.AvalaraTaxSetting
17938
17740
  | io.flow.v0.models.AvalaraTaxCsvSetting;
@@ -18146,14 +17948,6 @@ export type AvailableFilterStructured =
18146
17948
  export type AvailableFilterUnstructured =
18147
17949
  io.flow.v0.models.AvailableFilterUnstructured;
18148
17950
  export type AvailablePromotion = io.flow.v0.models.AvailablePromotion;
18149
- export type AvailablePromotionsDeleted =
18150
- io.flow.v0.models.AvailablePromotionsDeleted;
18151
- export type AvailablePromotionsDeletedV2 =
18152
- io.flow.v0.models.AvailablePromotionsDeletedV2;
18153
- export type AvailablePromotionsUpserted =
18154
- io.flow.v0.models.AvailablePromotionsUpserted;
18155
- export type AvailablePromotionsUpsertedV2 =
18156
- io.flow.v0.models.AvailablePromotionsUpsertedV2;
18157
17951
  export type AvailableService = io.flow.v0.models.AvailableService;
18158
17952
  export type AvalaraTaxCsvSetting = io.flow.v0.models.AvalaraTaxCsvSetting;
18159
17953
  export type AvalaraTaxSetting = io.flow.v0.models.AvalaraTaxSetting;
@@ -18411,9 +18205,7 @@ export type CountryPickerForm = io.flow.v0.models.CountryPickerForm;
18411
18205
  export type CountryPickerSource = io.flow.v0.enums.CountryPickerSource;
18412
18206
  export type CountryShippingPricing = io.flow.v0.models.CountryShippingPricing;
18413
18207
  export type CountryStatus = io.flow.v0.models.CountryStatus;
18414
- export type CountryStatusDeleted = io.flow.v0.models.CountryStatusDeleted;
18415
18208
  export type CountryStatusForm = io.flow.v0.models.CountryStatusForm;
18416
- export type CountryStatusUpserted = io.flow.v0.models.CountryStatusUpserted;
18417
18209
  export type CreditMemo = io.flow.v0.models.CreditMemo;
18418
18210
  export type CreditMemoDeleted = io.flow.v0.models.CreditMemoDeleted;
18419
18211
  export type CreditMemoForm = io.flow.v0.models.CreditMemoForm;
@@ -18435,8 +18227,6 @@ export type CsvPriceBookItemExportRowBySku =
18435
18227
  io.flow.v0.models.CsvPriceBookItemExportRowBySku;
18436
18228
  export type Currency = io.flow.v0.models.Currency;
18437
18229
  export type CurrencyFormat = io.flow.v0.models.CurrencyFormat;
18438
- export type CurrencyFormatDeleted = io.flow.v0.models.CurrencyFormatDeleted;
18439
- export type CurrencyFormatUpserted = io.flow.v0.models.CurrencyFormatUpserted;
18440
18230
  export type CurrencyLabelFormatter = io.flow.v0.enums.CurrencyLabelFormatter;
18441
18231
  export type CurrencySymbolFormat = io.flow.v0.enums.CurrencySymbolFormat;
18442
18232
  export type CurrencySymbols = io.flow.v0.models.CurrencySymbols;
@@ -18636,19 +18426,13 @@ export type ExperienceCurrencyFormat =
18636
18426
  export type ExperienceCurrencyFormatForm =
18637
18427
  io.flow.v0.models.ExperienceCurrencyFormatForm;
18638
18428
  export type ExperienceDefaults = io.flow.v0.models.ExperienceDefaults;
18639
- export type ExperienceDeleted = io.flow.v0.models.ExperienceDeleted;
18640
- export type ExperienceDeletedV2 = io.flow.v0.models.ExperienceDeletedV2;
18641
18429
  export type ExperienceExportType = io.flow.v0.models.ExperienceExportType;
18642
18430
  export type ExperienceForm = io.flow.v0.models.ExperienceForm;
18643
18431
  export type ExperienceGeo = io.flow.v0.models.ExperienceGeo;
18644
18432
  export type ExperienceLogisticsSettings =
18645
18433
  io.flow.v0.models.ExperienceLogisticsSettings;
18646
- export type ExperienceLogisticsSettingsDeleted =
18647
- io.flow.v0.models.ExperienceLogisticsSettingsDeleted;
18648
18434
  export type ExperienceLogisticsSettingsPutForm =
18649
18435
  io.flow.v0.models.ExperienceLogisticsSettingsPutForm;
18650
- export type ExperienceLogisticsSettingsUpserted =
18651
- io.flow.v0.models.ExperienceLogisticsSettingsUpserted;
18652
18436
  export type ExperienceLogisticsSummary =
18653
18437
  io.flow.v0.models.ExperienceLogisticsSummary;
18654
18438
  export type ExperienceLogisticsTierSummary =
@@ -18664,14 +18448,10 @@ export type ExperiencePaymentMethodTag =
18664
18448
  io.flow.v0.enums.ExperiencePaymentMethodTag;
18665
18449
  export type ExperiencePriceBookMapping =
18666
18450
  io.flow.v0.models.ExperiencePriceBookMapping;
18667
- export type ExperiencePriceBookMappingDeleted =
18668
- io.flow.v0.models.ExperiencePriceBookMappingDeleted;
18669
18451
  export type ExperiencePriceBookMappingForm =
18670
18452
  io.flow.v0.models.ExperiencePriceBookMappingForm;
18671
18453
  export type ExperiencePriceBookMappingPutForm =
18672
18454
  io.flow.v0.models.ExperiencePriceBookMappingPutForm;
18673
- export type ExperiencePriceBookMappingUpserted =
18674
- io.flow.v0.models.ExperiencePriceBookMappingUpserted;
18675
18455
  export type ExperiencePriceConversion =
18676
18456
  io.flow.v0.models.ExperiencePriceConversion;
18677
18457
  export type ExperiencePriceConversionRequest =
@@ -18689,8 +18469,6 @@ export type ExperienceSettings = io.flow.v0.models.ExperienceSettings;
18689
18469
  export type ExperienceStatus = io.flow.v0.enums.ExperienceStatus;
18690
18470
  export type ExperienceStatusForm = io.flow.v0.models.ExperienceStatusForm;
18691
18471
  export type ExperienceSummary = io.flow.v0.models.ExperienceSummary;
18692
- export type ExperienceUpserted = io.flow.v0.models.ExperienceUpserted;
18693
- export type ExperienceUpsertedV2 = io.flow.v0.models.ExperienceUpsertedV2;
18694
18472
  export type ExperienceVersion = io.flow.v0.models.ExperienceVersion;
18695
18473
  export type Expiration = io.flow.v0.models.Expiration;
18696
18474
  export type Export = io.flow.v0.models.Export;
@@ -18843,6 +18621,8 @@ export type Hop = io.flow.v0.models.Hop;
18843
18621
  export type HopEstimate = io.flow.v0.models.HopEstimate;
18844
18622
  export type HopEstimateV2 = io.flow.v0.models.HopEstimateV2;
18845
18623
  export type HopV2 = io.flow.v0.models.HopV2;
18624
+ export type HoseinItemDeleted = io.flow.v0.models.HoseinItemDeleted;
18625
+ export type HoseinItemUpserted = io.flow.v0.models.HoseinItemUpserted;
18846
18626
  export type Hs10 = io.flow.v0.models.Hs10;
18847
18627
  export type Hs10CodeDeleted = io.flow.v0.models.Hs10CodeDeleted;
18848
18628
  export type Hs10CodeUpserted = io.flow.v0.models.Hs10CodeUpserted;
@@ -18855,8 +18635,6 @@ export type Image = io.flow.v0.models.Image;
18855
18635
  export type ImageForm = io.flow.v0.models.ImageForm;
18856
18636
  export type ImageTag = io.flow.v0.enums.ImageTag;
18857
18637
  export type Import = io.flow.v0.models.Import;
18858
- export type ImportCompletedV2 = io.flow.v0.models.ImportCompletedV2;
18859
- export type ImportFailedV2 = io.flow.v0.models.ImportFailedV2;
18860
18638
  export type ImportForm = io.flow.v0.models.ImportForm;
18861
18639
  export type ImportResults = io.flow.v0.models.ImportResults;
18862
18640
  export type ImportTemplate = io.flow.v0.models.ImportTemplate;
@@ -18911,10 +18689,8 @@ export type ItemFormOverlayForm = io.flow.v0.models.ItemFormOverlayForm;
18911
18689
  export type ItemIdentifier = io.flow.v0.enums.ItemIdentifier;
18912
18690
  export type ItemInserted = io.flow.v0.models.ItemInserted;
18913
18691
  export type ItemMargin = io.flow.v0.models.ItemMargin;
18914
- export type ItemMarginDeletedV2 = io.flow.v0.models.ItemMarginDeletedV2;
18915
18692
  export type ItemMarginPostForm = io.flow.v0.models.ItemMarginPostForm;
18916
18693
  export type ItemMarginPutForm = io.flow.v0.models.ItemMarginPutForm;
18917
- export type ItemMarginUpsertedV2 = io.flow.v0.models.ItemMarginUpsertedV2;
18918
18694
  export type ItemMarginVersion = io.flow.v0.models.ItemMarginVersion;
18919
18695
  export type ItemOriginDeleted = io.flow.v0.models.ItemOriginDeleted;
18920
18696
  export type ItemOriginUpserted = io.flow.v0.models.ItemOriginUpserted;
@@ -18922,8 +18698,6 @@ export type ItemPriceUpdateForm = io.flow.v0.models.ItemPriceUpdateForm;
18922
18698
  export type ItemPriceUpdatePutForm = io.flow.v0.models.ItemPriceUpdatePutForm;
18923
18699
  export type ItemQuerySuggestion = io.flow.v0.models.ItemQuerySuggestion;
18924
18700
  export type ItemReference = io.flow.v0.models.ItemReference;
18925
- export type ItemSalesMarginDeleted = io.flow.v0.models.ItemSalesMarginDeleted;
18926
- export type ItemSalesMarginUpserted = io.flow.v0.models.ItemSalesMarginUpserted;
18927
18701
  export type ItemShippingPricing = io.flow.v0.models.ItemShippingPricing;
18928
18702
  export type ItemStatistics = io.flow.v0.models.ItemStatistics;
18929
18703
  export type ItemUpdated = io.flow.v0.models.ItemUpdated;
@@ -18944,8 +18718,6 @@ export type KnowYourBusinessUsaForm = io.flow.v0.models.KnowYourBusinessUsaForm;
18944
18718
  export type KubeHealthcheck = io.flow.v0.models.KubeHealthcheck;
18945
18719
  export type LabelBase = io.flow.v0.models.LabelBase;
18946
18720
  export type LabelDeletedV2 = io.flow.v0.models.LabelDeletedV2;
18947
- export type LabelFormatDeleted = io.flow.v0.models.LabelFormatDeleted;
18948
- export type LabelFormatUpserted = io.flow.v0.models.LabelFormatUpserted;
18949
18721
  export type LabelOrderSummary = io.flow.v0.models.LabelOrderSummary;
18950
18722
  export type LabelProcessingModification =
18951
18723
  io.flow.v0.models.LabelProcessingModification;
@@ -18981,6 +18753,7 @@ export type LaneSummary = io.flow.v0.models.LaneSummary;
18981
18753
  export type Language = io.flow.v0.models.Language;
18982
18754
  export type LargePackageServiceFee = io.flow.v0.models.LargePackageServiceFee;
18983
18755
  export type LevyComponent = io.flow.v0.enums.LevyComponent;
18756
+ export type LevyInclusion = io.flow.v0.enums.LevyInclusion;
18984
18757
  export type LevyStrategy = io.flow.v0.enums.LevyStrategy;
18985
18758
  export type Line = io.flow.v0.models.Line;
18986
18759
  export type LineItem = io.flow.v0.models.LineItem;
@@ -19135,7 +18908,6 @@ export type OrderBuilderSelectionsForm =
19135
18908
  export type OrderChangeSource = io.flow.v0.enums.OrderChangeSource;
19136
18909
  export type OrderCustomer = io.flow.v0.models.OrderCustomer;
19137
18910
  export type OrderCustomerForm = io.flow.v0.models.OrderCustomerForm;
19138
- export type OrderDeleted = io.flow.v0.models.OrderDeleted;
19139
18911
  export type OrderDeletedV2 = io.flow.v0.models.OrderDeletedV2;
19140
18912
  export type OrderDestinationPutForm = io.flow.v0.models.OrderDestinationPutForm;
19141
18913
  export type OrderDetails = io.flow.v0.models.OrderDetails;
@@ -19148,14 +18920,10 @@ export type OrderForm = io.flow.v0.models.OrderForm;
19148
18920
  export type OrderFraudStatus = io.flow.v0.models.OrderFraudStatus;
19149
18921
  export type OrderGeo = io.flow.v0.models.OrderGeo;
19150
18922
  export type OrderIdentifier = io.flow.v0.models.OrderIdentifier;
19151
- export type OrderIdentifierDeleted = io.flow.v0.models.OrderIdentifierDeleted;
19152
18923
  export type OrderIdentifierDeletedV2 =
19153
18924
  io.flow.v0.models.OrderIdentifierDeletedV2;
19154
18925
  export type OrderIdentifierForm = io.flow.v0.models.OrderIdentifierForm;
19155
18926
  export type OrderIdentifierPutForm = io.flow.v0.models.OrderIdentifierPutForm;
19156
- export type OrderIdentifierUpserted = io.flow.v0.models.OrderIdentifierUpserted;
19157
- export type OrderIdentifierUpsertedV2 =
19158
- io.flow.v0.models.OrderIdentifierUpsertedV2;
19159
18927
  export type OrderIdentifierUpsertedV3 =
19160
18928
  io.flow.v0.models.OrderIdentifierUpsertedV3;
19161
18929
  export type OrderIdentifierVersion = io.flow.v0.models.OrderIdentifierVersion;
@@ -19211,16 +18979,11 @@ export type OrderRefundSummaryPartialForm =
19211
18979
  export type OrderRefundSummaryPartialIncludes =
19212
18980
  io.flow.v0.models.OrderRefundSummaryPartialIncludes;
19213
18981
  export type OrderReplacement = io.flow.v0.models.OrderReplacement;
19214
- export type OrderReplacementDeleted = io.flow.v0.models.OrderReplacementDeleted;
19215
18982
  export type OrderReplacementForm = io.flow.v0.models.OrderReplacementForm;
19216
- export type OrderReplacementUpserted =
19217
- io.flow.v0.models.OrderReplacementUpserted;
19218
18983
  export type OrderRuleReference = io.flow.v0.models.OrderRuleReference;
19219
18984
  export type OrderRulesSummary = io.flow.v0.models.OrderRulesSummary;
19220
18985
  export type OrderServiceChange = io.flow.v0.models.OrderServiceChange;
19221
18986
  export type OrderServiceChangeForm = io.flow.v0.models.OrderServiceChangeForm;
19222
- export type OrderServiceChangeRequest =
19223
- io.flow.v0.models.OrderServiceChangeRequest;
19224
18987
  export type OrderServiceChangeRequestData =
19225
18988
  io.flow.v0.models.OrderServiceChangeRequestData;
19226
18989
  export type OrderStatus = io.flow.v0.enums.OrderStatus;
@@ -19235,7 +18998,6 @@ export type OrderSummaryLevy = io.flow.v0.models.OrderSummaryLevy;
19235
18998
  export type OrderSummaryLineItem = io.flow.v0.models.OrderSummaryLineItem;
19236
18999
  export type OrderSummaryPriceDetail = io.flow.v0.models.OrderSummaryPriceDetail;
19237
19000
  export type OrderType = io.flow.v0.enums.OrderType;
19238
- export type OrderUpserted = io.flow.v0.models.OrderUpserted;
19239
19001
  export type OrderUpsertedV2 = io.flow.v0.models.OrderUpsertedV2;
19240
19002
  export type OrderVersion = io.flow.v0.models.OrderVersion;
19241
19003
  export type OrderWithDiscountsForm = io.flow.v0.models.OrderWithDiscountsForm;
@@ -19577,6 +19339,8 @@ export type PhysicalDeliverySpecialSerivce =
19577
19339
  io.flow.v0.enums.PhysicalDeliverySpecialSerivce;
19578
19340
  export type PostPaymentRedirectUrls = io.flow.v0.models.PostPaymentRedirectUrls;
19579
19341
  export type PostalType = io.flow.v0.enums.PostalType;
19342
+ export type PreferentialRateEligibility =
19343
+ io.flow.v0.enums.PreferentialRateEligibility;
19580
19344
  export type PreferredServiceSelectionStrategy =
19581
19345
  io.flow.v0.enums.PreferredServiceSelectionStrategy;
19582
19346
  export type Price = io.flow.v0.models.Price;
@@ -19612,10 +19376,8 @@ export type PriceSourceProvided = io.flow.v0.models.PriceSourceProvided;
19612
19376
  export type PriceWithBase = io.flow.v0.models.PriceWithBase;
19613
19377
  export type PriceWithBaseAndDetails = io.flow.v0.models.PriceWithBaseAndDetails;
19614
19378
  export type Pricing = io.flow.v0.models.Pricing;
19615
- export type PricingDeleted = io.flow.v0.models.PricingDeleted;
19616
19379
  export type PricingLevySetting = io.flow.v0.enums.PricingLevySetting;
19617
19380
  export type PricingSettings = io.flow.v0.models.PricingSettings;
19618
- export type PricingUpserted = io.flow.v0.models.PricingUpserted;
19619
19381
  export type PricingVersion = io.flow.v0.models.PricingVersion;
19620
19382
  export type ProcessingEstimate = io.flow.v0.models.ProcessingEstimate;
19621
19383
  export type Product = io.flow.v0.models.Product;
@@ -19628,6 +19390,8 @@ export type ProductRestrictionResultDeleted =
19628
19390
  export type ProductRestrictionResultUpserted =
19629
19391
  io.flow.v0.models.ProductRestrictionResultUpserted;
19630
19392
  export type ProductRestrictionRule = io.flow.v0.enums.ProductRestrictionRule;
19393
+ export type ProductSellability = io.flow.v0.models.ProductSellability;
19394
+ export type ProductSellabilityForm = io.flow.v0.models.ProductSellabilityForm;
19631
19395
  export type ProductTaxonomyCategory = io.flow.v0.models.ProductTaxonomyCategory;
19632
19396
  export type ProductTaxonomyData = io.flow.v0.models.ProductTaxonomyData;
19633
19397
  export type ProductUpdated = io.flow.v0.models.ProductUpdated;
@@ -19785,6 +19549,9 @@ export type Rounding = io.flow.v0.models.Rounding;
19785
19549
  export type RoundingMethod = io.flow.v0.enums.RoundingMethod;
19786
19550
  export type RoundingType = io.flow.v0.enums.RoundingType;
19787
19551
  export type RouteAudit = io.flow.v0.models.RouteAudit;
19552
+ export type RuleEffectType = io.flow.v0.enums.RuleEffectType;
19553
+ export type SarveshItemDeleted = io.flow.v0.models.SarveshItemDeleted;
19554
+ export type SarveshItemUpserted = io.flow.v0.models.SarveshItemUpserted;
19788
19555
  export type Schedule = io.flow.v0.models.Schedule;
19789
19556
  export type ScheduleExceptionStatus = io.flow.v0.enums.ScheduleExceptionStatus;
19790
19557
  export type ScheduledExport = io.flow.v0.models.ScheduledExport;
@@ -19796,6 +19563,13 @@ export type SecurityRatecardFee = io.flow.v0.models.SecurityRatecardFee;
19796
19563
  export type SecurityServiceFee = io.flow.v0.models.SecurityServiceFee;
19797
19564
  export type SelectIssuerOptionActionDetails =
19798
19565
  io.flow.v0.models.SelectIssuerOptionActionDetails;
19566
+ export type SellabilityError = io.flow.v0.models.SellabilityError;
19567
+ export type SellabilityErrorCode = io.flow.v0.enums.SellabilityErrorCode;
19568
+ export type SellabilityRequestStatus =
19569
+ io.flow.v0.enums.SellabilityRequestStatus;
19570
+ export type SellabilityResponse = io.flow.v0.unions.SellabilityResponse;
19571
+ export type SellablilityRegionResult =
19572
+ io.flow.v0.models.SellablilityRegionResult;
19799
19573
  export type ServiceDescription = io.flow.v0.unions.ServiceDescription;
19800
19574
  export type ServiceFee = io.flow.v0.unions.ServiceFee;
19801
19575
  export type ServiceReference = io.flow.v0.models.ServiceReference;
@@ -19973,6 +19747,7 @@ export type StatementDeleted = io.flow.v0.models.StatementDeleted;
19973
19747
  export type StatementUpserted = io.flow.v0.models.StatementUpserted;
19974
19748
  export type StoredMethodUsageStep = io.flow.v0.enums.StoredMethodUsageStep;
19975
19749
  export type Strategy = io.flow.v0.enums.Strategy;
19750
+ export type StreetAddress = io.flow.v0.models.StreetAddress;
19976
19751
  export type StripeAuthenticationData =
19977
19752
  io.flow.v0.models.StripeAuthenticationData;
19978
19753
  export type StripeAuthenticationDataForm =
@@ -20007,6 +19782,24 @@ export type SurchargeSetting = io.flow.v0.models.SurchargeSetting;
20007
19782
  export type SurchargeSettingDisplay = io.flow.v0.models.SurchargeSettingDisplay;
20008
19783
  export type Tax = io.flow.v0.models.Tax;
20009
19784
  export type TaxApplicability = io.flow.v0.enums.TaxApplicability;
19785
+ export type TaxDutyCalculatorValidationError =
19786
+ io.flow.v0.models.TaxDutyCalculatorValidationError;
19787
+ export type TaxDutyCalculatorValidationErrorCode =
19788
+ io.flow.v0.enums.TaxDutyCalculatorValidationErrorCode;
19789
+ export type TaxDutyQuote = io.flow.v0.models.TaxDutyQuote;
19790
+ export type TaxDutyQuoteFeeValue = io.flow.v0.models.TaxDutyQuoteFeeValue;
19791
+ export type TaxDutyQuoteForm = io.flow.v0.models.TaxDutyQuoteForm;
19792
+ export type TaxDutyQuoteLevyValue = io.flow.v0.unions.TaxDutyQuoteLevyValue;
19793
+ export type TaxDutyQuoteLineItem = io.flow.v0.models.TaxDutyQuoteLineItem;
19794
+ export type TaxDutyQuoteLineItemForm =
19795
+ io.flow.v0.models.TaxDutyQuoteLineItemForm;
19796
+ export type TaxDutyQuoteSimpleLevyValue =
19797
+ io.flow.v0.models.TaxDutyQuoteSimpleLevyValue;
19798
+ export type TaxDutyQuoteSimpleShipping =
19799
+ io.flow.v0.models.TaxDutyQuoteSimpleShipping;
19800
+ export type TaxDutyQuoteSimpleShippingForm =
19801
+ io.flow.v0.models.TaxDutyQuoteSimpleShippingForm;
19802
+ export type TaxDutyQuoteValues = io.flow.v0.models.TaxDutyQuoteValues;
20010
19803
  export type TaxDutyTransactionReasonCode =
20011
19804
  io.flow.v0.enums.TaxDutyTransactionReasonCode;
20012
19805
  export type TaxRegistration = io.flow.v0.models.TaxRegistration;
@@ -20200,4 +19993,5 @@ export type WithholdingDeduction = io.flow.v0.models.WithholdingDeduction;
20200
19993
  export type WithholdingDeductionType =
20201
19994
  io.flow.v0.enums.WithholdingDeductionType;
20202
19995
  export type ZeroAmountIndicator = io.flow.v0.enums.ZeroAmountIndicator;
19996
+ export type ZeroLevyReasonCode = io.flow.v0.enums.ZeroLevyReasonCode;
20203
19997
  export type Zone = io.flow.v0.models.Zone;