@flowio/api-prop-types 10.16.71 → 10.16.73

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
@@ -995,6 +995,16 @@ T['io.flow.stripe.v0.models.plan'] = PropTypes.exact({
995
995
  type: PropTypes.string,
996
996
  });
997
997
 
998
+ T['io.flow.stripe.v0.models.klarna_dob_form'] = PropTypes.exact({
999
+ day: PropTypes.number.isRequired,
1000
+ month: PropTypes.number.isRequired,
1001
+ year: PropTypes.number.isRequired,
1002
+ });
1003
+
1004
+ T['io.flow.stripe.v0.models.payment_method_klarna_form'] = PropTypes.exact({
1005
+ dob: T['io.flow.stripe.v0.models.klarna_dob_form'],
1006
+ });
1007
+
998
1008
  T['io.flow.stripe.v0.models.payment_method_card_form'] = PropTypes.exact({
999
1009
  exp_month: PropTypes.string.isRequired,
1000
1010
  exp_year: PropTypes.string.isRequired,
@@ -1018,10 +1028,6 @@ T['io.flow.stripe.v0.models.payment_method_options_card_form'] = PropTypes.exact
1018
1028
  mcc: PropTypes.string,
1019
1029
  });
1020
1030
 
1021
- T['io.flow.stripe.v0.models.payment_method_options_form'] = PropTypes.exact({
1022
- card: T['io.flow.stripe.v0.models.payment_method_options_card_form'],
1023
- });
1024
-
1025
1031
  T['io.flow.stripe.v0.models.payment_method_options_card'] = PropTypes.exact({
1026
1032
  network: PropTypes.string,
1027
1033
  request_three_d_secure: T['io.flow.stripe.v0.enums.request_three_d_secure_type'],
@@ -1041,11 +1047,6 @@ T['io.flow.stripe.v0.enums.payment_intent_status'] = PropTypes.oneOf([
1041
1047
  ]);
1042
1048
 
1043
1049
  T['io.flow.stripe.v0.enums.setup_future_usage'] = PropTypes.oneOf(['on_session', 'off_session']);
1044
-
1045
- T['io.flow.stripe.v0.models.payment_method_options'] = PropTypes.exact({
1046
- card: T['io.flow.stripe.v0.models.payment_method_options_card'],
1047
- });
1048
-
1049
1050
  T['io.flow.stripe.v0.enums.confirmation_method'] = PropTypes.oneOf(['automatic', 'manual']);
1050
1051
  T['io.flow.stripe.v0.enums.capture_method'] = PropTypes.oneOf(['automatic', 'manual']);
1051
1052
 
@@ -1063,6 +1064,40 @@ T['io.flow.stripe.v0.models.payment_intent_cancellation_form'] = PropTypes.exact
1063
1064
  cancellation_reason: T['io.flow.stripe.v0.enums.cancellation_reason'],
1064
1065
  });
1065
1066
 
1067
+ T['io.flow.stripe.v0.models.marketplace_seller_info'] = PropTypes.exact({
1068
+ name: PropTypes.string.isRequired,
1069
+ id: PropTypes.string,
1070
+ product_category: PropTypes.string,
1071
+ });
1072
+
1073
+ T['io.flow.stripe.v0.models.payment_details'] = PropTypes.exact({
1074
+ marketplace_seller_info: T['io.flow.stripe.v0.models.marketplace_seller_info'],
1075
+ });
1076
+
1077
+ T['io.flow.stripe.v0.models.payment_method_options_klarna_form'] = PropTypes.exact({
1078
+ capture_method: T['io.flow.stripe.v0.enums.capture_method'],
1079
+ preferred_locale: T['io.flow.stripe.v0.enums.preferred_locale_klarna'],
1080
+ setup_future_usage: T['io.flow.stripe.v0.enums.setup_future_usage'],
1081
+ payment_details: T['io.flow.stripe.v0.models.payment_details'],
1082
+ });
1083
+
1084
+ T['io.flow.stripe.v0.models.payment_method_options_form'] = PropTypes.exact({
1085
+ card: T['io.flow.stripe.v0.models.payment_method_options_card_form'],
1086
+ klarna: T['io.flow.stripe.v0.models.payment_method_options_klarna_form'],
1087
+ });
1088
+
1089
+ T['io.flow.stripe.v0.models.payment_method_options_klarna'] = PropTypes.exact({
1090
+ capture_method: T['io.flow.stripe.v0.enums.capture_method'],
1091
+ preferred_locale: T['io.flow.stripe.v0.enums.preferred_locale_klarna'],
1092
+ setup_future_usage: T['io.flow.stripe.v0.enums.setup_future_usage'],
1093
+ payment_details: T['io.flow.stripe.v0.models.payment_details'],
1094
+ });
1095
+
1096
+ T['io.flow.stripe.v0.models.payment_method_options'] = PropTypes.exact({
1097
+ card: T['io.flow.stripe.v0.models.payment_method_options_card'],
1098
+ klarna: T['io.flow.stripe.v0.models.payment_method_options_klarna'],
1099
+ });
1100
+
1066
1101
  T['io.flow.stripe.v0.enums.order_item_type'] = PropTypes.oneOf(['sku', 'tax', 'shipping', 'discount']);
1067
1102
 
1068
1103
  T['io.flow.stripe.v0.models.order_item_request'] = PropTypes.exact({
@@ -1126,6 +1161,13 @@ T['io.flow.stripe.v0.models.payment_method_billing_details'] = PropTypes.exact({
1126
1161
  phone: PropTypes.string,
1127
1162
  });
1128
1163
 
1164
+ T['io.flow.stripe.v0.models.payment_method_form_klarna'] = PropTypes.exact({
1165
+ type: PropTypes.oneOf(['klarna']).isRequired,
1166
+ billing_details: T['io.flow.stripe.v0.models.payment_method_billing_details'],
1167
+ metadata: PropTypes.object,
1168
+ klarna: T['io.flow.stripe.v0.models.payment_method_klarna_form'].isRequired,
1169
+ });
1170
+
1129
1171
  T['io.flow.stripe.v0.models.payment_method_form_card'] = PropTypes.exact({
1130
1172
  type: PropTypes.oneOf(['card']).isRequired,
1131
1173
  billing_details: T['io.flow.stripe.v0.models.payment_method_billing_details'],
@@ -1133,7 +1175,17 @@ T['io.flow.stripe.v0.models.payment_method_form_card'] = PropTypes.exact({
1133
1175
  card: T['io.flow.stripe.v0.models.payment_method_card_form'].isRequired,
1134
1176
  });
1135
1177
 
1136
- T['io.flow.stripe.v0.unions.payment_method_form'] = PropTypes.oneOfType([T['io.flow.stripe.v0.models.payment_method_form_card']]);
1178
+ T['io.flow.stripe.v0.unions.payment_method_form'] = PropTypes.oneOfType([
1179
+ T['io.flow.stripe.v0.models.payment_method_form_card'],
1180
+ T['io.flow.stripe.v0.models.payment_method_form_klarna'],
1181
+ ]);
1182
+
1183
+ T['io.flow.stripe.v0.models.payment_method_data_klarna'] = PropTypes.exact({
1184
+ type: PropTypes.oneOf(['klarna']).isRequired,
1185
+ billing_details: T['io.flow.stripe.v0.models.payment_method_billing_details'],
1186
+ metadata: PropTypes.object,
1187
+ klarna: T['io.flow.stripe.v0.models.payment_method_klarna_form'].isRequired,
1188
+ });
1137
1189
 
1138
1190
  T['io.flow.stripe.v0.models.payment_method_data_card'] = PropTypes.exact({
1139
1191
  type: PropTypes.oneOf(['card']).isRequired,
@@ -1142,7 +1194,10 @@ T['io.flow.stripe.v0.models.payment_method_data_card'] = PropTypes.exact({
1142
1194
  card: T['io.flow.stripe.v0.models.payment_method_card_form'].isRequired,
1143
1195
  });
1144
1196
 
1145
- T['io.flow.stripe.v0.unions.payment_method_data'] = PropTypes.oneOfType([T['io.flow.stripe.v0.models.payment_method_data_card']]);
1197
+ T['io.flow.stripe.v0.unions.payment_method_data'] = PropTypes.oneOfType([
1198
+ T['io.flow.stripe.v0.models.payment_method_data_card'],
1199
+ T['io.flow.stripe.v0.models.payment_method_data_klarna'],
1200
+ ]);
1146
1201
 
1147
1202
  T['io.flow.stripe.v0.models.payment_intent_confirmation_form'] = PropTypes.exact({
1148
1203
  off_session: PropTypes.bool,
@@ -1643,6 +1698,7 @@ T['io.flow.stripe.v0.models.payment_method'] = PropTypes.exact({
1643
1698
  billing_details: T['io.flow.stripe.v0.models.payment_method_billing_details'],
1644
1699
  card: T['io.flow.stripe.v0.models.payment_method_card_details'],
1645
1700
  card_present: PropTypes.object,
1701
+ klarna: PropTypes.object,
1646
1702
  created: PropTypes.number.isRequired,
1647
1703
  customer: PropTypes.string,
1648
1704
  livemode: PropTypes.bool.isRequired,
@@ -3453,6 +3509,7 @@ T['io.flow.v0.enums.onboarding_blocked_reason'] = PropTypes.oneOf([
3453
3509
  'business_street_address_is_blank',
3454
3510
  'business_street_address_is_po_box',
3455
3511
  'exception_merchant',
3512
+ 'application_missing',
3456
3513
  ]);
3457
3514
 
3458
3515
  T['io.flow.v0.models.session_experiment_variant_form'] = PropTypes.exact({
@@ -4813,22 +4870,6 @@ T['io.flow.v0.models.merchant_rejected'] = PropTypes.exact({
4813
4870
  deactivate_at: PropTypes.string,
4814
4871
  });
4815
4872
 
4816
- T['io.flow.v0.unions.onboarding_state'] = PropTypes.oneOfType([
4817
- T['io.flow.v0.models.in_compliance_review'],
4818
- T['io.flow.v0.models.setup_in_progress'],
4819
- T['io.flow.v0.models.merchant_rejected'],
4820
- T['io.flow.v0.models.setup_blocked'],
4821
- T['io.flow.v0.models.setup_completed'],
4822
- T['io.flow.v0.models.merchant_activated'],
4823
- T['io.flow.v0.models.merchant_deactivated'],
4824
- ]);
4825
-
4826
- T['io.flow.v0.models.onboarding_state_transition'] = PropTypes.exact({
4827
- id: PropTypes.string.isRequired,
4828
- state: T['io.flow.v0.unions.onboarding_state'].isRequired,
4829
- started_at: PropTypes.string.isRequired,
4830
- });
4831
-
4832
4873
  T['io.flow.v0.enums.region_type'] = PropTypes.oneOf(['state', 'province', 'jurisdiction']);
4833
4874
 
4834
4875
  T['io.flow.v0.models.merchant_info'] = PropTypes.exact({
@@ -4852,6 +4893,30 @@ T['io.flow.v0.models.merchant_gift_card_error'] = PropTypes.exact({
4852
4893
  messages: PropTypes.arrayOf(PropTypes.string),
4853
4894
  });
4854
4895
 
4896
+ T['io.flow.v0.enums.merchant_disabled_reason'] = PropTypes.oneOf(['merchant_deactivated', 'merchant_rejected']);
4897
+
4898
+ T['io.flow.v0.models.merchant_disabled'] = PropTypes.exact({
4899
+ discriminator: PropTypes.oneOf(['merchant_disabled']).isRequired,
4900
+ reason: T['io.flow.v0.enums.merchant_disabled_reason'].isRequired,
4901
+ });
4902
+
4903
+ T['io.flow.v0.unions.onboarding_state'] = PropTypes.oneOfType([
4904
+ T['io.flow.v0.models.in_compliance_review'],
4905
+ T['io.flow.v0.models.setup_in_progress'],
4906
+ T['io.flow.v0.models.merchant_rejected'],
4907
+ T['io.flow.v0.models.setup_blocked'],
4908
+ T['io.flow.v0.models.setup_completed'],
4909
+ T['io.flow.v0.models.merchant_activated'],
4910
+ T['io.flow.v0.models.merchant_deactivated'],
4911
+ T['io.flow.v0.models.merchant_disabled'],
4912
+ ]);
4913
+
4914
+ T['io.flow.v0.models.onboarding_state_transition'] = PropTypes.exact({
4915
+ id: PropTypes.string.isRequired,
4916
+ state: T['io.flow.v0.unions.onboarding_state'].isRequired,
4917
+ started_at: PropTypes.string.isRequired,
4918
+ });
4919
+
4855
4920
  T['io.flow.v0.enums.margin_type'] = PropTypes.oneOf(['fixed', 'percent']);
4856
4921
 
4857
4922
  T['io.flow.v0.models.margin'] = PropTypes.exact({
@@ -5020,6 +5085,10 @@ T['io.flow.v0.enums.trueup_surcharge_type'] = PropTypes.oneOf([
5020
5085
  'emergency',
5021
5086
  'peak',
5022
5087
  'address_correction',
5088
+ 'security',
5089
+ 'eei_filing',
5090
+ 'fixed_ddp',
5091
+ 'fixed_currency_conversion',
5023
5092
  ]);
5024
5093
 
5025
5094
  T['io.flow.v0.models.trueup_label_surcharge'] = PropTypes.exact({
@@ -5990,37 +6059,13 @@ T['io.flow.v0.models.discount_offer_percent'] = PropTypes.exact({
5990
6059
 
5991
6060
  T['io.flow.v0.enums.authorization_option'] = PropTypes.oneOf(['store_card']);
5992
6061
 
5993
- T['io.flow.v0.enums.unit_of_measurement'] = PropTypes.oneOf([
5994
- 'millimeter',
5995
- 'centimeter',
5996
- 'inch',
5997
- 'foot',
5998
- 'cubic_inch',
5999
- 'cubic_meter',
6000
- 'gram',
6001
- 'kilogram',
6002
- 'meter',
6003
- 'ounce',
6004
- 'pound',
6005
- ]);
6006
-
6007
- T['io.flow.v0.models.fuel_surcharge_by_weight'] = PropTypes.exact({
6008
- discriminator: PropTypes.oneOf(['fuel_surcharge_by_weight']).isRequired,
6009
- amount: PropTypes.number.isRequired,
6010
- weight_unit: T['io.flow.v0.enums.unit_of_measurement'].isRequired,
6011
- });
6012
-
6013
- T['io.flow.v0.unions.fuel_surcharge_rate'] = PropTypes.oneOfType([
6014
- T['io.flow.v0.models.fuel_surcharge_percent'],
6015
- T['io.flow.v0.models.fuel_surcharge_by_weight'],
6062
+ T['io.flow.v0.enums.package_dimensions_source'] = PropTypes.oneOf([
6063
+ 'provided',
6064
+ 'item_dimensions_estimated',
6065
+ 'dimensions_estimated',
6066
+ 'default_item_dimensions_estimated',
6016
6067
  ]);
6017
6068
 
6018
- T['io.flow.v0.models.fee_weight'] = PropTypes.exact({
6019
- weight: PropTypes.number.isRequired,
6020
- unit: T['io.flow.v0.enums.unit_of_measurement'].isRequired,
6021
- });
6022
-
6023
- T['io.flow.v0.enums.package_dimensions_source'] = PropTypes.oneOf(['provided', 'dimensions_estimated']);
6024
6069
  T['io.flow.v0.enums.shipment_recipient'] = PropTypes.oneOf(['customer', 'return', 'crossdock']);
6025
6070
  T['io.flow.v0.enums.direction'] = PropTypes.oneOf(['outbound', 'return']);
6026
6071
  T['io.flow.v0.enums.levy_component'] = PropTypes.oneOf(['goods', 'duty', 'insurance', 'freight', 'vat']);
@@ -6166,43 +6211,6 @@ T['io.flow.v0.models.surcharge_setting'] = PropTypes.exact({
6166
6211
  responsible_party: T['io.flow.v0.enums.surcharge_responsible_party'].isRequired,
6167
6212
  });
6168
6213
 
6169
- T['io.flow.v0.models.measurement'] = PropTypes.exact({
6170
- value: PropTypes.string.isRequired,
6171
- units: T['io.flow.v0.enums.unit_of_measurement'].isRequired,
6172
- });
6173
-
6174
- T['io.flow.v0.models.tax_duty_quote_line_item_form'] = PropTypes.exact({
6175
- primary_identifier: PropTypes.string.isRequired,
6176
- attributes: PropTypes.objectOf(PropTypes.string),
6177
- ship_from: T['io.flow.v0.models.street_address'].isRequired,
6178
- quantity: PropTypes.number.isRequired,
6179
- unit_price: PropTypes.number.isRequired,
6180
- unit_weight: T['io.flow.v0.models.measurement'],
6181
- country_of_origin: PropTypes.string,
6182
- hs_code: PropTypes.string,
6183
- includes: PropTypes.arrayOf(T['io.flow.v0.enums.levy_inclusion']).isRequired,
6184
- });
6185
-
6186
- T['io.flow.v0.models.estimated_dimensions'] = PropTypes.exact({
6187
- depth: T['io.flow.v0.models.measurement'].isRequired,
6188
- length: T['io.flow.v0.models.measurement'].isRequired,
6189
- weight: T['io.flow.v0.models.measurement'].isRequired,
6190
- width: T['io.flow.v0.models.measurement'].isRequired,
6191
- });
6192
-
6193
- T['io.flow.v0.models.dimension_estimate_form'] = PropTypes.exact({
6194
- q: PropTypes.string.isRequired,
6195
- dimensions: T['io.flow.v0.models.estimated_dimensions'].isRequired,
6196
- position: PropTypes.number,
6197
- });
6198
-
6199
- T['io.flow.v0.models.dimension_estimate'] = PropTypes.exact({
6200
- id: PropTypes.string.isRequired,
6201
- q: PropTypes.string.isRequired,
6202
- dimensions: T['io.flow.v0.models.estimated_dimensions'].isRequired,
6203
- position: PropTypes.number.isRequired,
6204
- });
6205
-
6206
6214
  T['io.flow.v0.models.percent_margin'] = PropTypes.exact({
6207
6215
  discriminator: PropTypes.oneOf(['percent_margin']).isRequired,
6208
6216
  percentage: PropTypes.number.isRequired,
@@ -6304,11 +6312,6 @@ T['io.flow.v0.models.lane_summary'] = PropTypes.exact({
6304
6312
  ratecard: T['io.flow.v0.models.ratecard_summary'].isRequired,
6305
6313
  });
6306
6314
 
6307
- T['io.flow.v0.models.option_weight_estimates'] = PropTypes.exact({
6308
- gravitational: T['io.flow.v0.models.measurement'].isRequired,
6309
- dimensional: T['io.flow.v0.models.measurement'].isRequired,
6310
- });
6311
-
6312
6315
  T['io.flow.v0.models.delivery_window'] = PropTypes.exact({
6313
6316
  from: PropTypes.string.isRequired,
6314
6317
  to: PropTypes.string.isRequired,
@@ -6725,31 +6728,6 @@ T['io.flow.v0.models.order_options'] = PropTypes.exact({
6725
6728
 
6726
6729
  T['io.flow.v0.enums.delivered_duty'] = PropTypes.oneOf(['paid', 'unpaid']);
6727
6730
 
6728
- T['io.flow.v0.models.tax_duty_quote_form'] = PropTypes.exact({
6729
- primary_identifier: PropTypes.string.isRequired,
6730
- attributes: PropTypes.objectOf(PropTypes.string),
6731
- delivered_duty: T['io.flow.v0.enums.delivered_duty'].isRequired,
6732
- destination: T['io.flow.v0.models.street_address'].isRequired,
6733
- currency: PropTypes.string.isRequired,
6734
- lines: PropTypes.arrayOf(T['io.flow.v0.models.tax_duty_quote_line_item_form']).isRequired,
6735
- shipping: PropTypes.arrayOf(T['io.flow.v0.models.tax_duty_quote_simple_shipping_form']).isRequired,
6736
- includes: PropTypes.arrayOf(T['io.flow.v0.enums.levy_inclusion']),
6737
- });
6738
-
6739
- T['io.flow.v0.models.ratecard_lane_import_form'] = PropTypes.exact({
6740
- ratecard_owner: T['io.flow.v0.enums.ratecard_owner'].isRequired,
6741
- service: PropTypes.string.isRequired,
6742
- currency: PropTypes.string.isRequired,
6743
- delivered_duty: T['io.flow.v0.enums.delivered_duty'].isRequired,
6744
- origin: T['io.flow.v0.models.zone'].isRequired,
6745
- destination: T['io.flow.v0.models.zone'].isRequired,
6746
- shipment_window: T['io.flow.v0.models.shipment_window'].isRequired,
6747
- dim_factor: PropTypes.number.isRequired,
6748
- weight_unit: T['io.flow.v0.enums.unit_of_measurement'].isRequired,
6749
- distance_unit: T['io.flow.v0.enums.unit_of_measurement'].isRequired,
6750
- rates: PropTypes.arrayOf(T['io.flow.v0.models.ratecard_rate_form']).isRequired,
6751
- });
6752
-
6753
6731
  T['io.flow.v0.models.order_builder_delivered_duty_form'] = PropTypes.exact({
6754
6732
  delivered_duty: T['io.flow.v0.enums.delivered_duty'].isRequired,
6755
6733
  });
@@ -7961,67 +7939,6 @@ T['io.flow.v0.models.center_reference'] = PropTypes.exact({
7961
7939
  center_key: PropTypes.string.isRequired,
7962
7940
  });
7963
7941
 
7964
- T['io.flow.v0.models.dimension'] = PropTypes.exact({
7965
- depth: T['io.flow.v0.models.measurement'],
7966
- diameter: T['io.flow.v0.models.measurement'],
7967
- length: T['io.flow.v0.models.measurement'],
7968
- weight: T['io.flow.v0.models.measurement'],
7969
- width: T['io.flow.v0.models.measurement'],
7970
- });
7971
-
7972
- T['io.flow.v0.models.single_package_shipping_notification_form'] = PropTypes.exact({
7973
- discriminator: PropTypes.oneOf(['single_package_shipping_notification_form']).isRequired,
7974
- fulfillment_key: PropTypes.string.isRequired,
7975
- carrier_tracking_number: PropTypes.string.isRequired,
7976
- package_dimensions: T['io.flow.v0.models.dimension'],
7977
- service: PropTypes.string,
7978
- shipment_recipient: T['io.flow.v0.enums.shipment_recipient'],
7979
- });
7980
-
7981
- T['io.flow.v0.models.package_dimensions_form'] = PropTypes.exact({
7982
- dimensions: PropTypes.arrayOf(T['io.flow.v0.models.dimension']).isRequired,
7983
- });
7984
-
7985
- T['io.flow.v0.models.package_dimensions'] = PropTypes.exact({
7986
- dimensions: PropTypes.arrayOf(T['io.flow.v0.models.dimension']).isRequired,
7987
- });
7988
-
7989
- T['io.flow.v0.models.dimensions'] = PropTypes.exact({
7990
- product: T['io.flow.v0.models.dimension'],
7991
- packaging: T['io.flow.v0.models.dimension'],
7992
- });
7993
-
7994
- T['io.flow.v0.models.item_form_overlay_form'] = PropTypes.exact({
7995
- number: PropTypes.string.isRequired,
7996
- price: PropTypes.number,
7997
- currency: PropTypes.string,
7998
- position: PropTypes.number,
7999
- categories: PropTypes.arrayOf(PropTypes.string),
8000
- description: PropTypes.string,
8001
- attributes: PropTypes.objectOf(PropTypes.string),
8002
- dimensions: T['io.flow.v0.models.dimensions'],
8003
- images: PropTypes.arrayOf(T['io.flow.v0.models.image_form']),
8004
- });
8005
-
8006
- T['io.flow.v0.models.item_form'] = PropTypes.exact({
8007
- number: PropTypes.string.isRequired,
8008
- locale: PropTypes.string.isRequired,
8009
- name: PropTypes.string.isRequired,
8010
- currency: PropTypes.string.isRequired,
8011
- price: PropTypes.number.isRequired,
8012
- categories: PropTypes.arrayOf(PropTypes.string),
8013
- description: PropTypes.string,
8014
- attributes: PropTypes.objectOf(PropTypes.string),
8015
- dimensions: T['io.flow.v0.models.dimensions'],
8016
- images: PropTypes.arrayOf(T['io.flow.v0.models.image_form']),
8017
- });
8018
-
8019
- T['io.flow.v0.models.packaging'] = PropTypes.exact({
8020
- dimensions: T['io.flow.v0.models.dimensions'].isRequired,
8021
- name: PropTypes.string,
8022
- number: PropTypes.string,
8023
- });
8024
-
8025
7942
  T['io.flow.v0.models.datetime_range'] = PropTypes.exact({
8026
7943
  from: PropTypes.string.isRequired,
8027
7944
  to: PropTypes.string.isRequired,
@@ -8252,6 +8169,7 @@ T['io.flow.v0.enums.flow_role'] = PropTypes.oneOf([
8252
8169
  'organization_fulfillment',
8253
8170
  'organization_marketing',
8254
8171
  'organization_finance',
8172
+ 'organization_classification',
8255
8173
  'flow_operations',
8256
8174
  'channel_admin',
8257
8175
  'channel_organization_admin',
@@ -9186,13 +9104,6 @@ T['io.flow.v0.models.exclusion_rule_version'] = PropTypes.exact({
9186
9104
  exclusion_rule: T['io.flow.v0.models.exclusion_rule'].isRequired,
9187
9105
  });
9188
9106
 
9189
- T['io.flow.v0.models.dimension_estimate_version'] = PropTypes.exact({
9190
- id: PropTypes.string.isRequired,
9191
- timestamp: PropTypes.string.isRequired,
9192
- type: T['io.flow.v0.enums.change_type'].isRequired,
9193
- dimension_estimate: T['io.flow.v0.models.dimension_estimate'].isRequired,
9194
- });
9195
-
9196
9107
  T['io.flow.v0.models.catalog_version'] = PropTypes.exact({
9197
9108
  id: PropTypes.string.isRequired,
9198
9109
  timestamp: PropTypes.string.isRequired,
@@ -9336,975 +9247,1285 @@ T['io.flow.v0.enums.order_price_detail_key'] = PropTypes.oneOf([
9336
9247
  'tip',
9337
9248
  ]);
9338
9249
 
9339
- T['io.flow.v0.models.money'] = PropTypes.exact({
9250
+ T['io.flow.v0.enums.price_accuracy'] = PropTypes.oneOf(['calculated', 'estimated_from_partial_destination']);
9251
+
9252
+ T['io.flow.v0.models.price'] = PropTypes.exact({
9340
9253
  amount: PropTypes.number.isRequired,
9341
9254
  currency: PropTypes.string.isRequired,
9255
+ label: PropTypes.string.isRequired,
9342
9256
  });
9343
9257
 
9344
- T['io.flow.v0.models.virtual_card_form'] = PropTypes.exact({
9345
- limit: T['io.flow.v0.models.money'].isRequired,
9346
- attributes: PropTypes.objectOf(PropTypes.string),
9347
- });
9348
-
9349
- T['io.flow.v0.models.tracking_label_form'] = PropTypes.exact({
9350
- tracking_id: PropTypes.string.isRequired,
9351
- status: T['io.flow.v0.enums.tracking_status'].isRequired,
9352
- carrier: PropTypes.string.isRequired,
9353
- service_id: PropTypes.string,
9354
- carrier_tracking_number: PropTypes.string.isRequired,
9355
- delivery_estimate: PropTypes.string,
9356
- description: PropTypes.string,
9357
- timestamp: PropTypes.string,
9358
- cost: T['io.flow.v0.models.money'],
9359
- ratecard_owner: T['io.flow.v0.enums.ratecard_owner'],
9360
- });
9361
-
9362
- T['io.flow.v0.models.shipping_label_hop_summary'] = PropTypes.exact({
9363
- lane: T['io.flow.v0.models.shipping_label_lane_summary'].isRequired,
9364
- cost: T['io.flow.v0.models.money'].isRequired,
9365
- itemized_estimate: T['io.flow.v0.models.shipping_label_hop_cost_itemized_estimate'],
9366
- });
9367
-
9368
- T['io.flow.v0.models.reversal'] = PropTypes.exact({
9258
+ T['io.flow.v0.models.virtual_card'] = PropTypes.exact({
9369
9259
  id: PropTypes.string.isRequired,
9370
9260
  key: PropTypes.string.isRequired,
9371
- authorization: T['io.flow.v0.models.authorization_reference'].isRequired,
9372
- status: T['io.flow.v0.enums.reversal_status'].isRequired,
9373
- amount: PropTypes.number.isRequired,
9374
- currency: PropTypes.string.isRequired,
9375
- requested: T['io.flow.v0.models.money'].isRequired,
9376
- created_at: PropTypes.string.isRequired,
9377
- attributes: PropTypes.objectOf(PropTypes.string).isRequired,
9378
- base: T['io.flow.v0.models.money'],
9261
+ number: PropTypes.string,
9262
+ cvv: PropTypes.string,
9263
+ limit: T['io.flow.v0.models.price'].isRequired,
9264
+ type: T['io.flow.v0.enums.card_type'].isRequired,
9265
+ expiration: T['io.flow.v0.models.expiration'].isRequired,
9266
+ iin: PropTypes.string.isRequired,
9267
+ last4: PropTypes.string.isRequired,
9268
+ name: PropTypes.string.isRequired,
9269
+ attributes: PropTypes.objectOf(PropTypes.string),
9379
9270
  });
9380
9271
 
9381
- T['io.flow.v0.models.reversal_version'] = PropTypes.exact({
9272
+ T['io.flow.v0.models.virtual_card_version'] = PropTypes.exact({
9382
9273
  id: PropTypes.string.isRequired,
9383
9274
  timestamp: PropTypes.string.isRequired,
9384
9275
  type: T['io.flow.v0.enums.change_type'].isRequired,
9385
- reversal: T['io.flow.v0.models.reversal'].isRequired,
9276
+ virtual_card: T['io.flow.v0.models.virtual_card'].isRequired,
9386
9277
  });
9387
9278
 
9388
- T['io.flow.v0.models.reversal_upserted'] = PropTypes.exact({
9389
- discriminator: PropTypes.oneOf(['reversal_upserted']).isRequired,
9390
- event_id: PropTypes.string.isRequired,
9391
- timestamp: PropTypes.string.isRequired,
9392
- organization: PropTypes.string.isRequired,
9279
+ T['io.flow.v0.models.price_book_item'] = PropTypes.exact({
9393
9280
  id: PropTypes.string.isRequired,
9394
- reversal: T['io.flow.v0.models.reversal'].isRequired,
9281
+ key: PropTypes.string.isRequired,
9282
+ price_book: T['io.flow.v0.models.price_book_reference'].isRequired,
9283
+ price: T['io.flow.v0.models.price'].isRequired,
9284
+ item_number: PropTypes.string.isRequired,
9285
+ schedule: T['io.flow.v0.models.price_book_item_schedule'].isRequired,
9286
+ item_attributes: PropTypes.objectOf(PropTypes.string),
9395
9287
  });
9396
9288
 
9397
- T['io.flow.v0.models.reversal_deleted'] = PropTypes.exact({
9398
- discriminator: PropTypes.oneOf(['reversal_deleted']).isRequired,
9289
+ T['io.flow.v0.models.price_book_item_upserted'] = PropTypes.exact({
9290
+ discriminator: PropTypes.oneOf(['price_book_item_upserted']).isRequired,
9399
9291
  event_id: PropTypes.string.isRequired,
9400
9292
  timestamp: PropTypes.string.isRequired,
9401
9293
  organization: PropTypes.string.isRequired,
9402
- reversal: T['io.flow.v0.models.reversal'].isRequired,
9294
+ price_book_item: T['io.flow.v0.models.price_book_item'].isRequired,
9403
9295
  });
9404
9296
 
9405
- T['io.flow.v0.models.remote_area_service_fee'] = PropTypes.exact({
9406
- discriminator: PropTypes.oneOf(['remote_area_service_fee']).isRequired,
9407
- amount: T['io.flow.v0.models.money'].isRequired,
9297
+ T['io.flow.v0.models.order_summary_levy'] = PropTypes.exact({
9298
+ rate: PropTypes.number.isRequired,
9299
+ rate_label: PropTypes.string,
9300
+ value: T['io.flow.v0.models.price'].isRequired,
9408
9301
  });
9409
9302
 
9410
- T['io.flow.v0.models.remote_area_ratecard_fee'] = PropTypes.exact({
9411
- discriminator: PropTypes.oneOf(['remote_area_ratecard_fee']).isRequired,
9412
- amount: T['io.flow.v0.models.money'].isRequired,
9303
+ T['io.flow.v0.models.order_summary_price_detail'] = PropTypes.exact({
9304
+ price: T['io.flow.v0.models.price'].isRequired,
9305
+ name: PropTypes.string,
9306
+ rate: PropTypes.number,
9307
+ rate_label: PropTypes.string,
9413
9308
  });
9414
9309
 
9415
- T['io.flow.v0.models.price_source_provided'] = PropTypes.exact({
9416
- discriminator: PropTypes.oneOf(['provided']).isRequired,
9417
- price: T['io.flow.v0.models.money'].isRequired,
9310
+ T['io.flow.v0.models.order_summary_item'] = PropTypes.exact({
9311
+ number: PropTypes.string.isRequired,
9312
+ name: PropTypes.string.isRequired,
9313
+ description: PropTypes.string,
9314
+ attributes: PropTypes.arrayOf(T['io.flow.v0.models.checkout_item_content_attribute']).isRequired,
9315
+ image: T['io.flow.v0.models.order_summary_image'],
9316
+ price: T['io.flow.v0.models.price'].isRequired,
9317
+ discount: T['io.flow.v0.models.price'],
9318
+ tax: T['io.flow.v0.models.order_summary_levy'],
9319
+ duty: T['io.flow.v0.models.order_summary_levy'],
9320
+ price_attributes: PropTypes.objectOf(T['io.flow.v0.models.price']).isRequired,
9418
9321
  });
9419
9322
 
9420
- T['io.flow.v0.models.price_source_price_book'] = PropTypes.exact({
9421
- discriminator: PropTypes.oneOf(['price_book']).isRequired,
9422
- price: T['io.flow.v0.models.money'].isRequired,
9423
- includes: T['io.flow.v0.models.included_levies'].isRequired,
9424
- price_book_reference: T['io.flow.v0.models.price_source_price_book_reference'].isRequired,
9323
+ T['io.flow.v0.models.order_summary_line_item'] = PropTypes.exact({
9324
+ id: PropTypes.string,
9325
+ item: T['io.flow.v0.models.order_summary_item'].isRequired,
9326
+ quantity: PropTypes.number.isRequired,
9327
+ discount: T['io.flow.v0.models.price'],
9328
+ tax: T['io.flow.v0.models.order_summary_levy'],
9329
+ duty: T['io.flow.v0.models.order_summary_levy'],
9330
+ total: T['io.flow.v0.models.price'].isRequired,
9331
+ price_attributes: PropTypes.objectOf(T['io.flow.v0.models.price']).isRequired,
9332
+ attributes: PropTypes.objectOf(PropTypes.string),
9425
9333
  });
9426
9334
 
9427
- T['io.flow.v0.models.price_source_catalog'] = PropTypes.exact({
9428
- discriminator: PropTypes.oneOf(['catalog']).isRequired,
9429
- price: T['io.flow.v0.models.money'].isRequired,
9335
+ T['io.flow.v0.models.order_summary'] = PropTypes.exact({
9336
+ number: PropTypes.string.isRequired,
9337
+ subtotal: T['io.flow.v0.models.order_summary_price_detail'].isRequired,
9338
+ shipping: T['io.flow.v0.models.order_summary_price_detail'],
9339
+ tax: T['io.flow.v0.models.order_summary_price_detail'],
9340
+ duty: T['io.flow.v0.models.order_summary_price_detail'],
9341
+ insurance: T['io.flow.v0.models.order_summary_price_detail'],
9342
+ discount: T['io.flow.v0.models.order_summary_price_detail'],
9343
+ surcharges: T['io.flow.v0.models.order_summary_price_detail'],
9344
+ adjustment: T['io.flow.v0.models.order_summary_price_detail'],
9345
+ total: T['io.flow.v0.models.order_summary_price_detail'].isRequired,
9346
+ lines: PropTypes.arrayOf(T['io.flow.v0.models.order_summary_line_item']).isRequired,
9347
+ identifiers: PropTypes.objectOf(PropTypes.string),
9348
+ attributes: PropTypes.objectOf(PropTypes.string),
9430
9349
  });
9431
9350
 
9432
- T['io.flow.v0.unions.price_source'] = PropTypes.oneOfType([
9433
- T['io.flow.v0.models.price_source_price_book'],
9434
- T['io.flow.v0.models.price_source_catalog'],
9435
- T['io.flow.v0.models.price_source_provided'],
9436
- ]);
9351
+ T['io.flow.v0.models.order_quote_line'] = PropTypes.exact({
9352
+ id: PropTypes.string.isRequired,
9353
+ item: T['io.flow.v0.models.order_summary_item'].isRequired,
9354
+ errors: PropTypes.arrayOf(T['io.flow.v0.models.order_quote_line_error']),
9355
+ quantity: PropTypes.number.isRequired,
9356
+ discount: T['io.flow.v0.models.order_quote_line_discount'],
9357
+ tax: T['io.flow.v0.models.order_quote_summary_tax'],
9358
+ duty: T['io.flow.v0.models.order_quote_summary_duty'],
9359
+ unit_price: T['io.flow.v0.unions.order_quote_price'].isRequired,
9360
+ total: T['io.flow.v0.unions.order_quote_price'].isRequired,
9361
+ price_attributes: PropTypes.objectOf(T['io.flow.v0.models.order_quote_price_standard']).isRequired,
9362
+ attributes: PropTypes.objectOf(PropTypes.string).isRequired,
9363
+ });
9437
9364
 
9438
- T['io.flow.v0.models.peak_surcharge_service_fee'] = PropTypes.exact({
9439
- discriminator: PropTypes.oneOf(['peak_surcharge_service_fee']).isRequired,
9440
- amount: T['io.flow.v0.models.money'].isRequired,
9441
- starts_at: PropTypes.string,
9442
- ends_at: PropTypes.string,
9365
+ T['io.flow.v0.models.order_quote_summary_items'] = PropTypes.exact({
9366
+ lines: PropTypes.arrayOf(T['io.flow.v0.models.order_quote_line']).isRequired,
9367
+ total: T['io.flow.v0.unions.order_quote_price'].isRequired,
9443
9368
  });
9444
9369
 
9445
- T['io.flow.v0.models.peak_surcharge_ratecard_fee'] = PropTypes.exact({
9446
- discriminator: PropTypes.oneOf(['peak_surcharge_ratecard_fee']).isRequired,
9447
- amount: T['io.flow.v0.models.money'].isRequired,
9448
- starts_at: PropTypes.string,
9449
- ends_at: PropTypes.string,
9370
+ T['io.flow.v0.models.order_quote_summary'] = PropTypes.exact({
9371
+ items: T['io.flow.v0.models.order_quote_summary_items'].isRequired,
9372
+ shipping: T['io.flow.v0.models.order_quote_summary_shipping'],
9373
+ tax: T['io.flow.v0.models.order_quote_summary_tax'],
9374
+ duty: T['io.flow.v0.models.order_quote_summary_duty'],
9375
+ total: T['io.flow.v0.models.order_quote_summary_total'].isRequired,
9376
+ balance: T['io.flow.v0.unions.order_quote_price'].isRequired,
9450
9377
  });
9451
9378
 
9452
- T['io.flow.v0.models.peak_surcharge_by_weight_service_fee'] = PropTypes.exact({
9453
- discriminator: PropTypes.oneOf(['peak_surcharge_by_weight_service_fee']).isRequired,
9454
- amount: T['io.flow.v0.models.money'].isRequired,
9455
- weight: T['io.flow.v0.models.fee_weight'].isRequired,
9456
- regions: PropTypes.arrayOf(PropTypes.string),
9457
- starts_at: PropTypes.string,
9458
- ends_at: PropTypes.string,
9379
+ T['io.flow.v0.models.value_threshold_exceeded_details'] = PropTypes.exact({
9380
+ local: T['io.flow.v0.models.price'].isRequired,
9381
+ original: T['io.flow.v0.models.price'].isRequired,
9459
9382
  });
9460
9383
 
9461
- T['io.flow.v0.models.oversize_piece_surcharge_service_fee'] = PropTypes.exact({
9462
- discriminator: PropTypes.oneOf(['oversize_piece_surcharge_service_fee']).isRequired,
9463
- dimensional_threshold: PropTypes.number,
9464
- dimensional_unit: T['io.flow.v0.enums.unit_of_measurement'],
9465
- weight_threshold: PropTypes.number,
9466
- weight_unit: T['io.flow.v0.enums.unit_of_measurement'],
9467
- amount: T['io.flow.v0.models.money'].isRequired,
9384
+ T['io.flow.v0.models.order_error'] = PropTypes.exact({
9385
+ code: T['io.flow.v0.enums.order_error_code'].isRequired,
9386
+ messages: PropTypes.arrayOf(PropTypes.string).isRequired,
9387
+ numbers: PropTypes.arrayOf(PropTypes.string),
9388
+ destination_country: T['io.flow.v0.models.country'],
9389
+ threshold: T['io.flow.v0.models.value_threshold_exceeded_details'],
9468
9390
  });
9469
9391
 
9470
- T['io.flow.v0.models.oversize_piece_surcharge_ratecard_fee'] = PropTypes.exact({
9471
- discriminator: PropTypes.oneOf(['oversize_piece_surcharge_ratecard_fee']).isRequired,
9472
- dimensional_threshold: PropTypes.number,
9473
- dimensional_unit: T['io.flow.v0.enums.unit_of_measurement'],
9474
- weight_threshold: PropTypes.number,
9475
- weight_unit: T['io.flow.v0.enums.unit_of_measurement'],
9476
- amount: T['io.flow.v0.models.money'].isRequired,
9392
+ T['io.flow.v0.models.price_details'] = PropTypes.exact({
9393
+ currency: PropTypes.string.isRequired,
9394
+ item_price: T['io.flow.v0.models.price_detail'].isRequired,
9395
+ margins: T['io.flow.v0.models.price_detail'].isRequired,
9396
+ vat: T['io.flow.v0.models.price_detail'].isRequired,
9397
+ duty: T['io.flow.v0.models.price_detail'].isRequired,
9398
+ rounding: T['io.flow.v0.models.price_detail'].isRequired,
9399
+ price: T['io.flow.v0.models.price'].isRequired,
9400
+ total: T['io.flow.v0.models.price'].isRequired,
9401
+ adjustment: T['io.flow.v0.models.price_detail'],
9477
9402
  });
9478
9403
 
9479
- T['io.flow.v0.models.outbound_carton_fee'] = PropTypes.exact({
9480
- discriminator: PropTypes.oneOf(['outbound_carton_fee']).isRequired,
9481
- amount: T['io.flow.v0.models.money'].isRequired,
9404
+ T['io.flow.v0.models.local_price_details'] = PropTypes.exact({
9405
+ base: T['io.flow.v0.models.price_details'].isRequired,
9406
+ local: T['io.flow.v0.models.price_details'].isRequired,
9407
+ discount: T['io.flow.v0.models.price_detail'],
9408
+ local_before_discount: T['io.flow.v0.models.price_detail'],
9482
9409
  });
9483
9410
 
9484
- T['io.flow.v0.models.inbound_carton_fee'] = PropTypes.exact({
9485
- discriminator: PropTypes.oneOf(['inbound_carton_fee']).isRequired,
9486
- amount: T['io.flow.v0.models.money'].isRequired,
9411
+ T['io.flow.v0.models.price_check'] = PropTypes.exact({
9412
+ display: T['io.flow.v0.models.local_price_details'].isRequired,
9413
+ 'final': T['io.flow.v0.models.local_price_details'].isRequired,
9487
9414
  });
9488
9415
 
9489
- T['io.flow.v0.models.line_item'] = PropTypes.exact({
9490
- number: PropTypes.string.isRequired,
9491
- quantity: PropTypes.number.isRequired,
9492
- price: T['io.flow.v0.models.money'].isRequired,
9493
- attributes: PropTypes.objectOf(PropTypes.string).isRequired,
9494
- center: PropTypes.string,
9495
- discount: T['io.flow.v0.models.money'],
9416
+ T['io.flow.v0.models.order_promotion_trigger'] = PropTypes.exact({
9417
+ type: T['io.flow.v0.enums.promotion_trigger_type'].isRequired,
9418
+ min: T['io.flow.v0.models.price'],
9496
9419
  });
9497
9420
 
9498
- T['io.flow.v0.models.fuel_surcharge_ratecard_fee'] = PropTypes.exact({
9499
- discriminator: PropTypes.oneOf(['fuel_surcharge_ratecard_fee']).isRequired,
9500
- amount: T['io.flow.v0.models.money'].isRequired,
9501
- fuel_surcharge_rate: T['io.flow.v0.unions.fuel_surcharge_rate'],
9421
+ T['io.flow.v0.models.promotion_trigger'] = PropTypes.exact({
9422
+ type: T['io.flow.v0.enums.promotion_trigger_type'].isRequired,
9423
+ min: T['io.flow.v0.models.price'].isRequired,
9424
+ remaining: T['io.flow.v0.models.price'].isRequired,
9502
9425
  });
9503
9426
 
9504
- T['io.flow.v0.models.fuel_surcharge_amount_by_weight_service_fee'] = PropTypes.exact({
9505
- discriminator: PropTypes.oneOf(['fuel_surcharge_amount_by_weight_service_fee']).isRequired,
9506
- amount: T['io.flow.v0.models.money'].isRequired,
9507
- weight: T['io.flow.v0.models.fee_weight'].isRequired,
9508
- regions: PropTypes.arrayOf(PropTypes.string),
9509
- starts_at: PropTypes.string,
9510
- ends_at: PropTypes.string,
9427
+ T['io.flow.v0.models.free_shipping'] = PropTypes.exact({
9428
+ discriminator: PropTypes.oneOf(['free_shipping']).isRequired,
9429
+ trigger: T['io.flow.v0.models.promotion_trigger'].isRequired,
9430
+ max: T['io.flow.v0.models.price'],
9511
9431
  });
9512
9432
 
9513
- T['io.flow.v0.models.flat_rate_form'] = PropTypes.exact({
9514
- discriminator: PropTypes.oneOf(['flat_rate_form']).isRequired,
9515
- price: T['io.flow.v0.models.money'].isRequired,
9433
+ T['io.flow.v0.models.flat_rate'] = PropTypes.exact({
9434
+ discriminator: PropTypes.oneOf(['flat_rate']).isRequired,
9435
+ price: T['io.flow.v0.models.price'].isRequired,
9516
9436
  zero_amount_indicator: T['io.flow.v0.enums.zero_amount_indicator'],
9517
9437
  });
9518
9438
 
9519
- T['io.flow.v0.models.emergency_situation_surcharge_service_fee'] = PropTypes.exact({
9520
- discriminator: PropTypes.oneOf(['emergency_situation_surcharge_service_fee']).isRequired,
9521
- amount: T['io.flow.v0.models.money'].isRequired,
9522
- origin_region: T['io.flow.v0.models.ratecard_region_reference'],
9523
- destination_region: T['io.flow.v0.models.ratecard_region_reference'],
9524
- interval_unit: T['io.flow.v0.enums.unit_of_measurement'],
9439
+ T['io.flow.v0.models.localized_item_price'] = PropTypes.exact({
9440
+ key: PropTypes.oneOf(['localized_item_price']).isRequired,
9441
+ currency: PropTypes.string.isRequired,
9442
+ amount: PropTypes.number.isRequired,
9443
+ label: PropTypes.string.isRequired,
9444
+ base: T['io.flow.v0.models.price'].isRequired,
9445
+ includes: T['io.flow.v0.models.included_levies'],
9525
9446
  });
9526
9447
 
9527
- T['io.flow.v0.models.emergency_situation_surcharge_ratecard_fee'] = PropTypes.exact({
9528
- discriminator: PropTypes.oneOf(['emergency_situation_surcharge_ratecard_fee']).isRequired,
9529
- amount: T['io.flow.v0.models.money'].isRequired,
9448
+ T['io.flow.v0.models.experience_logistics_tier_summary_prices'] = PropTypes.exact({
9449
+ minimum: T['io.flow.v0.models.price'].isRequired,
9530
9450
  });
9531
9451
 
9532
- T['io.flow.v0.models.duties_taxes_paid_surcharge_service_fee'] = PropTypes.exact({
9533
- discriminator: PropTypes.oneOf(['duties_taxes_paid_surcharge_service_fee']).isRequired,
9534
- amount: T['io.flow.v0.models.money'].isRequired,
9535
- starts_at: PropTypes.string,
9536
- ends_at: PropTypes.string,
9452
+ T['io.flow.v0.models.experience_logistics_tier_summary'] = PropTypes.exact({
9453
+ prices: T['io.flow.v0.models.experience_logistics_tier_summary_prices'].isRequired,
9537
9454
  });
9538
9455
 
9539
- T['io.flow.v0.unions.service_fee'] = PropTypes.oneOfType([
9540
- T['io.flow.v0.models.fuel_surcharge_service_fee'],
9541
- T['io.flow.v0.models.fuel_surcharge_amount_by_weight_service_fee'],
9542
- T['io.flow.v0.models.remote_area_service_fee'],
9543
- T['io.flow.v0.models.emergency_situation_surcharge_service_fee'],
9544
- T['io.flow.v0.models.peak_surcharge_service_fee'],
9545
- T['io.flow.v0.models.peak_surcharge_by_weight_service_fee'],
9546
- T['io.flow.v0.models.duties_taxes_paid_surcharge_service_fee'],
9547
- T['io.flow.v0.models.oversize_piece_surcharge_service_fee'],
9548
- ]);
9456
+ T['io.flow.v0.models.experience_logistics_summary'] = PropTypes.exact({
9457
+ outbound: T['io.flow.v0.models.experience_logistics_tier_summary'],
9458
+ 'return': T['io.flow.v0.models.experience_logistics_tier_summary'],
9459
+ });
9549
9460
 
9550
- T['io.flow.v0.models.duties_taxes_paid_surcharge_ratecard_fee'] = PropTypes.exact({
9551
- discriminator: PropTypes.oneOf(['duties_taxes_paid_surcharge_ratecard_fee']).isRequired,
9552
- amount: T['io.flow.v0.models.money'].isRequired,
9553
- starts_at: PropTypes.string,
9554
- ends_at: PropTypes.string,
9461
+ T['io.flow.v0.models.delivery_option_summary'] = PropTypes.exact({
9462
+ id: PropTypes.string.isRequired,
9463
+ cost: T['io.flow.v0.models.price'].isRequired,
9464
+ delivered_duty: T['io.flow.v0.enums.delivered_duty'].isRequired,
9465
+ price: T['io.flow.v0.models.price'].isRequired,
9466
+ service: T['io.flow.v0.models.service_reference'].isRequired,
9467
+ tier: T['io.flow.v0.models.tier_reference'].isRequired,
9468
+ window: T['io.flow.v0.models.datetime_range'].isRequired,
9555
9469
  });
9556
9470
 
9557
- T['io.flow.v0.models.discount_offer_fixed'] = PropTypes.exact({
9558
- discriminator: PropTypes.oneOf(['discount_offer_fixed']).isRequired,
9559
- money: T['io.flow.v0.models.money'].isRequired,
9471
+ T['io.flow.v0.models.delivery_option_version'] = PropTypes.exact({
9472
+ id: PropTypes.string.isRequired,
9473
+ timestamp: PropTypes.string.isRequired,
9474
+ type: T['io.flow.v0.enums.change_type'].isRequired,
9475
+ delivery_option: T['io.flow.v0.models.delivery_option_summary'].isRequired,
9560
9476
  });
9561
9477
 
9562
- T['io.flow.v0.models.money_with_optional_base'] = PropTypes.exact({
9478
+ T['io.flow.v0.models.delivery_option_cost_component'] = PropTypes.exact({
9479
+ key: T['io.flow.v0.enums.delivery_option_cost_detail_component_key'].isRequired,
9563
9480
  currency: PropTypes.string.isRequired,
9564
9481
  amount: PropTypes.number.isRequired,
9565
- base: T['io.flow.v0.models.money'],
9482
+ label: PropTypes.string.isRequired,
9483
+ base: T['io.flow.v0.models.price'],
9566
9484
  });
9567
9485
 
9568
- T['io.flow.v0.models.delivery_item'] = PropTypes.exact({
9569
- id: PropTypes.string,
9570
- number: PropTypes.string.isRequired,
9571
- quantity: PropTypes.number.isRequired,
9572
- shipment_estimate: T['io.flow.v0.models.datetime_range'],
9573
- price: T['io.flow.v0.models.money_with_optional_base'],
9574
- attributes: PropTypes.objectOf(PropTypes.string),
9575
- center: PropTypes.string,
9576
- line_number: PropTypes.number,
9486
+ T['io.flow.v0.models.delivery_option_cost_detail'] = PropTypes.exact({
9487
+ source: T['io.flow.v0.enums.delivery_option_cost_detail_source'].isRequired,
9488
+ ratecard_id: PropTypes.string,
9489
+ currency: PropTypes.string.isRequired,
9490
+ amount: PropTypes.number.isRequired,
9491
+ label: PropTypes.string.isRequired,
9492
+ base: T['io.flow.v0.models.price'],
9493
+ components: PropTypes.arrayOf(T['io.flow.v0.models.delivery_option_cost_component']).isRequired,
9577
9494
  });
9578
9495
 
9579
- T['io.flow.v0.models.crossdock_ratecard_fee'] = PropTypes.exact({
9580
- discriminator: PropTypes.oneOf(['crossdock_ratecard_fee']).isRequired,
9581
- amount: T['io.flow.v0.models.money'].isRequired,
9496
+ T['io.flow.v0.models.price_with_base_and_details'] = PropTypes.exact({
9497
+ currency: PropTypes.string.isRequired,
9498
+ amount: PropTypes.number.isRequired,
9499
+ label: PropTypes.string.isRequired,
9500
+ base: T['io.flow.v0.models.price'],
9501
+ details: PropTypes.arrayOf(T['io.flow.v0.models.delivery_option_cost_detail']),
9582
9502
  });
9583
9503
 
9584
- T['io.flow.v0.unions.ratecard_fee'] = PropTypes.oneOfType([
9585
- T['io.flow.v0.models.ddp_ratecard_fee'],
9586
- T['io.flow.v0.models.fuel_surcharge_ratecard_fee'],
9587
- T['io.flow.v0.models.oversize_piece_surcharge_ratecard_fee'],
9588
- T['io.flow.v0.models.return_package_ratecard_fee'],
9589
- T['io.flow.v0.models.crossdock_ratecard_fee'],
9590
- T['io.flow.v0.models.remote_area_ratecard_fee'],
9591
- T['io.flow.v0.models.emergency_situation_surcharge_ratecard_fee'],
9592
- T['io.flow.v0.models.peak_surcharge_ratecard_fee'],
9593
- T['io.flow.v0.models.duties_taxes_paid_surcharge_ratecard_fee'],
9594
- ]);
9504
+ T['io.flow.v0.models.original_prices'] = PropTypes.exact({
9505
+ value: T['io.flow.v0.models.price'].isRequired,
9506
+ max: T['io.flow.v0.models.price'].isRequired,
9507
+ });
9595
9508
 
9596
- T['io.flow.v0.models.ratecard_lane_form'] = PropTypes.exact({
9597
- ratecard_id: PropTypes.string.isRequired,
9598
- currency: PropTypes.string.isRequired,
9599
- destination: T['io.flow.v0.models.zone'].isRequired,
9600
- shipment_window: T['io.flow.v0.models.shipment_window'].isRequired,
9601
- delivered_duty: T['io.flow.v0.enums.delivered_duty'].isRequired,
9602
- dim_factor: PropTypes.number.isRequired,
9603
- fees: PropTypes.arrayOf(T['io.flow.v0.unions.ratecard_fee']).isRequired,
9604
- origin: T['io.flow.v0.models.zone'].isRequired,
9605
- rounding: T['io.flow.v0.models.rounding'].isRequired,
9606
- rates: PropTypes.arrayOf(T['io.flow.v0.models.ratecard_rate_form']).isRequired,
9607
- weight_unit: T['io.flow.v0.enums.unit_of_measurement'].isRequired,
9608
- distance_unit: T['io.flow.v0.enums.unit_of_measurement'].isRequired,
9509
+ T['io.flow.v0.models.item_shipping_pricing'] = PropTypes.exact({
9510
+ min: T['io.flow.v0.models.price'].isRequired,
9511
+ max: T['io.flow.v0.models.price'],
9609
9512
  });
9610
9513
 
9611
- T['io.flow.v0.models.ratecard_lane'] = PropTypes.exact({
9612
- id: PropTypes.string.isRequired,
9613
- ratecard: T['io.flow.v0.models.ratecard_summary'].isRequired,
9614
- currency: PropTypes.string.isRequired,
9615
- delivered_duty: T['io.flow.v0.enums.delivered_duty'].isRequired,
9616
- shipment_window: T['io.flow.v0.models.shipment_window'].isRequired,
9617
- destination: T['io.flow.v0.models.zone'].isRequired,
9618
- dim_factor: PropTypes.number.isRequired,
9619
- fees: PropTypes.arrayOf(T['io.flow.v0.unions.ratecard_fee']).isRequired,
9620
- origin: T['io.flow.v0.models.zone'].isRequired,
9621
- service: T['io.flow.v0.models.ratecard_service_summary'].isRequired,
9622
- rates: PropTypes.arrayOf(T['io.flow.v0.models.ratecard_rate']).isRequired,
9623
- rounding: T['io.flow.v0.models.rounding'].isRequired,
9624
- weight_unit: T['io.flow.v0.enums.unit_of_measurement'].isRequired,
9625
- distance_unit: T['io.flow.v0.enums.unit_of_measurement'].isRequired,
9514
+ T['io.flow.v0.models.country_shipping_pricing'] = PropTypes.exact({
9515
+ pricing: T['io.flow.v0.models.item_shipping_pricing'].isRequired,
9516
+ countries: PropTypes.arrayOf(PropTypes.string).isRequired,
9626
9517
  });
9627
9518
 
9628
- T['io.flow.v0.models.ratecard_lane_version'] = PropTypes.exact({
9519
+ T['io.flow.v0.models.shipping_configuration_item_shipping_pricing'] = PropTypes.exact({
9629
9520
  id: PropTypes.string.isRequired,
9630
- timestamp: PropTypes.string.isRequired,
9631
- type: T['io.flow.v0.enums.change_type'].isRequired,
9632
- ratecard_lane: T['io.flow.v0.models.ratecard_lane'].isRequired,
9521
+ item: T['io.flow.v0.models.item_reference'].isRequired,
9522
+ shipping_configuration: T['io.flow.v0.models.shipping_configuration_summary'].isRequired,
9523
+ country_shipping_pricings: PropTypes.arrayOf(T['io.flow.v0.models.country_shipping_pricing']).isRequired,
9633
9524
  });
9634
9525
 
9635
- T['io.flow.v0.models.ratecard_lane_upserted'] = PropTypes.exact({
9636
- discriminator: PropTypes.oneOf(['ratecard_lane_upserted']).isRequired,
9526
+ T['io.flow.v0.models.shipping_configuration_item_shipping_pricing_upserted'] = PropTypes.exact({
9527
+ discriminator: PropTypes.oneOf(['shipping_configuration_item_shipping_pricing_upserted']).isRequired,
9637
9528
  event_id: PropTypes.string.isRequired,
9638
9529
  timestamp: PropTypes.string.isRequired,
9639
- organization: PropTypes.string.isRequired,
9640
- ratecard_lane: T['io.flow.v0.models.ratecard_lane'].isRequired,
9530
+ organization_id: PropTypes.string.isRequired,
9531
+ shipping_configuration_item_shipping_pricing: T['io.flow.v0.models.shipping_configuration_item_shipping_pricing'].isRequired,
9641
9532
  });
9642
9533
 
9643
- T['io.flow.v0.models.commercial_invoice_fee'] = PropTypes.exact({
9644
- discriminator: PropTypes.oneOf(['commercial_invoice_fee']).isRequired,
9645
- amount: T['io.flow.v0.models.money'].isRequired,
9534
+ T['io.flow.v0.models.shipping_configuration_item_shipping_pricing_deleted'] = PropTypes.exact({
9535
+ discriminator: PropTypes.oneOf(['shipping_configuration_item_shipping_pricing_deleted']).isRequired,
9536
+ event_id: PropTypes.string.isRequired,
9537
+ timestamp: PropTypes.string.isRequired,
9538
+ organization_id: PropTypes.string.isRequired,
9539
+ shipping_configuration_item_shipping_pricing: T['io.flow.v0.models.shipping_configuration_item_shipping_pricing'].isRequired,
9646
9540
  });
9647
9541
 
9648
- T['io.flow.v0.unions.partner_center_fee'] = PropTypes.oneOfType([
9649
- T['io.flow.v0.models.commercial_invoice_fee'],
9650
- T['io.flow.v0.models.inbound_carton_fee'],
9651
- T['io.flow.v0.models.outbound_carton_fee'],
9652
- ]);
9653
-
9654
- T['io.flow.v0.models.partner_center_form'] = PropTypes.exact({
9655
- partner_id: PropTypes.string.isRequired,
9656
- number: PropTypes.string,
9657
- fees: PropTypes.arrayOf(T['io.flow.v0.unions.partner_center_fee']),
9542
+ T['io.flow.v0.models.consumer_invoice_line_discount'] = PropTypes.exact({
9543
+ discriminator: PropTypes.oneOf(['discount']).isRequired,
9544
+ price: T['io.flow.v0.models.price'].isRequired,
9658
9545
  });
9659
9546
 
9660
- T['io.flow.v0.models.partner_center'] = PropTypes.exact({
9661
- partner_reference: T['io.flow.v0.models.partner_reference'].isRequired,
9662
- number: PropTypes.string,
9663
- fees: PropTypes.arrayOf(T['io.flow.v0.unions.partner_center_fee']),
9547
+ T['io.flow.v0.models.consumer_invoice_levy'] = PropTypes.exact({
9548
+ rate: PropTypes.number.isRequired,
9549
+ value: T['io.flow.v0.models.price'].isRequired,
9664
9550
  });
9665
9551
 
9666
- T['io.flow.v0.models.capture'] = PropTypes.exact({
9667
- id: PropTypes.string.isRequired,
9668
- key: PropTypes.string.isRequired,
9669
- authorization: T['io.flow.v0.models.authorization_reference'].isRequired,
9670
- amount: PropTypes.number.isRequired,
9671
- currency: PropTypes.string.isRequired,
9672
- requested: T['io.flow.v0.models.money'],
9673
- created_at: PropTypes.string.isRequired,
9674
- attributes: PropTypes.objectOf(PropTypes.string),
9675
- status: T['io.flow.v0.enums.capture_status'],
9676
- base: T['io.flow.v0.models.money'],
9552
+ T['io.flow.v0.models.consumer_invoice_line_shipping'] = PropTypes.exact({
9553
+ discriminator: PropTypes.oneOf(['shipping']).isRequired,
9554
+ price: T['io.flow.v0.models.price'].isRequired,
9555
+ discount: T['io.flow.v0.models.price'],
9556
+ tax: T['io.flow.v0.models.consumer_invoice_levy'],
9557
+ duty: T['io.flow.v0.models.consumer_invoice_levy'],
9677
9558
  });
9678
9559
 
9679
- T['io.flow.v0.models.refund_capture_summary'] = PropTypes.exact({
9680
- capture: T['io.flow.v0.models.capture'].isRequired,
9681
- amount: PropTypes.number.isRequired,
9560
+ T['io.flow.v0.models.consumer_invoice_line_item'] = PropTypes.exact({
9561
+ discriminator: PropTypes.oneOf(['item']).isRequired,
9562
+ item: T['io.flow.v0.models.item_reference'].isRequired,
9563
+ description: PropTypes.string.isRequired,
9564
+ quantity: PropTypes.number.isRequired,
9565
+ unit_price: T['io.flow.v0.models.price'].isRequired,
9566
+ unit_discount: T['io.flow.v0.models.price'],
9567
+ unit_tax: T['io.flow.v0.models.consumer_invoice_levy'],
9568
+ unit_duty: T['io.flow.v0.models.consumer_invoice_levy'],
9682
9569
  });
9683
9570
 
9684
- T['io.flow.v0.models.refund'] = PropTypes.exact({
9571
+ T['io.flow.v0.unions.consumer_invoice_line'] = PropTypes.oneOfType([
9572
+ T['io.flow.v0.models.consumer_invoice_line_item'],
9573
+ T['io.flow.v0.models.consumer_invoice_line_discount'],
9574
+ T['io.flow.v0.models.consumer_invoice_line_shipping'],
9575
+ ]);
9576
+
9577
+ T['io.flow.v0.models.b2b_credit_memo'] = PropTypes.exact({
9685
9578
  id: PropTypes.string.isRequired,
9579
+ number: PropTypes.string.isRequired,
9580
+ buyer: T['io.flow.v0.models.merchant_of_record_entity'].isRequired,
9581
+ seller: T['io.flow.v0.models.merchant_of_record_entity'].isRequired,
9582
+ status: T['io.flow.v0.enums.consumer_invoice_status'].isRequired,
9583
+ date: PropTypes.string.isRequired,
9686
9584
  key: PropTypes.string.isRequired,
9687
- authorization: T['io.flow.v0.models.authorization_reference'].isRequired,
9688
- amount: PropTypes.number.isRequired,
9689
- currency: PropTypes.string.isRequired,
9690
- requested: T['io.flow.v0.models.money'],
9691
- captures: PropTypes.arrayOf(T['io.flow.v0.models.refund_capture_summary']).isRequired,
9692
- created_at: PropTypes.string.isRequired,
9693
- attributes: PropTypes.objectOf(PropTypes.string),
9694
- status: T['io.flow.v0.enums.refund_status'],
9695
- base: T['io.flow.v0.models.money'],
9585
+ invoice: T['io.flow.v0.models.b2b_invoice_reference'].isRequired,
9586
+ lines: PropTypes.arrayOf(T['io.flow.v0.unions.consumer_invoice_line']).isRequired,
9587
+ documents: PropTypes.arrayOf(T['io.flow.v0.models.consumer_invoice_document']).isRequired,
9588
+ attributes: PropTypes.objectOf(PropTypes.string).isRequired,
9589
+ b2b_invoice_type: T['io.flow.v0.enums.b2b_invoice_type'].isRequired,
9696
9590
  });
9697
9591
 
9698
- T['io.flow.v0.models.refund_version'] = PropTypes.exact({
9699
- id: PropTypes.string.isRequired,
9592
+ T['io.flow.v0.models.b2b_credit_memo_upserted'] = PropTypes.exact({
9593
+ discriminator: PropTypes.oneOf(['b2b_credit_memo_upserted']).isRequired,
9594
+ event_id: PropTypes.string.isRequired,
9700
9595
  timestamp: PropTypes.string.isRequired,
9701
- type: T['io.flow.v0.enums.change_type'].isRequired,
9702
- refund: T['io.flow.v0.models.refund'].isRequired,
9596
+ organization: PropTypes.string.isRequired,
9597
+ b2b_credit_memo: T['io.flow.v0.models.b2b_credit_memo'].isRequired,
9703
9598
  });
9704
9599
 
9705
- T['io.flow.v0.models.refund_upserted_v2'] = PropTypes.exact({
9706
- discriminator: PropTypes.oneOf(['refund_upserted_v2']).isRequired,
9600
+ T['io.flow.v0.models.b2b_credit_memo_deleted'] = PropTypes.exact({
9601
+ discriminator: PropTypes.oneOf(['b2b_credit_memo_deleted']).isRequired,
9707
9602
  event_id: PropTypes.string.isRequired,
9708
9603
  timestamp: PropTypes.string.isRequired,
9709
9604
  organization: PropTypes.string.isRequired,
9710
- id: PropTypes.string.isRequired,
9711
- refund: T['io.flow.v0.models.refund'].isRequired,
9605
+ b2b_credit_memo: T['io.flow.v0.models.b2b_credit_memo'].isRequired,
9712
9606
  });
9713
9607
 
9714
- T['io.flow.v0.models.refund_deleted_v2'] = PropTypes.exact({
9715
- discriminator: PropTypes.oneOf(['refund_deleted_v2']).isRequired,
9716
- event_id: PropTypes.string.isRequired,
9717
- timestamp: PropTypes.string.isRequired,
9718
- organization: PropTypes.string.isRequired,
9719
- refund: T['io.flow.v0.models.refund'].isRequired,
9720
- });
9721
-
9722
- T['io.flow.v0.models.refund_capture'] = PropTypes.exact({
9723
- id: PropTypes.string.isRequired,
9724
- refund: T['io.flow.v0.models.refund'].isRequired,
9725
- capture: T['io.flow.v0.models.capture'].isRequired,
9608
+ T['io.flow.v0.models.catalog_price_book_item_document'] = PropTypes.exact({
9609
+ price_book_key: PropTypes.string.isRequired,
9610
+ price_book_item_key: PropTypes.string.isRequired,
9611
+ catalog: T['io.flow.v0.models.catalog_item_summary'].isRequired,
9612
+ price: T['io.flow.v0.models.price'],
9726
9613
  amount: PropTypes.number.isRequired,
9727
- currency: PropTypes.string.isRequired,
9728
- base: T['io.flow.v0.models.money'].isRequired,
9729
- status: T['io.flow.v0.enums.refund_status'],
9614
+ starts_at: PropTypes.string.isRequired,
9615
+ ends_at: PropTypes.string,
9730
9616
  });
9731
9617
 
9732
- T['io.flow.v0.models.refund_capture_upserted_v2'] = PropTypes.exact({
9733
- discriminator: PropTypes.oneOf(['refund_capture_upserted_v2']).isRequired,
9734
- event_id: PropTypes.string.isRequired,
9735
- timestamp: PropTypes.string.isRequired,
9736
- organization: PropTypes.string.isRequired,
9737
- id: PropTypes.string.isRequired,
9738
- refund_capture: T['io.flow.v0.models.refund_capture'].isRequired,
9618
+ T['io.flow.v0.models.amount_margin'] = PropTypes.exact({
9619
+ discriminator: PropTypes.oneOf(['amount_margin']).isRequired,
9620
+ margin: T['io.flow.v0.models.price'].isRequired,
9739
9621
  });
9740
9622
 
9741
- T['io.flow.v0.models.email_payment_summary'] = PropTypes.exact({
9742
- refund: T['io.flow.v0.models.refund'].isRequired,
9623
+ T['io.flow.v0.unions.tier_rule_outcome'] = PropTypes.oneOfType([
9624
+ T['io.flow.v0.models.amount_margin'],
9625
+ T['io.flow.v0.models.at_cost'],
9626
+ T['io.flow.v0.models.flat_rate'],
9627
+ T['io.flow.v0.models.percent_margin'],
9628
+ ]);
9629
+
9630
+ T['io.flow.v0.models.tier_rule'] = PropTypes.exact({
9631
+ id: PropTypes.string.isRequired,
9632
+ position: PropTypes.number.isRequired,
9633
+ query: PropTypes.string.isRequired,
9634
+ outcome: T['io.flow.v0.unions.tier_rule_outcome'].isRequired,
9743
9635
  });
9744
9636
 
9745
- T['io.flow.v0.models.capture_version'] = PropTypes.exact({
9637
+ T['io.flow.v0.models.tier_rule_version'] = PropTypes.exact({
9746
9638
  id: PropTypes.string.isRequired,
9747
9639
  timestamp: PropTypes.string.isRequired,
9748
9640
  type: T['io.flow.v0.enums.change_type'].isRequired,
9749
- capture: T['io.flow.v0.models.capture'].isRequired,
9641
+ tier_rule: T['io.flow.v0.models.tier_rule'].isRequired,
9750
9642
  });
9751
9643
 
9752
- T['io.flow.v0.models.capture_upserted_v2'] = PropTypes.exact({
9753
- discriminator: PropTypes.oneOf(['capture_upserted_v2']).isRequired,
9754
- event_id: PropTypes.string.isRequired,
9755
- timestamp: PropTypes.string.isRequired,
9756
- organization: PropTypes.string.isRequired,
9757
- id: PropTypes.string.isRequired,
9758
- capture: T['io.flow.v0.models.capture'].isRequired,
9644
+ T['io.flow.v0.models.localized_total'] = PropTypes.exact({
9645
+ key: PropTypes.oneOf(['localized_total']).isRequired,
9646
+ currency: PropTypes.string.isRequired,
9647
+ amount: PropTypes.number.isRequired,
9648
+ label: PropTypes.string.isRequired,
9649
+ base: T['io.flow.v0.models.price'].isRequired,
9759
9650
  });
9760
9651
 
9761
- T['io.flow.v0.models.capture_deleted'] = PropTypes.exact({
9762
- discriminator: PropTypes.oneOf(['capture_deleted']).isRequired,
9763
- event_id: PropTypes.string.isRequired,
9764
- timestamp: PropTypes.string.isRequired,
9765
- organization: PropTypes.string.isRequired,
9766
- capture: T['io.flow.v0.models.capture'].isRequired,
9652
+ T['io.flow.v0.models.price_with_base'] = PropTypes.exact({
9653
+ currency: PropTypes.string.isRequired,
9654
+ amount: PropTypes.number.isRequired,
9655
+ label: PropTypes.string.isRequired,
9656
+ base: T['io.flow.v0.models.price'],
9767
9657
  });
9768
9658
 
9769
- T['io.flow.v0.models.amount_margin_form'] = PropTypes.exact({
9770
- discriminator: PropTypes.oneOf(['amount_margin_form']).isRequired,
9771
- margin: T['io.flow.v0.models.money'].isRequired,
9659
+ T['io.flow.v0.models.shopify_order_price_attributes_metafield'] = PropTypes.exact({
9660
+ item_number: PropTypes.string.isRequired,
9661
+ price_attributes: PropTypes.objectOf(T['io.flow.v0.models.price_with_base']).isRequired,
9772
9662
  });
9773
9663
 
9774
- T['io.flow.v0.unions.tier_rule_outcome_form'] = PropTypes.oneOfType([
9775
- T['io.flow.v0.models.amount_margin_form'],
9776
- T['io.flow.v0.models.flat_rate_form'],
9777
- T['io.flow.v0.models.at_cost'],
9778
- T['io.flow.v0.models.percent_margin'],
9779
- ]);
9780
-
9781
- T['io.flow.v0.models.tier_rule_form'] = PropTypes.exact({
9782
- position: PropTypes.number,
9783
- query: PropTypes.string.isRequired,
9784
- outcome: T['io.flow.v0.unions.tier_rule_outcome_form'].isRequired,
9664
+ T['io.flow.v0.models.shopify_local_price_metadata'] = PropTypes.exact({
9665
+ price: T['io.flow.v0.models.price_with_base'].isRequired,
9785
9666
  });
9786
9667
 
9787
- T['io.flow.v0.models.tier_form'] = PropTypes.exact({
9788
- currency: PropTypes.string.isRequired,
9789
- integration: T['io.flow.v0.enums.shipment_integration_type'].isRequired,
9668
+ T['io.flow.v0.models.shopify_price'] = PropTypes.exact({
9790
9669
  name: PropTypes.string.isRequired,
9791
- message: PropTypes.string,
9792
- rules: PropTypes.arrayOf(T['io.flow.v0.models.tier_rule_form']).isRequired,
9793
- services: PropTypes.arrayOf(PropTypes.string).isRequired,
9794
- strategy: T['io.flow.v0.enums.tier_strategy'].isRequired,
9795
- visibility: T['io.flow.v0.enums.visibility'].isRequired,
9796
- description: PropTypes.string,
9797
- direction: T['io.flow.v0.enums.lane_direction'],
9798
- display: T['io.flow.v0.models.tier_display_form'],
9799
- shipping_lane: PropTypes.string.isRequired,
9800
- surcharge_settings: PropTypes.arrayOf(T['io.flow.v0.models.surcharge_setting']),
9801
- settings: T['io.flow.v0.models.tier_settings'],
9670
+ amount: PropTypes.number.isRequired,
9671
+ cents: PropTypes.number.isRequired,
9672
+ currency: PropTypes.string.isRequired,
9673
+ label: PropTypes.string.isRequired,
9674
+ includes: T['io.flow.v0.models.included_levies'],
9675
+ local: T['io.flow.v0.models.shopify_local_price_metadata'],
9802
9676
  });
9803
9677
 
9804
- T['io.flow.v0.models.money_with_base'] = PropTypes.exact({
9805
- currency: PropTypes.string.isRequired,
9806
- amount: PropTypes.number.isRequired,
9807
- base: T['io.flow.v0.models.money'].isRequired,
9678
+ T['io.flow.v0.models.shopify_localized_variant_prices'] = PropTypes.exact({
9679
+ item: T['io.flow.v0.models.shopify_price'].isRequired,
9680
+ compare_at: T['io.flow.v0.models.shopify_price'],
9681
+ vat: T['io.flow.v0.models.shopify_price'],
9682
+ duty: T['io.flow.v0.models.shopify_price'],
9808
9683
  });
9809
9684
 
9810
- T['io.flow.v0.models.quote_line_item_form'] = PropTypes.exact({
9811
- number: PropTypes.string.isRequired,
9685
+ T['io.flow.v0.models.shopify_localized_variant'] = PropTypes.exact({
9686
+ id: PropTypes.number.isRequired,
9687
+ handle: PropTypes.string.isRequired,
9688
+ experience: T['io.flow.v0.models.experience_reference'].isRequired,
9689
+ prices: T['io.flow.v0.models.shopify_localized_variant_prices'].isRequired,
9690
+ status: T['io.flow.v0.enums.subcatalog_item_status'].isRequired,
9691
+ inventory_status: T['io.flow.v0.enums.item_availability_status'],
9692
+ });
9693
+
9694
+ T['io.flow.v0.models.shopify_local_cart_item_metadata'] = PropTypes.exact({
9695
+ line_price: T['io.flow.v0.models.price_with_base'].isRequired,
9696
+ price: T['io.flow.v0.models.price_with_base'].isRequired,
9697
+ });
9698
+
9699
+ T['io.flow.v0.models.shopify_cart_item'] = PropTypes.exact({
9700
+ id: PropTypes.string.isRequired,
9701
+ handle: PropTypes.string.isRequired,
9702
+ line_price: PropTypes.number.isRequired,
9703
+ price: PropTypes.number.isRequired,
9704
+ product_id: PropTypes.number.isRequired,
9705
+ product_title: PropTypes.string.isRequired,
9812
9706
  quantity: PropTypes.number.isRequired,
9813
- shipment_estimate: T['io.flow.v0.models.datetime_range'],
9814
- price: T['io.flow.v0.models.money_with_base'].isRequired,
9707
+ title: PropTypes.string.isRequired,
9708
+ url: PropTypes.string.isRequired,
9709
+ variant_id: PropTypes.number.isRequired,
9710
+ local: T['io.flow.v0.models.shopify_local_cart_item_metadata'].isRequired,
9711
+ gift_card: PropTypes.bool.isRequired,
9712
+ image: PropTypes.string,
9713
+ product_description: PropTypes.string,
9714
+ product_type: PropTypes.string,
9715
+ properties: PropTypes.objectOf(PropTypes.string),
9716
+ requires_shipping: PropTypes.bool.isRequired,
9717
+ sku: PropTypes.string,
9718
+ variant_title: PropTypes.string,
9719
+ variant_options: PropTypes.arrayOf(PropTypes.string),
9720
+ vendor: PropTypes.string,
9721
+ });
9722
+
9723
+ T['io.flow.v0.models.line'] = PropTypes.exact({
9724
+ id: PropTypes.string,
9725
+ item_number: PropTypes.string.isRequired,
9726
+ quantity: PropTypes.number.isRequired,
9727
+ price: T['io.flow.v0.models.price_with_base'].isRequired,
9728
+ total: T['io.flow.v0.models.price_with_base'].isRequired,
9815
9729
  attributes: PropTypes.objectOf(PropTypes.string),
9816
- center: PropTypes.string,
9817
9730
  });
9818
9731
 
9819
- T['io.flow.v0.models.allocation_line_summary_shipping'] = PropTypes.exact({
9820
- subtotal: T['io.flow.v0.models.money_with_base'].isRequired,
9821
- discount: T['io.flow.v0.models.money_with_base'].isRequired,
9822
- duties: T['io.flow.v0.models.money_with_base'].isRequired,
9823
- tax: T['io.flow.v0.models.money_with_base'].isRequired,
9824
- tax_subsidy: T['io.flow.v0.models.money_with_base'].isRequired,
9825
- duties_subsidy: T['io.flow.v0.models.money_with_base'].isRequired,
9826
- total: T['io.flow.v0.models.money_with_base'].isRequired,
9732
+ T['io.flow.v0.models.klaviyo_order_prices'] = PropTypes.exact({
9733
+ subtotal: T['io.flow.v0.models.price_with_base'].isRequired,
9734
+ vat: T['io.flow.v0.models.price_with_base'],
9735
+ duty: T['io.flow.v0.models.price_with_base'],
9736
+ discount: T['io.flow.v0.models.price_with_base'],
9737
+ shipping: T['io.flow.v0.models.price_with_base'],
9738
+ insurance: T['io.flow.v0.models.price_with_base'],
9739
+ total: T['io.flow.v0.models.price_with_base'].isRequired,
9827
9740
  });
9828
9741
 
9829
- T['io.flow.v0.models.allocation_line_summary_line_item'] = PropTypes.exact({
9742
+ T['io.flow.v0.models.fulfillment_item_allocation_details'] = PropTypes.exact({
9830
9743
  item_number: PropTypes.string.isRequired,
9831
- line_number: PropTypes.string,
9832
- subtotal: T['io.flow.v0.models.money_with_base'].isRequired,
9833
- discount: T['io.flow.v0.models.money_with_base'].isRequired,
9834
- duties: T['io.flow.v0.models.money_with_base'].isRequired,
9835
- tax: T['io.flow.v0.models.money_with_base'].isRequired,
9836
- tax_subsidy: T['io.flow.v0.models.money_with_base'].isRequired,
9837
- duties_subsidy: T['io.flow.v0.models.money_with_base'].isRequired,
9838
- total: T['io.flow.v0.models.money_with_base'].isRequired,
9744
+ line_number: PropTypes.number.isRequired,
9745
+ levies: T['io.flow.v0.models.price_with_base'].isRequired,
9746
+ total: T['io.flow.v0.models.price_with_base'].isRequired,
9839
9747
  });
9840
9748
 
9841
- T['io.flow.v0.models.allocation_line_summary'] = PropTypes.exact({
9842
- line_items: PropTypes.arrayOf(T['io.flow.v0.models.allocation_line_summary_line_item']).isRequired,
9843
- shipping: T['io.flow.v0.models.allocation_line_summary_shipping'].isRequired,
9844
- subtotal: T['io.flow.v0.models.money_with_base'].isRequired,
9845
- discount: T['io.flow.v0.models.money_with_base'].isRequired,
9846
- duties: T['io.flow.v0.models.money_with_base'].isRequired,
9847
- tax: T['io.flow.v0.models.money_with_base'].isRequired,
9848
- tax_subsidy: T['io.flow.v0.models.money_with_base'].isRequired,
9849
- duties_subsidy: T['io.flow.v0.models.money_with_base'].isRequired,
9850
- total: T['io.flow.v0.models.money_with_base'].isRequired,
9749
+ T['io.flow.v0.models.experience_price_facet_conversion'] = PropTypes.exact({
9750
+ request: T['io.flow.v0.models.experience_price_facet_conversion_request'].isRequired,
9751
+ price: T['io.flow.v0.models.price_with_base'].isRequired,
9851
9752
  });
9852
9753
 
9853
- T['io.flow.v0.enums.price_accuracy'] = PropTypes.oneOf(['calculated', 'estimated_from_partial_destination']);
9854
-
9855
- T['io.flow.v0.models.price'] = PropTypes.exact({
9856
- amount: PropTypes.number.isRequired,
9857
- currency: PropTypes.string.isRequired,
9858
- label: PropTypes.string.isRequired,
9754
+ T['io.flow.v0.models.experience_price_facet_conversion_response'] = PropTypes.exact({
9755
+ facets: PropTypes.arrayOf(T['io.flow.v0.models.experience_price_facet_conversion']).isRequired,
9859
9756
  });
9860
9757
 
9861
- T['io.flow.v0.models.virtual_card'] = PropTypes.exact({
9862
- id: PropTypes.string.isRequired,
9863
- key: PropTypes.string.isRequired,
9864
- number: PropTypes.string,
9865
- cvv: PropTypes.string,
9866
- limit: T['io.flow.v0.models.price'].isRequired,
9867
- type: T['io.flow.v0.enums.card_type'].isRequired,
9868
- expiration: T['io.flow.v0.models.expiration'].isRequired,
9869
- iin: PropTypes.string.isRequired,
9870
- last4: PropTypes.string.isRequired,
9871
- name: PropTypes.string.isRequired,
9872
- attributes: PropTypes.objectOf(PropTypes.string),
9758
+ T['io.flow.v0.models.experience_price_conversion'] = PropTypes.exact({
9759
+ request: T['io.flow.v0.models.experience_price_conversion_request'].isRequired,
9760
+ price: T['io.flow.v0.models.price_with_base'].isRequired,
9873
9761
  });
9874
9762
 
9875
- T['io.flow.v0.models.virtual_card_version'] = PropTypes.exact({
9876
- id: PropTypes.string.isRequired,
9877
- timestamp: PropTypes.string.isRequired,
9878
- type: T['io.flow.v0.enums.change_type'].isRequired,
9879
- virtual_card: T['io.flow.v0.models.virtual_card'].isRequired,
9763
+ T['io.flow.v0.models.experience_price_conversion_response'] = PropTypes.exact({
9764
+ prices: PropTypes.arrayOf(T['io.flow.v0.models.experience_price_conversion']).isRequired,
9880
9765
  });
9881
9766
 
9882
- T['io.flow.v0.models.price_book_item'] = PropTypes.exact({
9767
+ T['io.flow.v0.models.discount'] = PropTypes.exact({
9768
+ discriminator: PropTypes.oneOf(['discount']).isRequired,
9883
9769
  id: PropTypes.string.isRequired,
9884
- key: PropTypes.string.isRequired,
9885
- price_book: T['io.flow.v0.models.price_book_reference'].isRequired,
9886
- price: T['io.flow.v0.models.price'].isRequired,
9887
- item_number: PropTypes.string.isRequired,
9888
- schedule: T['io.flow.v0.models.price_book_item_schedule'].isRequired,
9889
- item_attributes: PropTypes.objectOf(PropTypes.string),
9770
+ code: PropTypes.string,
9771
+ label: PropTypes.string.isRequired,
9772
+ price: T['io.flow.v0.models.price_with_base'].isRequired,
9773
+ attributes: PropTypes.objectOf(PropTypes.string),
9890
9774
  });
9891
9775
 
9892
- T['io.flow.v0.models.price_book_item_upserted'] = PropTypes.exact({
9893
- discriminator: PropTypes.oneOf(['price_book_item_upserted']).isRequired,
9776
+ T['io.flow.v0.unions.promotion'] = PropTypes.oneOfType([T['io.flow.v0.models.free_shipping'], T['io.flow.v0.models.discount']]);
9777
+
9778
+ T['io.flow.v0.models.promotions'] = PropTypes.exact({
9779
+ applied: PropTypes.arrayOf(T['io.flow.v0.unions.promotion']).isRequired,
9780
+ available: PropTypes.arrayOf(T['io.flow.v0.unions.promotion']).isRequired,
9781
+ });
9782
+
9783
+ T['io.flow.v0.models.shopify_local_cart_metadata'] = PropTypes.exact({
9784
+ total_price: T['io.flow.v0.models.price_with_base'].isRequired,
9785
+ promotions: T['io.flow.v0.models.promotions'].isRequired,
9786
+ rules: T['io.flow.v0.models.order_rules_summary'],
9787
+ subtotal: T['io.flow.v0.models.price_with_base'].isRequired,
9788
+ vat: T['io.flow.v0.models.price_with_base'],
9789
+ duty: T['io.flow.v0.models.price_with_base'],
9790
+ discount: T['io.flow.v0.models.price_with_base'],
9791
+ });
9792
+
9793
+ T['io.flow.v0.models.shopify_cart'] = PropTypes.exact({
9794
+ id: PropTypes.string.isRequired,
9795
+ items: PropTypes.arrayOf(T['io.flow.v0.models.shopify_cart_item']).isRequired,
9796
+ item_count: PropTypes.number.isRequired,
9797
+ total_price: PropTypes.number.isRequired,
9798
+ local: T['io.flow.v0.models.shopify_local_cart_metadata'].isRequired,
9799
+ attributes: PropTypes.object,
9800
+ note: PropTypes.string,
9801
+ requires_shipping: PropTypes.bool.isRequired,
9802
+ total_weight: PropTypes.number,
9803
+ });
9804
+
9805
+ T['io.flow.v0.models.available_promotion'] = PropTypes.exact({
9806
+ id: PropTypes.string.isRequired,
9807
+ shipping_configuration: T['io.flow.v0.models.shipping_configuration_reference'].isRequired,
9808
+ region: T['io.flow.v0.models.region_reference'].isRequired,
9809
+ promotions: PropTypes.arrayOf(T['io.flow.v0.unions.promotion']).isRequired,
9810
+ });
9811
+
9812
+ T['io.flow.v0.models.available_promotions_upserted_v2'] = PropTypes.exact({
9813
+ discriminator: PropTypes.oneOf(['available_promotions_upserted_v2']).isRequired,
9894
9814
  event_id: PropTypes.string.isRequired,
9895
9815
  timestamp: PropTypes.string.isRequired,
9896
9816
  organization: PropTypes.string.isRequired,
9897
- price_book_item: T['io.flow.v0.models.price_book_item'].isRequired,
9817
+ available_promotion: T['io.flow.v0.models.available_promotion'].isRequired,
9898
9818
  });
9899
9819
 
9900
- T['io.flow.v0.models.order_summary_levy'] = PropTypes.exact({
9901
- rate: PropTypes.number.isRequired,
9902
- rate_label: PropTypes.string,
9903
- value: T['io.flow.v0.models.price'].isRequired,
9820
+ T['io.flow.v0.models.available_promotions_deleted_v2'] = PropTypes.exact({
9821
+ discriminator: PropTypes.oneOf(['available_promotions_deleted_v2']).isRequired,
9822
+ event_id: PropTypes.string.isRequired,
9823
+ timestamp: PropTypes.string.isRequired,
9824
+ organization: PropTypes.string.isRequired,
9825
+ available_promotion: T['io.flow.v0.models.available_promotion'].isRequired,
9904
9826
  });
9905
9827
 
9906
- T['io.flow.v0.models.order_summary_price_detail'] = PropTypes.exact({
9907
- price: T['io.flow.v0.models.price'].isRequired,
9828
+ T['io.flow.v0.enums.order_price_detail_component_key'] = PropTypes.oneOf([
9829
+ 'adjustment',
9830
+ 'vat_deminimis',
9831
+ 'duty_deminimis',
9832
+ 'duties_item_price',
9833
+ 'duties_freight',
9834
+ 'duties_insurance',
9835
+ 'vat_item_price',
9836
+ 'vat_freight',
9837
+ 'vat_insurance',
9838
+ 'vat_duties_item_price',
9839
+ 'vat_duties_freight',
9840
+ 'vat_duties_insurance',
9841
+ 'item_price',
9842
+ 'item_discount',
9843
+ 'rounding',
9844
+ 'insurance',
9845
+ 'shipping',
9846
+ 'shipping_discount',
9847
+ 'order_discount',
9848
+ 'subtotal_percent_sales_margin',
9849
+ 'subtotal_vat_percent_sales_margin',
9850
+ 'subtotal_duty_percent_sales_margin',
9851
+ 'vat_subsidy',
9852
+ 'duty_subsidy',
9853
+ 'remote_area_surcharge',
9854
+ 'fuel_surcharge',
9855
+ 'emergency_situation_surcharge',
9856
+ 'peak_surcharge',
9857
+ 'duties_taxes_paid_surcharge',
9858
+ 'tip',
9859
+ ]);
9860
+
9861
+ T['io.flow.v0.models.order_price_detail_component'] = PropTypes.exact({
9862
+ key: T['io.flow.v0.enums.order_price_detail_component_key'].isRequired,
9863
+ currency: PropTypes.string.isRequired,
9864
+ amount: PropTypes.number.isRequired,
9865
+ label: PropTypes.string.isRequired,
9866
+ base: T['io.flow.v0.models.price'].isRequired,
9867
+ name: PropTypes.string,
9868
+ });
9869
+
9870
+ T['io.flow.v0.models.order_price_detail'] = PropTypes.exact({
9871
+ key: T['io.flow.v0.enums.order_price_detail_key'].isRequired,
9872
+ currency: PropTypes.string.isRequired,
9873
+ amount: PropTypes.number.isRequired,
9874
+ label: PropTypes.string.isRequired,
9875
+ base: T['io.flow.v0.models.price'].isRequired,
9876
+ components: PropTypes.arrayOf(T['io.flow.v0.models.order_price_detail_component']).isRequired,
9908
9877
  name: PropTypes.string,
9909
9878
  rate: PropTypes.number,
9879
+ accuracy: T['io.flow.v0.enums.price_accuracy'],
9910
9880
  rate_label: PropTypes.string,
9911
9881
  });
9912
9882
 
9913
- T['io.flow.v0.models.order_summary_item'] = PropTypes.exact({
9883
+ T['io.flow.v0.models.allocation_detail_component'] = PropTypes.exact({
9884
+ discriminator: PropTypes.oneOf(['allocation_detail_component']).isRequired,
9885
+ key: T['io.flow.v0.enums.order_price_detail_component_key'].isRequired,
9886
+ total: T['io.flow.v0.models.price_with_base'].isRequired,
9887
+ price: T['io.flow.v0.models.price_with_base'],
9888
+ });
9889
+
9890
+ T['io.flow.v0.models.allocation_order_summary'] = PropTypes.exact({
9891
+ id: PropTypes.string.isRequired,
9914
9892
  number: PropTypes.string.isRequired,
9915
- name: PropTypes.string.isRequired,
9893
+ submitted_at: PropTypes.string,
9894
+ });
9895
+
9896
+ T['io.flow.v0.models.adyen_challenge_shopper_data'] = PropTypes.exact({
9897
+ discriminator: PropTypes.oneOf(['adyen_challenge_shopper_data']).isRequired,
9898
+ challenge_token: PropTypes.string.isRequired,
9899
+ });
9900
+
9901
+ T['io.flow.v0.models.adyen_identify_shopper_data'] = PropTypes.exact({
9902
+ discriminator: PropTypes.oneOf(['adyen_identify_shopper_data']).isRequired,
9903
+ fingerprint_token: PropTypes.string.isRequired,
9904
+ });
9905
+
9906
+ T['io.flow.v0.unions.adyen_native_data'] = PropTypes.oneOfType([
9907
+ T['io.flow.v0.models.adyen_identify_shopper_data'],
9908
+ T['io.flow.v0.models.adyen_challenge_shopper_data'],
9909
+ ]);
9910
+
9911
+ T['io.flow.v0.models.adyen_native_action_details'] = PropTypes.exact({
9912
+ discriminator: PropTypes.oneOf(['adyen_native_action_details']).isRequired,
9913
+ origin_key: PropTypes.string,
9914
+ data: T['io.flow.v0.unions.adyen_native_data'],
9915
+ });
9916
+
9917
+ T['io.flow.v0.unions.authorization_result_action_details'] = PropTypes.oneOfType([
9918
+ T['io.flow.v0.models.adyen_native_action_details'],
9919
+ T['io.flow.v0.models.stripe_authorization_result_action_details'],
9920
+ T['io.flow.v0.models.threeds_identify_action_details'],
9921
+ T['io.flow.v0.models.threeds_challenge_action_details'],
9922
+ T['io.flow.v0.models.applepay_sdk_create_result_action_details'],
9923
+ T['io.flow.v0.models.applepay_sdk_validate_result_action_details'],
9924
+ T['io.flow.v0.models.klarna_sdk_authorization_result_action_details'],
9925
+ T['io.flow.v0.models.select_issuer_option_action_details'],
9926
+ ]);
9927
+
9928
+ T['io.flow.v0.models.authorization_result_action_native'] = PropTypes.exact({
9929
+ discriminator: PropTypes.oneOf(['authorization_result_action_native']).isRequired,
9930
+ type: T['io.flow.v0.enums.authorization_result_action_type'].isRequired,
9931
+ authorization: T['io.flow.v0.models.authorization_reference'].isRequired,
9932
+ details: T['io.flow.v0.unions.authorization_result_action_details'],
9933
+ });
9934
+
9935
+ T['io.flow.v0.models.authorization_result_action_get'] = PropTypes.exact({
9936
+ discriminator: PropTypes.oneOf(['authorization_result_action_get']).isRequired,
9937
+ type: T['io.flow.v0.enums.authorization_result_action_type'].isRequired,
9938
+ url: PropTypes.string,
9939
+ details: T['io.flow.v0.unions.authorization_result_action_details'],
9940
+ });
9941
+
9942
+ T['io.flow.v0.unions.authorization_result_action'] = PropTypes.oneOfType([
9943
+ T['io.flow.v0.models.authorization_result_action_get'],
9944
+ T['io.flow.v0.models.authorization_result_action_post'],
9945
+ T['io.flow.v0.models.authorization_result_action_wait'],
9946
+ T['io.flow.v0.models.authorization_result_action_native'],
9947
+ ]);
9948
+
9949
+ T['io.flow.v0.models.authorization_result'] = PropTypes.exact({
9950
+ status: T['io.flow.v0.enums.authorization_status'].isRequired,
9951
+ action: T['io.flow.v0.unions.authorization_result_action'],
9952
+ decline_code: T['io.flow.v0.enums.authorization_decline_code'],
9953
+ avs: T['io.flow.v0.models.avs'],
9954
+ cvv: T['io.flow.v0.models.cvv'],
9955
+ three_d_secure: T['io.flow.v0.models.three_d_secure'],
9956
+ description: T['io.flow.v0.models.authorization_result_description'],
9957
+ authorization_code: T['io.flow.v0.models.authorization_code'],
9958
+ });
9959
+
9960
+ T['io.flow.v0.enums.adjustment_reason_key'] = PropTypes.oneOf(['duty_deminimis', 'vat_deminimis']);
9961
+
9962
+ T['io.flow.v0.models.adjustment_reason'] = PropTypes.exact({
9963
+ key: T['io.flow.v0.enums.adjustment_reason_key'].isRequired,
9964
+ label: PropTypes.string.isRequired,
9965
+ });
9966
+
9967
+ T['io.flow.v0.models.localized_adjustment'] = PropTypes.exact({
9968
+ currency: PropTypes.string.isRequired,
9969
+ amount: PropTypes.number.isRequired,
9970
+ label: PropTypes.string.isRequired,
9971
+ base: T['io.flow.v0.models.price'].isRequired,
9972
+ reason: T['io.flow.v0.models.adjustment_reason'].isRequired,
9973
+ });
9974
+
9975
+ T['io.flow.v0.enums.address_verification_result_field_code'] = PropTypes.oneOf(['matched', 'not_available', 'not_checked', 'not_matched']);
9976
+
9977
+ T['io.flow.v0.models.address_verification_result'] = PropTypes.exact({
9978
+ street_code: T['io.flow.v0.enums.address_verification_result_field_code'].isRequired,
9979
+ postal_code: T['io.flow.v0.enums.address_verification_result_field_code'].isRequired,
9980
+ name_code: T['io.flow.v0.enums.address_verification_result_field_code'].isRequired,
9981
+ raw: PropTypes.string,
9982
+ });
9983
+
9984
+ T['io.flow.v0.models.transaction_details_card'] = PropTypes.exact({
9985
+ type: PropTypes.oneOf(['card']).isRequired,
9986
+ address_verification_result: T['io.flow.v0.models.address_verification_result'],
9987
+ cvv_result: T['io.flow.v0.models.cvv_result'],
9988
+ network_details: T['io.flow.v0.models.transaction_network_details_card'],
9989
+ });
9990
+
9991
+ T['io.flow.v0.unions.transaction_details'] = PropTypes.oneOfType([T['io.flow.v0.models.transaction_details_card']]);
9992
+
9993
+ T['io.flow.v0.models.payment_method_summary_card'] = PropTypes.exact({
9994
+ type: PropTypes.oneOf(['card']).isRequired,
9995
+ merchant_of_record: T['io.flow.v0.enums.merchant_of_record'].isRequired,
9996
+ last_four: PropTypes.string.isRequired,
9997
+ card_type: T['io.flow.v0.enums.card_type'].isRequired,
9998
+ id: PropTypes.string.isRequired,
9999
+ reference: PropTypes.string,
10000
+ transaction_details: T['io.flow.v0.models.transaction_details_card'],
10001
+ });
10002
+
10003
+ T['io.flow.v0.unions.payment_method_summary'] = PropTypes.oneOfType([
10004
+ T['io.flow.v0.models.payment_method_summary_card'],
10005
+ T['io.flow.v0.models.payment_method_summary_klarna'],
10006
+ T['io.flow.v0.models.payment_method_summary_afterpay'],
10007
+ T['io.flow.v0.models.payment_method_summary_applepay'],
10008
+ T['io.flow.v0.models.payment_method_summary_googlepay'],
10009
+ T['io.flow.v0.models.payment_method_summary_paypal'],
10010
+ T['io.flow.v0.models.payment_method_summary_ideal'],
10011
+ T['io.flow.v0.models.payment_method_summary_sofort'],
10012
+ T['io.flow.v0.models.payment_method_summary_bancontact'],
10013
+ ]);
10014
+
10015
+ T['io.flow.v0.models.payment_authorization'] = PropTypes.exact({
10016
+ id: PropTypes.string.isRequired,
10017
+ payment_method_summary: T['io.flow.v0.unions.payment_method_summary'].isRequired,
10018
+ captures: PropTypes.arrayOf(T['io.flow.v0.models.payment_capture']).isRequired,
10019
+ refunds: PropTypes.arrayOf(T['io.flow.v0.models.payment_refund']).isRequired,
10020
+ reversals: PropTypes.arrayOf(T['io.flow.v0.models.payment_reversal']).isRequired,
10021
+ created_at: PropTypes.string.isRequired,
10022
+ updated_at: PropTypes.string.isRequired,
10023
+ status: T['io.flow.v0.models.payment_authorization_status'].isRequired,
10024
+ amount: PropTypes.number.isRequired,
10025
+ currency: PropTypes.string.isRequired,
10026
+ base_amount: PropTypes.number,
10027
+ base_currency: PropTypes.string,
10028
+ });
10029
+
10030
+ T['io.flow.v0.models.payment_information'] = PropTypes.exact({
10031
+ amount_refundable: PropTypes.number,
10032
+ amount_refunded: PropTypes.number,
10033
+ refundable_before: PropTypes.string,
10034
+ amount_capturable: PropTypes.number,
10035
+ amount_captured: PropTypes.number,
10036
+ capturable_before: PropTypes.string,
10037
+ authorizations: PropTypes.arrayOf(T['io.flow.v0.models.payment_authorization']).isRequired,
10038
+ });
10039
+
10040
+ T['io.flow.v0.models.address'] = PropTypes.exact({
10041
+ text: PropTypes.string,
10042
+ streets: PropTypes.arrayOf(PropTypes.string),
10043
+ street_number: PropTypes.string,
10044
+ city: PropTypes.string,
10045
+ province: PropTypes.string,
10046
+ postal: PropTypes.string,
10047
+ country: PropTypes.string,
10048
+ latitude: PropTypes.string,
10049
+ longitude: PropTypes.string,
10050
+ });
10051
+
10052
+ T['io.flow.v0.models.tracking_label_event_upserted'] = PropTypes.exact({
10053
+ discriminator: PropTypes.oneOf(['tracking_label_event_upserted']).isRequired,
10054
+ event_id: PropTypes.string.isRequired,
10055
+ timestamp: PropTypes.string.isRequired,
10056
+ organization: PropTypes.string.isRequired,
10057
+ address: T['io.flow.v0.models.address'].isRequired,
10058
+ carrier: PropTypes.string.isRequired,
10059
+ carrier_timestamp: PropTypes.string.isRequired,
10060
+ carrier_tracking_number: PropTypes.string.isRequired,
10061
+ flow_tracking_number: PropTypes.string.isRequired,
10062
+ status: PropTypes.string.isRequired,
10063
+ delivery_estimate: PropTypes.string,
9916
10064
  description: PropTypes.string,
9917
- attributes: PropTypes.arrayOf(T['io.flow.v0.models.checkout_item_content_attribute']).isRequired,
9918
- image: T['io.flow.v0.models.order_summary_image'],
9919
- price: T['io.flow.v0.models.price'].isRequired,
9920
- discount: T['io.flow.v0.models.price'],
9921
- tax: T['io.flow.v0.models.order_summary_levy'],
9922
- duty: T['io.flow.v0.models.order_summary_levy'],
9923
- price_attributes: PropTypes.objectOf(T['io.flow.v0.models.price']).isRequired,
10065
+ order_number: PropTypes.string,
9924
10066
  });
9925
10067
 
9926
- T['io.flow.v0.models.order_summary_line_item'] = PropTypes.exact({
9927
- id: PropTypes.string,
9928
- item: T['io.flow.v0.models.order_summary_item'].isRequired,
9929
- quantity: PropTypes.number.isRequired,
9930
- discount: T['io.flow.v0.models.price'],
9931
- tax: T['io.flow.v0.models.order_summary_levy'],
9932
- duty: T['io.flow.v0.models.order_summary_levy'],
9933
- total: T['io.flow.v0.models.price'].isRequired,
9934
- price_attributes: PropTypes.objectOf(T['io.flow.v0.models.price']).isRequired,
9935
- attributes: PropTypes.objectOf(PropTypes.string),
10068
+ T['io.flow.v0.models.tracking_event'] = PropTypes.exact({
10069
+ id: PropTypes.string.isRequired,
10070
+ address: T['io.flow.v0.models.address'].isRequired,
10071
+ status: T['io.flow.v0.enums.tracking_status'].isRequired,
10072
+ timestamp: PropTypes.string.isRequired,
10073
+ description: PropTypes.string,
9936
10074
  });
9937
10075
 
9938
- T['io.flow.v0.models.order_summary'] = PropTypes.exact({
9939
- number: PropTypes.string.isRequired,
9940
- subtotal: T['io.flow.v0.models.order_summary_price_detail'].isRequired,
9941
- shipping: T['io.flow.v0.models.order_summary_price_detail'],
9942
- tax: T['io.flow.v0.models.order_summary_price_detail'],
9943
- duty: T['io.flow.v0.models.order_summary_price_detail'],
9944
- insurance: T['io.flow.v0.models.order_summary_price_detail'],
9945
- discount: T['io.flow.v0.models.order_summary_price_detail'],
9946
- surcharges: T['io.flow.v0.models.order_summary_price_detail'],
9947
- adjustment: T['io.flow.v0.models.order_summary_price_detail'],
9948
- total: T['io.flow.v0.models.order_summary_price_detail'].isRequired,
9949
- lines: PropTypes.arrayOf(T['io.flow.v0.models.order_summary_line_item']).isRequired,
9950
- identifiers: PropTypes.objectOf(PropTypes.string),
9951
- attributes: PropTypes.objectOf(PropTypes.string),
10076
+ T['io.flow.v0.models.tracking_label'] = PropTypes.exact({
10077
+ id: PropTypes.string.isRequired,
10078
+ carrier: PropTypes.string.isRequired,
10079
+ carrier_tracking_number: PropTypes.string.isRequired,
10080
+ events: PropTypes.arrayOf(T['io.flow.v0.models.tracking_event']).isRequired,
10081
+ status: T['io.flow.v0.enums.tracking_status'].isRequired,
10082
+ timestamp: PropTypes.string.isRequired,
10083
+ delivery_estimate: PropTypes.string,
10084
+ description: PropTypes.string,
10085
+ });
10086
+
10087
+ T['io.flow.v0.models.tracking'] = PropTypes.exact({
10088
+ id: PropTypes.string.isRequired,
10089
+ labels: PropTypes.arrayOf(T['io.flow.v0.models.tracking_label']).isRequired,
10090
+ status: T['io.flow.v0.enums.tracking_status'].isRequired,
10091
+ attributes: PropTypes.objectOf(PropTypes.string).isRequired,
10092
+ url: PropTypes.string.isRequired,
10093
+ window: T['io.flow.v0.models.datetime_range'],
10094
+ order_number: PropTypes.string,
10095
+ });
10096
+
10097
+ T['io.flow.v0.models.know_your_business_usa_form'] = PropTypes.exact({
10098
+ discriminator: PropTypes.oneOf(['know_your_business_usa_form']).isRequired,
10099
+ primary_entity: T['io.flow.v0.unions.entity'].isRequired,
10100
+ parent_company: T['io.flow.v0.models.company'],
10101
+ ultimate_parent_company: T['io.flow.v0.models.company'],
10102
+ ultimate_beneficiary_owner: T['io.flow.v0.models.individual'].isRequired,
10103
+ business_url: PropTypes.string.isRequired,
10104
+ business_address: T['io.flow.v0.models.address'].isRequired,
10105
+ });
10106
+
10107
+ T['io.flow.v0.unions.know_your_business_form'] = PropTypes.oneOfType([T['io.flow.v0.models.know_your_business_usa_form']]);
10108
+
10109
+ T['io.flow.v0.models.know_your_business_usa'] = PropTypes.exact({
10110
+ discriminator: PropTypes.oneOf(['know_your_business_usa']).isRequired,
10111
+ id: PropTypes.string.isRequired,
10112
+ organization_id: PropTypes.string.isRequired,
10113
+ shop: T['io.flow.v0.models.shop'],
10114
+ primary_entity: T['io.flow.v0.unions.entity'].isRequired,
10115
+ parent_company: T['io.flow.v0.models.company'],
10116
+ ultimate_parent_company: T['io.flow.v0.models.company'],
10117
+ ultimate_beneficiary_owner: T['io.flow.v0.models.individual'].isRequired,
10118
+ business_url: PropTypes.string.isRequired,
10119
+ business_address: T['io.flow.v0.models.address'].isRequired,
10120
+ });
10121
+
10122
+ T['io.flow.v0.unions.know_your_business'] = PropTypes.oneOfType([T['io.flow.v0.models.know_your_business_usa']]);
10123
+
10124
+ T['io.flow.v0.models.harmonized_landed_cost_item'] = PropTypes.exact({
10125
+ item: T['io.flow.v0.models.harmonized_item_reference'].isRequired,
10126
+ duty: T['io.flow.v0.models.duty'].isRequired,
10127
+ tax: T['io.flow.v0.models.tax'].isRequired,
10128
+ tax_applicability: T['io.flow.v0.enums.tax_applicability'],
10129
+ origin: PropTypes.string,
10130
+ hs_code: PropTypes.string,
10131
+ tariff_code: PropTypes.string,
10132
+ customs_description: PropTypes.string,
10133
+ source_address: T['io.flow.v0.models.address'],
10134
+ });
10135
+
10136
+ T['io.flow.v0.models.harmonized_landed_cost'] = PropTypes.exact({
10137
+ address: T['io.flow.v0.models.address'].isRequired,
10138
+ items: PropTypes.arrayOf(T['io.flow.v0.models.harmonized_landed_cost_item']).isRequired,
10139
+ tax_registration: T['io.flow.v0.models.tax_registration'],
10140
+ });
10141
+
10142
+ T['io.flow.v0.models.harmonized_landed_cost_upserted'] = PropTypes.exact({
10143
+ discriminator: PropTypes.oneOf(['harmonized_landed_cost_upserted']).isRequired,
10144
+ event_id: PropTypes.string.isRequired,
10145
+ timestamp: PropTypes.string.isRequired,
10146
+ organization: PropTypes.string.isRequired,
10147
+ id: PropTypes.string.isRequired,
10148
+ landed_cost: T['io.flow.v0.models.harmonized_landed_cost'].isRequired,
9952
10149
  });
9953
10150
 
9954
- T['io.flow.v0.models.email_notification_data_refund'] = PropTypes.exact({
9955
- discriminator: PropTypes.oneOf(['refund']).isRequired,
9956
- order: T['io.flow.v0.models.order_summary'].isRequired,
9957
- 'return': T['io.flow.v0.models.order_summary'].isRequired,
9958
- payment: T['io.flow.v0.models.email_payment_summary'].isRequired,
10151
+ T['io.flow.v0.models.consumer_invoice_center_reference'] = PropTypes.exact({
10152
+ id: PropTypes.string.isRequired,
10153
+ key: PropTypes.string.isRequired,
10154
+ name: PropTypes.string.isRequired,
10155
+ address: T['io.flow.v0.models.address'].isRequired,
9959
10156
  });
9960
10157
 
9961
- T['io.flow.v0.models.order_quote_line'] = PropTypes.exact({
9962
- id: PropTypes.string.isRequired,
9963
- item: T['io.flow.v0.models.order_summary_item'].isRequired,
9964
- errors: PropTypes.arrayOf(T['io.flow.v0.models.order_quote_line_error']),
9965
- quantity: PropTypes.number.isRequired,
9966
- discount: T['io.flow.v0.models.order_quote_line_discount'],
9967
- tax: T['io.flow.v0.models.order_quote_summary_tax'],
9968
- duty: T['io.flow.v0.models.order_quote_summary_duty'],
9969
- unit_price: T['io.flow.v0.unions.order_quote_price'].isRequired,
9970
- total: T['io.flow.v0.unions.order_quote_price'].isRequired,
9971
- price_attributes: PropTypes.objectOf(T['io.flow.v0.models.order_quote_price_standard']).isRequired,
9972
- attributes: PropTypes.objectOf(PropTypes.string).isRequired,
10158
+ T['io.flow.v0.models.address_suggestion'] = PropTypes.exact({
10159
+ address: T['io.flow.v0.models.address'].isRequired,
10160
+ streets: PropTypes.bool.isRequired,
10161
+ city: PropTypes.bool.isRequired,
10162
+ province: PropTypes.bool.isRequired,
10163
+ postal: PropTypes.bool.isRequired,
10164
+ country: PropTypes.bool.isRequired,
9973
10165
  });
9974
10166
 
9975
- T['io.flow.v0.models.order_quote_summary_items'] = PropTypes.exact({
9976
- lines: PropTypes.arrayOf(T['io.flow.v0.models.order_quote_line']).isRequired,
9977
- total: T['io.flow.v0.unions.order_quote_price'].isRequired,
10167
+ T['io.flow.v0.models.address_verification'] = PropTypes.exact({
10168
+ address: T['io.flow.v0.models.address'].isRequired,
10169
+ valid: PropTypes.bool.isRequired,
10170
+ suggestions: PropTypes.arrayOf(T['io.flow.v0.models.address_suggestion']).isRequired,
9978
10171
  });
9979
10172
 
9980
- T['io.flow.v0.models.order_quote_summary'] = PropTypes.exact({
9981
- items: T['io.flow.v0.models.order_quote_summary_items'].isRequired,
9982
- shipping: T['io.flow.v0.models.order_quote_summary_shipping'],
9983
- tax: T['io.flow.v0.models.order_quote_summary_tax'],
9984
- duty: T['io.flow.v0.models.order_quote_summary_duty'],
9985
- total: T['io.flow.v0.models.order_quote_summary_total'].isRequired,
9986
- balance: T['io.flow.v0.unions.order_quote_price'].isRequired,
10173
+ T['io.flow.v0.models.field_validation_pattern'] = PropTypes.exact({
10174
+ discriminator: PropTypes.oneOf(['pattern']).isRequired,
10175
+ pattern: PropTypes.string.isRequired,
9987
10176
  });
9988
10177
 
9989
- T['io.flow.v0.models.value_threshold_exceeded_details'] = PropTypes.exact({
9990
- local: T['io.flow.v0.models.price'].isRequired,
9991
- original: T['io.flow.v0.models.price'].isRequired,
10178
+ T['io.flow.v0.models.field_validation_max'] = PropTypes.exact({
10179
+ discriminator: PropTypes.oneOf(['max']).isRequired,
10180
+ length: PropTypes.number.isRequired,
9992
10181
  });
9993
10182
 
9994
- T['io.flow.v0.models.order_error'] = PropTypes.exact({
9995
- code: T['io.flow.v0.enums.order_error_code'].isRequired,
9996
- messages: PropTypes.arrayOf(PropTypes.string).isRequired,
9997
- numbers: PropTypes.arrayOf(PropTypes.string),
9998
- destination_country: T['io.flow.v0.models.country'],
9999
- threshold: T['io.flow.v0.models.value_threshold_exceeded_details'],
10183
+ T['io.flow.v0.models.field_validation_min'] = PropTypes.exact({
10184
+ discriminator: PropTypes.oneOf(['min']).isRequired,
10185
+ length: PropTypes.number.isRequired,
10000
10186
  });
10001
10187
 
10002
- T['io.flow.v0.models.localized_line_item_discount'] = PropTypes.exact({
10003
- amount: PropTypes.number.isRequired,
10004
- currency: PropTypes.string.isRequired,
10005
- label: PropTypes.string,
10006
- base: T['io.flow.v0.models.price'],
10007
- requested: T['io.flow.v0.models.money'],
10008
- discount_label: PropTypes.string,
10188
+ T['io.flow.v0.models.field_validation_required_if_present'] = PropTypes.exact({
10189
+ discriminator: PropTypes.oneOf(['required_if_present']).isRequired,
10190
+ placeholder: PropTypes.string,
10009
10191
  });
10010
10192
 
10011
- T['io.flow.v0.models.price_details'] = PropTypes.exact({
10012
- currency: PropTypes.string.isRequired,
10013
- item_price: T['io.flow.v0.models.price_detail'].isRequired,
10014
- margins: T['io.flow.v0.models.price_detail'].isRequired,
10015
- vat: T['io.flow.v0.models.price_detail'].isRequired,
10016
- duty: T['io.flow.v0.models.price_detail'].isRequired,
10017
- rounding: T['io.flow.v0.models.price_detail'].isRequired,
10018
- price: T['io.flow.v0.models.price'].isRequired,
10019
- total: T['io.flow.v0.models.price'].isRequired,
10020
- adjustment: T['io.flow.v0.models.price_detail'],
10193
+ T['io.flow.v0.models.field_validation_required'] = PropTypes.exact({
10194
+ discriminator: PropTypes.oneOf(['required']).isRequired,
10195
+ placeholder: PropTypes.string,
10021
10196
  });
10022
10197
 
10023
- T['io.flow.v0.models.local_price_details'] = PropTypes.exact({
10024
- base: T['io.flow.v0.models.price_details'].isRequired,
10025
- local: T['io.flow.v0.models.price_details'].isRequired,
10026
- discount: T['io.flow.v0.models.price_detail'],
10027
- local_before_discount: T['io.flow.v0.models.price_detail'],
10198
+ T['io.flow.v0.models.address_configuration_province_translation_locale'] = PropTypes.exact({
10199
+ id: PropTypes.string.isRequired,
10200
+ name: PropTypes.string.isRequired,
10201
+ language: PropTypes.string.isRequired,
10028
10202
  });
10029
10203
 
10030
- T['io.flow.v0.models.price_check'] = PropTypes.exact({
10031
- display: T['io.flow.v0.models.local_price_details'].isRequired,
10032
- 'final': T['io.flow.v0.models.local_price_details'].isRequired,
10204
+ T['io.flow.v0.enums.address_field_name'] = PropTypes.oneOf([
10205
+ 'first_name',
10206
+ 'last_name',
10207
+ 'street_1',
10208
+ 'street_2',
10209
+ 'city',
10210
+ 'province',
10211
+ 'postal',
10212
+ 'country',
10213
+ 'phone',
10214
+ 'company',
10215
+ 'vat_registration_number',
10216
+ ]);
10217
+
10218
+ T['io.flow.v0.models.address_configuration_field_placement'] = PropTypes.exact({
10219
+ name: T['io.flow.v0.enums.address_field_name'].isRequired,
10033
10220
  });
10034
10221
 
10035
- T['io.flow.v0.models.item_form_overlay'] = PropTypes.exact({
10222
+ T['io.flow.v0.models.address_configuration_province_translation'] = PropTypes.exact({
10223
+ locale: T['io.flow.v0.models.address_configuration_province_translation_locale'].isRequired,
10224
+ name: PropTypes.string.isRequired,
10225
+ });
10226
+
10227
+ T['io.flow.v0.unions.field_validation_rule'] = PropTypes.oneOfType([
10228
+ T['io.flow.v0.models.field_validation_required'],
10229
+ T['io.flow.v0.models.field_validation_required_if_present'],
10230
+ T['io.flow.v0.models.field_validation_min'],
10231
+ T['io.flow.v0.models.field_validation_max'],
10232
+ T['io.flow.v0.models.field_validation_pattern'],
10233
+ ]);
10234
+
10235
+ T['io.flow.v0.enums.postal_type'] = PropTypes.oneOf(['eircode', 'pin', 'postal', 'zip']);
10236
+
10237
+ T['io.flow.v0.enums.province_type'] = PropTypes.oneOf([
10238
+ 'area',
10239
+ 'city',
10240
+ 'county',
10241
+ 'department',
10242
+ 'dependency',
10243
+ 'district',
10244
+ 'do_si',
10245
+ 'emirate',
10246
+ 'entity',
10247
+ 'island',
10248
+ 'municipality',
10249
+ 'oblast',
10250
+ 'outlying_area',
10251
+ 'parish',
10252
+ 'prefecture',
10253
+ 'province',
10254
+ 'state',
10255
+ 'territory',
10256
+ 'other',
10257
+ ]);
10258
+
10259
+ T['io.flow.v0.models.province'] = PropTypes.exact({
10036
10260
  id: PropTypes.string.isRequired,
10037
- number: PropTypes.string.isRequired,
10038
- key: PropTypes.string.isRequired,
10039
- position: PropTypes.number.isRequired,
10040
- price: T['io.flow.v0.models.price'],
10041
- categories: PropTypes.arrayOf(PropTypes.string),
10042
- description: PropTypes.string,
10043
- attributes: PropTypes.objectOf(PropTypes.string),
10044
- dimensions: T['io.flow.v0.models.dimensions'],
10045
- images: PropTypes.arrayOf(T['io.flow.v0.models.image_form']),
10261
+ iso_3166_2: PropTypes.string.isRequired,
10262
+ name: PropTypes.string.isRequired,
10263
+ country: PropTypes.string.isRequired,
10264
+ province_type: T['io.flow.v0.enums.province_type'].isRequired,
10265
+ translations: PropTypes.arrayOf(T['io.flow.v0.models.localized_translation']),
10046
10266
  });
10047
10267
 
10048
- T['io.flow.v0.models.order_promotion_trigger'] = PropTypes.exact({
10049
- type: T['io.flow.v0.enums.promotion_trigger_type'].isRequired,
10050
- min: T['io.flow.v0.models.price'],
10268
+ T['io.flow.v0.models.address_configuration_format'] = PropTypes.exact({
10269
+ placements: PropTypes.arrayOf(T['io.flow.v0.models.address_configuration_field_placement']).isRequired,
10051
10270
  });
10052
10271
 
10053
- T['io.flow.v0.models.promotion_trigger'] = PropTypes.exact({
10054
- type: T['io.flow.v0.enums.promotion_trigger_type'].isRequired,
10055
- min: T['io.flow.v0.models.price'].isRequired,
10056
- remaining: T['io.flow.v0.models.price'].isRequired,
10272
+ T['io.flow.v0.models.address_configuration_province'] = PropTypes.exact({
10273
+ value: PropTypes.string.isRequired,
10274
+ name: PropTypes.string.isRequired,
10275
+ translations: PropTypes.arrayOf(T['io.flow.v0.models.address_configuration_province_translation']),
10057
10276
  });
10058
10277
 
10059
- T['io.flow.v0.models.free_shipping'] = PropTypes.exact({
10060
- discriminator: PropTypes.oneOf(['free_shipping']).isRequired,
10061
- trigger: T['io.flow.v0.models.promotion_trigger'].isRequired,
10062
- max: T['io.flow.v0.models.price'],
10278
+ T['io.flow.v0.models.address_field_validation'] = PropTypes.exact({
10279
+ first_name: PropTypes.arrayOf(T['io.flow.v0.unions.field_validation_rule']).isRequired,
10280
+ last_name: PropTypes.arrayOf(T['io.flow.v0.unions.field_validation_rule']).isRequired,
10281
+ street_1: PropTypes.arrayOf(T['io.flow.v0.unions.field_validation_rule']).isRequired,
10282
+ street_2: PropTypes.arrayOf(T['io.flow.v0.unions.field_validation_rule']).isRequired,
10283
+ city: PropTypes.arrayOf(T['io.flow.v0.unions.field_validation_rule']).isRequired,
10284
+ province: PropTypes.arrayOf(T['io.flow.v0.unions.field_validation_rule']).isRequired,
10285
+ postal: PropTypes.arrayOf(T['io.flow.v0.unions.field_validation_rule']).isRequired,
10286
+ phone: PropTypes.arrayOf(T['io.flow.v0.unions.field_validation_rule']).isRequired,
10287
+ vat_registration_number: PropTypes.arrayOf(T['io.flow.v0.unions.field_validation_rule']).isRequired,
10063
10288
  });
10064
10289
 
10065
- T['io.flow.v0.models.flat_rate'] = PropTypes.exact({
10066
- discriminator: PropTypes.oneOf(['flat_rate']).isRequired,
10067
- price: T['io.flow.v0.models.price'].isRequired,
10068
- zero_amount_indicator: T['io.flow.v0.enums.zero_amount_indicator'],
10290
+ T['io.flow.v0.models.address_configuration'] = PropTypes.exact({
10291
+ country: PropTypes.string.isRequired,
10292
+ field_validation: T['io.flow.v0.models.address_field_validation'].isRequired,
10293
+ provinces: PropTypes.arrayOf(T['io.flow.v0.models.address_configuration_province']).isRequired,
10294
+ formats: PropTypes.arrayOf(T['io.flow.v0.models.address_configuration_format']),
10295
+ province_type: T['io.flow.v0.enums.province_type'],
10296
+ postal_type: T['io.flow.v0.enums.postal_type'],
10069
10297
  });
10070
10298
 
10071
- T['io.flow.v0.models.localized_item_price'] = PropTypes.exact({
10072
- key: PropTypes.oneOf(['localized_item_price']).isRequired,
10073
- currency: PropTypes.string.isRequired,
10299
+ T['io.flow.v0.models.money'] = PropTypes.exact({
10074
10300
  amount: PropTypes.number.isRequired,
10075
- label: PropTypes.string.isRequired,
10076
- base: T['io.flow.v0.models.price'].isRequired,
10077
- includes: T['io.flow.v0.models.included_levies'],
10301
+ currency: PropTypes.string.isRequired,
10078
10302
  });
10079
10303
 
10080
- T['io.flow.v0.models.experience_logistics_tier_summary_prices'] = PropTypes.exact({
10081
- minimum: T['io.flow.v0.models.price'].isRequired,
10304
+ T['io.flow.v0.models.virtual_card_form'] = PropTypes.exact({
10305
+ limit: T['io.flow.v0.models.money'].isRequired,
10306
+ attributes: PropTypes.objectOf(PropTypes.string),
10082
10307
  });
10083
10308
 
10084
- T['io.flow.v0.models.experience_logistics_tier_summary'] = PropTypes.exact({
10085
- prices: T['io.flow.v0.models.experience_logistics_tier_summary_prices'].isRequired,
10309
+ T['io.flow.v0.models.tracking_label_form'] = PropTypes.exact({
10310
+ tracking_id: PropTypes.string.isRequired,
10311
+ status: T['io.flow.v0.enums.tracking_status'].isRequired,
10312
+ carrier: PropTypes.string.isRequired,
10313
+ service_id: PropTypes.string,
10314
+ carrier_tracking_number: PropTypes.string.isRequired,
10315
+ delivery_estimate: PropTypes.string,
10316
+ description: PropTypes.string,
10317
+ timestamp: PropTypes.string,
10318
+ cost: T['io.flow.v0.models.money'],
10319
+ ratecard_owner: T['io.flow.v0.enums.ratecard_owner'],
10086
10320
  });
10087
10321
 
10088
- T['io.flow.v0.models.experience_logistics_summary'] = PropTypes.exact({
10089
- outbound: T['io.flow.v0.models.experience_logistics_tier_summary'],
10090
- 'return': T['io.flow.v0.models.experience_logistics_tier_summary'],
10322
+ T['io.flow.v0.models.shipping_label_hop_summary'] = PropTypes.exact({
10323
+ lane: T['io.flow.v0.models.shipping_label_lane_summary'].isRequired,
10324
+ cost: T['io.flow.v0.models.money'].isRequired,
10325
+ itemized_estimate: T['io.flow.v0.models.shipping_label_hop_cost_itemized_estimate'],
10091
10326
  });
10092
10327
 
10093
- T['io.flow.v0.models.delivery_option_summary'] = PropTypes.exact({
10328
+ T['io.flow.v0.models.security_service_fee'] = PropTypes.exact({
10329
+ discriminator: PropTypes.oneOf(['security_service_fee']).isRequired,
10330
+ amount: T['io.flow.v0.models.money'].isRequired,
10331
+ countries: PropTypes.arrayOf(PropTypes.string).isRequired,
10332
+ });
10333
+
10334
+ T['io.flow.v0.models.security_ratecard_fee'] = PropTypes.exact({
10335
+ discriminator: PropTypes.oneOf(['security_ratecard_fee']).isRequired,
10336
+ amount: T['io.flow.v0.models.money'].isRequired,
10337
+ });
10338
+
10339
+ T['io.flow.v0.models.reversal'] = PropTypes.exact({
10094
10340
  id: PropTypes.string.isRequired,
10095
- cost: T['io.flow.v0.models.price'].isRequired,
10096
- delivered_duty: T['io.flow.v0.enums.delivered_duty'].isRequired,
10097
- price: T['io.flow.v0.models.price'].isRequired,
10098
- service: T['io.flow.v0.models.service_reference'].isRequired,
10099
- tier: T['io.flow.v0.models.tier_reference'].isRequired,
10100
- window: T['io.flow.v0.models.datetime_range'].isRequired,
10341
+ key: PropTypes.string.isRequired,
10342
+ authorization: T['io.flow.v0.models.authorization_reference'].isRequired,
10343
+ status: T['io.flow.v0.enums.reversal_status'].isRequired,
10344
+ amount: PropTypes.number.isRequired,
10345
+ currency: PropTypes.string.isRequired,
10346
+ requested: T['io.flow.v0.models.money'].isRequired,
10347
+ created_at: PropTypes.string.isRequired,
10348
+ attributes: PropTypes.objectOf(PropTypes.string).isRequired,
10349
+ base: T['io.flow.v0.models.money'],
10101
10350
  });
10102
10351
 
10103
- T['io.flow.v0.models.delivery_option_version'] = PropTypes.exact({
10352
+ T['io.flow.v0.models.reversal_version'] = PropTypes.exact({
10104
10353
  id: PropTypes.string.isRequired,
10105
10354
  timestamp: PropTypes.string.isRequired,
10106
10355
  type: T['io.flow.v0.enums.change_type'].isRequired,
10107
- delivery_option: T['io.flow.v0.models.delivery_option_summary'].isRequired,
10356
+ reversal: T['io.flow.v0.models.reversal'].isRequired,
10108
10357
  });
10109
10358
 
10110
- T['io.flow.v0.models.delivery_option_cost_component'] = PropTypes.exact({
10111
- key: T['io.flow.v0.enums.delivery_option_cost_detail_component_key'].isRequired,
10112
- currency: PropTypes.string.isRequired,
10113
- amount: PropTypes.number.isRequired,
10114
- label: PropTypes.string.isRequired,
10115
- base: T['io.flow.v0.models.price'],
10359
+ T['io.flow.v0.models.reversal_upserted'] = PropTypes.exact({
10360
+ discriminator: PropTypes.oneOf(['reversal_upserted']).isRequired,
10361
+ event_id: PropTypes.string.isRequired,
10362
+ timestamp: PropTypes.string.isRequired,
10363
+ organization: PropTypes.string.isRequired,
10364
+ id: PropTypes.string.isRequired,
10365
+ reversal: T['io.flow.v0.models.reversal'].isRequired,
10116
10366
  });
10117
10367
 
10118
- T['io.flow.v0.models.delivery_option_cost_detail'] = PropTypes.exact({
10119
- source: T['io.flow.v0.enums.delivery_option_cost_detail_source'].isRequired,
10120
- ratecard_id: PropTypes.string,
10121
- currency: PropTypes.string.isRequired,
10122
- amount: PropTypes.number.isRequired,
10123
- label: PropTypes.string.isRequired,
10124
- base: T['io.flow.v0.models.price'],
10125
- components: PropTypes.arrayOf(T['io.flow.v0.models.delivery_option_cost_component']).isRequired,
10368
+ T['io.flow.v0.models.reversal_deleted'] = PropTypes.exact({
10369
+ discriminator: PropTypes.oneOf(['reversal_deleted']).isRequired,
10370
+ event_id: PropTypes.string.isRequired,
10371
+ timestamp: PropTypes.string.isRequired,
10372
+ organization: PropTypes.string.isRequired,
10373
+ reversal: T['io.flow.v0.models.reversal'].isRequired,
10126
10374
  });
10127
10375
 
10128
- T['io.flow.v0.models.price_with_base_and_details'] = PropTypes.exact({
10129
- currency: PropTypes.string.isRequired,
10130
- amount: PropTypes.number.isRequired,
10131
- label: PropTypes.string.isRequired,
10132
- base: T['io.flow.v0.models.price'],
10133
- details: PropTypes.arrayOf(T['io.flow.v0.models.delivery_option_cost_detail']),
10376
+ T['io.flow.v0.models.remote_area_service_fee'] = PropTypes.exact({
10377
+ discriminator: PropTypes.oneOf(['remote_area_service_fee']).isRequired,
10378
+ amount: T['io.flow.v0.models.money'].isRequired,
10134
10379
  });
10135
10380
 
10136
- T['io.flow.v0.models.original_prices'] = PropTypes.exact({
10137
- value: T['io.flow.v0.models.price'].isRequired,
10138
- max: T['io.flow.v0.models.price'].isRequired,
10381
+ T['io.flow.v0.models.remote_area_ratecard_fee'] = PropTypes.exact({
10382
+ discriminator: PropTypes.oneOf(['remote_area_ratecard_fee']).isRequired,
10383
+ amount: T['io.flow.v0.models.money'].isRequired,
10139
10384
  });
10140
10385
 
10141
- T['io.flow.v0.models.item_shipping_pricing'] = PropTypes.exact({
10142
- min: T['io.flow.v0.models.price'].isRequired,
10143
- max: T['io.flow.v0.models.price'],
10386
+ T['io.flow.v0.models.price_source_provided'] = PropTypes.exact({
10387
+ discriminator: PropTypes.oneOf(['provided']).isRequired,
10388
+ price: T['io.flow.v0.models.money'].isRequired,
10144
10389
  });
10145
10390
 
10146
- T['io.flow.v0.models.country_shipping_pricing'] = PropTypes.exact({
10147
- pricing: T['io.flow.v0.models.item_shipping_pricing'].isRequired,
10148
- countries: PropTypes.arrayOf(PropTypes.string).isRequired,
10391
+ T['io.flow.v0.models.price_source_price_book'] = PropTypes.exact({
10392
+ discriminator: PropTypes.oneOf(['price_book']).isRequired,
10393
+ price: T['io.flow.v0.models.money'].isRequired,
10394
+ includes: T['io.flow.v0.models.included_levies'].isRequired,
10395
+ price_book_reference: T['io.flow.v0.models.price_source_price_book_reference'].isRequired,
10149
10396
  });
10150
10397
 
10151
- T['io.flow.v0.models.shipping_configuration_item_shipping_pricing'] = PropTypes.exact({
10152
- id: PropTypes.string.isRequired,
10153
- item: T['io.flow.v0.models.item_reference'].isRequired,
10154
- shipping_configuration: T['io.flow.v0.models.shipping_configuration_summary'].isRequired,
10155
- country_shipping_pricings: PropTypes.arrayOf(T['io.flow.v0.models.country_shipping_pricing']).isRequired,
10398
+ T['io.flow.v0.models.price_source_catalog'] = PropTypes.exact({
10399
+ discriminator: PropTypes.oneOf(['catalog']).isRequired,
10400
+ price: T['io.flow.v0.models.money'].isRequired,
10156
10401
  });
10157
10402
 
10158
- T['io.flow.v0.models.shipping_configuration_item_shipping_pricing_upserted'] = PropTypes.exact({
10159
- discriminator: PropTypes.oneOf(['shipping_configuration_item_shipping_pricing_upserted']).isRequired,
10160
- event_id: PropTypes.string.isRequired,
10161
- timestamp: PropTypes.string.isRequired,
10162
- organization_id: PropTypes.string.isRequired,
10163
- shipping_configuration_item_shipping_pricing: T['io.flow.v0.models.shipping_configuration_item_shipping_pricing'].isRequired,
10164
- });
10403
+ T['io.flow.v0.unions.price_source'] = PropTypes.oneOfType([
10404
+ T['io.flow.v0.models.price_source_price_book'],
10405
+ T['io.flow.v0.models.price_source_catalog'],
10406
+ T['io.flow.v0.models.price_source_provided'],
10407
+ ]);
10165
10408
 
10166
- T['io.flow.v0.models.shipping_configuration_item_shipping_pricing_deleted'] = PropTypes.exact({
10167
- discriminator: PropTypes.oneOf(['shipping_configuration_item_shipping_pricing_deleted']).isRequired,
10168
- event_id: PropTypes.string.isRequired,
10169
- timestamp: PropTypes.string.isRequired,
10170
- organization_id: PropTypes.string.isRequired,
10171
- shipping_configuration_item_shipping_pricing: T['io.flow.v0.models.shipping_configuration_item_shipping_pricing'].isRequired,
10409
+ T['io.flow.v0.models.shopify_line'] = PropTypes.exact({
10410
+ variant_id: PropTypes.number.isRequired,
10411
+ quantity: PropTypes.number.isRequired,
10412
+ price: T['io.flow.v0.models.shopify_price'].isRequired,
10413
+ total: T['io.flow.v0.models.shopify_price'].isRequired,
10414
+ price_source: T['io.flow.v0.unions.price_source'],
10172
10415
  });
10173
10416
 
10174
- T['io.flow.v0.models.consumer_invoice_line_discount'] = PropTypes.exact({
10175
- discriminator: PropTypes.oneOf(['discount']).isRequired,
10176
- price: T['io.flow.v0.models.price'].isRequired,
10417
+ T['io.flow.v0.models.peak_surcharge_service_fee'] = PropTypes.exact({
10418
+ discriminator: PropTypes.oneOf(['peak_surcharge_service_fee']).isRequired,
10419
+ amount: T['io.flow.v0.models.money'].isRequired,
10420
+ starts_at: PropTypes.string,
10421
+ ends_at: PropTypes.string,
10177
10422
  });
10178
10423
 
10179
- T['io.flow.v0.models.consumer_invoice_levy'] = PropTypes.exact({
10180
- rate: PropTypes.number.isRequired,
10181
- value: T['io.flow.v0.models.price'].isRequired,
10424
+ T['io.flow.v0.models.peak_surcharge_ratecard_fee'] = PropTypes.exact({
10425
+ discriminator: PropTypes.oneOf(['peak_surcharge_ratecard_fee']).isRequired,
10426
+ amount: T['io.flow.v0.models.money'].isRequired,
10427
+ starts_at: PropTypes.string,
10428
+ ends_at: PropTypes.string,
10182
10429
  });
10183
10430
 
10184
- T['io.flow.v0.models.consumer_invoice_line_shipping'] = PropTypes.exact({
10185
- discriminator: PropTypes.oneOf(['shipping']).isRequired,
10186
- price: T['io.flow.v0.models.price'].isRequired,
10187
- discount: T['io.flow.v0.models.price'],
10188
- tax: T['io.flow.v0.models.consumer_invoice_levy'],
10189
- duty: T['io.flow.v0.models.consumer_invoice_levy'],
10431
+ T['io.flow.v0.models.outbound_carton_fee'] = PropTypes.exact({
10432
+ discriminator: PropTypes.oneOf(['outbound_carton_fee']).isRequired,
10433
+ amount: T['io.flow.v0.models.money'].isRequired,
10190
10434
  });
10191
10435
 
10192
- T['io.flow.v0.models.consumer_invoice_line_item'] = PropTypes.exact({
10193
- discriminator: PropTypes.oneOf(['item']).isRequired,
10194
- item: T['io.flow.v0.models.item_reference'].isRequired,
10195
- description: PropTypes.string.isRequired,
10196
- quantity: PropTypes.number.isRequired,
10197
- unit_price: T['io.flow.v0.models.price'].isRequired,
10198
- unit_discount: T['io.flow.v0.models.price'],
10199
- unit_tax: T['io.flow.v0.models.consumer_invoice_levy'],
10200
- unit_duty: T['io.flow.v0.models.consumer_invoice_levy'],
10436
+ T['io.flow.v0.models.localized_line_item_discount'] = PropTypes.exact({
10437
+ amount: PropTypes.number.isRequired,
10438
+ currency: PropTypes.string.isRequired,
10439
+ label: PropTypes.string,
10440
+ base: T['io.flow.v0.models.price'],
10441
+ requested: T['io.flow.v0.models.money'],
10442
+ discount_label: PropTypes.string,
10201
10443
  });
10202
10444
 
10203
- T['io.flow.v0.unions.consumer_invoice_line'] = PropTypes.oneOfType([
10204
- T['io.flow.v0.models.consumer_invoice_line_item'],
10205
- T['io.flow.v0.models.consumer_invoice_line_discount'],
10206
- T['io.flow.v0.models.consumer_invoice_line_shipping'],
10207
- ]);
10445
+ T['io.flow.v0.models.inbound_carton_fee'] = PropTypes.exact({
10446
+ discriminator: PropTypes.oneOf(['inbound_carton_fee']).isRequired,
10447
+ amount: T['io.flow.v0.models.money'].isRequired,
10448
+ });
10208
10449
 
10209
- T['io.flow.v0.models.b2b_credit_memo'] = PropTypes.exact({
10210
- id: PropTypes.string.isRequired,
10450
+ T['io.flow.v0.models.line_item'] = PropTypes.exact({
10211
10451
  number: PropTypes.string.isRequired,
10212
- buyer: T['io.flow.v0.models.merchant_of_record_entity'].isRequired,
10213
- seller: T['io.flow.v0.models.merchant_of_record_entity'].isRequired,
10214
- status: T['io.flow.v0.enums.consumer_invoice_status'].isRequired,
10215
- date: PropTypes.string.isRequired,
10216
- key: PropTypes.string.isRequired,
10217
- invoice: T['io.flow.v0.models.b2b_invoice_reference'].isRequired,
10218
- lines: PropTypes.arrayOf(T['io.flow.v0.unions.consumer_invoice_line']).isRequired,
10219
- documents: PropTypes.arrayOf(T['io.flow.v0.models.consumer_invoice_document']).isRequired,
10452
+ quantity: PropTypes.number.isRequired,
10453
+ price: T['io.flow.v0.models.money'].isRequired,
10220
10454
  attributes: PropTypes.objectOf(PropTypes.string).isRequired,
10221
- b2b_invoice_type: T['io.flow.v0.enums.b2b_invoice_type'].isRequired,
10455
+ center: PropTypes.string,
10456
+ discount: T['io.flow.v0.models.money'],
10222
10457
  });
10223
10458
 
10224
- T['io.flow.v0.models.b2b_credit_memo_upserted'] = PropTypes.exact({
10225
- discriminator: PropTypes.oneOf(['b2b_credit_memo_upserted']).isRequired,
10226
- event_id: PropTypes.string.isRequired,
10227
- timestamp: PropTypes.string.isRequired,
10228
- organization: PropTypes.string.isRequired,
10229
- b2b_credit_memo: T['io.flow.v0.models.b2b_credit_memo'].isRequired,
10459
+ T['io.flow.v0.models.flat_rate_form'] = PropTypes.exact({
10460
+ discriminator: PropTypes.oneOf(['flat_rate_form']).isRequired,
10461
+ price: T['io.flow.v0.models.money'].isRequired,
10462
+ zero_amount_indicator: T['io.flow.v0.enums.zero_amount_indicator'],
10230
10463
  });
10231
10464
 
10232
- T['io.flow.v0.models.b2b_credit_memo_deleted'] = PropTypes.exact({
10233
- discriminator: PropTypes.oneOf(['b2b_credit_memo_deleted']).isRequired,
10234
- event_id: PropTypes.string.isRequired,
10235
- timestamp: PropTypes.string.isRequired,
10236
- organization: PropTypes.string.isRequired,
10237
- b2b_credit_memo: T['io.flow.v0.models.b2b_credit_memo'].isRequired,
10465
+ T['io.flow.v0.models.fixed_ddp_ratecard_fee'] = PropTypes.exact({
10466
+ discriminator: PropTypes.oneOf(['fixed_ddp_ratecard_fee']).isRequired,
10467
+ amount: T['io.flow.v0.models.money'].isRequired,
10238
10468
  });
10239
10469
 
10240
- T['io.flow.v0.models.catalog_price_book_item_document'] = PropTypes.exact({
10241
- price_book_key: PropTypes.string.isRequired,
10242
- price_book_item_key: PropTypes.string.isRequired,
10243
- catalog: T['io.flow.v0.models.catalog_item_summary'].isRequired,
10244
- price: T['io.flow.v0.models.price'],
10245
- amount: PropTypes.number.isRequired,
10246
- starts_at: PropTypes.string.isRequired,
10247
- ends_at: PropTypes.string,
10470
+ T['io.flow.v0.models.fixed_fee_condition'] = PropTypes.exact({
10471
+ countries: PropTypes.arrayOf(PropTypes.string).isRequired,
10472
+ amount: T['io.flow.v0.models.money'].isRequired,
10248
10473
  });
10249
10474
 
10250
- T['io.flow.v0.models.amount_margin'] = PropTypes.exact({
10251
- discriminator: PropTypes.oneOf(['amount_margin']).isRequired,
10252
- margin: T['io.flow.v0.models.price'].isRequired,
10475
+ T['io.flow.v0.models.fixed_ddp_service_fee'] = PropTypes.exact({
10476
+ discriminator: PropTypes.oneOf(['fixed_ddp_service_fee']).isRequired,
10477
+ conditions: PropTypes.arrayOf(T['io.flow.v0.models.fixed_fee_condition']).isRequired,
10253
10478
  });
10254
10479
 
10255
- T['io.flow.v0.unions.tier_rule_outcome'] = PropTypes.oneOfType([
10256
- T['io.flow.v0.models.amount_margin'],
10257
- T['io.flow.v0.models.at_cost'],
10258
- T['io.flow.v0.models.flat_rate'],
10259
- T['io.flow.v0.models.percent_margin'],
10260
- ]);
10480
+ T['io.flow.v0.models.fixed_currency_conversion_service_fee'] = PropTypes.exact({
10481
+ discriminator: PropTypes.oneOf(['fixed_currency_conversion_service_fee']).isRequired,
10482
+ conditions: PropTypes.arrayOf(T['io.flow.v0.models.fixed_fee_condition']).isRequired,
10483
+ });
10261
10484
 
10262
- T['io.flow.v0.models.tier_rule'] = PropTypes.exact({
10263
- id: PropTypes.string.isRequired,
10264
- position: PropTypes.number.isRequired,
10265
- query: PropTypes.string.isRequired,
10266
- outcome: T['io.flow.v0.unions.tier_rule_outcome'].isRequired,
10485
+ T['io.flow.v0.models.fixed_currency_conversion_ratecard_fee'] = PropTypes.exact({
10486
+ discriminator: PropTypes.oneOf(['fixed_currency_conversion_ratecard_fee']).isRequired,
10487
+ amount: T['io.flow.v0.models.money'].isRequired,
10267
10488
  });
10268
10489
 
10269
- T['io.flow.v0.models.tier_rule_version'] = PropTypes.exact({
10270
- id: PropTypes.string.isRequired,
10271
- timestamp: PropTypes.string.isRequired,
10272
- type: T['io.flow.v0.enums.change_type'].isRequired,
10273
- tier_rule: T['io.flow.v0.models.tier_rule'].isRequired,
10490
+ T['io.flow.v0.models.emergency_situation_surcharge_ratecard_fee'] = PropTypes.exact({
10491
+ discriminator: PropTypes.oneOf(['emergency_situation_surcharge_ratecard_fee']).isRequired,
10492
+ amount: T['io.flow.v0.models.money'].isRequired,
10274
10493
  });
10275
10494
 
10276
- T['io.flow.v0.models.localized_total'] = PropTypes.exact({
10277
- key: PropTypes.oneOf(['localized_total']).isRequired,
10278
- currency: PropTypes.string.isRequired,
10279
- amount: PropTypes.number.isRequired,
10280
- label: PropTypes.string.isRequired,
10281
- base: T['io.flow.v0.models.price'].isRequired,
10495
+ T['io.flow.v0.models.eei_filing_service_fee'] = PropTypes.exact({
10496
+ discriminator: PropTypes.oneOf(['eei_filing_service_fee']).isRequired,
10497
+ amount: T['io.flow.v0.models.money'].isRequired,
10498
+ value_threshold: T['io.flow.v0.models.money'].isRequired,
10282
10499
  });
10283
10500
 
10284
- T['io.flow.v0.models.price_with_base'] = PropTypes.exact({
10285
- currency: PropTypes.string.isRequired,
10286
- amount: PropTypes.number.isRequired,
10287
- label: PropTypes.string.isRequired,
10288
- base: T['io.flow.v0.models.price'],
10501
+ T['io.flow.v0.models.eei_filing_ratecard_fee'] = PropTypes.exact({
10502
+ discriminator: PropTypes.oneOf(['eei_filing_ratecard_fee']).isRequired,
10503
+ amount: T['io.flow.v0.models.money'].isRequired,
10289
10504
  });
10290
10505
 
10291
- T['io.flow.v0.models.shopify_order_price_attributes_metafield'] = PropTypes.exact({
10292
- item_number: PropTypes.string.isRequired,
10293
- price_attributes: PropTypes.objectOf(T['io.flow.v0.models.price_with_base']).isRequired,
10506
+ T['io.flow.v0.models.duties_taxes_paid_surcharge_service_fee'] = PropTypes.exact({
10507
+ discriminator: PropTypes.oneOf(['duties_taxes_paid_surcharge_service_fee']).isRequired,
10508
+ amount: T['io.flow.v0.models.money'].isRequired,
10509
+ starts_at: PropTypes.string,
10510
+ ends_at: PropTypes.string,
10294
10511
  });
10295
10512
 
10296
- T['io.flow.v0.models.shopify_local_price_metadata'] = PropTypes.exact({
10297
- price: T['io.flow.v0.models.price_with_base'].isRequired,
10513
+ T['io.flow.v0.models.duties_taxes_paid_surcharge_ratecard_fee'] = PropTypes.exact({
10514
+ discriminator: PropTypes.oneOf(['duties_taxes_paid_surcharge_ratecard_fee']).isRequired,
10515
+ amount: T['io.flow.v0.models.money'].isRequired,
10516
+ starts_at: PropTypes.string,
10517
+ ends_at: PropTypes.string,
10298
10518
  });
10299
10519
 
10300
- T['io.flow.v0.models.shopify_price'] = PropTypes.exact({
10301
- name: PropTypes.string.isRequired,
10302
- amount: PropTypes.number.isRequired,
10303
- cents: PropTypes.number.isRequired,
10304
- currency: PropTypes.string.isRequired,
10305
- label: PropTypes.string.isRequired,
10306
- includes: T['io.flow.v0.models.included_levies'],
10307
- local: T['io.flow.v0.models.shopify_local_price_metadata'],
10520
+ T['io.flow.v0.models.discount_offer_fixed'] = PropTypes.exact({
10521
+ discriminator: PropTypes.oneOf(['discount_offer_fixed']).isRequired,
10522
+ money: T['io.flow.v0.models.money'].isRequired,
10523
+ });
10524
+
10525
+ T['io.flow.v0.models.money_with_optional_base'] = PropTypes.exact({
10526
+ currency: PropTypes.string.isRequired,
10527
+ amount: PropTypes.number.isRequired,
10528
+ base: T['io.flow.v0.models.money'],
10308
10529
  });
10309
10530
 
10310
10531
  T['io.flow.v0.models.shopify_order_delivery_metafield'] = PropTypes.exact({
@@ -10319,226 +10540,334 @@ T['io.flow.v0.models.shopify_order_delivery_metafield'] = PropTypes.exact({
10319
10540
  merchant_of_record_entity: T['io.flow.v0.models.merchant_of_record_entity'],
10320
10541
  });
10321
10542
 
10322
- T['io.flow.v0.models.shopify_localized_variant_prices'] = PropTypes.exact({
10323
- item: T['io.flow.v0.models.shopify_price'].isRequired,
10324
- compare_at: T['io.flow.v0.models.shopify_price'],
10325
- vat: T['io.flow.v0.models.shopify_price'],
10326
- duty: T['io.flow.v0.models.shopify_price'],
10543
+ T['io.flow.v0.models.delivery_item'] = PropTypes.exact({
10544
+ id: PropTypes.string,
10545
+ number: PropTypes.string.isRequired,
10546
+ quantity: PropTypes.number.isRequired,
10547
+ shipment_estimate: T['io.flow.v0.models.datetime_range'],
10548
+ price: T['io.flow.v0.models.money_with_optional_base'],
10549
+ attributes: PropTypes.objectOf(PropTypes.string),
10550
+ center: PropTypes.string,
10551
+ line_number: PropTypes.number,
10327
10552
  });
10328
10553
 
10329
- T['io.flow.v0.models.shopify_localized_variant'] = PropTypes.exact({
10330
- id: PropTypes.number.isRequired,
10331
- handle: PropTypes.string.isRequired,
10332
- experience: T['io.flow.v0.models.experience_reference'].isRequired,
10333
- prices: T['io.flow.v0.models.shopify_localized_variant_prices'].isRequired,
10334
- status: T['io.flow.v0.enums.subcatalog_item_status'].isRequired,
10335
- inventory_status: T['io.flow.v0.enums.item_availability_status'],
10554
+ T['io.flow.v0.models.digital_delivery'] = PropTypes.exact({
10555
+ discriminator: PropTypes.oneOf(['digital_delivery']).isRequired,
10556
+ id: PropTypes.string.isRequired,
10557
+ key: PropTypes.string,
10558
+ items: PropTypes.arrayOf(T['io.flow.v0.models.delivery_item']).isRequired,
10559
+ prices: PropTypes.arrayOf(T['io.flow.v0.models.order_price_detail']),
10560
+ total: T['io.flow.v0.models.localized_total'],
10336
10561
  });
10337
10562
 
10338
- T['io.flow.v0.models.shopify_line'] = PropTypes.exact({
10339
- variant_id: PropTypes.number.isRequired,
10340
- quantity: PropTypes.number.isRequired,
10341
- price: T['io.flow.v0.models.shopify_price'].isRequired,
10342
- total: T['io.flow.v0.models.shopify_price'].isRequired,
10343
- price_source: T['io.flow.v0.unions.price_source'],
10563
+ T['io.flow.v0.models.crossdock_ratecard_fee'] = PropTypes.exact({
10564
+ discriminator: PropTypes.oneOf(['crossdock_ratecard_fee']).isRequired,
10565
+ amount: T['io.flow.v0.models.money'].isRequired,
10344
10566
  });
10345
10567
 
10346
- T['io.flow.v0.models.shopify_local_cart_item_metadata'] = PropTypes.exact({
10347
- line_price: T['io.flow.v0.models.price_with_base'].isRequired,
10348
- price: T['io.flow.v0.models.price_with_base'].isRequired,
10568
+ T['io.flow.v0.models.commercial_invoice_fee'] = PropTypes.exact({
10569
+ discriminator: PropTypes.oneOf(['commercial_invoice_fee']).isRequired,
10570
+ amount: T['io.flow.v0.models.money'].isRequired,
10349
10571
  });
10350
10572
 
10351
- T['io.flow.v0.models.shopify_cart_item'] = PropTypes.exact({
10352
- id: PropTypes.string.isRequired,
10353
- handle: PropTypes.string.isRequired,
10354
- line_price: PropTypes.number.isRequired,
10355
- price: PropTypes.number.isRequired,
10356
- product_id: PropTypes.number.isRequired,
10357
- product_title: PropTypes.string.isRequired,
10358
- quantity: PropTypes.number.isRequired,
10359
- title: PropTypes.string.isRequired,
10360
- url: PropTypes.string.isRequired,
10361
- variant_id: PropTypes.number.isRequired,
10362
- local: T['io.flow.v0.models.shopify_local_cart_item_metadata'].isRequired,
10363
- gift_card: PropTypes.bool.isRequired,
10364
- image: PropTypes.string,
10365
- product_description: PropTypes.string,
10366
- product_type: PropTypes.string,
10367
- properties: PropTypes.objectOf(PropTypes.string),
10368
- requires_shipping: PropTypes.bool.isRequired,
10369
- sku: PropTypes.string,
10370
- variant_title: PropTypes.string,
10371
- variant_options: PropTypes.arrayOf(PropTypes.string),
10372
- vendor: PropTypes.string,
10573
+ T['io.flow.v0.unions.partner_center_fee'] = PropTypes.oneOfType([
10574
+ T['io.flow.v0.models.commercial_invoice_fee'],
10575
+ T['io.flow.v0.models.inbound_carton_fee'],
10576
+ T['io.flow.v0.models.outbound_carton_fee'],
10577
+ ]);
10578
+
10579
+ T['io.flow.v0.models.partner_center_form'] = PropTypes.exact({
10580
+ partner_id: PropTypes.string.isRequired,
10581
+ number: PropTypes.string,
10582
+ fees: PropTypes.arrayOf(T['io.flow.v0.unions.partner_center_fee']),
10373
10583
  });
10374
10584
 
10375
- T['io.flow.v0.models.line'] = PropTypes.exact({
10376
- id: PropTypes.string,
10377
- item_number: PropTypes.string.isRequired,
10378
- quantity: PropTypes.number.isRequired,
10379
- price: T['io.flow.v0.models.price_with_base'].isRequired,
10380
- total: T['io.flow.v0.models.price_with_base'].isRequired,
10381
- attributes: PropTypes.objectOf(PropTypes.string),
10585
+ T['io.flow.v0.models.partner_center'] = PropTypes.exact({
10586
+ partner_reference: T['io.flow.v0.models.partner_reference'].isRequired,
10587
+ number: PropTypes.string,
10588
+ fees: PropTypes.arrayOf(T['io.flow.v0.unions.partner_center_fee']),
10382
10589
  });
10383
10590
 
10384
- T['io.flow.v0.models.klaviyo_order_prices'] = PropTypes.exact({
10385
- subtotal: T['io.flow.v0.models.price_with_base'].isRequired,
10386
- vat: T['io.flow.v0.models.price_with_base'],
10387
- duty: T['io.flow.v0.models.price_with_base'],
10388
- discount: T['io.flow.v0.models.price_with_base'],
10389
- shipping: T['io.flow.v0.models.price_with_base'],
10390
- insurance: T['io.flow.v0.models.price_with_base'],
10391
- total: T['io.flow.v0.models.price_with_base'].isRequired,
10591
+ T['io.flow.v0.models.capture'] = PropTypes.exact({
10592
+ id: PropTypes.string.isRequired,
10593
+ key: PropTypes.string.isRequired,
10594
+ authorization: T['io.flow.v0.models.authorization_reference'].isRequired,
10595
+ amount: PropTypes.number.isRequired,
10596
+ currency: PropTypes.string.isRequired,
10597
+ requested: T['io.flow.v0.models.money'],
10598
+ created_at: PropTypes.string.isRequired,
10599
+ attributes: PropTypes.objectOf(PropTypes.string),
10600
+ status: T['io.flow.v0.enums.capture_status'],
10601
+ base: T['io.flow.v0.models.money'],
10392
10602
  });
10393
10603
 
10394
- T['io.flow.v0.models.fulfillment_item_allocation_details'] = PropTypes.exact({
10395
- item_number: PropTypes.string.isRequired,
10396
- line_number: PropTypes.number.isRequired,
10397
- levies: T['io.flow.v0.models.price_with_base'].isRequired,
10398
- total: T['io.flow.v0.models.price_with_base'].isRequired,
10604
+ T['io.flow.v0.models.refund_capture_summary'] = PropTypes.exact({
10605
+ capture: T['io.flow.v0.models.capture'].isRequired,
10606
+ amount: PropTypes.number.isRequired,
10399
10607
  });
10400
10608
 
10401
- T['io.flow.v0.models.experience_price_facet_conversion'] = PropTypes.exact({
10402
- request: T['io.flow.v0.models.experience_price_facet_conversion_request'].isRequired,
10403
- price: T['io.flow.v0.models.price_with_base'].isRequired,
10609
+ T['io.flow.v0.models.refund'] = PropTypes.exact({
10610
+ id: PropTypes.string.isRequired,
10611
+ key: PropTypes.string.isRequired,
10612
+ authorization: T['io.flow.v0.models.authorization_reference'].isRequired,
10613
+ amount: PropTypes.number.isRequired,
10614
+ currency: PropTypes.string.isRequired,
10615
+ requested: T['io.flow.v0.models.money'],
10616
+ captures: PropTypes.arrayOf(T['io.flow.v0.models.refund_capture_summary']).isRequired,
10617
+ created_at: PropTypes.string.isRequired,
10618
+ attributes: PropTypes.objectOf(PropTypes.string),
10619
+ status: T['io.flow.v0.enums.refund_status'],
10620
+ base: T['io.flow.v0.models.money'],
10404
10621
  });
10405
10622
 
10406
- T['io.flow.v0.models.experience_price_facet_conversion_response'] = PropTypes.exact({
10407
- facets: PropTypes.arrayOf(T['io.flow.v0.models.experience_price_facet_conversion']).isRequired,
10623
+ T['io.flow.v0.models.refund_version'] = PropTypes.exact({
10624
+ id: PropTypes.string.isRequired,
10625
+ timestamp: PropTypes.string.isRequired,
10626
+ type: T['io.flow.v0.enums.change_type'].isRequired,
10627
+ refund: T['io.flow.v0.models.refund'].isRequired,
10408
10628
  });
10409
10629
 
10410
- T['io.flow.v0.models.experience_price_conversion'] = PropTypes.exact({
10411
- request: T['io.flow.v0.models.experience_price_conversion_request'].isRequired,
10412
- price: T['io.flow.v0.models.price_with_base'].isRequired,
10630
+ T['io.flow.v0.models.refund_upserted_v2'] = PropTypes.exact({
10631
+ discriminator: PropTypes.oneOf(['refund_upserted_v2']).isRequired,
10632
+ event_id: PropTypes.string.isRequired,
10633
+ timestamp: PropTypes.string.isRequired,
10634
+ organization: PropTypes.string.isRequired,
10635
+ id: PropTypes.string.isRequired,
10636
+ refund: T['io.flow.v0.models.refund'].isRequired,
10413
10637
  });
10414
10638
 
10415
- T['io.flow.v0.models.experience_price_conversion_response'] = PropTypes.exact({
10416
- prices: PropTypes.arrayOf(T['io.flow.v0.models.experience_price_conversion']).isRequired,
10639
+ T['io.flow.v0.models.refund_deleted_v2'] = PropTypes.exact({
10640
+ discriminator: PropTypes.oneOf(['refund_deleted_v2']).isRequired,
10641
+ event_id: PropTypes.string.isRequired,
10642
+ timestamp: PropTypes.string.isRequired,
10643
+ organization: PropTypes.string.isRequired,
10644
+ refund: T['io.flow.v0.models.refund'].isRequired,
10417
10645
  });
10418
10646
 
10419
- T['io.flow.v0.models.discount'] = PropTypes.exact({
10420
- discriminator: PropTypes.oneOf(['discount']).isRequired,
10647
+ T['io.flow.v0.models.refund_capture'] = PropTypes.exact({
10421
10648
  id: PropTypes.string.isRequired,
10422
- code: PropTypes.string,
10423
- label: PropTypes.string.isRequired,
10424
- price: T['io.flow.v0.models.price_with_base'].isRequired,
10425
- attributes: PropTypes.objectOf(PropTypes.string),
10649
+ refund: T['io.flow.v0.models.refund'].isRequired,
10650
+ capture: T['io.flow.v0.models.capture'].isRequired,
10651
+ amount: PropTypes.number.isRequired,
10652
+ currency: PropTypes.string.isRequired,
10653
+ base: T['io.flow.v0.models.money'].isRequired,
10654
+ status: T['io.flow.v0.enums.refund_status'],
10426
10655
  });
10427
10656
 
10428
- T['io.flow.v0.unions.promotion'] = PropTypes.oneOfType([T['io.flow.v0.models.free_shipping'], T['io.flow.v0.models.discount']]);
10657
+ T['io.flow.v0.models.refund_capture_upserted_v2'] = PropTypes.exact({
10658
+ discriminator: PropTypes.oneOf(['refund_capture_upserted_v2']).isRequired,
10659
+ event_id: PropTypes.string.isRequired,
10660
+ timestamp: PropTypes.string.isRequired,
10661
+ organization: PropTypes.string.isRequired,
10662
+ id: PropTypes.string.isRequired,
10663
+ refund_capture: T['io.flow.v0.models.refund_capture'].isRequired,
10664
+ });
10429
10665
 
10430
- T['io.flow.v0.models.promotions'] = PropTypes.exact({
10431
- applied: PropTypes.arrayOf(T['io.flow.v0.unions.promotion']).isRequired,
10432
- available: PropTypes.arrayOf(T['io.flow.v0.unions.promotion']).isRequired,
10666
+ T['io.flow.v0.models.email_payment_summary'] = PropTypes.exact({
10667
+ refund: T['io.flow.v0.models.refund'].isRequired,
10433
10668
  });
10434
10669
 
10435
- T['io.flow.v0.models.shopify_local_cart_metadata'] = PropTypes.exact({
10436
- total_price: T['io.flow.v0.models.price_with_base'].isRequired,
10437
- promotions: T['io.flow.v0.models.promotions'].isRequired,
10438
- rules: T['io.flow.v0.models.order_rules_summary'],
10439
- subtotal: T['io.flow.v0.models.price_with_base'].isRequired,
10440
- vat: T['io.flow.v0.models.price_with_base'],
10441
- duty: T['io.flow.v0.models.price_with_base'],
10442
- discount: T['io.flow.v0.models.price_with_base'],
10670
+ T['io.flow.v0.models.email_notification_data_refund'] = PropTypes.exact({
10671
+ discriminator: PropTypes.oneOf(['refund']).isRequired,
10672
+ order: T['io.flow.v0.models.order_summary'].isRequired,
10673
+ 'return': T['io.flow.v0.models.order_summary'].isRequired,
10674
+ payment: T['io.flow.v0.models.email_payment_summary'].isRequired,
10443
10675
  });
10444
10676
 
10445
- T['io.flow.v0.models.shopify_cart'] = PropTypes.exact({
10677
+ T['io.flow.v0.models.capture_version'] = PropTypes.exact({
10446
10678
  id: PropTypes.string.isRequired,
10447
- items: PropTypes.arrayOf(T['io.flow.v0.models.shopify_cart_item']).isRequired,
10448
- item_count: PropTypes.number.isRequired,
10449
- total_price: PropTypes.number.isRequired,
10450
- local: T['io.flow.v0.models.shopify_local_cart_metadata'].isRequired,
10451
- attributes: PropTypes.object,
10452
- note: PropTypes.string,
10453
- requires_shipping: PropTypes.bool.isRequired,
10454
- total_weight: PropTypes.number,
10679
+ timestamp: PropTypes.string.isRequired,
10680
+ type: T['io.flow.v0.enums.change_type'].isRequired,
10681
+ capture: T['io.flow.v0.models.capture'].isRequired,
10455
10682
  });
10456
10683
 
10457
- T['io.flow.v0.models.available_promotion'] = PropTypes.exact({
10684
+ T['io.flow.v0.models.capture_upserted_v2'] = PropTypes.exact({
10685
+ discriminator: PropTypes.oneOf(['capture_upserted_v2']).isRequired,
10686
+ event_id: PropTypes.string.isRequired,
10687
+ timestamp: PropTypes.string.isRequired,
10688
+ organization: PropTypes.string.isRequired,
10458
10689
  id: PropTypes.string.isRequired,
10459
- shipping_configuration: T['io.flow.v0.models.shipping_configuration_reference'].isRequired,
10460
- region: T['io.flow.v0.models.region_reference'].isRequired,
10461
- promotions: PropTypes.arrayOf(T['io.flow.v0.unions.promotion']).isRequired,
10690
+ capture: T['io.flow.v0.models.capture'].isRequired,
10462
10691
  });
10463
10692
 
10464
- T['io.flow.v0.models.available_promotions_upserted_v2'] = PropTypes.exact({
10465
- discriminator: PropTypes.oneOf(['available_promotions_upserted_v2']).isRequired,
10693
+ T['io.flow.v0.models.capture_deleted'] = PropTypes.exact({
10694
+ discriminator: PropTypes.oneOf(['capture_deleted']).isRequired,
10466
10695
  event_id: PropTypes.string.isRequired,
10467
10696
  timestamp: PropTypes.string.isRequired,
10468
10697
  organization: PropTypes.string.isRequired,
10469
- available_promotion: T['io.flow.v0.models.available_promotion'].isRequired,
10698
+ capture: T['io.flow.v0.models.capture'].isRequired,
10699
+ });
10700
+
10701
+ T['io.flow.v0.models.amount_margin_form'] = PropTypes.exact({
10702
+ discriminator: PropTypes.oneOf(['amount_margin_form']).isRequired,
10703
+ margin: T['io.flow.v0.models.money'].isRequired,
10704
+ });
10705
+
10706
+ T['io.flow.v0.unions.tier_rule_outcome_form'] = PropTypes.oneOfType([
10707
+ T['io.flow.v0.models.amount_margin_form'],
10708
+ T['io.flow.v0.models.flat_rate_form'],
10709
+ T['io.flow.v0.models.at_cost'],
10710
+ T['io.flow.v0.models.percent_margin'],
10711
+ ]);
10712
+
10713
+ T['io.flow.v0.models.tier_rule_form'] = PropTypes.exact({
10714
+ position: PropTypes.number,
10715
+ query: PropTypes.string.isRequired,
10716
+ outcome: T['io.flow.v0.unions.tier_rule_outcome_form'].isRequired,
10717
+ });
10718
+
10719
+ T['io.flow.v0.models.tier_form'] = PropTypes.exact({
10720
+ currency: PropTypes.string.isRequired,
10721
+ integration: T['io.flow.v0.enums.shipment_integration_type'].isRequired,
10722
+ name: PropTypes.string.isRequired,
10723
+ message: PropTypes.string,
10724
+ rules: PropTypes.arrayOf(T['io.flow.v0.models.tier_rule_form']).isRequired,
10725
+ services: PropTypes.arrayOf(PropTypes.string).isRequired,
10726
+ strategy: T['io.flow.v0.enums.tier_strategy'].isRequired,
10727
+ visibility: T['io.flow.v0.enums.visibility'].isRequired,
10728
+ description: PropTypes.string,
10729
+ direction: T['io.flow.v0.enums.lane_direction'],
10730
+ display: T['io.flow.v0.models.tier_display_form'],
10731
+ shipping_lane: PropTypes.string.isRequired,
10732
+ surcharge_settings: PropTypes.arrayOf(T['io.flow.v0.models.surcharge_setting']),
10733
+ settings: T['io.flow.v0.models.tier_settings'],
10470
10734
  });
10471
10735
 
10472
- T['io.flow.v0.models.available_promotions_deleted_v2'] = PropTypes.exact({
10473
- discriminator: PropTypes.oneOf(['available_promotions_deleted_v2']).isRequired,
10474
- event_id: PropTypes.string.isRequired,
10475
- timestamp: PropTypes.string.isRequired,
10476
- organization: PropTypes.string.isRequired,
10477
- available_promotion: T['io.flow.v0.models.available_promotion'].isRequired,
10736
+ T['io.flow.v0.models.money_with_base'] = PropTypes.exact({
10737
+ currency: PropTypes.string.isRequired,
10738
+ amount: PropTypes.number.isRequired,
10739
+ base: T['io.flow.v0.models.money'].isRequired,
10478
10740
  });
10479
10741
 
10480
- T['io.flow.v0.enums.order_price_detail_component_key'] = PropTypes.oneOf([
10481
- 'adjustment',
10482
- 'vat_deminimis',
10483
- 'duty_deminimis',
10484
- 'duties_item_price',
10485
- 'duties_freight',
10486
- 'duties_insurance',
10487
- 'vat_item_price',
10488
- 'vat_freight',
10489
- 'vat_insurance',
10490
- 'vat_duties_item_price',
10491
- 'vat_duties_freight',
10492
- 'vat_duties_insurance',
10493
- 'item_price',
10494
- 'item_discount',
10495
- 'rounding',
10496
- 'insurance',
10497
- 'shipping',
10498
- 'shipping_discount',
10499
- 'order_discount',
10500
- 'subtotal_percent_sales_margin',
10501
- 'subtotal_vat_percent_sales_margin',
10502
- 'subtotal_duty_percent_sales_margin',
10503
- 'vat_subsidy',
10504
- 'duty_subsidy',
10505
- 'remote_area_surcharge',
10506
- 'fuel_surcharge',
10507
- 'emergency_situation_surcharge',
10508
- 'peak_surcharge',
10509
- 'duties_taxes_paid_surcharge',
10510
- 'tip',
10511
- ]);
10512
-
10513
- T['io.flow.v0.models.order_price_detail_component'] = PropTypes.exact({
10514
- key: T['io.flow.v0.enums.order_price_detail_component_key'].isRequired,
10742
+ T['io.flow.v0.models.localized_item_duty'] = PropTypes.exact({
10743
+ key: PropTypes.oneOf(['localized_item_duty']).isRequired,
10515
10744
  currency: PropTypes.string.isRequired,
10516
10745
  amount: PropTypes.number.isRequired,
10517
10746
  label: PropTypes.string.isRequired,
10518
10747
  base: T['io.flow.v0.models.price'].isRequired,
10519
- name: PropTypes.string,
10748
+ adjustment: T['io.flow.v0.models.localized_adjustment'],
10749
+ basis: T['io.flow.v0.models.money_with_base'],
10520
10750
  });
10521
10751
 
10522
- T['io.flow.v0.models.order_price_detail'] = PropTypes.exact({
10523
- key: T['io.flow.v0.enums.order_price_detail_key'].isRequired,
10752
+ T['io.flow.v0.models.localized_item_vat'] = PropTypes.exact({
10753
+ key: PropTypes.oneOf(['localized_item_vat']).isRequired,
10524
10754
  currency: PropTypes.string.isRequired,
10525
10755
  amount: PropTypes.number.isRequired,
10526
10756
  label: PropTypes.string.isRequired,
10527
10757
  base: T['io.flow.v0.models.price'].isRequired,
10528
- components: PropTypes.arrayOf(T['io.flow.v0.models.order_price_detail_component']).isRequired,
10529
- name: PropTypes.string,
10530
- rate: PropTypes.number,
10758
+ name: PropTypes.string.isRequired,
10759
+ adjustment: T['io.flow.v0.models.localized_adjustment'],
10531
10760
  accuracy: T['io.flow.v0.enums.price_accuracy'],
10532
- rate_label: PropTypes.string,
10761
+ basis: T['io.flow.v0.models.money_with_base'],
10533
10762
  });
10534
10763
 
10535
- T['io.flow.v0.models.digital_delivery'] = PropTypes.exact({
10536
- discriminator: PropTypes.oneOf(['digital_delivery']).isRequired,
10537
- id: PropTypes.string.isRequired,
10538
- key: PropTypes.string,
10539
- items: PropTypes.arrayOf(T['io.flow.v0.models.delivery_item']).isRequired,
10540
- prices: PropTypes.arrayOf(T['io.flow.v0.models.order_price_detail']),
10541
- total: T['io.flow.v0.models.localized_total'],
10764
+ T['io.flow.v0.models.local_item_attribute_pricing'] = PropTypes.exact({
10765
+ pretax_price: T['io.flow.v0.models.price_with_base'].isRequired,
10766
+ vat: T['io.flow.v0.models.localized_item_vat'],
10767
+ duty: T['io.flow.v0.models.localized_item_duty'],
10768
+ price: T['io.flow.v0.models.localized_item_price'].isRequired,
10769
+ });
10770
+
10771
+ T['io.flow.v0.models.local_item_pricing'] = PropTypes.exact({
10772
+ price: T['io.flow.v0.models.localized_item_price'].isRequired,
10773
+ vat: T['io.flow.v0.models.localized_item_vat'],
10774
+ duty: T['io.flow.v0.models.localized_item_duty'],
10775
+ shipping: T['io.flow.v0.models.price'],
10776
+ attributes: PropTypes.objectOf(T['io.flow.v0.models.price_with_base']).isRequired,
10777
+ price_attributes: PropTypes.objectOf(T['io.flow.v0.models.local_item_attribute_pricing']),
10778
+ });
10779
+
10780
+ T['io.flow.v0.unions.localized_price'] = PropTypes.oneOfType([
10781
+ T['io.flow.v0.models.localized_item_price'],
10782
+ T['io.flow.v0.models.localized_item_vat'],
10783
+ T['io.flow.v0.models.localized_item_duty'],
10784
+ T['io.flow.v0.models.localized_total'],
10785
+ ]);
10786
+
10787
+ T['io.flow.v0.models.local'] = PropTypes.exact({
10788
+ experience: T['io.flow.v0.models.experience_summary'].isRequired,
10789
+ prices: PropTypes.arrayOf(T['io.flow.v0.unions.localized_price']).isRequired,
10790
+ rates: PropTypes.arrayOf(T['io.flow.v0.models.rate']).isRequired,
10791
+ spot_rates: PropTypes.arrayOf(PropTypes.object).isRequired,
10792
+ status: T['io.flow.v0.enums.subcatalog_item_status'].isRequired,
10793
+ attributes: PropTypes.objectOf(PropTypes.string),
10794
+ price_attributes: PropTypes.objectOf(T['io.flow.v0.models.price_with_base']),
10795
+ });
10796
+
10797
+ T['io.flow.v0.models.localized_line_item'] = PropTypes.exact({
10798
+ id: PropTypes.string,
10799
+ number: PropTypes.string.isRequired,
10800
+ name: PropTypes.string.isRequired,
10801
+ quantity: PropTypes.number.isRequired,
10802
+ image: T['io.flow.v0.models.order_summary_image'],
10803
+ center: PropTypes.string,
10804
+ price: T['io.flow.v0.models.money'],
10805
+ discount: T['io.flow.v0.models.localized_line_item_discount'],
10806
+ discounts: PropTypes.arrayOf(T['io.flow.v0.models.localized_line_item_discount']),
10807
+ attributes: PropTypes.objectOf(PropTypes.string),
10808
+ local: T['io.flow.v0.models.local'].isRequired,
10809
+ shipment_estimate: T['io.flow.v0.models.datetime_range'],
10810
+ price_source: T['io.flow.v0.unions.price_source'],
10811
+ });
10812
+
10813
+ T['io.flow.v0.models.export_localized_item_prices_detail'] = PropTypes.exact({
10814
+ item: T['io.flow.v0.models.localized_item_price'].isRequired,
10815
+ vat: T['io.flow.v0.models.localized_item_vat'],
10816
+ duty: T['io.flow.v0.models.localized_item_duty'],
10817
+ shipping_price: T['io.flow.v0.models.price'],
10818
+ price_attributes: PropTypes.objectOf(T['io.flow.v0.models.price_with_base']).isRequired,
10819
+ });
10820
+
10821
+ T['io.flow.v0.models.export_localized_item_prices'] = PropTypes.exact({
10822
+ organization: T['io.flow.v0.models.organization_reference'].isRequired,
10823
+ experience: T['io.flow.v0.models.experience_summary'].isRequired,
10824
+ item: T['io.flow.v0.models.catalog_item_reference'].isRequired,
10825
+ prices: T['io.flow.v0.models.export_localized_item_prices_detail'].isRequired,
10826
+ status: T['io.flow.v0.enums.subcatalog_item_status'],
10827
+ rates: PropTypes.arrayOf(T['io.flow.v0.models.rate']),
10828
+ });
10829
+
10830
+ T['io.flow.v0.models.quote_line_item_form'] = PropTypes.exact({
10831
+ number: PropTypes.string.isRequired,
10832
+ quantity: PropTypes.number.isRequired,
10833
+ shipment_estimate: T['io.flow.v0.models.datetime_range'],
10834
+ price: T['io.flow.v0.models.money_with_base'].isRequired,
10835
+ attributes: PropTypes.objectOf(PropTypes.string),
10836
+ center: PropTypes.string,
10837
+ });
10838
+
10839
+ T['io.flow.v0.models.allocation_line_summary_shipping'] = PropTypes.exact({
10840
+ subtotal: T['io.flow.v0.models.money_with_base'].isRequired,
10841
+ discount: T['io.flow.v0.models.money_with_base'].isRequired,
10842
+ duties: T['io.flow.v0.models.money_with_base'].isRequired,
10843
+ tax: T['io.flow.v0.models.money_with_base'].isRequired,
10844
+ tax_subsidy: T['io.flow.v0.models.money_with_base'].isRequired,
10845
+ duties_subsidy: T['io.flow.v0.models.money_with_base'].isRequired,
10846
+ total: T['io.flow.v0.models.money_with_base'].isRequired,
10847
+ });
10848
+
10849
+ T['io.flow.v0.models.allocation_line_summary_line_item'] = PropTypes.exact({
10850
+ item_number: PropTypes.string.isRequired,
10851
+ line_number: PropTypes.string,
10852
+ subtotal: T['io.flow.v0.models.money_with_base'].isRequired,
10853
+ discount: T['io.flow.v0.models.money_with_base'].isRequired,
10854
+ duties: T['io.flow.v0.models.money_with_base'].isRequired,
10855
+ tax: T['io.flow.v0.models.money_with_base'].isRequired,
10856
+ tax_subsidy: T['io.flow.v0.models.money_with_base'].isRequired,
10857
+ duties_subsidy: T['io.flow.v0.models.money_with_base'].isRequired,
10858
+ total: T['io.flow.v0.models.money_with_base'].isRequired,
10859
+ });
10860
+
10861
+ T['io.flow.v0.models.allocation_line_summary'] = PropTypes.exact({
10862
+ line_items: PropTypes.arrayOf(T['io.flow.v0.models.allocation_line_summary_line_item']).isRequired,
10863
+ shipping: T['io.flow.v0.models.allocation_line_summary_shipping'].isRequired,
10864
+ subtotal: T['io.flow.v0.models.money_with_base'].isRequired,
10865
+ discount: T['io.flow.v0.models.money_with_base'].isRequired,
10866
+ duties: T['io.flow.v0.models.money_with_base'].isRequired,
10867
+ tax: T['io.flow.v0.models.money_with_base'].isRequired,
10868
+ tax_subsidy: T['io.flow.v0.models.money_with_base'].isRequired,
10869
+ duties_subsidy: T['io.flow.v0.models.money_with_base'].isRequired,
10870
+ total: T['io.flow.v0.models.money_with_base'].isRequired,
10542
10871
  });
10543
10872
 
10544
10873
  T['io.flow.v0.models.allocation_levy_component'] = PropTypes.exact({
@@ -10552,13 +10881,6 @@ T['io.flow.v0.models.allocation_levy_component'] = PropTypes.exact({
10552
10881
  basis: T['io.flow.v0.models.money_with_base'],
10553
10882
  });
10554
10883
 
10555
- T['io.flow.v0.models.allocation_detail_component'] = PropTypes.exact({
10556
- discriminator: PropTypes.oneOf(['allocation_detail_component']).isRequired,
10557
- key: T['io.flow.v0.enums.order_price_detail_component_key'].isRequired,
10558
- total: T['io.flow.v0.models.price_with_base'].isRequired,
10559
- price: T['io.flow.v0.models.price_with_base'],
10560
- });
10561
-
10562
10884
  T['io.flow.v0.unions.allocation_component'] = PropTypes.oneOfType([
10563
10885
  T['io.flow.v0.models.allocation_detail_component'],
10564
10886
  T['io.flow.v0.models.allocation_levy_component'],
@@ -10597,398 +10919,274 @@ T['io.flow.v0.models.shopify_localized_order'] = PropTypes.exact({
10597
10919
  allocation_details: PropTypes.arrayOf(T['io.flow.v0.unions.allocation_detail']).isRequired,
10598
10920
  merchant_of_record: T['io.flow.v0.enums.order_merchant_of_record'],
10599
10921
  merchant_of_record_entity: T['io.flow.v0.models.merchant_of_record_entity'],
10600
- incoterm: T['io.flow.v0.enums.incoterm'],
10601
- flow_order_id: PropTypes.string,
10602
- tax_registration: T['io.flow.v0.models.tax_registration'],
10603
- geo: T['io.flow.v0.models.order_geo'],
10604
- });
10605
-
10606
- T['io.flow.v0.models.allocation_order_summary'] = PropTypes.exact({
10607
- id: PropTypes.string.isRequired,
10608
- number: PropTypes.string.isRequired,
10609
- submitted_at: PropTypes.string,
10610
- });
10611
-
10612
- T['io.flow.v0.models.allocation_v2'] = PropTypes.exact({
10613
- id: PropTypes.string.isRequired,
10614
- order: T['io.flow.v0.models.allocation_order_summary'].isRequired,
10615
- details: PropTypes.arrayOf(T['io.flow.v0.unions.allocation_detail']).isRequired,
10616
- total: T['io.flow.v0.models.localized_total'].isRequired,
10617
- });
10618
-
10619
- T['io.flow.v0.models.allocation_upserted_v2'] = PropTypes.exact({
10620
- discriminator: PropTypes.oneOf(['allocation_upserted_v2']).isRequired,
10621
- event_id: PropTypes.string.isRequired,
10622
- timestamp: PropTypes.string.isRequired,
10623
- organization: PropTypes.string.isRequired,
10624
- allocation: T['io.flow.v0.models.allocation_v2'].isRequired,
10625
- });
10626
-
10627
- T['io.flow.v0.models.allocation'] = PropTypes.exact({
10628
- order: T['io.flow.v0.models.allocation_order_summary'].isRequired,
10629
- details: PropTypes.arrayOf(T['io.flow.v0.unions.allocation_detail']).isRequired,
10630
- });
10631
-
10632
- T['io.flow.v0.models.adyen_challenge_shopper_data'] = PropTypes.exact({
10633
- discriminator: PropTypes.oneOf(['adyen_challenge_shopper_data']).isRequired,
10634
- challenge_token: PropTypes.string.isRequired,
10635
- });
10636
-
10637
- T['io.flow.v0.models.adyen_identify_shopper_data'] = PropTypes.exact({
10638
- discriminator: PropTypes.oneOf(['adyen_identify_shopper_data']).isRequired,
10639
- fingerprint_token: PropTypes.string.isRequired,
10640
- });
10641
-
10642
- T['io.flow.v0.unions.adyen_native_data'] = PropTypes.oneOfType([
10643
- T['io.flow.v0.models.adyen_identify_shopper_data'],
10644
- T['io.flow.v0.models.adyen_challenge_shopper_data'],
10645
- ]);
10646
-
10647
- T['io.flow.v0.models.adyen_native_action_details'] = PropTypes.exact({
10648
- discriminator: PropTypes.oneOf(['adyen_native_action_details']).isRequired,
10649
- origin_key: PropTypes.string,
10650
- data: T['io.flow.v0.unions.adyen_native_data'],
10651
- });
10652
-
10653
- T['io.flow.v0.unions.authorization_result_action_details'] = PropTypes.oneOfType([
10654
- T['io.flow.v0.models.adyen_native_action_details'],
10655
- T['io.flow.v0.models.stripe_authorization_result_action_details'],
10656
- T['io.flow.v0.models.threeds_identify_action_details'],
10657
- T['io.flow.v0.models.threeds_challenge_action_details'],
10658
- T['io.flow.v0.models.applepay_sdk_create_result_action_details'],
10659
- T['io.flow.v0.models.applepay_sdk_validate_result_action_details'],
10660
- T['io.flow.v0.models.klarna_sdk_authorization_result_action_details'],
10661
- T['io.flow.v0.models.select_issuer_option_action_details'],
10662
- ]);
10663
-
10664
- T['io.flow.v0.models.authorization_result_action_native'] = PropTypes.exact({
10665
- discriminator: PropTypes.oneOf(['authorization_result_action_native']).isRequired,
10666
- type: T['io.flow.v0.enums.authorization_result_action_type'].isRequired,
10667
- authorization: T['io.flow.v0.models.authorization_reference'].isRequired,
10668
- details: T['io.flow.v0.unions.authorization_result_action_details'],
10922
+ incoterm: T['io.flow.v0.enums.incoterm'],
10923
+ flow_order_id: PropTypes.string,
10924
+ tax_registration: T['io.flow.v0.models.tax_registration'],
10925
+ geo: T['io.flow.v0.models.order_geo'],
10669
10926
  });
10670
10927
 
10671
- T['io.flow.v0.models.authorization_result_action_get'] = PropTypes.exact({
10672
- discriminator: PropTypes.oneOf(['authorization_result_action_get']).isRequired,
10673
- type: T['io.flow.v0.enums.authorization_result_action_type'].isRequired,
10674
- url: PropTypes.string,
10675
- details: T['io.flow.v0.unions.authorization_result_action_details'],
10928
+ T['io.flow.v0.models.allocation_v2'] = PropTypes.exact({
10929
+ id: PropTypes.string.isRequired,
10930
+ order: T['io.flow.v0.models.allocation_order_summary'].isRequired,
10931
+ details: PropTypes.arrayOf(T['io.flow.v0.unions.allocation_detail']).isRequired,
10932
+ total: T['io.flow.v0.models.localized_total'].isRequired,
10676
10933
  });
10677
10934
 
10678
- T['io.flow.v0.unions.authorization_result_action'] = PropTypes.oneOfType([
10679
- T['io.flow.v0.models.authorization_result_action_get'],
10680
- T['io.flow.v0.models.authorization_result_action_post'],
10681
- T['io.flow.v0.models.authorization_result_action_wait'],
10682
- T['io.flow.v0.models.authorization_result_action_native'],
10683
- ]);
10935
+ T['io.flow.v0.models.allocation_upserted_v2'] = PropTypes.exact({
10936
+ discriminator: PropTypes.oneOf(['allocation_upserted_v2']).isRequired,
10937
+ event_id: PropTypes.string.isRequired,
10938
+ timestamp: PropTypes.string.isRequired,
10939
+ organization: PropTypes.string.isRequired,
10940
+ allocation: T['io.flow.v0.models.allocation_v2'].isRequired,
10941
+ });
10684
10942
 
10685
- T['io.flow.v0.models.authorization_result'] = PropTypes.exact({
10686
- status: T['io.flow.v0.enums.authorization_status'].isRequired,
10687
- action: T['io.flow.v0.unions.authorization_result_action'],
10688
- decline_code: T['io.flow.v0.enums.authorization_decline_code'],
10689
- avs: T['io.flow.v0.models.avs'],
10690
- cvv: T['io.flow.v0.models.cvv'],
10691
- three_d_secure: T['io.flow.v0.models.three_d_secure'],
10692
- description: T['io.flow.v0.models.authorization_result_description'],
10693
- authorization_code: T['io.flow.v0.models.authorization_code'],
10943
+ T['io.flow.v0.models.allocation'] = PropTypes.exact({
10944
+ order: T['io.flow.v0.models.allocation_order_summary'].isRequired,
10945
+ details: PropTypes.arrayOf(T['io.flow.v0.unions.allocation_detail']).isRequired,
10694
10946
  });
10695
10947
 
10696
- T['io.flow.v0.enums.adjustment_reason_key'] = PropTypes.oneOf(['duty_deminimis', 'vat_deminimis']);
10948
+ T['io.flow.v0.enums.unit_of_measurement'] = PropTypes.oneOf([
10949
+ 'millimeter',
10950
+ 'centimeter',
10951
+ 'inch',
10952
+ 'foot',
10953
+ 'cubic_inch',
10954
+ 'cubic_meter',
10955
+ 'gram',
10956
+ 'kilogram',
10957
+ 'meter',
10958
+ 'ounce',
10959
+ 'pound',
10960
+ ]);
10697
10961
 
10698
- T['io.flow.v0.models.adjustment_reason'] = PropTypes.exact({
10699
- key: T['io.flow.v0.enums.adjustment_reason_key'].isRequired,
10700
- label: PropTypes.string.isRequired,
10962
+ T['io.flow.v0.models.remote_area_by_weight_service_fee'] = PropTypes.exact({
10963
+ discriminator: PropTypes.oneOf(['remote_area_by_weight_service_fee']).isRequired,
10964
+ amount: T['io.flow.v0.models.money'].isRequired,
10965
+ weight_unit: T['io.flow.v0.enums.unit_of_measurement'].isRequired,
10701
10966
  });
10702
10967
 
10703
- T['io.flow.v0.models.localized_adjustment'] = PropTypes.exact({
10968
+ T['io.flow.v0.models.ratecard_lane_import_form'] = PropTypes.exact({
10969
+ ratecard_owner: T['io.flow.v0.enums.ratecard_owner'].isRequired,
10970
+ service: PropTypes.string.isRequired,
10704
10971
  currency: PropTypes.string.isRequired,
10705
- amount: PropTypes.number.isRequired,
10706
- label: PropTypes.string.isRequired,
10707
- base: T['io.flow.v0.models.price'].isRequired,
10708
- reason: T['io.flow.v0.models.adjustment_reason'].isRequired,
10972
+ delivered_duty: T['io.flow.v0.enums.delivered_duty'].isRequired,
10973
+ origin: T['io.flow.v0.models.zone'].isRequired,
10974
+ destination: T['io.flow.v0.models.zone'].isRequired,
10975
+ shipment_window: T['io.flow.v0.models.shipment_window'].isRequired,
10976
+ dim_factor: PropTypes.number.isRequired,
10977
+ weight_unit: T['io.flow.v0.enums.unit_of_measurement'].isRequired,
10978
+ distance_unit: T['io.flow.v0.enums.unit_of_measurement'].isRequired,
10979
+ rates: PropTypes.arrayOf(T['io.flow.v0.models.ratecard_rate_form']).isRequired,
10709
10980
  });
10710
10981
 
10711
- T['io.flow.v0.models.localized_item_duty'] = PropTypes.exact({
10712
- key: PropTypes.oneOf(['localized_item_duty']).isRequired,
10713
- currency: PropTypes.string.isRequired,
10714
- amount: PropTypes.number.isRequired,
10715
- label: PropTypes.string.isRequired,
10716
- base: T['io.flow.v0.models.price'].isRequired,
10717
- adjustment: T['io.flow.v0.models.localized_adjustment'],
10718
- basis: T['io.flow.v0.models.money_with_base'],
10982
+ T['io.flow.v0.models.oversize_piece_surcharge_service_fee'] = PropTypes.exact({
10983
+ discriminator: PropTypes.oneOf(['oversize_piece_surcharge_service_fee']).isRequired,
10984
+ dimensional_threshold: PropTypes.number,
10985
+ dimensional_unit: T['io.flow.v0.enums.unit_of_measurement'],
10986
+ weight_threshold: PropTypes.number,
10987
+ weight_unit: T['io.flow.v0.enums.unit_of_measurement'],
10988
+ amount: T['io.flow.v0.models.money'].isRequired,
10719
10989
  });
10720
10990
 
10721
- T['io.flow.v0.models.localized_item_vat'] = PropTypes.exact({
10722
- key: PropTypes.oneOf(['localized_item_vat']).isRequired,
10723
- currency: PropTypes.string.isRequired,
10724
- amount: PropTypes.number.isRequired,
10725
- label: PropTypes.string.isRequired,
10726
- base: T['io.flow.v0.models.price'].isRequired,
10727
- name: PropTypes.string.isRequired,
10728
- adjustment: T['io.flow.v0.models.localized_adjustment'],
10729
- accuracy: T['io.flow.v0.enums.price_accuracy'],
10730
- basis: T['io.flow.v0.models.money_with_base'],
10991
+ T['io.flow.v0.models.oversize_piece_surcharge_ratecard_fee'] = PropTypes.exact({
10992
+ discriminator: PropTypes.oneOf(['oversize_piece_surcharge_ratecard_fee']).isRequired,
10993
+ dimensional_threshold: PropTypes.number,
10994
+ dimensional_unit: T['io.flow.v0.enums.unit_of_measurement'],
10995
+ weight_threshold: PropTypes.number,
10996
+ weight_unit: T['io.flow.v0.enums.unit_of_measurement'],
10997
+ amount: T['io.flow.v0.models.money'].isRequired,
10731
10998
  });
10732
10999
 
10733
- T['io.flow.v0.models.local_item_attribute_pricing'] = PropTypes.exact({
10734
- pretax_price: T['io.flow.v0.models.price_with_base'].isRequired,
10735
- vat: T['io.flow.v0.models.localized_item_vat'],
10736
- duty: T['io.flow.v0.models.localized_item_duty'],
10737
- price: T['io.flow.v0.models.localized_item_price'].isRequired,
11000
+ T['io.flow.v0.models.large_package_service_fee'] = PropTypes.exact({
11001
+ discriminator: PropTypes.oneOf(['large_package_service_fee']).isRequired,
11002
+ length_girth_threshold: PropTypes.number,
11003
+ dimensional_unit: T['io.flow.v0.enums.unit_of_measurement'],
11004
+ weight_threshold: PropTypes.number,
11005
+ weight_unit: T['io.flow.v0.enums.unit_of_measurement'],
11006
+ amount: T['io.flow.v0.models.money'].isRequired,
10738
11007
  });
10739
11008
 
10740
- T['io.flow.v0.models.local_item_pricing'] = PropTypes.exact({
10741
- price: T['io.flow.v0.models.localized_item_price'].isRequired,
10742
- vat: T['io.flow.v0.models.localized_item_vat'],
10743
- duty: T['io.flow.v0.models.localized_item_duty'],
10744
- shipping: T['io.flow.v0.models.price'],
10745
- attributes: PropTypes.objectOf(T['io.flow.v0.models.price_with_base']).isRequired,
10746
- price_attributes: PropTypes.objectOf(T['io.flow.v0.models.local_item_attribute_pricing']),
11009
+ T['io.flow.v0.models.fuel_surcharge_by_weight'] = PropTypes.exact({
11010
+ discriminator: PropTypes.oneOf(['fuel_surcharge_by_weight']).isRequired,
11011
+ amount: PropTypes.number.isRequired,
11012
+ weight_unit: T['io.flow.v0.enums.unit_of_measurement'].isRequired,
10747
11013
  });
10748
11014
 
10749
- T['io.flow.v0.unions.localized_price'] = PropTypes.oneOfType([
10750
- T['io.flow.v0.models.localized_item_price'],
10751
- T['io.flow.v0.models.localized_item_vat'],
10752
- T['io.flow.v0.models.localized_item_duty'],
10753
- T['io.flow.v0.models.localized_total'],
11015
+ T['io.flow.v0.unions.fuel_surcharge_rate'] = PropTypes.oneOfType([
11016
+ T['io.flow.v0.models.fuel_surcharge_percent'],
11017
+ T['io.flow.v0.models.fuel_surcharge_by_weight'],
10754
11018
  ]);
10755
11019
 
10756
- T['io.flow.v0.models.local'] = PropTypes.exact({
10757
- experience: T['io.flow.v0.models.experience_summary'].isRequired,
10758
- prices: PropTypes.arrayOf(T['io.flow.v0.unions.localized_price']).isRequired,
10759
- rates: PropTypes.arrayOf(T['io.flow.v0.models.rate']).isRequired,
10760
- spot_rates: PropTypes.arrayOf(PropTypes.object).isRequired,
10761
- status: T['io.flow.v0.enums.subcatalog_item_status'].isRequired,
10762
- attributes: PropTypes.objectOf(PropTypes.string),
10763
- price_attributes: PropTypes.objectOf(T['io.flow.v0.models.price_with_base']),
10764
- });
10765
-
10766
- T['io.flow.v0.models.localized_line_item'] = PropTypes.exact({
10767
- id: PropTypes.string,
10768
- number: PropTypes.string.isRequired,
10769
- name: PropTypes.string.isRequired,
10770
- quantity: PropTypes.number.isRequired,
10771
- image: T['io.flow.v0.models.order_summary_image'],
10772
- center: PropTypes.string,
10773
- price: T['io.flow.v0.models.money'],
10774
- discount: T['io.flow.v0.models.localized_line_item_discount'],
10775
- discounts: PropTypes.arrayOf(T['io.flow.v0.models.localized_line_item_discount']),
10776
- attributes: PropTypes.objectOf(PropTypes.string),
10777
- local: T['io.flow.v0.models.local'].isRequired,
10778
- shipment_estimate: T['io.flow.v0.models.datetime_range'],
10779
- price_source: T['io.flow.v0.unions.price_source'],
11020
+ T['io.flow.v0.models.fuel_surcharge_ratecard_fee'] = PropTypes.exact({
11021
+ discriminator: PropTypes.oneOf(['fuel_surcharge_ratecard_fee']).isRequired,
11022
+ amount: T['io.flow.v0.models.money'].isRequired,
11023
+ fuel_surcharge_rate: T['io.flow.v0.unions.fuel_surcharge_rate'],
10780
11024
  });
10781
11025
 
10782
- T['io.flow.v0.models.item'] = PropTypes.exact({
10783
- id: PropTypes.string.isRequired,
10784
- number: PropTypes.string.isRequired,
10785
- locale: PropTypes.string.isRequired,
10786
- name: PropTypes.string.isRequired,
10787
- price: T['io.flow.v0.models.price'].isRequired,
10788
- categories: PropTypes.arrayOf(PropTypes.string).isRequired,
10789
- description: PropTypes.string,
10790
- attributes: PropTypes.objectOf(PropTypes.string).isRequired,
10791
- dimensions: T['io.flow.v0.models.dimensions'].isRequired,
10792
- images: PropTypes.arrayOf(T['io.flow.v0.models.image']).isRequired,
10793
- local: T['io.flow.v0.models.local'],
10794
- created_at: PropTypes.string,
10795
- updated_at: PropTypes.string,
10796
- });
11026
+ T['io.flow.v0.unions.ratecard_fee'] = PropTypes.oneOfType([
11027
+ T['io.flow.v0.models.ddp_ratecard_fee'],
11028
+ T['io.flow.v0.models.fuel_surcharge_ratecard_fee'],
11029
+ T['io.flow.v0.models.oversize_piece_surcharge_ratecard_fee'],
11030
+ T['io.flow.v0.models.return_package_ratecard_fee'],
11031
+ T['io.flow.v0.models.crossdock_ratecard_fee'],
11032
+ T['io.flow.v0.models.remote_area_ratecard_fee'],
11033
+ T['io.flow.v0.models.emergency_situation_surcharge_ratecard_fee'],
11034
+ T['io.flow.v0.models.peak_surcharge_ratecard_fee'],
11035
+ T['io.flow.v0.models.duties_taxes_paid_surcharge_ratecard_fee'],
11036
+ T['io.flow.v0.models.security_ratecard_fee'],
11037
+ T['io.flow.v0.models.eei_filing_ratecard_fee'],
11038
+ T['io.flow.v0.models.fixed_ddp_ratecard_fee'],
11039
+ T['io.flow.v0.models.fixed_currency_conversion_ratecard_fee'],
11040
+ ]);
10797
11041
 
10798
- T['io.flow.v0.models.subcatalog_item'] = PropTypes.exact({
10799
- id: PropTypes.string.isRequired,
10800
- item: T['io.flow.v0.models.item'].isRequired,
10801
- status: T['io.flow.v0.enums.subcatalog_item_status'].isRequired,
11042
+ T['io.flow.v0.models.ratecard_lane_form'] = PropTypes.exact({
11043
+ ratecard_id: PropTypes.string.isRequired,
11044
+ currency: PropTypes.string.isRequired,
11045
+ destination: T['io.flow.v0.models.zone'].isRequired,
11046
+ shipment_window: T['io.flow.v0.models.shipment_window'].isRequired,
11047
+ delivered_duty: T['io.flow.v0.enums.delivered_duty'].isRequired,
11048
+ dim_factor: PropTypes.number.isRequired,
11049
+ fees: PropTypes.arrayOf(T['io.flow.v0.unions.ratecard_fee']).isRequired,
11050
+ origin: T['io.flow.v0.models.zone'].isRequired,
11051
+ rounding: T['io.flow.v0.models.rounding'].isRequired,
11052
+ rates: PropTypes.arrayOf(T['io.flow.v0.models.ratecard_rate_form']).isRequired,
11053
+ weight_unit: T['io.flow.v0.enums.unit_of_measurement'].isRequired,
11054
+ distance_unit: T['io.flow.v0.enums.unit_of_measurement'].isRequired,
10802
11055
  });
10803
11056
 
10804
- T['io.flow.v0.models.subcatalog_item_version'] = PropTypes.exact({
11057
+ T['io.flow.v0.models.ratecard_lane'] = PropTypes.exact({
10805
11058
  id: PropTypes.string.isRequired,
10806
- timestamp: PropTypes.string.isRequired,
10807
- type: T['io.flow.v0.enums.change_type'].isRequired,
10808
- subcatalog_item: T['io.flow.v0.models.subcatalog_item'].isRequired,
11059
+ ratecard: T['io.flow.v0.models.ratecard_summary'].isRequired,
11060
+ currency: PropTypes.string.isRequired,
11061
+ delivered_duty: T['io.flow.v0.enums.delivered_duty'].isRequired,
11062
+ shipment_window: T['io.flow.v0.models.shipment_window'].isRequired,
11063
+ destination: T['io.flow.v0.models.zone'].isRequired,
11064
+ dim_factor: PropTypes.number.isRequired,
11065
+ fees: PropTypes.arrayOf(T['io.flow.v0.unions.ratecard_fee']).isRequired,
11066
+ origin: T['io.flow.v0.models.zone'].isRequired,
11067
+ service: T['io.flow.v0.models.ratecard_service_summary'].isRequired,
11068
+ rates: PropTypes.arrayOf(T['io.flow.v0.models.ratecard_rate']).isRequired,
11069
+ rounding: T['io.flow.v0.models.rounding'].isRequired,
11070
+ weight_unit: T['io.flow.v0.enums.unit_of_measurement'].isRequired,
11071
+ distance_unit: T['io.flow.v0.enums.unit_of_measurement'].isRequired,
10809
11072
  });
10810
11073
 
10811
- T['io.flow.v0.models.item_version'] = PropTypes.exact({
11074
+ T['io.flow.v0.models.ratecard_lane_version'] = PropTypes.exact({
10812
11075
  id: PropTypes.string.isRequired,
10813
11076
  timestamp: PropTypes.string.isRequired,
10814
11077
  type: T['io.flow.v0.enums.change_type'].isRequired,
10815
- item: T['io.flow.v0.models.item'].isRequired,
10816
- });
10817
-
10818
- T['io.flow.v0.models.checkout_item_content'] = PropTypes.exact({
10819
- item: T['io.flow.v0.models.item'].isRequired,
10820
- name: PropTypes.string.isRequired,
10821
- description: PropTypes.string,
10822
- attributes: PropTypes.arrayOf(T['io.flow.v0.models.checkout_item_content_attribute']).isRequired,
10823
- image: T['io.flow.v0.models.image'],
10824
- });
10825
-
10826
- T['io.flow.v0.models.klaviyo_line_item'] = PropTypes.exact({
10827
- content: T['io.flow.v0.models.checkout_item_content'].isRequired,
10828
- quantity: PropTypes.number.isRequired,
10829
- price: T['io.flow.v0.models.price_with_base'].isRequired,
10830
- line_price: T['io.flow.v0.models.price_with_base'].isRequired,
10831
- });
10832
-
10833
- T['io.flow.v0.models.klaviyo_order_content'] = PropTypes.exact({
10834
- line_items: PropTypes.arrayOf(T['io.flow.v0.models.klaviyo_line_item']).isRequired,
10835
- prices: T['io.flow.v0.models.klaviyo_order_prices'].isRequired,
10836
- checkout_url: PropTypes.string.isRequired,
10837
- });
10838
-
10839
- T['io.flow.v0.models.catalog_item_upserted_v2'] = PropTypes.exact({
10840
- discriminator: PropTypes.oneOf(['catalog_item_upserted_v2']).isRequired,
10841
- event_id: PropTypes.string.isRequired,
10842
- timestamp: PropTypes.string.isRequired,
10843
- organization: PropTypes.string.isRequired,
10844
- item: T['io.flow.v0.models.item'].isRequired,
11078
+ ratecard_lane: T['io.flow.v0.models.ratecard_lane'].isRequired,
10845
11079
  });
10846
11080
 
10847
- T['io.flow.v0.models.catalog_item_deleted_v2'] = PropTypes.exact({
10848
- discriminator: PropTypes.oneOf(['catalog_item_deleted_v2']).isRequired,
11081
+ T['io.flow.v0.models.ratecard_lane_upserted'] = PropTypes.exact({
11082
+ discriminator: PropTypes.oneOf(['ratecard_lane_upserted']).isRequired,
10849
11083
  event_id: PropTypes.string.isRequired,
10850
11084
  timestamp: PropTypes.string.isRequired,
10851
11085
  organization: PropTypes.string.isRequired,
10852
- item: T['io.flow.v0.models.item'].isRequired,
11086
+ ratecard_lane: T['io.flow.v0.models.ratecard_lane'].isRequired,
10853
11087
  });
10854
11088
 
10855
- T['io.flow.v0.models.export_localized_item_prices_detail'] = PropTypes.exact({
10856
- item: T['io.flow.v0.models.localized_item_price'].isRequired,
10857
- vat: T['io.flow.v0.models.localized_item_vat'],
10858
- duty: T['io.flow.v0.models.localized_item_duty'],
10859
- shipping_price: T['io.flow.v0.models.price'],
10860
- price_attributes: PropTypes.objectOf(T['io.flow.v0.models.price_with_base']).isRequired,
11089
+ T['io.flow.v0.models.fee_weight'] = PropTypes.exact({
11090
+ weight: PropTypes.number.isRequired,
11091
+ unit: T['io.flow.v0.enums.unit_of_measurement'].isRequired,
10861
11092
  });
10862
11093
 
10863
- T['io.flow.v0.models.export_localized_item_prices'] = PropTypes.exact({
10864
- organization: T['io.flow.v0.models.organization_reference'].isRequired,
10865
- experience: T['io.flow.v0.models.experience_summary'].isRequired,
10866
- item: T['io.flow.v0.models.catalog_item_reference'].isRequired,
10867
- prices: T['io.flow.v0.models.export_localized_item_prices_detail'].isRequired,
10868
- status: T['io.flow.v0.enums.subcatalog_item_status'],
10869
- rates: PropTypes.arrayOf(T['io.flow.v0.models.rate']),
11094
+ T['io.flow.v0.models.peak_surcharge_by_weight_service_fee'] = PropTypes.exact({
11095
+ discriminator: PropTypes.oneOf(['peak_surcharge_by_weight_service_fee']).isRequired,
11096
+ amount: T['io.flow.v0.models.money'].isRequired,
11097
+ weight: T['io.flow.v0.models.fee_weight'].isRequired,
11098
+ regions: PropTypes.arrayOf(PropTypes.string),
11099
+ starts_at: PropTypes.string,
11100
+ ends_at: PropTypes.string,
10870
11101
  });
10871
11102
 
10872
- T['io.flow.v0.enums.address_verification_result_field_code'] = PropTypes.oneOf(['matched', 'not_available', 'not_checked', 'not_matched']);
10873
-
10874
- T['io.flow.v0.models.address_verification_result'] = PropTypes.exact({
10875
- street_code: T['io.flow.v0.enums.address_verification_result_field_code'].isRequired,
10876
- postal_code: T['io.flow.v0.enums.address_verification_result_field_code'].isRequired,
10877
- name_code: T['io.flow.v0.enums.address_verification_result_field_code'].isRequired,
10878
- raw: PropTypes.string,
11103
+ T['io.flow.v0.models.fuel_surcharge_amount_by_weight_service_fee'] = PropTypes.exact({
11104
+ discriminator: PropTypes.oneOf(['fuel_surcharge_amount_by_weight_service_fee']).isRequired,
11105
+ amount: T['io.flow.v0.models.money'].isRequired,
11106
+ weight: T['io.flow.v0.models.fee_weight'].isRequired,
11107
+ regions: PropTypes.arrayOf(PropTypes.string),
11108
+ starts_at: PropTypes.string,
11109
+ ends_at: PropTypes.string,
10879
11110
  });
10880
11111
 
10881
- T['io.flow.v0.models.transaction_details_card'] = PropTypes.exact({
10882
- type: PropTypes.oneOf(['card']).isRequired,
10883
- address_verification_result: T['io.flow.v0.models.address_verification_result'],
10884
- cvv_result: T['io.flow.v0.models.cvv_result'],
10885
- network_details: T['io.flow.v0.models.transaction_network_details_card'],
11112
+ T['io.flow.v0.models.emergency_situation_surcharge_service_fee'] = PropTypes.exact({
11113
+ discriminator: PropTypes.oneOf(['emergency_situation_surcharge_service_fee']).isRequired,
11114
+ amount: T['io.flow.v0.models.money'].isRequired,
11115
+ origin_region: T['io.flow.v0.models.ratecard_region_reference'],
11116
+ destination_region: T['io.flow.v0.models.ratecard_region_reference'],
11117
+ interval_unit: T['io.flow.v0.enums.unit_of_measurement'],
10886
11118
  });
10887
11119
 
10888
- T['io.flow.v0.unions.transaction_details'] = PropTypes.oneOfType([T['io.flow.v0.models.transaction_details_card']]);
10889
-
10890
- T['io.flow.v0.models.payment_method_summary_card'] = PropTypes.exact({
10891
- type: PropTypes.oneOf(['card']).isRequired,
10892
- merchant_of_record: T['io.flow.v0.enums.merchant_of_record'].isRequired,
10893
- last_four: PropTypes.string.isRequired,
10894
- card_type: T['io.flow.v0.enums.card_type'].isRequired,
10895
- id: PropTypes.string.isRequired,
10896
- reference: PropTypes.string,
10897
- transaction_details: T['io.flow.v0.models.transaction_details_card'],
11120
+ T['io.flow.v0.models.measurement'] = PropTypes.exact({
11121
+ value: PropTypes.string.isRequired,
11122
+ units: T['io.flow.v0.enums.unit_of_measurement'].isRequired,
10898
11123
  });
10899
11124
 
10900
- T['io.flow.v0.unions.payment_method_summary'] = PropTypes.oneOfType([
10901
- T['io.flow.v0.models.payment_method_summary_card'],
10902
- T['io.flow.v0.models.payment_method_summary_klarna'],
10903
- T['io.flow.v0.models.payment_method_summary_afterpay'],
10904
- T['io.flow.v0.models.payment_method_summary_applepay'],
10905
- T['io.flow.v0.models.payment_method_summary_googlepay'],
10906
- T['io.flow.v0.models.payment_method_summary_paypal'],
10907
- T['io.flow.v0.models.payment_method_summary_ideal'],
10908
- T['io.flow.v0.models.payment_method_summary_sofort'],
10909
- T['io.flow.v0.models.payment_method_summary_bancontact'],
10910
- ]);
11125
+ T['io.flow.v0.models.tax_duty_quote_line_item_form'] = PropTypes.exact({
11126
+ primary_identifier: PropTypes.string.isRequired,
11127
+ attributes: PropTypes.objectOf(PropTypes.string),
11128
+ ship_from: T['io.flow.v0.models.street_address'].isRequired,
11129
+ quantity: PropTypes.number.isRequired,
11130
+ unit_price: PropTypes.number.isRequired,
11131
+ unit_weight: T['io.flow.v0.models.measurement'],
11132
+ country_of_origin: PropTypes.string,
11133
+ hs_code: PropTypes.string,
11134
+ includes: PropTypes.arrayOf(T['io.flow.v0.enums.levy_inclusion']).isRequired,
11135
+ });
10911
11136
 
10912
- T['io.flow.v0.models.payment_authorization'] = PropTypes.exact({
10913
- id: PropTypes.string.isRequired,
10914
- payment_method_summary: T['io.flow.v0.unions.payment_method_summary'].isRequired,
10915
- captures: PropTypes.arrayOf(T['io.flow.v0.models.payment_capture']).isRequired,
10916
- refunds: PropTypes.arrayOf(T['io.flow.v0.models.payment_refund']).isRequired,
10917
- reversals: PropTypes.arrayOf(T['io.flow.v0.models.payment_reversal']).isRequired,
10918
- created_at: PropTypes.string.isRequired,
10919
- updated_at: PropTypes.string.isRequired,
10920
- status: T['io.flow.v0.models.payment_authorization_status'].isRequired,
10921
- amount: PropTypes.number.isRequired,
11137
+ T['io.flow.v0.models.tax_duty_quote_form'] = PropTypes.exact({
11138
+ primary_identifier: PropTypes.string.isRequired,
11139
+ attributes: PropTypes.objectOf(PropTypes.string),
11140
+ delivered_duty: T['io.flow.v0.enums.delivered_duty'].isRequired,
11141
+ destination: T['io.flow.v0.models.street_address'].isRequired,
10922
11142
  currency: PropTypes.string.isRequired,
10923
- base_amount: PropTypes.number,
10924
- base_currency: PropTypes.string,
11143
+ lines: PropTypes.arrayOf(T['io.flow.v0.models.tax_duty_quote_line_item_form']).isRequired,
11144
+ shipping: PropTypes.arrayOf(T['io.flow.v0.models.tax_duty_quote_simple_shipping_form']).isRequired,
11145
+ includes: PropTypes.arrayOf(T['io.flow.v0.enums.levy_inclusion']),
10925
11146
  });
10926
11147
 
10927
- T['io.flow.v0.models.payment_information'] = PropTypes.exact({
10928
- amount_refundable: PropTypes.number,
10929
- amount_refunded: PropTypes.number,
10930
- refundable_before: PropTypes.string,
10931
- amount_capturable: PropTypes.number,
10932
- amount_captured: PropTypes.number,
10933
- capturable_before: PropTypes.string,
10934
- authorizations: PropTypes.arrayOf(T['io.flow.v0.models.payment_authorization']).isRequired,
11148
+ T['io.flow.v0.models.estimated_dimensions'] = PropTypes.exact({
11149
+ depth: T['io.flow.v0.models.measurement'].isRequired,
11150
+ length: T['io.flow.v0.models.measurement'].isRequired,
11151
+ weight: T['io.flow.v0.models.measurement'].isRequired,
11152
+ width: T['io.flow.v0.models.measurement'].isRequired,
10935
11153
  });
10936
11154
 
10937
- T['io.flow.v0.models.address'] = PropTypes.exact({
10938
- text: PropTypes.string,
10939
- streets: PropTypes.arrayOf(PropTypes.string),
10940
- street_number: PropTypes.string,
10941
- city: PropTypes.string,
10942
- province: PropTypes.string,
10943
- postal: PropTypes.string,
10944
- country: PropTypes.string,
10945
- latitude: PropTypes.string,
10946
- longitude: PropTypes.string,
11155
+ T['io.flow.v0.models.dimension_estimate_form'] = PropTypes.exact({
11156
+ q: PropTypes.string.isRequired,
11157
+ dimensions: T['io.flow.v0.models.estimated_dimensions'].isRequired,
11158
+ position: PropTypes.number,
10947
11159
  });
10948
11160
 
10949
- T['io.flow.v0.models.tracking_label_event_upserted'] = PropTypes.exact({
10950
- discriminator: PropTypes.oneOf(['tracking_label_event_upserted']).isRequired,
10951
- event_id: PropTypes.string.isRequired,
10952
- timestamp: PropTypes.string.isRequired,
10953
- organization: PropTypes.string.isRequired,
10954
- address: T['io.flow.v0.models.address'].isRequired,
10955
- carrier: PropTypes.string.isRequired,
10956
- carrier_timestamp: PropTypes.string.isRequired,
10957
- carrier_tracking_number: PropTypes.string.isRequired,
10958
- flow_tracking_number: PropTypes.string.isRequired,
10959
- status: PropTypes.string.isRequired,
10960
- delivery_estimate: PropTypes.string,
10961
- description: PropTypes.string,
10962
- order_number: PropTypes.string,
11161
+ T['io.flow.v0.models.dimension_estimate'] = PropTypes.exact({
11162
+ id: PropTypes.string.isRequired,
11163
+ q: PropTypes.string.isRequired,
11164
+ dimensions: T['io.flow.v0.models.estimated_dimensions'].isRequired,
11165
+ position: PropTypes.number.isRequired,
10963
11166
  });
10964
11167
 
10965
- T['io.flow.v0.models.tracking_event'] = PropTypes.exact({
11168
+ T['io.flow.v0.models.dimension_estimate_version'] = PropTypes.exact({
10966
11169
  id: PropTypes.string.isRequired,
10967
- address: T['io.flow.v0.models.address'].isRequired,
10968
- status: T['io.flow.v0.enums.tracking_status'].isRequired,
10969
11170
  timestamp: PropTypes.string.isRequired,
10970
- description: PropTypes.string,
11171
+ type: T['io.flow.v0.enums.change_type'].isRequired,
11172
+ dimension_estimate: T['io.flow.v0.models.dimension_estimate'].isRequired,
10971
11173
  });
10972
11174
 
10973
- T['io.flow.v0.models.tracking_label'] = PropTypes.exact({
10974
- id: PropTypes.string.isRequired,
10975
- carrier: PropTypes.string.isRequired,
10976
- carrier_tracking_number: PropTypes.string.isRequired,
10977
- events: PropTypes.arrayOf(T['io.flow.v0.models.tracking_event']).isRequired,
10978
- status: T['io.flow.v0.enums.tracking_status'].isRequired,
10979
- timestamp: PropTypes.string.isRequired,
10980
- delivery_estimate: PropTypes.string,
10981
- description: PropTypes.string,
11175
+ T['io.flow.v0.models.dimension'] = PropTypes.exact({
11176
+ depth: T['io.flow.v0.models.measurement'],
11177
+ diameter: T['io.flow.v0.models.measurement'],
11178
+ length: T['io.flow.v0.models.measurement'],
11179
+ weight: T['io.flow.v0.models.measurement'],
11180
+ width: T['io.flow.v0.models.measurement'],
10982
11181
  });
10983
11182
 
10984
- T['io.flow.v0.models.tracking'] = PropTypes.exact({
10985
- id: PropTypes.string.isRequired,
10986
- labels: PropTypes.arrayOf(T['io.flow.v0.models.tracking_label']).isRequired,
10987
- status: T['io.flow.v0.enums.tracking_status'].isRequired,
10988
- attributes: PropTypes.objectOf(PropTypes.string).isRequired,
10989
- url: PropTypes.string.isRequired,
10990
- window: T['io.flow.v0.models.datetime_range'],
10991
- order_number: PropTypes.string,
11183
+ T['io.flow.v0.models.single_package_shipping_notification_form'] = PropTypes.exact({
11184
+ discriminator: PropTypes.oneOf(['single_package_shipping_notification_form']).isRequired,
11185
+ fulfillment_key: PropTypes.string.isRequired,
11186
+ carrier_tracking_number: PropTypes.string.isRequired,
11187
+ package_dimensions: T['io.flow.v0.models.dimension'],
11188
+ service: PropTypes.string,
11189
+ shipment_recipient: T['io.flow.v0.enums.shipment_recipient'],
10992
11190
  });
10993
11191
 
10994
11192
  T['io.flow.v0.models.shopify_merchant_application_form'] = PropTypes.exact({
@@ -11050,235 +11248,197 @@ T['io.flow.v0.models.shopify_merchant_application'] = PropTypes.exact({
11050
11248
  default_country_of_origin: PropTypes.string,
11051
11249
  ratecard: T['io.flow.v0.models.ratecard_reference'],
11052
11250
  rate_card: PropTypes.string.isRequired,
11053
- created_at: PropTypes.string.isRequired,
11054
- activated_at: PropTypes.string,
11055
- status_updated_at: PropTypes.string,
11056
- shop: T['io.flow.v0.models.shop'],
11057
- last_year_xborder_gmv: T['io.flow.v0.models.money'],
11058
- last_month_xborder_gmv: T['io.flow.v0.models.money'],
11059
- average_order_value: T['io.flow.v0.models.money'],
11060
- glbe_merchant_guid: PropTypes.string,
11061
- mcc_codes: PropTypes.arrayOf(PropTypes.number),
11062
- });
11063
-
11064
- T['io.flow.v0.unions.merchant_application'] = PropTypes.oneOfType([T['io.flow.v0.models.shopify_merchant_application']]);
11065
-
11066
- T['io.flow.v0.models.merchant_application_upserted'] = PropTypes.exact({
11067
- discriminator: PropTypes.oneOf(['merchant_application_upserted']).isRequired,
11068
- event_id: PropTypes.string.isRequired,
11069
- timestamp: PropTypes.string.isRequired,
11070
- merchant_application: T['io.flow.v0.unions.merchant_application'].isRequired,
11071
- });
11072
-
11073
- T['io.flow.v0.models.merchant_application_deleted'] = PropTypes.exact({
11074
- discriminator: PropTypes.oneOf(['merchant_application_deleted']).isRequired,
11075
- event_id: PropTypes.string.isRequired,
11076
- timestamp: PropTypes.string.isRequired,
11077
- merchant_application: T['io.flow.v0.unions.merchant_application'].isRequired,
11078
- });
11079
-
11080
- T['io.flow.v0.models.know_your_business_usa_form'] = PropTypes.exact({
11081
- discriminator: PropTypes.oneOf(['know_your_business_usa_form']).isRequired,
11082
- primary_entity: T['io.flow.v0.unions.entity'].isRequired,
11083
- parent_company: T['io.flow.v0.models.company'],
11084
- ultimate_parent_company: T['io.flow.v0.models.company'],
11085
- ultimate_beneficiary_owner: T['io.flow.v0.models.individual'].isRequired,
11086
- business_url: PropTypes.string.isRequired,
11087
- business_address: T['io.flow.v0.models.address'].isRequired,
11088
- });
11089
-
11090
- T['io.flow.v0.unions.know_your_business_form'] = PropTypes.oneOfType([T['io.flow.v0.models.know_your_business_usa_form']]);
11091
-
11092
- T['io.flow.v0.models.know_your_business_usa'] = PropTypes.exact({
11093
- discriminator: PropTypes.oneOf(['know_your_business_usa']).isRequired,
11094
- id: PropTypes.string.isRequired,
11095
- organization_id: PropTypes.string.isRequired,
11096
- shop: T['io.flow.v0.models.shop'],
11097
- primary_entity: T['io.flow.v0.unions.entity'].isRequired,
11098
- parent_company: T['io.flow.v0.models.company'],
11099
- ultimate_parent_company: T['io.flow.v0.models.company'],
11100
- ultimate_beneficiary_owner: T['io.flow.v0.models.individual'].isRequired,
11101
- business_url: PropTypes.string.isRequired,
11102
- business_address: T['io.flow.v0.models.address'].isRequired,
11103
- });
11104
-
11105
- T['io.flow.v0.unions.know_your_business'] = PropTypes.oneOfType([T['io.flow.v0.models.know_your_business_usa']]);
11106
-
11107
- T['io.flow.v0.models.harmonized_landed_cost_item'] = PropTypes.exact({
11108
- item: T['io.flow.v0.models.harmonized_item_reference'].isRequired,
11109
- duty: T['io.flow.v0.models.duty'].isRequired,
11110
- tax: T['io.flow.v0.models.tax'].isRequired,
11111
- tax_applicability: T['io.flow.v0.enums.tax_applicability'],
11112
- origin: PropTypes.string,
11113
- hs_code: PropTypes.string,
11114
- tariff_code: PropTypes.string,
11115
- customs_description: PropTypes.string,
11116
- source_address: T['io.flow.v0.models.address'],
11251
+ created_at: PropTypes.string.isRequired,
11252
+ activated_at: PropTypes.string,
11253
+ status_updated_at: PropTypes.string,
11254
+ shop: T['io.flow.v0.models.shop'],
11255
+ last_year_xborder_gmv: T['io.flow.v0.models.money'],
11256
+ last_month_xborder_gmv: T['io.flow.v0.models.money'],
11257
+ average_order_value: T['io.flow.v0.models.money'],
11258
+ glbe_merchant_guid: PropTypes.string,
11259
+ mcc_codes: PropTypes.arrayOf(PropTypes.number),
11117
11260
  });
11118
11261
 
11119
- T['io.flow.v0.models.harmonized_landed_cost'] = PropTypes.exact({
11120
- address: T['io.flow.v0.models.address'].isRequired,
11121
- items: PropTypes.arrayOf(T['io.flow.v0.models.harmonized_landed_cost_item']).isRequired,
11122
- tax_registration: T['io.flow.v0.models.tax_registration'],
11123
- });
11262
+ T['io.flow.v0.unions.merchant_application'] = PropTypes.oneOfType([T['io.flow.v0.models.shopify_merchant_application']]);
11124
11263
 
11125
- T['io.flow.v0.models.harmonized_landed_cost_upserted'] = PropTypes.exact({
11126
- discriminator: PropTypes.oneOf(['harmonized_landed_cost_upserted']).isRequired,
11264
+ T['io.flow.v0.models.merchant_application_upserted'] = PropTypes.exact({
11265
+ discriminator: PropTypes.oneOf(['merchant_application_upserted']).isRequired,
11127
11266
  event_id: PropTypes.string.isRequired,
11128
11267
  timestamp: PropTypes.string.isRequired,
11129
- organization: PropTypes.string.isRequired,
11130
- id: PropTypes.string.isRequired,
11131
- landed_cost: T['io.flow.v0.models.harmonized_landed_cost'].isRequired,
11268
+ merchant_application: T['io.flow.v0.unions.merchant_application'].isRequired,
11132
11269
  });
11133
11270
 
11134
- T['io.flow.v0.models.consumer_invoice_center_reference'] = PropTypes.exact({
11135
- id: PropTypes.string.isRequired,
11136
- key: PropTypes.string.isRequired,
11137
- name: PropTypes.string.isRequired,
11138
- address: T['io.flow.v0.models.address'].isRequired,
11271
+ T['io.flow.v0.models.merchant_application_deleted'] = PropTypes.exact({
11272
+ discriminator: PropTypes.oneOf(['merchant_application_deleted']).isRequired,
11273
+ event_id: PropTypes.string.isRequired,
11274
+ timestamp: PropTypes.string.isRequired,
11275
+ merchant_application: T['io.flow.v0.unions.merchant_application'].isRequired,
11139
11276
  });
11140
11277
 
11141
- T['io.flow.v0.models.address_suggestion'] = PropTypes.exact({
11142
- address: T['io.flow.v0.models.address'].isRequired,
11143
- streets: PropTypes.bool.isRequired,
11144
- city: PropTypes.bool.isRequired,
11145
- province: PropTypes.bool.isRequired,
11146
- postal: PropTypes.bool.isRequired,
11147
- country: PropTypes.bool.isRequired,
11278
+ T['io.flow.v0.models.package_dimensions_form'] = PropTypes.exact({
11279
+ dimensions: PropTypes.arrayOf(T['io.flow.v0.models.dimension']).isRequired,
11148
11280
  });
11149
11281
 
11150
- T['io.flow.v0.models.address_verification'] = PropTypes.exact({
11151
- address: T['io.flow.v0.models.address'].isRequired,
11152
- valid: PropTypes.bool.isRequired,
11153
- suggestions: PropTypes.arrayOf(T['io.flow.v0.models.address_suggestion']).isRequired,
11282
+ T['io.flow.v0.models.package_dimensions'] = PropTypes.exact({
11283
+ dimensions: PropTypes.arrayOf(T['io.flow.v0.models.dimension']).isRequired,
11154
11284
  });
11155
11285
 
11156
- T['io.flow.v0.models.field_validation_pattern'] = PropTypes.exact({
11157
- discriminator: PropTypes.oneOf(['pattern']).isRequired,
11158
- pattern: PropTypes.string.isRequired,
11286
+ T['io.flow.v0.models.dimensions'] = PropTypes.exact({
11287
+ product: T['io.flow.v0.models.dimension'],
11288
+ packaging: T['io.flow.v0.models.dimension'],
11159
11289
  });
11160
11290
 
11161
- T['io.flow.v0.models.field_validation_max'] = PropTypes.exact({
11162
- discriminator: PropTypes.oneOf(['max']).isRequired,
11163
- length: PropTypes.number.isRequired,
11291
+ T['io.flow.v0.models.item_form_overlay_form'] = PropTypes.exact({
11292
+ number: PropTypes.string.isRequired,
11293
+ price: PropTypes.number,
11294
+ currency: PropTypes.string,
11295
+ position: PropTypes.number,
11296
+ categories: PropTypes.arrayOf(PropTypes.string),
11297
+ description: PropTypes.string,
11298
+ attributes: PropTypes.objectOf(PropTypes.string),
11299
+ dimensions: T['io.flow.v0.models.dimensions'],
11300
+ images: PropTypes.arrayOf(T['io.flow.v0.models.image_form']),
11164
11301
  });
11165
11302
 
11166
- T['io.flow.v0.models.field_validation_min'] = PropTypes.exact({
11167
- discriminator: PropTypes.oneOf(['min']).isRequired,
11168
- length: PropTypes.number.isRequired,
11303
+ T['io.flow.v0.models.item_form_overlay'] = PropTypes.exact({
11304
+ id: PropTypes.string.isRequired,
11305
+ number: PropTypes.string.isRequired,
11306
+ key: PropTypes.string.isRequired,
11307
+ position: PropTypes.number.isRequired,
11308
+ price: T['io.flow.v0.models.price'],
11309
+ categories: PropTypes.arrayOf(PropTypes.string),
11310
+ description: PropTypes.string,
11311
+ attributes: PropTypes.objectOf(PropTypes.string),
11312
+ dimensions: T['io.flow.v0.models.dimensions'],
11313
+ images: PropTypes.arrayOf(T['io.flow.v0.models.image_form']),
11169
11314
  });
11170
11315
 
11171
- T['io.flow.v0.models.field_validation_required_if_present'] = PropTypes.exact({
11172
- discriminator: PropTypes.oneOf(['required_if_present']).isRequired,
11173
- placeholder: PropTypes.string,
11316
+ T['io.flow.v0.models.item_form'] = PropTypes.exact({
11317
+ number: PropTypes.string.isRequired,
11318
+ locale: PropTypes.string.isRequired,
11319
+ name: PropTypes.string.isRequired,
11320
+ currency: PropTypes.string.isRequired,
11321
+ price: PropTypes.number.isRequired,
11322
+ categories: PropTypes.arrayOf(PropTypes.string),
11323
+ description: PropTypes.string,
11324
+ attributes: PropTypes.objectOf(PropTypes.string),
11325
+ dimensions: T['io.flow.v0.models.dimensions'],
11326
+ images: PropTypes.arrayOf(T['io.flow.v0.models.image_form']),
11174
11327
  });
11175
11328
 
11176
- T['io.flow.v0.models.field_validation_required'] = PropTypes.exact({
11177
- discriminator: PropTypes.oneOf(['required']).isRequired,
11178
- placeholder: PropTypes.string,
11329
+ T['io.flow.v0.models.packaging'] = PropTypes.exact({
11330
+ dimensions: T['io.flow.v0.models.dimensions'].isRequired,
11331
+ name: PropTypes.string,
11332
+ number: PropTypes.string,
11179
11333
  });
11180
11334
 
11181
- T['io.flow.v0.models.address_configuration_province_translation_locale'] = PropTypes.exact({
11335
+ T['io.flow.v0.models.item'] = PropTypes.exact({
11182
11336
  id: PropTypes.string.isRequired,
11337
+ number: PropTypes.string.isRequired,
11338
+ locale: PropTypes.string.isRequired,
11183
11339
  name: PropTypes.string.isRequired,
11184
- language: PropTypes.string.isRequired,
11340
+ price: T['io.flow.v0.models.price'].isRequired,
11341
+ categories: PropTypes.arrayOf(PropTypes.string).isRequired,
11342
+ description: PropTypes.string,
11343
+ attributes: PropTypes.objectOf(PropTypes.string).isRequired,
11344
+ dimensions: T['io.flow.v0.models.dimensions'].isRequired,
11345
+ images: PropTypes.arrayOf(T['io.flow.v0.models.image']).isRequired,
11346
+ local: T['io.flow.v0.models.local'],
11347
+ created_at: PropTypes.string,
11348
+ updated_at: PropTypes.string,
11185
11349
  });
11186
11350
 
11187
- T['io.flow.v0.enums.address_field_name'] = PropTypes.oneOf([
11188
- 'first_name',
11189
- 'last_name',
11190
- 'street_1',
11191
- 'street_2',
11192
- 'city',
11193
- 'province',
11194
- 'postal',
11195
- 'country',
11196
- 'phone',
11197
- 'company',
11198
- 'vat_registration_number',
11199
- ]);
11200
-
11201
- T['io.flow.v0.models.address_configuration_field_placement'] = PropTypes.exact({
11202
- name: T['io.flow.v0.enums.address_field_name'].isRequired,
11351
+ T['io.flow.v0.models.subcatalog_item'] = PropTypes.exact({
11352
+ id: PropTypes.string.isRequired,
11353
+ item: T['io.flow.v0.models.item'].isRequired,
11354
+ status: T['io.flow.v0.enums.subcatalog_item_status'].isRequired,
11203
11355
  });
11204
11356
 
11205
- T['io.flow.v0.models.address_configuration_province_translation'] = PropTypes.exact({
11206
- locale: T['io.flow.v0.models.address_configuration_province_translation_locale'].isRequired,
11207
- name: PropTypes.string.isRequired,
11357
+ T['io.flow.v0.models.subcatalog_item_version'] = PropTypes.exact({
11358
+ id: PropTypes.string.isRequired,
11359
+ timestamp: PropTypes.string.isRequired,
11360
+ type: T['io.flow.v0.enums.change_type'].isRequired,
11361
+ subcatalog_item: T['io.flow.v0.models.subcatalog_item'].isRequired,
11208
11362
  });
11209
11363
 
11210
- T['io.flow.v0.unions.field_validation_rule'] = PropTypes.oneOfType([
11211
- T['io.flow.v0.models.field_validation_required'],
11212
- T['io.flow.v0.models.field_validation_required_if_present'],
11213
- T['io.flow.v0.models.field_validation_min'],
11214
- T['io.flow.v0.models.field_validation_max'],
11215
- T['io.flow.v0.models.field_validation_pattern'],
11216
- ]);
11364
+ T['io.flow.v0.models.item_version'] = PropTypes.exact({
11365
+ id: PropTypes.string.isRequired,
11366
+ timestamp: PropTypes.string.isRequired,
11367
+ type: T['io.flow.v0.enums.change_type'].isRequired,
11368
+ item: T['io.flow.v0.models.item'].isRequired,
11369
+ });
11217
11370
 
11218
- T['io.flow.v0.enums.postal_type'] = PropTypes.oneOf(['eircode', 'pin', 'postal', 'zip']);
11371
+ T['io.flow.v0.models.checkout_item_content'] = PropTypes.exact({
11372
+ item: T['io.flow.v0.models.item'].isRequired,
11373
+ name: PropTypes.string.isRequired,
11374
+ description: PropTypes.string,
11375
+ attributes: PropTypes.arrayOf(T['io.flow.v0.models.checkout_item_content_attribute']).isRequired,
11376
+ image: T['io.flow.v0.models.image'],
11377
+ });
11219
11378
 
11220
- T['io.flow.v0.enums.province_type'] = PropTypes.oneOf([
11221
- 'area',
11222
- 'city',
11223
- 'county',
11224
- 'department',
11225
- 'dependency',
11226
- 'district',
11227
- 'do_si',
11228
- 'emirate',
11229
- 'entity',
11230
- 'island',
11231
- 'municipality',
11232
- 'oblast',
11233
- 'outlying_area',
11234
- 'parish',
11235
- 'prefecture',
11236
- 'province',
11237
- 'state',
11238
- 'territory',
11239
- 'other',
11240
- ]);
11379
+ T['io.flow.v0.models.klaviyo_line_item'] = PropTypes.exact({
11380
+ content: T['io.flow.v0.models.checkout_item_content'].isRequired,
11381
+ quantity: PropTypes.number.isRequired,
11382
+ price: T['io.flow.v0.models.price_with_base'].isRequired,
11383
+ line_price: T['io.flow.v0.models.price_with_base'].isRequired,
11384
+ });
11241
11385
 
11242
- T['io.flow.v0.models.province'] = PropTypes.exact({
11243
- id: PropTypes.string.isRequired,
11244
- iso_3166_2: PropTypes.string.isRequired,
11245
- name: PropTypes.string.isRequired,
11246
- country: PropTypes.string.isRequired,
11247
- province_type: T['io.flow.v0.enums.province_type'].isRequired,
11248
- translations: PropTypes.arrayOf(T['io.flow.v0.models.localized_translation']),
11386
+ T['io.flow.v0.models.klaviyo_order_content'] = PropTypes.exact({
11387
+ line_items: PropTypes.arrayOf(T['io.flow.v0.models.klaviyo_line_item']).isRequired,
11388
+ prices: T['io.flow.v0.models.klaviyo_order_prices'].isRequired,
11389
+ checkout_url: PropTypes.string.isRequired,
11249
11390
  });
11250
11391
 
11251
- T['io.flow.v0.models.address_configuration_format'] = PropTypes.exact({
11252
- placements: PropTypes.arrayOf(T['io.flow.v0.models.address_configuration_field_placement']).isRequired,
11392
+ T['io.flow.v0.models.catalog_item_upserted_v2'] = PropTypes.exact({
11393
+ discriminator: PropTypes.oneOf(['catalog_item_upserted_v2']).isRequired,
11394
+ event_id: PropTypes.string.isRequired,
11395
+ timestamp: PropTypes.string.isRequired,
11396
+ organization: PropTypes.string.isRequired,
11397
+ item: T['io.flow.v0.models.item'].isRequired,
11253
11398
  });
11254
11399
 
11255
- T['io.flow.v0.models.address_configuration_province'] = PropTypes.exact({
11256
- value: PropTypes.string.isRequired,
11257
- name: PropTypes.string.isRequired,
11258
- translations: PropTypes.arrayOf(T['io.flow.v0.models.address_configuration_province_translation']),
11400
+ T['io.flow.v0.models.catalog_item_deleted_v2'] = PropTypes.exact({
11401
+ discriminator: PropTypes.oneOf(['catalog_item_deleted_v2']).isRequired,
11402
+ event_id: PropTypes.string.isRequired,
11403
+ timestamp: PropTypes.string.isRequired,
11404
+ organization: PropTypes.string.isRequired,
11405
+ item: T['io.flow.v0.models.item'].isRequired,
11259
11406
  });
11260
11407
 
11261
- T['io.flow.v0.models.address_field_validation'] = PropTypes.exact({
11262
- first_name: PropTypes.arrayOf(T['io.flow.v0.unions.field_validation_rule']).isRequired,
11263
- last_name: PropTypes.arrayOf(T['io.flow.v0.unions.field_validation_rule']).isRequired,
11264
- street_1: PropTypes.arrayOf(T['io.flow.v0.unions.field_validation_rule']).isRequired,
11265
- street_2: PropTypes.arrayOf(T['io.flow.v0.unions.field_validation_rule']).isRequired,
11266
- city: PropTypes.arrayOf(T['io.flow.v0.unions.field_validation_rule']).isRequired,
11267
- province: PropTypes.arrayOf(T['io.flow.v0.unions.field_validation_rule']).isRequired,
11268
- postal: PropTypes.arrayOf(T['io.flow.v0.unions.field_validation_rule']).isRequired,
11269
- phone: PropTypes.arrayOf(T['io.flow.v0.unions.field_validation_rule']).isRequired,
11270
- vat_registration_number: PropTypes.arrayOf(T['io.flow.v0.unions.field_validation_rule']).isRequired,
11408
+ T['io.flow.v0.models.option_weight_estimates'] = PropTypes.exact({
11409
+ gravitational: T['io.flow.v0.models.measurement'].isRequired,
11410
+ dimensional: T['io.flow.v0.models.measurement'].isRequired,
11271
11411
  });
11272
11412
 
11273
- T['io.flow.v0.models.address_configuration'] = PropTypes.exact({
11274
- country: PropTypes.string.isRequired,
11275
- field_validation: T['io.flow.v0.models.address_field_validation'].isRequired,
11276
- provinces: PropTypes.arrayOf(T['io.flow.v0.models.address_configuration_province']).isRequired,
11277
- formats: PropTypes.arrayOf(T['io.flow.v0.models.address_configuration_format']),
11278
- province_type: T['io.flow.v0.enums.province_type'],
11279
- postal_type: T['io.flow.v0.enums.postal_type'],
11413
+ T['io.flow.v0.models.additional_handling_service_fee'] = PropTypes.exact({
11414
+ discriminator: PropTypes.oneOf(['additional_handling_service_fee']).isRequired,
11415
+ length_girth_threshold: PropTypes.number,
11416
+ length_threshold: PropTypes.number,
11417
+ width_threshold: PropTypes.number,
11418
+ dimensional_unit: T['io.flow.v0.enums.unit_of_measurement'],
11419
+ weight_threshold: PropTypes.number,
11420
+ weight_unit: T['io.flow.v0.enums.unit_of_measurement'],
11421
+ amount: T['io.flow.v0.models.money'].isRequired,
11280
11422
  });
11281
11423
 
11424
+ T['io.flow.v0.unions.service_fee'] = PropTypes.oneOfType([
11425
+ T['io.flow.v0.models.fuel_surcharge_service_fee'],
11426
+ T['io.flow.v0.models.fuel_surcharge_amount_by_weight_service_fee'],
11427
+ T['io.flow.v0.models.remote_area_service_fee'],
11428
+ T['io.flow.v0.models.emergency_situation_surcharge_service_fee'],
11429
+ T['io.flow.v0.models.peak_surcharge_service_fee'],
11430
+ T['io.flow.v0.models.peak_surcharge_by_weight_service_fee'],
11431
+ T['io.flow.v0.models.duties_taxes_paid_surcharge_service_fee'],
11432
+ T['io.flow.v0.models.oversize_piece_surcharge_service_fee'],
11433
+ T['io.flow.v0.models.remote_area_by_weight_service_fee'],
11434
+ T['io.flow.v0.models.additional_handling_service_fee'],
11435
+ T['io.flow.v0.models.large_package_service_fee'],
11436
+ T['io.flow.v0.models.security_service_fee'],
11437
+ T['io.flow.v0.models.fixed_ddp_service_fee'],
11438
+ T['io.flow.v0.models.fixed_currency_conversion_service_fee'],
11439
+ T['io.flow.v0.models.eei_filing_service_fee'],
11440
+ ]);
11441
+
11282
11442
  T['io.flow.v0.models.klarna_payment_category'] = PropTypes.exact({
11283
11443
  id: PropTypes.string.isRequired,
11284
11444
  name: PropTypes.string.isRequired,
@@ -14562,7 +14722,7 @@ T['io.flow.stripe.v0.enums.klarna_payment_method_category_type'] = PropTypes.one
14562
14722
  'pay_over_time',
14563
14723
  ]);
14564
14724
 
14565
- T['io.flow.stripe.v0.enums.payment_method_type'] = PropTypes.oneOf(['card', 'card_present']);
14725
+ T['io.flow.stripe.v0.enums.payment_method_type'] = PropTypes.oneOf(['card', 'card_present', 'klarna']);
14566
14726
 
14567
14727
  T['io.flow.stripe.v0.models.card_request'] = PropTypes.exact({
14568
14728
  object: PropTypes.string.isRequired,
@@ -14737,6 +14897,7 @@ export const actionUseSdkPaypal = T['io.flow.v0.models.action_use_sdk_paypal'];
14737
14897
  export const actionUseSdkStripeV3 = T['io.flow.v0.models.action_use_sdk_stripe_v3'];
14738
14898
  export const actionWait = T['io.flow.v0.models.action_wait'];
14739
14899
  export const activationPutForm = T['io.flow.v0.models.activation_put_form'];
14900
+ export const additionalHandlingServiceFee = T['io.flow.v0.models.additional_handling_service_fee'];
14740
14901
  export const additionalServicesRequested = T['io.flow.v0.models.additional_services_requested'];
14741
14902
  export const address = T['io.flow.v0.models.address'];
14742
14903
  export const addressConfiguration = T['io.flow.v0.models.address_configuration'];
@@ -15173,6 +15334,8 @@ export const ecommercePlatformForm = T['io.flow.v0.models.ecommerce_platform_for
15173
15334
  export const ecommercePlatformType = T['io.flow.v0.enums.ecommerce_platform_type'];
15174
15335
  export const ecommercePlatformUpserted = T['io.flow.v0.models.ecommerce_platform_upserted'];
15175
15336
  export const economicTitleLocation = T['io.flow.v0.enums.economic_title_location'];
15337
+ export const eeiFilingRatecardFee = T['io.flow.v0.models.eei_filing_ratecard_fee'];
15338
+ export const eeiFilingServiceFee = T['io.flow.v0.models.eei_filing_service_fee'];
15176
15339
  export const emailAbandonedOrderPromotion = T['io.flow.v0.models.email_abandoned_order_promotion'];
15177
15340
  export const emailAbandonedOrderUrls = T['io.flow.v0.models.email_abandoned_order_urls'];
15178
15341
  export const emailNotification = T['io.flow.v0.models.email_notification'];
@@ -15280,6 +15443,11 @@ export const fieldValidationPattern = T['io.flow.v0.models.field_validation_patt
15280
15443
  export const fieldValidationRequired = T['io.flow.v0.models.field_validation_required'];
15281
15444
  export const fieldValidationRequiredIfPresent = T['io.flow.v0.models.field_validation_required_if_present'];
15282
15445
  export const fieldValidationRule = T['io.flow.v0.unions.field_validation_rule'];
15446
+ export const fixedCurrencyConversionRatecardFee = T['io.flow.v0.models.fixed_currency_conversion_ratecard_fee'];
15447
+ export const fixedCurrencyConversionServiceFee = T['io.flow.v0.models.fixed_currency_conversion_service_fee'];
15448
+ export const fixedDdpRatecardFee = T['io.flow.v0.models.fixed_ddp_ratecard_fee'];
15449
+ export const fixedDdpServiceFee = T['io.flow.v0.models.fixed_ddp_service_fee'];
15450
+ export const fixedFeeCondition = T['io.flow.v0.models.fixed_fee_condition'];
15283
15451
  export const flatRate = T['io.flow.v0.models.flat_rate'];
15284
15452
  export const flatRateForm = T['io.flow.v0.models.flat_rate_form'];
15285
15453
  export const flowBehavior = T['io.flow.v0.enums.flow_behavior'];
@@ -15493,6 +15661,7 @@ export const lanePreselectPreference = T['io.flow.v0.enums.lane_preselect_prefer
15493
15661
  export const laneStrategy = T['io.flow.v0.enums.lane_strategy'];
15494
15662
  export const laneSummary = T['io.flow.v0.models.lane_summary'];
15495
15663
  export const language = T['io.flow.v0.models.language'];
15664
+ export const largePackageServiceFee = T['io.flow.v0.models.large_package_service_fee'];
15496
15665
  export const levyComponent = T['io.flow.v0.enums.levy_component'];
15497
15666
  export const levyInclusion = T['io.flow.v0.enums.levy_inclusion'];
15498
15667
  export const levyStrategy = T['io.flow.v0.enums.levy_strategy'];
@@ -15554,6 +15723,8 @@ export const merchantApplicationPutForm = T['io.flow.v0.unions.merchant_applicat
15554
15723
  export const merchantApplicationUpserted = T['io.flow.v0.models.merchant_application_upserted'];
15555
15724
  export const merchantApplicationsSummary = T['io.flow.v0.unions.merchant_applications_summary'];
15556
15725
  export const merchantDeactivated = T['io.flow.v0.models.merchant_deactivated'];
15726
+ export const merchantDisabled = T['io.flow.v0.models.merchant_disabled'];
15727
+ export const merchantDisabledReason = T['io.flow.v0.enums.merchant_disabled_reason'];
15557
15728
  export const merchantGiftCardBalance = T['io.flow.v0.models.merchant_gift_card_balance'];
15558
15729
  export const merchantGiftCardBalanceForm = T['io.flow.v0.models.merchant_gift_card_balance_form'];
15559
15730
  export const merchantGiftCardError = T['io.flow.v0.models.merchant_gift_card_error'];
@@ -16077,6 +16248,7 @@ export const regionReference = T['io.flow.v0.models.region_reference'];
16077
16248
  export const regionSetting = T['io.flow.v0.models.region_setting'];
16078
16249
  export const regionSettingForm = T['io.flow.v0.models.region_setting_form'];
16079
16250
  export const regionType = T['io.flow.v0.enums.region_type'];
16251
+ export const remoteAreaByWeightServiceFee = T['io.flow.v0.models.remote_area_by_weight_service_fee'];
16080
16252
  export const remoteAreaRatecardFee = T['io.flow.v0.models.remote_area_ratecard_fee'];
16081
16253
  export const remoteAreaServiceFee = T['io.flow.v0.models.remote_area_service_fee'];
16082
16254
  export const repeatDaily = T['io.flow.v0.models.repeat_daily'];
@@ -16142,6 +16314,8 @@ export const scheduledExport = T['io.flow.v0.models.scheduled_export'];
16142
16314
  export const scheduledExportForm = T['io.flow.v0.models.scheduled_export_form'];
16143
16315
  export const scheduledPickup = T['io.flow.v0.models.scheduled_pickup'];
16144
16316
  export const sdkAdyenV3AuthenticationToken = T['io.flow.v0.unions.sdk_adyen_v3_authentication_token'];
16317
+ export const securityRatecardFee = T['io.flow.v0.models.security_ratecard_fee'];
16318
+ export const securityServiceFee = T['io.flow.v0.models.security_service_fee'];
16145
16319
  export const selectIssuerOptionActionDetails = T['io.flow.v0.models.select_issuer_option_action_details'];
16146
16320
  export const serviceDescription = T['io.flow.v0.unions.service_description'];
16147
16321
  export const serviceFee = T['io.flow.v0.unions.service_fee'];