@flowio/api-internal-prop-types 9.24.110 → 9.24.112
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/api-internal.d.ts +235 -521
- package/lib/api-internal.js +1 -1
- package/package.json +2 -2
- package/src/api-internal.d.ts +235 -521
- package/src/api-internal.js +1357 -1653
package/src/api-internal.js
CHANGED
|
@@ -104,21 +104,6 @@ T['io.flow.organization.onboarding.state.v0.models.rejection_put_form'] = PropTy
|
|
|
104
104
|
});
|
|
105
105
|
|
|
106
106
|
T['io.flow.organization.onboarding.state.v0.enums.merchant_disabled_reason'] = PropTypes.oneOf(['merchant_deactivated', 'merchant_rejected']);
|
|
107
|
-
|
|
108
|
-
T['io.flow.checkout.v0.models.checkout_urls'] = PropTypes.exact({
|
|
109
|
-
continue_shopping: PropTypes.string,
|
|
110
|
-
confirmation: PropTypes.string,
|
|
111
|
-
invalid_checkout: PropTypes.string,
|
|
112
|
-
});
|
|
113
|
-
|
|
114
|
-
T['io.flow.experience.v0.models.order_number_reference'] = PropTypes.exact({
|
|
115
|
-
number: PropTypes.string.isRequired,
|
|
116
|
-
});
|
|
117
|
-
|
|
118
|
-
T['io.flow.common.v0.models.checkout_reference'] = PropTypes.exact({
|
|
119
|
-
id: PropTypes.string.isRequired,
|
|
120
|
-
});
|
|
121
|
-
|
|
122
107
|
T['io.flow.apple.pay.v0.enums.apple_pay_line_item_type'] = PropTypes.oneOf(['final', 'pending']);
|
|
123
108
|
T['io.flow.catalog.return.v0.enums.return_policy_state'] = PropTypes.oneOf(['current', 'deleting', 'updating']);
|
|
124
109
|
T['io.flow.fulfillment.v0.enums.tier_estimate_type'] = PropTypes.oneOf(['calculated', 'custom']);
|
|
@@ -169,6 +154,10 @@ T['io.flow.fulfillment.v0.models.quote_error'] = PropTypes.exact({
|
|
|
169
154
|
item_numbers: PropTypes.arrayOf(PropTypes.string),
|
|
170
155
|
});
|
|
171
156
|
|
|
157
|
+
T['io.flow.fulfillment.v0.models.delivery_option_reference'] = PropTypes.exact({
|
|
158
|
+
id: PropTypes.string.isRequired,
|
|
159
|
+
});
|
|
160
|
+
|
|
172
161
|
T['io.flow.fulfillment.v0.enums.preferred_service_selection_strategy'] = PropTypes.oneOf(['calculated_rate', 'flat_rate', 'custom_rate']);
|
|
173
162
|
|
|
174
163
|
T['io.flow.fulfillment.v0.models.physical_delivery_preferred_service'] = PropTypes.exact({
|
|
@@ -821,6 +810,11 @@ T['io.flow.reference.v0.models.locale'] = PropTypes.exact({
|
|
|
821
810
|
numbers: T['io.flow.reference.v0.models.locale_numbers'].isRequired,
|
|
822
811
|
});
|
|
823
812
|
|
|
813
|
+
T['io.flow.reference.v0.models.localized_translation'] = PropTypes.exact({
|
|
814
|
+
locale: T['io.flow.reference.v0.models.locale'].isRequired,
|
|
815
|
+
name: PropTypes.string.isRequired,
|
|
816
|
+
});
|
|
817
|
+
|
|
824
818
|
T['io.flow.reference.v0.models.currency_symbols'] = PropTypes.exact({
|
|
825
819
|
primary: PropTypes.string.isRequired,
|
|
826
820
|
narrow: PropTypes.string,
|
|
@@ -1019,6 +1013,16 @@ T['io.flow.ratecard.v0.models.ratecard_rate'] = PropTypes.exact({
|
|
|
1019
1013
|
weight: PropTypes.number.isRequired,
|
|
1020
1014
|
});
|
|
1021
1015
|
|
|
1016
|
+
T['io.flow.ratecard.v0.models.ratecard_carrier_summary'] = PropTypes.exact({
|
|
1017
|
+
id: PropTypes.string.isRequired,
|
|
1018
|
+
name: PropTypes.string.isRequired,
|
|
1019
|
+
});
|
|
1020
|
+
|
|
1021
|
+
T['io.flow.ratecard.v0.models.shipment_window'] = PropTypes.exact({
|
|
1022
|
+
from: PropTypes.number.isRequired,
|
|
1023
|
+
to: PropTypes.number.isRequired,
|
|
1024
|
+
});
|
|
1025
|
+
|
|
1022
1026
|
T['io.flow.ratecard.v0.models.fuel_surcharge_percent'] = PropTypes.exact({
|
|
1023
1027
|
discriminator: PropTypes.oneOf(['fuel_surcharge_percent']).isRequired,
|
|
1024
1028
|
percent: PropTypes.number.isRequired,
|
|
@@ -1079,6 +1083,17 @@ T['io.flow.experience.v0.models.order_number_generator_uuid'] = PropTypes.exact(
|
|
|
1079
1083
|
|
|
1080
1084
|
T['io.flow.experience.v0.enums.payment_method_rule_content_key'] = PropTypes.oneOf(['description']);
|
|
1081
1085
|
T['io.flow.experience.v0.enums.organization_payment_method_tag'] = PropTypes.oneOf(['deny']);
|
|
1086
|
+
|
|
1087
|
+
T['io.flow.experience.v0.models.order_submission_identifier_form'] = PropTypes.exact({
|
|
1088
|
+
identifier: PropTypes.string.isRequired,
|
|
1089
|
+
name: PropTypes.string,
|
|
1090
|
+
primary: PropTypes.bool,
|
|
1091
|
+
});
|
|
1092
|
+
|
|
1093
|
+
T['io.flow.experience.v0.models.order_submission_form'] = PropTypes.exact({
|
|
1094
|
+
identifiers: PropTypes.arrayOf(T['io.flow.experience.v0.models.order_submission_identifier_form']),
|
|
1095
|
+
});
|
|
1096
|
+
|
|
1082
1097
|
T['io.flow.experience.v0.enums.order_refund_summary_partial_charged'] = PropTypes.oneOf(['per_item', 'for_order', 'by_value_percentage', 'by_quantity_percentage']);
|
|
1083
1098
|
|
|
1084
1099
|
T['io.flow.experience.v0.models.order_refund_summary_item'] = PropTypes.exact({
|
|
@@ -1145,6 +1160,10 @@ T['io.flow.experience.v0.unions.order_number_generator'] = PropTypes.oneOfType([
|
|
|
1145
1160
|
|
|
1146
1161
|
T['io.flow.experience.v0.enums.order_storage'] = PropTypes.oneOf(['do_not_persist', 'persist']);
|
|
1147
1162
|
|
|
1163
|
+
T['io.flow.experience.v0.models.order_options'] = PropTypes.exact({
|
|
1164
|
+
storage: T['io.flow.experience.v0.enums.order_storage'].isRequired,
|
|
1165
|
+
});
|
|
1166
|
+
|
|
1148
1167
|
T['io.flow.experience.v0.models.order_rule_reference'] = PropTypes.exact({
|
|
1149
1168
|
id: PropTypes.string.isRequired,
|
|
1150
1169
|
key: PropTypes.string.isRequired,
|
|
@@ -1497,6 +1516,20 @@ T['io.flow.ftp.v0.models.ftp_organization_settings'] = PropTypes.exact({
|
|
|
1497
1516
|
|
|
1498
1517
|
T['io.flow.common.v0.enums.holiday_calendar'] = PropTypes.oneOf(['us_bank_holidays', 'jewish_holidays']);
|
|
1499
1518
|
T['io.flow.common.v0.enums.calendar'] = PropTypes.oneOf(['weekdays', 'everyday']);
|
|
1519
|
+
T['io.flow.common.v0.enums.rounding_method'] = PropTypes.oneOf(['up', 'down', 'nearest']);
|
|
1520
|
+
T['io.flow.common.v0.enums.rounding_type'] = PropTypes.oneOf(['pattern', 'multiple']);
|
|
1521
|
+
|
|
1522
|
+
T['io.flow.common.v0.models.rounding'] = PropTypes.exact({
|
|
1523
|
+
type: T['io.flow.common.v0.enums.rounding_type'].isRequired,
|
|
1524
|
+
method: T['io.flow.common.v0.enums.rounding_method'].isRequired,
|
|
1525
|
+
value: PropTypes.number.isRequired,
|
|
1526
|
+
});
|
|
1527
|
+
|
|
1528
|
+
T['io.flow.price.v0.models.pricing'] = PropTypes.exact({
|
|
1529
|
+
vat: T['io.flow.price.v0.enums.pricing_levy_setting'].isRequired,
|
|
1530
|
+
duty: T['io.flow.price.v0.enums.pricing_levy_setting'].isRequired,
|
|
1531
|
+
rounding: T['io.flow.common.v0.models.rounding'],
|
|
1532
|
+
});
|
|
1500
1533
|
|
|
1501
1534
|
T['io.flow.common.v0.enums.day_of_week'] = PropTypes.oneOf([
|
|
1502
1535
|
'sunday',
|
|
@@ -2781,6 +2814,17 @@ T['io.flow.shopify.external.v0.models.graphql_product_image'] = PropTypes.exact(
|
|
|
2781
2814
|
altText: PropTypes.string,
|
|
2782
2815
|
});
|
|
2783
2816
|
|
|
2817
|
+
T['io.flow.shopify.external.v0.models.graphql_metaobject_field'] = PropTypes.exact({
|
|
2818
|
+
key: PropTypes.string.isRequired,
|
|
2819
|
+
value: PropTypes.string,
|
|
2820
|
+
});
|
|
2821
|
+
|
|
2822
|
+
T['io.flow.shopify.external.v0.models.graphql_metaobject'] = PropTypes.exact({
|
|
2823
|
+
id: PropTypes.string.isRequired,
|
|
2824
|
+
displayName: PropTypes.string.isRequired,
|
|
2825
|
+
fields: PropTypes.arrayOf(T['io.flow.shopify.external.v0.models.graphql_metaobject_field']).isRequired,
|
|
2826
|
+
});
|
|
2827
|
+
|
|
2784
2828
|
T['io.flow.shopify.external.v0.enums.graphql_weight_unit'] = PropTypes.oneOf(['GRAMS', 'KILOGRAMS', 'OUNCES', 'POUNDS']);
|
|
2785
2829
|
|
|
2786
2830
|
T['io.flow.shopify.external.v0.models.graphql_weight'] = PropTypes.exact({
|
|
@@ -2838,6 +2882,37 @@ T['io.flow.shopify.external.v0.models.graphql_product'] = PropTypes.exact({
|
|
|
2838
2882
|
|
|
2839
2883
|
T['io.flow.order.management.v0.enums.fulfillment_item_quantity_status'] = PropTypes.oneOf(['new', 'shipped', 'cancelled']);
|
|
2840
2884
|
|
|
2885
|
+
T['io.flow.order.management.v0.models.fulfillment_line_cancel_form'] = PropTypes.exact({
|
|
2886
|
+
item_number: PropTypes.string,
|
|
2887
|
+
line_number: PropTypes.string,
|
|
2888
|
+
quantity: PropTypes.number.isRequired,
|
|
2889
|
+
});
|
|
2890
|
+
|
|
2891
|
+
T['io.flow.order.management.v0.enums.cancel_reason'] = PropTypes.oneOf(['out_of_stock', 'consumer_requested', 'flow_cancel']);
|
|
2892
|
+
T['io.flow.order.management.v0.enums.order_change_source'] = PropTypes.oneOf(['consumer', 'retailer', 'fulfillment', 'flow', 'carrier']);
|
|
2893
|
+
|
|
2894
|
+
T['io.flow.partner.v0.models.partner_fulfillment_complete_cancellation_form'] = PropTypes.exact({
|
|
2895
|
+
change_source: T['io.flow.order.management.v0.enums.order_change_source'].isRequired,
|
|
2896
|
+
reason: T['io.flow.order.management.v0.enums.cancel_reason'].isRequired,
|
|
2897
|
+
});
|
|
2898
|
+
|
|
2899
|
+
T['io.flow.partner.v0.models.partner_fulfillment_cancellation_form'] = PropTypes.exact({
|
|
2900
|
+
change_source: T['io.flow.order.management.v0.enums.order_change_source'].isRequired,
|
|
2901
|
+
reason: T['io.flow.order.management.v0.enums.cancel_reason'].isRequired,
|
|
2902
|
+
lines: PropTypes.arrayOf(T['io.flow.order.management.v0.models.fulfillment_line_cancel_form']).isRequired,
|
|
2903
|
+
});
|
|
2904
|
+
|
|
2905
|
+
T['io.flow.order.management.v0.models.fulfillment_complete_cancellation_form'] = PropTypes.exact({
|
|
2906
|
+
change_source: T['io.flow.order.management.v0.enums.order_change_source'].isRequired,
|
|
2907
|
+
reason: T['io.flow.order.management.v0.enums.cancel_reason'].isRequired,
|
|
2908
|
+
});
|
|
2909
|
+
|
|
2910
|
+
T['io.flow.order.management.v0.models.fulfillment_cancellation_form'] = PropTypes.exact({
|
|
2911
|
+
change_source: T['io.flow.order.management.v0.enums.order_change_source'].isRequired,
|
|
2912
|
+
reason: T['io.flow.order.management.v0.enums.cancel_reason'].isRequired,
|
|
2913
|
+
lines: PropTypes.arrayOf(T['io.flow.order.management.v0.models.fulfillment_line_cancel_form']).isRequired,
|
|
2914
|
+
});
|
|
2915
|
+
|
|
2841
2916
|
T['io.flow.adyen.v0.models.sdk_v3_on_complete_data'] = PropTypes.exact({
|
|
2842
2917
|
details: PropTypes.object.isRequired,
|
|
2843
2918
|
payment_data: PropTypes.string,
|
|
@@ -5578,23 +5653,6 @@ T['io.flow.stripe.v0.enums.dispute_status'] = PropTypes.oneOf([
|
|
|
5578
5653
|
'lost',
|
|
5579
5654
|
]);
|
|
5580
5655
|
|
|
5581
|
-
T['io.flow.stripe.v0.enums.dispute_reason'] = PropTypes.oneOf([
|
|
5582
|
-
'bank_cannot_process',
|
|
5583
|
-
'check_returned',
|
|
5584
|
-
'credit_not_processed',
|
|
5585
|
-
'customer_initiated',
|
|
5586
|
-
'debit_not_authorized',
|
|
5587
|
-
'duplicate',
|
|
5588
|
-
'fraudulent',
|
|
5589
|
-
'general',
|
|
5590
|
-
'incorrect_account_details',
|
|
5591
|
-
'insufficient_funds',
|
|
5592
|
-
'product_not_received',
|
|
5593
|
-
'product_unacceptable',
|
|
5594
|
-
'subscription_canceled',
|
|
5595
|
-
'unrecognized',
|
|
5596
|
-
]);
|
|
5597
|
-
|
|
5598
5656
|
T['io.flow.stripe.v0.models.dispute_evidence'] = PropTypes.exact({
|
|
5599
5657
|
access_activity_log: PropTypes.string,
|
|
5600
5658
|
billing_address: PropTypes.string,
|
|
@@ -5625,43 +5683,6 @@ T['io.flow.stripe.v0.models.dispute_evidence'] = PropTypes.exact({
|
|
|
5625
5683
|
uncategorized_text: PropTypes.string,
|
|
5626
5684
|
});
|
|
5627
5685
|
|
|
5628
|
-
T['io.flow.stripe.v0.models.dispute'] = PropTypes.exact({
|
|
5629
|
-
id: PropTypes.string.isRequired,
|
|
5630
|
-
amount: PropTypes.number.isRequired,
|
|
5631
|
-
charge: PropTypes.string.isRequired,
|
|
5632
|
-
currency: PropTypes.string.isRequired,
|
|
5633
|
-
evidence: T['io.flow.stripe.v0.models.dispute_evidence'].isRequired,
|
|
5634
|
-
metadata: PropTypes.objectOf(PropTypes.string).isRequired,
|
|
5635
|
-
payment_intent: PropTypes.string,
|
|
5636
|
-
reason: T['io.flow.stripe.v0.enums.dispute_reason'].isRequired,
|
|
5637
|
-
status: T['io.flow.stripe.v0.enums.dispute_status'].isRequired,
|
|
5638
|
-
object: PropTypes.string.isRequired,
|
|
5639
|
-
balance_transactions: PropTypes.arrayOf(T['io.flow.stripe.v0.models.dispute_balance_transaction']).isRequired,
|
|
5640
|
-
created: PropTypes.number.isRequired,
|
|
5641
|
-
evidence_details: T['io.flow.stripe.v0.models.dispute_evidence_details'].isRequired,
|
|
5642
|
-
is_charge_refundable: PropTypes.bool.isRequired,
|
|
5643
|
-
livemode: PropTypes.bool.isRequired,
|
|
5644
|
-
payment_method_details: T['io.flow.stripe.v0.models.dispute_payment_method_details'],
|
|
5645
|
-
});
|
|
5646
|
-
|
|
5647
|
-
T['io.flow.stripe.v0.models.stripe_dispute_event_data'] = PropTypes.exact({
|
|
5648
|
-
object: T['io.flow.stripe.v0.models.dispute'].isRequired,
|
|
5649
|
-
previous_attributes: PropTypes.object,
|
|
5650
|
-
});
|
|
5651
|
-
|
|
5652
|
-
T['io.flow.stripe.v0.models.stripe_dispute_event'] = PropTypes.exact({
|
|
5653
|
-
id: PropTypes.string.isRequired,
|
|
5654
|
-
api_version: PropTypes.string,
|
|
5655
|
-
data: T['io.flow.stripe.v0.models.stripe_dispute_event_data'].isRequired,
|
|
5656
|
-
request: PropTypes.object,
|
|
5657
|
-
type: T['io.flow.stripe.v0.enums.dispute_event_type'].isRequired,
|
|
5658
|
-
object: PropTypes.string.isRequired,
|
|
5659
|
-
account: PropTypes.string,
|
|
5660
|
-
created: PropTypes.number.isRequired,
|
|
5661
|
-
livemode: PropTypes.bool.isRequired,
|
|
5662
|
-
pending_webhooks: PropTypes.number.isRequired,
|
|
5663
|
-
});
|
|
5664
|
-
|
|
5665
5686
|
T['io.flow.stripe.v0.enums.code_verification_status'] = PropTypes.oneOf(['pending', 'succeeded', 'failed']);
|
|
5666
5687
|
|
|
5667
5688
|
T['io.flow.stripe.v0.models.transfer_data'] = PropTypes.exact({
|
|
@@ -6031,6 +6052,19 @@ T['io.flow.stripe.v0.models.payment_method'] = PropTypes.exact({
|
|
|
6031
6052
|
type: PropTypes.string,
|
|
6032
6053
|
});
|
|
6033
6054
|
|
|
6055
|
+
T['io.flow.stripe.v0.enums.capability_status'] = PropTypes.oneOf(['active', 'disabled', 'inactive', 'pending', 'unrequested']);
|
|
6056
|
+
|
|
6057
|
+
T['io.flow.stripe.v0.models.capability'] = PropTypes.exact({
|
|
6058
|
+
id: PropTypes.string.isRequired,
|
|
6059
|
+
account: PropTypes.string.isRequired,
|
|
6060
|
+
requested: PropTypes.bool.isRequired,
|
|
6061
|
+
requirements: PropTypes.object.isRequired,
|
|
6062
|
+
status: T['io.flow.stripe.v0.enums.capability_status'].isRequired,
|
|
6063
|
+
object: PropTypes.string.isRequired,
|
|
6064
|
+
future_requirements: PropTypes.object.isRequired,
|
|
6065
|
+
requested_at: PropTypes.number,
|
|
6066
|
+
});
|
|
6067
|
+
|
|
6034
6068
|
T['io.flow.stripe.v0.enums.apple_pay_type'] = PropTypes.oneOf(['apple_pay', 'apple_pay_later']);
|
|
6035
6069
|
|
|
6036
6070
|
T['io.flow.stripe.v0.models.apple_pay_information'] = PropTypes.exact({
|
|
@@ -6323,6 +6357,14 @@ T['io.flow.field.validation.v0.unions.field_validation_rule'] = PropTypes.oneOfT
|
|
|
6323
6357
|
T['io.flow.field.validation.v0.models.field_validation_pattern'],
|
|
6324
6358
|
]);
|
|
6325
6359
|
|
|
6360
|
+
T['io.flow.payment.v0.models.card_payment_source_form'] = PropTypes.exact({
|
|
6361
|
+
discriminator: PropTypes.oneOf(['card_payment_source_form']).isRequired,
|
|
6362
|
+
customer_number: PropTypes.string.isRequired,
|
|
6363
|
+
card_id: PropTypes.string.isRequired,
|
|
6364
|
+
});
|
|
6365
|
+
|
|
6366
|
+
T['io.flow.payment.v0.unions.payment_source_form'] = PropTypes.oneOfType([T['io.flow.payment.v0.models.card_payment_source_form']]);
|
|
6367
|
+
|
|
6326
6368
|
T['io.flow.payment.v0.models.merchant_of_record_payment_form'] = PropTypes.exact({
|
|
6327
6369
|
discriminator: PropTypes.oneOf(['merchant_of_record_payment_form']).isRequired,
|
|
6328
6370
|
method: PropTypes.string.isRequired,
|
|
@@ -6581,6 +6623,8 @@ T['io.flow.payment.v0.models.capture_identifier'] = PropTypes.exact({
|
|
|
6581
6623
|
primary: PropTypes.bool.isRequired,
|
|
6582
6624
|
});
|
|
6583
6625
|
|
|
6626
|
+
T['io.flow.payment.v0.enums.payment_fee_type'] = PropTypes.oneOf(['fx', 'mor']);
|
|
6627
|
+
|
|
6584
6628
|
T['io.flow.payment.v0.models.card_browser_action_configuration'] = PropTypes.exact({
|
|
6585
6629
|
discriminator: PropTypes.oneOf(['card_browser_action_configuration']).isRequired,
|
|
6586
6630
|
viewport: T['io.flow.payment.v0.enums.threeds_two_challenge_viewport'].isRequired,
|
|
@@ -6632,6 +6676,18 @@ T['io.flow.payment.v0.models.stripe_authorization_result_action_details'] = Prop
|
|
|
6632
6676
|
T['io.flow.payment.v0.enums.authorization_result_action_type'] = PropTypes.oneOf(['native', 'redirect', 'wait']);
|
|
6633
6677
|
T['io.flow.payment.v0.enums.three_d_secure_code'] = PropTypes.oneOf(['verified', 'not_verified', 'failed']);
|
|
6634
6678
|
|
|
6679
|
+
T['io.flow.payment.v0.models.authorization_result_action_wait'] = PropTypes.exact({
|
|
6680
|
+
discriminator: PropTypes.oneOf(['authorization_result_action_wait']).isRequired,
|
|
6681
|
+
type: T['io.flow.payment.v0.enums.authorization_result_action_type'].isRequired,
|
|
6682
|
+
});
|
|
6683
|
+
|
|
6684
|
+
T['io.flow.payment.v0.models.authorization_result_action_post'] = PropTypes.exact({
|
|
6685
|
+
discriminator: PropTypes.oneOf(['authorization_result_action_post']).isRequired,
|
|
6686
|
+
type: T['io.flow.payment.v0.enums.authorization_result_action_type'].isRequired,
|
|
6687
|
+
url: PropTypes.string.isRequired,
|
|
6688
|
+
parameters: PropTypes.object.isRequired,
|
|
6689
|
+
});
|
|
6690
|
+
|
|
6635
6691
|
T['io.flow.payment.v0.models.apple_pay_merchant_validation_payload'] = PropTypes.exact({
|
|
6636
6692
|
discriminator: PropTypes.oneOf(['apple_pay_merchant_validation_payload']).isRequired,
|
|
6637
6693
|
validation_url: PropTypes.string.isRequired,
|
|
@@ -6687,6 +6743,13 @@ T['io.flow.payment.v0.unions.authorization_result_action_details'] = PropTypes.o
|
|
|
6687
6743
|
T['io.flow.payment.v0.models.select_issuer_option_action_details'],
|
|
6688
6744
|
]);
|
|
6689
6745
|
|
|
6746
|
+
T['io.flow.payment.v0.models.authorization_result_action_get'] = PropTypes.exact({
|
|
6747
|
+
discriminator: PropTypes.oneOf(['authorization_result_action_get']).isRequired,
|
|
6748
|
+
type: T['io.flow.payment.v0.enums.authorization_result_action_type'].isRequired,
|
|
6749
|
+
url: PropTypes.string,
|
|
6750
|
+
details: T['io.flow.payment.v0.unions.authorization_result_action_details'],
|
|
6751
|
+
});
|
|
6752
|
+
|
|
6690
6753
|
T['io.flow.export.v0.enums.item_identifier'] = PropTypes.oneOf(['item_number', 'sku']);
|
|
6691
6754
|
|
|
6692
6755
|
T['io.flow.common.v0.models.included_levies'] = PropTypes.exact({
|
|
@@ -7662,6 +7725,41 @@ T['io.flow.google.pay.v0.models.encrypted_message'] = PropTypes.exact({
|
|
|
7662
7725
|
paymentMethodDetails: T['io.flow.google.pay.v0.models.payment_method_details'].isRequired,
|
|
7663
7726
|
});
|
|
7664
7727
|
|
|
7728
|
+
T['io.flow.fulfillment.v0.enums.ratecard_owner'] = PropTypes.oneOf(['flow', 'organization']);
|
|
7729
|
+
|
|
7730
|
+
T['io.flow.ratecard.v0.models.ratecard_summary'] = PropTypes.exact({
|
|
7731
|
+
id: PropTypes.string.isRequired,
|
|
7732
|
+
number: PropTypes.string.isRequired,
|
|
7733
|
+
ratecard_owner: T['io.flow.fulfillment.v0.enums.ratecard_owner'].isRequired,
|
|
7734
|
+
});
|
|
7735
|
+
|
|
7736
|
+
T['io.flow.ratecard.v0.models.lane_summary'] = PropTypes.exact({
|
|
7737
|
+
id: PropTypes.string.isRequired,
|
|
7738
|
+
ratecard: T['io.flow.ratecard.v0.models.ratecard_summary'].isRequired,
|
|
7739
|
+
});
|
|
7740
|
+
|
|
7741
|
+
T['io.flow.label.v0.models.shipping_label_ratecard_summary'] = PropTypes.exact({
|
|
7742
|
+
id: PropTypes.string,
|
|
7743
|
+
ratecard_owner: T['io.flow.fulfillment.v0.enums.ratecard_owner'].isRequired,
|
|
7744
|
+
rate_level_key: PropTypes.string,
|
|
7745
|
+
glbe_shipping_method_id: PropTypes.string,
|
|
7746
|
+
glbe_proposition_name: PropTypes.string,
|
|
7747
|
+
channel_revenue_share_percentage: PropTypes.number,
|
|
7748
|
+
shopify_grc_gid: PropTypes.string,
|
|
7749
|
+
});
|
|
7750
|
+
|
|
7751
|
+
T['io.flow.ratecard.v0.models.ratecard_service_summary'] = PropTypes.exact({
|
|
7752
|
+
id: PropTypes.string.isRequired,
|
|
7753
|
+
name: PropTypes.string.isRequired,
|
|
7754
|
+
carrier: T['io.flow.ratecard.v0.models.ratecard_carrier_summary'].isRequired,
|
|
7755
|
+
});
|
|
7756
|
+
|
|
7757
|
+
T['io.flow.common.v0.models.zone'] = PropTypes.exact({
|
|
7758
|
+
postals: PropTypes.arrayOf(PropTypes.string),
|
|
7759
|
+
provinces: PropTypes.arrayOf(PropTypes.string),
|
|
7760
|
+
country: PropTypes.string.isRequired,
|
|
7761
|
+
});
|
|
7762
|
+
|
|
7665
7763
|
T['io.flow.fulfillment.v0.enums.item_availability_status'] = PropTypes.oneOf(['available', 'low', 'out_of_stock']);
|
|
7666
7764
|
|
|
7667
7765
|
T['io.flow.fulfillment.v0.models.country_availability'] = PropTypes.exact({
|
|
@@ -7730,6 +7828,10 @@ T['io.flow.merchant.onboarding.v0.models.shop'] = PropTypes.exact({
|
|
|
7730
7828
|
id: PropTypes.string.isRequired,
|
|
7731
7829
|
});
|
|
7732
7830
|
|
|
7831
|
+
T['io.flow.ratecard.v0.models.ratecard_reference'] = PropTypes.exact({
|
|
7832
|
+
id: PropTypes.string.isRequired,
|
|
7833
|
+
});
|
|
7834
|
+
|
|
7733
7835
|
T['io.flow.merchant.onboarding.v0.models.monthly_average'] = PropTypes.exact({
|
|
7734
7836
|
volume: T['io.flow.merchant.onboarding.v0.models.monthly_average_volume'],
|
|
7735
7837
|
number_transactions: PropTypes.number,
|
|
@@ -7783,6 +7885,23 @@ T['io.flow.merchant.onboarding.v0.unions.merchant_application_put_form'] = PropT
|
|
|
7783
7885
|
T['io.flow.merchant.onboarding.v0.models.shopify_merchant_application_put_form'],
|
|
7784
7886
|
]);
|
|
7785
7887
|
|
|
7888
|
+
T['io.flow.experience.v0.enums.order_error_code'] = PropTypes.oneOf([
|
|
7889
|
+
'generic_error',
|
|
7890
|
+
'order_item_not_available',
|
|
7891
|
+
'order_identifier_error',
|
|
7892
|
+
'authorization_invalid',
|
|
7893
|
+
'domestic_shipping_unavailable',
|
|
7894
|
+
'shipping_unavailable',
|
|
7895
|
+
'value_threshold_exceeded',
|
|
7896
|
+
'invalid_currency',
|
|
7897
|
+
'invalid_country',
|
|
7898
|
+
'invalid_region',
|
|
7899
|
+
'invalid_language',
|
|
7900
|
+
'item_out_of_stock',
|
|
7901
|
+
'gift_card_not_accepted',
|
|
7902
|
+
'total_changed',
|
|
7903
|
+
]);
|
|
7904
|
+
|
|
7786
7905
|
T['io.flow.query.builder.v0.unions.available_filter'] = PropTypes.oneOfType([
|
|
7787
7906
|
T['io.flow.query.builder.v0.models.available_filter_structured'],
|
|
7788
7907
|
T['io.flow.query.builder.v0.models.available_filter_unstructured'],
|
|
@@ -8047,6 +8166,13 @@ T['io.flow.internal.v0.models.tracking_processing_error_deleted'] = PropTypes.ex
|
|
|
8047
8166
|
id: PropTypes.string.isRequired,
|
|
8048
8167
|
});
|
|
8049
8168
|
|
|
8169
|
+
T['io.flow.internal.v0.models.stripe_connect_report_record_deleted'] = PropTypes.exact({
|
|
8170
|
+
discriminator: PropTypes.oneOf(['stripe_connect_report_record_deleted']).isRequired,
|
|
8171
|
+
event_id: PropTypes.string.isRequired,
|
|
8172
|
+
timestamp: PropTypes.string.isRequired,
|
|
8173
|
+
id: PropTypes.string.isRequired,
|
|
8174
|
+
});
|
|
8175
|
+
|
|
8050
8176
|
T['io.flow.internal.v0.models.stripe_dispute_deleted'] = PropTypes.exact({
|
|
8051
8177
|
discriminator: PropTypes.oneOf(['stripe_dispute_deleted']).isRequired,
|
|
8052
8178
|
event_id: PropTypes.string.isRequired,
|
|
@@ -8054,6 +8180,13 @@ T['io.flow.internal.v0.models.stripe_dispute_deleted'] = PropTypes.exact({
|
|
|
8054
8180
|
id: PropTypes.string.isRequired,
|
|
8055
8181
|
});
|
|
8056
8182
|
|
|
8183
|
+
T['io.flow.internal.v0.models.shopify_merchant_plan_deleted'] = PropTypes.exact({
|
|
8184
|
+
discriminator: PropTypes.oneOf(['shopify_merchant_plan_deleted']).isRequired,
|
|
8185
|
+
event_id: PropTypes.string.isRequired,
|
|
8186
|
+
timestamp: PropTypes.string.isRequired,
|
|
8187
|
+
id: PropTypes.string.isRequired,
|
|
8188
|
+
});
|
|
8189
|
+
|
|
8057
8190
|
T['io.flow.internal.v0.models.shopify_order_fulfillments_snapshot_deleted'] = PropTypes.exact({
|
|
8058
8191
|
discriminator: PropTypes.oneOf(['shopify_order_fulfillments_snapshot_deleted']).isRequired,
|
|
8059
8192
|
event_id: PropTypes.string.isRequired,
|
|
@@ -8340,16 +8473,8 @@ T['io.flow.internal.v0.models.order_combined_shipment_deleted'] = PropTypes.exac
|
|
|
8340
8473
|
id: PropTypes.string.isRequired,
|
|
8341
8474
|
});
|
|
8342
8475
|
|
|
8343
|
-
T['io.flow.internal.v0.models.
|
|
8344
|
-
discriminator: PropTypes.oneOf(['
|
|
8345
|
-
event_id: PropTypes.string.isRequired,
|
|
8346
|
-
timestamp: PropTypes.string.isRequired,
|
|
8347
|
-
id: PropTypes.string.isRequired,
|
|
8348
|
-
organization: PropTypes.string.isRequired,
|
|
8349
|
-
});
|
|
8350
|
-
|
|
8351
|
-
T['io.flow.internal.v0.models.localized_item_prices_export_request'] = PropTypes.exact({
|
|
8352
|
-
discriminator: PropTypes.oneOf(['localized_item_prices_export_request']).isRequired,
|
|
8476
|
+
T['io.flow.internal.v0.models.localized_item_prices_export_request'] = PropTypes.exact({
|
|
8477
|
+
discriminator: PropTypes.oneOf(['localized_item_prices_export_request']).isRequired,
|
|
8353
8478
|
event_id: PropTypes.string.isRequired,
|
|
8354
8479
|
timestamp: PropTypes.string.isRequired,
|
|
8355
8480
|
organization: PropTypes.string.isRequired,
|
|
@@ -8373,6 +8498,14 @@ T['io.flow.internal.v0.models.label_tracking_summary_deleted'] = PropTypes.exact
|
|
|
8373
8498
|
id: PropTypes.string.isRequired,
|
|
8374
8499
|
});
|
|
8375
8500
|
|
|
8501
|
+
T['io.flow.internal.v0.models.label_creation_job_deleted'] = PropTypes.exact({
|
|
8502
|
+
discriminator: PropTypes.oneOf(['label_creation_job_deleted']).isRequired,
|
|
8503
|
+
event_id: PropTypes.string.isRequired,
|
|
8504
|
+
timestamp: PropTypes.string.isRequired,
|
|
8505
|
+
organization: PropTypes.string.isRequired,
|
|
8506
|
+
id: PropTypes.string.isRequired,
|
|
8507
|
+
});
|
|
8508
|
+
|
|
8376
8509
|
T['io.flow.internal.v0.models.order_validation_deleted'] = PropTypes.exact({
|
|
8377
8510
|
discriminator: PropTypes.oneOf(['order_validation_deleted']).isRequired,
|
|
8378
8511
|
event_id: PropTypes.string.isRequired,
|
|
@@ -8997,22 +9130,6 @@ T['io.flow.internal.v0.models.adyen_dispute_deleted'] = PropTypes.exact({
|
|
|
8997
9130
|
id: PropTypes.string.isRequired,
|
|
8998
9131
|
});
|
|
8999
9132
|
|
|
9000
|
-
T['io.flow.internal.v0.models.final_estimate_deleted'] = PropTypes.exact({
|
|
9001
|
-
discriminator: PropTypes.oneOf(['final_estimate_deleted']).isRequired,
|
|
9002
|
-
event_id: PropTypes.string.isRequired,
|
|
9003
|
-
timestamp: PropTypes.string.isRequired,
|
|
9004
|
-
organization: PropTypes.string.isRequired,
|
|
9005
|
-
id: PropTypes.string.isRequired,
|
|
9006
|
-
});
|
|
9007
|
-
|
|
9008
|
-
T['io.flow.internal.v0.models.adjusted_estimates_deleted'] = PropTypes.exact({
|
|
9009
|
-
discriminator: PropTypes.oneOf(['adjusted_estimates_deleted']).isRequired,
|
|
9010
|
-
event_id: PropTypes.string.isRequired,
|
|
9011
|
-
timestamp: PropTypes.string.isRequired,
|
|
9012
|
-
organization: PropTypes.string.isRequired,
|
|
9013
|
-
id: PropTypes.string.isRequired,
|
|
9014
|
-
});
|
|
9015
|
-
|
|
9016
9133
|
T['io.flow.internal.v0.models.console_mark_unresolvable_form'] = PropTypes.exact({
|
|
9017
9134
|
discriminator: PropTypes.oneOf(['console_mark_unresolvable_form']).isRequired,
|
|
9018
9135
|
order_number: PropTypes.string.isRequired,
|
|
@@ -9086,6 +9203,73 @@ T['io.flow.payment.v0.models.virtual_card_reference'] = PropTypes.exact({
|
|
|
9086
9203
|
id: PropTypes.string.isRequired,
|
|
9087
9204
|
});
|
|
9088
9205
|
|
|
9206
|
+
T['io.flow.reference.v0.enums.postal_type'] = PropTypes.oneOf(['eircode', 'pin', 'postal', 'zip']);
|
|
9207
|
+
|
|
9208
|
+
T['io.flow.reference.v0.enums.province_type'] = PropTypes.oneOf([
|
|
9209
|
+
'area',
|
|
9210
|
+
'city',
|
|
9211
|
+
'county',
|
|
9212
|
+
'department',
|
|
9213
|
+
'dependency',
|
|
9214
|
+
'district',
|
|
9215
|
+
'do_si',
|
|
9216
|
+
'emirate',
|
|
9217
|
+
'entity',
|
|
9218
|
+
'island',
|
|
9219
|
+
'municipality',
|
|
9220
|
+
'oblast',
|
|
9221
|
+
'outlying_area',
|
|
9222
|
+
'parish',
|
|
9223
|
+
'prefecture',
|
|
9224
|
+
'province',
|
|
9225
|
+
'state',
|
|
9226
|
+
'territory',
|
|
9227
|
+
'other',
|
|
9228
|
+
]);
|
|
9229
|
+
|
|
9230
|
+
T['io.flow.reference.v0.models.province'] = PropTypes.exact({
|
|
9231
|
+
id: PropTypes.string.isRequired,
|
|
9232
|
+
iso_3166_2: PropTypes.string.isRequired,
|
|
9233
|
+
name: PropTypes.string.isRequired,
|
|
9234
|
+
country: PropTypes.string.isRequired,
|
|
9235
|
+
province_type: T['io.flow.reference.v0.enums.province_type'].isRequired,
|
|
9236
|
+
translations: PropTypes.arrayOf(T['io.flow.reference.v0.models.localized_translation']),
|
|
9237
|
+
});
|
|
9238
|
+
|
|
9239
|
+
T['io.flow.experience.v0.models.address_configuration_format'] = PropTypes.exact({
|
|
9240
|
+
placements: PropTypes.arrayOf(T['io.flow.experience.v0.models.address_configuration_field_placement']).isRequired,
|
|
9241
|
+
});
|
|
9242
|
+
|
|
9243
|
+
T['io.flow.experience.v0.models.address_configuration_province'] = PropTypes.exact({
|
|
9244
|
+
value: PropTypes.string.isRequired,
|
|
9245
|
+
name: PropTypes.string.isRequired,
|
|
9246
|
+
|
|
9247
|
+
translations: PropTypes.arrayOf(
|
|
9248
|
+
T['io.flow.experience.v0.models.address_configuration_province_translation'],
|
|
9249
|
+
),
|
|
9250
|
+
});
|
|
9251
|
+
|
|
9252
|
+
T['io.flow.experience.v0.models.address_field_validation'] = PropTypes.exact({
|
|
9253
|
+
first_name: PropTypes.arrayOf(T['io.flow.field.validation.v0.unions.field_validation_rule']).isRequired,
|
|
9254
|
+
last_name: PropTypes.arrayOf(T['io.flow.field.validation.v0.unions.field_validation_rule']).isRequired,
|
|
9255
|
+
street_1: PropTypes.arrayOf(T['io.flow.field.validation.v0.unions.field_validation_rule']).isRequired,
|
|
9256
|
+
street_2: PropTypes.arrayOf(T['io.flow.field.validation.v0.unions.field_validation_rule']).isRequired,
|
|
9257
|
+
city: PropTypes.arrayOf(T['io.flow.field.validation.v0.unions.field_validation_rule']).isRequired,
|
|
9258
|
+
province: PropTypes.arrayOf(T['io.flow.field.validation.v0.unions.field_validation_rule']).isRequired,
|
|
9259
|
+
postal: PropTypes.arrayOf(T['io.flow.field.validation.v0.unions.field_validation_rule']).isRequired,
|
|
9260
|
+
phone: PropTypes.arrayOf(T['io.flow.field.validation.v0.unions.field_validation_rule']).isRequired,
|
|
9261
|
+
vat_registration_number: PropTypes.arrayOf(T['io.flow.field.validation.v0.unions.field_validation_rule']).isRequired,
|
|
9262
|
+
});
|
|
9263
|
+
|
|
9264
|
+
T['io.flow.experience.v0.models.address_configuration'] = PropTypes.exact({
|
|
9265
|
+
country: PropTypes.string.isRequired,
|
|
9266
|
+
field_validation: T['io.flow.experience.v0.models.address_field_validation'].isRequired,
|
|
9267
|
+
provinces: PropTypes.arrayOf(T['io.flow.experience.v0.models.address_configuration_province']).isRequired,
|
|
9268
|
+
formats: PropTypes.arrayOf(T['io.flow.experience.v0.models.address_configuration_format']),
|
|
9269
|
+
province_type: T['io.flow.reference.v0.enums.province_type'],
|
|
9270
|
+
postal_type: T['io.flow.reference.v0.enums.postal_type'],
|
|
9271
|
+
});
|
|
9272
|
+
|
|
9089
9273
|
T['io.flow.internal.v0.models.checkout_platform_data'] = PropTypes.exact({
|
|
9090
9274
|
order_number: PropTypes.string,
|
|
9091
9275
|
});
|
|
@@ -9424,6 +9608,143 @@ T['io.flow.internal.v0.models.stripe_dispute_upserted'] = PropTypes.exact({
|
|
|
9424
9608
|
dispute: T['io.flow.internal.v0.models.stripe_internal_dispute'].isRequired,
|
|
9425
9609
|
});
|
|
9426
9610
|
|
|
9611
|
+
T['io.flow.stripe.v0.enums.dispute_reason'] = PropTypes.oneOf([
|
|
9612
|
+
'bank_cannot_process',
|
|
9613
|
+
'check_returned',
|
|
9614
|
+
'credit_not_processed',
|
|
9615
|
+
'customer_initiated',
|
|
9616
|
+
'debit_not_authorized',
|
|
9617
|
+
'duplicate',
|
|
9618
|
+
'fraudulent',
|
|
9619
|
+
'general',
|
|
9620
|
+
'incorrect_account_details',
|
|
9621
|
+
'insufficient_funds',
|
|
9622
|
+
'product_not_received',
|
|
9623
|
+
'product_unacceptable',
|
|
9624
|
+
'subscription_canceled',
|
|
9625
|
+
'unrecognized',
|
|
9626
|
+
]);
|
|
9627
|
+
|
|
9628
|
+
T['io.flow.stripe.v0.models.dispute'] = PropTypes.exact({
|
|
9629
|
+
id: PropTypes.string.isRequired,
|
|
9630
|
+
amount: PropTypes.number.isRequired,
|
|
9631
|
+
charge: PropTypes.string.isRequired,
|
|
9632
|
+
currency: PropTypes.string.isRequired,
|
|
9633
|
+
evidence: T['io.flow.stripe.v0.models.dispute_evidence'].isRequired,
|
|
9634
|
+
metadata: PropTypes.objectOf(PropTypes.string).isRequired,
|
|
9635
|
+
payment_intent: PropTypes.string,
|
|
9636
|
+
reason: T['io.flow.stripe.v0.enums.dispute_reason'].isRequired,
|
|
9637
|
+
status: T['io.flow.stripe.v0.enums.dispute_status'].isRequired,
|
|
9638
|
+
object: PropTypes.string.isRequired,
|
|
9639
|
+
balance_transactions: PropTypes.arrayOf(T['io.flow.stripe.v0.models.dispute_balance_transaction']).isRequired,
|
|
9640
|
+
created: PropTypes.number.isRequired,
|
|
9641
|
+
evidence_details: T['io.flow.stripe.v0.models.dispute_evidence_details'].isRequired,
|
|
9642
|
+
is_charge_refundable: PropTypes.bool.isRequired,
|
|
9643
|
+
livemode: PropTypes.bool.isRequired,
|
|
9644
|
+
payment_method_details: T['io.flow.stripe.v0.models.dispute_payment_method_details'],
|
|
9645
|
+
});
|
|
9646
|
+
|
|
9647
|
+
T['io.flow.stripe.v0.models.stripe_dispute_event_data'] = PropTypes.exact({
|
|
9648
|
+
object: T['io.flow.stripe.v0.models.dispute'].isRequired,
|
|
9649
|
+
previous_attributes: PropTypes.object,
|
|
9650
|
+
});
|
|
9651
|
+
|
|
9652
|
+
T['io.flow.stripe.v0.models.stripe_dispute_event'] = PropTypes.exact({
|
|
9653
|
+
id: PropTypes.string.isRequired,
|
|
9654
|
+
api_version: PropTypes.string,
|
|
9655
|
+
data: T['io.flow.stripe.v0.models.stripe_dispute_event_data'].isRequired,
|
|
9656
|
+
request: PropTypes.object,
|
|
9657
|
+
type: T['io.flow.stripe.v0.enums.dispute_event_type'].isRequired,
|
|
9658
|
+
object: PropTypes.string.isRequired,
|
|
9659
|
+
account: PropTypes.string,
|
|
9660
|
+
created: PropTypes.number.isRequired,
|
|
9661
|
+
livemode: PropTypes.bool.isRequired,
|
|
9662
|
+
pending_webhooks: PropTypes.number.isRequired,
|
|
9663
|
+
});
|
|
9664
|
+
|
|
9665
|
+
T['io.flow.stripe.v0.enums.connect_report_transfer_type'] = PropTypes.oneOf([
|
|
9666
|
+
'ManagedMarketsRefundDebit',
|
|
9667
|
+
'ManagedMarketsDutiesAndTaxesAdjustmentDebit',
|
|
9668
|
+
'ManagedMarketsDisputedAmountDebit',
|
|
9669
|
+
]);
|
|
9670
|
+
|
|
9671
|
+
T['io.flow.stripe.v0.enums.connect_report_shop_plan'] = PropTypes.oneOf(['shopify_plus', 'standard']);
|
|
9672
|
+
|
|
9673
|
+
T['io.flow.stripe.v0.models.connect_report_record_payment_metadata'] = PropTypes.exact({
|
|
9674
|
+
shop_id: PropTypes.number,
|
|
9675
|
+
shop_plan: T['io.flow.stripe.v0.enums.connect_report_shop_plan'],
|
|
9676
|
+
checkout_id: PropTypes.string,
|
|
9677
|
+
order_id: PropTypes.number,
|
|
9678
|
+
order_transaction_id: PropTypes.number,
|
|
9679
|
+
transfer_type: T['io.flow.stripe.v0.enums.connect_report_transfer_type'],
|
|
9680
|
+
transfer_exchange_rate: PropTypes.number,
|
|
9681
|
+
charge_total: PropTypes.number,
|
|
9682
|
+
charge_currency: PropTypes.string,
|
|
9683
|
+
charge_exchange_rate: PropTypes.number,
|
|
9684
|
+
duties: PropTypes.number,
|
|
9685
|
+
import_taxes: PropTypes.number,
|
|
9686
|
+
mor_fee: PropTypes.number,
|
|
9687
|
+
fx_fee: PropTypes.number,
|
|
9688
|
+
});
|
|
9689
|
+
|
|
9690
|
+
T['io.flow.stripe.v0.enums.connect_report_reporting_category'] = PropTypes.oneOf(['charge', 'refund', 'payout_reversal', 'transfer', 'transfer_reversal']);
|
|
9691
|
+
|
|
9692
|
+
T['io.flow.stripe.v0.models.connect_report_record'] = PropTypes.exact({
|
|
9693
|
+
created_utc: PropTypes.string.isRequired,
|
|
9694
|
+
charge_id: PropTypes.string,
|
|
9695
|
+
payment_intent_id: PropTypes.string,
|
|
9696
|
+
gross: PropTypes.number.isRequired,
|
|
9697
|
+
fee: PropTypes.number.isRequired,
|
|
9698
|
+
net: PropTypes.number.isRequired,
|
|
9699
|
+
currency: PropTypes.string.isRequired,
|
|
9700
|
+
connected_account: PropTypes.string.isRequired,
|
|
9701
|
+
reporting_category: T['io.flow.stripe.v0.enums.connect_report_reporting_category'].isRequired,
|
|
9702
|
+
dispute_reason: T['io.flow.stripe.v0.enums.dispute_reason'],
|
|
9703
|
+
available_on_utc: PropTypes.string.isRequired,
|
|
9704
|
+
automatic_payout_effective_at_utc: PropTypes.string,
|
|
9705
|
+
source_id: PropTypes.string,
|
|
9706
|
+
customer_facing_amount: PropTypes.number,
|
|
9707
|
+
customer_facing_currency: PropTypes.string,
|
|
9708
|
+
payment_method_type: PropTypes.string,
|
|
9709
|
+
card_brand: PropTypes.string,
|
|
9710
|
+
statement_descriptor: PropTypes.string,
|
|
9711
|
+
payment_metadata: T['io.flow.stripe.v0.models.connect_report_record_payment_metadata'],
|
|
9712
|
+
transfer_metadata: PropTypes.object,
|
|
9713
|
+
});
|
|
9714
|
+
|
|
9715
|
+
T['io.flow.internal.v0.models.stripe_connect_report_record_upserted'] = PropTypes.exact({
|
|
9716
|
+
discriminator: PropTypes.oneOf(['stripe_connect_report_record_upserted']).isRequired,
|
|
9717
|
+
event_id: PropTypes.string.isRequired,
|
|
9718
|
+
timestamp: PropTypes.string.isRequired,
|
|
9719
|
+
record: T['io.flow.stripe.v0.models.connect_report_record'].isRequired,
|
|
9720
|
+
});
|
|
9721
|
+
|
|
9722
|
+
T['io.flow.internal.v0.models.stripe_connect_report_record'] = PropTypes.exact({
|
|
9723
|
+
id: PropTypes.string.isRequired,
|
|
9724
|
+
file_id: PropTypes.string.isRequired,
|
|
9725
|
+
line_number: PropTypes.number.isRequired,
|
|
9726
|
+
created_utc: PropTypes.string.isRequired,
|
|
9727
|
+
charge_id: PropTypes.string,
|
|
9728
|
+
payment_intent_id: PropTypes.string,
|
|
9729
|
+
gross: PropTypes.number.isRequired,
|
|
9730
|
+
fee: PropTypes.number.isRequired,
|
|
9731
|
+
net: PropTypes.number.isRequired,
|
|
9732
|
+
currency: PropTypes.string.isRequired,
|
|
9733
|
+
connected_account: PropTypes.string.isRequired,
|
|
9734
|
+
reporting_category: T['io.flow.stripe.v0.enums.connect_report_reporting_category'].isRequired,
|
|
9735
|
+
dispute_reason: PropTypes.string,
|
|
9736
|
+
available_on_utc: PropTypes.string.isRequired,
|
|
9737
|
+
automatic_payout_effective_at_utc: PropTypes.string,
|
|
9738
|
+
source_id: PropTypes.string,
|
|
9739
|
+
customer_facing_amount: PropTypes.number,
|
|
9740
|
+
customer_facing_currency: PropTypes.string,
|
|
9741
|
+
payment_method_type: PropTypes.string,
|
|
9742
|
+
card_brand: PropTypes.string,
|
|
9743
|
+
statement_descriptor: PropTypes.string,
|
|
9744
|
+
payment_metadata: T['io.flow.stripe.v0.models.connect_report_record_payment_metadata'],
|
|
9745
|
+
transfer_metadata: PropTypes.object,
|
|
9746
|
+
});
|
|
9747
|
+
|
|
9427
9748
|
T['io.flow.internal.v0.models.stripe_internal_capture'] = PropTypes.exact({
|
|
9428
9749
|
id: PropTypes.string.isRequired,
|
|
9429
9750
|
flow_capture_id: PropTypes.string.isRequired,
|
|
@@ -10026,6 +10347,7 @@ T['io.flow.internal.v0.unions.shopify_monitoring_order_monitor_type'] = PropType
|
|
|
10026
10347
|
T['io.flow.internal.v0.models.shopify_monitoring_fulfillment_missing_details'],
|
|
10027
10348
|
]);
|
|
10028
10349
|
|
|
10350
|
+
T['io.flow.internal.v0.enums.shopify_plan_type'] = PropTypes.oneOf(['standard', 'shopify_plus']);
|
|
10029
10351
|
T['io.flow.shopify.markets.v0.enums.shopify_webhook_format'] = PropTypes.oneOf(['json', 'xml']);
|
|
10030
10352
|
|
|
10031
10353
|
T['io.flow.shopify.markets.v0.enums.shopify_webhook_topic'] = PropTypes.oneOf([
|
|
@@ -10686,7 +11008,7 @@ T['io.flow.internal.v0.models.restrictions_dailyops'] = PropTypes.exact({
|
|
|
10686
11008
|
num_products_transacting_prs: PropTypes.number.isRequired,
|
|
10687
11009
|
oldest_pr_product_date_setup_complete: PropTypes.string.isRequired,
|
|
10688
11010
|
oldest_pr_date_transacting: PropTypes.string.isRequired,
|
|
10689
|
-
percent_products_reviewed_transacting: PropTypes.number
|
|
11011
|
+
percent_products_reviewed_transacting: PropTypes.number,
|
|
10690
11012
|
num_pv_inflow_net_new: PropTypes.number.isRequired,
|
|
10691
11013
|
num_pv_outflow_human_decisions: PropTypes.number.isRequired,
|
|
10692
11014
|
num_pv_outflow_auto_review_decisions: PropTypes.number.isRequired,
|
|
@@ -10696,6 +11018,9 @@ T['io.flow.internal.v0.models.restrictions_dailyops'] = PropTypes.exact({
|
|
|
10696
11018
|
num_pr_outflow_auto_review_decisions: PropTypes.number.isRequired,
|
|
10697
11019
|
num_pr_outflow_side_effect_decisions: PropTypes.number.isRequired,
|
|
10698
11020
|
num_pending_decisions_transacting: PropTypes.number.isRequired,
|
|
11021
|
+
oldest_insufficient_details_pv_onboarding: PropTypes.string,
|
|
11022
|
+
oldest_insufficient_details_pv_active: PropTypes.string,
|
|
11023
|
+
oldest_insufficient_details_pv_transacting: PropTypes.string,
|
|
10699
11024
|
});
|
|
10700
11025
|
|
|
10701
11026
|
T['io.flow.internal.v0.models.restrictions_dailyops_upserted'] = PropTypes.exact({
|
|
@@ -10852,6 +11177,8 @@ T['io.flow.internal.v0.models.reporting_debug'] = PropTypes.exact({
|
|
|
10852
11177
|
missing_shipping_subsidies: T['io.flow.internal.v0.models.reporting_debug_missing_subsidies'],
|
|
10853
11178
|
});
|
|
10854
11179
|
|
|
11180
|
+
T['io.flow.internal.v0.enums.internal_payment_entity_type'] = PropTypes.oneOf(['authorization', 'capture', 'refund', 'dispute']);
|
|
11181
|
+
|
|
10855
11182
|
T['io.flow.internal.v0.models.report_order_reference'] = PropTypes.exact({
|
|
10856
11183
|
organization_id: PropTypes.string.isRequired,
|
|
10857
11184
|
order_number: PropTypes.string.isRequired,
|
|
@@ -10867,6 +11194,26 @@ T['io.flow.internal.v0.models.report_filter'] = PropTypes.exact({
|
|
|
10867
11194
|
source_type: T['io.flow.internal.v0.enums.source_type_filter'],
|
|
10868
11195
|
});
|
|
10869
11196
|
|
|
11197
|
+
T['io.flow.internal.v0.enums.report_file_status'] = PropTypes.oneOf(['processing', 'failed', 'succeeded']);
|
|
11198
|
+
T['io.flow.internal.v0.enums.report_file_type'] = PropTypes.oneOf(['stripe_connect_report']);
|
|
11199
|
+
|
|
11200
|
+
T['io.flow.internal.v0.models.report_record_retry_queue'] = PropTypes.exact({
|
|
11201
|
+
id: PropTypes.string.isRequired,
|
|
11202
|
+
report_file_type: T['io.flow.internal.v0.enums.report_file_type'].isRequired,
|
|
11203
|
+
type: T['io.flow.internal.v0.enums.internal_payment_entity_type'].isRequired,
|
|
11204
|
+
report_record_id: PropTypes.string.isRequired,
|
|
11205
|
+
dependent_source_id: PropTypes.string.isRequired,
|
|
11206
|
+
});
|
|
11207
|
+
|
|
11208
|
+
T['io.flow.internal.v0.models.report_file'] = PropTypes.exact({
|
|
11209
|
+
id: PropTypes.string.isRequired,
|
|
11210
|
+
processor: PropTypes.string.isRequired,
|
|
11211
|
+
report_file_type: T['io.flow.internal.v0.enums.report_file_type'].isRequired,
|
|
11212
|
+
file_name: PropTypes.string.isRequired,
|
|
11213
|
+
status: T['io.flow.internal.v0.enums.report_file_status'].isRequired,
|
|
11214
|
+
failure_reason: PropTypes.string,
|
|
11215
|
+
});
|
|
11216
|
+
|
|
10870
11217
|
T['io.flow.internal.v0.enums.report_payment_type'] = PropTypes.oneOf(['credit', 'debit']);
|
|
10871
11218
|
|
|
10872
11219
|
T['io.flow.internal.v0.enums.report_type'] = PropTypes.oneOf([
|
|
@@ -11049,70 +11396,6 @@ T['io.flow.internal.v0.models.ratecard_lanes_import_request'] = PropTypes.exact(
|
|
|
11049
11396
|
data: T['io.flow.ratecard.v0.models.ratecard_lanes_import_request_data'].isRequired,
|
|
11050
11397
|
});
|
|
11051
11398
|
|
|
11052
|
-
T['io.flow.common.v0.enums.rounding_method'] = PropTypes.oneOf(['up', 'down', 'nearest']);
|
|
11053
|
-
T['io.flow.common.v0.enums.rounding_type'] = PropTypes.oneOf(['pattern', 'multiple']);
|
|
11054
|
-
|
|
11055
|
-
T['io.flow.ratecard.v0.models.ratecard_carrier_summary'] = PropTypes.exact({
|
|
11056
|
-
id: PropTypes.string.isRequired,
|
|
11057
|
-
name: PropTypes.string.isRequired,
|
|
11058
|
-
});
|
|
11059
|
-
|
|
11060
|
-
T['io.flow.fulfillment.v0.enums.ratecard_owner'] = PropTypes.oneOf(['flow', 'organization']);
|
|
11061
|
-
|
|
11062
|
-
T['io.flow.ratecard.v0.models.ratecard_summary'] = PropTypes.exact({
|
|
11063
|
-
id: PropTypes.string.isRequired,
|
|
11064
|
-
number: PropTypes.string.isRequired,
|
|
11065
|
-
ratecard_owner: T['io.flow.fulfillment.v0.enums.ratecard_owner'].isRequired,
|
|
11066
|
-
});
|
|
11067
|
-
|
|
11068
|
-
T['io.flow.ratecard.v0.models.lane_summary'] = PropTypes.exact({
|
|
11069
|
-
id: PropTypes.string.isRequired,
|
|
11070
|
-
ratecard: T['io.flow.ratecard.v0.models.ratecard_summary'].isRequired,
|
|
11071
|
-
});
|
|
11072
|
-
|
|
11073
|
-
T['io.flow.label.v0.models.shipping_label_ratecard_summary'] = PropTypes.exact({
|
|
11074
|
-
id: PropTypes.string,
|
|
11075
|
-
ratecard_owner: T['io.flow.fulfillment.v0.enums.ratecard_owner'].isRequired,
|
|
11076
|
-
rate_level_key: PropTypes.string,
|
|
11077
|
-
glbe_shipping_method_id: PropTypes.string,
|
|
11078
|
-
glbe_proposition_name: PropTypes.string,
|
|
11079
|
-
channel_revenue_share_percentage: PropTypes.number,
|
|
11080
|
-
shopify_grc_gid: PropTypes.string,
|
|
11081
|
-
});
|
|
11082
|
-
|
|
11083
|
-
T['io.flow.ratecard.v0.models.ratecard_reference'] = PropTypes.exact({
|
|
11084
|
-
id: PropTypes.string.isRequired,
|
|
11085
|
-
});
|
|
11086
|
-
|
|
11087
|
-
T['io.flow.common.v0.models.rounding'] = PropTypes.exact({
|
|
11088
|
-
type: T['io.flow.common.v0.enums.rounding_type'].isRequired,
|
|
11089
|
-
method: T['io.flow.common.v0.enums.rounding_method'].isRequired,
|
|
11090
|
-
value: PropTypes.number.isRequired,
|
|
11091
|
-
});
|
|
11092
|
-
|
|
11093
|
-
T['io.flow.price.v0.models.pricing'] = PropTypes.exact({
|
|
11094
|
-
vat: T['io.flow.price.v0.enums.pricing_levy_setting'].isRequired,
|
|
11095
|
-
duty: T['io.flow.price.v0.enums.pricing_levy_setting'].isRequired,
|
|
11096
|
-
rounding: T['io.flow.common.v0.models.rounding'],
|
|
11097
|
-
});
|
|
11098
|
-
|
|
11099
|
-
T['io.flow.ratecard.v0.models.ratecard_service_summary'] = PropTypes.exact({
|
|
11100
|
-
id: PropTypes.string.isRequired,
|
|
11101
|
-
name: PropTypes.string.isRequired,
|
|
11102
|
-
carrier: T['io.flow.ratecard.v0.models.ratecard_carrier_summary'].isRequired,
|
|
11103
|
-
});
|
|
11104
|
-
|
|
11105
|
-
T['io.flow.ratecard.v0.models.shipment_window'] = PropTypes.exact({
|
|
11106
|
-
from: PropTypes.number.isRequired,
|
|
11107
|
-
to: PropTypes.number.isRequired,
|
|
11108
|
-
});
|
|
11109
|
-
|
|
11110
|
-
T['io.flow.common.v0.models.zone'] = PropTypes.exact({
|
|
11111
|
-
postals: PropTypes.arrayOf(PropTypes.string),
|
|
11112
|
-
provinces: PropTypes.arrayOf(PropTypes.string),
|
|
11113
|
-
country: PropTypes.string.isRequired,
|
|
11114
|
-
});
|
|
11115
|
-
|
|
11116
11399
|
T['io.flow.ratecard.v0.models.fuel_surcharge_service_fee'] = PropTypes.exact({
|
|
11117
11400
|
discriminator: PropTypes.oneOf(['fuel_surcharge_service_fee']).isRequired,
|
|
11118
11401
|
percent: PropTypes.number.isRequired,
|
|
@@ -11133,7 +11416,156 @@ T['io.flow.internal.v0.models.rate_source_composition_summary'] = PropTypes.exac
|
|
|
11133
11416
|
percentage_composition: PropTypes.number.isRequired,
|
|
11134
11417
|
});
|
|
11135
11418
|
|
|
11136
|
-
T['io.flow.
|
|
11419
|
+
T['io.flow.reference.v0.models.country'] = PropTypes.exact({
|
|
11420
|
+
name: PropTypes.string.isRequired,
|
|
11421
|
+
iso_3166_2: PropTypes.string.isRequired,
|
|
11422
|
+
iso_3166_3: PropTypes.string.isRequired,
|
|
11423
|
+
languages: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
11424
|
+
measurement_system: PropTypes.string.isRequired,
|
|
11425
|
+
default_currency: PropTypes.string,
|
|
11426
|
+
default_language: PropTypes.string,
|
|
11427
|
+
timezones: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
11428
|
+
default_delivered_duty: PropTypes.string,
|
|
11429
|
+
});
|
|
11430
|
+
|
|
11431
|
+
T['io.flow.session.v0.models.session_geo'] = PropTypes.exact({
|
|
11432
|
+
country: T['io.flow.reference.v0.models.country'].isRequired,
|
|
11433
|
+
currency: T['io.flow.reference.v0.models.currency'].isRequired,
|
|
11434
|
+
language: T['io.flow.reference.v0.models.language'].isRequired,
|
|
11435
|
+
locale: T['io.flow.reference.v0.models.locale'].isRequired,
|
|
11436
|
+
});
|
|
11437
|
+
|
|
11438
|
+
T['io.flow.session.v0.models.local_session'] = PropTypes.exact({
|
|
11439
|
+
country: T['io.flow.reference.v0.models.country'].isRequired,
|
|
11440
|
+
currency: T['io.flow.reference.v0.models.currency'].isRequired,
|
|
11441
|
+
language: T['io.flow.reference.v0.models.language'].isRequired,
|
|
11442
|
+
locale: T['io.flow.reference.v0.models.locale'].isRequired,
|
|
11443
|
+
experience: T['io.flow.experience.v0.models.experience_geo'].isRequired,
|
|
11444
|
+
});
|
|
11445
|
+
|
|
11446
|
+
T['io.flow.shopify.merchant.config.v0.models.country_of_origin'] = PropTypes.exact({
|
|
11447
|
+
country: T['io.flow.reference.v0.models.country'].isRequired,
|
|
11448
|
+
});
|
|
11449
|
+
|
|
11450
|
+
T['io.flow.internal.v0.models.resync_fallback_rates'] = PropTypes.exact({
|
|
11451
|
+
destinations: PropTypes.arrayOf(T['io.flow.reference.v0.models.country']).isRequired,
|
|
11452
|
+
});
|
|
11453
|
+
|
|
11454
|
+
T['io.flow.internal.v0.models.resync_by_hs6_origin'] = PropTypes.exact({
|
|
11455
|
+
hs6_code: PropTypes.string.isRequired,
|
|
11456
|
+
origin: T['io.flow.reference.v0.models.country'].isRequired,
|
|
11457
|
+
});
|
|
11458
|
+
|
|
11459
|
+
T['io.flow.internal.v0.models.resync_by_hs6_destinations'] = PropTypes.exact({
|
|
11460
|
+
hs6_code: PropTypes.string.isRequired,
|
|
11461
|
+
destinations: PropTypes.arrayOf(T['io.flow.reference.v0.models.country']).isRequired,
|
|
11462
|
+
});
|
|
11463
|
+
|
|
11464
|
+
T['io.flow.internal.v0.models.resync_by_destinations'] = PropTypes.exact({
|
|
11465
|
+
destinations: PropTypes.arrayOf(T['io.flow.reference.v0.models.country']).isRequired,
|
|
11466
|
+
});
|
|
11467
|
+
|
|
11468
|
+
T['io.flow.internal.v0.models.rates_names_summary'] = PropTypes.exact({
|
|
11469
|
+
origin: T['io.flow.reference.v0.models.country'].isRequired,
|
|
11470
|
+
destination: T['io.flow.reference.v0.models.country'].isRequired,
|
|
11471
|
+
summaries: PropTypes.arrayOf(T['io.flow.internal.v0.models.rate_name_summary']).isRequired,
|
|
11472
|
+
});
|
|
11473
|
+
|
|
11474
|
+
T['io.flow.internal.v0.models.rates_changed'] = PropTypes.exact({
|
|
11475
|
+
event_id: PropTypes.string.isRequired,
|
|
11476
|
+
timestamp: PropTypes.string.isRequired,
|
|
11477
|
+
hs6: PropTypes.string.isRequired,
|
|
11478
|
+
origin: T['io.flow.reference.v0.models.country'].isRequired,
|
|
11479
|
+
destination: T['io.flow.reference.v0.models.country'].isRequired,
|
|
11480
|
+
});
|
|
11481
|
+
|
|
11482
|
+
T['io.flow.internal.v0.models.rate_source_summary'] = PropTypes.exact({
|
|
11483
|
+
discriminator: PropTypes.oneOf(['rate-source']).isRequired,
|
|
11484
|
+
key: PropTypes.string.isRequired,
|
|
11485
|
+
destination: T['io.flow.reference.v0.models.country'].isRequired,
|
|
11486
|
+
rate_source_composition_summaries: PropTypes.arrayOf(T['io.flow.internal.v0.models.rate_source_composition_summary']).isRequired,
|
|
11487
|
+
});
|
|
11488
|
+
|
|
11489
|
+
T['io.flow.internal.v0.models.rate_source_summary_upserted'] = PropTypes.exact({
|
|
11490
|
+
discriminator: PropTypes.oneOf(['rate_source_summary_upserted']).isRequired,
|
|
11491
|
+
event_id: PropTypes.string.isRequired,
|
|
11492
|
+
timestamp: PropTypes.string.isRequired,
|
|
11493
|
+
rate_source_summary: T['io.flow.internal.v0.models.rate_source_summary'].isRequired,
|
|
11494
|
+
});
|
|
11495
|
+
|
|
11496
|
+
T['io.flow.internal.v0.models.rate_source_summary_deleted'] = PropTypes.exact({
|
|
11497
|
+
discriminator: PropTypes.oneOf(['rate_source_summary_deleted']).isRequired,
|
|
11498
|
+
event_id: PropTypes.string.isRequired,
|
|
11499
|
+
timestamp: PropTypes.string.isRequired,
|
|
11500
|
+
rate_source_summary: T['io.flow.internal.v0.models.rate_source_summary'].isRequired,
|
|
11501
|
+
});
|
|
11502
|
+
|
|
11503
|
+
T['io.flow.internal.v0.models.rate_destination_freshness_summary'] = PropTypes.exact({
|
|
11504
|
+
destination: T['io.flow.reference.v0.models.country'].isRequired,
|
|
11505
|
+
percentage_updated: PropTypes.number.isRequired,
|
|
11506
|
+
});
|
|
11507
|
+
|
|
11508
|
+
T['io.flow.internal.v0.models.rate_freshness_summary'] = PropTypes.exact({
|
|
11509
|
+
discriminator: PropTypes.oneOf(['rate-freshness']).isRequired,
|
|
11510
|
+
key: PropTypes.string.isRequired,
|
|
11511
|
+
updated_since: PropTypes.string.isRequired,
|
|
11512
|
+
destination_freshness_summaries: PropTypes.arrayOf(T['io.flow.internal.v0.models.rate_destination_freshness_summary']).isRequired,
|
|
11513
|
+
});
|
|
11514
|
+
|
|
11515
|
+
T['io.flow.internal.v0.unions.internal_harmonization_statistic'] = PropTypes.oneOfType([
|
|
11516
|
+
T['io.flow.internal.v0.models.time_to_classify'],
|
|
11517
|
+
T['io.flow.internal.v0.models.time_to_classify_aggregated'],
|
|
11518
|
+
T['io.flow.internal.v0.models.rate_source_summary'],
|
|
11519
|
+
T['io.flow.internal.v0.models.rate_freshness_summary'],
|
|
11520
|
+
]);
|
|
11521
|
+
|
|
11522
|
+
T['io.flow.internal.v0.models.rate_freshness_summary_upserted'] = PropTypes.exact({
|
|
11523
|
+
discriminator: PropTypes.oneOf(['rate_freshness_summary_upserted']).isRequired,
|
|
11524
|
+
event_id: PropTypes.string.isRequired,
|
|
11525
|
+
timestamp: PropTypes.string.isRequired,
|
|
11526
|
+
rate_freshness_summary: T['io.flow.internal.v0.models.rate_freshness_summary'].isRequired,
|
|
11527
|
+
});
|
|
11528
|
+
|
|
11529
|
+
T['io.flow.internal.v0.models.rate_freshness_summary_deleted'] = PropTypes.exact({
|
|
11530
|
+
discriminator: PropTypes.oneOf(['rate_freshness_summary_deleted']).isRequired,
|
|
11531
|
+
event_id: PropTypes.string.isRequired,
|
|
11532
|
+
timestamp: PropTypes.string.isRequired,
|
|
11533
|
+
rate_freshness_summary: T['io.flow.internal.v0.models.rate_freshness_summary'].isRequired,
|
|
11534
|
+
});
|
|
11535
|
+
|
|
11536
|
+
T['io.flow.internal.v0.models.currency_internal_rate'] = PropTypes.exact({
|
|
11537
|
+
id: PropTypes.string.isRequired,
|
|
11538
|
+
organization_id: PropTypes.string.isRequired,
|
|
11539
|
+
base: PropTypes.string.isRequired,
|
|
11540
|
+
target: PropTypes.string.isRequired,
|
|
11541
|
+
effective_at: PropTypes.string.isRequired,
|
|
11542
|
+
spot_rate: PropTypes.number.isRequired,
|
|
11543
|
+
flow_margin: PropTypes.number.isRequired,
|
|
11544
|
+
flow_rate: PropTypes.number.isRequired,
|
|
11545
|
+
organization_margin: PropTypes.number.isRequired,
|
|
11546
|
+
organization_rate: PropTypes.number.isRequired,
|
|
11547
|
+
rate_lock_unit: PropTypes.string.isRequired,
|
|
11548
|
+
rate_lock_value: PropTypes.number.isRequired,
|
|
11549
|
+
created_at: PropTypes.string.isRequired,
|
|
11550
|
+
updated_at: PropTypes.string.isRequired,
|
|
11551
|
+
updated_by_user_id: PropTypes.string.isRequired,
|
|
11552
|
+
});
|
|
11553
|
+
|
|
11554
|
+
T['io.flow.internal.v0.models.rate_upserted_v2'] = PropTypes.exact({
|
|
11555
|
+
discriminator: PropTypes.oneOf(['rate_upserted_v2']).isRequired,
|
|
11556
|
+
event_id: PropTypes.string.isRequired,
|
|
11557
|
+
timestamp: PropTypes.string.isRequired,
|
|
11558
|
+
rate: T['io.flow.internal.v0.models.currency_internal_rate'].isRequired,
|
|
11559
|
+
});
|
|
11560
|
+
|
|
11561
|
+
T['io.flow.internal.v0.models.rate_deleted_v2'] = PropTypes.exact({
|
|
11562
|
+
discriminator: PropTypes.oneOf(['rate_deleted_v2']).isRequired,
|
|
11563
|
+
event_id: PropTypes.string.isRequired,
|
|
11564
|
+
timestamp: PropTypes.string.isRequired,
|
|
11565
|
+
rate: T['io.flow.internal.v0.models.currency_internal_rate'].isRequired,
|
|
11566
|
+
});
|
|
11567
|
+
|
|
11568
|
+
T['io.flow.internal.v0.enums.duty_selection_rule'] = PropTypes.oneOf([
|
|
11137
11569
|
'lookup_by_tariff_code',
|
|
11138
11570
|
'lookup_by_hs6_code',
|
|
11139
11571
|
'fallback_for_jurisdiction',
|
|
@@ -11216,49 +11648,6 @@ T['io.flow.internal.v0.models.classified_product'] = PropTypes.exact({
|
|
|
11216
11648
|
classification_model_id: PropTypes.string.isRequired,
|
|
11217
11649
|
});
|
|
11218
11650
|
|
|
11219
|
-
T['io.flow.internal.v0.models.currency_internal_rate'] = PropTypes.exact({
|
|
11220
|
-
id: PropTypes.string.isRequired,
|
|
11221
|
-
organization_id: PropTypes.string.isRequired,
|
|
11222
|
-
base: PropTypes.string.isRequired,
|
|
11223
|
-
target: PropTypes.string.isRequired,
|
|
11224
|
-
effective_at: PropTypes.string.isRequired,
|
|
11225
|
-
spot_rate: PropTypes.number.isRequired,
|
|
11226
|
-
flow_margin: PropTypes.number.isRequired,
|
|
11227
|
-
flow_rate: PropTypes.number.isRequired,
|
|
11228
|
-
organization_margin: PropTypes.number.isRequired,
|
|
11229
|
-
organization_rate: PropTypes.number.isRequired,
|
|
11230
|
-
rate_lock_unit: PropTypes.string.isRequired,
|
|
11231
|
-
rate_lock_value: PropTypes.number.isRequired,
|
|
11232
|
-
created_at: PropTypes.string.isRequired,
|
|
11233
|
-
updated_at: PropTypes.string.isRequired,
|
|
11234
|
-
updated_by_user_id: PropTypes.string.isRequired,
|
|
11235
|
-
});
|
|
11236
|
-
|
|
11237
|
-
T['io.flow.internal.v0.models.rate_upserted_v2'] = PropTypes.exact({
|
|
11238
|
-
discriminator: PropTypes.oneOf(['rate_upserted_v2']).isRequired,
|
|
11239
|
-
event_id: PropTypes.string.isRequired,
|
|
11240
|
-
timestamp: PropTypes.string.isRequired,
|
|
11241
|
-
rate: T['io.flow.internal.v0.models.currency_internal_rate'].isRequired,
|
|
11242
|
-
});
|
|
11243
|
-
|
|
11244
|
-
T['io.flow.internal.v0.models.rate_deleted_v2'] = PropTypes.exact({
|
|
11245
|
-
discriminator: PropTypes.oneOf(['rate_deleted_v2']).isRequired,
|
|
11246
|
-
event_id: PropTypes.string.isRequired,
|
|
11247
|
-
timestamp: PropTypes.string.isRequired,
|
|
11248
|
-
rate: T['io.flow.internal.v0.models.currency_internal_rate'].isRequired,
|
|
11249
|
-
});
|
|
11250
|
-
|
|
11251
|
-
T['io.flow.internal.v0.enums.quote_request_type'] = PropTypes.oneOf(['generate', 'delete', 'update_currency_rate', 'update_country']);
|
|
11252
|
-
|
|
11253
|
-
T['io.flow.fulfillment.v0.models.delivery_option_reference'] = PropTypes.exact({
|
|
11254
|
-
id: PropTypes.string.isRequired,
|
|
11255
|
-
});
|
|
11256
|
-
|
|
11257
|
-
T['io.flow.internal.v0.models.fulfillment_internal_experience_reference'] = PropTypes.exact({
|
|
11258
|
-
id: PropTypes.string.isRequired,
|
|
11259
|
-
key: PropTypes.string.isRequired,
|
|
11260
|
-
});
|
|
11261
|
-
|
|
11262
11651
|
T['io.flow.internal.v0.models.platform_fee_percentage_tier'] = PropTypes.exact({
|
|
11263
11652
|
minimum_amount_base: PropTypes.number.isRequired,
|
|
11264
11653
|
rate: PropTypes.number.isRequired,
|
|
@@ -11853,50 +12242,124 @@ T['io.flow.internal.v0.models.order_tax_and_duty_inclusivity_setting_upserted']
|
|
|
11853
12242
|
order_tax_and_duty_inclusivity_setting: T['io.flow.internal.v0.models.order_tax_and_duty_inclusivity_setting'].isRequired,
|
|
11854
12243
|
});
|
|
11855
12244
|
|
|
11856
|
-
T['io.flow.
|
|
11857
|
-
|
|
11858
|
-
|
|
11859
|
-
|
|
11860
|
-
reason: T['io.flow.return.v0.models.return_reason'],
|
|
11861
|
-
notes: PropTypes.string,
|
|
11862
|
-
attributes: PropTypes.objectOf(PropTypes.string),
|
|
12245
|
+
T['io.flow.payment.v0.models.online_payment_authorization_form'] = PropTypes.exact({
|
|
12246
|
+
discriminator: PropTypes.oneOf(['online_payment_authorization_form']).isRequired,
|
|
12247
|
+
payment_id: PropTypes.string.isRequired,
|
|
12248
|
+
key: PropTypes.string,
|
|
11863
12249
|
});
|
|
11864
12250
|
|
|
11865
|
-
T['io.flow.
|
|
11866
|
-
|
|
11867
|
-
|
|
11868
|
-
|
|
11869
|
-
|
|
11870
|
-
|
|
11871
|
-
|
|
11872
|
-
|
|
11873
|
-
|
|
11874
|
-
has_tracking_label: PropTypes.bool,
|
|
11875
|
-
sort: PropTypes.string,
|
|
12251
|
+
T['io.flow.payment.v0.models.card_payment_source_authorization_form'] = PropTypes.exact({
|
|
12252
|
+
discriminator: PropTypes.oneOf(['card_payment_source_authorization_form']).isRequired,
|
|
12253
|
+
key: PropTypes.string,
|
|
12254
|
+
card_payment_source_id: PropTypes.string.isRequired,
|
|
12255
|
+
order_number: PropTypes.string.isRequired,
|
|
12256
|
+
amount: PropTypes.number.isRequired,
|
|
12257
|
+
currency: PropTypes.string.isRequired,
|
|
12258
|
+
browser_info: T['io.flow.payment.v0.models.browser_info'],
|
|
12259
|
+
inline_action_configuration: T['io.flow.payment.v0.unions.inline_action_configuration'],
|
|
11876
12260
|
});
|
|
11877
12261
|
|
|
11878
|
-
T['io.flow.
|
|
11879
|
-
|
|
11880
|
-
|
|
11881
|
-
|
|
11882
|
-
service_id: PropTypes.string.isRequired,
|
|
12262
|
+
T['io.flow.payment.v0.models.redirect_authorization_form'] = PropTypes.exact({
|
|
12263
|
+
discriminator: PropTypes.oneOf(['redirect_authorization_form']).isRequired,
|
|
12264
|
+
method: PropTypes.string.isRequired,
|
|
12265
|
+
issuer: T['io.flow.payment.v0.models.issuer_reference'],
|
|
11883
12266
|
order_number: PropTypes.string.isRequired,
|
|
11884
|
-
|
|
11885
|
-
|
|
12267
|
+
amount: PropTypes.number.isRequired,
|
|
12268
|
+
currency: PropTypes.string.isRequired,
|
|
12269
|
+
redirect_urls: T['io.flow.payment.v0.models.post_payment_redirect_urls'].isRequired,
|
|
12270
|
+
key: PropTypes.string,
|
|
12271
|
+
attributes: PropTypes.objectOf(PropTypes.string),
|
|
12272
|
+
ip: PropTypes.string,
|
|
11886
12273
|
});
|
|
11887
12274
|
|
|
11888
|
-
T['io.flow.
|
|
11889
|
-
discriminator: PropTypes.oneOf(['
|
|
11890
|
-
|
|
11891
|
-
|
|
11892
|
-
|
|
11893
|
-
|
|
12275
|
+
T['io.flow.payment.v0.models.paypal_authorization_form'] = PropTypes.exact({
|
|
12276
|
+
discriminator: PropTypes.oneOf(['paypal_authorization_form']).isRequired,
|
|
12277
|
+
paypal_payment_id: PropTypes.string.isRequired,
|
|
12278
|
+
paypal_payer_id: PropTypes.string.isRequired,
|
|
12279
|
+
key: PropTypes.string,
|
|
12280
|
+
attributes: PropTypes.objectOf(PropTypes.string),
|
|
12281
|
+
ip: PropTypes.string,
|
|
11894
12282
|
});
|
|
11895
12283
|
|
|
11896
|
-
T['io.flow.
|
|
11897
|
-
|
|
11898
|
-
|
|
11899
|
-
|
|
12284
|
+
T['io.flow.payment.v0.models.merchant_of_record_authorization_form'] = PropTypes.exact({
|
|
12285
|
+
discriminator: PropTypes.oneOf(['merchant_of_record_authorization_form']).isRequired,
|
|
12286
|
+
token: PropTypes.string.isRequired,
|
|
12287
|
+
order_number: PropTypes.string.isRequired,
|
|
12288
|
+
amount: PropTypes.number,
|
|
12289
|
+
currency: PropTypes.string,
|
|
12290
|
+
key: PropTypes.string,
|
|
12291
|
+
cvv: PropTypes.string,
|
|
12292
|
+
attributes: PropTypes.objectOf(PropTypes.string),
|
|
12293
|
+
ip: PropTypes.string,
|
|
12294
|
+
options: PropTypes.arrayOf(T['io.flow.payment.v0.enums.authorization_option']),
|
|
12295
|
+
redirect_urls: T['io.flow.payment.v0.models.post_payment_redirect_urls'],
|
|
12296
|
+
browser_info: T['io.flow.payment.v0.models.browser_info'],
|
|
12297
|
+
inline_action_configuration: T['io.flow.payment.v0.unions.inline_action_configuration'],
|
|
12298
|
+
});
|
|
12299
|
+
|
|
12300
|
+
T['io.flow.payment.v0.models.authorization_copy_form'] = PropTypes.exact({
|
|
12301
|
+
discriminator: PropTypes.oneOf(['authorization_copy_form']).isRequired,
|
|
12302
|
+
source_authorization_key: PropTypes.string.isRequired,
|
|
12303
|
+
amount: PropTypes.number.isRequired,
|
|
12304
|
+
currency: PropTypes.string.isRequired,
|
|
12305
|
+
attributes: PropTypes.objectOf(PropTypes.string),
|
|
12306
|
+
});
|
|
12307
|
+
|
|
12308
|
+
T['io.flow.order.management.v0.models.fulfillment_item_quantity'] = PropTypes.exact({
|
|
12309
|
+
status: T['io.flow.order.management.v0.enums.fulfillment_item_quantity_status'].isRequired,
|
|
12310
|
+
quantity: PropTypes.number.isRequired,
|
|
12311
|
+
});
|
|
12312
|
+
|
|
12313
|
+
T['io.flow.order.management.v0.models.fulfillment_item'] = PropTypes.exact({
|
|
12314
|
+
item_number: PropTypes.string.isRequired,
|
|
12315
|
+
line_number: PropTypes.number.isRequired,
|
|
12316
|
+
quantities: PropTypes.arrayOf(T['io.flow.order.management.v0.models.fulfillment_item_quantity']).isRequired,
|
|
12317
|
+
});
|
|
12318
|
+
|
|
12319
|
+
T['io.flow.return.v0.models.return_line_item'] = PropTypes.exact({
|
|
12320
|
+
item_number: PropTypes.string.isRequired,
|
|
12321
|
+
order_number: PropTypes.string,
|
|
12322
|
+
quantity: PropTypes.number.isRequired,
|
|
12323
|
+
reason: T['io.flow.return.v0.models.return_reason'],
|
|
12324
|
+
notes: PropTypes.string,
|
|
12325
|
+
attributes: PropTypes.objectOf(PropTypes.string),
|
|
12326
|
+
});
|
|
12327
|
+
|
|
12328
|
+
T['io.flow.experience.v0.enums.order_status'] = PropTypes.oneOf(['open', 'submitted']);
|
|
12329
|
+
|
|
12330
|
+
T['io.flow.export.v0.models.order_export_type'] = PropTypes.exact({
|
|
12331
|
+
discriminator: PropTypes.oneOf(['order_export_type']).isRequired,
|
|
12332
|
+
numbers: PropTypes.arrayOf(PropTypes.string),
|
|
12333
|
+
min_hours_since_submitted_at: PropTypes.number,
|
|
12334
|
+
submitted_on_or_before: PropTypes.string,
|
|
12335
|
+
submitted_on_or_after: PropTypes.string,
|
|
12336
|
+
status: T['io.flow.experience.v0.enums.order_status'],
|
|
12337
|
+
has_tracking_label: PropTypes.bool,
|
|
12338
|
+
sort: PropTypes.string,
|
|
12339
|
+
});
|
|
12340
|
+
|
|
12341
|
+
T['io.flow.internal.v0.models.order_combined_shipment'] = PropTypes.exact({
|
|
12342
|
+
id: PropTypes.string.isRequired,
|
|
12343
|
+
label_id: PropTypes.string.isRequired,
|
|
12344
|
+
carrier_id: PropTypes.string.isRequired,
|
|
12345
|
+
service_id: PropTypes.string.isRequired,
|
|
12346
|
+
order_number: PropTypes.string.isRequired,
|
|
12347
|
+
provided_carrier_name: PropTypes.string,
|
|
12348
|
+
carrier_tracking_number: PropTypes.string.isRequired,
|
|
12349
|
+
});
|
|
12350
|
+
|
|
12351
|
+
T['io.flow.internal.v0.models.order_combined_shipment_upserted'] = PropTypes.exact({
|
|
12352
|
+
discriminator: PropTypes.oneOf(['order_combined_shipment_upserted']).isRequired,
|
|
12353
|
+
event_id: PropTypes.string.isRequired,
|
|
12354
|
+
timestamp: PropTypes.string.isRequired,
|
|
12355
|
+
organization: PropTypes.string.isRequired,
|
|
12356
|
+
order_combined_shipment: T['io.flow.internal.v0.models.order_combined_shipment'].isRequired,
|
|
12357
|
+
});
|
|
12358
|
+
|
|
12359
|
+
T['io.flow.internal.v0.enums.order_cancellation_initiated_by'] = PropTypes.oneOf(['flow', 'organization']);
|
|
12360
|
+
|
|
12361
|
+
T['io.flow.internal.v0.models.order_cancellation_evidence_return_to_sender'] = PropTypes.exact({
|
|
12362
|
+
discriminator: PropTypes.oneOf(['return_to_sender']).isRequired,
|
|
11900
12363
|
initiated_by: T['io.flow.internal.v0.enums.order_cancellation_initiated_by'].isRequired,
|
|
11901
12364
|
});
|
|
11902
12365
|
|
|
@@ -11999,6 +12462,8 @@ T['io.flow.internal.v0.models.localizable_content_reference'] = PropTypes.exact(
|
|
|
11999
12462
|
content_id: PropTypes.string.isRequired,
|
|
12000
12463
|
});
|
|
12001
12464
|
|
|
12465
|
+
T['io.flow.internal.v0.unions.optin_prompt_display'] = PropTypes.oneOfType([T['io.flow.internal.v0.models.optin_prompt_checkout_display']]);
|
|
12466
|
+
T['io.flow.internal.v0.enums.prompt_options'] = PropTypes.oneOf(['notice_only', 'require_consent', 'consent_by_default']);
|
|
12002
12467
|
T['io.flow.internal.v0.enums.prompt_target'] = PropTypes.oneOf(['browse', 'checkout']);
|
|
12003
12468
|
T['io.flow.common.v0.enums.user_status'] = PropTypes.oneOf(['pending', 'active', 'inactive']);
|
|
12004
12469
|
|
|
@@ -12196,6 +12661,21 @@ T['io.flow.internal.v0.models.merchant_search_result'] = PropTypes.exact({
|
|
|
12196
12661
|
shop_domain: PropTypes.string,
|
|
12197
12662
|
});
|
|
12198
12663
|
|
|
12664
|
+
T['io.flow.internal.v0.enums.merchant_override_status'] = PropTypes.oneOf(['in_review', 'accepted', 'rejected']);
|
|
12665
|
+
|
|
12666
|
+
T['io.flow.internal.v0.models.merchant_override_decision_form'] = PropTypes.exact({
|
|
12667
|
+
status: T['io.flow.internal.v0.enums.merchant_override_status'].isRequired,
|
|
12668
|
+
});
|
|
12669
|
+
|
|
12670
|
+
T['io.flow.internal.v0.models.merchant_override'] = PropTypes.exact({
|
|
12671
|
+
id: PropTypes.string.isRequired,
|
|
12672
|
+
organization_id: PropTypes.string.isRequired,
|
|
12673
|
+
item_number: PropTypes.string.isRequired,
|
|
12674
|
+
status: T['io.flow.internal.v0.enums.merchant_override_status'].isRequired,
|
|
12675
|
+
hs6_code: PropTypes.string.isRequired,
|
|
12676
|
+
merchant_hs6_code: PropTypes.string.isRequired,
|
|
12677
|
+
});
|
|
12678
|
+
|
|
12199
12679
|
T['io.flow.internal.v0.models.merchant_guid_assignment'] = PropTypes.exact({
|
|
12200
12680
|
id: PropTypes.string.isRequired,
|
|
12201
12681
|
merchant_guid: PropTypes.string.isRequired,
|
|
@@ -12757,6 +13237,15 @@ T['io.flow.internal.v0.models.optin_attribute_form'] = PropTypes.exact({
|
|
|
12757
13237
|
status: T['io.flow.internal.v0.enums.content_status'].isRequired,
|
|
12758
13238
|
});
|
|
12759
13239
|
|
|
13240
|
+
T['io.flow.internal.v0.models.optin_attribute'] = PropTypes.exact({
|
|
13241
|
+
name: PropTypes.string.isRequired,
|
|
13242
|
+
optin_attribute_key: PropTypes.string.isRequired,
|
|
13243
|
+
target: T['io.flow.internal.v0.enums.prompt_target'].isRequired,
|
|
13244
|
+
status: T['io.flow.internal.v0.enums.content_status'].isRequired,
|
|
13245
|
+
created_at: PropTypes.string.isRequired,
|
|
13246
|
+
updated_at: PropTypes.string.isRequired,
|
|
13247
|
+
});
|
|
13248
|
+
|
|
12760
13249
|
T['io.flow.internal.v0.models.localization_upserted'] = PropTypes.exact({
|
|
12761
13250
|
discriminator: PropTypes.oneOf(['localization_upserted']).isRequired,
|
|
12762
13251
|
event_id: PropTypes.string.isRequired,
|
|
@@ -12793,30 +13282,6 @@ T['io.flow.internal.v0.enums.no_liability_reason_code'] = PropTypes.oneOf([
|
|
|
12793
13282
|
'duty_free_by_trade_agreement',
|
|
12794
13283
|
]);
|
|
12795
13284
|
|
|
12796
|
-
T['io.flow.internal.v0.models.liability_party_details'] = PropTypes.exact({
|
|
12797
|
-
eori_number: PropTypes.string,
|
|
12798
|
-
});
|
|
12799
|
-
|
|
12800
|
-
T['io.flow.internal.v0.enums.tax_party'] = PropTypes.oneOf(['consumer', 'organization', 'flow', 'carrier']);
|
|
12801
|
-
|
|
12802
|
-
T['io.flow.internal.v0.enums.nature_of_sale'] = PropTypes.oneOf([
|
|
12803
|
-
'consumer',
|
|
12804
|
-
'to_non_registered_business',
|
|
12805
|
-
'to_registered_business',
|
|
12806
|
-
'flash_title',
|
|
12807
|
-
]);
|
|
12808
|
-
|
|
12809
|
-
T['io.flow.internal.v0.enums.reporting_scheme'] = PropTypes.oneOf([
|
|
12810
|
-
'immediate_reporting_to_tax_authority',
|
|
12811
|
-
'periodic_reporting_to_tax_authority',
|
|
12812
|
-
'paid_at_border',
|
|
12813
|
-
'paid_on_delivery',
|
|
12814
|
-
]);
|
|
12815
|
-
|
|
12816
|
-
T['io.flow.internal.v0.enums.liability_type'] = PropTypes.oneOf(
|
|
12817
|
-
['full_value_tax', 'low_value_goods_tax', 'high_value_goods_tax', 'duties'],
|
|
12818
|
-
);
|
|
12819
|
-
|
|
12820
13285
|
T['io.flow.harmonization.v0.enums.tax_verification_result'] = PropTypes.oneOf(['valid', 'invalid', 'unable_to_validate']);
|
|
12821
13286
|
|
|
12822
13287
|
T['io.flow.harmonization.v0.models.detailed_tax_registration'] = PropTypes.exact({
|
|
@@ -12959,6 +13424,31 @@ T['io.flow.label.v0.models.shipping_label_document'] = PropTypes.exact({
|
|
|
12959
13424
|
});
|
|
12960
13425
|
|
|
12961
13426
|
T['io.flow.label.v0.enums.shipment_recipient'] = PropTypes.oneOf(['customer', 'return', 'crossdock']);
|
|
13427
|
+
|
|
13428
|
+
T['io.flow.internal.v0.models.liability_party_details'] = PropTypes.exact({
|
|
13429
|
+
eori_number: PropTypes.string,
|
|
13430
|
+
});
|
|
13431
|
+
|
|
13432
|
+
T['io.flow.internal.v0.enums.tax_party'] = PropTypes.oneOf(['consumer', 'organization', 'flow', 'carrier']);
|
|
13433
|
+
|
|
13434
|
+
T['io.flow.internal.v0.enums.nature_of_sale'] = PropTypes.oneOf([
|
|
13435
|
+
'consumer',
|
|
13436
|
+
'to_non_registered_business',
|
|
13437
|
+
'to_registered_business',
|
|
13438
|
+
'flash_title',
|
|
13439
|
+
]);
|
|
13440
|
+
|
|
13441
|
+
T['io.flow.internal.v0.enums.reporting_scheme'] = PropTypes.oneOf([
|
|
13442
|
+
'immediate_reporting_to_tax_authority',
|
|
13443
|
+
'periodic_reporting_to_tax_authority',
|
|
13444
|
+
'paid_at_border',
|
|
13445
|
+
'paid_on_delivery',
|
|
13446
|
+
]);
|
|
13447
|
+
|
|
13448
|
+
T['io.flow.internal.v0.enums.liability_type'] = PropTypes.oneOf(
|
|
13449
|
+
['full_value_tax', 'low_value_goods_tax', 'high_value_goods_tax', 'duties'],
|
|
13450
|
+
);
|
|
13451
|
+
|
|
12962
13452
|
T['io.flow.internal.v0.enums.label_request_result_state'] = PropTypes.oneOf(['success', 'failure']);
|
|
12963
13453
|
T['io.flow.label.v0.enums.direction'] = PropTypes.oneOf(['outbound', 'return']);
|
|
12964
13454
|
|
|
@@ -13053,24 +13543,6 @@ T['io.flow.internal.v0.models.order_validation_upserted'] = PropTypes.exact({
|
|
|
13053
13543
|
order_validation: T['io.flow.internal.v0.models.order_validation'].isRequired,
|
|
13054
13544
|
});
|
|
13055
13545
|
|
|
13056
|
-
T['io.flow.internal.v0.models.label_request_result'] = PropTypes.exact({
|
|
13057
|
-
id: PropTypes.string.isRequired,
|
|
13058
|
-
created_at: PropTypes.string.isRequired,
|
|
13059
|
-
state: T['io.flow.internal.v0.enums.label_request_result_state'].isRequired,
|
|
13060
|
-
organization_id: PropTypes.string.isRequired,
|
|
13061
|
-
order_number: PropTypes.string.isRequired,
|
|
13062
|
-
label_request_method: T['io.flow.label.v0.enums.label_request_method'].isRequired,
|
|
13063
|
-
carrier_id: PropTypes.string,
|
|
13064
|
-
carrier_tracking_number: PropTypes.string,
|
|
13065
|
-
url: PropTypes.string,
|
|
13066
|
-
error: PropTypes.string,
|
|
13067
|
-
suggested_responsibility: T['io.flow.internal.v0.enums.label_request_error_handling_responsibility'],
|
|
13068
|
-
origin_country: PropTypes.string,
|
|
13069
|
-
destination_country: PropTypes.string,
|
|
13070
|
-
reference_id: PropTypes.string,
|
|
13071
|
-
logistics_integration_provider: PropTypes.string,
|
|
13072
|
-
});
|
|
13073
|
-
|
|
13074
13546
|
T['io.flow.internal.v0.models.label_request_error'] = PropTypes.exact({
|
|
13075
13547
|
id: PropTypes.string.isRequired,
|
|
13076
13548
|
order_number: PropTypes.string.isRequired,
|
|
@@ -13193,9 +13665,18 @@ T['io.flow.internal.v0.models.label_creation_job'] = PropTypes.exact({
|
|
|
13193
13665
|
service_id: PropTypes.string,
|
|
13194
13666
|
carrier_tracking_number: PropTypes.string,
|
|
13195
13667
|
flow_tracking_number: PropTypes.string,
|
|
13668
|
+
label_id: PropTypes.string,
|
|
13196
13669
|
errors: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
13197
13670
|
});
|
|
13198
13671
|
|
|
13672
|
+
T['io.flow.internal.v0.models.label_creation_job_upserted'] = PropTypes.exact({
|
|
13673
|
+
discriminator: PropTypes.oneOf(['label_creation_job_upserted']).isRequired,
|
|
13674
|
+
event_id: PropTypes.string.isRequired,
|
|
13675
|
+
timestamp: PropTypes.string.isRequired,
|
|
13676
|
+
organization: PropTypes.string.isRequired,
|
|
13677
|
+
label_creation_job: T['io.flow.internal.v0.models.label_creation_job'].isRequired,
|
|
13678
|
+
});
|
|
13679
|
+
|
|
13199
13680
|
T['io.flow.internal.v0.enums.label_cancellation_error_code'] = PropTypes.oneOf(['already_used', 'carrier_unsupported']);
|
|
13200
13681
|
|
|
13201
13682
|
T['io.flow.internal.v0.models.label_cancellation_error'] = PropTypes.exact({
|
|
@@ -13257,7 +13738,7 @@ T['io.flow.internal.v0.models.item_sales_margin'] = PropTypes.exact({
|
|
|
13257
13738
|
position: PropTypes.number.isRequired,
|
|
13258
13739
|
});
|
|
13259
13740
|
|
|
13260
|
-
T['io.flow.internal.v0.enums.harmonization_decision_source'] = PropTypes.oneOf(['human', 'legacy_model', 'enterprise_model']);
|
|
13741
|
+
T['io.flow.internal.v0.enums.harmonization_decision_source'] = PropTypes.oneOf(['human', 'legacy_model', 'enterprise_model', 'merchant']);
|
|
13261
13742
|
T['io.flow.internal.v0.enums.item_type'] = PropTypes.oneOf(['standard', 'multi_product']);
|
|
13262
13743
|
|
|
13263
13744
|
T['io.flow.common.v0.models.item_reference'] = PropTypes.exact({
|
|
@@ -13278,13 +13759,6 @@ T['io.flow.internal.v0.models.prediction'] = PropTypes.exact({
|
|
|
13278
13759
|
item: PropTypes.string.isRequired,
|
|
13279
13760
|
});
|
|
13280
13761
|
|
|
13281
|
-
T['io.flow.internal.v0.models.labels_prediction'] = PropTypes.exact({
|
|
13282
|
-
main_material: PropTypes.string.isRequired,
|
|
13283
|
-
gender: PropTypes.string.isRequired,
|
|
13284
|
-
construction: PropTypes.string.isRequired,
|
|
13285
|
-
product_type: PropTypes.string.isRequired,
|
|
13286
|
-
});
|
|
13287
|
-
|
|
13288
13762
|
T['io.flow.internal.v0.enums.suggestion_action'] = PropTypes.oneOf(['accept', 'validate', 'review']);
|
|
13289
13763
|
|
|
13290
13764
|
T['io.flow.internal.v0.models.item_classification_v2'] = PropTypes.exact({
|
|
@@ -13295,18 +13769,6 @@ T['io.flow.internal.v0.models.item_classification_v2'] = PropTypes.exact({
|
|
|
13295
13769
|
model_id: PropTypes.string.isRequired,
|
|
13296
13770
|
});
|
|
13297
13771
|
|
|
13298
|
-
T['io.flow.internal.v0.models.item_classification_created'] = PropTypes.exact({
|
|
13299
|
-
discriminator: PropTypes.oneOf(['item_classification_created']).isRequired,
|
|
13300
|
-
event_id: PropTypes.string.isRequired,
|
|
13301
|
-
timestamp: PropTypes.string.isRequired,
|
|
13302
|
-
organization: PropTypes.string.isRequired,
|
|
13303
|
-
item_number: PropTypes.string.isRequired,
|
|
13304
|
-
model_id: PropTypes.string.isRequired,
|
|
13305
|
-
labels_prediction: T['io.flow.internal.v0.models.labels_prediction'].isRequired,
|
|
13306
|
-
action: T['io.flow.internal.v0.enums.suggestion_action'].isRequired,
|
|
13307
|
-
prediction_score: PropTypes.number,
|
|
13308
|
-
});
|
|
13309
|
-
|
|
13310
13772
|
T['io.flow.internal.v0.models.item_classification'] = PropTypes.exact({
|
|
13311
13773
|
id: PropTypes.string,
|
|
13312
13774
|
organization: PropTypes.string.isRequired,
|
|
@@ -13389,6 +13851,12 @@ T['io.flow.payment.v0.enums.card_type'] = PropTypes.oneOf([
|
|
|
13389
13851
|
'visa',
|
|
13390
13852
|
]);
|
|
13391
13853
|
|
|
13854
|
+
T['io.flow.payment.v0.models.external_card'] = PropTypes.exact({
|
|
13855
|
+
discriminator: PropTypes.oneOf(['external_card']).isRequired,
|
|
13856
|
+
id: PropTypes.string.isRequired,
|
|
13857
|
+
type: T['io.flow.payment.v0.enums.card_type'],
|
|
13858
|
+
});
|
|
13859
|
+
|
|
13392
13860
|
T['io.flow.payment.v0.models.card_confirmation_summary'] = PropTypes.exact({
|
|
13393
13861
|
discriminator: PropTypes.oneOf(['card_confirmation_summary']).isRequired,
|
|
13394
13862
|
type: T['io.flow.payment.v0.enums.card_type'],
|
|
@@ -13703,6 +14171,64 @@ T['io.flow.payment.gateway.v0.unions.action'] = PropTypes.oneOfType([
|
|
|
13703
14171
|
]);
|
|
13704
14172
|
|
|
13705
14173
|
T['io.flow.internal.v0.enums.rate_source'] = PropTypes.oneOf(['calculated', 'market']);
|
|
14174
|
+
T['io.flow.experience.v0.enums.order_payment_source_type'] = PropTypes.oneOf(['globale', 'third_party']);
|
|
14175
|
+
|
|
14176
|
+
T['io.flow.experience.v0.models.incoterm_summary'] = PropTypes.exact({
|
|
14177
|
+
configuration: T['io.flow.experience.v0.enums.incoterm_configuration'].isRequired,
|
|
14178
|
+
includes: T['io.flow.experience.v0.models.incoterm_includes'].isRequired,
|
|
14179
|
+
reason: PropTypes.string,
|
|
14180
|
+
});
|
|
14181
|
+
|
|
14182
|
+
T['io.flow.experience.v0.models.destination_contact_detail'] = PropTypes.exact({
|
|
14183
|
+
title: PropTypes.string.isRequired,
|
|
14184
|
+
country: PropTypes.string.isRequired,
|
|
14185
|
+
import_identifier: PropTypes.string.isRequired,
|
|
14186
|
+
});
|
|
14187
|
+
|
|
14188
|
+
T['io.flow.payment.v0.unions.device_details'] = PropTypes.oneOfType([T['io.flow.payment.v0.models.device_details_browser']]);
|
|
14189
|
+
|
|
14190
|
+
T['io.flow.payment.gateway.v0.models.payment_request_form'] = PropTypes.exact({
|
|
14191
|
+
amount: PropTypes.number.isRequired,
|
|
14192
|
+
currency: PropTypes.string.isRequired,
|
|
14193
|
+
order_information: T['io.flow.payment.gateway.v0.unions.order_information'].isRequired,
|
|
14194
|
+
device_details: T['io.flow.payment.v0.unions.device_details'].isRequired,
|
|
14195
|
+
locale: PropTypes.string,
|
|
14196
|
+
return_url: PropTypes.string.isRequired,
|
|
14197
|
+
attributes: PropTypes.objectOf(PropTypes.string),
|
|
14198
|
+
reference: PropTypes.string,
|
|
14199
|
+
payment_method_data: T['io.flow.payment.gateway.v0.unions.payment_method_data'],
|
|
14200
|
+
supported_actions: PropTypes.arrayOf(T['io.flow.payment.gateway.v0.enums.payment_action_type']),
|
|
14201
|
+
payment_capture_option: T['io.flow.payment.gateway.v0.unions.payment_capture_option'],
|
|
14202
|
+
});
|
|
14203
|
+
|
|
14204
|
+
T['io.flow.experience.v0.models.order_geo'] = PropTypes.exact({
|
|
14205
|
+
ip: PropTypes.string,
|
|
14206
|
+
country: PropTypes.string.isRequired,
|
|
14207
|
+
currency: PropTypes.string,
|
|
14208
|
+
language: PropTypes.string,
|
|
14209
|
+
});
|
|
14210
|
+
|
|
14211
|
+
T['io.flow.harmonization.v0.models.tax_registration'] = PropTypes.exact({
|
|
14212
|
+
id: PropTypes.string.isRequired,
|
|
14213
|
+
key: PropTypes.string.isRequired,
|
|
14214
|
+
number: PropTypes.string.isRequired,
|
|
14215
|
+
timestamp: PropTypes.string.isRequired,
|
|
14216
|
+
result: T['io.flow.harmonization.v0.enums.tax_verification_result'].isRequired,
|
|
14217
|
+
result_reason: PropTypes.string,
|
|
14218
|
+
name: PropTypes.string,
|
|
14219
|
+
address: PropTypes.string,
|
|
14220
|
+
company_name: PropTypes.string,
|
|
14221
|
+
});
|
|
14222
|
+
|
|
14223
|
+
T['io.flow.experience.v0.models.order_rules_summary'] = PropTypes.exact({
|
|
14224
|
+
applied: PropTypes.arrayOf(T['io.flow.experience.v0.models.order_rule_reference']).isRequired,
|
|
14225
|
+
});
|
|
14226
|
+
|
|
14227
|
+
T['io.flow.common.v0.enums.order_merchant_of_record'] = PropTypes.oneOf(['flow', 'organization', 'mixed']);
|
|
14228
|
+
|
|
14229
|
+
T['io.flow.payment.v0.models.card_metadata'] = PropTypes.exact({
|
|
14230
|
+
merchant_of_record: T['io.flow.common.v0.enums.order_merchant_of_record'],
|
|
14231
|
+
});
|
|
13706
14232
|
|
|
13707
14233
|
T['io.flow.common.v0.models.session_reference'] = PropTypes.exact({
|
|
13708
14234
|
id: PropTypes.string.isRequired,
|
|
@@ -14059,59 +14585,9 @@ T['io.flow.internal.v0.models.fulfillment_shopper_breakdown'] = PropTypes.exact(
|
|
|
14059
14585
|
total: T['io.flow.internal.v0.models.reporting_monetary_value'].isRequired,
|
|
14060
14586
|
});
|
|
14061
14587
|
|
|
14062
|
-
T['io.flow.
|
|
14063
|
-
|
|
14064
|
-
|
|
14065
|
-
});
|
|
14066
|
-
|
|
14067
|
-
T['io.flow.order.management.v0.models.fulfillment_item'] = PropTypes.exact({
|
|
14068
|
-
item_number: PropTypes.string.isRequired,
|
|
14069
|
-
line_number: PropTypes.number.isRequired,
|
|
14070
|
-
quantities: PropTypes.arrayOf(T['io.flow.order.management.v0.models.fulfillment_item_quantity']).isRequired,
|
|
14071
|
-
});
|
|
14072
|
-
|
|
14073
|
-
T['io.flow.internal.v0.models.fulfillment_shipment_tracking'] = PropTypes.exact({
|
|
14074
|
-
fulfillment_key: PropTypes.string.isRequired,
|
|
14075
|
-
flow_tracking_number: PropTypes.string.isRequired,
|
|
14076
|
-
carrier_tracking_number: PropTypes.string,
|
|
14077
|
-
carrier_tracking_url: PropTypes.string,
|
|
14078
|
-
items: PropTypes.arrayOf(T['io.flow.order.management.v0.models.fulfillment_item']).isRequired,
|
|
14079
|
-
});
|
|
14080
|
-
|
|
14081
|
-
T['io.flow.order.management.v0.models.fulfillment_line_cancel_form'] = PropTypes.exact({
|
|
14082
|
-
item_number: PropTypes.string,
|
|
14083
|
-
line_number: PropTypes.string,
|
|
14084
|
-
quantity: PropTypes.number.isRequired,
|
|
14085
|
-
});
|
|
14086
|
-
|
|
14087
|
-
T['io.flow.order.management.v0.enums.cancel_reason'] = PropTypes.oneOf(['out_of_stock', 'consumer_requested', 'flow_cancel']);
|
|
14088
|
-
T['io.flow.order.management.v0.enums.order_change_source'] = PropTypes.oneOf(['consumer', 'retailer', 'fulfillment', 'flow', 'carrier']);
|
|
14089
|
-
|
|
14090
|
-
T['io.flow.partner.v0.models.partner_fulfillment_complete_cancellation_form'] = PropTypes.exact({
|
|
14091
|
-
change_source: T['io.flow.order.management.v0.enums.order_change_source'].isRequired,
|
|
14092
|
-
reason: T['io.flow.order.management.v0.enums.cancel_reason'].isRequired,
|
|
14093
|
-
});
|
|
14094
|
-
|
|
14095
|
-
T['io.flow.partner.v0.models.partner_fulfillment_cancellation_form'] = PropTypes.exact({
|
|
14096
|
-
change_source: T['io.flow.order.management.v0.enums.order_change_source'].isRequired,
|
|
14097
|
-
reason: T['io.flow.order.management.v0.enums.cancel_reason'].isRequired,
|
|
14098
|
-
lines: PropTypes.arrayOf(T['io.flow.order.management.v0.models.fulfillment_line_cancel_form']).isRequired,
|
|
14099
|
-
});
|
|
14100
|
-
|
|
14101
|
-
T['io.flow.order.management.v0.models.fulfillment_complete_cancellation_form'] = PropTypes.exact({
|
|
14102
|
-
change_source: T['io.flow.order.management.v0.enums.order_change_source'].isRequired,
|
|
14103
|
-
reason: T['io.flow.order.management.v0.enums.cancel_reason'].isRequired,
|
|
14104
|
-
});
|
|
14105
|
-
|
|
14106
|
-
T['io.flow.order.management.v0.models.fulfillment_cancellation_form'] = PropTypes.exact({
|
|
14107
|
-
change_source: T['io.flow.order.management.v0.enums.order_change_source'].isRequired,
|
|
14108
|
-
reason: T['io.flow.order.management.v0.enums.cancel_reason'].isRequired,
|
|
14109
|
-
lines: PropTypes.arrayOf(T['io.flow.order.management.v0.models.fulfillment_line_cancel_form']).isRequired,
|
|
14110
|
-
});
|
|
14111
|
-
|
|
14112
|
-
T['io.flow.internal.v0.models.fulfillment_trigger_time'] = PropTypes.exact({
|
|
14113
|
-
discriminator: PropTypes.oneOf(['by_time']).isRequired,
|
|
14114
|
-
placeholder: PropTypes.string,
|
|
14588
|
+
T['io.flow.internal.v0.models.fulfillment_trigger_time'] = PropTypes.exact({
|
|
14589
|
+
discriminator: PropTypes.oneOf(['by_time']).isRequired,
|
|
14590
|
+
placeholder: PropTypes.string,
|
|
14115
14591
|
});
|
|
14116
14592
|
|
|
14117
14593
|
T['io.flow.internal.v0.models.fulfillment_trigger_proof'] = PropTypes.exact({
|
|
@@ -14171,6 +14647,8 @@ T['io.flow.internal.v0.models.shopper_lines'] = PropTypes.exact({
|
|
|
14171
14647
|
total: PropTypes.number.isRequired,
|
|
14172
14648
|
});
|
|
14173
14649
|
|
|
14650
|
+
T['io.flow.experience.v0.enums.order_type'] = PropTypes.oneOf(['standard', 'replacement', 'edit']);
|
|
14651
|
+
|
|
14174
14652
|
T['io.flow.internal.v0.models.fulfillment_business'] = PropTypes.exact({
|
|
14175
14653
|
vat_registration_number: PropTypes.string.isRequired,
|
|
14176
14654
|
});
|
|
@@ -14455,6 +14933,24 @@ T['io.flow.internal.v0.unions.feature_rule_form'] = PropTypes.oneOfType([
|
|
|
14455
14933
|
T['io.flow.internal.v0.models.string_feature_rule_form'],
|
|
14456
14934
|
]);
|
|
14457
14935
|
|
|
14936
|
+
T['io.flow.internal.v0.models.feature_geo_form'] = PropTypes.exact({
|
|
14937
|
+
country: PropTypes.string,
|
|
14938
|
+
currency: PropTypes.string,
|
|
14939
|
+
language: PropTypes.string,
|
|
14940
|
+
locale: PropTypes.string,
|
|
14941
|
+
region: PropTypes.string,
|
|
14942
|
+
});
|
|
14943
|
+
|
|
14944
|
+
T['io.flow.internal.v0.models.feature_context_form'] = PropTypes.exact({
|
|
14945
|
+
experience_key: PropTypes.string,
|
|
14946
|
+
geo: T['io.flow.internal.v0.models.feature_geo_form'],
|
|
14947
|
+
});
|
|
14948
|
+
|
|
14949
|
+
T['io.flow.internal.v0.models.feature_value_form'] = PropTypes.exact({
|
|
14950
|
+
feature_query: PropTypes.string.isRequired,
|
|
14951
|
+
context: T['io.flow.internal.v0.models.feature_context_form'].isRequired,
|
|
14952
|
+
});
|
|
14953
|
+
|
|
14458
14954
|
T['io.flow.internal.v0.models.string_feature_default_value'] = PropTypes.exact({
|
|
14459
14955
|
discriminator: PropTypes.oneOf(['string']).isRequired,
|
|
14460
14956
|
value: PropTypes.string.isRequired,
|
|
@@ -14994,6 +15490,35 @@ T['io.flow.payment.gateway.v0.models.payment_payment_method'] = PropTypes.exact(
|
|
|
14994
15490
|
possible_actions: PropTypes.arrayOf(T['io.flow.payment.gateway.v0.enums.payment_action_type']).isRequired,
|
|
14995
15491
|
});
|
|
14996
15492
|
|
|
15493
|
+
T['io.flow.payment.gateway.v0.models.payment_request'] = PropTypes.exact({
|
|
15494
|
+
id: PropTypes.string.isRequired,
|
|
15495
|
+
status: T['io.flow.payment.gateway.v0.enums.payment_status'].isRequired,
|
|
15496
|
+
created_at: PropTypes.string.isRequired,
|
|
15497
|
+
updated_at: PropTypes.string.isRequired,
|
|
15498
|
+
available_payment_methods: PropTypes.arrayOf(T['io.flow.payment.gateway.v0.models.payment_payment_method']).isRequired,
|
|
15499
|
+
last_payment_failure: T['io.flow.payment.gateway.v0.models.payment_failure'],
|
|
15500
|
+
next_action: T['io.flow.payment.gateway.v0.unions.action'],
|
|
15501
|
+
amount: PropTypes.number.isRequired,
|
|
15502
|
+
currency: PropTypes.string.isRequired,
|
|
15503
|
+
base_amount: PropTypes.number,
|
|
15504
|
+
base_currency: PropTypes.string,
|
|
15505
|
+
order_information: T['io.flow.payment.gateway.v0.unions.order_information'].isRequired,
|
|
15506
|
+
device_details: T['io.flow.payment.v0.unions.device_details'].isRequired,
|
|
15507
|
+
locale: PropTypes.string,
|
|
15508
|
+
return_url: PropTypes.string.isRequired,
|
|
15509
|
+
attributes: PropTypes.objectOf(PropTypes.string),
|
|
15510
|
+
reference: PropTypes.string,
|
|
15511
|
+
payment_information: T['io.flow.payment.gateway.v0.models.payment_information'].isRequired,
|
|
15512
|
+
supported_actions: PropTypes.arrayOf(T['io.flow.payment.gateway.v0.enums.payment_action_type']).isRequired,
|
|
15513
|
+
payment_capture_option: T['io.flow.payment.gateway.v0.unions.payment_capture_option'],
|
|
15514
|
+
review: T['io.flow.payment.gateway.v0.models.payment_request_review'],
|
|
15515
|
+
});
|
|
15516
|
+
|
|
15517
|
+
T['io.flow.internal.v0.models.internal_payment_request'] = PropTypes.exact({
|
|
15518
|
+
payment_request: T['io.flow.payment.gateway.v0.models.payment_request'].isRequired,
|
|
15519
|
+
actual_action: T['io.flow.payment.gateway.v0.unions.action'],
|
|
15520
|
+
});
|
|
15521
|
+
|
|
14997
15522
|
T['io.flow.internal.v0.models.dispute_details_stripe'] = PropTypes.exact({
|
|
14998
15523
|
discriminator: PropTypes.oneOf(['stripe']).isRequired,
|
|
14999
15524
|
payment_intent_id: PropTypes.string,
|
|
@@ -15082,6 +15607,9 @@ T['io.flow.common.v0.enums.unit_of_measurement'] = PropTypes.oneOf([
|
|
|
15082
15607
|
'inch',
|
|
15083
15608
|
'foot',
|
|
15084
15609
|
'cubic_inch',
|
|
15610
|
+
'cubic_foot',
|
|
15611
|
+
'cubic_millimeter',
|
|
15612
|
+
'cubic_centimeter',
|
|
15085
15613
|
'cubic_meter',
|
|
15086
15614
|
'gram',
|
|
15087
15615
|
'kilogram',
|
|
@@ -15225,6 +15753,107 @@ T['io.flow.internal.v0.models.delivered_duty_option_message'] = PropTypes.exact(
|
|
|
15225
15753
|
text: PropTypes.string.isRequired,
|
|
15226
15754
|
});
|
|
15227
15755
|
|
|
15756
|
+
T['io.flow.common.v0.enums.delivered_duty'] = PropTypes.oneOf(['paid', 'unpaid']);
|
|
15757
|
+
|
|
15758
|
+
T['io.flow.ratecard.v0.models.ratecard_lane_import_form'] = PropTypes.exact({
|
|
15759
|
+
ratecard_owner: T['io.flow.fulfillment.v0.enums.ratecard_owner'].isRequired,
|
|
15760
|
+
service: PropTypes.string.isRequired,
|
|
15761
|
+
currency: PropTypes.string.isRequired,
|
|
15762
|
+
delivered_duty: T['io.flow.common.v0.enums.delivered_duty'].isRequired,
|
|
15763
|
+
origin: T['io.flow.common.v0.models.zone'].isRequired,
|
|
15764
|
+
destination: T['io.flow.common.v0.models.zone'].isRequired,
|
|
15765
|
+
shipment_window: T['io.flow.ratecard.v0.models.shipment_window'].isRequired,
|
|
15766
|
+
dim_factor: PropTypes.number.isRequired,
|
|
15767
|
+
weight_unit: T['io.flow.common.v0.enums.unit_of_measurement'].isRequired,
|
|
15768
|
+
distance_unit: T['io.flow.common.v0.enums.unit_of_measurement'].isRequired,
|
|
15769
|
+
rates: PropTypes.arrayOf(T['io.flow.ratecard.v0.models.ratecard_rate_form']).isRequired,
|
|
15770
|
+
});
|
|
15771
|
+
|
|
15772
|
+
T['io.flow.experience.v0.models.order_builder_delivered_duty_form'] = PropTypes.exact({
|
|
15773
|
+
delivered_duty: T['io.flow.common.v0.enums.delivered_duty'].isRequired,
|
|
15774
|
+
});
|
|
15775
|
+
|
|
15776
|
+
T['io.flow.experience.v0.models.experience_form'] = PropTypes.exact({
|
|
15777
|
+
region_id: PropTypes.string.isRequired,
|
|
15778
|
+
name: PropTypes.string.isRequired,
|
|
15779
|
+
delivered_duty: T['io.flow.common.v0.enums.delivered_duty'],
|
|
15780
|
+
country: PropTypes.string,
|
|
15781
|
+
currency: PropTypes.string,
|
|
15782
|
+
language: PropTypes.string,
|
|
15783
|
+
key: PropTypes.string,
|
|
15784
|
+
position: PropTypes.number,
|
|
15785
|
+
measurement_system: T['io.flow.common.v0.enums.measurement_system'],
|
|
15786
|
+
subcatalog_id: PropTypes.string,
|
|
15787
|
+
});
|
|
15788
|
+
|
|
15789
|
+
T['io.flow.experience.v0.models.experience_defaults'] = PropTypes.exact({
|
|
15790
|
+
key: PropTypes.string.isRequired,
|
|
15791
|
+
name: PropTypes.string.isRequired,
|
|
15792
|
+
delivered_duty: T['io.flow.common.v0.enums.delivered_duty'].isRequired,
|
|
15793
|
+
country: PropTypes.string.isRequired,
|
|
15794
|
+
currency: PropTypes.string.isRequired,
|
|
15795
|
+
language: PropTypes.string.isRequired,
|
|
15796
|
+
measurement_system: T['io.flow.common.v0.enums.measurement_system'].isRequired,
|
|
15797
|
+
});
|
|
15798
|
+
|
|
15799
|
+
T['io.flow.experience.v0.models.delivered_duty_setting'] = PropTypes.exact({
|
|
15800
|
+
'default': T['io.flow.common.v0.enums.delivered_duty'].isRequired,
|
|
15801
|
+
available: PropTypes.arrayOf(T['io.flow.common.v0.enums.delivered_duty']).isRequired,
|
|
15802
|
+
display: T['io.flow.experience.v0.enums.delivered_duty_display_type'],
|
|
15803
|
+
});
|
|
15804
|
+
|
|
15805
|
+
T['io.flow.experience.v0.models.experience_settings'] = PropTypes.exact({
|
|
15806
|
+
delivered_duty: T['io.flow.experience.v0.models.delivered_duty_setting'].isRequired,
|
|
15807
|
+
pricing_settings: T['io.flow.experience.v0.models.pricing_settings'],
|
|
15808
|
+
logistics_settings: T['io.flow.experience.v0.models.logistics_settings'],
|
|
15809
|
+
checkout_settings: T['io.flow.experience.v0.models.experience_checkout_configuration_settings'],
|
|
15810
|
+
});
|
|
15811
|
+
|
|
15812
|
+
T['io.flow.experience.v0.models.experience'] = PropTypes.exact({
|
|
15813
|
+
discriminator: PropTypes.oneOf(['experience']).isRequired,
|
|
15814
|
+
id: PropTypes.string.isRequired,
|
|
15815
|
+
key: PropTypes.string.isRequired,
|
|
15816
|
+
name: PropTypes.string.isRequired,
|
|
15817
|
+
delivered_duty: T['io.flow.common.v0.enums.delivered_duty'].isRequired,
|
|
15818
|
+
region: T['io.flow.experience.v0.models.region_reference'].isRequired,
|
|
15819
|
+
country: PropTypes.string.isRequired,
|
|
15820
|
+
currency: PropTypes.string.isRequired,
|
|
15821
|
+
language: PropTypes.string.isRequired,
|
|
15822
|
+
measurement_system: T['io.flow.common.v0.enums.measurement_system'].isRequired,
|
|
15823
|
+
subcatalog: T['io.flow.catalog.v0.models.subcatalog_reference'].isRequired,
|
|
15824
|
+
position: PropTypes.number.isRequired,
|
|
15825
|
+
settings: T['io.flow.experience.v0.models.experience_settings'].isRequired,
|
|
15826
|
+
status: T['io.flow.experience.v0.enums.experience_status'],
|
|
15827
|
+
});
|
|
15828
|
+
|
|
15829
|
+
T['io.flow.experience.v0.unions.expandable_experience'] = PropTypes.oneOfType([
|
|
15830
|
+
T['io.flow.experience.v0.models.experience'],
|
|
15831
|
+
T['io.flow.experience.v0.models.experience_reference'],
|
|
15832
|
+
]);
|
|
15833
|
+
|
|
15834
|
+
T['io.flow.internal.v0.models.delivered_duty_preference_form'] = PropTypes.exact({
|
|
15835
|
+
methods: PropTypes.arrayOf(T['io.flow.common.v0.enums.delivered_duty']).isRequired,
|
|
15836
|
+
'default': T['io.flow.common.v0.enums.delivered_duty'],
|
|
15837
|
+
display: T['io.flow.experience.v0.enums.delivered_duty_display_type'],
|
|
15838
|
+
});
|
|
15839
|
+
|
|
15840
|
+
T['io.flow.internal.v0.models.delivered_duty_preference'] = PropTypes.exact({
|
|
15841
|
+
methods: PropTypes.arrayOf(T['io.flow.common.v0.enums.delivered_duty']).isRequired,
|
|
15842
|
+
'default': T['io.flow.common.v0.enums.delivered_duty'].isRequired,
|
|
15843
|
+
display: T['io.flow.experience.v0.enums.delivered_duty_display_type'].isRequired,
|
|
15844
|
+
});
|
|
15845
|
+
|
|
15846
|
+
T['io.flow.internal.v0.models.delivered_duty_option'] = PropTypes.exact({
|
|
15847
|
+
methods: PropTypes.arrayOf(T['io.flow.common.v0.enums.delivered_duty']).isRequired,
|
|
15848
|
+
message: T['io.flow.internal.v0.models.delivered_duty_option_message'],
|
|
15849
|
+
selectable: PropTypes.bool.isRequired,
|
|
15850
|
+
});
|
|
15851
|
+
|
|
15852
|
+
T['io.flow.internal.v0.models.delivered_duty_options'] = PropTypes.exact({
|
|
15853
|
+
options: PropTypes.arrayOf(T['io.flow.internal.v0.models.delivered_duty_option']).isRequired,
|
|
15854
|
+
message: T['io.flow.internal.v0.models.delivered_duty_options_message'],
|
|
15855
|
+
});
|
|
15856
|
+
|
|
15228
15857
|
T['io.flow.internal.v0.enums.rejection_reason'] = PropTypes.oneOf([
|
|
15229
15858
|
'merchant_policy',
|
|
15230
15859
|
'previous_chargebacks',
|
|
@@ -15330,6 +15959,12 @@ T['io.flow.order.price.v0.enums.order_price_detail_key'] = PropTypes.oneOf([
|
|
|
15330
15959
|
'tip',
|
|
15331
15960
|
]);
|
|
15332
15961
|
|
|
15962
|
+
T['io.flow.label.v0.models.shipping_label_lane_summary'] = PropTypes.exact({
|
|
15963
|
+
id: PropTypes.string,
|
|
15964
|
+
ratecard: T['io.flow.label.v0.models.shipping_label_ratecard_summary'].isRequired,
|
|
15965
|
+
weight_break: PropTypes.number,
|
|
15966
|
+
});
|
|
15967
|
+
|
|
15333
15968
|
T['io.flow.experience.v0.models.allocation_order_summary'] = PropTypes.exact({
|
|
15334
15969
|
id: PropTypes.string.isRequired,
|
|
15335
15970
|
number: PropTypes.string.isRequired,
|
|
@@ -15688,6 +16323,23 @@ T['io.flow.internal.v0.models.country_picker_payment_method'] = PropTypes.exact(
|
|
|
15688
16323
|
id: PropTypes.string.isRequired,
|
|
15689
16324
|
});
|
|
15690
16325
|
|
|
16326
|
+
T['io.flow.internal.v0.models.country_picker_experience_data'] = PropTypes.exact({
|
|
16327
|
+
experience_key: PropTypes.string.isRequired,
|
|
16328
|
+
payment_methods: PropTypes.arrayOf(T['io.flow.internal.v0.models.country_picker_payment_method']).isRequired,
|
|
16329
|
+
});
|
|
16330
|
+
|
|
16331
|
+
T['io.flow.internal.v0.models.country_picker_currency'] = PropTypes.exact({
|
|
16332
|
+
iso_4217_3: PropTypes.string.isRequired,
|
|
16333
|
+
name: PropTypes.string.isRequired,
|
|
16334
|
+
});
|
|
16335
|
+
|
|
16336
|
+
T['io.flow.internal.v0.models.country_picker_country'] = PropTypes.exact({
|
|
16337
|
+
iso_3166_2: PropTypes.string.isRequired,
|
|
16338
|
+
iso_3166_3: PropTypes.string.isRequired,
|
|
16339
|
+
name: PropTypes.string.isRequired,
|
|
16340
|
+
default_currency: PropTypes.string,
|
|
16341
|
+
});
|
|
16342
|
+
|
|
15691
16343
|
T['io.flow.internal.v0.models.country_picker_delivery_window'] = PropTypes.exact({
|
|
15692
16344
|
name: PropTypes.string,
|
|
15693
16345
|
from: PropTypes.string.isRequired,
|
|
@@ -15695,6 +16347,18 @@ T['io.flow.internal.v0.models.country_picker_delivery_window'] = PropTypes.exact
|
|
|
15695
16347
|
timezone: PropTypes.string,
|
|
15696
16348
|
});
|
|
15697
16349
|
|
|
16350
|
+
T['io.flow.internal.v0.models.country_picker_country_data'] = PropTypes.exact({
|
|
16351
|
+
country: PropTypes.string.isRequired,
|
|
16352
|
+
delivery_window: PropTypes.arrayOf(T['io.flow.internal.v0.models.country_picker_delivery_window']).isRequired,
|
|
16353
|
+
});
|
|
16354
|
+
|
|
16355
|
+
T['io.flow.internal.v0.models.country_picker_data'] = PropTypes.exact({
|
|
16356
|
+
countries: PropTypes.arrayOf(T['io.flow.internal.v0.models.country_picker_country']).isRequired,
|
|
16357
|
+
currencies: PropTypes.arrayOf(T['io.flow.internal.v0.models.country_picker_currency']).isRequired,
|
|
16358
|
+
experience_data: PropTypes.arrayOf(T['io.flow.internal.v0.models.country_picker_experience_data']),
|
|
16359
|
+
country_data: PropTypes.arrayOf(T['io.flow.internal.v0.models.country_picker_country_data']),
|
|
16360
|
+
});
|
|
16361
|
+
|
|
15698
16362
|
T['io.flow.internal.v0.models.validation_character_length'] = PropTypes.exact({
|
|
15699
16363
|
discriminator: PropTypes.oneOf(['validation_character_length']).isRequired,
|
|
15700
16364
|
min: PropTypes.number,
|
|
@@ -15715,6 +16379,16 @@ T['io.flow.internal.v0.models.localization_form'] = PropTypes.exact({
|
|
|
15715
16379
|
elements: PropTypes.objectOf(T['io.flow.internal.v0.models.localized_content_element']).isRequired,
|
|
15716
16380
|
});
|
|
15717
16381
|
|
|
16382
|
+
T['io.flow.internal.v0.models.optin_prompt_form'] = PropTypes.exact({
|
|
16383
|
+
optin_attribute_key: PropTypes.string.isRequired,
|
|
16384
|
+
region: PropTypes.string.isRequired,
|
|
16385
|
+
options: PropTypes.arrayOf(T['io.flow.internal.v0.enums.prompt_options']).isRequired,
|
|
16386
|
+
content: T['io.flow.internal.v0.models.localization_form'].isRequired,
|
|
16387
|
+
position: PropTypes.number.isRequired,
|
|
16388
|
+
enforce_on: PropTypes.string,
|
|
16389
|
+
display: T['io.flow.internal.v0.unions.optin_prompt_display'],
|
|
16390
|
+
});
|
|
16391
|
+
|
|
15718
16392
|
T['io.flow.internal.v0.models.localized_content_form'] = PropTypes.exact({
|
|
15719
16393
|
schema_key: PropTypes.string.isRequired,
|
|
15720
16394
|
status: T['io.flow.internal.v0.enums.content_status'].isRequired,
|
|
@@ -15730,18 +16404,34 @@ T['io.flow.internal.v0.models.localization'] = PropTypes.exact({
|
|
|
15730
16404
|
elements: PropTypes.objectOf(T['io.flow.internal.v0.models.localized_content_element']).isRequired,
|
|
15731
16405
|
});
|
|
15732
16406
|
|
|
15733
|
-
T['io.flow.internal.v0.
|
|
15734
|
-
|
|
15735
|
-
|
|
15736
|
-
|
|
15737
|
-
source: T['io.flow.internal.v0.models.localization'].isRequired,
|
|
15738
|
-
localizations: PropTypes.arrayOf(T['io.flow.internal.v0.models.localization_ref']).isRequired,
|
|
15739
|
-
});
|
|
16407
|
+
T['io.flow.internal.v0.unions.localizable_content'] = PropTypes.oneOfType([
|
|
16408
|
+
T['io.flow.internal.v0.models.localizable_content_reference'],
|
|
16409
|
+
T['io.flow.internal.v0.models.localization'],
|
|
16410
|
+
]);
|
|
15740
16411
|
|
|
15741
|
-
T['io.flow.internal.v0.models.
|
|
15742
|
-
|
|
15743
|
-
|
|
15744
|
-
|
|
16412
|
+
T['io.flow.internal.v0.models.optin_prompt'] = PropTypes.exact({
|
|
16413
|
+
id: PropTypes.string.isRequired,
|
|
16414
|
+
optin_attribute: T['io.flow.internal.v0.models.optin_attribute'].isRequired,
|
|
16415
|
+
region: PropTypes.string.isRequired,
|
|
16416
|
+
options: PropTypes.arrayOf(T['io.flow.internal.v0.enums.prompt_options']).isRequired,
|
|
16417
|
+
content: T['io.flow.internal.v0.unions.localizable_content'].isRequired,
|
|
16418
|
+
position: PropTypes.number.isRequired,
|
|
16419
|
+
enforce_on: PropTypes.string.isRequired,
|
|
16420
|
+
display: T['io.flow.internal.v0.unions.optin_prompt_display'],
|
|
16421
|
+
});
|
|
16422
|
+
|
|
16423
|
+
T['io.flow.internal.v0.models.localized_content'] = PropTypes.exact({
|
|
16424
|
+
id: PropTypes.string.isRequired,
|
|
16425
|
+
schema_key: PropTypes.string.isRequired,
|
|
16426
|
+
status: T['io.flow.internal.v0.enums.content_status'].isRequired,
|
|
16427
|
+
source: T['io.flow.internal.v0.models.localization'].isRequired,
|
|
16428
|
+
localizations: PropTypes.arrayOf(T['io.flow.internal.v0.models.localization_ref']).isRequired,
|
|
16429
|
+
});
|
|
16430
|
+
|
|
16431
|
+
T['io.flow.internal.v0.models.content_schema_element'] = PropTypes.exact({
|
|
16432
|
+
type: T['io.flow.internal.v0.enums.content_element_type'].isRequired,
|
|
16433
|
+
description: PropTypes.string,
|
|
16434
|
+
example: PropTypes.string,
|
|
15745
16435
|
required: PropTypes.bool,
|
|
15746
16436
|
validation: PropTypes.arrayOf(T['io.flow.internal.v0.unions.validation_rule']),
|
|
15747
16437
|
});
|
|
@@ -16078,88 +16768,6 @@ T['io.flow.internal.v0.models.item_classification_summary'] = PropTypes.exact({
|
|
|
16078
16768
|
customs_description: PropTypes.string,
|
|
16079
16769
|
});
|
|
16080
16770
|
|
|
16081
|
-
T['io.flow.payment.v0.models.online_payment_authorization_form'] = PropTypes.exact({
|
|
16082
|
-
discriminator: PropTypes.oneOf(['online_payment_authorization_form']).isRequired,
|
|
16083
|
-
payment_id: PropTypes.string.isRequired,
|
|
16084
|
-
key: PropTypes.string,
|
|
16085
|
-
});
|
|
16086
|
-
|
|
16087
|
-
T['io.flow.payment.v0.models.card_payment_source_authorization_form'] = PropTypes.exact({
|
|
16088
|
-
discriminator: PropTypes.oneOf(['card_payment_source_authorization_form']).isRequired,
|
|
16089
|
-
key: PropTypes.string,
|
|
16090
|
-
card_payment_source_id: PropTypes.string.isRequired,
|
|
16091
|
-
order_number: PropTypes.string.isRequired,
|
|
16092
|
-
amount: PropTypes.number.isRequired,
|
|
16093
|
-
currency: PropTypes.string.isRequired,
|
|
16094
|
-
browser_info: T['io.flow.payment.v0.models.browser_info'],
|
|
16095
|
-
inline_action_configuration: T['io.flow.payment.v0.unions.inline_action_configuration'],
|
|
16096
|
-
});
|
|
16097
|
-
|
|
16098
|
-
T['io.flow.payment.v0.models.redirect_authorization_form'] = PropTypes.exact({
|
|
16099
|
-
discriminator: PropTypes.oneOf(['redirect_authorization_form']).isRequired,
|
|
16100
|
-
method: PropTypes.string.isRequired,
|
|
16101
|
-
issuer: T['io.flow.payment.v0.models.issuer_reference'],
|
|
16102
|
-
order_number: PropTypes.string.isRequired,
|
|
16103
|
-
amount: PropTypes.number.isRequired,
|
|
16104
|
-
currency: PropTypes.string.isRequired,
|
|
16105
|
-
redirect_urls: T['io.flow.payment.v0.models.post_payment_redirect_urls'].isRequired,
|
|
16106
|
-
key: PropTypes.string,
|
|
16107
|
-
attributes: PropTypes.objectOf(PropTypes.string),
|
|
16108
|
-
ip: PropTypes.string,
|
|
16109
|
-
});
|
|
16110
|
-
|
|
16111
|
-
T['io.flow.payment.v0.models.paypal_authorization_form'] = PropTypes.exact({
|
|
16112
|
-
discriminator: PropTypes.oneOf(['paypal_authorization_form']).isRequired,
|
|
16113
|
-
paypal_payment_id: PropTypes.string.isRequired,
|
|
16114
|
-
paypal_payer_id: PropTypes.string.isRequired,
|
|
16115
|
-
key: PropTypes.string,
|
|
16116
|
-
attributes: PropTypes.objectOf(PropTypes.string),
|
|
16117
|
-
ip: PropTypes.string,
|
|
16118
|
-
});
|
|
16119
|
-
|
|
16120
|
-
T['io.flow.payment.v0.models.merchant_of_record_authorization_form'] = PropTypes.exact({
|
|
16121
|
-
discriminator: PropTypes.oneOf(['merchant_of_record_authorization_form']).isRequired,
|
|
16122
|
-
token: PropTypes.string.isRequired,
|
|
16123
|
-
order_number: PropTypes.string.isRequired,
|
|
16124
|
-
amount: PropTypes.number,
|
|
16125
|
-
currency: PropTypes.string,
|
|
16126
|
-
key: PropTypes.string,
|
|
16127
|
-
cvv: PropTypes.string,
|
|
16128
|
-
attributes: PropTypes.objectOf(PropTypes.string),
|
|
16129
|
-
ip: PropTypes.string,
|
|
16130
|
-
options: PropTypes.arrayOf(T['io.flow.payment.v0.enums.authorization_option']),
|
|
16131
|
-
redirect_urls: T['io.flow.payment.v0.models.post_payment_redirect_urls'],
|
|
16132
|
-
browser_info: T['io.flow.payment.v0.models.browser_info'],
|
|
16133
|
-
inline_action_configuration: T['io.flow.payment.v0.unions.inline_action_configuration'],
|
|
16134
|
-
});
|
|
16135
|
-
|
|
16136
|
-
T['io.flow.payment.v0.models.authorization_copy_form'] = PropTypes.exact({
|
|
16137
|
-
discriminator: PropTypes.oneOf(['authorization_copy_form']).isRequired,
|
|
16138
|
-
source_authorization_key: PropTypes.string.isRequired,
|
|
16139
|
-
amount: PropTypes.number.isRequired,
|
|
16140
|
-
currency: PropTypes.string.isRequired,
|
|
16141
|
-
attributes: PropTypes.objectOf(PropTypes.string),
|
|
16142
|
-
});
|
|
16143
|
-
|
|
16144
|
-
T['io.flow.payment.v0.models.authorization_result_action_wait'] = PropTypes.exact({
|
|
16145
|
-
discriminator: PropTypes.oneOf(['authorization_result_action_wait']).isRequired,
|
|
16146
|
-
type: T['io.flow.payment.v0.enums.authorization_result_action_type'].isRequired,
|
|
16147
|
-
});
|
|
16148
|
-
|
|
16149
|
-
T['io.flow.payment.v0.models.authorization_result_action_post'] = PropTypes.exact({
|
|
16150
|
-
discriminator: PropTypes.oneOf(['authorization_result_action_post']).isRequired,
|
|
16151
|
-
type: T['io.flow.payment.v0.enums.authorization_result_action_type'].isRequired,
|
|
16152
|
-
url: PropTypes.string.isRequired,
|
|
16153
|
-
parameters: PropTypes.object.isRequired,
|
|
16154
|
-
});
|
|
16155
|
-
|
|
16156
|
-
T['io.flow.payment.v0.models.authorization_result_action_get'] = PropTypes.exact({
|
|
16157
|
-
discriminator: PropTypes.oneOf(['authorization_result_action_get']).isRequired,
|
|
16158
|
-
type: T['io.flow.payment.v0.enums.authorization_result_action_type'].isRequired,
|
|
16159
|
-
url: PropTypes.string,
|
|
16160
|
-
details: T['io.flow.payment.v0.unions.authorization_result_action_details'],
|
|
16161
|
-
});
|
|
16162
|
-
|
|
16163
16771
|
T['io.flow.internal.v0.enums.checkout_url_type'] = PropTypes.oneOf(['continue_shopping', 'confirmation', 'invalid_checkout']);
|
|
16164
16772
|
|
|
16165
16773
|
T['io.flow.query.builder.v0.models.query'] = PropTypes.exact({
|
|
@@ -16224,550 +16832,92 @@ T['io.flow.reference.v0.models.payment_method'] = PropTypes.exact({
|
|
|
16224
16832
|
name: PropTypes.string.isRequired,
|
|
16225
16833
|
images: T['io.flow.reference.v0.models.payment_method_images'].isRequired,
|
|
16226
16834
|
regions: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
16227
|
-
capabilities: PropTypes.arrayOf(T['io.flow.reference.v0.enums.payment_method_capability']),
|
|
16228
|
-
});
|
|
16229
|
-
|
|
16230
|
-
T['io.flow.customer.v0.models.customer_payment'] = PropTypes.exact({
|
|
16231
|
-
payment_methods: PropTypes.arrayOf(T['io.flow.reference.v0.models.payment_method']).isRequired,
|
|
16232
|
-
});
|
|
16233
|
-
|
|
16234
|
-
T['io.flow.internal.v0.models.payment_method_detail'] = PropTypes.exact({
|
|
16235
|
-
method: T['io.flow.reference.v0.models.payment_method'].isRequired,
|
|
16236
|
-
method_options: PropTypes.arrayOf(T['io.flow.internal.v0.models.payment_method_option']),
|
|
16237
|
-
});
|
|
16238
|
-
|
|
16239
|
-
T['io.flow.experience.v0.models.payment_method_rule'] = PropTypes.exact({
|
|
16240
|
-
tags: PropTypes.arrayOf(T['io.flow.experience.v0.unions.payment_method_tag']).isRequired,
|
|
16241
|
-
payment_method: T['io.flow.reference.v0.models.payment_method'].isRequired,
|
|
16242
|
-
display_position: PropTypes.number.isRequired,
|
|
16243
|
-
content: PropTypes.arrayOf(T['io.flow.experience.v0.models.payment_method_rule_content']),
|
|
16244
|
-
issuers: PropTypes.arrayOf(T['io.flow.experience.v0.models.payment_method_issuer']),
|
|
16245
|
-
programs: PropTypes.arrayOf(PropTypes.object),
|
|
16246
|
-
q: T['io.flow.query.builder.v0.models.query'],
|
|
16247
|
-
});
|
|
16248
|
-
|
|
16249
|
-
T['io.flow.experience.v0.models.experience_payment_method_rule'] = PropTypes.exact({
|
|
16250
|
-
experience_key: PropTypes.string.isRequired,
|
|
16251
|
-
payment_method_rules: PropTypes.arrayOf(T['io.flow.experience.v0.models.payment_method_rule']).isRequired,
|
|
16252
|
-
});
|
|
16253
|
-
|
|
16254
|
-
T['io.flow.payment.v0.models.public_key'] = PropTypes.exact({
|
|
16255
|
-
id: PropTypes.string.isRequired,
|
|
16256
|
-
});
|
|
16257
|
-
|
|
16258
|
-
T['io.flow.payment.v0.models.card_payment_source_form'] = PropTypes.exact({
|
|
16259
|
-
discriminator: PropTypes.oneOf(['card_payment_source_form']).isRequired,
|
|
16260
|
-
customer_number: PropTypes.string.isRequired,
|
|
16261
|
-
card_id: PropTypes.string.isRequired,
|
|
16262
|
-
});
|
|
16263
|
-
|
|
16264
|
-
T['io.flow.internal.v0.models.order_parameters'] = PropTypes.exact({
|
|
16265
|
-
experience: PropTypes.string,
|
|
16266
|
-
country: PropTypes.string,
|
|
16267
|
-
ip: PropTypes.string,
|
|
16268
|
-
currency: PropTypes.string,
|
|
16269
|
-
language: PropTypes.string,
|
|
16270
|
-
});
|
|
16271
|
-
|
|
16272
|
-
T['io.flow.experience.v0.models.order_submission_identifier_form'] = PropTypes.exact({
|
|
16273
|
-
identifier: PropTypes.string.isRequired,
|
|
16274
|
-
name: PropTypes.string,
|
|
16275
|
-
primary: PropTypes.bool,
|
|
16276
|
-
});
|
|
16277
|
-
|
|
16278
|
-
T['io.flow.experience.v0.models.order_submission_form'] = PropTypes.exact({
|
|
16279
|
-
identifiers: PropTypes.arrayOf(T['io.flow.experience.v0.models.order_submission_identifier_form']),
|
|
16280
|
-
});
|
|
16281
|
-
|
|
16282
|
-
T['io.flow.checkout.v0.models.checkout_urls_form'] = PropTypes.exact({
|
|
16283
|
-
continue_shopping: PropTypes.string,
|
|
16284
|
-
confirmation: PropTypes.string,
|
|
16285
|
-
invalid_checkout: PropTypes.string,
|
|
16286
|
-
});
|
|
16287
|
-
|
|
16288
|
-
T['io.flow.checkout.v0.models.checkout_token_reference_form'] = PropTypes.exact({
|
|
16289
|
-
discriminator: PropTypes.oneOf(['checkout_token_reference_form']).isRequired,
|
|
16290
|
-
order_number: PropTypes.string.isRequired,
|
|
16291
|
-
session_id: PropTypes.string.isRequired,
|
|
16292
|
-
urls: T['io.flow.checkout.v0.models.checkout_urls_form'].isRequired,
|
|
16293
|
-
});
|
|
16294
|
-
|
|
16295
|
-
T['io.flow.payment.v0.unions.payment_source_form'] = PropTypes.oneOfType([T['io.flow.payment.v0.models.card_payment_source_form']]);
|
|
16296
|
-
|
|
16297
|
-
T['io.flow.experience.v0.models.order_options'] = PropTypes.exact({
|
|
16298
|
-
storage: T['io.flow.experience.v0.enums.order_storage'].isRequired,
|
|
16299
|
-
});
|
|
16300
|
-
|
|
16301
|
-
T['io.flow.internal.v0.enums.checkout_redirect_method'] = PropTypes.oneOf(['get', 'post']);
|
|
16302
|
-
|
|
16303
|
-
T['io.flow.internal.v0.models.checkout_redirect'] = PropTypes.exact({
|
|
16304
|
-
method: T['io.flow.internal.v0.enums.checkout_redirect_method'].isRequired,
|
|
16305
|
-
url: PropTypes.string.isRequired,
|
|
16306
|
-
body: PropTypes.string,
|
|
16307
|
-
});
|
|
16308
|
-
|
|
16309
|
-
T['io.flow.internal.v0.enums.checkout_error_code'] = PropTypes.oneOf([
|
|
16310
|
-
'generic_error',
|
|
16311
|
-
'order_identifier_invalid',
|
|
16312
|
-
'url_invalid',
|
|
16313
|
-
'organization_invalid',
|
|
16314
|
-
'session_invalid',
|
|
16315
|
-
'session_missing',
|
|
16316
|
-
'session_organization_invalid',
|
|
16317
|
-
'country_invalid',
|
|
16318
|
-
'currency_invalid',
|
|
16319
|
-
'language_invalid',
|
|
16320
|
-
'checkout_invalid',
|
|
16321
|
-
]);
|
|
16322
|
-
|
|
16323
|
-
T['io.flow.internal.v0.models.checkbox'] = PropTypes.exact({
|
|
16324
|
-
name: PropTypes.string.isRequired,
|
|
16325
|
-
value: PropTypes.string.isRequired,
|
|
16326
|
-
label: PropTypes.string.isRequired,
|
|
16327
|
-
checked_by_default: PropTypes.bool.isRequired,
|
|
16328
|
-
required: PropTypes.bool.isRequired,
|
|
16329
|
-
});
|
|
16330
|
-
|
|
16331
|
-
T['io.flow.internal.v0.enums.format'] = PropTypes.oneOf(['text', 'phone', 'email']);
|
|
16332
|
-
|
|
16333
|
-
T['io.flow.internal.v0.models.logo'] = PropTypes.exact({
|
|
16334
|
-
url: PropTypes.string.isRequired,
|
|
16335
|
-
});
|
|
16336
|
-
|
|
16337
|
-
T['io.flow.internal.v0.models.checkout_url'] = PropTypes.exact({
|
|
16338
|
-
url: PropTypes.string.isRequired,
|
|
16339
|
-
type: T['io.flow.internal.v0.enums.checkout_url_type'].isRequired,
|
|
16340
|
-
});
|
|
16341
|
-
|
|
16342
|
-
T['io.flow.reference.v0.enums.postal_type'] = PropTypes.oneOf(['eircode', 'pin', 'postal', 'zip']);
|
|
16343
|
-
|
|
16344
|
-
T['io.flow.experience.v0.models.address_configuration_format'] = PropTypes.exact({
|
|
16345
|
-
placements: PropTypes.arrayOf(T['io.flow.experience.v0.models.address_configuration_field_placement']).isRequired,
|
|
16346
|
-
});
|
|
16347
|
-
|
|
16348
|
-
T['io.flow.experience.v0.models.address_configuration_province'] = PropTypes.exact({
|
|
16349
|
-
value: PropTypes.string.isRequired,
|
|
16350
|
-
name: PropTypes.string.isRequired,
|
|
16351
|
-
|
|
16352
|
-
translations: PropTypes.arrayOf(
|
|
16353
|
-
T['io.flow.experience.v0.models.address_configuration_province_translation'],
|
|
16354
|
-
),
|
|
16355
|
-
});
|
|
16356
|
-
|
|
16357
|
-
T['io.flow.experience.v0.models.address_field_validation'] = PropTypes.exact({
|
|
16358
|
-
first_name: PropTypes.arrayOf(T['io.flow.field.validation.v0.unions.field_validation_rule']).isRequired,
|
|
16359
|
-
last_name: PropTypes.arrayOf(T['io.flow.field.validation.v0.unions.field_validation_rule']).isRequired,
|
|
16360
|
-
street_1: PropTypes.arrayOf(T['io.flow.field.validation.v0.unions.field_validation_rule']).isRequired,
|
|
16361
|
-
street_2: PropTypes.arrayOf(T['io.flow.field.validation.v0.unions.field_validation_rule']).isRequired,
|
|
16362
|
-
city: PropTypes.arrayOf(T['io.flow.field.validation.v0.unions.field_validation_rule']).isRequired,
|
|
16363
|
-
province: PropTypes.arrayOf(T['io.flow.field.validation.v0.unions.field_validation_rule']).isRequired,
|
|
16364
|
-
postal: PropTypes.arrayOf(T['io.flow.field.validation.v0.unions.field_validation_rule']).isRequired,
|
|
16365
|
-
phone: PropTypes.arrayOf(T['io.flow.field.validation.v0.unions.field_validation_rule']).isRequired,
|
|
16366
|
-
vat_registration_number: PropTypes.arrayOf(T['io.flow.field.validation.v0.unions.field_validation_rule']).isRequired,
|
|
16367
|
-
});
|
|
16368
|
-
|
|
16369
|
-
T['io.flow.catalog.v0.models.image'] = PropTypes.exact({
|
|
16370
|
-
url: PropTypes.string.isRequired,
|
|
16371
|
-
tags: PropTypes.arrayOf(T['io.flow.catalog.v0.enums.image_tag']).isRequired,
|
|
16372
|
-
attributes: PropTypes.objectOf(PropTypes.string),
|
|
16373
|
-
});
|
|
16374
|
-
|
|
16375
|
-
T['io.flow.experience.v0.models.checkout_item_content_attribute'] = PropTypes.exact({
|
|
16376
|
-
key: PropTypes.string.isRequired,
|
|
16377
|
-
name: PropTypes.string.isRequired,
|
|
16378
|
-
value: PropTypes.string.isRequired,
|
|
16379
|
-
});
|
|
16380
|
-
|
|
16381
|
-
T['io.flow.reference.v0.models.localized_translation'] = PropTypes.exact({
|
|
16382
|
-
locale: T['io.flow.reference.v0.models.locale'].isRequired,
|
|
16383
|
-
name: PropTypes.string.isRequired,
|
|
16384
|
-
});
|
|
16385
|
-
|
|
16386
|
-
T['io.flow.reference.v0.enums.province_type'] = PropTypes.oneOf([
|
|
16387
|
-
'area',
|
|
16388
|
-
'city',
|
|
16389
|
-
'county',
|
|
16390
|
-
'department',
|
|
16391
|
-
'dependency',
|
|
16392
|
-
'district',
|
|
16393
|
-
'do_si',
|
|
16394
|
-
'emirate',
|
|
16395
|
-
'entity',
|
|
16396
|
-
'island',
|
|
16397
|
-
'municipality',
|
|
16398
|
-
'oblast',
|
|
16399
|
-
'outlying_area',
|
|
16400
|
-
'parish',
|
|
16401
|
-
'prefecture',
|
|
16402
|
-
'province',
|
|
16403
|
-
'state',
|
|
16404
|
-
'territory',
|
|
16405
|
-
'other',
|
|
16406
|
-
]);
|
|
16407
|
-
|
|
16408
|
-
T['io.flow.internal.v0.models.checkout_marketing_content'] = PropTypes.exact({
|
|
16409
|
-
optins: PropTypes.arrayOf(T['io.flow.internal.v0.models.checkbox']).isRequired,
|
|
16410
|
-
});
|
|
16411
|
-
|
|
16412
|
-
T['io.flow.experience.v0.enums.order_error_code'] = PropTypes.oneOf([
|
|
16413
|
-
'generic_error',
|
|
16414
|
-
'order_item_not_available',
|
|
16415
|
-
'order_identifier_error',
|
|
16416
|
-
'authorization_invalid',
|
|
16417
|
-
'domestic_shipping_unavailable',
|
|
16418
|
-
'shipping_unavailable',
|
|
16419
|
-
'value_threshold_exceeded',
|
|
16420
|
-
'invalid_currency',
|
|
16421
|
-
'invalid_country',
|
|
16422
|
-
'invalid_region',
|
|
16423
|
-
'invalid_language',
|
|
16424
|
-
'item_out_of_stock',
|
|
16425
|
-
'gift_card_not_accepted',
|
|
16426
|
-
'total_changed',
|
|
16427
|
-
]);
|
|
16428
|
-
|
|
16429
|
-
T['io.flow.experience.v0.enums.order_payment_source_type'] = PropTypes.oneOf(['globale', 'third_party']);
|
|
16430
|
-
|
|
16431
|
-
T['io.flow.experience.v0.models.incoterm_summary'] = PropTypes.exact({
|
|
16432
|
-
configuration: T['io.flow.experience.v0.enums.incoterm_configuration'].isRequired,
|
|
16433
|
-
includes: T['io.flow.experience.v0.models.incoterm_includes'].isRequired,
|
|
16434
|
-
reason: PropTypes.string,
|
|
16435
|
-
});
|
|
16436
|
-
|
|
16437
|
-
T['io.flow.experience.v0.models.destination_contact_detail'] = PropTypes.exact({
|
|
16438
|
-
title: PropTypes.string.isRequired,
|
|
16439
|
-
country: PropTypes.string.isRequired,
|
|
16440
|
-
import_identifier: PropTypes.string.isRequired,
|
|
16441
|
-
});
|
|
16442
|
-
|
|
16443
|
-
T['io.flow.payment.v0.unions.device_details'] = PropTypes.oneOfType([T['io.flow.payment.v0.models.device_details_browser']]);
|
|
16444
|
-
|
|
16445
|
-
T['io.flow.payment.gateway.v0.models.payment_request_form'] = PropTypes.exact({
|
|
16446
|
-
amount: PropTypes.number.isRequired,
|
|
16447
|
-
currency: PropTypes.string.isRequired,
|
|
16448
|
-
order_information: T['io.flow.payment.gateway.v0.unions.order_information'].isRequired,
|
|
16449
|
-
device_details: T['io.flow.payment.v0.unions.device_details'].isRequired,
|
|
16450
|
-
locale: PropTypes.string,
|
|
16451
|
-
return_url: PropTypes.string.isRequired,
|
|
16452
|
-
attributes: PropTypes.objectOf(PropTypes.string),
|
|
16453
|
-
reference: PropTypes.string,
|
|
16454
|
-
payment_method_data: T['io.flow.payment.gateway.v0.unions.payment_method_data'],
|
|
16455
|
-
supported_actions: PropTypes.arrayOf(T['io.flow.payment.gateway.v0.enums.payment_action_type']),
|
|
16456
|
-
payment_capture_option: T['io.flow.payment.gateway.v0.unions.payment_capture_option'],
|
|
16457
|
-
});
|
|
16458
|
-
|
|
16459
|
-
T['io.flow.payment.gateway.v0.models.payment_request'] = PropTypes.exact({
|
|
16460
|
-
id: PropTypes.string.isRequired,
|
|
16461
|
-
status: T['io.flow.payment.gateway.v0.enums.payment_status'].isRequired,
|
|
16462
|
-
created_at: PropTypes.string.isRequired,
|
|
16463
|
-
updated_at: PropTypes.string.isRequired,
|
|
16464
|
-
available_payment_methods: PropTypes.arrayOf(T['io.flow.payment.gateway.v0.models.payment_payment_method']).isRequired,
|
|
16465
|
-
last_payment_failure: T['io.flow.payment.gateway.v0.models.payment_failure'],
|
|
16466
|
-
next_action: T['io.flow.payment.gateway.v0.unions.action'],
|
|
16467
|
-
amount: PropTypes.number.isRequired,
|
|
16468
|
-
currency: PropTypes.string.isRequired,
|
|
16469
|
-
base_amount: PropTypes.number,
|
|
16470
|
-
base_currency: PropTypes.string,
|
|
16471
|
-
order_information: T['io.flow.payment.gateway.v0.unions.order_information'].isRequired,
|
|
16472
|
-
device_details: T['io.flow.payment.v0.unions.device_details'].isRequired,
|
|
16473
|
-
locale: PropTypes.string,
|
|
16474
|
-
return_url: PropTypes.string.isRequired,
|
|
16475
|
-
attributes: PropTypes.objectOf(PropTypes.string),
|
|
16476
|
-
reference: PropTypes.string,
|
|
16477
|
-
payment_information: T['io.flow.payment.gateway.v0.models.payment_information'].isRequired,
|
|
16478
|
-
supported_actions: PropTypes.arrayOf(T['io.flow.payment.gateway.v0.enums.payment_action_type']).isRequired,
|
|
16479
|
-
payment_capture_option: T['io.flow.payment.gateway.v0.unions.payment_capture_option'],
|
|
16480
|
-
review: T['io.flow.payment.gateway.v0.models.payment_request_review'],
|
|
16481
|
-
});
|
|
16482
|
-
|
|
16483
|
-
T['io.flow.internal.v0.models.internal_payment_request'] = PropTypes.exact({
|
|
16484
|
-
payment_request: T['io.flow.payment.gateway.v0.models.payment_request'].isRequired,
|
|
16485
|
-
actual_action: T['io.flow.payment.gateway.v0.unions.action'],
|
|
16486
|
-
});
|
|
16487
|
-
|
|
16488
|
-
T['io.flow.experience.v0.models.order_geo'] = PropTypes.exact({
|
|
16489
|
-
ip: PropTypes.string,
|
|
16490
|
-
country: PropTypes.string.isRequired,
|
|
16491
|
-
currency: PropTypes.string,
|
|
16492
|
-
language: PropTypes.string,
|
|
16493
|
-
});
|
|
16494
|
-
|
|
16495
|
-
T['io.flow.harmonization.v0.models.tax_registration'] = PropTypes.exact({
|
|
16496
|
-
id: PropTypes.string.isRequired,
|
|
16497
|
-
key: PropTypes.string.isRequired,
|
|
16498
|
-
number: PropTypes.string.isRequired,
|
|
16499
|
-
timestamp: PropTypes.string.isRequired,
|
|
16500
|
-
result: T['io.flow.harmonization.v0.enums.tax_verification_result'].isRequired,
|
|
16501
|
-
result_reason: PropTypes.string,
|
|
16502
|
-
name: PropTypes.string,
|
|
16503
|
-
address: PropTypes.string,
|
|
16504
|
-
company_name: PropTypes.string,
|
|
16505
|
-
});
|
|
16506
|
-
|
|
16507
|
-
T['io.flow.experience.v0.models.order_rules_summary'] = PropTypes.exact({
|
|
16508
|
-
applied: PropTypes.arrayOf(T['io.flow.experience.v0.models.order_rule_reference']).isRequired,
|
|
16509
|
-
});
|
|
16510
|
-
|
|
16511
|
-
T['io.flow.common.v0.enums.delivered_duty'] = PropTypes.oneOf(['paid', 'unpaid']);
|
|
16512
|
-
|
|
16513
|
-
T['io.flow.ratecard.v0.models.ratecard_lane_import_form'] = PropTypes.exact({
|
|
16514
|
-
ratecard_owner: T['io.flow.fulfillment.v0.enums.ratecard_owner'].isRequired,
|
|
16515
|
-
service: PropTypes.string.isRequired,
|
|
16516
|
-
currency: PropTypes.string.isRequired,
|
|
16517
|
-
delivered_duty: T['io.flow.common.v0.enums.delivered_duty'].isRequired,
|
|
16518
|
-
origin: T['io.flow.common.v0.models.zone'].isRequired,
|
|
16519
|
-
destination: T['io.flow.common.v0.models.zone'].isRequired,
|
|
16520
|
-
shipment_window: T['io.flow.ratecard.v0.models.shipment_window'].isRequired,
|
|
16521
|
-
dim_factor: PropTypes.number.isRequired,
|
|
16522
|
-
weight_unit: T['io.flow.common.v0.enums.unit_of_measurement'].isRequired,
|
|
16523
|
-
distance_unit: T['io.flow.common.v0.enums.unit_of_measurement'].isRequired,
|
|
16524
|
-
rates: PropTypes.arrayOf(T['io.flow.ratecard.v0.models.ratecard_rate_form']).isRequired,
|
|
16525
|
-
});
|
|
16526
|
-
|
|
16527
|
-
T['io.flow.experience.v0.models.order_builder_delivered_duty_form'] = PropTypes.exact({
|
|
16528
|
-
delivered_duty: T['io.flow.common.v0.enums.delivered_duty'].isRequired,
|
|
16529
|
-
});
|
|
16530
|
-
|
|
16531
|
-
T['io.flow.experience.v0.models.experience_form'] = PropTypes.exact({
|
|
16532
|
-
region_id: PropTypes.string.isRequired,
|
|
16533
|
-
name: PropTypes.string.isRequired,
|
|
16534
|
-
delivered_duty: T['io.flow.common.v0.enums.delivered_duty'],
|
|
16535
|
-
country: PropTypes.string,
|
|
16536
|
-
currency: PropTypes.string,
|
|
16537
|
-
language: PropTypes.string,
|
|
16538
|
-
key: PropTypes.string,
|
|
16539
|
-
position: PropTypes.number,
|
|
16540
|
-
measurement_system: T['io.flow.common.v0.enums.measurement_system'],
|
|
16541
|
-
subcatalog_id: PropTypes.string,
|
|
16542
|
-
});
|
|
16543
|
-
|
|
16544
|
-
T['io.flow.experience.v0.models.experience_defaults'] = PropTypes.exact({
|
|
16545
|
-
key: PropTypes.string.isRequired,
|
|
16546
|
-
name: PropTypes.string.isRequired,
|
|
16547
|
-
delivered_duty: T['io.flow.common.v0.enums.delivered_duty'].isRequired,
|
|
16548
|
-
country: PropTypes.string.isRequired,
|
|
16549
|
-
currency: PropTypes.string.isRequired,
|
|
16550
|
-
language: PropTypes.string.isRequired,
|
|
16551
|
-
measurement_system: T['io.flow.common.v0.enums.measurement_system'].isRequired,
|
|
16552
|
-
});
|
|
16553
|
-
|
|
16554
|
-
T['io.flow.experience.v0.models.delivered_duty_setting'] = PropTypes.exact({
|
|
16555
|
-
'default': T['io.flow.common.v0.enums.delivered_duty'].isRequired,
|
|
16556
|
-
available: PropTypes.arrayOf(T['io.flow.common.v0.enums.delivered_duty']).isRequired,
|
|
16557
|
-
display: T['io.flow.experience.v0.enums.delivered_duty_display_type'],
|
|
16558
|
-
});
|
|
16559
|
-
|
|
16560
|
-
T['io.flow.experience.v0.models.experience_settings'] = PropTypes.exact({
|
|
16561
|
-
delivered_duty: T['io.flow.experience.v0.models.delivered_duty_setting'].isRequired,
|
|
16562
|
-
pricing_settings: T['io.flow.experience.v0.models.pricing_settings'],
|
|
16563
|
-
logistics_settings: T['io.flow.experience.v0.models.logistics_settings'],
|
|
16564
|
-
checkout_settings: T['io.flow.experience.v0.models.experience_checkout_configuration_settings'],
|
|
16565
|
-
});
|
|
16566
|
-
|
|
16567
|
-
T['io.flow.experience.v0.models.experience'] = PropTypes.exact({
|
|
16568
|
-
discriminator: PropTypes.oneOf(['experience']).isRequired,
|
|
16569
|
-
id: PropTypes.string.isRequired,
|
|
16570
|
-
key: PropTypes.string.isRequired,
|
|
16571
|
-
name: PropTypes.string.isRequired,
|
|
16572
|
-
delivered_duty: T['io.flow.common.v0.enums.delivered_duty'].isRequired,
|
|
16573
|
-
region: T['io.flow.experience.v0.models.region_reference'].isRequired,
|
|
16574
|
-
country: PropTypes.string.isRequired,
|
|
16575
|
-
currency: PropTypes.string.isRequired,
|
|
16576
|
-
language: PropTypes.string.isRequired,
|
|
16577
|
-
measurement_system: T['io.flow.common.v0.enums.measurement_system'].isRequired,
|
|
16578
|
-
subcatalog: T['io.flow.catalog.v0.models.subcatalog_reference'].isRequired,
|
|
16579
|
-
position: PropTypes.number.isRequired,
|
|
16580
|
-
settings: T['io.flow.experience.v0.models.experience_settings'].isRequired,
|
|
16581
|
-
status: T['io.flow.experience.v0.enums.experience_status'],
|
|
16582
|
-
});
|
|
16583
|
-
|
|
16584
|
-
T['io.flow.internal.v0.models.delivered_duty_preference_form'] = PropTypes.exact({
|
|
16585
|
-
methods: PropTypes.arrayOf(T['io.flow.common.v0.enums.delivered_duty']).isRequired,
|
|
16586
|
-
'default': T['io.flow.common.v0.enums.delivered_duty'],
|
|
16587
|
-
display: T['io.flow.experience.v0.enums.delivered_duty_display_type'],
|
|
16588
|
-
});
|
|
16589
|
-
|
|
16590
|
-
T['io.flow.internal.v0.models.delivered_duty_preference'] = PropTypes.exact({
|
|
16591
|
-
methods: PropTypes.arrayOf(T['io.flow.common.v0.enums.delivered_duty']).isRequired,
|
|
16592
|
-
'default': T['io.flow.common.v0.enums.delivered_duty'].isRequired,
|
|
16593
|
-
display: T['io.flow.experience.v0.enums.delivered_duty_display_type'].isRequired,
|
|
16594
|
-
});
|
|
16595
|
-
|
|
16596
|
-
T['io.flow.internal.v0.models.delivered_duty_option'] = PropTypes.exact({
|
|
16597
|
-
methods: PropTypes.arrayOf(T['io.flow.common.v0.enums.delivered_duty']).isRequired,
|
|
16598
|
-
message: T['io.flow.internal.v0.models.delivered_duty_option_message'],
|
|
16599
|
-
selectable: PropTypes.bool.isRequired,
|
|
16600
|
-
});
|
|
16601
|
-
|
|
16602
|
-
T['io.flow.internal.v0.models.delivered_duty_options'] = PropTypes.exact({
|
|
16603
|
-
options: PropTypes.arrayOf(T['io.flow.internal.v0.models.delivered_duty_option']).isRequired,
|
|
16604
|
-
message: T['io.flow.internal.v0.models.delivered_duty_options_message'],
|
|
16605
|
-
});
|
|
16606
|
-
|
|
16607
|
-
T['io.flow.experience.v0.unions.expandable_experience'] = PropTypes.oneOfType([
|
|
16608
|
-
T['io.flow.experience.v0.models.experience'],
|
|
16609
|
-
T['io.flow.experience.v0.models.experience_reference'],
|
|
16610
|
-
]);
|
|
16611
|
-
|
|
16612
|
-
T['io.flow.common.v0.enums.order_merchant_of_record'] = PropTypes.oneOf(['flow', 'organization', 'mixed']);
|
|
16613
|
-
|
|
16614
|
-
T['io.flow.payment.v0.models.card_metadata'] = PropTypes.exact({
|
|
16615
|
-
merchant_of_record: T['io.flow.common.v0.enums.order_merchant_of_record'],
|
|
16616
|
-
});
|
|
16617
|
-
|
|
16618
|
-
T['io.flow.experience.v0.enums.order_type'] = PropTypes.oneOf(['standard', 'replacement']);
|
|
16619
|
-
|
|
16620
|
-
T['io.flow.experience.v0.models.address_configuration'] = PropTypes.exact({
|
|
16621
|
-
country: PropTypes.string.isRequired,
|
|
16622
|
-
field_validation: T['io.flow.experience.v0.models.address_field_validation'].isRequired,
|
|
16623
|
-
provinces: PropTypes.arrayOf(T['io.flow.experience.v0.models.address_configuration_province']).isRequired,
|
|
16624
|
-
formats: PropTypes.arrayOf(T['io.flow.experience.v0.models.address_configuration_format']),
|
|
16625
|
-
province_type: T['io.flow.reference.v0.enums.province_type'],
|
|
16626
|
-
postal_type: T['io.flow.reference.v0.enums.postal_type'],
|
|
16627
|
-
});
|
|
16628
|
-
|
|
16629
|
-
T['io.flow.reference.v0.models.province'] = PropTypes.exact({
|
|
16630
|
-
id: PropTypes.string.isRequired,
|
|
16631
|
-
iso_3166_2: PropTypes.string.isRequired,
|
|
16632
|
-
name: PropTypes.string.isRequired,
|
|
16633
|
-
country: PropTypes.string.isRequired,
|
|
16634
|
-
province_type: T['io.flow.reference.v0.enums.province_type'].isRequired,
|
|
16635
|
-
translations: PropTypes.arrayOf(T['io.flow.reference.v0.models.localized_translation']),
|
|
16636
|
-
});
|
|
16637
|
-
|
|
16638
|
-
T['io.flow.reference.v0.models.country'] = PropTypes.exact({
|
|
16639
|
-
name: PropTypes.string.isRequired,
|
|
16640
|
-
iso_3166_2: PropTypes.string.isRequired,
|
|
16641
|
-
iso_3166_3: PropTypes.string.isRequired,
|
|
16642
|
-
languages: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
16643
|
-
measurement_system: PropTypes.string.isRequired,
|
|
16644
|
-
default_currency: PropTypes.string,
|
|
16645
|
-
default_language: PropTypes.string,
|
|
16646
|
-
timezones: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
16647
|
-
default_delivered_duty: PropTypes.string,
|
|
16648
|
-
});
|
|
16649
|
-
|
|
16650
|
-
T['io.flow.session.v0.models.session_geo'] = PropTypes.exact({
|
|
16651
|
-
country: T['io.flow.reference.v0.models.country'].isRequired,
|
|
16652
|
-
currency: T['io.flow.reference.v0.models.currency'].isRequired,
|
|
16653
|
-
language: T['io.flow.reference.v0.models.language'].isRequired,
|
|
16654
|
-
locale: T['io.flow.reference.v0.models.locale'].isRequired,
|
|
16655
|
-
});
|
|
16656
|
-
|
|
16657
|
-
T['io.flow.session.v0.models.local_session'] = PropTypes.exact({
|
|
16658
|
-
country: T['io.flow.reference.v0.models.country'].isRequired,
|
|
16659
|
-
currency: T['io.flow.reference.v0.models.currency'].isRequired,
|
|
16660
|
-
language: T['io.flow.reference.v0.models.language'].isRequired,
|
|
16661
|
-
locale: T['io.flow.reference.v0.models.locale'].isRequired,
|
|
16662
|
-
experience: T['io.flow.experience.v0.models.experience_geo'].isRequired,
|
|
16663
|
-
});
|
|
16664
|
-
|
|
16665
|
-
T['io.flow.shopify.merchant.config.v0.models.country_of_origin'] = PropTypes.exact({
|
|
16666
|
-
country: T['io.flow.reference.v0.models.country'].isRequired,
|
|
16667
|
-
});
|
|
16668
|
-
|
|
16669
|
-
T['io.flow.internal.v0.models.resync_fallback_rates'] = PropTypes.exact({
|
|
16670
|
-
destinations: PropTypes.arrayOf(T['io.flow.reference.v0.models.country']).isRequired,
|
|
16671
|
-
});
|
|
16672
|
-
|
|
16673
|
-
T['io.flow.internal.v0.models.resync_by_hs6_origin'] = PropTypes.exact({
|
|
16674
|
-
hs6_code: PropTypes.string.isRequired,
|
|
16675
|
-
origin: T['io.flow.reference.v0.models.country'].isRequired,
|
|
16835
|
+
capabilities: PropTypes.arrayOf(T['io.flow.reference.v0.enums.payment_method_capability']),
|
|
16676
16836
|
});
|
|
16677
16837
|
|
|
16678
|
-
T['io.flow.
|
|
16679
|
-
|
|
16680
|
-
destinations: PropTypes.arrayOf(T['io.flow.reference.v0.models.country']).isRequired,
|
|
16838
|
+
T['io.flow.customer.v0.models.customer_payment'] = PropTypes.exact({
|
|
16839
|
+
payment_methods: PropTypes.arrayOf(T['io.flow.reference.v0.models.payment_method']).isRequired,
|
|
16681
16840
|
});
|
|
16682
16841
|
|
|
16683
|
-
T['io.flow.internal.v0.models.
|
|
16684
|
-
|
|
16842
|
+
T['io.flow.internal.v0.models.payment_method_detail'] = PropTypes.exact({
|
|
16843
|
+
method: T['io.flow.reference.v0.models.payment_method'].isRequired,
|
|
16844
|
+
method_options: PropTypes.arrayOf(T['io.flow.internal.v0.models.payment_method_option']),
|
|
16685
16845
|
});
|
|
16686
16846
|
|
|
16687
|
-
T['io.flow.
|
|
16688
|
-
|
|
16689
|
-
|
|
16690
|
-
|
|
16847
|
+
T['io.flow.experience.v0.models.payment_method_rule'] = PropTypes.exact({
|
|
16848
|
+
tags: PropTypes.arrayOf(T['io.flow.experience.v0.unions.payment_method_tag']).isRequired,
|
|
16849
|
+
payment_method: T['io.flow.reference.v0.models.payment_method'].isRequired,
|
|
16850
|
+
display_position: PropTypes.number.isRequired,
|
|
16851
|
+
content: PropTypes.arrayOf(T['io.flow.experience.v0.models.payment_method_rule_content']),
|
|
16852
|
+
issuers: PropTypes.arrayOf(T['io.flow.experience.v0.models.payment_method_issuer']),
|
|
16853
|
+
programs: PropTypes.arrayOf(PropTypes.object),
|
|
16854
|
+
q: T['io.flow.query.builder.v0.models.query'],
|
|
16691
16855
|
});
|
|
16692
16856
|
|
|
16693
|
-
T['io.flow.
|
|
16694
|
-
|
|
16695
|
-
|
|
16696
|
-
hs6: PropTypes.string.isRequired,
|
|
16697
|
-
origin: T['io.flow.reference.v0.models.country'].isRequired,
|
|
16698
|
-
destination: T['io.flow.reference.v0.models.country'].isRequired,
|
|
16857
|
+
T['io.flow.experience.v0.models.experience_payment_method_rule'] = PropTypes.exact({
|
|
16858
|
+
experience_key: PropTypes.string.isRequired,
|
|
16859
|
+
payment_method_rules: PropTypes.arrayOf(T['io.flow.experience.v0.models.payment_method_rule']).isRequired,
|
|
16699
16860
|
});
|
|
16700
16861
|
|
|
16701
|
-
T['io.flow.
|
|
16702
|
-
|
|
16703
|
-
key: PropTypes.string.isRequired,
|
|
16704
|
-
destination: T['io.flow.reference.v0.models.country'].isRequired,
|
|
16705
|
-
rate_source_composition_summaries: PropTypes.arrayOf(T['io.flow.internal.v0.models.rate_source_composition_summary']).isRequired,
|
|
16862
|
+
T['io.flow.payment.v0.models.public_key'] = PropTypes.exact({
|
|
16863
|
+
id: PropTypes.string.isRequired,
|
|
16706
16864
|
});
|
|
16707
16865
|
|
|
16708
|
-
T['io.flow.internal.v0.
|
|
16709
|
-
discriminator: PropTypes.oneOf(['rate_source_summary_upserted']).isRequired,
|
|
16710
|
-
event_id: PropTypes.string.isRequired,
|
|
16711
|
-
timestamp: PropTypes.string.isRequired,
|
|
16712
|
-
rate_source_summary: T['io.flow.internal.v0.models.rate_source_summary'].isRequired,
|
|
16713
|
-
});
|
|
16866
|
+
T['io.flow.internal.v0.enums.checkout_redirect_method'] = PropTypes.oneOf(['get', 'post']);
|
|
16714
16867
|
|
|
16715
|
-
T['io.flow.internal.v0.models.
|
|
16716
|
-
|
|
16717
|
-
|
|
16718
|
-
|
|
16719
|
-
rate_source_summary: T['io.flow.internal.v0.models.rate_source_summary'].isRequired,
|
|
16868
|
+
T['io.flow.internal.v0.models.checkout_redirect'] = PropTypes.exact({
|
|
16869
|
+
method: T['io.flow.internal.v0.enums.checkout_redirect_method'].isRequired,
|
|
16870
|
+
url: PropTypes.string.isRequired,
|
|
16871
|
+
body: PropTypes.string,
|
|
16720
16872
|
});
|
|
16721
16873
|
|
|
16722
|
-
T['io.flow.internal.v0.
|
|
16723
|
-
|
|
16724
|
-
|
|
16725
|
-
|
|
16874
|
+
T['io.flow.internal.v0.enums.checkout_error_code'] = PropTypes.oneOf([
|
|
16875
|
+
'generic_error',
|
|
16876
|
+
'order_identifier_invalid',
|
|
16877
|
+
'url_invalid',
|
|
16878
|
+
'organization_invalid',
|
|
16879
|
+
'session_invalid',
|
|
16880
|
+
'session_missing',
|
|
16881
|
+
'session_organization_invalid',
|
|
16882
|
+
'country_invalid',
|
|
16883
|
+
'currency_invalid',
|
|
16884
|
+
'language_invalid',
|
|
16885
|
+
'checkout_invalid',
|
|
16886
|
+
]);
|
|
16726
16887
|
|
|
16727
|
-
T['io.flow.internal.v0.models.
|
|
16728
|
-
|
|
16729
|
-
|
|
16730
|
-
|
|
16731
|
-
|
|
16888
|
+
T['io.flow.internal.v0.models.checkbox'] = PropTypes.exact({
|
|
16889
|
+
name: PropTypes.string.isRequired,
|
|
16890
|
+
value: PropTypes.string.isRequired,
|
|
16891
|
+
label: PropTypes.string.isRequired,
|
|
16892
|
+
checked_by_default: PropTypes.bool.isRequired,
|
|
16893
|
+
required: PropTypes.bool.isRequired,
|
|
16732
16894
|
});
|
|
16733
16895
|
|
|
16734
|
-
T['io.flow.internal.v0.
|
|
16735
|
-
T['io.flow.internal.v0.models.time_to_classify'],
|
|
16736
|
-
T['io.flow.internal.v0.models.time_to_classify_aggregated'],
|
|
16737
|
-
T['io.flow.internal.v0.models.rate_source_summary'],
|
|
16738
|
-
T['io.flow.internal.v0.models.rate_freshness_summary'],
|
|
16739
|
-
]);
|
|
16896
|
+
T['io.flow.internal.v0.enums.format'] = PropTypes.oneOf(['text', 'phone', 'email']);
|
|
16740
16897
|
|
|
16741
|
-
T['io.flow.internal.v0.models.
|
|
16742
|
-
|
|
16743
|
-
event_id: PropTypes.string.isRequired,
|
|
16744
|
-
timestamp: PropTypes.string.isRequired,
|
|
16745
|
-
rate_freshness_summary: T['io.flow.internal.v0.models.rate_freshness_summary'].isRequired,
|
|
16898
|
+
T['io.flow.internal.v0.models.logo'] = PropTypes.exact({
|
|
16899
|
+
url: PropTypes.string.isRequired,
|
|
16746
16900
|
});
|
|
16747
16901
|
|
|
16748
|
-
T['io.flow.
|
|
16749
|
-
|
|
16750
|
-
|
|
16751
|
-
|
|
16752
|
-
rate_freshness_summary: T['io.flow.internal.v0.models.rate_freshness_summary'].isRequired,
|
|
16902
|
+
T['io.flow.catalog.v0.models.image'] = PropTypes.exact({
|
|
16903
|
+
url: PropTypes.string.isRequired,
|
|
16904
|
+
tags: PropTypes.arrayOf(T['io.flow.catalog.v0.enums.image_tag']).isRequired,
|
|
16905
|
+
attributes: PropTypes.objectOf(PropTypes.string),
|
|
16753
16906
|
});
|
|
16754
16907
|
|
|
16755
|
-
T['io.flow.
|
|
16756
|
-
|
|
16757
|
-
|
|
16758
|
-
|
|
16759
|
-
item_numbers: PropTypes.arrayOf(PropTypes.string),
|
|
16760
|
-
rates: PropTypes.arrayOf(T['io.flow.internal.v0.models.currency_internal_rate']),
|
|
16761
|
-
countries: PropTypes.arrayOf(T['io.flow.reference.v0.models.country']),
|
|
16762
|
-
reason: PropTypes.string,
|
|
16908
|
+
T['io.flow.experience.v0.models.checkout_item_content_attribute'] = PropTypes.exact({
|
|
16909
|
+
key: PropTypes.string.isRequired,
|
|
16910
|
+
name: PropTypes.string.isRequired,
|
|
16911
|
+
value: PropTypes.string.isRequired,
|
|
16763
16912
|
});
|
|
16764
16913
|
|
|
16765
|
-
T['io.flow.internal.v0.models.
|
|
16766
|
-
|
|
16767
|
-
|
|
16768
|
-
|
|
16769
|
-
|
|
16770
|
-
|
|
16914
|
+
T['io.flow.internal.v0.models.checkout_marketing_content'] = PropTypes.exact({
|
|
16915
|
+
optins: PropTypes.arrayOf(T['io.flow.internal.v0.models.checkbox']).isRequired,
|
|
16916
|
+
});
|
|
16917
|
+
|
|
16918
|
+
T['io.flow.internal.v0.models.checkout_url'] = PropTypes.exact({
|
|
16919
|
+
url: PropTypes.string.isRequired,
|
|
16920
|
+
type: T['io.flow.internal.v0.enums.checkout_url_type'].isRequired,
|
|
16771
16921
|
});
|
|
16772
16922
|
|
|
16773
16923
|
T['io.flow.internal.v0.enums.checkout_shipping_method_prompt_behavior'] = PropTypes.oneOf(['always', 'multiple']);
|
|
@@ -17402,10 +17552,6 @@ T['io.flow.internal.v0.models.harmonization_unclassified_statistics'] = PropType
|
|
|
17402
17552
|
statistics: PropTypes.arrayOf(T['io.flow.internal.v0.models.unclassified_product_statistic']).isRequired,
|
|
17403
17553
|
});
|
|
17404
17554
|
|
|
17405
|
-
T['io.flow.internal.v0.models.checkout_bundle_metadata'] = PropTypes.exact({
|
|
17406
|
-
organization: T['io.flow.common.v0.models.organization_summary'].isRequired,
|
|
17407
|
-
});
|
|
17408
|
-
|
|
17409
17555
|
T['io.flow.internal.v0.models.channel_form'] = PropTypes.exact({
|
|
17410
17556
|
name: PropTypes.string.isRequired,
|
|
17411
17557
|
environment: T['io.flow.common.v0.enums.environment'].isRequired,
|
|
@@ -18350,6 +18496,12 @@ T['io.flow.trueup.v0.models.label_base'] = PropTypes.exact({
|
|
|
18350
18496
|
weight: PropTypes.number.isRequired,
|
|
18351
18497
|
});
|
|
18352
18498
|
|
|
18499
|
+
T['io.flow.label.v0.models.shipping_label_hop_cost_itemized_estimate'] = PropTypes.exact({
|
|
18500
|
+
units: T['io.flow.trueup.v0.models.label_units'].isRequired,
|
|
18501
|
+
base: T['io.flow.trueup.v0.models.label_base'].isRequired,
|
|
18502
|
+
surcharges: PropTypes.arrayOf(T['io.flow.trueup.v0.models.label_surcharge']).isRequired,
|
|
18503
|
+
});
|
|
18504
|
+
|
|
18353
18505
|
T['io.flow.internal.v0.models.carrier_charge_units'] = PropTypes.exact({
|
|
18354
18506
|
currency: PropTypes.string.isRequired,
|
|
18355
18507
|
weight: T['io.flow.units.v0.enums.unit_of_weight'],
|
|
@@ -18860,157 +19012,21 @@ T['io.flow.internal.v0.models.single_classification_action'] = PropTypes.exact({
|
|
|
18860
19012
|
organization: PropTypes.string.isRequired,
|
|
18861
19013
|
item_classification_id: PropTypes.string.isRequired,
|
|
18862
19014
|
item_summary: T['io.flow.internal.v0.models.harmonization_item_summary'].isRequired,
|
|
18863
|
-
customs_description: PropTypes.string.isRequired,
|
|
18864
|
-
labels: T['io.flow.internal.v0.models.product_labels'],
|
|
18865
|
-
updated_at: PropTypes.string.isRequired,
|
|
18866
|
-
});
|
|
18867
|
-
|
|
18868
|
-
T['io.flow.internal.v0.models.bulk_classification_action'] = PropTypes.exact({
|
|
18869
|
-
discriminator: PropTypes.oneOf(['bulk']).isRequired,
|
|
18870
|
-
actions: PropTypes.arrayOf(T['io.flow.internal.v0.models.single_classification_action']).isRequired,
|
|
18871
|
-
});
|
|
18872
|
-
|
|
18873
|
-
T['io.flow.internal.v0.unions.classification_action'] = PropTypes.oneOfType([
|
|
18874
|
-
T['io.flow.internal.v0.models.single_classification_action'],
|
|
18875
|
-
T['io.flow.internal.v0.models.bulk_classification_action'],
|
|
18876
|
-
]);
|
|
18877
|
-
|
|
18878
|
-
T['io.flow.internal.v0.models.browser_bundle_payment_method_form'] = PropTypes.exact({
|
|
18879
|
-
experience_key: PropTypes.string.isRequired,
|
|
18880
|
-
country: PropTypes.string.isRequired,
|
|
18881
|
-
});
|
|
18882
|
-
|
|
18883
|
-
T['io.flow.internal.v0.models.browser_bundle_country_picker_form'] = PropTypes.exact({
|
|
18884
|
-
country: PropTypes.string,
|
|
18885
|
-
ip: PropTypes.string,
|
|
18886
|
-
});
|
|
18887
|
-
|
|
18888
|
-
T['io.flow.internal.v0.models.browser_bundle_optin_form'] = PropTypes.exact({
|
|
18889
|
-
country: PropTypes.string.isRequired,
|
|
18890
|
-
});
|
|
18891
|
-
|
|
18892
|
-
T['io.flow.internal.v0.models.feature_geo_form'] = PropTypes.exact({
|
|
18893
|
-
country: PropTypes.string,
|
|
18894
|
-
currency: PropTypes.string,
|
|
18895
|
-
language: PropTypes.string,
|
|
18896
|
-
locale: PropTypes.string,
|
|
18897
|
-
region: PropTypes.string,
|
|
18898
|
-
});
|
|
18899
|
-
|
|
18900
|
-
T['io.flow.internal.v0.models.feature_context_form'] = PropTypes.exact({
|
|
18901
|
-
experience_key: PropTypes.string,
|
|
18902
|
-
geo: T['io.flow.internal.v0.models.feature_geo_form'],
|
|
18903
|
-
});
|
|
18904
|
-
|
|
18905
|
-
T['io.flow.internal.v0.models.feature_value_form'] = PropTypes.exact({
|
|
18906
|
-
feature_query: PropTypes.string.isRequired,
|
|
18907
|
-
context: T['io.flow.internal.v0.models.feature_context_form'].isRequired,
|
|
18908
|
-
});
|
|
18909
|
-
|
|
18910
|
-
T['io.flow.internal.v0.models.browser_bundle_feature_form'] = PropTypes.exact({
|
|
18911
|
-
keys: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
18912
|
-
context: T['io.flow.internal.v0.models.feature_context_form'].isRequired,
|
|
18913
|
-
});
|
|
18914
|
-
|
|
18915
|
-
T['io.flow.internal.v0.models.browser_bundle_form'] = PropTypes.exact({
|
|
18916
|
-
optin: T['io.flow.internal.v0.models.browser_bundle_optin_form'],
|
|
18917
|
-
country_picker: T['io.flow.internal.v0.models.browser_bundle_country_picker_form'],
|
|
18918
|
-
feature: T['io.flow.internal.v0.models.browser_bundle_feature_form'],
|
|
18919
|
-
payment_method: T['io.flow.internal.v0.models.browser_bundle_payment_method_form'],
|
|
18920
|
-
});
|
|
18921
|
-
|
|
18922
|
-
T['io.flow.internal.v0.enums.browser_bundle_error_code'] = PropTypes.oneOf(['generic_error', 'country_invalid']);
|
|
18923
|
-
|
|
18924
|
-
T['io.flow.internal.v0.models.browser_bundle_error'] = PropTypes.exact({
|
|
18925
|
-
code: T['io.flow.internal.v0.enums.browser_bundle_error_code'].isRequired,
|
|
18926
|
-
messages: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
18927
|
-
});
|
|
18928
|
-
|
|
18929
|
-
T['io.flow.internal.v0.models.browser_bundle_payment_method'] = PropTypes.exact({
|
|
18930
|
-
id: PropTypes.string.isRequired,
|
|
18931
|
-
});
|
|
18932
|
-
|
|
18933
|
-
T['io.flow.internal.v0.unions.optin_prompt_display'] = PropTypes.oneOfType([T['io.flow.internal.v0.models.optin_prompt_checkout_display']]);
|
|
18934
|
-
|
|
18935
|
-
T['io.flow.internal.v0.unions.localizable_content'] = PropTypes.oneOfType([
|
|
18936
|
-
T['io.flow.internal.v0.models.localizable_content_reference'],
|
|
18937
|
-
T['io.flow.internal.v0.models.localization'],
|
|
18938
|
-
]);
|
|
18939
|
-
|
|
18940
|
-
T['io.flow.internal.v0.enums.prompt_options'] = PropTypes.oneOf(['notice_only', 'require_consent', 'consent_by_default']);
|
|
18941
|
-
|
|
18942
|
-
T['io.flow.internal.v0.models.optin_prompt_form'] = PropTypes.exact({
|
|
18943
|
-
optin_attribute_key: PropTypes.string.isRequired,
|
|
18944
|
-
region: PropTypes.string.isRequired,
|
|
18945
|
-
options: PropTypes.arrayOf(T['io.flow.internal.v0.enums.prompt_options']).isRequired,
|
|
18946
|
-
content: T['io.flow.internal.v0.models.localization_form'].isRequired,
|
|
18947
|
-
position: PropTypes.number.isRequired,
|
|
18948
|
-
enforce_on: PropTypes.string,
|
|
18949
|
-
display: T['io.flow.internal.v0.unions.optin_prompt_display'],
|
|
18950
|
-
});
|
|
18951
|
-
|
|
18952
|
-
T['io.flow.internal.v0.models.optin_attribute'] = PropTypes.exact({
|
|
18953
|
-
name: PropTypes.string.isRequired,
|
|
18954
|
-
optin_attribute_key: PropTypes.string.isRequired,
|
|
18955
|
-
target: T['io.flow.internal.v0.enums.prompt_target'].isRequired,
|
|
18956
|
-
status: T['io.flow.internal.v0.enums.content_status'].isRequired,
|
|
18957
|
-
created_at: PropTypes.string.isRequired,
|
|
18958
|
-
updated_at: PropTypes.string.isRequired,
|
|
18959
|
-
});
|
|
18960
|
-
|
|
18961
|
-
T['io.flow.internal.v0.models.country_picker_country_data'] = PropTypes.exact({
|
|
18962
|
-
country: PropTypes.string.isRequired,
|
|
18963
|
-
delivery_window: PropTypes.arrayOf(T['io.flow.internal.v0.models.country_picker_delivery_window']).isRequired,
|
|
18964
|
-
});
|
|
18965
|
-
|
|
18966
|
-
T['io.flow.internal.v0.models.country_picker_experience_data'] = PropTypes.exact({
|
|
18967
|
-
experience_key: PropTypes.string.isRequired,
|
|
18968
|
-
payment_methods: PropTypes.arrayOf(T['io.flow.internal.v0.models.country_picker_payment_method']).isRequired,
|
|
18969
|
-
});
|
|
18970
|
-
|
|
18971
|
-
T['io.flow.internal.v0.models.country_picker_currency'] = PropTypes.exact({
|
|
18972
|
-
iso_4217_3: PropTypes.string.isRequired,
|
|
18973
|
-
name: PropTypes.string.isRequired,
|
|
18974
|
-
});
|
|
18975
|
-
|
|
18976
|
-
T['io.flow.internal.v0.models.country_picker_country'] = PropTypes.exact({
|
|
18977
|
-
iso_3166_2: PropTypes.string.isRequired,
|
|
18978
|
-
iso_3166_3: PropTypes.string.isRequired,
|
|
18979
|
-
name: PropTypes.string.isRequired,
|
|
18980
|
-
default_currency: PropTypes.string,
|
|
18981
|
-
});
|
|
18982
|
-
|
|
18983
|
-
T['io.flow.internal.v0.models.browser_bundle_payment_methods'] = PropTypes.exact({
|
|
18984
|
-
displayed: PropTypes.arrayOf(T['io.flow.internal.v0.models.browser_bundle_payment_method']),
|
|
18985
|
-
});
|
|
18986
|
-
|
|
18987
|
-
T['io.flow.internal.v0.models.optin_prompt'] = PropTypes.exact({
|
|
18988
|
-
id: PropTypes.string.isRequired,
|
|
18989
|
-
optin_attribute: T['io.flow.internal.v0.models.optin_attribute'].isRequired,
|
|
18990
|
-
region: PropTypes.string.isRequired,
|
|
18991
|
-
options: PropTypes.arrayOf(T['io.flow.internal.v0.enums.prompt_options']).isRequired,
|
|
18992
|
-
content: T['io.flow.internal.v0.unions.localizable_content'].isRequired,
|
|
18993
|
-
position: PropTypes.number.isRequired,
|
|
18994
|
-
enforce_on: PropTypes.string.isRequired,
|
|
18995
|
-
display: T['io.flow.internal.v0.unions.optin_prompt_display'],
|
|
18996
|
-
});
|
|
18997
|
-
|
|
18998
|
-
T['io.flow.internal.v0.models.optin_prompt_upserted'] = PropTypes.exact({
|
|
18999
|
-
discriminator: PropTypes.oneOf(['optin_prompt_upserted']).isRequired,
|
|
19000
|
-
event_id: PropTypes.string.isRequired,
|
|
19001
|
-
timestamp: PropTypes.string.isRequired,
|
|
19002
|
-
id: PropTypes.string.isRequired,
|
|
19003
|
-
organization: PropTypes.string.isRequired,
|
|
19004
|
-
optin_prompt: T['io.flow.internal.v0.models.optin_prompt'].isRequired,
|
|
19015
|
+
customs_description: PropTypes.string.isRequired,
|
|
19016
|
+
labels: T['io.flow.internal.v0.models.product_labels'],
|
|
19017
|
+
updated_at: PropTypes.string.isRequired,
|
|
19005
19018
|
});
|
|
19006
19019
|
|
|
19007
|
-
T['io.flow.internal.v0.models.
|
|
19008
|
-
|
|
19009
|
-
|
|
19010
|
-
experience_data: PropTypes.arrayOf(T['io.flow.internal.v0.models.country_picker_experience_data']),
|
|
19011
|
-
country_data: PropTypes.arrayOf(T['io.flow.internal.v0.models.country_picker_country_data']),
|
|
19020
|
+
T['io.flow.internal.v0.models.bulk_classification_action'] = PropTypes.exact({
|
|
19021
|
+
discriminator: PropTypes.oneOf(['bulk']).isRequired,
|
|
19022
|
+
actions: PropTypes.arrayOf(T['io.flow.internal.v0.models.single_classification_action']).isRequired,
|
|
19012
19023
|
});
|
|
19013
19024
|
|
|
19025
|
+
T['io.flow.internal.v0.unions.classification_action'] = PropTypes.oneOfType([
|
|
19026
|
+
T['io.flow.internal.v0.models.single_classification_action'],
|
|
19027
|
+
T['io.flow.internal.v0.models.bulk_classification_action'],
|
|
19028
|
+
]);
|
|
19029
|
+
|
|
19014
19030
|
T['io.flow.brickftp.v0.enums.webhook_event_type'] = PropTypes.oneOf(['directory', 'file']);
|
|
19015
19031
|
T['io.flow.brickftp.v0.enums.webhook_event_interface'] = PropTypes.oneOf(['web', 'ftp', 'robot', 'jsapi', 'restapi', 'sftp', 'dav']);
|
|
19016
19032
|
T['io.flow.brickftp.v0.enums.webhook_event_action'] = PropTypes.oneOf(['create', 'read', 'update', 'destroy', 'move', 'copy']);
|
|
@@ -19052,13 +19068,6 @@ T['io.flow.internal.v0.models.feature_value_result'] = PropTypes.exact({
|
|
|
19052
19068
|
values: PropTypes.arrayOf(T['io.flow.internal.v0.unions.feature_value']).isRequired,
|
|
19053
19069
|
});
|
|
19054
19070
|
|
|
19055
|
-
T['io.flow.internal.v0.models.browser_bundle'] = PropTypes.exact({
|
|
19056
|
-
country_picker: T['io.flow.internal.v0.models.country_picker_data'].isRequired,
|
|
19057
|
-
optins: PropTypes.arrayOf(T['io.flow.internal.v0.models.optin_prompt']).isRequired,
|
|
19058
|
-
features: T['io.flow.internal.v0.models.feature_value_result'].isRequired,
|
|
19059
|
-
payment_methods: T['io.flow.internal.v0.models.browser_bundle_payment_methods'],
|
|
19060
|
-
});
|
|
19061
|
-
|
|
19062
19071
|
T['io.flow.internal.v0.models.bitpay_authentication_form'] = PropTypes.exact({
|
|
19063
19072
|
api_token: PropTypes.string.isRequired,
|
|
19064
19073
|
public_key: PropTypes.string.isRequired,
|
|
@@ -19342,7 +19351,6 @@ T['io.flow.billing.v0.enums.transaction_source'] = PropTypes.oneOf([
|
|
|
19342
19351
|
'tax_refund',
|
|
19343
19352
|
'non_l4l_tax_duty_fx',
|
|
19344
19353
|
'ge_revenue_share',
|
|
19345
|
-
'tax_duty_delta',
|
|
19346
19354
|
]);
|
|
19347
19355
|
|
|
19348
19356
|
T['io.flow.internal.v0.models.debug_original_transaction_summary'] = PropTypes.exact({
|
|
@@ -19537,6 +19545,7 @@ T['io.flow.internal.v0.models.restriction_item_request_form'] = PropTypes.exact(
|
|
|
19537
19545
|
user_ids: PropTypes.arrayOf(PropTypes.string),
|
|
19538
19546
|
categories: PropTypes.arrayOf(PropTypes.string),
|
|
19539
19547
|
product_name_query: PropTypes.string,
|
|
19548
|
+
hs6: PropTypes.string,
|
|
19540
19549
|
positive_keywords: PropTypes.arrayOf(PropTypes.string),
|
|
19541
19550
|
negative_keywords: PropTypes.arrayOf(PropTypes.string),
|
|
19542
19551
|
product_id: PropTypes.string,
|
|
@@ -19629,6 +19638,13 @@ T['io.flow.customer.v0.models.customer_put_form'] = PropTypes.exact({
|
|
|
19629
19638
|
phone: PropTypes.string,
|
|
19630
19639
|
});
|
|
19631
19640
|
|
|
19641
|
+
T['io.flow.customer.v0.models.customer_form'] = PropTypes.exact({
|
|
19642
|
+
number: PropTypes.string.isRequired,
|
|
19643
|
+
email: PropTypes.string,
|
|
19644
|
+
name: T['io.flow.common.v0.models.name'],
|
|
19645
|
+
phone: PropTypes.string,
|
|
19646
|
+
});
|
|
19647
|
+
|
|
19632
19648
|
T['io.flow.internal.v0.models.search_customer_summary'] = PropTypes.exact({
|
|
19633
19649
|
name: T['io.flow.common.v0.models.name'].isRequired,
|
|
19634
19650
|
email: PropTypes.string,
|
|
@@ -19724,13 +19740,6 @@ T['io.flow.internal.v0.models.order_note'] = PropTypes.exact({
|
|
|
19724
19740
|
updated_at: PropTypes.string.isRequired,
|
|
19725
19741
|
});
|
|
19726
19742
|
|
|
19727
|
-
T['io.flow.customer.v0.models.customer_form'] = PropTypes.exact({
|
|
19728
|
-
number: PropTypes.string.isRequired,
|
|
19729
|
-
email: PropTypes.string,
|
|
19730
|
-
name: T['io.flow.common.v0.models.name'],
|
|
19731
|
-
phone: PropTypes.string,
|
|
19732
|
-
});
|
|
19733
|
-
|
|
19734
19743
|
T['io.flow.customer.v0.models.customer'] = PropTypes.exact({
|
|
19735
19744
|
id: PropTypes.string.isRequired,
|
|
19736
19745
|
number: PropTypes.string.isRequired,
|
|
@@ -19764,19 +19773,6 @@ T['io.flow.customer.v0.models.customer_address_book_form'] = PropTypes.exact({
|
|
|
19764
19773
|
contacts: PropTypes.arrayOf(T['io.flow.customer.v0.models.customer_address_book_contact_form']).isRequired,
|
|
19765
19774
|
});
|
|
19766
19775
|
|
|
19767
|
-
T['io.flow.internal.v0.models.checkout_order_number_form'] = PropTypes.exact({
|
|
19768
|
-
discriminator: PropTypes.oneOf(['order_number']).isRequired,
|
|
19769
|
-
organization: PropTypes.string.isRequired,
|
|
19770
|
-
order_number: PropTypes.string.isRequired,
|
|
19771
|
-
customer: T['io.flow.customer.v0.models.customer_form'],
|
|
19772
|
-
address_book: T['io.flow.customer.v0.models.customer_address_book_form'],
|
|
19773
|
-
payment_sources: PropTypes.arrayOf(T['io.flow.payment.v0.unions.payment_source_form']),
|
|
19774
|
-
urls: T['io.flow.checkout.v0.models.checkout_urls_form'],
|
|
19775
|
-
identifiers: PropTypes.arrayOf(T['io.flow.experience.v0.models.order_submission_identifier_form']),
|
|
19776
|
-
feature_keys: PropTypes.arrayOf(PropTypes.string),
|
|
19777
|
-
order_parameters: T['io.flow.internal.v0.models.order_parameters'],
|
|
19778
|
-
});
|
|
19779
|
-
|
|
19780
19776
|
T['io.flow.customer.v0.models.customer_address_book_contact'] = PropTypes.exact({
|
|
19781
19777
|
id: PropTypes.string.isRequired,
|
|
19782
19778
|
address: T['io.flow.common.v0.models.address'].isRequired,
|
|
@@ -19989,21 +19985,21 @@ T['io.flow.partner.v0.models.partner_fulfillment'] = PropTypes.exact({
|
|
|
19989
19985
|
center: PropTypes.arrayOf(T['io.flow.fulfillment.v0.models.center_summary']),
|
|
19990
19986
|
});
|
|
19991
19987
|
|
|
19992
|
-
T['io.flow.
|
|
19993
|
-
discriminator: PropTypes.oneOf(['order_fulfillment_upserted']).isRequired,
|
|
19994
|
-
event_id: PropTypes.string.isRequired,
|
|
19995
|
-
timestamp: PropTypes.string.isRequired,
|
|
19988
|
+
T['io.flow.order.management.v0.models.fulfillment'] = PropTypes.exact({
|
|
19996
19989
|
organization: PropTypes.string.isRequired,
|
|
19997
19990
|
key: PropTypes.string.isRequired,
|
|
19998
|
-
|
|
19991
|
+
number: PropTypes.string.isRequired,
|
|
19999
19992
|
items: PropTypes.arrayOf(T['io.flow.order.management.v0.models.fulfillment_item']).isRequired,
|
|
20000
19993
|
center: T['io.flow.fulfillment.v0.models.center_summary'],
|
|
20001
19994
|
});
|
|
20002
19995
|
|
|
20003
|
-
T['io.flow.
|
|
19996
|
+
T['io.flow.internal.v0.models.order_fulfillment_upserted'] = PropTypes.exact({
|
|
19997
|
+
discriminator: PropTypes.oneOf(['order_fulfillment_upserted']).isRequired,
|
|
19998
|
+
event_id: PropTypes.string.isRequired,
|
|
19999
|
+
timestamp: PropTypes.string.isRequired,
|
|
20004
20000
|
organization: PropTypes.string.isRequired,
|
|
20005
20001
|
key: PropTypes.string.isRequired,
|
|
20006
|
-
|
|
20002
|
+
order_number: PropTypes.string.isRequired,
|
|
20007
20003
|
items: PropTypes.arrayOf(T['io.flow.order.management.v0.models.fulfillment_item']).isRequired,
|
|
20008
20004
|
center: T['io.flow.fulfillment.v0.models.center_summary'],
|
|
20009
20005
|
});
|
|
@@ -20163,6 +20159,7 @@ T['io.flow.payment.v0.unions.expandable_card'] = PropTypes.oneOfType([
|
|
|
20163
20159
|
T['io.flow.payment.v0.models.card'],
|
|
20164
20160
|
T['io.flow.payment.v0.models.card_reference'],
|
|
20165
20161
|
T['io.flow.payment.v0.models.card_summary'],
|
|
20162
|
+
T['io.flow.payment.v0.models.external_card'],
|
|
20166
20163
|
]);
|
|
20167
20164
|
|
|
20168
20165
|
T['io.flow.payment.v0.models.ach_authorization_form'] = PropTypes.exact({
|
|
@@ -20514,6 +20511,19 @@ T['io.flow.internal.v0.models.search_authorization'] = PropTypes.exact({
|
|
|
20514
20511
|
|
|
20515
20512
|
T['io.flow.internal.v0.unions.payment_summary_details'] = PropTypes.oneOfType([T['io.flow.internal.v0.models.search_authorization']]);
|
|
20516
20513
|
|
|
20514
|
+
T['io.flow.internal.v0.models.shopify_merchant_plan'] = PropTypes.exact({
|
|
20515
|
+
id: PropTypes.string.isRequired,
|
|
20516
|
+
authorization: T['io.flow.payment.v0.models.authorization_reference'].isRequired,
|
|
20517
|
+
plan: T['io.flow.internal.v0.enums.shopify_plan_type'].isRequired,
|
|
20518
|
+
});
|
|
20519
|
+
|
|
20520
|
+
T['io.flow.internal.v0.models.shopify_merchant_plan_upserted'] = PropTypes.exact({
|
|
20521
|
+
discriminator: PropTypes.oneOf(['shopify_merchant_plan_upserted']).isRequired,
|
|
20522
|
+
event_id: PropTypes.string.isRequired,
|
|
20523
|
+
timestamp: PropTypes.string.isRequired,
|
|
20524
|
+
shopify_merchant_plan: T['io.flow.internal.v0.models.shopify_merchant_plan'].isRequired,
|
|
20525
|
+
});
|
|
20526
|
+
|
|
20517
20527
|
T['io.flow.internal.v0.models.authorization_bundle'] = PropTypes.exact({
|
|
20518
20528
|
id: PropTypes.string.isRequired,
|
|
20519
20529
|
organization_id: PropTypes.string.isRequired,
|
|
@@ -21644,18 +21654,6 @@ T['io.flow.internal.v0.models.debug_order_transaction_details'] = PropTypes.exac
|
|
|
21644
21654
|
payout_details: T['io.flow.billing.v0.unions.payout_status'],
|
|
21645
21655
|
});
|
|
21646
21656
|
|
|
21647
|
-
T['io.flow.label.v0.models.shipping_label_hop_cost_itemized_estimate'] = PropTypes.exact({
|
|
21648
|
-
units: T['io.flow.trueup.v0.models.label_units'].isRequired,
|
|
21649
|
-
base: T['io.flow.trueup.v0.models.label_base'].isRequired,
|
|
21650
|
-
surcharges: PropTypes.arrayOf(T['io.flow.trueup.v0.models.label_surcharge']).isRequired,
|
|
21651
|
-
});
|
|
21652
|
-
|
|
21653
|
-
T['io.flow.label.v0.models.shipping_label_lane_summary'] = PropTypes.exact({
|
|
21654
|
-
id: PropTypes.string,
|
|
21655
|
-
ratecard: T['io.flow.label.v0.models.shipping_label_ratecard_summary'].isRequired,
|
|
21656
|
-
weight_break: PropTypes.number,
|
|
21657
|
-
});
|
|
21658
|
-
|
|
21659
21657
|
T['io.flow.internal.v0.enums.address_configuration_setting_province_code'] = PropTypes.oneOf(['iso_3166_2', 'name']);
|
|
21660
21658
|
|
|
21661
21659
|
T['io.flow.internal.v0.models.address_configuration_setting_form'] = PropTypes.exact({
|
|
@@ -21986,6 +21984,7 @@ T['io.flow.ratecard.v0.models.eei_filing_ratecard_fee'] = PropTypes.exact({
|
|
|
21986
21984
|
T['io.flow.ratecard.v0.models.duties_taxes_paid_surcharge_service_fee'] = PropTypes.exact({
|
|
21987
21985
|
discriminator: PropTypes.oneOf(['duties_taxes_paid_surcharge_service_fee']).isRequired,
|
|
21988
21986
|
amount: T['io.flow.common.v0.models.money'].isRequired,
|
|
21987
|
+
destination_countries: PropTypes.arrayOf(PropTypes.string),
|
|
21989
21988
|
starts_at: PropTypes.string,
|
|
21990
21989
|
ends_at: PropTypes.string,
|
|
21991
21990
|
});
|
|
@@ -22097,40 +22096,6 @@ T['io.flow.internal.v0.models.rate_with_fees'] = PropTypes.exact({
|
|
|
22097
22096
|
fees: PropTypes.arrayOf(T['io.flow.ratecard.v0.unions.ratecard_fee']).isRequired,
|
|
22098
22097
|
});
|
|
22099
22098
|
|
|
22100
|
-
T['io.flow.internal.v0.models.ratecard_lane_aggregate'] = PropTypes.exact({
|
|
22101
|
-
id: PropTypes.string.isRequired,
|
|
22102
|
-
organization_id: PropTypes.string.isRequired,
|
|
22103
|
-
origin: T['io.flow.common.v0.models.zone'].isRequired,
|
|
22104
|
-
destination: T['io.flow.common.v0.models.zone'].isRequired,
|
|
22105
|
-
currency: PropTypes.string.isRequired,
|
|
22106
|
-
delivered_duty: T['io.flow.common.v0.enums.delivered_duty'].isRequired,
|
|
22107
|
-
shipment_window: T['io.flow.ratecard.v0.models.shipment_window'].isRequired,
|
|
22108
|
-
dim_factor: PropTypes.number.isRequired,
|
|
22109
|
-
service: T['io.flow.ratecard.v0.models.ratecard_service_summary'].isRequired,
|
|
22110
|
-
rounding: T['io.flow.common.v0.models.rounding'].isRequired,
|
|
22111
|
-
weight_unit: T['io.flow.common.v0.enums.unit_of_measurement'].isRequired,
|
|
22112
|
-
distance_unit: T['io.flow.common.v0.enums.unit_of_measurement'].isRequired,
|
|
22113
|
-
rates_with_fees: PropTypes.arrayOf(T['io.flow.internal.v0.models.rate_with_fees']).isRequired,
|
|
22114
|
-
ratecard: T['io.flow.ratecard.v0.models.ratecard_reference'].isRequired,
|
|
22115
|
-
ratecard_owner: T['io.flow.fulfillment.v0.enums.ratecard_owner'].isRequired,
|
|
22116
|
-
});
|
|
22117
|
-
|
|
22118
|
-
T['io.flow.internal.v0.models.ratecard_lane_aggregate_upserted'] = PropTypes.exact({
|
|
22119
|
-
discriminator: PropTypes.oneOf(['ratecard_lane_aggregate_upserted']).isRequired,
|
|
22120
|
-
event_id: PropTypes.string.isRequired,
|
|
22121
|
-
timestamp: PropTypes.string.isRequired,
|
|
22122
|
-
organization: PropTypes.string.isRequired,
|
|
22123
|
-
ratecard_aggregate: T['io.flow.internal.v0.models.ratecard_lane_aggregate'].isRequired,
|
|
22124
|
-
});
|
|
22125
|
-
|
|
22126
|
-
T['io.flow.internal.v0.models.ratecard_lane_aggregate_deleted'] = PropTypes.exact({
|
|
22127
|
-
discriminator: PropTypes.oneOf(['ratecard_lane_aggregate_deleted']).isRequired,
|
|
22128
|
-
event_id: PropTypes.string.isRequired,
|
|
22129
|
-
timestamp: PropTypes.string.isRequired,
|
|
22130
|
-
organization: PropTypes.string.isRequired,
|
|
22131
|
-
ratecard_aggregate: T['io.flow.internal.v0.models.ratecard_lane_aggregate'].isRequired,
|
|
22132
|
-
});
|
|
22133
|
-
|
|
22134
22099
|
T['io.flow.ratecard.v0.models.additional_handling_service_fee'] = PropTypes.exact({
|
|
22135
22100
|
discriminator: PropTypes.oneOf(['additional_handling_service_fee']).isRequired,
|
|
22136
22101
|
length_girth_threshold: PropTypes.number,
|
|
@@ -22393,6 +22358,42 @@ T['io.flow.experience.v0.models.order_replacement_form'] = PropTypes.exact({
|
|
|
22393
22358
|
items: PropTypes.arrayOf(T['io.flow.common.v0.models.line_item_form']),
|
|
22394
22359
|
});
|
|
22395
22360
|
|
|
22361
|
+
T['io.flow.experience.v0.models.order_put_form'] = PropTypes.exact({
|
|
22362
|
+
order_type: T['io.flow.experience.v0.enums.order_type'],
|
|
22363
|
+
items: PropTypes.arrayOf(T['io.flow.common.v0.models.line_item_form']).isRequired,
|
|
22364
|
+
customer: T['io.flow.common.v0.models.order_customer_form'],
|
|
22365
|
+
delivered_duty: T['io.flow.common.v0.enums.delivered_duty'],
|
|
22366
|
+
selections: PropTypes.arrayOf(PropTypes.string),
|
|
22367
|
+
destination: T['io.flow.experience.v0.models.order_address'],
|
|
22368
|
+
discount: T['io.flow.common.v0.models.money'],
|
|
22369
|
+
discounts: T['io.flow.common.v0.models.discounts_form'],
|
|
22370
|
+
attributes: PropTypes.objectOf(PropTypes.string),
|
|
22371
|
+
authorization_keys: PropTypes.arrayOf(PropTypes.string),
|
|
22372
|
+
options: T['io.flow.experience.v0.models.order_options'],
|
|
22373
|
+
device_details: T['io.flow.payment.v0.unions.device_details'],
|
|
22374
|
+
payment_source: T['io.flow.experience.v0.enums.order_payment_source_type'],
|
|
22375
|
+
});
|
|
22376
|
+
|
|
22377
|
+
T['io.flow.experience.v0.models.order_form'] = PropTypes.exact({
|
|
22378
|
+
customer: T['io.flow.common.v0.models.order_customer_form'],
|
|
22379
|
+
items: PropTypes.arrayOf(T['io.flow.common.v0.models.line_item_form']).isRequired,
|
|
22380
|
+
delivered_duty: T['io.flow.common.v0.enums.delivered_duty'],
|
|
22381
|
+
number: PropTypes.string,
|
|
22382
|
+
destination: T['io.flow.experience.v0.models.order_address'],
|
|
22383
|
+
discount: T['io.flow.common.v0.models.money'],
|
|
22384
|
+
discounts: T['io.flow.common.v0.models.discounts_form'],
|
|
22385
|
+
attributes: PropTypes.objectOf(PropTypes.string),
|
|
22386
|
+
authorization_keys: PropTypes.arrayOf(PropTypes.string),
|
|
22387
|
+
options: T['io.flow.experience.v0.models.order_options'],
|
|
22388
|
+
device_details: T['io.flow.payment.v0.unions.device_details'],
|
|
22389
|
+
payment_source: T['io.flow.experience.v0.enums.order_payment_source_type'],
|
|
22390
|
+
});
|
|
22391
|
+
|
|
22392
|
+
T['io.flow.experience.v0.models.order_with_discounts_form'] = PropTypes.exact({
|
|
22393
|
+
order: T['io.flow.experience.v0.models.order_form'].isRequired,
|
|
22394
|
+
discounts: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
22395
|
+
});
|
|
22396
|
+
|
|
22396
22397
|
T['io.flow.experience.v0.models.order_estimate_form'] = PropTypes.exact({
|
|
22397
22398
|
items: PropTypes.arrayOf(T['io.flow.common.v0.models.line_item_form']).isRequired,
|
|
22398
22399
|
destination: T['io.flow.experience.v0.models.order_address'],
|
|
@@ -22679,6 +22680,12 @@ T['io.flow.internal.v0.models.checkout_payment'] = PropTypes.exact({
|
|
|
22679
22680
|
authorization_parameters: PropTypes.arrayOf(T['io.flow.internal.v0.models.authorization_parameters']).isRequired,
|
|
22680
22681
|
});
|
|
22681
22682
|
|
|
22683
|
+
T['io.flow.payment.v0.models.payment_fee'] = PropTypes.exact({
|
|
22684
|
+
type: T['io.flow.payment.v0.enums.payment_fee_type'].isRequired,
|
|
22685
|
+
money: T['io.flow.common.v0.models.money'].isRequired,
|
|
22686
|
+
base: T['io.flow.common.v0.models.money'],
|
|
22687
|
+
});
|
|
22688
|
+
|
|
22682
22689
|
T['io.flow.payment.v0.models.capture'] = PropTypes.exact({
|
|
22683
22690
|
id: PropTypes.string.isRequired,
|
|
22684
22691
|
key: PropTypes.string.isRequired,
|
|
@@ -22690,6 +22697,7 @@ T['io.flow.payment.v0.models.capture'] = PropTypes.exact({
|
|
|
22690
22697
|
attributes: PropTypes.objectOf(PropTypes.string),
|
|
22691
22698
|
status: T['io.flow.payment.v0.enums.capture_status'],
|
|
22692
22699
|
base: T['io.flow.common.v0.models.money'],
|
|
22700
|
+
fees: PropTypes.arrayOf(T['io.flow.payment.v0.models.payment_fee']),
|
|
22693
22701
|
});
|
|
22694
22702
|
|
|
22695
22703
|
T['io.flow.payment.v0.models.refund_capture_summary'] = PropTypes.exact({
|
|
@@ -22776,27 +22784,6 @@ T['io.flow.merchant.onboarding.v0.models.shopify_merchant_application'] = PropTy
|
|
|
22776
22784
|
|
|
22777
22785
|
T['io.flow.merchant.onboarding.v0.unions.merchant_application'] = PropTypes.oneOfType([T['io.flow.merchant.onboarding.v0.models.shopify_merchant_application']]);
|
|
22778
22786
|
|
|
22779
|
-
T['io.flow.internal.v0.models.tax_duty_delta_metadata_expected_processing'] = PropTypes.exact({
|
|
22780
|
-
tax: T['io.flow.common.v0.models.money'].isRequired,
|
|
22781
|
-
duty: T['io.flow.common.v0.models.money'].isRequired,
|
|
22782
|
-
total: T['io.flow.common.v0.models.money'].isRequired,
|
|
22783
|
-
});
|
|
22784
|
-
|
|
22785
|
-
T['io.flow.internal.v0.models.tax_duty_delta_metadata_expected'] = PropTypes.exact({
|
|
22786
|
-
processing: T['io.flow.internal.v0.models.tax_duty_delta_metadata_expected_processing'].isRequired,
|
|
22787
|
-
});
|
|
22788
|
-
|
|
22789
|
-
T['io.flow.internal.v0.models.tax_duty_delta_metadata_actual_processing'] = PropTypes.exact({
|
|
22790
|
-
capture: T['io.flow.common.v0.models.money'].isRequired,
|
|
22791
|
-
fees: T['io.flow.common.v0.models.money'].isRequired,
|
|
22792
|
-
transfer: T['io.flow.common.v0.models.money'].isRequired,
|
|
22793
|
-
total: T['io.flow.common.v0.models.money'].isRequired,
|
|
22794
|
-
});
|
|
22795
|
-
|
|
22796
|
-
T['io.flow.internal.v0.models.tax_duty_delta_metadata_actual'] = PropTypes.exact({
|
|
22797
|
-
processing: T['io.flow.internal.v0.models.tax_duty_delta_metadata_actual_processing'].isRequired,
|
|
22798
|
-
});
|
|
22799
|
-
|
|
22800
22787
|
T['io.flow.internal.v0.models.shopify_promotion_attribute_value'] = PropTypes.exact({
|
|
22801
22788
|
name: PropTypes.string.isRequired,
|
|
22802
22789
|
discount: T['io.flow.common.v0.models.money'].isRequired,
|
|
@@ -23000,110 +22987,19 @@ T['io.flow.internal.v0.models.dispute_record'] = PropTypes.exact({
|
|
|
23000
22987
|
chargeback_amount: T['io.flow.common.v0.models.money_with_base'].isRequired,
|
|
23001
22988
|
});
|
|
23002
22989
|
|
|
23003
|
-
T['io.flow.
|
|
23004
|
-
|
|
23005
|
-
|
|
23006
|
-
|
|
23007
|
-
number: PropTypes.string,
|
|
23008
|
-
destination: T['io.flow.experience.v0.models.order_address'],
|
|
23009
|
-
discount: T['io.flow.common.v0.models.money'],
|
|
23010
|
-
discounts: T['io.flow.common.v0.models.discounts_form'],
|
|
23011
|
-
attributes: PropTypes.objectOf(PropTypes.string),
|
|
23012
|
-
authorization_keys: PropTypes.arrayOf(PropTypes.string),
|
|
23013
|
-
options: T['io.flow.experience.v0.models.order_options'],
|
|
23014
|
-
device_details: T['io.flow.payment.v0.unions.device_details'],
|
|
23015
|
-
payment_source: T['io.flow.experience.v0.enums.order_payment_source_type'],
|
|
23016
|
-
});
|
|
23017
|
-
|
|
23018
|
-
T['io.flow.checkout.v0.models.checkout_token_order_form'] = PropTypes.exact({
|
|
23019
|
-
discriminator: PropTypes.oneOf(['checkout_token_order_form']).isRequired,
|
|
23020
|
-
order_form: T['io.flow.experience.v0.models.order_form'].isRequired,
|
|
23021
|
-
customer: T['io.flow.customer.v0.models.customer_form'],
|
|
23022
|
-
address_book: T['io.flow.customer.v0.models.customer_address_book_form'],
|
|
23023
|
-
payment_sources: PropTypes.arrayOf(T['io.flow.payment.v0.unions.payment_source_form']),
|
|
23024
|
-
session_id: PropTypes.string.isRequired,
|
|
23025
|
-
urls: T['io.flow.checkout.v0.models.checkout_urls_form'],
|
|
23026
|
-
identifiers: PropTypes.arrayOf(T['io.flow.experience.v0.models.order_submission_identifier_form']),
|
|
23027
|
-
});
|
|
23028
|
-
|
|
23029
|
-
T['io.flow.checkout.v0.unions.checkout_token_form'] = PropTypes.oneOfType([
|
|
23030
|
-
T['io.flow.checkout.v0.models.checkout_token_order_form'],
|
|
23031
|
-
T['io.flow.checkout.v0.models.checkout_token_reference_form'],
|
|
23032
|
-
]);
|
|
23033
|
-
|
|
23034
|
-
T['io.flow.experience.v0.models.order_with_discounts_form'] = PropTypes.exact({
|
|
23035
|
-
order: T['io.flow.experience.v0.models.order_form'].isRequired,
|
|
23036
|
-
discounts: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
23037
|
-
});
|
|
23038
|
-
|
|
23039
|
-
T['io.flow.internal.v0.models.checkout_order_form'] = PropTypes.exact({
|
|
23040
|
-
discriminator: PropTypes.oneOf(['order']).isRequired,
|
|
23041
|
-
organization: PropTypes.string.isRequired,
|
|
23042
|
-
order: T['io.flow.experience.v0.models.order_form'].isRequired,
|
|
23043
|
-
customer: T['io.flow.customer.v0.models.customer_form'],
|
|
23044
|
-
address_book: T['io.flow.customer.v0.models.customer_address_book_form'],
|
|
23045
|
-
payment_sources: PropTypes.arrayOf(T['io.flow.payment.v0.unions.payment_source_form']),
|
|
23046
|
-
urls: T['io.flow.checkout.v0.models.checkout_urls_form'],
|
|
23047
|
-
identifiers: PropTypes.arrayOf(T['io.flow.experience.v0.models.order_submission_identifier_form']),
|
|
23048
|
-
feature_keys: PropTypes.arrayOf(PropTypes.string),
|
|
23049
|
-
order_parameters: T['io.flow.internal.v0.models.order_parameters'],
|
|
23050
|
-
});
|
|
23051
|
-
|
|
23052
|
-
T['io.flow.internal.v0.unions.checkout_form'] = PropTypes.oneOfType([
|
|
23053
|
-
T['io.flow.internal.v0.models.checkout_order_form'],
|
|
23054
|
-
T['io.flow.internal.v0.models.checkout_order_number_form'],
|
|
23055
|
-
]);
|
|
23056
|
-
|
|
23057
|
-
T['io.flow.experience.v0.models.order_put_form'] = PropTypes.exact({
|
|
23058
|
-
order_type: T['io.flow.experience.v0.enums.order_type'],
|
|
23059
|
-
items: PropTypes.arrayOf(T['io.flow.common.v0.models.line_item_form']).isRequired,
|
|
23060
|
-
customer: T['io.flow.common.v0.models.order_customer_form'],
|
|
23061
|
-
delivered_duty: T['io.flow.common.v0.enums.delivered_duty'],
|
|
23062
|
-
selections: PropTypes.arrayOf(PropTypes.string),
|
|
23063
|
-
destination: T['io.flow.experience.v0.models.order_address'],
|
|
23064
|
-
discount: T['io.flow.common.v0.models.money'],
|
|
23065
|
-
discounts: T['io.flow.common.v0.models.discounts_form'],
|
|
23066
|
-
attributes: PropTypes.objectOf(PropTypes.string),
|
|
23067
|
-
authorization_keys: PropTypes.arrayOf(PropTypes.string),
|
|
23068
|
-
options: T['io.flow.experience.v0.models.order_options'],
|
|
23069
|
-
device_details: T['io.flow.payment.v0.unions.device_details'],
|
|
23070
|
-
payment_source: T['io.flow.experience.v0.enums.order_payment_source_type'],
|
|
23071
|
-
});
|
|
23072
|
-
|
|
23073
|
-
T['io.flow.internal.v0.models.invalid_checkout_data'] = PropTypes.exact({
|
|
23074
|
-
order: T['io.flow.experience.v0.models.order_put_form'].isRequired,
|
|
23075
|
-
});
|
|
23076
|
-
|
|
23077
|
-
T['io.flow.internal.v0.models.checkout_reference_form'] = PropTypes.exact({
|
|
23078
|
-
order_number: PropTypes.string.isRequired,
|
|
23079
|
-
order_form: T['io.flow.experience.v0.models.order_put_form'].isRequired,
|
|
23080
|
-
order_geo: T['io.flow.experience.v0.models.order_geo'].isRequired,
|
|
23081
|
-
session_id: PropTypes.string.isRequired,
|
|
23082
|
-
urls: T['io.flow.checkout.v0.models.checkout_urls_form'],
|
|
23083
|
-
identifiers: PropTypes.arrayOf(T['io.flow.experience.v0.models.order_submission_identifier_form']),
|
|
23084
|
-
});
|
|
23085
|
-
|
|
23086
|
-
T['io.flow.internal.v0.models.expected_order_summary'] = PropTypes.exact({
|
|
23087
|
-
total: T['io.flow.common.v0.models.money'],
|
|
23088
|
-
});
|
|
23089
|
-
|
|
23090
|
-
T['io.flow.internal.v0.models.checkout_submit_order_form'] = PropTypes.exact({
|
|
23091
|
-
discriminator: PropTypes.oneOf(['checkout_submit_order_form']).isRequired,
|
|
23092
|
-
authorization_form: T['io.flow.payment.v0.unions.authorization_form'],
|
|
23093
|
-
expected_order_summary: T['io.flow.internal.v0.models.expected_order_summary'],
|
|
23094
|
-
});
|
|
23095
|
-
|
|
23096
|
-
T['io.flow.internal.v0.unions.checkout_submit_order_forms'] = PropTypes.oneOfType([T['io.flow.internal.v0.models.checkout_submit_order_form']]);
|
|
23097
|
-
|
|
23098
|
-
T['io.flow.internal.v0.models.checkout_submission_form'] = PropTypes.exact({
|
|
23099
|
-
authorization_form: T['io.flow.payment.v0.unions.authorization_form'],
|
|
23100
|
-
expected_order_summary: T['io.flow.internal.v0.models.expected_order_summary'],
|
|
23101
|
-
feature_keys: PropTypes.arrayOf(PropTypes.string),
|
|
22990
|
+
T['io.flow.label.v0.models.shipping_label_hop_summary'] = PropTypes.exact({
|
|
22991
|
+
lane: T['io.flow.label.v0.models.shipping_label_lane_summary'].isRequired,
|
|
22992
|
+
cost: T['io.flow.common.v0.models.money'].isRequired,
|
|
22993
|
+
itemized_estimate: T['io.flow.label.v0.models.shipping_label_hop_cost_itemized_estimate'],
|
|
23102
22994
|
});
|
|
23103
22995
|
|
|
23104
|
-
T['io.flow.internal.v0.models.
|
|
23105
|
-
|
|
23106
|
-
|
|
22996
|
+
T['io.flow.internal.v0.models.debug_label'] = PropTypes.exact({
|
|
22997
|
+
carrier_id: PropTypes.string.isRequired,
|
|
22998
|
+
carrier_tracking_number: PropTypes.string.isRequired,
|
|
22999
|
+
label_tracking_summary_id: PropTypes.string,
|
|
23000
|
+
label_id: PropTypes.string,
|
|
23001
|
+
cost_estimate: T['io.flow.label.v0.models.shipping_label_hop_summary'],
|
|
23002
|
+
transactions: PropTypes.arrayOf(T['io.flow.internal.v0.models.debug_label_transaction_summary']),
|
|
23107
23003
|
});
|
|
23108
23004
|
|
|
23109
23005
|
T['io.flow.internal.v0.models.chargeback'] = PropTypes.exact({
|
|
@@ -23219,61 +23115,16 @@ T['io.flow.internal.v0.unions.adjustment_details'] = PropTypes.oneOfType([
|
|
|
23219
23115
|
T['io.flow.internal.v0.models.transaction_adjustment_form'] = PropTypes.exact({
|
|
23220
23116
|
original_transaction_id: PropTypes.string.isRequired,
|
|
23221
23117
|
description: PropTypes.string.isRequired,
|
|
23222
|
-
details: T['io.flow.internal.v0.unions.adjustment_details'].isRequired,
|
|
23223
|
-
type: T['io.flow.internal.v0.enums.adjustment_transaction_type'],
|
|
23224
|
-
});
|
|
23225
|
-
|
|
23226
|
-
T['io.flow.internal.v0.models.transaction_adjustment'] = PropTypes.exact({
|
|
23227
|
-
id: PropTypes.string.isRequired,
|
|
23228
|
-
original_transaction: T['io.flow.internal.v0.models.transaction_reference'].isRequired,
|
|
23229
|
-
adjustment_transaction: T['io.flow.internal.v0.models.transaction_reference'],
|
|
23230
|
-
description: PropTypes.string.isRequired,
|
|
23231
|
-
details: T['io.flow.internal.v0.unions.adjustment_details'].isRequired,
|
|
23232
|
-
});
|
|
23233
|
-
|
|
23234
|
-
T['io.flow.label.v0.models.shipping_label_hop_summary'] = PropTypes.exact({
|
|
23235
|
-
lane: T['io.flow.label.v0.models.shipping_label_lane_summary'].isRequired,
|
|
23236
|
-
cost: T['io.flow.common.v0.models.money'].isRequired,
|
|
23237
|
-
itemized_estimate: T['io.flow.label.v0.models.shipping_label_hop_cost_itemized_estimate'],
|
|
23238
|
-
});
|
|
23239
|
-
|
|
23240
|
-
T['io.flow.internal.v0.models.final_estimate'] = PropTypes.exact({
|
|
23241
|
-
id: PropTypes.string.isRequired,
|
|
23242
|
-
organization_id: PropTypes.string.isRequired,
|
|
23243
|
-
label_id: PropTypes.string.isRequired,
|
|
23244
|
-
estimate: T['io.flow.label.v0.models.shipping_label_hop_summary'].isRequired,
|
|
23245
|
-
});
|
|
23246
|
-
|
|
23247
|
-
T['io.flow.internal.v0.models.final_estimate_upserted'] = PropTypes.exact({
|
|
23248
|
-
discriminator: PropTypes.oneOf(['final_estimate_upserted']).isRequired,
|
|
23249
|
-
event_id: PropTypes.string.isRequired,
|
|
23250
|
-
timestamp: PropTypes.string.isRequired,
|
|
23251
|
-
organization: PropTypes.string.isRequired,
|
|
23252
|
-
final_estimate: T['io.flow.internal.v0.models.final_estimate'].isRequired,
|
|
23253
|
-
});
|
|
23254
|
-
|
|
23255
|
-
T['io.flow.internal.v0.models.debug_label'] = PropTypes.exact({
|
|
23256
|
-
carrier_id: PropTypes.string.isRequired,
|
|
23257
|
-
carrier_tracking_number: PropTypes.string.isRequired,
|
|
23258
|
-
label_tracking_summary_id: PropTypes.string,
|
|
23259
|
-
label_id: PropTypes.string,
|
|
23260
|
-
cost_estimate: T['io.flow.label.v0.models.shipping_label_hop_summary'],
|
|
23261
|
-
transactions: PropTypes.arrayOf(T['io.flow.internal.v0.models.debug_label_transaction_summary']),
|
|
23118
|
+
details: T['io.flow.internal.v0.unions.adjustment_details'].isRequired,
|
|
23119
|
+
type: T['io.flow.internal.v0.enums.adjustment_transaction_type'],
|
|
23262
23120
|
});
|
|
23263
23121
|
|
|
23264
|
-
T['io.flow.internal.v0.models.
|
|
23122
|
+
T['io.flow.internal.v0.models.transaction_adjustment'] = PropTypes.exact({
|
|
23265
23123
|
id: PropTypes.string.isRequired,
|
|
23266
|
-
|
|
23267
|
-
|
|
23268
|
-
|
|
23269
|
-
|
|
23270
|
-
|
|
23271
|
-
T['io.flow.internal.v0.models.adjusted_estimates_upserted'] = PropTypes.exact({
|
|
23272
|
-
discriminator: PropTypes.oneOf(['adjusted_estimates_upserted']).isRequired,
|
|
23273
|
-
event_id: PropTypes.string.isRequired,
|
|
23274
|
-
timestamp: PropTypes.string.isRequired,
|
|
23275
|
-
organization: PropTypes.string.isRequired,
|
|
23276
|
-
adjusted_estimates: T['io.flow.internal.v0.models.adjusted_estimates'].isRequired,
|
|
23124
|
+
original_transaction: T['io.flow.internal.v0.models.transaction_reference'].isRequired,
|
|
23125
|
+
adjustment_transaction: T['io.flow.internal.v0.models.transaction_reference'],
|
|
23126
|
+
description: PropTypes.string.isRequired,
|
|
23127
|
+
details: T['io.flow.internal.v0.unions.adjustment_details'].isRequired,
|
|
23277
23128
|
});
|
|
23278
23129
|
|
|
23279
23130
|
T['io.flow.internal.v0.models.additional_import_tax'] = PropTypes.exact({
|
|
@@ -23382,17 +23233,6 @@ T['io.flow.session.v0.models.organization_session_authorization'] = PropTypes.ex
|
|
|
23382
23233
|
|
|
23383
23234
|
T['io.flow.session.v0.unions.session_authorization'] = PropTypes.oneOfType([T['io.flow.session.v0.models.organization_session_authorization']]);
|
|
23384
23235
|
|
|
23385
|
-
T['io.flow.checkout.v0.models.checkout_token'] = PropTypes.exact({
|
|
23386
|
-
id: PropTypes.string.isRequired,
|
|
23387
|
-
organization: T['io.flow.common.v0.models.organization_reference'].isRequired,
|
|
23388
|
-
checkout: T['io.flow.common.v0.models.checkout_reference'].isRequired,
|
|
23389
|
-
order: T['io.flow.experience.v0.models.order_number_reference'].isRequired,
|
|
23390
|
-
urls: T['io.flow.checkout.v0.models.checkout_urls'].isRequired,
|
|
23391
|
-
expires_at: PropTypes.string.isRequired,
|
|
23392
|
-
session: T['io.flow.common.v0.models.session_reference'].isRequired,
|
|
23393
|
-
customer: T['io.flow.common.v0.models.customer_reference'],
|
|
23394
|
-
});
|
|
23395
|
-
|
|
23396
23236
|
T['io.flow.token.v0.models.organization_token_v2_reference'] = PropTypes.exact({
|
|
23397
23237
|
discriminator: PropTypes.oneOf(['organization_token_v2_reference']).isRequired,
|
|
23398
23238
|
id: PropTypes.string.isRequired,
|
|
@@ -23816,6 +23656,25 @@ T['io.flow.internal.v0.models.liability_remittance_plan_deleted'] = PropTypes.ex
|
|
|
23816
23656
|
liability_remittance_plan: T['io.flow.internal.v0.models.liability_remittance_plan'].isRequired,
|
|
23817
23657
|
});
|
|
23818
23658
|
|
|
23659
|
+
T['io.flow.internal.v0.models.label_request_result'] = PropTypes.exact({
|
|
23660
|
+
id: PropTypes.string.isRequired,
|
|
23661
|
+
created_at: PropTypes.string.isRequired,
|
|
23662
|
+
state: T['io.flow.internal.v0.enums.label_request_result_state'].isRequired,
|
|
23663
|
+
organization_id: PropTypes.string.isRequired,
|
|
23664
|
+
order_number: PropTypes.string.isRequired,
|
|
23665
|
+
label_request_method: T['io.flow.label.v0.enums.label_request_method'].isRequired,
|
|
23666
|
+
carrier_id: PropTypes.string,
|
|
23667
|
+
carrier_tracking_number: PropTypes.string,
|
|
23668
|
+
url: PropTypes.string,
|
|
23669
|
+
error: PropTypes.string,
|
|
23670
|
+
suggested_responsibility: T['io.flow.internal.v0.enums.label_request_error_handling_responsibility'],
|
|
23671
|
+
origin_country: PropTypes.string,
|
|
23672
|
+
destination_country: PropTypes.string,
|
|
23673
|
+
reference_id: PropTypes.string,
|
|
23674
|
+
logistics_integration_provider: PropTypes.string,
|
|
23675
|
+
tax_lrp_liabilities: PropTypes.arrayOf(T['io.flow.internal.v0.models.liability']),
|
|
23676
|
+
});
|
|
23677
|
+
|
|
23819
23678
|
T['io.flow.internal.v0.models.commercial_invoice_internal'] = PropTypes.exact({
|
|
23820
23679
|
id: PropTypes.string.isRequired,
|
|
23821
23680
|
label_id: PropTypes.string.isRequired,
|
|
@@ -24498,8 +24357,11 @@ T['io.flow.internal.v0.models.restriction_item'] = PropTypes.exact({
|
|
|
24498
24357
|
organization_id: PropTypes.string.isRequired,
|
|
24499
24358
|
restriction_product_id: PropTypes.string.isRequired,
|
|
24500
24359
|
product_id: PropTypes.string.isRequired,
|
|
24360
|
+
item_numbers: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
24361
|
+
primary_item_number: PropTypes.string,
|
|
24501
24362
|
name: PropTypes.string.isRequired,
|
|
24502
24363
|
price: T['io.flow.common.v0.models.price'].isRequired,
|
|
24364
|
+
hs_code: PropTypes.string,
|
|
24503
24365
|
description: PropTypes.string.isRequired,
|
|
24504
24366
|
categories: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
24505
24367
|
images: PropTypes.arrayOf(T['io.flow.catalog.v0.models.image']).isRequired,
|
|
@@ -24667,15 +24529,6 @@ T['io.flow.fulfillment.v0.models.quote'] = PropTypes.exact({
|
|
|
24667
24529
|
delivered_duties: PropTypes.arrayOf(T['io.flow.common.v0.enums.delivered_duty']).isRequired,
|
|
24668
24530
|
});
|
|
24669
24531
|
|
|
24670
|
-
T['io.flow.internal.v0.models.pregenerated_quote'] = PropTypes.exact({
|
|
24671
|
-
id: PropTypes.string.isRequired,
|
|
24672
|
-
experience: T['io.flow.internal.v0.models.fulfillment_internal_experience_reference'].isRequired,
|
|
24673
|
-
destination_country: PropTypes.string.isRequired,
|
|
24674
|
-
item: T['io.flow.common.v0.models.item_reference'].isRequired,
|
|
24675
|
-
quote: T['io.flow.fulfillment.v0.models.quote'],
|
|
24676
|
-
errors: PropTypes.arrayOf(PropTypes.string),
|
|
24677
|
-
});
|
|
24678
|
-
|
|
24679
24532
|
T['io.flow.catalog.v0.unions.localized_price'] = PropTypes.oneOfType([
|
|
24680
24533
|
T['io.flow.catalog.v0.models.localized_item_price'],
|
|
24681
24534
|
T['io.flow.catalog.v0.models.localized_item_vat'],
|
|
@@ -25210,6 +25063,13 @@ T['io.flow.internal.v0.models.debug_order_transaction'] = PropTypes.exact({
|
|
|
25210
25063
|
banking: T['io.flow.internal.v0.models.debug_banking_details'].isRequired,
|
|
25211
25064
|
});
|
|
25212
25065
|
|
|
25066
|
+
T['io.flow.order.management.event.v0.models.fulfillment_item_allocation_details'] = PropTypes.exact({
|
|
25067
|
+
item_number: PropTypes.string.isRequired,
|
|
25068
|
+
line_number: PropTypes.number.isRequired,
|
|
25069
|
+
levies: T['io.flow.common.v0.models.price_with_base'].isRequired,
|
|
25070
|
+
total: T['io.flow.common.v0.models.price_with_base'].isRequired,
|
|
25071
|
+
});
|
|
25072
|
+
|
|
25213
25073
|
T['io.flow.experience.v0.models.order_payment'] = PropTypes.exact({
|
|
25214
25074
|
id: PropTypes.string.isRequired,
|
|
25215
25075
|
type: T['io.flow.experience.v0.enums.order_payment_type'].isRequired,
|
|
@@ -25329,51 +25189,40 @@ T['io.flow.experience.v0.models.credit_payment_version'] = PropTypes.exact({
|
|
|
25329
25189
|
credit_payment: T['io.flow.experience.v0.models.credit_payment'].isRequired,
|
|
25330
25190
|
});
|
|
25331
25191
|
|
|
25332
|
-
T['io.flow.order.management.event.v0.models.
|
|
25333
|
-
discriminator: PropTypes.oneOf(['order_placed']).isRequired,
|
|
25334
|
-
event_id: PropTypes.string.isRequired,
|
|
25335
|
-
timestamp: PropTypes.string.isRequired,
|
|
25336
|
-
organization: PropTypes.string.isRequired,
|
|
25337
|
-
order_number: PropTypes.string.isRequired,
|
|
25338
|
-
order: T['io.flow.experience.v0.models.order'].isRequired,
|
|
25339
|
-
allocation: T['io.flow.experience.v0.models.allocation_v2'].isRequired,
|
|
25340
|
-
});
|
|
25341
|
-
|
|
25342
|
-
T['io.flow.order.management.v0.models.order_placed_details'] = PropTypes.exact({
|
|
25192
|
+
T['io.flow.order.management.event.v0.models.ready_to_fulfill_details'] = PropTypes.exact({
|
|
25343
25193
|
id: PropTypes.string.isRequired,
|
|
25194
|
+
order_number: PropTypes.string.isRequired,
|
|
25344
25195
|
order: T['io.flow.experience.v0.models.order'].isRequired,
|
|
25345
|
-
|
|
25346
|
-
});
|
|
25196
|
+
fulfillments: PropTypes.arrayOf(T['io.flow.order.management.v0.models.fulfillment']),
|
|
25347
25197
|
|
|
25348
|
-
|
|
25349
|
-
|
|
25350
|
-
|
|
25351
|
-
timestamp: PropTypes.string.isRequired,
|
|
25352
|
-
organization: PropTypes.string.isRequired,
|
|
25353
|
-
order_placed: T['io.flow.order.management.v0.models.order_placed_details'].isRequired,
|
|
25198
|
+
fulfillment_item_allocation_details: PropTypes.arrayOf(
|
|
25199
|
+
T['io.flow.order.management.event.v0.models.fulfillment_item_allocation_details'],
|
|
25200
|
+
),
|
|
25354
25201
|
});
|
|
25355
25202
|
|
|
25356
|
-
T['io.flow.
|
|
25357
|
-
discriminator: PropTypes.oneOf(['
|
|
25203
|
+
T['io.flow.order.management.event.v0.models.ready_to_fulfill_v2'] = PropTypes.exact({
|
|
25204
|
+
discriminator: PropTypes.oneOf(['ready_to_fulfill_v2']).isRequired,
|
|
25358
25205
|
event_id: PropTypes.string.isRequired,
|
|
25359
25206
|
timestamp: PropTypes.string.isRequired,
|
|
25360
25207
|
organization: PropTypes.string.isRequired,
|
|
25361
|
-
|
|
25362
|
-
session: T['io.flow.internal.v0.models.experience_session_reference'],
|
|
25208
|
+
ready_to_fulfill: T['io.flow.order.management.event.v0.models.ready_to_fulfill_details'].isRequired,
|
|
25363
25209
|
});
|
|
25364
25210
|
|
|
25365
|
-
T['io.flow.
|
|
25366
|
-
discriminator: PropTypes.oneOf(['
|
|
25211
|
+
T['io.flow.order.management.event.v0.models.ready_to_fulfill'] = PropTypes.exact({
|
|
25212
|
+
discriminator: PropTypes.oneOf(['ready_to_fulfill']).isRequired,
|
|
25367
25213
|
event_id: PropTypes.string.isRequired,
|
|
25368
25214
|
timestamp: PropTypes.string.isRequired,
|
|
25369
25215
|
organization: PropTypes.string.isRequired,
|
|
25370
25216
|
order_number: PropTypes.string.isRequired,
|
|
25371
25217
|
order: T['io.flow.experience.v0.models.order'].isRequired,
|
|
25372
|
-
fulfillments: PropTypes.arrayOf(T['io.flow.order.management.v0.models.fulfillment'])
|
|
25373
|
-
|
|
25218
|
+
fulfillments: PropTypes.arrayOf(T['io.flow.order.management.v0.models.fulfillment']),
|
|
25219
|
+
|
|
25220
|
+
fulfillment_item_allocation_details: PropTypes.arrayOf(
|
|
25221
|
+
T['io.flow.order.management.event.v0.models.fulfillment_item_allocation_details'],
|
|
25222
|
+
),
|
|
25374
25223
|
});
|
|
25375
25224
|
|
|
25376
|
-
T['io.flow.
|
|
25225
|
+
T['io.flow.order.management.event.v0.models.order_placed'] = PropTypes.exact({
|
|
25377
25226
|
discriminator: PropTypes.oneOf(['order_placed']).isRequired,
|
|
25378
25227
|
event_id: PropTypes.string.isRequired,
|
|
25379
25228
|
timestamp: PropTypes.string.isRequired,
|
|
@@ -25383,35 +25232,26 @@ T['io.flow.internal.v0.models.order_placed'] = PropTypes.exact({
|
|
|
25383
25232
|
allocation: T['io.flow.experience.v0.models.allocation_v2'].isRequired,
|
|
25384
25233
|
});
|
|
25385
25234
|
|
|
25386
|
-
T['io.flow.
|
|
25235
|
+
T['io.flow.order.management.v0.models.order_placed_details'] = PropTypes.exact({
|
|
25236
|
+
id: PropTypes.string.isRequired,
|
|
25387
25237
|
order: T['io.flow.experience.v0.models.order'].isRequired,
|
|
25388
|
-
|
|
25389
|
-
rates: PropTypes.arrayOf(T['io.flow.internal.v0.models.rate_data_v3']).isRequired,
|
|
25390
|
-
environment: T['io.flow.common.v0.enums.environment'],
|
|
25391
|
-
discount: T['io.flow.common.v0.models.money'],
|
|
25238
|
+
allocation: T['io.flow.experience.v0.models.allocation_v2'].isRequired,
|
|
25392
25239
|
});
|
|
25393
25240
|
|
|
25394
|
-
T['io.flow.
|
|
25395
|
-
discriminator: PropTypes.oneOf(['
|
|
25241
|
+
T['io.flow.order.management.event.v0.models.order_placed_v2'] = PropTypes.exact({
|
|
25242
|
+
discriminator: PropTypes.oneOf(['order_placed_v2']).isRequired,
|
|
25396
25243
|
event_id: PropTypes.string.isRequired,
|
|
25397
25244
|
timestamp: PropTypes.string.isRequired,
|
|
25398
25245
|
organization: PropTypes.string.isRequired,
|
|
25399
|
-
|
|
25400
|
-
order: T['io.flow.experience.v0.models.order'].isRequired,
|
|
25401
|
-
fulfillments: PropTypes.arrayOf(T['io.flow.order.management.v0.models.fulfillment']).isRequired,
|
|
25402
|
-
change_source: T['io.flow.order.management.v0.enums.order_change_source'].isRequired,
|
|
25403
|
-
reason: T['io.flow.order.management.v0.enums.cancel_reason'].isRequired,
|
|
25404
|
-
cancelled_lines: PropTypes.arrayOf(T['io.flow.order.management.v0.models.fulfillment_line_cancel_form']).isRequired,
|
|
25405
|
-
});
|
|
25406
|
-
|
|
25407
|
-
T['io.flow.internal.v0.models.checkout_submit_order_bundle'] = PropTypes.exact({
|
|
25408
|
-
discriminator: PropTypes.oneOf(['checkout_submit_order_bundle']).isRequired,
|
|
25409
|
-
order: T['io.flow.experience.v0.models.order'],
|
|
25410
|
-
redirect: T['io.flow.payment.v0.unions.authorization_result_action'],
|
|
25411
|
-
errors: PropTypes.arrayOf(T['io.flow.experience.v0.models.order_error']),
|
|
25246
|
+
order_placed: T['io.flow.order.management.v0.models.order_placed_details'].isRequired,
|
|
25412
25247
|
});
|
|
25413
25248
|
|
|
25414
|
-
T['io.flow.
|
|
25249
|
+
T['io.flow.order.management.event.v0.unions.order_management_event'] = PropTypes.oneOfType([
|
|
25250
|
+
T['io.flow.order.management.event.v0.models.order_placed'],
|
|
25251
|
+
T['io.flow.order.management.event.v0.models.order_placed_v2'],
|
|
25252
|
+
T['io.flow.order.management.event.v0.models.ready_to_fulfill'],
|
|
25253
|
+
T['io.flow.order.management.event.v0.models.ready_to_fulfill_v2'],
|
|
25254
|
+
]);
|
|
25415
25255
|
|
|
25416
25256
|
T['io.flow.experience.v0.models.order_builder'] = PropTypes.exact({
|
|
25417
25257
|
order: T['io.flow.experience.v0.models.order'],
|
|
@@ -25438,28 +25278,21 @@ T['io.flow.internal.v0.models.v1_checkout'] = PropTypes.exact({
|
|
|
25438
25278
|
customer_bundle: T['io.flow.customer.v0.models.customer_bundle'],
|
|
25439
25279
|
});
|
|
25440
25280
|
|
|
25441
|
-
T['io.flow.internal.v0.models.
|
|
25442
|
-
|
|
25443
|
-
|
|
25281
|
+
T['io.flow.internal.v0.models.submitted_order_upserted'] = PropTypes.exact({
|
|
25282
|
+
discriminator: PropTypes.oneOf(['submitted_order_upserted']).isRequired,
|
|
25283
|
+
event_id: PropTypes.string.isRequired,
|
|
25284
|
+
timestamp: PropTypes.string.isRequired,
|
|
25285
|
+
organization: PropTypes.string.isRequired,
|
|
25286
|
+
order: T['io.flow.experience.v0.models.order'].isRequired,
|
|
25287
|
+
session: T['io.flow.internal.v0.models.experience_session_reference'],
|
|
25444
25288
|
});
|
|
25445
25289
|
|
|
25446
|
-
T['io.flow.internal.v0.models.
|
|
25447
|
-
cart: T['io.flow.shopify.v0.models.shopify_cart'],
|
|
25290
|
+
T['io.flow.internal.v0.models.internal_order'] = PropTypes.exact({
|
|
25448
25291
|
order: T['io.flow.experience.v0.models.order'].isRequired,
|
|
25449
|
-
|
|
25450
|
-
|
|
25451
|
-
|
|
25452
|
-
|
|
25453
|
-
features: T['io.flow.internal.v0.models.feature_value_result'].isRequired,
|
|
25454
|
-
provinces: PropTypes.arrayOf(T['io.flow.reference.v0.models.province']).isRequired,
|
|
25455
|
-
checkout_items: PropTypes.arrayOf(T['io.flow.experience.v0.models.checkout_item_content']).isRequired,
|
|
25456
|
-
metadata: T['io.flow.internal.v0.models.checkout_bundle_metadata'],
|
|
25457
|
-
configuration: T['io.flow.internal.v0.models.checkout_configuration'],
|
|
25458
|
-
address_configurations: PropTypes.arrayOf(T['io.flow.experience.v0.models.address_configuration']),
|
|
25459
|
-
customer: T['io.flow.customer.v0.models.customer'],
|
|
25460
|
-
address_book: T['io.flow.customer.v0.models.customer_address_book'],
|
|
25461
|
-
payment_sources: PropTypes.arrayOf(T['io.flow.payment.v0.unions.payment_source']),
|
|
25462
|
-
customer_bundle: T['io.flow.customer.v0.models.customer_bundle'],
|
|
25292
|
+
session: T['io.flow.common.v0.models.session_reference'],
|
|
25293
|
+
rates: PropTypes.arrayOf(T['io.flow.internal.v0.models.rate_data_v3']).isRequired,
|
|
25294
|
+
environment: T['io.flow.common.v0.enums.environment'],
|
|
25295
|
+
discount: T['io.flow.common.v0.models.money'],
|
|
25463
25296
|
});
|
|
25464
25297
|
|
|
25465
25298
|
T['io.flow.internal.v0.models.shopify_order_line_content'] = PropTypes.exact({
|
|
@@ -25492,67 +25325,6 @@ T['io.flow.internal.v0.models.shopify_order_authorization'] = PropTypes.exact({
|
|
|
25492
25325
|
redirect: PropTypes.string,
|
|
25493
25326
|
});
|
|
25494
25327
|
|
|
25495
|
-
T['io.flow.order.management.event.v0.models.fulfillment_item_allocation_details'] = PropTypes.exact({
|
|
25496
|
-
item_number: PropTypes.string.isRequired,
|
|
25497
|
-
line_number: PropTypes.number.isRequired,
|
|
25498
|
-
levies: T['io.flow.common.v0.models.price_with_base'].isRequired,
|
|
25499
|
-
total: T['io.flow.common.v0.models.price_with_base'].isRequired,
|
|
25500
|
-
});
|
|
25501
|
-
|
|
25502
|
-
T['io.flow.order.management.event.v0.models.ready_to_fulfill_details'] = PropTypes.exact({
|
|
25503
|
-
id: PropTypes.string.isRequired,
|
|
25504
|
-
order_number: PropTypes.string.isRequired,
|
|
25505
|
-
order: T['io.flow.experience.v0.models.order'].isRequired,
|
|
25506
|
-
fulfillments: PropTypes.arrayOf(T['io.flow.order.management.v0.models.fulfillment']),
|
|
25507
|
-
|
|
25508
|
-
fulfillment_item_allocation_details: PropTypes.arrayOf(
|
|
25509
|
-
T['io.flow.order.management.event.v0.models.fulfillment_item_allocation_details'],
|
|
25510
|
-
),
|
|
25511
|
-
});
|
|
25512
|
-
|
|
25513
|
-
T['io.flow.order.management.event.v0.models.ready_to_fulfill_v2'] = PropTypes.exact({
|
|
25514
|
-
discriminator: PropTypes.oneOf(['ready_to_fulfill_v2']).isRequired,
|
|
25515
|
-
event_id: PropTypes.string.isRequired,
|
|
25516
|
-
timestamp: PropTypes.string.isRequired,
|
|
25517
|
-
organization: PropTypes.string.isRequired,
|
|
25518
|
-
ready_to_fulfill: T['io.flow.order.management.event.v0.models.ready_to_fulfill_details'].isRequired,
|
|
25519
|
-
});
|
|
25520
|
-
|
|
25521
|
-
T['io.flow.order.management.event.v0.models.ready_to_fulfill'] = PropTypes.exact({
|
|
25522
|
-
discriminator: PropTypes.oneOf(['ready_to_fulfill']).isRequired,
|
|
25523
|
-
event_id: PropTypes.string.isRequired,
|
|
25524
|
-
timestamp: PropTypes.string.isRequired,
|
|
25525
|
-
organization: PropTypes.string.isRequired,
|
|
25526
|
-
order_number: PropTypes.string.isRequired,
|
|
25527
|
-
order: T['io.flow.experience.v0.models.order'].isRequired,
|
|
25528
|
-
fulfillments: PropTypes.arrayOf(T['io.flow.order.management.v0.models.fulfillment']),
|
|
25529
|
-
|
|
25530
|
-
fulfillment_item_allocation_details: PropTypes.arrayOf(
|
|
25531
|
-
T['io.flow.order.management.event.v0.models.fulfillment_item_allocation_details'],
|
|
25532
|
-
),
|
|
25533
|
-
});
|
|
25534
|
-
|
|
25535
|
-
T['io.flow.order.management.event.v0.unions.order_management_event'] = PropTypes.oneOfType([
|
|
25536
|
-
T['io.flow.order.management.event.v0.models.order_placed'],
|
|
25537
|
-
T['io.flow.order.management.event.v0.models.order_placed_v2'],
|
|
25538
|
-
T['io.flow.order.management.event.v0.models.ready_to_fulfill'],
|
|
25539
|
-
T['io.flow.order.management.event.v0.models.ready_to_fulfill_v2'],
|
|
25540
|
-
]);
|
|
25541
|
-
|
|
25542
|
-
T['io.flow.internal.v0.models.ready_to_fulfill'] = PropTypes.exact({
|
|
25543
|
-
discriminator: PropTypes.oneOf(['ready_to_fulfill']).isRequired,
|
|
25544
|
-
event_id: PropTypes.string.isRequired,
|
|
25545
|
-
timestamp: PropTypes.string.isRequired,
|
|
25546
|
-
organization: PropTypes.string.isRequired,
|
|
25547
|
-
order_number: PropTypes.string.isRequired,
|
|
25548
|
-
order: T['io.flow.experience.v0.models.order'].isRequired,
|
|
25549
|
-
fulfillments: PropTypes.arrayOf(T['io.flow.order.management.v0.models.fulfillment']),
|
|
25550
|
-
|
|
25551
|
-
fulfillment_item_allocation_details: PropTypes.arrayOf(
|
|
25552
|
-
T['io.flow.order.management.event.v0.models.fulfillment_item_allocation_details'],
|
|
25553
|
-
),
|
|
25554
|
-
});
|
|
25555
|
-
|
|
25556
25328
|
T['io.flow.export.v0.models.export_localized_item_prices_detail'] = PropTypes.exact({
|
|
25557
25329
|
item: T['io.flow.catalog.v0.models.localized_item_price'].isRequired,
|
|
25558
25330
|
vat: T['io.flow.catalog.v0.models.localized_item_vat'],
|
|
@@ -25582,25 +25354,6 @@ T['io.flow.internal.v0.models.localized_price_book_item_data'] = PropTypes.exact
|
|
|
25582
25354
|
price_end_date: PropTypes.string,
|
|
25583
25355
|
});
|
|
25584
25356
|
|
|
25585
|
-
T['io.flow.internal.v0.models.shipped_item_value'] = PropTypes.exact({
|
|
25586
|
-
item: T['io.flow.common.v0.models.catalog_item_reference'].isRequired,
|
|
25587
|
-
taxes: T['io.flow.common.v0.models.price_with_base'].isRequired,
|
|
25588
|
-
duties: T['io.flow.common.v0.models.price_with_base'].isRequired,
|
|
25589
|
-
total: T['io.flow.common.v0.models.price_with_base'].isRequired,
|
|
25590
|
-
});
|
|
25591
|
-
|
|
25592
|
-
T['io.flow.internal.v0.models.items_shipped'] = PropTypes.exact({
|
|
25593
|
-
discriminator: PropTypes.oneOf(['items_shipped']).isRequired,
|
|
25594
|
-
event_id: PropTypes.string.isRequired,
|
|
25595
|
-
timestamp: PropTypes.string.isRequired,
|
|
25596
|
-
organization: PropTypes.string.isRequired,
|
|
25597
|
-
order_number: PropTypes.string.isRequired,
|
|
25598
|
-
order: T['io.flow.experience.v0.models.order'].isRequired,
|
|
25599
|
-
fulfillments: PropTypes.arrayOf(T['io.flow.order.management.v0.models.fulfillment']).isRequired,
|
|
25600
|
-
flow_tracking_number: PropTypes.string.isRequired,
|
|
25601
|
-
shipped_item_values: PropTypes.arrayOf(T['io.flow.internal.v0.models.shipped_item_value']).isRequired,
|
|
25602
|
-
});
|
|
25603
|
-
|
|
25604
25357
|
T['io.flow.internal.v0.models.authorized_shipping_charge'] = PropTypes.exact({
|
|
25605
25358
|
discriminator: PropTypes.oneOf(['authorized_shipping_charge']).isRequired,
|
|
25606
25359
|
price: T['io.flow.common.v0.models.price_with_base'].isRequired,
|
|
@@ -26146,7 +25899,6 @@ T['io.flow.internal.v0.enums.billing_transaction_type'] = PropTypes.oneOf([
|
|
|
26146
25899
|
'tax_refund',
|
|
26147
25900
|
'duty_refund',
|
|
26148
25901
|
'ge_revenue_share',
|
|
26149
|
-
'tax_duty_delta',
|
|
26150
25902
|
]);
|
|
26151
25903
|
|
|
26152
25904
|
T['io.flow.internal.v0.models.virtual_card_transaction'] = PropTypes.exact({
|
|
@@ -26256,19 +26008,6 @@ T['io.flow.internal.v0.models.tax_remittance_transaction_upserted'] = PropTypes.
|
|
|
26256
26008
|
transaction: T['io.flow.internal.v0.models.tax_remittance_transaction'].isRequired,
|
|
26257
26009
|
});
|
|
26258
26010
|
|
|
26259
|
-
T['io.flow.internal.v0.models.tax_duty_delta_transaction'] = PropTypes.exact({
|
|
26260
|
-
discriminator: PropTypes.oneOf(['tax_duty_delta_transaction']).isRequired,
|
|
26261
|
-
order: T['io.flow.internal.v0.models.billing_order_transaction_order_reference'].isRequired,
|
|
26262
|
-
id: PropTypes.string.isRequired,
|
|
26263
|
-
type: T['io.flow.internal.v0.enums.billing_transaction_type'].isRequired,
|
|
26264
|
-
status: T['io.flow.internal.v0.enums.billing_transaction_status'].isRequired,
|
|
26265
|
-
posted_at: PropTypes.string,
|
|
26266
|
-
value: T['io.flow.common.v0.models.price'].isRequired,
|
|
26267
|
-
description: PropTypes.string.isRequired,
|
|
26268
|
-
statement: T['io.flow.internal.v0.models.billing_statement_reference'],
|
|
26269
|
-
created_at: PropTypes.string.isRequired,
|
|
26270
|
-
});
|
|
26271
|
-
|
|
26272
26011
|
T['io.flow.internal.v0.models.subscription_transaction'] = PropTypes.exact({
|
|
26273
26012
|
discriminator: PropTypes.oneOf(['subscription_transaction']).isRequired,
|
|
26274
26013
|
period: T['io.flow.common.v0.models.datetime_range'].isRequired,
|
|
@@ -26416,6 +26155,7 @@ T['io.flow.internal.v0.models.main_transaction'] = PropTypes.exact({
|
|
|
26416
26155
|
paid_at: PropTypes.string,
|
|
26417
26156
|
posted_at: PropTypes.string,
|
|
26418
26157
|
statement: T['io.flow.internal.v0.models.billing_statement_reference'],
|
|
26158
|
+
channel_statement: T['io.flow.internal.v0.models.billing_statement_reference'],
|
|
26419
26159
|
created_at: PropTypes.string.isRequired,
|
|
26420
26160
|
original_at: PropTypes.string,
|
|
26421
26161
|
});
|
|
@@ -26602,7 +26342,6 @@ T['io.flow.internal.v0.unions.transaction'] = PropTypes.oneOfType([
|
|
|
26602
26342
|
T['io.flow.internal.v0.models.carrier_charge_transaction'],
|
|
26603
26343
|
T['io.flow.internal.v0.models.non_l4l_tax_duty_fx_transaction'],
|
|
26604
26344
|
T['io.flow.internal.v0.models.ge_revenue_share_transaction'],
|
|
26605
|
-
T['io.flow.internal.v0.models.tax_duty_delta_transaction'],
|
|
26606
26345
|
]);
|
|
26607
26346
|
|
|
26608
26347
|
T['io.flow.internal.v0.models.billing_transaction'] = PropTypes.exact({
|
|
@@ -26848,10 +26587,6 @@ T['io.flow.internal.v0.models.fraud_review_authorization_decision_upserted'] = P
|
|
|
26848
26587
|
});
|
|
26849
26588
|
|
|
26850
26589
|
T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
|
|
26851
|
-
T['io.flow.internal.v0.models.adjusted_estimates_upserted'],
|
|
26852
|
-
T['io.flow.internal.v0.models.adjusted_estimates_deleted'],
|
|
26853
|
-
T['io.flow.internal.v0.models.final_estimate_upserted'],
|
|
26854
|
-
T['io.flow.internal.v0.models.final_estimate_deleted'],
|
|
26855
26590
|
T['io.flow.internal.v0.models.adyen_authorization_deleted'],
|
|
26856
26591
|
T['io.flow.internal.v0.models.adyen_authorization_upserted'],
|
|
26857
26592
|
T['io.flow.internal.v0.models.adyen_cancel_deleted'],
|
|
@@ -27019,7 +26754,6 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
|
|
|
27019
26754
|
T['io.flow.internal.v0.models.center_defaults_deleted'],
|
|
27020
26755
|
T['io.flow.internal.v0.models.fulfillment_fallbacks_upserted'],
|
|
27021
26756
|
T['io.flow.internal.v0.models.fulfillment_fallbacks_deleted'],
|
|
27022
|
-
T['io.flow.internal.v0.models.pregenerated_request_event'],
|
|
27023
26757
|
T['io.flow.internal.v0.models.quote_upserted'],
|
|
27024
26758
|
T['io.flow.internal.v0.models.quote_deleted'],
|
|
27025
26759
|
T['io.flow.internal.v0.models.all_items_export'],
|
|
@@ -27028,7 +26762,6 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
|
|
|
27028
26762
|
T['io.flow.internal.v0.models.dutied_items_export'],
|
|
27029
26763
|
T['io.flow.internal.v0.models.harmonization_phrase_suggestion_request_import'],
|
|
27030
26764
|
T['io.flow.internal.v0.models.harmonization_codes_import'],
|
|
27031
|
-
T['io.flow.internal.v0.models.item_classification_created'],
|
|
27032
26765
|
T['io.flow.internal.v0.models.harmonize_fully_request_v2'],
|
|
27033
26766
|
T['io.flow.internal.v0.models.import_completed'],
|
|
27034
26767
|
T['io.flow.internal.v0.models.import_failed'],
|
|
@@ -27052,22 +26785,17 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
|
|
|
27052
26785
|
T['io.flow.internal.v0.models.order_validation_failure_deleted'],
|
|
27053
26786
|
T['io.flow.internal.v0.models.order_validation_upserted'],
|
|
27054
26787
|
T['io.flow.internal.v0.models.order_validation_deleted'],
|
|
26788
|
+
T['io.flow.internal.v0.models.label_creation_job_upserted'],
|
|
26789
|
+
T['io.flow.internal.v0.models.label_creation_job_deleted'],
|
|
27055
26790
|
T['io.flow.internal.v0.models.label_tracking_summary_upserted'],
|
|
27056
26791
|
T['io.flow.internal.v0.models.label_tracking_summary_deleted'],
|
|
27057
26792
|
T['io.flow.internal.v0.models.logistics_capabilities_upserted'],
|
|
27058
26793
|
T['io.flow.internal.v0.models.logistics_capabilities_deleted'],
|
|
27059
26794
|
T['io.flow.internal.v0.models.localized_item_prices_export_request'],
|
|
27060
|
-
T['io.flow.internal.v0.models.optin_prompt_upserted'],
|
|
27061
|
-
T['io.flow.internal.v0.models.optin_prompt_deleted'],
|
|
27062
26795
|
T['io.flow.internal.v0.models.order_combined_shipment_upserted'],
|
|
27063
26796
|
T['io.flow.internal.v0.models.order_combined_shipment_deleted'],
|
|
27064
26797
|
T['io.flow.internal.v0.models.order_fulfillment_deleted'],
|
|
27065
26798
|
T['io.flow.internal.v0.models.order_fulfillment_upserted'],
|
|
27066
|
-
T['io.flow.internal.v0.models.order_placed'],
|
|
27067
|
-
T['io.flow.internal.v0.models.ready_to_fulfill'],
|
|
27068
|
-
T['io.flow.internal.v0.models.fulfillment_cancel'],
|
|
27069
|
-
T['io.flow.internal.v0.models.order_shipped'],
|
|
27070
|
-
T['io.flow.internal.v0.models.items_shipped'],
|
|
27071
26799
|
T['io.flow.internal.v0.models.organization_business_entity_deleted'],
|
|
27072
26800
|
T['io.flow.internal.v0.models.organization_business_entity_upserted'],
|
|
27073
26801
|
T['io.flow.internal.v0.models.organization_status_change_upserted'],
|
|
@@ -27124,8 +26852,6 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
|
|
|
27124
26852
|
T['io.flow.internal.v0.models.ratecard_standard_configuration_deleted'],
|
|
27125
26853
|
T['io.flow.internal.v0.models.ratecard_service_fee_upserted'],
|
|
27126
26854
|
T['io.flow.internal.v0.models.ratecard_service_fee_deleted'],
|
|
27127
|
-
T['io.flow.internal.v0.models.ratecard_lane_aggregate_upserted'],
|
|
27128
|
-
T['io.flow.internal.v0.models.ratecard_lane_aggregate_deleted'],
|
|
27129
26855
|
T['io.flow.internal.v0.models.ratecard_rate_level_upserted'],
|
|
27130
26856
|
T['io.flow.internal.v0.models.ratecard_rate_level_deleted'],
|
|
27131
26857
|
T['io.flow.internal.v0.models.ratecard_rate_level_ratecard_upserted'],
|
|
@@ -27185,6 +26911,8 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
|
|
|
27185
26911
|
T['io.flow.internal.v0.models.shopify_monitoring_order_monitor_event_deleted'],
|
|
27186
26912
|
T['io.flow.internal.v0.models.shopify_order_fulfillments_snapshot_upserted'],
|
|
27187
26913
|
T['io.flow.internal.v0.models.shopify_order_fulfillments_snapshot_deleted'],
|
|
26914
|
+
T['io.flow.internal.v0.models.shopify_merchant_plan_upserted'],
|
|
26915
|
+
T['io.flow.internal.v0.models.shopify_merchant_plan_deleted'],
|
|
27188
26916
|
T['io.flow.internal.v0.models.stripe_authorization_deleted'],
|
|
27189
26917
|
T['io.flow.internal.v0.models.stripe_authorization_upserted'],
|
|
27190
26918
|
T['io.flow.internal.v0.models.stripe_reversal_deleted'],
|
|
@@ -27195,6 +26923,8 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
|
|
|
27195
26923
|
T['io.flow.internal.v0.models.stripe_refund_upserted'],
|
|
27196
26924
|
T['io.flow.internal.v0.models.stripe_dispute_upserted'],
|
|
27197
26925
|
T['io.flow.internal.v0.models.stripe_dispute_deleted'],
|
|
26926
|
+
T['io.flow.internal.v0.models.stripe_connect_report_record_upserted'],
|
|
26927
|
+
T['io.flow.internal.v0.models.stripe_connect_report_record_deleted'],
|
|
27198
26928
|
T['io.flow.internal.v0.models.liability_remittance_plan_upserted'],
|
|
27199
26929
|
T['io.flow.internal.v0.models.liability_remittance_plan_deleted'],
|
|
27200
26930
|
T['io.flow.internal.v0.models.tracking_processing_error_upserted'],
|
|
@@ -27374,10 +27104,6 @@ T['io.flow.internal.v0.enums.duty_exempt_item_types'] = PropTypes.oneOf(['gift_c
|
|
|
27374
27104
|
T['io.flow.internal.v0.enums.duty_transaction_type'] = PropTypes.oneOf(['adjustment', 'reversal', 'duty']);
|
|
27375
27105
|
|
|
27376
27106
|
T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
|
|
27377
|
-
'adjusted_estimates_upserted',
|
|
27378
|
-
'adjusted_estimates_deleted',
|
|
27379
|
-
'final_estimate_upserted',
|
|
27380
|
-
'final_estimate_deleted',
|
|
27381
27107
|
'adyen_authorization_deleted',
|
|
27382
27108
|
'adyen_authorization_upserted',
|
|
27383
27109
|
'adyen_cancel_deleted',
|
|
@@ -27545,7 +27271,6 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
|
|
|
27545
27271
|
'center_defaults_deleted',
|
|
27546
27272
|
'fulfillment_fallbacks_upserted',
|
|
27547
27273
|
'fulfillment_fallbacks_deleted',
|
|
27548
|
-
'pregenerated_request_event',
|
|
27549
27274
|
'quote_upserted',
|
|
27550
27275
|
'quote_deleted',
|
|
27551
27276
|
'all_items_export',
|
|
@@ -27554,7 +27279,6 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
|
|
|
27554
27279
|
'dutied_items_export',
|
|
27555
27280
|
'harmonization_phrase_suggestion_request_import',
|
|
27556
27281
|
'harmonization_codes_import',
|
|
27557
|
-
'item_classification_created',
|
|
27558
27282
|
'harmonize_fully_request_v2',
|
|
27559
27283
|
'import_completed',
|
|
27560
27284
|
'import_failed',
|
|
@@ -27578,22 +27302,17 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
|
|
|
27578
27302
|
'order_validation_failure_deleted',
|
|
27579
27303
|
'order_validation_upserted',
|
|
27580
27304
|
'order_validation_deleted',
|
|
27305
|
+
'label_creation_job_upserted',
|
|
27306
|
+
'label_creation_job_deleted',
|
|
27581
27307
|
'label_tracking_summary_upserted',
|
|
27582
27308
|
'label_tracking_summary_deleted',
|
|
27583
27309
|
'logistics_capabilities_upserted',
|
|
27584
27310
|
'logistics_capabilities_deleted',
|
|
27585
27311
|
'localized_item_prices_export_request',
|
|
27586
|
-
'optin_prompt_upserted',
|
|
27587
|
-
'optin_prompt_deleted',
|
|
27588
27312
|
'order_combined_shipment_upserted',
|
|
27589
27313
|
'order_combined_shipment_deleted',
|
|
27590
27314
|
'order_fulfillment_deleted',
|
|
27591
27315
|
'order_fulfillment_upserted',
|
|
27592
|
-
'order_placed',
|
|
27593
|
-
'ready_to_fulfill',
|
|
27594
|
-
'fulfillment_cancel',
|
|
27595
|
-
'order_shipped',
|
|
27596
|
-
'items_shipped',
|
|
27597
27316
|
'organization_business_entity_deleted',
|
|
27598
27317
|
'organization_business_entity_upserted',
|
|
27599
27318
|
'organization_status_change_upserted',
|
|
@@ -27650,8 +27369,6 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
|
|
|
27650
27369
|
'ratecard_standard_configuration_deleted',
|
|
27651
27370
|
'ratecard_service_fee_upserted',
|
|
27652
27371
|
'ratecard_service_fee_deleted',
|
|
27653
|
-
'ratecard_lane_aggregate_upserted',
|
|
27654
|
-
'ratecard_lane_aggregate_deleted',
|
|
27655
27372
|
'ratecard_rate_level_upserted',
|
|
27656
27373
|
'ratecard_rate_level_deleted',
|
|
27657
27374
|
'ratecard_rate_level_ratecard_upserted',
|
|
@@ -27711,6 +27428,8 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
|
|
|
27711
27428
|
'shopify_monitoring_order_monitor_event_deleted',
|
|
27712
27429
|
'shopify_order_fulfillments_snapshot_upserted',
|
|
27713
27430
|
'shopify_order_fulfillments_snapshot_deleted',
|
|
27431
|
+
'shopify_merchant_plan_upserted',
|
|
27432
|
+
'shopify_merchant_plan_deleted',
|
|
27714
27433
|
'stripe_authorization_deleted',
|
|
27715
27434
|
'stripe_authorization_upserted',
|
|
27716
27435
|
'stripe_reversal_deleted',
|
|
@@ -27721,6 +27440,8 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
|
|
|
27721
27440
|
'stripe_refund_upserted',
|
|
27722
27441
|
'stripe_dispute_upserted',
|
|
27723
27442
|
'stripe_dispute_deleted',
|
|
27443
|
+
'stripe_connect_report_record_upserted',
|
|
27444
|
+
'stripe_connect_report_record_deleted',
|
|
27724
27445
|
'liability_remittance_plan_upserted',
|
|
27725
27446
|
'liability_remittance_plan_deleted',
|
|
27726
27447
|
'tracking_processing_error_upserted',
|
|
@@ -28021,11 +27742,6 @@ T['io.flow.internal.v0.models.checkout_configuration_reference'] = PropTypes.exa
|
|
|
28021
27742
|
id: PropTypes.string.isRequired,
|
|
28022
27743
|
});
|
|
28023
27744
|
|
|
28024
|
-
T['io.flow.internal.v0.models.checkout_source_order_form'] = PropTypes.exact({
|
|
28025
|
-
source_order_number: PropTypes.string.isRequired,
|
|
28026
|
-
feature_q: PropTypes.string,
|
|
28027
|
-
});
|
|
28028
|
-
|
|
28029
27745
|
T['io.flow.internal.v0.models.cipher'] = PropTypes.exact({
|
|
28030
27746
|
id: PropTypes.string.isRequired,
|
|
28031
27747
|
attributes: PropTypes.objectOf(PropTypes.string).isRequired,
|
|
@@ -28396,6 +28112,13 @@ T['io.flow.internal.v0.models.label_generation_settings_form'] = PropTypes.exact
|
|
|
28396
28112
|
commercial_invoice_only_query: PropTypes.string,
|
|
28397
28113
|
});
|
|
28398
28114
|
|
|
28115
|
+
T['io.flow.internal.v0.models.labels_prediction'] = PropTypes.exact({
|
|
28116
|
+
main_material: PropTypes.string.isRequired,
|
|
28117
|
+
gender: PropTypes.string.isRequired,
|
|
28118
|
+
construction: PropTypes.string.isRequired,
|
|
28119
|
+
product_type: PropTypes.string.isRequired,
|
|
28120
|
+
});
|
|
28121
|
+
|
|
28399
28122
|
T['io.flow.internal.v0.models.landed_cost_item'] = PropTypes.exact({
|
|
28400
28123
|
number: PropTypes.string.isRequired,
|
|
28401
28124
|
origin: PropTypes.string.isRequired,
|
|
@@ -28580,6 +28303,13 @@ T['io.flow.internal.v0.models.ratecard_standard_configuration_form'] = PropTypes
|
|
|
28580
28303
|
margin: PropTypes.number.isRequired,
|
|
28581
28304
|
});
|
|
28582
28305
|
|
|
28306
|
+
T['io.flow.internal.v0.models.report_record_error'] = PropTypes.exact({
|
|
28307
|
+
id: PropTypes.string.isRequired,
|
|
28308
|
+
file_id: PropTypes.string.isRequired,
|
|
28309
|
+
line_number: PropTypes.number.isRequired,
|
|
28310
|
+
failure_reason: PropTypes.string.isRequired,
|
|
28311
|
+
});
|
|
28312
|
+
|
|
28583
28313
|
T['io.flow.internal.v0.models.report_summary'] = PropTypes.exact({
|
|
28584
28314
|
task_id: PropTypes.string.isRequired,
|
|
28585
28315
|
});
|
|
@@ -28608,6 +28338,7 @@ T['io.flow.internal.v0.models.restriction_product_request_form'] = PropTypes.exa
|
|
|
28608
28338
|
user_ids: PropTypes.arrayOf(PropTypes.string),
|
|
28609
28339
|
categories: PropTypes.arrayOf(PropTypes.string),
|
|
28610
28340
|
product_name_query: PropTypes.string,
|
|
28341
|
+
hs6: PropTypes.string,
|
|
28611
28342
|
product_id: PropTypes.string,
|
|
28612
28343
|
});
|
|
28613
28344
|
|
|
@@ -29007,6 +28738,7 @@ T['io.flow.payment.v0.models.reversal_put_form'] = PropTypes.exact({
|
|
|
29007
28738
|
});
|
|
29008
28739
|
|
|
29009
28740
|
T['io.flow.stripe.v0.enums.event_type'] = PropTypes.oneOf([
|
|
28741
|
+
'capability.updated',
|
|
29010
28742
|
'charge.captured',
|
|
29011
28743
|
'charge.failed',
|
|
29012
28744
|
'charge.pending',
|
|
@@ -29231,7 +28963,14 @@ T['io.flow.brickftp.v0.models.file_upload_metadata'] = PropTypes.exact({
|
|
|
29231
28963
|
upload_uri: PropTypes.string.isRequired,
|
|
29232
28964
|
});
|
|
29233
28965
|
|
|
29234
|
-
T['io.flow.units.v0.enums.unit_of_volume'] = PropTypes.oneOf([
|
|
28966
|
+
T['io.flow.units.v0.enums.unit_of_volume'] = PropTypes.oneOf([
|
|
28967
|
+
'cubic_inch',
|
|
28968
|
+
'cubic_foot',
|
|
28969
|
+
'cubic_millimeter',
|
|
28970
|
+
'cubic_centimeter',
|
|
28971
|
+
'cubic_meter',
|
|
28972
|
+
]);
|
|
28973
|
+
|
|
29235
28974
|
T['io.flow.shopify.markets.internal.v0.enums.any_dangerous_goods'] = PropTypes.oneOf(['yes', 'no', 'i_dont_know']);
|
|
29236
28975
|
T['io.flow.shopify.markets.internal.v0.enums.api_call_reference_id'] = PropTypes.oneOf(['duty_rates_data_event', 'integration_test', 'unit_test']);
|
|
29237
28976
|
|
|
@@ -29502,11 +29241,6 @@ T['io.flow.shopify.external.v0.models.count'] = PropTypes.exact({
|
|
|
29502
29241
|
count: PropTypes.number.isRequired,
|
|
29503
29242
|
});
|
|
29504
29243
|
|
|
29505
|
-
T['io.flow.shopify.external.v0.models.graphql_metaobject'] = PropTypes.exact({
|
|
29506
|
-
id: PropTypes.string.isRequired,
|
|
29507
|
-
displayName: PropTypes.string.isRequired,
|
|
29508
|
-
});
|
|
29509
|
-
|
|
29510
29244
|
T['io.flow.shopify.external.v0.models.shopify_customer_delete'] = PropTypes.exact({
|
|
29511
29245
|
id: PropTypes.number.isRequired,
|
|
29512
29246
|
});
|
|
@@ -29646,6 +29380,10 @@ T['io.flow.common.v0.enums.schedule_exception_status'] = PropTypes.oneOf(['Open'
|
|
|
29646
29380
|
T['io.flow.common.v0.enums.sort_direction'] = PropTypes.oneOf(['ascending', 'descending']);
|
|
29647
29381
|
T['io.flow.common.v0.enums.value_added_service'] = PropTypes.oneOf(['Hazardous Material']);
|
|
29648
29382
|
|
|
29383
|
+
T['io.flow.common.v0.models.checkout_reference'] = PropTypes.exact({
|
|
29384
|
+
id: PropTypes.string.isRequired,
|
|
29385
|
+
});
|
|
29386
|
+
|
|
29649
29387
|
T['io.flow.common.v0.models.input_form'] = PropTypes.exact({
|
|
29650
29388
|
values: PropTypes.objectOf(PropTypes.string),
|
|
29651
29389
|
});
|
|
@@ -29764,6 +29502,10 @@ T['io.flow.experience.v0.models.order_number_generator_generated_number'] = Prop
|
|
|
29764
29502
|
number: PropTypes.string.isRequired,
|
|
29765
29503
|
});
|
|
29766
29504
|
|
|
29505
|
+
T['io.flow.experience.v0.models.order_number_reference'] = PropTypes.exact({
|
|
29506
|
+
number: PropTypes.string.isRequired,
|
|
29507
|
+
});
|
|
29508
|
+
|
|
29767
29509
|
T['io.flow.experience.v0.models.order_service_change_form'] = PropTypes.exact({
|
|
29768
29510
|
from_service_id: PropTypes.string.isRequired,
|
|
29769
29511
|
to_service_id: PropTypes.string.isRequired,
|
|
@@ -30169,9 +29911,6 @@ export const addressConfigurationProvinceSetting = T['io.flow.internal.v0.models
|
|
|
30169
29911
|
export const addressConfigurationSetting = T['io.flow.internal.v0.models.address_configuration_setting'];
|
|
30170
29912
|
export const addressConfigurationSettingForm = T['io.flow.internal.v0.models.address_configuration_setting_form'];
|
|
30171
29913
|
export const addressConfigurationSettingProvinceCode = T['io.flow.internal.v0.enums.address_configuration_setting_province_code'];
|
|
30172
|
-
export const adjustedEstimates = T['io.flow.internal.v0.models.adjusted_estimates'];
|
|
30173
|
-
export const adjustedEstimatesDeleted = T['io.flow.internal.v0.models.adjusted_estimates_deleted'];
|
|
30174
|
-
export const adjustedEstimatesUpserted = T['io.flow.internal.v0.models.adjusted_estimates_upserted'];
|
|
30175
29914
|
export const adjustmentAmount = T['io.flow.internal.v0.unions.adjustment_amount'];
|
|
30176
29915
|
export const adjustmentAmountFixed = T['io.flow.internal.v0.models.adjustment_amount_fixed'];
|
|
30177
29916
|
export const adjustmentAmountPercentage = T['io.flow.internal.v0.models.adjustment_amount_percentage'];
|
|
@@ -30324,16 +30063,6 @@ export const booleanFeatureRuleForm = T['io.flow.internal.v0.models.boolean_feat
|
|
|
30324
30063
|
export const booleanFeatureValue = T['io.flow.internal.v0.models.boolean_feature_value'];
|
|
30325
30064
|
export const brickWebhookEvent = T['io.flow.internal.v0.models.brick_webhook_event'];
|
|
30326
30065
|
export const brickWebhookEventResponse = T['io.flow.internal.v0.models.brick_webhook_event_response'];
|
|
30327
|
-
export const browserBundle = T['io.flow.internal.v0.models.browser_bundle'];
|
|
30328
|
-
export const browserBundleCountryPickerForm = T['io.flow.internal.v0.models.browser_bundle_country_picker_form'];
|
|
30329
|
-
export const browserBundleError = T['io.flow.internal.v0.models.browser_bundle_error'];
|
|
30330
|
-
export const browserBundleErrorCode = T['io.flow.internal.v0.enums.browser_bundle_error_code'];
|
|
30331
|
-
export const browserBundleFeatureForm = T['io.flow.internal.v0.models.browser_bundle_feature_form'];
|
|
30332
|
-
export const browserBundleForm = T['io.flow.internal.v0.models.browser_bundle_form'];
|
|
30333
|
-
export const browserBundleOptinForm = T['io.flow.internal.v0.models.browser_bundle_optin_form'];
|
|
30334
|
-
export const browserBundlePaymentMethod = T['io.flow.internal.v0.models.browser_bundle_payment_method'];
|
|
30335
|
-
export const browserBundlePaymentMethodForm = T['io.flow.internal.v0.models.browser_bundle_payment_method_form'];
|
|
30336
|
-
export const browserBundlePaymentMethods = T['io.flow.internal.v0.models.browser_bundle_payment_methods'];
|
|
30337
30066
|
export const bulkClassificationAction = T['io.flow.internal.v0.models.bulk_classification_action'];
|
|
30338
30067
|
export const bulkDutyUpdateValidationError = T['io.flow.internal.v0.models.bulk_duty_update_validation_error'];
|
|
30339
30068
|
export const calculatedTaxAmount = T['io.flow.internal.v0.models.calculated_tax_amount'];
|
|
@@ -30469,8 +30198,6 @@ export const checkoutBehaviorCustomerInfo = T['io.flow.internal.v0.models.checko
|
|
|
30469
30198
|
export const checkoutBehaviorCustomerInfoEmail = T['io.flow.internal.v0.models.checkout_behavior_customer_info_email'];
|
|
30470
30199
|
export const checkoutBehaviorShippingAddress = T['io.flow.internal.v0.models.checkout_behavior_shipping_address'];
|
|
30471
30200
|
export const checkoutBehaviorShippingMethod = T['io.flow.internal.v0.models.checkout_behavior_shipping_method'];
|
|
30472
|
-
export const checkoutBundle = T['io.flow.internal.v0.models.checkout_bundle'];
|
|
30473
|
-
export const checkoutBundleMetadata = T['io.flow.internal.v0.models.checkout_bundle_metadata'];
|
|
30474
30201
|
export const checkoutConfiguration = T['io.flow.internal.v0.models.checkout_configuration'];
|
|
30475
30202
|
export const checkoutConfigurationDeleted = T['io.flow.internal.v0.models.checkout_configuration_deleted'];
|
|
30476
30203
|
export const checkoutConfigurationForm = T['io.flow.internal.v0.models.checkout_configuration_form'];
|
|
@@ -30481,27 +30208,15 @@ export const checkoutContentDetails = T['io.flow.internal.v0.models.checkout_con
|
|
|
30481
30208
|
export const checkoutContentSummary = T['io.flow.internal.v0.models.checkout_content_summary'];
|
|
30482
30209
|
export const checkoutError = T['io.flow.internal.v0.models.checkout_error'];
|
|
30483
30210
|
export const checkoutErrorCode = T['io.flow.internal.v0.enums.checkout_error_code'];
|
|
30484
|
-
export const checkoutFinalizeOrderForm = T['io.flow.internal.v0.models.checkout_finalize_order_form'];
|
|
30485
|
-
export const checkoutForm = T['io.flow.internal.v0.unions.checkout_form'];
|
|
30486
30211
|
export const checkoutMarketingContent = T['io.flow.internal.v0.models.checkout_marketing_content'];
|
|
30487
|
-
export const checkoutOrderForm = T['io.flow.internal.v0.models.checkout_order_form'];
|
|
30488
|
-
export const checkoutOrderNumberForm = T['io.flow.internal.v0.models.checkout_order_number_form'];
|
|
30489
30212
|
export const checkoutPayment = T['io.flow.internal.v0.models.checkout_payment'];
|
|
30490
30213
|
export const checkoutPaymentContent = T['io.flow.internal.v0.models.checkout_payment_content'];
|
|
30491
30214
|
export const checkoutPlatformData = T['io.flow.internal.v0.models.checkout_platform_data'];
|
|
30492
30215
|
export const checkoutPromptBehavior = T['io.flow.internal.v0.enums.checkout_prompt_behavior'];
|
|
30493
30216
|
export const checkoutRedirect = T['io.flow.internal.v0.models.checkout_redirect'];
|
|
30494
30217
|
export const checkoutRedirectMethod = T['io.flow.internal.v0.enums.checkout_redirect_method'];
|
|
30495
|
-
export const checkoutReferenceForm = T['io.flow.internal.v0.models.checkout_reference_form'];
|
|
30496
30218
|
export const checkoutSettings = T['io.flow.internal.v0.models.checkout_settings'];
|
|
30497
30219
|
export const checkoutShippingMethodPromptBehavior = T['io.flow.internal.v0.enums.checkout_shipping_method_prompt_behavior'];
|
|
30498
|
-
export const checkoutSourceOrderForm = T['io.flow.internal.v0.models.checkout_source_order_form'];
|
|
30499
|
-
export const checkoutSubmission = T['io.flow.internal.v0.models.checkout_submission'];
|
|
30500
|
-
export const checkoutSubmissionForm = T['io.flow.internal.v0.models.checkout_submission_form'];
|
|
30501
|
-
export const checkoutSubmitOrderBundle = T['io.flow.internal.v0.models.checkout_submit_order_bundle'];
|
|
30502
|
-
export const checkoutSubmitOrderBundles = T['io.flow.internal.v0.unions.checkout_submit_order_bundles'];
|
|
30503
|
-
export const checkoutSubmitOrderForm = T['io.flow.internal.v0.models.checkout_submit_order_form'];
|
|
30504
|
-
export const checkoutSubmitOrderForms = T['io.flow.internal.v0.unions.checkout_submit_order_forms'];
|
|
30505
30220
|
export const checkoutUrl = T['io.flow.internal.v0.models.checkout_url'];
|
|
30506
30221
|
export const checkoutUrlType = T['io.flow.internal.v0.enums.checkout_url_type'];
|
|
30507
30222
|
export const cipher = T['io.flow.internal.v0.models.cipher'];
|
|
@@ -30728,7 +30443,6 @@ export const eventType = T['io.flow.internal.v0.enums.event_type'];
|
|
|
30728
30443
|
export const exclusionRuleDeleted = T['io.flow.internal.v0.models.exclusion_rule_deleted'];
|
|
30729
30444
|
export const exclusionRuleExportRequest = T['io.flow.internal.v0.models.exclusion_rule_export_request'];
|
|
30730
30445
|
export const exclusionRuleUpserted = T['io.flow.internal.v0.models.exclusion_rule_upserted'];
|
|
30731
|
-
export const expectedOrderSummary = T['io.flow.internal.v0.models.expected_order_summary'];
|
|
30732
30446
|
export const experienceExportRequest = T['io.flow.internal.v0.models.experience_export_request'];
|
|
30733
30447
|
export const experienceImportRequest = T['io.flow.internal.v0.models.experience_import_request'];
|
|
30734
30448
|
export const experienceImportType = T['io.flow.internal.v0.enums.experience_import_type'];
|
|
@@ -30781,9 +30495,6 @@ export const fedexCrossborder = T['io.flow.internal.v0.models.fedex_crossborder'
|
|
|
30781
30495
|
export const fee = T['io.flow.internal.v0.models.fee'];
|
|
30782
30496
|
export const fees = T['io.flow.internal.v0.models.fees'];
|
|
30783
30497
|
export const feesSource = T['io.flow.internal.v0.enums.fees_source'];
|
|
30784
|
-
export const finalEstimate = T['io.flow.internal.v0.models.final_estimate'];
|
|
30785
|
-
export const finalEstimateDeleted = T['io.flow.internal.v0.models.final_estimate_deleted'];
|
|
30786
|
-
export const finalEstimateUpserted = T['io.flow.internal.v0.models.final_estimate_upserted'];
|
|
30787
30498
|
export const financeBankAccount = T['io.flow.internal.v0.models.finance_bank_account'];
|
|
30788
30499
|
export const financeBankAccountOwner = T['io.flow.internal.v0.models.finance_bank_account_owner'];
|
|
30789
30500
|
export const financeBankPayment = T['io.flow.internal.v0.models.finance_bank_payment'];
|
|
@@ -30859,13 +30570,11 @@ export const fuelSurchargeServiceFeePutForm = T['io.flow.internal.v0.unions.fuel
|
|
|
30859
30570
|
export const fulfillment = T['io.flow.internal.v0.models.fulfillment'];
|
|
30860
30571
|
export const fulfillmentActionForm = T['io.flow.internal.v0.models.fulfillment_action_form'];
|
|
30861
30572
|
export const fulfillmentBusiness = T['io.flow.internal.v0.models.fulfillment_business'];
|
|
30862
|
-
export const fulfillmentCancel = T['io.flow.internal.v0.models.fulfillment_cancel'];
|
|
30863
30573
|
export const fulfillmentCarrier = T['io.flow.internal.v0.models.fulfillment_carrier'];
|
|
30864
30574
|
export const fulfillmentDeleted = T['io.flow.internal.v0.models.fulfillment_deleted'];
|
|
30865
30575
|
export const fulfillmentFallbacks = T['io.flow.internal.v0.models.fulfillment_fallbacks'];
|
|
30866
30576
|
export const fulfillmentFallbacksDeleted = T['io.flow.internal.v0.models.fulfillment_fallbacks_deleted'];
|
|
30867
30577
|
export const fulfillmentFallbacksUpserted = T['io.flow.internal.v0.models.fulfillment_fallbacks_upserted'];
|
|
30868
|
-
export const fulfillmentInternalExperienceReference = T['io.flow.internal.v0.models.fulfillment_internal_experience_reference'];
|
|
30869
30578
|
export const fulfillmentOrigin = T['io.flow.internal.v0.models.fulfillment_origin'];
|
|
30870
30579
|
export const fulfillmentProof = T['io.flow.internal.v0.unions.fulfillment_proof'];
|
|
30871
30580
|
export const fulfillmentProofExternalFulfillmentProofReference = T['io.flow.internal.v0.models.fulfillment_proof_external_fulfillment_proof_reference'];
|
|
@@ -30873,7 +30582,6 @@ export const fulfillmentProofLabelTrackingReference = T['io.flow.internal.v0.mod
|
|
|
30873
30582
|
export const fulfillmentProofOrderCombinedShipmentReference = T['io.flow.internal.v0.models.fulfillment_proof_order_combined_shipment_reference'];
|
|
30874
30583
|
export const fulfillmentProofShippingNotificationReference = T['io.flow.internal.v0.models.fulfillment_proof_shipping_notification_reference'];
|
|
30875
30584
|
export const fulfillmentReference = T['io.flow.internal.v0.models.fulfillment_reference'];
|
|
30876
|
-
export const fulfillmentShipmentTracking = T['io.flow.internal.v0.models.fulfillment_shipment_tracking'];
|
|
30877
30585
|
export const fulfillmentShopperBreakdown = T['io.flow.internal.v0.models.fulfillment_shopper_breakdown'];
|
|
30878
30586
|
export const fulfillmentSnapshot = T['io.flow.internal.v0.models.fulfillment_snapshot'];
|
|
30879
30587
|
export const fulfillmentSubsidyBreakdown = T['io.flow.internal.v0.models.fulfillment_subsidy_breakdown'];
|
|
@@ -30946,6 +30654,7 @@ export const internalFiservAuthorizationDetails = T['io.flow.internal.v0.models.
|
|
|
30946
30654
|
export const internalHarmonizationStatistic = T['io.flow.internal.v0.unions.internal_harmonization_statistic'];
|
|
30947
30655
|
export const internalItemForm = T['io.flow.internal.v0.models.internal_item_form'];
|
|
30948
30656
|
export const internalOrder = T['io.flow.internal.v0.models.internal_order'];
|
|
30657
|
+
export const internalPaymentEntityType = T['io.flow.internal.v0.enums.internal_payment_entity_type'];
|
|
30949
30658
|
export const internalPaymentRequest = T['io.flow.internal.v0.models.internal_payment_request'];
|
|
30950
30659
|
export const internalPaymentRequestVerification = T['io.flow.internal.v0.models.internal_payment_request_verification'];
|
|
30951
30660
|
export const internalPaypalAuthorizationDetails = T['io.flow.internal.v0.models.internal_paypal_authorization_details'];
|
|
@@ -30953,7 +30662,6 @@ export const internalRefundForm = T['io.flow.internal.v0.unions.internal_refund_
|
|
|
30953
30662
|
export const internalStripeAuthorizationDetails = T['io.flow.internal.v0.models.internal_stripe_authorization_details'];
|
|
30954
30663
|
export const internalTransactionDetails = T['io.flow.internal.v0.unions.internal_transaction_details'];
|
|
30955
30664
|
export const internalTransactionDetailsCard = T['io.flow.internal.v0.models.internal_transaction_details_card'];
|
|
30956
|
-
export const invalidCheckoutData = T['io.flow.internal.v0.models.invalid_checkout_data'];
|
|
30957
30665
|
export const invariant = T['io.flow.internal.v0.models.invariant'];
|
|
30958
30666
|
export const inventoryItemWrapper = T['io.flow.internal.v0.models.inventory_item_wrapper'];
|
|
30959
30667
|
export const invoice = T['io.flow.internal.v0.models.invoice'];
|
|
@@ -30966,7 +30674,6 @@ export const issuerDeleted = T['io.flow.internal.v0.models.issuer_deleted'];
|
|
|
30966
30674
|
export const issuerUpserted = T['io.flow.internal.v0.models.issuer_upserted'];
|
|
30967
30675
|
export const itemClassification = T['io.flow.internal.v0.models.item_classification'];
|
|
30968
30676
|
export const itemClassificationAction = T['io.flow.internal.v0.enums.item_classification_action'];
|
|
30969
|
-
export const itemClassificationCreated = T['io.flow.internal.v0.models.item_classification_created'];
|
|
30970
30677
|
export const itemClassificationForm = T['io.flow.internal.v0.models.item_classification_form'];
|
|
30971
30678
|
export const itemClassificationStatus = T['io.flow.internal.v0.enums.item_classification_status'];
|
|
30972
30679
|
export const itemClassificationSummary = T['io.flow.internal.v0.models.item_classification_summary'];
|
|
@@ -30996,7 +30703,6 @@ export const itemSalesMarginVersion = T['io.flow.internal.v0.models.item_sales_m
|
|
|
30996
30703
|
export const itemSummary = T['io.flow.internal.v0.models.item_summary'];
|
|
30997
30704
|
export const itemType = T['io.flow.internal.v0.enums.item_type'];
|
|
30998
30705
|
export const itemValuesForm = T['io.flow.internal.v0.models.item_values_form'];
|
|
30999
|
-
export const itemsShipped = T['io.flow.internal.v0.models.items_shipped'];
|
|
31000
30706
|
export const jeanDemoItem = T['io.flow.internal.v0.models.jean_demo_item'];
|
|
31001
30707
|
export const key = T['io.flow.internal.v0.models.key'];
|
|
31002
30708
|
export const keyReference = T['io.flow.internal.v0.models.key_reference'];
|
|
@@ -31012,7 +30718,9 @@ export const labelBillingStrategy = T['io.flow.internal.v0.enums.label_billing_s
|
|
|
31012
30718
|
export const labelCancellationError = T['io.flow.internal.v0.models.label_cancellation_error'];
|
|
31013
30719
|
export const labelCancellationErrorCode = T['io.flow.internal.v0.enums.label_cancellation_error_code'];
|
|
31014
30720
|
export const labelCreationJob = T['io.flow.internal.v0.models.label_creation_job'];
|
|
30721
|
+
export const labelCreationJobDeleted = T['io.flow.internal.v0.models.label_creation_job_deleted'];
|
|
31015
30722
|
export const labelCreationJobSummary = T['io.flow.internal.v0.models.label_creation_job_summary'];
|
|
30723
|
+
export const labelCreationJobUpserted = T['io.flow.internal.v0.models.label_creation_job_upserted'];
|
|
31016
30724
|
export const labelCreationRequestForm = T['io.flow.internal.v0.models.label_creation_request_form'];
|
|
31017
30725
|
export const labelCreationStatus = T['io.flow.internal.v0.enums.label_creation_status'];
|
|
31018
30726
|
export const labelDestination = T['io.flow.internal.v0.models.label_destination'];
|
|
@@ -31120,6 +30828,9 @@ export const merchantHubOverride = T['io.flow.internal.v0.models.merchant_hub_ov
|
|
|
31120
30828
|
export const merchantHubOverrideForm = T['io.flow.internal.v0.models.merchant_hub_override_form'];
|
|
31121
30829
|
export const merchantOfRecordEntitySettings = T['io.flow.internal.v0.models.merchant_of_record_entity_settings'];
|
|
31122
30830
|
export const merchantOfRecordEntitySettingsForm = T['io.flow.internal.v0.models.merchant_of_record_entity_settings_form'];
|
|
30831
|
+
export const merchantOverride = T['io.flow.internal.v0.models.merchant_override'];
|
|
30832
|
+
export const merchantOverrideDecisionForm = T['io.flow.internal.v0.models.merchant_override_decision_form'];
|
|
30833
|
+
export const merchantOverrideStatus = T['io.flow.internal.v0.enums.merchant_override_status'];
|
|
31123
30834
|
export const merchantSearchResult = T['io.flow.internal.v0.models.merchant_search_result'];
|
|
31124
30835
|
export const merchantSubsidies = T['io.flow.internal.v0.models.merchant_subsidies'];
|
|
31125
30836
|
export const merchantSummary = T['io.flow.internal.v0.models.merchant_summary'];
|
|
@@ -31159,10 +30870,8 @@ export const optinPrompt = T['io.flow.internal.v0.models.optin_prompt'];
|
|
|
31159
30870
|
export const optinPromptCheckoutDisplay = T['io.flow.internal.v0.models.optin_prompt_checkout_display'];
|
|
31160
30871
|
export const optinPromptCopy = T['io.flow.internal.v0.models.optin_prompt_copy'];
|
|
31161
30872
|
export const optinPromptCopyForm = T['io.flow.internal.v0.models.optin_prompt_copy_form'];
|
|
31162
|
-
export const optinPromptDeleted = T['io.flow.internal.v0.models.optin_prompt_deleted'];
|
|
31163
30873
|
export const optinPromptDisplay = T['io.flow.internal.v0.unions.optin_prompt_display'];
|
|
31164
30874
|
export const optinPromptForm = T['io.flow.internal.v0.models.optin_prompt_form'];
|
|
31165
|
-
export const optinPromptUpserted = T['io.flow.internal.v0.models.optin_prompt_upserted'];
|
|
31166
30875
|
export const orderAction = T['io.flow.internal.v0.enums.order_action'];
|
|
31167
30876
|
export const orderActionForm = T['io.flow.internal.v0.unions.order_action_form'];
|
|
31168
30877
|
export const orderActionability = T['io.flow.internal.v0.models.order_actionability'];
|
|
@@ -31191,9 +30900,7 @@ export const orderFulfillmentUpserted = T['io.flow.internal.v0.models.order_fulf
|
|
|
31191
30900
|
export const orderLifecycleEvent = T['io.flow.internal.v0.enums.order_lifecycle_event'];
|
|
31192
30901
|
export const orderNote = T['io.flow.internal.v0.models.order_note'];
|
|
31193
30902
|
export const orderNoteForm = T['io.flow.internal.v0.models.order_note_form'];
|
|
31194
|
-
export const orderParameters = T['io.flow.internal.v0.models.order_parameters'];
|
|
31195
30903
|
export const orderPaymentAuthorization = T['io.flow.internal.v0.models.order_payment_authorization'];
|
|
31196
|
-
export const orderPlaced = T['io.flow.internal.v0.models.order_placed'];
|
|
31197
30904
|
export const orderRatesDataV3 = T['io.flow.internal.v0.models.order_rates_data_v3'];
|
|
31198
30905
|
export const orderRatesPublishedV3 = T['io.flow.internal.v0.models.order_rates_published_v3'];
|
|
31199
30906
|
export const orderReference = T['io.flow.internal.v0.models.order_reference'];
|
|
@@ -31202,7 +30909,6 @@ export const orderRevenueRegionDataPoint = T['io.flow.internal.v0.models.order_r
|
|
|
31202
30909
|
export const orderRevenueTimelineChart = T['io.flow.internal.v0.models.order_revenue_timeline_chart'];
|
|
31203
30910
|
export const orderRevenueTimelineDataPoint = T['io.flow.internal.v0.models.order_revenue_timeline_data_point'];
|
|
31204
30911
|
export const orderServiceChangeCsvForm = T['io.flow.internal.v0.models.order_service_change_csv_form'];
|
|
31205
|
-
export const orderShipped = T['io.flow.internal.v0.models.order_shipped'];
|
|
31206
30912
|
export const orderSubmissionForm = T['io.flow.internal.v0.models.order_submission_form'];
|
|
31207
30913
|
export const orderSummary = T['io.flow.internal.v0.models.order_summary'];
|
|
31208
30914
|
export const orderTaxAndDutyInclusivitySetting = T['io.flow.internal.v0.models.order_tax_and_duty_inclusivity_setting'];
|
|
@@ -31376,8 +31082,6 @@ export const platformFeePercentage = T['io.flow.internal.v0.models.platform_fee_
|
|
|
31376
31082
|
export const platformFeePercentageTier = T['io.flow.internal.v0.models.platform_fee_percentage_tier'];
|
|
31377
31083
|
export const prediction = T['io.flow.internal.v0.models.prediction'];
|
|
31378
31084
|
export const preferredBillingSchedule = T['io.flow.internal.v0.enums.preferred_billing_schedule'];
|
|
31379
|
-
export const pregeneratedQuote = T['io.flow.internal.v0.models.pregenerated_quote'];
|
|
31380
|
-
export const pregeneratedRequestEvent = T['io.flow.internal.v0.models.pregenerated_request_event'];
|
|
31381
31085
|
export const priceSelector = T['io.flow.internal.v0.enums.price_selector'];
|
|
31382
31086
|
export const prioritizedCenterReference = T['io.flow.internal.v0.models.prioritized_center_reference'];
|
|
31383
31087
|
export const processingTransaction = T['io.flow.internal.v0.models.processing_transaction'];
|
|
@@ -31434,8 +31138,6 @@ export const publicHub = T['io.flow.internal.v0.models.public_hub'];
|
|
|
31434
31138
|
export const publicHubForm = T['io.flow.internal.v0.models.public_hub_form'];
|
|
31435
31139
|
export const quote = T['io.flow.internal.v0.models.quote'];
|
|
31436
31140
|
export const quoteDeleted = T['io.flow.internal.v0.models.quote_deleted'];
|
|
31437
|
-
export const quoteRequest = T['io.flow.internal.v0.models.quote_request'];
|
|
31438
|
-
export const quoteRequestType = T['io.flow.internal.v0.enums.quote_request_type'];
|
|
31439
31141
|
export const quoteUpserted = T['io.flow.internal.v0.models.quote_upserted'];
|
|
31440
31142
|
export const rateAndRuleItem = T['io.flow.internal.v0.models.rate_and_rule_item'];
|
|
31441
31143
|
export const rateAndRuleItemForm = T['io.flow.internal.v0.models.rate_and_rule_item_form'];
|
|
@@ -31470,9 +31172,6 @@ export const ratecardDimensionEstimateDeleted = T['io.flow.internal.v0.models.ra
|
|
|
31470
31172
|
export const ratecardDimensionEstimateUpserted = T['io.flow.internal.v0.models.ratecard_dimension_estimate_upserted'];
|
|
31471
31173
|
export const ratecardInternalServiceFee = T['io.flow.internal.v0.models.ratecard_internal_service_fee'];
|
|
31472
31174
|
export const ratecardInternalSummary = T['io.flow.internal.v0.models.ratecard_internal_summary'];
|
|
31473
|
-
export const ratecardLaneAggregate = T['io.flow.internal.v0.models.ratecard_lane_aggregate'];
|
|
31474
|
-
export const ratecardLaneAggregateDeleted = T['io.flow.internal.v0.models.ratecard_lane_aggregate_deleted'];
|
|
31475
|
-
export const ratecardLaneAggregateUpserted = T['io.flow.internal.v0.models.ratecard_lane_aggregate_upserted'];
|
|
31476
31175
|
export const ratecardLanesImportRequest = T['io.flow.internal.v0.models.ratecard_lanes_import_request'];
|
|
31477
31176
|
export const ratecardRateLevelDeleted = T['io.flow.internal.v0.models.ratecard_rate_level_deleted'];
|
|
31478
31177
|
export const ratecardRateLevelOrganizationDeleted = T['io.flow.internal.v0.models.ratecard_rate_level_organization_deleted'];
|
|
@@ -31491,7 +31190,6 @@ export const ratecardStandardConfigurationUpserted = T['io.flow.internal.v0.mode
|
|
|
31491
31190
|
export const ratecardStandardSettings = T['io.flow.internal.v0.models.ratecard_standard_settings'];
|
|
31492
31191
|
export const ratesChanged = T['io.flow.internal.v0.models.rates_changed'];
|
|
31493
31192
|
export const ratesNamesSummary = T['io.flow.internal.v0.models.rates_names_summary'];
|
|
31494
|
-
export const readyToFulfill = T['io.flow.internal.v0.models.ready_to_fulfill'];
|
|
31495
31193
|
export const reboundConfiguration = T['io.flow.internal.v0.models.rebound_configuration'];
|
|
31496
31194
|
export const reboundConfigurationForm = T['io.flow.internal.v0.models.rebound_configuration_form'];
|
|
31497
31195
|
export const reboundConfigurationStatus = T['io.flow.internal.v0.enums.rebound_configuration_status'];
|
|
@@ -31507,6 +31205,9 @@ export const report = T['io.flow.internal.v0.models.report'];
|
|
|
31507
31205
|
export const reportAccount = T['io.flow.internal.v0.models.report_account'];
|
|
31508
31206
|
export const reportBankAccount = T['io.flow.internal.v0.models.report_bank_account'];
|
|
31509
31207
|
export const reportBankAccountCleartext = T['io.flow.internal.v0.models.report_bank_account_cleartext'];
|
|
31208
|
+
export const reportFile = T['io.flow.internal.v0.models.report_file'];
|
|
31209
|
+
export const reportFileStatus = T['io.flow.internal.v0.enums.report_file_status'];
|
|
31210
|
+
export const reportFileType = T['io.flow.internal.v0.enums.report_file_type'];
|
|
31510
31211
|
export const reportFilter = T['io.flow.internal.v0.models.report_filter'];
|
|
31511
31212
|
export const reportForm = T['io.flow.internal.v0.models.report_form'];
|
|
31512
31213
|
export const reportInterval = T['io.flow.internal.v0.enums.report_interval'];
|
|
@@ -31516,6 +31217,8 @@ export const reportOrganizationReference = T['io.flow.internal.v0.models.report_
|
|
|
31516
31217
|
export const reportOwner = T['io.flow.internal.v0.models.report_owner'];
|
|
31517
31218
|
export const reportPayment = T['io.flow.internal.v0.models.report_payment'];
|
|
31518
31219
|
export const reportPaymentType = T['io.flow.internal.v0.enums.report_payment_type'];
|
|
31220
|
+
export const reportRecordError = T['io.flow.internal.v0.models.report_record_error'];
|
|
31221
|
+
export const reportRecordRetryQueue = T['io.flow.internal.v0.models.report_record_retry_queue'];
|
|
31519
31222
|
export const reportRuleDecision = T['io.flow.internal.v0.models.report_rule_decision'];
|
|
31520
31223
|
export const reportStatus = T['io.flow.internal.v0.enums.report_status'];
|
|
31521
31224
|
export const reportSummary = T['io.flow.internal.v0.models.report_summary'];
|
|
@@ -31642,7 +31345,6 @@ export const sessionRollout = T['io.flow.internal.v0.models.session_rollout'];
|
|
|
31642
31345
|
export const sessionRolloutForm = T['io.flow.internal.v0.models.session_rollout_form'];
|
|
31643
31346
|
export const setupBlockPutForm = T['io.flow.internal.v0.models.setup_block_put_form'];
|
|
31644
31347
|
export const sfExpress = T['io.flow.internal.v0.models.sf_express'];
|
|
31645
|
-
export const shippedItemValue = T['io.flow.internal.v0.models.shipped_item_value'];
|
|
31646
31348
|
export const shippingLane = T['io.flow.internal.v0.models.shipping_lane'];
|
|
31647
31349
|
export const shippingMethodReference = T['io.flow.internal.v0.models.shipping_method_reference'];
|
|
31648
31350
|
export const shop = T['io.flow.internal.v0.models.shop'];
|
|
@@ -31710,6 +31412,9 @@ export const shopifyMarketsTradeSector = T['io.flow.internal.v0.enums.shopify_ma
|
|
|
31710
31412
|
export const shopifyMarketsWebhookRegistration = T['io.flow.internal.v0.models.shopify_markets_webhook_registration'];
|
|
31711
31413
|
export const shopifyMarketsWebhookRegistrationDeleted = T['io.flow.internal.v0.models.shopify_markets_webhook_registration_deleted'];
|
|
31712
31414
|
export const shopifyMarketsWebhookRegistrationUpserted = T['io.flow.internal.v0.models.shopify_markets_webhook_registration_upserted'];
|
|
31415
|
+
export const shopifyMerchantPlan = T['io.flow.internal.v0.models.shopify_merchant_plan'];
|
|
31416
|
+
export const shopifyMerchantPlanDeleted = T['io.flow.internal.v0.models.shopify_merchant_plan_deleted'];
|
|
31417
|
+
export const shopifyMerchantPlanUpserted = T['io.flow.internal.v0.models.shopify_merchant_plan_upserted'];
|
|
31713
31418
|
export const shopifyMetadata = T['io.flow.internal.v0.models.shopify_metadata'];
|
|
31714
31419
|
export const shopifyMonitoringCarrierService = T['io.flow.internal.v0.models.shopify_monitoring_carrier_service'];
|
|
31715
31420
|
export const shopifyMonitoringFulfillmentExternal = T['io.flow.internal.v0.models.shopify_monitoring_fulfillment_external'];
|
|
@@ -31741,6 +31446,7 @@ export const shopifyOrganizationSettingsForm = T['io.flow.internal.v0.models.sho
|
|
|
31741
31446
|
export const shopifyPartnerWebhook = T['io.flow.internal.v0.models.shopify_partner_webhook'];
|
|
31742
31447
|
export const shopifyPartnerWebhookRaw = T['io.flow.internal.v0.models.shopify_partner_webhook_raw'];
|
|
31743
31448
|
export const shopifyPaymentSummary = T['io.flow.internal.v0.models.shopify_payment_summary'];
|
|
31449
|
+
export const shopifyPlanType = T['io.flow.internal.v0.enums.shopify_plan_type'];
|
|
31744
31450
|
export const shopifyProductBundle = T['io.flow.internal.v0.models.shopify_product_bundle'];
|
|
31745
31451
|
export const shopifyProductBundleDeleted = T['io.flow.internal.v0.models.shopify_product_bundle_deleted'];
|
|
31746
31452
|
export const shopifyProductBundleUnderlying = T['io.flow.internal.v0.models.shopify_product_bundle_underlying'];
|
|
@@ -31840,6 +31546,9 @@ export const stripeAuthorizationDeleted = T['io.flow.internal.v0.models.stripe_a
|
|
|
31840
31546
|
export const stripeAuthorizationUpserted = T['io.flow.internal.v0.models.stripe_authorization_upserted'];
|
|
31841
31547
|
export const stripeCaptureDeleted = T['io.flow.internal.v0.models.stripe_capture_deleted'];
|
|
31842
31548
|
export const stripeCaptureUpserted = T['io.flow.internal.v0.models.stripe_capture_upserted'];
|
|
31549
|
+
export const stripeConnectReportRecord = T['io.flow.internal.v0.models.stripe_connect_report_record'];
|
|
31550
|
+
export const stripeConnectReportRecordDeleted = T['io.flow.internal.v0.models.stripe_connect_report_record_deleted'];
|
|
31551
|
+
export const stripeConnectReportRecordUpserted = T['io.flow.internal.v0.models.stripe_connect_report_record_upserted'];
|
|
31843
31552
|
export const stripeDisputeDeleted = T['io.flow.internal.v0.models.stripe_dispute_deleted'];
|
|
31844
31553
|
export const stripeDisputeUpserted = T['io.flow.internal.v0.models.stripe_dispute_upserted'];
|
|
31845
31554
|
export const stripeInternalAuthorization = T['io.flow.internal.v0.models.stripe_internal_authorization'];
|
|
@@ -31884,11 +31593,6 @@ export const taxCalculationErrorCode = T['io.flow.internal.v0.enums.tax_calculat
|
|
|
31884
31593
|
export const taxCalculationForm = T['io.flow.internal.v0.models.tax_calculation_form'];
|
|
31885
31594
|
export const taxCalculationLineItem = T['io.flow.internal.v0.models.tax_calculation_line_item'];
|
|
31886
31595
|
export const taxCalculationLineItemForm = T['io.flow.internal.v0.models.tax_calculation_line_item_form'];
|
|
31887
|
-
export const taxDutyDeltaMetadataActual = T['io.flow.internal.v0.models.tax_duty_delta_metadata_actual'];
|
|
31888
|
-
export const taxDutyDeltaMetadataActualProcessing = T['io.flow.internal.v0.models.tax_duty_delta_metadata_actual_processing'];
|
|
31889
|
-
export const taxDutyDeltaMetadataExpected = T['io.flow.internal.v0.models.tax_duty_delta_metadata_expected'];
|
|
31890
|
-
export const taxDutyDeltaMetadataExpectedProcessing = T['io.flow.internal.v0.models.tax_duty_delta_metadata_expected_processing'];
|
|
31891
|
-
export const taxDutyDeltaTransaction = T['io.flow.internal.v0.models.tax_duty_delta_transaction'];
|
|
31892
31596
|
export const taxParty = T['io.flow.internal.v0.enums.tax_party'];
|
|
31893
31597
|
export const taxRemittanceTransaction = T['io.flow.internal.v0.models.tax_remittance_transaction'];
|
|
31894
31598
|
export const taxRemittanceTransactionDeleted = T['io.flow.internal.v0.models.tax_remittance_transaction_deleted'];
|