@flowio/api-prop-types 10.16.109 → 10.16.112

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
@@ -29,6 +29,7 @@ T['io.flow.product.v0.models.product_taxonomy_data'] = PropTypes.exact({
29
29
  value_obj: PropTypes.arrayOf(T['io.flow.product.v0.models.product_taxonomy_value']),
30
30
  });
31
31
 
32
+ T['io.flow.tech.onboarding.playground.v0.enums.gabriel_item_type'] = PropTypes.oneOf(['physical', 'digital']);
32
33
  T['io.flow.apple.pay.v0.enums.apple_pay_line_item_type'] = PropTypes.oneOf(['final', 'pending']);
33
34
  T['io.flow.channel.shopify.v0.enums.channel_shopify_order_state_reason_code'] = PropTypes.oneOf(['placeholder_reason_code']);
34
35
 
@@ -98,19 +99,6 @@ T['io.flow.common.v0.unions.repeat_schedule'] = PropTypes.oneOfType([
98
99
  T['io.flow.common.v0.models.repeat_monthly'],
99
100
  ]);
100
101
 
101
- T['io.flow.common.v0.models.price'] = PropTypes.exact({
102
- amount: PropTypes.number.isRequired,
103
- currency: PropTypes.string.isRequired,
104
- label: PropTypes.string.isRequired,
105
- });
106
-
107
- T['io.flow.common.v0.models.price_with_base'] = PropTypes.exact({
108
- currency: PropTypes.string.isRequired,
109
- amount: PropTypes.number.isRequired,
110
- label: PropTypes.string.isRequired,
111
- base: T['io.flow.common.v0.models.price'],
112
- });
113
-
114
102
  T['io.flow.common.v0.models.price_source_price_book_reference'] = PropTypes.exact({
115
103
  id: PropTypes.string.isRequired,
116
104
  key: PropTypes.string.isRequired,
@@ -285,7 +273,7 @@ T['io.flow.common.v0.unions.discount_offer'] = PropTypes.oneOfType([
285
273
 
286
274
  T['io.flow.common.v0.models.discount_form'] = PropTypes.exact({
287
275
  offer: T['io.flow.common.v0.unions.discount_offer'].isRequired,
288
- target: T['io.flow.common.v0.enums.discount_target'],
276
+ target: T['io.flow.common.v0.enums.discount_target'].isRequired,
289
277
  label: PropTypes.string,
290
278
  });
291
279
 
@@ -296,6 +284,7 @@ T['io.flow.common.v0.models.discounts_form'] = PropTypes.exact({
296
284
  T['io.flow.common.v0.models.line_item_form'] = PropTypes.exact({
297
285
  number: PropTypes.string.isRequired,
298
286
  quantity: PropTypes.number.isRequired,
287
+ line_item_identifier: PropTypes.string,
299
288
  shipment_estimate: T['io.flow.common.v0.models.datetime_range'],
300
289
  price: T['io.flow.common.v0.models.money'],
301
290
  attributes: PropTypes.objectOf(PropTypes.string),
@@ -590,7 +579,7 @@ T['io.flow.common.v0.models.organization'] = PropTypes.exact({
590
579
  parent: T['io.flow.common.v0.models.organization_reference'],
591
580
  defaults: T['io.flow.common.v0.models.organization_defaults'],
592
581
  created_at: PropTypes.string,
593
- status: T['io.flow.common.v0.enums.organization_status'],
582
+ status: T['io.flow.common.v0.enums.organization_status'].isRequired,
594
583
  type: T['io.flow.common.v0.enums.organization_type'],
595
584
  });
596
585
 
@@ -884,7 +873,7 @@ T['io.flow.shopify.external.v0.models.shopify_customer'] = PropTypes.exact({
884
873
  tax_exempt: PropTypes.bool.isRequired,
885
874
  verified_email: PropTypes.bool.isRequired,
886
875
  state: T['io.flow.shopify.external.v0.enums.shopify_customer_state'].isRequired,
887
- accepts_marketing: PropTypes.bool,
876
+ accepts_marketing: PropTypes.bool.isRequired,
888
877
  default_address: PropTypes.object,
889
878
  email: PropTypes.string,
890
879
  first_name: PropTypes.string,
@@ -1034,7 +1023,7 @@ T['io.flow.shopify.external.v0.models.shopify_webhook_order_line_item'] = PropTy
1034
1023
 
1035
1024
  T['io.flow.shopify.external.v0.models.shopify_webhook_order'] = PropTypes.exact({
1036
1025
  id: PropTypes.number,
1037
- line_items: PropTypes.arrayOf(T['io.flow.shopify.external.v0.models.shopify_webhook_order_line_item']),
1026
+ line_items: PropTypes.arrayOf(T['io.flow.shopify.external.v0.models.shopify_webhook_order_line_item']).isRequired,
1038
1027
  });
1039
1028
 
1040
1029
  T['io.flow.shopify.external.v0.models.shopify_line_item_form'] = PropTypes.exact({
@@ -1137,7 +1126,7 @@ T['io.flow.shopify.external.v0.models.shopify_order_customer'] = PropTypes.exact
1137
1126
  });
1138
1127
 
1139
1128
  T['io.flow.shopify.external.v0.models.shopify_client_detail'] = PropTypes.exact({
1140
- accept_language: PropTypes.bool,
1129
+ accept_language: PropTypes.bool.isRequired,
1141
1130
  browser_height: PropTypes.number,
1142
1131
  browser_ip: PropTypes.string,
1143
1132
  browser_width: PropTypes.number,
@@ -1457,7 +1446,7 @@ T['io.flow.shopify.external.v0.models.shopify_order'] = PropTypes.exact({
1457
1446
  gateway: PropTypes.string,
1458
1447
  transactions: PropTypes.arrayOf(T['io.flow.shopify.external.v0.models.shopify_transaction_form']),
1459
1448
  send_receipt: PropTypes.bool,
1460
- metafields: PropTypes.arrayOf(T['io.flow.shopify.external.v0.models.metafield_form']),
1449
+ metafields: PropTypes.arrayOf(T['io.flow.shopify.external.v0.models.metafield_form']).isRequired,
1461
1450
  });
1462
1451
 
1463
1452
  T['io.flow.shopify.external.v0.models.shopify_order_wrapper'] = PropTypes.exact({
@@ -1530,7 +1519,7 @@ T['io.flow.shopify.external.v0.models.response_variant'] = PropTypes.exact({
1530
1519
  T['io.flow.shopify.external.v0.models.product'] = PropTypes.exact({
1531
1520
  id: PropTypes.number.isRequired,
1532
1521
  handle: PropTypes.string.isRequired,
1533
- variants: PropTypes.arrayOf(T['io.flow.shopify.external.v0.models.product_variant']),
1522
+ variants: PropTypes.arrayOf(T['io.flow.shopify.external.v0.models.product_variant']).isRequired,
1534
1523
  images: PropTypes.arrayOf(T['io.flow.shopify.external.v0.models.product_image']).isRequired,
1535
1524
  title: PropTypes.string.isRequired,
1536
1525
  vendor: PropTypes.string,
@@ -1631,7 +1620,7 @@ T['io.flow.shopify.external.v0.models.graphql_product'] = PropTypes.exact({
1631
1620
  id: PropTypes.string.isRequired,
1632
1621
  legacyResourceId: PropTypes.string.isRequired,
1633
1622
  handle: PropTypes.string.isRequired,
1634
- variants: PropTypes.arrayOf(T['io.flow.shopify.external.v0.models.graphql_product_variant']),
1623
+ variants: PropTypes.arrayOf(T['io.flow.shopify.external.v0.models.graphql_product_variant']).isRequired,
1635
1624
  images: PropTypes.arrayOf(T['io.flow.shopify.external.v0.models.graphql_product_image']).isRequired,
1636
1625
  title: PropTypes.string.isRequired,
1637
1626
  vendor: PropTypes.string,
@@ -3624,7 +3613,9 @@ T['io.flow.v0.models.product_sellability_result_deleted'] = PropTypes.exact({
3624
3613
  discriminator: PropTypes.oneOf(['product_sellability_result_deleted']).isRequired,
3625
3614
  event_id: PropTypes.string.isRequired,
3626
3615
  timestamp: PropTypes.string.isRequired,
3627
- organization: PropTypes.string.isRequired,
3616
+ organization: PropTypes.string,
3617
+ merchant: PropTypes.string,
3618
+ channel_id: PropTypes.string,
3628
3619
  id: PropTypes.string.isRequired,
3629
3620
  });
3630
3621
 
@@ -3784,6 +3775,14 @@ T['io.flow.v0.models.manifested_label_upserted'] = PropTypes.exact({
3784
3775
  fulfillment_key: PropTypes.string,
3785
3776
  });
3786
3777
 
3778
+ T['io.flow.v0.models.tariff_codes_deleted'] = PropTypes.exact({
3779
+ discriminator: PropTypes.oneOf(['tariff_codes_deleted']).isRequired,
3780
+ event_id: PropTypes.string.isRequired,
3781
+ timestamp: PropTypes.string.isRequired,
3782
+ organization: PropTypes.string.isRequired,
3783
+ id: PropTypes.string.isRequired,
3784
+ });
3785
+
3787
3786
  T['io.flow.v0.models.item_origin_deleted'] = PropTypes.exact({
3788
3787
  discriminator: PropTypes.oneOf(['item_origin_deleted']).isRequired,
3789
3788
  event_id: PropTypes.string.isRequired,
@@ -3848,6 +3847,15 @@ T['io.flow.v0.models.shipping_configuration_deleted'] = PropTypes.exact({
3848
3847
  id: PropTypes.string.isRequired,
3849
3848
  });
3850
3849
 
3850
+ T['io.flow.v0.models.order_state_deleted'] = PropTypes.exact({
3851
+ discriminator: PropTypes.oneOf(['order_state_deleted']).isRequired,
3852
+ event_id: PropTypes.string.isRequired,
3853
+ timestamp: PropTypes.string.isRequired,
3854
+ organization: PropTypes.string.isRequired,
3855
+ channel_id: PropTypes.string.isRequired,
3856
+ id: PropTypes.string.isRequired,
3857
+ });
3858
+
3851
3859
  T['io.flow.v0.models.order_identifier_deleted_v2'] = PropTypes.exact({
3852
3860
  discriminator: PropTypes.oneOf(['order_identifier_deleted_v2']).isRequired,
3853
3861
  event_id: PropTypes.string.isRequired,
@@ -4044,6 +4052,13 @@ T['io.flow.v0.models.organization_transaction_deleted'] = PropTypes.exact({
4044
4052
  id: PropTypes.string.isRequired,
4045
4053
  });
4046
4054
 
4055
+ T['io.flow.v0.models.amrutha_item_deleted'] = PropTypes.exact({
4056
+ discriminator: PropTypes.oneOf(['amrutha_item_deleted']).isRequired,
4057
+ event_id: PropTypes.string.isRequired,
4058
+ timestamp: PropTypes.string.isRequired,
4059
+ id: PropTypes.string.isRequired,
4060
+ });
4061
+
4047
4062
  T['io.flow.v0.models.generate_load'] = PropTypes.exact({
4048
4063
  discriminator: PropTypes.oneOf(['generate_load']).isRequired,
4049
4064
  event_id: PropTypes.string.isRequired,
@@ -4235,6 +4250,7 @@ T['io.flow.v0.enums.tax_duty_transaction_reason_code'] = PropTypes.oneOf([
4235
4250
  'wyol_shipment_above_de_min',
4236
4251
  'full_refund_without_shipment',
4237
4252
  'unfulfilled_order_above_de_min',
4253
+ 'order_cancellation_without_capture',
4238
4254
  ]);
4239
4255
 
4240
4256
  T['io.flow.v0.models.transaction_metadata_shipping_label_carrier'] = PropTypes.exact({
@@ -4243,6 +4259,13 @@ T['io.flow.v0.models.transaction_metadata_shipping_label_carrier'] = PropTypes.e
4243
4259
  tracking_number: PropTypes.string.isRequired,
4244
4260
  });
4245
4261
 
4262
+ T['io.flow.v0.models.transaction_metadata_merchant_fee_item'] = PropTypes.exact({
4263
+ type: PropTypes.string.isRequired,
4264
+ amount: PropTypes.number.isRequired,
4265
+ local_amount: PropTypes.number,
4266
+ description: PropTypes.string,
4267
+ });
4268
+
4246
4269
  T['io.flow.v0.models.transaction_metadata_original_transaction'] = PropTypes.exact({
4247
4270
  id: PropTypes.string.isRequired,
4248
4271
  });
@@ -4387,6 +4410,8 @@ T['io.flow.v0.models.test_upserted'] = PropTypes.exact({
4387
4410
  discriminator: PropTypes.oneOf(['test_upserted']).isRequired,
4388
4411
  event_id: PropTypes.string.isRequired,
4389
4412
  timestamp: PropTypes.string.isRequired,
4413
+ organization: PropTypes.string.isRequired,
4414
+ channel_id: PropTypes.string.isRequired,
4390
4415
  test: T['io.flow.ben.test.internal.v0.models.test'].isRequired,
4391
4416
  });
4392
4417
 
@@ -4505,6 +4530,26 @@ T['io.flow.v0.models.tax_duty_calculator_validation_error'] = PropTypes.exact({
4505
4530
  messages: PropTypes.arrayOf(PropTypes.string).isRequired,
4506
4531
  });
4507
4532
 
4533
+ T['io.flow.v0.models.harmonization_tariff_code'] = PropTypes.exact({
4534
+ tariff_code: PropTypes.string.isRequired,
4535
+ destination: PropTypes.string.isRequired,
4536
+ });
4537
+
4538
+ T['io.flow.v0.models.tariff_codes'] = PropTypes.exact({
4539
+ item_number: PropTypes.string.isRequired,
4540
+ product_id: PropTypes.string.isRequired,
4541
+ hs6_code: PropTypes.string.isRequired,
4542
+ codes: PropTypes.arrayOf(T['io.flow.v0.models.harmonization_tariff_code']).isRequired,
4543
+ });
4544
+
4545
+ T['io.flow.v0.models.tariff_codes_upserted'] = PropTypes.exact({
4546
+ discriminator: PropTypes.oneOf(['tariff_codes_upserted']).isRequired,
4547
+ event_id: PropTypes.string.isRequired,
4548
+ timestamp: PropTypes.string.isRequired,
4549
+ organization: PropTypes.string.isRequired,
4550
+ tariff_codes: T['io.flow.v0.models.tariff_codes'].isRequired,
4551
+ });
4552
+
4508
4553
  T['io.flow.v0.enums.surcharge_responsible_party'] = PropTypes.oneOf(['organization', 'customer']);
4509
4554
 
4510
4555
  T['io.flow.v0.models.surcharge_responsible_party_display'] = PropTypes.exact({
@@ -4617,7 +4662,7 @@ T['io.flow.shopify.external.v0.models.shopify_external_cart_item'] = PropTypes.e
4617
4662
  original_line_price: PropTypes.number.isRequired,
4618
4663
  total_discount: PropTypes.number.isRequired,
4619
4664
  discounted_price: PropTypes.number.isRequired,
4620
- discounts: PropTypes.arrayOf(T['io.flow.shopify.external.v0.models.shopify_cart_item_discount']),
4665
+ discounts: PropTypes.arrayOf(T['io.flow.shopify.external.v0.models.shopify_cart_item_discount']).isRequired,
4621
4666
  taxable: PropTypes.bool.isRequired,
4622
4667
  quantity: PropTypes.number.isRequired,
4623
4668
  sku: PropTypes.string,
@@ -4635,11 +4680,11 @@ T['io.flow.shopify.external.v0.models.shopify_external_cart_item'] = PropTypes.e
4635
4680
  product_description: PropTypes.string,
4636
4681
  product_type: PropTypes.string.isRequired,
4637
4682
  variant_title: PropTypes.string,
4638
- variant_options: PropTypes.arrayOf(PropTypes.string),
4683
+ variant_options: PropTypes.arrayOf(PropTypes.string).isRequired,
4639
4684
 
4640
4685
  line_level_discount_allocations: PropTypes.arrayOf(
4641
4686
  T['io.flow.shopify.external.v0.models.shopify_line_level_discount_allocation'],
4642
- ),
4687
+ ).isRequired,
4643
4688
  });
4644
4689
 
4645
4690
  T['io.flow.shopify.external.v0.models.shopify_external_cart'] = PropTypes.exact({
@@ -4655,7 +4700,7 @@ T['io.flow.shopify.external.v0.models.shopify_external_cart'] = PropTypes.exact(
4655
4700
  requires_shipping: PropTypes.bool.isRequired,
4656
4701
  currency: PropTypes.string,
4657
4702
  items: PropTypes.arrayOf(T['io.flow.shopify.external.v0.models.shopify_external_cart_item']).isRequired,
4658
- cart_level_discount_applications: PropTypes.arrayOf(T['io.flow.shopify.external.v0.models.shopify_discount_application']),
4703
+ cart_level_discount_applications: PropTypes.arrayOf(T['io.flow.shopify.external.v0.models.shopify_discount_application']).isRequired,
4659
4704
  });
4660
4705
 
4661
4706
  T['io.flow.v0.models.shopify_cart_conversion_shopify_cart'] = PropTypes.exact({
@@ -4737,7 +4782,16 @@ T['io.flow.v0.enums.onboarding_blocked_reason'] = PropTypes.oneOf([
4737
4782
  ]);
4738
4783
 
4739
4784
  T['io.flow.v0.enums.sellability_screening_mode'] = PropTypes.oneOf(['pre_onboarding', 'default_on', 'active']);
4740
- T['io.flow.v0.enums.sellability_result_error_code'] = PropTypes.oneOf(['insufficient_details', 'generic_error']);
4785
+
4786
+ T['io.flow.v0.enums.sellability_result_error_code'] = PropTypes.oneOf([
4787
+ 'insufficient_details',
4788
+ 'ineligible_category',
4789
+ 'wait_for_high_fidelity',
4790
+ 'external_service_unavailable',
4791
+ 'generic_error',
4792
+ 'catalog_processing_threshold',
4793
+ ]);
4794
+
4741
4795
  T['io.flow.v0.enums.sellability_result_status'] = PropTypes.oneOf(['in_review', 'succeeded', 'failed']);
4742
4796
 
4743
4797
  T['io.flow.v0.enums.sellability_error_code'] = PropTypes.oneOf([
@@ -4890,6 +4944,12 @@ T['io.flow.v0.models.ratecard_rate'] = PropTypes.exact({
4890
4944
  weight: PropTypes.number.isRequired,
4891
4945
  });
4892
4946
 
4947
+ T['io.flow.v0.models.ratecard_data'] = PropTypes.exact({
4948
+ dhlParcelDistributionCenter: PropTypes.string,
4949
+ glbeRatecardMetadataLaneIdentifier: PropTypes.string,
4950
+ pickupCenter: PropTypes.string,
4951
+ });
4952
+
4893
4953
  T['io.flow.v0.enums.commercial_invoice_mode'] = PropTypes.oneOf(['direct', 'indirect']);
4894
4954
 
4895
4955
  T['io.flow.v0.models.zone'] = PropTypes.exact({
@@ -4965,14 +5025,16 @@ T['io.flow.v0.models.query_filter_structured'] = PropTypes.exact({
4965
5025
  values: PropTypes.arrayOf(PropTypes.string).isRequired,
4966
5026
  });
4967
5027
 
4968
- T['io.flow.v0.models.sellability_region_with_reasons'] = PropTypes.exact({
4969
- region: PropTypes.string.isRequired,
4970
- reasons: PropTypes.arrayOf(PropTypes.string).isRequired,
5028
+ T['io.flow.v0.models.sellability_reason_with_regions'] = PropTypes.exact({
5029
+ reason: PropTypes.string.isRequired,
5030
+ regions: PropTypes.arrayOf(PropTypes.string).isRequired,
5031
+ review_status: PropTypes.string,
4971
5032
  });
4972
5033
 
4973
5034
  T['io.flow.v0.models.sellability_needs_action_attributes'] = PropTypes.exact({
4974
5035
  reason_code: PropTypes.string.isRequired,
4975
5036
  category_metafield_handles: PropTypes.arrayOf(PropTypes.string).isRequired,
5037
+ category_metafield_ids: PropTypes.arrayOf(PropTypes.string).isRequired,
4976
5038
  require_msds: PropTypes.bool,
4977
5039
  });
4978
5040
 
@@ -4984,15 +5046,22 @@ T['io.flow.v0.models.sellablility_region_result'] = PropTypes.exact({
4984
5046
  regions: PropTypes.arrayOf(PropTypes.string).isRequired,
4985
5047
  });
4986
5048
 
5049
+ T['io.flow.v0.models.sellability_restricted_reason'] = PropTypes.exact({
5050
+ type: T['io.flow.v0.enums.rule_effect_type'].isRequired,
5051
+ reasons_with_regions: PropTypes.arrayOf(T['io.flow.v0.models.sellability_reason_with_regions']).isRequired,
5052
+ });
5053
+
4987
5054
  T['io.flow.v0.models.sellability_restricted_region'] = PropTypes.exact({
4988
5055
  type: T['io.flow.v0.enums.rule_effect_type'].isRequired,
4989
- regions_with_reasons: PropTypes.arrayOf(T['io.flow.v0.models.sellability_region_with_reasons']).isRequired,
5056
+ regions: PropTypes.arrayOf(PropTypes.string).isRequired,
4990
5057
  });
4991
5058
 
4992
5059
  T['io.flow.v0.models.product_sellability_result'] = PropTypes.exact({
5060
+ id: PropTypes.string.isRequired,
4993
5061
  merchant_id: PropTypes.string,
4994
5062
  product_id: PropTypes.string.isRequired,
4995
5063
  restricted_regions: PropTypes.arrayOf(T['io.flow.v0.models.sellability_restricted_region']).isRequired,
5064
+ restricted_reasons: PropTypes.arrayOf(T['io.flow.v0.models.sellability_restricted_reason']).isRequired,
4996
5065
  needs_action_attributes: PropTypes.arrayOf(T['io.flow.v0.models.sellability_needs_action_attributes']),
4997
5066
  request_id: PropTypes.string,
4998
5067
  hs6_code: PropTypes.string,
@@ -5000,7 +5069,7 @@ T['io.flow.v0.models.product_sellability_result'] = PropTypes.exact({
5000
5069
 
5001
5070
  T['io.flow.v0.models.sellability_screening'] = PropTypes.exact({
5002
5071
  discriminator: PropTypes.oneOf(['sellability_screening']).isRequired,
5003
- sellability_result: T['io.flow.v0.models.product_sellability_result'],
5072
+ product_sellability_result: T['io.flow.v0.models.product_sellability_result'],
5004
5073
  request_id: PropTypes.string.isRequired,
5005
5074
  status: T['io.flow.v0.enums.sellability_result_status'].isRequired,
5006
5075
  error_code: T['io.flow.v0.enums.sellability_result_error_code'],
@@ -5011,7 +5080,9 @@ T['io.flow.v0.models.product_sellability_result_upserted'] = PropTypes.exact({
5011
5080
  discriminator: PropTypes.oneOf(['product_sellability_result_upserted']).isRequired,
5012
5081
  event_id: PropTypes.string.isRequired,
5013
5082
  timestamp: PropTypes.string.isRequired,
5014
- organization: PropTypes.string.isRequired,
5083
+ organization: PropTypes.string,
5084
+ merchant: PropTypes.string,
5085
+ channel_id: PropTypes.string,
5015
5086
  product_sellability_result: T['io.flow.v0.models.product_sellability_result'].isRequired,
5016
5087
  });
5017
5088
 
@@ -5655,6 +5726,18 @@ T['io.flow.v0.models.session_visitor'] = PropTypes.exact({
5655
5726
  });
5656
5727
 
5657
5728
  T['io.flow.v0.enums.organization_type'] = PropTypes.oneOf(['standalone', 'channel']);
5729
+
5730
+ T['io.flow.v0.models.order_state_rejection_reason_items_empty'] = PropTypes.exact({
5731
+ discriminator: PropTypes.oneOf(['order_state_rejection_reason_items_empty']).isRequired,
5732
+ line_items: PropTypes.arrayOf(PropTypes.string).isRequired,
5733
+ });
5734
+
5735
+ T['io.flow.v0.models.order_state_rejection_reason_restricted_item'] = PropTypes.exact({
5736
+ discriminator: PropTypes.oneOf(['order_state_rejection_reason_restricted_item']).isRequired,
5737
+ item_numbers: PropTypes.arrayOf(PropTypes.string).isRequired,
5738
+ });
5739
+
5740
+ T['io.flow.v0.enums.order_state_status'] = PropTypes.oneOf(['pending', 'accepted', 'rejected']);
5658
5741
  T['io.flow.v0.enums.order_refund_summary_partial_charged'] = PropTypes.oneOf(['per_item', 'for_order', 'by_value_percentage', 'by_quantity_percentage']);
5659
5742
 
5660
5743
  T['io.flow.v0.models.order_refund_summary_item'] = PropTypes.exact({
@@ -5859,6 +5942,8 @@ T['io.flow.v0.models.order_rule_reference'] = PropTypes.exact({
5859
5942
  key: PropTypes.string.isRequired,
5860
5943
  });
5861
5944
 
5945
+ T['io.flow.v0.enums.pricing_type'] = PropTypes.oneOf(['inclusive_pricing']);
5946
+
5862
5947
  T['io.flow.v0.models.order_rate'] = PropTypes.exact({
5863
5948
  from: PropTypes.string.isRequired,
5864
5949
  to: PropTypes.string.isRequired,
@@ -6269,6 +6354,7 @@ T['io.flow.v0.enums.label_request_method'] = PropTypes.oneOf([
6269
6354
  'notification_requiring_crossdock',
6270
6355
  'flow_simulation_sync',
6271
6356
  'autogenerated',
6357
+ 'legacy_shopify_graphql_server',
6272
6358
  ]);
6273
6359
 
6274
6360
  T['io.flow.v0.models.label_order_summary'] = PropTypes.exact({
@@ -6516,6 +6602,10 @@ T['io.flow.v0.models.product_restriction_result'] = PropTypes.exact({
6516
6602
  hs_code: PropTypes.string,
6517
6603
  restricted_regions_by_type: PropTypes.arrayOf(T['io.flow.v0.models.sellability_region_result']),
6518
6604
  needs_action_attributes: PropTypes.arrayOf(T['io.flow.v0.models.needs_action_attributes']),
6605
+ fingerprint: PropTypes.string,
6606
+ restriction_created_at: PropTypes.string,
6607
+ first_reviewed_at: PropTypes.string,
6608
+ seconds_to_first_review: PropTypes.number,
6519
6609
  });
6520
6610
 
6521
6611
  T['io.flow.v0.models.product_restriction_result_upserted'] = PropTypes.exact({
@@ -7788,12 +7878,6 @@ T['io.flow.v0.models.monthly_average'] = PropTypes.exact({
7788
7878
  number_transactions: PropTypes.number,
7789
7879
  });
7790
7880
 
7791
- T['io.flow.v0.models.operations_contact'] = PropTypes.exact({
7792
- company: PropTypes.string,
7793
- email: PropTypes.string,
7794
- phone: PropTypes.string,
7795
- });
7796
-
7797
7881
  T['io.flow.v0.models.ultimate_beneficiary_owner'] = PropTypes.exact({
7798
7882
  name: PropTypes.string.isRequired,
7799
7883
  dob: PropTypes.string.isRequired,
@@ -8045,8 +8129,14 @@ T['io.flow.v0.enums.fee_deduction_type'] = PropTypes.oneOf([
8045
8129
  'transfer',
8046
8130
  'negative_balance_guarantee',
8047
8131
  'sp',
8132
+ 'rev_share',
8048
8133
  ]);
8049
8134
 
8135
+ T['io.flow.v0.models.transaction_metadata_merchant_fee'] = PropTypes.exact({
8136
+ discriminator: PropTypes.oneOf(['merchant_fee']).isRequired,
8137
+ items: PropTypes.arrayOf(T['io.flow.v0.models.transaction_metadata_merchant_fee_item']).isRequired,
8138
+ });
8139
+
8050
8140
  T['io.flow.v0.models.transaction_metadata_tax_duty'] = PropTypes.exact({
8051
8141
  discriminator: PropTypes.oneOf(['transaction_tax_duty']).isRequired,
8052
8142
  reason_code: T['io.flow.v0.enums.tax_duty_transaction_reason_code'].isRequired,
@@ -8077,6 +8167,7 @@ T['io.flow.v0.models.transaction_metadata_manual'] = PropTypes.exact({
8077
8167
  description: PropTypes.string.isRequired,
8078
8168
  original: T['io.flow.v0.models.transaction_metadata_original_transaction'],
8079
8169
  url: PropTypes.string,
8170
+ recoup: PropTypes.bool,
8080
8171
  });
8081
8172
 
8082
8173
  T['io.flow.v0.models.transaction_metadata_carrier_charge'] = PropTypes.exact({
@@ -8085,7 +8176,7 @@ T['io.flow.v0.models.transaction_metadata_carrier_charge'] = PropTypes.exact({
8085
8176
  label_created_at: PropTypes.string.isRequired,
8086
8177
  carrier_id: PropTypes.string.isRequired,
8087
8178
  carrier_tracking_number: PropTypes.string.isRequired,
8088
- revenue_share_percentage: PropTypes.number.isRequired,
8179
+ revenue_share_percentage: PropTypes.number,
8089
8180
  outbound: T['io.flow.v0.models.transaction_metadata_outbound_transaction'],
8090
8181
  });
8091
8182
 
@@ -8169,6 +8260,7 @@ T['io.flow.v0.enums.transaction_source'] = PropTypes.oneOf([
8169
8260
  'merchant_fee',
8170
8261
  'b2b_tax',
8171
8262
  'b2b_tax_refund',
8263
+ 'b2b_fee_mor_tax',
8172
8264
  ]);
8173
8265
 
8174
8266
  T['io.flow.v0.models.parent_transaction_summary'] = PropTypes.exact({
@@ -8955,6 +9047,7 @@ T['io.flow.v0.unions.transaction_metadata'] = PropTypes.oneOfType([
8955
9047
  T['io.flow.v0.models.transaction_metadata_failed_payout'],
8956
9048
  T['io.flow.v0.models.transaction_metadata_payment_transaction'],
8957
9049
  T['io.flow.v0.models.transaction_metadata_tax_duty'],
9050
+ T['io.flow.v0.models.transaction_metadata_merchant_fee'],
8958
9051
  ]);
8959
9052
 
8960
9053
  T['io.flow.v0.models.transaction_network_details_card'] = PropTypes.exact({
@@ -9103,7 +9196,7 @@ T['io.flow.v0.models.capture_error'] = PropTypes.exact({
9103
9196
  decline_code: T['io.flow.v0.enums.capture_decline_code'].isRequired,
9104
9197
  });
9105
9198
 
9106
- T['io.flow.v0.enums.payment_fee_type'] = PropTypes.oneOf(['fx', 'mor', 'sp']);
9199
+ T['io.flow.v0.enums.payment_fee_type'] = PropTypes.oneOf(['fx', 'mor', 'sp', 'mor_tax']);
9107
9200
  T['io.flow.v0.enums.capture_status'] = PropTypes.oneOf(['initiated', 'pending', 'succeeded', 'failed', 'canceled']);
9108
9201
 
9109
9202
  T['io.flow.v0.models.payment_capture_status'] = PropTypes.exact({
@@ -9280,7 +9373,7 @@ T['io.flow.v0.models.ratecard_form'] = PropTypes.exact({
9280
9373
  glbe_shipping_method_id: PropTypes.string,
9281
9374
  glbe_proposition_name: PropTypes.string,
9282
9375
  channel_revenue_share_percentage: PropTypes.number,
9283
- data: PropTypes.objectOf(PropTypes.string),
9376
+ data: T['io.flow.v0.models.ratecard_data'],
9284
9377
  });
9285
9378
 
9286
9379
  T['io.flow.v0.models.ratecard'] = PropTypes.exact({
@@ -9548,24 +9641,6 @@ T['io.flow.v0.models.bank_account_info_usa'] = PropTypes.exact({
9548
9641
  account_number: PropTypes.string.isRequired,
9549
9642
  });
9550
9643
 
9551
- T['io.flow.v0.unions.bank_account_info'] = PropTypes.oneOfType([
9552
- T['io.flow.v0.models.bank_account_info_usa'],
9553
- T['io.flow.v0.models.bank_account_info_can'],
9554
- T['io.flow.v0.models.bank_account_info_gbr'],
9555
- T['io.flow.v0.models.bank_account_info_fra'],
9556
- T['io.flow.v0.models.bank_account_info_ita'],
9557
- ]);
9558
-
9559
- T['io.flow.v0.models.bank_account_form_info'] = PropTypes.exact({
9560
- discriminator: PropTypes.oneOf(['info']).isRequired,
9561
- info: T['io.flow.v0.unions.bank_account_info'].isRequired,
9562
- });
9563
-
9564
- T['io.flow.v0.unions.bank_account_form'] = PropTypes.oneOfType([
9565
- T['io.flow.v0.models.bank_account_form_info'],
9566
- T['io.flow.v0.models.bank_account_form_simple'],
9567
- ]);
9568
-
9569
9644
  T['io.flow.v0.enums.economic_title_location'] = PropTypes.oneOf(['high_seas', 'origination', 'destination']);
9570
9645
  T['io.flow.v0.enums.consumer_invoice_document_type'] = PropTypes.oneOf(['pdf']);
9571
9646
 
@@ -9825,15 +9900,6 @@ T['io.flow.v0.models.onboarding_merchant_scheduled_pickup'] = PropTypes.exact({
9825
9900
  instructions: PropTypes.string,
9826
9901
  });
9827
9902
 
9828
- T['io.flow.v0.models.third_party_logistics_partner'] = PropTypes.exact({
9829
- warehouse_address: T['io.flow.v0.models.merchant_onboarding_address'].isRequired,
9830
- warehouse_url: PropTypes.string,
9831
- location: T['io.flow.v0.models.merchant_onboarding_address'],
9832
- scheduled_pickups: PropTypes.arrayOf(T['io.flow.v0.models.onboarding_merchant_scheduled_pickup']),
9833
- operations_contact: T['io.flow.v0.models.operations_contact'].isRequired,
9834
- center_id: PropTypes.string,
9835
- });
9836
-
9837
9903
  T['io.flow.v0.models.number_range'] = PropTypes.exact({
9838
9904
  min: PropTypes.number.isRequired,
9839
9905
  max: PropTypes.number.isRequired,
@@ -10537,6 +10603,79 @@ T['io.flow.v0.models.channel_statement_deleted'] = PropTypes.exact({
10537
10603
  channel_statement: T['io.flow.v0.models.channel_statement'].isRequired,
10538
10604
  });
10539
10605
 
10606
+ T['io.flow.tech.onboarding.playground.v0.enums.amrutha_item_type'] = PropTypes.oneOf(['physical', 'digital']);
10607
+
10608
+ T['io.flow.common.v0.models.price'] = PropTypes.exact({
10609
+ amount: PropTypes.number.isRequired,
10610
+ currency: PropTypes.string.isRequired,
10611
+ label: PropTypes.string.isRequired,
10612
+ });
10613
+
10614
+ T['io.flow.tech.onboarding.playground.v0.models.gabriel_item_form'] = PropTypes.exact({
10615
+ number: PropTypes.string.isRequired,
10616
+ amount: T['io.flow.common.v0.models.price'].isRequired,
10617
+ description: PropTypes.string,
10618
+ type: T['io.flow.tech.onboarding.playground.v0.enums.gabriel_item_type'].isRequired,
10619
+ added_on: PropTypes.string.isRequired,
10620
+ });
10621
+
10622
+ T['io.flow.tech.onboarding.playground.v0.models.gabriel_item'] = PropTypes.exact({
10623
+ id: PropTypes.string.isRequired,
10624
+ number: PropTypes.string.isRequired,
10625
+ amount: T['io.flow.common.v0.models.price'].isRequired,
10626
+ description: PropTypes.string,
10627
+ type: T['io.flow.tech.onboarding.playground.v0.enums.gabriel_item_type'].isRequired,
10628
+ added_on: PropTypes.string.isRequired,
10629
+ });
10630
+
10631
+ T['io.flow.tech.onboarding.playground.v0.models.chenglin_item_form'] = PropTypes.exact({
10632
+ number: PropTypes.string.isRequired,
10633
+ amount: T['io.flow.common.v0.models.price'].isRequired,
10634
+ description: PropTypes.string,
10635
+ type: T['io.flow.tech.onboarding.playground.v0.enums.gabriel_item_type'].isRequired,
10636
+ added_on: PropTypes.string.isRequired,
10637
+ });
10638
+
10639
+ T['io.flow.tech.onboarding.playground.v0.models.chenglin_item'] = PropTypes.exact({
10640
+ id: PropTypes.string.isRequired,
10641
+ number: PropTypes.string.isRequired,
10642
+ amount: T['io.flow.common.v0.models.price'].isRequired,
10643
+ description: PropTypes.string,
10644
+ type: T['io.flow.tech.onboarding.playground.v0.enums.gabriel_item_type'].isRequired,
10645
+ added_on: PropTypes.string.isRequired,
10646
+ });
10647
+
10648
+ T['io.flow.tech.onboarding.playground.v0.models.amrutha_item_form'] = PropTypes.exact({
10649
+ number: PropTypes.string.isRequired,
10650
+ amount: T['io.flow.common.v0.models.price'].isRequired,
10651
+ description: PropTypes.string,
10652
+ type: T['io.flow.tech.onboarding.playground.v0.enums.amrutha_item_type'].isRequired,
10653
+ added_on: PropTypes.string.isRequired,
10654
+ });
10655
+
10656
+ T['io.flow.common.v0.models.price_with_base'] = PropTypes.exact({
10657
+ currency: PropTypes.string.isRequired,
10658
+ amount: PropTypes.number.isRequired,
10659
+ label: PropTypes.string.isRequired,
10660
+ base: T['io.flow.common.v0.models.price'],
10661
+ });
10662
+
10663
+ T['io.flow.tech.onboarding.playground.v0.models.amrutha_item'] = PropTypes.exact({
10664
+ id: PropTypes.string.isRequired,
10665
+ number: PropTypes.string.isRequired,
10666
+ amount: T['io.flow.common.v0.models.price'].isRequired,
10667
+ description: PropTypes.string,
10668
+ type: T['io.flow.tech.onboarding.playground.v0.enums.amrutha_item_type'].isRequired,
10669
+ added_on: PropTypes.string.isRequired,
10670
+ });
10671
+
10672
+ T['io.flow.v0.models.amrutha_item_upserted'] = PropTypes.exact({
10673
+ discriminator: PropTypes.oneOf(['amrutha_item_upserted']).isRequired,
10674
+ event_id: PropTypes.string.isRequired,
10675
+ timestamp: PropTypes.string.isRequired,
10676
+ item: T['io.flow.tech.onboarding.playground.v0.models.amrutha_item'].isRequired,
10677
+ });
10678
+
10540
10679
  T['io.flow.v0.enums.order_price_detail_key'] = PropTypes.oneOf([
10541
10680
  'adjustment',
10542
10681
  'subtotal',
@@ -11383,6 +11522,35 @@ T['io.flow.v0.models.tracking'] = PropTypes.exact({
11383
11522
  order_number: PropTypes.string,
11384
11523
  });
11385
11524
 
11525
+ T['io.flow.v0.models.order_state_rejection_reason_domestic_order'] = PropTypes.exact({
11526
+ discriminator: PropTypes.oneOf(['order_state_rejection_reason_domestic_order']).isRequired,
11527
+ destination_address: T['io.flow.v0.models.address'].isRequired,
11528
+ });
11529
+
11530
+ T['io.flow.v0.unions.order_state_rejection_reason'] = PropTypes.oneOfType([
11531
+ T['io.flow.v0.models.order_state_rejection_reason_restricted_item'],
11532
+ T['io.flow.v0.models.order_state_rejection_reason_domestic_order'],
11533
+ T['io.flow.v0.models.order_state_rejection_reason_items_empty'],
11534
+ ]);
11535
+
11536
+ T['io.flow.v0.models.order_state'] = PropTypes.exact({
11537
+ id: PropTypes.string.isRequired,
11538
+ order_number: PropTypes.string.isRequired,
11539
+ external_order_reference: PropTypes.string.isRequired,
11540
+ payment_requests: PropTypes.arrayOf(T['io.flow.v0.models.payment_request_reference']).isRequired,
11541
+ status: T['io.flow.v0.enums.order_state_status'].isRequired,
11542
+ rejection_reasons: PropTypes.arrayOf(T['io.flow.v0.unions.order_state_rejection_reason']),
11543
+ });
11544
+
11545
+ T['io.flow.v0.models.order_state_upserted'] = PropTypes.exact({
11546
+ discriminator: PropTypes.oneOf(['order_state_upserted']).isRequired,
11547
+ event_id: PropTypes.string.isRequired,
11548
+ timestamp: PropTypes.string.isRequired,
11549
+ organization: PropTypes.string.isRequired,
11550
+ channel_id: PropTypes.string.isRequired,
11551
+ order_state: T['io.flow.v0.models.order_state'].isRequired,
11552
+ });
11553
+
11386
11554
  T['io.flow.v0.models.know_your_business_usa_form'] = PropTypes.exact({
11387
11555
  discriminator: PropTypes.oneOf(['know_your_business_usa_form']).isRequired,
11388
11556
  primary_entity: T['io.flow.v0.unions.entity'].isRequired,
@@ -11437,6 +11605,22 @@ T['io.flow.v0.models.harmonized_landed_cost_upserted'] = PropTypes.exact({
11437
11605
  landed_cost: T['io.flow.v0.models.harmonized_landed_cost'].isRequired,
11438
11606
  });
11439
11607
 
11608
+ T['io.flow.v0.models.operations_contact'] = PropTypes.exact({
11609
+ company: PropTypes.string,
11610
+ email: PropTypes.string,
11611
+ phone: PropTypes.string,
11612
+ address: T['io.flow.v0.models.address'],
11613
+ });
11614
+
11615
+ T['io.flow.v0.models.third_party_logistics_partner'] = PropTypes.exact({
11616
+ warehouse_address: T['io.flow.v0.models.merchant_onboarding_address'].isRequired,
11617
+ warehouse_url: PropTypes.string,
11618
+ location: T['io.flow.v0.models.merchant_onboarding_address'],
11619
+ scheduled_pickups: PropTypes.arrayOf(T['io.flow.v0.models.onboarding_merchant_scheduled_pickup']),
11620
+ operations_contact: T['io.flow.v0.models.operations_contact'].isRequired,
11621
+ center_id: PropTypes.string,
11622
+ });
11623
+
11440
11624
  T['io.flow.v0.models.merchant_onboarding_beneficiary_details'] = PropTypes.exact({
11441
11625
  name: PropTypes.string,
11442
11626
  address: T['io.flow.v0.models.address'],
@@ -11448,6 +11632,37 @@ T['io.flow.v0.models.merchant_onboarding_beneficiary_details'] = PropTypes.exact
11448
11632
  bank_address: T['io.flow.v0.models.address'],
11449
11633
  });
11450
11634
 
11635
+ T['io.flow.v0.models.bank_account_info_kor'] = PropTypes.exact({
11636
+ discriminator: PropTypes.oneOf(['kor']).isRequired,
11637
+ name: PropTypes.string,
11638
+ address: T['io.flow.v0.models.address'],
11639
+ phone: PropTypes.string,
11640
+ email: PropTypes.string,
11641
+ bank_account_number: PropTypes.string.isRequired,
11642
+ bank_routing_number: PropTypes.string,
11643
+ bank_name: PropTypes.string,
11644
+ bank_address: T['io.flow.v0.models.address'],
11645
+ });
11646
+
11647
+ T['io.flow.v0.unions.bank_account_info'] = PropTypes.oneOfType([
11648
+ T['io.flow.v0.models.bank_account_info_usa'],
11649
+ T['io.flow.v0.models.bank_account_info_can'],
11650
+ T['io.flow.v0.models.bank_account_info_gbr'],
11651
+ T['io.flow.v0.models.bank_account_info_fra'],
11652
+ T['io.flow.v0.models.bank_account_info_ita'],
11653
+ T['io.flow.v0.models.bank_account_info_kor'],
11654
+ ]);
11655
+
11656
+ T['io.flow.v0.models.bank_account_form_info'] = PropTypes.exact({
11657
+ discriminator: PropTypes.oneOf(['info']).isRequired,
11658
+ info: T['io.flow.v0.unions.bank_account_info'].isRequired,
11659
+ });
11660
+
11661
+ T['io.flow.v0.unions.bank_account_form'] = PropTypes.oneOfType([
11662
+ T['io.flow.v0.models.bank_account_form_info'],
11663
+ T['io.flow.v0.models.bank_account_form_simple'],
11664
+ ]);
11665
+
11451
11666
  T['io.flow.v0.models.consumer_invoice_center_reference'] = PropTypes.exact({
11452
11667
  id: PropTypes.string.isRequired,
11453
11668
  key: PropTypes.string.isRequired,
@@ -12089,6 +12304,7 @@ T['io.flow.v0.models.b2b_credit_memo'] = PropTypes.exact({
12089
12304
  b2b_invoice_type: T['io.flow.v0.enums.b2b_invoice_type'].isRequired,
12090
12305
  center: T['io.flow.v0.models.consumer_invoice_center_reference'],
12091
12306
  order: T['io.flow.v0.models.consumer_invoice_order_summary'],
12307
+ voids_b2b_invoice: PropTypes.bool,
12092
12308
  });
12093
12309
 
12094
12310
  T['io.flow.v0.models.b2b_credit_memo_upserted'] = PropTypes.exact({
@@ -12670,6 +12886,7 @@ T['io.flow.v0.models.shopify_merchant_application_form'] = PropTypes.exact({
12670
12886
  ratecard_id: PropTypes.string,
12671
12887
  rate_card: PropTypes.string.isRequired,
12672
12888
  shop: T['io.flow.v0.models.shop'],
12889
+ settlement_currency: PropTypes.string,
12673
12890
  last_year_xborder_gmv: T['io.flow.v0.models.money'],
12674
12891
  last_month_xborder_gmv: T['io.flow.v0.models.money'],
12675
12892
  average_order_value: T['io.flow.v0.models.money'],
@@ -12707,6 +12924,7 @@ T['io.flow.v0.models.shopify_merchant_application'] = PropTypes.exact({
12707
12924
  activated_at: PropTypes.string,
12708
12925
  status_updated_at: PropTypes.string,
12709
12926
  shop: T['io.flow.v0.models.shop'],
12927
+ settlement_currency: PropTypes.string,
12710
12928
  last_year_xborder_gmv: T['io.flow.v0.models.money'],
12711
12929
  last_month_xborder_gmv: T['io.flow.v0.models.money'],
12712
12930
  average_order_value: T['io.flow.v0.models.money'],
@@ -12893,7 +13111,6 @@ T['io.flow.v0.models.common_merchant_application_form'] = PropTypes.exact({
12893
13111
  beneficiary_details: T['io.flow.v0.models.merchant_onboarding_beneficiary_details'],
12894
13112
  other_trade_sector: PropTypes.string,
12895
13113
  center_contact: T['io.flow.v0.models.operations_contact'],
12896
- center_address: T['io.flow.v0.models.address'],
12897
13114
  average_order_weight: PropTypes.number,
12898
13115
  average_order_weight_unit: T['io.flow.v0.enums.unit_of_measurement'],
12899
13116
  package_dimensions: PropTypes.arrayOf(T['io.flow.v0.models.dimension']),
@@ -12902,6 +13119,7 @@ T['io.flow.v0.models.common_merchant_application_form'] = PropTypes.exact({
12902
13119
  monthly_average_number_transactions: PropTypes.number,
12903
13120
  default_country_of_origin: PropTypes.string,
12904
13121
  shop: T['io.flow.v0.models.shop'],
13122
+ settlement_currency: PropTypes.string,
12905
13123
  rate_card: PropTypes.string,
12906
13124
  last_year_xborder_gmv: T['io.flow.v0.models.money'],
12907
13125
  last_month_xborder_gmv: T['io.flow.v0.models.money'],
@@ -12931,7 +13149,6 @@ T['io.flow.v0.models.common_merchant_application'] = PropTypes.exact({
12931
13149
  beneficiary_details: T['io.flow.v0.models.merchant_onboarding_beneficiary_details'],
12932
13150
  other_trade_sector: PropTypes.string,
12933
13151
  center_contact: T['io.flow.v0.models.operations_contact'],
12934
- center_address: T['io.flow.v0.models.address'],
12935
13152
  average_order_weight: PropTypes.number,
12936
13153
  average_order_weight_unit: T['io.flow.v0.enums.unit_of_measurement'],
12937
13154
  package_dimensions: PropTypes.arrayOf(T['io.flow.v0.models.dimension']),
@@ -12939,6 +13156,7 @@ T['io.flow.v0.models.common_merchant_application'] = PropTypes.exact({
12939
13156
  default_country_of_origin: PropTypes.string,
12940
13157
  rate_card: PropTypes.string.isRequired,
12941
13158
  shop: T['io.flow.v0.models.shop'],
13159
+ settlement_currency: PropTypes.string,
12942
13160
  created_at: PropTypes.string.isRequired,
12943
13161
  last_year_xborder_gmv: T['io.flow.v0.models.money'],
12944
13162
  last_month_xborder_gmv: T['io.flow.v0.models.money'],
@@ -14063,6 +14281,7 @@ T['io.flow.v0.models.order'] = PropTypes.exact({
14063
14281
  payment_source: T['io.flow.v0.enums.order_payment_source_type'],
14064
14282
  edits: PropTypes.arrayOf(T['io.flow.v0.models.edit_summary']),
14065
14283
  rates: PropTypes.arrayOf(T['io.flow.v0.models.order_rate']),
14284
+ pricing_type: T['io.flow.v0.enums.pricing_type'],
14066
14285
  });
14067
14286
 
14068
14287
  T['io.flow.v0.models.shopify_cart_conversion_flow_order'] = PropTypes.exact({
@@ -14785,6 +15004,8 @@ T['io.flow.v0.models.label_deleted_v2'] = PropTypes.exact({
14785
15004
  T['io.flow.v0.unions.event'] = PropTypes.oneOfType([
14786
15005
  T['io.flow.v0.models.test_upserted'],
14787
15006
  T['io.flow.v0.models.generate_load'],
15007
+ T['io.flow.v0.models.amrutha_item_upserted'],
15008
+ T['io.flow.v0.models.amrutha_item_deleted'],
14788
15009
  T['io.flow.v0.models.transaction_upserted'],
14789
15010
  T['io.flow.v0.models.organization_transaction_upserted'],
14790
15011
  T['io.flow.v0.models.organization_transaction_deleted'],
@@ -14845,6 +15066,8 @@ T['io.flow.v0.unions.event'] = PropTypes.oneOfType([
14845
15066
  T['io.flow.v0.models.order_upserted_v2'],
14846
15067
  T['io.flow.v0.models.order_identifier_deleted_v2'],
14847
15068
  T['io.flow.v0.models.order_identifier_upserted_v3'],
15069
+ T['io.flow.v0.models.order_state_upserted'],
15070
+ T['io.flow.v0.models.order_state_deleted'],
14848
15071
  T['io.flow.v0.models.fraud_status_changed'],
14849
15072
  T['io.flow.v0.models.center_upserted'],
14850
15073
  T['io.flow.v0.models.center_deleted'],
@@ -14869,6 +15092,8 @@ T['io.flow.v0.unions.event'] = PropTypes.oneOfType([
14869
15092
  T['io.flow.v0.models.item_origin_deleted'],
14870
15093
  T['io.flow.v0.models.harmonized_landed_cost_upserted'],
14871
15094
  T['io.flow.v0.models.fully_harmonized_item_upserted'],
15095
+ T['io.flow.v0.models.tariff_codes_upserted'],
15096
+ T['io.flow.v0.models.tariff_codes_deleted'],
14872
15097
  T['io.flow.v0.models.label_deleted_v2'],
14873
15098
  T['io.flow.v0.models.label_upserted_v2'],
14874
15099
  T['io.flow.v0.models.notification_upserted_v2'],
@@ -15134,6 +15359,8 @@ T['io.flow.v0.enums.capability'] = PropTypes.oneOf(['crossdock']);
15134
15359
  T['io.flow.v0.enums.event_type'] = PropTypes.oneOf([
15135
15360
  'test_upserted',
15136
15361
  'generate_load',
15362
+ 'amrutha_item_upserted',
15363
+ 'amrutha_item_deleted',
15137
15364
  'transaction_upserted',
15138
15365
  'organization_transaction_upserted',
15139
15366
  'organization_transaction_deleted',
@@ -15194,6 +15421,8 @@ T['io.flow.v0.enums.event_type'] = PropTypes.oneOf([
15194
15421
  'order_upserted_v2',
15195
15422
  'order_identifier_deleted_v2',
15196
15423
  'order_identifier_upserted_v3',
15424
+ 'order_state_upserted',
15425
+ 'order_state_deleted',
15197
15426
  'fraud_status_changed',
15198
15427
  'center_upserted',
15199
15428
  'center_deleted',
@@ -15218,6 +15447,8 @@ T['io.flow.v0.enums.event_type'] = PropTypes.oneOf([
15218
15447
  'item_origin_deleted',
15219
15448
  'harmonized_landed_cost_upserted',
15220
15449
  'fully_harmonized_item_upserted',
15450
+ 'tariff_codes_upserted',
15451
+ 'tariff_codes_deleted',
15221
15452
  'label_deleted_v2',
15222
15453
  'label_upserted_v2',
15223
15454
  'notification_upserted_v2',
@@ -15898,6 +16129,11 @@ T['io.flow.v0.models.reversal_put_form'] = PropTypes.exact({
15898
16129
  attributes: PropTypes.objectOf(PropTypes.string),
15899
16130
  });
15900
16131
 
16132
+ T['io.flow.v0.models.sellability_region_with_reasons'] = PropTypes.exact({
16133
+ region: PropTypes.string.isRequired,
16134
+ reasons: PropTypes.arrayOf(PropTypes.string).isRequired,
16135
+ });
16136
+
15901
16137
  T['io.flow.v0.models.session_authorization_form'] = PropTypes.exact({
15902
16138
  session: PropTypes.string.isRequired,
15903
16139
  });
@@ -16362,6 +16598,18 @@ T['io.flow.apple.pay.v0.models.apple_pay_payment_data'] = PropTypes.exact({
16362
16598
  paymentData: PropTypes.object.isRequired,
16363
16599
  });
16364
16600
 
16601
+ T['io.flow.tech.onboarding.playground.v0.enums.chenglin_item_type'] = PropTypes.oneOf(['physical', 'digital']);
16602
+
16603
+ T['io.flow.tech.onboarding.playground.v0.models.tech_onboarding_description'] = PropTypes.exact({
16604
+ description: PropTypes.string.isRequired,
16605
+ });
16606
+
16607
+ T['io.flow.ben.test.internal.v0.models.generate_load_rate'] = PropTypes.exact({
16608
+ organization_ids: PropTypes.arrayOf(PropTypes.string).isRequired,
16609
+ events_per_second: PropTypes.number.isRequired,
16610
+ duration_seconds: PropTypes.number.isRequired,
16611
+ });
16612
+
16365
16613
  T['io.flow.ben.test.internal.v0.models.test_form'] = PropTypes.exact({
16366
16614
  name: PropTypes.string.isRequired,
16367
16615
  });
@@ -16433,6 +16681,8 @@ export const allocationUpsertedV2 = T['io.flow.v0.models.allocation_upserted_v2'
16433
16681
  export const allocationV2 = T['io.flow.v0.models.allocation_v2'];
16434
16682
  export const amountMargin = T['io.flow.v0.models.amount_margin'];
16435
16683
  export const amountMarginForm = T['io.flow.v0.models.amount_margin_form'];
16684
+ export const amruthaItemDeleted = T['io.flow.v0.models.amrutha_item_deleted'];
16685
+ export const amruthaItemUpserted = T['io.flow.v0.models.amrutha_item_upserted'];
16436
16686
  export const analyticsExportType = T['io.flow.v0.models.analytics_export_type'];
16437
16687
  export const applePayMerchantValidationPayload = T['io.flow.v0.models.apple_pay_merchant_validation_payload'];
16438
16688
  export const applepaySdkCreateResultActionDetails = T['io.flow.v0.models.applepay_sdk_create_result_action_details'];
@@ -16506,6 +16756,7 @@ export const bankAccountInfoCan = T['io.flow.v0.models.bank_account_info_can'];
16506
16756
  export const bankAccountInfoFra = T['io.flow.v0.models.bank_account_info_fra'];
16507
16757
  export const bankAccountInfoGbr = T['io.flow.v0.models.bank_account_info_gbr'];
16508
16758
  export const bankAccountInfoIta = T['io.flow.v0.models.bank_account_info_ita'];
16759
+ export const bankAccountInfoKor = T['io.flow.v0.models.bank_account_info_kor'];
16509
16760
  export const bankAccountInfoUsa = T['io.flow.v0.models.bank_account_info_usa'];
16510
16761
  export const bankAccountReference = T['io.flow.v0.models.bank_account_reference'];
16511
16762
  export const bankAccountSummary = T['io.flow.v0.models.bank_account_summary'];
@@ -17005,6 +17256,7 @@ export const harmonizationDocument = T['io.flow.v0.models.harmonization_document
17005
17256
  export const harmonizationHs10ExportType = T['io.flow.v0.models.harmonization_hs10_export_type'];
17006
17257
  export const harmonizationHs6ExportType = T['io.flow.v0.models.harmonization_hs6_export_type'];
17007
17258
  export const harmonizationOverviewExportType = T['io.flow.v0.models.harmonization_overview_export_type'];
17259
+ export const harmonizationTariffCode = T['io.flow.v0.models.harmonization_tariff_code'];
17008
17260
  export const harmonizationTariffCodesExportType = T['io.flow.v0.models.harmonization_tariff_codes_export_type'];
17009
17261
  export const harmonizedCategoryReference = T['io.flow.v0.models.harmonized_category_reference'];
17010
17262
  export const harmonizedItem = T['io.flow.v0.models.harmonized_item'];
@@ -17321,6 +17573,14 @@ export const orderRulesSummary = T['io.flow.v0.models.order_rules_summary'];
17321
17573
  export const orderServiceChange = T['io.flow.v0.models.order_service_change'];
17322
17574
  export const orderServiceChangeForm = T['io.flow.v0.models.order_service_change_form'];
17323
17575
  export const orderServiceChangeRequestData = T['io.flow.v0.models.order_service_change_request_data'];
17576
+ export const orderState = T['io.flow.v0.models.order_state'];
17577
+ export const orderStateDeleted = T['io.flow.v0.models.order_state_deleted'];
17578
+ export const orderStateRejectionReason = T['io.flow.v0.unions.order_state_rejection_reason'];
17579
+ export const orderStateRejectionReasonDomesticOrder = T['io.flow.v0.models.order_state_rejection_reason_domestic_order'];
17580
+ export const orderStateRejectionReasonItemsEmpty = T['io.flow.v0.models.order_state_rejection_reason_items_empty'];
17581
+ export const orderStateRejectionReasonRestrictedItem = T['io.flow.v0.models.order_state_rejection_reason_restricted_item'];
17582
+ export const orderStateStatus = T['io.flow.v0.enums.order_state_status'];
17583
+ export const orderStateUpserted = T['io.flow.v0.models.order_state_upserted'];
17324
17584
  export const orderStatus = T['io.flow.v0.enums.order_status'];
17325
17585
  export const orderStorage = T['io.flow.v0.enums.order_storage'];
17326
17586
  export const orderSubmissionForm = T['io.flow.v0.models.order_submission_form'];
@@ -17602,6 +17862,7 @@ export const priceWithBaseAndDetails = T['io.flow.v0.models.price_with_base_and_
17602
17862
  export const pricing = T['io.flow.v0.models.pricing'];
17603
17863
  export const pricingLevySetting = T['io.flow.v0.enums.pricing_levy_setting'];
17604
17864
  export const pricingSettings = T['io.flow.v0.models.pricing_settings'];
17865
+ export const pricingType = T['io.flow.v0.enums.pricing_type'];
17605
17866
  export const pricingVersion = T['io.flow.v0.models.pricing_version'];
17606
17867
  export const processingEstimate = T['io.flow.v0.models.processing_estimate'];
17607
17868
  export const product = T['io.flow.v0.models.product'];
@@ -17655,6 +17916,7 @@ export const rateUpsertedV3 = T['io.flow.v0.models.rate_upserted_v3'];
17655
17916
  export const rateVersion = T['io.flow.v0.models.rate_version'];
17656
17917
  export const ratecard = T['io.flow.v0.models.ratecard'];
17657
17918
  export const ratecardCarrierSummary = T['io.flow.v0.models.ratecard_carrier_summary'];
17919
+ export const ratecardData = T['io.flow.v0.models.ratecard_data'];
17658
17920
  export const ratecardDeleted = T['io.flow.v0.models.ratecard_deleted'];
17659
17921
  export const ratecardEstimate = T['io.flow.v0.unions.ratecard_estimate'];
17660
17922
  export const ratecardEstimateForm = T['io.flow.v0.models.ratecard_estimate_form'];
@@ -17776,11 +18038,13 @@ export const selfBillingAgreement = T['io.flow.v0.models.self_billing_agreement'
17776
18038
  export const sellabilityError = T['io.flow.v0.models.sellability_error'];
17777
18039
  export const sellabilityErrorCode = T['io.flow.v0.enums.sellability_error_code'];
17778
18040
  export const sellabilityNeedsActionAttributes = T['io.flow.v0.models.sellability_needs_action_attributes'];
18041
+ export const sellabilityReasonWithRegions = T['io.flow.v0.models.sellability_reason_with_regions'];
17779
18042
  export const sellabilityRegionResult = T['io.flow.v0.models.sellability_region_result'];
17780
18043
  export const sellabilityRegionWithReasons = T['io.flow.v0.models.sellability_region_with_reasons'];
17781
18044
  export const sellabilityRequest = T['io.flow.v0.unions.sellability_request'];
17782
18045
  export const sellabilityRequestStatus = T['io.flow.v0.enums.sellability_request_status'];
17783
18046
  export const sellabilityResponse = T['io.flow.v0.unions.sellability_response'];
18047
+ export const sellabilityRestrictedReason = T['io.flow.v0.models.sellability_restricted_reason'];
17784
18048
  export const sellabilityRestrictedRegion = T['io.flow.v0.models.sellability_restricted_region'];
17785
18049
  export const sellabilityResultErrorCode = T['io.flow.v0.enums.sellability_result_error_code'];
17786
18050
  export const sellabilityResultStatus = T['io.flow.v0.enums.sellability_result_status'];
@@ -17944,6 +18208,9 @@ export const surchargeResponsibleParty = T['io.flow.v0.enums.surcharge_responsib
17944
18208
  export const surchargeResponsiblePartyDisplay = T['io.flow.v0.models.surcharge_responsible_party_display'];
17945
18209
  export const surchargeSetting = T['io.flow.v0.models.surcharge_setting'];
17946
18210
  export const surchargeSettingDisplay = T['io.flow.v0.models.surcharge_setting_display'];
18211
+ export const tariffCodes = T['io.flow.v0.models.tariff_codes'];
18212
+ export const tariffCodesDeleted = T['io.flow.v0.models.tariff_codes_deleted'];
18213
+ export const tariffCodesUpserted = T['io.flow.v0.models.tariff_codes_upserted'];
17947
18214
  export const tax = T['io.flow.v0.models.tax'];
17948
18215
  export const taxApplicability = T['io.flow.v0.enums.tax_applicability'];
17949
18216
  export const taxBreakdown = T['io.flow.v0.models.tax_breakdown'];
@@ -18046,6 +18313,8 @@ export const transactionMetadataChannelOrganizationTransaction = T['io.flow.v0.m
18046
18313
  export const transactionMetadataFailedPayout = T['io.flow.v0.models.transaction_metadata_failed_payout'];
18047
18314
  export const transactionMetadataFailedPayoutReference = T['io.flow.v0.models.transaction_metadata_failed_payout_reference'];
18048
18315
  export const transactionMetadataManual = T['io.flow.v0.models.transaction_metadata_manual'];
18316
+ export const transactionMetadataMerchantFee = T['io.flow.v0.models.transaction_metadata_merchant_fee'];
18317
+ export const transactionMetadataMerchantFeeItem = T['io.flow.v0.models.transaction_metadata_merchant_fee_item'];
18049
18318
  export const transactionMetadataOriginalTransaction = T['io.flow.v0.models.transaction_metadata_original_transaction'];
18050
18319
  export const transactionMetadataOutboundTransaction = T['io.flow.v0.models.transaction_metadata_outbound_transaction'];
18051
18320
  export const transactionMetadataPaymentTransaction = T['io.flow.v0.models.transaction_metadata_payment_transaction'];