@flowio/api-internal-prop-types 9.24.109 → 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.
- package/lib/api-internal.d.ts +246 -845
- package/lib/api-internal.js +1 -1
- package/package.json +2 -2
- package/src/api-internal.d.ts +246 -845
- package/src/api-internal.js +1407 -2069
package/src/api-internal.js
CHANGED
|
@@ -68,6 +68,13 @@ T['io.flow.organization.v0.models.country_picker'] = PropTypes.exact({
|
|
|
68
68
|
source: T['io.flow.organization.v0.enums.country_picker_source'].isRequired,
|
|
69
69
|
});
|
|
70
70
|
|
|
71
|
+
T['io.flow.sellability.v0.enums.sellability_error_code'] = PropTypes.oneOf(['insufficient_details', 'ineligible_category']);
|
|
72
|
+
|
|
73
|
+
T['io.flow.sellability.v0.models.sellability_error'] = PropTypes.exact({
|
|
74
|
+
code: T['io.flow.sellability.v0.enums.sellability_error_code'].isRequired,
|
|
75
|
+
messages: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
76
|
+
});
|
|
77
|
+
|
|
71
78
|
T['io.flow.sellability.v0.models.product_sellability_price'] = PropTypes.exact({
|
|
72
79
|
currency: PropTypes.string.isRequired,
|
|
73
80
|
amount: PropTypes.number.isRequired,
|
|
@@ -97,21 +104,6 @@ T['io.flow.organization.onboarding.state.v0.models.rejection_put_form'] = PropTy
|
|
|
97
104
|
});
|
|
98
105
|
|
|
99
106
|
T['io.flow.organization.onboarding.state.v0.enums.merchant_disabled_reason'] = PropTypes.oneOf(['merchant_deactivated', 'merchant_rejected']);
|
|
100
|
-
|
|
101
|
-
T['io.flow.checkout.v0.models.checkout_urls'] = PropTypes.exact({
|
|
102
|
-
continue_shopping: PropTypes.string,
|
|
103
|
-
confirmation: PropTypes.string,
|
|
104
|
-
invalid_checkout: PropTypes.string,
|
|
105
|
-
});
|
|
106
|
-
|
|
107
|
-
T['io.flow.experience.v0.models.order_number_reference'] = PropTypes.exact({
|
|
108
|
-
number: PropTypes.string.isRequired,
|
|
109
|
-
});
|
|
110
|
-
|
|
111
|
-
T['io.flow.common.v0.models.checkout_reference'] = PropTypes.exact({
|
|
112
|
-
id: PropTypes.string.isRequired,
|
|
113
|
-
});
|
|
114
|
-
|
|
115
107
|
T['io.flow.apple.pay.v0.enums.apple_pay_line_item_type'] = PropTypes.oneOf(['final', 'pending']);
|
|
116
108
|
T['io.flow.catalog.return.v0.enums.return_policy_state'] = PropTypes.oneOf(['current', 'deleting', 'updating']);
|
|
117
109
|
T['io.flow.fulfillment.v0.enums.tier_estimate_type'] = PropTypes.oneOf(['calculated', 'custom']);
|
|
@@ -162,6 +154,10 @@ T['io.flow.fulfillment.v0.models.quote_error'] = PropTypes.exact({
|
|
|
162
154
|
item_numbers: PropTypes.arrayOf(PropTypes.string),
|
|
163
155
|
});
|
|
164
156
|
|
|
157
|
+
T['io.flow.fulfillment.v0.models.delivery_option_reference'] = PropTypes.exact({
|
|
158
|
+
id: PropTypes.string.isRequired,
|
|
159
|
+
});
|
|
160
|
+
|
|
165
161
|
T['io.flow.fulfillment.v0.enums.preferred_service_selection_strategy'] = PropTypes.oneOf(['calculated_rate', 'flat_rate', 'custom_rate']);
|
|
166
162
|
|
|
167
163
|
T['io.flow.fulfillment.v0.models.physical_delivery_preferred_service'] = PropTypes.exact({
|
|
@@ -814,6 +810,11 @@ T['io.flow.reference.v0.models.locale'] = PropTypes.exact({
|
|
|
814
810
|
numbers: T['io.flow.reference.v0.models.locale_numbers'].isRequired,
|
|
815
811
|
});
|
|
816
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
|
+
|
|
817
818
|
T['io.flow.reference.v0.models.currency_symbols'] = PropTypes.exact({
|
|
818
819
|
primary: PropTypes.string.isRequired,
|
|
819
820
|
narrow: PropTypes.string,
|
|
@@ -1012,6 +1013,16 @@ T['io.flow.ratecard.v0.models.ratecard_rate'] = PropTypes.exact({
|
|
|
1012
1013
|
weight: PropTypes.number.isRequired,
|
|
1013
1014
|
});
|
|
1014
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
|
+
|
|
1015
1026
|
T['io.flow.ratecard.v0.models.fuel_surcharge_percent'] = PropTypes.exact({
|
|
1016
1027
|
discriminator: PropTypes.oneOf(['fuel_surcharge_percent']).isRequired,
|
|
1017
1028
|
percent: PropTypes.number.isRequired,
|
|
@@ -1072,6 +1083,17 @@ T['io.flow.experience.v0.models.order_number_generator_uuid'] = PropTypes.exact(
|
|
|
1072
1083
|
|
|
1073
1084
|
T['io.flow.experience.v0.enums.payment_method_rule_content_key'] = PropTypes.oneOf(['description']);
|
|
1074
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
|
+
|
|
1075
1097
|
T['io.flow.experience.v0.enums.order_refund_summary_partial_charged'] = PropTypes.oneOf(['per_item', 'for_order', 'by_value_percentage', 'by_quantity_percentage']);
|
|
1076
1098
|
|
|
1077
1099
|
T['io.flow.experience.v0.models.order_refund_summary_item'] = PropTypes.exact({
|
|
@@ -1138,6 +1160,10 @@ T['io.flow.experience.v0.unions.order_number_generator'] = PropTypes.oneOfType([
|
|
|
1138
1160
|
|
|
1139
1161
|
T['io.flow.experience.v0.enums.order_storage'] = PropTypes.oneOf(['do_not_persist', 'persist']);
|
|
1140
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
|
+
|
|
1141
1167
|
T['io.flow.experience.v0.models.order_rule_reference'] = PropTypes.exact({
|
|
1142
1168
|
id: PropTypes.string.isRequired,
|
|
1143
1169
|
key: PropTypes.string.isRequired,
|
|
@@ -1490,6 +1516,20 @@ T['io.flow.ftp.v0.models.ftp_organization_settings'] = PropTypes.exact({
|
|
|
1490
1516
|
|
|
1491
1517
|
T['io.flow.common.v0.enums.holiday_calendar'] = PropTypes.oneOf(['us_bank_holidays', 'jewish_holidays']);
|
|
1492
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
|
+
});
|
|
1493
1533
|
|
|
1494
1534
|
T['io.flow.common.v0.enums.day_of_week'] = PropTypes.oneOf([
|
|
1495
1535
|
'sunday',
|
|
@@ -2750,8 +2790,10 @@ T['io.flow.shopify.external.v0.models.graphql_variant_image'] = PropTypes.exact(
|
|
|
2750
2790
|
T['io.flow.shopify.external.v0.enums.inventory_policy'] = PropTypes.oneOf(['deny', 'continue']);
|
|
2751
2791
|
|
|
2752
2792
|
T['io.flow.shopify.external.v0.models.graphql_metafield'] = PropTypes.exact({
|
|
2793
|
+
id: PropTypes.string.isRequired,
|
|
2753
2794
|
key: PropTypes.string.isRequired,
|
|
2754
2795
|
value: PropTypes.string.isRequired,
|
|
2796
|
+
type: PropTypes.string,
|
|
2755
2797
|
});
|
|
2756
2798
|
|
|
2757
2799
|
T['io.flow.shopify.external.v0.models.graphql_taxonomy_category'] = PropTypes.exact({
|
|
@@ -2772,6 +2814,17 @@ T['io.flow.shopify.external.v0.models.graphql_product_image'] = PropTypes.exact(
|
|
|
2772
2814
|
altText: PropTypes.string,
|
|
2773
2815
|
});
|
|
2774
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
|
+
|
|
2775
2828
|
T['io.flow.shopify.external.v0.enums.graphql_weight_unit'] = PropTypes.oneOf(['GRAMS', 'KILOGRAMS', 'OUNCES', 'POUNDS']);
|
|
2776
2829
|
|
|
2777
2830
|
T['io.flow.shopify.external.v0.models.graphql_weight'] = PropTypes.exact({
|
|
@@ -3743,7 +3796,7 @@ T['io.flow.external.paypal.v1.models.reporting_transaction_info'] = PropTypes.ex
|
|
|
3743
3796
|
transaction_updated_date: PropTypes.string.isRequired,
|
|
3744
3797
|
transaction_status: T['io.flow.external.paypal.v1.enums.reporting_transaction_status'].isRequired,
|
|
3745
3798
|
transaction_subject: PropTypes.string,
|
|
3746
|
-
invoice_id: PropTypes.string
|
|
3799
|
+
invoice_id: PropTypes.string,
|
|
3747
3800
|
custom_field: PropTypes.string,
|
|
3748
3801
|
protection_eligibility: PropTypes.string,
|
|
3749
3802
|
instrument_type: PropTypes.string,
|
|
@@ -4735,6 +4788,122 @@ T['io.flow.stripe.v0.models.source_klarna_request'] = PropTypes.exact({
|
|
|
4735
4788
|
});
|
|
4736
4789
|
|
|
4737
4790
|
T['io.flow.stripe.v0.enums.three_d_secure_support'] = PropTypes.oneOf(['required', 'recommended', 'optional', 'not_supported']);
|
|
4791
|
+
|
|
4792
|
+
T['io.flow.stripe.v0.enums.shopify_payment_stripe_event_type'] = PropTypes.oneOf([
|
|
4793
|
+
'charge.captured',
|
|
4794
|
+
'charge.dispute.created',
|
|
4795
|
+
'charge.dispute.closed',
|
|
4796
|
+
'charge.dispute.funds_reinstated',
|
|
4797
|
+
'charge.dispute.funds_withdrawn',
|
|
4798
|
+
'charge.dispute.updated',
|
|
4799
|
+
'charge.expired',
|
|
4800
|
+
'charge.failed',
|
|
4801
|
+
'charge.pending',
|
|
4802
|
+
'charge.refund.updated',
|
|
4803
|
+
'charge.refunded',
|
|
4804
|
+
'charge.succeeded',
|
|
4805
|
+
'charge.updated',
|
|
4806
|
+
'payment_intent.amount_capturable_updated',
|
|
4807
|
+
'payment_intent.canceled',
|
|
4808
|
+
'payment_intent.created',
|
|
4809
|
+
'payment_intent.partially_funded',
|
|
4810
|
+
'payment_intent.payment_failed',
|
|
4811
|
+
'payment_intent.processing',
|
|
4812
|
+
'payment_intent.requires_action',
|
|
4813
|
+
'payment_intent.succeeded',
|
|
4814
|
+
'transfer.created',
|
|
4815
|
+
'transfer.reversed',
|
|
4816
|
+
'transfer.updated',
|
|
4817
|
+
'reporting.report_run.succeeded',
|
|
4818
|
+
'reporting.report_type.updated',
|
|
4819
|
+
'reporting.report_type.failed',
|
|
4820
|
+
]);
|
|
4821
|
+
|
|
4822
|
+
T['io.flow.stripe.v0.models.shopify_payment_stripe_event_data'] = PropTypes.exact({
|
|
4823
|
+
object: PropTypes.object,
|
|
4824
|
+
previous_attributes: PropTypes.object,
|
|
4825
|
+
});
|
|
4826
|
+
|
|
4827
|
+
T['io.flow.stripe.v0.models.shopify_payment_stripe_event'] = PropTypes.exact({
|
|
4828
|
+
id: PropTypes.string.isRequired,
|
|
4829
|
+
api_version: PropTypes.string,
|
|
4830
|
+
data: T['io.flow.stripe.v0.models.shopify_payment_stripe_event_data'].isRequired,
|
|
4831
|
+
request: PropTypes.object,
|
|
4832
|
+
type: T['io.flow.stripe.v0.enums.shopify_payment_stripe_event_type'].isRequired,
|
|
4833
|
+
object: PropTypes.string.isRequired,
|
|
4834
|
+
account: PropTypes.string,
|
|
4835
|
+
created: PropTypes.number.isRequired,
|
|
4836
|
+
livemode: PropTypes.bool.isRequired,
|
|
4837
|
+
pending_webhooks: PropTypes.number.isRequired,
|
|
4838
|
+
});
|
|
4839
|
+
|
|
4840
|
+
T['io.flow.stripe.v0.models.report_run_parameters'] = PropTypes.exact({
|
|
4841
|
+
interval_start: PropTypes.number.isRequired,
|
|
4842
|
+
interval_end: PropTypes.number.isRequired,
|
|
4843
|
+
columns: PropTypes.arrayOf(PropTypes.string),
|
|
4844
|
+
payout: PropTypes.string,
|
|
4845
|
+
connected_account: PropTypes.string,
|
|
4846
|
+
reporting_category: PropTypes.string,
|
|
4847
|
+
});
|
|
4848
|
+
|
|
4849
|
+
T['io.flow.stripe.v0.enums.reporting_report_type'] = PropTypes.oneOf([
|
|
4850
|
+
'ending_balance_reconciliation.itemized.1',
|
|
4851
|
+
'ending_balance_reconciliation.itemized.2',
|
|
4852
|
+
'ending_balance_reconciliation.itemized.3',
|
|
4853
|
+
'ending_balance_reconciliation.itemized.4',
|
|
4854
|
+
'payout_reconciliation.itemized.5',
|
|
4855
|
+
'payout_reconciliation.by_id.itemized.1',
|
|
4856
|
+
'payout_reconciliation.by_id.itemized.2',
|
|
4857
|
+
'payout_reconciliation.by_id.itemized.3',
|
|
4858
|
+
'payout_reconciliation.by_id.itemized.4',
|
|
4859
|
+
'payout_reconciliation.by_id.summary.1',
|
|
4860
|
+
'ending_balance_reconciliation.summary.1',
|
|
4861
|
+
'payout_reconciliation.itemized.1',
|
|
4862
|
+
'payout_reconciliation.itemized.2',
|
|
4863
|
+
'payout_reconciliation.itemized.3',
|
|
4864
|
+
'payout_reconciliation.itemized.4',
|
|
4865
|
+
'payout_reconciliation.summary.1',
|
|
4866
|
+
]);
|
|
4867
|
+
|
|
4868
|
+
T['io.flow.stripe.v0.models.reporting_report_run_form'] = PropTypes.exact({
|
|
4869
|
+
report_type: T['io.flow.stripe.v0.enums.reporting_report_type'].isRequired,
|
|
4870
|
+
parameters: T['io.flow.stripe.v0.models.report_run_parameters'].isRequired,
|
|
4871
|
+
});
|
|
4872
|
+
|
|
4873
|
+
T['io.flow.stripe.v0.models.reporting_report_run_result'] = PropTypes.exact({
|
|
4874
|
+
id: PropTypes.string.isRequired,
|
|
4875
|
+
object: PropTypes.string.isRequired,
|
|
4876
|
+
created: PropTypes.number.isRequired,
|
|
4877
|
+
expires_at: PropTypes.number.isRequired,
|
|
4878
|
+
filename: PropTypes.string.isRequired,
|
|
4879
|
+
links: PropTypes.object.isRequired,
|
|
4880
|
+
purpose: PropTypes.string.isRequired,
|
|
4881
|
+
size: PropTypes.number.isRequired,
|
|
4882
|
+
title: PropTypes.string.isRequired,
|
|
4883
|
+
type: PropTypes.string.isRequired,
|
|
4884
|
+
url: PropTypes.string.isRequired,
|
|
4885
|
+
});
|
|
4886
|
+
|
|
4887
|
+
T['io.flow.stripe.v0.enums.reporting_report_run_status'] = PropTypes.oneOf(['pending', 'succeeded', 'failed']);
|
|
4888
|
+
|
|
4889
|
+
T['io.flow.stripe.v0.models.reporting_report_run'] = PropTypes.exact({
|
|
4890
|
+
id: PropTypes.string.isRequired,
|
|
4891
|
+
object: PropTypes.string.isRequired,
|
|
4892
|
+
created: PropTypes.number.isRequired,
|
|
4893
|
+
error: PropTypes.string,
|
|
4894
|
+
livemode: PropTypes.bool.isRequired,
|
|
4895
|
+
status: T['io.flow.stripe.v0.enums.reporting_report_run_status'].isRequired,
|
|
4896
|
+
result: T['io.flow.stripe.v0.models.reporting_report_run_result'],
|
|
4897
|
+
succeeded_at: PropTypes.number,
|
|
4898
|
+
});
|
|
4899
|
+
|
|
4900
|
+
T['io.flow.stripe.v0.models.reporting_report_runs'] = PropTypes.exact({
|
|
4901
|
+
object: PropTypes.string.isRequired,
|
|
4902
|
+
data: PropTypes.arrayOf(T['io.flow.stripe.v0.models.reporting_report_run']).isRequired,
|
|
4903
|
+
has_more: PropTypes.bool.isRequired,
|
|
4904
|
+
url: PropTypes.string,
|
|
4905
|
+
});
|
|
4906
|
+
|
|
4738
4907
|
T['io.flow.stripe.v0.enums.refund_reason'] = PropTypes.oneOf(['duplicate', 'fraudulent', 'requested_by_customer']);
|
|
4739
4908
|
|
|
4740
4909
|
T['io.flow.stripe.v0.enums.refund_failure_reason'] = PropTypes.oneOf([
|
|
@@ -5906,6 +6075,19 @@ T['io.flow.stripe.v0.models.payment_method'] = PropTypes.exact({
|
|
|
5906
6075
|
type: PropTypes.string,
|
|
5907
6076
|
});
|
|
5908
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
|
+
|
|
5909
6091
|
T['io.flow.stripe.v0.enums.apple_pay_type'] = PropTypes.oneOf(['apple_pay', 'apple_pay_later']);
|
|
5910
6092
|
|
|
5911
6093
|
T['io.flow.stripe.v0.models.apple_pay_information'] = PropTypes.exact({
|
|
@@ -6198,6 +6380,14 @@ T['io.flow.field.validation.v0.unions.field_validation_rule'] = PropTypes.oneOfT
|
|
|
6198
6380
|
T['io.flow.field.validation.v0.models.field_validation_pattern'],
|
|
6199
6381
|
]);
|
|
6200
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
|
+
|
|
6201
6391
|
T['io.flow.payment.v0.models.merchant_of_record_payment_form'] = PropTypes.exact({
|
|
6202
6392
|
discriminator: PropTypes.oneOf(['merchant_of_record_payment_form']).isRequired,
|
|
6203
6393
|
method: PropTypes.string.isRequired,
|
|
@@ -6507,6 +6697,18 @@ T['io.flow.payment.v0.models.stripe_authorization_result_action_details'] = Prop
|
|
|
6507
6697
|
T['io.flow.payment.v0.enums.authorization_result_action_type'] = PropTypes.oneOf(['native', 'redirect', 'wait']);
|
|
6508
6698
|
T['io.flow.payment.v0.enums.three_d_secure_code'] = PropTypes.oneOf(['verified', 'not_verified', 'failed']);
|
|
6509
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
|
+
|
|
6510
6712
|
T['io.flow.payment.v0.models.apple_pay_merchant_validation_payload'] = PropTypes.exact({
|
|
6511
6713
|
discriminator: PropTypes.oneOf(['apple_pay_merchant_validation_payload']).isRequired,
|
|
6512
6714
|
validation_url: PropTypes.string.isRequired,
|
|
@@ -6562,6 +6764,13 @@ T['io.flow.payment.v0.unions.authorization_result_action_details'] = PropTypes.o
|
|
|
6562
6764
|
T['io.flow.payment.v0.models.select_issuer_option_action_details'],
|
|
6563
6765
|
]);
|
|
6564
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
|
+
|
|
6565
6774
|
T['io.flow.export.v0.enums.item_identifier'] = PropTypes.oneOf(['item_number', 'sku']);
|
|
6566
6775
|
|
|
6567
6776
|
T['io.flow.common.v0.models.included_levies'] = PropTypes.exact({
|
|
@@ -6578,6 +6787,14 @@ T['io.flow.price.v0.models.price_book'] = PropTypes.exact({
|
|
|
6578
6787
|
status: T['io.flow.common.v0.enums.price_book_status'].isRequired,
|
|
6579
6788
|
});
|
|
6580
6789
|
|
|
6790
|
+
T['io.flow.currency.v0.models.rate'] = PropTypes.exact({
|
|
6791
|
+
id: PropTypes.string.isRequired,
|
|
6792
|
+
base: PropTypes.string.isRequired,
|
|
6793
|
+
target: PropTypes.string.isRequired,
|
|
6794
|
+
effective_at: PropTypes.string.isRequired,
|
|
6795
|
+
value: PropTypes.number.isRequired,
|
|
6796
|
+
});
|
|
6797
|
+
|
|
6581
6798
|
T['io.flow.export.v0.models.export_delivery_email'] = PropTypes.exact({
|
|
6582
6799
|
discriminator: PropTypes.oneOf(['export_delivery_email']).isRequired,
|
|
6583
6800
|
email: PropTypes.string.isRequired,
|
|
@@ -6696,6 +6913,47 @@ T['io.flow.export.v0.models.account_transactions_export_type'] = PropTypes.exact
|
|
|
6696
6913
|
T['io.flow.export.v0.unions.export_delivery'] = PropTypes.oneOfType([T['io.flow.export.v0.models.export_delivery_email']]);
|
|
6697
6914
|
T['io.flow.export.v0.enums.export_status'] = PropTypes.oneOf(['created', 'processing', 'completed', 'failed']);
|
|
6698
6915
|
|
|
6916
|
+
T['io.flow.price.v0.models.price_book_item_schedule'] = PropTypes.exact({
|
|
6917
|
+
starts_at: PropTypes.string.isRequired,
|
|
6918
|
+
ends_at: PropTypes.string,
|
|
6919
|
+
});
|
|
6920
|
+
|
|
6921
|
+
T['io.flow.price.v0.models.price_book_item_query_form'] = PropTypes.exact({
|
|
6922
|
+
price_book_key: PropTypes.string.isRequired,
|
|
6923
|
+
item_query: PropTypes.string.isRequired,
|
|
6924
|
+
amount: PropTypes.number.isRequired,
|
|
6925
|
+
schedule: T['io.flow.price.v0.models.price_book_item_schedule'],
|
|
6926
|
+
item_attributes: PropTypes.objectOf(PropTypes.string),
|
|
6927
|
+
});
|
|
6928
|
+
|
|
6929
|
+
T['io.flow.price.v0.models.price_book_item_form'] = PropTypes.exact({
|
|
6930
|
+
price_book_key: PropTypes.string.isRequired,
|
|
6931
|
+
item_number: PropTypes.string.isRequired,
|
|
6932
|
+
amount: PropTypes.number.isRequired,
|
|
6933
|
+
schedule: T['io.flow.price.v0.models.price_book_item_schedule'],
|
|
6934
|
+
item_attributes: PropTypes.objectOf(PropTypes.string),
|
|
6935
|
+
});
|
|
6936
|
+
|
|
6937
|
+
T['io.flow.export.v0.models.csv_price_book_item_export_row_by_sku'] = PropTypes.exact({
|
|
6938
|
+
sku: PropTypes.string.isRequired,
|
|
6939
|
+
price_book_key: PropTypes.string.isRequired,
|
|
6940
|
+
price_book_item_key: PropTypes.string.isRequired,
|
|
6941
|
+
item_name: PropTypes.string.isRequired,
|
|
6942
|
+
amount: PropTypes.number.isRequired,
|
|
6943
|
+
item_attributes: PropTypes.objectOf(PropTypes.string),
|
|
6944
|
+
schedule: T['io.flow.price.v0.models.price_book_item_schedule'].isRequired,
|
|
6945
|
+
});
|
|
6946
|
+
|
|
6947
|
+
T['io.flow.export.v0.models.csv_price_book_item_export_row_by_item_number'] = PropTypes.exact({
|
|
6948
|
+
item_number: PropTypes.string.isRequired,
|
|
6949
|
+
price_book_key: PropTypes.string.isRequired,
|
|
6950
|
+
price_book_item_key: PropTypes.string.isRequired,
|
|
6951
|
+
item_name: PropTypes.string.isRequired,
|
|
6952
|
+
amount: PropTypes.number.isRequired,
|
|
6953
|
+
item_attributes: PropTypes.objectOf(PropTypes.string),
|
|
6954
|
+
schedule: T['io.flow.price.v0.models.price_book_item_schedule'].isRequired,
|
|
6955
|
+
});
|
|
6956
|
+
|
|
6699
6957
|
T['io.flow.payment.gateway.v0.models.payment_request_cancellation_reason_order_missing'] = PropTypes.exact({
|
|
6700
6958
|
type: PropTypes.oneOf(['order_missing']).isRequired,
|
|
6701
6959
|
description: PropTypes.string,
|
|
@@ -7488,6 +7746,41 @@ T['io.flow.google.pay.v0.models.encrypted_message'] = PropTypes.exact({
|
|
|
7488
7746
|
paymentMethodDetails: T['io.flow.google.pay.v0.models.payment_method_details'].isRequired,
|
|
7489
7747
|
});
|
|
7490
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
|
+
|
|
7491
7784
|
T['io.flow.fulfillment.v0.enums.item_availability_status'] = PropTypes.oneOf(['available', 'low', 'out_of_stock']);
|
|
7492
7785
|
|
|
7493
7786
|
T['io.flow.fulfillment.v0.models.country_availability'] = PropTypes.exact({
|
|
@@ -7556,6 +7849,10 @@ T['io.flow.merchant.onboarding.v0.models.shop'] = PropTypes.exact({
|
|
|
7556
7849
|
id: PropTypes.string.isRequired,
|
|
7557
7850
|
});
|
|
7558
7851
|
|
|
7852
|
+
T['io.flow.ratecard.v0.models.ratecard_reference'] = PropTypes.exact({
|
|
7853
|
+
id: PropTypes.string.isRequired,
|
|
7854
|
+
});
|
|
7855
|
+
|
|
7559
7856
|
T['io.flow.merchant.onboarding.v0.models.monthly_average'] = PropTypes.exact({
|
|
7560
7857
|
volume: T['io.flow.merchant.onboarding.v0.models.monthly_average_volume'],
|
|
7561
7858
|
number_transactions: PropTypes.number,
|
|
@@ -7609,6 +7906,23 @@ T['io.flow.merchant.onboarding.v0.unions.merchant_application_put_form'] = PropT
|
|
|
7609
7906
|
T['io.flow.merchant.onboarding.v0.models.shopify_merchant_application_put_form'],
|
|
7610
7907
|
]);
|
|
7611
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
|
+
|
|
7612
7926
|
T['io.flow.query.builder.v0.unions.available_filter'] = PropTypes.oneOfType([
|
|
7613
7927
|
T['io.flow.query.builder.v0.models.available_filter_structured'],
|
|
7614
7928
|
T['io.flow.query.builder.v0.models.available_filter_unstructured'],
|
|
@@ -8166,14 +8480,6 @@ T['io.flow.internal.v0.models.order_combined_shipment_deleted'] = PropTypes.exac
|
|
|
8166
8480
|
id: PropTypes.string.isRequired,
|
|
8167
8481
|
});
|
|
8168
8482
|
|
|
8169
|
-
T['io.flow.internal.v0.models.optin_prompt_deleted'] = PropTypes.exact({
|
|
8170
|
-
discriminator: PropTypes.oneOf(['optin_prompt_deleted']).isRequired,
|
|
8171
|
-
event_id: PropTypes.string.isRequired,
|
|
8172
|
-
timestamp: PropTypes.string.isRequired,
|
|
8173
|
-
id: PropTypes.string.isRequired,
|
|
8174
|
-
organization: PropTypes.string.isRequired,
|
|
8175
|
-
});
|
|
8176
|
-
|
|
8177
8483
|
T['io.flow.internal.v0.models.localized_item_prices_export_request'] = PropTypes.exact({
|
|
8178
8484
|
discriminator: PropTypes.oneOf(['localized_item_prices_export_request']).isRequired,
|
|
8179
8485
|
event_id: PropTypes.string.isRequired,
|
|
@@ -8183,15 +8489,6 @@ T['io.flow.internal.v0.models.localized_item_prices_export_request'] = PropTypes
|
|
|
8183
8489
|
since: PropTypes.string,
|
|
8184
8490
|
});
|
|
8185
8491
|
|
|
8186
|
-
T['io.flow.internal.v0.models.feeds_export'] = PropTypes.exact({
|
|
8187
|
-
discriminator: PropTypes.oneOf(['feeds_export']).isRequired,
|
|
8188
|
-
event_id: PropTypes.string.isRequired,
|
|
8189
|
-
timestamp: PropTypes.string.isRequired,
|
|
8190
|
-
organization: PropTypes.string.isRequired,
|
|
8191
|
-
export_id: PropTypes.string.isRequired,
|
|
8192
|
-
feed_ids: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
8193
|
-
});
|
|
8194
|
-
|
|
8195
8492
|
T['io.flow.internal.v0.models.logistics_capabilities_deleted'] = PropTypes.exact({
|
|
8196
8493
|
discriminator: PropTypes.oneOf(['logistics_capabilities_deleted']).isRequired,
|
|
8197
8494
|
event_id: PropTypes.string.isRequired,
|
|
@@ -8200,39 +8497,6 @@ T['io.flow.internal.v0.models.logistics_capabilities_deleted'] = PropTypes.exact
|
|
|
8200
8497
|
id: PropTypes.string.isRequired,
|
|
8201
8498
|
});
|
|
8202
8499
|
|
|
8203
|
-
T['io.flow.internal.v0.models.localized_price_book_item_deleted'] = PropTypes.exact({
|
|
8204
|
-
discriminator: PropTypes.oneOf(['localized_price_book_item_deleted']).isRequired,
|
|
8205
|
-
event_id: PropTypes.string.isRequired,
|
|
8206
|
-
timestamp: PropTypes.string.isRequired,
|
|
8207
|
-
organization: PropTypes.string.isRequired,
|
|
8208
|
-
id: PropTypes.string.isRequired,
|
|
8209
|
-
});
|
|
8210
|
-
|
|
8211
|
-
T['io.flow.internal.v0.models.localized_item_snapshot'] = PropTypes.exact({
|
|
8212
|
-
discriminator: PropTypes.oneOf(['localized_item_snapshot']).isRequired,
|
|
8213
|
-
event_id: PropTypes.string.isRequired,
|
|
8214
|
-
timestamp: PropTypes.string.isRequired,
|
|
8215
|
-
organization: PropTypes.string.isRequired,
|
|
8216
|
-
subcatalog_id: PropTypes.string.isRequired,
|
|
8217
|
-
url: PropTypes.string.isRequired,
|
|
8218
|
-
});
|
|
8219
|
-
|
|
8220
|
-
T['io.flow.internal.v0.models.localized_item_deleted_v2'] = PropTypes.exact({
|
|
8221
|
-
discriminator: PropTypes.oneOf(['localized_item_deleted_v2']).isRequired,
|
|
8222
|
-
event_id: PropTypes.string.isRequired,
|
|
8223
|
-
timestamp: PropTypes.string.isRequired,
|
|
8224
|
-
organization: PropTypes.string.isRequired,
|
|
8225
|
-
id: PropTypes.string.isRequired,
|
|
8226
|
-
});
|
|
8227
|
-
|
|
8228
|
-
T['io.flow.internal.v0.models.localized_item_deleted'] = PropTypes.exact({
|
|
8229
|
-
discriminator: PropTypes.oneOf(['localized_item_deleted']).isRequired,
|
|
8230
|
-
event_id: PropTypes.string.isRequired,
|
|
8231
|
-
timestamp: PropTypes.string.isRequired,
|
|
8232
|
-
organization: PropTypes.string.isRequired,
|
|
8233
|
-
number: PropTypes.string.isRequired,
|
|
8234
|
-
});
|
|
8235
|
-
|
|
8236
8500
|
T['io.flow.internal.v0.models.label_tracking_summary_deleted'] = PropTypes.exact({
|
|
8237
8501
|
discriminator: PropTypes.oneOf(['label_tracking_summary_deleted']).isRequired,
|
|
8238
8502
|
event_id: PropTypes.string.isRequired,
|
|
@@ -8865,8 +9129,8 @@ T['io.flow.internal.v0.models.adyen_dispute_deleted'] = PropTypes.exact({
|
|
|
8865
9129
|
id: PropTypes.string.isRequired,
|
|
8866
9130
|
});
|
|
8867
9131
|
|
|
8868
|
-
T['io.flow.internal.v0.models.
|
|
8869
|
-
discriminator: PropTypes.oneOf(['
|
|
9132
|
+
T['io.flow.internal.v0.models.shipping_estimate_deleted'] = PropTypes.exact({
|
|
9133
|
+
discriminator: PropTypes.oneOf(['shipping_estimate_deleted']).isRequired,
|
|
8870
9134
|
event_id: PropTypes.string.isRequired,
|
|
8871
9135
|
timestamp: PropTypes.string.isRequired,
|
|
8872
9136
|
organization: PropTypes.string.isRequired,
|
|
@@ -8954,6 +9218,73 @@ T['io.flow.payment.v0.models.virtual_card_reference'] = PropTypes.exact({
|
|
|
8954
9218
|
id: PropTypes.string.isRequired,
|
|
8955
9219
|
});
|
|
8956
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
|
+
|
|
8957
9288
|
T['io.flow.internal.v0.models.checkout_platform_data'] = PropTypes.exact({
|
|
8958
9289
|
order_number: PropTypes.string,
|
|
8959
9290
|
});
|
|
@@ -9652,15 +9983,26 @@ T['io.flow.internal.v0.models.shopify_product_delete_upserted'] = PropTypes.exac
|
|
|
9652
9983
|
shopify_product_delete: T['io.flow.internal.v0.models.shopify_product_delete_webhook_event'].isRequired,
|
|
9653
9984
|
});
|
|
9654
9985
|
|
|
9986
|
+
T['io.flow.shopify.external.v0.models.product_metafield'] = PropTypes.exact({
|
|
9987
|
+
id: PropTypes.number.isRequired,
|
|
9988
|
+
namespace: PropTypes.string.isRequired,
|
|
9989
|
+
key: PropTypes.string.isRequired,
|
|
9990
|
+
value: PropTypes.string.isRequired,
|
|
9991
|
+
created_at: PropTypes.string.isRequired,
|
|
9992
|
+
updated_at: PropTypes.string.isRequired,
|
|
9993
|
+
type: PropTypes.string.isRequired,
|
|
9994
|
+
admin_graphql_api_id: PropTypes.string.isRequired,
|
|
9995
|
+
});
|
|
9996
|
+
|
|
9655
9997
|
T['io.flow.product.v0.models.product_taxonomy_category'] = PropTypes.exact({
|
|
9656
9998
|
name: PropTypes.string.isRequired,
|
|
9657
9999
|
full_name: PropTypes.string.isRequired,
|
|
9658
10000
|
});
|
|
9659
10001
|
|
|
9660
10002
|
T['io.flow.sellability.v0.models.product_sellability_form'] = PropTypes.exact({
|
|
9661
|
-
|
|
10003
|
+
shop_id: PropTypes.string.isRequired,
|
|
9662
10004
|
product_id: PropTypes.string,
|
|
9663
|
-
|
|
10005
|
+
request_id: PropTypes.string.isRequired,
|
|
9664
10006
|
name: PropTypes.string.isRequired,
|
|
9665
10007
|
price: T['io.flow.sellability.v0.models.product_sellability_price'].isRequired,
|
|
9666
10008
|
description: PropTypes.string.isRequired,
|
|
@@ -9746,6 +10088,7 @@ T['io.flow.shopify.external.v0.models.product'] = PropTypes.exact({
|
|
|
9746
10088
|
updated_at: PropTypes.string.isRequired,
|
|
9747
10089
|
has_variants_that_requires_components: PropTypes.bool,
|
|
9748
10090
|
category: T['io.flow.product.v0.models.product_taxonomy_category'],
|
|
10091
|
+
metafields: PropTypes.arrayOf(T['io.flow.shopify.external.v0.models.product_metafield']),
|
|
9749
10092
|
});
|
|
9750
10093
|
|
|
9751
10094
|
T['io.flow.shopify.external.v0.models.response_products'] = PropTypes.exact({
|
|
@@ -9769,6 +10112,8 @@ T['io.flow.internal.v0.models.shopify_product_wrapper'] = PropTypes.exact({
|
|
|
9769
10112
|
T['io.flow.internal.v0.models.shopify_product_update_webhook_event'] = PropTypes.exact({
|
|
9770
10113
|
id: PropTypes.string.isRequired,
|
|
9771
10114
|
product: T['io.flow.shopify.external.v0.models.product'].isRequired,
|
|
10115
|
+
domain: PropTypes.string.isRequired,
|
|
10116
|
+
api_version: PropTypes.string.isRequired,
|
|
9772
10117
|
});
|
|
9773
10118
|
|
|
9774
10119
|
T['io.flow.internal.v0.models.shopify_product_update_upserted'] = PropTypes.exact({
|
|
@@ -9880,6 +10225,7 @@ T['io.flow.internal.v0.unions.shopify_monitoring_order_monitor_type'] = PropType
|
|
|
9880
10225
|
T['io.flow.internal.v0.models.shopify_monitoring_fulfillment_missing_details'],
|
|
9881
10226
|
]);
|
|
9882
10227
|
|
|
10228
|
+
T['io.flow.internal.v0.enums.shopify_plan_type'] = PropTypes.oneOf(['standard', 'shopify_plus']);
|
|
9883
10229
|
T['io.flow.shopify.markets.v0.enums.shopify_webhook_format'] = PropTypes.oneOf(['json', 'xml']);
|
|
9884
10230
|
|
|
9885
10231
|
T['io.flow.shopify.markets.v0.enums.shopify_webhook_topic'] = PropTypes.oneOf([
|
|
@@ -10277,6 +10623,9 @@ T['io.flow.internal.v0.models.shopify_check_inventory_error'] = PropTypes.exact(
|
|
|
10277
10623
|
numbers: PropTypes.arrayOf(PropTypes.string),
|
|
10278
10624
|
});
|
|
10279
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
|
+
|
|
10280
10629
|
T['io.flow.organization.onboarding.state.v0.enums.onboarding_blocked_reason'] = PropTypes.oneOf([
|
|
10281
10630
|
'street_address_is_blank_3pl',
|
|
10282
10631
|
'street_address_is_po_box_3pl',
|
|
@@ -10567,14 +10916,15 @@ T['io.flow.sellability.v0.models.sellablility_region_result'] = PropTypes.exact(
|
|
|
10567
10916
|
});
|
|
10568
10917
|
|
|
10569
10918
|
T['io.flow.sellability.v0.models.product_sellability'] = PropTypes.exact({
|
|
10570
|
-
|
|
10919
|
+
shop_id: PropTypes.string.isRequired,
|
|
10571
10920
|
product_id: PropTypes.string,
|
|
10572
|
-
|
|
10921
|
+
request_id: PropTypes.string.isRequired,
|
|
10922
|
+
hs6_code: PropTypes.string.isRequired,
|
|
10573
10923
|
restricted_regions: PropTypes.arrayOf(T['io.flow.sellability.v0.models.sellablility_region_result']).isRequired,
|
|
10574
|
-
in_review_regions: PropTypes.arrayOf(T['io.flow.sellability.v0.models.sellablility_region_result']).isRequired,
|
|
10575
10924
|
});
|
|
10576
10925
|
|
|
10577
10926
|
T['io.flow.internal.v0.models.restriction_rule_effect_form'] = PropTypes.exact({
|
|
10927
|
+
rule_id: PropTypes.string.isRequired,
|
|
10578
10928
|
effect: T['io.flow.sellability.v0.enums.rule_effect_type'].isRequired,
|
|
10579
10929
|
regions: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
10580
10930
|
description: PropTypes.string,
|
|
@@ -10582,6 +10932,7 @@ T['io.flow.internal.v0.models.restriction_rule_effect_form'] = PropTypes.exact({
|
|
|
10582
10932
|
|
|
10583
10933
|
T['io.flow.internal.v0.models.restriction_rule_effect'] = PropTypes.exact({
|
|
10584
10934
|
id: PropTypes.string.isRequired,
|
|
10935
|
+
rule_id: PropTypes.string.isRequired,
|
|
10585
10936
|
effect: T['io.flow.sellability.v0.enums.rule_effect_type'].isRequired,
|
|
10586
10937
|
regions: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
10587
10938
|
description: PropTypes.string,
|
|
@@ -10901,88 +11252,173 @@ T['io.flow.internal.v0.models.ratecard_lanes_import_request'] = PropTypes.exact(
|
|
|
10901
11252
|
data: T['io.flow.ratecard.v0.models.ratecard_lanes_import_request_data'].isRequired,
|
|
10902
11253
|
});
|
|
10903
11254
|
|
|
10904
|
-
T['io.flow.
|
|
10905
|
-
|
|
10906
|
-
|
|
10907
|
-
T['io.flow.ratecard.v0.models.ratecard_carrier_summary'] = PropTypes.exact({
|
|
10908
|
-
id: PropTypes.string.isRequired,
|
|
10909
|
-
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,
|
|
10910
11258
|
});
|
|
10911
11259
|
|
|
10912
|
-
T['io.flow.
|
|
10913
|
-
|
|
10914
|
-
|
|
10915
|
-
id: PropTypes.string.isRequired,
|
|
10916
|
-
number: PropTypes.string.isRequired,
|
|
10917
|
-
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,
|
|
10918
11263
|
});
|
|
10919
11264
|
|
|
10920
|
-
T['io.flow.ratecard.v0.models.
|
|
10921
|
-
|
|
10922
|
-
|
|
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,
|
|
10923
11268
|
});
|
|
10924
11269
|
|
|
10925
|
-
T['io.flow.
|
|
10926
|
-
|
|
10927
|
-
|
|
10928
|
-
rate_level_key: PropTypes.string,
|
|
10929
|
-
glbe_shipping_method_id: PropTypes.string,
|
|
10930
|
-
glbe_proposition_name: PropTypes.string,
|
|
10931
|
-
channel_revenue_share_percentage: PropTypes.number,
|
|
10932
|
-
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,
|
|
10933
11273
|
});
|
|
10934
11274
|
|
|
10935
|
-
T['io.flow.
|
|
10936
|
-
|
|
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,
|
|
10937
11285
|
});
|
|
10938
11286
|
|
|
10939
|
-
T['io.flow.
|
|
10940
|
-
|
|
10941
|
-
|
|
10942
|
-
|
|
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,
|
|
10943
11292
|
});
|
|
10944
11293
|
|
|
10945
|
-
T['io.flow.
|
|
10946
|
-
|
|
10947
|
-
|
|
10948
|
-
|
|
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,
|
|
10949
11300
|
});
|
|
10950
11301
|
|
|
10951
|
-
T['io.flow.
|
|
10952
|
-
|
|
10953
|
-
name: PropTypes.string.isRequired,
|
|
10954
|
-
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,
|
|
10955
11304
|
});
|
|
10956
11305
|
|
|
10957
|
-
T['io.flow.
|
|
10958
|
-
|
|
10959
|
-
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,
|
|
10960
11308
|
});
|
|
10961
11309
|
|
|
10962
|
-
T['io.flow.
|
|
10963
|
-
|
|
10964
|
-
|
|
10965
|
-
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,
|
|
10966
11313
|
});
|
|
10967
11314
|
|
|
10968
|
-
T['io.flow.
|
|
10969
|
-
|
|
10970
|
-
|
|
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,
|
|
10971
11318
|
});
|
|
10972
11319
|
|
|
10973
|
-
T['io.flow.
|
|
10974
|
-
|
|
10975
|
-
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,
|
|
10976
11322
|
});
|
|
10977
11323
|
|
|
10978
|
-
T['io.flow.
|
|
10979
|
-
|
|
10980
|
-
|
|
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,
|
|
10981
11328
|
});
|
|
10982
11329
|
|
|
10983
|
-
T['io.flow.internal.v0.models.
|
|
10984
|
-
|
|
10985
|
-
|
|
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,
|
|
10986
11422
|
});
|
|
10987
11423
|
|
|
10988
11424
|
T['io.flow.internal.v0.enums.duty_selection_rule'] = PropTypes.oneOf([
|
|
@@ -11068,49 +11504,6 @@ T['io.flow.internal.v0.models.classified_product'] = PropTypes.exact({
|
|
|
11068
11504
|
classification_model_id: PropTypes.string.isRequired,
|
|
11069
11505
|
});
|
|
11070
11506
|
|
|
11071
|
-
T['io.flow.internal.v0.models.currency_internal_rate'] = PropTypes.exact({
|
|
11072
|
-
id: PropTypes.string.isRequired,
|
|
11073
|
-
organization_id: PropTypes.string.isRequired,
|
|
11074
|
-
base: PropTypes.string.isRequired,
|
|
11075
|
-
target: PropTypes.string.isRequired,
|
|
11076
|
-
effective_at: PropTypes.string.isRequired,
|
|
11077
|
-
spot_rate: PropTypes.number.isRequired,
|
|
11078
|
-
flow_margin: PropTypes.number.isRequired,
|
|
11079
|
-
flow_rate: PropTypes.number.isRequired,
|
|
11080
|
-
organization_margin: PropTypes.number.isRequired,
|
|
11081
|
-
organization_rate: PropTypes.number.isRequired,
|
|
11082
|
-
rate_lock_unit: PropTypes.string.isRequired,
|
|
11083
|
-
rate_lock_value: PropTypes.number.isRequired,
|
|
11084
|
-
created_at: PropTypes.string.isRequired,
|
|
11085
|
-
updated_at: PropTypes.string.isRequired,
|
|
11086
|
-
updated_by_user_id: PropTypes.string.isRequired,
|
|
11087
|
-
});
|
|
11088
|
-
|
|
11089
|
-
T['io.flow.internal.v0.models.rate_upserted_v2'] = PropTypes.exact({
|
|
11090
|
-
discriminator: PropTypes.oneOf(['rate_upserted_v2']).isRequired,
|
|
11091
|
-
event_id: PropTypes.string.isRequired,
|
|
11092
|
-
timestamp: PropTypes.string.isRequired,
|
|
11093
|
-
rate: T['io.flow.internal.v0.models.currency_internal_rate'].isRequired,
|
|
11094
|
-
});
|
|
11095
|
-
|
|
11096
|
-
T['io.flow.internal.v0.models.rate_deleted_v2'] = PropTypes.exact({
|
|
11097
|
-
discriminator: PropTypes.oneOf(['rate_deleted_v2']).isRequired,
|
|
11098
|
-
event_id: PropTypes.string.isRequired,
|
|
11099
|
-
timestamp: PropTypes.string.isRequired,
|
|
11100
|
-
rate: T['io.flow.internal.v0.models.currency_internal_rate'].isRequired,
|
|
11101
|
-
});
|
|
11102
|
-
|
|
11103
|
-
T['io.flow.internal.v0.enums.quote_request_type'] = PropTypes.oneOf(['generate', 'delete', 'update_currency_rate', 'update_country']);
|
|
11104
|
-
|
|
11105
|
-
T['io.flow.fulfillment.v0.models.delivery_option_reference'] = PropTypes.exact({
|
|
11106
|
-
id: PropTypes.string.isRequired,
|
|
11107
|
-
});
|
|
11108
|
-
|
|
11109
|
-
T['io.flow.internal.v0.models.fulfillment_internal_experience_reference'] = PropTypes.exact({
|
|
11110
|
-
id: PropTypes.string.isRequired,
|
|
11111
|
-
key: PropTypes.string.isRequired,
|
|
11112
|
-
});
|
|
11113
|
-
|
|
11114
11507
|
T['io.flow.internal.v0.models.platform_fee_percentage_tier'] = PropTypes.exact({
|
|
11115
11508
|
minimum_amount_base: PropTypes.number.isRequired,
|
|
11116
11509
|
rate: PropTypes.number.isRequired,
|
|
@@ -11339,6 +11732,18 @@ T['io.flow.internal.v0.enums.payment_summary_status'] = PropTypes.oneOf([
|
|
|
11339
11732
|
]);
|
|
11340
11733
|
|
|
11341
11734
|
T['io.flow.internal.v0.enums.payment_summary_type'] = PropTypes.oneOf(['authorization', 'capture', 'refund', 'reversal', 'credit']);
|
|
11735
|
+
T['io.flow.internal.v0.enums.payment_short_url_discriminator'] = PropTypes.oneOf(['adyen_3ds2']);
|
|
11736
|
+
|
|
11737
|
+
T['io.flow.internal.v0.models.payment_short_url'] = PropTypes.exact({
|
|
11738
|
+
id: PropTypes.string.isRequired,
|
|
11739
|
+
key: PropTypes.string.isRequired,
|
|
11740
|
+
original_url: PropTypes.string.isRequired,
|
|
11741
|
+
organization_id: PropTypes.string.isRequired,
|
|
11742
|
+
discriminator: T['io.flow.internal.v0.enums.payment_short_url_discriminator'].isRequired,
|
|
11743
|
+
created_at: PropTypes.string.isRequired,
|
|
11744
|
+
updated_at: PropTypes.string.isRequired,
|
|
11745
|
+
expires_at: PropTypes.string.isRequired,
|
|
11746
|
+
});
|
|
11342
11747
|
|
|
11343
11748
|
T['io.flow.common.v0.models.logo_image_set_static'] = PropTypes.exact({
|
|
11344
11749
|
discriminator: PropTypes.oneOf(['static']).isRequired,
|
|
@@ -11693,6 +12098,69 @@ T['io.flow.internal.v0.models.order_tax_and_duty_inclusivity_setting_upserted']
|
|
|
11693
12098
|
order_tax_and_duty_inclusivity_setting: T['io.flow.internal.v0.models.order_tax_and_duty_inclusivity_setting'].isRequired,
|
|
11694
12099
|
});
|
|
11695
12100
|
|
|
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,
|
|
12105
|
+
});
|
|
12106
|
+
|
|
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,
|
|
12111
|
+
order_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'],
|
|
12116
|
+
});
|
|
12117
|
+
|
|
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
|
+
|
|
11696
12164
|
T['io.flow.return.v0.models.return_line_item'] = PropTypes.exact({
|
|
11697
12165
|
item_number: PropTypes.string.isRequired,
|
|
11698
12166
|
order_number: PropTypes.string,
|
|
@@ -11839,6 +12307,8 @@ T['io.flow.internal.v0.models.localizable_content_reference'] = PropTypes.exact(
|
|
|
11839
12307
|
content_id: PropTypes.string.isRequired,
|
|
11840
12308
|
});
|
|
11841
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']);
|
|
11842
12312
|
T['io.flow.internal.v0.enums.prompt_target'] = PropTypes.oneOf(['browse', 'checkout']);
|
|
11843
12313
|
T['io.flow.common.v0.enums.user_status'] = PropTypes.oneOf(['pending', 'active', 'inactive']);
|
|
11844
12314
|
|
|
@@ -12499,288 +12969,56 @@ T['io.flow.internal.v0.models.shopify_markets_order_deleted'] = PropTypes.exact(
|
|
|
12499
12969
|
shopify_markets_order: T['io.flow.internal.v0.models.shopify_markets_order'].isRequired,
|
|
12500
12970
|
});
|
|
12501
12971
|
|
|
12502
|
-
T['io.flow.internal.v0.models.
|
|
12503
|
-
|
|
12504
|
-
|
|
12505
|
-
title: PropTypes.string,
|
|
12506
|
-
image_link: PropTypes.string,
|
|
12507
|
-
brand: PropTypes.string,
|
|
12508
|
-
google_product_category: PropTypes.string,
|
|
12509
|
-
link: PropTypes.string,
|
|
12510
|
-
price: PropTypes.string,
|
|
12511
|
-
sale_price: PropTypes.string,
|
|
12512
|
-
shipping_price: PropTypes.string,
|
|
12972
|
+
T['io.flow.internal.v0.models.manual_transaction_form_order'] = PropTypes.exact({
|
|
12973
|
+
organization_id: PropTypes.string.isRequired,
|
|
12974
|
+
number: PropTypes.string.isRequired,
|
|
12513
12975
|
});
|
|
12514
12976
|
|
|
12515
|
-
T['io.flow.internal.v0.
|
|
12516
|
-
|
|
12517
|
-
|
|
12518
|
-
|
|
12519
|
-
|
|
12520
|
-
|
|
12977
|
+
T['io.flow.internal.v0.enums.manual_transaction_category'] = PropTypes.oneOf([
|
|
12978
|
+
'cancelled_order_refund',
|
|
12979
|
+
'client_accepted_chargeback',
|
|
12980
|
+
'fee_reimbursement',
|
|
12981
|
+
'platform_fee',
|
|
12982
|
+
'shipping_true_up',
|
|
12983
|
+
'tax_credit',
|
|
12984
|
+
'carrier_credit',
|
|
12985
|
+
'negative_balance_guarantee',
|
|
12986
|
+
'bank_payment_failure',
|
|
12987
|
+
'non_fraud_chargeback',
|
|
12988
|
+
]);
|
|
12521
12989
|
|
|
12522
|
-
T['io.flow.internal.v0.models.
|
|
12523
|
-
|
|
12524
|
-
|
|
12525
|
-
|
|
12526
|
-
|
|
12527
|
-
|
|
12990
|
+
T['io.flow.internal.v0.models.manual_transaction_form'] = PropTypes.exact({
|
|
12991
|
+
amount: PropTypes.number.isRequired,
|
|
12992
|
+
currency: PropTypes.string,
|
|
12993
|
+
description: PropTypes.string.isRequired,
|
|
12994
|
+
category: T['io.flow.internal.v0.enums.manual_transaction_category'],
|
|
12995
|
+
order: T['io.flow.internal.v0.models.manual_transaction_form_order'],
|
|
12996
|
+
original_transaction_id: PropTypes.string,
|
|
12997
|
+
attributes: PropTypes.objectOf(PropTypes.string),
|
|
12528
12998
|
});
|
|
12529
12999
|
|
|
12530
|
-
T['io.flow.internal.v0.enums.
|
|
12531
|
-
'not_connected',
|
|
12532
|
-
'connecting',
|
|
12533
|
-
'connected',
|
|
12534
|
-
'disconnecting',
|
|
12535
|
-
'disconnected',
|
|
12536
|
-
]);
|
|
13000
|
+
T['io.flow.internal.v0.enums.manual_review_rule_status'] = PropTypes.oneOf(['active', 'archived']);
|
|
12537
13001
|
|
|
12538
|
-
T['io.flow.internal.v0.models.
|
|
12539
|
-
|
|
12540
|
-
|
|
13002
|
+
T['io.flow.internal.v0.models.loyalty_program_reward'] = PropTypes.exact({
|
|
13003
|
+
id: PropTypes.string.isRequired,
|
|
13004
|
+
label: PropTypes.string.isRequired,
|
|
12541
13005
|
});
|
|
12542
13006
|
|
|
12543
|
-
T['io.flow.internal.v0.models.
|
|
12544
|
-
|
|
12545
|
-
catalog_id: PropTypes.number.isRequired,
|
|
13007
|
+
T['io.flow.internal.v0.models.loyalty_program_rewards'] = PropTypes.exact({
|
|
13008
|
+
applied: PropTypes.arrayOf(T['io.flow.internal.v0.models.loyalty_program_reward']).isRequired,
|
|
12546
13009
|
});
|
|
12547
13010
|
|
|
12548
|
-
T['io.flow.internal.v0.models.
|
|
12549
|
-
|
|
12550
|
-
account_id: PropTypes.number.isRequired,
|
|
13011
|
+
T['io.flow.internal.v0.models.loyalty_program_message'] = PropTypes.exact({
|
|
13012
|
+
content: PropTypes.string.isRequired,
|
|
12551
13013
|
});
|
|
12552
13014
|
|
|
12553
|
-
T['io.flow.internal.v0.
|
|
12554
|
-
|
|
12555
|
-
|
|
13015
|
+
T['io.flow.internal.v0.enums.logistics_payout_resolution_method'] = PropTypes.oneOf([
|
|
13016
|
+
'order_combined_shipment',
|
|
13017
|
+
'intransit_label_event',
|
|
13018
|
+
'shipping_notification',
|
|
12556
13019
|
]);
|
|
12557
13020
|
|
|
12558
|
-
T['io.flow.internal.v0.
|
|
12559
|
-
['google', 'facebook_primary', 'facebook_country_override', 'supplemental'],
|
|
12560
|
-
);
|
|
12561
|
-
|
|
12562
|
-
T['io.flow.internal.v0.models.marketing_gateway_facebook_business_summary'] = PropTypes.exact({
|
|
12563
|
-
business_id: PropTypes.number.isRequired,
|
|
12564
|
-
name: PropTypes.string.isRequired,
|
|
12565
|
-
});
|
|
12566
|
-
|
|
12567
|
-
T['io.flow.internal.v0.models.marketing_gateway_facebook_connection'] = PropTypes.exact({
|
|
12568
|
-
organization_id: PropTypes.string.isRequired,
|
|
12569
|
-
|
|
12570
|
-
businesses: PropTypes.arrayOf(
|
|
12571
|
-
T['io.flow.internal.v0.models.marketing_gateway_facebook_business_summary'],
|
|
12572
|
-
).isRequired,
|
|
12573
|
-
});
|
|
12574
|
-
|
|
12575
|
-
T['io.flow.internal.v0.enums.marketing_gateway_facebook_token_status'] = PropTypes.oneOf(['unknown', 'active', 'expired']);
|
|
12576
|
-
|
|
12577
|
-
T['io.flow.internal.v0.models.marketing_gateway_facebook_connection_access_token_summary'] = PropTypes.exact({
|
|
12578
|
-
catalog_id: PropTypes.number,
|
|
12579
|
-
created_at: PropTypes.number,
|
|
12580
|
-
expires_at: PropTypes.number,
|
|
12581
|
-
user_id: PropTypes.string.isRequired,
|
|
12582
|
-
user_email: PropTypes.string,
|
|
12583
|
-
token_status: T['io.flow.internal.v0.enums.marketing_gateway_facebook_token_status'].isRequired,
|
|
12584
|
-
});
|
|
12585
|
-
|
|
12586
|
-
T['io.flow.internal.v0.models.marketing_gateway_product_datasource_summary'] = PropTypes.exact({
|
|
12587
|
-
name: PropTypes.string.isRequired,
|
|
12588
|
-
country: PropTypes.string,
|
|
12589
|
-
product_count: PropTypes.number,
|
|
12590
|
-
});
|
|
12591
|
-
|
|
12592
|
-
T['io.flow.internal.v0.models.marketing_gateway_flow_source_summary'] = PropTypes.exact({
|
|
12593
|
-
discriminator: PropTypes.oneOf(['marketing_gateway_flow_source_summary']).isRequired,
|
|
12594
|
-
item_count: PropTypes.number.isRequired,
|
|
12595
|
-
});
|
|
12596
|
-
|
|
12597
|
-
T['io.flow.internal.v0.models.marketing_gateway_facebook_source_summary'] = PropTypes.exact({
|
|
12598
|
-
discriminator: PropTypes.oneOf(['marketing_gateway_facebook_source_summary']).isRequired,
|
|
12599
|
-
catalog_id: PropTypes.number.isRequired,
|
|
12600
|
-
catalog_name: PropTypes.string.isRequired,
|
|
12601
|
-
business_name: PropTypes.string.isRequired,
|
|
12602
|
-
country: PropTypes.string.isRequired,
|
|
12603
|
-
product_count: PropTypes.number.isRequired,
|
|
12604
|
-
});
|
|
12605
|
-
|
|
12606
|
-
T['io.flow.internal.v0.models.marketing_gateway_google_source_summary'] = PropTypes.exact({
|
|
12607
|
-
discriminator: PropTypes.oneOf(['marketing_gateway_google_source_summary']).isRequired,
|
|
12608
|
-
account_id: PropTypes.number.isRequired,
|
|
12609
|
-
countries: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
12610
|
-
product_count: PropTypes.number.isRequired,
|
|
12611
|
-
});
|
|
12612
|
-
|
|
12613
|
-
T['io.flow.internal.v0.unions.marketing_gateway_source_summary'] = PropTypes.oneOfType([
|
|
12614
|
-
T['io.flow.internal.v0.models.marketing_gateway_google_source_summary'],
|
|
12615
|
-
T['io.flow.internal.v0.models.marketing_gateway_facebook_source_summary'],
|
|
12616
|
-
T['io.flow.internal.v0.models.marketing_gateway_flow_source_summary'],
|
|
12617
|
-
]);
|
|
12618
|
-
|
|
12619
|
-
T['io.flow.internal.v0.models.marketing_gateway_feed_source_google'] = PropTypes.exact({
|
|
12620
|
-
discriminator: PropTypes.oneOf(['marketing_gateway_feed_source_google']).isRequired,
|
|
12621
|
-
account_id: PropTypes.number.isRequired,
|
|
12622
|
-
name: PropTypes.string.isRequired,
|
|
12623
|
-
country: PropTypes.string.isRequired,
|
|
12624
|
-
currency: PropTypes.string.isRequired,
|
|
12625
|
-
language: PropTypes.string.isRequired,
|
|
12626
|
-
item_count: PropTypes.number,
|
|
12627
|
-
last_uploaded_at: PropTypes.string,
|
|
12628
|
-
});
|
|
12629
|
-
|
|
12630
|
-
T['io.flow.internal.v0.enums.marketing_gateway_error_code'] = PropTypes.oneOf([
|
|
12631
|
-
'generic_error',
|
|
12632
|
-
'google_api_error',
|
|
12633
|
-
'facebook_api_error',
|
|
12634
|
-
'invalid_oauth_token_error',
|
|
12635
|
-
]);
|
|
12636
|
-
|
|
12637
|
-
T['io.flow.internal.v0.models.marketing_gateway_supported_channel_details'] = PropTypes.exact({
|
|
12638
|
-
discriminator: PropTypes.oneOf(['marketing_gateway_supported_channel_details']).isRequired,
|
|
12639
|
-
|
|
12640
|
-
datasources: PropTypes.arrayOf(
|
|
12641
|
-
T['io.flow.internal.v0.models.marketing_gateway_product_datasource_summary'],
|
|
12642
|
-
),
|
|
12643
|
-
|
|
12644
|
-
localized_feed_count: PropTypes.number,
|
|
12645
|
-
connected_at: PropTypes.string,
|
|
12646
|
-
});
|
|
12647
|
-
|
|
12648
|
-
T['io.flow.internal.v0.models.marketing_gateway_facebook_channel_details'] = PropTypes.exact({
|
|
12649
|
-
discriminator: PropTypes.oneOf(['marketing_gateway_facebook_channel_details']).isRequired,
|
|
12650
|
-
catalog_id: PropTypes.number.isRequired,
|
|
12651
|
-
catalog_name: PropTypes.string,
|
|
12652
|
-
business_name: PropTypes.string,
|
|
12653
|
-
|
|
12654
|
-
datasources: PropTypes.arrayOf(
|
|
12655
|
-
T['io.flow.internal.v0.models.marketing_gateway_product_datasource_summary'],
|
|
12656
|
-
),
|
|
12657
|
-
|
|
12658
|
-
localized_feed_count: PropTypes.number,
|
|
12659
|
-
connected_at: PropTypes.string,
|
|
12660
|
-
token_summary: T['io.flow.internal.v0.models.marketing_gateway_facebook_connection_access_token_summary'],
|
|
12661
|
-
});
|
|
12662
|
-
|
|
12663
|
-
T['io.flow.internal.v0.models.marketing_gateway_google_channel_details'] = PropTypes.exact({
|
|
12664
|
-
discriminator: PropTypes.oneOf(['marketing_gateway_google_channel_details']).isRequired,
|
|
12665
|
-
account_id: PropTypes.number.isRequired,
|
|
12666
|
-
account_name: PropTypes.string,
|
|
12667
|
-
|
|
12668
|
-
datasources: PropTypes.arrayOf(
|
|
12669
|
-
T['io.flow.internal.v0.models.marketing_gateway_product_datasource_summary'],
|
|
12670
|
-
),
|
|
12671
|
-
|
|
12672
|
-
localized_feed_count: PropTypes.number,
|
|
12673
|
-
connected_at: PropTypes.string,
|
|
12674
|
-
});
|
|
12675
|
-
|
|
12676
|
-
T['io.flow.internal.v0.models.marketing_gateway_error'] = PropTypes.exact({
|
|
12677
|
-
code: T['io.flow.internal.v0.enums.marketing_gateway_error_code'].isRequired,
|
|
12678
|
-
messages: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
12679
|
-
});
|
|
12680
|
-
|
|
12681
|
-
T['io.flow.internal.v0.unions.marketing_gateway_channel_details'] = PropTypes.oneOfType([
|
|
12682
|
-
T['io.flow.internal.v0.models.marketing_gateway_google_channel_details'],
|
|
12683
|
-
T['io.flow.internal.v0.models.marketing_gateway_facebook_channel_details'],
|
|
12684
|
-
T['io.flow.internal.v0.models.marketing_gateway_supported_channel_details'],
|
|
12685
|
-
]);
|
|
12686
|
-
|
|
12687
|
-
T['io.flow.internal.v0.enums.marketing_gateway_channel_status'] = PropTypes.oneOf([
|
|
12688
|
-
'not_connected',
|
|
12689
|
-
'connecting',
|
|
12690
|
-
'connected',
|
|
12691
|
-
'disconnecting',
|
|
12692
|
-
'disconnected',
|
|
12693
|
-
'unavailable',
|
|
12694
|
-
]);
|
|
12695
|
-
|
|
12696
|
-
T['io.flow.internal.v0.enums.marketing_gateway_channel_integration_type'] = PropTypes.oneOf(['automated', 'manual']);
|
|
12697
|
-
|
|
12698
|
-
T['io.flow.internal.v0.enums.marketing_gateway_platform'] = PropTypes.oneOf([
|
|
12699
|
-
'google',
|
|
12700
|
-
'facebook',
|
|
12701
|
-
'adroll',
|
|
12702
|
-
'aliexpress',
|
|
12703
|
-
'amazon',
|
|
12704
|
-
'bing',
|
|
12705
|
-
'criteo',
|
|
12706
|
-
'fruugo',
|
|
12707
|
-
'pinterest',
|
|
12708
|
-
'rakuten_japan',
|
|
12709
|
-
'wish',
|
|
12710
|
-
'snapchat',
|
|
12711
|
-
'stylight',
|
|
12712
|
-
]);
|
|
12713
|
-
|
|
12714
|
-
T['io.flow.internal.v0.models.marketing_gateway_channel_source_summary'] = PropTypes.exact({
|
|
12715
|
-
channel: T['io.flow.internal.v0.enums.marketing_gateway_platform'].isRequired,
|
|
12716
|
-
platform: T['io.flow.internal.v0.enums.marketing_gateway_platform'].isRequired,
|
|
12717
|
-
source: T['io.flow.internal.v0.unions.marketing_gateway_source_summary'].isRequired,
|
|
12718
|
-
});
|
|
12719
|
-
|
|
12720
|
-
T['io.flow.internal.v0.models.marketing_gateway_channel_form'] = PropTypes.exact({
|
|
12721
|
-
platform: T['io.flow.internal.v0.enums.marketing_gateway_platform'].isRequired,
|
|
12722
|
-
account_id: PropTypes.number.isRequired,
|
|
12723
|
-
});
|
|
12724
|
-
|
|
12725
|
-
T['io.flow.internal.v0.models.marketing_gateway_channel'] = PropTypes.exact({
|
|
12726
|
-
id: PropTypes.string.isRequired,
|
|
12727
|
-
platform: T['io.flow.internal.v0.enums.marketing_gateway_platform'].isRequired,
|
|
12728
|
-
integration_type: T['io.flow.internal.v0.enums.marketing_gateway_channel_integration_type'].isRequired,
|
|
12729
|
-
status: T['io.flow.internal.v0.enums.marketing_gateway_channel_status'].isRequired,
|
|
12730
|
-
details: T['io.flow.internal.v0.unions.marketing_gateway_channel_details'],
|
|
12731
|
-
error: T['io.flow.internal.v0.models.marketing_gateway_error'],
|
|
12732
|
-
});
|
|
12733
|
-
|
|
12734
|
-
T['io.flow.internal.v0.models.manual_transaction_form_order'] = PropTypes.exact({
|
|
12735
|
-
organization_id: PropTypes.string.isRequired,
|
|
12736
|
-
number: PropTypes.string.isRequired,
|
|
12737
|
-
});
|
|
12738
|
-
|
|
12739
|
-
T['io.flow.internal.v0.enums.manual_transaction_category'] = PropTypes.oneOf([
|
|
12740
|
-
'cancelled_order_refund',
|
|
12741
|
-
'client_accepted_chargeback',
|
|
12742
|
-
'fee_reimbursement',
|
|
12743
|
-
'platform_fee',
|
|
12744
|
-
'shipping_true_up',
|
|
12745
|
-
'tax_credit',
|
|
12746
|
-
'carrier_credit',
|
|
12747
|
-
'negative_balance_guarantee',
|
|
12748
|
-
'bank_payment_failure',
|
|
12749
|
-
'non_fraud_chargeback',
|
|
12750
|
-
]);
|
|
12751
|
-
|
|
12752
|
-
T['io.flow.internal.v0.models.manual_transaction_form'] = PropTypes.exact({
|
|
12753
|
-
amount: PropTypes.number.isRequired,
|
|
12754
|
-
currency: PropTypes.string,
|
|
12755
|
-
description: PropTypes.string.isRequired,
|
|
12756
|
-
category: T['io.flow.internal.v0.enums.manual_transaction_category'],
|
|
12757
|
-
order: T['io.flow.internal.v0.models.manual_transaction_form_order'],
|
|
12758
|
-
original_transaction_id: PropTypes.string,
|
|
12759
|
-
attributes: PropTypes.objectOf(PropTypes.string),
|
|
12760
|
-
});
|
|
12761
|
-
|
|
12762
|
-
T['io.flow.internal.v0.enums.manual_review_rule_status'] = PropTypes.oneOf(['active', 'archived']);
|
|
12763
|
-
|
|
12764
|
-
T['io.flow.internal.v0.models.loyalty_program_reward'] = PropTypes.exact({
|
|
12765
|
-
id: PropTypes.string.isRequired,
|
|
12766
|
-
label: PropTypes.string.isRequired,
|
|
12767
|
-
});
|
|
12768
|
-
|
|
12769
|
-
T['io.flow.internal.v0.models.loyalty_program_rewards'] = PropTypes.exact({
|
|
12770
|
-
applied: PropTypes.arrayOf(T['io.flow.internal.v0.models.loyalty_program_reward']).isRequired,
|
|
12771
|
-
});
|
|
12772
|
-
|
|
12773
|
-
T['io.flow.internal.v0.models.loyalty_program_message'] = PropTypes.exact({
|
|
12774
|
-
content: PropTypes.string.isRequired,
|
|
12775
|
-
});
|
|
12776
|
-
|
|
12777
|
-
T['io.flow.internal.v0.enums.logistics_payout_resolution_method'] = PropTypes.oneOf([
|
|
12778
|
-
'order_combined_shipment',
|
|
12779
|
-
'intransit_label_event',
|
|
12780
|
-
'shipping_notification',
|
|
12781
|
-
]);
|
|
12782
|
-
|
|
12783
|
-
T['io.flow.internal.v0.models.logistics_payout_request'] = PropTypes.exact({
|
|
13021
|
+
T['io.flow.internal.v0.models.logistics_payout_request'] = PropTypes.exact({
|
|
12784
13022
|
organization_id: PropTypes.string.isRequired,
|
|
12785
13023
|
order_number: PropTypes.string.isRequired,
|
|
12786
13024
|
carrier: PropTypes.string.isRequired,
|
|
@@ -12810,57 +13048,16 @@ T['io.flow.internal.v0.models.logistics_capabilities_upserted'] = PropTypes.exac
|
|
|
12810
13048
|
logistics_capabilities: T['io.flow.internal.v0.models.logistics_capabilities'].isRequired,
|
|
12811
13049
|
});
|
|
12812
13050
|
|
|
12813
|
-
T['io.flow.
|
|
13051
|
+
T['io.flow.common.v0.models.experience_summary'] = PropTypes.exact({
|
|
12814
13052
|
id: PropTypes.string.isRequired,
|
|
12815
|
-
|
|
12816
|
-
|
|
12817
|
-
|
|
12818
|
-
|
|
13053
|
+
key: PropTypes.string.isRequired,
|
|
13054
|
+
name: PropTypes.string.isRequired,
|
|
13055
|
+
country: PropTypes.string,
|
|
13056
|
+
currency: PropTypes.string,
|
|
13057
|
+
language: PropTypes.string,
|
|
12819
13058
|
});
|
|
12820
13059
|
|
|
12821
13060
|
T['io.flow.internal.v0.enums.export_content_type'] = PropTypes.oneOf(['item', 'price_book_item']);
|
|
12822
|
-
|
|
12823
|
-
T['io.flow.price.v0.models.price_book_item_schedule'] = PropTypes.exact({
|
|
12824
|
-
starts_at: PropTypes.string.isRequired,
|
|
12825
|
-
ends_at: PropTypes.string,
|
|
12826
|
-
});
|
|
12827
|
-
|
|
12828
|
-
T['io.flow.price.v0.models.price_book_item_query_form'] = PropTypes.exact({
|
|
12829
|
-
price_book_key: PropTypes.string.isRequired,
|
|
12830
|
-
item_query: PropTypes.string.isRequired,
|
|
12831
|
-
amount: PropTypes.number.isRequired,
|
|
12832
|
-
schedule: T['io.flow.price.v0.models.price_book_item_schedule'],
|
|
12833
|
-
item_attributes: PropTypes.objectOf(PropTypes.string),
|
|
12834
|
-
});
|
|
12835
|
-
|
|
12836
|
-
T['io.flow.price.v0.models.price_book_item_form'] = PropTypes.exact({
|
|
12837
|
-
price_book_key: PropTypes.string.isRequired,
|
|
12838
|
-
item_number: PropTypes.string.isRequired,
|
|
12839
|
-
amount: PropTypes.number.isRequired,
|
|
12840
|
-
schedule: T['io.flow.price.v0.models.price_book_item_schedule'],
|
|
12841
|
-
item_attributes: PropTypes.objectOf(PropTypes.string),
|
|
12842
|
-
});
|
|
12843
|
-
|
|
12844
|
-
T['io.flow.export.v0.models.csv_price_book_item_export_row_by_sku'] = PropTypes.exact({
|
|
12845
|
-
sku: PropTypes.string.isRequired,
|
|
12846
|
-
price_book_key: PropTypes.string.isRequired,
|
|
12847
|
-
price_book_item_key: PropTypes.string.isRequired,
|
|
12848
|
-
item_name: PropTypes.string.isRequired,
|
|
12849
|
-
amount: PropTypes.number.isRequired,
|
|
12850
|
-
item_attributes: PropTypes.objectOf(PropTypes.string),
|
|
12851
|
-
schedule: T['io.flow.price.v0.models.price_book_item_schedule'].isRequired,
|
|
12852
|
-
});
|
|
12853
|
-
|
|
12854
|
-
T['io.flow.export.v0.models.csv_price_book_item_export_row_by_item_number'] = PropTypes.exact({
|
|
12855
|
-
item_number: PropTypes.string.isRequired,
|
|
12856
|
-
price_book_key: PropTypes.string.isRequired,
|
|
12857
|
-
price_book_item_key: PropTypes.string.isRequired,
|
|
12858
|
-
item_name: PropTypes.string.isRequired,
|
|
12859
|
-
amount: PropTypes.number.isRequired,
|
|
12860
|
-
item_attributes: PropTypes.objectOf(PropTypes.string),
|
|
12861
|
-
schedule: T['io.flow.price.v0.models.price_book_item_schedule'].isRequired,
|
|
12862
|
-
});
|
|
12863
|
-
|
|
12864
13061
|
T['io.flow.internal.v0.enums.content_status'] = PropTypes.oneOf(['draft', 'live', 'archived']);
|
|
12865
13062
|
|
|
12866
13063
|
T['io.flow.internal.v0.models.optin_attribute_form'] = PropTypes.exact({
|
|
@@ -12870,6 +13067,15 @@ T['io.flow.internal.v0.models.optin_attribute_form'] = PropTypes.exact({
|
|
|
12870
13067
|
status: T['io.flow.internal.v0.enums.content_status'].isRequired,
|
|
12871
13068
|
});
|
|
12872
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
|
+
|
|
12873
13079
|
T['io.flow.internal.v0.models.localization_upserted'] = PropTypes.exact({
|
|
12874
13080
|
discriminator: PropTypes.oneOf(['localization_upserted']).isRequired,
|
|
12875
13081
|
event_id: PropTypes.string.isRequired,
|
|
@@ -13112,6 +13318,7 @@ T['io.flow.internal.v0.enums.label_request_error_handling_responsibility'] = Pro
|
|
|
13112
13318
|
'globale_address_repair',
|
|
13113
13319
|
'merchant_operations',
|
|
13114
13320
|
'globale_system',
|
|
13321
|
+
'carrier',
|
|
13115
13322
|
]);
|
|
13116
13323
|
|
|
13117
13324
|
T['io.flow.label.v0.enums.label_trigger_method'] = PropTypes.oneOf(['autogenerated', 'on_demand']);
|
|
@@ -13390,13 +13597,6 @@ T['io.flow.internal.v0.models.prediction'] = PropTypes.exact({
|
|
|
13390
13597
|
item: PropTypes.string.isRequired,
|
|
13391
13598
|
});
|
|
13392
13599
|
|
|
13393
|
-
T['io.flow.internal.v0.models.labels_prediction'] = PropTypes.exact({
|
|
13394
|
-
main_material: PropTypes.string.isRequired,
|
|
13395
|
-
gender: PropTypes.string.isRequired,
|
|
13396
|
-
construction: PropTypes.string.isRequired,
|
|
13397
|
-
product_type: PropTypes.string.isRequired,
|
|
13398
|
-
});
|
|
13399
|
-
|
|
13400
13600
|
T['io.flow.internal.v0.enums.suggestion_action'] = PropTypes.oneOf(['accept', 'validate', 'review']);
|
|
13401
13601
|
|
|
13402
13602
|
T['io.flow.internal.v0.models.item_classification_v2'] = PropTypes.exact({
|
|
@@ -13407,18 +13607,6 @@ T['io.flow.internal.v0.models.item_classification_v2'] = PropTypes.exact({
|
|
|
13407
13607
|
model_id: PropTypes.string.isRequired,
|
|
13408
13608
|
});
|
|
13409
13609
|
|
|
13410
|
-
T['io.flow.internal.v0.models.item_classification_created'] = PropTypes.exact({
|
|
13411
|
-
discriminator: PropTypes.oneOf(['item_classification_created']).isRequired,
|
|
13412
|
-
event_id: PropTypes.string.isRequired,
|
|
13413
|
-
timestamp: PropTypes.string.isRequired,
|
|
13414
|
-
organization: PropTypes.string.isRequired,
|
|
13415
|
-
item_number: PropTypes.string.isRequired,
|
|
13416
|
-
model_id: PropTypes.string.isRequired,
|
|
13417
|
-
labels_prediction: T['io.flow.internal.v0.models.labels_prediction'].isRequired,
|
|
13418
|
-
action: T['io.flow.internal.v0.enums.suggestion_action'].isRequired,
|
|
13419
|
-
prediction_score: PropTypes.number,
|
|
13420
|
-
});
|
|
13421
|
-
|
|
13422
13610
|
T['io.flow.internal.v0.models.item_classification'] = PropTypes.exact({
|
|
13423
13611
|
id: PropTypes.string,
|
|
13424
13612
|
organization: PropTypes.string.isRequired,
|
|
@@ -14190,6 +14378,65 @@ T['io.flow.internal.v0.models.fulfillment_shipment_tracking'] = PropTypes.exact(
|
|
|
14190
14378
|
items: PropTypes.arrayOf(T['io.flow.order.management.v0.models.fulfillment_item']).isRequired,
|
|
14191
14379
|
});
|
|
14192
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
|
+
|
|
14193
14440
|
T['io.flow.order.management.v0.models.fulfillment_line_cancel_form'] = PropTypes.exact({
|
|
14194
14441
|
item_number: PropTypes.string,
|
|
14195
14442
|
line_number: PropTypes.string,
|
|
@@ -14283,6 +14530,8 @@ T['io.flow.internal.v0.models.shopper_lines'] = PropTypes.exact({
|
|
|
14283
14530
|
total: PropTypes.number.isRequired,
|
|
14284
14531
|
});
|
|
14285
14532
|
|
|
14533
|
+
T['io.flow.experience.v0.enums.order_type'] = PropTypes.oneOf(['standard', 'replacement']);
|
|
14534
|
+
|
|
14286
14535
|
T['io.flow.internal.v0.models.fulfillment_business'] = PropTypes.exact({
|
|
14287
14536
|
vat_registration_number: PropTypes.string.isRequired,
|
|
14288
14537
|
});
|
|
@@ -14550,83 +14799,41 @@ T['io.flow.billing.v0.unions.bank_account_form'] = PropTypes.oneOfType([
|
|
|
14550
14799
|
T['io.flow.billing.v0.models.bank_account_form_simple'],
|
|
14551
14800
|
]);
|
|
14552
14801
|
|
|
14553
|
-
T['io.flow.internal.v0.
|
|
14802
|
+
T['io.flow.internal.v0.models.string_feature_rule_form'] = PropTypes.exact({
|
|
14803
|
+
discriminator: PropTypes.oneOf(['string']).isRequired,
|
|
14804
|
+
query: PropTypes.string.isRequired,
|
|
14805
|
+
value: PropTypes.string.isRequired,
|
|
14806
|
+
});
|
|
14554
14807
|
|
|
14555
|
-
T['io.flow.internal.v0.models.
|
|
14556
|
-
discriminator: PropTypes.oneOf(['
|
|
14557
|
-
|
|
14558
|
-
|
|
14559
|
-
name: PropTypes.string.isRequired,
|
|
14560
|
-
country: PropTypes.string.isRequired,
|
|
14561
|
-
currency: PropTypes.string.isRequired,
|
|
14562
|
-
language: PropTypes.string.isRequired,
|
|
14563
|
-
item_count: PropTypes.number,
|
|
14564
|
-
last_uploaded_at: PropTypes.string,
|
|
14565
|
-
feed_status: T['io.flow.internal.v0.enums.marketing_gateway_feed_state'],
|
|
14808
|
+
T['io.flow.internal.v0.models.boolean_feature_rule_form'] = PropTypes.exact({
|
|
14809
|
+
discriminator: PropTypes.oneOf(['boolean']).isRequired,
|
|
14810
|
+
query: PropTypes.string.isRequired,
|
|
14811
|
+
value: PropTypes.bool.isRequired,
|
|
14566
14812
|
});
|
|
14567
14813
|
|
|
14568
|
-
T['io.flow.internal.v0.unions.
|
|
14569
|
-
T['io.flow.internal.v0.models.
|
|
14570
|
-
T['io.flow.internal.v0.models.
|
|
14814
|
+
T['io.flow.internal.v0.unions.feature_rule_form'] = PropTypes.oneOfType([
|
|
14815
|
+
T['io.flow.internal.v0.models.boolean_feature_rule_form'],
|
|
14816
|
+
T['io.flow.internal.v0.models.string_feature_rule_form'],
|
|
14571
14817
|
]);
|
|
14572
14818
|
|
|
14573
|
-
T['io.flow.internal.v0.models.
|
|
14574
|
-
feed_source: T['io.flow.internal.v0.unions.marketing_gateway_feed_source'].isRequired,
|
|
14575
|
-
channel_id: PropTypes.string,
|
|
14576
|
-
schema_compatibility: T['io.flow.internal.v0.enums.marketing_gateway_schema_compatibility'],
|
|
14577
|
-
});
|
|
14578
|
-
|
|
14579
|
-
T['io.flow.internal.v0.models.marketing_gateway_feed_form'] = PropTypes.exact({
|
|
14580
|
-
schema_id: PropTypes.string.isRequired,
|
|
14581
|
-
filter_id: PropTypes.string.isRequired,
|
|
14582
|
-
country: PropTypes.string.isRequired,
|
|
14583
|
-
currency: PropTypes.string.isRequired,
|
|
14584
|
-
language: PropTypes.string.isRequired,
|
|
14585
|
-
feed_source: T['io.flow.internal.v0.unions.marketing_gateway_feed_source'].isRequired,
|
|
14586
|
-
distribution_channel: T['io.flow.internal.v0.unions.marketing_gateway_distribution_channel'],
|
|
14587
|
-
});
|
|
14588
|
-
|
|
14589
|
-
T['io.flow.internal.v0.models.marketing_gateway_channel_connection_form'] = PropTypes.exact({
|
|
14590
|
-
default_feed_source: T['io.flow.internal.v0.unions.marketing_gateway_feed_source'],
|
|
14591
|
-
});
|
|
14592
|
-
|
|
14593
|
-
T['io.flow.internal.v0.models.marketing_gateway_filter_summary'] = PropTypes.exact({
|
|
14594
|
-
id: PropTypes.string.isRequired,
|
|
14595
|
-
name: PropTypes.string.isRequired,
|
|
14596
|
-
});
|
|
14597
|
-
|
|
14598
|
-
T['io.flow.internal.v0.models.marketing_gateway_schema_summary'] = PropTypes.exact({
|
|
14599
|
-
id: PropTypes.string.isRequired,
|
|
14600
|
-
name: PropTypes.string.isRequired,
|
|
14601
|
-
schema_compatibility: T['io.flow.internal.v0.enums.marketing_gateway_schema_compatibility'].isRequired,
|
|
14602
|
-
});
|
|
14603
|
-
|
|
14604
|
-
T['io.flow.common.v0.models.experience_summary'] = PropTypes.exact({
|
|
14605
|
-
id: PropTypes.string.isRequired,
|
|
14606
|
-
key: PropTypes.string.isRequired,
|
|
14607
|
-
name: PropTypes.string.isRequired,
|
|
14819
|
+
T['io.flow.internal.v0.models.feature_geo_form'] = PropTypes.exact({
|
|
14608
14820
|
country: PropTypes.string,
|
|
14609
14821
|
currency: PropTypes.string,
|
|
14610
14822
|
language: PropTypes.string,
|
|
14823
|
+
locale: PropTypes.string,
|
|
14824
|
+
region: PropTypes.string,
|
|
14611
14825
|
});
|
|
14612
14826
|
|
|
14613
|
-
T['io.flow.internal.v0.models.
|
|
14614
|
-
|
|
14615
|
-
|
|
14616
|
-
value: PropTypes.string.isRequired,
|
|
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'],
|
|
14617
14830
|
});
|
|
14618
14831
|
|
|
14619
|
-
T['io.flow.internal.v0.models.
|
|
14620
|
-
|
|
14621
|
-
|
|
14622
|
-
value: PropTypes.bool.isRequired,
|
|
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,
|
|
14623
14835
|
});
|
|
14624
14836
|
|
|
14625
|
-
T['io.flow.internal.v0.unions.feature_rule_form'] = PropTypes.oneOfType([
|
|
14626
|
-
T['io.flow.internal.v0.models.boolean_feature_rule_form'],
|
|
14627
|
-
T['io.flow.internal.v0.models.string_feature_rule_form'],
|
|
14628
|
-
]);
|
|
14629
|
-
|
|
14630
14837
|
T['io.flow.internal.v0.models.string_feature_default_value'] = PropTypes.exact({
|
|
14631
14838
|
discriminator: PropTypes.oneOf(['string']).isRequired,
|
|
14632
14839
|
value: PropTypes.string.isRequired,
|
|
@@ -14724,6 +14931,9 @@ T['io.flow.internal.v0.models.external_fulfillment_proof_tracking'] = PropTypes.
|
|
|
14724
14931
|
fulfilled_via_replacement_order: PropTypes.bool,
|
|
14725
14932
|
});
|
|
14726
14933
|
|
|
14934
|
+
T['io.flow.internal.v0.enums.label_event_medium'] = PropTypes.oneOf(['webhook', 'pull', 'post']);
|
|
14935
|
+
T['io.flow.internal.v0.enums.label_event_source'] = PropTypes.oneOf(['aftership', 'carrier', 'flow']);
|
|
14936
|
+
|
|
14727
14937
|
T['io.flow.internal.v0.models.time_with_timezone'] = PropTypes.exact({
|
|
14728
14938
|
time: PropTypes.string.isRequired,
|
|
14729
14939
|
timezone: PropTypes.string.isRequired,
|
|
@@ -15163,6 +15373,35 @@ T['io.flow.payment.gateway.v0.models.payment_payment_method'] = PropTypes.exact(
|
|
|
15163
15373
|
possible_actions: PropTypes.arrayOf(T['io.flow.payment.gateway.v0.enums.payment_action_type']).isRequired,
|
|
15164
15374
|
});
|
|
15165
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
|
+
|
|
15166
15405
|
T['io.flow.internal.v0.models.dispute_details_stripe'] = PropTypes.exact({
|
|
15167
15406
|
discriminator: PropTypes.oneOf(['stripe']).isRequired,
|
|
15168
15407
|
payment_intent_id: PropTypes.string,
|
|
@@ -15193,7 +15432,7 @@ T['io.flow.internal.v0.unions.dispute_details'] = PropTypes.oneOfType([
|
|
|
15193
15432
|
T['io.flow.internal.v0.enums.dispute_defense_outcome'] = PropTypes.oneOf(['defended', 'undefended', 'undefendable']);
|
|
15194
15433
|
T['io.flow.internal.v0.enums.dispute_billable'] = PropTypes.oneOf(['flow', 'organization']);
|
|
15195
15434
|
T['io.flow.internal.v0.enums.dispute_liability'] = PropTypes.oneOf(['flow', 'organization']);
|
|
15196
|
-
T['io.flow.internal.v0.enums.dispute_status'] = PropTypes.oneOf(['pending', 'won', 'lost', 'expired']);
|
|
15435
|
+
T['io.flow.internal.v0.enums.dispute_status'] = PropTypes.oneOf(['pending', 'won', 'lost', 'refunded', 'expired']);
|
|
15197
15436
|
|
|
15198
15437
|
T['io.flow.internal.v0.models.dispute_status_form'] = PropTypes.exact({
|
|
15199
15438
|
status: T['io.flow.internal.v0.enums.dispute_status'].isRequired,
|
|
@@ -15394,6 +15633,107 @@ T['io.flow.internal.v0.models.delivered_duty_option_message'] = PropTypes.exact(
|
|
|
15394
15633
|
text: PropTypes.string.isRequired,
|
|
15395
15634
|
});
|
|
15396
15635
|
|
|
15636
|
+
T['io.flow.common.v0.enums.delivered_duty'] = PropTypes.oneOf(['paid', 'unpaid']);
|
|
15637
|
+
|
|
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,
|
|
15650
|
+
});
|
|
15651
|
+
|
|
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,
|
|
15654
|
+
});
|
|
15655
|
+
|
|
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
|
+
|
|
15397
15737
|
T['io.flow.internal.v0.enums.rejection_reason'] = PropTypes.oneOf([
|
|
15398
15738
|
'merchant_policy',
|
|
15399
15739
|
'previous_chargebacks',
|
|
@@ -15857,6 +16197,23 @@ T['io.flow.internal.v0.models.country_picker_payment_method'] = PropTypes.exact(
|
|
|
15857
16197
|
id: PropTypes.string.isRequired,
|
|
15858
16198
|
});
|
|
15859
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
|
+
|
|
15860
16217
|
T['io.flow.internal.v0.models.country_picker_delivery_window'] = PropTypes.exact({
|
|
15861
16218
|
name: PropTypes.string,
|
|
15862
16219
|
from: PropTypes.string.isRequired,
|
|
@@ -15864,6 +16221,18 @@ T['io.flow.internal.v0.models.country_picker_delivery_window'] = PropTypes.exact
|
|
|
15864
16221
|
timezone: PropTypes.string,
|
|
15865
16222
|
});
|
|
15866
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
|
+
|
|
15867
16236
|
T['io.flow.internal.v0.models.validation_character_length'] = PropTypes.exact({
|
|
15868
16237
|
discriminator: PropTypes.oneOf(['validation_character_length']).isRequired,
|
|
15869
16238
|
min: PropTypes.number,
|
|
@@ -15884,6 +16253,16 @@ T['io.flow.internal.v0.models.localization_form'] = PropTypes.exact({
|
|
|
15884
16253
|
elements: PropTypes.objectOf(T['io.flow.internal.v0.models.localized_content_element']).isRequired,
|
|
15885
16254
|
});
|
|
15886
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
|
+
|
|
15887
16266
|
T['io.flow.internal.v0.models.localized_content_form'] = PropTypes.exact({
|
|
15888
16267
|
schema_key: PropTypes.string.isRequired,
|
|
15889
16268
|
status: T['io.flow.internal.v0.enums.content_status'].isRequired,
|
|
@@ -15899,6 +16278,22 @@ T['io.flow.internal.v0.models.localization'] = PropTypes.exact({
|
|
|
15899
16278
|
elements: PropTypes.objectOf(T['io.flow.internal.v0.models.localized_content_element']).isRequired,
|
|
15900
16279
|
});
|
|
15901
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
|
+
|
|
15902
16297
|
T['io.flow.internal.v0.models.localized_content'] = PropTypes.exact({
|
|
15903
16298
|
id: PropTypes.string.isRequired,
|
|
15904
16299
|
schema_key: PropTypes.string.isRequired,
|
|
@@ -16247,93 +16642,11 @@ T['io.flow.internal.v0.models.item_classification_summary'] = PropTypes.exact({
|
|
|
16247
16642
|
customs_description: PropTypes.string,
|
|
16248
16643
|
});
|
|
16249
16644
|
|
|
16250
|
-
T['io.flow.
|
|
16251
|
-
|
|
16252
|
-
|
|
16253
|
-
|
|
16254
|
-
|
|
16255
|
-
|
|
16256
|
-
T['io.flow.payment.v0.models.card_payment_source_authorization_form'] = PropTypes.exact({
|
|
16257
|
-
discriminator: PropTypes.oneOf(['card_payment_source_authorization_form']).isRequired,
|
|
16258
|
-
key: PropTypes.string,
|
|
16259
|
-
card_payment_source_id: PropTypes.string.isRequired,
|
|
16260
|
-
order_number: PropTypes.string.isRequired,
|
|
16261
|
-
amount: PropTypes.number.isRequired,
|
|
16262
|
-
currency: PropTypes.string.isRequired,
|
|
16263
|
-
browser_info: T['io.flow.payment.v0.models.browser_info'],
|
|
16264
|
-
inline_action_configuration: T['io.flow.payment.v0.unions.inline_action_configuration'],
|
|
16265
|
-
});
|
|
16266
|
-
|
|
16267
|
-
T['io.flow.payment.v0.models.redirect_authorization_form'] = PropTypes.exact({
|
|
16268
|
-
discriminator: PropTypes.oneOf(['redirect_authorization_form']).isRequired,
|
|
16269
|
-
method: PropTypes.string.isRequired,
|
|
16270
|
-
issuer: T['io.flow.payment.v0.models.issuer_reference'],
|
|
16271
|
-
order_number: PropTypes.string.isRequired,
|
|
16272
|
-
amount: PropTypes.number.isRequired,
|
|
16273
|
-
currency: PropTypes.string.isRequired,
|
|
16274
|
-
redirect_urls: T['io.flow.payment.v0.models.post_payment_redirect_urls'].isRequired,
|
|
16275
|
-
key: PropTypes.string,
|
|
16276
|
-
attributes: PropTypes.objectOf(PropTypes.string),
|
|
16277
|
-
ip: PropTypes.string,
|
|
16278
|
-
});
|
|
16279
|
-
|
|
16280
|
-
T['io.flow.payment.v0.models.paypal_authorization_form'] = PropTypes.exact({
|
|
16281
|
-
discriminator: PropTypes.oneOf(['paypal_authorization_form']).isRequired,
|
|
16282
|
-
paypal_payment_id: PropTypes.string.isRequired,
|
|
16283
|
-
paypal_payer_id: PropTypes.string.isRequired,
|
|
16284
|
-
key: PropTypes.string,
|
|
16285
|
-
attributes: PropTypes.objectOf(PropTypes.string),
|
|
16286
|
-
ip: PropTypes.string,
|
|
16287
|
-
});
|
|
16288
|
-
|
|
16289
|
-
T['io.flow.payment.v0.models.merchant_of_record_authorization_form'] = PropTypes.exact({
|
|
16290
|
-
discriminator: PropTypes.oneOf(['merchant_of_record_authorization_form']).isRequired,
|
|
16291
|
-
token: PropTypes.string.isRequired,
|
|
16292
|
-
order_number: PropTypes.string.isRequired,
|
|
16293
|
-
amount: PropTypes.number,
|
|
16294
|
-
currency: PropTypes.string,
|
|
16295
|
-
key: PropTypes.string,
|
|
16296
|
-
cvv: PropTypes.string,
|
|
16297
|
-
attributes: PropTypes.objectOf(PropTypes.string),
|
|
16298
|
-
ip: PropTypes.string,
|
|
16299
|
-
options: PropTypes.arrayOf(T['io.flow.payment.v0.enums.authorization_option']),
|
|
16300
|
-
redirect_urls: T['io.flow.payment.v0.models.post_payment_redirect_urls'],
|
|
16301
|
-
browser_info: T['io.flow.payment.v0.models.browser_info'],
|
|
16302
|
-
inline_action_configuration: T['io.flow.payment.v0.unions.inline_action_configuration'],
|
|
16303
|
-
});
|
|
16304
|
-
|
|
16305
|
-
T['io.flow.payment.v0.models.authorization_copy_form'] = PropTypes.exact({
|
|
16306
|
-
discriminator: PropTypes.oneOf(['authorization_copy_form']).isRequired,
|
|
16307
|
-
source_authorization_key: PropTypes.string.isRequired,
|
|
16308
|
-
amount: PropTypes.number.isRequired,
|
|
16309
|
-
currency: PropTypes.string.isRequired,
|
|
16310
|
-
attributes: PropTypes.objectOf(PropTypes.string),
|
|
16311
|
-
});
|
|
16312
|
-
|
|
16313
|
-
T['io.flow.payment.v0.models.authorization_result_action_wait'] = PropTypes.exact({
|
|
16314
|
-
discriminator: PropTypes.oneOf(['authorization_result_action_wait']).isRequired,
|
|
16315
|
-
type: T['io.flow.payment.v0.enums.authorization_result_action_type'].isRequired,
|
|
16316
|
-
});
|
|
16317
|
-
|
|
16318
|
-
T['io.flow.payment.v0.models.authorization_result_action_post'] = PropTypes.exact({
|
|
16319
|
-
discriminator: PropTypes.oneOf(['authorization_result_action_post']).isRequired,
|
|
16320
|
-
type: T['io.flow.payment.v0.enums.authorization_result_action_type'].isRequired,
|
|
16321
|
-
url: PropTypes.string.isRequired,
|
|
16322
|
-
parameters: PropTypes.object.isRequired,
|
|
16323
|
-
});
|
|
16324
|
-
|
|
16325
|
-
T['io.flow.payment.v0.models.authorization_result_action_get'] = PropTypes.exact({
|
|
16326
|
-
discriminator: PropTypes.oneOf(['authorization_result_action_get']).isRequired,
|
|
16327
|
-
type: T['io.flow.payment.v0.enums.authorization_result_action_type'].isRequired,
|
|
16328
|
-
url: PropTypes.string,
|
|
16329
|
-
details: T['io.flow.payment.v0.unions.authorization_result_action_details'],
|
|
16330
|
-
});
|
|
16331
|
-
|
|
16332
|
-
T['io.flow.internal.v0.enums.checkout_url_type'] = PropTypes.oneOf(['continue_shopping', 'confirmation', 'invalid_checkout']);
|
|
16333
|
-
|
|
16334
|
-
T['io.flow.query.builder.v0.models.query'] = PropTypes.exact({
|
|
16335
|
-
q: PropTypes.string.isRequired,
|
|
16336
|
-
filters: PropTypes.arrayOf(T['io.flow.query.builder.v0.unions.query_filter']).isRequired,
|
|
16645
|
+
T['io.flow.internal.v0.enums.checkout_url_type'] = PropTypes.oneOf(['continue_shopping', 'confirmation', 'invalid_checkout']);
|
|
16646
|
+
|
|
16647
|
+
T['io.flow.query.builder.v0.models.query'] = PropTypes.exact({
|
|
16648
|
+
q: PropTypes.string.isRequired,
|
|
16649
|
+
filters: PropTypes.arrayOf(T['io.flow.query.builder.v0.unions.query_filter']).isRequired,
|
|
16337
16650
|
});
|
|
16338
16651
|
|
|
16339
16652
|
T['io.flow.catalog.return.v0.models.return_policy'] = PropTypes.exact({
|
|
@@ -16411,530 +16724,74 @@ T['io.flow.experience.v0.models.payment_method_rule'] = PropTypes.exact({
|
|
|
16411
16724
|
display_position: PropTypes.number.isRequired,
|
|
16412
16725
|
content: PropTypes.arrayOf(T['io.flow.experience.v0.models.payment_method_rule_content']),
|
|
16413
16726
|
issuers: PropTypes.arrayOf(T['io.flow.experience.v0.models.payment_method_issuer']),
|
|
16414
|
-
programs: PropTypes.arrayOf(PropTypes.object),
|
|
16415
|
-
q: T['io.flow.query.builder.v0.models.query'],
|
|
16416
|
-
});
|
|
16417
|
-
|
|
16418
|
-
T['io.flow.experience.v0.models.experience_payment_method_rule'] = PropTypes.exact({
|
|
16419
|
-
experience_key: PropTypes.string.isRequired,
|
|
16420
|
-
payment_method_rules: PropTypes.arrayOf(T['io.flow.experience.v0.models.payment_method_rule']).isRequired,
|
|
16421
|
-
});
|
|
16422
|
-
|
|
16423
|
-
T['io.flow.payment.v0.models.public_key'] = PropTypes.exact({
|
|
16424
|
-
id: PropTypes.string.isRequired,
|
|
16425
|
-
});
|
|
16426
|
-
|
|
16427
|
-
T['io.flow.payment.v0.models.card_payment_source_form'] = PropTypes.exact({
|
|
16428
|
-
discriminator: PropTypes.oneOf(['card_payment_source_form']).isRequired,
|
|
16429
|
-
customer_number: PropTypes.string.isRequired,
|
|
16430
|
-
card_id: PropTypes.string.isRequired,
|
|
16431
|
-
});
|
|
16432
|
-
|
|
16433
|
-
T['io.flow.internal.v0.models.order_parameters'] = PropTypes.exact({
|
|
16434
|
-
experience: PropTypes.string,
|
|
16435
|
-
country: PropTypes.string,
|
|
16436
|
-
ip: PropTypes.string,
|
|
16437
|
-
currency: PropTypes.string,
|
|
16438
|
-
language: PropTypes.string,
|
|
16439
|
-
});
|
|
16440
|
-
|
|
16441
|
-
T['io.flow.experience.v0.models.order_submission_identifier_form'] = PropTypes.exact({
|
|
16442
|
-
identifier: PropTypes.string.isRequired,
|
|
16443
|
-
name: PropTypes.string,
|
|
16444
|
-
primary: PropTypes.bool,
|
|
16445
|
-
});
|
|
16446
|
-
|
|
16447
|
-
T['io.flow.experience.v0.models.order_submission_form'] = PropTypes.exact({
|
|
16448
|
-
identifiers: PropTypes.arrayOf(T['io.flow.experience.v0.models.order_submission_identifier_form']),
|
|
16449
|
-
});
|
|
16450
|
-
|
|
16451
|
-
T['io.flow.checkout.v0.models.checkout_urls_form'] = PropTypes.exact({
|
|
16452
|
-
continue_shopping: PropTypes.string,
|
|
16453
|
-
confirmation: PropTypes.string,
|
|
16454
|
-
invalid_checkout: PropTypes.string,
|
|
16455
|
-
});
|
|
16456
|
-
|
|
16457
|
-
T['io.flow.checkout.v0.models.checkout_token_reference_form'] = PropTypes.exact({
|
|
16458
|
-
discriminator: PropTypes.oneOf(['checkout_token_reference_form']).isRequired,
|
|
16459
|
-
order_number: PropTypes.string.isRequired,
|
|
16460
|
-
session_id: PropTypes.string.isRequired,
|
|
16461
|
-
urls: T['io.flow.checkout.v0.models.checkout_urls_form'].isRequired,
|
|
16462
|
-
});
|
|
16463
|
-
|
|
16464
|
-
T['io.flow.payment.v0.unions.payment_source_form'] = PropTypes.oneOfType([T['io.flow.payment.v0.models.card_payment_source_form']]);
|
|
16465
|
-
|
|
16466
|
-
T['io.flow.experience.v0.models.order_options'] = PropTypes.exact({
|
|
16467
|
-
storage: T['io.flow.experience.v0.enums.order_storage'].isRequired,
|
|
16468
|
-
});
|
|
16469
|
-
|
|
16470
|
-
T['io.flow.internal.v0.enums.checkout_redirect_method'] = PropTypes.oneOf(['get', 'post']);
|
|
16471
|
-
|
|
16472
|
-
T['io.flow.internal.v0.models.checkout_redirect'] = PropTypes.exact({
|
|
16473
|
-
method: T['io.flow.internal.v0.enums.checkout_redirect_method'].isRequired,
|
|
16474
|
-
url: PropTypes.string.isRequired,
|
|
16475
|
-
body: PropTypes.string,
|
|
16476
|
-
});
|
|
16477
|
-
|
|
16478
|
-
T['io.flow.internal.v0.enums.checkout_error_code'] = PropTypes.oneOf([
|
|
16479
|
-
'generic_error',
|
|
16480
|
-
'order_identifier_invalid',
|
|
16481
|
-
'url_invalid',
|
|
16482
|
-
'organization_invalid',
|
|
16483
|
-
'session_invalid',
|
|
16484
|
-
'session_missing',
|
|
16485
|
-
'session_organization_invalid',
|
|
16486
|
-
'country_invalid',
|
|
16487
|
-
'currency_invalid',
|
|
16488
|
-
'language_invalid',
|
|
16489
|
-
'checkout_invalid',
|
|
16490
|
-
]);
|
|
16491
|
-
|
|
16492
|
-
T['io.flow.internal.v0.models.checkbox'] = PropTypes.exact({
|
|
16493
|
-
name: PropTypes.string.isRequired,
|
|
16494
|
-
value: PropTypes.string.isRequired,
|
|
16495
|
-
label: PropTypes.string.isRequired,
|
|
16496
|
-
checked_by_default: PropTypes.bool.isRequired,
|
|
16497
|
-
required: PropTypes.bool.isRequired,
|
|
16498
|
-
});
|
|
16499
|
-
|
|
16500
|
-
T['io.flow.internal.v0.enums.format'] = PropTypes.oneOf(['text', 'phone', 'email']);
|
|
16501
|
-
|
|
16502
|
-
T['io.flow.internal.v0.models.logo'] = PropTypes.exact({
|
|
16503
|
-
url: PropTypes.string.isRequired,
|
|
16504
|
-
});
|
|
16505
|
-
|
|
16506
|
-
T['io.flow.internal.v0.models.checkout_url'] = PropTypes.exact({
|
|
16507
|
-
url: PropTypes.string.isRequired,
|
|
16508
|
-
type: T['io.flow.internal.v0.enums.checkout_url_type'].isRequired,
|
|
16509
|
-
});
|
|
16510
|
-
|
|
16511
|
-
T['io.flow.reference.v0.enums.postal_type'] = PropTypes.oneOf(['eircode', 'pin', 'postal', 'zip']);
|
|
16512
|
-
|
|
16513
|
-
T['io.flow.experience.v0.models.address_configuration_format'] = PropTypes.exact({
|
|
16514
|
-
placements: PropTypes.arrayOf(T['io.flow.experience.v0.models.address_configuration_field_placement']).isRequired,
|
|
16515
|
-
});
|
|
16516
|
-
|
|
16517
|
-
T['io.flow.experience.v0.models.address_configuration_province'] = PropTypes.exact({
|
|
16518
|
-
value: PropTypes.string.isRequired,
|
|
16519
|
-
name: PropTypes.string.isRequired,
|
|
16520
|
-
|
|
16521
|
-
translations: PropTypes.arrayOf(
|
|
16522
|
-
T['io.flow.experience.v0.models.address_configuration_province_translation'],
|
|
16523
|
-
),
|
|
16524
|
-
});
|
|
16525
|
-
|
|
16526
|
-
T['io.flow.experience.v0.models.address_field_validation'] = PropTypes.exact({
|
|
16527
|
-
first_name: PropTypes.arrayOf(T['io.flow.field.validation.v0.unions.field_validation_rule']).isRequired,
|
|
16528
|
-
last_name: PropTypes.arrayOf(T['io.flow.field.validation.v0.unions.field_validation_rule']).isRequired,
|
|
16529
|
-
street_1: PropTypes.arrayOf(T['io.flow.field.validation.v0.unions.field_validation_rule']).isRequired,
|
|
16530
|
-
street_2: PropTypes.arrayOf(T['io.flow.field.validation.v0.unions.field_validation_rule']).isRequired,
|
|
16531
|
-
city: PropTypes.arrayOf(T['io.flow.field.validation.v0.unions.field_validation_rule']).isRequired,
|
|
16532
|
-
province: PropTypes.arrayOf(T['io.flow.field.validation.v0.unions.field_validation_rule']).isRequired,
|
|
16533
|
-
postal: PropTypes.arrayOf(T['io.flow.field.validation.v0.unions.field_validation_rule']).isRequired,
|
|
16534
|
-
phone: PropTypes.arrayOf(T['io.flow.field.validation.v0.unions.field_validation_rule']).isRequired,
|
|
16535
|
-
vat_registration_number: PropTypes.arrayOf(T['io.flow.field.validation.v0.unions.field_validation_rule']).isRequired,
|
|
16536
|
-
});
|
|
16537
|
-
|
|
16538
|
-
T['io.flow.catalog.v0.models.image'] = PropTypes.exact({
|
|
16539
|
-
url: PropTypes.string.isRequired,
|
|
16540
|
-
tags: PropTypes.arrayOf(T['io.flow.catalog.v0.enums.image_tag']).isRequired,
|
|
16541
|
-
attributes: PropTypes.objectOf(PropTypes.string),
|
|
16542
|
-
});
|
|
16543
|
-
|
|
16544
|
-
T['io.flow.experience.v0.models.checkout_item_content_attribute'] = PropTypes.exact({
|
|
16545
|
-
key: PropTypes.string.isRequired,
|
|
16546
|
-
name: PropTypes.string.isRequired,
|
|
16547
|
-
value: PropTypes.string.isRequired,
|
|
16548
|
-
});
|
|
16549
|
-
|
|
16550
|
-
T['io.flow.reference.v0.models.localized_translation'] = PropTypes.exact({
|
|
16551
|
-
locale: T['io.flow.reference.v0.models.locale'].isRequired,
|
|
16552
|
-
name: PropTypes.string.isRequired,
|
|
16553
|
-
});
|
|
16554
|
-
|
|
16555
|
-
T['io.flow.reference.v0.enums.province_type'] = PropTypes.oneOf([
|
|
16556
|
-
'area',
|
|
16557
|
-
'city',
|
|
16558
|
-
'county',
|
|
16559
|
-
'department',
|
|
16560
|
-
'dependency',
|
|
16561
|
-
'district',
|
|
16562
|
-
'do_si',
|
|
16563
|
-
'emirate',
|
|
16564
|
-
'entity',
|
|
16565
|
-
'island',
|
|
16566
|
-
'municipality',
|
|
16567
|
-
'oblast',
|
|
16568
|
-
'outlying_area',
|
|
16569
|
-
'parish',
|
|
16570
|
-
'prefecture',
|
|
16571
|
-
'province',
|
|
16572
|
-
'state',
|
|
16573
|
-
'territory',
|
|
16574
|
-
'other',
|
|
16575
|
-
]);
|
|
16576
|
-
|
|
16577
|
-
T['io.flow.internal.v0.models.checkout_marketing_content'] = PropTypes.exact({
|
|
16578
|
-
optins: PropTypes.arrayOf(T['io.flow.internal.v0.models.checkbox']).isRequired,
|
|
16579
|
-
});
|
|
16580
|
-
|
|
16581
|
-
T['io.flow.experience.v0.enums.order_error_code'] = PropTypes.oneOf([
|
|
16582
|
-
'generic_error',
|
|
16583
|
-
'order_item_not_available',
|
|
16584
|
-
'order_identifier_error',
|
|
16585
|
-
'authorization_invalid',
|
|
16586
|
-
'domestic_shipping_unavailable',
|
|
16587
|
-
'shipping_unavailable',
|
|
16588
|
-
'value_threshold_exceeded',
|
|
16589
|
-
'invalid_currency',
|
|
16590
|
-
'invalid_country',
|
|
16591
|
-
'invalid_region',
|
|
16592
|
-
'invalid_language',
|
|
16593
|
-
'item_out_of_stock',
|
|
16594
|
-
'gift_card_not_accepted',
|
|
16595
|
-
'total_changed',
|
|
16596
|
-
]);
|
|
16597
|
-
|
|
16598
|
-
T['io.flow.experience.v0.models.incoterm_summary'] = PropTypes.exact({
|
|
16599
|
-
configuration: T['io.flow.experience.v0.enums.incoterm_configuration'].isRequired,
|
|
16600
|
-
includes: T['io.flow.experience.v0.models.incoterm_includes'].isRequired,
|
|
16601
|
-
reason: PropTypes.string,
|
|
16602
|
-
});
|
|
16603
|
-
|
|
16604
|
-
T['io.flow.experience.v0.models.destination_contact_detail'] = PropTypes.exact({
|
|
16605
|
-
title: PropTypes.string.isRequired,
|
|
16606
|
-
country: PropTypes.string.isRequired,
|
|
16607
|
-
import_identifier: PropTypes.string.isRequired,
|
|
16608
|
-
});
|
|
16609
|
-
|
|
16610
|
-
T['io.flow.payment.v0.unions.device_details'] = PropTypes.oneOfType([T['io.flow.payment.v0.models.device_details_browser']]);
|
|
16611
|
-
|
|
16612
|
-
T['io.flow.payment.gateway.v0.models.payment_request_form'] = PropTypes.exact({
|
|
16613
|
-
amount: PropTypes.number.isRequired,
|
|
16614
|
-
currency: PropTypes.string.isRequired,
|
|
16615
|
-
order_information: T['io.flow.payment.gateway.v0.unions.order_information'].isRequired,
|
|
16616
|
-
device_details: T['io.flow.payment.v0.unions.device_details'].isRequired,
|
|
16617
|
-
locale: PropTypes.string,
|
|
16618
|
-
return_url: PropTypes.string.isRequired,
|
|
16619
|
-
attributes: PropTypes.objectOf(PropTypes.string),
|
|
16620
|
-
reference: PropTypes.string,
|
|
16621
|
-
payment_method_data: T['io.flow.payment.gateway.v0.unions.payment_method_data'],
|
|
16622
|
-
supported_actions: PropTypes.arrayOf(T['io.flow.payment.gateway.v0.enums.payment_action_type']),
|
|
16623
|
-
payment_capture_option: T['io.flow.payment.gateway.v0.unions.payment_capture_option'],
|
|
16624
|
-
});
|
|
16625
|
-
|
|
16626
|
-
T['io.flow.payment.gateway.v0.models.payment_request'] = PropTypes.exact({
|
|
16627
|
-
id: PropTypes.string.isRequired,
|
|
16628
|
-
status: T['io.flow.payment.gateway.v0.enums.payment_status'].isRequired,
|
|
16629
|
-
created_at: PropTypes.string.isRequired,
|
|
16630
|
-
updated_at: PropTypes.string.isRequired,
|
|
16631
|
-
available_payment_methods: PropTypes.arrayOf(T['io.flow.payment.gateway.v0.models.payment_payment_method']).isRequired,
|
|
16632
|
-
last_payment_failure: T['io.flow.payment.gateway.v0.models.payment_failure'],
|
|
16633
|
-
next_action: T['io.flow.payment.gateway.v0.unions.action'],
|
|
16634
|
-
amount: PropTypes.number.isRequired,
|
|
16635
|
-
currency: PropTypes.string.isRequired,
|
|
16636
|
-
base_amount: PropTypes.number,
|
|
16637
|
-
base_currency: PropTypes.string,
|
|
16638
|
-
order_information: T['io.flow.payment.gateway.v0.unions.order_information'].isRequired,
|
|
16639
|
-
device_details: T['io.flow.payment.v0.unions.device_details'].isRequired,
|
|
16640
|
-
locale: PropTypes.string,
|
|
16641
|
-
return_url: PropTypes.string.isRequired,
|
|
16642
|
-
attributes: PropTypes.objectOf(PropTypes.string),
|
|
16643
|
-
reference: PropTypes.string,
|
|
16644
|
-
payment_information: T['io.flow.payment.gateway.v0.models.payment_information'].isRequired,
|
|
16645
|
-
supported_actions: PropTypes.arrayOf(T['io.flow.payment.gateway.v0.enums.payment_action_type']).isRequired,
|
|
16646
|
-
payment_capture_option: T['io.flow.payment.gateway.v0.unions.payment_capture_option'],
|
|
16647
|
-
review: T['io.flow.payment.gateway.v0.models.payment_request_review'],
|
|
16648
|
-
});
|
|
16649
|
-
|
|
16650
|
-
T['io.flow.internal.v0.models.internal_payment_request'] = PropTypes.exact({
|
|
16651
|
-
payment_request: T['io.flow.payment.gateway.v0.models.payment_request'].isRequired,
|
|
16652
|
-
actual_action: T['io.flow.payment.gateway.v0.unions.action'],
|
|
16653
|
-
});
|
|
16654
|
-
|
|
16655
|
-
T['io.flow.experience.v0.models.order_geo'] = PropTypes.exact({
|
|
16656
|
-
ip: PropTypes.string,
|
|
16657
|
-
country: PropTypes.string.isRequired,
|
|
16658
|
-
currency: PropTypes.string,
|
|
16659
|
-
language: PropTypes.string,
|
|
16660
|
-
});
|
|
16661
|
-
|
|
16662
|
-
T['io.flow.harmonization.v0.models.tax_registration'] = PropTypes.exact({
|
|
16663
|
-
id: PropTypes.string.isRequired,
|
|
16664
|
-
key: PropTypes.string.isRequired,
|
|
16665
|
-
number: PropTypes.string.isRequired,
|
|
16666
|
-
timestamp: PropTypes.string.isRequired,
|
|
16667
|
-
result: T['io.flow.harmonization.v0.enums.tax_verification_result'].isRequired,
|
|
16668
|
-
result_reason: PropTypes.string,
|
|
16669
|
-
name: PropTypes.string,
|
|
16670
|
-
address: PropTypes.string,
|
|
16671
|
-
company_name: PropTypes.string,
|
|
16672
|
-
});
|
|
16673
|
-
|
|
16674
|
-
T['io.flow.experience.v0.models.order_rules_summary'] = PropTypes.exact({
|
|
16675
|
-
applied: PropTypes.arrayOf(T['io.flow.experience.v0.models.order_rule_reference']).isRequired,
|
|
16676
|
-
});
|
|
16677
|
-
|
|
16678
|
-
T['io.flow.common.v0.enums.delivered_duty'] = PropTypes.oneOf(['paid', 'unpaid']);
|
|
16679
|
-
|
|
16680
|
-
T['io.flow.ratecard.v0.models.ratecard_lane_import_form'] = PropTypes.exact({
|
|
16681
|
-
ratecard_owner: T['io.flow.fulfillment.v0.enums.ratecard_owner'].isRequired,
|
|
16682
|
-
service: PropTypes.string.isRequired,
|
|
16683
|
-
currency: PropTypes.string.isRequired,
|
|
16684
|
-
delivered_duty: T['io.flow.common.v0.enums.delivered_duty'].isRequired,
|
|
16685
|
-
origin: T['io.flow.common.v0.models.zone'].isRequired,
|
|
16686
|
-
destination: T['io.flow.common.v0.models.zone'].isRequired,
|
|
16687
|
-
shipment_window: T['io.flow.ratecard.v0.models.shipment_window'].isRequired,
|
|
16688
|
-
dim_factor: PropTypes.number.isRequired,
|
|
16689
|
-
weight_unit: T['io.flow.common.v0.enums.unit_of_measurement'].isRequired,
|
|
16690
|
-
distance_unit: T['io.flow.common.v0.enums.unit_of_measurement'].isRequired,
|
|
16691
|
-
rates: PropTypes.arrayOf(T['io.flow.ratecard.v0.models.ratecard_rate_form']).isRequired,
|
|
16692
|
-
});
|
|
16693
|
-
|
|
16694
|
-
T['io.flow.experience.v0.models.order_builder_delivered_duty_form'] = PropTypes.exact({
|
|
16695
|
-
delivered_duty: T['io.flow.common.v0.enums.delivered_duty'].isRequired,
|
|
16696
|
-
});
|
|
16697
|
-
|
|
16698
|
-
T['io.flow.experience.v0.models.experience_form'] = PropTypes.exact({
|
|
16699
|
-
region_id: PropTypes.string.isRequired,
|
|
16700
|
-
name: PropTypes.string.isRequired,
|
|
16701
|
-
delivered_duty: T['io.flow.common.v0.enums.delivered_duty'],
|
|
16702
|
-
country: PropTypes.string,
|
|
16703
|
-
currency: PropTypes.string,
|
|
16704
|
-
language: PropTypes.string,
|
|
16705
|
-
key: PropTypes.string,
|
|
16706
|
-
position: PropTypes.number,
|
|
16707
|
-
measurement_system: T['io.flow.common.v0.enums.measurement_system'],
|
|
16708
|
-
subcatalog_id: PropTypes.string,
|
|
16709
|
-
});
|
|
16710
|
-
|
|
16711
|
-
T['io.flow.experience.v0.models.experience_defaults'] = PropTypes.exact({
|
|
16712
|
-
key: PropTypes.string.isRequired,
|
|
16713
|
-
name: PropTypes.string.isRequired,
|
|
16714
|
-
delivered_duty: T['io.flow.common.v0.enums.delivered_duty'].isRequired,
|
|
16715
|
-
country: PropTypes.string.isRequired,
|
|
16716
|
-
currency: PropTypes.string.isRequired,
|
|
16717
|
-
language: PropTypes.string.isRequired,
|
|
16718
|
-
measurement_system: T['io.flow.common.v0.enums.measurement_system'].isRequired,
|
|
16719
|
-
});
|
|
16720
|
-
|
|
16721
|
-
T['io.flow.experience.v0.models.delivered_duty_setting'] = PropTypes.exact({
|
|
16722
|
-
'default': T['io.flow.common.v0.enums.delivered_duty'].isRequired,
|
|
16723
|
-
available: PropTypes.arrayOf(T['io.flow.common.v0.enums.delivered_duty']).isRequired,
|
|
16724
|
-
display: T['io.flow.experience.v0.enums.delivered_duty_display_type'],
|
|
16725
|
-
});
|
|
16726
|
-
|
|
16727
|
-
T['io.flow.experience.v0.models.experience_settings'] = PropTypes.exact({
|
|
16728
|
-
delivered_duty: T['io.flow.experience.v0.models.delivered_duty_setting'].isRequired,
|
|
16729
|
-
pricing_settings: T['io.flow.experience.v0.models.pricing_settings'],
|
|
16730
|
-
logistics_settings: T['io.flow.experience.v0.models.logistics_settings'],
|
|
16731
|
-
checkout_settings: T['io.flow.experience.v0.models.experience_checkout_configuration_settings'],
|
|
16732
|
-
});
|
|
16733
|
-
|
|
16734
|
-
T['io.flow.experience.v0.models.experience'] = PropTypes.exact({
|
|
16735
|
-
discriminator: PropTypes.oneOf(['experience']).isRequired,
|
|
16736
|
-
id: PropTypes.string.isRequired,
|
|
16737
|
-
key: PropTypes.string.isRequired,
|
|
16738
|
-
name: PropTypes.string.isRequired,
|
|
16739
|
-
delivered_duty: T['io.flow.common.v0.enums.delivered_duty'].isRequired,
|
|
16740
|
-
region: T['io.flow.experience.v0.models.region_reference'].isRequired,
|
|
16741
|
-
country: PropTypes.string.isRequired,
|
|
16742
|
-
currency: PropTypes.string.isRequired,
|
|
16743
|
-
language: PropTypes.string.isRequired,
|
|
16744
|
-
measurement_system: T['io.flow.common.v0.enums.measurement_system'].isRequired,
|
|
16745
|
-
subcatalog: T['io.flow.catalog.v0.models.subcatalog_reference'].isRequired,
|
|
16746
|
-
position: PropTypes.number.isRequired,
|
|
16747
|
-
settings: T['io.flow.experience.v0.models.experience_settings'].isRequired,
|
|
16748
|
-
status: T['io.flow.experience.v0.enums.experience_status'],
|
|
16749
|
-
});
|
|
16750
|
-
|
|
16751
|
-
T['io.flow.internal.v0.models.delivered_duty_preference_form'] = PropTypes.exact({
|
|
16752
|
-
methods: PropTypes.arrayOf(T['io.flow.common.v0.enums.delivered_duty']).isRequired,
|
|
16753
|
-
'default': T['io.flow.common.v0.enums.delivered_duty'],
|
|
16754
|
-
display: T['io.flow.experience.v0.enums.delivered_duty_display_type'],
|
|
16755
|
-
});
|
|
16756
|
-
|
|
16757
|
-
T['io.flow.internal.v0.models.delivered_duty_preference'] = PropTypes.exact({
|
|
16758
|
-
methods: PropTypes.arrayOf(T['io.flow.common.v0.enums.delivered_duty']).isRequired,
|
|
16759
|
-
'default': T['io.flow.common.v0.enums.delivered_duty'].isRequired,
|
|
16760
|
-
display: T['io.flow.experience.v0.enums.delivered_duty_display_type'].isRequired,
|
|
16761
|
-
});
|
|
16762
|
-
|
|
16763
|
-
T['io.flow.internal.v0.models.delivered_duty_option'] = PropTypes.exact({
|
|
16764
|
-
methods: PropTypes.arrayOf(T['io.flow.common.v0.enums.delivered_duty']).isRequired,
|
|
16765
|
-
message: T['io.flow.internal.v0.models.delivered_duty_option_message'],
|
|
16766
|
-
selectable: PropTypes.bool.isRequired,
|
|
16767
|
-
});
|
|
16768
|
-
|
|
16769
|
-
T['io.flow.internal.v0.models.delivered_duty_options'] = PropTypes.exact({
|
|
16770
|
-
options: PropTypes.arrayOf(T['io.flow.internal.v0.models.delivered_duty_option']).isRequired,
|
|
16771
|
-
message: T['io.flow.internal.v0.models.delivered_duty_options_message'],
|
|
16772
|
-
});
|
|
16773
|
-
|
|
16774
|
-
T['io.flow.experience.v0.unions.expandable_experience'] = PropTypes.oneOfType([
|
|
16775
|
-
T['io.flow.experience.v0.models.experience'],
|
|
16776
|
-
T['io.flow.experience.v0.models.experience_reference'],
|
|
16777
|
-
]);
|
|
16778
|
-
|
|
16779
|
-
T['io.flow.common.v0.enums.order_merchant_of_record'] = PropTypes.oneOf(['flow', 'organization', 'mixed']);
|
|
16780
|
-
|
|
16781
|
-
T['io.flow.payment.v0.models.card_metadata'] = PropTypes.exact({
|
|
16782
|
-
merchant_of_record: T['io.flow.common.v0.enums.order_merchant_of_record'],
|
|
16783
|
-
});
|
|
16784
|
-
|
|
16785
|
-
T['io.flow.experience.v0.enums.order_type'] = PropTypes.oneOf(['standard', 'replacement']);
|
|
16786
|
-
|
|
16787
|
-
T['io.flow.experience.v0.models.address_configuration'] = PropTypes.exact({
|
|
16788
|
-
country: PropTypes.string.isRequired,
|
|
16789
|
-
field_validation: T['io.flow.experience.v0.models.address_field_validation'].isRequired,
|
|
16790
|
-
provinces: PropTypes.arrayOf(T['io.flow.experience.v0.models.address_configuration_province']).isRequired,
|
|
16791
|
-
formats: PropTypes.arrayOf(T['io.flow.experience.v0.models.address_configuration_format']),
|
|
16792
|
-
province_type: T['io.flow.reference.v0.enums.province_type'],
|
|
16793
|
-
postal_type: T['io.flow.reference.v0.enums.postal_type'],
|
|
16794
|
-
});
|
|
16795
|
-
|
|
16796
|
-
T['io.flow.reference.v0.models.province'] = PropTypes.exact({
|
|
16797
|
-
id: PropTypes.string.isRequired,
|
|
16798
|
-
iso_3166_2: PropTypes.string.isRequired,
|
|
16799
|
-
name: PropTypes.string.isRequired,
|
|
16800
|
-
country: PropTypes.string.isRequired,
|
|
16801
|
-
province_type: T['io.flow.reference.v0.enums.province_type'].isRequired,
|
|
16802
|
-
translations: PropTypes.arrayOf(T['io.flow.reference.v0.models.localized_translation']),
|
|
16803
|
-
});
|
|
16804
|
-
|
|
16805
|
-
T['io.flow.reference.v0.models.country'] = PropTypes.exact({
|
|
16806
|
-
name: PropTypes.string.isRequired,
|
|
16807
|
-
iso_3166_2: PropTypes.string.isRequired,
|
|
16808
|
-
iso_3166_3: PropTypes.string.isRequired,
|
|
16809
|
-
languages: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
16810
|
-
measurement_system: PropTypes.string.isRequired,
|
|
16811
|
-
default_currency: PropTypes.string,
|
|
16812
|
-
default_language: PropTypes.string,
|
|
16813
|
-
timezones: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
16814
|
-
default_delivered_duty: PropTypes.string,
|
|
16815
|
-
});
|
|
16816
|
-
|
|
16817
|
-
T['io.flow.session.v0.models.session_geo'] = PropTypes.exact({
|
|
16818
|
-
country: T['io.flow.reference.v0.models.country'].isRequired,
|
|
16819
|
-
currency: T['io.flow.reference.v0.models.currency'].isRequired,
|
|
16820
|
-
language: T['io.flow.reference.v0.models.language'].isRequired,
|
|
16821
|
-
locale: T['io.flow.reference.v0.models.locale'].isRequired,
|
|
16822
|
-
});
|
|
16823
|
-
|
|
16824
|
-
T['io.flow.session.v0.models.local_session'] = PropTypes.exact({
|
|
16825
|
-
country: T['io.flow.reference.v0.models.country'].isRequired,
|
|
16826
|
-
currency: T['io.flow.reference.v0.models.currency'].isRequired,
|
|
16827
|
-
language: T['io.flow.reference.v0.models.language'].isRequired,
|
|
16828
|
-
locale: T['io.flow.reference.v0.models.locale'].isRequired,
|
|
16829
|
-
experience: T['io.flow.experience.v0.models.experience_geo'].isRequired,
|
|
16830
|
-
});
|
|
16831
|
-
|
|
16832
|
-
T['io.flow.shopify.merchant.config.v0.models.country_of_origin'] = PropTypes.exact({
|
|
16833
|
-
country: T['io.flow.reference.v0.models.country'].isRequired,
|
|
16834
|
-
});
|
|
16835
|
-
|
|
16836
|
-
T['io.flow.internal.v0.models.resync_fallback_rates'] = PropTypes.exact({
|
|
16837
|
-
destinations: PropTypes.arrayOf(T['io.flow.reference.v0.models.country']).isRequired,
|
|
16838
|
-
});
|
|
16839
|
-
|
|
16840
|
-
T['io.flow.internal.v0.models.resync_by_hs6_origin'] = PropTypes.exact({
|
|
16841
|
-
hs6_code: PropTypes.string.isRequired,
|
|
16842
|
-
origin: T['io.flow.reference.v0.models.country'].isRequired,
|
|
16843
|
-
});
|
|
16844
|
-
|
|
16845
|
-
T['io.flow.internal.v0.models.resync_by_hs6_destinations'] = PropTypes.exact({
|
|
16846
|
-
hs6_code: PropTypes.string.isRequired,
|
|
16847
|
-
destinations: PropTypes.arrayOf(T['io.flow.reference.v0.models.country']).isRequired,
|
|
16848
|
-
});
|
|
16849
|
-
|
|
16850
|
-
T['io.flow.internal.v0.models.resync_by_destinations'] = PropTypes.exact({
|
|
16851
|
-
destinations: PropTypes.arrayOf(T['io.flow.reference.v0.models.country']).isRequired,
|
|
16852
|
-
});
|
|
16853
|
-
|
|
16854
|
-
T['io.flow.internal.v0.models.rates_names_summary'] = PropTypes.exact({
|
|
16855
|
-
origin: T['io.flow.reference.v0.models.country'].isRequired,
|
|
16856
|
-
destination: T['io.flow.reference.v0.models.country'].isRequired,
|
|
16857
|
-
summaries: PropTypes.arrayOf(T['io.flow.internal.v0.models.rate_name_summary']).isRequired,
|
|
16858
|
-
});
|
|
16859
|
-
|
|
16860
|
-
T['io.flow.internal.v0.models.rates_changed'] = PropTypes.exact({
|
|
16861
|
-
event_id: PropTypes.string.isRequired,
|
|
16862
|
-
timestamp: PropTypes.string.isRequired,
|
|
16863
|
-
hs6: PropTypes.string.isRequired,
|
|
16864
|
-
origin: T['io.flow.reference.v0.models.country'].isRequired,
|
|
16865
|
-
destination: T['io.flow.reference.v0.models.country'].isRequired,
|
|
16727
|
+
programs: PropTypes.arrayOf(PropTypes.object),
|
|
16728
|
+
q: T['io.flow.query.builder.v0.models.query'],
|
|
16866
16729
|
});
|
|
16867
16730
|
|
|
16868
|
-
T['io.flow.
|
|
16869
|
-
|
|
16870
|
-
|
|
16871
|
-
destination: T['io.flow.reference.v0.models.country'].isRequired,
|
|
16872
|
-
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,
|
|
16873
16734
|
});
|
|
16874
16735
|
|
|
16875
|
-
T['io.flow.
|
|
16876
|
-
|
|
16877
|
-
event_id: PropTypes.string.isRequired,
|
|
16878
|
-
timestamp: PropTypes.string.isRequired,
|
|
16879
|
-
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,
|
|
16880
16738
|
});
|
|
16881
16739
|
|
|
16882
|
-
T['io.flow.internal.v0.
|
|
16883
|
-
discriminator: PropTypes.oneOf(['rate_source_summary_deleted']).isRequired,
|
|
16884
|
-
event_id: PropTypes.string.isRequired,
|
|
16885
|
-
timestamp: PropTypes.string.isRequired,
|
|
16886
|
-
rate_source_summary: T['io.flow.internal.v0.models.rate_source_summary'].isRequired,
|
|
16887
|
-
});
|
|
16740
|
+
T['io.flow.internal.v0.enums.checkout_redirect_method'] = PropTypes.oneOf(['get', 'post']);
|
|
16888
16741
|
|
|
16889
|
-
T['io.flow.internal.v0.models.
|
|
16890
|
-
|
|
16891
|
-
|
|
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,
|
|
16892
16746
|
});
|
|
16893
16747
|
|
|
16894
|
-
T['io.flow.internal.v0.
|
|
16895
|
-
|
|
16896
|
-
|
|
16897
|
-
|
|
16898
|
-
|
|
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,
|
|
16899
16768
|
});
|
|
16900
16769
|
|
|
16901
|
-
T['io.flow.internal.v0.
|
|
16902
|
-
T['io.flow.internal.v0.models.time_to_classify'],
|
|
16903
|
-
T['io.flow.internal.v0.models.time_to_classify_aggregated'],
|
|
16904
|
-
T['io.flow.internal.v0.models.rate_source_summary'],
|
|
16905
|
-
T['io.flow.internal.v0.models.rate_freshness_summary'],
|
|
16906
|
-
]);
|
|
16770
|
+
T['io.flow.internal.v0.enums.format'] = PropTypes.oneOf(['text', 'phone', 'email']);
|
|
16907
16771
|
|
|
16908
|
-
T['io.flow.internal.v0.models.
|
|
16909
|
-
|
|
16910
|
-
event_id: PropTypes.string.isRequired,
|
|
16911
|
-
timestamp: PropTypes.string.isRequired,
|
|
16912
|
-
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,
|
|
16913
16774
|
});
|
|
16914
16775
|
|
|
16915
|
-
T['io.flow.
|
|
16916
|
-
|
|
16917
|
-
|
|
16918
|
-
|
|
16919
|
-
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),
|
|
16920
16780
|
});
|
|
16921
16781
|
|
|
16922
|
-
T['io.flow.
|
|
16923
|
-
|
|
16924
|
-
|
|
16925
|
-
|
|
16926
|
-
item_numbers: PropTypes.arrayOf(PropTypes.string),
|
|
16927
|
-
rates: PropTypes.arrayOf(T['io.flow.internal.v0.models.currency_internal_rate']),
|
|
16928
|
-
countries: PropTypes.arrayOf(T['io.flow.reference.v0.models.country']),
|
|
16929
|
-
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,
|
|
16930
16786
|
});
|
|
16931
16787
|
|
|
16932
|
-
T['io.flow.internal.v0.models.
|
|
16933
|
-
|
|
16934
|
-
|
|
16935
|
-
|
|
16936
|
-
|
|
16937
|
-
|
|
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,
|
|
16938
16795
|
});
|
|
16939
16796
|
|
|
16940
16797
|
T['io.flow.internal.v0.enums.checkout_shipping_method_prompt_behavior'] = PropTypes.oneOf(['always', 'multiple']);
|
|
@@ -17364,6 +17221,8 @@ T['io.flow.tracking.v0.enums.tracking_status'] = PropTypes.oneOf([
|
|
|
17364
17221
|
'exception',
|
|
17365
17222
|
'returned',
|
|
17366
17223
|
'expired',
|
|
17224
|
+
'unknown',
|
|
17225
|
+
'unmapped',
|
|
17367
17226
|
]);
|
|
17368
17227
|
|
|
17369
17228
|
T['io.flow.tracking.v0.models.tracking_summary'] = PropTypes.exact({
|
|
@@ -17567,45 +17426,6 @@ T['io.flow.internal.v0.models.harmonization_unclassified_statistics'] = PropType
|
|
|
17567
17426
|
statistics: PropTypes.arrayOf(T['io.flow.internal.v0.models.unclassified_product_statistic']).isRequired,
|
|
17568
17427
|
});
|
|
17569
17428
|
|
|
17570
|
-
T['io.flow.internal.v0.models.marketing_gateway_feed'] = PropTypes.exact({
|
|
17571
|
-
id: PropTypes.string.isRequired,
|
|
17572
|
-
organization: T['io.flow.common.v0.models.organization_summary'].isRequired,
|
|
17573
|
-
experience: T['io.flow.common.v0.models.experience_summary'],
|
|
17574
|
-
schema: T['io.flow.internal.v0.models.marketing_gateway_schema_summary'].isRequired,
|
|
17575
|
-
filter: T['io.flow.internal.v0.models.marketing_gateway_filter_summary'].isRequired,
|
|
17576
|
-
country: PropTypes.string.isRequired,
|
|
17577
|
-
currency: PropTypes.string.isRequired,
|
|
17578
|
-
language: PropTypes.string.isRequired,
|
|
17579
|
-
feed_source: T['io.flow.internal.v0.unions.marketing_gateway_feed_source'].isRequired,
|
|
17580
|
-
feed_state: T['io.flow.internal.v0.enums.marketing_gateway_feed_state'].isRequired,
|
|
17581
|
-
tsv_download_url: PropTypes.string.isRequired,
|
|
17582
|
-
tsv_channel_download_url: PropTypes.string,
|
|
17583
|
-
created_at: PropTypes.string.isRequired,
|
|
17584
|
-
updated_at: PropTypes.string,
|
|
17585
|
-
item_count: PropTypes.number,
|
|
17586
|
-
platform_feed_id: PropTypes.string,
|
|
17587
|
-
});
|
|
17588
|
-
|
|
17589
|
-
T['io.flow.internal.v0.models.feed_upserted'] = PropTypes.exact({
|
|
17590
|
-
discriminator: PropTypes.oneOf(['feed_upserted']).isRequired,
|
|
17591
|
-
event_id: PropTypes.string.isRequired,
|
|
17592
|
-
timestamp: PropTypes.string.isRequired,
|
|
17593
|
-
organization_id: PropTypes.string.isRequired,
|
|
17594
|
-
feed: T['io.flow.internal.v0.models.marketing_gateway_feed'].isRequired,
|
|
17595
|
-
});
|
|
17596
|
-
|
|
17597
|
-
T['io.flow.internal.v0.models.feed_deleted'] = PropTypes.exact({
|
|
17598
|
-
discriminator: PropTypes.oneOf(['feed_deleted']).isRequired,
|
|
17599
|
-
event_id: PropTypes.string.isRequired,
|
|
17600
|
-
timestamp: PropTypes.string.isRequired,
|
|
17601
|
-
organization_id: PropTypes.string.isRequired,
|
|
17602
|
-
feed: T['io.flow.internal.v0.models.marketing_gateway_feed'].isRequired,
|
|
17603
|
-
});
|
|
17604
|
-
|
|
17605
|
-
T['io.flow.internal.v0.models.checkout_bundle_metadata'] = PropTypes.exact({
|
|
17606
|
-
organization: T['io.flow.common.v0.models.organization_summary'].isRequired,
|
|
17607
|
-
});
|
|
17608
|
-
|
|
17609
17429
|
T['io.flow.internal.v0.models.channel_form'] = PropTypes.exact({
|
|
17610
17430
|
name: PropTypes.string.isRequired,
|
|
17611
17431
|
environment: T['io.flow.common.v0.enums.environment'].isRequired,
|
|
@@ -18226,6 +18046,8 @@ T['io.flow.internal.v0.models.export_tracking_label_event'] = PropTypes.exact({
|
|
|
18226
18046
|
raw_carrier_event_code: PropTypes.string,
|
|
18227
18047
|
aggregator_status_code: PropTypes.string,
|
|
18228
18048
|
created_at: PropTypes.string,
|
|
18049
|
+
source: T['io.flow.internal.v0.enums.label_event_source'],
|
|
18050
|
+
medium: T['io.flow.internal.v0.enums.label_event_medium'],
|
|
18229
18051
|
});
|
|
18230
18052
|
|
|
18231
18053
|
T['io.flow.internal.v0.models.tracking_label_event_upserted_v2'] = PropTypes.exact({
|
|
@@ -19053,20 +18875,6 @@ T['io.flow.internal.v0.models.harmonization_item_classification'] = PropTypes.ex
|
|
|
19053
18875
|
hs6_description: PropTypes.string,
|
|
19054
18876
|
});
|
|
19055
18877
|
|
|
19056
|
-
T['io.flow.internal.v0.models.harmonization_item_classification_upserted'] = PropTypes.exact({
|
|
19057
|
-
discriminator: PropTypes.oneOf(['harmonization_item_classification_upserted']).isRequired,
|
|
19058
|
-
event_id: PropTypes.string.isRequired,
|
|
19059
|
-
timestamp: PropTypes.string.isRequired,
|
|
19060
|
-
harmonization_item_classification: T['io.flow.internal.v0.models.harmonization_item_classification'].isRequired,
|
|
19061
|
-
});
|
|
19062
|
-
|
|
19063
|
-
T['io.flow.internal.v0.models.harmonization_item_classification_deleted'] = PropTypes.exact({
|
|
19064
|
-
discriminator: PropTypes.oneOf(['harmonization_item_classification_deleted']).isRequired,
|
|
19065
|
-
event_id: PropTypes.string.isRequired,
|
|
19066
|
-
timestamp: PropTypes.string.isRequired,
|
|
19067
|
-
harmonization_item_classification: T['io.flow.internal.v0.models.harmonization_item_classification'].isRequired,
|
|
19068
|
-
});
|
|
19069
|
-
|
|
19070
18878
|
T['io.flow.internal.v0.models.single_classification_action'] = PropTypes.exact({
|
|
19071
18879
|
discriminator: PropTypes.oneOf(['single']).isRequired,
|
|
19072
18880
|
organization: PropTypes.string.isRequired,
|
|
@@ -19087,142 +18895,6 @@ T['io.flow.internal.v0.unions.classification_action'] = PropTypes.oneOfType([
|
|
|
19087
18895
|
T['io.flow.internal.v0.models.bulk_classification_action'],
|
|
19088
18896
|
]);
|
|
19089
18897
|
|
|
19090
|
-
T['io.flow.internal.v0.models.browser_bundle_payment_method_form'] = PropTypes.exact({
|
|
19091
|
-
experience_key: PropTypes.string.isRequired,
|
|
19092
|
-
country: PropTypes.string.isRequired,
|
|
19093
|
-
});
|
|
19094
|
-
|
|
19095
|
-
T['io.flow.internal.v0.models.browser_bundle_country_picker_form'] = PropTypes.exact({
|
|
19096
|
-
country: PropTypes.string,
|
|
19097
|
-
ip: PropTypes.string,
|
|
19098
|
-
});
|
|
19099
|
-
|
|
19100
|
-
T['io.flow.internal.v0.models.browser_bundle_optin_form'] = PropTypes.exact({
|
|
19101
|
-
country: PropTypes.string.isRequired,
|
|
19102
|
-
});
|
|
19103
|
-
|
|
19104
|
-
T['io.flow.internal.v0.models.feature_geo_form'] = PropTypes.exact({
|
|
19105
|
-
country: PropTypes.string,
|
|
19106
|
-
currency: PropTypes.string,
|
|
19107
|
-
language: PropTypes.string,
|
|
19108
|
-
locale: PropTypes.string,
|
|
19109
|
-
region: PropTypes.string,
|
|
19110
|
-
});
|
|
19111
|
-
|
|
19112
|
-
T['io.flow.internal.v0.models.feature_context_form'] = PropTypes.exact({
|
|
19113
|
-
experience_key: PropTypes.string,
|
|
19114
|
-
geo: T['io.flow.internal.v0.models.feature_geo_form'],
|
|
19115
|
-
});
|
|
19116
|
-
|
|
19117
|
-
T['io.flow.internal.v0.models.feature_value_form'] = PropTypes.exact({
|
|
19118
|
-
feature_query: PropTypes.string.isRequired,
|
|
19119
|
-
context: T['io.flow.internal.v0.models.feature_context_form'].isRequired,
|
|
19120
|
-
});
|
|
19121
|
-
|
|
19122
|
-
T['io.flow.internal.v0.models.browser_bundle_feature_form'] = PropTypes.exact({
|
|
19123
|
-
keys: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
19124
|
-
context: T['io.flow.internal.v0.models.feature_context_form'].isRequired,
|
|
19125
|
-
});
|
|
19126
|
-
|
|
19127
|
-
T['io.flow.internal.v0.models.browser_bundle_form'] = PropTypes.exact({
|
|
19128
|
-
optin: T['io.flow.internal.v0.models.browser_bundle_optin_form'],
|
|
19129
|
-
country_picker: T['io.flow.internal.v0.models.browser_bundle_country_picker_form'],
|
|
19130
|
-
feature: T['io.flow.internal.v0.models.browser_bundle_feature_form'],
|
|
19131
|
-
payment_method: T['io.flow.internal.v0.models.browser_bundle_payment_method_form'],
|
|
19132
|
-
});
|
|
19133
|
-
|
|
19134
|
-
T['io.flow.internal.v0.enums.browser_bundle_error_code'] = PropTypes.oneOf(['generic_error', 'country_invalid']);
|
|
19135
|
-
|
|
19136
|
-
T['io.flow.internal.v0.models.browser_bundle_error'] = PropTypes.exact({
|
|
19137
|
-
code: T['io.flow.internal.v0.enums.browser_bundle_error_code'].isRequired,
|
|
19138
|
-
messages: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
19139
|
-
});
|
|
19140
|
-
|
|
19141
|
-
T['io.flow.internal.v0.models.browser_bundle_payment_method'] = PropTypes.exact({
|
|
19142
|
-
id: PropTypes.string.isRequired,
|
|
19143
|
-
});
|
|
19144
|
-
|
|
19145
|
-
T['io.flow.internal.v0.unions.optin_prompt_display'] = PropTypes.oneOfType([T['io.flow.internal.v0.models.optin_prompt_checkout_display']]);
|
|
19146
|
-
|
|
19147
|
-
T['io.flow.internal.v0.unions.localizable_content'] = PropTypes.oneOfType([
|
|
19148
|
-
T['io.flow.internal.v0.models.localizable_content_reference'],
|
|
19149
|
-
T['io.flow.internal.v0.models.localization'],
|
|
19150
|
-
]);
|
|
19151
|
-
|
|
19152
|
-
T['io.flow.internal.v0.enums.prompt_options'] = PropTypes.oneOf(['notice_only', 'require_consent', 'consent_by_default']);
|
|
19153
|
-
|
|
19154
|
-
T['io.flow.internal.v0.models.optin_prompt_form'] = PropTypes.exact({
|
|
19155
|
-
optin_attribute_key: PropTypes.string.isRequired,
|
|
19156
|
-
region: PropTypes.string.isRequired,
|
|
19157
|
-
options: PropTypes.arrayOf(T['io.flow.internal.v0.enums.prompt_options']).isRequired,
|
|
19158
|
-
content: T['io.flow.internal.v0.models.localization_form'].isRequired,
|
|
19159
|
-
position: PropTypes.number.isRequired,
|
|
19160
|
-
enforce_on: PropTypes.string,
|
|
19161
|
-
display: T['io.flow.internal.v0.unions.optin_prompt_display'],
|
|
19162
|
-
});
|
|
19163
|
-
|
|
19164
|
-
T['io.flow.internal.v0.models.optin_attribute'] = PropTypes.exact({
|
|
19165
|
-
name: PropTypes.string.isRequired,
|
|
19166
|
-
optin_attribute_key: PropTypes.string.isRequired,
|
|
19167
|
-
target: T['io.flow.internal.v0.enums.prompt_target'].isRequired,
|
|
19168
|
-
status: T['io.flow.internal.v0.enums.content_status'].isRequired,
|
|
19169
|
-
created_at: PropTypes.string.isRequired,
|
|
19170
|
-
updated_at: PropTypes.string.isRequired,
|
|
19171
|
-
});
|
|
19172
|
-
|
|
19173
|
-
T['io.flow.internal.v0.models.country_picker_country_data'] = PropTypes.exact({
|
|
19174
|
-
country: PropTypes.string.isRequired,
|
|
19175
|
-
delivery_window: PropTypes.arrayOf(T['io.flow.internal.v0.models.country_picker_delivery_window']).isRequired,
|
|
19176
|
-
});
|
|
19177
|
-
|
|
19178
|
-
T['io.flow.internal.v0.models.country_picker_experience_data'] = PropTypes.exact({
|
|
19179
|
-
experience_key: PropTypes.string.isRequired,
|
|
19180
|
-
payment_methods: PropTypes.arrayOf(T['io.flow.internal.v0.models.country_picker_payment_method']).isRequired,
|
|
19181
|
-
});
|
|
19182
|
-
|
|
19183
|
-
T['io.flow.internal.v0.models.country_picker_currency'] = PropTypes.exact({
|
|
19184
|
-
iso_4217_3: PropTypes.string.isRequired,
|
|
19185
|
-
name: PropTypes.string.isRequired,
|
|
19186
|
-
});
|
|
19187
|
-
|
|
19188
|
-
T['io.flow.internal.v0.models.country_picker_country'] = PropTypes.exact({
|
|
19189
|
-
iso_3166_2: PropTypes.string.isRequired,
|
|
19190
|
-
iso_3166_3: PropTypes.string.isRequired,
|
|
19191
|
-
name: PropTypes.string.isRequired,
|
|
19192
|
-
default_currency: PropTypes.string,
|
|
19193
|
-
});
|
|
19194
|
-
|
|
19195
|
-
T['io.flow.internal.v0.models.browser_bundle_payment_methods'] = PropTypes.exact({
|
|
19196
|
-
displayed: PropTypes.arrayOf(T['io.flow.internal.v0.models.browser_bundle_payment_method']),
|
|
19197
|
-
});
|
|
19198
|
-
|
|
19199
|
-
T['io.flow.internal.v0.models.optin_prompt'] = PropTypes.exact({
|
|
19200
|
-
id: PropTypes.string.isRequired,
|
|
19201
|
-
optin_attribute: T['io.flow.internal.v0.models.optin_attribute'].isRequired,
|
|
19202
|
-
region: PropTypes.string.isRequired,
|
|
19203
|
-
options: PropTypes.arrayOf(T['io.flow.internal.v0.enums.prompt_options']).isRequired,
|
|
19204
|
-
content: T['io.flow.internal.v0.unions.localizable_content'].isRequired,
|
|
19205
|
-
position: PropTypes.number.isRequired,
|
|
19206
|
-
enforce_on: PropTypes.string.isRequired,
|
|
19207
|
-
display: T['io.flow.internal.v0.unions.optin_prompt_display'],
|
|
19208
|
-
});
|
|
19209
|
-
|
|
19210
|
-
T['io.flow.internal.v0.models.optin_prompt_upserted'] = PropTypes.exact({
|
|
19211
|
-
discriminator: PropTypes.oneOf(['optin_prompt_upserted']).isRequired,
|
|
19212
|
-
event_id: PropTypes.string.isRequired,
|
|
19213
|
-
timestamp: PropTypes.string.isRequired,
|
|
19214
|
-
id: PropTypes.string.isRequired,
|
|
19215
|
-
organization: PropTypes.string.isRequired,
|
|
19216
|
-
optin_prompt: T['io.flow.internal.v0.models.optin_prompt'].isRequired,
|
|
19217
|
-
});
|
|
19218
|
-
|
|
19219
|
-
T['io.flow.internal.v0.models.country_picker_data'] = PropTypes.exact({
|
|
19220
|
-
countries: PropTypes.arrayOf(T['io.flow.internal.v0.models.country_picker_country']).isRequired,
|
|
19221
|
-
currencies: PropTypes.arrayOf(T['io.flow.internal.v0.models.country_picker_currency']).isRequired,
|
|
19222
|
-
experience_data: PropTypes.arrayOf(T['io.flow.internal.v0.models.country_picker_experience_data']),
|
|
19223
|
-
country_data: PropTypes.arrayOf(T['io.flow.internal.v0.models.country_picker_country_data']),
|
|
19224
|
-
});
|
|
19225
|
-
|
|
19226
18898
|
T['io.flow.brickftp.v0.enums.webhook_event_type'] = PropTypes.oneOf(['directory', 'file']);
|
|
19227
18899
|
T['io.flow.brickftp.v0.enums.webhook_event_interface'] = PropTypes.oneOf(['web', 'ftp', 'robot', 'jsapi', 'restapi', 'sftp', 'dav']);
|
|
19228
18900
|
T['io.flow.brickftp.v0.enums.webhook_event_action'] = PropTypes.oneOf(['create', 'read', 'update', 'destroy', 'move', 'copy']);
|
|
@@ -19264,13 +18936,6 @@ T['io.flow.internal.v0.models.feature_value_result'] = PropTypes.exact({
|
|
|
19264
18936
|
values: PropTypes.arrayOf(T['io.flow.internal.v0.unions.feature_value']).isRequired,
|
|
19265
18937
|
});
|
|
19266
18938
|
|
|
19267
|
-
T['io.flow.internal.v0.models.browser_bundle'] = PropTypes.exact({
|
|
19268
|
-
country_picker: T['io.flow.internal.v0.models.country_picker_data'].isRequired,
|
|
19269
|
-
optins: PropTypes.arrayOf(T['io.flow.internal.v0.models.optin_prompt']).isRequired,
|
|
19270
|
-
features: T['io.flow.internal.v0.models.feature_value_result'].isRequired,
|
|
19271
|
-
payment_methods: T['io.flow.internal.v0.models.browser_bundle_payment_methods'],
|
|
19272
|
-
});
|
|
19273
|
-
|
|
19274
18939
|
T['io.flow.internal.v0.models.bitpay_authentication_form'] = PropTypes.exact({
|
|
19275
18940
|
api_token: PropTypes.string.isRequired,
|
|
19276
18941
|
public_key: PropTypes.string.isRequired,
|
|
@@ -19552,7 +19217,7 @@ T['io.flow.billing.v0.enums.transaction_source'] = PropTypes.oneOf([
|
|
|
19552
19217
|
'virtual_card_refund',
|
|
19553
19218
|
'failed_payout',
|
|
19554
19219
|
'tax_refund',
|
|
19555
|
-
'
|
|
19220
|
+
'non_l4l_tax_duty_fx',
|
|
19556
19221
|
'ge_revenue_share',
|
|
19557
19222
|
'tax_duty_delta',
|
|
19558
19223
|
]);
|
|
@@ -19802,7 +19467,6 @@ T['io.flow.internal.v0.models.restriction_rule_form'] = PropTypes.exact({
|
|
|
19802
19467
|
negative_keywords: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
19803
19468
|
value_threshold_usd: PropTypes.number,
|
|
19804
19469
|
auto_review_criteria: PropTypes.arrayOf(T['io.flow.internal.v0.models.auto_review_criteria']),
|
|
19805
|
-
effects: PropTypes.arrayOf(PropTypes.string),
|
|
19806
19470
|
});
|
|
19807
19471
|
|
|
19808
19472
|
T['io.flow.internal.v0.models.restriction_rule'] = PropTypes.exact({
|
|
@@ -19815,7 +19479,6 @@ T['io.flow.internal.v0.models.restriction_rule'] = PropTypes.exact({
|
|
|
19815
19479
|
negative_keywords: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
19816
19480
|
value_threshold_usd: PropTypes.number,
|
|
19817
19481
|
auto_review_criteria: PropTypes.arrayOf(T['io.flow.internal.v0.models.auto_review_criteria']),
|
|
19818
|
-
effects: PropTypes.arrayOf(PropTypes.string),
|
|
19819
19482
|
});
|
|
19820
19483
|
|
|
19821
19484
|
T['io.flow.internal.v0.models.restriction_rule_upserted'] = PropTypes.exact({
|
|
@@ -19843,6 +19506,13 @@ T['io.flow.customer.v0.models.customer_put_form'] = PropTypes.exact({
|
|
|
19843
19506
|
phone: PropTypes.string,
|
|
19844
19507
|
});
|
|
19845
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
|
+
|
|
19846
19516
|
T['io.flow.internal.v0.models.search_customer_summary'] = PropTypes.exact({
|
|
19847
19517
|
name: T['io.flow.common.v0.models.name'].isRequired,
|
|
19848
19518
|
email: PropTypes.string,
|
|
@@ -19938,13 +19608,6 @@ T['io.flow.internal.v0.models.order_note'] = PropTypes.exact({
|
|
|
19938
19608
|
updated_at: PropTypes.string.isRequired,
|
|
19939
19609
|
});
|
|
19940
19610
|
|
|
19941
|
-
T['io.flow.customer.v0.models.customer_form'] = PropTypes.exact({
|
|
19942
|
-
number: PropTypes.string.isRequired,
|
|
19943
|
-
email: PropTypes.string,
|
|
19944
|
-
name: T['io.flow.common.v0.models.name'],
|
|
19945
|
-
phone: PropTypes.string,
|
|
19946
|
-
});
|
|
19947
|
-
|
|
19948
19611
|
T['io.flow.customer.v0.models.customer'] = PropTypes.exact({
|
|
19949
19612
|
id: PropTypes.string.isRequired,
|
|
19950
19613
|
number: PropTypes.string.isRequired,
|
|
@@ -19978,19 +19641,6 @@ T['io.flow.customer.v0.models.customer_address_book_form'] = PropTypes.exact({
|
|
|
19978
19641
|
contacts: PropTypes.arrayOf(T['io.flow.customer.v0.models.customer_address_book_contact_form']).isRequired,
|
|
19979
19642
|
});
|
|
19980
19643
|
|
|
19981
|
-
T['io.flow.internal.v0.models.checkout_order_number_form'] = PropTypes.exact({
|
|
19982
|
-
discriminator: PropTypes.oneOf(['order_number']).isRequired,
|
|
19983
|
-
organization: PropTypes.string.isRequired,
|
|
19984
|
-
order_number: PropTypes.string.isRequired,
|
|
19985
|
-
customer: T['io.flow.customer.v0.models.customer_form'],
|
|
19986
|
-
address_book: T['io.flow.customer.v0.models.customer_address_book_form'],
|
|
19987
|
-
payment_sources: PropTypes.arrayOf(T['io.flow.payment.v0.unions.payment_source_form']),
|
|
19988
|
-
urls: T['io.flow.checkout.v0.models.checkout_urls_form'],
|
|
19989
|
-
identifiers: PropTypes.arrayOf(T['io.flow.experience.v0.models.order_submission_identifier_form']),
|
|
19990
|
-
feature_keys: PropTypes.arrayOf(PropTypes.string),
|
|
19991
|
-
order_parameters: T['io.flow.internal.v0.models.order_parameters'],
|
|
19992
|
-
});
|
|
19993
|
-
|
|
19994
19644
|
T['io.flow.customer.v0.models.customer_address_book_contact'] = PropTypes.exact({
|
|
19995
19645
|
id: PropTypes.string.isRequired,
|
|
19996
19646
|
address: T['io.flow.common.v0.models.address'].isRequired,
|
|
@@ -20728,6 +20378,12 @@ T['io.flow.internal.v0.models.search_authorization'] = PropTypes.exact({
|
|
|
20728
20378
|
|
|
20729
20379
|
T['io.flow.internal.v0.unions.payment_summary_details'] = PropTypes.oneOfType([T['io.flow.internal.v0.models.search_authorization']]);
|
|
20730
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
|
+
|
|
20731
20387
|
T['io.flow.internal.v0.models.authorization_bundle'] = PropTypes.exact({
|
|
20732
20388
|
id: PropTypes.string.isRequired,
|
|
20733
20389
|
organization_id: PropTypes.string.isRequired,
|
|
@@ -22311,40 +21967,6 @@ T['io.flow.internal.v0.models.rate_with_fees'] = PropTypes.exact({
|
|
|
22311
21967
|
fees: PropTypes.arrayOf(T['io.flow.ratecard.v0.unions.ratecard_fee']).isRequired,
|
|
22312
21968
|
});
|
|
22313
21969
|
|
|
22314
|
-
T['io.flow.internal.v0.models.ratecard_lane_aggregate'] = PropTypes.exact({
|
|
22315
|
-
id: PropTypes.string.isRequired,
|
|
22316
|
-
organization_id: PropTypes.string.isRequired,
|
|
22317
|
-
origin: T['io.flow.common.v0.models.zone'].isRequired,
|
|
22318
|
-
destination: T['io.flow.common.v0.models.zone'].isRequired,
|
|
22319
|
-
currency: PropTypes.string.isRequired,
|
|
22320
|
-
delivered_duty: T['io.flow.common.v0.enums.delivered_duty'].isRequired,
|
|
22321
|
-
shipment_window: T['io.flow.ratecard.v0.models.shipment_window'].isRequired,
|
|
22322
|
-
dim_factor: PropTypes.number.isRequired,
|
|
22323
|
-
service: T['io.flow.ratecard.v0.models.ratecard_service_summary'].isRequired,
|
|
22324
|
-
rounding: T['io.flow.common.v0.models.rounding'].isRequired,
|
|
22325
|
-
weight_unit: T['io.flow.common.v0.enums.unit_of_measurement'].isRequired,
|
|
22326
|
-
distance_unit: T['io.flow.common.v0.enums.unit_of_measurement'].isRequired,
|
|
22327
|
-
rates_with_fees: PropTypes.arrayOf(T['io.flow.internal.v0.models.rate_with_fees']).isRequired,
|
|
22328
|
-
ratecard: T['io.flow.ratecard.v0.models.ratecard_reference'].isRequired,
|
|
22329
|
-
ratecard_owner: T['io.flow.fulfillment.v0.enums.ratecard_owner'].isRequired,
|
|
22330
|
-
});
|
|
22331
|
-
|
|
22332
|
-
T['io.flow.internal.v0.models.ratecard_lane_aggregate_upserted'] = PropTypes.exact({
|
|
22333
|
-
discriminator: PropTypes.oneOf(['ratecard_lane_aggregate_upserted']).isRequired,
|
|
22334
|
-
event_id: PropTypes.string.isRequired,
|
|
22335
|
-
timestamp: PropTypes.string.isRequired,
|
|
22336
|
-
organization: PropTypes.string.isRequired,
|
|
22337
|
-
ratecard_aggregate: T['io.flow.internal.v0.models.ratecard_lane_aggregate'].isRequired,
|
|
22338
|
-
});
|
|
22339
|
-
|
|
22340
|
-
T['io.flow.internal.v0.models.ratecard_lane_aggregate_deleted'] = PropTypes.exact({
|
|
22341
|
-
discriminator: PropTypes.oneOf(['ratecard_lane_aggregate_deleted']).isRequired,
|
|
22342
|
-
event_id: PropTypes.string.isRequired,
|
|
22343
|
-
timestamp: PropTypes.string.isRequired,
|
|
22344
|
-
organization: PropTypes.string.isRequired,
|
|
22345
|
-
ratecard_aggregate: T['io.flow.internal.v0.models.ratecard_lane_aggregate'].isRequired,
|
|
22346
|
-
});
|
|
22347
|
-
|
|
22348
21970
|
T['io.flow.ratecard.v0.models.additional_handling_service_fee'] = PropTypes.exact({
|
|
22349
21971
|
discriminator: PropTypes.oneOf(['additional_handling_service_fee']).isRequired,
|
|
22350
21972
|
length_girth_threshold: PropTypes.number,
|
|
@@ -22607,6 +22229,42 @@ T['io.flow.experience.v0.models.order_replacement_form'] = PropTypes.exact({
|
|
|
22607
22229
|
items: PropTypes.arrayOf(T['io.flow.common.v0.models.line_item_form']),
|
|
22608
22230
|
});
|
|
22609
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
|
+
|
|
22610
22268
|
T['io.flow.experience.v0.models.order_estimate_form'] = PropTypes.exact({
|
|
22611
22269
|
items: PropTypes.arrayOf(T['io.flow.common.v0.models.line_item_form']).isRequired,
|
|
22612
22270
|
destination: T['io.flow.experience.v0.models.order_address'],
|
|
@@ -22832,6 +22490,7 @@ T['io.flow.payment.v0.models.online_authorization'] = PropTypes.exact({
|
|
|
22832
22490
|
processor: T['io.flow.payment.v0.unions.expandable_payment_processor'],
|
|
22833
22491
|
confirmation_details: T['io.flow.payment.v0.unions.confirmation_details'],
|
|
22834
22492
|
authorized_at: PropTypes.string,
|
|
22493
|
+
authorization_request_id: PropTypes.string,
|
|
22835
22494
|
});
|
|
22836
22495
|
|
|
22837
22496
|
T['io.flow.payment.v0.models.card_authorization'] = PropTypes.exact({
|
|
@@ -22858,6 +22517,7 @@ T['io.flow.payment.v0.models.card_authorization'] = PropTypes.exact({
|
|
|
22858
22517
|
processor: T['io.flow.payment.v0.unions.expandable_payment_processor'],
|
|
22859
22518
|
stored_method_usage_step: T['io.flow.payment.v0.enums.stored_method_usage_step'],
|
|
22860
22519
|
authorized_at: PropTypes.string,
|
|
22520
|
+
authorization_request_id: PropTypes.string,
|
|
22861
22521
|
});
|
|
22862
22522
|
|
|
22863
22523
|
T['io.flow.payment.v0.unions.authorization'] = PropTypes.oneOfType([
|
|
@@ -22988,6 +22648,27 @@ T['io.flow.merchant.onboarding.v0.models.shopify_merchant_application'] = PropTy
|
|
|
22988
22648
|
|
|
22989
22649
|
T['io.flow.merchant.onboarding.v0.unions.merchant_application'] = PropTypes.oneOfType([T['io.flow.merchant.onboarding.v0.models.shopify_merchant_application']]);
|
|
22990
22650
|
|
|
22651
|
+
T['io.flow.internal.v0.models.tax_duty_delta_metadata_expected_processing'] = PropTypes.exact({
|
|
22652
|
+
tax: T['io.flow.common.v0.models.money'].isRequired,
|
|
22653
|
+
duty: T['io.flow.common.v0.models.money'].isRequired,
|
|
22654
|
+
total: T['io.flow.common.v0.models.money'].isRequired,
|
|
22655
|
+
});
|
|
22656
|
+
|
|
22657
|
+
T['io.flow.internal.v0.models.tax_duty_delta_metadata_expected'] = PropTypes.exact({
|
|
22658
|
+
processing: T['io.flow.internal.v0.models.tax_duty_delta_metadata_expected_processing'].isRequired,
|
|
22659
|
+
});
|
|
22660
|
+
|
|
22661
|
+
T['io.flow.internal.v0.models.tax_duty_delta_metadata_actual_processing'] = PropTypes.exact({
|
|
22662
|
+
capture: T['io.flow.common.v0.models.money'].isRequired,
|
|
22663
|
+
fees: T['io.flow.common.v0.models.money'].isRequired,
|
|
22664
|
+
transfer: T['io.flow.common.v0.models.money'].isRequired,
|
|
22665
|
+
total: T['io.flow.common.v0.models.money'].isRequired,
|
|
22666
|
+
});
|
|
22667
|
+
|
|
22668
|
+
T['io.flow.internal.v0.models.tax_duty_delta_metadata_actual'] = PropTypes.exact({
|
|
22669
|
+
processing: T['io.flow.internal.v0.models.tax_duty_delta_metadata_actual_processing'].isRequired,
|
|
22670
|
+
});
|
|
22671
|
+
|
|
22991
22672
|
T['io.flow.internal.v0.models.shopify_promotion_attribute_value'] = PropTypes.exact({
|
|
22992
22673
|
name: PropTypes.string.isRequired,
|
|
22993
22674
|
discount: T['io.flow.common.v0.models.money'].isRequired,
|
|
@@ -23191,110 +22872,6 @@ T['io.flow.internal.v0.models.dispute_record'] = PropTypes.exact({
|
|
|
23191
22872
|
chargeback_amount: T['io.flow.common.v0.models.money_with_base'].isRequired,
|
|
23192
22873
|
});
|
|
23193
22874
|
|
|
23194
|
-
T['io.flow.experience.v0.models.order_form'] = PropTypes.exact({
|
|
23195
|
-
customer: T['io.flow.common.v0.models.order_customer_form'],
|
|
23196
|
-
items: PropTypes.arrayOf(T['io.flow.common.v0.models.line_item_form']).isRequired,
|
|
23197
|
-
delivered_duty: T['io.flow.common.v0.enums.delivered_duty'],
|
|
23198
|
-
number: PropTypes.string,
|
|
23199
|
-
destination: T['io.flow.experience.v0.models.order_address'],
|
|
23200
|
-
discount: T['io.flow.common.v0.models.money'],
|
|
23201
|
-
discounts: T['io.flow.common.v0.models.discounts_form'],
|
|
23202
|
-
attributes: PropTypes.objectOf(PropTypes.string),
|
|
23203
|
-
authorization_keys: PropTypes.arrayOf(PropTypes.string),
|
|
23204
|
-
options: T['io.flow.experience.v0.models.order_options'],
|
|
23205
|
-
device_details: T['io.flow.payment.v0.unions.device_details'],
|
|
23206
|
-
});
|
|
23207
|
-
|
|
23208
|
-
T['io.flow.checkout.v0.models.checkout_token_order_form'] = PropTypes.exact({
|
|
23209
|
-
discriminator: PropTypes.oneOf(['checkout_token_order_form']).isRequired,
|
|
23210
|
-
order_form: T['io.flow.experience.v0.models.order_form'].isRequired,
|
|
23211
|
-
customer: T['io.flow.customer.v0.models.customer_form'],
|
|
23212
|
-
address_book: T['io.flow.customer.v0.models.customer_address_book_form'],
|
|
23213
|
-
payment_sources: PropTypes.arrayOf(T['io.flow.payment.v0.unions.payment_source_form']),
|
|
23214
|
-
session_id: PropTypes.string.isRequired,
|
|
23215
|
-
urls: T['io.flow.checkout.v0.models.checkout_urls_form'],
|
|
23216
|
-
identifiers: PropTypes.arrayOf(T['io.flow.experience.v0.models.order_submission_identifier_form']),
|
|
23217
|
-
});
|
|
23218
|
-
|
|
23219
|
-
T['io.flow.checkout.v0.unions.checkout_token_form'] = PropTypes.oneOfType([
|
|
23220
|
-
T['io.flow.checkout.v0.models.checkout_token_order_form'],
|
|
23221
|
-
T['io.flow.checkout.v0.models.checkout_token_reference_form'],
|
|
23222
|
-
]);
|
|
23223
|
-
|
|
23224
|
-
T['io.flow.experience.v0.models.order_with_discounts_form'] = PropTypes.exact({
|
|
23225
|
-
order: T['io.flow.experience.v0.models.order_form'].isRequired,
|
|
23226
|
-
discounts: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
23227
|
-
});
|
|
23228
|
-
|
|
23229
|
-
T['io.flow.internal.v0.models.checkout_order_form'] = PropTypes.exact({
|
|
23230
|
-
discriminator: PropTypes.oneOf(['order']).isRequired,
|
|
23231
|
-
organization: PropTypes.string.isRequired,
|
|
23232
|
-
order: T['io.flow.experience.v0.models.order_form'].isRequired,
|
|
23233
|
-
customer: T['io.flow.customer.v0.models.customer_form'],
|
|
23234
|
-
address_book: T['io.flow.customer.v0.models.customer_address_book_form'],
|
|
23235
|
-
payment_sources: PropTypes.arrayOf(T['io.flow.payment.v0.unions.payment_source_form']),
|
|
23236
|
-
urls: T['io.flow.checkout.v0.models.checkout_urls_form'],
|
|
23237
|
-
identifiers: PropTypes.arrayOf(T['io.flow.experience.v0.models.order_submission_identifier_form']),
|
|
23238
|
-
feature_keys: PropTypes.arrayOf(PropTypes.string),
|
|
23239
|
-
order_parameters: T['io.flow.internal.v0.models.order_parameters'],
|
|
23240
|
-
});
|
|
23241
|
-
|
|
23242
|
-
T['io.flow.internal.v0.unions.checkout_form'] = PropTypes.oneOfType([
|
|
23243
|
-
T['io.flow.internal.v0.models.checkout_order_form'],
|
|
23244
|
-
T['io.flow.internal.v0.models.checkout_order_number_form'],
|
|
23245
|
-
]);
|
|
23246
|
-
|
|
23247
|
-
T['io.flow.experience.v0.models.order_put_form'] = PropTypes.exact({
|
|
23248
|
-
order_type: T['io.flow.experience.v0.enums.order_type'],
|
|
23249
|
-
items: PropTypes.arrayOf(T['io.flow.common.v0.models.line_item_form']).isRequired,
|
|
23250
|
-
customer: T['io.flow.common.v0.models.order_customer_form'],
|
|
23251
|
-
delivered_duty: T['io.flow.common.v0.enums.delivered_duty'],
|
|
23252
|
-
selections: PropTypes.arrayOf(PropTypes.string),
|
|
23253
|
-
destination: T['io.flow.experience.v0.models.order_address'],
|
|
23254
|
-
discount: T['io.flow.common.v0.models.money'],
|
|
23255
|
-
discounts: T['io.flow.common.v0.models.discounts_form'],
|
|
23256
|
-
attributes: PropTypes.objectOf(PropTypes.string),
|
|
23257
|
-
authorization_keys: PropTypes.arrayOf(PropTypes.string),
|
|
23258
|
-
options: T['io.flow.experience.v0.models.order_options'],
|
|
23259
|
-
device_details: T['io.flow.payment.v0.unions.device_details'],
|
|
23260
|
-
});
|
|
23261
|
-
|
|
23262
|
-
T['io.flow.internal.v0.models.invalid_checkout_data'] = PropTypes.exact({
|
|
23263
|
-
order: T['io.flow.experience.v0.models.order_put_form'].isRequired,
|
|
23264
|
-
});
|
|
23265
|
-
|
|
23266
|
-
T['io.flow.internal.v0.models.checkout_reference_form'] = PropTypes.exact({
|
|
23267
|
-
order_number: PropTypes.string.isRequired,
|
|
23268
|
-
order_form: T['io.flow.experience.v0.models.order_put_form'].isRequired,
|
|
23269
|
-
order_geo: T['io.flow.experience.v0.models.order_geo'].isRequired,
|
|
23270
|
-
session_id: PropTypes.string.isRequired,
|
|
23271
|
-
urls: T['io.flow.checkout.v0.models.checkout_urls_form'],
|
|
23272
|
-
identifiers: PropTypes.arrayOf(T['io.flow.experience.v0.models.order_submission_identifier_form']),
|
|
23273
|
-
});
|
|
23274
|
-
|
|
23275
|
-
T['io.flow.internal.v0.models.expected_order_summary'] = PropTypes.exact({
|
|
23276
|
-
total: T['io.flow.common.v0.models.money'],
|
|
23277
|
-
});
|
|
23278
|
-
|
|
23279
|
-
T['io.flow.internal.v0.models.checkout_submit_order_form'] = PropTypes.exact({
|
|
23280
|
-
discriminator: PropTypes.oneOf(['checkout_submit_order_form']).isRequired,
|
|
23281
|
-
authorization_form: T['io.flow.payment.v0.unions.authorization_form'],
|
|
23282
|
-
expected_order_summary: T['io.flow.internal.v0.models.expected_order_summary'],
|
|
23283
|
-
});
|
|
23284
|
-
|
|
23285
|
-
T['io.flow.internal.v0.unions.checkout_submit_order_forms'] = PropTypes.oneOfType([T['io.flow.internal.v0.models.checkout_submit_order_form']]);
|
|
23286
|
-
|
|
23287
|
-
T['io.flow.internal.v0.models.checkout_submission_form'] = PropTypes.exact({
|
|
23288
|
-
authorization_form: T['io.flow.payment.v0.unions.authorization_form'],
|
|
23289
|
-
expected_order_summary: T['io.flow.internal.v0.models.expected_order_summary'],
|
|
23290
|
-
feature_keys: PropTypes.arrayOf(PropTypes.string),
|
|
23291
|
-
});
|
|
23292
|
-
|
|
23293
|
-
T['io.flow.internal.v0.models.checkout_finalize_order_form'] = PropTypes.exact({
|
|
23294
|
-
expected_order_summary: T['io.flow.internal.v0.models.expected_order_summary'].isRequired,
|
|
23295
|
-
order_put_form: T['io.flow.experience.v0.models.order_put_form'].isRequired,
|
|
23296
|
-
});
|
|
23297
|
-
|
|
23298
22875
|
T['io.flow.internal.v0.models.chargeback'] = PropTypes.exact({
|
|
23299
22876
|
id: PropTypes.string.isRequired,
|
|
23300
22877
|
key: PropTypes.string.isRequired,
|
|
@@ -23426,19 +23003,21 @@ T['io.flow.label.v0.models.shipping_label_hop_summary'] = PropTypes.exact({
|
|
|
23426
23003
|
itemized_estimate: T['io.flow.label.v0.models.shipping_label_hop_cost_itemized_estimate'],
|
|
23427
23004
|
});
|
|
23428
23005
|
|
|
23429
|
-
T['io.flow.
|
|
23006
|
+
T['io.flow.label.v0.models.estimate'] = PropTypes.exact({
|
|
23430
23007
|
id: PropTypes.string.isRequired,
|
|
23431
23008
|
organization_id: PropTypes.string.isRequired,
|
|
23432
23009
|
label_id: PropTypes.string.isRequired,
|
|
23433
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'],
|
|
23434
23013
|
});
|
|
23435
23014
|
|
|
23436
|
-
T['io.flow.internal.v0.models.
|
|
23437
|
-
discriminator: PropTypes.oneOf(['
|
|
23015
|
+
T['io.flow.internal.v0.models.shipping_estimate_upserted'] = PropTypes.exact({
|
|
23016
|
+
discriminator: PropTypes.oneOf(['shipping_estimate_upserted']).isRequired,
|
|
23438
23017
|
event_id: PropTypes.string.isRequired,
|
|
23439
23018
|
timestamp: PropTypes.string.isRequired,
|
|
23440
23019
|
organization: PropTypes.string.isRequired,
|
|
23441
|
-
|
|
23020
|
+
estimate: T['io.flow.label.v0.models.estimate'].isRequired,
|
|
23442
23021
|
});
|
|
23443
23022
|
|
|
23444
23023
|
T['io.flow.internal.v0.models.debug_label'] = PropTypes.exact({
|
|
@@ -23571,17 +23150,6 @@ T['io.flow.session.v0.models.organization_session_authorization'] = PropTypes.ex
|
|
|
23571
23150
|
|
|
23572
23151
|
T['io.flow.session.v0.unions.session_authorization'] = PropTypes.oneOfType([T['io.flow.session.v0.models.organization_session_authorization']]);
|
|
23573
23152
|
|
|
23574
|
-
T['io.flow.checkout.v0.models.checkout_token'] = PropTypes.exact({
|
|
23575
|
-
id: PropTypes.string.isRequired,
|
|
23576
|
-
organization: T['io.flow.common.v0.models.organization_reference'].isRequired,
|
|
23577
|
-
checkout: T['io.flow.common.v0.models.checkout_reference'].isRequired,
|
|
23578
|
-
order: T['io.flow.experience.v0.models.order_number_reference'].isRequired,
|
|
23579
|
-
urls: T['io.flow.checkout.v0.models.checkout_urls'].isRequired,
|
|
23580
|
-
expires_at: PropTypes.string.isRequired,
|
|
23581
|
-
session: T['io.flow.common.v0.models.session_reference'].isRequired,
|
|
23582
|
-
customer: T['io.flow.common.v0.models.customer_reference'],
|
|
23583
|
-
});
|
|
23584
|
-
|
|
23585
23153
|
T['io.flow.token.v0.models.organization_token_v2_reference'] = PropTypes.exact({
|
|
23586
23154
|
discriminator: PropTypes.oneOf(['organization_token_v2_reference']).isRequired,
|
|
23587
23155
|
id: PropTypes.string.isRequired,
|
|
@@ -24856,15 +24424,6 @@ T['io.flow.fulfillment.v0.models.quote'] = PropTypes.exact({
|
|
|
24856
24424
|
delivered_duties: PropTypes.arrayOf(T['io.flow.common.v0.enums.delivered_duty']).isRequired,
|
|
24857
24425
|
});
|
|
24858
24426
|
|
|
24859
|
-
T['io.flow.internal.v0.models.pregenerated_quote'] = PropTypes.exact({
|
|
24860
|
-
id: PropTypes.string.isRequired,
|
|
24861
|
-
experience: T['io.flow.internal.v0.models.fulfillment_internal_experience_reference'].isRequired,
|
|
24862
|
-
destination_country: PropTypes.string.isRequired,
|
|
24863
|
-
item: T['io.flow.common.v0.models.item_reference'].isRequired,
|
|
24864
|
-
quote: T['io.flow.fulfillment.v0.models.quote'],
|
|
24865
|
-
errors: PropTypes.arrayOf(PropTypes.string),
|
|
24866
|
-
});
|
|
24867
|
-
|
|
24868
24427
|
T['io.flow.catalog.v0.unions.localized_price'] = PropTypes.oneOfType([
|
|
24869
24428
|
T['io.flow.catalog.v0.models.localized_item_price'],
|
|
24870
24429
|
T['io.flow.catalog.v0.models.localized_item_vat'],
|
|
@@ -25109,14 +24668,117 @@ T['io.flow.item.v0.models.local_item_pricing'] = PropTypes.exact({
|
|
|
25109
24668
|
price_attributes: PropTypes.objectOf(T['io.flow.item.v0.models.local_item_attribute_pricing']),
|
|
25110
24669
|
});
|
|
25111
24670
|
|
|
25112
|
-
T['io.flow.item.v0.models.local_item'] = PropTypes.exact({
|
|
25113
|
-
id: PropTypes.string.isRequired,
|
|
25114
|
-
experience: T['io.flow.common.v0.models.experience_summary'].isRequired,
|
|
25115
|
-
center: T['io.flow.fulfillment.v0.models.center_summary'],
|
|
25116
|
-
item: T['io.flow.common.v0.models.catalog_item_reference'].isRequired,
|
|
25117
|
-
pricing: T['io.flow.item.v0.models.local_item_pricing'].isRequired,
|
|
25118
|
-
status: T['io.flow.catalog.v0.enums.subcatalog_item_status'].isRequired,
|
|
25119
|
-
attributes: PropTypes.objectOf(PropTypes.string),
|
|
24671
|
+
T['io.flow.item.v0.models.local_item'] = PropTypes.exact({
|
|
24672
|
+
id: PropTypes.string.isRequired,
|
|
24673
|
+
experience: T['io.flow.common.v0.models.experience_summary'].isRequired,
|
|
24674
|
+
center: T['io.flow.fulfillment.v0.models.center_summary'],
|
|
24675
|
+
item: T['io.flow.common.v0.models.catalog_item_reference'].isRequired,
|
|
24676
|
+
pricing: T['io.flow.item.v0.models.local_item_pricing'].isRequired,
|
|
24677
|
+
status: T['io.flow.catalog.v0.enums.subcatalog_item_status'].isRequired,
|
|
24678
|
+
attributes: PropTypes.objectOf(PropTypes.string),
|
|
24679
|
+
});
|
|
24680
|
+
|
|
24681
|
+
T['io.flow.catalog.v0.models.local'] = PropTypes.exact({
|
|
24682
|
+
experience: T['io.flow.common.v0.models.experience_summary'].isRequired,
|
|
24683
|
+
prices: PropTypes.arrayOf(T['io.flow.catalog.v0.unions.localized_price']).isRequired,
|
|
24684
|
+
rates: PropTypes.arrayOf(T['io.flow.currency.v0.models.rate']).isRequired,
|
|
24685
|
+
spot_rates: PropTypes.arrayOf(PropTypes.object).isRequired,
|
|
24686
|
+
status: T['io.flow.catalog.v0.enums.subcatalog_item_status'].isRequired,
|
|
24687
|
+
attributes: PropTypes.objectOf(PropTypes.string),
|
|
24688
|
+
price_attributes: PropTypes.objectOf(T['io.flow.common.v0.models.price_with_base']),
|
|
24689
|
+
});
|
|
24690
|
+
|
|
24691
|
+
T['io.flow.catalog.v0.models.item'] = PropTypes.exact({
|
|
24692
|
+
id: PropTypes.string.isRequired,
|
|
24693
|
+
number: PropTypes.string.isRequired,
|
|
24694
|
+
locale: PropTypes.string.isRequired,
|
|
24695
|
+
name: PropTypes.string.isRequired,
|
|
24696
|
+
price: T['io.flow.common.v0.models.price'].isRequired,
|
|
24697
|
+
categories: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
24698
|
+
description: PropTypes.string,
|
|
24699
|
+
attributes: PropTypes.objectOf(PropTypes.string).isRequired,
|
|
24700
|
+
dimensions: T['io.flow.common.v0.models.dimensions'].isRequired,
|
|
24701
|
+
images: PropTypes.arrayOf(T['io.flow.catalog.v0.models.image']).isRequired,
|
|
24702
|
+
local: T['io.flow.catalog.v0.models.local'],
|
|
24703
|
+
created_at: PropTypes.string,
|
|
24704
|
+
updated_at: PropTypes.string,
|
|
24705
|
+
deleted_at: PropTypes.string,
|
|
24706
|
+
});
|
|
24707
|
+
|
|
24708
|
+
T['io.flow.catalog.v0.models.subcatalog_item'] = PropTypes.exact({
|
|
24709
|
+
id: PropTypes.string.isRequired,
|
|
24710
|
+
item: T['io.flow.catalog.v0.models.item'].isRequired,
|
|
24711
|
+
status: T['io.flow.catalog.v0.enums.subcatalog_item_status'].isRequired,
|
|
24712
|
+
});
|
|
24713
|
+
|
|
24714
|
+
T['io.flow.catalog.v0.models.subcatalog_item_version'] = PropTypes.exact({
|
|
24715
|
+
id: PropTypes.string.isRequired,
|
|
24716
|
+
timestamp: PropTypes.string.isRequired,
|
|
24717
|
+
type: T['io.flow.common.v0.enums.change_type'].isRequired,
|
|
24718
|
+
subcatalog_item: T['io.flow.catalog.v0.models.subcatalog_item'].isRequired,
|
|
24719
|
+
});
|
|
24720
|
+
|
|
24721
|
+
T['io.flow.catalog.v0.models.item_version'] = PropTypes.exact({
|
|
24722
|
+
id: PropTypes.string.isRequired,
|
|
24723
|
+
timestamp: PropTypes.string.isRequired,
|
|
24724
|
+
type: T['io.flow.common.v0.enums.change_type'].isRequired,
|
|
24725
|
+
item: T['io.flow.catalog.v0.models.item'].isRequired,
|
|
24726
|
+
});
|
|
24727
|
+
|
|
24728
|
+
T['io.flow.internal.v0.models.item_query_response'] = PropTypes.exact({
|
|
24729
|
+
q: PropTypes.string.isRequired,
|
|
24730
|
+
items: PropTypes.arrayOf(T['io.flow.catalog.v0.models.item']).isRequired,
|
|
24731
|
+
});
|
|
24732
|
+
|
|
24733
|
+
T['io.flow.internal.v0.models.item_filter_value_response'] = PropTypes.exact({
|
|
24734
|
+
value: PropTypes.string.isRequired,
|
|
24735
|
+
items: PropTypes.arrayOf(T['io.flow.catalog.v0.models.item']).isRequired,
|
|
24736
|
+
});
|
|
24737
|
+
|
|
24738
|
+
T['io.flow.internal.v0.models.item_filter_response'] = PropTypes.exact({
|
|
24739
|
+
filter: PropTypes.string.isRequired,
|
|
24740
|
+
responses: PropTypes.arrayOf(T['io.flow.internal.v0.models.item_filter_value_response']).isRequired,
|
|
24741
|
+
});
|
|
24742
|
+
|
|
24743
|
+
T['io.flow.experience.v0.models.checkout_item_content'] = PropTypes.exact({
|
|
24744
|
+
item: T['io.flow.catalog.v0.models.item'].isRequired,
|
|
24745
|
+
name: PropTypes.string.isRequired,
|
|
24746
|
+
description: PropTypes.string,
|
|
24747
|
+
attributes: PropTypes.arrayOf(T['io.flow.experience.v0.models.checkout_item_content_attribute']).isRequired,
|
|
24748
|
+
image: T['io.flow.catalog.v0.models.image'],
|
|
24749
|
+
});
|
|
24750
|
+
|
|
24751
|
+
T['io.flow.internal.v0.models.checkout_content'] = PropTypes.exact({
|
|
24752
|
+
global: T['io.flow.internal.v0.models.checkout_content_summary'],
|
|
24753
|
+
items: PropTypes.arrayOf(T['io.flow.experience.v0.models.checkout_item_content']).isRequired,
|
|
24754
|
+
});
|
|
24755
|
+
|
|
24756
|
+
T['io.flow.experience.v0.models.localized_line_item'] = PropTypes.exact({
|
|
24757
|
+
id: PropTypes.string,
|
|
24758
|
+
number: PropTypes.string.isRequired,
|
|
24759
|
+
name: PropTypes.string.isRequired,
|
|
24760
|
+
quantity: PropTypes.number.isRequired,
|
|
24761
|
+
image: T['io.flow.experience.v0.models.order_summary_image'],
|
|
24762
|
+
center: PropTypes.string,
|
|
24763
|
+
price: T['io.flow.common.v0.models.money'],
|
|
24764
|
+
discount: T['io.flow.experience.v0.models.localized_line_item_discount'],
|
|
24765
|
+
discounts: PropTypes.arrayOf(T['io.flow.experience.v0.models.localized_line_item_discount']),
|
|
24766
|
+
attributes: PropTypes.objectOf(PropTypes.string),
|
|
24767
|
+
local: T['io.flow.catalog.v0.models.local'].isRequired,
|
|
24768
|
+
shipment_estimate: T['io.flow.common.v0.models.datetime_range'],
|
|
24769
|
+
price_source: T['io.flow.common.v0.unions.price_source'],
|
|
24770
|
+
});
|
|
24771
|
+
|
|
24772
|
+
T['io.flow.internal.v0.models.channel_fulfillment'] = PropTypes.exact({
|
|
24773
|
+
org_id: PropTypes.string.isRequired,
|
|
24774
|
+
flow_order_number: PropTypes.string.isRequired,
|
|
24775
|
+
shopify_order_number: PropTypes.string.isRequired,
|
|
24776
|
+
legal_name: PropTypes.string,
|
|
24777
|
+
flow_tracking_status: T['io.flow.tracking.v0.enums.tracking_status'],
|
|
24778
|
+
order_items: PropTypes.arrayOf(T['io.flow.experience.v0.models.localized_line_item']).isRequired,
|
|
24779
|
+
label_items: PropTypes.arrayOf(T['io.flow.experience.v0.models.localized_line_item']).isRequired,
|
|
24780
|
+
carrier: T['io.flow.reference.v0.models.carrier_service'],
|
|
24781
|
+
tracking_numbers: PropTypes.arrayOf(PropTypes.string),
|
|
25120
24782
|
});
|
|
25121
24783
|
|
|
25122
24784
|
T['io.flow.experience.v0.models.line'] = PropTypes.exact({
|
|
@@ -25187,6 +24849,18 @@ T['io.flow.shopify.v0.models.shopify_cart'] = PropTypes.exact({
|
|
|
25187
24849
|
total_weight: PropTypes.number,
|
|
25188
24850
|
});
|
|
25189
24851
|
|
|
24852
|
+
T['io.flow.experience.v0.models.order_estimate'] = PropTypes.exact({
|
|
24853
|
+
id: PropTypes.string.isRequired,
|
|
24854
|
+
items: PropTypes.arrayOf(T['io.flow.experience.v0.models.localized_line_item']).isRequired,
|
|
24855
|
+
destination: T['io.flow.experience.v0.models.order_address'].isRequired,
|
|
24856
|
+
deliveries: PropTypes.arrayOf(T['io.flow.fulfillment.v0.unions.delivery']).isRequired,
|
|
24857
|
+
prices: PropTypes.arrayOf(T['io.flow.order.price.v0.models.order_price_detail']).isRequired,
|
|
24858
|
+
selections: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
24859
|
+
total: T['io.flow.catalog.v0.models.localized_total'].isRequired,
|
|
24860
|
+
lines: PropTypes.arrayOf(T['io.flow.experience.v0.models.line']),
|
|
24861
|
+
promotions: T['io.flow.experience.v0.models.promotions'],
|
|
24862
|
+
});
|
|
24863
|
+
|
|
25190
24864
|
T['io.flow.experience.v0.models.available_promotion'] = PropTypes.exact({
|
|
25191
24865
|
id: PropTypes.string.isRequired,
|
|
25192
24866
|
shipping_configuration: T['io.flow.fulfillment.v0.models.shipping_configuration_reference'].isRequired,
|
|
@@ -25314,191 +24988,6 @@ T['io.flow.customer.v0.models.customer_bundle'] = PropTypes.exact({
|
|
|
25314
24988
|
last_used: T['io.flow.customer.v0.models.customer_last_used'],
|
|
25315
24989
|
});
|
|
25316
24990
|
|
|
25317
|
-
T['io.flow.internal.v0.models.shopify_order_line_content'] = PropTypes.exact({
|
|
25318
|
-
item_number: PropTypes.string.isRequired,
|
|
25319
|
-
quantity: PropTypes.number.isRequired,
|
|
25320
|
-
price: T['io.flow.common.v0.models.price_with_base'].isRequired,
|
|
25321
|
-
total: T['io.flow.common.v0.models.price_with_base'].isRequired,
|
|
25322
|
-
name: PropTypes.string.isRequired,
|
|
25323
|
-
image_url: PropTypes.string.isRequired,
|
|
25324
|
-
variant_url: PropTypes.string.isRequired,
|
|
25325
|
-
attributes: PropTypes.arrayOf(T['io.flow.internal.v0.models.shopify_order_line_attribute']).isRequired,
|
|
25326
|
-
});
|
|
25327
|
-
|
|
25328
|
-
T['io.flow.internal.v0.models.shopify_order_content'] = PropTypes.exact({
|
|
25329
|
-
lines: PropTypes.arrayOf(T['io.flow.internal.v0.models.shopify_order_line_content']).isRequired,
|
|
25330
|
-
discounts: PropTypes.arrayOf(T['io.flow.internal.v0.models.shopify_order_discount_content']).isRequired,
|
|
25331
|
-
});
|
|
25332
|
-
|
|
25333
|
-
T['io.flow.order.management.event.v0.models.fulfillment_item_allocation_details'] = PropTypes.exact({
|
|
25334
|
-
item_number: PropTypes.string.isRequired,
|
|
25335
|
-
line_number: PropTypes.number.isRequired,
|
|
25336
|
-
levies: T['io.flow.common.v0.models.price_with_base'].isRequired,
|
|
25337
|
-
total: T['io.flow.common.v0.models.price_with_base'].isRequired,
|
|
25338
|
-
});
|
|
25339
|
-
|
|
25340
|
-
T['io.flow.export.v0.models.export_localized_item_prices_detail'] = PropTypes.exact({
|
|
25341
|
-
item: T['io.flow.catalog.v0.models.localized_item_price'].isRequired,
|
|
25342
|
-
vat: T['io.flow.catalog.v0.models.localized_item_vat'],
|
|
25343
|
-
duty: T['io.flow.catalog.v0.models.localized_item_duty'],
|
|
25344
|
-
shipping_price: T['io.flow.common.v0.models.price'],
|
|
25345
|
-
price_attributes: PropTypes.objectOf(T['io.flow.common.v0.models.price_with_base']).isRequired,
|
|
25346
|
-
});
|
|
25347
|
-
|
|
25348
|
-
T['io.flow.export.v0.models.export_localized_item_prices'] = PropTypes.exact({
|
|
25349
|
-
organization: T['io.flow.common.v0.models.organization_reference'].isRequired,
|
|
25350
|
-
experience: T['io.flow.common.v0.models.experience_summary'].isRequired,
|
|
25351
|
-
item: T['io.flow.common.v0.models.catalog_item_reference'].isRequired,
|
|
25352
|
-
prices: T['io.flow.export.v0.models.export_localized_item_prices_detail'].isRequired,
|
|
25353
|
-
status: T['io.flow.catalog.v0.enums.subcatalog_item_status'],
|
|
25354
|
-
rates: PropTypes.arrayOf(T['io.flow.currency.v0.models.rate']),
|
|
25355
|
-
});
|
|
25356
|
-
|
|
25357
|
-
T['io.flow.internal.v0.models.localized_price_book_item_data'] = PropTypes.exact({
|
|
25358
|
-
organization: T['io.flow.common.v0.models.organization_reference'].isRequired,
|
|
25359
|
-
experience: T['io.flow.common.v0.models.experience_summary'].isRequired,
|
|
25360
|
-
item: T['io.flow.common.v0.models.catalog_item_reference'].isRequired,
|
|
25361
|
-
prices: T['io.flow.export.v0.models.export_localized_item_prices_detail'].isRequired,
|
|
25362
|
-
status: T['io.flow.catalog.v0.enums.subcatalog_item_status'],
|
|
25363
|
-
price_book_key: PropTypes.string.isRequired,
|
|
25364
|
-
price_book_item_price: T['io.flow.common.v0.models.price'].isRequired,
|
|
25365
|
-
price_start_date: PropTypes.string.isRequired,
|
|
25366
|
-
price_end_date: PropTypes.string,
|
|
25367
|
-
});
|
|
25368
|
-
|
|
25369
|
-
T['io.flow.catalog.v0.models.local'] = PropTypes.exact({
|
|
25370
|
-
experience: T['io.flow.common.v0.models.experience_summary'].isRequired,
|
|
25371
|
-
prices: PropTypes.arrayOf(T['io.flow.catalog.v0.unions.localized_price']).isRequired,
|
|
25372
|
-
rates: PropTypes.arrayOf(T['io.flow.currency.v0.models.rate']).isRequired,
|
|
25373
|
-
spot_rates: PropTypes.arrayOf(PropTypes.object).isRequired,
|
|
25374
|
-
status: T['io.flow.catalog.v0.enums.subcatalog_item_status'].isRequired,
|
|
25375
|
-
attributes: PropTypes.objectOf(PropTypes.string),
|
|
25376
|
-
price_attributes: PropTypes.objectOf(T['io.flow.common.v0.models.price_with_base']),
|
|
25377
|
-
});
|
|
25378
|
-
|
|
25379
|
-
T['io.flow.internal.v0.models.localized_price_book_item'] = PropTypes.exact({
|
|
25380
|
-
id: PropTypes.string.isRequired,
|
|
25381
|
-
item_id: PropTypes.string.isRequired,
|
|
25382
|
-
item_number: PropTypes.string.isRequired,
|
|
25383
|
-
attributes: PropTypes.objectOf(PropTypes.string).isRequired,
|
|
25384
|
-
local: T['io.flow.catalog.v0.models.local'],
|
|
25385
|
-
price_book_item_id: PropTypes.string.isRequired,
|
|
25386
|
-
price_book_key: PropTypes.string.isRequired,
|
|
25387
|
-
price_book_item_price: T['io.flow.common.v0.models.price'].isRequired,
|
|
25388
|
-
schedule: T['io.flow.price.v0.models.price_book_item_schedule'].isRequired,
|
|
25389
|
-
});
|
|
25390
|
-
|
|
25391
|
-
T['io.flow.internal.v0.models.localized_price_book_item_upserted'] = PropTypes.exact({
|
|
25392
|
-
discriminator: PropTypes.oneOf(['localized_price_book_item_upserted']).isRequired,
|
|
25393
|
-
event_id: PropTypes.string.isRequired,
|
|
25394
|
-
timestamp: PropTypes.string.isRequired,
|
|
25395
|
-
organization: PropTypes.string.isRequired,
|
|
25396
|
-
item: T['io.flow.internal.v0.models.localized_price_book_item'].isRequired,
|
|
25397
|
-
});
|
|
25398
|
-
|
|
25399
|
-
T['io.flow.catalog.v0.models.item'] = PropTypes.exact({
|
|
25400
|
-
id: PropTypes.string.isRequired,
|
|
25401
|
-
number: PropTypes.string.isRequired,
|
|
25402
|
-
locale: PropTypes.string.isRequired,
|
|
25403
|
-
name: PropTypes.string.isRequired,
|
|
25404
|
-
price: T['io.flow.common.v0.models.price'].isRequired,
|
|
25405
|
-
categories: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
25406
|
-
description: PropTypes.string,
|
|
25407
|
-
attributes: PropTypes.objectOf(PropTypes.string).isRequired,
|
|
25408
|
-
dimensions: T['io.flow.common.v0.models.dimensions'].isRequired,
|
|
25409
|
-
images: PropTypes.arrayOf(T['io.flow.catalog.v0.models.image']).isRequired,
|
|
25410
|
-
local: T['io.flow.catalog.v0.models.local'],
|
|
25411
|
-
created_at: PropTypes.string,
|
|
25412
|
-
updated_at: PropTypes.string,
|
|
25413
|
-
deleted_at: PropTypes.string,
|
|
25414
|
-
});
|
|
25415
|
-
|
|
25416
|
-
T['io.flow.catalog.v0.models.subcatalog_item'] = PropTypes.exact({
|
|
25417
|
-
id: PropTypes.string.isRequired,
|
|
25418
|
-
item: T['io.flow.catalog.v0.models.item'].isRequired,
|
|
25419
|
-
status: T['io.flow.catalog.v0.enums.subcatalog_item_status'].isRequired,
|
|
25420
|
-
});
|
|
25421
|
-
|
|
25422
|
-
T['io.flow.catalog.v0.models.subcatalog_item_version'] = PropTypes.exact({
|
|
25423
|
-
id: PropTypes.string.isRequired,
|
|
25424
|
-
timestamp: PropTypes.string.isRequired,
|
|
25425
|
-
type: T['io.flow.common.v0.enums.change_type'].isRequired,
|
|
25426
|
-
subcatalog_item: T['io.flow.catalog.v0.models.subcatalog_item'].isRequired,
|
|
25427
|
-
});
|
|
25428
|
-
|
|
25429
|
-
T['io.flow.catalog.v0.models.item_version'] = PropTypes.exact({
|
|
25430
|
-
id: PropTypes.string.isRequired,
|
|
25431
|
-
timestamp: PropTypes.string.isRequired,
|
|
25432
|
-
type: T['io.flow.common.v0.enums.change_type'].isRequired,
|
|
25433
|
-
item: T['io.flow.catalog.v0.models.item'].isRequired,
|
|
25434
|
-
});
|
|
25435
|
-
|
|
25436
|
-
T['io.flow.internal.v0.models.localized_item_upserted_v2'] = PropTypes.exact({
|
|
25437
|
-
discriminator: PropTypes.oneOf(['localized_item_upserted_v2']).isRequired,
|
|
25438
|
-
event_id: PropTypes.string.isRequired,
|
|
25439
|
-
timestamp: PropTypes.string.isRequired,
|
|
25440
|
-
organization: PropTypes.string.isRequired,
|
|
25441
|
-
id: PropTypes.string.isRequired,
|
|
25442
|
-
item: T['io.flow.catalog.v0.models.item'].isRequired,
|
|
25443
|
-
item_schedule: T['io.flow.price.v0.models.price_book_item_schedule'],
|
|
25444
|
-
});
|
|
25445
|
-
|
|
25446
|
-
T['io.flow.internal.v0.models.item_query_response'] = PropTypes.exact({
|
|
25447
|
-
q: PropTypes.string.isRequired,
|
|
25448
|
-
items: PropTypes.arrayOf(T['io.flow.catalog.v0.models.item']).isRequired,
|
|
25449
|
-
});
|
|
25450
|
-
|
|
25451
|
-
T['io.flow.internal.v0.models.item_filter_value_response'] = PropTypes.exact({
|
|
25452
|
-
value: PropTypes.string.isRequired,
|
|
25453
|
-
items: PropTypes.arrayOf(T['io.flow.catalog.v0.models.item']).isRequired,
|
|
25454
|
-
});
|
|
25455
|
-
|
|
25456
|
-
T['io.flow.internal.v0.models.item_filter_response'] = PropTypes.exact({
|
|
25457
|
-
filter: PropTypes.string.isRequired,
|
|
25458
|
-
responses: PropTypes.arrayOf(T['io.flow.internal.v0.models.item_filter_value_response']).isRequired,
|
|
25459
|
-
});
|
|
25460
|
-
|
|
25461
|
-
T['io.flow.experience.v0.models.checkout_item_content'] = PropTypes.exact({
|
|
25462
|
-
item: T['io.flow.catalog.v0.models.item'].isRequired,
|
|
25463
|
-
name: PropTypes.string.isRequired,
|
|
25464
|
-
description: PropTypes.string,
|
|
25465
|
-
attributes: PropTypes.arrayOf(T['io.flow.experience.v0.models.checkout_item_content_attribute']).isRequired,
|
|
25466
|
-
image: T['io.flow.catalog.v0.models.image'],
|
|
25467
|
-
});
|
|
25468
|
-
|
|
25469
|
-
T['io.flow.internal.v0.models.checkout_content'] = PropTypes.exact({
|
|
25470
|
-
global: T['io.flow.internal.v0.models.checkout_content_summary'],
|
|
25471
|
-
items: PropTypes.arrayOf(T['io.flow.experience.v0.models.checkout_item_content']).isRequired,
|
|
25472
|
-
});
|
|
25473
|
-
|
|
25474
|
-
T['io.flow.experience.v0.models.localized_line_item'] = PropTypes.exact({
|
|
25475
|
-
id: PropTypes.string,
|
|
25476
|
-
number: PropTypes.string.isRequired,
|
|
25477
|
-
name: PropTypes.string.isRequired,
|
|
25478
|
-
quantity: PropTypes.number.isRequired,
|
|
25479
|
-
image: T['io.flow.experience.v0.models.order_summary_image'],
|
|
25480
|
-
center: PropTypes.string,
|
|
25481
|
-
price: T['io.flow.common.v0.models.money'],
|
|
25482
|
-
discount: T['io.flow.experience.v0.models.localized_line_item_discount'],
|
|
25483
|
-
discounts: PropTypes.arrayOf(T['io.flow.experience.v0.models.localized_line_item_discount']),
|
|
25484
|
-
attributes: PropTypes.objectOf(PropTypes.string),
|
|
25485
|
-
local: T['io.flow.catalog.v0.models.local'].isRequired,
|
|
25486
|
-
shipment_estimate: T['io.flow.common.v0.models.datetime_range'],
|
|
25487
|
-
price_source: T['io.flow.common.v0.unions.price_source'],
|
|
25488
|
-
});
|
|
25489
|
-
|
|
25490
|
-
T['io.flow.experience.v0.models.order_estimate'] = PropTypes.exact({
|
|
25491
|
-
id: PropTypes.string.isRequired,
|
|
25492
|
-
items: PropTypes.arrayOf(T['io.flow.experience.v0.models.localized_line_item']).isRequired,
|
|
25493
|
-
destination: T['io.flow.experience.v0.models.order_address'].isRequired,
|
|
25494
|
-
deliveries: PropTypes.arrayOf(T['io.flow.fulfillment.v0.unions.delivery']).isRequired,
|
|
25495
|
-
prices: PropTypes.arrayOf(T['io.flow.order.price.v0.models.order_price_detail']).isRequired,
|
|
25496
|
-
selections: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
25497
|
-
total: T['io.flow.catalog.v0.models.localized_total'].isRequired,
|
|
25498
|
-
lines: PropTypes.arrayOf(T['io.flow.experience.v0.models.line']),
|
|
25499
|
-
promotions: T['io.flow.experience.v0.models.promotions'],
|
|
25500
|
-
});
|
|
25501
|
-
|
|
25502
24991
|
T['io.flow.experience.v0.models.order'] = PropTypes.exact({
|
|
25503
24992
|
discriminator: PropTypes.oneOf(['order']).isRequired,
|
|
25504
24993
|
id: PropTypes.string.isRequired,
|
|
@@ -25528,6 +25017,7 @@ T['io.flow.experience.v0.models.order'] = PropTypes.exact({
|
|
|
25528
25017
|
device_details: T['io.flow.payment.v0.unions.device_details'],
|
|
25529
25018
|
destination_contact_details: PropTypes.arrayOf(T['io.flow.experience.v0.models.destination_contact_detail']),
|
|
25530
25019
|
incoterm_summary: T['io.flow.experience.v0.models.incoterm_summary'],
|
|
25020
|
+
payment_source: T['io.flow.experience.v0.enums.order_payment_source_type'],
|
|
25531
25021
|
});
|
|
25532
25022
|
|
|
25533
25023
|
T['io.flow.shopify.v0.models.shopify_cart_conversion_flow_order'] = PropTypes.exact({
|
|
@@ -25587,40 +25077,76 @@ T['io.flow.experience.v0.models.credit_payment_version'] = PropTypes.exact({
|
|
|
25587
25077
|
credit_payment: T['io.flow.experience.v0.models.credit_payment'].isRequired,
|
|
25588
25078
|
});
|
|
25589
25079
|
|
|
25590
|
-
T['io.flow.order.management.event.v0.models.
|
|
25591
|
-
|
|
25080
|
+
T['io.flow.order.management.event.v0.models.order_placed'] = PropTypes.exact({
|
|
25081
|
+
discriminator: PropTypes.oneOf(['order_placed']).isRequired,
|
|
25082
|
+
event_id: PropTypes.string.isRequired,
|
|
25083
|
+
timestamp: PropTypes.string.isRequired,
|
|
25084
|
+
organization: PropTypes.string.isRequired,
|
|
25592
25085
|
order_number: PropTypes.string.isRequired,
|
|
25593
25086
|
order: T['io.flow.experience.v0.models.order'].isRequired,
|
|
25594
|
-
|
|
25087
|
+
allocation: T['io.flow.experience.v0.models.allocation_v2'].isRequired,
|
|
25088
|
+
});
|
|
25595
25089
|
|
|
25596
|
-
|
|
25597
|
-
|
|
25598
|
-
|
|
25090
|
+
T['io.flow.order.management.v0.models.order_placed_details'] = PropTypes.exact({
|
|
25091
|
+
id: PropTypes.string.isRequired,
|
|
25092
|
+
order: T['io.flow.experience.v0.models.order'].isRequired,
|
|
25093
|
+
allocation: T['io.flow.experience.v0.models.allocation_v2'].isRequired,
|
|
25094
|
+
});
|
|
25095
|
+
|
|
25096
|
+
T['io.flow.order.management.event.v0.models.order_placed_v2'] = PropTypes.exact({
|
|
25097
|
+
discriminator: PropTypes.oneOf(['order_placed_v2']).isRequired,
|
|
25098
|
+
event_id: PropTypes.string.isRequired,
|
|
25099
|
+
timestamp: PropTypes.string.isRequired,
|
|
25100
|
+
organization: PropTypes.string.isRequired,
|
|
25101
|
+
order_placed: T['io.flow.order.management.v0.models.order_placed_details'].isRequired,
|
|
25102
|
+
});
|
|
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'],
|
|
25599
25127
|
});
|
|
25600
25128
|
|
|
25601
|
-
T['io.flow.
|
|
25602
|
-
discriminator: PropTypes.oneOf(['
|
|
25129
|
+
T['io.flow.internal.v0.models.submitted_order_upserted'] = PropTypes.exact({
|
|
25130
|
+
discriminator: PropTypes.oneOf(['submitted_order_upserted']).isRequired,
|
|
25603
25131
|
event_id: PropTypes.string.isRequired,
|
|
25604
25132
|
timestamp: PropTypes.string.isRequired,
|
|
25605
25133
|
organization: PropTypes.string.isRequired,
|
|
25606
|
-
|
|
25134
|
+
order: T['io.flow.experience.v0.models.order'].isRequired,
|
|
25135
|
+
session: T['io.flow.internal.v0.models.experience_session_reference'],
|
|
25607
25136
|
});
|
|
25608
25137
|
|
|
25609
|
-
T['io.flow.
|
|
25610
|
-
discriminator: PropTypes.oneOf(['
|
|
25138
|
+
T['io.flow.internal.v0.models.order_shipped'] = PropTypes.exact({
|
|
25139
|
+
discriminator: PropTypes.oneOf(['order_shipped']).isRequired,
|
|
25611
25140
|
event_id: PropTypes.string.isRequired,
|
|
25612
25141
|
timestamp: PropTypes.string.isRequired,
|
|
25613
25142
|
organization: PropTypes.string.isRequired,
|
|
25614
25143
|
order_number: PropTypes.string.isRequired,
|
|
25615
25144
|
order: T['io.flow.experience.v0.models.order'].isRequired,
|
|
25616
|
-
fulfillments: PropTypes.arrayOf(T['io.flow.order.management.v0.models.fulfillment']),
|
|
25617
|
-
|
|
25618
|
-
fulfillment_item_allocation_details: PropTypes.arrayOf(
|
|
25619
|
-
T['io.flow.order.management.event.v0.models.fulfillment_item_allocation_details'],
|
|
25620
|
-
),
|
|
25145
|
+
fulfillments: PropTypes.arrayOf(T['io.flow.order.management.v0.models.fulfillment']).isRequired,
|
|
25146
|
+
shipment_trackings: PropTypes.arrayOf(T['io.flow.internal.v0.models.fulfillment_shipment_tracking']).isRequired,
|
|
25621
25147
|
});
|
|
25622
25148
|
|
|
25623
|
-
T['io.flow.
|
|
25149
|
+
T['io.flow.internal.v0.models.order_placed'] = PropTypes.exact({
|
|
25624
25150
|
discriminator: PropTypes.oneOf(['order_placed']).isRequired,
|
|
25625
25151
|
event_id: PropTypes.string.isRequired,
|
|
25626
25152
|
timestamp: PropTypes.string.isRequired,
|
|
@@ -25630,34 +25156,41 @@ T['io.flow.order.management.event.v0.models.order_placed'] = PropTypes.exact({
|
|
|
25630
25156
|
allocation: T['io.flow.experience.v0.models.allocation_v2'].isRequired,
|
|
25631
25157
|
});
|
|
25632
25158
|
|
|
25633
|
-
T['io.flow.
|
|
25634
|
-
id: PropTypes.string.isRequired,
|
|
25159
|
+
T['io.flow.internal.v0.models.internal_order'] = PropTypes.exact({
|
|
25635
25160
|
order: T['io.flow.experience.v0.models.order'].isRequired,
|
|
25636
|
-
|
|
25161
|
+
session: T['io.flow.common.v0.models.session_reference'],
|
|
25162
|
+
rates: PropTypes.arrayOf(T['io.flow.internal.v0.models.rate_data_v3']).isRequired,
|
|
25163
|
+
environment: T['io.flow.common.v0.enums.environment'],
|
|
25164
|
+
discount: T['io.flow.common.v0.models.money'],
|
|
25637
25165
|
});
|
|
25638
25166
|
|
|
25639
|
-
T['io.flow.
|
|
25640
|
-
discriminator: PropTypes.oneOf(['
|
|
25167
|
+
T['io.flow.internal.v0.models.fulfillment_cancel'] = PropTypes.exact({
|
|
25168
|
+
discriminator: PropTypes.oneOf(['fulfillment_cancel']).isRequired,
|
|
25641
25169
|
event_id: PropTypes.string.isRequired,
|
|
25642
25170
|
timestamp: PropTypes.string.isRequired,
|
|
25643
25171
|
organization: PropTypes.string.isRequired,
|
|
25644
|
-
|
|
25172
|
+
order_number: PropTypes.string.isRequired,
|
|
25173
|
+
order: T['io.flow.experience.v0.models.order'].isRequired,
|
|
25174
|
+
fulfillments: PropTypes.arrayOf(T['io.flow.order.management.v0.models.fulfillment']).isRequired,
|
|
25175
|
+
change_source: T['io.flow.order.management.v0.enums.order_change_source'].isRequired,
|
|
25176
|
+
reason: T['io.flow.order.management.v0.enums.cancel_reason'].isRequired,
|
|
25177
|
+
cancelled_lines: PropTypes.arrayOf(T['io.flow.order.management.v0.models.fulfillment_line_cancel_form']).isRequired,
|
|
25645
25178
|
});
|
|
25646
25179
|
|
|
25647
|
-
T['io.flow.
|
|
25648
|
-
|
|
25649
|
-
|
|
25650
|
-
T['io.flow.
|
|
25651
|
-
T['io.flow.
|
|
25652
|
-
|
|
25180
|
+
T['io.flow.internal.v0.models.shopify_order_line_content'] = PropTypes.exact({
|
|
25181
|
+
item_number: PropTypes.string.isRequired,
|
|
25182
|
+
quantity: PropTypes.number.isRequired,
|
|
25183
|
+
price: T['io.flow.common.v0.models.price_with_base'].isRequired,
|
|
25184
|
+
total: T['io.flow.common.v0.models.price_with_base'].isRequired,
|
|
25185
|
+
name: PropTypes.string.isRequired,
|
|
25186
|
+
image_url: PropTypes.string.isRequired,
|
|
25187
|
+
variant_url: PropTypes.string.isRequired,
|
|
25188
|
+
attributes: PropTypes.arrayOf(T['io.flow.internal.v0.models.shopify_order_line_attribute']).isRequired,
|
|
25189
|
+
});
|
|
25653
25190
|
|
|
25654
|
-
T['io.flow.internal.v0.models.
|
|
25655
|
-
|
|
25656
|
-
|
|
25657
|
-
timestamp: PropTypes.string.isRequired,
|
|
25658
|
-
organization: PropTypes.string.isRequired,
|
|
25659
|
-
order: T['io.flow.experience.v0.models.order'].isRequired,
|
|
25660
|
-
session: T['io.flow.internal.v0.models.experience_session_reference'],
|
|
25191
|
+
T['io.flow.internal.v0.models.shopify_order_content'] = PropTypes.exact({
|
|
25192
|
+
lines: PropTypes.arrayOf(T['io.flow.internal.v0.models.shopify_order_line_content']).isRequired,
|
|
25193
|
+
discounts: PropTypes.arrayOf(T['io.flow.internal.v0.models.shopify_order_discount_content']).isRequired,
|
|
25661
25194
|
});
|
|
25662
25195
|
|
|
25663
25196
|
T['io.flow.internal.v0.models.shopify_order_detail'] = PropTypes.exact({
|
|
@@ -25674,11 +25207,15 @@ T['io.flow.internal.v0.models.shopify_order_authorization'] = PropTypes.exact({
|
|
|
25674
25207
|
redirect: PropTypes.string,
|
|
25675
25208
|
});
|
|
25676
25209
|
|
|
25677
|
-
T['io.flow.
|
|
25678
|
-
|
|
25679
|
-
|
|
25680
|
-
|
|
25681
|
-
|
|
25210
|
+
T['io.flow.order.management.event.v0.models.fulfillment_item_allocation_details'] = PropTypes.exact({
|
|
25211
|
+
item_number: PropTypes.string.isRequired,
|
|
25212
|
+
line_number: PropTypes.number.isRequired,
|
|
25213
|
+
levies: T['io.flow.common.v0.models.price_with_base'].isRequired,
|
|
25214
|
+
total: T['io.flow.common.v0.models.price_with_base'].isRequired,
|
|
25215
|
+
});
|
|
25216
|
+
|
|
25217
|
+
T['io.flow.order.management.event.v0.models.ready_to_fulfill_details'] = PropTypes.exact({
|
|
25218
|
+
id: PropTypes.string.isRequired,
|
|
25682
25219
|
order_number: PropTypes.string.isRequired,
|
|
25683
25220
|
order: T['io.flow.experience.v0.models.order'].isRequired,
|
|
25684
25221
|
fulfillments: PropTypes.arrayOf(T['io.flow.order.management.v0.models.fulfillment']),
|
|
@@ -25688,116 +25225,76 @@ T['io.flow.internal.v0.models.ready_to_fulfill'] = PropTypes.exact({
|
|
|
25688
25225
|
),
|
|
25689
25226
|
});
|
|
25690
25227
|
|
|
25691
|
-
T['io.flow.
|
|
25692
|
-
discriminator: PropTypes.oneOf(['
|
|
25228
|
+
T['io.flow.order.management.event.v0.models.ready_to_fulfill_v2'] = PropTypes.exact({
|
|
25229
|
+
discriminator: PropTypes.oneOf(['ready_to_fulfill_v2']).isRequired,
|
|
25693
25230
|
event_id: PropTypes.string.isRequired,
|
|
25694
25231
|
timestamp: PropTypes.string.isRequired,
|
|
25695
25232
|
organization: PropTypes.string.isRequired,
|
|
25696
|
-
|
|
25697
|
-
order: T['io.flow.experience.v0.models.order'].isRequired,
|
|
25698
|
-
fulfillments: PropTypes.arrayOf(T['io.flow.order.management.v0.models.fulfillment']).isRequired,
|
|
25699
|
-
shipment_trackings: PropTypes.arrayOf(T['io.flow.internal.v0.models.fulfillment_shipment_tracking']).isRequired,
|
|
25233
|
+
ready_to_fulfill: T['io.flow.order.management.event.v0.models.ready_to_fulfill_details'].isRequired,
|
|
25700
25234
|
});
|
|
25701
25235
|
|
|
25702
|
-
T['io.flow.
|
|
25703
|
-
discriminator: PropTypes.oneOf(['
|
|
25236
|
+
T['io.flow.order.management.event.v0.models.ready_to_fulfill'] = PropTypes.exact({
|
|
25237
|
+
discriminator: PropTypes.oneOf(['ready_to_fulfill']).isRequired,
|
|
25704
25238
|
event_id: PropTypes.string.isRequired,
|
|
25705
25239
|
timestamp: PropTypes.string.isRequired,
|
|
25706
25240
|
organization: PropTypes.string.isRequired,
|
|
25707
25241
|
order_number: PropTypes.string.isRequired,
|
|
25708
25242
|
order: T['io.flow.experience.v0.models.order'].isRequired,
|
|
25709
|
-
|
|
25710
|
-
});
|
|
25243
|
+
fulfillments: PropTypes.arrayOf(T['io.flow.order.management.v0.models.fulfillment']),
|
|
25711
25244
|
|
|
25712
|
-
|
|
25713
|
-
|
|
25714
|
-
|
|
25715
|
-
rates: PropTypes.arrayOf(T['io.flow.internal.v0.models.rate_data_v3']).isRequired,
|
|
25716
|
-
environment: T['io.flow.common.v0.enums.environment'],
|
|
25717
|
-
discount: T['io.flow.common.v0.models.money'],
|
|
25245
|
+
fulfillment_item_allocation_details: PropTypes.arrayOf(
|
|
25246
|
+
T['io.flow.order.management.event.v0.models.fulfillment_item_allocation_details'],
|
|
25247
|
+
),
|
|
25718
25248
|
});
|
|
25719
25249
|
|
|
25720
|
-
T['io.flow.
|
|
25721
|
-
|
|
25250
|
+
T['io.flow.order.management.event.v0.unions.order_management_event'] = PropTypes.oneOfType([
|
|
25251
|
+
T['io.flow.order.management.event.v0.models.order_placed'],
|
|
25252
|
+
T['io.flow.order.management.event.v0.models.order_placed_v2'],
|
|
25253
|
+
T['io.flow.order.management.event.v0.models.ready_to_fulfill'],
|
|
25254
|
+
T['io.flow.order.management.event.v0.models.ready_to_fulfill_v2'],
|
|
25255
|
+
]);
|
|
25256
|
+
|
|
25257
|
+
T['io.flow.internal.v0.models.ready_to_fulfill'] = PropTypes.exact({
|
|
25258
|
+
discriminator: PropTypes.oneOf(['ready_to_fulfill']).isRequired,
|
|
25722
25259
|
event_id: PropTypes.string.isRequired,
|
|
25723
25260
|
timestamp: PropTypes.string.isRequired,
|
|
25724
25261
|
organization: PropTypes.string.isRequired,
|
|
25725
25262
|
order_number: PropTypes.string.isRequired,
|
|
25726
25263
|
order: T['io.flow.experience.v0.models.order'].isRequired,
|
|
25727
|
-
fulfillments: PropTypes.arrayOf(T['io.flow.order.management.v0.models.fulfillment'])
|
|
25728
|
-
change_source: T['io.flow.order.management.v0.enums.order_change_source'].isRequired,
|
|
25729
|
-
reason: T['io.flow.order.management.v0.enums.cancel_reason'].isRequired,
|
|
25730
|
-
cancelled_lines: PropTypes.arrayOf(T['io.flow.order.management.v0.models.fulfillment_line_cancel_form']).isRequired,
|
|
25731
|
-
});
|
|
25732
|
-
|
|
25733
|
-
T['io.flow.internal.v0.models.checkout_submit_order_bundle'] = PropTypes.exact({
|
|
25734
|
-
discriminator: PropTypes.oneOf(['checkout_submit_order_bundle']).isRequired,
|
|
25735
|
-
order: T['io.flow.experience.v0.models.order'],
|
|
25736
|
-
redirect: T['io.flow.payment.v0.unions.authorization_result_action'],
|
|
25737
|
-
errors: PropTypes.arrayOf(T['io.flow.experience.v0.models.order_error']),
|
|
25738
|
-
});
|
|
25739
|
-
|
|
25740
|
-
T['io.flow.internal.v0.unions.checkout_submit_order_bundles'] = PropTypes.oneOfType([T['io.flow.internal.v0.models.checkout_submit_order_bundle']]);
|
|
25741
|
-
|
|
25742
|
-
T['io.flow.experience.v0.models.order_builder'] = PropTypes.exact({
|
|
25743
|
-
order: T['io.flow.experience.v0.models.order'],
|
|
25744
|
-
errors: PropTypes.arrayOf(T['io.flow.experience.v0.models.order_error']),
|
|
25745
|
-
});
|
|
25264
|
+
fulfillments: PropTypes.arrayOf(T['io.flow.order.management.v0.models.fulfillment']),
|
|
25746
25265
|
|
|
25747
|
-
|
|
25748
|
-
|
|
25749
|
-
|
|
25750
|
-
builder: T['io.flow.experience.v0.models.order_builder'].isRequired,
|
|
25751
|
-
platform: T['io.flow.internal.v0.models.checkout_platform_data'].isRequired,
|
|
25752
|
-
content: T['io.flow.internal.v0.models.checkout_content'].isRequired,
|
|
25753
|
-
destinations: PropTypes.arrayOf(T['io.flow.reference.v0.models.country']).isRequired,
|
|
25754
|
-
optins: PropTypes.arrayOf(T['io.flow.internal.v0.models.optin_prompt']).isRequired,
|
|
25755
|
-
addresses: PropTypes.arrayOf(T['io.flow.experience.v0.models.address_configuration']).isRequired,
|
|
25756
|
-
features: T['io.flow.internal.v0.models.feature_value_result'].isRequired,
|
|
25757
|
-
configuration: T['io.flow.internal.v0.models.checkout_configuration'].isRequired,
|
|
25758
|
-
cart: T['io.flow.shopify.v0.models.shopify_cart'],
|
|
25759
|
-
customer: T['io.flow.customer.v0.models.customer'],
|
|
25760
|
-
address_book: T['io.flow.customer.v0.models.customer_address_book'],
|
|
25761
|
-
gift_card_program: T['io.flow.internal.v0.models.gift_card_program'],
|
|
25762
|
-
loyalty_program: T['io.flow.internal.v0.models.loyalty_program'],
|
|
25763
|
-
payment: T['io.flow.internal.v0.models.checkout_payment'].isRequired,
|
|
25764
|
-
customer_bundle: T['io.flow.customer.v0.models.customer_bundle'],
|
|
25266
|
+
fulfillment_item_allocation_details: PropTypes.arrayOf(
|
|
25267
|
+
T['io.flow.order.management.event.v0.models.fulfillment_item_allocation_details'],
|
|
25268
|
+
),
|
|
25765
25269
|
});
|
|
25766
25270
|
|
|
25767
|
-
T['io.flow.
|
|
25768
|
-
|
|
25769
|
-
|
|
25271
|
+
T['io.flow.export.v0.models.export_localized_item_prices_detail'] = PropTypes.exact({
|
|
25272
|
+
item: T['io.flow.catalog.v0.models.localized_item_price'].isRequired,
|
|
25273
|
+
vat: T['io.flow.catalog.v0.models.localized_item_vat'],
|
|
25274
|
+
duty: T['io.flow.catalog.v0.models.localized_item_duty'],
|
|
25275
|
+
shipping_price: T['io.flow.common.v0.models.price'],
|
|
25276
|
+
price_attributes: PropTypes.objectOf(T['io.flow.common.v0.models.price_with_base']).isRequired,
|
|
25770
25277
|
});
|
|
25771
25278
|
|
|
25772
|
-
T['io.flow.
|
|
25773
|
-
|
|
25774
|
-
|
|
25775
|
-
|
|
25776
|
-
|
|
25777
|
-
|
|
25778
|
-
|
|
25779
|
-
features: T['io.flow.internal.v0.models.feature_value_result'].isRequired,
|
|
25780
|
-
provinces: PropTypes.arrayOf(T['io.flow.reference.v0.models.province']).isRequired,
|
|
25781
|
-
checkout_items: PropTypes.arrayOf(T['io.flow.experience.v0.models.checkout_item_content']).isRequired,
|
|
25782
|
-
metadata: T['io.flow.internal.v0.models.checkout_bundle_metadata'],
|
|
25783
|
-
configuration: T['io.flow.internal.v0.models.checkout_configuration'],
|
|
25784
|
-
address_configurations: PropTypes.arrayOf(T['io.flow.experience.v0.models.address_configuration']),
|
|
25785
|
-
customer: T['io.flow.customer.v0.models.customer'],
|
|
25786
|
-
address_book: T['io.flow.customer.v0.models.customer_address_book'],
|
|
25787
|
-
payment_sources: PropTypes.arrayOf(T['io.flow.payment.v0.unions.payment_source']),
|
|
25788
|
-
customer_bundle: T['io.flow.customer.v0.models.customer_bundle'],
|
|
25279
|
+
T['io.flow.export.v0.models.export_localized_item_prices'] = PropTypes.exact({
|
|
25280
|
+
organization: T['io.flow.common.v0.models.organization_reference'].isRequired,
|
|
25281
|
+
experience: T['io.flow.common.v0.models.experience_summary'].isRequired,
|
|
25282
|
+
item: T['io.flow.common.v0.models.catalog_item_reference'].isRequired,
|
|
25283
|
+
prices: T['io.flow.export.v0.models.export_localized_item_prices_detail'].isRequired,
|
|
25284
|
+
status: T['io.flow.catalog.v0.enums.subcatalog_item_status'],
|
|
25285
|
+
rates: PropTypes.arrayOf(T['io.flow.currency.v0.models.rate']),
|
|
25789
25286
|
});
|
|
25790
25287
|
|
|
25791
|
-
T['io.flow.internal.v0.models.
|
|
25792
|
-
|
|
25793
|
-
|
|
25794
|
-
|
|
25795
|
-
|
|
25796
|
-
|
|
25797
|
-
|
|
25798
|
-
|
|
25799
|
-
|
|
25800
|
-
|
|
25288
|
+
T['io.flow.internal.v0.models.localized_price_book_item_data'] = PropTypes.exact({
|
|
25289
|
+
organization: T['io.flow.common.v0.models.organization_reference'].isRequired,
|
|
25290
|
+
experience: T['io.flow.common.v0.models.experience_summary'].isRequired,
|
|
25291
|
+
item: T['io.flow.common.v0.models.catalog_item_reference'].isRequired,
|
|
25292
|
+
prices: T['io.flow.export.v0.models.export_localized_item_prices_detail'].isRequired,
|
|
25293
|
+
status: T['io.flow.catalog.v0.enums.subcatalog_item_status'],
|
|
25294
|
+
price_book_key: PropTypes.string.isRequired,
|
|
25295
|
+
price_book_item_price: T['io.flow.common.v0.models.price'].isRequired,
|
|
25296
|
+
price_start_date: PropTypes.string.isRequired,
|
|
25297
|
+
price_end_date: PropTypes.string,
|
|
25801
25298
|
});
|
|
25802
25299
|
|
|
25803
25300
|
T['io.flow.internal.v0.models.shipped_item_value'] = PropTypes.exact({
|
|
@@ -26360,7 +25857,7 @@ T['io.flow.internal.v0.enums.billing_transaction_type'] = PropTypes.oneOf([
|
|
|
26360
25857
|
'duty',
|
|
26361
25858
|
'trueup',
|
|
26362
25859
|
'carrier_charge',
|
|
26363
|
-
'
|
|
25860
|
+
'non_l4l_tax_duty_fx',
|
|
26364
25861
|
'tax_refund',
|
|
26365
25862
|
'duty_refund',
|
|
26366
25863
|
'ge_revenue_share',
|
|
@@ -26595,8 +26092,8 @@ T['io.flow.internal.v0.models.order_transaction_upserted'] = PropTypes.exact({
|
|
|
26595
26092
|
order_transaction: T['io.flow.internal.v0.models.order_transaction'].isRequired,
|
|
26596
26093
|
});
|
|
26597
26094
|
|
|
26598
|
-
T['io.flow.internal.v0.models.
|
|
26599
|
-
discriminator: PropTypes.oneOf(['
|
|
26095
|
+
T['io.flow.internal.v0.models.non_l4l_tax_duty_fx_transaction'] = PropTypes.exact({
|
|
26096
|
+
discriminator: PropTypes.oneOf(['non_l4l_tax_duty_fx_transaction']).isRequired,
|
|
26600
26097
|
order: T['io.flow.internal.v0.models.billing_order_transaction_order_reference'].isRequired,
|
|
26601
26098
|
fx: T['io.flow.internal.v0.models.fee'].isRequired,
|
|
26602
26099
|
id: PropTypes.string.isRequired,
|
|
@@ -26818,7 +26315,7 @@ T['io.flow.internal.v0.unions.transaction'] = PropTypes.oneOfType([
|
|
|
26818
26315
|
T['io.flow.internal.v0.models.duty_transaction'],
|
|
26819
26316
|
T['io.flow.internal.v0.models.trueup_transaction'],
|
|
26820
26317
|
T['io.flow.internal.v0.models.carrier_charge_transaction'],
|
|
26821
|
-
T['io.flow.internal.v0.models.
|
|
26318
|
+
T['io.flow.internal.v0.models.non_l4l_tax_duty_fx_transaction'],
|
|
26822
26319
|
T['io.flow.internal.v0.models.ge_revenue_share_transaction'],
|
|
26823
26320
|
T['io.flow.internal.v0.models.tax_duty_delta_transaction'],
|
|
26824
26321
|
]);
|
|
@@ -27068,8 +26565,8 @@ T['io.flow.internal.v0.models.fraud_review_authorization_decision_upserted'] = P
|
|
|
27068
26565
|
T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
|
|
27069
26566
|
T['io.flow.internal.v0.models.adjusted_estimates_upserted'],
|
|
27070
26567
|
T['io.flow.internal.v0.models.adjusted_estimates_deleted'],
|
|
27071
|
-
T['io.flow.internal.v0.models.
|
|
27072
|
-
T['io.flow.internal.v0.models.
|
|
26568
|
+
T['io.flow.internal.v0.models.shipping_estimate_upserted'],
|
|
26569
|
+
T['io.flow.internal.v0.models.shipping_estimate_deleted'],
|
|
27073
26570
|
T['io.flow.internal.v0.models.adyen_authorization_deleted'],
|
|
27074
26571
|
T['io.flow.internal.v0.models.adyen_authorization_upserted'],
|
|
27075
26572
|
T['io.flow.internal.v0.models.adyen_cancel_deleted'],
|
|
@@ -27237,7 +26734,6 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
|
|
|
27237
26734
|
T['io.flow.internal.v0.models.center_defaults_deleted'],
|
|
27238
26735
|
T['io.flow.internal.v0.models.fulfillment_fallbacks_upserted'],
|
|
27239
26736
|
T['io.flow.internal.v0.models.fulfillment_fallbacks_deleted'],
|
|
27240
|
-
T['io.flow.internal.v0.models.pregenerated_request_event'],
|
|
27241
26737
|
T['io.flow.internal.v0.models.quote_upserted'],
|
|
27242
26738
|
T['io.flow.internal.v0.models.quote_deleted'],
|
|
27243
26739
|
T['io.flow.internal.v0.models.all_items_export'],
|
|
@@ -27246,7 +26742,6 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
|
|
|
27246
26742
|
T['io.flow.internal.v0.models.dutied_items_export'],
|
|
27247
26743
|
T['io.flow.internal.v0.models.harmonization_phrase_suggestion_request_import'],
|
|
27248
26744
|
T['io.flow.internal.v0.models.harmonization_codes_import'],
|
|
27249
|
-
T['io.flow.internal.v0.models.item_classification_created'],
|
|
27250
26745
|
T['io.flow.internal.v0.models.harmonize_fully_request_v2'],
|
|
27251
26746
|
T['io.flow.internal.v0.models.import_completed'],
|
|
27252
26747
|
T['io.flow.internal.v0.models.import_failed'],
|
|
@@ -27260,8 +26755,6 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
|
|
|
27260
26755
|
T['io.flow.internal.v0.models.rate_freshness_summary_deleted'],
|
|
27261
26756
|
T['io.flow.internal.v0.models.item_harmonization_upserted'],
|
|
27262
26757
|
T['io.flow.internal.v0.models.item_harmonization_deleted'],
|
|
27263
|
-
T['io.flow.internal.v0.models.harmonization_item_classification_upserted'],
|
|
27264
|
-
T['io.flow.internal.v0.models.harmonization_item_classification_deleted'],
|
|
27265
26758
|
T['io.flow.internal.v0.models.harmonization_classification_statistics_published'],
|
|
27266
26759
|
T['io.flow.internal.v0.models.issuer_upserted'],
|
|
27267
26760
|
T['io.flow.internal.v0.models.issuer_deleted'],
|
|
@@ -27274,20 +26767,9 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
|
|
|
27274
26767
|
T['io.flow.internal.v0.models.order_validation_deleted'],
|
|
27275
26768
|
T['io.flow.internal.v0.models.label_tracking_summary_upserted'],
|
|
27276
26769
|
T['io.flow.internal.v0.models.label_tracking_summary_deleted'],
|
|
27277
|
-
T['io.flow.internal.v0.models.localized_item_upserted_v2'],
|
|
27278
|
-
T['io.flow.internal.v0.models.localized_item_deleted'],
|
|
27279
|
-
T['io.flow.internal.v0.models.localized_item_deleted_v2'],
|
|
27280
|
-
T['io.flow.internal.v0.models.localized_item_snapshot'],
|
|
27281
|
-
T['io.flow.internal.v0.models.localized_price_book_item_upserted'],
|
|
27282
|
-
T['io.flow.internal.v0.models.localized_price_book_item_deleted'],
|
|
27283
26770
|
T['io.flow.internal.v0.models.logistics_capabilities_upserted'],
|
|
27284
26771
|
T['io.flow.internal.v0.models.logistics_capabilities_deleted'],
|
|
27285
|
-
T['io.flow.internal.v0.models.feed_upserted'],
|
|
27286
|
-
T['io.flow.internal.v0.models.feed_deleted'],
|
|
27287
|
-
T['io.flow.internal.v0.models.feeds_export'],
|
|
27288
26772
|
T['io.flow.internal.v0.models.localized_item_prices_export_request'],
|
|
27289
|
-
T['io.flow.internal.v0.models.optin_prompt_upserted'],
|
|
27290
|
-
T['io.flow.internal.v0.models.optin_prompt_deleted'],
|
|
27291
26773
|
T['io.flow.internal.v0.models.order_combined_shipment_upserted'],
|
|
27292
26774
|
T['io.flow.internal.v0.models.order_combined_shipment_deleted'],
|
|
27293
26775
|
T['io.flow.internal.v0.models.order_fulfillment_deleted'],
|
|
@@ -27353,8 +26835,6 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
|
|
|
27353
26835
|
T['io.flow.internal.v0.models.ratecard_standard_configuration_deleted'],
|
|
27354
26836
|
T['io.flow.internal.v0.models.ratecard_service_fee_upserted'],
|
|
27355
26837
|
T['io.flow.internal.v0.models.ratecard_service_fee_deleted'],
|
|
27356
|
-
T['io.flow.internal.v0.models.ratecard_lane_aggregate_upserted'],
|
|
27357
|
-
T['io.flow.internal.v0.models.ratecard_lane_aggregate_deleted'],
|
|
27358
26838
|
T['io.flow.internal.v0.models.ratecard_rate_level_upserted'],
|
|
27359
26839
|
T['io.flow.internal.v0.models.ratecard_rate_level_deleted'],
|
|
27360
26840
|
T['io.flow.internal.v0.models.ratecard_rate_level_ratecard_upserted'],
|
|
@@ -27605,8 +27085,8 @@ T['io.flow.internal.v0.enums.duty_transaction_type'] = PropTypes.oneOf(['adjustm
|
|
|
27605
27085
|
T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
|
|
27606
27086
|
'adjusted_estimates_upserted',
|
|
27607
27087
|
'adjusted_estimates_deleted',
|
|
27608
|
-
'
|
|
27609
|
-
'
|
|
27088
|
+
'shipping_estimate_upserted',
|
|
27089
|
+
'shipping_estimate_deleted',
|
|
27610
27090
|
'adyen_authorization_deleted',
|
|
27611
27091
|
'adyen_authorization_upserted',
|
|
27612
27092
|
'adyen_cancel_deleted',
|
|
@@ -27774,7 +27254,6 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
|
|
|
27774
27254
|
'center_defaults_deleted',
|
|
27775
27255
|
'fulfillment_fallbacks_upserted',
|
|
27776
27256
|
'fulfillment_fallbacks_deleted',
|
|
27777
|
-
'pregenerated_request_event',
|
|
27778
27257
|
'quote_upserted',
|
|
27779
27258
|
'quote_deleted',
|
|
27780
27259
|
'all_items_export',
|
|
@@ -27783,7 +27262,6 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
|
|
|
27783
27262
|
'dutied_items_export',
|
|
27784
27263
|
'harmonization_phrase_suggestion_request_import',
|
|
27785
27264
|
'harmonization_codes_import',
|
|
27786
|
-
'item_classification_created',
|
|
27787
27265
|
'harmonize_fully_request_v2',
|
|
27788
27266
|
'import_completed',
|
|
27789
27267
|
'import_failed',
|
|
@@ -27797,8 +27275,6 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
|
|
|
27797
27275
|
'rate_freshness_summary_deleted',
|
|
27798
27276
|
'item_harmonization_upserted',
|
|
27799
27277
|
'item_harmonization_deleted',
|
|
27800
|
-
'harmonization_item_classification_upserted',
|
|
27801
|
-
'harmonization_item_classification_deleted',
|
|
27802
27278
|
'harmonization_classification_statistics_published',
|
|
27803
27279
|
'issuer_upserted',
|
|
27804
27280
|
'issuer_deleted',
|
|
@@ -27811,20 +27287,9 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
|
|
|
27811
27287
|
'order_validation_deleted',
|
|
27812
27288
|
'label_tracking_summary_upserted',
|
|
27813
27289
|
'label_tracking_summary_deleted',
|
|
27814
|
-
'localized_item_upserted_v2',
|
|
27815
|
-
'localized_item_deleted',
|
|
27816
|
-
'localized_item_deleted_v2',
|
|
27817
|
-
'localized_item_snapshot',
|
|
27818
|
-
'localized_price_book_item_upserted',
|
|
27819
|
-
'localized_price_book_item_deleted',
|
|
27820
27290
|
'logistics_capabilities_upserted',
|
|
27821
27291
|
'logistics_capabilities_deleted',
|
|
27822
|
-
'feed_upserted',
|
|
27823
|
-
'feed_deleted',
|
|
27824
|
-
'feeds_export',
|
|
27825
27292
|
'localized_item_prices_export_request',
|
|
27826
|
-
'optin_prompt_upserted',
|
|
27827
|
-
'optin_prompt_deleted',
|
|
27828
27293
|
'order_combined_shipment_upserted',
|
|
27829
27294
|
'order_combined_shipment_deleted',
|
|
27830
27295
|
'order_fulfillment_deleted',
|
|
@@ -27890,8 +27355,6 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
|
|
|
27890
27355
|
'ratecard_standard_configuration_deleted',
|
|
27891
27356
|
'ratecard_service_fee_upserted',
|
|
27892
27357
|
'ratecard_service_fee_deleted',
|
|
27893
|
-
'ratecard_lane_aggregate_upserted',
|
|
27894
|
-
'ratecard_lane_aggregate_deleted',
|
|
27895
27358
|
'ratecard_rate_level_upserted',
|
|
27896
27359
|
'ratecard_rate_level_deleted',
|
|
27897
27360
|
'ratecard_rate_level_ratecard_upserted',
|
|
@@ -28003,11 +27466,8 @@ T['io.flow.internal.v0.enums.graphql_service_types'] = PropTypes.oneOf([
|
|
|
28003
27466
|
|
|
28004
27467
|
T['io.flow.internal.v0.enums.http_method'] = PropTypes.oneOf(['get', 'post']);
|
|
28005
27468
|
T['io.flow.internal.v0.enums.label_billing_strategy'] = PropTypes.oneOf(['quote', 'carrier']);
|
|
28006
|
-
T['io.flow.internal.v0.enums.label_event_source'] = PropTypes.oneOf(['aftership', 'carrier', 'flow']);
|
|
28007
27469
|
T['io.flow.internal.v0.enums.label_request_result_organization_type'] = PropTypes.oneOf(['all', 'legacy_production', 'managed_markets_production', 'sandbox']);
|
|
28008
27470
|
T['io.flow.internal.v0.enums.label_transaction_type'] = PropTypes.oneOf(['adjustment', 'reversal', 'billable_label', 'fee', 'revenue_share']);
|
|
28009
|
-
T['io.flow.internal.v0.enums.marketing_gateway_feed_download_format'] = PropTypes.oneOf(['tsv', 'csv', 'txt']);
|
|
28010
|
-
T['io.flow.internal.v0.enums.marketing_gateway_product_status'] = PropTypes.oneOf(['approved', 'not_approved', 'pending', 'not_found', 'excluded']);
|
|
28011
27471
|
T['io.flow.internal.v0.enums.onboarding_automation_process_state'] = PropTypes.oneOf(['not_started', 'in_progress', 'success', 'failed']);
|
|
28012
27472
|
T['io.flow.internal.v0.enums.onboarding_automation_task_state'] = PropTypes.oneOf(['not_started', 'in_progress', 'success', 'failed']);
|
|
28013
27473
|
|
|
@@ -28264,11 +27724,6 @@ T['io.flow.internal.v0.models.checkout_configuration_reference'] = PropTypes.exa
|
|
|
28264
27724
|
id: PropTypes.string.isRequired,
|
|
28265
27725
|
});
|
|
28266
27726
|
|
|
28267
|
-
T['io.flow.internal.v0.models.checkout_source_order_form'] = PropTypes.exact({
|
|
28268
|
-
source_order_number: PropTypes.string.isRequired,
|
|
28269
|
-
feature_q: PropTypes.string,
|
|
28270
|
-
});
|
|
28271
|
-
|
|
28272
27727
|
T['io.flow.internal.v0.models.cipher'] = PropTypes.exact({
|
|
28273
27728
|
id: PropTypes.string.isRequired,
|
|
28274
27729
|
attributes: PropTypes.objectOf(PropTypes.string).isRequired,
|
|
@@ -28639,6 +28094,13 @@ T['io.flow.internal.v0.models.label_generation_settings_form'] = PropTypes.exact
|
|
|
28639
28094
|
commercial_invoice_only_query: PropTypes.string,
|
|
28640
28095
|
});
|
|
28641
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
|
+
|
|
28642
28104
|
T['io.flow.internal.v0.models.landed_cost_item'] = PropTypes.exact({
|
|
28643
28105
|
number: PropTypes.string.isRequired,
|
|
28644
28106
|
origin: PropTypes.string.isRequired,
|
|
@@ -28658,48 +28120,6 @@ T['io.flow.internal.v0.models.magento_install_form'] = PropTypes.exact({
|
|
|
28658
28120
|
token: PropTypes.string.isRequired,
|
|
28659
28121
|
});
|
|
28660
28122
|
|
|
28661
|
-
T['io.flow.internal.v0.models.marketing_gateway_facebook_business'] = PropTypes.exact({
|
|
28662
|
-
business_id: PropTypes.number.isRequired,
|
|
28663
|
-
name: PropTypes.string.isRequired,
|
|
28664
|
-
});
|
|
28665
|
-
|
|
28666
|
-
T['io.flow.internal.v0.models.marketing_gateway_facebook_catalog_form'] = PropTypes.exact({
|
|
28667
|
-
catalog_id: PropTypes.number.isRequired,
|
|
28668
|
-
});
|
|
28669
|
-
|
|
28670
|
-
T['io.flow.internal.v0.models.marketing_gateway_facebook_catalog_summary'] = PropTypes.exact({
|
|
28671
|
-
catalog_id: PropTypes.number.isRequired,
|
|
28672
|
-
name: PropTypes.string.isRequired,
|
|
28673
|
-
item_count: PropTypes.number.isRequired,
|
|
28674
|
-
});
|
|
28675
|
-
|
|
28676
|
-
T['io.flow.internal.v0.models.marketing_gateway_facebook_connection_deauth'] = PropTypes.exact({
|
|
28677
|
-
user_id: PropTypes.number.isRequired,
|
|
28678
|
-
});
|
|
28679
|
-
|
|
28680
|
-
T['io.flow.internal.v0.models.marketing_gateway_facebook_connection_form'] = PropTypes.exact({
|
|
28681
|
-
access_token: PropTypes.string.isRequired,
|
|
28682
|
-
});
|
|
28683
|
-
|
|
28684
|
-
T['io.flow.internal.v0.models.marketing_gateway_feed_export_form'] = PropTypes.exact({
|
|
28685
|
-
feed_ids: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
28686
|
-
emails: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
28687
|
-
});
|
|
28688
|
-
|
|
28689
|
-
T['io.flow.internal.v0.models.marketing_gateway_google_account_form'] = PropTypes.exact({
|
|
28690
|
-
account_id: PropTypes.number.isRequired,
|
|
28691
|
-
});
|
|
28692
|
-
|
|
28693
|
-
T['io.flow.internal.v0.models.marketing_gateway_google_connection_form'] = PropTypes.exact({
|
|
28694
|
-
access_token: PropTypes.string.isRequired,
|
|
28695
|
-
refresh_token: PropTypes.string.isRequired,
|
|
28696
|
-
});
|
|
28697
|
-
|
|
28698
|
-
T['io.flow.internal.v0.models.marketing_gateway_new_channel_request_form'] = PropTypes.exact({
|
|
28699
|
-
requested_by_user_id: PropTypes.string.isRequired,
|
|
28700
|
-
channel_name: PropTypes.string.isRequired,
|
|
28701
|
-
});
|
|
28702
|
-
|
|
28703
28123
|
T['io.flow.internal.v0.models.markets_order_summary'] = PropTypes.exact({
|
|
28704
28124
|
id: PropTypes.string.isRequired,
|
|
28705
28125
|
});
|
|
@@ -28949,13 +28369,6 @@ T['io.flow.internal.v0.models.session_rollout_form'] = PropTypes.exact({
|
|
|
28949
28369
|
percent: PropTypes.number.isRequired,
|
|
28950
28370
|
});
|
|
28951
28371
|
|
|
28952
|
-
T['io.flow.internal.v0.models.shawn_roundtable_workshop_rate'] = PropTypes.exact({
|
|
28953
|
-
origin_country: PropTypes.string.isRequired,
|
|
28954
|
-
destination_country: PropTypes.string.isRequired,
|
|
28955
|
-
weight: PropTypes.number.isRequired,
|
|
28956
|
-
amount: PropTypes.number.isRequired,
|
|
28957
|
-
});
|
|
28958
|
-
|
|
28959
28372
|
T['io.flow.internal.v0.models.shipping_lane'] = PropTypes.exact({
|
|
28960
28373
|
origin: PropTypes.string.isRequired,
|
|
28961
28374
|
destination: PropTypes.string.isRequired,
|
|
@@ -29236,6 +28649,17 @@ T['io.flow.export.v0.models.landed_cost_item'] = PropTypes.exact({
|
|
|
29236
28649
|
destination: PropTypes.string.isRequired,
|
|
29237
28650
|
});
|
|
29238
28651
|
|
|
28652
|
+
T['io.flow.payment.v0.models.authorization_retry'] = PropTypes.exact({
|
|
28653
|
+
id: PropTypes.string.isRequired,
|
|
28654
|
+
authorization_request_id: PropTypes.string.isRequired,
|
|
28655
|
+
authorization_id: PropTypes.string.isRequired,
|
|
28656
|
+
organization_id: PropTypes.string.isRequired,
|
|
28657
|
+
attempt: PropTypes.number.isRequired,
|
|
28658
|
+
last_failure_code: PropTypes.string.isRequired,
|
|
28659
|
+
created_at: PropTypes.string.isRequired,
|
|
28660
|
+
updated_at: PropTypes.string.isRequired,
|
|
28661
|
+
});
|
|
28662
|
+
|
|
29239
28663
|
T['io.flow.payment.v0.models.capture_form'] = PropTypes.exact({
|
|
29240
28664
|
authorization_id: PropTypes.string.isRequired,
|
|
29241
28665
|
key: PropTypes.string,
|
|
@@ -29288,6 +28712,7 @@ T['io.flow.payment.v0.models.reversal_put_form'] = PropTypes.exact({
|
|
|
29288
28712
|
});
|
|
29289
28713
|
|
|
29290
28714
|
T['io.flow.stripe.v0.enums.event_type'] = PropTypes.oneOf([
|
|
28715
|
+
'capability.updated',
|
|
29291
28716
|
'charge.captured',
|
|
29292
28717
|
'charge.failed',
|
|
29293
28718
|
'charge.pending',
|
|
@@ -29922,6 +29347,10 @@ T['io.flow.common.v0.enums.schedule_exception_status'] = PropTypes.oneOf(['Open'
|
|
|
29922
29347
|
T['io.flow.common.v0.enums.sort_direction'] = PropTypes.oneOf(['ascending', 'descending']);
|
|
29923
29348
|
T['io.flow.common.v0.enums.value_added_service'] = PropTypes.oneOf(['Hazardous Material']);
|
|
29924
29349
|
|
|
29350
|
+
T['io.flow.common.v0.models.checkout_reference'] = PropTypes.exact({
|
|
29351
|
+
id: PropTypes.string.isRequired,
|
|
29352
|
+
});
|
|
29353
|
+
|
|
29925
29354
|
T['io.flow.common.v0.models.input_form'] = PropTypes.exact({
|
|
29926
29355
|
values: PropTypes.objectOf(PropTypes.string),
|
|
29927
29356
|
});
|
|
@@ -30040,6 +29469,10 @@ T['io.flow.experience.v0.models.order_number_generator_generated_number'] = Prop
|
|
|
30040
29469
|
number: PropTypes.string.isRequired,
|
|
30041
29470
|
});
|
|
30042
29471
|
|
|
29472
|
+
T['io.flow.experience.v0.models.order_number_reference'] = PropTypes.exact({
|
|
29473
|
+
number: PropTypes.string.isRequired,
|
|
29474
|
+
});
|
|
29475
|
+
|
|
30043
29476
|
T['io.flow.experience.v0.models.order_service_change_form'] = PropTypes.exact({
|
|
30044
29477
|
from_service_id: PropTypes.string.isRequired,
|
|
30045
29478
|
to_service_id: PropTypes.string.isRequired,
|
|
@@ -30600,16 +30033,6 @@ export const booleanFeatureRuleForm = T['io.flow.internal.v0.models.boolean_feat
|
|
|
30600
30033
|
export const booleanFeatureValue = T['io.flow.internal.v0.models.boolean_feature_value'];
|
|
30601
30034
|
export const brickWebhookEvent = T['io.flow.internal.v0.models.brick_webhook_event'];
|
|
30602
30035
|
export const brickWebhookEventResponse = T['io.flow.internal.v0.models.brick_webhook_event_response'];
|
|
30603
|
-
export const browserBundle = T['io.flow.internal.v0.models.browser_bundle'];
|
|
30604
|
-
export const browserBundleCountryPickerForm = T['io.flow.internal.v0.models.browser_bundle_country_picker_form'];
|
|
30605
|
-
export const browserBundleError = T['io.flow.internal.v0.models.browser_bundle_error'];
|
|
30606
|
-
export const browserBundleErrorCode = T['io.flow.internal.v0.enums.browser_bundle_error_code'];
|
|
30607
|
-
export const browserBundleFeatureForm = T['io.flow.internal.v0.models.browser_bundle_feature_form'];
|
|
30608
|
-
export const browserBundleForm = T['io.flow.internal.v0.models.browser_bundle_form'];
|
|
30609
|
-
export const browserBundleOptinForm = T['io.flow.internal.v0.models.browser_bundle_optin_form'];
|
|
30610
|
-
export const browserBundlePaymentMethod = T['io.flow.internal.v0.models.browser_bundle_payment_method'];
|
|
30611
|
-
export const browserBundlePaymentMethodForm = T['io.flow.internal.v0.models.browser_bundle_payment_method_form'];
|
|
30612
|
-
export const browserBundlePaymentMethods = T['io.flow.internal.v0.models.browser_bundle_payment_methods'];
|
|
30613
30036
|
export const bulkClassificationAction = T['io.flow.internal.v0.models.bulk_classification_action'];
|
|
30614
30037
|
export const bulkDutyUpdateValidationError = T['io.flow.internal.v0.models.bulk_duty_update_validation_error'];
|
|
30615
30038
|
export const calculatedTaxAmount = T['io.flow.internal.v0.models.calculated_tax_amount'];
|
|
@@ -30745,8 +30168,6 @@ export const checkoutBehaviorCustomerInfo = T['io.flow.internal.v0.models.checko
|
|
|
30745
30168
|
export const checkoutBehaviorCustomerInfoEmail = T['io.flow.internal.v0.models.checkout_behavior_customer_info_email'];
|
|
30746
30169
|
export const checkoutBehaviorShippingAddress = T['io.flow.internal.v0.models.checkout_behavior_shipping_address'];
|
|
30747
30170
|
export const checkoutBehaviorShippingMethod = T['io.flow.internal.v0.models.checkout_behavior_shipping_method'];
|
|
30748
|
-
export const checkoutBundle = T['io.flow.internal.v0.models.checkout_bundle'];
|
|
30749
|
-
export const checkoutBundleMetadata = T['io.flow.internal.v0.models.checkout_bundle_metadata'];
|
|
30750
30171
|
export const checkoutConfiguration = T['io.flow.internal.v0.models.checkout_configuration'];
|
|
30751
30172
|
export const checkoutConfigurationDeleted = T['io.flow.internal.v0.models.checkout_configuration_deleted'];
|
|
30752
30173
|
export const checkoutConfigurationForm = T['io.flow.internal.v0.models.checkout_configuration_form'];
|
|
@@ -30757,27 +30178,15 @@ export const checkoutContentDetails = T['io.flow.internal.v0.models.checkout_con
|
|
|
30757
30178
|
export const checkoutContentSummary = T['io.flow.internal.v0.models.checkout_content_summary'];
|
|
30758
30179
|
export const checkoutError = T['io.flow.internal.v0.models.checkout_error'];
|
|
30759
30180
|
export const checkoutErrorCode = T['io.flow.internal.v0.enums.checkout_error_code'];
|
|
30760
|
-
export const checkoutFinalizeOrderForm = T['io.flow.internal.v0.models.checkout_finalize_order_form'];
|
|
30761
|
-
export const checkoutForm = T['io.flow.internal.v0.unions.checkout_form'];
|
|
30762
30181
|
export const checkoutMarketingContent = T['io.flow.internal.v0.models.checkout_marketing_content'];
|
|
30763
|
-
export const checkoutOrderForm = T['io.flow.internal.v0.models.checkout_order_form'];
|
|
30764
|
-
export const checkoutOrderNumberForm = T['io.flow.internal.v0.models.checkout_order_number_form'];
|
|
30765
30182
|
export const checkoutPayment = T['io.flow.internal.v0.models.checkout_payment'];
|
|
30766
30183
|
export const checkoutPaymentContent = T['io.flow.internal.v0.models.checkout_payment_content'];
|
|
30767
30184
|
export const checkoutPlatformData = T['io.flow.internal.v0.models.checkout_platform_data'];
|
|
30768
30185
|
export const checkoutPromptBehavior = T['io.flow.internal.v0.enums.checkout_prompt_behavior'];
|
|
30769
30186
|
export const checkoutRedirect = T['io.flow.internal.v0.models.checkout_redirect'];
|
|
30770
30187
|
export const checkoutRedirectMethod = T['io.flow.internal.v0.enums.checkout_redirect_method'];
|
|
30771
|
-
export const checkoutReferenceForm = T['io.flow.internal.v0.models.checkout_reference_form'];
|
|
30772
30188
|
export const checkoutSettings = T['io.flow.internal.v0.models.checkout_settings'];
|
|
30773
30189
|
export const checkoutShippingMethodPromptBehavior = T['io.flow.internal.v0.enums.checkout_shipping_method_prompt_behavior'];
|
|
30774
|
-
export const checkoutSourceOrderForm = T['io.flow.internal.v0.models.checkout_source_order_form'];
|
|
30775
|
-
export const checkoutSubmission = T['io.flow.internal.v0.models.checkout_submission'];
|
|
30776
|
-
export const checkoutSubmissionForm = T['io.flow.internal.v0.models.checkout_submission_form'];
|
|
30777
|
-
export const checkoutSubmitOrderBundle = T['io.flow.internal.v0.models.checkout_submit_order_bundle'];
|
|
30778
|
-
export const checkoutSubmitOrderBundles = T['io.flow.internal.v0.unions.checkout_submit_order_bundles'];
|
|
30779
|
-
export const checkoutSubmitOrderForm = T['io.flow.internal.v0.models.checkout_submit_order_form'];
|
|
30780
|
-
export const checkoutSubmitOrderForms = T['io.flow.internal.v0.unions.checkout_submit_order_forms'];
|
|
30781
30190
|
export const checkoutUrl = T['io.flow.internal.v0.models.checkout_url'];
|
|
30782
30191
|
export const checkoutUrlType = T['io.flow.internal.v0.enums.checkout_url_type'];
|
|
30783
30192
|
export const cipher = T['io.flow.internal.v0.models.cipher'];
|
|
@@ -31004,7 +30413,6 @@ export const eventType = T['io.flow.internal.v0.enums.event_type'];
|
|
|
31004
30413
|
export const exclusionRuleDeleted = T['io.flow.internal.v0.models.exclusion_rule_deleted'];
|
|
31005
30414
|
export const exclusionRuleExportRequest = T['io.flow.internal.v0.models.exclusion_rule_export_request'];
|
|
31006
30415
|
export const exclusionRuleUpserted = T['io.flow.internal.v0.models.exclusion_rule_upserted'];
|
|
31007
|
-
export const expectedOrderSummary = T['io.flow.internal.v0.models.expected_order_summary'];
|
|
31008
30416
|
export const experienceExportRequest = T['io.flow.internal.v0.models.experience_export_request'];
|
|
31009
30417
|
export const experienceImportRequest = T['io.flow.internal.v0.models.experience_import_request'];
|
|
31010
30418
|
export const experienceImportType = T['io.flow.internal.v0.enums.experience_import_type'];
|
|
@@ -31055,14 +30463,8 @@ export const featureValueResult = T['io.flow.internal.v0.models.feature_value_re
|
|
|
31055
30463
|
export const fedex = T['io.flow.internal.v0.models.fedex'];
|
|
31056
30464
|
export const fedexCrossborder = T['io.flow.internal.v0.models.fedex_crossborder'];
|
|
31057
30465
|
export const fee = T['io.flow.internal.v0.models.fee'];
|
|
31058
|
-
export const feedDeleted = T['io.flow.internal.v0.models.feed_deleted'];
|
|
31059
|
-
export const feedUpserted = T['io.flow.internal.v0.models.feed_upserted'];
|
|
31060
|
-
export const feedsExport = T['io.flow.internal.v0.models.feeds_export'];
|
|
31061
30466
|
export const fees = T['io.flow.internal.v0.models.fees'];
|
|
31062
30467
|
export const feesSource = T['io.flow.internal.v0.enums.fees_source'];
|
|
31063
|
-
export const finalEstimate = T['io.flow.internal.v0.models.final_estimate'];
|
|
31064
|
-
export const finalEstimateDeleted = T['io.flow.internal.v0.models.final_estimate_deleted'];
|
|
31065
|
-
export const finalEstimateUpserted = T['io.flow.internal.v0.models.final_estimate_upserted'];
|
|
31066
30468
|
export const financeBankAccount = T['io.flow.internal.v0.models.finance_bank_account'];
|
|
31067
30469
|
export const financeBankAccountOwner = T['io.flow.internal.v0.models.finance_bank_account_owner'];
|
|
31068
30470
|
export const financeBankPayment = T['io.flow.internal.v0.models.finance_bank_payment'];
|
|
@@ -31144,7 +30546,6 @@ export const fulfillmentDeleted = T['io.flow.internal.v0.models.fulfillment_dele
|
|
|
31144
30546
|
export const fulfillmentFallbacks = T['io.flow.internal.v0.models.fulfillment_fallbacks'];
|
|
31145
30547
|
export const fulfillmentFallbacksDeleted = T['io.flow.internal.v0.models.fulfillment_fallbacks_deleted'];
|
|
31146
30548
|
export const fulfillmentFallbacksUpserted = T['io.flow.internal.v0.models.fulfillment_fallbacks_upserted'];
|
|
31147
|
-
export const fulfillmentInternalExperienceReference = T['io.flow.internal.v0.models.fulfillment_internal_experience_reference'];
|
|
31148
30549
|
export const fulfillmentOrigin = T['io.flow.internal.v0.models.fulfillment_origin'];
|
|
31149
30550
|
export const fulfillmentProof = T['io.flow.internal.v0.unions.fulfillment_proof'];
|
|
31150
30551
|
export const fulfillmentProofExternalFulfillmentProofReference = T['io.flow.internal.v0.models.fulfillment_proof_external_fulfillment_proof_reference'];
|
|
@@ -31192,8 +30593,6 @@ export const harmonizationCodesImport = T['io.flow.internal.v0.models.harmonizat
|
|
|
31192
30593
|
export const harmonizationColumnSetting = T['io.flow.internal.v0.models.harmonization_column_setting'];
|
|
31193
30594
|
export const harmonizationDecisionSource = T['io.flow.internal.v0.enums.harmonization_decision_source'];
|
|
31194
30595
|
export const harmonizationItemClassification = T['io.flow.internal.v0.models.harmonization_item_classification'];
|
|
31195
|
-
export const harmonizationItemClassificationDeleted = T['io.flow.internal.v0.models.harmonization_item_classification_deleted'];
|
|
31196
|
-
export const harmonizationItemClassificationUpserted = T['io.flow.internal.v0.models.harmonization_item_classification_upserted'];
|
|
31197
30596
|
export const harmonizationItemSummary = T['io.flow.internal.v0.models.harmonization_item_summary'];
|
|
31198
30597
|
export const harmonizationMlModelSummary = T['io.flow.internal.v0.models.harmonization_ml_model_summary'];
|
|
31199
30598
|
export const harmonizationPhraseSuggestionRequestImport = T['io.flow.internal.v0.models.harmonization_phrase_suggestion_request_import'];
|
|
@@ -31234,7 +30633,6 @@ export const internalRefundForm = T['io.flow.internal.v0.unions.internal_refund_
|
|
|
31234
30633
|
export const internalStripeAuthorizationDetails = T['io.flow.internal.v0.models.internal_stripe_authorization_details'];
|
|
31235
30634
|
export const internalTransactionDetails = T['io.flow.internal.v0.unions.internal_transaction_details'];
|
|
31236
30635
|
export const internalTransactionDetailsCard = T['io.flow.internal.v0.models.internal_transaction_details_card'];
|
|
31237
|
-
export const invalidCheckoutData = T['io.flow.internal.v0.models.invalid_checkout_data'];
|
|
31238
30636
|
export const invariant = T['io.flow.internal.v0.models.invariant'];
|
|
31239
30637
|
export const inventoryItemWrapper = T['io.flow.internal.v0.models.inventory_item_wrapper'];
|
|
31240
30638
|
export const invoice = T['io.flow.internal.v0.models.invoice'];
|
|
@@ -31247,7 +30645,6 @@ export const issuerDeleted = T['io.flow.internal.v0.models.issuer_deleted'];
|
|
|
31247
30645
|
export const issuerUpserted = T['io.flow.internal.v0.models.issuer_upserted'];
|
|
31248
30646
|
export const itemClassification = T['io.flow.internal.v0.models.item_classification'];
|
|
31249
30647
|
export const itemClassificationAction = T['io.flow.internal.v0.enums.item_classification_action'];
|
|
31250
|
-
export const itemClassificationCreated = T['io.flow.internal.v0.models.item_classification_created'];
|
|
31251
30648
|
export const itemClassificationForm = T['io.flow.internal.v0.models.item_classification_form'];
|
|
31252
30649
|
export const itemClassificationStatus = T['io.flow.internal.v0.enums.item_classification_status'];
|
|
31253
30650
|
export const itemClassificationSummary = T['io.flow.internal.v0.models.item_classification_summary'];
|
|
@@ -31297,6 +30694,7 @@ export const labelCreationJobSummary = T['io.flow.internal.v0.models.label_creat
|
|
|
31297
30694
|
export const labelCreationRequestForm = T['io.flow.internal.v0.models.label_creation_request_form'];
|
|
31298
30695
|
export const labelCreationStatus = T['io.flow.internal.v0.enums.label_creation_status'];
|
|
31299
30696
|
export const labelDestination = T['io.flow.internal.v0.models.label_destination'];
|
|
30697
|
+
export const labelEventMedium = T['io.flow.internal.v0.enums.label_event_medium'];
|
|
31300
30698
|
export const labelEventSource = T['io.flow.internal.v0.enums.label_event_source'];
|
|
31301
30699
|
export const labelGenerationSettings = T['io.flow.internal.v0.models.label_generation_settings'];
|
|
31302
30700
|
export const labelGenerationSettingsDeleted = T['io.flow.internal.v0.models.label_generation_settings_deleted'];
|
|
@@ -31351,16 +30749,9 @@ export const localizedContent = T['io.flow.internal.v0.models.localized_content'
|
|
|
31351
30749
|
export const localizedContentElement = T['io.flow.internal.v0.models.localized_content_element'];
|
|
31352
30750
|
export const localizedContentForm = T['io.flow.internal.v0.models.localized_content_form'];
|
|
31353
30751
|
export const localizedContentUpserted = T['io.flow.internal.v0.models.localized_content_upserted'];
|
|
31354
|
-
export const localizedItemDeleted = T['io.flow.internal.v0.models.localized_item_deleted'];
|
|
31355
|
-
export const localizedItemDeletedV2 = T['io.flow.internal.v0.models.localized_item_deleted_v2'];
|
|
31356
30752
|
export const localizedItemPricesExportRequest = T['io.flow.internal.v0.models.localized_item_prices_export_request'];
|
|
31357
|
-
export const localizedItemSnapshot = T['io.flow.internal.v0.models.localized_item_snapshot'];
|
|
31358
|
-
export const localizedItemUpsertedV2 = T['io.flow.internal.v0.models.localized_item_upserted_v2'];
|
|
31359
30753
|
export const localizedItemsExportSettings = T['io.flow.internal.v0.models.localized_items_export_settings'];
|
|
31360
|
-
export const localizedPriceBookItem = T['io.flow.internal.v0.models.localized_price_book_item'];
|
|
31361
30754
|
export const localizedPriceBookItemData = T['io.flow.internal.v0.models.localized_price_book_item_data'];
|
|
31362
|
-
export const localizedPriceBookItemDeleted = T['io.flow.internal.v0.models.localized_price_book_item_deleted'];
|
|
31363
|
-
export const localizedPriceBookItemUpserted = T['io.flow.internal.v0.models.localized_price_book_item_upserted'];
|
|
31364
30755
|
export const location = T['io.flow.internal.v0.models.location'];
|
|
31365
30756
|
export const logisticsCapabilities = T['io.flow.internal.v0.models.logistics_capabilities'];
|
|
31366
30757
|
export const logisticsCapabilitiesDeleted = T['io.flow.internal.v0.models.logistics_capabilities_deleted'];
|
|
@@ -31392,58 +30783,6 @@ export const manualTransactionCategory = T['io.flow.internal.v0.enums.manual_tra
|
|
|
31392
30783
|
export const manualTransactionForm = T['io.flow.internal.v0.models.manual_transaction_form'];
|
|
31393
30784
|
export const manualTransactionFormOrder = T['io.flow.internal.v0.models.manual_transaction_form_order'];
|
|
31394
30785
|
export const markedAsFinal = T['io.flow.internal.v0.models.marked_as_final'];
|
|
31395
|
-
export const marketingGatewayAccountConnectionStatus = T['io.flow.internal.v0.enums.marketing_gateway_account_connection_status'];
|
|
31396
|
-
export const marketingGatewayChannel = T['io.flow.internal.v0.models.marketing_gateway_channel'];
|
|
31397
|
-
export const marketingGatewayChannelConnectionForm = T['io.flow.internal.v0.models.marketing_gateway_channel_connection_form'];
|
|
31398
|
-
export const marketingGatewayChannelDetails = T['io.flow.internal.v0.unions.marketing_gateway_channel_details'];
|
|
31399
|
-
export const marketingGatewayChannelForm = T['io.flow.internal.v0.models.marketing_gateway_channel_form'];
|
|
31400
|
-
export const marketingGatewayChannelIntegrationType = T['io.flow.internal.v0.enums.marketing_gateway_channel_integration_type'];
|
|
31401
|
-
export const marketingGatewayChannelSourceSummary = T['io.flow.internal.v0.models.marketing_gateway_channel_source_summary'];
|
|
31402
|
-
export const marketingGatewayChannelStatus = T['io.flow.internal.v0.enums.marketing_gateway_channel_status'];
|
|
31403
|
-
export const marketingGatewayDistributionChannel = T['io.flow.internal.v0.unions.marketing_gateway_distribution_channel'];
|
|
31404
|
-
export const marketingGatewayDistributionChannelFacebook = T['io.flow.internal.v0.models.marketing_gateway_distribution_channel_facebook'];
|
|
31405
|
-
export const marketingGatewayDistributionChannelGoogle = T['io.flow.internal.v0.models.marketing_gateway_distribution_channel_google'];
|
|
31406
|
-
export const marketingGatewayError = T['io.flow.internal.v0.models.marketing_gateway_error'];
|
|
31407
|
-
export const marketingGatewayErrorCode = T['io.flow.internal.v0.enums.marketing_gateway_error_code'];
|
|
31408
|
-
export const marketingGatewayFacebookBusiness = T['io.flow.internal.v0.models.marketing_gateway_facebook_business'];
|
|
31409
|
-
export const marketingGatewayFacebookBusinessSummary = T['io.flow.internal.v0.models.marketing_gateway_facebook_business_summary'];
|
|
31410
|
-
export const marketingGatewayFacebookCatalogForm = T['io.flow.internal.v0.models.marketing_gateway_facebook_catalog_form'];
|
|
31411
|
-
export const marketingGatewayFacebookCatalogSummary = T['io.flow.internal.v0.models.marketing_gateway_facebook_catalog_summary'];
|
|
31412
|
-
export const marketingGatewayFacebookChannelDetails = T['io.flow.internal.v0.models.marketing_gateway_facebook_channel_details'];
|
|
31413
|
-
export const marketingGatewayFacebookConnection = T['io.flow.internal.v0.models.marketing_gateway_facebook_connection'];
|
|
31414
|
-
export const marketingGatewayFacebookConnectionAccessTokenSummary = T['io.flow.internal.v0.models.marketing_gateway_facebook_connection_access_token_summary'];
|
|
31415
|
-
export const marketingGatewayFacebookConnectionDeauth = T['io.flow.internal.v0.models.marketing_gateway_facebook_connection_deauth'];
|
|
31416
|
-
export const marketingGatewayFacebookConnectionForm = T['io.flow.internal.v0.models.marketing_gateway_facebook_connection_form'];
|
|
31417
|
-
export const marketingGatewayFacebookSourceSummary = T['io.flow.internal.v0.models.marketing_gateway_facebook_source_summary'];
|
|
31418
|
-
export const marketingGatewayFacebookTokenStatus = T['io.flow.internal.v0.enums.marketing_gateway_facebook_token_status'];
|
|
31419
|
-
export const marketingGatewayFeed = T['io.flow.internal.v0.models.marketing_gateway_feed'];
|
|
31420
|
-
export const marketingGatewayFeedDownloadFormat = T['io.flow.internal.v0.enums.marketing_gateway_feed_download_format'];
|
|
31421
|
-
export const marketingGatewayFeedExportForm = T['io.flow.internal.v0.models.marketing_gateway_feed_export_form'];
|
|
31422
|
-
export const marketingGatewayFeedForm = T['io.flow.internal.v0.models.marketing_gateway_feed_form'];
|
|
31423
|
-
export const marketingGatewayFeedFormRequest = T['io.flow.internal.v0.models.marketing_gateway_feed_form_request'];
|
|
31424
|
-
export const marketingGatewayFeedSource = T['io.flow.internal.v0.unions.marketing_gateway_feed_source'];
|
|
31425
|
-
export const marketingGatewayFeedSourceFacebook = T['io.flow.internal.v0.models.marketing_gateway_feed_source_facebook'];
|
|
31426
|
-
export const marketingGatewayFeedSourceGoogle = T['io.flow.internal.v0.models.marketing_gateway_feed_source_google'];
|
|
31427
|
-
export const marketingGatewayFeedState = T['io.flow.internal.v0.enums.marketing_gateway_feed_state'];
|
|
31428
|
-
export const marketingGatewayFilterSummary = T['io.flow.internal.v0.models.marketing_gateway_filter_summary'];
|
|
31429
|
-
export const marketingGatewayFlowSourceSummary = T['io.flow.internal.v0.models.marketing_gateway_flow_source_summary'];
|
|
31430
|
-
export const marketingGatewayGoogleAccountForm = T['io.flow.internal.v0.models.marketing_gateway_google_account_form'];
|
|
31431
|
-
export const marketingGatewayGoogleAccountSummary = T['io.flow.internal.v0.models.marketing_gateway_google_account_summary'];
|
|
31432
|
-
export const marketingGatewayGoogleChannelDetails = T['io.flow.internal.v0.models.marketing_gateway_google_channel_details'];
|
|
31433
|
-
export const marketingGatewayGoogleConnection = T['io.flow.internal.v0.models.marketing_gateway_google_connection'];
|
|
31434
|
-
export const marketingGatewayGoogleConnectionForm = T['io.flow.internal.v0.models.marketing_gateway_google_connection_form'];
|
|
31435
|
-
export const marketingGatewayGoogleItem = T['io.flow.internal.v0.models.marketing_gateway_google_item'];
|
|
31436
|
-
export const marketingGatewayGoogleSourceSummary = T['io.flow.internal.v0.models.marketing_gateway_google_source_summary'];
|
|
31437
|
-
export const marketingGatewayItem = T['io.flow.internal.v0.unions.marketing_gateway_item'];
|
|
31438
|
-
export const marketingGatewayLocalizedItem = T['io.flow.internal.v0.models.marketing_gateway_localized_item'];
|
|
31439
|
-
export const marketingGatewayNewChannelRequestForm = T['io.flow.internal.v0.models.marketing_gateway_new_channel_request_form'];
|
|
31440
|
-
export const marketingGatewayPlatform = T['io.flow.internal.v0.enums.marketing_gateway_platform'];
|
|
31441
|
-
export const marketingGatewayProductDatasourceSummary = T['io.flow.internal.v0.models.marketing_gateway_product_datasource_summary'];
|
|
31442
|
-
export const marketingGatewayProductStatus = T['io.flow.internal.v0.enums.marketing_gateway_product_status'];
|
|
31443
|
-
export const marketingGatewaySchemaCompatibility = T['io.flow.internal.v0.enums.marketing_gateway_schema_compatibility'];
|
|
31444
|
-
export const marketingGatewaySchemaSummary = T['io.flow.internal.v0.models.marketing_gateway_schema_summary'];
|
|
31445
|
-
export const marketingGatewaySourceSummary = T['io.flow.internal.v0.unions.marketing_gateway_source_summary'];
|
|
31446
|
-
export const marketingGatewaySupportedChannelDetails = T['io.flow.internal.v0.models.marketing_gateway_supported_channel_details'];
|
|
31447
30786
|
export const marketsOrder = T['io.flow.internal.v0.models.markets_order'];
|
|
31448
30787
|
export const marketsOrderSummary = T['io.flow.internal.v0.models.markets_order_summary'];
|
|
31449
30788
|
export const merchant = T['io.flow.internal.v0.models.merchant'];
|
|
@@ -31475,6 +30814,7 @@ export const noCalculatedTaxAmount = T['io.flow.internal.v0.models.no_calculated
|
|
|
31475
30814
|
export const noClassificationForm = T['io.flow.internal.v0.models.no_classification_form'];
|
|
31476
30815
|
export const noLiabilityReasonCode = T['io.flow.internal.v0.enums.no_liability_reason_code'];
|
|
31477
30816
|
export const nonChannelPaymentBankAccount = T['io.flow.internal.v0.models.non_channel_payment_bank_account'];
|
|
30817
|
+
export const nonL4LTaxDutyFxTransaction = T['io.flow.internal.v0.models.non_l4l_tax_duty_fx_transaction'];
|
|
31478
30818
|
export const notification = T['io.flow.internal.v0.models.notification'];
|
|
31479
30819
|
export const onboardingAuditMessage = T['io.flow.internal.v0.models.onboarding_audit_message'];
|
|
31480
30820
|
export const onboardingAuditMessageLevel = T['io.flow.internal.v0.enums.onboarding_audit_message_level'];
|
|
@@ -31497,10 +30837,8 @@ export const optinPrompt = T['io.flow.internal.v0.models.optin_prompt'];
|
|
|
31497
30837
|
export const optinPromptCheckoutDisplay = T['io.flow.internal.v0.models.optin_prompt_checkout_display'];
|
|
31498
30838
|
export const optinPromptCopy = T['io.flow.internal.v0.models.optin_prompt_copy'];
|
|
31499
30839
|
export const optinPromptCopyForm = T['io.flow.internal.v0.models.optin_prompt_copy_form'];
|
|
31500
|
-
export const optinPromptDeleted = T['io.flow.internal.v0.models.optin_prompt_deleted'];
|
|
31501
30840
|
export const optinPromptDisplay = T['io.flow.internal.v0.unions.optin_prompt_display'];
|
|
31502
30841
|
export const optinPromptForm = T['io.flow.internal.v0.models.optin_prompt_form'];
|
|
31503
|
-
export const optinPromptUpserted = T['io.flow.internal.v0.models.optin_prompt_upserted'];
|
|
31504
30842
|
export const orderAction = T['io.flow.internal.v0.enums.order_action'];
|
|
31505
30843
|
export const orderActionForm = T['io.flow.internal.v0.unions.order_action_form'];
|
|
31506
30844
|
export const orderActionability = T['io.flow.internal.v0.models.order_actionability'];
|
|
@@ -31526,11 +30864,9 @@ export const orderDetail = T['io.flow.internal.v0.models.order_detail'];
|
|
|
31526
30864
|
export const orderEditSummary = T['io.flow.internal.v0.models.order_edit_summary'];
|
|
31527
30865
|
export const orderFulfillmentDeleted = T['io.flow.internal.v0.models.order_fulfillment_deleted'];
|
|
31528
30866
|
export const orderFulfillmentUpserted = T['io.flow.internal.v0.models.order_fulfillment_upserted'];
|
|
31529
|
-
export const orderFxTransaction = T['io.flow.internal.v0.models.order_fx_transaction'];
|
|
31530
30867
|
export const orderLifecycleEvent = T['io.flow.internal.v0.enums.order_lifecycle_event'];
|
|
31531
30868
|
export const orderNote = T['io.flow.internal.v0.models.order_note'];
|
|
31532
30869
|
export const orderNoteForm = T['io.flow.internal.v0.models.order_note_form'];
|
|
31533
|
-
export const orderParameters = T['io.flow.internal.v0.models.order_parameters'];
|
|
31534
30870
|
export const orderPaymentAuthorization = T['io.flow.internal.v0.models.order_payment_authorization'];
|
|
31535
30871
|
export const orderPlaced = T['io.flow.internal.v0.models.order_placed'];
|
|
31536
30872
|
export const orderRatesDataV3 = T['io.flow.internal.v0.models.order_rates_data_v3'];
|
|
@@ -31667,6 +31003,8 @@ export const paymentProcessorAccountUpserted = T['io.flow.internal.v0.models.pay
|
|
|
31667
31003
|
export const paymentProcessorMerchantDeleted = T['io.flow.internal.v0.models.payment_processor_merchant_deleted'];
|
|
31668
31004
|
export const paymentProcessorMerchantUpserted = T['io.flow.internal.v0.models.payment_processor_merchant_upserted'];
|
|
31669
31005
|
export const paymentRedirect = T['io.flow.internal.v0.unions.payment_redirect'];
|
|
31006
|
+
export const paymentShortUrl = T['io.flow.internal.v0.models.payment_short_url'];
|
|
31007
|
+
export const paymentShortUrlDiscriminator = T['io.flow.internal.v0.enums.payment_short_url_discriminator'];
|
|
31670
31008
|
export const paymentSummary = T['io.flow.internal.v0.models.payment_summary'];
|
|
31671
31009
|
export const paymentSummaryDetails = T['io.flow.internal.v0.unions.payment_summary_details'];
|
|
31672
31010
|
export const paymentSummaryStatus = T['io.flow.internal.v0.enums.payment_summary_status'];
|
|
@@ -31713,8 +31051,6 @@ export const platformFeePercentage = T['io.flow.internal.v0.models.platform_fee_
|
|
|
31713
31051
|
export const platformFeePercentageTier = T['io.flow.internal.v0.models.platform_fee_percentage_tier'];
|
|
31714
31052
|
export const prediction = T['io.flow.internal.v0.models.prediction'];
|
|
31715
31053
|
export const preferredBillingSchedule = T['io.flow.internal.v0.enums.preferred_billing_schedule'];
|
|
31716
|
-
export const pregeneratedQuote = T['io.flow.internal.v0.models.pregenerated_quote'];
|
|
31717
|
-
export const pregeneratedRequestEvent = T['io.flow.internal.v0.models.pregenerated_request_event'];
|
|
31718
31054
|
export const priceSelector = T['io.flow.internal.v0.enums.price_selector'];
|
|
31719
31055
|
export const prioritizedCenterReference = T['io.flow.internal.v0.models.prioritized_center_reference'];
|
|
31720
31056
|
export const processingTransaction = T['io.flow.internal.v0.models.processing_transaction'];
|
|
@@ -31771,8 +31107,6 @@ export const publicHub = T['io.flow.internal.v0.models.public_hub'];
|
|
|
31771
31107
|
export const publicHubForm = T['io.flow.internal.v0.models.public_hub_form'];
|
|
31772
31108
|
export const quote = T['io.flow.internal.v0.models.quote'];
|
|
31773
31109
|
export const quoteDeleted = T['io.flow.internal.v0.models.quote_deleted'];
|
|
31774
|
-
export const quoteRequest = T['io.flow.internal.v0.models.quote_request'];
|
|
31775
|
-
export const quoteRequestType = T['io.flow.internal.v0.enums.quote_request_type'];
|
|
31776
31110
|
export const quoteUpserted = T['io.flow.internal.v0.models.quote_upserted'];
|
|
31777
31111
|
export const rateAndRuleItem = T['io.flow.internal.v0.models.rate_and_rule_item'];
|
|
31778
31112
|
export const rateAndRuleItemForm = T['io.flow.internal.v0.models.rate_and_rule_item_form'];
|
|
@@ -31807,9 +31141,6 @@ export const ratecardDimensionEstimateDeleted = T['io.flow.internal.v0.models.ra
|
|
|
31807
31141
|
export const ratecardDimensionEstimateUpserted = T['io.flow.internal.v0.models.ratecard_dimension_estimate_upserted'];
|
|
31808
31142
|
export const ratecardInternalServiceFee = T['io.flow.internal.v0.models.ratecard_internal_service_fee'];
|
|
31809
31143
|
export const ratecardInternalSummary = T['io.flow.internal.v0.models.ratecard_internal_summary'];
|
|
31810
|
-
export const ratecardLaneAggregate = T['io.flow.internal.v0.models.ratecard_lane_aggregate'];
|
|
31811
|
-
export const ratecardLaneAggregateDeleted = T['io.flow.internal.v0.models.ratecard_lane_aggregate_deleted'];
|
|
31812
|
-
export const ratecardLaneAggregateUpserted = T['io.flow.internal.v0.models.ratecard_lane_aggregate_upserted'];
|
|
31813
31144
|
export const ratecardLanesImportRequest = T['io.flow.internal.v0.models.ratecard_lanes_import_request'];
|
|
31814
31145
|
export const ratecardRateLevelDeleted = T['io.flow.internal.v0.models.ratecard_rate_level_deleted'];
|
|
31815
31146
|
export const ratecardRateLevelOrganizationDeleted = T['io.flow.internal.v0.models.ratecard_rate_level_organization_deleted'];
|
|
@@ -31979,8 +31310,9 @@ export const sessionRollout = T['io.flow.internal.v0.models.session_rollout'];
|
|
|
31979
31310
|
export const sessionRolloutForm = T['io.flow.internal.v0.models.session_rollout_form'];
|
|
31980
31311
|
export const setupBlockPutForm = T['io.flow.internal.v0.models.setup_block_put_form'];
|
|
31981
31312
|
export const sfExpress = T['io.flow.internal.v0.models.sf_express'];
|
|
31982
|
-
export const shawnRoundtableWorkshopRate = T['io.flow.internal.v0.models.shawn_roundtable_workshop_rate'];
|
|
31983
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'];
|
|
31984
31316
|
export const shippingLane = T['io.flow.internal.v0.models.shipping_lane'];
|
|
31985
31317
|
export const shippingMethodReference = T['io.flow.internal.v0.models.shipping_method_reference'];
|
|
31986
31318
|
export const shop = T['io.flow.internal.v0.models.shop'];
|
|
@@ -32048,6 +31380,7 @@ export const shopifyMarketsTradeSector = T['io.flow.internal.v0.enums.shopify_ma
|
|
|
32048
31380
|
export const shopifyMarketsWebhookRegistration = T['io.flow.internal.v0.models.shopify_markets_webhook_registration'];
|
|
32049
31381
|
export const shopifyMarketsWebhookRegistrationDeleted = T['io.flow.internal.v0.models.shopify_markets_webhook_registration_deleted'];
|
|
32050
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'];
|
|
32051
31384
|
export const shopifyMetadata = T['io.flow.internal.v0.models.shopify_metadata'];
|
|
32052
31385
|
export const shopifyMonitoringCarrierService = T['io.flow.internal.v0.models.shopify_monitoring_carrier_service'];
|
|
32053
31386
|
export const shopifyMonitoringFulfillmentExternal = T['io.flow.internal.v0.models.shopify_monitoring_fulfillment_external'];
|
|
@@ -32079,6 +31412,7 @@ export const shopifyOrganizationSettingsForm = T['io.flow.internal.v0.models.sho
|
|
|
32079
31412
|
export const shopifyPartnerWebhook = T['io.flow.internal.v0.models.shopify_partner_webhook'];
|
|
32080
31413
|
export const shopifyPartnerWebhookRaw = T['io.flow.internal.v0.models.shopify_partner_webhook_raw'];
|
|
32081
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'];
|
|
32082
31416
|
export const shopifyProductBundle = T['io.flow.internal.v0.models.shopify_product_bundle'];
|
|
32083
31417
|
export const shopifyProductBundleDeleted = T['io.flow.internal.v0.models.shopify_product_bundle_deleted'];
|
|
32084
31418
|
export const shopifyProductBundleUnderlying = T['io.flow.internal.v0.models.shopify_product_bundle_underlying'];
|
|
@@ -32222,6 +31556,10 @@ export const taxCalculationErrorCode = T['io.flow.internal.v0.enums.tax_calculat
|
|
|
32222
31556
|
export const taxCalculationForm = T['io.flow.internal.v0.models.tax_calculation_form'];
|
|
32223
31557
|
export const taxCalculationLineItem = T['io.flow.internal.v0.models.tax_calculation_line_item'];
|
|
32224
31558
|
export const taxCalculationLineItemForm = T['io.flow.internal.v0.models.tax_calculation_line_item_form'];
|
|
31559
|
+
export const taxDutyDeltaMetadataActual = T['io.flow.internal.v0.models.tax_duty_delta_metadata_actual'];
|
|
31560
|
+
export const taxDutyDeltaMetadataActualProcessing = T['io.flow.internal.v0.models.tax_duty_delta_metadata_actual_processing'];
|
|
31561
|
+
export const taxDutyDeltaMetadataExpected = T['io.flow.internal.v0.models.tax_duty_delta_metadata_expected'];
|
|
31562
|
+
export const taxDutyDeltaMetadataExpectedProcessing = T['io.flow.internal.v0.models.tax_duty_delta_metadata_expected_processing'];
|
|
32225
31563
|
export const taxDutyDeltaTransaction = T['io.flow.internal.v0.models.tax_duty_delta_transaction'];
|
|
32226
31564
|
export const taxParty = T['io.flow.internal.v0.enums.tax_party'];
|
|
32227
31565
|
export const taxRemittanceTransaction = T['io.flow.internal.v0.models.tax_remittance_transaction'];
|