@flowio/api-prop-types 10.16.100 → 10.16.101

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.js CHANGED
@@ -1,26 +1,6 @@
1
1
  import PropTypes from 'prop-types';
2
2
  const T = {};
3
3
 
4
- T['io.flow.sellability.v0.enums.sellability_error_code'] = PropTypes.oneOf([
5
- 'insufficient_details',
6
- 'ineligible_category',
7
- 'wait_for_high_fidelity',
8
- 'external_service_unavailable',
9
- ]);
10
-
11
- T['io.flow.sellability.v0.models.sellability_error'] = PropTypes.exact({
12
- discriminator: PropTypes.oneOf(['sellability_error']).isRequired,
13
- code: T['io.flow.sellability.v0.enums.sellability_error_code'].isRequired,
14
- messages: PropTypes.arrayOf(PropTypes.string).isRequired,
15
- });
16
-
17
- T['io.flow.sellability.v0.enums.sellability_request_status'] = PropTypes.oneOf(['commit']);
18
-
19
- T['io.flow.sellability.v0.models.product_sellability_price'] = PropTypes.exact({
20
- currency: PropTypes.string.isRequired,
21
- amount: PropTypes.number.isRequired,
22
- });
23
-
24
4
  T['io.flow.query.builder.v0.models.query_builder_query_form'] = PropTypes.exact({
25
5
  discriminator: PropTypes.oneOf(['query']).isRequired,
26
6
  q: PropTypes.string.isRequired,
@@ -275,14 +255,6 @@ T['io.flow.catalog.v0.models.subcatalog_settings'] = PropTypes.exact({
275
255
  update_policy: T['io.flow.catalog.v0.enums.update_policy'].isRequired,
276
256
  });
277
257
 
278
- T['io.flow.currency.v0.models.rate'] = PropTypes.exact({
279
- id: PropTypes.string.isRequired,
280
- base: PropTypes.string.isRequired,
281
- target: PropTypes.string.isRequired,
282
- effective_at: PropTypes.string.isRequired,
283
- value: PropTypes.number.isRequired,
284
- });
285
-
286
258
  T['io.flow.common.v0.models.experience_summary'] = PropTypes.exact({
287
259
  id: PropTypes.string.isRequired,
288
260
  key: PropTypes.string.isRequired,
@@ -612,6 +584,14 @@ T['io.flow.organization.v0.models.country_picker'] = PropTypes.exact({
612
584
  source: T['io.flow.organization.v0.enums.country_picker_source'].isRequired,
613
585
  });
614
586
 
587
+ T['io.flow.currency.v0.models.rate'] = PropTypes.exact({
588
+ id: PropTypes.string.isRequired,
589
+ base: PropTypes.string.isRequired,
590
+ target: PropTypes.string.isRequired,
591
+ effective_at: PropTypes.string.isRequired,
592
+ value: PropTypes.number.isRequired,
593
+ });
594
+
615
595
  T['io.flow.tech.onboarding.playground.v0.enums.prateek_item_type'] = PropTypes.oneOf(['physical', 'digital']);
616
596
  T['io.flow.apple.pay.v0.enums.apple_pay_line_item_type'] = PropTypes.oneOf(['final', 'pending']);
617
597
 
@@ -881,13 +861,6 @@ T['io.flow.fulfillment.v0.models.shipping_configuration_item_availability'] = Pr
881
861
 
882
862
  T['io.flow.common.v0.enums.change_type'] = PropTypes.oneOf(['insert', 'update', 'delete']);
883
863
 
884
- T['io.flow.currency.v0.models.rate_version'] = PropTypes.exact({
885
- id: PropTypes.string.isRequired,
886
- timestamp: PropTypes.string.isRequired,
887
- type: T['io.flow.common.v0.enums.change_type'].isRequired,
888
- rate: T['io.flow.currency.v0.models.rate'].isRequired,
889
- });
890
-
891
864
  T['io.flow.inventory.v0.models.inventory_update_version'] = PropTypes.exact({
892
865
  id: PropTypes.string.isRequired,
893
866
  timestamp: PropTypes.string.isRequired,
@@ -930,6 +903,13 @@ T['io.flow.catalog.v0.models.attribute_version'] = PropTypes.exact({
930
903
  attribute: T['io.flow.catalog.v0.models.attribute'].isRequired,
931
904
  });
932
905
 
906
+ T['io.flow.currency.v0.models.rate_version'] = PropTypes.exact({
907
+ id: PropTypes.string.isRequired,
908
+ timestamp: PropTypes.string.isRequired,
909
+ type: T['io.flow.common.v0.enums.change_type'].isRequired,
910
+ rate: T['io.flow.currency.v0.models.rate'].isRequired,
911
+ });
912
+
933
913
  T['io.flow.fulfillment.v0.models.tier_version'] = PropTypes.exact({
934
914
  id: PropTypes.string.isRequired,
935
915
  timestamp: PropTypes.string.isRequired,
@@ -2698,23 +2678,13 @@ T['io.flow.product.v0.models.product_taxonomy_category'] = PropTypes.exact({
2698
2678
  full_name: PropTypes.string.isRequired,
2699
2679
  });
2700
2680
 
2701
- T['io.flow.sellability.v0.models.product_sellability_form'] = PropTypes.exact({
2702
- shop_id: PropTypes.string.isRequired,
2703
- product_id: PropTypes.string,
2704
- name: PropTypes.string.isRequired,
2705
- price: T['io.flow.sellability.v0.models.product_sellability_price'].isRequired,
2706
- description: PropTypes.string.isRequired,
2707
- taxonomy_category: T['io.flow.product.v0.models.product_taxonomy_category'].isRequired,
2708
- status: T['io.flow.sellability.v0.enums.sellability_request_status'],
2709
- dry_run: PropTypes.bool,
2710
- });
2711
-
2712
2681
  T['io.flow.product.v0.models.product'] = PropTypes.exact({
2713
2682
  organization_id: PropTypes.string.isRequired,
2714
2683
  number: PropTypes.string.isRequired,
2715
2684
  taxonomy_category: T['io.flow.product.v0.models.product_taxonomy_category'],
2716
2685
  taxonomy_data: PropTypes.arrayOf(T['io.flow.product.v0.models.product_taxonomy_data']),
2717
2686
  item_numbers: PropTypes.arrayOf(PropTypes.string).isRequired,
2687
+ highest_value_item_number: PropTypes.string,
2718
2688
  updated_at: PropTypes.string.isRequired,
2719
2689
  deleted_at: PropTypes.string,
2720
2690
  });
@@ -5275,38 +5245,6 @@ T['io.flow.v0.models.shipping_configuration_deleted'] = PropTypes.exact({
5275
5245
  id: PropTypes.string.isRequired,
5276
5246
  });
5277
5247
 
5278
- T['io.flow.v0.models.pricing_upserted'] = PropTypes.exact({
5279
- discriminator: PropTypes.oneOf(['pricing_upserted']).isRequired,
5280
- event_id: PropTypes.string.isRequired,
5281
- timestamp: PropTypes.string.isRequired,
5282
- organization: PropTypes.string.isRequired,
5283
- experience_key: PropTypes.string.isRequired,
5284
- vat: PropTypes.string.isRequired,
5285
- duty: PropTypes.string.isRequired,
5286
- rounding_type: PropTypes.string,
5287
- rounding_method: PropTypes.string,
5288
- rounding_value: PropTypes.number,
5289
- });
5290
-
5291
- T['io.flow.v0.models.pricing_deleted'] = PropTypes.exact({
5292
- discriminator: PropTypes.oneOf(['pricing_deleted']).isRequired,
5293
- event_id: PropTypes.string.isRequired,
5294
- timestamp: PropTypes.string.isRequired,
5295
- organization: PropTypes.string.isRequired,
5296
- experience_key: PropTypes.string.isRequired,
5297
- });
5298
-
5299
- T['io.flow.v0.models.order_identifier_upserted_v2'] = PropTypes.exact({
5300
- discriminator: PropTypes.oneOf(['order_identifier_upserted_v2']).isRequired,
5301
- event_id: PropTypes.string.isRequired,
5302
- timestamp: PropTypes.string.isRequired,
5303
- organization: PropTypes.string.isRequired,
5304
- id: PropTypes.string.isRequired,
5305
- order_number: PropTypes.string.isRequired,
5306
- identifier: PropTypes.string.isRequired,
5307
- primary: PropTypes.bool.isRequired,
5308
- });
5309
-
5310
5248
  T['io.flow.v0.models.order_identifier_deleted_v2'] = PropTypes.exact({
5311
5249
  discriminator: PropTypes.oneOf(['order_identifier_deleted_v2']).isRequired,
5312
5250
  event_id: PropTypes.string.isRequired,
@@ -5315,114 +5253,6 @@ T['io.flow.v0.models.order_identifier_deleted_v2'] = PropTypes.exact({
5315
5253
  id: PropTypes.string.isRequired,
5316
5254
  });
5317
5255
 
5318
- T['io.flow.v0.models.order_identifier_upserted'] = PropTypes.exact({
5319
- discriminator: PropTypes.oneOf(['order_identifier_upserted']).isRequired,
5320
- event_id: PropTypes.string.isRequired,
5321
- timestamp: PropTypes.string.isRequired,
5322
- id: PropTypes.string.isRequired,
5323
- organization: PropTypes.string.isRequired,
5324
- number: PropTypes.string.isRequired,
5325
- order_number: PropTypes.string.isRequired,
5326
- });
5327
-
5328
- T['io.flow.v0.models.order_identifier_deleted'] = PropTypes.exact({
5329
- discriminator: PropTypes.oneOf(['order_identifier_deleted']).isRequired,
5330
- event_id: PropTypes.string.isRequired,
5331
- timestamp: PropTypes.string.isRequired,
5332
- id: PropTypes.string.isRequired,
5333
- });
5334
-
5335
- T['io.flow.v0.models.order_deleted'] = PropTypes.exact({
5336
- discriminator: PropTypes.oneOf(['order_deleted']).isRequired,
5337
- event_id: PropTypes.string.isRequired,
5338
- timestamp: PropTypes.string.isRequired,
5339
- organization: PropTypes.string.isRequired,
5340
- number: PropTypes.string.isRequired,
5341
- });
5342
-
5343
- T['io.flow.v0.models.label_format_upserted'] = PropTypes.exact({
5344
- discriminator: PropTypes.oneOf(['label_format_upserted']).isRequired,
5345
- event_id: PropTypes.string.isRequired,
5346
- timestamp: PropTypes.string.isRequired,
5347
- organization: PropTypes.string.isRequired,
5348
- experience_key: PropTypes.string.isRequired,
5349
- format: PropTypes.string.isRequired,
5350
- });
5351
-
5352
- T['io.flow.v0.models.label_format_deleted'] = PropTypes.exact({
5353
- discriminator: PropTypes.oneOf(['label_format_deleted']).isRequired,
5354
- event_id: PropTypes.string.isRequired,
5355
- timestamp: PropTypes.string.isRequired,
5356
- organization: PropTypes.string.isRequired,
5357
- experience_key: PropTypes.string.isRequired,
5358
- });
5359
-
5360
- T['io.flow.v0.models.item_sales_margin_upserted'] = PropTypes.exact({
5361
- discriminator: PropTypes.oneOf(['item_sales_margin_upserted']).isRequired,
5362
- event_id: PropTypes.string.isRequired,
5363
- timestamp: PropTypes.string.isRequired,
5364
- item_sales_margin_id: PropTypes.string.isRequired,
5365
- organization_id: PropTypes.string.isRequired,
5366
- experience_key: PropTypes.string.isRequired,
5367
- name: PropTypes.string.isRequired,
5368
- q: PropTypes.string.isRequired,
5369
- fixed: PropTypes.number.isRequired,
5370
- percent: PropTypes.number.isRequired,
5371
- position: PropTypes.number.isRequired,
5372
- });
5373
-
5374
- T['io.flow.v0.models.item_sales_margin_deleted'] = PropTypes.exact({
5375
- discriminator: PropTypes.oneOf(['item_sales_margin_deleted']).isRequired,
5376
- event_id: PropTypes.string.isRequired,
5377
- timestamp: PropTypes.string.isRequired,
5378
- item_sales_margin_id: PropTypes.string.isRequired,
5379
- organization_id: PropTypes.string.isRequired,
5380
- experience_key: PropTypes.string.isRequired,
5381
- });
5382
-
5383
- T['io.flow.v0.models.experience_price_book_mapping_deleted'] = PropTypes.exact({
5384
- discriminator: PropTypes.oneOf(['experience_price_book_mapping_deleted']).isRequired,
5385
- event_id: PropTypes.string.isRequired,
5386
- timestamp: PropTypes.string.isRequired,
5387
- organization: PropTypes.string.isRequired,
5388
- id: PropTypes.string.isRequired,
5389
- });
5390
-
5391
- T['io.flow.v0.models.experience_upserted'] = PropTypes.exact({
5392
- discriminator: PropTypes.oneOf(['experience_upserted']).isRequired,
5393
- event_id: PropTypes.string.isRequired,
5394
- timestamp: PropTypes.string.isRequired,
5395
- organization: PropTypes.string.isRequired,
5396
- key: PropTypes.string.isRequired,
5397
- name: PropTypes.string.isRequired,
5398
- delivered_duty: PropTypes.string.isRequired,
5399
- subcatalog_id: PropTypes.string.isRequired,
5400
- region_id: PropTypes.string.isRequired,
5401
- country: PropTypes.string.isRequired,
5402
- currency: PropTypes.string.isRequired,
5403
- language: PropTypes.string.isRequired,
5404
- measurement_system: PropTypes.string.isRequired,
5405
- position: PropTypes.number.isRequired,
5406
- status: PropTypes.string,
5407
- });
5408
-
5409
- T['io.flow.v0.models.experience_deleted'] = PropTypes.exact({
5410
- discriminator: PropTypes.oneOf(['experience_deleted']).isRequired,
5411
- event_id: PropTypes.string.isRequired,
5412
- timestamp: PropTypes.string.isRequired,
5413
- organization: PropTypes.string.isRequired,
5414
- key: PropTypes.string.isRequired,
5415
- subcatalog_id: PropTypes.string.isRequired,
5416
- });
5417
-
5418
- T['io.flow.v0.models.currency_format_deleted'] = PropTypes.exact({
5419
- discriminator: PropTypes.oneOf(['currency_format_deleted']).isRequired,
5420
- event_id: PropTypes.string.isRequired,
5421
- timestamp: PropTypes.string.isRequired,
5422
- organization: PropTypes.string.isRequired,
5423
- id: PropTypes.string.isRequired,
5424
- });
5425
-
5426
5256
  T['io.flow.v0.models.allocation_deleted_v2'] = PropTypes.exact({
5427
5257
  discriminator: PropTypes.oneOf(['allocation_deleted_v2']).isRequired,
5428
5258
  event_id: PropTypes.string.isRequired,
@@ -5431,23 +5261,6 @@ T['io.flow.v0.models.allocation_deleted_v2'] = PropTypes.exact({
5431
5261
  id: PropTypes.string.isRequired,
5432
5262
  });
5433
5263
 
5434
- T['io.flow.v0.models.available_promotions_deleted'] = PropTypes.exact({
5435
- discriminator: PropTypes.oneOf(['available_promotions_deleted']).isRequired,
5436
- event_id: PropTypes.string.isRequired,
5437
- timestamp: PropTypes.string.isRequired,
5438
- organization: PropTypes.string.isRequired,
5439
- experience_key: PropTypes.string.isRequired,
5440
- });
5441
-
5442
- T['io.flow.v0.models.available_promotions_upserted'] = PropTypes.exact({
5443
- discriminator: PropTypes.oneOf(['available_promotions_upserted']).isRequired,
5444
- event_id: PropTypes.string.isRequired,
5445
- timestamp: PropTypes.string.isRequired,
5446
- organization: PropTypes.string.isRequired,
5447
- experience_key: PropTypes.string.isRequired,
5448
- available_promotions: PropTypes.arrayOf(PropTypes.object).isRequired,
5449
- });
5450
-
5451
5264
  T['io.flow.v0.models.rate_upserted'] = PropTypes.exact({
5452
5265
  discriminator: PropTypes.oneOf(['rate_upserted']).isRequired,
5453
5266
  event_id: PropTypes.string.isRequired,
@@ -5656,6 +5469,20 @@ T['io.flow.v0.models.niall_item_deleted'] = PropTypes.exact({
5656
5469
  id: PropTypes.string.isRequired,
5657
5470
  });
5658
5471
 
5472
+ T['io.flow.v0.models.hosein_item_deleted'] = PropTypes.exact({
5473
+ discriminator: PropTypes.oneOf(['hosein_item_deleted']).isRequired,
5474
+ event_id: PropTypes.string.isRequired,
5475
+ timestamp: PropTypes.string.isRequired,
5476
+ id: PropTypes.string.isRequired,
5477
+ });
5478
+
5479
+ T['io.flow.v0.models.sarvesh_item_deleted'] = PropTypes.exact({
5480
+ discriminator: PropTypes.oneOf(['sarvesh_item_deleted']).isRequired,
5481
+ event_id: PropTypes.string.isRequired,
5482
+ timestamp: PropTypes.string.isRequired,
5483
+ id: PropTypes.string.isRequired,
5484
+ });
5485
+
5659
5486
  T['io.flow.v0.models.generate_load'] = PropTypes.exact({
5660
5487
  discriminator: PropTypes.oneOf(['generate_load']).isRequired,
5661
5488
  event_id: PropTypes.string.isRequired,
@@ -5958,6 +5785,105 @@ T['io.flow.v0.models.repeat_hourly'] = PropTypes.exact({
5958
5785
  interval: PropTypes.number.isRequired,
5959
5786
  });
5960
5787
 
5788
+ T['io.flow.v0.enums.zero_levy_reason_code'] = PropTypes.oneOf([
5789
+ 'zero_basis',
5790
+ 'zero_rate_on_goods',
5791
+ 'value_rounds_to_zero',
5792
+ 'order_below_de_minimis_threshold',
5793
+ 'amount_below_de_minimis_threshold',
5794
+ 'delivered_unpaid',
5795
+ 'duty_free_domestic',
5796
+ 'duty_free_intra_community',
5797
+ 'duty_free_reimport',
5798
+ 'duty_free_by_trade_agreement',
5799
+ ]);
5800
+
5801
+ T['io.flow.v0.enums.preferential_rate_eligibility'] = PropTypes.oneOf(['baby_clothing', 'kids_clothing']);
5802
+ T['io.flow.v0.enums.levy_inclusion'] = PropTypes.oneOf(['tax', 'duty']);
5803
+
5804
+ T['io.flow.v0.models.tax_duty_quote_fee_value'] = PropTypes.exact({
5805
+ amount: PropTypes.number.isRequired,
5806
+ description: PropTypes.string.isRequired,
5807
+ amount_refundable_on_return: PropTypes.number.isRequired,
5808
+ });
5809
+
5810
+ T['io.flow.v0.models.tax_duty_quote_simple_levy_value'] = PropTypes.exact({
5811
+ discriminator: PropTypes.oneOf(['tax_duty_quote_simple_levy_value']).isRequired,
5812
+ amount: PropTypes.number.isRequired,
5813
+ rate: PropTypes.number.isRequired,
5814
+ description: PropTypes.string.isRequired,
5815
+ zero_levy_reason: PropTypes.arrayOf(T['io.flow.v0.enums.zero_levy_reason_code']),
5816
+ amount_refundable_on_return: PropTypes.number.isRequired,
5817
+ });
5818
+
5819
+ T['io.flow.v0.unions.tax_duty_quote_levy_value'] = PropTypes.oneOfType([T['io.flow.v0.models.tax_duty_quote_simple_levy_value']]);
5820
+
5821
+ T['io.flow.v0.models.tax_duty_quote_values'] = PropTypes.exact({
5822
+ price: PropTypes.number.isRequired,
5823
+ duty: T['io.flow.v0.models.tax_duty_quote_simple_levy_value'].isRequired,
5824
+ tax: T['io.flow.v0.models.tax_duty_quote_simple_levy_value'].isRequired,
5825
+ fees: T['io.flow.v0.models.tax_duty_quote_fee_value'].isRequired,
5826
+ total: PropTypes.number.isRequired,
5827
+ });
5828
+
5829
+ T['io.flow.v0.models.street_address'] = PropTypes.exact({
5830
+ streets: PropTypes.arrayOf(PropTypes.string),
5831
+ city: PropTypes.string,
5832
+ province: PropTypes.string,
5833
+ postal: PropTypes.string,
5834
+ country: PropTypes.string,
5835
+ });
5836
+
5837
+ T['io.flow.v0.models.tax_duty_quote_simple_shipping_form'] = PropTypes.exact({
5838
+ price: PropTypes.number.isRequired,
5839
+ includes: PropTypes.arrayOf(T['io.flow.v0.enums.levy_inclusion']).isRequired,
5840
+ ship_from: T['io.flow.v0.models.street_address'],
5841
+ });
5842
+
5843
+ T['io.flow.v0.models.tax_duty_quote_simple_shipping'] = PropTypes.exact({
5844
+ values: T['io.flow.v0.models.tax_duty_quote_values'].isRequired,
5845
+ ship_from: T['io.flow.v0.models.street_address'].isRequired,
5846
+ });
5847
+
5848
+ T['io.flow.v0.models.tax_duty_quote_line_item'] = PropTypes.exact({
5849
+ primary_identifier: PropTypes.string.isRequired,
5850
+ attributes: PropTypes.objectOf(PropTypes.string),
5851
+ ship_from: T['io.flow.v0.models.street_address'].isRequired,
5852
+ quantity: PropTypes.number.isRequired,
5853
+ unit_values: T['io.flow.v0.models.tax_duty_quote_values'].isRequired,
5854
+ country_of_origin: PropTypes.string.isRequired,
5855
+ hs_code: PropTypes.string.isRequired,
5856
+ });
5857
+
5858
+ T['io.flow.v0.enums.tax_duty_calculator_validation_error_code'] = PropTypes.oneOf([
5859
+ 'generic_error',
5860
+ 'destination_country_not_defined',
5861
+ 'destination_address_iso3166_unrecognized',
5862
+ 'line_item_shipfrom_shipto_country_invalid',
5863
+ 'line_item_ship_from_invalid',
5864
+ 'line_item_currency_iso4217_unrecognized',
5865
+ 'line_quantity_invalid',
5866
+ 'line_item_quantity_invalid',
5867
+ 'line_item_unit_price_precision_invalid',
5868
+ 'line_item_unit_price_negative',
5869
+ 'line_item_discount_amount_precision_invalid',
5870
+ 'line_item_discount_amount_positive',
5871
+ 'line_item_country_of_origin_iso3166_unrecognized',
5872
+ 'line_item_hs_code_invalid',
5873
+ 'line_item_duty_provider_invalid',
5874
+ 'shipping_unit_price_precision_invalid',
5875
+ 'shipping_unit_price_negative',
5876
+ 'shipping_discount_amount_precision_invalid',
5877
+ 'shipping_discount_amount_invalid',
5878
+ 'merchant_of_record_invalid',
5879
+ 'wrong_unit_specified',
5880
+ ]);
5881
+
5882
+ T['io.flow.v0.models.tax_duty_calculator_validation_error'] = PropTypes.exact({
5883
+ code: T['io.flow.v0.enums.tax_duty_calculator_validation_error_code'].isRequired,
5884
+ messages: PropTypes.arrayOf(PropTypes.string).isRequired,
5885
+ });
5886
+
5961
5887
  T['io.flow.v0.enums.surcharge_responsible_party'] = PropTypes.oneOf(['organization', 'customer']);
5962
5888
 
5963
5889
  T['io.flow.v0.models.surcharge_responsible_party_display'] = PropTypes.exact({
@@ -6208,6 +6134,20 @@ T['io.flow.v0.enums.onboarding_blocked_reason'] = PropTypes.oneOf([
6208
6134
  'missing_logistics_contact_info',
6209
6135
  ]);
6210
6136
 
6137
+ T['io.flow.v0.enums.sellability_error_code'] = PropTypes.oneOf([
6138
+ 'insufficient_details',
6139
+ 'ineligible_category',
6140
+ 'wait_for_high_fidelity',
6141
+ 'external_service_unavailable',
6142
+ ]);
6143
+
6144
+ T['io.flow.v0.models.sellability_error'] = PropTypes.exact({
6145
+ discriminator: PropTypes.oneOf(['sellability_error']).isRequired,
6146
+ code: T['io.flow.v0.enums.sellability_error_code'].isRequired,
6147
+ messages: PropTypes.arrayOf(PropTypes.string).isRequired,
6148
+ });
6149
+
6150
+ T['io.flow.tech.onboarding.playground.v0.enums.sarvesh_item_type'] = PropTypes.oneOf(['physical', 'digital']);
6211
6151
  T['io.flow.tech.onboarding.playground.v0.enums.rohan_item_type'] = PropTypes.oneOf(['physical', 'digital']);
6212
6152
  T['io.flow.v0.enums.return_policy_state'] = PropTypes.oneOf(['current', 'deleting', 'updating']);
6213
6153
 
@@ -6419,7 +6359,8 @@ T['io.flow.v0.models.query_filter_structured'] = PropTypes.exact({
6419
6359
  values: PropTypes.arrayOf(PropTypes.string).isRequired,
6420
6360
  });
6421
6361
 
6422
- T['io.flow.sellability.v0.enums.rule_effect_type'] = PropTypes.oneOf(['market', 'dhl', 'dhl_ecommerce', 'ups']);
6362
+ T['io.flow.v0.enums.sellability_request_status'] = PropTypes.oneOf(['commit']);
6363
+ T['io.flow.v0.enums.rule_effect_type'] = PropTypes.oneOf(['market', 'dhl', 'dhl_ecommerce', 'ups']);
6423
6364
  T['io.flow.v0.enums.restricted_review_status'] = PropTypes.oneOf(['in_review', 'reviewed']);
6424
6365
 
6425
6366
  T['io.flow.v0.models.product_taxonomy_data'] = PropTypes.exact({
@@ -6438,6 +6379,7 @@ T['io.flow.v0.models.product'] = PropTypes.exact({
6438
6379
  taxonomy_category: T['io.flow.v0.models.product_taxonomy_category'],
6439
6380
  taxonomy_data: PropTypes.arrayOf(T['io.flow.v0.models.product_taxonomy_data']),
6440
6381
  item_numbers: PropTypes.arrayOf(PropTypes.string).isRequired,
6382
+ highest_value_item_number: PropTypes.string,
6441
6383
  updated_at: PropTypes.string.isRequired,
6442
6384
  deleted_at: PropTypes.string,
6443
6385
  });
@@ -7033,21 +6975,6 @@ T['io.flow.v0.models.session_visitor'] = PropTypes.exact({
7033
6975
  });
7034
6976
 
7035
6977
  T['io.flow.v0.enums.organization_type'] = PropTypes.oneOf(['standalone', 'channel']);
7036
-
7037
- T['io.flow.v0.models.order_service_change_request_data'] = PropTypes.exact({
7038
- id: PropTypes.string.isRequired,
7039
- source_url: PropTypes.string.isRequired,
7040
- filename: PropTypes.string,
7041
- });
7042
-
7043
- T['io.flow.v0.models.order_service_change_request'] = PropTypes.exact({
7044
- discriminator: PropTypes.oneOf(['order_service_change_request']).isRequired,
7045
- event_id: PropTypes.string.isRequired,
7046
- timestamp: PropTypes.string.isRequired,
7047
- organization: PropTypes.string.isRequired,
7048
- request: T['io.flow.v0.models.order_service_change_request_data'].isRequired,
7049
- });
7050
-
7051
6978
  T['io.flow.v0.enums.order_refund_summary_partial_charged'] = PropTypes.oneOf(['per_item', 'for_order', 'by_value_percentage', 'by_quantity_percentage']);
7052
6979
 
7053
6980
  T['io.flow.v0.models.order_refund_summary_item'] = PropTypes.exact({
@@ -7820,6 +7747,8 @@ T['io.flow.v0.models.import_form'] = PropTypes.exact({
7820
7747
  emails: PropTypes.arrayOf(PropTypes.string),
7821
7748
  });
7822
7749
 
7750
+ T['io.flow.tech.onboarding.playground.v0.enums.hosein_item_type'] = PropTypes.oneOf(['physical', 'digital']);
7751
+
7823
7752
  T['io.flow.v0.models.return_package_ratecard_fee'] = PropTypes.exact({
7824
7753
  discriminator: PropTypes.oneOf(['return_package_ratecard_fee']).isRequired,
7825
7754
  amount: PropTypes.number.isRequired,
@@ -7880,23 +7809,23 @@ T['io.flow.v0.models.harmonization_document'] = PropTypes.exact({
7880
7809
  origin: PropTypes.string,
7881
7810
  });
7882
7811
 
7883
- T['io.flow.sellability.v0.models.sellablility_region_result'] = PropTypes.exact({
7884
- type: T['io.flow.sellability.v0.enums.rule_effect_type'].isRequired,
7812
+ T['io.flow.v0.models.sellablility_region_result'] = PropTypes.exact({
7813
+ type: T['io.flow.v0.enums.rule_effect_type'].isRequired,
7885
7814
  regions: PropTypes.arrayOf(PropTypes.string).isRequired,
7886
7815
  });
7887
7816
 
7888
- T['io.flow.sellability.v0.models.product_sellability'] = PropTypes.exact({
7817
+ T['io.flow.v0.models.product_sellability'] = PropTypes.exact({
7889
7818
  discriminator: PropTypes.oneOf(['product_sellability']).isRequired,
7890
7819
  shop_id: PropTypes.string.isRequired,
7891
7820
  product_id: PropTypes.string,
7892
7821
  request_id: PropTypes.string.isRequired,
7893
7822
  hs6_code: PropTypes.string.isRequired,
7894
- restricted_regions: PropTypes.arrayOf(T['io.flow.sellability.v0.models.sellablility_region_result']).isRequired,
7823
+ restricted_regions: PropTypes.arrayOf(T['io.flow.v0.models.sellablility_region_result']).isRequired,
7895
7824
  });
7896
7825
 
7897
- T['io.flow.sellability.v0.unions.sellability_response'] = PropTypes.oneOfType([
7898
- T['io.flow.sellability.v0.models.product_sellability'],
7899
- T['io.flow.sellability.v0.models.sellability_error'],
7826
+ T['io.flow.v0.unions.sellability_response'] = PropTypes.oneOfType([
7827
+ T['io.flow.v0.models.product_sellability'],
7828
+ T['io.flow.v0.models.sellability_error'],
7900
7829
  ]);
7901
7830
 
7902
7831
  T['io.flow.v0.enums.product_restriction_rule'] = PropTypes.oneOf([
@@ -7925,9 +7854,11 @@ T['io.flow.v0.enums.product_restriction_rule'] = PropTypes.oneOf([
7925
7854
  'Knives',
7926
7855
  'Liquids',
7927
7856
  'Oversized',
7857
+ 'Pending Classification',
7928
7858
  'Restrict by Default',
7929
7859
  'Supplements',
7930
7860
  'Tattoo Ink And PMU',
7861
+ 'Unknown Bundles',
7931
7862
  'Weapon',
7932
7863
  'Wood',
7933
7864
  ]);
@@ -7952,7 +7883,7 @@ T['io.flow.v0.models.product_restriction_result'] = PropTypes.exact({
7952
7883
  updated_by: PropTypes.string,
7953
7884
  product_restriction_id: PropTypes.string,
7954
7885
  hs_code: PropTypes.string,
7955
- restricted_regions_by_type: PropTypes.arrayOf(T['io.flow.sellability.v0.models.sellablility_region_result']),
7886
+ restricted_regions_by_type: PropTypes.arrayOf(T['io.flow.v0.models.sellablility_region_result']),
7956
7887
  });
7957
7888
 
7958
7889
  T['io.flow.v0.models.product_restriction_result_upserted'] = PropTypes.exact({
@@ -8315,22 +8246,6 @@ T['io.flow.v0.models.import'] = PropTypes.exact({
8315
8246
  deliveries: PropTypes.arrayOf(T['io.flow.v0.unions.export_delivery']).isRequired,
8316
8247
  });
8317
8248
 
8318
- T['io.flow.v0.models.import_failed_v2'] = PropTypes.exact({
8319
- discriminator: PropTypes.oneOf(['import_failed_v2']).isRequired,
8320
- event_id: PropTypes.string.isRequired,
8321
- timestamp: PropTypes.string.isRequired,
8322
- organization: PropTypes.string.isRequired,
8323
- 'import': T['io.flow.v0.models.import'].isRequired,
8324
- });
8325
-
8326
- T['io.flow.v0.models.import_completed_v2'] = PropTypes.exact({
8327
- discriminator: PropTypes.oneOf(['import_completed_v2']).isRequired,
8328
- event_id: PropTypes.string.isRequired,
8329
- timestamp: PropTypes.string.isRequired,
8330
- organization: PropTypes.string.isRequired,
8331
- 'import': T['io.flow.v0.models.import'].isRequired,
8332
- });
8333
-
8334
8249
  T['io.flow.v0.enums.pricing_levy_setting'] = PropTypes.oneOf(['included', 'displayed', 'ignored']);
8335
8250
 
8336
8251
  T['io.flow.v0.models.pricing'] = PropTypes.exact({
@@ -8919,17 +8834,6 @@ T['io.flow.v0.models.experience_currency_format'] = PropTypes.exact({
8919
8834
  label_formatters: PropTypes.arrayOf(T['io.flow.v0.enums.currency_label_formatter']).isRequired,
8920
8835
  });
8921
8836
 
8922
- T['io.flow.v0.models.currency_format_upserted'] = PropTypes.exact({
8923
- discriminator: PropTypes.oneOf(['currency_format_upserted']).isRequired,
8924
- event_id: PropTypes.string.isRequired,
8925
- timestamp: PropTypes.string.isRequired,
8926
- organization: PropTypes.string.isRequired,
8927
- id: PropTypes.string.isRequired,
8928
- experience_key: PropTypes.string.isRequired,
8929
- symbol: T['io.flow.v0.enums.currency_symbol_format'].isRequired,
8930
- label_formatters: PropTypes.arrayOf(T['io.flow.v0.enums.currency_label_formatter']).isRequired,
8931
- });
8932
-
8933
8837
  T['io.flow.v0.models.currency_format'] = PropTypes.exact({
8934
8838
  symbol: T['io.flow.v0.enums.currency_symbol_format'].isRequired,
8935
8839
  label_formatters: PropTypes.arrayOf(T['io.flow.v0.enums.currency_label_formatter']).isRequired,
@@ -9094,22 +8998,6 @@ T['io.flow.v0.models.country_status'] = PropTypes.exact({
9094
8998
  status: T['io.flow.v0.enums.experience_country_status'].isRequired,
9095
8999
  });
9096
9000
 
9097
- T['io.flow.v0.models.country_status_upserted'] = PropTypes.exact({
9098
- discriminator: PropTypes.oneOf(['country_status_upserted']).isRequired,
9099
- event_id: PropTypes.string.isRequired,
9100
- timestamp: PropTypes.string.isRequired,
9101
- organization: PropTypes.string.isRequired,
9102
- country_status: T['io.flow.v0.models.country_status'].isRequired,
9103
- });
9104
-
9105
- T['io.flow.v0.models.country_status_deleted'] = PropTypes.exact({
9106
- discriminator: PropTypes.oneOf(['country_status_deleted']).isRequired,
9107
- event_id: PropTypes.string.isRequired,
9108
- timestamp: PropTypes.string.isRequired,
9109
- organization: PropTypes.string.isRequired,
9110
- country_status: T['io.flow.v0.models.country_status'].isRequired,
9111
- });
9112
-
9113
9001
  T['io.flow.v0.enums.country_picker_source'] = PropTypes.oneOf(['experience', 'destination']);
9114
9002
 
9115
9003
  T['io.flow.v0.models.country_picker_form'] = PropTypes.exact({
@@ -9357,22 +9245,6 @@ T['io.flow.v0.models.item_margin'] = PropTypes.exact({
9357
9245
  experience: T['io.flow.v0.models.experience_reference'],
9358
9246
  });
9359
9247
 
9360
- T['io.flow.v0.models.item_margin_upserted_v2'] = PropTypes.exact({
9361
- discriminator: PropTypes.oneOf(['item_margin_upserted_v2']).isRequired,
9362
- event_id: PropTypes.string.isRequired,
9363
- timestamp: PropTypes.string.isRequired,
9364
- organization: PropTypes.string.isRequired,
9365
- item_margin: T['io.flow.v0.models.item_margin'].isRequired,
9366
- });
9367
-
9368
- T['io.flow.v0.models.item_margin_deleted_v2'] = PropTypes.exact({
9369
- discriminator: PropTypes.oneOf(['item_margin_deleted_v2']).isRequired,
9370
- event_id: PropTypes.string.isRequired,
9371
- timestamp: PropTypes.string.isRequired,
9372
- organization: PropTypes.string.isRequired,
9373
- item_margin: T['io.flow.v0.models.item_margin'].isRequired,
9374
- });
9375
-
9376
9248
  T['io.flow.v0.models.experience_price_book_mapping'] = PropTypes.exact({
9377
9249
  id: PropTypes.string.isRequired,
9378
9250
  experience: T['io.flow.v0.models.experience_reference'].isRequired,
@@ -9380,14 +9252,6 @@ T['io.flow.v0.models.experience_price_book_mapping'] = PropTypes.exact({
9380
9252
  position: PropTypes.number.isRequired,
9381
9253
  });
9382
9254
 
9383
- T['io.flow.v0.models.experience_price_book_mapping_upserted'] = PropTypes.exact({
9384
- discriminator: PropTypes.oneOf(['experience_price_book_mapping_upserted']).isRequired,
9385
- event_id: PropTypes.string.isRequired,
9386
- timestamp: PropTypes.string.isRequired,
9387
- organization: PropTypes.string.isRequired,
9388
- experience_price_book_mapping: T['io.flow.v0.models.experience_price_book_mapping'].isRequired,
9389
- });
9390
-
9391
9255
  T['io.flow.v0.models.experience_clone'] = PropTypes.exact({
9392
9256
  id: PropTypes.string.isRequired,
9393
9257
  source_experience: T['io.flow.v0.models.experience_reference'].isRequired,
@@ -9572,6 +9436,8 @@ T['io.flow.v0.enums.transaction_source'] = PropTypes.oneOf([
9572
9436
  'tax_refund',
9573
9437
  'duty_refund',
9574
9438
  'non_l4l_tax_duty_fx',
9439
+ 'merchant_payout',
9440
+ 'merchant_refund',
9575
9441
  'ge_revenue_share',
9576
9442
  ]);
9577
9443
 
@@ -10212,6 +10078,20 @@ T['io.flow.v0.models.customer_payment'] = PropTypes.exact({
10212
10078
 
10213
10079
  T['io.flow.v0.enums.merchant_of_record'] = PropTypes.oneOf(['flow', 'organization']);
10214
10080
 
10081
+ T['io.flow.v0.models.tax_duty_quote'] = PropTypes.exact({
10082
+ id: PropTypes.string.isRequired,
10083
+ primary_identifier: PropTypes.string.isRequired,
10084
+ attributes: PropTypes.objectOf(PropTypes.string),
10085
+ merchant_of_record: T['io.flow.v0.enums.merchant_of_record'].isRequired,
10086
+ delivered_duty: T['io.flow.v0.enums.delivered_duty'].isRequired,
10087
+ destination: T['io.flow.v0.models.street_address'].isRequired,
10088
+ quote_date: PropTypes.string.isRequired,
10089
+ currency: PropTypes.string.isRequired,
10090
+ lines: PropTypes.arrayOf(T['io.flow.v0.models.tax_duty_quote_line_item']).isRequired,
10091
+ shipping: PropTypes.arrayOf(T['io.flow.v0.models.tax_duty_quote_simple_shipping']).isRequired,
10092
+ total_values: T['io.flow.v0.models.tax_duty_quote_values'].isRequired,
10093
+ });
10094
+
10215
10095
  T['io.flow.v0.models.payment_payment_method'] = PropTypes.exact({
10216
10096
  id: PropTypes.string.isRequired,
10217
10097
  name: PropTypes.string.isRequired,
@@ -11316,44 +11196,12 @@ T['io.flow.v0.unions.expandable_experience'] = PropTypes.oneOfType([
11316
11196
  T['io.flow.v0.models.experience_reference'],
11317
11197
  ]);
11318
11198
 
11319
- T['io.flow.v0.models.experience_upserted_v2'] = PropTypes.exact({
11320
- discriminator: PropTypes.oneOf(['experience_upserted_v2']).isRequired,
11321
- event_id: PropTypes.string.isRequired,
11322
- timestamp: PropTypes.string.isRequired,
11323
- organization: PropTypes.string.isRequired,
11324
- experience: T['io.flow.v0.models.experience'].isRequired,
11325
- });
11326
-
11327
- T['io.flow.v0.models.experience_deleted_v2'] = PropTypes.exact({
11328
- discriminator: PropTypes.oneOf(['experience_deleted_v2']).isRequired,
11329
- event_id: PropTypes.string.isRequired,
11330
- timestamp: PropTypes.string.isRequired,
11331
- organization: PropTypes.string.isRequired,
11332
- experience: T['io.flow.v0.models.experience'].isRequired,
11333
- });
11334
-
11335
11199
  T['io.flow.v0.models.experience_logistics_settings'] = PropTypes.exact({
11336
11200
  id: PropTypes.string.isRequired,
11337
11201
  experience: T['io.flow.v0.models.experience_overview'].isRequired,
11338
11202
  shipping_configuration: T['io.flow.v0.models.shipping_configuration_reference'].isRequired,
11339
11203
  });
11340
11204
 
11341
- T['io.flow.v0.models.experience_logistics_settings_upserted'] = PropTypes.exact({
11342
- discriminator: PropTypes.oneOf(['experience_logistics_settings_upserted']).isRequired,
11343
- event_id: PropTypes.string.isRequired,
11344
- timestamp: PropTypes.string.isRequired,
11345
- organization: PropTypes.string.isRequired,
11346
- logistics_settings: T['io.flow.v0.models.experience_logistics_settings'].isRequired,
11347
- });
11348
-
11349
- T['io.flow.v0.models.experience_logistics_settings_deleted'] = PropTypes.exact({
11350
- discriminator: PropTypes.oneOf(['experience_logistics_settings_deleted']).isRequired,
11351
- event_id: PropTypes.string.isRequired,
11352
- timestamp: PropTypes.string.isRequired,
11353
- organization: PropTypes.string.isRequired,
11354
- logistics_settings: T['io.flow.v0.models.experience_logistics_settings'].isRequired,
11355
- });
11356
-
11357
11205
  T['io.flow.v0.enums.available_filter_format'] = PropTypes.oneOf([
11358
11206
  'boolean',
11359
11207
  'date',
@@ -12501,22 +12349,6 @@ T['io.flow.v0.models.available_promotion'] = PropTypes.exact({
12501
12349
  promotions: PropTypes.arrayOf(T['io.flow.v0.unions.promotion']).isRequired,
12502
12350
  });
12503
12351
 
12504
- T['io.flow.v0.models.available_promotions_upserted_v2'] = PropTypes.exact({
12505
- discriminator: PropTypes.oneOf(['available_promotions_upserted_v2']).isRequired,
12506
- event_id: PropTypes.string.isRequired,
12507
- timestamp: PropTypes.string.isRequired,
12508
- organization: PropTypes.string.isRequired,
12509
- available_promotion: T['io.flow.v0.models.available_promotion'].isRequired,
12510
- });
12511
-
12512
- T['io.flow.v0.models.available_promotions_deleted_v2'] = PropTypes.exact({
12513
- discriminator: PropTypes.oneOf(['available_promotions_deleted_v2']).isRequired,
12514
- event_id: PropTypes.string.isRequired,
12515
- timestamp: PropTypes.string.isRequired,
12516
- organization: PropTypes.string.isRequired,
12517
- available_promotion: T['io.flow.v0.models.available_promotion'].isRequired,
12518
- });
12519
-
12520
12352
  T['io.flow.v0.enums.order_price_detail_component_key'] = PropTypes.oneOf([
12521
12353
  'adjustment',
12522
12354
  'vat_deminimis',
@@ -12655,6 +12487,14 @@ T['io.flow.order.price.v0.models.order_price_detail_component'] = PropTypes.exac
12655
12487
  name: PropTypes.string,
12656
12488
  });
12657
12489
 
12490
+ T['io.flow.tech.onboarding.playground.v0.models.sarvesh_item_form'] = PropTypes.exact({
12491
+ number: PropTypes.string.isRequired,
12492
+ amount: T['io.flow.common.v0.models.price'].isRequired,
12493
+ description: PropTypes.string,
12494
+ type: T['io.flow.tech.onboarding.playground.v0.enums.sarvesh_item_type'].isRequired,
12495
+ added_on: PropTypes.string.isRequired,
12496
+ });
12497
+
12658
12498
  T['io.flow.tech.onboarding.playground.v0.models.rohan_item_form'] = PropTypes.exact({
12659
12499
  number: PropTypes.string.isRequired,
12660
12500
  amount: T['io.flow.common.v0.models.price'].isRequired,
@@ -12688,6 +12528,14 @@ T['io.flow.tech.onboarding.playground.v0.models.niall_item_form'] = PropTypes.ex
12688
12528
  added_on: PropTypes.string.isRequired,
12689
12529
  });
12690
12530
 
12531
+ T['io.flow.tech.onboarding.playground.v0.models.hosein_item_form'] = PropTypes.exact({
12532
+ number: PropTypes.string.isRequired,
12533
+ amount: T['io.flow.common.v0.models.price'].isRequired,
12534
+ description: PropTypes.string,
12535
+ type: T['io.flow.tech.onboarding.playground.v0.enums.hosein_item_type'].isRequired,
12536
+ added_on: PropTypes.string.isRequired,
12537
+ });
12538
+
12691
12539
  T['io.flow.tech.onboarding.playground.v0.models.ansh_item_form'] = PropTypes.exact({
12692
12540
  number: PropTypes.string.isRequired,
12693
12541
  amount: T['io.flow.common.v0.models.price'].isRequired,
@@ -13020,6 +12868,22 @@ T['io.flow.catalog.v0.models.item_version'] = PropTypes.exact({
13020
12868
  item: T['io.flow.catalog.v0.models.item'].isRequired,
13021
12869
  });
13022
12870
 
12871
+ T['io.flow.tech.onboarding.playground.v0.models.sarvesh_item'] = PropTypes.exact({
12872
+ id: PropTypes.string.isRequired,
12873
+ number: PropTypes.string.isRequired,
12874
+ amount: T['io.flow.common.v0.models.price'].isRequired,
12875
+ description: PropTypes.string,
12876
+ type: T['io.flow.tech.onboarding.playground.v0.enums.sarvesh_item_type'].isRequired,
12877
+ added_on: PropTypes.string.isRequired,
12878
+ });
12879
+
12880
+ T['io.flow.v0.models.sarvesh_item_upserted'] = PropTypes.exact({
12881
+ discriminator: PropTypes.oneOf(['sarvesh_item_upserted']).isRequired,
12882
+ event_id: PropTypes.string.isRequired,
12883
+ timestamp: PropTypes.string.isRequired,
12884
+ item: T['io.flow.tech.onboarding.playground.v0.models.sarvesh_item'].isRequired,
12885
+ });
12886
+
13023
12887
  T['io.flow.tech.onboarding.playground.v0.models.rohan_item'] = PropTypes.exact({
13024
12888
  id: PropTypes.string.isRequired,
13025
12889
  number: PropTypes.string.isRequired,
@@ -13052,6 +12916,22 @@ T['io.flow.v0.models.niall_item_upserted'] = PropTypes.exact({
13052
12916
  item: T['io.flow.tech.onboarding.playground.v0.models.niall_item'].isRequired,
13053
12917
  });
13054
12918
 
12919
+ T['io.flow.tech.onboarding.playground.v0.models.hosein_item'] = PropTypes.exact({
12920
+ id: PropTypes.string.isRequired,
12921
+ number: PropTypes.string.isRequired,
12922
+ amount: T['io.flow.common.v0.models.price'].isRequired,
12923
+ description: PropTypes.string,
12924
+ type: T['io.flow.tech.onboarding.playground.v0.enums.hosein_item_type'].isRequired,
12925
+ added_on: PropTypes.string.isRequired,
12926
+ });
12927
+
12928
+ T['io.flow.v0.models.hosein_item_upserted'] = PropTypes.exact({
12929
+ discriminator: PropTypes.oneOf(['hosein_item_upserted']).isRequired,
12930
+ event_id: PropTypes.string.isRequired,
12931
+ timestamp: PropTypes.string.isRequired,
12932
+ item: T['io.flow.tech.onboarding.playground.v0.models.hosein_item'].isRequired,
12933
+ });
12934
+
13055
12935
  T['io.flow.tech.onboarding.playground.v0.models.ansh_item'] = PropTypes.exact({
13056
12936
  id: PropTypes.string.isRequired,
13057
12937
  number: PropTypes.string.isRequired,
@@ -13596,6 +13476,17 @@ T['io.flow.v0.models.remote_area_ratecard_fee'] = PropTypes.exact({
13596
13476
  amount: T['io.flow.v0.models.money'].isRequired,
13597
13477
  });
13598
13478
 
13479
+ T['io.flow.v0.models.product_sellability_form'] = PropTypes.exact({
13480
+ shop_id: PropTypes.string.isRequired,
13481
+ product_id: PropTypes.string,
13482
+ name: PropTypes.string.isRequired,
13483
+ price: T['io.flow.v0.models.money'].isRequired,
13484
+ description: PropTypes.string.isRequired,
13485
+ taxonomy_category: T['io.flow.v0.models.product_taxonomy_category'].isRequired,
13486
+ status: T['io.flow.v0.enums.sellability_request_status'],
13487
+ dry_run: PropTypes.bool,
13488
+ });
13489
+
13599
13490
  T['io.flow.v0.models.price_source_provided'] = PropTypes.exact({
13600
13491
  discriminator: PropTypes.oneOf(['provided']).isRequired,
13601
13492
  price: T['io.flow.v0.models.money'].isRequired,
@@ -14367,6 +14258,30 @@ T['io.flow.v0.models.measurement'] = PropTypes.exact({
14367
14258
  units: T['io.flow.v0.enums.unit_of_measurement'].isRequired,
14368
14259
  });
14369
14260
 
14261
+ T['io.flow.v0.models.tax_duty_quote_line_item_form'] = PropTypes.exact({
14262
+ primary_identifier: PropTypes.string.isRequired,
14263
+ attributes: PropTypes.objectOf(PropTypes.string),
14264
+ ship_from: T['io.flow.v0.models.street_address'].isRequired,
14265
+ quantity: PropTypes.number.isRequired,
14266
+ unit_price: PropTypes.number.isRequired,
14267
+ unit_weight: T['io.flow.v0.models.measurement'],
14268
+ country_of_origin: PropTypes.string,
14269
+ hs_code: PropTypes.string,
14270
+ includes: PropTypes.arrayOf(T['io.flow.v0.enums.levy_inclusion']).isRequired,
14271
+ preferential_rate_eligibilities: PropTypes.arrayOf(T['io.flow.v0.enums.preferential_rate_eligibility']),
14272
+ });
14273
+
14274
+ T['io.flow.v0.models.tax_duty_quote_form'] = PropTypes.exact({
14275
+ primary_identifier: PropTypes.string.isRequired,
14276
+ attributes: PropTypes.objectOf(PropTypes.string),
14277
+ delivered_duty: T['io.flow.v0.enums.delivered_duty'].isRequired,
14278
+ destination: T['io.flow.v0.models.street_address'].isRequired,
14279
+ currency: PropTypes.string.isRequired,
14280
+ lines: PropTypes.arrayOf(T['io.flow.v0.models.tax_duty_quote_line_item_form']).isRequired,
14281
+ shipping: PropTypes.arrayOf(T['io.flow.v0.models.tax_duty_quote_simple_shipping_form']).isRequired,
14282
+ includes: PropTypes.arrayOf(T['io.flow.v0.enums.levy_inclusion']),
14283
+ });
14284
+
14370
14285
  T['io.flow.v0.models.estimated_dimensions'] = PropTypes.exact({
14371
14286
  depth: T['io.flow.v0.models.measurement'].isRequired,
14372
14287
  length: T['io.flow.v0.models.measurement'].isRequired,
@@ -15715,36 +15630,6 @@ T['io.flow.v0.models.order_customer'] = PropTypes.exact({
15715
15630
  invoice: T['io.flow.v0.models.customer_invoice'],
15716
15631
  });
15717
15632
 
15718
- T['io.flow.v0.models.order_upserted'] = PropTypes.exact({
15719
- discriminator: PropTypes.oneOf(['order_upserted']).isRequired,
15720
- event_id: PropTypes.string.isRequired,
15721
- timestamp: PropTypes.string.isRequired,
15722
- organization: PropTypes.string.isRequired,
15723
- number: PropTypes.string.isRequired,
15724
- environment: PropTypes.string.isRequired,
15725
- experience_id: PropTypes.string.isRequired,
15726
- expires_at: PropTypes.string.isRequired,
15727
- customer: T['io.flow.v0.models.order_customer'].isRequired,
15728
- selections: PropTypes.arrayOf(PropTypes.string).isRequired,
15729
- items: PropTypes.arrayOf(T['io.flow.v0.models.localized_line_item']).isRequired,
15730
- destination: T['io.flow.v0.models.order_address'].isRequired,
15731
- deliveries: PropTypes.arrayOf(T['io.flow.v0.unions.delivery']).isRequired,
15732
- prices: PropTypes.arrayOf(T['io.flow.v0.models.order_price_detail']).isRequired,
15733
- order_id: PropTypes.string,
15734
- payments: PropTypes.arrayOf(T['io.flow.v0.models.order_payment']),
15735
- discount: T['io.flow.v0.models.money'],
15736
- delivered_duty: PropTypes.string,
15737
- total: T['io.flow.v0.models.localized_total'].isRequired,
15738
- created_at: PropTypes.string,
15739
- updated_at: PropTypes.string,
15740
- submitted_at: PropTypes.string,
15741
- lines: PropTypes.arrayOf(T['io.flow.v0.models.line']),
15742
- attributes: PropTypes.objectOf(PropTypes.string),
15743
- geo: T['io.flow.v0.models.order_geo'],
15744
- merchant_of_record: T['io.flow.v0.enums.order_merchant_of_record'],
15745
- tax_registration: T['io.flow.v0.models.tax_registration'],
15746
- });
15747
-
15748
15633
  T['io.flow.v0.models.order'] = PropTypes.exact({
15749
15634
  discriminator: PropTypes.oneOf(['order']).isRequired,
15750
15635
  id: PropTypes.string.isRequired,
@@ -15835,22 +15720,6 @@ T['io.flow.v0.models.order_replacement'] = PropTypes.exact({
15835
15720
  replacement_order: T['io.flow.v0.models.order'].isRequired,
15836
15721
  });
15837
15722
 
15838
- T['io.flow.v0.models.order_replacement_upserted'] = PropTypes.exact({
15839
- discriminator: PropTypes.oneOf(['order_replacement_upserted']).isRequired,
15840
- event_id: PropTypes.string.isRequired,
15841
- timestamp: PropTypes.string.isRequired,
15842
- organization: PropTypes.string.isRequired,
15843
- order_replacement: T['io.flow.v0.models.order_replacement'].isRequired,
15844
- });
15845
-
15846
- T['io.flow.v0.models.order_replacement_deleted'] = PropTypes.exact({
15847
- discriminator: PropTypes.oneOf(['order_replacement_deleted']).isRequired,
15848
- event_id: PropTypes.string.isRequired,
15849
- timestamp: PropTypes.string.isRequired,
15850
- organization: PropTypes.string.isRequired,
15851
- order_replacement: T['io.flow.v0.models.order_replacement'].isRequired,
15852
- });
15853
-
15854
15723
  T['io.flow.v0.models.order_placed_details'] = PropTypes.exact({
15855
15724
  id: PropTypes.string.isRequired,
15856
15725
  order: T['io.flow.v0.models.order'].isRequired,
@@ -16527,6 +16396,10 @@ T['io.flow.v0.models.label_deleted_v2'] = PropTypes.exact({
16527
16396
  T['io.flow.v0.unions.event'] = PropTypes.oneOfType([
16528
16397
  T['io.flow.v0.models.test_upserted'],
16529
16398
  T['io.flow.v0.models.generate_load'],
16399
+ T['io.flow.v0.models.sarvesh_item_upserted'],
16400
+ T['io.flow.v0.models.sarvesh_item_deleted'],
16401
+ T['io.flow.v0.models.hosein_item_upserted'],
16402
+ T['io.flow.v0.models.hosein_item_deleted'],
16530
16403
  T['io.flow.v0.models.niall_item_upserted'],
16531
16404
  T['io.flow.v0.models.niall_item_deleted'],
16532
16405
  T['io.flow.v0.models.rohan_item_upserted'],
@@ -16589,44 +16462,12 @@ T['io.flow.v0.unions.event'] = PropTypes.oneOfType([
16589
16462
  T['io.flow.v0.models.rate_upserted'],
16590
16463
  T['io.flow.v0.models.rate_deleted_v3'],
16591
16464
  T['io.flow.v0.models.rate_upserted_v3'],
16592
- T['io.flow.v0.models.available_promotions_upserted'],
16593
- T['io.flow.v0.models.available_promotions_deleted'],
16594
- T['io.flow.v0.models.available_promotions_upserted_v2'],
16595
- T['io.flow.v0.models.available_promotions_deleted_v2'],
16596
16465
  T['io.flow.v0.models.allocation_deleted_v2'],
16597
16466
  T['io.flow.v0.models.allocation_upserted_v2'],
16598
- T['io.flow.v0.models.currency_format_deleted'],
16599
- T['io.flow.v0.models.currency_format_upserted'],
16600
- T['io.flow.v0.models.experience_deleted'],
16601
- T['io.flow.v0.models.experience_upserted'],
16602
- T['io.flow.v0.models.experience_deleted_v2'],
16603
- T['io.flow.v0.models.experience_upserted_v2'],
16604
- T['io.flow.v0.models.country_status_upserted'],
16605
- T['io.flow.v0.models.country_status_deleted'],
16606
- T['io.flow.v0.models.experience_price_book_mapping_deleted'],
16607
- T['io.flow.v0.models.experience_price_book_mapping_upserted'],
16608
- T['io.flow.v0.models.experience_logistics_settings_upserted'],
16609
- T['io.flow.v0.models.experience_logistics_settings_deleted'],
16610
- T['io.flow.v0.models.item_margin_deleted_v2'],
16611
- T['io.flow.v0.models.item_margin_upserted_v2'],
16612
- T['io.flow.v0.models.item_sales_margin_deleted'],
16613
- T['io.flow.v0.models.item_sales_margin_upserted'],
16614
- T['io.flow.v0.models.label_format_deleted'],
16615
- T['io.flow.v0.models.label_format_upserted'],
16616
- T['io.flow.v0.models.order_deleted'],
16617
- T['io.flow.v0.models.order_upserted'],
16618
16467
  T['io.flow.v0.models.order_deleted_v2'],
16619
16468
  T['io.flow.v0.models.order_upserted_v2'],
16620
- T['io.flow.v0.models.order_identifier_deleted'],
16621
- T['io.flow.v0.models.order_identifier_upserted'],
16622
16469
  T['io.flow.v0.models.order_identifier_deleted_v2'],
16623
- T['io.flow.v0.models.order_identifier_upserted_v2'],
16624
16470
  T['io.flow.v0.models.order_identifier_upserted_v3'],
16625
- T['io.flow.v0.models.order_replacement_upserted'],
16626
- T['io.flow.v0.models.order_replacement_deleted'],
16627
- T['io.flow.v0.models.pricing_deleted'],
16628
- T['io.flow.v0.models.pricing_upserted'],
16629
- T['io.flow.v0.models.order_service_change_request'],
16630
16471
  T['io.flow.v0.models.fraud_status_changed'],
16631
16472
  T['io.flow.v0.models.center_upserted'],
16632
16473
  T['io.flow.v0.models.center_deleted'],
@@ -16651,8 +16492,6 @@ T['io.flow.v0.unions.event'] = PropTypes.oneOfType([
16651
16492
  T['io.flow.v0.models.item_origin_deleted'],
16652
16493
  T['io.flow.v0.models.harmonized_landed_cost_upserted'],
16653
16494
  T['io.flow.v0.models.fully_harmonized_item_upserted'],
16654
- T['io.flow.v0.models.import_completed_v2'],
16655
- T['io.flow.v0.models.import_failed_v2'],
16656
16495
  T['io.flow.v0.models.label_upserted'],
16657
16496
  T['io.flow.v0.models.label_deleted_v2'],
16658
16497
  T['io.flow.v0.models.label_upserted_v2'],
@@ -16913,6 +16752,10 @@ T['io.flow.v0.enums.capability'] = PropTypes.oneOf(['crossdock']);
16913
16752
  T['io.flow.v0.enums.event_type'] = PropTypes.oneOf([
16914
16753
  'test_upserted',
16915
16754
  'generate_load',
16755
+ 'sarvesh_item_upserted',
16756
+ 'sarvesh_item_deleted',
16757
+ 'hosein_item_upserted',
16758
+ 'hosein_item_deleted',
16916
16759
  'niall_item_upserted',
16917
16760
  'niall_item_deleted',
16918
16761
  'rohan_item_upserted',
@@ -16975,44 +16818,12 @@ T['io.flow.v0.enums.event_type'] = PropTypes.oneOf([
16975
16818
  'rate_upserted',
16976
16819
  'rate_deleted_v3',
16977
16820
  'rate_upserted_v3',
16978
- 'available_promotions_upserted',
16979
- 'available_promotions_deleted',
16980
- 'available_promotions_upserted_v2',
16981
- 'available_promotions_deleted_v2',
16982
16821
  'allocation_deleted_v2',
16983
16822
  'allocation_upserted_v2',
16984
- 'currency_format_deleted',
16985
- 'currency_format_upserted',
16986
- 'experience_deleted',
16987
- 'experience_upserted',
16988
- 'experience_deleted_v2',
16989
- 'experience_upserted_v2',
16990
- 'country_status_upserted',
16991
- 'country_status_deleted',
16992
- 'experience_price_book_mapping_deleted',
16993
- 'experience_price_book_mapping_upserted',
16994
- 'experience_logistics_settings_upserted',
16995
- 'experience_logistics_settings_deleted',
16996
- 'item_margin_deleted_v2',
16997
- 'item_margin_upserted_v2',
16998
- 'item_sales_margin_deleted',
16999
- 'item_sales_margin_upserted',
17000
- 'label_format_deleted',
17001
- 'label_format_upserted',
17002
- 'order_deleted',
17003
- 'order_upserted',
17004
16823
  'order_deleted_v2',
17005
16824
  'order_upserted_v2',
17006
- 'order_identifier_deleted',
17007
- 'order_identifier_upserted',
17008
16825
  'order_identifier_deleted_v2',
17009
- 'order_identifier_upserted_v2',
17010
16826
  'order_identifier_upserted_v3',
17011
- 'order_replacement_upserted',
17012
- 'order_replacement_deleted',
17013
- 'pricing_deleted',
17014
- 'pricing_upserted',
17015
- 'order_service_change_request',
17016
16827
  'fraud_status_changed',
17017
16828
  'center_upserted',
17018
16829
  'center_deleted',
@@ -17037,8 +16848,6 @@ T['io.flow.v0.enums.event_type'] = PropTypes.oneOf([
17037
16848
  'item_origin_deleted',
17038
16849
  'harmonized_landed_cost_upserted',
17039
16850
  'fully_harmonized_item_upserted',
17040
- 'import_completed_v2',
17041
- 'import_failed_v2',
17042
16851
  'label_upserted',
17043
16852
  'label_deleted_v2',
17044
16853
  'label_upserted_v2',
@@ -17627,6 +17436,12 @@ T['io.flow.v0.models.order_service_change_form'] = PropTypes.exact({
17627
17436
  to_service_id: PropTypes.string.isRequired,
17628
17437
  });
17629
17438
 
17439
+ T['io.flow.v0.models.order_service_change_request_data'] = PropTypes.exact({
17440
+ id: PropTypes.string.isRequired,
17441
+ source_url: PropTypes.string.isRequired,
17442
+ filename: PropTypes.string,
17443
+ });
17444
+
17630
17445
  T['io.flow.v0.models.organization_bank_account'] = PropTypes.exact({
17631
17446
  id: PropTypes.string.isRequired,
17632
17447
  key: PropTypes.string.isRequired,
@@ -18231,6 +18046,12 @@ T['io.flow.tech.onboarding.playground.v0.models.tech_onboarding_description'] =
18231
18046
  description: PropTypes.string.isRequired,
18232
18047
  });
18233
18048
 
18049
+ T['io.flow.currency.v0.models.rate_form'] = PropTypes.exact({
18050
+ base: PropTypes.string.isRequired,
18051
+ target: PropTypes.string.isRequired,
18052
+ effective_at: PropTypes.string.isRequired,
18053
+ });
18054
+
18234
18055
  T['io.flow.organization.v0.models.organization_default_configurations_form'] = PropTypes.exact({
18235
18056
  id: PropTypes.string.isRequired,
18236
18057
  });
@@ -18282,12 +18103,6 @@ T['io.flow.inventory.v0.models.pfs_inventory_status'] = PropTypes.exact({
18282
18103
  status: PropTypes.string.isRequired,
18283
18104
  });
18284
18105
 
18285
- T['io.flow.currency.v0.models.rate_form'] = PropTypes.exact({
18286
- base: PropTypes.string.isRequired,
18287
- target: PropTypes.string.isRequired,
18288
- effective_at: PropTypes.string.isRequired,
18289
- });
18290
-
18291
18106
  export const abandonedOrderEmailSettings = T['io.flow.v0.models.abandoned_order_email_settings'];
18292
18107
  export const abandonedOrderPromotion = T['io.flow.v0.models.abandoned_order_promotion'];
18293
18108
  export const abandonedOrderPromotionDetails = T['io.flow.v0.unions.abandoned_order_promotion_details'];
@@ -18411,10 +18226,6 @@ export const availableFilterFormat = T['io.flow.v0.enums.available_filter_format
18411
18226
  export const availableFilterStructured = T['io.flow.v0.models.available_filter_structured'];
18412
18227
  export const availableFilterUnstructured = T['io.flow.v0.models.available_filter_unstructured'];
18413
18228
  export const availablePromotion = T['io.flow.v0.models.available_promotion'];
18414
- export const availablePromotionsDeleted = T['io.flow.v0.models.available_promotions_deleted'];
18415
- export const availablePromotionsDeletedV2 = T['io.flow.v0.models.available_promotions_deleted_v2'];
18416
- export const availablePromotionsUpserted = T['io.flow.v0.models.available_promotions_upserted'];
18417
- export const availablePromotionsUpsertedV2 = T['io.flow.v0.models.available_promotions_upserted_v2'];
18418
18229
  export const availableService = T['io.flow.v0.models.available_service'];
18419
18230
  export const avalaraTaxCsvSetting = T['io.flow.v0.models.avalara_tax_csv_setting'];
18420
18231
  export const avalaraTaxSetting = T['io.flow.v0.models.avalara_tax_setting'];
@@ -18619,9 +18430,7 @@ export const countryPickerForm = T['io.flow.v0.models.country_picker_form'];
18619
18430
  export const countryPickerSource = T['io.flow.v0.enums.country_picker_source'];
18620
18431
  export const countryShippingPricing = T['io.flow.v0.models.country_shipping_pricing'];
18621
18432
  export const countryStatus = T['io.flow.v0.models.country_status'];
18622
- export const countryStatusDeleted = T['io.flow.v0.models.country_status_deleted'];
18623
18433
  export const countryStatusForm = T['io.flow.v0.models.country_status_form'];
18624
- export const countryStatusUpserted = T['io.flow.v0.models.country_status_upserted'];
18625
18434
  export const creditMemo = T['io.flow.v0.models.credit_memo'];
18626
18435
  export const creditMemoDeleted = T['io.flow.v0.models.credit_memo_deleted'];
18627
18436
  export const creditMemoForm = T['io.flow.v0.models.credit_memo_form'];
@@ -18639,8 +18448,6 @@ export const csvPriceBookItemExportRowByItemNumber = T['io.flow.v0.models.csv_pr
18639
18448
  export const csvPriceBookItemExportRowBySku = T['io.flow.v0.models.csv_price_book_item_export_row_by_sku'];
18640
18449
  export const currency = T['io.flow.v0.models.currency'];
18641
18450
  export const currencyFormat = T['io.flow.v0.models.currency_format'];
18642
- export const currencyFormatDeleted = T['io.flow.v0.models.currency_format_deleted'];
18643
- export const currencyFormatUpserted = T['io.flow.v0.models.currency_format_upserted'];
18644
18451
  export const currencyLabelFormatter = T['io.flow.v0.enums.currency_label_formatter'];
18645
18452
  export const currencySymbolFormat = T['io.flow.v0.enums.currency_symbol_format'];
18646
18453
  export const currencySymbols = T['io.flow.v0.models.currency_symbols'];
@@ -18802,15 +18609,11 @@ export const experienceCountryStatus = T['io.flow.v0.enums.experience_country_st
18802
18609
  export const experienceCurrencyFormat = T['io.flow.v0.models.experience_currency_format'];
18803
18610
  export const experienceCurrencyFormatForm = T['io.flow.v0.models.experience_currency_format_form'];
18804
18611
  export const experienceDefaults = T['io.flow.v0.models.experience_defaults'];
18805
- export const experienceDeleted = T['io.flow.v0.models.experience_deleted'];
18806
- export const experienceDeletedV2 = T['io.flow.v0.models.experience_deleted_v2'];
18807
18612
  export const experienceExportType = T['io.flow.v0.models.experience_export_type'];
18808
18613
  export const experienceForm = T['io.flow.v0.models.experience_form'];
18809
18614
  export const experienceGeo = T['io.flow.v0.models.experience_geo'];
18810
18615
  export const experienceLogisticsSettings = T['io.flow.v0.models.experience_logistics_settings'];
18811
- export const experienceLogisticsSettingsDeleted = T['io.flow.v0.models.experience_logistics_settings_deleted'];
18812
18616
  export const experienceLogisticsSettingsPutForm = T['io.flow.v0.models.experience_logistics_settings_put_form'];
18813
- export const experienceLogisticsSettingsUpserted = T['io.flow.v0.models.experience_logistics_settings_upserted'];
18814
18617
  export const experienceLogisticsSummary = T['io.flow.v0.models.experience_logistics_summary'];
18815
18618
  export const experienceLogisticsTierSummary = T['io.flow.v0.models.experience_logistics_tier_summary'];
18816
18619
  export const experienceLogisticsTierSummaryPrices = T['io.flow.v0.models.experience_logistics_tier_summary_prices'];
@@ -18819,10 +18622,8 @@ export const experiencePaymentMethodRule = T['io.flow.v0.models.experience_payme
18819
18622
  export const experiencePaymentMethodRuleForm = T['io.flow.v0.models.experience_payment_method_rule_form'];
18820
18623
  export const experiencePaymentMethodTag = T['io.flow.v0.enums.experience_payment_method_tag'];
18821
18624
  export const experiencePriceBookMapping = T['io.flow.v0.models.experience_price_book_mapping'];
18822
- export const experiencePriceBookMappingDeleted = T['io.flow.v0.models.experience_price_book_mapping_deleted'];
18823
18625
  export const experiencePriceBookMappingForm = T['io.flow.v0.models.experience_price_book_mapping_form'];
18824
18626
  export const experiencePriceBookMappingPutForm = T['io.flow.v0.models.experience_price_book_mapping_put_form'];
18825
- export const experiencePriceBookMappingUpserted = T['io.flow.v0.models.experience_price_book_mapping_upserted'];
18826
18627
  export const experiencePriceConversion = T['io.flow.v0.models.experience_price_conversion'];
18827
18628
  export const experiencePriceConversionRequest = T['io.flow.v0.models.experience_price_conversion_request'];
18828
18629
  export const experiencePriceConversionResponse = T['io.flow.v0.models.experience_price_conversion_response'];
@@ -18834,8 +18635,6 @@ export const experienceSettings = T['io.flow.v0.models.experience_settings'];
18834
18635
  export const experienceStatus = T['io.flow.v0.enums.experience_status'];
18835
18636
  export const experienceStatusForm = T['io.flow.v0.models.experience_status_form'];
18836
18637
  export const experienceSummary = T['io.flow.v0.models.experience_summary'];
18837
- export const experienceUpserted = T['io.flow.v0.models.experience_upserted'];
18838
- export const experienceUpsertedV2 = T['io.flow.v0.models.experience_upserted_v2'];
18839
18638
  export const experienceVersion = T['io.flow.v0.models.experience_version'];
18840
18639
  export const expiration = T['io.flow.v0.models.expiration'];
18841
18640
  export const UNSAFE_export = T['io.flow.v0.models.export'];
@@ -18955,6 +18754,8 @@ export const hop = T['io.flow.v0.models.hop'];
18955
18754
  export const hopEstimate = T['io.flow.v0.models.hop_estimate'];
18956
18755
  export const hopEstimateV2 = T['io.flow.v0.models.hop_estimate_v2'];
18957
18756
  export const hopV2 = T['io.flow.v0.models.hop_v2'];
18757
+ export const hoseinItemDeleted = T['io.flow.v0.models.hosein_item_deleted'];
18758
+ export const hoseinItemUpserted = T['io.flow.v0.models.hosein_item_upserted'];
18958
18759
  export const hs10 = T['io.flow.v0.models.hs10'];
18959
18760
  export const hs10CodeDeleted = T['io.flow.v0.models.hs10_code_deleted'];
18960
18761
  export const hs10CodeUpserted = T['io.flow.v0.models.hs10_code_upserted'];
@@ -18967,8 +18768,6 @@ export const image = T['io.flow.v0.models.image'];
18967
18768
  export const imageForm = T['io.flow.v0.models.image_form'];
18968
18769
  export const imageTag = T['io.flow.v0.enums.image_tag'];
18969
18770
  export const UNSAFE_import = T['io.flow.v0.models.import'];
18970
- export const importCompletedV2 = T['io.flow.v0.models.import_completed_v2'];
18971
- export const importFailedV2 = T['io.flow.v0.models.import_failed_v2'];
18972
18771
  export const importForm = T['io.flow.v0.models.import_form'];
18973
18772
  export const importResults = T['io.flow.v0.models.import_results'];
18974
18773
  export const importTemplate = T['io.flow.v0.models.import_template'];
@@ -19017,10 +18816,8 @@ export const itemFormOverlayForm = T['io.flow.v0.models.item_form_overlay_form']
19017
18816
  export const itemIdentifier = T['io.flow.v0.enums.item_identifier'];
19018
18817
  export const itemInserted = T['io.flow.v0.models.item_inserted'];
19019
18818
  export const itemMargin = T['io.flow.v0.models.item_margin'];
19020
- export const itemMarginDeletedV2 = T['io.flow.v0.models.item_margin_deleted_v2'];
19021
18819
  export const itemMarginPostForm = T['io.flow.v0.models.item_margin_post_form'];
19022
18820
  export const itemMarginPutForm = T['io.flow.v0.models.item_margin_put_form'];
19023
- export const itemMarginUpsertedV2 = T['io.flow.v0.models.item_margin_upserted_v2'];
19024
18821
  export const itemMarginVersion = T['io.flow.v0.models.item_margin_version'];
19025
18822
  export const itemOriginDeleted = T['io.flow.v0.models.item_origin_deleted'];
19026
18823
  export const itemOriginUpserted = T['io.flow.v0.models.item_origin_upserted'];
@@ -19028,8 +18825,6 @@ export const itemPriceUpdateForm = T['io.flow.v0.models.item_price_update_form']
19028
18825
  export const itemPriceUpdatePutForm = T['io.flow.v0.models.item_price_update_put_form'];
19029
18826
  export const itemQuerySuggestion = T['io.flow.v0.models.item_query_suggestion'];
19030
18827
  export const itemReference = T['io.flow.v0.models.item_reference'];
19031
- export const itemSalesMarginDeleted = T['io.flow.v0.models.item_sales_margin_deleted'];
19032
- export const itemSalesMarginUpserted = T['io.flow.v0.models.item_sales_margin_upserted'];
19033
18828
  export const itemShippingPricing = T['io.flow.v0.models.item_shipping_pricing'];
19034
18829
  export const itemStatistics = T['io.flow.v0.models.item_statistics'];
19035
18830
  export const itemUpdated = T['io.flow.v0.models.item_updated'];
@@ -19048,8 +18843,6 @@ export const knowYourBusinessUsaForm = T['io.flow.v0.models.know_your_business_u
19048
18843
  export const kubeHealthcheck = T['io.flow.v0.models.kube-healthcheck'];
19049
18844
  export const labelBase = T['io.flow.v0.models.label_base'];
19050
18845
  export const labelDeletedV2 = T['io.flow.v0.models.label_deleted_v2'];
19051
- export const labelFormatDeleted = T['io.flow.v0.models.label_format_deleted'];
19052
- export const labelFormatUpserted = T['io.flow.v0.models.label_format_upserted'];
19053
18846
  export const labelOrderSummary = T['io.flow.v0.models.label_order_summary'];
19054
18847
  export const labelProcessingModification = T['io.flow.v0.models.label_processing_modification'];
19055
18848
  export const labelProcessingModificationDeleted = T['io.flow.v0.models.label_processing_modification_deleted'];
@@ -19077,6 +18870,7 @@ export const laneSummary = T['io.flow.v0.models.lane_summary'];
19077
18870
  export const language = T['io.flow.v0.models.language'];
19078
18871
  export const largePackageServiceFee = T['io.flow.v0.models.large_package_service_fee'];
19079
18872
  export const levyComponent = T['io.flow.v0.enums.levy_component'];
18873
+ export const levyInclusion = T['io.flow.v0.enums.levy_inclusion'];
19080
18874
  export const levyStrategy = T['io.flow.v0.enums.levy_strategy'];
19081
18875
  export const line = T['io.flow.v0.models.line'];
19082
18876
  export const lineItem = T['io.flow.v0.models.line_item'];
@@ -19196,7 +18990,6 @@ export const orderBuilderSelectionsForm = T['io.flow.v0.models.order_builder_sel
19196
18990
  export const orderChangeSource = T['io.flow.v0.enums.order_change_source'];
19197
18991
  export const orderCustomer = T['io.flow.v0.models.order_customer'];
19198
18992
  export const orderCustomerForm = T['io.flow.v0.models.order_customer_form'];
19199
- export const orderDeleted = T['io.flow.v0.models.order_deleted'];
19200
18993
  export const orderDeletedV2 = T['io.flow.v0.models.order_deleted_v2'];
19201
18994
  export const orderDestinationPutForm = T['io.flow.v0.models.order_destination_put_form'];
19202
18995
  export const orderDetails = T['io.flow.v0.models.order_details'];
@@ -19209,12 +19002,9 @@ export const orderForm = T['io.flow.v0.models.order_form'];
19209
19002
  export const orderFraudStatus = T['io.flow.v0.models.order_fraud_status'];
19210
19003
  export const orderGeo = T['io.flow.v0.models.order_geo'];
19211
19004
  export const orderIdentifier = T['io.flow.v0.models.order_identifier'];
19212
- export const orderIdentifierDeleted = T['io.flow.v0.models.order_identifier_deleted'];
19213
19005
  export const orderIdentifierDeletedV2 = T['io.flow.v0.models.order_identifier_deleted_v2'];
19214
19006
  export const orderIdentifierForm = T['io.flow.v0.models.order_identifier_form'];
19215
19007
  export const orderIdentifierPutForm = T['io.flow.v0.models.order_identifier_put_form'];
19216
- export const orderIdentifierUpserted = T['io.flow.v0.models.order_identifier_upserted'];
19217
- export const orderIdentifierUpsertedV2 = T['io.flow.v0.models.order_identifier_upserted_v2'];
19218
19008
  export const orderIdentifierUpsertedV3 = T['io.flow.v0.models.order_identifier_upserted_v3'];
19219
19009
  export const orderIdentifierVersion = T['io.flow.v0.models.order_identifier_version'];
19220
19010
  export const orderInformation = T['io.flow.v0.unions.order_information'];
@@ -19255,14 +19045,11 @@ export const orderRefundSummaryPartialCharged = T['io.flow.v0.enums.order_refund
19255
19045
  export const orderRefundSummaryPartialForm = T['io.flow.v0.models.order_refund_summary_partial_form'];
19256
19046
  export const orderRefundSummaryPartialIncludes = T['io.flow.v0.models.order_refund_summary_partial_includes'];
19257
19047
  export const orderReplacement = T['io.flow.v0.models.order_replacement'];
19258
- export const orderReplacementDeleted = T['io.flow.v0.models.order_replacement_deleted'];
19259
19048
  export const orderReplacementForm = T['io.flow.v0.models.order_replacement_form'];
19260
- export const orderReplacementUpserted = T['io.flow.v0.models.order_replacement_upserted'];
19261
19049
  export const orderRuleReference = T['io.flow.v0.models.order_rule_reference'];
19262
19050
  export const orderRulesSummary = T['io.flow.v0.models.order_rules_summary'];
19263
19051
  export const orderServiceChange = T['io.flow.v0.models.order_service_change'];
19264
19052
  export const orderServiceChangeForm = T['io.flow.v0.models.order_service_change_form'];
19265
- export const orderServiceChangeRequest = T['io.flow.v0.models.order_service_change_request'];
19266
19053
  export const orderServiceChangeRequestData = T['io.flow.v0.models.order_service_change_request_data'];
19267
19054
  export const orderStatus = T['io.flow.v0.enums.order_status'];
19268
19055
  export const orderStorage = T['io.flow.v0.enums.order_storage'];
@@ -19275,7 +19062,6 @@ export const orderSummaryLevy = T['io.flow.v0.models.order_summary_levy'];
19275
19062
  export const orderSummaryLineItem = T['io.flow.v0.models.order_summary_line_item'];
19276
19063
  export const orderSummaryPriceDetail = T['io.flow.v0.models.order_summary_price_detail'];
19277
19064
  export const orderType = T['io.flow.v0.enums.order_type'];
19278
- export const orderUpserted = T['io.flow.v0.models.order_upserted'];
19279
19065
  export const orderUpsertedV2 = T['io.flow.v0.models.order_upserted_v2'];
19280
19066
  export const orderVersion = T['io.flow.v0.models.order_version'];
19281
19067
  export const orderWithDiscountsForm = T['io.flow.v0.models.order_with_discounts_form'];
@@ -19508,6 +19294,7 @@ export const physicalDeliveryPreferredService = T['io.flow.v0.models.physical_de
19508
19294
  export const physicalDeliverySpecialSerivce = T['io.flow.v0.enums.physical_delivery_special_serivce'];
19509
19295
  export const postPaymentRedirectUrls = T['io.flow.v0.models.post_payment_redirect_urls'];
19510
19296
  export const postalType = T['io.flow.v0.enums.postal_type'];
19297
+ export const preferentialRateEligibility = T['io.flow.v0.enums.preferential_rate_eligibility'];
19511
19298
  export const preferredServiceSelectionStrategy = T['io.flow.v0.enums.preferred_service_selection_strategy'];
19512
19299
  export const price = T['io.flow.v0.models.price'];
19513
19300
  export const priceAccuracy = T['io.flow.v0.enums.price_accuracy'];
@@ -19541,10 +19328,8 @@ export const priceSourceProvided = T['io.flow.v0.models.price_source_provided'];
19541
19328
  export const priceWithBase = T['io.flow.v0.models.price_with_base'];
19542
19329
  export const priceWithBaseAndDetails = T['io.flow.v0.models.price_with_base_and_details'];
19543
19330
  export const pricing = T['io.flow.v0.models.pricing'];
19544
- export const pricingDeleted = T['io.flow.v0.models.pricing_deleted'];
19545
19331
  export const pricingLevySetting = T['io.flow.v0.enums.pricing_levy_setting'];
19546
19332
  export const pricingSettings = T['io.flow.v0.models.pricing_settings'];
19547
- export const pricingUpserted = T['io.flow.v0.models.pricing_upserted'];
19548
19333
  export const pricingVersion = T['io.flow.v0.models.pricing_version'];
19549
19334
  export const processingEstimate = T['io.flow.v0.models.processing_estimate'];
19550
19335
  export const product = T['io.flow.v0.models.product'];
@@ -19554,6 +19339,8 @@ export const productRestrictionResult = T['io.flow.v0.models.product_restriction
19554
19339
  export const productRestrictionResultDeleted = T['io.flow.v0.models.product_restriction_result_deleted'];
19555
19340
  export const productRestrictionResultUpserted = T['io.flow.v0.models.product_restriction_result_upserted'];
19556
19341
  export const productRestrictionRule = T['io.flow.v0.enums.product_restriction_rule'];
19342
+ export const productSellability = T['io.flow.v0.models.product_sellability'];
19343
+ export const productSellabilityForm = T['io.flow.v0.models.product_sellability_form'];
19557
19344
  export const productTaxonomyCategory = T['io.flow.v0.models.product_taxonomy_category'];
19558
19345
  export const productTaxonomyData = T['io.flow.v0.models.product_taxonomy_data'];
19559
19346
  export const productUpdated = T['io.flow.v0.models.product_updated'];
@@ -19700,6 +19487,9 @@ export const rounding = T['io.flow.v0.models.rounding'];
19700
19487
  export const roundingMethod = T['io.flow.v0.enums.rounding_method'];
19701
19488
  export const roundingType = T['io.flow.v0.enums.rounding_type'];
19702
19489
  export const routeAudit = T['io.flow.v0.models.route_audit'];
19490
+ export const ruleEffectType = T['io.flow.v0.enums.rule_effect_type'];
19491
+ export const sarveshItemDeleted = T['io.flow.v0.models.sarvesh_item_deleted'];
19492
+ export const sarveshItemUpserted = T['io.flow.v0.models.sarvesh_item_upserted'];
19703
19493
  export const schedule = T['io.flow.v0.models.schedule'];
19704
19494
  export const scheduleExceptionStatus = T['io.flow.v0.enums.schedule_exception_status'];
19705
19495
  export const scheduledExport = T['io.flow.v0.models.scheduled_export'];
@@ -19709,6 +19499,11 @@ export const sdkAdyenV3AuthenticationToken = T['io.flow.v0.unions.sdk_adyen_v3_a
19709
19499
  export const securityRatecardFee = T['io.flow.v0.models.security_ratecard_fee'];
19710
19500
  export const securityServiceFee = T['io.flow.v0.models.security_service_fee'];
19711
19501
  export const selectIssuerOptionActionDetails = T['io.flow.v0.models.select_issuer_option_action_details'];
19502
+ export const sellabilityError = T['io.flow.v0.models.sellability_error'];
19503
+ export const sellabilityErrorCode = T['io.flow.v0.enums.sellability_error_code'];
19504
+ export const sellabilityRequestStatus = T['io.flow.v0.enums.sellability_request_status'];
19505
+ export const sellabilityResponse = T['io.flow.v0.unions.sellability_response'];
19506
+ export const sellablilityRegionResult = T['io.flow.v0.models.sellablility_region_result'];
19712
19507
  export const serviceDescription = T['io.flow.v0.unions.service_description'];
19713
19508
  export const serviceFee = T['io.flow.v0.unions.service_fee'];
19714
19509
  export const serviceReference = T['io.flow.v0.models.service_reference'];
@@ -19833,6 +19628,7 @@ export const statementDeleted = T['io.flow.v0.models.statement_deleted'];
19833
19628
  export const statementUpserted = T['io.flow.v0.models.statement_upserted'];
19834
19629
  export const storedMethodUsageStep = T['io.flow.v0.enums.stored_method_usage_step'];
19835
19630
  export const strategy = T['io.flow.v0.enums.strategy'];
19631
+ export const streetAddress = T['io.flow.v0.models.street_address'];
19836
19632
  export const stripeAuthenticationData = T['io.flow.v0.models.stripe_authentication_data'];
19837
19633
  export const stripeAuthenticationDataForm = T['io.flow.v0.models.stripe_authentication_data_form'];
19838
19634
  export const stripeAuthorizationResultActionDetails = T['io.flow.v0.models.stripe_authorization_result_action_details'];
@@ -19860,6 +19656,18 @@ export const surchargeSetting = T['io.flow.v0.models.surcharge_setting'];
19860
19656
  export const surchargeSettingDisplay = T['io.flow.v0.models.surcharge_setting_display'];
19861
19657
  export const tax = T['io.flow.v0.models.tax'];
19862
19658
  export const taxApplicability = T['io.flow.v0.enums.tax_applicability'];
19659
+ export const taxDutyCalculatorValidationError = T['io.flow.v0.models.tax_duty_calculator_validation_error'];
19660
+ export const taxDutyCalculatorValidationErrorCode = T['io.flow.v0.enums.tax_duty_calculator_validation_error_code'];
19661
+ export const taxDutyQuote = T['io.flow.v0.models.tax_duty_quote'];
19662
+ export const taxDutyQuoteFeeValue = T['io.flow.v0.models.tax_duty_quote_fee_value'];
19663
+ export const taxDutyQuoteForm = T['io.flow.v0.models.tax_duty_quote_form'];
19664
+ export const taxDutyQuoteLevyValue = T['io.flow.v0.unions.tax_duty_quote_levy_value'];
19665
+ export const taxDutyQuoteLineItem = T['io.flow.v0.models.tax_duty_quote_line_item'];
19666
+ export const taxDutyQuoteLineItemForm = T['io.flow.v0.models.tax_duty_quote_line_item_form'];
19667
+ export const taxDutyQuoteSimpleLevyValue = T['io.flow.v0.models.tax_duty_quote_simple_levy_value'];
19668
+ export const taxDutyQuoteSimpleShipping = T['io.flow.v0.models.tax_duty_quote_simple_shipping'];
19669
+ export const taxDutyQuoteSimpleShippingForm = T['io.flow.v0.models.tax_duty_quote_simple_shipping_form'];
19670
+ export const taxDutyQuoteValues = T['io.flow.v0.models.tax_duty_quote_values'];
19863
19671
  export const taxDutyTransactionReasonCode = T['io.flow.v0.enums.tax_duty_transaction_reason_code'];
19864
19672
  export const taxRegistration = T['io.flow.v0.models.tax_registration'];
19865
19673
  export const taxRegistrationForm = T['io.flow.v0.models.tax_registration_form'];
@@ -20014,4 +19822,5 @@ export const webhookStatus = T['io.flow.v0.enums.webhook_status'];
20014
19822
  export const withholdingDeduction = T['io.flow.v0.models.withholding_deduction'];
20015
19823
  export const withholdingDeductionType = T['io.flow.v0.enums.withholding_deduction_type'];
20016
19824
  export const zeroAmountIndicator = T['io.flow.v0.enums.zero_amount_indicator'];
19825
+ export const zeroLevyReasonCode = T['io.flow.v0.enums.zero_levy_reason_code'];
20017
19826
  export const zone = T['io.flow.v0.models.zone'];