@flowio/api-internal-prop-types 9.24.110 → 9.24.111

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.
@@ -104,21 +104,6 @@ T['io.flow.organization.onboarding.state.v0.models.rejection_put_form'] = PropTy
104
104
  });
105
105
 
106
106
  T['io.flow.organization.onboarding.state.v0.enums.merchant_disabled_reason'] = PropTypes.oneOf(['merchant_deactivated', 'merchant_rejected']);
107
-
108
- T['io.flow.checkout.v0.models.checkout_urls'] = PropTypes.exact({
109
- continue_shopping: PropTypes.string,
110
- confirmation: PropTypes.string,
111
- invalid_checkout: PropTypes.string,
112
- });
113
-
114
- T['io.flow.experience.v0.models.order_number_reference'] = PropTypes.exact({
115
- number: PropTypes.string.isRequired,
116
- });
117
-
118
- T['io.flow.common.v0.models.checkout_reference'] = PropTypes.exact({
119
- id: PropTypes.string.isRequired,
120
- });
121
-
122
107
  T['io.flow.apple.pay.v0.enums.apple_pay_line_item_type'] = PropTypes.oneOf(['final', 'pending']);
123
108
  T['io.flow.catalog.return.v0.enums.return_policy_state'] = PropTypes.oneOf(['current', 'deleting', 'updating']);
124
109
  T['io.flow.fulfillment.v0.enums.tier_estimate_type'] = PropTypes.oneOf(['calculated', 'custom']);
@@ -169,6 +154,10 @@ T['io.flow.fulfillment.v0.models.quote_error'] = PropTypes.exact({
169
154
  item_numbers: PropTypes.arrayOf(PropTypes.string),
170
155
  });
171
156
 
157
+ T['io.flow.fulfillment.v0.models.delivery_option_reference'] = PropTypes.exact({
158
+ id: PropTypes.string.isRequired,
159
+ });
160
+
172
161
  T['io.flow.fulfillment.v0.enums.preferred_service_selection_strategy'] = PropTypes.oneOf(['calculated_rate', 'flat_rate', 'custom_rate']);
173
162
 
174
163
  T['io.flow.fulfillment.v0.models.physical_delivery_preferred_service'] = PropTypes.exact({
@@ -821,6 +810,11 @@ T['io.flow.reference.v0.models.locale'] = PropTypes.exact({
821
810
  numbers: T['io.flow.reference.v0.models.locale_numbers'].isRequired,
822
811
  });
823
812
 
813
+ T['io.flow.reference.v0.models.localized_translation'] = PropTypes.exact({
814
+ locale: T['io.flow.reference.v0.models.locale'].isRequired,
815
+ name: PropTypes.string.isRequired,
816
+ });
817
+
824
818
  T['io.flow.reference.v0.models.currency_symbols'] = PropTypes.exact({
825
819
  primary: PropTypes.string.isRequired,
826
820
  narrow: PropTypes.string,
@@ -1019,6 +1013,16 @@ T['io.flow.ratecard.v0.models.ratecard_rate'] = PropTypes.exact({
1019
1013
  weight: PropTypes.number.isRequired,
1020
1014
  });
1021
1015
 
1016
+ T['io.flow.ratecard.v0.models.ratecard_carrier_summary'] = PropTypes.exact({
1017
+ id: PropTypes.string.isRequired,
1018
+ name: PropTypes.string.isRequired,
1019
+ });
1020
+
1021
+ T['io.flow.ratecard.v0.models.shipment_window'] = PropTypes.exact({
1022
+ from: PropTypes.number.isRequired,
1023
+ to: PropTypes.number.isRequired,
1024
+ });
1025
+
1022
1026
  T['io.flow.ratecard.v0.models.fuel_surcharge_percent'] = PropTypes.exact({
1023
1027
  discriminator: PropTypes.oneOf(['fuel_surcharge_percent']).isRequired,
1024
1028
  percent: PropTypes.number.isRequired,
@@ -1079,6 +1083,17 @@ T['io.flow.experience.v0.models.order_number_generator_uuid'] = PropTypes.exact(
1079
1083
 
1080
1084
  T['io.flow.experience.v0.enums.payment_method_rule_content_key'] = PropTypes.oneOf(['description']);
1081
1085
  T['io.flow.experience.v0.enums.organization_payment_method_tag'] = PropTypes.oneOf(['deny']);
1086
+
1087
+ T['io.flow.experience.v0.models.order_submission_identifier_form'] = PropTypes.exact({
1088
+ identifier: PropTypes.string.isRequired,
1089
+ name: PropTypes.string,
1090
+ primary: PropTypes.bool,
1091
+ });
1092
+
1093
+ T['io.flow.experience.v0.models.order_submission_form'] = PropTypes.exact({
1094
+ identifiers: PropTypes.arrayOf(T['io.flow.experience.v0.models.order_submission_identifier_form']),
1095
+ });
1096
+
1082
1097
  T['io.flow.experience.v0.enums.order_refund_summary_partial_charged'] = PropTypes.oneOf(['per_item', 'for_order', 'by_value_percentage', 'by_quantity_percentage']);
1083
1098
 
1084
1099
  T['io.flow.experience.v0.models.order_refund_summary_item'] = PropTypes.exact({
@@ -1145,6 +1160,10 @@ T['io.flow.experience.v0.unions.order_number_generator'] = PropTypes.oneOfType([
1145
1160
 
1146
1161
  T['io.flow.experience.v0.enums.order_storage'] = PropTypes.oneOf(['do_not_persist', 'persist']);
1147
1162
 
1163
+ T['io.flow.experience.v0.models.order_options'] = PropTypes.exact({
1164
+ storage: T['io.flow.experience.v0.enums.order_storage'].isRequired,
1165
+ });
1166
+
1148
1167
  T['io.flow.experience.v0.models.order_rule_reference'] = PropTypes.exact({
1149
1168
  id: PropTypes.string.isRequired,
1150
1169
  key: PropTypes.string.isRequired,
@@ -1497,6 +1516,20 @@ T['io.flow.ftp.v0.models.ftp_organization_settings'] = PropTypes.exact({
1497
1516
 
1498
1517
  T['io.flow.common.v0.enums.holiday_calendar'] = PropTypes.oneOf(['us_bank_holidays', 'jewish_holidays']);
1499
1518
  T['io.flow.common.v0.enums.calendar'] = PropTypes.oneOf(['weekdays', 'everyday']);
1519
+ T['io.flow.common.v0.enums.rounding_method'] = PropTypes.oneOf(['up', 'down', 'nearest']);
1520
+ T['io.flow.common.v0.enums.rounding_type'] = PropTypes.oneOf(['pattern', 'multiple']);
1521
+
1522
+ T['io.flow.common.v0.models.rounding'] = PropTypes.exact({
1523
+ type: T['io.flow.common.v0.enums.rounding_type'].isRequired,
1524
+ method: T['io.flow.common.v0.enums.rounding_method'].isRequired,
1525
+ value: PropTypes.number.isRequired,
1526
+ });
1527
+
1528
+ T['io.flow.price.v0.models.pricing'] = PropTypes.exact({
1529
+ vat: T['io.flow.price.v0.enums.pricing_levy_setting'].isRequired,
1530
+ duty: T['io.flow.price.v0.enums.pricing_levy_setting'].isRequired,
1531
+ rounding: T['io.flow.common.v0.models.rounding'],
1532
+ });
1500
1533
 
1501
1534
  T['io.flow.common.v0.enums.day_of_week'] = PropTypes.oneOf([
1502
1535
  'sunday',
@@ -2781,6 +2814,17 @@ T['io.flow.shopify.external.v0.models.graphql_product_image'] = PropTypes.exact(
2781
2814
  altText: PropTypes.string,
2782
2815
  });
2783
2816
 
2817
+ T['io.flow.shopify.external.v0.models.graphql_metaobject_field'] = PropTypes.exact({
2818
+ key: PropTypes.string.isRequired,
2819
+ value: PropTypes.string,
2820
+ });
2821
+
2822
+ T['io.flow.shopify.external.v0.models.graphql_metaobject'] = PropTypes.exact({
2823
+ id: PropTypes.string.isRequired,
2824
+ displayName: PropTypes.string.isRequired,
2825
+ fields: PropTypes.arrayOf(T['io.flow.shopify.external.v0.models.graphql_metaobject_field']).isRequired,
2826
+ });
2827
+
2784
2828
  T['io.flow.shopify.external.v0.enums.graphql_weight_unit'] = PropTypes.oneOf(['GRAMS', 'KILOGRAMS', 'OUNCES', 'POUNDS']);
2785
2829
 
2786
2830
  T['io.flow.shopify.external.v0.models.graphql_weight'] = PropTypes.exact({
@@ -6031,6 +6075,19 @@ T['io.flow.stripe.v0.models.payment_method'] = PropTypes.exact({
6031
6075
  type: PropTypes.string,
6032
6076
  });
6033
6077
 
6078
+ T['io.flow.stripe.v0.enums.capability_status'] = PropTypes.oneOf(['active', 'disabled', 'inactive', 'pending', 'unrequested']);
6079
+
6080
+ T['io.flow.stripe.v0.models.capability'] = PropTypes.exact({
6081
+ id: PropTypes.string.isRequired,
6082
+ account: PropTypes.string.isRequired,
6083
+ requested: PropTypes.bool.isRequired,
6084
+ requirements: PropTypes.object.isRequired,
6085
+ status: T['io.flow.stripe.v0.enums.capability_status'].isRequired,
6086
+ object: PropTypes.string.isRequired,
6087
+ future_requirements: PropTypes.object.isRequired,
6088
+ requested_at: PropTypes.number,
6089
+ });
6090
+
6034
6091
  T['io.flow.stripe.v0.enums.apple_pay_type'] = PropTypes.oneOf(['apple_pay', 'apple_pay_later']);
6035
6092
 
6036
6093
  T['io.flow.stripe.v0.models.apple_pay_information'] = PropTypes.exact({
@@ -6323,6 +6380,14 @@ T['io.flow.field.validation.v0.unions.field_validation_rule'] = PropTypes.oneOfT
6323
6380
  T['io.flow.field.validation.v0.models.field_validation_pattern'],
6324
6381
  ]);
6325
6382
 
6383
+ T['io.flow.payment.v0.models.card_payment_source_form'] = PropTypes.exact({
6384
+ discriminator: PropTypes.oneOf(['card_payment_source_form']).isRequired,
6385
+ customer_number: PropTypes.string.isRequired,
6386
+ card_id: PropTypes.string.isRequired,
6387
+ });
6388
+
6389
+ T['io.flow.payment.v0.unions.payment_source_form'] = PropTypes.oneOfType([T['io.flow.payment.v0.models.card_payment_source_form']]);
6390
+
6326
6391
  T['io.flow.payment.v0.models.merchant_of_record_payment_form'] = PropTypes.exact({
6327
6392
  discriminator: PropTypes.oneOf(['merchant_of_record_payment_form']).isRequired,
6328
6393
  method: PropTypes.string.isRequired,
@@ -6632,6 +6697,18 @@ T['io.flow.payment.v0.models.stripe_authorization_result_action_details'] = Prop
6632
6697
  T['io.flow.payment.v0.enums.authorization_result_action_type'] = PropTypes.oneOf(['native', 'redirect', 'wait']);
6633
6698
  T['io.flow.payment.v0.enums.three_d_secure_code'] = PropTypes.oneOf(['verified', 'not_verified', 'failed']);
6634
6699
 
6700
+ T['io.flow.payment.v0.models.authorization_result_action_wait'] = PropTypes.exact({
6701
+ discriminator: PropTypes.oneOf(['authorization_result_action_wait']).isRequired,
6702
+ type: T['io.flow.payment.v0.enums.authorization_result_action_type'].isRequired,
6703
+ });
6704
+
6705
+ T['io.flow.payment.v0.models.authorization_result_action_post'] = PropTypes.exact({
6706
+ discriminator: PropTypes.oneOf(['authorization_result_action_post']).isRequired,
6707
+ type: T['io.flow.payment.v0.enums.authorization_result_action_type'].isRequired,
6708
+ url: PropTypes.string.isRequired,
6709
+ parameters: PropTypes.object.isRequired,
6710
+ });
6711
+
6635
6712
  T['io.flow.payment.v0.models.apple_pay_merchant_validation_payload'] = PropTypes.exact({
6636
6713
  discriminator: PropTypes.oneOf(['apple_pay_merchant_validation_payload']).isRequired,
6637
6714
  validation_url: PropTypes.string.isRequired,
@@ -6687,6 +6764,13 @@ T['io.flow.payment.v0.unions.authorization_result_action_details'] = PropTypes.o
6687
6764
  T['io.flow.payment.v0.models.select_issuer_option_action_details'],
6688
6765
  ]);
6689
6766
 
6767
+ T['io.flow.payment.v0.models.authorization_result_action_get'] = PropTypes.exact({
6768
+ discriminator: PropTypes.oneOf(['authorization_result_action_get']).isRequired,
6769
+ type: T['io.flow.payment.v0.enums.authorization_result_action_type'].isRequired,
6770
+ url: PropTypes.string,
6771
+ details: T['io.flow.payment.v0.unions.authorization_result_action_details'],
6772
+ });
6773
+
6690
6774
  T['io.flow.export.v0.enums.item_identifier'] = PropTypes.oneOf(['item_number', 'sku']);
6691
6775
 
6692
6776
  T['io.flow.common.v0.models.included_levies'] = PropTypes.exact({
@@ -7662,6 +7746,41 @@ T['io.flow.google.pay.v0.models.encrypted_message'] = PropTypes.exact({
7662
7746
  paymentMethodDetails: T['io.flow.google.pay.v0.models.payment_method_details'].isRequired,
7663
7747
  });
7664
7748
 
7749
+ T['io.flow.fulfillment.v0.enums.ratecard_owner'] = PropTypes.oneOf(['flow', 'organization']);
7750
+
7751
+ T['io.flow.ratecard.v0.models.ratecard_summary'] = PropTypes.exact({
7752
+ id: PropTypes.string.isRequired,
7753
+ number: PropTypes.string.isRequired,
7754
+ ratecard_owner: T['io.flow.fulfillment.v0.enums.ratecard_owner'].isRequired,
7755
+ });
7756
+
7757
+ T['io.flow.ratecard.v0.models.lane_summary'] = PropTypes.exact({
7758
+ id: PropTypes.string.isRequired,
7759
+ ratecard: T['io.flow.ratecard.v0.models.ratecard_summary'].isRequired,
7760
+ });
7761
+
7762
+ T['io.flow.label.v0.models.shipping_label_ratecard_summary'] = PropTypes.exact({
7763
+ id: PropTypes.string,
7764
+ ratecard_owner: T['io.flow.fulfillment.v0.enums.ratecard_owner'].isRequired,
7765
+ rate_level_key: PropTypes.string,
7766
+ glbe_shipping_method_id: PropTypes.string,
7767
+ glbe_proposition_name: PropTypes.string,
7768
+ channel_revenue_share_percentage: PropTypes.number,
7769
+ shopify_grc_gid: PropTypes.string,
7770
+ });
7771
+
7772
+ T['io.flow.ratecard.v0.models.ratecard_service_summary'] = PropTypes.exact({
7773
+ id: PropTypes.string.isRequired,
7774
+ name: PropTypes.string.isRequired,
7775
+ carrier: T['io.flow.ratecard.v0.models.ratecard_carrier_summary'].isRequired,
7776
+ });
7777
+
7778
+ T['io.flow.common.v0.models.zone'] = PropTypes.exact({
7779
+ postals: PropTypes.arrayOf(PropTypes.string),
7780
+ provinces: PropTypes.arrayOf(PropTypes.string),
7781
+ country: PropTypes.string.isRequired,
7782
+ });
7783
+
7665
7784
  T['io.flow.fulfillment.v0.enums.item_availability_status'] = PropTypes.oneOf(['available', 'low', 'out_of_stock']);
7666
7785
 
7667
7786
  T['io.flow.fulfillment.v0.models.country_availability'] = PropTypes.exact({
@@ -7730,6 +7849,10 @@ T['io.flow.merchant.onboarding.v0.models.shop'] = PropTypes.exact({
7730
7849
  id: PropTypes.string.isRequired,
7731
7850
  });
7732
7851
 
7852
+ T['io.flow.ratecard.v0.models.ratecard_reference'] = PropTypes.exact({
7853
+ id: PropTypes.string.isRequired,
7854
+ });
7855
+
7733
7856
  T['io.flow.merchant.onboarding.v0.models.monthly_average'] = PropTypes.exact({
7734
7857
  volume: T['io.flow.merchant.onboarding.v0.models.monthly_average_volume'],
7735
7858
  number_transactions: PropTypes.number,
@@ -7783,6 +7906,23 @@ T['io.flow.merchant.onboarding.v0.unions.merchant_application_put_form'] = PropT
7783
7906
  T['io.flow.merchant.onboarding.v0.models.shopify_merchant_application_put_form'],
7784
7907
  ]);
7785
7908
 
7909
+ T['io.flow.experience.v0.enums.order_error_code'] = PropTypes.oneOf([
7910
+ 'generic_error',
7911
+ 'order_item_not_available',
7912
+ 'order_identifier_error',
7913
+ 'authorization_invalid',
7914
+ 'domestic_shipping_unavailable',
7915
+ 'shipping_unavailable',
7916
+ 'value_threshold_exceeded',
7917
+ 'invalid_currency',
7918
+ 'invalid_country',
7919
+ 'invalid_region',
7920
+ 'invalid_language',
7921
+ 'item_out_of_stock',
7922
+ 'gift_card_not_accepted',
7923
+ 'total_changed',
7924
+ ]);
7925
+
7786
7926
  T['io.flow.query.builder.v0.unions.available_filter'] = PropTypes.oneOfType([
7787
7927
  T['io.flow.query.builder.v0.models.available_filter_structured'],
7788
7928
  T['io.flow.query.builder.v0.models.available_filter_unstructured'],
@@ -8340,14 +8480,6 @@ T['io.flow.internal.v0.models.order_combined_shipment_deleted'] = PropTypes.exac
8340
8480
  id: PropTypes.string.isRequired,
8341
8481
  });
8342
8482
 
8343
- T['io.flow.internal.v0.models.optin_prompt_deleted'] = PropTypes.exact({
8344
- discriminator: PropTypes.oneOf(['optin_prompt_deleted']).isRequired,
8345
- event_id: PropTypes.string.isRequired,
8346
- timestamp: PropTypes.string.isRequired,
8347
- id: PropTypes.string.isRequired,
8348
- organization: PropTypes.string.isRequired,
8349
- });
8350
-
8351
8483
  T['io.flow.internal.v0.models.localized_item_prices_export_request'] = PropTypes.exact({
8352
8484
  discriminator: PropTypes.oneOf(['localized_item_prices_export_request']).isRequired,
8353
8485
  event_id: PropTypes.string.isRequired,
@@ -8997,8 +9129,8 @@ T['io.flow.internal.v0.models.adyen_dispute_deleted'] = PropTypes.exact({
8997
9129
  id: PropTypes.string.isRequired,
8998
9130
  });
8999
9131
 
9000
- T['io.flow.internal.v0.models.final_estimate_deleted'] = PropTypes.exact({
9001
- discriminator: PropTypes.oneOf(['final_estimate_deleted']).isRequired,
9132
+ T['io.flow.internal.v0.models.shipping_estimate_deleted'] = PropTypes.exact({
9133
+ discriminator: PropTypes.oneOf(['shipping_estimate_deleted']).isRequired,
9002
9134
  event_id: PropTypes.string.isRequired,
9003
9135
  timestamp: PropTypes.string.isRequired,
9004
9136
  organization: PropTypes.string.isRequired,
@@ -9086,6 +9218,73 @@ T['io.flow.payment.v0.models.virtual_card_reference'] = PropTypes.exact({
9086
9218
  id: PropTypes.string.isRequired,
9087
9219
  });
9088
9220
 
9221
+ T['io.flow.reference.v0.enums.postal_type'] = PropTypes.oneOf(['eircode', 'pin', 'postal', 'zip']);
9222
+
9223
+ T['io.flow.reference.v0.enums.province_type'] = PropTypes.oneOf([
9224
+ 'area',
9225
+ 'city',
9226
+ 'county',
9227
+ 'department',
9228
+ 'dependency',
9229
+ 'district',
9230
+ 'do_si',
9231
+ 'emirate',
9232
+ 'entity',
9233
+ 'island',
9234
+ 'municipality',
9235
+ 'oblast',
9236
+ 'outlying_area',
9237
+ 'parish',
9238
+ 'prefecture',
9239
+ 'province',
9240
+ 'state',
9241
+ 'territory',
9242
+ 'other',
9243
+ ]);
9244
+
9245
+ T['io.flow.reference.v0.models.province'] = PropTypes.exact({
9246
+ id: PropTypes.string.isRequired,
9247
+ iso_3166_2: PropTypes.string.isRequired,
9248
+ name: PropTypes.string.isRequired,
9249
+ country: PropTypes.string.isRequired,
9250
+ province_type: T['io.flow.reference.v0.enums.province_type'].isRequired,
9251
+ translations: PropTypes.arrayOf(T['io.flow.reference.v0.models.localized_translation']),
9252
+ });
9253
+
9254
+ T['io.flow.experience.v0.models.address_configuration_format'] = PropTypes.exact({
9255
+ placements: PropTypes.arrayOf(T['io.flow.experience.v0.models.address_configuration_field_placement']).isRequired,
9256
+ });
9257
+
9258
+ T['io.flow.experience.v0.models.address_configuration_province'] = PropTypes.exact({
9259
+ value: PropTypes.string.isRequired,
9260
+ name: PropTypes.string.isRequired,
9261
+
9262
+ translations: PropTypes.arrayOf(
9263
+ T['io.flow.experience.v0.models.address_configuration_province_translation'],
9264
+ ),
9265
+ });
9266
+
9267
+ T['io.flow.experience.v0.models.address_field_validation'] = PropTypes.exact({
9268
+ first_name: PropTypes.arrayOf(T['io.flow.field.validation.v0.unions.field_validation_rule']).isRequired,
9269
+ last_name: PropTypes.arrayOf(T['io.flow.field.validation.v0.unions.field_validation_rule']).isRequired,
9270
+ street_1: PropTypes.arrayOf(T['io.flow.field.validation.v0.unions.field_validation_rule']).isRequired,
9271
+ street_2: PropTypes.arrayOf(T['io.flow.field.validation.v0.unions.field_validation_rule']).isRequired,
9272
+ city: PropTypes.arrayOf(T['io.flow.field.validation.v0.unions.field_validation_rule']).isRequired,
9273
+ province: PropTypes.arrayOf(T['io.flow.field.validation.v0.unions.field_validation_rule']).isRequired,
9274
+ postal: PropTypes.arrayOf(T['io.flow.field.validation.v0.unions.field_validation_rule']).isRequired,
9275
+ phone: PropTypes.arrayOf(T['io.flow.field.validation.v0.unions.field_validation_rule']).isRequired,
9276
+ vat_registration_number: PropTypes.arrayOf(T['io.flow.field.validation.v0.unions.field_validation_rule']).isRequired,
9277
+ });
9278
+
9279
+ T['io.flow.experience.v0.models.address_configuration'] = PropTypes.exact({
9280
+ country: PropTypes.string.isRequired,
9281
+ field_validation: T['io.flow.experience.v0.models.address_field_validation'].isRequired,
9282
+ provinces: PropTypes.arrayOf(T['io.flow.experience.v0.models.address_configuration_province']).isRequired,
9283
+ formats: PropTypes.arrayOf(T['io.flow.experience.v0.models.address_configuration_format']),
9284
+ province_type: T['io.flow.reference.v0.enums.province_type'],
9285
+ postal_type: T['io.flow.reference.v0.enums.postal_type'],
9286
+ });
9287
+
9089
9288
  T['io.flow.internal.v0.models.checkout_platform_data'] = PropTypes.exact({
9090
9289
  order_number: PropTypes.string,
9091
9290
  });
@@ -10026,6 +10225,7 @@ T['io.flow.internal.v0.unions.shopify_monitoring_order_monitor_type'] = PropType
10026
10225
  T['io.flow.internal.v0.models.shopify_monitoring_fulfillment_missing_details'],
10027
10226
  ]);
10028
10227
 
10228
+ T['io.flow.internal.v0.enums.shopify_plan_type'] = PropTypes.oneOf(['standard', 'shopify_plus']);
10029
10229
  T['io.flow.shopify.markets.v0.enums.shopify_webhook_format'] = PropTypes.oneOf(['json', 'xml']);
10030
10230
 
10031
10231
  T['io.flow.shopify.markets.v0.enums.shopify_webhook_topic'] = PropTypes.oneOf([
@@ -10423,6 +10623,9 @@ T['io.flow.internal.v0.models.shopify_check_inventory_error'] = PropTypes.exact(
10423
10623
  numbers: PropTypes.arrayOf(PropTypes.string),
10424
10624
  });
10425
10625
 
10626
+ T['io.flow.label.v0.enums.estimate_origin'] = PropTypes.oneOf(['Shopify', 'GlobalE', 'Aftership', 'Carrier']);
10627
+ T['io.flow.label.v0.enums.estimate_type'] = PropTypes.oneOf(['Estimated', 'Final']);
10628
+
10426
10629
  T['io.flow.organization.onboarding.state.v0.enums.onboarding_blocked_reason'] = PropTypes.oneOf([
10427
10630
  'street_address_is_blank_3pl',
10428
10631
  'street_address_is_po_box_3pl',
@@ -11049,88 +11252,173 @@ T['io.flow.internal.v0.models.ratecard_lanes_import_request'] = PropTypes.exact(
11049
11252
  data: T['io.flow.ratecard.v0.models.ratecard_lanes_import_request_data'].isRequired,
11050
11253
  });
11051
11254
 
11052
- T['io.flow.common.v0.enums.rounding_method'] = PropTypes.oneOf(['up', 'down', 'nearest']);
11053
- T['io.flow.common.v0.enums.rounding_type'] = PropTypes.oneOf(['pattern', 'multiple']);
11054
-
11055
- T['io.flow.ratecard.v0.models.ratecard_carrier_summary'] = PropTypes.exact({
11056
- id: PropTypes.string.isRequired,
11057
- name: PropTypes.string.isRequired,
11255
+ T['io.flow.ratecard.v0.models.fuel_surcharge_service_fee'] = PropTypes.exact({
11256
+ discriminator: PropTypes.oneOf(['fuel_surcharge_service_fee']).isRequired,
11257
+ percent: PropTypes.number.isRequired,
11058
11258
  });
11059
11259
 
11060
- T['io.flow.fulfillment.v0.enums.ratecard_owner'] = PropTypes.oneOf(['flow', 'organization']);
11061
-
11062
- T['io.flow.ratecard.v0.models.ratecard_summary'] = PropTypes.exact({
11063
- id: PropTypes.string.isRequired,
11064
- number: PropTypes.string.isRequired,
11065
- ratecard_owner: T['io.flow.fulfillment.v0.enums.ratecard_owner'].isRequired,
11260
+ T['io.flow.ratecard.v0.models.return_package_ratecard_fee'] = PropTypes.exact({
11261
+ discriminator: PropTypes.oneOf(['return_package_ratecard_fee']).isRequired,
11262
+ amount: PropTypes.number.isRequired,
11066
11263
  });
11067
11264
 
11068
- T['io.flow.ratecard.v0.models.lane_summary'] = PropTypes.exact({
11069
- id: PropTypes.string.isRequired,
11070
- ratecard: T['io.flow.ratecard.v0.models.ratecard_summary'].isRequired,
11265
+ T['io.flow.ratecard.v0.models.ddp_ratecard_fee'] = PropTypes.exact({
11266
+ discriminator: PropTypes.oneOf(['ddp_ratecard_fee']).isRequired,
11267
+ amount: PropTypes.number.isRequired,
11071
11268
  });
11072
11269
 
11073
- T['io.flow.label.v0.models.shipping_label_ratecard_summary'] = PropTypes.exact({
11074
- id: PropTypes.string,
11075
- ratecard_owner: T['io.flow.fulfillment.v0.enums.ratecard_owner'].isRequired,
11076
- rate_level_key: PropTypes.string,
11077
- glbe_shipping_method_id: PropTypes.string,
11078
- glbe_proposition_name: PropTypes.string,
11079
- channel_revenue_share_percentage: PropTypes.number,
11080
- shopify_grc_gid: PropTypes.string,
11270
+ T['io.flow.internal.v0.models.rate_source_composition_summary'] = PropTypes.exact({
11271
+ rate_name: PropTypes.string.isRequired,
11272
+ percentage_composition: PropTypes.number.isRequired,
11081
11273
  });
11082
11274
 
11083
- T['io.flow.ratecard.v0.models.ratecard_reference'] = PropTypes.exact({
11084
- id: PropTypes.string.isRequired,
11275
+ T['io.flow.reference.v0.models.country'] = PropTypes.exact({
11276
+ name: PropTypes.string.isRequired,
11277
+ iso_3166_2: PropTypes.string.isRequired,
11278
+ iso_3166_3: PropTypes.string.isRequired,
11279
+ languages: PropTypes.arrayOf(PropTypes.string).isRequired,
11280
+ measurement_system: PropTypes.string.isRequired,
11281
+ default_currency: PropTypes.string,
11282
+ default_language: PropTypes.string,
11283
+ timezones: PropTypes.arrayOf(PropTypes.string).isRequired,
11284
+ default_delivered_duty: PropTypes.string,
11085
11285
  });
11086
11286
 
11087
- T['io.flow.common.v0.models.rounding'] = PropTypes.exact({
11088
- type: T['io.flow.common.v0.enums.rounding_type'].isRequired,
11089
- method: T['io.flow.common.v0.enums.rounding_method'].isRequired,
11090
- value: PropTypes.number.isRequired,
11287
+ T['io.flow.session.v0.models.session_geo'] = PropTypes.exact({
11288
+ country: T['io.flow.reference.v0.models.country'].isRequired,
11289
+ currency: T['io.flow.reference.v0.models.currency'].isRequired,
11290
+ language: T['io.flow.reference.v0.models.language'].isRequired,
11291
+ locale: T['io.flow.reference.v0.models.locale'].isRequired,
11091
11292
  });
11092
11293
 
11093
- T['io.flow.price.v0.models.pricing'] = PropTypes.exact({
11094
- vat: T['io.flow.price.v0.enums.pricing_levy_setting'].isRequired,
11095
- duty: T['io.flow.price.v0.enums.pricing_levy_setting'].isRequired,
11096
- rounding: T['io.flow.common.v0.models.rounding'],
11294
+ T['io.flow.session.v0.models.local_session'] = PropTypes.exact({
11295
+ country: T['io.flow.reference.v0.models.country'].isRequired,
11296
+ currency: T['io.flow.reference.v0.models.currency'].isRequired,
11297
+ language: T['io.flow.reference.v0.models.language'].isRequired,
11298
+ locale: T['io.flow.reference.v0.models.locale'].isRequired,
11299
+ experience: T['io.flow.experience.v0.models.experience_geo'].isRequired,
11097
11300
  });
11098
11301
 
11099
- T['io.flow.ratecard.v0.models.ratecard_service_summary'] = PropTypes.exact({
11100
- id: PropTypes.string.isRequired,
11101
- name: PropTypes.string.isRequired,
11102
- carrier: T['io.flow.ratecard.v0.models.ratecard_carrier_summary'].isRequired,
11302
+ T['io.flow.shopify.merchant.config.v0.models.country_of_origin'] = PropTypes.exact({
11303
+ country: T['io.flow.reference.v0.models.country'].isRequired,
11103
11304
  });
11104
11305
 
11105
- T['io.flow.ratecard.v0.models.shipment_window'] = PropTypes.exact({
11106
- from: PropTypes.number.isRequired,
11107
- to: PropTypes.number.isRequired,
11306
+ T['io.flow.internal.v0.models.resync_fallback_rates'] = PropTypes.exact({
11307
+ destinations: PropTypes.arrayOf(T['io.flow.reference.v0.models.country']).isRequired,
11108
11308
  });
11109
11309
 
11110
- T['io.flow.common.v0.models.zone'] = PropTypes.exact({
11111
- postals: PropTypes.arrayOf(PropTypes.string),
11112
- provinces: PropTypes.arrayOf(PropTypes.string),
11113
- country: PropTypes.string.isRequired,
11310
+ T['io.flow.internal.v0.models.resync_by_hs6_origin'] = PropTypes.exact({
11311
+ hs6_code: PropTypes.string.isRequired,
11312
+ origin: T['io.flow.reference.v0.models.country'].isRequired,
11114
11313
  });
11115
11314
 
11116
- T['io.flow.ratecard.v0.models.fuel_surcharge_service_fee'] = PropTypes.exact({
11117
- discriminator: PropTypes.oneOf(['fuel_surcharge_service_fee']).isRequired,
11118
- percent: PropTypes.number.isRequired,
11315
+ T['io.flow.internal.v0.models.resync_by_hs6_destinations'] = PropTypes.exact({
11316
+ hs6_code: PropTypes.string.isRequired,
11317
+ destinations: PropTypes.arrayOf(T['io.flow.reference.v0.models.country']).isRequired,
11119
11318
  });
11120
11319
 
11121
- T['io.flow.ratecard.v0.models.return_package_ratecard_fee'] = PropTypes.exact({
11122
- discriminator: PropTypes.oneOf(['return_package_ratecard_fee']).isRequired,
11123
- amount: PropTypes.number.isRequired,
11320
+ T['io.flow.internal.v0.models.resync_by_destinations'] = PropTypes.exact({
11321
+ destinations: PropTypes.arrayOf(T['io.flow.reference.v0.models.country']).isRequired,
11124
11322
  });
11125
11323
 
11126
- T['io.flow.ratecard.v0.models.ddp_ratecard_fee'] = PropTypes.exact({
11127
- discriminator: PropTypes.oneOf(['ddp_ratecard_fee']).isRequired,
11128
- amount: PropTypes.number.isRequired,
11324
+ T['io.flow.internal.v0.models.rates_names_summary'] = PropTypes.exact({
11325
+ origin: T['io.flow.reference.v0.models.country'].isRequired,
11326
+ destination: T['io.flow.reference.v0.models.country'].isRequired,
11327
+ summaries: PropTypes.arrayOf(T['io.flow.internal.v0.models.rate_name_summary']).isRequired,
11129
11328
  });
11130
11329
 
11131
- T['io.flow.internal.v0.models.rate_source_composition_summary'] = PropTypes.exact({
11132
- rate_name: PropTypes.string.isRequired,
11133
- percentage_composition: PropTypes.number.isRequired,
11330
+ T['io.flow.internal.v0.models.rates_changed'] = PropTypes.exact({
11331
+ event_id: PropTypes.string.isRequired,
11332
+ timestamp: PropTypes.string.isRequired,
11333
+ hs6: PropTypes.string.isRequired,
11334
+ origin: T['io.flow.reference.v0.models.country'].isRequired,
11335
+ destination: T['io.flow.reference.v0.models.country'].isRequired,
11336
+ });
11337
+
11338
+ T['io.flow.internal.v0.models.rate_source_summary'] = PropTypes.exact({
11339
+ discriminator: PropTypes.oneOf(['rate-source']).isRequired,
11340
+ key: PropTypes.string.isRequired,
11341
+ destination: T['io.flow.reference.v0.models.country'].isRequired,
11342
+ rate_source_composition_summaries: PropTypes.arrayOf(T['io.flow.internal.v0.models.rate_source_composition_summary']).isRequired,
11343
+ });
11344
+
11345
+ T['io.flow.internal.v0.models.rate_source_summary_upserted'] = PropTypes.exact({
11346
+ discriminator: PropTypes.oneOf(['rate_source_summary_upserted']).isRequired,
11347
+ event_id: PropTypes.string.isRequired,
11348
+ timestamp: PropTypes.string.isRequired,
11349
+ rate_source_summary: T['io.flow.internal.v0.models.rate_source_summary'].isRequired,
11350
+ });
11351
+
11352
+ T['io.flow.internal.v0.models.rate_source_summary_deleted'] = PropTypes.exact({
11353
+ discriminator: PropTypes.oneOf(['rate_source_summary_deleted']).isRequired,
11354
+ event_id: PropTypes.string.isRequired,
11355
+ timestamp: PropTypes.string.isRequired,
11356
+ rate_source_summary: T['io.flow.internal.v0.models.rate_source_summary'].isRequired,
11357
+ });
11358
+
11359
+ T['io.flow.internal.v0.models.rate_destination_freshness_summary'] = PropTypes.exact({
11360
+ destination: T['io.flow.reference.v0.models.country'].isRequired,
11361
+ percentage_updated: PropTypes.number.isRequired,
11362
+ });
11363
+
11364
+ T['io.flow.internal.v0.models.rate_freshness_summary'] = PropTypes.exact({
11365
+ discriminator: PropTypes.oneOf(['rate-freshness']).isRequired,
11366
+ key: PropTypes.string.isRequired,
11367
+ updated_since: PropTypes.string.isRequired,
11368
+ destination_freshness_summaries: PropTypes.arrayOf(T['io.flow.internal.v0.models.rate_destination_freshness_summary']).isRequired,
11369
+ });
11370
+
11371
+ T['io.flow.internal.v0.unions.internal_harmonization_statistic'] = PropTypes.oneOfType([
11372
+ T['io.flow.internal.v0.models.time_to_classify'],
11373
+ T['io.flow.internal.v0.models.time_to_classify_aggregated'],
11374
+ T['io.flow.internal.v0.models.rate_source_summary'],
11375
+ T['io.flow.internal.v0.models.rate_freshness_summary'],
11376
+ ]);
11377
+
11378
+ T['io.flow.internal.v0.models.rate_freshness_summary_upserted'] = PropTypes.exact({
11379
+ discriminator: PropTypes.oneOf(['rate_freshness_summary_upserted']).isRequired,
11380
+ event_id: PropTypes.string.isRequired,
11381
+ timestamp: PropTypes.string.isRequired,
11382
+ rate_freshness_summary: T['io.flow.internal.v0.models.rate_freshness_summary'].isRequired,
11383
+ });
11384
+
11385
+ T['io.flow.internal.v0.models.rate_freshness_summary_deleted'] = PropTypes.exact({
11386
+ discriminator: PropTypes.oneOf(['rate_freshness_summary_deleted']).isRequired,
11387
+ event_id: PropTypes.string.isRequired,
11388
+ timestamp: PropTypes.string.isRequired,
11389
+ rate_freshness_summary: T['io.flow.internal.v0.models.rate_freshness_summary'].isRequired,
11390
+ });
11391
+
11392
+ T['io.flow.internal.v0.models.currency_internal_rate'] = PropTypes.exact({
11393
+ id: PropTypes.string.isRequired,
11394
+ organization_id: PropTypes.string.isRequired,
11395
+ base: PropTypes.string.isRequired,
11396
+ target: PropTypes.string.isRequired,
11397
+ effective_at: PropTypes.string.isRequired,
11398
+ spot_rate: PropTypes.number.isRequired,
11399
+ flow_margin: PropTypes.number.isRequired,
11400
+ flow_rate: PropTypes.number.isRequired,
11401
+ organization_margin: PropTypes.number.isRequired,
11402
+ organization_rate: PropTypes.number.isRequired,
11403
+ rate_lock_unit: PropTypes.string.isRequired,
11404
+ rate_lock_value: PropTypes.number.isRequired,
11405
+ created_at: PropTypes.string.isRequired,
11406
+ updated_at: PropTypes.string.isRequired,
11407
+ updated_by_user_id: PropTypes.string.isRequired,
11408
+ });
11409
+
11410
+ T['io.flow.internal.v0.models.rate_upserted_v2'] = PropTypes.exact({
11411
+ discriminator: PropTypes.oneOf(['rate_upserted_v2']).isRequired,
11412
+ event_id: PropTypes.string.isRequired,
11413
+ timestamp: PropTypes.string.isRequired,
11414
+ rate: T['io.flow.internal.v0.models.currency_internal_rate'].isRequired,
11415
+ });
11416
+
11417
+ T['io.flow.internal.v0.models.rate_deleted_v2'] = PropTypes.exact({
11418
+ discriminator: PropTypes.oneOf(['rate_deleted_v2']).isRequired,
11419
+ event_id: PropTypes.string.isRequired,
11420
+ timestamp: PropTypes.string.isRequired,
11421
+ rate: T['io.flow.internal.v0.models.currency_internal_rate'].isRequired,
11134
11422
  });
11135
11423
 
11136
11424
  T['io.flow.internal.v0.enums.duty_selection_rule'] = PropTypes.oneOf([
@@ -11216,49 +11504,6 @@ T['io.flow.internal.v0.models.classified_product'] = PropTypes.exact({
11216
11504
  classification_model_id: PropTypes.string.isRequired,
11217
11505
  });
11218
11506
 
11219
- T['io.flow.internal.v0.models.currency_internal_rate'] = PropTypes.exact({
11220
- id: PropTypes.string.isRequired,
11221
- organization_id: PropTypes.string.isRequired,
11222
- base: PropTypes.string.isRequired,
11223
- target: PropTypes.string.isRequired,
11224
- effective_at: PropTypes.string.isRequired,
11225
- spot_rate: PropTypes.number.isRequired,
11226
- flow_margin: PropTypes.number.isRequired,
11227
- flow_rate: PropTypes.number.isRequired,
11228
- organization_margin: PropTypes.number.isRequired,
11229
- organization_rate: PropTypes.number.isRequired,
11230
- rate_lock_unit: PropTypes.string.isRequired,
11231
- rate_lock_value: PropTypes.number.isRequired,
11232
- created_at: PropTypes.string.isRequired,
11233
- updated_at: PropTypes.string.isRequired,
11234
- updated_by_user_id: PropTypes.string.isRequired,
11235
- });
11236
-
11237
- T['io.flow.internal.v0.models.rate_upserted_v2'] = PropTypes.exact({
11238
- discriminator: PropTypes.oneOf(['rate_upserted_v2']).isRequired,
11239
- event_id: PropTypes.string.isRequired,
11240
- timestamp: PropTypes.string.isRequired,
11241
- rate: T['io.flow.internal.v0.models.currency_internal_rate'].isRequired,
11242
- });
11243
-
11244
- T['io.flow.internal.v0.models.rate_deleted_v2'] = PropTypes.exact({
11245
- discriminator: PropTypes.oneOf(['rate_deleted_v2']).isRequired,
11246
- event_id: PropTypes.string.isRequired,
11247
- timestamp: PropTypes.string.isRequired,
11248
- rate: T['io.flow.internal.v0.models.currency_internal_rate'].isRequired,
11249
- });
11250
-
11251
- T['io.flow.internal.v0.enums.quote_request_type'] = PropTypes.oneOf(['generate', 'delete', 'update_currency_rate', 'update_country']);
11252
-
11253
- T['io.flow.fulfillment.v0.models.delivery_option_reference'] = PropTypes.exact({
11254
- id: PropTypes.string.isRequired,
11255
- });
11256
-
11257
- T['io.flow.internal.v0.models.fulfillment_internal_experience_reference'] = PropTypes.exact({
11258
- id: PropTypes.string.isRequired,
11259
- key: PropTypes.string.isRequired,
11260
- });
11261
-
11262
11507
  T['io.flow.internal.v0.models.platform_fee_percentage_tier'] = PropTypes.exact({
11263
11508
  minimum_amount_base: PropTypes.number.isRequired,
11264
11509
  rate: PropTypes.number.isRequired,
@@ -11853,42 +12098,105 @@ T['io.flow.internal.v0.models.order_tax_and_duty_inclusivity_setting_upserted']
11853
12098
  order_tax_and_duty_inclusivity_setting: T['io.flow.internal.v0.models.order_tax_and_duty_inclusivity_setting'].isRequired,
11854
12099
  });
11855
12100
 
11856
- T['io.flow.return.v0.models.return_line_item'] = PropTypes.exact({
11857
- item_number: PropTypes.string.isRequired,
11858
- order_number: PropTypes.string,
11859
- quantity: PropTypes.number.isRequired,
11860
- reason: T['io.flow.return.v0.models.return_reason'],
11861
- notes: PropTypes.string,
11862
- attributes: PropTypes.objectOf(PropTypes.string),
11863
- });
11864
-
11865
- T['io.flow.experience.v0.enums.order_status'] = PropTypes.oneOf(['open', 'submitted']);
11866
-
11867
- T['io.flow.export.v0.models.order_export_type'] = PropTypes.exact({
11868
- discriminator: PropTypes.oneOf(['order_export_type']).isRequired,
11869
- numbers: PropTypes.arrayOf(PropTypes.string),
11870
- min_hours_since_submitted_at: PropTypes.number,
11871
- submitted_on_or_before: PropTypes.string,
11872
- submitted_on_or_after: PropTypes.string,
11873
- status: T['io.flow.experience.v0.enums.order_status'],
11874
- has_tracking_label: PropTypes.bool,
11875
- sort: PropTypes.string,
12101
+ T['io.flow.payment.v0.models.online_payment_authorization_form'] = PropTypes.exact({
12102
+ discriminator: PropTypes.oneOf(['online_payment_authorization_form']).isRequired,
12103
+ payment_id: PropTypes.string.isRequired,
12104
+ key: PropTypes.string,
11876
12105
  });
11877
12106
 
11878
- T['io.flow.internal.v0.models.order_combined_shipment'] = PropTypes.exact({
11879
- id: PropTypes.string.isRequired,
11880
- label_id: PropTypes.string.isRequired,
11881
- carrier_id: PropTypes.string.isRequired,
11882
- service_id: PropTypes.string.isRequired,
12107
+ T['io.flow.payment.v0.models.card_payment_source_authorization_form'] = PropTypes.exact({
12108
+ discriminator: PropTypes.oneOf(['card_payment_source_authorization_form']).isRequired,
12109
+ key: PropTypes.string,
12110
+ card_payment_source_id: PropTypes.string.isRequired,
11883
12111
  order_number: PropTypes.string.isRequired,
11884
- provided_carrier_name: PropTypes.string,
11885
- carrier_tracking_number: PropTypes.string.isRequired,
12112
+ amount: PropTypes.number.isRequired,
12113
+ currency: PropTypes.string.isRequired,
12114
+ browser_info: T['io.flow.payment.v0.models.browser_info'],
12115
+ inline_action_configuration: T['io.flow.payment.v0.unions.inline_action_configuration'],
11886
12116
  });
11887
12117
 
11888
- T['io.flow.internal.v0.models.order_combined_shipment_upserted'] = PropTypes.exact({
11889
- discriminator: PropTypes.oneOf(['order_combined_shipment_upserted']).isRequired,
11890
- event_id: PropTypes.string.isRequired,
11891
- timestamp: PropTypes.string.isRequired,
12118
+ T['io.flow.payment.v0.models.redirect_authorization_form'] = PropTypes.exact({
12119
+ discriminator: PropTypes.oneOf(['redirect_authorization_form']).isRequired,
12120
+ method: PropTypes.string.isRequired,
12121
+ issuer: T['io.flow.payment.v0.models.issuer_reference'],
12122
+ order_number: PropTypes.string.isRequired,
12123
+ amount: PropTypes.number.isRequired,
12124
+ currency: PropTypes.string.isRequired,
12125
+ redirect_urls: T['io.flow.payment.v0.models.post_payment_redirect_urls'].isRequired,
12126
+ key: PropTypes.string,
12127
+ attributes: PropTypes.objectOf(PropTypes.string),
12128
+ ip: PropTypes.string,
12129
+ });
12130
+
12131
+ T['io.flow.payment.v0.models.paypal_authorization_form'] = PropTypes.exact({
12132
+ discriminator: PropTypes.oneOf(['paypal_authorization_form']).isRequired,
12133
+ paypal_payment_id: PropTypes.string.isRequired,
12134
+ paypal_payer_id: PropTypes.string.isRequired,
12135
+ key: PropTypes.string,
12136
+ attributes: PropTypes.objectOf(PropTypes.string),
12137
+ ip: PropTypes.string,
12138
+ });
12139
+
12140
+ T['io.flow.payment.v0.models.merchant_of_record_authorization_form'] = PropTypes.exact({
12141
+ discriminator: PropTypes.oneOf(['merchant_of_record_authorization_form']).isRequired,
12142
+ token: PropTypes.string.isRequired,
12143
+ order_number: PropTypes.string.isRequired,
12144
+ amount: PropTypes.number,
12145
+ currency: PropTypes.string,
12146
+ key: PropTypes.string,
12147
+ cvv: PropTypes.string,
12148
+ attributes: PropTypes.objectOf(PropTypes.string),
12149
+ ip: PropTypes.string,
12150
+ options: PropTypes.arrayOf(T['io.flow.payment.v0.enums.authorization_option']),
12151
+ redirect_urls: T['io.flow.payment.v0.models.post_payment_redirect_urls'],
12152
+ browser_info: T['io.flow.payment.v0.models.browser_info'],
12153
+ inline_action_configuration: T['io.flow.payment.v0.unions.inline_action_configuration'],
12154
+ });
12155
+
12156
+ T['io.flow.payment.v0.models.authorization_copy_form'] = PropTypes.exact({
12157
+ discriminator: PropTypes.oneOf(['authorization_copy_form']).isRequired,
12158
+ source_authorization_key: PropTypes.string.isRequired,
12159
+ amount: PropTypes.number.isRequired,
12160
+ currency: PropTypes.string.isRequired,
12161
+ attributes: PropTypes.objectOf(PropTypes.string),
12162
+ });
12163
+
12164
+ T['io.flow.return.v0.models.return_line_item'] = PropTypes.exact({
12165
+ item_number: PropTypes.string.isRequired,
12166
+ order_number: PropTypes.string,
12167
+ quantity: PropTypes.number.isRequired,
12168
+ reason: T['io.flow.return.v0.models.return_reason'],
12169
+ notes: PropTypes.string,
12170
+ attributes: PropTypes.objectOf(PropTypes.string),
12171
+ });
12172
+
12173
+ T['io.flow.experience.v0.enums.order_status'] = PropTypes.oneOf(['open', 'submitted']);
12174
+
12175
+ T['io.flow.export.v0.models.order_export_type'] = PropTypes.exact({
12176
+ discriminator: PropTypes.oneOf(['order_export_type']).isRequired,
12177
+ numbers: PropTypes.arrayOf(PropTypes.string),
12178
+ min_hours_since_submitted_at: PropTypes.number,
12179
+ submitted_on_or_before: PropTypes.string,
12180
+ submitted_on_or_after: PropTypes.string,
12181
+ status: T['io.flow.experience.v0.enums.order_status'],
12182
+ has_tracking_label: PropTypes.bool,
12183
+ sort: PropTypes.string,
12184
+ });
12185
+
12186
+ T['io.flow.internal.v0.models.order_combined_shipment'] = PropTypes.exact({
12187
+ id: PropTypes.string.isRequired,
12188
+ label_id: PropTypes.string.isRequired,
12189
+ carrier_id: PropTypes.string.isRequired,
12190
+ service_id: PropTypes.string.isRequired,
12191
+ order_number: PropTypes.string.isRequired,
12192
+ provided_carrier_name: PropTypes.string,
12193
+ carrier_tracking_number: PropTypes.string.isRequired,
12194
+ });
12195
+
12196
+ T['io.flow.internal.v0.models.order_combined_shipment_upserted'] = PropTypes.exact({
12197
+ discriminator: PropTypes.oneOf(['order_combined_shipment_upserted']).isRequired,
12198
+ event_id: PropTypes.string.isRequired,
12199
+ timestamp: PropTypes.string.isRequired,
11892
12200
  organization: PropTypes.string.isRequired,
11893
12201
  order_combined_shipment: T['io.flow.internal.v0.models.order_combined_shipment'].isRequired,
11894
12202
  });
@@ -11999,6 +12307,8 @@ T['io.flow.internal.v0.models.localizable_content_reference'] = PropTypes.exact(
11999
12307
  content_id: PropTypes.string.isRequired,
12000
12308
  });
12001
12309
 
12310
+ T['io.flow.internal.v0.unions.optin_prompt_display'] = PropTypes.oneOfType([T['io.flow.internal.v0.models.optin_prompt_checkout_display']]);
12311
+ T['io.flow.internal.v0.enums.prompt_options'] = PropTypes.oneOf(['notice_only', 'require_consent', 'consent_by_default']);
12002
12312
  T['io.flow.internal.v0.enums.prompt_target'] = PropTypes.oneOf(['browse', 'checkout']);
12003
12313
  T['io.flow.common.v0.enums.user_status'] = PropTypes.oneOf(['pending', 'active', 'inactive']);
12004
12314
 
@@ -12757,6 +13067,15 @@ T['io.flow.internal.v0.models.optin_attribute_form'] = PropTypes.exact({
12757
13067
  status: T['io.flow.internal.v0.enums.content_status'].isRequired,
12758
13068
  });
12759
13069
 
13070
+ T['io.flow.internal.v0.models.optin_attribute'] = PropTypes.exact({
13071
+ name: PropTypes.string.isRequired,
13072
+ optin_attribute_key: PropTypes.string.isRequired,
13073
+ target: T['io.flow.internal.v0.enums.prompt_target'].isRequired,
13074
+ status: T['io.flow.internal.v0.enums.content_status'].isRequired,
13075
+ created_at: PropTypes.string.isRequired,
13076
+ updated_at: PropTypes.string.isRequired,
13077
+ });
13078
+
12760
13079
  T['io.flow.internal.v0.models.localization_upserted'] = PropTypes.exact({
12761
13080
  discriminator: PropTypes.oneOf(['localization_upserted']).isRequired,
12762
13081
  event_id: PropTypes.string.isRequired,
@@ -13278,13 +13597,6 @@ T['io.flow.internal.v0.models.prediction'] = PropTypes.exact({
13278
13597
  item: PropTypes.string.isRequired,
13279
13598
  });
13280
13599
 
13281
- T['io.flow.internal.v0.models.labels_prediction'] = PropTypes.exact({
13282
- main_material: PropTypes.string.isRequired,
13283
- gender: PropTypes.string.isRequired,
13284
- construction: PropTypes.string.isRequired,
13285
- product_type: PropTypes.string.isRequired,
13286
- });
13287
-
13288
13600
  T['io.flow.internal.v0.enums.suggestion_action'] = PropTypes.oneOf(['accept', 'validate', 'review']);
13289
13601
 
13290
13602
  T['io.flow.internal.v0.models.item_classification_v2'] = PropTypes.exact({
@@ -13295,18 +13607,6 @@ T['io.flow.internal.v0.models.item_classification_v2'] = PropTypes.exact({
13295
13607
  model_id: PropTypes.string.isRequired,
13296
13608
  });
13297
13609
 
13298
- T['io.flow.internal.v0.models.item_classification_created'] = PropTypes.exact({
13299
- discriminator: PropTypes.oneOf(['item_classification_created']).isRequired,
13300
- event_id: PropTypes.string.isRequired,
13301
- timestamp: PropTypes.string.isRequired,
13302
- organization: PropTypes.string.isRequired,
13303
- item_number: PropTypes.string.isRequired,
13304
- model_id: PropTypes.string.isRequired,
13305
- labels_prediction: T['io.flow.internal.v0.models.labels_prediction'].isRequired,
13306
- action: T['io.flow.internal.v0.enums.suggestion_action'].isRequired,
13307
- prediction_score: PropTypes.number,
13308
- });
13309
-
13310
13610
  T['io.flow.internal.v0.models.item_classification'] = PropTypes.exact({
13311
13611
  id: PropTypes.string,
13312
13612
  organization: PropTypes.string.isRequired,
@@ -14078,6 +14378,65 @@ T['io.flow.internal.v0.models.fulfillment_shipment_tracking'] = PropTypes.exact(
14078
14378
  items: PropTypes.arrayOf(T['io.flow.order.management.v0.models.fulfillment_item']).isRequired,
14079
14379
  });
14080
14380
 
14381
+ T['io.flow.experience.v0.enums.order_payment_source_type'] = PropTypes.oneOf(['globale', 'third_party']);
14382
+
14383
+ T['io.flow.experience.v0.models.incoterm_summary'] = PropTypes.exact({
14384
+ configuration: T['io.flow.experience.v0.enums.incoterm_configuration'].isRequired,
14385
+ includes: T['io.flow.experience.v0.models.incoterm_includes'].isRequired,
14386
+ reason: PropTypes.string,
14387
+ });
14388
+
14389
+ T['io.flow.experience.v0.models.destination_contact_detail'] = PropTypes.exact({
14390
+ title: PropTypes.string.isRequired,
14391
+ country: PropTypes.string.isRequired,
14392
+ import_identifier: PropTypes.string.isRequired,
14393
+ });
14394
+
14395
+ T['io.flow.payment.v0.unions.device_details'] = PropTypes.oneOfType([T['io.flow.payment.v0.models.device_details_browser']]);
14396
+
14397
+ T['io.flow.payment.gateway.v0.models.payment_request_form'] = PropTypes.exact({
14398
+ amount: PropTypes.number.isRequired,
14399
+ currency: PropTypes.string.isRequired,
14400
+ order_information: T['io.flow.payment.gateway.v0.unions.order_information'].isRequired,
14401
+ device_details: T['io.flow.payment.v0.unions.device_details'].isRequired,
14402
+ locale: PropTypes.string,
14403
+ return_url: PropTypes.string.isRequired,
14404
+ attributes: PropTypes.objectOf(PropTypes.string),
14405
+ reference: PropTypes.string,
14406
+ payment_method_data: T['io.flow.payment.gateway.v0.unions.payment_method_data'],
14407
+ supported_actions: PropTypes.arrayOf(T['io.flow.payment.gateway.v0.enums.payment_action_type']),
14408
+ payment_capture_option: T['io.flow.payment.gateway.v0.unions.payment_capture_option'],
14409
+ });
14410
+
14411
+ T['io.flow.experience.v0.models.order_geo'] = PropTypes.exact({
14412
+ ip: PropTypes.string,
14413
+ country: PropTypes.string.isRequired,
14414
+ currency: PropTypes.string,
14415
+ language: PropTypes.string,
14416
+ });
14417
+
14418
+ T['io.flow.harmonization.v0.models.tax_registration'] = PropTypes.exact({
14419
+ id: PropTypes.string.isRequired,
14420
+ key: PropTypes.string.isRequired,
14421
+ number: PropTypes.string.isRequired,
14422
+ timestamp: PropTypes.string.isRequired,
14423
+ result: T['io.flow.harmonization.v0.enums.tax_verification_result'].isRequired,
14424
+ result_reason: PropTypes.string,
14425
+ name: PropTypes.string,
14426
+ address: PropTypes.string,
14427
+ company_name: PropTypes.string,
14428
+ });
14429
+
14430
+ T['io.flow.experience.v0.models.order_rules_summary'] = PropTypes.exact({
14431
+ applied: PropTypes.arrayOf(T['io.flow.experience.v0.models.order_rule_reference']).isRequired,
14432
+ });
14433
+
14434
+ T['io.flow.common.v0.enums.order_merchant_of_record'] = PropTypes.oneOf(['flow', 'organization', 'mixed']);
14435
+
14436
+ T['io.flow.payment.v0.models.card_metadata'] = PropTypes.exact({
14437
+ merchant_of_record: T['io.flow.common.v0.enums.order_merchant_of_record'],
14438
+ });
14439
+
14081
14440
  T['io.flow.order.management.v0.models.fulfillment_line_cancel_form'] = PropTypes.exact({
14082
14441
  item_number: PropTypes.string,
14083
14442
  line_number: PropTypes.string,
@@ -14171,6 +14530,8 @@ T['io.flow.internal.v0.models.shopper_lines'] = PropTypes.exact({
14171
14530
  total: PropTypes.number.isRequired,
14172
14531
  });
14173
14532
 
14533
+ T['io.flow.experience.v0.enums.order_type'] = PropTypes.oneOf(['standard', 'replacement']);
14534
+
14174
14535
  T['io.flow.internal.v0.models.fulfillment_business'] = PropTypes.exact({
14175
14536
  vat_registration_number: PropTypes.string.isRequired,
14176
14537
  });
@@ -14455,6 +14816,24 @@ T['io.flow.internal.v0.unions.feature_rule_form'] = PropTypes.oneOfType([
14455
14816
  T['io.flow.internal.v0.models.string_feature_rule_form'],
14456
14817
  ]);
14457
14818
 
14819
+ T['io.flow.internal.v0.models.feature_geo_form'] = PropTypes.exact({
14820
+ country: PropTypes.string,
14821
+ currency: PropTypes.string,
14822
+ language: PropTypes.string,
14823
+ locale: PropTypes.string,
14824
+ region: PropTypes.string,
14825
+ });
14826
+
14827
+ T['io.flow.internal.v0.models.feature_context_form'] = PropTypes.exact({
14828
+ experience_key: PropTypes.string,
14829
+ geo: T['io.flow.internal.v0.models.feature_geo_form'],
14830
+ });
14831
+
14832
+ T['io.flow.internal.v0.models.feature_value_form'] = PropTypes.exact({
14833
+ feature_query: PropTypes.string.isRequired,
14834
+ context: T['io.flow.internal.v0.models.feature_context_form'].isRequired,
14835
+ });
14836
+
14458
14837
  T['io.flow.internal.v0.models.string_feature_default_value'] = PropTypes.exact({
14459
14838
  discriminator: PropTypes.oneOf(['string']).isRequired,
14460
14839
  value: PropTypes.string.isRequired,
@@ -14994,6 +15373,35 @@ T['io.flow.payment.gateway.v0.models.payment_payment_method'] = PropTypes.exact(
14994
15373
  possible_actions: PropTypes.arrayOf(T['io.flow.payment.gateway.v0.enums.payment_action_type']).isRequired,
14995
15374
  });
14996
15375
 
15376
+ T['io.flow.payment.gateway.v0.models.payment_request'] = PropTypes.exact({
15377
+ id: PropTypes.string.isRequired,
15378
+ status: T['io.flow.payment.gateway.v0.enums.payment_status'].isRequired,
15379
+ created_at: PropTypes.string.isRequired,
15380
+ updated_at: PropTypes.string.isRequired,
15381
+ available_payment_methods: PropTypes.arrayOf(T['io.flow.payment.gateway.v0.models.payment_payment_method']).isRequired,
15382
+ last_payment_failure: T['io.flow.payment.gateway.v0.models.payment_failure'],
15383
+ next_action: T['io.flow.payment.gateway.v0.unions.action'],
15384
+ amount: PropTypes.number.isRequired,
15385
+ currency: PropTypes.string.isRequired,
15386
+ base_amount: PropTypes.number,
15387
+ base_currency: PropTypes.string,
15388
+ order_information: T['io.flow.payment.gateway.v0.unions.order_information'].isRequired,
15389
+ device_details: T['io.flow.payment.v0.unions.device_details'].isRequired,
15390
+ locale: PropTypes.string,
15391
+ return_url: PropTypes.string.isRequired,
15392
+ attributes: PropTypes.objectOf(PropTypes.string),
15393
+ reference: PropTypes.string,
15394
+ payment_information: T['io.flow.payment.gateway.v0.models.payment_information'].isRequired,
15395
+ supported_actions: PropTypes.arrayOf(T['io.flow.payment.gateway.v0.enums.payment_action_type']).isRequired,
15396
+ payment_capture_option: T['io.flow.payment.gateway.v0.unions.payment_capture_option'],
15397
+ review: T['io.flow.payment.gateway.v0.models.payment_request_review'],
15398
+ });
15399
+
15400
+ T['io.flow.internal.v0.models.internal_payment_request'] = PropTypes.exact({
15401
+ payment_request: T['io.flow.payment.gateway.v0.models.payment_request'].isRequired,
15402
+ actual_action: T['io.flow.payment.gateway.v0.unions.action'],
15403
+ });
15404
+
14997
15405
  T['io.flow.internal.v0.models.dispute_details_stripe'] = PropTypes.exact({
14998
15406
  discriminator: PropTypes.oneOf(['stripe']).isRequired,
14999
15407
  payment_intent_id: PropTypes.string,
@@ -15225,36 +15633,137 @@ T['io.flow.internal.v0.models.delivered_duty_option_message'] = PropTypes.exact(
15225
15633
  text: PropTypes.string.isRequired,
15226
15634
  });
15227
15635
 
15228
- T['io.flow.internal.v0.enums.rejection_reason'] = PropTypes.oneOf([
15229
- 'merchant_policy',
15230
- 'previous_chargebacks',
15231
- 'restricted_party_screening',
15232
- 'risky_velocity',
15233
- 'suspicious_behavior',
15234
- 'suspicious_past_activity',
15235
- ]);
15636
+ T['io.flow.common.v0.enums.delivered_duty'] = PropTypes.oneOf(['paid', 'unpaid']);
15236
15637
 
15237
- T['io.flow.internal.v0.models.decline_reason_fraud'] = PropTypes.exact({
15238
- discriminator: PropTypes.oneOf(['fraud']).isRequired,
15239
- rejection_reason: T['io.flow.internal.v0.enums.rejection_reason'].isRequired,
15638
+ T['io.flow.ratecard.v0.models.ratecard_lane_import_form'] = PropTypes.exact({
15639
+ ratecard_owner: T['io.flow.fulfillment.v0.enums.ratecard_owner'].isRequired,
15640
+ service: PropTypes.string.isRequired,
15641
+ currency: PropTypes.string.isRequired,
15642
+ delivered_duty: T['io.flow.common.v0.enums.delivered_duty'].isRequired,
15643
+ origin: T['io.flow.common.v0.models.zone'].isRequired,
15644
+ destination: T['io.flow.common.v0.models.zone'].isRequired,
15645
+ shipment_window: T['io.flow.ratecard.v0.models.shipment_window'].isRequired,
15646
+ dim_factor: PropTypes.number.isRequired,
15647
+ weight_unit: T['io.flow.common.v0.enums.unit_of_measurement'].isRequired,
15648
+ distance_unit: T['io.flow.common.v0.enums.unit_of_measurement'].isRequired,
15649
+ rates: PropTypes.arrayOf(T['io.flow.ratecard.v0.models.ratecard_rate_form']).isRequired,
15240
15650
  });
15241
15651
 
15242
- T['io.flow.internal.v0.models.debug_transaction_fx_rate'] = PropTypes.exact({
15243
- base: PropTypes.string.isRequired,
15244
- target: PropTypes.string.isRequired,
15245
- value: PropTypes.number.isRequired,
15652
+ T['io.flow.experience.v0.models.order_builder_delivered_duty_form'] = PropTypes.exact({
15653
+ delivered_duty: T['io.flow.common.v0.enums.delivered_duty'].isRequired,
15246
15654
  });
15247
15655
 
15248
- T['io.flow.billing.v0.enums.pending_payout_transaction_reason_code'] = PropTypes.oneOf([
15249
- 'waiting_for_full_refund',
15250
- 'waiting_for_fulfillment',
15251
- 'waiting_for_in_transit',
15252
- 'waiting_for_next_payout_date',
15253
- 'waiting_for_tracking_info',
15254
- 'waiting_for_positive_account_balance',
15255
- 'unfulfilled_amount_greater_than_negative_balance',
15256
- 'account_payment_hold',
15257
- ]);
15656
+ T['io.flow.experience.v0.models.experience_form'] = PropTypes.exact({
15657
+ region_id: PropTypes.string.isRequired,
15658
+ name: PropTypes.string.isRequired,
15659
+ delivered_duty: T['io.flow.common.v0.enums.delivered_duty'],
15660
+ country: PropTypes.string,
15661
+ currency: PropTypes.string,
15662
+ language: PropTypes.string,
15663
+ key: PropTypes.string,
15664
+ position: PropTypes.number,
15665
+ measurement_system: T['io.flow.common.v0.enums.measurement_system'],
15666
+ subcatalog_id: PropTypes.string,
15667
+ });
15668
+
15669
+ T['io.flow.experience.v0.models.experience_defaults'] = PropTypes.exact({
15670
+ key: PropTypes.string.isRequired,
15671
+ name: PropTypes.string.isRequired,
15672
+ delivered_duty: T['io.flow.common.v0.enums.delivered_duty'].isRequired,
15673
+ country: PropTypes.string.isRequired,
15674
+ currency: PropTypes.string.isRequired,
15675
+ language: PropTypes.string.isRequired,
15676
+ measurement_system: T['io.flow.common.v0.enums.measurement_system'].isRequired,
15677
+ });
15678
+
15679
+ T['io.flow.experience.v0.models.delivered_duty_setting'] = PropTypes.exact({
15680
+ 'default': T['io.flow.common.v0.enums.delivered_duty'].isRequired,
15681
+ available: PropTypes.arrayOf(T['io.flow.common.v0.enums.delivered_duty']).isRequired,
15682
+ display: T['io.flow.experience.v0.enums.delivered_duty_display_type'],
15683
+ });
15684
+
15685
+ T['io.flow.experience.v0.models.experience_settings'] = PropTypes.exact({
15686
+ delivered_duty: T['io.flow.experience.v0.models.delivered_duty_setting'].isRequired,
15687
+ pricing_settings: T['io.flow.experience.v0.models.pricing_settings'],
15688
+ logistics_settings: T['io.flow.experience.v0.models.logistics_settings'],
15689
+ checkout_settings: T['io.flow.experience.v0.models.experience_checkout_configuration_settings'],
15690
+ });
15691
+
15692
+ T['io.flow.experience.v0.models.experience'] = PropTypes.exact({
15693
+ discriminator: PropTypes.oneOf(['experience']).isRequired,
15694
+ id: PropTypes.string.isRequired,
15695
+ key: PropTypes.string.isRequired,
15696
+ name: PropTypes.string.isRequired,
15697
+ delivered_duty: T['io.flow.common.v0.enums.delivered_duty'].isRequired,
15698
+ region: T['io.flow.experience.v0.models.region_reference'].isRequired,
15699
+ country: PropTypes.string.isRequired,
15700
+ currency: PropTypes.string.isRequired,
15701
+ language: PropTypes.string.isRequired,
15702
+ measurement_system: T['io.flow.common.v0.enums.measurement_system'].isRequired,
15703
+ subcatalog: T['io.flow.catalog.v0.models.subcatalog_reference'].isRequired,
15704
+ position: PropTypes.number.isRequired,
15705
+ settings: T['io.flow.experience.v0.models.experience_settings'].isRequired,
15706
+ status: T['io.flow.experience.v0.enums.experience_status'],
15707
+ });
15708
+
15709
+ T['io.flow.experience.v0.unions.expandable_experience'] = PropTypes.oneOfType([
15710
+ T['io.flow.experience.v0.models.experience'],
15711
+ T['io.flow.experience.v0.models.experience_reference'],
15712
+ ]);
15713
+
15714
+ T['io.flow.internal.v0.models.delivered_duty_preference_form'] = PropTypes.exact({
15715
+ methods: PropTypes.arrayOf(T['io.flow.common.v0.enums.delivered_duty']).isRequired,
15716
+ 'default': T['io.flow.common.v0.enums.delivered_duty'],
15717
+ display: T['io.flow.experience.v0.enums.delivered_duty_display_type'],
15718
+ });
15719
+
15720
+ T['io.flow.internal.v0.models.delivered_duty_preference'] = PropTypes.exact({
15721
+ methods: PropTypes.arrayOf(T['io.flow.common.v0.enums.delivered_duty']).isRequired,
15722
+ 'default': T['io.flow.common.v0.enums.delivered_duty'].isRequired,
15723
+ display: T['io.flow.experience.v0.enums.delivered_duty_display_type'].isRequired,
15724
+ });
15725
+
15726
+ T['io.flow.internal.v0.models.delivered_duty_option'] = PropTypes.exact({
15727
+ methods: PropTypes.arrayOf(T['io.flow.common.v0.enums.delivered_duty']).isRequired,
15728
+ message: T['io.flow.internal.v0.models.delivered_duty_option_message'],
15729
+ selectable: PropTypes.bool.isRequired,
15730
+ });
15731
+
15732
+ T['io.flow.internal.v0.models.delivered_duty_options'] = PropTypes.exact({
15733
+ options: PropTypes.arrayOf(T['io.flow.internal.v0.models.delivered_duty_option']).isRequired,
15734
+ message: T['io.flow.internal.v0.models.delivered_duty_options_message'],
15735
+ });
15736
+
15737
+ T['io.flow.internal.v0.enums.rejection_reason'] = PropTypes.oneOf([
15738
+ 'merchant_policy',
15739
+ 'previous_chargebacks',
15740
+ 'restricted_party_screening',
15741
+ 'risky_velocity',
15742
+ 'suspicious_behavior',
15743
+ 'suspicious_past_activity',
15744
+ ]);
15745
+
15746
+ T['io.flow.internal.v0.models.decline_reason_fraud'] = PropTypes.exact({
15747
+ discriminator: PropTypes.oneOf(['fraud']).isRequired,
15748
+ rejection_reason: T['io.flow.internal.v0.enums.rejection_reason'].isRequired,
15749
+ });
15750
+
15751
+ T['io.flow.internal.v0.models.debug_transaction_fx_rate'] = PropTypes.exact({
15752
+ base: PropTypes.string.isRequired,
15753
+ target: PropTypes.string.isRequired,
15754
+ value: PropTypes.number.isRequired,
15755
+ });
15756
+
15757
+ T['io.flow.billing.v0.enums.pending_payout_transaction_reason_code'] = PropTypes.oneOf([
15758
+ 'waiting_for_full_refund',
15759
+ 'waiting_for_fulfillment',
15760
+ 'waiting_for_in_transit',
15761
+ 'waiting_for_next_payout_date',
15762
+ 'waiting_for_tracking_info',
15763
+ 'waiting_for_positive_account_balance',
15764
+ 'unfulfilled_amount_greater_than_negative_balance',
15765
+ 'account_payment_hold',
15766
+ ]);
15258
15767
 
15259
15768
  T['io.flow.internal.v0.models.debug_order_transaction_form_order_identifier'] = PropTypes.exact({
15260
15769
  key: PropTypes.string,
@@ -15688,6 +16197,23 @@ T['io.flow.internal.v0.models.country_picker_payment_method'] = PropTypes.exact(
15688
16197
  id: PropTypes.string.isRequired,
15689
16198
  });
15690
16199
 
16200
+ T['io.flow.internal.v0.models.country_picker_experience_data'] = PropTypes.exact({
16201
+ experience_key: PropTypes.string.isRequired,
16202
+ payment_methods: PropTypes.arrayOf(T['io.flow.internal.v0.models.country_picker_payment_method']).isRequired,
16203
+ });
16204
+
16205
+ T['io.flow.internal.v0.models.country_picker_currency'] = PropTypes.exact({
16206
+ iso_4217_3: PropTypes.string.isRequired,
16207
+ name: PropTypes.string.isRequired,
16208
+ });
16209
+
16210
+ T['io.flow.internal.v0.models.country_picker_country'] = PropTypes.exact({
16211
+ iso_3166_2: PropTypes.string.isRequired,
16212
+ iso_3166_3: PropTypes.string.isRequired,
16213
+ name: PropTypes.string.isRequired,
16214
+ default_currency: PropTypes.string,
16215
+ });
16216
+
15691
16217
  T['io.flow.internal.v0.models.country_picker_delivery_window'] = PropTypes.exact({
15692
16218
  name: PropTypes.string,
15693
16219
  from: PropTypes.string.isRequired,
@@ -15695,6 +16221,18 @@ T['io.flow.internal.v0.models.country_picker_delivery_window'] = PropTypes.exact
15695
16221
  timezone: PropTypes.string,
15696
16222
  });
15697
16223
 
16224
+ T['io.flow.internal.v0.models.country_picker_country_data'] = PropTypes.exact({
16225
+ country: PropTypes.string.isRequired,
16226
+ delivery_window: PropTypes.arrayOf(T['io.flow.internal.v0.models.country_picker_delivery_window']).isRequired,
16227
+ });
16228
+
16229
+ T['io.flow.internal.v0.models.country_picker_data'] = PropTypes.exact({
16230
+ countries: PropTypes.arrayOf(T['io.flow.internal.v0.models.country_picker_country']).isRequired,
16231
+ currencies: PropTypes.arrayOf(T['io.flow.internal.v0.models.country_picker_currency']).isRequired,
16232
+ experience_data: PropTypes.arrayOf(T['io.flow.internal.v0.models.country_picker_experience_data']),
16233
+ country_data: PropTypes.arrayOf(T['io.flow.internal.v0.models.country_picker_country_data']),
16234
+ });
16235
+
15698
16236
  T['io.flow.internal.v0.models.validation_character_length'] = PropTypes.exact({
15699
16237
  discriminator: PropTypes.oneOf(['validation_character_length']).isRequired,
15700
16238
  min: PropTypes.number,
@@ -15715,6 +16253,16 @@ T['io.flow.internal.v0.models.localization_form'] = PropTypes.exact({
15715
16253
  elements: PropTypes.objectOf(T['io.flow.internal.v0.models.localized_content_element']).isRequired,
15716
16254
  });
15717
16255
 
16256
+ T['io.flow.internal.v0.models.optin_prompt_form'] = PropTypes.exact({
16257
+ optin_attribute_key: PropTypes.string.isRequired,
16258
+ region: PropTypes.string.isRequired,
16259
+ options: PropTypes.arrayOf(T['io.flow.internal.v0.enums.prompt_options']).isRequired,
16260
+ content: T['io.flow.internal.v0.models.localization_form'].isRequired,
16261
+ position: PropTypes.number.isRequired,
16262
+ enforce_on: PropTypes.string,
16263
+ display: T['io.flow.internal.v0.unions.optin_prompt_display'],
16264
+ });
16265
+
15718
16266
  T['io.flow.internal.v0.models.localized_content_form'] = PropTypes.exact({
15719
16267
  schema_key: PropTypes.string.isRequired,
15720
16268
  status: T['io.flow.internal.v0.enums.content_status'].isRequired,
@@ -15730,6 +16278,22 @@ T['io.flow.internal.v0.models.localization'] = PropTypes.exact({
15730
16278
  elements: PropTypes.objectOf(T['io.flow.internal.v0.models.localized_content_element']).isRequired,
15731
16279
  });
15732
16280
 
16281
+ T['io.flow.internal.v0.unions.localizable_content'] = PropTypes.oneOfType([
16282
+ T['io.flow.internal.v0.models.localizable_content_reference'],
16283
+ T['io.flow.internal.v0.models.localization'],
16284
+ ]);
16285
+
16286
+ T['io.flow.internal.v0.models.optin_prompt'] = PropTypes.exact({
16287
+ id: PropTypes.string.isRequired,
16288
+ optin_attribute: T['io.flow.internal.v0.models.optin_attribute'].isRequired,
16289
+ region: PropTypes.string.isRequired,
16290
+ options: PropTypes.arrayOf(T['io.flow.internal.v0.enums.prompt_options']).isRequired,
16291
+ content: T['io.flow.internal.v0.unions.localizable_content'].isRequired,
16292
+ position: PropTypes.number.isRequired,
16293
+ enforce_on: PropTypes.string.isRequired,
16294
+ display: T['io.flow.internal.v0.unions.optin_prompt_display'],
16295
+ });
16296
+
15733
16297
  T['io.flow.internal.v0.models.localized_content'] = PropTypes.exact({
15734
16298
  id: PropTypes.string.isRequired,
15735
16299
  schema_key: PropTypes.string.isRequired,
@@ -16078,88 +16642,6 @@ T['io.flow.internal.v0.models.item_classification_summary'] = PropTypes.exact({
16078
16642
  customs_description: PropTypes.string,
16079
16643
  });
16080
16644
 
16081
- T['io.flow.payment.v0.models.online_payment_authorization_form'] = PropTypes.exact({
16082
- discriminator: PropTypes.oneOf(['online_payment_authorization_form']).isRequired,
16083
- payment_id: PropTypes.string.isRequired,
16084
- key: PropTypes.string,
16085
- });
16086
-
16087
- T['io.flow.payment.v0.models.card_payment_source_authorization_form'] = PropTypes.exact({
16088
- discriminator: PropTypes.oneOf(['card_payment_source_authorization_form']).isRequired,
16089
- key: PropTypes.string,
16090
- card_payment_source_id: PropTypes.string.isRequired,
16091
- order_number: PropTypes.string.isRequired,
16092
- amount: PropTypes.number.isRequired,
16093
- currency: PropTypes.string.isRequired,
16094
- browser_info: T['io.flow.payment.v0.models.browser_info'],
16095
- inline_action_configuration: T['io.flow.payment.v0.unions.inline_action_configuration'],
16096
- });
16097
-
16098
- T['io.flow.payment.v0.models.redirect_authorization_form'] = PropTypes.exact({
16099
- discriminator: PropTypes.oneOf(['redirect_authorization_form']).isRequired,
16100
- method: PropTypes.string.isRequired,
16101
- issuer: T['io.flow.payment.v0.models.issuer_reference'],
16102
- order_number: PropTypes.string.isRequired,
16103
- amount: PropTypes.number.isRequired,
16104
- currency: PropTypes.string.isRequired,
16105
- redirect_urls: T['io.flow.payment.v0.models.post_payment_redirect_urls'].isRequired,
16106
- key: PropTypes.string,
16107
- attributes: PropTypes.objectOf(PropTypes.string),
16108
- ip: PropTypes.string,
16109
- });
16110
-
16111
- T['io.flow.payment.v0.models.paypal_authorization_form'] = PropTypes.exact({
16112
- discriminator: PropTypes.oneOf(['paypal_authorization_form']).isRequired,
16113
- paypal_payment_id: PropTypes.string.isRequired,
16114
- paypal_payer_id: PropTypes.string.isRequired,
16115
- key: PropTypes.string,
16116
- attributes: PropTypes.objectOf(PropTypes.string),
16117
- ip: PropTypes.string,
16118
- });
16119
-
16120
- T['io.flow.payment.v0.models.merchant_of_record_authorization_form'] = PropTypes.exact({
16121
- discriminator: PropTypes.oneOf(['merchant_of_record_authorization_form']).isRequired,
16122
- token: PropTypes.string.isRequired,
16123
- order_number: PropTypes.string.isRequired,
16124
- amount: PropTypes.number,
16125
- currency: PropTypes.string,
16126
- key: PropTypes.string,
16127
- cvv: PropTypes.string,
16128
- attributes: PropTypes.objectOf(PropTypes.string),
16129
- ip: PropTypes.string,
16130
- options: PropTypes.arrayOf(T['io.flow.payment.v0.enums.authorization_option']),
16131
- redirect_urls: T['io.flow.payment.v0.models.post_payment_redirect_urls'],
16132
- browser_info: T['io.flow.payment.v0.models.browser_info'],
16133
- inline_action_configuration: T['io.flow.payment.v0.unions.inline_action_configuration'],
16134
- });
16135
-
16136
- T['io.flow.payment.v0.models.authorization_copy_form'] = PropTypes.exact({
16137
- discriminator: PropTypes.oneOf(['authorization_copy_form']).isRequired,
16138
- source_authorization_key: PropTypes.string.isRequired,
16139
- amount: PropTypes.number.isRequired,
16140
- currency: PropTypes.string.isRequired,
16141
- attributes: PropTypes.objectOf(PropTypes.string),
16142
- });
16143
-
16144
- T['io.flow.payment.v0.models.authorization_result_action_wait'] = PropTypes.exact({
16145
- discriminator: PropTypes.oneOf(['authorization_result_action_wait']).isRequired,
16146
- type: T['io.flow.payment.v0.enums.authorization_result_action_type'].isRequired,
16147
- });
16148
-
16149
- T['io.flow.payment.v0.models.authorization_result_action_post'] = PropTypes.exact({
16150
- discriminator: PropTypes.oneOf(['authorization_result_action_post']).isRequired,
16151
- type: T['io.flow.payment.v0.enums.authorization_result_action_type'].isRequired,
16152
- url: PropTypes.string.isRequired,
16153
- parameters: PropTypes.object.isRequired,
16154
- });
16155
-
16156
- T['io.flow.payment.v0.models.authorization_result_action_get'] = PropTypes.exact({
16157
- discriminator: PropTypes.oneOf(['authorization_result_action_get']).isRequired,
16158
- type: T['io.flow.payment.v0.enums.authorization_result_action_type'].isRequired,
16159
- url: PropTypes.string,
16160
- details: T['io.flow.payment.v0.unions.authorization_result_action_details'],
16161
- });
16162
-
16163
16645
  T['io.flow.internal.v0.enums.checkout_url_type'] = PropTypes.oneOf(['continue_shopping', 'confirmation', 'invalid_checkout']);
16164
16646
 
16165
16647
  T['io.flow.query.builder.v0.models.query'] = PropTypes.exact({
@@ -16216,558 +16698,100 @@ T['io.flow.internal.v0.models.authorization_parameters'] = PropTypes.exact({
16216
16698
  parameters: PropTypes.object.isRequired,
16217
16699
  });
16218
16700
 
16219
- T['io.flow.reference.v0.enums.payment_method_type'] = PropTypes.oneOf(['card', 'online', 'offline']);
16220
-
16221
- T['io.flow.reference.v0.models.payment_method'] = PropTypes.exact({
16222
- id: PropTypes.string.isRequired,
16223
- type: T['io.flow.reference.v0.enums.payment_method_type'].isRequired,
16224
- name: PropTypes.string.isRequired,
16225
- images: T['io.flow.reference.v0.models.payment_method_images'].isRequired,
16226
- regions: PropTypes.arrayOf(PropTypes.string).isRequired,
16227
- capabilities: PropTypes.arrayOf(T['io.flow.reference.v0.enums.payment_method_capability']),
16228
- });
16229
-
16230
- T['io.flow.customer.v0.models.customer_payment'] = PropTypes.exact({
16231
- payment_methods: PropTypes.arrayOf(T['io.flow.reference.v0.models.payment_method']).isRequired,
16232
- });
16233
-
16234
- T['io.flow.internal.v0.models.payment_method_detail'] = PropTypes.exact({
16235
- method: T['io.flow.reference.v0.models.payment_method'].isRequired,
16236
- method_options: PropTypes.arrayOf(T['io.flow.internal.v0.models.payment_method_option']),
16237
- });
16238
-
16239
- T['io.flow.experience.v0.models.payment_method_rule'] = PropTypes.exact({
16240
- tags: PropTypes.arrayOf(T['io.flow.experience.v0.unions.payment_method_tag']).isRequired,
16241
- payment_method: T['io.flow.reference.v0.models.payment_method'].isRequired,
16242
- display_position: PropTypes.number.isRequired,
16243
- content: PropTypes.arrayOf(T['io.flow.experience.v0.models.payment_method_rule_content']),
16244
- issuers: PropTypes.arrayOf(T['io.flow.experience.v0.models.payment_method_issuer']),
16245
- programs: PropTypes.arrayOf(PropTypes.object),
16246
- q: T['io.flow.query.builder.v0.models.query'],
16247
- });
16248
-
16249
- T['io.flow.experience.v0.models.experience_payment_method_rule'] = PropTypes.exact({
16250
- experience_key: PropTypes.string.isRequired,
16251
- payment_method_rules: PropTypes.arrayOf(T['io.flow.experience.v0.models.payment_method_rule']).isRequired,
16252
- });
16253
-
16254
- T['io.flow.payment.v0.models.public_key'] = PropTypes.exact({
16255
- id: PropTypes.string.isRequired,
16256
- });
16257
-
16258
- T['io.flow.payment.v0.models.card_payment_source_form'] = PropTypes.exact({
16259
- discriminator: PropTypes.oneOf(['card_payment_source_form']).isRequired,
16260
- customer_number: PropTypes.string.isRequired,
16261
- card_id: PropTypes.string.isRequired,
16262
- });
16263
-
16264
- T['io.flow.internal.v0.models.order_parameters'] = PropTypes.exact({
16265
- experience: PropTypes.string,
16266
- country: PropTypes.string,
16267
- ip: PropTypes.string,
16268
- currency: PropTypes.string,
16269
- language: PropTypes.string,
16270
- });
16271
-
16272
- T['io.flow.experience.v0.models.order_submission_identifier_form'] = PropTypes.exact({
16273
- identifier: PropTypes.string.isRequired,
16274
- name: PropTypes.string,
16275
- primary: PropTypes.bool,
16276
- });
16277
-
16278
- T['io.flow.experience.v0.models.order_submission_form'] = PropTypes.exact({
16279
- identifiers: PropTypes.arrayOf(T['io.flow.experience.v0.models.order_submission_identifier_form']),
16280
- });
16281
-
16282
- T['io.flow.checkout.v0.models.checkout_urls_form'] = PropTypes.exact({
16283
- continue_shopping: PropTypes.string,
16284
- confirmation: PropTypes.string,
16285
- invalid_checkout: PropTypes.string,
16286
- });
16287
-
16288
- T['io.flow.checkout.v0.models.checkout_token_reference_form'] = PropTypes.exact({
16289
- discriminator: PropTypes.oneOf(['checkout_token_reference_form']).isRequired,
16290
- order_number: PropTypes.string.isRequired,
16291
- session_id: PropTypes.string.isRequired,
16292
- urls: T['io.flow.checkout.v0.models.checkout_urls_form'].isRequired,
16293
- });
16294
-
16295
- T['io.flow.payment.v0.unions.payment_source_form'] = PropTypes.oneOfType([T['io.flow.payment.v0.models.card_payment_source_form']]);
16296
-
16297
- T['io.flow.experience.v0.models.order_options'] = PropTypes.exact({
16298
- storage: T['io.flow.experience.v0.enums.order_storage'].isRequired,
16299
- });
16300
-
16301
- T['io.flow.internal.v0.enums.checkout_redirect_method'] = PropTypes.oneOf(['get', 'post']);
16302
-
16303
- T['io.flow.internal.v0.models.checkout_redirect'] = PropTypes.exact({
16304
- method: T['io.flow.internal.v0.enums.checkout_redirect_method'].isRequired,
16305
- url: PropTypes.string.isRequired,
16306
- body: PropTypes.string,
16307
- });
16308
-
16309
- T['io.flow.internal.v0.enums.checkout_error_code'] = PropTypes.oneOf([
16310
- 'generic_error',
16311
- 'order_identifier_invalid',
16312
- 'url_invalid',
16313
- 'organization_invalid',
16314
- 'session_invalid',
16315
- 'session_missing',
16316
- 'session_organization_invalid',
16317
- 'country_invalid',
16318
- 'currency_invalid',
16319
- 'language_invalid',
16320
- 'checkout_invalid',
16321
- ]);
16322
-
16323
- T['io.flow.internal.v0.models.checkbox'] = PropTypes.exact({
16324
- name: PropTypes.string.isRequired,
16325
- value: PropTypes.string.isRequired,
16326
- label: PropTypes.string.isRequired,
16327
- checked_by_default: PropTypes.bool.isRequired,
16328
- required: PropTypes.bool.isRequired,
16329
- });
16330
-
16331
- T['io.flow.internal.v0.enums.format'] = PropTypes.oneOf(['text', 'phone', 'email']);
16332
-
16333
- T['io.flow.internal.v0.models.logo'] = PropTypes.exact({
16334
- url: PropTypes.string.isRequired,
16335
- });
16336
-
16337
- T['io.flow.internal.v0.models.checkout_url'] = PropTypes.exact({
16338
- url: PropTypes.string.isRequired,
16339
- type: T['io.flow.internal.v0.enums.checkout_url_type'].isRequired,
16340
- });
16341
-
16342
- T['io.flow.reference.v0.enums.postal_type'] = PropTypes.oneOf(['eircode', 'pin', 'postal', 'zip']);
16343
-
16344
- T['io.flow.experience.v0.models.address_configuration_format'] = PropTypes.exact({
16345
- placements: PropTypes.arrayOf(T['io.flow.experience.v0.models.address_configuration_field_placement']).isRequired,
16346
- });
16347
-
16348
- T['io.flow.experience.v0.models.address_configuration_province'] = PropTypes.exact({
16349
- value: PropTypes.string.isRequired,
16350
- name: PropTypes.string.isRequired,
16351
-
16352
- translations: PropTypes.arrayOf(
16353
- T['io.flow.experience.v0.models.address_configuration_province_translation'],
16354
- ),
16355
- });
16356
-
16357
- T['io.flow.experience.v0.models.address_field_validation'] = PropTypes.exact({
16358
- first_name: PropTypes.arrayOf(T['io.flow.field.validation.v0.unions.field_validation_rule']).isRequired,
16359
- last_name: PropTypes.arrayOf(T['io.flow.field.validation.v0.unions.field_validation_rule']).isRequired,
16360
- street_1: PropTypes.arrayOf(T['io.flow.field.validation.v0.unions.field_validation_rule']).isRequired,
16361
- street_2: PropTypes.arrayOf(T['io.flow.field.validation.v0.unions.field_validation_rule']).isRequired,
16362
- city: PropTypes.arrayOf(T['io.flow.field.validation.v0.unions.field_validation_rule']).isRequired,
16363
- province: PropTypes.arrayOf(T['io.flow.field.validation.v0.unions.field_validation_rule']).isRequired,
16364
- postal: PropTypes.arrayOf(T['io.flow.field.validation.v0.unions.field_validation_rule']).isRequired,
16365
- phone: PropTypes.arrayOf(T['io.flow.field.validation.v0.unions.field_validation_rule']).isRequired,
16366
- vat_registration_number: PropTypes.arrayOf(T['io.flow.field.validation.v0.unions.field_validation_rule']).isRequired,
16367
- });
16368
-
16369
- T['io.flow.catalog.v0.models.image'] = PropTypes.exact({
16370
- url: PropTypes.string.isRequired,
16371
- tags: PropTypes.arrayOf(T['io.flow.catalog.v0.enums.image_tag']).isRequired,
16372
- attributes: PropTypes.objectOf(PropTypes.string),
16373
- });
16374
-
16375
- T['io.flow.experience.v0.models.checkout_item_content_attribute'] = PropTypes.exact({
16376
- key: PropTypes.string.isRequired,
16377
- name: PropTypes.string.isRequired,
16378
- value: PropTypes.string.isRequired,
16379
- });
16380
-
16381
- T['io.flow.reference.v0.models.localized_translation'] = PropTypes.exact({
16382
- locale: T['io.flow.reference.v0.models.locale'].isRequired,
16383
- name: PropTypes.string.isRequired,
16384
- });
16385
-
16386
- T['io.flow.reference.v0.enums.province_type'] = PropTypes.oneOf([
16387
- 'area',
16388
- 'city',
16389
- 'county',
16390
- 'department',
16391
- 'dependency',
16392
- 'district',
16393
- 'do_si',
16394
- 'emirate',
16395
- 'entity',
16396
- 'island',
16397
- 'municipality',
16398
- 'oblast',
16399
- 'outlying_area',
16400
- 'parish',
16401
- 'prefecture',
16402
- 'province',
16403
- 'state',
16404
- 'territory',
16405
- 'other',
16406
- ]);
16407
-
16408
- T['io.flow.internal.v0.models.checkout_marketing_content'] = PropTypes.exact({
16409
- optins: PropTypes.arrayOf(T['io.flow.internal.v0.models.checkbox']).isRequired,
16410
- });
16411
-
16412
- T['io.flow.experience.v0.enums.order_error_code'] = PropTypes.oneOf([
16413
- 'generic_error',
16414
- 'order_item_not_available',
16415
- 'order_identifier_error',
16416
- 'authorization_invalid',
16417
- 'domestic_shipping_unavailable',
16418
- 'shipping_unavailable',
16419
- 'value_threshold_exceeded',
16420
- 'invalid_currency',
16421
- 'invalid_country',
16422
- 'invalid_region',
16423
- 'invalid_language',
16424
- 'item_out_of_stock',
16425
- 'gift_card_not_accepted',
16426
- 'total_changed',
16427
- ]);
16428
-
16429
- T['io.flow.experience.v0.enums.order_payment_source_type'] = PropTypes.oneOf(['globale', 'third_party']);
16430
-
16431
- T['io.flow.experience.v0.models.incoterm_summary'] = PropTypes.exact({
16432
- configuration: T['io.flow.experience.v0.enums.incoterm_configuration'].isRequired,
16433
- includes: T['io.flow.experience.v0.models.incoterm_includes'].isRequired,
16434
- reason: PropTypes.string,
16435
- });
16436
-
16437
- T['io.flow.experience.v0.models.destination_contact_detail'] = PropTypes.exact({
16438
- title: PropTypes.string.isRequired,
16439
- country: PropTypes.string.isRequired,
16440
- import_identifier: PropTypes.string.isRequired,
16441
- });
16442
-
16443
- T['io.flow.payment.v0.unions.device_details'] = PropTypes.oneOfType([T['io.flow.payment.v0.models.device_details_browser']]);
16444
-
16445
- T['io.flow.payment.gateway.v0.models.payment_request_form'] = PropTypes.exact({
16446
- amount: PropTypes.number.isRequired,
16447
- currency: PropTypes.string.isRequired,
16448
- order_information: T['io.flow.payment.gateway.v0.unions.order_information'].isRequired,
16449
- device_details: T['io.flow.payment.v0.unions.device_details'].isRequired,
16450
- locale: PropTypes.string,
16451
- return_url: PropTypes.string.isRequired,
16452
- attributes: PropTypes.objectOf(PropTypes.string),
16453
- reference: PropTypes.string,
16454
- payment_method_data: T['io.flow.payment.gateway.v0.unions.payment_method_data'],
16455
- supported_actions: PropTypes.arrayOf(T['io.flow.payment.gateway.v0.enums.payment_action_type']),
16456
- payment_capture_option: T['io.flow.payment.gateway.v0.unions.payment_capture_option'],
16457
- });
16458
-
16459
- T['io.flow.payment.gateway.v0.models.payment_request'] = PropTypes.exact({
16460
- id: PropTypes.string.isRequired,
16461
- status: T['io.flow.payment.gateway.v0.enums.payment_status'].isRequired,
16462
- created_at: PropTypes.string.isRequired,
16463
- updated_at: PropTypes.string.isRequired,
16464
- available_payment_methods: PropTypes.arrayOf(T['io.flow.payment.gateway.v0.models.payment_payment_method']).isRequired,
16465
- last_payment_failure: T['io.flow.payment.gateway.v0.models.payment_failure'],
16466
- next_action: T['io.flow.payment.gateway.v0.unions.action'],
16467
- amount: PropTypes.number.isRequired,
16468
- currency: PropTypes.string.isRequired,
16469
- base_amount: PropTypes.number,
16470
- base_currency: PropTypes.string,
16471
- order_information: T['io.flow.payment.gateway.v0.unions.order_information'].isRequired,
16472
- device_details: T['io.flow.payment.v0.unions.device_details'].isRequired,
16473
- locale: PropTypes.string,
16474
- return_url: PropTypes.string.isRequired,
16475
- attributes: PropTypes.objectOf(PropTypes.string),
16476
- reference: PropTypes.string,
16477
- payment_information: T['io.flow.payment.gateway.v0.models.payment_information'].isRequired,
16478
- supported_actions: PropTypes.arrayOf(T['io.flow.payment.gateway.v0.enums.payment_action_type']).isRequired,
16479
- payment_capture_option: T['io.flow.payment.gateway.v0.unions.payment_capture_option'],
16480
- review: T['io.flow.payment.gateway.v0.models.payment_request_review'],
16481
- });
16482
-
16483
- T['io.flow.internal.v0.models.internal_payment_request'] = PropTypes.exact({
16484
- payment_request: T['io.flow.payment.gateway.v0.models.payment_request'].isRequired,
16485
- actual_action: T['io.flow.payment.gateway.v0.unions.action'],
16486
- });
16487
-
16488
- T['io.flow.experience.v0.models.order_geo'] = PropTypes.exact({
16489
- ip: PropTypes.string,
16490
- country: PropTypes.string.isRequired,
16491
- currency: PropTypes.string,
16492
- language: PropTypes.string,
16493
- });
16494
-
16495
- T['io.flow.harmonization.v0.models.tax_registration'] = PropTypes.exact({
16496
- id: PropTypes.string.isRequired,
16497
- key: PropTypes.string.isRequired,
16498
- number: PropTypes.string.isRequired,
16499
- timestamp: PropTypes.string.isRequired,
16500
- result: T['io.flow.harmonization.v0.enums.tax_verification_result'].isRequired,
16501
- result_reason: PropTypes.string,
16502
- name: PropTypes.string,
16503
- address: PropTypes.string,
16504
- company_name: PropTypes.string,
16505
- });
16506
-
16507
- T['io.flow.experience.v0.models.order_rules_summary'] = PropTypes.exact({
16508
- applied: PropTypes.arrayOf(T['io.flow.experience.v0.models.order_rule_reference']).isRequired,
16509
- });
16510
-
16511
- T['io.flow.common.v0.enums.delivered_duty'] = PropTypes.oneOf(['paid', 'unpaid']);
16512
-
16513
- T['io.flow.ratecard.v0.models.ratecard_lane_import_form'] = PropTypes.exact({
16514
- ratecard_owner: T['io.flow.fulfillment.v0.enums.ratecard_owner'].isRequired,
16515
- service: PropTypes.string.isRequired,
16516
- currency: PropTypes.string.isRequired,
16517
- delivered_duty: T['io.flow.common.v0.enums.delivered_duty'].isRequired,
16518
- origin: T['io.flow.common.v0.models.zone'].isRequired,
16519
- destination: T['io.flow.common.v0.models.zone'].isRequired,
16520
- shipment_window: T['io.flow.ratecard.v0.models.shipment_window'].isRequired,
16521
- dim_factor: PropTypes.number.isRequired,
16522
- weight_unit: T['io.flow.common.v0.enums.unit_of_measurement'].isRequired,
16523
- distance_unit: T['io.flow.common.v0.enums.unit_of_measurement'].isRequired,
16524
- rates: PropTypes.arrayOf(T['io.flow.ratecard.v0.models.ratecard_rate_form']).isRequired,
16525
- });
16526
-
16527
- T['io.flow.experience.v0.models.order_builder_delivered_duty_form'] = PropTypes.exact({
16528
- delivered_duty: T['io.flow.common.v0.enums.delivered_duty'].isRequired,
16529
- });
16530
-
16531
- T['io.flow.experience.v0.models.experience_form'] = PropTypes.exact({
16532
- region_id: PropTypes.string.isRequired,
16533
- name: PropTypes.string.isRequired,
16534
- delivered_duty: T['io.flow.common.v0.enums.delivered_duty'],
16535
- country: PropTypes.string,
16536
- currency: PropTypes.string,
16537
- language: PropTypes.string,
16538
- key: PropTypes.string,
16539
- position: PropTypes.number,
16540
- measurement_system: T['io.flow.common.v0.enums.measurement_system'],
16541
- subcatalog_id: PropTypes.string,
16542
- });
16543
-
16544
- T['io.flow.experience.v0.models.experience_defaults'] = PropTypes.exact({
16545
- key: PropTypes.string.isRequired,
16546
- name: PropTypes.string.isRequired,
16547
- delivered_duty: T['io.flow.common.v0.enums.delivered_duty'].isRequired,
16548
- country: PropTypes.string.isRequired,
16549
- currency: PropTypes.string.isRequired,
16550
- language: PropTypes.string.isRequired,
16551
- measurement_system: T['io.flow.common.v0.enums.measurement_system'].isRequired,
16552
- });
16553
-
16554
- T['io.flow.experience.v0.models.delivered_duty_setting'] = PropTypes.exact({
16555
- 'default': T['io.flow.common.v0.enums.delivered_duty'].isRequired,
16556
- available: PropTypes.arrayOf(T['io.flow.common.v0.enums.delivered_duty']).isRequired,
16557
- display: T['io.flow.experience.v0.enums.delivered_duty_display_type'],
16558
- });
16559
-
16560
- T['io.flow.experience.v0.models.experience_settings'] = PropTypes.exact({
16561
- delivered_duty: T['io.flow.experience.v0.models.delivered_duty_setting'].isRequired,
16562
- pricing_settings: T['io.flow.experience.v0.models.pricing_settings'],
16563
- logistics_settings: T['io.flow.experience.v0.models.logistics_settings'],
16564
- checkout_settings: T['io.flow.experience.v0.models.experience_checkout_configuration_settings'],
16565
- });
16566
-
16567
- T['io.flow.experience.v0.models.experience'] = PropTypes.exact({
16568
- discriminator: PropTypes.oneOf(['experience']).isRequired,
16569
- id: PropTypes.string.isRequired,
16570
- key: PropTypes.string.isRequired,
16571
- name: PropTypes.string.isRequired,
16572
- delivered_duty: T['io.flow.common.v0.enums.delivered_duty'].isRequired,
16573
- region: T['io.flow.experience.v0.models.region_reference'].isRequired,
16574
- country: PropTypes.string.isRequired,
16575
- currency: PropTypes.string.isRequired,
16576
- language: PropTypes.string.isRequired,
16577
- measurement_system: T['io.flow.common.v0.enums.measurement_system'].isRequired,
16578
- subcatalog: T['io.flow.catalog.v0.models.subcatalog_reference'].isRequired,
16579
- position: PropTypes.number.isRequired,
16580
- settings: T['io.flow.experience.v0.models.experience_settings'].isRequired,
16581
- status: T['io.flow.experience.v0.enums.experience_status'],
16582
- });
16583
-
16584
- T['io.flow.internal.v0.models.delivered_duty_preference_form'] = PropTypes.exact({
16585
- methods: PropTypes.arrayOf(T['io.flow.common.v0.enums.delivered_duty']).isRequired,
16586
- 'default': T['io.flow.common.v0.enums.delivered_duty'],
16587
- display: T['io.flow.experience.v0.enums.delivered_duty_display_type'],
16588
- });
16589
-
16590
- T['io.flow.internal.v0.models.delivered_duty_preference'] = PropTypes.exact({
16591
- methods: PropTypes.arrayOf(T['io.flow.common.v0.enums.delivered_duty']).isRequired,
16592
- 'default': T['io.flow.common.v0.enums.delivered_duty'].isRequired,
16593
- display: T['io.flow.experience.v0.enums.delivered_duty_display_type'].isRequired,
16594
- });
16595
-
16596
- T['io.flow.internal.v0.models.delivered_duty_option'] = PropTypes.exact({
16597
- methods: PropTypes.arrayOf(T['io.flow.common.v0.enums.delivered_duty']).isRequired,
16598
- message: T['io.flow.internal.v0.models.delivered_duty_option_message'],
16599
- selectable: PropTypes.bool.isRequired,
16600
- });
16601
-
16602
- T['io.flow.internal.v0.models.delivered_duty_options'] = PropTypes.exact({
16603
- options: PropTypes.arrayOf(T['io.flow.internal.v0.models.delivered_duty_option']).isRequired,
16604
- message: T['io.flow.internal.v0.models.delivered_duty_options_message'],
16605
- });
16606
-
16607
- T['io.flow.experience.v0.unions.expandable_experience'] = PropTypes.oneOfType([
16608
- T['io.flow.experience.v0.models.experience'],
16609
- T['io.flow.experience.v0.models.experience_reference'],
16610
- ]);
16611
-
16612
- T['io.flow.common.v0.enums.order_merchant_of_record'] = PropTypes.oneOf(['flow', 'organization', 'mixed']);
16613
-
16614
- T['io.flow.payment.v0.models.card_metadata'] = PropTypes.exact({
16615
- merchant_of_record: T['io.flow.common.v0.enums.order_merchant_of_record'],
16616
- });
16617
-
16618
- T['io.flow.experience.v0.enums.order_type'] = PropTypes.oneOf(['standard', 'replacement']);
16619
-
16620
- T['io.flow.experience.v0.models.address_configuration'] = PropTypes.exact({
16621
- country: PropTypes.string.isRequired,
16622
- field_validation: T['io.flow.experience.v0.models.address_field_validation'].isRequired,
16623
- provinces: PropTypes.arrayOf(T['io.flow.experience.v0.models.address_configuration_province']).isRequired,
16624
- formats: PropTypes.arrayOf(T['io.flow.experience.v0.models.address_configuration_format']),
16625
- province_type: T['io.flow.reference.v0.enums.province_type'],
16626
- postal_type: T['io.flow.reference.v0.enums.postal_type'],
16627
- });
16628
-
16629
- T['io.flow.reference.v0.models.province'] = PropTypes.exact({
16630
- id: PropTypes.string.isRequired,
16631
- iso_3166_2: PropTypes.string.isRequired,
16632
- name: PropTypes.string.isRequired,
16633
- country: PropTypes.string.isRequired,
16634
- province_type: T['io.flow.reference.v0.enums.province_type'].isRequired,
16635
- translations: PropTypes.arrayOf(T['io.flow.reference.v0.models.localized_translation']),
16636
- });
16637
-
16638
- T['io.flow.reference.v0.models.country'] = PropTypes.exact({
16639
- name: PropTypes.string.isRequired,
16640
- iso_3166_2: PropTypes.string.isRequired,
16641
- iso_3166_3: PropTypes.string.isRequired,
16642
- languages: PropTypes.arrayOf(PropTypes.string).isRequired,
16643
- measurement_system: PropTypes.string.isRequired,
16644
- default_currency: PropTypes.string,
16645
- default_language: PropTypes.string,
16646
- timezones: PropTypes.arrayOf(PropTypes.string).isRequired,
16647
- default_delivered_duty: PropTypes.string,
16648
- });
16649
-
16650
- T['io.flow.session.v0.models.session_geo'] = PropTypes.exact({
16651
- country: T['io.flow.reference.v0.models.country'].isRequired,
16652
- currency: T['io.flow.reference.v0.models.currency'].isRequired,
16653
- language: T['io.flow.reference.v0.models.language'].isRequired,
16654
- locale: T['io.flow.reference.v0.models.locale'].isRequired,
16655
- });
16656
-
16657
- T['io.flow.session.v0.models.local_session'] = PropTypes.exact({
16658
- country: T['io.flow.reference.v0.models.country'].isRequired,
16659
- currency: T['io.flow.reference.v0.models.currency'].isRequired,
16660
- language: T['io.flow.reference.v0.models.language'].isRequired,
16661
- locale: T['io.flow.reference.v0.models.locale'].isRequired,
16662
- experience: T['io.flow.experience.v0.models.experience_geo'].isRequired,
16663
- });
16664
-
16665
- T['io.flow.shopify.merchant.config.v0.models.country_of_origin'] = PropTypes.exact({
16666
- country: T['io.flow.reference.v0.models.country'].isRequired,
16667
- });
16668
-
16669
- T['io.flow.internal.v0.models.resync_fallback_rates'] = PropTypes.exact({
16670
- destinations: PropTypes.arrayOf(T['io.flow.reference.v0.models.country']).isRequired,
16671
- });
16672
-
16673
- T['io.flow.internal.v0.models.resync_by_hs6_origin'] = PropTypes.exact({
16674
- hs6_code: PropTypes.string.isRequired,
16675
- origin: T['io.flow.reference.v0.models.country'].isRequired,
16676
- });
16701
+ T['io.flow.reference.v0.enums.payment_method_type'] = PropTypes.oneOf(['card', 'online', 'offline']);
16677
16702
 
16678
- T['io.flow.internal.v0.models.resync_by_hs6_destinations'] = PropTypes.exact({
16679
- hs6_code: PropTypes.string.isRequired,
16680
- destinations: PropTypes.arrayOf(T['io.flow.reference.v0.models.country']).isRequired,
16703
+ T['io.flow.reference.v0.models.payment_method'] = PropTypes.exact({
16704
+ id: PropTypes.string.isRequired,
16705
+ type: T['io.flow.reference.v0.enums.payment_method_type'].isRequired,
16706
+ name: PropTypes.string.isRequired,
16707
+ images: T['io.flow.reference.v0.models.payment_method_images'].isRequired,
16708
+ regions: PropTypes.arrayOf(PropTypes.string).isRequired,
16709
+ capabilities: PropTypes.arrayOf(T['io.flow.reference.v0.enums.payment_method_capability']),
16681
16710
  });
16682
16711
 
16683
- T['io.flow.internal.v0.models.resync_by_destinations'] = PropTypes.exact({
16684
- destinations: PropTypes.arrayOf(T['io.flow.reference.v0.models.country']).isRequired,
16712
+ T['io.flow.customer.v0.models.customer_payment'] = PropTypes.exact({
16713
+ payment_methods: PropTypes.arrayOf(T['io.flow.reference.v0.models.payment_method']).isRequired,
16685
16714
  });
16686
16715
 
16687
- T['io.flow.internal.v0.models.rates_names_summary'] = PropTypes.exact({
16688
- origin: T['io.flow.reference.v0.models.country'].isRequired,
16689
- destination: T['io.flow.reference.v0.models.country'].isRequired,
16690
- summaries: PropTypes.arrayOf(T['io.flow.internal.v0.models.rate_name_summary']).isRequired,
16716
+ T['io.flow.internal.v0.models.payment_method_detail'] = PropTypes.exact({
16717
+ method: T['io.flow.reference.v0.models.payment_method'].isRequired,
16718
+ method_options: PropTypes.arrayOf(T['io.flow.internal.v0.models.payment_method_option']),
16691
16719
  });
16692
16720
 
16693
- T['io.flow.internal.v0.models.rates_changed'] = PropTypes.exact({
16694
- event_id: PropTypes.string.isRequired,
16695
- timestamp: PropTypes.string.isRequired,
16696
- hs6: PropTypes.string.isRequired,
16697
- origin: T['io.flow.reference.v0.models.country'].isRequired,
16698
- destination: T['io.flow.reference.v0.models.country'].isRequired,
16721
+ T['io.flow.experience.v0.models.payment_method_rule'] = PropTypes.exact({
16722
+ tags: PropTypes.arrayOf(T['io.flow.experience.v0.unions.payment_method_tag']).isRequired,
16723
+ payment_method: T['io.flow.reference.v0.models.payment_method'].isRequired,
16724
+ display_position: PropTypes.number.isRequired,
16725
+ content: PropTypes.arrayOf(T['io.flow.experience.v0.models.payment_method_rule_content']),
16726
+ issuers: PropTypes.arrayOf(T['io.flow.experience.v0.models.payment_method_issuer']),
16727
+ programs: PropTypes.arrayOf(PropTypes.object),
16728
+ q: T['io.flow.query.builder.v0.models.query'],
16699
16729
  });
16700
16730
 
16701
- T['io.flow.internal.v0.models.rate_source_summary'] = PropTypes.exact({
16702
- discriminator: PropTypes.oneOf(['rate-source']).isRequired,
16703
- key: PropTypes.string.isRequired,
16704
- destination: T['io.flow.reference.v0.models.country'].isRequired,
16705
- rate_source_composition_summaries: PropTypes.arrayOf(T['io.flow.internal.v0.models.rate_source_composition_summary']).isRequired,
16731
+ T['io.flow.experience.v0.models.experience_payment_method_rule'] = PropTypes.exact({
16732
+ experience_key: PropTypes.string.isRequired,
16733
+ payment_method_rules: PropTypes.arrayOf(T['io.flow.experience.v0.models.payment_method_rule']).isRequired,
16706
16734
  });
16707
16735
 
16708
- T['io.flow.internal.v0.models.rate_source_summary_upserted'] = PropTypes.exact({
16709
- discriminator: PropTypes.oneOf(['rate_source_summary_upserted']).isRequired,
16710
- event_id: PropTypes.string.isRequired,
16711
- timestamp: PropTypes.string.isRequired,
16712
- rate_source_summary: T['io.flow.internal.v0.models.rate_source_summary'].isRequired,
16736
+ T['io.flow.payment.v0.models.public_key'] = PropTypes.exact({
16737
+ id: PropTypes.string.isRequired,
16713
16738
  });
16714
16739
 
16715
- T['io.flow.internal.v0.models.rate_source_summary_deleted'] = PropTypes.exact({
16716
- discriminator: PropTypes.oneOf(['rate_source_summary_deleted']).isRequired,
16717
- event_id: PropTypes.string.isRequired,
16718
- timestamp: PropTypes.string.isRequired,
16719
- rate_source_summary: T['io.flow.internal.v0.models.rate_source_summary'].isRequired,
16720
- });
16740
+ T['io.flow.internal.v0.enums.checkout_redirect_method'] = PropTypes.oneOf(['get', 'post']);
16721
16741
 
16722
- T['io.flow.internal.v0.models.rate_destination_freshness_summary'] = PropTypes.exact({
16723
- destination: T['io.flow.reference.v0.models.country'].isRequired,
16724
- percentage_updated: PropTypes.number.isRequired,
16742
+ T['io.flow.internal.v0.models.checkout_redirect'] = PropTypes.exact({
16743
+ method: T['io.flow.internal.v0.enums.checkout_redirect_method'].isRequired,
16744
+ url: PropTypes.string.isRequired,
16745
+ body: PropTypes.string,
16725
16746
  });
16726
16747
 
16727
- T['io.flow.internal.v0.models.rate_freshness_summary'] = PropTypes.exact({
16728
- discriminator: PropTypes.oneOf(['rate-freshness']).isRequired,
16729
- key: PropTypes.string.isRequired,
16730
- updated_since: PropTypes.string.isRequired,
16731
- destination_freshness_summaries: PropTypes.arrayOf(T['io.flow.internal.v0.models.rate_destination_freshness_summary']).isRequired,
16748
+ T['io.flow.internal.v0.enums.checkout_error_code'] = PropTypes.oneOf([
16749
+ 'generic_error',
16750
+ 'order_identifier_invalid',
16751
+ 'url_invalid',
16752
+ 'organization_invalid',
16753
+ 'session_invalid',
16754
+ 'session_missing',
16755
+ 'session_organization_invalid',
16756
+ 'country_invalid',
16757
+ 'currency_invalid',
16758
+ 'language_invalid',
16759
+ 'checkout_invalid',
16760
+ ]);
16761
+
16762
+ T['io.flow.internal.v0.models.checkbox'] = PropTypes.exact({
16763
+ name: PropTypes.string.isRequired,
16764
+ value: PropTypes.string.isRequired,
16765
+ label: PropTypes.string.isRequired,
16766
+ checked_by_default: PropTypes.bool.isRequired,
16767
+ required: PropTypes.bool.isRequired,
16732
16768
  });
16733
16769
 
16734
- T['io.flow.internal.v0.unions.internal_harmonization_statistic'] = PropTypes.oneOfType([
16735
- T['io.flow.internal.v0.models.time_to_classify'],
16736
- T['io.flow.internal.v0.models.time_to_classify_aggregated'],
16737
- T['io.flow.internal.v0.models.rate_source_summary'],
16738
- T['io.flow.internal.v0.models.rate_freshness_summary'],
16739
- ]);
16770
+ T['io.flow.internal.v0.enums.format'] = PropTypes.oneOf(['text', 'phone', 'email']);
16740
16771
 
16741
- T['io.flow.internal.v0.models.rate_freshness_summary_upserted'] = PropTypes.exact({
16742
- discriminator: PropTypes.oneOf(['rate_freshness_summary_upserted']).isRequired,
16743
- event_id: PropTypes.string.isRequired,
16744
- timestamp: PropTypes.string.isRequired,
16745
- rate_freshness_summary: T['io.flow.internal.v0.models.rate_freshness_summary'].isRequired,
16772
+ T['io.flow.internal.v0.models.logo'] = PropTypes.exact({
16773
+ url: PropTypes.string.isRequired,
16746
16774
  });
16747
16775
 
16748
- T['io.flow.internal.v0.models.rate_freshness_summary_deleted'] = PropTypes.exact({
16749
- discriminator: PropTypes.oneOf(['rate_freshness_summary_deleted']).isRequired,
16750
- event_id: PropTypes.string.isRequired,
16751
- timestamp: PropTypes.string.isRequired,
16752
- rate_freshness_summary: T['io.flow.internal.v0.models.rate_freshness_summary'].isRequired,
16776
+ T['io.flow.catalog.v0.models.image'] = PropTypes.exact({
16777
+ url: PropTypes.string.isRequired,
16778
+ tags: PropTypes.arrayOf(T['io.flow.catalog.v0.enums.image_tag']).isRequired,
16779
+ attributes: PropTypes.objectOf(PropTypes.string),
16753
16780
  });
16754
16781
 
16755
- T['io.flow.internal.v0.models.quote_request'] = PropTypes.exact({
16756
- id: PropTypes.string.isRequired,
16757
- request_type: T['io.flow.internal.v0.enums.quote_request_type'].isRequired,
16758
- experience_keys: PropTypes.arrayOf(PropTypes.string),
16759
- item_numbers: PropTypes.arrayOf(PropTypes.string),
16760
- rates: PropTypes.arrayOf(T['io.flow.internal.v0.models.currency_internal_rate']),
16761
- countries: PropTypes.arrayOf(T['io.flow.reference.v0.models.country']),
16762
- reason: PropTypes.string,
16782
+ T['io.flow.experience.v0.models.checkout_item_content_attribute'] = PropTypes.exact({
16783
+ key: PropTypes.string.isRequired,
16784
+ name: PropTypes.string.isRequired,
16785
+ value: PropTypes.string.isRequired,
16763
16786
  });
16764
16787
 
16765
- T['io.flow.internal.v0.models.pregenerated_request_event'] = PropTypes.exact({
16766
- discriminator: PropTypes.oneOf(['pregenerated_request_event']).isRequired,
16767
- event_id: PropTypes.string.isRequired,
16768
- timestamp: PropTypes.string.isRequired,
16769
- organization: PropTypes.string.isRequired,
16770
- quote_request: T['io.flow.internal.v0.models.quote_request'].isRequired,
16788
+ T['io.flow.internal.v0.models.checkout_marketing_content'] = PropTypes.exact({
16789
+ optins: PropTypes.arrayOf(T['io.flow.internal.v0.models.checkbox']).isRequired,
16790
+ });
16791
+
16792
+ T['io.flow.internal.v0.models.checkout_url'] = PropTypes.exact({
16793
+ url: PropTypes.string.isRequired,
16794
+ type: T['io.flow.internal.v0.enums.checkout_url_type'].isRequired,
16771
16795
  });
16772
16796
 
16773
16797
  T['io.flow.internal.v0.enums.checkout_shipping_method_prompt_behavior'] = PropTypes.oneOf(['always', 'multiple']);
@@ -17402,10 +17426,6 @@ T['io.flow.internal.v0.models.harmonization_unclassified_statistics'] = PropType
17402
17426
  statistics: PropTypes.arrayOf(T['io.flow.internal.v0.models.unclassified_product_statistic']).isRequired,
17403
17427
  });
17404
17428
 
17405
- T['io.flow.internal.v0.models.checkout_bundle_metadata'] = PropTypes.exact({
17406
- organization: T['io.flow.common.v0.models.organization_summary'].isRequired,
17407
- });
17408
-
17409
17429
  T['io.flow.internal.v0.models.channel_form'] = PropTypes.exact({
17410
17430
  name: PropTypes.string.isRequired,
17411
17431
  environment: T['io.flow.common.v0.enums.environment'].isRequired,
@@ -18873,143 +18893,7 @@ T['io.flow.internal.v0.models.bulk_classification_action'] = PropTypes.exact({
18873
18893
  T['io.flow.internal.v0.unions.classification_action'] = PropTypes.oneOfType([
18874
18894
  T['io.flow.internal.v0.models.single_classification_action'],
18875
18895
  T['io.flow.internal.v0.models.bulk_classification_action'],
18876
- ]);
18877
-
18878
- T['io.flow.internal.v0.models.browser_bundle_payment_method_form'] = PropTypes.exact({
18879
- experience_key: PropTypes.string.isRequired,
18880
- country: PropTypes.string.isRequired,
18881
- });
18882
-
18883
- T['io.flow.internal.v0.models.browser_bundle_country_picker_form'] = PropTypes.exact({
18884
- country: PropTypes.string,
18885
- ip: PropTypes.string,
18886
- });
18887
-
18888
- T['io.flow.internal.v0.models.browser_bundle_optin_form'] = PropTypes.exact({
18889
- country: PropTypes.string.isRequired,
18890
- });
18891
-
18892
- T['io.flow.internal.v0.models.feature_geo_form'] = PropTypes.exact({
18893
- country: PropTypes.string,
18894
- currency: PropTypes.string,
18895
- language: PropTypes.string,
18896
- locale: PropTypes.string,
18897
- region: PropTypes.string,
18898
- });
18899
-
18900
- T['io.flow.internal.v0.models.feature_context_form'] = PropTypes.exact({
18901
- experience_key: PropTypes.string,
18902
- geo: T['io.flow.internal.v0.models.feature_geo_form'],
18903
- });
18904
-
18905
- T['io.flow.internal.v0.models.feature_value_form'] = PropTypes.exact({
18906
- feature_query: PropTypes.string.isRequired,
18907
- context: T['io.flow.internal.v0.models.feature_context_form'].isRequired,
18908
- });
18909
-
18910
- T['io.flow.internal.v0.models.browser_bundle_feature_form'] = PropTypes.exact({
18911
- keys: PropTypes.arrayOf(PropTypes.string).isRequired,
18912
- context: T['io.flow.internal.v0.models.feature_context_form'].isRequired,
18913
- });
18914
-
18915
- T['io.flow.internal.v0.models.browser_bundle_form'] = PropTypes.exact({
18916
- optin: T['io.flow.internal.v0.models.browser_bundle_optin_form'],
18917
- country_picker: T['io.flow.internal.v0.models.browser_bundle_country_picker_form'],
18918
- feature: T['io.flow.internal.v0.models.browser_bundle_feature_form'],
18919
- payment_method: T['io.flow.internal.v0.models.browser_bundle_payment_method_form'],
18920
- });
18921
-
18922
- T['io.flow.internal.v0.enums.browser_bundle_error_code'] = PropTypes.oneOf(['generic_error', 'country_invalid']);
18923
-
18924
- T['io.flow.internal.v0.models.browser_bundle_error'] = PropTypes.exact({
18925
- code: T['io.flow.internal.v0.enums.browser_bundle_error_code'].isRequired,
18926
- messages: PropTypes.arrayOf(PropTypes.string).isRequired,
18927
- });
18928
-
18929
- T['io.flow.internal.v0.models.browser_bundle_payment_method'] = PropTypes.exact({
18930
- id: PropTypes.string.isRequired,
18931
- });
18932
-
18933
- T['io.flow.internal.v0.unions.optin_prompt_display'] = PropTypes.oneOfType([T['io.flow.internal.v0.models.optin_prompt_checkout_display']]);
18934
-
18935
- T['io.flow.internal.v0.unions.localizable_content'] = PropTypes.oneOfType([
18936
- T['io.flow.internal.v0.models.localizable_content_reference'],
18937
- T['io.flow.internal.v0.models.localization'],
18938
- ]);
18939
-
18940
- T['io.flow.internal.v0.enums.prompt_options'] = PropTypes.oneOf(['notice_only', 'require_consent', 'consent_by_default']);
18941
-
18942
- T['io.flow.internal.v0.models.optin_prompt_form'] = PropTypes.exact({
18943
- optin_attribute_key: PropTypes.string.isRequired,
18944
- region: PropTypes.string.isRequired,
18945
- options: PropTypes.arrayOf(T['io.flow.internal.v0.enums.prompt_options']).isRequired,
18946
- content: T['io.flow.internal.v0.models.localization_form'].isRequired,
18947
- position: PropTypes.number.isRequired,
18948
- enforce_on: PropTypes.string,
18949
- display: T['io.flow.internal.v0.unions.optin_prompt_display'],
18950
- });
18951
-
18952
- T['io.flow.internal.v0.models.optin_attribute'] = PropTypes.exact({
18953
- name: PropTypes.string.isRequired,
18954
- optin_attribute_key: PropTypes.string.isRequired,
18955
- target: T['io.flow.internal.v0.enums.prompt_target'].isRequired,
18956
- status: T['io.flow.internal.v0.enums.content_status'].isRequired,
18957
- created_at: PropTypes.string.isRequired,
18958
- updated_at: PropTypes.string.isRequired,
18959
- });
18960
-
18961
- T['io.flow.internal.v0.models.country_picker_country_data'] = PropTypes.exact({
18962
- country: PropTypes.string.isRequired,
18963
- delivery_window: PropTypes.arrayOf(T['io.flow.internal.v0.models.country_picker_delivery_window']).isRequired,
18964
- });
18965
-
18966
- T['io.flow.internal.v0.models.country_picker_experience_data'] = PropTypes.exact({
18967
- experience_key: PropTypes.string.isRequired,
18968
- payment_methods: PropTypes.arrayOf(T['io.flow.internal.v0.models.country_picker_payment_method']).isRequired,
18969
- });
18970
-
18971
- T['io.flow.internal.v0.models.country_picker_currency'] = PropTypes.exact({
18972
- iso_4217_3: PropTypes.string.isRequired,
18973
- name: PropTypes.string.isRequired,
18974
- });
18975
-
18976
- T['io.flow.internal.v0.models.country_picker_country'] = PropTypes.exact({
18977
- iso_3166_2: PropTypes.string.isRequired,
18978
- iso_3166_3: PropTypes.string.isRequired,
18979
- name: PropTypes.string.isRequired,
18980
- default_currency: PropTypes.string,
18981
- });
18982
-
18983
- T['io.flow.internal.v0.models.browser_bundle_payment_methods'] = PropTypes.exact({
18984
- displayed: PropTypes.arrayOf(T['io.flow.internal.v0.models.browser_bundle_payment_method']),
18985
- });
18986
-
18987
- T['io.flow.internal.v0.models.optin_prompt'] = PropTypes.exact({
18988
- id: PropTypes.string.isRequired,
18989
- optin_attribute: T['io.flow.internal.v0.models.optin_attribute'].isRequired,
18990
- region: PropTypes.string.isRequired,
18991
- options: PropTypes.arrayOf(T['io.flow.internal.v0.enums.prompt_options']).isRequired,
18992
- content: T['io.flow.internal.v0.unions.localizable_content'].isRequired,
18993
- position: PropTypes.number.isRequired,
18994
- enforce_on: PropTypes.string.isRequired,
18995
- display: T['io.flow.internal.v0.unions.optin_prompt_display'],
18996
- });
18997
-
18998
- T['io.flow.internal.v0.models.optin_prompt_upserted'] = PropTypes.exact({
18999
- discriminator: PropTypes.oneOf(['optin_prompt_upserted']).isRequired,
19000
- event_id: PropTypes.string.isRequired,
19001
- timestamp: PropTypes.string.isRequired,
19002
- id: PropTypes.string.isRequired,
19003
- organization: PropTypes.string.isRequired,
19004
- optin_prompt: T['io.flow.internal.v0.models.optin_prompt'].isRequired,
19005
- });
19006
-
19007
- T['io.flow.internal.v0.models.country_picker_data'] = PropTypes.exact({
19008
- countries: PropTypes.arrayOf(T['io.flow.internal.v0.models.country_picker_country']).isRequired,
19009
- currencies: PropTypes.arrayOf(T['io.flow.internal.v0.models.country_picker_currency']).isRequired,
19010
- experience_data: PropTypes.arrayOf(T['io.flow.internal.v0.models.country_picker_experience_data']),
19011
- country_data: PropTypes.arrayOf(T['io.flow.internal.v0.models.country_picker_country_data']),
19012
- });
18896
+ ]);
19013
18897
 
19014
18898
  T['io.flow.brickftp.v0.enums.webhook_event_type'] = PropTypes.oneOf(['directory', 'file']);
19015
18899
  T['io.flow.brickftp.v0.enums.webhook_event_interface'] = PropTypes.oneOf(['web', 'ftp', 'robot', 'jsapi', 'restapi', 'sftp', 'dav']);
@@ -19052,13 +18936,6 @@ T['io.flow.internal.v0.models.feature_value_result'] = PropTypes.exact({
19052
18936
  values: PropTypes.arrayOf(T['io.flow.internal.v0.unions.feature_value']).isRequired,
19053
18937
  });
19054
18938
 
19055
- T['io.flow.internal.v0.models.browser_bundle'] = PropTypes.exact({
19056
- country_picker: T['io.flow.internal.v0.models.country_picker_data'].isRequired,
19057
- optins: PropTypes.arrayOf(T['io.flow.internal.v0.models.optin_prompt']).isRequired,
19058
- features: T['io.flow.internal.v0.models.feature_value_result'].isRequired,
19059
- payment_methods: T['io.flow.internal.v0.models.browser_bundle_payment_methods'],
19060
- });
19061
-
19062
18939
  T['io.flow.internal.v0.models.bitpay_authentication_form'] = PropTypes.exact({
19063
18940
  api_token: PropTypes.string.isRequired,
19064
18941
  public_key: PropTypes.string.isRequired,
@@ -19629,6 +19506,13 @@ T['io.flow.customer.v0.models.customer_put_form'] = PropTypes.exact({
19629
19506
  phone: PropTypes.string,
19630
19507
  });
19631
19508
 
19509
+ T['io.flow.customer.v0.models.customer_form'] = PropTypes.exact({
19510
+ number: PropTypes.string.isRequired,
19511
+ email: PropTypes.string,
19512
+ name: T['io.flow.common.v0.models.name'],
19513
+ phone: PropTypes.string,
19514
+ });
19515
+
19632
19516
  T['io.flow.internal.v0.models.search_customer_summary'] = PropTypes.exact({
19633
19517
  name: T['io.flow.common.v0.models.name'].isRequired,
19634
19518
  email: PropTypes.string,
@@ -19724,13 +19608,6 @@ T['io.flow.internal.v0.models.order_note'] = PropTypes.exact({
19724
19608
  updated_at: PropTypes.string.isRequired,
19725
19609
  });
19726
19610
 
19727
- T['io.flow.customer.v0.models.customer_form'] = PropTypes.exact({
19728
- number: PropTypes.string.isRequired,
19729
- email: PropTypes.string,
19730
- name: T['io.flow.common.v0.models.name'],
19731
- phone: PropTypes.string,
19732
- });
19733
-
19734
19611
  T['io.flow.customer.v0.models.customer'] = PropTypes.exact({
19735
19612
  id: PropTypes.string.isRequired,
19736
19613
  number: PropTypes.string.isRequired,
@@ -19764,19 +19641,6 @@ T['io.flow.customer.v0.models.customer_address_book_form'] = PropTypes.exact({
19764
19641
  contacts: PropTypes.arrayOf(T['io.flow.customer.v0.models.customer_address_book_contact_form']).isRequired,
19765
19642
  });
19766
19643
 
19767
- T['io.flow.internal.v0.models.checkout_order_number_form'] = PropTypes.exact({
19768
- discriminator: PropTypes.oneOf(['order_number']).isRequired,
19769
- organization: PropTypes.string.isRequired,
19770
- order_number: PropTypes.string.isRequired,
19771
- customer: T['io.flow.customer.v0.models.customer_form'],
19772
- address_book: T['io.flow.customer.v0.models.customer_address_book_form'],
19773
- payment_sources: PropTypes.arrayOf(T['io.flow.payment.v0.unions.payment_source_form']),
19774
- urls: T['io.flow.checkout.v0.models.checkout_urls_form'],
19775
- identifiers: PropTypes.arrayOf(T['io.flow.experience.v0.models.order_submission_identifier_form']),
19776
- feature_keys: PropTypes.arrayOf(PropTypes.string),
19777
- order_parameters: T['io.flow.internal.v0.models.order_parameters'],
19778
- });
19779
-
19780
19644
  T['io.flow.customer.v0.models.customer_address_book_contact'] = PropTypes.exact({
19781
19645
  id: PropTypes.string.isRequired,
19782
19646
  address: T['io.flow.common.v0.models.address'].isRequired,
@@ -20514,6 +20378,12 @@ T['io.flow.internal.v0.models.search_authorization'] = PropTypes.exact({
20514
20378
 
20515
20379
  T['io.flow.internal.v0.unions.payment_summary_details'] = PropTypes.oneOfType([T['io.flow.internal.v0.models.search_authorization']]);
20516
20380
 
20381
+ T['io.flow.internal.v0.models.shopify_merchant_plan'] = PropTypes.exact({
20382
+ id: PropTypes.string.isRequired,
20383
+ authorization: T['io.flow.payment.v0.models.authorization_reference'].isRequired,
20384
+ plan: T['io.flow.internal.v0.enums.shopify_plan_type'].isRequired,
20385
+ });
20386
+
20517
20387
  T['io.flow.internal.v0.models.authorization_bundle'] = PropTypes.exact({
20518
20388
  id: PropTypes.string.isRequired,
20519
20389
  organization_id: PropTypes.string.isRequired,
@@ -22097,40 +21967,6 @@ T['io.flow.internal.v0.models.rate_with_fees'] = PropTypes.exact({
22097
21967
  fees: PropTypes.arrayOf(T['io.flow.ratecard.v0.unions.ratecard_fee']).isRequired,
22098
21968
  });
22099
21969
 
22100
- T['io.flow.internal.v0.models.ratecard_lane_aggregate'] = PropTypes.exact({
22101
- id: PropTypes.string.isRequired,
22102
- organization_id: PropTypes.string.isRequired,
22103
- origin: T['io.flow.common.v0.models.zone'].isRequired,
22104
- destination: T['io.flow.common.v0.models.zone'].isRequired,
22105
- currency: PropTypes.string.isRequired,
22106
- delivered_duty: T['io.flow.common.v0.enums.delivered_duty'].isRequired,
22107
- shipment_window: T['io.flow.ratecard.v0.models.shipment_window'].isRequired,
22108
- dim_factor: PropTypes.number.isRequired,
22109
- service: T['io.flow.ratecard.v0.models.ratecard_service_summary'].isRequired,
22110
- rounding: T['io.flow.common.v0.models.rounding'].isRequired,
22111
- weight_unit: T['io.flow.common.v0.enums.unit_of_measurement'].isRequired,
22112
- distance_unit: T['io.flow.common.v0.enums.unit_of_measurement'].isRequired,
22113
- rates_with_fees: PropTypes.arrayOf(T['io.flow.internal.v0.models.rate_with_fees']).isRequired,
22114
- ratecard: T['io.flow.ratecard.v0.models.ratecard_reference'].isRequired,
22115
- ratecard_owner: T['io.flow.fulfillment.v0.enums.ratecard_owner'].isRequired,
22116
- });
22117
-
22118
- T['io.flow.internal.v0.models.ratecard_lane_aggregate_upserted'] = PropTypes.exact({
22119
- discriminator: PropTypes.oneOf(['ratecard_lane_aggregate_upserted']).isRequired,
22120
- event_id: PropTypes.string.isRequired,
22121
- timestamp: PropTypes.string.isRequired,
22122
- organization: PropTypes.string.isRequired,
22123
- ratecard_aggregate: T['io.flow.internal.v0.models.ratecard_lane_aggregate'].isRequired,
22124
- });
22125
-
22126
- T['io.flow.internal.v0.models.ratecard_lane_aggregate_deleted'] = PropTypes.exact({
22127
- discriminator: PropTypes.oneOf(['ratecard_lane_aggregate_deleted']).isRequired,
22128
- event_id: PropTypes.string.isRequired,
22129
- timestamp: PropTypes.string.isRequired,
22130
- organization: PropTypes.string.isRequired,
22131
- ratecard_aggregate: T['io.flow.internal.v0.models.ratecard_lane_aggregate'].isRequired,
22132
- });
22133
-
22134
21970
  T['io.flow.ratecard.v0.models.additional_handling_service_fee'] = PropTypes.exact({
22135
21971
  discriminator: PropTypes.oneOf(['additional_handling_service_fee']).isRequired,
22136
21972
  length_girth_threshold: PropTypes.number,
@@ -22393,6 +22229,42 @@ T['io.flow.experience.v0.models.order_replacement_form'] = PropTypes.exact({
22393
22229
  items: PropTypes.arrayOf(T['io.flow.common.v0.models.line_item_form']),
22394
22230
  });
22395
22231
 
22232
+ T['io.flow.experience.v0.models.order_put_form'] = PropTypes.exact({
22233
+ order_type: T['io.flow.experience.v0.enums.order_type'],
22234
+ items: PropTypes.arrayOf(T['io.flow.common.v0.models.line_item_form']).isRequired,
22235
+ customer: T['io.flow.common.v0.models.order_customer_form'],
22236
+ delivered_duty: T['io.flow.common.v0.enums.delivered_duty'],
22237
+ selections: PropTypes.arrayOf(PropTypes.string),
22238
+ destination: T['io.flow.experience.v0.models.order_address'],
22239
+ discount: T['io.flow.common.v0.models.money'],
22240
+ discounts: T['io.flow.common.v0.models.discounts_form'],
22241
+ attributes: PropTypes.objectOf(PropTypes.string),
22242
+ authorization_keys: PropTypes.arrayOf(PropTypes.string),
22243
+ options: T['io.flow.experience.v0.models.order_options'],
22244
+ device_details: T['io.flow.payment.v0.unions.device_details'],
22245
+ payment_source: T['io.flow.experience.v0.enums.order_payment_source_type'],
22246
+ });
22247
+
22248
+ T['io.flow.experience.v0.models.order_form'] = PropTypes.exact({
22249
+ customer: T['io.flow.common.v0.models.order_customer_form'],
22250
+ items: PropTypes.arrayOf(T['io.flow.common.v0.models.line_item_form']).isRequired,
22251
+ delivered_duty: T['io.flow.common.v0.enums.delivered_duty'],
22252
+ number: PropTypes.string,
22253
+ destination: T['io.flow.experience.v0.models.order_address'],
22254
+ discount: T['io.flow.common.v0.models.money'],
22255
+ discounts: T['io.flow.common.v0.models.discounts_form'],
22256
+ attributes: PropTypes.objectOf(PropTypes.string),
22257
+ authorization_keys: PropTypes.arrayOf(PropTypes.string),
22258
+ options: T['io.flow.experience.v0.models.order_options'],
22259
+ device_details: T['io.flow.payment.v0.unions.device_details'],
22260
+ payment_source: T['io.flow.experience.v0.enums.order_payment_source_type'],
22261
+ });
22262
+
22263
+ T['io.flow.experience.v0.models.order_with_discounts_form'] = PropTypes.exact({
22264
+ order: T['io.flow.experience.v0.models.order_form'].isRequired,
22265
+ discounts: PropTypes.arrayOf(PropTypes.string).isRequired,
22266
+ });
22267
+
22396
22268
  T['io.flow.experience.v0.models.order_estimate_form'] = PropTypes.exact({
22397
22269
  items: PropTypes.arrayOf(T['io.flow.common.v0.models.line_item_form']).isRequired,
22398
22270
  destination: T['io.flow.experience.v0.models.order_address'],
@@ -23000,112 +22872,6 @@ T['io.flow.internal.v0.models.dispute_record'] = PropTypes.exact({
23000
22872
  chargeback_amount: T['io.flow.common.v0.models.money_with_base'].isRequired,
23001
22873
  });
23002
22874
 
23003
- T['io.flow.experience.v0.models.order_form'] = PropTypes.exact({
23004
- customer: T['io.flow.common.v0.models.order_customer_form'],
23005
- items: PropTypes.arrayOf(T['io.flow.common.v0.models.line_item_form']).isRequired,
23006
- delivered_duty: T['io.flow.common.v0.enums.delivered_duty'],
23007
- number: PropTypes.string,
23008
- destination: T['io.flow.experience.v0.models.order_address'],
23009
- discount: T['io.flow.common.v0.models.money'],
23010
- discounts: T['io.flow.common.v0.models.discounts_form'],
23011
- attributes: PropTypes.objectOf(PropTypes.string),
23012
- authorization_keys: PropTypes.arrayOf(PropTypes.string),
23013
- options: T['io.flow.experience.v0.models.order_options'],
23014
- device_details: T['io.flow.payment.v0.unions.device_details'],
23015
- payment_source: T['io.flow.experience.v0.enums.order_payment_source_type'],
23016
- });
23017
-
23018
- T['io.flow.checkout.v0.models.checkout_token_order_form'] = PropTypes.exact({
23019
- discriminator: PropTypes.oneOf(['checkout_token_order_form']).isRequired,
23020
- order_form: T['io.flow.experience.v0.models.order_form'].isRequired,
23021
- customer: T['io.flow.customer.v0.models.customer_form'],
23022
- address_book: T['io.flow.customer.v0.models.customer_address_book_form'],
23023
- payment_sources: PropTypes.arrayOf(T['io.flow.payment.v0.unions.payment_source_form']),
23024
- session_id: PropTypes.string.isRequired,
23025
- urls: T['io.flow.checkout.v0.models.checkout_urls_form'],
23026
- identifiers: PropTypes.arrayOf(T['io.flow.experience.v0.models.order_submission_identifier_form']),
23027
- });
23028
-
23029
- T['io.flow.checkout.v0.unions.checkout_token_form'] = PropTypes.oneOfType([
23030
- T['io.flow.checkout.v0.models.checkout_token_order_form'],
23031
- T['io.flow.checkout.v0.models.checkout_token_reference_form'],
23032
- ]);
23033
-
23034
- T['io.flow.experience.v0.models.order_with_discounts_form'] = PropTypes.exact({
23035
- order: T['io.flow.experience.v0.models.order_form'].isRequired,
23036
- discounts: PropTypes.arrayOf(PropTypes.string).isRequired,
23037
- });
23038
-
23039
- T['io.flow.internal.v0.models.checkout_order_form'] = PropTypes.exact({
23040
- discriminator: PropTypes.oneOf(['order']).isRequired,
23041
- organization: PropTypes.string.isRequired,
23042
- order: T['io.flow.experience.v0.models.order_form'].isRequired,
23043
- customer: T['io.flow.customer.v0.models.customer_form'],
23044
- address_book: T['io.flow.customer.v0.models.customer_address_book_form'],
23045
- payment_sources: PropTypes.arrayOf(T['io.flow.payment.v0.unions.payment_source_form']),
23046
- urls: T['io.flow.checkout.v0.models.checkout_urls_form'],
23047
- identifiers: PropTypes.arrayOf(T['io.flow.experience.v0.models.order_submission_identifier_form']),
23048
- feature_keys: PropTypes.arrayOf(PropTypes.string),
23049
- order_parameters: T['io.flow.internal.v0.models.order_parameters'],
23050
- });
23051
-
23052
- T['io.flow.internal.v0.unions.checkout_form'] = PropTypes.oneOfType([
23053
- T['io.flow.internal.v0.models.checkout_order_form'],
23054
- T['io.flow.internal.v0.models.checkout_order_number_form'],
23055
- ]);
23056
-
23057
- T['io.flow.experience.v0.models.order_put_form'] = PropTypes.exact({
23058
- order_type: T['io.flow.experience.v0.enums.order_type'],
23059
- items: PropTypes.arrayOf(T['io.flow.common.v0.models.line_item_form']).isRequired,
23060
- customer: T['io.flow.common.v0.models.order_customer_form'],
23061
- delivered_duty: T['io.flow.common.v0.enums.delivered_duty'],
23062
- selections: PropTypes.arrayOf(PropTypes.string),
23063
- destination: T['io.flow.experience.v0.models.order_address'],
23064
- discount: T['io.flow.common.v0.models.money'],
23065
- discounts: T['io.flow.common.v0.models.discounts_form'],
23066
- attributes: PropTypes.objectOf(PropTypes.string),
23067
- authorization_keys: PropTypes.arrayOf(PropTypes.string),
23068
- options: T['io.flow.experience.v0.models.order_options'],
23069
- device_details: T['io.flow.payment.v0.unions.device_details'],
23070
- payment_source: T['io.flow.experience.v0.enums.order_payment_source_type'],
23071
- });
23072
-
23073
- T['io.flow.internal.v0.models.invalid_checkout_data'] = PropTypes.exact({
23074
- order: T['io.flow.experience.v0.models.order_put_form'].isRequired,
23075
- });
23076
-
23077
- T['io.flow.internal.v0.models.checkout_reference_form'] = PropTypes.exact({
23078
- order_number: PropTypes.string.isRequired,
23079
- order_form: T['io.flow.experience.v0.models.order_put_form'].isRequired,
23080
- order_geo: T['io.flow.experience.v0.models.order_geo'].isRequired,
23081
- session_id: PropTypes.string.isRequired,
23082
- urls: T['io.flow.checkout.v0.models.checkout_urls_form'],
23083
- identifiers: PropTypes.arrayOf(T['io.flow.experience.v0.models.order_submission_identifier_form']),
23084
- });
23085
-
23086
- T['io.flow.internal.v0.models.expected_order_summary'] = PropTypes.exact({
23087
- total: T['io.flow.common.v0.models.money'],
23088
- });
23089
-
23090
- T['io.flow.internal.v0.models.checkout_submit_order_form'] = PropTypes.exact({
23091
- discriminator: PropTypes.oneOf(['checkout_submit_order_form']).isRequired,
23092
- authorization_form: T['io.flow.payment.v0.unions.authorization_form'],
23093
- expected_order_summary: T['io.flow.internal.v0.models.expected_order_summary'],
23094
- });
23095
-
23096
- T['io.flow.internal.v0.unions.checkout_submit_order_forms'] = PropTypes.oneOfType([T['io.flow.internal.v0.models.checkout_submit_order_form']]);
23097
-
23098
- T['io.flow.internal.v0.models.checkout_submission_form'] = PropTypes.exact({
23099
- authorization_form: T['io.flow.payment.v0.unions.authorization_form'],
23100
- expected_order_summary: T['io.flow.internal.v0.models.expected_order_summary'],
23101
- feature_keys: PropTypes.arrayOf(PropTypes.string),
23102
- });
23103
-
23104
- T['io.flow.internal.v0.models.checkout_finalize_order_form'] = PropTypes.exact({
23105
- expected_order_summary: T['io.flow.internal.v0.models.expected_order_summary'].isRequired,
23106
- order_put_form: T['io.flow.experience.v0.models.order_put_form'].isRequired,
23107
- });
23108
-
23109
22875
  T['io.flow.internal.v0.models.chargeback'] = PropTypes.exact({
23110
22876
  id: PropTypes.string.isRequired,
23111
22877
  key: PropTypes.string.isRequired,
@@ -23237,19 +23003,21 @@ T['io.flow.label.v0.models.shipping_label_hop_summary'] = PropTypes.exact({
23237
23003
  itemized_estimate: T['io.flow.label.v0.models.shipping_label_hop_cost_itemized_estimate'],
23238
23004
  });
23239
23005
 
23240
- T['io.flow.internal.v0.models.final_estimate'] = PropTypes.exact({
23006
+ T['io.flow.label.v0.models.estimate'] = PropTypes.exact({
23241
23007
  id: PropTypes.string.isRequired,
23242
23008
  organization_id: PropTypes.string.isRequired,
23243
23009
  label_id: PropTypes.string.isRequired,
23244
23010
  estimate: T['io.flow.label.v0.models.shipping_label_hop_summary'].isRequired,
23011
+ type: T['io.flow.label.v0.enums.estimate_type'].isRequired,
23012
+ origin: T['io.flow.label.v0.enums.estimate_origin'],
23245
23013
  });
23246
23014
 
23247
- T['io.flow.internal.v0.models.final_estimate_upserted'] = PropTypes.exact({
23248
- discriminator: PropTypes.oneOf(['final_estimate_upserted']).isRequired,
23015
+ T['io.flow.internal.v0.models.shipping_estimate_upserted'] = PropTypes.exact({
23016
+ discriminator: PropTypes.oneOf(['shipping_estimate_upserted']).isRequired,
23249
23017
  event_id: PropTypes.string.isRequired,
23250
23018
  timestamp: PropTypes.string.isRequired,
23251
23019
  organization: PropTypes.string.isRequired,
23252
- final_estimate: T['io.flow.internal.v0.models.final_estimate'].isRequired,
23020
+ estimate: T['io.flow.label.v0.models.estimate'].isRequired,
23253
23021
  });
23254
23022
 
23255
23023
  T['io.flow.internal.v0.models.debug_label'] = PropTypes.exact({
@@ -23382,17 +23150,6 @@ T['io.flow.session.v0.models.organization_session_authorization'] = PropTypes.ex
23382
23150
 
23383
23151
  T['io.flow.session.v0.unions.session_authorization'] = PropTypes.oneOfType([T['io.flow.session.v0.models.organization_session_authorization']]);
23384
23152
 
23385
- T['io.flow.checkout.v0.models.checkout_token'] = PropTypes.exact({
23386
- id: PropTypes.string.isRequired,
23387
- organization: T['io.flow.common.v0.models.organization_reference'].isRequired,
23388
- checkout: T['io.flow.common.v0.models.checkout_reference'].isRequired,
23389
- order: T['io.flow.experience.v0.models.order_number_reference'].isRequired,
23390
- urls: T['io.flow.checkout.v0.models.checkout_urls'].isRequired,
23391
- expires_at: PropTypes.string.isRequired,
23392
- session: T['io.flow.common.v0.models.session_reference'].isRequired,
23393
- customer: T['io.flow.common.v0.models.customer_reference'],
23394
- });
23395
-
23396
23153
  T['io.flow.token.v0.models.organization_token_v2_reference'] = PropTypes.exact({
23397
23154
  discriminator: PropTypes.oneOf(['organization_token_v2_reference']).isRequired,
23398
23155
  id: PropTypes.string.isRequired,
@@ -24667,15 +24424,6 @@ T['io.flow.fulfillment.v0.models.quote'] = PropTypes.exact({
24667
24424
  delivered_duties: PropTypes.arrayOf(T['io.flow.common.v0.enums.delivered_duty']).isRequired,
24668
24425
  });
24669
24426
 
24670
- T['io.flow.internal.v0.models.pregenerated_quote'] = PropTypes.exact({
24671
- id: PropTypes.string.isRequired,
24672
- experience: T['io.flow.internal.v0.models.fulfillment_internal_experience_reference'].isRequired,
24673
- destination_country: PropTypes.string.isRequired,
24674
- item: T['io.flow.common.v0.models.item_reference'].isRequired,
24675
- quote: T['io.flow.fulfillment.v0.models.quote'],
24676
- errors: PropTypes.arrayOf(PropTypes.string),
24677
- });
24678
-
24679
24427
  T['io.flow.catalog.v0.unions.localized_price'] = PropTypes.oneOfType([
24680
24428
  T['io.flow.catalog.v0.models.localized_item_price'],
24681
24429
  T['io.flow.catalog.v0.models.localized_item_vat'],
@@ -25353,6 +25101,31 @@ T['io.flow.order.management.event.v0.models.order_placed_v2'] = PropTypes.exact(
25353
25101
  order_placed: T['io.flow.order.management.v0.models.order_placed_details'].isRequired,
25354
25102
  });
25355
25103
 
25104
+ T['io.flow.experience.v0.models.order_builder'] = PropTypes.exact({
25105
+ order: T['io.flow.experience.v0.models.order'],
25106
+ errors: PropTypes.arrayOf(T['io.flow.experience.v0.models.order_error']),
25107
+ });
25108
+
25109
+ T['io.flow.internal.v0.models.v1_checkout'] = PropTypes.exact({
25110
+ id: PropTypes.string.isRequired,
25111
+ organization: T['io.flow.common.v0.models.organization_summary'].isRequired,
25112
+ builder: T['io.flow.experience.v0.models.order_builder'].isRequired,
25113
+ platform: T['io.flow.internal.v0.models.checkout_platform_data'].isRequired,
25114
+ content: T['io.flow.internal.v0.models.checkout_content'].isRequired,
25115
+ destinations: PropTypes.arrayOf(T['io.flow.reference.v0.models.country']).isRequired,
25116
+ optins: PropTypes.arrayOf(T['io.flow.internal.v0.models.optin_prompt']).isRequired,
25117
+ addresses: PropTypes.arrayOf(T['io.flow.experience.v0.models.address_configuration']).isRequired,
25118
+ features: T['io.flow.internal.v0.models.feature_value_result'].isRequired,
25119
+ configuration: T['io.flow.internal.v0.models.checkout_configuration'].isRequired,
25120
+ cart: T['io.flow.shopify.v0.models.shopify_cart'],
25121
+ customer: T['io.flow.customer.v0.models.customer'],
25122
+ address_book: T['io.flow.customer.v0.models.customer_address_book'],
25123
+ gift_card_program: T['io.flow.internal.v0.models.gift_card_program'],
25124
+ loyalty_program: T['io.flow.internal.v0.models.loyalty_program'],
25125
+ payment: T['io.flow.internal.v0.models.checkout_payment'].isRequired,
25126
+ customer_bundle: T['io.flow.customer.v0.models.customer_bundle'],
25127
+ });
25128
+
25356
25129
  T['io.flow.internal.v0.models.submitted_order_upserted'] = PropTypes.exact({
25357
25130
  discriminator: PropTypes.oneOf(['submitted_order_upserted']).isRequired,
25358
25131
  event_id: PropTypes.string.isRequired,
@@ -25404,64 +25177,6 @@ T['io.flow.internal.v0.models.fulfillment_cancel'] = PropTypes.exact({
25404
25177
  cancelled_lines: PropTypes.arrayOf(T['io.flow.order.management.v0.models.fulfillment_line_cancel_form']).isRequired,
25405
25178
  });
25406
25179
 
25407
- T['io.flow.internal.v0.models.checkout_submit_order_bundle'] = PropTypes.exact({
25408
- discriminator: PropTypes.oneOf(['checkout_submit_order_bundle']).isRequired,
25409
- order: T['io.flow.experience.v0.models.order'],
25410
- redirect: T['io.flow.payment.v0.unions.authorization_result_action'],
25411
- errors: PropTypes.arrayOf(T['io.flow.experience.v0.models.order_error']),
25412
- });
25413
-
25414
- T['io.flow.internal.v0.unions.checkout_submit_order_bundles'] = PropTypes.oneOfType([T['io.flow.internal.v0.models.checkout_submit_order_bundle']]);
25415
-
25416
- T['io.flow.experience.v0.models.order_builder'] = PropTypes.exact({
25417
- order: T['io.flow.experience.v0.models.order'],
25418
- errors: PropTypes.arrayOf(T['io.flow.experience.v0.models.order_error']),
25419
- });
25420
-
25421
- T['io.flow.internal.v0.models.v1_checkout'] = PropTypes.exact({
25422
- id: PropTypes.string.isRequired,
25423
- organization: T['io.flow.common.v0.models.organization_summary'].isRequired,
25424
- builder: T['io.flow.experience.v0.models.order_builder'].isRequired,
25425
- platform: T['io.flow.internal.v0.models.checkout_platform_data'].isRequired,
25426
- content: T['io.flow.internal.v0.models.checkout_content'].isRequired,
25427
- destinations: PropTypes.arrayOf(T['io.flow.reference.v0.models.country']).isRequired,
25428
- optins: PropTypes.arrayOf(T['io.flow.internal.v0.models.optin_prompt']).isRequired,
25429
- addresses: PropTypes.arrayOf(T['io.flow.experience.v0.models.address_configuration']).isRequired,
25430
- features: T['io.flow.internal.v0.models.feature_value_result'].isRequired,
25431
- configuration: T['io.flow.internal.v0.models.checkout_configuration'].isRequired,
25432
- cart: T['io.flow.shopify.v0.models.shopify_cart'],
25433
- customer: T['io.flow.customer.v0.models.customer'],
25434
- address_book: T['io.flow.customer.v0.models.customer_address_book'],
25435
- gift_card_program: T['io.flow.internal.v0.models.gift_card_program'],
25436
- loyalty_program: T['io.flow.internal.v0.models.loyalty_program'],
25437
- payment: T['io.flow.internal.v0.models.checkout_payment'].isRequired,
25438
- customer_bundle: T['io.flow.customer.v0.models.customer_bundle'],
25439
- });
25440
-
25441
- T['io.flow.internal.v0.models.checkout_submission'] = PropTypes.exact({
25442
- builder: T['io.flow.experience.v0.models.order_builder'].isRequired,
25443
- action: T['io.flow.payment.v0.unions.authorization_result_action'],
25444
- });
25445
-
25446
- T['io.flow.internal.v0.models.checkout_bundle'] = PropTypes.exact({
25447
- cart: T['io.flow.shopify.v0.models.shopify_cart'],
25448
- order: T['io.flow.experience.v0.models.order'].isRequired,
25449
- order_errors: PropTypes.arrayOf(T['io.flow.experience.v0.models.order_error']),
25450
- checkout: T['io.flow.internal.v0.models.checkout_content_summary'],
25451
- optins: PropTypes.arrayOf(T['io.flow.internal.v0.models.optin_prompt']).isRequired,
25452
- destinations: PropTypes.arrayOf(T['io.flow.reference.v0.models.country']).isRequired,
25453
- features: T['io.flow.internal.v0.models.feature_value_result'].isRequired,
25454
- provinces: PropTypes.arrayOf(T['io.flow.reference.v0.models.province']).isRequired,
25455
- checkout_items: PropTypes.arrayOf(T['io.flow.experience.v0.models.checkout_item_content']).isRequired,
25456
- metadata: T['io.flow.internal.v0.models.checkout_bundle_metadata'],
25457
- configuration: T['io.flow.internal.v0.models.checkout_configuration'],
25458
- address_configurations: PropTypes.arrayOf(T['io.flow.experience.v0.models.address_configuration']),
25459
- customer: T['io.flow.customer.v0.models.customer'],
25460
- address_book: T['io.flow.customer.v0.models.customer_address_book'],
25461
- payment_sources: PropTypes.arrayOf(T['io.flow.payment.v0.unions.payment_source']),
25462
- customer_bundle: T['io.flow.customer.v0.models.customer_bundle'],
25463
- });
25464
-
25465
25180
  T['io.flow.internal.v0.models.shopify_order_line_content'] = PropTypes.exact({
25466
25181
  item_number: PropTypes.string.isRequired,
25467
25182
  quantity: PropTypes.number.isRequired,
@@ -26850,8 +26565,8 @@ T['io.flow.internal.v0.models.fraud_review_authorization_decision_upserted'] = P
26850
26565
  T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
26851
26566
  T['io.flow.internal.v0.models.adjusted_estimates_upserted'],
26852
26567
  T['io.flow.internal.v0.models.adjusted_estimates_deleted'],
26853
- T['io.flow.internal.v0.models.final_estimate_upserted'],
26854
- T['io.flow.internal.v0.models.final_estimate_deleted'],
26568
+ T['io.flow.internal.v0.models.shipping_estimate_upserted'],
26569
+ T['io.flow.internal.v0.models.shipping_estimate_deleted'],
26855
26570
  T['io.flow.internal.v0.models.adyen_authorization_deleted'],
26856
26571
  T['io.flow.internal.v0.models.adyen_authorization_upserted'],
26857
26572
  T['io.flow.internal.v0.models.adyen_cancel_deleted'],
@@ -27019,7 +26734,6 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
27019
26734
  T['io.flow.internal.v0.models.center_defaults_deleted'],
27020
26735
  T['io.flow.internal.v0.models.fulfillment_fallbacks_upserted'],
27021
26736
  T['io.flow.internal.v0.models.fulfillment_fallbacks_deleted'],
27022
- T['io.flow.internal.v0.models.pregenerated_request_event'],
27023
26737
  T['io.flow.internal.v0.models.quote_upserted'],
27024
26738
  T['io.flow.internal.v0.models.quote_deleted'],
27025
26739
  T['io.flow.internal.v0.models.all_items_export'],
@@ -27028,7 +26742,6 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
27028
26742
  T['io.flow.internal.v0.models.dutied_items_export'],
27029
26743
  T['io.flow.internal.v0.models.harmonization_phrase_suggestion_request_import'],
27030
26744
  T['io.flow.internal.v0.models.harmonization_codes_import'],
27031
- T['io.flow.internal.v0.models.item_classification_created'],
27032
26745
  T['io.flow.internal.v0.models.harmonize_fully_request_v2'],
27033
26746
  T['io.flow.internal.v0.models.import_completed'],
27034
26747
  T['io.flow.internal.v0.models.import_failed'],
@@ -27057,8 +26770,6 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
27057
26770
  T['io.flow.internal.v0.models.logistics_capabilities_upserted'],
27058
26771
  T['io.flow.internal.v0.models.logistics_capabilities_deleted'],
27059
26772
  T['io.flow.internal.v0.models.localized_item_prices_export_request'],
27060
- T['io.flow.internal.v0.models.optin_prompt_upserted'],
27061
- T['io.flow.internal.v0.models.optin_prompt_deleted'],
27062
26773
  T['io.flow.internal.v0.models.order_combined_shipment_upserted'],
27063
26774
  T['io.flow.internal.v0.models.order_combined_shipment_deleted'],
27064
26775
  T['io.flow.internal.v0.models.order_fulfillment_deleted'],
@@ -27124,8 +26835,6 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
27124
26835
  T['io.flow.internal.v0.models.ratecard_standard_configuration_deleted'],
27125
26836
  T['io.flow.internal.v0.models.ratecard_service_fee_upserted'],
27126
26837
  T['io.flow.internal.v0.models.ratecard_service_fee_deleted'],
27127
- T['io.flow.internal.v0.models.ratecard_lane_aggregate_upserted'],
27128
- T['io.flow.internal.v0.models.ratecard_lane_aggregate_deleted'],
27129
26838
  T['io.flow.internal.v0.models.ratecard_rate_level_upserted'],
27130
26839
  T['io.flow.internal.v0.models.ratecard_rate_level_deleted'],
27131
26840
  T['io.flow.internal.v0.models.ratecard_rate_level_ratecard_upserted'],
@@ -27376,8 +27085,8 @@ T['io.flow.internal.v0.enums.duty_transaction_type'] = PropTypes.oneOf(['adjustm
27376
27085
  T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
27377
27086
  'adjusted_estimates_upserted',
27378
27087
  'adjusted_estimates_deleted',
27379
- 'final_estimate_upserted',
27380
- 'final_estimate_deleted',
27088
+ 'shipping_estimate_upserted',
27089
+ 'shipping_estimate_deleted',
27381
27090
  'adyen_authorization_deleted',
27382
27091
  'adyen_authorization_upserted',
27383
27092
  'adyen_cancel_deleted',
@@ -27545,7 +27254,6 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
27545
27254
  'center_defaults_deleted',
27546
27255
  'fulfillment_fallbacks_upserted',
27547
27256
  'fulfillment_fallbacks_deleted',
27548
- 'pregenerated_request_event',
27549
27257
  'quote_upserted',
27550
27258
  'quote_deleted',
27551
27259
  'all_items_export',
@@ -27554,7 +27262,6 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
27554
27262
  'dutied_items_export',
27555
27263
  'harmonization_phrase_suggestion_request_import',
27556
27264
  'harmonization_codes_import',
27557
- 'item_classification_created',
27558
27265
  'harmonize_fully_request_v2',
27559
27266
  'import_completed',
27560
27267
  'import_failed',
@@ -27583,8 +27290,6 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
27583
27290
  'logistics_capabilities_upserted',
27584
27291
  'logistics_capabilities_deleted',
27585
27292
  'localized_item_prices_export_request',
27586
- 'optin_prompt_upserted',
27587
- 'optin_prompt_deleted',
27588
27293
  'order_combined_shipment_upserted',
27589
27294
  'order_combined_shipment_deleted',
27590
27295
  'order_fulfillment_deleted',
@@ -27650,8 +27355,6 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
27650
27355
  'ratecard_standard_configuration_deleted',
27651
27356
  'ratecard_service_fee_upserted',
27652
27357
  'ratecard_service_fee_deleted',
27653
- 'ratecard_lane_aggregate_upserted',
27654
- 'ratecard_lane_aggregate_deleted',
27655
27358
  'ratecard_rate_level_upserted',
27656
27359
  'ratecard_rate_level_deleted',
27657
27360
  'ratecard_rate_level_ratecard_upserted',
@@ -28021,11 +27724,6 @@ T['io.flow.internal.v0.models.checkout_configuration_reference'] = PropTypes.exa
28021
27724
  id: PropTypes.string.isRequired,
28022
27725
  });
28023
27726
 
28024
- T['io.flow.internal.v0.models.checkout_source_order_form'] = PropTypes.exact({
28025
- source_order_number: PropTypes.string.isRequired,
28026
- feature_q: PropTypes.string,
28027
- });
28028
-
28029
27727
  T['io.flow.internal.v0.models.cipher'] = PropTypes.exact({
28030
27728
  id: PropTypes.string.isRequired,
28031
27729
  attributes: PropTypes.objectOf(PropTypes.string).isRequired,
@@ -28396,6 +28094,13 @@ T['io.flow.internal.v0.models.label_generation_settings_form'] = PropTypes.exact
28396
28094
  commercial_invoice_only_query: PropTypes.string,
28397
28095
  });
28398
28096
 
28097
+ T['io.flow.internal.v0.models.labels_prediction'] = PropTypes.exact({
28098
+ main_material: PropTypes.string.isRequired,
28099
+ gender: PropTypes.string.isRequired,
28100
+ construction: PropTypes.string.isRequired,
28101
+ product_type: PropTypes.string.isRequired,
28102
+ });
28103
+
28399
28104
  T['io.flow.internal.v0.models.landed_cost_item'] = PropTypes.exact({
28400
28105
  number: PropTypes.string.isRequired,
28401
28106
  origin: PropTypes.string.isRequired,
@@ -29007,6 +28712,7 @@ T['io.flow.payment.v0.models.reversal_put_form'] = PropTypes.exact({
29007
28712
  });
29008
28713
 
29009
28714
  T['io.flow.stripe.v0.enums.event_type'] = PropTypes.oneOf([
28715
+ 'capability.updated',
29010
28716
  'charge.captured',
29011
28717
  'charge.failed',
29012
28718
  'charge.pending',
@@ -29502,11 +29208,6 @@ T['io.flow.shopify.external.v0.models.count'] = PropTypes.exact({
29502
29208
  count: PropTypes.number.isRequired,
29503
29209
  });
29504
29210
 
29505
- T['io.flow.shopify.external.v0.models.graphql_metaobject'] = PropTypes.exact({
29506
- id: PropTypes.string.isRequired,
29507
- displayName: PropTypes.string.isRequired,
29508
- });
29509
-
29510
29211
  T['io.flow.shopify.external.v0.models.shopify_customer_delete'] = PropTypes.exact({
29511
29212
  id: PropTypes.number.isRequired,
29512
29213
  });
@@ -29646,6 +29347,10 @@ T['io.flow.common.v0.enums.schedule_exception_status'] = PropTypes.oneOf(['Open'
29646
29347
  T['io.flow.common.v0.enums.sort_direction'] = PropTypes.oneOf(['ascending', 'descending']);
29647
29348
  T['io.flow.common.v0.enums.value_added_service'] = PropTypes.oneOf(['Hazardous Material']);
29648
29349
 
29350
+ T['io.flow.common.v0.models.checkout_reference'] = PropTypes.exact({
29351
+ id: PropTypes.string.isRequired,
29352
+ });
29353
+
29649
29354
  T['io.flow.common.v0.models.input_form'] = PropTypes.exact({
29650
29355
  values: PropTypes.objectOf(PropTypes.string),
29651
29356
  });
@@ -29764,6 +29469,10 @@ T['io.flow.experience.v0.models.order_number_generator_generated_number'] = Prop
29764
29469
  number: PropTypes.string.isRequired,
29765
29470
  });
29766
29471
 
29472
+ T['io.flow.experience.v0.models.order_number_reference'] = PropTypes.exact({
29473
+ number: PropTypes.string.isRequired,
29474
+ });
29475
+
29767
29476
  T['io.flow.experience.v0.models.order_service_change_form'] = PropTypes.exact({
29768
29477
  from_service_id: PropTypes.string.isRequired,
29769
29478
  to_service_id: PropTypes.string.isRequired,
@@ -30324,16 +30033,6 @@ export const booleanFeatureRuleForm = T['io.flow.internal.v0.models.boolean_feat
30324
30033
  export const booleanFeatureValue = T['io.flow.internal.v0.models.boolean_feature_value'];
30325
30034
  export const brickWebhookEvent = T['io.flow.internal.v0.models.brick_webhook_event'];
30326
30035
  export const brickWebhookEventResponse = T['io.flow.internal.v0.models.brick_webhook_event_response'];
30327
- export const browserBundle = T['io.flow.internal.v0.models.browser_bundle'];
30328
- export const browserBundleCountryPickerForm = T['io.flow.internal.v0.models.browser_bundle_country_picker_form'];
30329
- export const browserBundleError = T['io.flow.internal.v0.models.browser_bundle_error'];
30330
- export const browserBundleErrorCode = T['io.flow.internal.v0.enums.browser_bundle_error_code'];
30331
- export const browserBundleFeatureForm = T['io.flow.internal.v0.models.browser_bundle_feature_form'];
30332
- export const browserBundleForm = T['io.flow.internal.v0.models.browser_bundle_form'];
30333
- export const browserBundleOptinForm = T['io.flow.internal.v0.models.browser_bundle_optin_form'];
30334
- export const browserBundlePaymentMethod = T['io.flow.internal.v0.models.browser_bundle_payment_method'];
30335
- export const browserBundlePaymentMethodForm = T['io.flow.internal.v0.models.browser_bundle_payment_method_form'];
30336
- export const browserBundlePaymentMethods = T['io.flow.internal.v0.models.browser_bundle_payment_methods'];
30337
30036
  export const bulkClassificationAction = T['io.flow.internal.v0.models.bulk_classification_action'];
30338
30037
  export const bulkDutyUpdateValidationError = T['io.flow.internal.v0.models.bulk_duty_update_validation_error'];
30339
30038
  export const calculatedTaxAmount = T['io.flow.internal.v0.models.calculated_tax_amount'];
@@ -30469,8 +30168,6 @@ export const checkoutBehaviorCustomerInfo = T['io.flow.internal.v0.models.checko
30469
30168
  export const checkoutBehaviorCustomerInfoEmail = T['io.flow.internal.v0.models.checkout_behavior_customer_info_email'];
30470
30169
  export const checkoutBehaviorShippingAddress = T['io.flow.internal.v0.models.checkout_behavior_shipping_address'];
30471
30170
  export const checkoutBehaviorShippingMethod = T['io.flow.internal.v0.models.checkout_behavior_shipping_method'];
30472
- export const checkoutBundle = T['io.flow.internal.v0.models.checkout_bundle'];
30473
- export const checkoutBundleMetadata = T['io.flow.internal.v0.models.checkout_bundle_metadata'];
30474
30171
  export const checkoutConfiguration = T['io.flow.internal.v0.models.checkout_configuration'];
30475
30172
  export const checkoutConfigurationDeleted = T['io.flow.internal.v0.models.checkout_configuration_deleted'];
30476
30173
  export const checkoutConfigurationForm = T['io.flow.internal.v0.models.checkout_configuration_form'];
@@ -30481,27 +30178,15 @@ export const checkoutContentDetails = T['io.flow.internal.v0.models.checkout_con
30481
30178
  export const checkoutContentSummary = T['io.flow.internal.v0.models.checkout_content_summary'];
30482
30179
  export const checkoutError = T['io.flow.internal.v0.models.checkout_error'];
30483
30180
  export const checkoutErrorCode = T['io.flow.internal.v0.enums.checkout_error_code'];
30484
- export const checkoutFinalizeOrderForm = T['io.flow.internal.v0.models.checkout_finalize_order_form'];
30485
- export const checkoutForm = T['io.flow.internal.v0.unions.checkout_form'];
30486
30181
  export const checkoutMarketingContent = T['io.flow.internal.v0.models.checkout_marketing_content'];
30487
- export const checkoutOrderForm = T['io.flow.internal.v0.models.checkout_order_form'];
30488
- export const checkoutOrderNumberForm = T['io.flow.internal.v0.models.checkout_order_number_form'];
30489
30182
  export const checkoutPayment = T['io.flow.internal.v0.models.checkout_payment'];
30490
30183
  export const checkoutPaymentContent = T['io.flow.internal.v0.models.checkout_payment_content'];
30491
30184
  export const checkoutPlatformData = T['io.flow.internal.v0.models.checkout_platform_data'];
30492
30185
  export const checkoutPromptBehavior = T['io.flow.internal.v0.enums.checkout_prompt_behavior'];
30493
30186
  export const checkoutRedirect = T['io.flow.internal.v0.models.checkout_redirect'];
30494
30187
  export const checkoutRedirectMethod = T['io.flow.internal.v0.enums.checkout_redirect_method'];
30495
- export const checkoutReferenceForm = T['io.flow.internal.v0.models.checkout_reference_form'];
30496
30188
  export const checkoutSettings = T['io.flow.internal.v0.models.checkout_settings'];
30497
30189
  export const checkoutShippingMethodPromptBehavior = T['io.flow.internal.v0.enums.checkout_shipping_method_prompt_behavior'];
30498
- export const checkoutSourceOrderForm = T['io.flow.internal.v0.models.checkout_source_order_form'];
30499
- export const checkoutSubmission = T['io.flow.internal.v0.models.checkout_submission'];
30500
- export const checkoutSubmissionForm = T['io.flow.internal.v0.models.checkout_submission_form'];
30501
- export const checkoutSubmitOrderBundle = T['io.flow.internal.v0.models.checkout_submit_order_bundle'];
30502
- export const checkoutSubmitOrderBundles = T['io.flow.internal.v0.unions.checkout_submit_order_bundles'];
30503
- export const checkoutSubmitOrderForm = T['io.flow.internal.v0.models.checkout_submit_order_form'];
30504
- export const checkoutSubmitOrderForms = T['io.flow.internal.v0.unions.checkout_submit_order_forms'];
30505
30190
  export const checkoutUrl = T['io.flow.internal.v0.models.checkout_url'];
30506
30191
  export const checkoutUrlType = T['io.flow.internal.v0.enums.checkout_url_type'];
30507
30192
  export const cipher = T['io.flow.internal.v0.models.cipher'];
@@ -30728,7 +30413,6 @@ export const eventType = T['io.flow.internal.v0.enums.event_type'];
30728
30413
  export const exclusionRuleDeleted = T['io.flow.internal.v0.models.exclusion_rule_deleted'];
30729
30414
  export const exclusionRuleExportRequest = T['io.flow.internal.v0.models.exclusion_rule_export_request'];
30730
30415
  export const exclusionRuleUpserted = T['io.flow.internal.v0.models.exclusion_rule_upserted'];
30731
- export const expectedOrderSummary = T['io.flow.internal.v0.models.expected_order_summary'];
30732
30416
  export const experienceExportRequest = T['io.flow.internal.v0.models.experience_export_request'];
30733
30417
  export const experienceImportRequest = T['io.flow.internal.v0.models.experience_import_request'];
30734
30418
  export const experienceImportType = T['io.flow.internal.v0.enums.experience_import_type'];
@@ -30781,9 +30465,6 @@ export const fedexCrossborder = T['io.flow.internal.v0.models.fedex_crossborder'
30781
30465
  export const fee = T['io.flow.internal.v0.models.fee'];
30782
30466
  export const fees = T['io.flow.internal.v0.models.fees'];
30783
30467
  export const feesSource = T['io.flow.internal.v0.enums.fees_source'];
30784
- export const finalEstimate = T['io.flow.internal.v0.models.final_estimate'];
30785
- export const finalEstimateDeleted = T['io.flow.internal.v0.models.final_estimate_deleted'];
30786
- export const finalEstimateUpserted = T['io.flow.internal.v0.models.final_estimate_upserted'];
30787
30468
  export const financeBankAccount = T['io.flow.internal.v0.models.finance_bank_account'];
30788
30469
  export const financeBankAccountOwner = T['io.flow.internal.v0.models.finance_bank_account_owner'];
30789
30470
  export const financeBankPayment = T['io.flow.internal.v0.models.finance_bank_payment'];
@@ -30865,7 +30546,6 @@ export const fulfillmentDeleted = T['io.flow.internal.v0.models.fulfillment_dele
30865
30546
  export const fulfillmentFallbacks = T['io.flow.internal.v0.models.fulfillment_fallbacks'];
30866
30547
  export const fulfillmentFallbacksDeleted = T['io.flow.internal.v0.models.fulfillment_fallbacks_deleted'];
30867
30548
  export const fulfillmentFallbacksUpserted = T['io.flow.internal.v0.models.fulfillment_fallbacks_upserted'];
30868
- export const fulfillmentInternalExperienceReference = T['io.flow.internal.v0.models.fulfillment_internal_experience_reference'];
30869
30549
  export const fulfillmentOrigin = T['io.flow.internal.v0.models.fulfillment_origin'];
30870
30550
  export const fulfillmentProof = T['io.flow.internal.v0.unions.fulfillment_proof'];
30871
30551
  export const fulfillmentProofExternalFulfillmentProofReference = T['io.flow.internal.v0.models.fulfillment_proof_external_fulfillment_proof_reference'];
@@ -30953,7 +30633,6 @@ export const internalRefundForm = T['io.flow.internal.v0.unions.internal_refund_
30953
30633
  export const internalStripeAuthorizationDetails = T['io.flow.internal.v0.models.internal_stripe_authorization_details'];
30954
30634
  export const internalTransactionDetails = T['io.flow.internal.v0.unions.internal_transaction_details'];
30955
30635
  export const internalTransactionDetailsCard = T['io.flow.internal.v0.models.internal_transaction_details_card'];
30956
- export const invalidCheckoutData = T['io.flow.internal.v0.models.invalid_checkout_data'];
30957
30636
  export const invariant = T['io.flow.internal.v0.models.invariant'];
30958
30637
  export const inventoryItemWrapper = T['io.flow.internal.v0.models.inventory_item_wrapper'];
30959
30638
  export const invoice = T['io.flow.internal.v0.models.invoice'];
@@ -30966,7 +30645,6 @@ export const issuerDeleted = T['io.flow.internal.v0.models.issuer_deleted'];
30966
30645
  export const issuerUpserted = T['io.flow.internal.v0.models.issuer_upserted'];
30967
30646
  export const itemClassification = T['io.flow.internal.v0.models.item_classification'];
30968
30647
  export const itemClassificationAction = T['io.flow.internal.v0.enums.item_classification_action'];
30969
- export const itemClassificationCreated = T['io.flow.internal.v0.models.item_classification_created'];
30970
30648
  export const itemClassificationForm = T['io.flow.internal.v0.models.item_classification_form'];
30971
30649
  export const itemClassificationStatus = T['io.flow.internal.v0.enums.item_classification_status'];
30972
30650
  export const itemClassificationSummary = T['io.flow.internal.v0.models.item_classification_summary'];
@@ -31159,10 +30837,8 @@ export const optinPrompt = T['io.flow.internal.v0.models.optin_prompt'];
31159
30837
  export const optinPromptCheckoutDisplay = T['io.flow.internal.v0.models.optin_prompt_checkout_display'];
31160
30838
  export const optinPromptCopy = T['io.flow.internal.v0.models.optin_prompt_copy'];
31161
30839
  export const optinPromptCopyForm = T['io.flow.internal.v0.models.optin_prompt_copy_form'];
31162
- export const optinPromptDeleted = T['io.flow.internal.v0.models.optin_prompt_deleted'];
31163
30840
  export const optinPromptDisplay = T['io.flow.internal.v0.unions.optin_prompt_display'];
31164
30841
  export const optinPromptForm = T['io.flow.internal.v0.models.optin_prompt_form'];
31165
- export const optinPromptUpserted = T['io.flow.internal.v0.models.optin_prompt_upserted'];
31166
30842
  export const orderAction = T['io.flow.internal.v0.enums.order_action'];
31167
30843
  export const orderActionForm = T['io.flow.internal.v0.unions.order_action_form'];
31168
30844
  export const orderActionability = T['io.flow.internal.v0.models.order_actionability'];
@@ -31191,7 +30867,6 @@ export const orderFulfillmentUpserted = T['io.flow.internal.v0.models.order_fulf
31191
30867
  export const orderLifecycleEvent = T['io.flow.internal.v0.enums.order_lifecycle_event'];
31192
30868
  export const orderNote = T['io.flow.internal.v0.models.order_note'];
31193
30869
  export const orderNoteForm = T['io.flow.internal.v0.models.order_note_form'];
31194
- export const orderParameters = T['io.flow.internal.v0.models.order_parameters'];
31195
30870
  export const orderPaymentAuthorization = T['io.flow.internal.v0.models.order_payment_authorization'];
31196
30871
  export const orderPlaced = T['io.flow.internal.v0.models.order_placed'];
31197
30872
  export const orderRatesDataV3 = T['io.flow.internal.v0.models.order_rates_data_v3'];
@@ -31376,8 +31051,6 @@ export const platformFeePercentage = T['io.flow.internal.v0.models.platform_fee_
31376
31051
  export const platformFeePercentageTier = T['io.flow.internal.v0.models.platform_fee_percentage_tier'];
31377
31052
  export const prediction = T['io.flow.internal.v0.models.prediction'];
31378
31053
  export const preferredBillingSchedule = T['io.flow.internal.v0.enums.preferred_billing_schedule'];
31379
- export const pregeneratedQuote = T['io.flow.internal.v0.models.pregenerated_quote'];
31380
- export const pregeneratedRequestEvent = T['io.flow.internal.v0.models.pregenerated_request_event'];
31381
31054
  export const priceSelector = T['io.flow.internal.v0.enums.price_selector'];
31382
31055
  export const prioritizedCenterReference = T['io.flow.internal.v0.models.prioritized_center_reference'];
31383
31056
  export const processingTransaction = T['io.flow.internal.v0.models.processing_transaction'];
@@ -31434,8 +31107,6 @@ export const publicHub = T['io.flow.internal.v0.models.public_hub'];
31434
31107
  export const publicHubForm = T['io.flow.internal.v0.models.public_hub_form'];
31435
31108
  export const quote = T['io.flow.internal.v0.models.quote'];
31436
31109
  export const quoteDeleted = T['io.flow.internal.v0.models.quote_deleted'];
31437
- export const quoteRequest = T['io.flow.internal.v0.models.quote_request'];
31438
- export const quoteRequestType = T['io.flow.internal.v0.enums.quote_request_type'];
31439
31110
  export const quoteUpserted = T['io.flow.internal.v0.models.quote_upserted'];
31440
31111
  export const rateAndRuleItem = T['io.flow.internal.v0.models.rate_and_rule_item'];
31441
31112
  export const rateAndRuleItemForm = T['io.flow.internal.v0.models.rate_and_rule_item_form'];
@@ -31470,9 +31141,6 @@ export const ratecardDimensionEstimateDeleted = T['io.flow.internal.v0.models.ra
31470
31141
  export const ratecardDimensionEstimateUpserted = T['io.flow.internal.v0.models.ratecard_dimension_estimate_upserted'];
31471
31142
  export const ratecardInternalServiceFee = T['io.flow.internal.v0.models.ratecard_internal_service_fee'];
31472
31143
  export const ratecardInternalSummary = T['io.flow.internal.v0.models.ratecard_internal_summary'];
31473
- export const ratecardLaneAggregate = T['io.flow.internal.v0.models.ratecard_lane_aggregate'];
31474
- export const ratecardLaneAggregateDeleted = T['io.flow.internal.v0.models.ratecard_lane_aggregate_deleted'];
31475
- export const ratecardLaneAggregateUpserted = T['io.flow.internal.v0.models.ratecard_lane_aggregate_upserted'];
31476
31144
  export const ratecardLanesImportRequest = T['io.flow.internal.v0.models.ratecard_lanes_import_request'];
31477
31145
  export const ratecardRateLevelDeleted = T['io.flow.internal.v0.models.ratecard_rate_level_deleted'];
31478
31146
  export const ratecardRateLevelOrganizationDeleted = T['io.flow.internal.v0.models.ratecard_rate_level_organization_deleted'];
@@ -31643,6 +31311,8 @@ export const sessionRolloutForm = T['io.flow.internal.v0.models.session_rollout_
31643
31311
  export const setupBlockPutForm = T['io.flow.internal.v0.models.setup_block_put_form'];
31644
31312
  export const sfExpress = T['io.flow.internal.v0.models.sf_express'];
31645
31313
  export const shippedItemValue = T['io.flow.internal.v0.models.shipped_item_value'];
31314
+ export const shippingEstimateDeleted = T['io.flow.internal.v0.models.shipping_estimate_deleted'];
31315
+ export const shippingEstimateUpserted = T['io.flow.internal.v0.models.shipping_estimate_upserted'];
31646
31316
  export const shippingLane = T['io.flow.internal.v0.models.shipping_lane'];
31647
31317
  export const shippingMethodReference = T['io.flow.internal.v0.models.shipping_method_reference'];
31648
31318
  export const shop = T['io.flow.internal.v0.models.shop'];
@@ -31710,6 +31380,7 @@ export const shopifyMarketsTradeSector = T['io.flow.internal.v0.enums.shopify_ma
31710
31380
  export const shopifyMarketsWebhookRegistration = T['io.flow.internal.v0.models.shopify_markets_webhook_registration'];
31711
31381
  export const shopifyMarketsWebhookRegistrationDeleted = T['io.flow.internal.v0.models.shopify_markets_webhook_registration_deleted'];
31712
31382
  export const shopifyMarketsWebhookRegistrationUpserted = T['io.flow.internal.v0.models.shopify_markets_webhook_registration_upserted'];
31383
+ export const shopifyMerchantPlan = T['io.flow.internal.v0.models.shopify_merchant_plan'];
31713
31384
  export const shopifyMetadata = T['io.flow.internal.v0.models.shopify_metadata'];
31714
31385
  export const shopifyMonitoringCarrierService = T['io.flow.internal.v0.models.shopify_monitoring_carrier_service'];
31715
31386
  export const shopifyMonitoringFulfillmentExternal = T['io.flow.internal.v0.models.shopify_monitoring_fulfillment_external'];
@@ -31741,6 +31412,7 @@ export const shopifyOrganizationSettingsForm = T['io.flow.internal.v0.models.sho
31741
31412
  export const shopifyPartnerWebhook = T['io.flow.internal.v0.models.shopify_partner_webhook'];
31742
31413
  export const shopifyPartnerWebhookRaw = T['io.flow.internal.v0.models.shopify_partner_webhook_raw'];
31743
31414
  export const shopifyPaymentSummary = T['io.flow.internal.v0.models.shopify_payment_summary'];
31415
+ export const shopifyPlanType = T['io.flow.internal.v0.enums.shopify_plan_type'];
31744
31416
  export const shopifyProductBundle = T['io.flow.internal.v0.models.shopify_product_bundle'];
31745
31417
  export const shopifyProductBundleDeleted = T['io.flow.internal.v0.models.shopify_product_bundle_deleted'];
31746
31418
  export const shopifyProductBundleUnderlying = T['io.flow.internal.v0.models.shopify_product_bundle_underlying'];