@flowio/api-internal-prop-types 9.24.137 → 9.24.139
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 +817 -229
- package/lib/api-internal.js +1 -1
- package/package.json +1 -1
- package/src/api-internal.d.ts +817 -229
- package/src/api-internal.js +1237 -546
package/src/api-internal.js
CHANGED
|
@@ -22,6 +22,7 @@ T['io.flow.organization.v0.models.tax_registration_detail'] = PropTypes.exact({
|
|
|
22
22
|
country: PropTypes.string.isRequired,
|
|
23
23
|
tax_code: PropTypes.string.isRequired,
|
|
24
24
|
province: PropTypes.string,
|
|
25
|
+
legal_name: PropTypes.string,
|
|
25
26
|
});
|
|
26
27
|
|
|
27
28
|
T['io.flow.organization.v0.enums.invitation_error_code'] = PropTypes.oneOf(['expired', 'invalid_email']);
|
|
@@ -138,13 +139,6 @@ T['io.flow.billing.v0.models.trueup_label_base_v2'] = PropTypes.exact({
|
|
|
138
139
|
amount: PropTypes.number.isRequired,
|
|
139
140
|
});
|
|
140
141
|
|
|
141
|
-
T['io.flow.billing.v0.models.trueup_label_base'] = PropTypes.exact({
|
|
142
|
-
amount: PropTypes.number.isRequired,
|
|
143
|
-
weight: PropTypes.number.isRequired,
|
|
144
|
-
});
|
|
145
|
-
|
|
146
|
-
T['io.flow.billing.v0.enums.trueup_source'] = PropTypes.oneOf(['flow', 'channel', 'dhl-parcel', 'dhl', 'ups', 'fedex']);
|
|
147
|
-
|
|
148
142
|
T['io.flow.billing.v0.models.transaction_metadata_tax_duty_delta'] = PropTypes.exact({
|
|
149
143
|
base: PropTypes.number,
|
|
150
144
|
local: PropTypes.number,
|
|
@@ -160,6 +154,13 @@ T['io.flow.billing.v0.models.transaction_metadata_tax_duty_actual'] = PropTypes.
|
|
|
160
154
|
local: PropTypes.number,
|
|
161
155
|
});
|
|
162
156
|
|
|
157
|
+
T['io.flow.billing.v0.models.trueup_label_base'] = PropTypes.exact({
|
|
158
|
+
amount: PropTypes.number.isRequired,
|
|
159
|
+
weight: PropTypes.number.isRequired,
|
|
160
|
+
});
|
|
161
|
+
|
|
162
|
+
T['io.flow.billing.v0.enums.trueup_source'] = PropTypes.oneOf(['flow', 'channel', 'dhl-parcel', 'dhl', 'ups', 'fedex']);
|
|
163
|
+
|
|
163
164
|
T['io.flow.billing.v0.models.transaction_metadata_shipping_label_carrier'] = PropTypes.exact({
|
|
164
165
|
id: PropTypes.string.isRequired,
|
|
165
166
|
service_id: PropTypes.string,
|
|
@@ -177,7 +178,7 @@ T['io.flow.billing.v0.models.transaction_metadata_outbound_transaction'] = PropT
|
|
|
177
178
|
transaction_id: PropTypes.string.isRequired,
|
|
178
179
|
});
|
|
179
180
|
|
|
180
|
-
T['io.flow.billing.v0.enums.statement_status_code'] = PropTypes.oneOf(['scheduled', 'sent', 'failed']);
|
|
181
|
+
T['io.flow.billing.v0.enums.statement_status_code'] = PropTypes.oneOf(['scheduled', 'sent', 'failed', 'paid']);
|
|
181
182
|
|
|
182
183
|
T['io.flow.billing.v0.models.transaction_metadata_flat_rate_label'] = PropTypes.exact({
|
|
183
184
|
discriminator: PropTypes.oneOf(['flat_rate_label']).isRequired,
|
|
@@ -727,18 +728,6 @@ T['io.flow.shopify.merchant.config.v0.unions.entity'] = PropTypes.oneOfType([
|
|
|
727
728
|
T['io.flow.shopify.merchant.config.v0.models.individual'],
|
|
728
729
|
]);
|
|
729
730
|
|
|
730
|
-
T['io.flow.channel.shopify.v0.enums.channel_shopify_order_state_reason_code'] = PropTypes.oneOf(['placeholder_reason_code']);
|
|
731
|
-
|
|
732
|
-
T['io.flow.channel.shopify.v0.models.channel_shopify_order_state_reason'] = PropTypes.exact({
|
|
733
|
-
code: T['io.flow.channel.shopify.v0.enums.channel_shopify_order_state_reason_code'].isRequired,
|
|
734
|
-
message: PropTypes.string.isRequired,
|
|
735
|
-
});
|
|
736
|
-
|
|
737
|
-
T['io.flow.channel.shopify.v0.models.channel_shopify_order_summary'] = PropTypes.exact({
|
|
738
|
-
order_id: PropTypes.number.isRequired,
|
|
739
|
-
shop_id: PropTypes.number.isRequired,
|
|
740
|
-
});
|
|
741
|
-
|
|
742
731
|
T['io.flow.crypto.v0.enums.reason_type'] = PropTypes.oneOf(['duplicate', 'fraudulent', 'requested_by_customer']);
|
|
743
732
|
|
|
744
733
|
T['io.flow.crypto.v0.models.refund_request'] = PropTypes.exact({
|
|
@@ -837,7 +826,6 @@ T['io.flow.ratecard.v0.models.ratecard_rate_form'] = PropTypes.exact({
|
|
|
837
826
|
});
|
|
838
827
|
|
|
839
828
|
T['io.flow.ratecard.v0.models.ratecard_rate'] = PropTypes.exact({
|
|
840
|
-
id: PropTypes.string.isRequired,
|
|
841
829
|
amount: PropTypes.number.isRequired,
|
|
842
830
|
weight: PropTypes.number.isRequired,
|
|
843
831
|
});
|
|
@@ -1286,14 +1274,6 @@ T['io.flow.shopify.markets.internal.event.v0.models.shopify_merchant_markets_del
|
|
|
1286
1274
|
id: PropTypes.string.isRequired,
|
|
1287
1275
|
});
|
|
1288
1276
|
|
|
1289
|
-
T['io.flow.shopify.markets.internal.event.v0.models.shopify_adaptive_pricing_coefficients_deleted'] = PropTypes.exact({
|
|
1290
|
-
discriminator: PropTypes.oneOf(['shopify_adaptive_pricing_coefficients_deleted']).isRequired,
|
|
1291
|
-
event_id: PropTypes.string.isRequired,
|
|
1292
|
-
timestamp: PropTypes.string.isRequired,
|
|
1293
|
-
organization: PropTypes.string.isRequired,
|
|
1294
|
-
id: PropTypes.string.isRequired,
|
|
1295
|
-
});
|
|
1296
|
-
|
|
1297
1277
|
T['io.flow.shopify.markets.internal.event.v0.models.shopify_test_order_deleted'] = PropTypes.exact({
|
|
1298
1278
|
discriminator: PropTypes.oneOf(['shopify_test_order_deleted']).isRequired,
|
|
1299
1279
|
event_id: PropTypes.string.isRequired,
|
|
@@ -1622,6 +1602,7 @@ T['io.flow.channel.internal.v0.models.channel_order_acceptance_failure'] = PropT
|
|
|
1622
1602
|
reason: PropTypes.string.isRequired,
|
|
1623
1603
|
});
|
|
1624
1604
|
|
|
1605
|
+
T['io.flow.order.price.v0.enums.order_price_subsidy_type'] = PropTypes.oneOf(['shipping_subsidy']);
|
|
1625
1606
|
T['io.flow.order.price.v0.enums.order_price_fee_type'] = PropTypes.oneOf(['service', 'fx', 'tax', 'duties', 'tax_and_duties', 'product', 'mor_tax']);
|
|
1626
1607
|
|
|
1627
1608
|
T['io.flow.order.price.v0.enums.order_price_detail_component_key'] = PropTypes.oneOf([
|
|
@@ -1657,6 +1638,7 @@ T['io.flow.order.price.v0.enums.order_price_detail_component_key'] = PropTypes.o
|
|
|
1657
1638
|
'tip',
|
|
1658
1639
|
]);
|
|
1659
1640
|
|
|
1641
|
+
T['io.flow.order.price.v0.enums.order_price_coefficient_type'] = PropTypes.oneOf(['item_shipping']);
|
|
1660
1642
|
T['io.flow.channel.shopify.internal.v0.enums.shopify_service'] = PropTypes.oneOf(['payment', 'duty_tax_calculator', 'sellability']);
|
|
1661
1643
|
|
|
1662
1644
|
T['io.flow.channel.shopify.internal.v0.models.shopify_channel_organization_token'] = PropTypes.exact({
|
|
@@ -1939,6 +1921,23 @@ T['io.flow.shopify.markets.v0.models.shopify_applied_discount'] = PropTypes.exac
|
|
|
1939
1921
|
amount: PropTypes.number,
|
|
1940
1922
|
});
|
|
1941
1923
|
|
|
1924
|
+
T['io.flow.shopify.markets.v0.models.shopify_adaptive_pricing_destination'] = PropTypes.exact({
|
|
1925
|
+
country_code: PropTypes.string.isRequired,
|
|
1926
|
+
updated_at: PropTypes.string.isRequired,
|
|
1927
|
+
tax_and_duty_coefficient: PropTypes.string.isRequired,
|
|
1928
|
+
fees_coefficient: PropTypes.string.isRequired,
|
|
1929
|
+
merchant_subsidy_amount: PropTypes.string.isRequired,
|
|
1930
|
+
merchant_subsidy_currency: PropTypes.string.isRequired,
|
|
1931
|
+
adaptive_pricing_enabled: PropTypes.bool.isRequired,
|
|
1932
|
+
adaptive_shipping_enabled: PropTypes.bool.isRequired,
|
|
1933
|
+
});
|
|
1934
|
+
|
|
1935
|
+
T['io.flow.shopify.markets.v0.models.shopify_adaptive_pricing_destinations_wrapper'] = PropTypes.exact({
|
|
1936
|
+
destinations: PropTypes.arrayOf(
|
|
1937
|
+
T['io.flow.shopify.markets.v0.models.shopify_adaptive_pricing_destination'],
|
|
1938
|
+
).isRequired,
|
|
1939
|
+
});
|
|
1940
|
+
|
|
1942
1941
|
T['io.flow.shopify.markets.v0.models.shop'] = PropTypes.exact({
|
|
1943
1942
|
id: PropTypes.number.isRequired,
|
|
1944
1943
|
name: PropTypes.string.isRequired,
|
|
@@ -2915,6 +2914,7 @@ T['io.flow.shopify.external.v0.models.graphql_product_variant'] = PropTypes.exac
|
|
|
2915
2914
|
});
|
|
2916
2915
|
|
|
2917
2916
|
T['io.flow.shopify.external.v0.models.graphql_taxonomy_category'] = PropTypes.exact({
|
|
2917
|
+
id: PropTypes.string,
|
|
2918
2918
|
name: PropTypes.string.isRequired,
|
|
2919
2919
|
fullName: PropTypes.string.isRequired,
|
|
2920
2920
|
});
|
|
@@ -3495,6 +3495,13 @@ T['io.flow.consumer.invoice.v0.models.credit_memo_form'] = PropTypes.exact({
|
|
|
3495
3495
|
|
|
3496
3496
|
T['io.flow.consumer.invoice.v0.enums.consumer_invoice_customer_type'] = PropTypes.oneOf(['business_eu_verified', 'business_non_verified', 'individual']);
|
|
3497
3497
|
T['io.flow.merchant.of.record.v0.enums.economic_title_location'] = PropTypes.oneOf(['high_seas', 'origination', 'destination']);
|
|
3498
|
+
|
|
3499
|
+
T['io.flow.consumer.invoice.v0.models.b2b_debit_note_reference'] = PropTypes.exact({
|
|
3500
|
+
id: PropTypes.string.isRequired,
|
|
3501
|
+
key: PropTypes.string.isRequired,
|
|
3502
|
+
number: PropTypes.string.isRequired,
|
|
3503
|
+
});
|
|
3504
|
+
|
|
3498
3505
|
T['io.flow.consumer.invoice.v0.enums.consumer_invoice_document_type'] = PropTypes.oneOf(['pdf']);
|
|
3499
3506
|
|
|
3500
3507
|
T['io.flow.consumer.invoice.v0.models.consumer_invoice_order_summary'] = PropTypes.exact({
|
|
@@ -3518,6 +3525,13 @@ T['io.flow.consumer.invoice.v0.models.b2b_invoice_reference'] = PropTypes.exact(
|
|
|
3518
3525
|
});
|
|
3519
3526
|
|
|
3520
3527
|
T['io.flow.consumer.invoice.v0.enums.consumer_invoice_status'] = PropTypes.oneOf(['pending', 'available', 'invalid']);
|
|
3528
|
+
|
|
3529
|
+
T['io.flow.channel.internal.v0.models.external_order_summary'] = PropTypes.exact({
|
|
3530
|
+
id: PropTypes.string.isRequired,
|
|
3531
|
+
edit_ids: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
3532
|
+
created_at: PropTypes.string,
|
|
3533
|
+
});
|
|
3534
|
+
|
|
3521
3535
|
T['io.flow.channel.internal.v0.enums.order_payment_source_type'] = PropTypes.oneOf(['globale', 'third_party']);
|
|
3522
3536
|
|
|
3523
3537
|
T['io.flow.channel.internal.v0.models.order_edit_summary'] = PropTypes.exact({
|
|
@@ -3550,6 +3564,7 @@ T['io.flow.shopify.markets.internal.event.v0.models.shopify_product_bundle_upser
|
|
|
3550
3564
|
T['io.flow.shopify.markets.internal.v0.models.shopify_merchant_market_country'] = PropTypes.exact({
|
|
3551
3565
|
code: PropTypes.string.isRequired,
|
|
3552
3566
|
actively_managing: PropTypes.bool.isRequired,
|
|
3567
|
+
enabled: PropTypes.bool.isRequired,
|
|
3553
3568
|
});
|
|
3554
3569
|
|
|
3555
3570
|
T['io.flow.shopify.markets.internal.v0.models.shopify_merchant_markets'] = PropTypes.exact({
|
|
@@ -3699,6 +3714,30 @@ T['io.flow.channel.internal.v0.enums.channel_order_acceptance_next_action_from']
|
|
|
3699
3714
|
'logistics_team',
|
|
3700
3715
|
]);
|
|
3701
3716
|
|
|
3717
|
+
T['io.flow.channel.internal.v0.models.channel_order_acceptance'] = PropTypes.exact({
|
|
3718
|
+
id: PropTypes.string.isRequired,
|
|
3719
|
+
organization_id: PropTypes.string.isRequired,
|
|
3720
|
+
order_number: PropTypes.string.isRequired,
|
|
3721
|
+
channel_id: PropTypes.string.isRequired,
|
|
3722
|
+
external_order_reference: PropTypes.string.isRequired,
|
|
3723
|
+
payment_request_id: PropTypes.string,
|
|
3724
|
+
order_payment_request_ids: PropTypes.arrayOf(PropTypes.string),
|
|
3725
|
+
order_edit_payment_request_ids: PropTypes.arrayOf(PropTypes.string),
|
|
3726
|
+
status: T['io.flow.channel.internal.v0.enums.channel_order_acceptance_status'].isRequired,
|
|
3727
|
+
reasons: PropTypes.arrayOf(T['io.flow.channel.internal.v0.models.channel_order_acceptance_reason']).isRequired,
|
|
3728
|
+
next_action_from: T['io.flow.channel.internal.v0.enums.channel_order_acceptance_next_action_from'],
|
|
3729
|
+
order_created_at: PropTypes.string,
|
|
3730
|
+
order_updated_at: PropTypes.string,
|
|
3731
|
+
order_edit_summary: T['io.flow.channel.internal.v0.models.order_edit_summary'],
|
|
3732
|
+
payment_source: T['io.flow.channel.internal.v0.enums.order_payment_source_type'],
|
|
3733
|
+
external_order_summary: T['io.flow.channel.internal.v0.models.external_order_summary'],
|
|
3734
|
+
});
|
|
3735
|
+
|
|
3736
|
+
T['io.flow.channel.internal.v0.models.channel_order_acceptance_details'] = PropTypes.exact({
|
|
3737
|
+
order_acceptance: T['io.flow.channel.internal.v0.models.channel_order_acceptance'].isRequired,
|
|
3738
|
+
external_order: PropTypes.object.isRequired,
|
|
3739
|
+
});
|
|
3740
|
+
|
|
3702
3741
|
T['io.flow.shopify.markets.internal.v0.models.product_restriction_result_validation_error'] = PropTypes.exact({
|
|
3703
3742
|
message: PropTypes.string.isRequired,
|
|
3704
3743
|
reason: PropTypes.string.isRequired,
|
|
@@ -7450,6 +7489,21 @@ T['io.flow.fulfillment.v0.models.scheduled_pickup'] = PropTypes.exact({
|
|
|
7450
7489
|
minute_of_hour: PropTypes.string.isRequired,
|
|
7451
7490
|
});
|
|
7452
7491
|
|
|
7492
|
+
T['io.flow.restrictions.v0.enums.restriction_decision_reason'] = PropTypes.oneOf(['manual_dispute', 'operations_decision']);
|
|
7493
|
+
T['io.flow.restrictions.v0.enums.restriction_decision'] = PropTypes.oneOf(['accept', 'reject', 'escalate', 'review']);
|
|
7494
|
+
|
|
7495
|
+
T['io.flow.restrictions.v0.models.restriction_rule_decision_form'] = PropTypes.exact({
|
|
7496
|
+
product_id: PropTypes.string.isRequired,
|
|
7497
|
+
reason_code: PropTypes.string.isRequired,
|
|
7498
|
+
decision: T['io.flow.restrictions.v0.enums.restriction_decision'].isRequired,
|
|
7499
|
+
decision_reason: T['io.flow.restrictions.v0.enums.restriction_decision_reason'].isRequired,
|
|
7500
|
+
});
|
|
7501
|
+
|
|
7502
|
+
T['io.flow.restrictions.v0.models.restriction_decisions_form'] = PropTypes.exact({
|
|
7503
|
+
organization_id: PropTypes.string.isRequired,
|
|
7504
|
+
rule_decisions: PropTypes.arrayOf(T['io.flow.restrictions.v0.models.restriction_rule_decision_form']).isRequired,
|
|
7505
|
+
});
|
|
7506
|
+
|
|
7453
7507
|
T['io.flow.restrictions.v0.enums.restricted_review_status'] = PropTypes.oneOf(['in_review', 'reviewed']);
|
|
7454
7508
|
|
|
7455
7509
|
T['io.flow.restrictions.v0.models.needs_action_attributes'] = PropTypes.exact({
|
|
@@ -8640,6 +8694,13 @@ T['io.flow.internal.v0.models.tracking_processing_error_deleted'] = PropTypes.ex
|
|
|
8640
8694
|
id: PropTypes.string.isRequired,
|
|
8641
8695
|
});
|
|
8642
8696
|
|
|
8697
|
+
T['io.flow.internal.v0.models.mahesh_item_deleted'] = PropTypes.exact({
|
|
8698
|
+
discriminator: PropTypes.oneOf(['mahesh_item_deleted']).isRequired,
|
|
8699
|
+
event_id: PropTypes.string.isRequired,
|
|
8700
|
+
timestamp: PropTypes.string.isRequired,
|
|
8701
|
+
id: PropTypes.string.isRequired,
|
|
8702
|
+
});
|
|
8703
|
+
|
|
8643
8704
|
T['io.flow.internal.v0.models.raveena_item_deleted'] = PropTypes.exact({
|
|
8644
8705
|
discriminator: PropTypes.oneOf(['raveena_item_deleted']).isRequired,
|
|
8645
8706
|
event_id: PropTypes.string.isRequired,
|
|
@@ -8775,14 +8836,6 @@ T['io.flow.internal.v0.models.shopify_merchant_markets_deleted'] = PropTypes.exa
|
|
|
8775
8836
|
id: PropTypes.string.isRequired,
|
|
8776
8837
|
});
|
|
8777
8838
|
|
|
8778
|
-
T['io.flow.internal.v0.models.shopify_adaptive_pricing_coefficients_deleted'] = PropTypes.exact({
|
|
8779
|
-
discriminator: PropTypes.oneOf(['shopify_adaptive_pricing_coefficients_deleted']).isRequired,
|
|
8780
|
-
event_id: PropTypes.string.isRequired,
|
|
8781
|
-
timestamp: PropTypes.string.isRequired,
|
|
8782
|
-
organization: PropTypes.string.isRequired,
|
|
8783
|
-
id: PropTypes.string.isRequired,
|
|
8784
|
-
});
|
|
8785
|
-
|
|
8786
8839
|
T['io.flow.internal.v0.models.shopify_test_order_deleted'] = PropTypes.exact({
|
|
8787
8840
|
discriminator: PropTypes.oneOf(['shopify_test_order_deleted']).isRequired,
|
|
8788
8841
|
event_id: PropTypes.string.isRequired,
|
|
@@ -8900,6 +8953,20 @@ T['io.flow.internal.v0.models.shopify_hs10_codes_deleted'] = PropTypes.exact({
|
|
|
8900
8953
|
id: PropTypes.string.isRequired,
|
|
8901
8954
|
});
|
|
8902
8955
|
|
|
8956
|
+
T['io.flow.internal.v0.models.sellability_pending_verification_deleted'] = PropTypes.exact({
|
|
8957
|
+
discriminator: PropTypes.oneOf(['sellability_pending_verification_deleted']).isRequired,
|
|
8958
|
+
event_id: PropTypes.string.isRequired,
|
|
8959
|
+
timestamp: PropTypes.string.isRequired,
|
|
8960
|
+
id: PropTypes.string.isRequired,
|
|
8961
|
+
});
|
|
8962
|
+
|
|
8963
|
+
T['io.flow.internal.v0.models.unserviceable_taxonomy_category_deleted'] = PropTypes.exact({
|
|
8964
|
+
discriminator: PropTypes.oneOf(['unserviceable_taxonomy_category_deleted']).isRequired,
|
|
8965
|
+
event_id: PropTypes.string.isRequired,
|
|
8966
|
+
timestamp: PropTypes.string.isRequired,
|
|
8967
|
+
id: PropTypes.string.isRequired,
|
|
8968
|
+
});
|
|
8969
|
+
|
|
8903
8970
|
T['io.flow.internal.v0.models.preonboarding_merchant_deleted'] = PropTypes.exact({
|
|
8904
8971
|
discriminator: PropTypes.oneOf(['preonboarding_merchant_deleted']).isRequired,
|
|
8905
8972
|
event_id: PropTypes.string.isRequired,
|
|
@@ -9248,6 +9315,49 @@ T['io.flow.internal.v0.models.all_items_export'] = PropTypes.exact({
|
|
|
9248
9315
|
export_id: PropTypes.string.isRequired,
|
|
9249
9316
|
});
|
|
9250
9317
|
|
|
9318
|
+
T['io.flow.internal.v0.models.guaranteed_shipping_settings_update_deleted'] = PropTypes.exact({
|
|
9319
|
+
discriminator: PropTypes.oneOf(['guaranteed_shipping_settings_update_deleted']).isRequired,
|
|
9320
|
+
event_id: PropTypes.string.isRequired,
|
|
9321
|
+
timestamp: PropTypes.string.isRequired,
|
|
9322
|
+
organization: PropTypes.string.isRequired,
|
|
9323
|
+
channel_id: PropTypes.string.isRequired,
|
|
9324
|
+
id: PropTypes.string.isRequired,
|
|
9325
|
+
});
|
|
9326
|
+
|
|
9327
|
+
T['io.flow.internal.v0.models.guaranteed_shipping_settings_deleted'] = PropTypes.exact({
|
|
9328
|
+
discriminator: PropTypes.oneOf(['guaranteed_shipping_settings_deleted']).isRequired,
|
|
9329
|
+
event_id: PropTypes.string.isRequired,
|
|
9330
|
+
timestamp: PropTypes.string.isRequired,
|
|
9331
|
+
organization: PropTypes.string.isRequired,
|
|
9332
|
+
channel_id: PropTypes.string.isRequired,
|
|
9333
|
+
id: PropTypes.string.isRequired,
|
|
9334
|
+
});
|
|
9335
|
+
|
|
9336
|
+
T['io.flow.internal.v0.models.guaranteed_shipping_published_output_deleted'] = PropTypes.exact({
|
|
9337
|
+
discriminator: PropTypes.oneOf(['guaranteed_shipping_published_output_deleted']).isRequired,
|
|
9338
|
+
event_id: PropTypes.string.isRequired,
|
|
9339
|
+
timestamp: PropTypes.string.isRequired,
|
|
9340
|
+
organization: PropTypes.string.isRequired,
|
|
9341
|
+
id: PropTypes.string.isRequired,
|
|
9342
|
+
});
|
|
9343
|
+
|
|
9344
|
+
T['io.flow.internal.v0.models.outbound_shipping_cost_deleted'] = PropTypes.exact({
|
|
9345
|
+
discriminator: PropTypes.oneOf(['outbound_shipping_cost_deleted']).isRequired,
|
|
9346
|
+
event_id: PropTypes.string.isRequired,
|
|
9347
|
+
timestamp: PropTypes.string.isRequired,
|
|
9348
|
+
organization: PropTypes.string.isRequired,
|
|
9349
|
+
channel_id: PropTypes.string.isRequired,
|
|
9350
|
+
id: PropTypes.string.isRequired,
|
|
9351
|
+
});
|
|
9352
|
+
|
|
9353
|
+
T['io.flow.internal.v0.models.guaranteed_shipping_calibrated_output_deleted'] = PropTypes.exact({
|
|
9354
|
+
discriminator: PropTypes.oneOf(['guaranteed_shipping_calibrated_output_deleted']).isRequired,
|
|
9355
|
+
event_id: PropTypes.string.isRequired,
|
|
9356
|
+
timestamp: PropTypes.string.isRequired,
|
|
9357
|
+
organization: PropTypes.string.isRequired,
|
|
9358
|
+
id: PropTypes.string.isRequired,
|
|
9359
|
+
});
|
|
9360
|
+
|
|
9251
9361
|
T['io.flow.internal.v0.models.quote_deleted'] = PropTypes.exact({
|
|
9252
9362
|
discriminator: PropTypes.oneOf(['quote_deleted']).isRequired,
|
|
9253
9363
|
event_id: PropTypes.string.isRequired,
|
|
@@ -9334,6 +9444,14 @@ T['io.flow.internal.v0.models.fraud_review_deleted'] = PropTypes.exact({
|
|
|
9334
9444
|
id: PropTypes.string.isRequired,
|
|
9335
9445
|
});
|
|
9336
9446
|
|
|
9447
|
+
T['io.flow.internal.v0.models.flat_rate_label_subsidy_deleted'] = PropTypes.exact({
|
|
9448
|
+
discriminator: PropTypes.oneOf(['flat_rate_label_subsidy_deleted']).isRequired,
|
|
9449
|
+
event_id: PropTypes.string.isRequired,
|
|
9450
|
+
timestamp: PropTypes.string.isRequired,
|
|
9451
|
+
organization: PropTypes.string.isRequired,
|
|
9452
|
+
id: PropTypes.string.isRequired,
|
|
9453
|
+
});
|
|
9454
|
+
|
|
9337
9455
|
T['io.flow.internal.v0.models.flat_rate_label_reversal_deleted'] = PropTypes.exact({
|
|
9338
9456
|
discriminator: PropTypes.oneOf(['flat_rate_label_reversal_deleted']).isRequired,
|
|
9339
9457
|
event_id: PropTypes.string.isRequired,
|
|
@@ -9625,6 +9743,14 @@ T['io.flow.internal.v0.models.calculator_organization_settings_deleted'] = PropT
|
|
|
9625
9743
|
id: PropTypes.string.isRequired,
|
|
9626
9744
|
});
|
|
9627
9745
|
|
|
9746
|
+
T['io.flow.internal.v0.models.sales_payment_record_deleted'] = PropTypes.exact({
|
|
9747
|
+
discriminator: PropTypes.oneOf(['sales_payment_record_deleted']).isRequired,
|
|
9748
|
+
event_id: PropTypes.string.isRequired,
|
|
9749
|
+
timestamp: PropTypes.string.isRequired,
|
|
9750
|
+
organization: PropTypes.string.isRequired,
|
|
9751
|
+
id: PropTypes.string.isRequired,
|
|
9752
|
+
});
|
|
9753
|
+
|
|
9628
9754
|
T['io.flow.internal.v0.models.other_record_deleted'] = PropTypes.exact({
|
|
9629
9755
|
discriminator: PropTypes.oneOf(['other_record_deleted']).isRequired,
|
|
9630
9756
|
event_id: PropTypes.string.isRequired,
|
|
@@ -9783,18 +9909,18 @@ T['io.flow.internal.v0.models.fulfillment_deleted'] = PropTypes.exact({
|
|
|
9783
9909
|
id: PropTypes.string.isRequired,
|
|
9784
9910
|
});
|
|
9785
9911
|
|
|
9786
|
-
T['io.flow.internal.v0.models.
|
|
9787
|
-
discriminator: PropTypes.oneOf(['
|
|
9912
|
+
T['io.flow.internal.v0.models.ai_review_result_deleted'] = PropTypes.exact({
|
|
9913
|
+
discriminator: PropTypes.oneOf(['ai_review_result_deleted']).isRequired,
|
|
9788
9914
|
event_id: PropTypes.string.isRequired,
|
|
9789
9915
|
timestamp: PropTypes.string.isRequired,
|
|
9790
9916
|
id: PropTypes.string.isRequired,
|
|
9917
|
+
organization: PropTypes.string.isRequired,
|
|
9791
9918
|
});
|
|
9792
9919
|
|
|
9793
|
-
T['io.flow.internal.v0.models.
|
|
9794
|
-
discriminator: PropTypes.oneOf(['
|
|
9920
|
+
T['io.flow.internal.v0.models.adyen_dispute_deleted'] = PropTypes.exact({
|
|
9921
|
+
discriminator: PropTypes.oneOf(['adyen_dispute_deleted']).isRequired,
|
|
9795
9922
|
event_id: PropTypes.string.isRequired,
|
|
9796
9923
|
timestamp: PropTypes.string.isRequired,
|
|
9797
|
-
organization: PropTypes.string.isRequired,
|
|
9798
9924
|
id: PropTypes.string.isRequired,
|
|
9799
9925
|
});
|
|
9800
9926
|
|
|
@@ -9927,6 +10053,20 @@ T['io.flow.internal.v0.models.usd_spot_rate_upserted'] = PropTypes.exact({
|
|
|
9927
10053
|
usd_spot_rate: T['io.flow.internal.v0.models.usd_spot_rate'].isRequired,
|
|
9928
10054
|
});
|
|
9929
10055
|
|
|
10056
|
+
T['io.flow.internal.v0.models.unserviceable_taxonomy_category'] = PropTypes.exact({
|
|
10057
|
+
id: PropTypes.string.isRequired,
|
|
10058
|
+
taxonomy_category: PropTypes.string.isRequired,
|
|
10059
|
+
taxonomy_category_id: PropTypes.string,
|
|
10060
|
+
updated_by_user_id: PropTypes.string.isRequired,
|
|
10061
|
+
});
|
|
10062
|
+
|
|
10063
|
+
T['io.flow.internal.v0.models.unserviceable_taxonomy_category_upserted'] = PropTypes.exact({
|
|
10064
|
+
discriminator: PropTypes.oneOf(['unserviceable_taxonomy_category_upserted']).isRequired,
|
|
10065
|
+
event_id: PropTypes.string.isRequired,
|
|
10066
|
+
timestamp: PropTypes.string.isRequired,
|
|
10067
|
+
unserviceable_taxonomy_category: T['io.flow.internal.v0.models.unserviceable_taxonomy_category'].isRequired,
|
|
10068
|
+
});
|
|
10069
|
+
|
|
9930
10070
|
T['io.flow.internal.v0.models.unassigned_merchant_guid'] = PropTypes.exact({
|
|
9931
10071
|
id: PropTypes.string.isRequired,
|
|
9932
10072
|
merchant_guid: PropTypes.string.isRequired,
|
|
@@ -10110,6 +10250,7 @@ T['io.flow.internal.v0.models.taxonomy_node'] = PropTypes.exact({
|
|
|
10110
10250
|
T['io.flow.internal.v0.models.taxonomy_category_hs6_ref'] = PropTypes.exact({
|
|
10111
10251
|
id: PropTypes.string.isRequired,
|
|
10112
10252
|
taxonomy_category: PropTypes.string.isRequired,
|
|
10253
|
+
taxonomy_category_id: PropTypes.string,
|
|
10113
10254
|
hs6: PropTypes.string.isRequired,
|
|
10114
10255
|
updated_by_user_id: PropTypes.string.isRequired,
|
|
10115
10256
|
});
|
|
@@ -10136,6 +10277,7 @@ T['io.flow.billing.v0.enums.tax_duty_transaction_reason_code'] = PropTypes.oneOf
|
|
|
10136
10277
|
'us_inbound_tax_refund',
|
|
10137
10278
|
'order_cancellation_above_de_min',
|
|
10138
10279
|
'wyol_shipment_above_de_min',
|
|
10280
|
+
'wyol_shipment_lvg',
|
|
10139
10281
|
'full_refund_without_shipment',
|
|
10140
10282
|
'unfulfilled_order_above_de_min',
|
|
10141
10283
|
'order_cancellation_without_capture',
|
|
@@ -10661,50 +10803,8 @@ T['io.flow.internal.v0.enums.shopify_charge_code'] = PropTypes.oneOf([
|
|
|
10661
10803
|
'incoterm_ddp',
|
|
10662
10804
|
]);
|
|
10663
10805
|
|
|
10664
|
-
T['io.flow.internal.v0.models.shopify_money'] = PropTypes.exact({
|
|
10665
|
-
amount: PropTypes.number.isRequired,
|
|
10666
|
-
currency_code: PropTypes.string.isRequired,
|
|
10667
|
-
});
|
|
10668
|
-
|
|
10669
|
-
T['io.flow.internal.v0.models.shopify_shipment_rate_option'] = PropTypes.exact({
|
|
10670
|
-
code: T['io.flow.internal.v0.enums.shopify_shipment_option_code'].isRequired,
|
|
10671
|
-
cost: T['io.flow.internal.v0.models.shopify_money'].isRequired,
|
|
10672
|
-
optional: PropTypes.bool,
|
|
10673
|
-
});
|
|
10674
|
-
|
|
10675
|
-
T['io.flow.internal.v0.models.shopify_shipment_rate_charge'] = PropTypes.exact({
|
|
10676
|
-
code: T['io.flow.internal.v0.enums.shopify_charge_code'].isRequired,
|
|
10677
|
-
cost: T['io.flow.internal.v0.models.shopify_money'].isRequired,
|
|
10678
|
-
});
|
|
10679
|
-
|
|
10680
|
-
T['io.flow.internal.v0.models.shopify_shipment_rate_total_charges'] = PropTypes.exact({
|
|
10681
|
-
subtotal: T['io.flow.internal.v0.models.shopify_money'].isRequired,
|
|
10682
|
-
tax: T['io.flow.internal.v0.models.shopify_money'].isRequired,
|
|
10683
|
-
total: T['io.flow.internal.v0.models.shopify_money'].isRequired,
|
|
10684
|
-
});
|
|
10685
|
-
|
|
10686
10806
|
T['io.flow.internal.v0.enums.shopify_incoterm'] = PropTypes.oneOf(['DAP', 'DDP']);
|
|
10687
10807
|
|
|
10688
|
-
T['io.flow.internal.v0.models.shopify_shipment_rate_available'] = PropTypes.exact({
|
|
10689
|
-
carrier_service_id: PropTypes.string.isRequired,
|
|
10690
|
-
total_charges: T['io.flow.internal.v0.models.shopify_shipment_rate_total_charges'].isRequired,
|
|
10691
|
-
charges: PropTypes.arrayOf(T['io.flow.internal.v0.models.shopify_shipment_rate_charge']).isRequired,
|
|
10692
|
-
shipment_options: PropTypes.arrayOf(T['io.flow.internal.v0.models.shopify_shipment_rate_option']).isRequired,
|
|
10693
|
-
expected_delivery_date: PropTypes.string,
|
|
10694
|
-
guaranteed_delivery_date: PropTypes.string,
|
|
10695
|
-
incoterm: T['io.flow.internal.v0.enums.shopify_incoterm'],
|
|
10696
|
-
});
|
|
10697
|
-
|
|
10698
|
-
T['io.flow.internal.v0.models.shopify_shipment_rate_response'] = PropTypes.exact({
|
|
10699
|
-
rates: PropTypes.arrayOf(T['io.flow.internal.v0.models.shopify_shipment_rate_available']).isRequired,
|
|
10700
|
-
unavailable_rates: PropTypes.arrayOf(T['io.flow.internal.v0.models.shopify_shipment_rate_unavailable']).isRequired,
|
|
10701
|
-
});
|
|
10702
|
-
|
|
10703
|
-
T['io.flow.internal.v0.models.shopify_rate_customs_detail'] = PropTypes.exact({
|
|
10704
|
-
incoterm: T['io.flow.internal.v0.enums.shopify_incoterm'].isRequired,
|
|
10705
|
-
net_value: T['io.flow.internal.v0.models.shopify_money'].isRequired,
|
|
10706
|
-
});
|
|
10707
|
-
|
|
10708
10808
|
T['io.flow.internal.v0.models.shopify_product_taxonomy_attribute_value'] = PropTypes.exact({
|
|
10709
10809
|
id: PropTypes.string.isRequired,
|
|
10710
10810
|
attribute_id: PropTypes.string.isRequired,
|
|
@@ -10763,6 +10863,12 @@ T['io.flow.shopify.external.v0.models.product_metafield'] = PropTypes.exact({
|
|
|
10763
10863
|
admin_graphql_api_id: PropTypes.string.isRequired,
|
|
10764
10864
|
});
|
|
10765
10865
|
|
|
10866
|
+
T['io.flow.shopify.external.v0.models.rest_taxonomy_category'] = PropTypes.exact({
|
|
10867
|
+
name: PropTypes.string.isRequired,
|
|
10868
|
+
full_name: PropTypes.string.isRequired,
|
|
10869
|
+
admin_graphql_api_id: PropTypes.string,
|
|
10870
|
+
});
|
|
10871
|
+
|
|
10766
10872
|
T['io.flow.shopify.external.v0.enums.published_scope'] = PropTypes.oneOf(['global']);
|
|
10767
10873
|
|
|
10768
10874
|
T['io.flow.shopify.external.v0.models.option'] = PropTypes.exact({
|
|
@@ -10813,6 +10919,74 @@ T['io.flow.shopify.external.v0.models.response_variant'] = PropTypes.exact({
|
|
|
10813
10919
|
variant: T['io.flow.shopify.external.v0.models.product_variant'].isRequired,
|
|
10814
10920
|
});
|
|
10815
10921
|
|
|
10922
|
+
T['io.flow.shopify.external.v0.models.product'] = PropTypes.exact({
|
|
10923
|
+
id: PropTypes.number.isRequired,
|
|
10924
|
+
handle: PropTypes.string.isRequired,
|
|
10925
|
+
variants: PropTypes.arrayOf(T['io.flow.shopify.external.v0.models.product_variant']),
|
|
10926
|
+
images: PropTypes.arrayOf(T['io.flow.shopify.external.v0.models.product_image']).isRequired,
|
|
10927
|
+
title: PropTypes.string.isRequired,
|
|
10928
|
+
vendor: PropTypes.string,
|
|
10929
|
+
body_html: PropTypes.string,
|
|
10930
|
+
product_type: PropTypes.string,
|
|
10931
|
+
status: PropTypes.string,
|
|
10932
|
+
options: PropTypes.arrayOf(T['io.flow.shopify.external.v0.models.option']).isRequired,
|
|
10933
|
+
tags: PropTypes.string,
|
|
10934
|
+
template_suffix: PropTypes.string,
|
|
10935
|
+
published_scope: T['io.flow.shopify.external.v0.enums.published_scope'],
|
|
10936
|
+
published_at: PropTypes.string,
|
|
10937
|
+
created_at: PropTypes.string.isRequired,
|
|
10938
|
+
updated_at: PropTypes.string.isRequired,
|
|
10939
|
+
has_variants_that_requires_components: PropTypes.bool,
|
|
10940
|
+
category: T['io.flow.shopify.external.v0.models.rest_taxonomy_category'],
|
|
10941
|
+
metafields: PropTypes.arrayOf(T['io.flow.shopify.external.v0.models.product_metafield']),
|
|
10942
|
+
});
|
|
10943
|
+
|
|
10944
|
+
T['io.flow.shopify.external.v0.models.response_products'] = PropTypes.exact({
|
|
10945
|
+
products: PropTypes.arrayOf(T['io.flow.shopify.external.v0.models.product']).isRequired,
|
|
10946
|
+
});
|
|
10947
|
+
|
|
10948
|
+
T['io.flow.shopify.external.v0.models.response_product'] = PropTypes.exact({
|
|
10949
|
+
product: T['io.flow.shopify.external.v0.models.product'].isRequired,
|
|
10950
|
+
});
|
|
10951
|
+
|
|
10952
|
+
T['io.flow.shopify.markets.internal.v0.models.shopify_product_wrapper'] = PropTypes.exact({
|
|
10953
|
+
shopify_product: T['io.flow.shopify.external.v0.models.product'].isRequired,
|
|
10954
|
+
deleted_at: PropTypes.string,
|
|
10955
|
+
});
|
|
10956
|
+
|
|
10957
|
+
T['io.flow.internal.v0.models.shopify_product_wrapper'] = PropTypes.exact({
|
|
10958
|
+
shopify_product: T['io.flow.shopify.external.v0.models.product'].isRequired,
|
|
10959
|
+
deleted_at: PropTypes.string,
|
|
10960
|
+
});
|
|
10961
|
+
|
|
10962
|
+
T['io.flow.internal.v0.models.shopify_product_update_webhook_event'] = PropTypes.exact({
|
|
10963
|
+
id: PropTypes.string.isRequired,
|
|
10964
|
+
product: T['io.flow.shopify.external.v0.models.product'].isRequired,
|
|
10965
|
+
domain: PropTypes.string.isRequired,
|
|
10966
|
+
api_version: PropTypes.string.isRequired,
|
|
10967
|
+
});
|
|
10968
|
+
|
|
10969
|
+
T['io.flow.internal.v0.models.shopify_product_update_upserted'] = PropTypes.exact({
|
|
10970
|
+
discriminator: PropTypes.oneOf(['shopify_product_update_upserted']).isRequired,
|
|
10971
|
+
event_id: PropTypes.string.isRequired,
|
|
10972
|
+
timestamp: PropTypes.string.isRequired,
|
|
10973
|
+
organization: PropTypes.string.isRequired,
|
|
10974
|
+
shopify_product_update: T['io.flow.internal.v0.models.shopify_product_update_webhook_event'].isRequired,
|
|
10975
|
+
});
|
|
10976
|
+
|
|
10977
|
+
T['io.flow.internal.v0.models.shopify_product_create_webhook_event'] = PropTypes.exact({
|
|
10978
|
+
id: PropTypes.string.isRequired,
|
|
10979
|
+
product: T['io.flow.shopify.external.v0.models.product'].isRequired,
|
|
10980
|
+
});
|
|
10981
|
+
|
|
10982
|
+
T['io.flow.internal.v0.models.shopify_product_create_upserted'] = PropTypes.exact({
|
|
10983
|
+
discriminator: PropTypes.oneOf(['shopify_product_create_upserted']).isRequired,
|
|
10984
|
+
event_id: PropTypes.string.isRequired,
|
|
10985
|
+
timestamp: PropTypes.string.isRequired,
|
|
10986
|
+
organization: PropTypes.string.isRequired,
|
|
10987
|
+
shopify_product_create: T['io.flow.internal.v0.models.shopify_product_create_webhook_event'].isRequired,
|
|
10988
|
+
});
|
|
10989
|
+
|
|
10816
10990
|
T['io.flow.internal.v0.models.shopify_product_bundle_underlying'] = PropTypes.exact({
|
|
10817
10991
|
product_ids: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
10818
10992
|
});
|
|
@@ -10992,6 +11166,7 @@ T['io.flow.internal.v0.models.stripe_connect_report_record_upserted'] = PropType
|
|
|
10992
11166
|
T['io.flow.internal.v0.models.shopify_merchant_market_country'] = PropTypes.exact({
|
|
10993
11167
|
code: PropTypes.string.isRequired,
|
|
10994
11168
|
actively_managing: PropTypes.bool.isRequired,
|
|
11169
|
+
enabled: PropTypes.bool.isRequired,
|
|
10995
11170
|
});
|
|
10996
11171
|
|
|
10997
11172
|
T['io.flow.internal.v0.models.shopify_merchant_markets'] = PropTypes.exact({
|
|
@@ -11025,26 +11200,6 @@ T['io.flow.internal.v0.models.shopify_shipment_rate_package'] = PropTypes.exact(
|
|
|
11025
11200
|
measurements: T['io.flow.internal.v0.models.shopify_measurements'].isRequired,
|
|
11026
11201
|
});
|
|
11027
11202
|
|
|
11028
|
-
T['io.flow.internal.v0.models.shopify_shipment_rate_shipment'] = PropTypes.exact({
|
|
11029
|
-
carrier_id: PropTypes.string.isRequired,
|
|
11030
|
-
delivery_method_type: T['io.flow.internal.v0.enums.shopify_delivery_method_type'].isRequired,
|
|
11031
|
-
shipping_date_time: PropTypes.string.isRequired,
|
|
11032
|
-
'return': PropTypes.bool.isRequired,
|
|
11033
|
-
origin: T['io.flow.internal.v0.models.shopify_shipping_location'].isRequired,
|
|
11034
|
-
destination: T['io.flow.internal.v0.models.shopify_shipping_location'].isRequired,
|
|
11035
|
-
'package': T['io.flow.internal.v0.models.shopify_shipment_rate_package'].isRequired,
|
|
11036
|
-
pickup_point: T['io.flow.internal.v0.models.shopify_rate_pickup_point'],
|
|
11037
|
-
customs_detail: T['io.flow.internal.v0.models.shopify_rate_customs_detail'],
|
|
11038
|
-
});
|
|
11039
|
-
|
|
11040
|
-
T['io.flow.internal.v0.models.shopify_shipment_rate_request'] = PropTypes.exact({
|
|
11041
|
-
idempotency_key: PropTypes.string.isRequired,
|
|
11042
|
-
webhook_id: PropTypes.string.isRequired,
|
|
11043
|
-
test: PropTypes.bool.isRequired,
|
|
11044
|
-
shipper: T['io.flow.internal.v0.models.shopify_shipment_rate_shipper'].isRequired,
|
|
11045
|
-
shipment: T['io.flow.internal.v0.models.shopify_shipment_rate_shipment'].isRequired,
|
|
11046
|
-
});
|
|
11047
|
-
|
|
11048
11203
|
T['io.flow.shopify.markets.v0.enums.shopify_webhook_format'] = PropTypes.oneOf(['json', 'xml']);
|
|
11049
11204
|
|
|
11050
11205
|
T['io.flow.shopify.markets.v0.enums.shopify_webhook_topic'] = PropTypes.oneOf([
|
|
@@ -11408,6 +11563,68 @@ T['io.flow.internal.v0.models.shopify_dispute_upserted'] = PropTypes.exact({
|
|
|
11408
11563
|
dispute: T['io.flow.internal.v0.models.shopify_dispute'].isRequired,
|
|
11409
11564
|
});
|
|
11410
11565
|
|
|
11566
|
+
T['io.flow.internal.v0.models.shopify_money'] = PropTypes.exact({
|
|
11567
|
+
amount: PropTypes.number.isRequired,
|
|
11568
|
+
currency_code: PropTypes.string.isRequired,
|
|
11569
|
+
});
|
|
11570
|
+
|
|
11571
|
+
T['io.flow.internal.v0.models.shopify_rate_customs_detail'] = PropTypes.exact({
|
|
11572
|
+
incoterm: T['io.flow.internal.v0.enums.shopify_incoterm'].isRequired,
|
|
11573
|
+
net_value: T['io.flow.internal.v0.models.shopify_money'].isRequired,
|
|
11574
|
+
});
|
|
11575
|
+
|
|
11576
|
+
T['io.flow.internal.v0.models.shopify_shipment_rate_shipment'] = PropTypes.exact({
|
|
11577
|
+
carrier_id: PropTypes.string.isRequired,
|
|
11578
|
+
delivery_method_type: T['io.flow.internal.v0.enums.shopify_delivery_method_type'].isRequired,
|
|
11579
|
+
shipping_date_time: PropTypes.string.isRequired,
|
|
11580
|
+
'return': PropTypes.bool.isRequired,
|
|
11581
|
+
origin: T['io.flow.internal.v0.models.shopify_shipping_location'].isRequired,
|
|
11582
|
+
destination: T['io.flow.internal.v0.models.shopify_shipping_location'].isRequired,
|
|
11583
|
+
'package': T['io.flow.internal.v0.models.shopify_shipment_rate_package'].isRequired,
|
|
11584
|
+
pickup_point: T['io.flow.internal.v0.models.shopify_rate_pickup_point'],
|
|
11585
|
+
customs_detail: T['io.flow.internal.v0.models.shopify_rate_customs_detail'],
|
|
11586
|
+
});
|
|
11587
|
+
|
|
11588
|
+
T['io.flow.internal.v0.models.shopify_shipment_rate_request'] = PropTypes.exact({
|
|
11589
|
+
idempotency_key: PropTypes.string.isRequired,
|
|
11590
|
+
webhook_id: PropTypes.string.isRequired,
|
|
11591
|
+
test: PropTypes.bool.isRequired,
|
|
11592
|
+
shipper: T['io.flow.internal.v0.models.shopify_shipment_rate_shipper'].isRequired,
|
|
11593
|
+
shipment: T['io.flow.internal.v0.models.shopify_shipment_rate_shipment'].isRequired,
|
|
11594
|
+
});
|
|
11595
|
+
|
|
11596
|
+
T['io.flow.internal.v0.models.shopify_cost'] = PropTypes.exact({
|
|
11597
|
+
subtotal: T['io.flow.internal.v0.models.shopify_money'].isRequired,
|
|
11598
|
+
tax: T['io.flow.internal.v0.models.shopify_money'].isRequired,
|
|
11599
|
+
total: T['io.flow.internal.v0.models.shopify_money'].isRequired,
|
|
11600
|
+
});
|
|
11601
|
+
|
|
11602
|
+
T['io.flow.internal.v0.models.shopify_shipment_rate_option'] = PropTypes.exact({
|
|
11603
|
+
code: T['io.flow.internal.v0.enums.shopify_shipment_option_code'].isRequired,
|
|
11604
|
+
cost: T['io.flow.internal.v0.models.shopify_cost'].isRequired,
|
|
11605
|
+
optional: PropTypes.bool,
|
|
11606
|
+
});
|
|
11607
|
+
|
|
11608
|
+
T['io.flow.internal.v0.models.shopify_shipment_rate_charge'] = PropTypes.exact({
|
|
11609
|
+
code: T['io.flow.internal.v0.enums.shopify_charge_code'].isRequired,
|
|
11610
|
+
cost: T['io.flow.internal.v0.models.shopify_cost'].isRequired,
|
|
11611
|
+
});
|
|
11612
|
+
|
|
11613
|
+
T['io.flow.internal.v0.models.shopify_shipment_rate_available'] = PropTypes.exact({
|
|
11614
|
+
carrier_service_id: PropTypes.string.isRequired,
|
|
11615
|
+
total_charges: T['io.flow.internal.v0.models.shopify_cost'].isRequired,
|
|
11616
|
+
charges: PropTypes.arrayOf(T['io.flow.internal.v0.models.shopify_shipment_rate_charge']).isRequired,
|
|
11617
|
+
shipment_options: PropTypes.arrayOf(T['io.flow.internal.v0.models.shopify_shipment_rate_option']).isRequired,
|
|
11618
|
+
expected_delivery_date: PropTypes.string,
|
|
11619
|
+
guaranteed_delivery_date: PropTypes.string,
|
|
11620
|
+
incoterm: T['io.flow.internal.v0.enums.shopify_incoterm'],
|
|
11621
|
+
});
|
|
11622
|
+
|
|
11623
|
+
T['io.flow.internal.v0.models.shopify_shipment_rate_response'] = PropTypes.exact({
|
|
11624
|
+
rates: PropTypes.arrayOf(T['io.flow.internal.v0.models.shopify_shipment_rate_available']).isRequired,
|
|
11625
|
+
unavailable_rates: PropTypes.arrayOf(T['io.flow.internal.v0.models.shopify_shipment_rate_unavailable']).isRequired,
|
|
11626
|
+
});
|
|
11627
|
+
|
|
11411
11628
|
T['io.flow.internal.v0.enums.shopify_callback_error_code'] = PropTypes.oneOf([
|
|
11412
11629
|
'UNKNOWN',
|
|
11413
11630
|
'SYSTEM_ERROR',
|
|
@@ -11438,51 +11655,6 @@ T['io.flow.internal.v0.models.shopify_callback_error'] = PropTypes.exact({
|
|
|
11438
11655
|
errors: PropTypes.arrayOf(T['io.flow.internal.v0.models.shopify_callback_error_item']).isRequired,
|
|
11439
11656
|
});
|
|
11440
11657
|
|
|
11441
|
-
T['io.flow.shopify.markets.v0.models.shopify_adaptive_pricing_destination_coefficients'] = PropTypes.exact({
|
|
11442
|
-
country: PropTypes.string.isRequired,
|
|
11443
|
-
updated_at: PropTypes.string.isRequired,
|
|
11444
|
-
tax_and_duty_coefficient: PropTypes.string.isRequired,
|
|
11445
|
-
fees_coefficient: PropTypes.string.isRequired,
|
|
11446
|
-
merchant_subsidy_amount: PropTypes.string.isRequired,
|
|
11447
|
-
merchant_subsidy_currency: PropTypes.string.isRequired,
|
|
11448
|
-
adaptive_pricing_enabled: PropTypes.bool.isRequired,
|
|
11449
|
-
adaptive_shipping_enabled: PropTypes.bool.isRequired,
|
|
11450
|
-
});
|
|
11451
|
-
|
|
11452
|
-
T['io.flow.shopify.markets.internal.v0.models.shopify_adaptive_pricing_coefficients'] = PropTypes.exact({
|
|
11453
|
-
id: PropTypes.string.isRequired,
|
|
11454
|
-
organization_id: PropTypes.string.isRequired,
|
|
11455
|
-
|
|
11456
|
-
destination_coefficients: PropTypes.arrayOf(
|
|
11457
|
-
T['io.flow.shopify.markets.v0.models.shopify_adaptive_pricing_destination_coefficients'],
|
|
11458
|
-
).isRequired,
|
|
11459
|
-
});
|
|
11460
|
-
|
|
11461
|
-
T['io.flow.shopify.markets.internal.event.v0.models.shopify_adaptive_pricing_coefficients_upserted'] = PropTypes.exact({
|
|
11462
|
-
discriminator: PropTypes.oneOf(['shopify_adaptive_pricing_coefficients_upserted']).isRequired,
|
|
11463
|
-
event_id: PropTypes.string.isRequired,
|
|
11464
|
-
timestamp: PropTypes.string.isRequired,
|
|
11465
|
-
organization: PropTypes.string.isRequired,
|
|
11466
|
-
shopify_adaptive_pricing_coefficients: T['io.flow.shopify.markets.internal.v0.models.shopify_adaptive_pricing_coefficients'].isRequired,
|
|
11467
|
-
});
|
|
11468
|
-
|
|
11469
|
-
T['io.flow.internal.v0.models.shopify_adaptive_pricing_coefficients'] = PropTypes.exact({
|
|
11470
|
-
id: PropTypes.string.isRequired,
|
|
11471
|
-
organization_id: PropTypes.string.isRequired,
|
|
11472
|
-
|
|
11473
|
-
destination_coefficients: PropTypes.arrayOf(
|
|
11474
|
-
T['io.flow.shopify.markets.v0.models.shopify_adaptive_pricing_destination_coefficients'],
|
|
11475
|
-
).isRequired,
|
|
11476
|
-
});
|
|
11477
|
-
|
|
11478
|
-
T['io.flow.internal.v0.models.shopify_adaptive_pricing_coefficients_upserted'] = PropTypes.exact({
|
|
11479
|
-
discriminator: PropTypes.oneOf(['shopify_adaptive_pricing_coefficients_upserted']).isRequired,
|
|
11480
|
-
event_id: PropTypes.string.isRequired,
|
|
11481
|
-
timestamp: PropTypes.string.isRequired,
|
|
11482
|
-
organization: PropTypes.string.isRequired,
|
|
11483
|
-
shopify_adaptive_pricing_coefficients: T['io.flow.internal.v0.models.shopify_adaptive_pricing_coefficients'].isRequired,
|
|
11484
|
-
});
|
|
11485
|
-
|
|
11486
11658
|
T['io.flow.ratecard.v0.models.ratecard_carrier_summary'] = PropTypes.exact({
|
|
11487
11659
|
id: PropTypes.string.isRequired,
|
|
11488
11660
|
name: PropTypes.string.isRequired,
|
|
@@ -11510,6 +11682,7 @@ T['io.flow.ratecard.v0.models.ratecard_summary'] = PropTypes.exact({
|
|
|
11510
11682
|
T['io.flow.ratecard.v0.models.lane_summary'] = PropTypes.exact({
|
|
11511
11683
|
id: PropTypes.string.isRequired,
|
|
11512
11684
|
ratecard: T['io.flow.ratecard.v0.models.ratecard_summary'].isRequired,
|
|
11685
|
+
dim_factor: PropTypes.number.isRequired,
|
|
11513
11686
|
});
|
|
11514
11687
|
|
|
11515
11688
|
T['io.flow.label.v0.models.shipping_label_ratecard_summary'] = PropTypes.exact({
|
|
@@ -11538,6 +11711,34 @@ T['io.flow.internal.v0.models.setup_block_put_form'] = PropTypes.exact({
|
|
|
11538
11711
|
).isRequired,
|
|
11539
11712
|
});
|
|
11540
11713
|
|
|
11714
|
+
T['io.flow.internal.v0.models.sellability_pending_verification'] = PropTypes.exact({
|
|
11715
|
+
id: PropTypes.string.isRequired,
|
|
11716
|
+
merchant_id: PropTypes.string.isRequired,
|
|
11717
|
+
product_id: PropTypes.string.isRequired,
|
|
11718
|
+
channel: PropTypes.string.isRequired,
|
|
11719
|
+
request_id: PropTypes.string.isRequired,
|
|
11720
|
+
name: PropTypes.string.isRequired,
|
|
11721
|
+
description: PropTypes.string.isRequired,
|
|
11722
|
+
taxonomy_category: PropTypes.string,
|
|
11723
|
+
hs6_code: PropTypes.string,
|
|
11724
|
+
price: PropTypes.string,
|
|
11725
|
+
rule_id: PropTypes.string.isRequired,
|
|
11726
|
+
reason_code: PropTypes.string.isRequired,
|
|
11727
|
+
matching_keywords: PropTypes.string,
|
|
11728
|
+
status: PropTypes.string.isRequired,
|
|
11729
|
+
agent_decision: PropTypes.string,
|
|
11730
|
+
agent_reasoning: PropTypes.string,
|
|
11731
|
+
created_at: PropTypes.string.isRequired,
|
|
11732
|
+
updated_at: PropTypes.string.isRequired,
|
|
11733
|
+
});
|
|
11734
|
+
|
|
11735
|
+
T['io.flow.internal.v0.models.sellability_pending_verification_upserted'] = PropTypes.exact({
|
|
11736
|
+
discriminator: PropTypes.oneOf(['sellability_pending_verification_upserted']).isRequired,
|
|
11737
|
+
event_id: PropTypes.string.isRequired,
|
|
11738
|
+
timestamp: PropTypes.string.isRequired,
|
|
11739
|
+
sellability_pending_verification: T['io.flow.internal.v0.models.sellability_pending_verification'].isRequired,
|
|
11740
|
+
});
|
|
11741
|
+
|
|
11541
11742
|
T['io.flow.sellability.v0.enums.sellability_error_code'] = PropTypes.oneOf([
|
|
11542
11743
|
'insufficient_details',
|
|
11543
11744
|
'ineligible_category',
|
|
@@ -11683,6 +11884,42 @@ T['io.flow.internal.v0.models.payment_is'] = PropTypes.exact({
|
|
|
11683
11884
|
managed_pricing: PropTypes.bool,
|
|
11684
11885
|
});
|
|
11685
11886
|
|
|
11887
|
+
T['io.flow.internal.v0.models.pc_review_context'] = PropTypes.exact({
|
|
11888
|
+
discriminator: PropTypes.oneOf(['pc_review_context']).isRequired,
|
|
11889
|
+
organization_id: PropTypes.string.isRequired,
|
|
11890
|
+
item_name: PropTypes.string.isRequired,
|
|
11891
|
+
item_description: PropTypes.string,
|
|
11892
|
+
categories: PropTypes.string,
|
|
11893
|
+
taxonomy_category: PropTypes.string,
|
|
11894
|
+
image_url: PropTypes.string,
|
|
11895
|
+
});
|
|
11896
|
+
|
|
11897
|
+
T['io.flow.internal.v0.models.dg_review_context'] = PropTypes.exact({
|
|
11898
|
+
discriminator: PropTypes.oneOf(['dg_review_context']).isRequired,
|
|
11899
|
+
organization_id: PropTypes.string.isRequired,
|
|
11900
|
+
item_name: PropTypes.string.isRequired,
|
|
11901
|
+
item_description: PropTypes.string,
|
|
11902
|
+
image_url: PropTypes.string,
|
|
11903
|
+
hs_code: PropTypes.string,
|
|
11904
|
+
categories: PropTypes.string,
|
|
11905
|
+
price: PropTypes.string,
|
|
11906
|
+
});
|
|
11907
|
+
|
|
11908
|
+
T['io.flow.internal.v0.models.pv_review_context'] = PropTypes.exact({
|
|
11909
|
+
discriminator: PropTypes.oneOf(['pv_review_context']).isRequired,
|
|
11910
|
+
organization_id: PropTypes.string.isRequired,
|
|
11911
|
+
item_name: PropTypes.string.isRequired,
|
|
11912
|
+
item_description: PropTypes.string,
|
|
11913
|
+
image_url: PropTypes.string,
|
|
11914
|
+
rule_name: PropTypes.string.isRequired,
|
|
11915
|
+
rule_reason_code: PropTypes.string.isRequired,
|
|
11916
|
+
hs_code: PropTypes.string,
|
|
11917
|
+
categories: PropTypes.string,
|
|
11918
|
+
price: PropTypes.string,
|
|
11919
|
+
matching_positive_keywords: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
11920
|
+
matching_negative_keywords: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
11921
|
+
});
|
|
11922
|
+
|
|
11686
11923
|
T['io.flow.internal.v0.models.marked_as_final'] = PropTypes.exact({
|
|
11687
11924
|
products: PropTypes.bool.isRequired,
|
|
11688
11925
|
shipping: PropTypes.bool.isRequired,
|
|
@@ -11855,6 +12092,7 @@ T['io.flow.internal.v0.models.restrictions_athena_dailyops_fs_upserted'] = PropT
|
|
|
11855
12092
|
restrictions_athena_dailyops_fs: T['io.flow.internal.v0.models.restrictions_athena_dailyops_fs'].isRequired,
|
|
11856
12093
|
});
|
|
11857
12094
|
|
|
12095
|
+
T['io.flow.internal.v0.enums.restriction_rule_evaluation_mode'] = PropTypes.oneOf(['all_screenings', 'first_screening_only']);
|
|
11858
12096
|
T['io.flow.internal.v0.enums.restriction_rule_activation_status'] = PropTypes.oneOf(['draft', 'active', 'inactive']);
|
|
11859
12097
|
|
|
11860
12098
|
T['io.flow.internal.v0.models.keyword_cancelling'] = PropTypes.exact({
|
|
@@ -11962,8 +12200,9 @@ T['io.flow.internal.v0.models.reporting_vat_remittance'] = PropTypes.exact({
|
|
|
11962
12200
|
rate: T['io.flow.internal.v0.models.reporting_vat_remittance_rate'].isRequired,
|
|
11963
12201
|
});
|
|
11964
12202
|
|
|
11965
|
-
T['io.flow.internal.v0.models.
|
|
12203
|
+
T['io.flow.internal.v0.models.reporting_fx_value'] = PropTypes.exact({
|
|
11966
12204
|
usd: PropTypes.number.isRequired,
|
|
12205
|
+
merchant: PropTypes.number,
|
|
11967
12206
|
});
|
|
11968
12207
|
|
|
11969
12208
|
T['io.flow.internal.v0.enums.reporting_fulfillment_is_virtual'] = PropTypes.oneOf(['all', 'mixed', 'none']);
|
|
@@ -11974,13 +12213,13 @@ T['io.flow.internal.v0.models.reporting_business'] = PropTypes.exact({
|
|
|
11974
12213
|
});
|
|
11975
12214
|
|
|
11976
12215
|
T['io.flow.internal.v0.models.reporting_fx'] = PropTypes.exact({
|
|
11977
|
-
shipping: T['io.flow.internal.v0.models.
|
|
11978
|
-
fees: T['io.flow.internal.v0.models.
|
|
11979
|
-
product: T['io.flow.internal.v0.models.
|
|
11980
|
-
tax: T['io.flow.internal.v0.models.
|
|
11981
|
-
duty: T['io.flow.internal.v0.models.
|
|
11982
|
-
tips: T['io.flow.internal.v0.models.
|
|
11983
|
-
total: T['io.flow.internal.v0.models.
|
|
12216
|
+
shipping: T['io.flow.internal.v0.models.reporting_fx_value'].isRequired,
|
|
12217
|
+
fees: T['io.flow.internal.v0.models.reporting_fx_value'].isRequired,
|
|
12218
|
+
product: T['io.flow.internal.v0.models.reporting_fx_value'].isRequired,
|
|
12219
|
+
tax: T['io.flow.internal.v0.models.reporting_fx_value'].isRequired,
|
|
12220
|
+
duty: T['io.flow.internal.v0.models.reporting_fx_value'].isRequired,
|
|
12221
|
+
tips: T['io.flow.internal.v0.models.reporting_fx_value'],
|
|
12222
|
+
total: T['io.flow.internal.v0.models.reporting_fx_value'].isRequired,
|
|
11984
12223
|
});
|
|
11985
12224
|
|
|
11986
12225
|
T['io.flow.internal.v0.models.reporting_fulfillment_has'] = PropTypes.exact({
|
|
@@ -12112,6 +12351,7 @@ T['io.flow.internal.v0.enums.report_type'] = PropTypes.oneOf([
|
|
|
12112
12351
|
'scheduled_payment_citi',
|
|
12113
12352
|
'scheduled_payment_citi_krw',
|
|
12114
12353
|
'scheduled_payment_citi_krw_txt',
|
|
12354
|
+
'scheduled_payment_citi_uk_xml',
|
|
12115
12355
|
'account_quarterly_balances',
|
|
12116
12356
|
'invariants',
|
|
12117
12357
|
'payments',
|
|
@@ -12134,6 +12374,13 @@ T['io.flow.internal.v0.models.report'] = PropTypes.exact({
|
|
|
12134
12374
|
processed_at: PropTypes.string,
|
|
12135
12375
|
});
|
|
12136
12376
|
|
|
12377
|
+
T['io.flow.internal.v0.enums.remediate_tax_duty_arm'] = PropTypes.oneOf(['non_lvg', 'lvg_full_refund']);
|
|
12378
|
+
|
|
12379
|
+
T['io.flow.internal.v0.models.remediate_tax_duty_metadata'] = PropTypes.exact({
|
|
12380
|
+
discriminator: PropTypes.oneOf(['remediate_tax_duty_metadata']).isRequired,
|
|
12381
|
+
arm: T['io.flow.internal.v0.enums.remediate_tax_duty_arm'].isRequired,
|
|
12382
|
+
});
|
|
12383
|
+
|
|
12137
12384
|
T['io.flow.internal.v0.enums.redirect_reason'] = PropTypes.oneOf(['three_d_secure']);
|
|
12138
12385
|
|
|
12139
12386
|
T['io.flow.payment.v0.models.post_payment_redirect_urls'] = PropTypes.exact({
|
|
@@ -12281,20 +12528,6 @@ T['io.flow.internal.v0.models.ratecard_rate_level_deleted'] = PropTypes.exact({
|
|
|
12281
12528
|
rate_level: T['io.flow.internal.v0.models.rate_level'].isRequired,
|
|
12282
12529
|
});
|
|
12283
12530
|
|
|
12284
|
-
T['io.flow.ratecard.v0.models.ratecard_lanes_import_request_data'] = PropTypes.exact({
|
|
12285
|
-
id: PropTypes.string.isRequired,
|
|
12286
|
-
source_url: PropTypes.string.isRequired,
|
|
12287
|
-
filename: PropTypes.string,
|
|
12288
|
-
});
|
|
12289
|
-
|
|
12290
|
-
T['io.flow.internal.v0.models.ratecard_lanes_import_request'] = PropTypes.exact({
|
|
12291
|
-
discriminator: PropTypes.oneOf(['ratecard_lanes_import_request']).isRequired,
|
|
12292
|
-
event_id: PropTypes.string.isRequired,
|
|
12293
|
-
timestamp: PropTypes.string.isRequired,
|
|
12294
|
-
organization: PropTypes.string.isRequired,
|
|
12295
|
-
data: T['io.flow.ratecard.v0.models.ratecard_lanes_import_request_data'].isRequired,
|
|
12296
|
-
});
|
|
12297
|
-
|
|
12298
12531
|
T['io.flow.ratecard.v0.models.fuel_surcharge_service_fee'] = PropTypes.exact({
|
|
12299
12532
|
discriminator: PropTypes.oneOf(['fuel_surcharge_service_fee']).isRequired,
|
|
12300
12533
|
percent: PropTypes.number.isRequired,
|
|
@@ -12546,23 +12779,6 @@ T['io.flow.sellability.v0.models.sellability_screening'] = PropTypes.exact({
|
|
|
12546
12779
|
error_message: PropTypes.string,
|
|
12547
12780
|
});
|
|
12548
12781
|
|
|
12549
|
-
T['io.flow.internal.v0.models.preonboarding_merchant'] = PropTypes.exact({
|
|
12550
|
-
id: PropTypes.string.isRequired,
|
|
12551
|
-
merchant_id: PropTypes.string.isRequired,
|
|
12552
|
-
channel: PropTypes.string.isRequired,
|
|
12553
|
-
catalog_size: PropTypes.number.isRequired,
|
|
12554
|
-
processed_product_count: PropTypes.number.isRequired,
|
|
12555
|
-
last_request: PropTypes.string.isRequired,
|
|
12556
|
-
updated_by_user_id: PropTypes.string.isRequired,
|
|
12557
|
-
});
|
|
12558
|
-
|
|
12559
|
-
T['io.flow.internal.v0.models.preonboarding_merchant_upserted'] = PropTypes.exact({
|
|
12560
|
-
discriminator: PropTypes.oneOf(['preonboarding_merchant_upserted']).isRequired,
|
|
12561
|
-
event_id: PropTypes.string.isRequired,
|
|
12562
|
-
timestamp: PropTypes.string.isRequired,
|
|
12563
|
-
preonboarding_merchant: T['io.flow.internal.v0.models.preonboarding_merchant'].isRequired,
|
|
12564
|
-
});
|
|
12565
|
-
|
|
12566
12782
|
T['io.flow.internal.v0.enums.preonboarding_classification_type'] = PropTypes.oneOf(['None', 'Manual', 'ML', 'System']);
|
|
12567
12783
|
T['io.flow.internal.v0.enums.preonboarding_classification_decision'] = PropTypes.oneOf(['Accept', 'Reject']);
|
|
12568
12784
|
|
|
@@ -12580,9 +12796,28 @@ T['io.flow.internal.v0.models.preonboarding_classification_result'] = PropTypes.
|
|
|
12580
12796
|
|
|
12581
12797
|
T['io.flow.sellability.v0.enums.sellability_screening_mode'] = PropTypes.oneOf(['pre_onboarding', 'default_on', 'active']);
|
|
12582
12798
|
|
|
12799
|
+
T['io.flow.internal.v0.models.preonboarding_merchant'] = PropTypes.exact({
|
|
12800
|
+
id: PropTypes.string.isRequired,
|
|
12801
|
+
merchant_id: PropTypes.string.isRequired,
|
|
12802
|
+
channel: PropTypes.string.isRequired,
|
|
12803
|
+
catalog_size: PropTypes.number.isRequired,
|
|
12804
|
+
processed_product_count: PropTypes.number.isRequired,
|
|
12805
|
+
last_request: PropTypes.string.isRequired,
|
|
12806
|
+
screening_mode: T['io.flow.sellability.v0.enums.sellability_screening_mode'],
|
|
12807
|
+
updated_by_user_id: PropTypes.string.isRequired,
|
|
12808
|
+
});
|
|
12809
|
+
|
|
12810
|
+
T['io.flow.internal.v0.models.preonboarding_merchant_upserted'] = PropTypes.exact({
|
|
12811
|
+
discriminator: PropTypes.oneOf(['preonboarding_merchant_upserted']).isRequired,
|
|
12812
|
+
event_id: PropTypes.string.isRequired,
|
|
12813
|
+
timestamp: PropTypes.string.isRequired,
|
|
12814
|
+
preonboarding_merchant: T['io.flow.internal.v0.models.preonboarding_merchant'].isRequired,
|
|
12815
|
+
});
|
|
12816
|
+
|
|
12583
12817
|
T['io.flow.product.v0.models.product_taxonomy_category'] = PropTypes.exact({
|
|
12584
12818
|
name: PropTypes.string.isRequired,
|
|
12585
12819
|
full_name: PropTypes.string.isRequired,
|
|
12820
|
+
id: PropTypes.string,
|
|
12586
12821
|
});
|
|
12587
12822
|
|
|
12588
12823
|
T['io.flow.product.v0.models.product'] = PropTypes.exact({
|
|
@@ -12597,74 +12832,6 @@ T['io.flow.product.v0.models.product'] = PropTypes.exact({
|
|
|
12597
12832
|
deleted_at: PropTypes.string,
|
|
12598
12833
|
});
|
|
12599
12834
|
|
|
12600
|
-
T['io.flow.shopify.external.v0.models.product'] = PropTypes.exact({
|
|
12601
|
-
id: PropTypes.number.isRequired,
|
|
12602
|
-
handle: PropTypes.string.isRequired,
|
|
12603
|
-
variants: PropTypes.arrayOf(T['io.flow.shopify.external.v0.models.product_variant']),
|
|
12604
|
-
images: PropTypes.arrayOf(T['io.flow.shopify.external.v0.models.product_image']).isRequired,
|
|
12605
|
-
title: PropTypes.string.isRequired,
|
|
12606
|
-
vendor: PropTypes.string,
|
|
12607
|
-
body_html: PropTypes.string,
|
|
12608
|
-
product_type: PropTypes.string,
|
|
12609
|
-
status: PropTypes.string,
|
|
12610
|
-
options: PropTypes.arrayOf(T['io.flow.shopify.external.v0.models.option']).isRequired,
|
|
12611
|
-
tags: PropTypes.string,
|
|
12612
|
-
template_suffix: PropTypes.string,
|
|
12613
|
-
published_scope: T['io.flow.shopify.external.v0.enums.published_scope'],
|
|
12614
|
-
published_at: PropTypes.string,
|
|
12615
|
-
created_at: PropTypes.string.isRequired,
|
|
12616
|
-
updated_at: PropTypes.string.isRequired,
|
|
12617
|
-
has_variants_that_requires_components: PropTypes.bool,
|
|
12618
|
-
category: T['io.flow.product.v0.models.product_taxonomy_category'],
|
|
12619
|
-
metafields: PropTypes.arrayOf(T['io.flow.shopify.external.v0.models.product_metafield']),
|
|
12620
|
-
});
|
|
12621
|
-
|
|
12622
|
-
T['io.flow.shopify.external.v0.models.response_products'] = PropTypes.exact({
|
|
12623
|
-
products: PropTypes.arrayOf(T['io.flow.shopify.external.v0.models.product']).isRequired,
|
|
12624
|
-
});
|
|
12625
|
-
|
|
12626
|
-
T['io.flow.shopify.external.v0.models.response_product'] = PropTypes.exact({
|
|
12627
|
-
product: T['io.flow.shopify.external.v0.models.product'].isRequired,
|
|
12628
|
-
});
|
|
12629
|
-
|
|
12630
|
-
T['io.flow.shopify.markets.internal.v0.models.shopify_product_wrapper'] = PropTypes.exact({
|
|
12631
|
-
shopify_product: T['io.flow.shopify.external.v0.models.product'].isRequired,
|
|
12632
|
-
deleted_at: PropTypes.string,
|
|
12633
|
-
});
|
|
12634
|
-
|
|
12635
|
-
T['io.flow.internal.v0.models.shopify_product_wrapper'] = PropTypes.exact({
|
|
12636
|
-
shopify_product: T['io.flow.shopify.external.v0.models.product'].isRequired,
|
|
12637
|
-
deleted_at: PropTypes.string,
|
|
12638
|
-
});
|
|
12639
|
-
|
|
12640
|
-
T['io.flow.internal.v0.models.shopify_product_update_webhook_event'] = PropTypes.exact({
|
|
12641
|
-
id: PropTypes.string.isRequired,
|
|
12642
|
-
product: T['io.flow.shopify.external.v0.models.product'].isRequired,
|
|
12643
|
-
domain: PropTypes.string.isRequired,
|
|
12644
|
-
api_version: PropTypes.string.isRequired,
|
|
12645
|
-
});
|
|
12646
|
-
|
|
12647
|
-
T['io.flow.internal.v0.models.shopify_product_update_upserted'] = PropTypes.exact({
|
|
12648
|
-
discriminator: PropTypes.oneOf(['shopify_product_update_upserted']).isRequired,
|
|
12649
|
-
event_id: PropTypes.string.isRequired,
|
|
12650
|
-
timestamp: PropTypes.string.isRequired,
|
|
12651
|
-
organization: PropTypes.string.isRequired,
|
|
12652
|
-
shopify_product_update: T['io.flow.internal.v0.models.shopify_product_update_webhook_event'].isRequired,
|
|
12653
|
-
});
|
|
12654
|
-
|
|
12655
|
-
T['io.flow.internal.v0.models.shopify_product_create_webhook_event'] = PropTypes.exact({
|
|
12656
|
-
id: PropTypes.string.isRequired,
|
|
12657
|
-
product: T['io.flow.shopify.external.v0.models.product'].isRequired,
|
|
12658
|
-
});
|
|
12659
|
-
|
|
12660
|
-
T['io.flow.internal.v0.models.shopify_product_create_upserted'] = PropTypes.exact({
|
|
12661
|
-
discriminator: PropTypes.oneOf(['shopify_product_create_upserted']).isRequired,
|
|
12662
|
-
event_id: PropTypes.string.isRequired,
|
|
12663
|
-
timestamp: PropTypes.string.isRequired,
|
|
12664
|
-
organization: PropTypes.string.isRequired,
|
|
12665
|
-
shopify_product_create: T['io.flow.internal.v0.models.shopify_product_create_webhook_event'].isRequired,
|
|
12666
|
-
});
|
|
12667
|
-
|
|
12668
12835
|
T['io.flow.internal.v0.models.preonboarding_sellability_result'] = PropTypes.exact({
|
|
12669
12836
|
id: PropTypes.string,
|
|
12670
12837
|
merchant_id: PropTypes.string.isRequired,
|
|
@@ -12685,6 +12852,7 @@ T['io.flow.internal.v0.models.preonboarding_sellability_result'] = PropTypes.exa
|
|
|
12685
12852
|
effective_taxonomy_category: T['io.flow.product.v0.models.product_taxonomy_category'],
|
|
12686
12853
|
fingerprint: PropTypes.string.isRequired,
|
|
12687
12854
|
screening_mode: T['io.flow.sellability.v0.enums.sellability_screening_mode'],
|
|
12855
|
+
created_at: PropTypes.string,
|
|
12688
12856
|
});
|
|
12689
12857
|
|
|
12690
12858
|
T['io.flow.internal.v0.models.preonboarding_sellability_result_updated'] = PropTypes.exact({
|
|
@@ -13339,6 +13507,10 @@ T['io.flow.shopify.markets.internal.event.v0.models.order_tax_and_duty_inclusivi
|
|
|
13339
13507
|
order_tax_and_duty_inclusivity_setting: T['io.flow.shopify.markets.internal.v0.models.order_tax_and_duty_inclusivity_setting'].isRequired,
|
|
13340
13508
|
});
|
|
13341
13509
|
|
|
13510
|
+
T['io.flow.shopify.markets.internal.v0.models.order_settings'] = PropTypes.exact({
|
|
13511
|
+
tax_and_duty_inclusivity_setting: T['io.flow.experience.v0.enums.tax_and_duty_inclusivity_setting'],
|
|
13512
|
+
});
|
|
13513
|
+
|
|
13342
13514
|
T['io.flow.internal.v0.models.order_tax_and_duty_inclusivity_setting'] = PropTypes.exact({
|
|
13343
13515
|
id: PropTypes.string.isRequired,
|
|
13344
13516
|
organization_id: PropTypes.string.isRequired,
|
|
@@ -13354,6 +13526,10 @@ T['io.flow.internal.v0.models.order_tax_and_duty_inclusivity_setting_upserted']
|
|
|
13354
13526
|
order_tax_and_duty_inclusivity_setting: T['io.flow.internal.v0.models.order_tax_and_duty_inclusivity_setting'].isRequired,
|
|
13355
13527
|
});
|
|
13356
13528
|
|
|
13529
|
+
T['io.flow.internal.v0.models.order_settings'] = PropTypes.exact({
|
|
13530
|
+
tax_and_duty_inclusivity_setting: T['io.flow.experience.v0.enums.tax_and_duty_inclusivity_setting'],
|
|
13531
|
+
});
|
|
13532
|
+
|
|
13357
13533
|
T['io.flow.common.v0.enums.user_status'] = PropTypes.oneOf(['pending', 'active', 'inactive']);
|
|
13358
13534
|
|
|
13359
13535
|
T['io.flow.internal.v0.models.user_status_rule_form'] = PropTypes.exact({
|
|
@@ -14500,6 +14676,7 @@ T['io.flow.ratecard.v0.models.ratecard_form'] = PropTypes.exact({
|
|
|
14500
14676
|
glbe_shipping_method_id: PropTypes.string,
|
|
14501
14677
|
glbe_proposition_name: PropTypes.string,
|
|
14502
14678
|
channel_revenue_share_percentage: PropTypes.number,
|
|
14679
|
+
channel_id: PropTypes.string,
|
|
14503
14680
|
data: T['io.flow.ratecard.v0.models.ratecard_data'],
|
|
14504
14681
|
});
|
|
14505
14682
|
|
|
@@ -14517,6 +14694,7 @@ T['io.flow.ratecard.v0.models.ratecard'] = PropTypes.exact({
|
|
|
14517
14694
|
glbe_shipping_method_id: PropTypes.string,
|
|
14518
14695
|
glbe_proposition_name: PropTypes.string,
|
|
14519
14696
|
channel_revenue_share_percentage: PropTypes.number,
|
|
14697
|
+
channel_id: PropTypes.string,
|
|
14520
14698
|
});
|
|
14521
14699
|
|
|
14522
14700
|
T['io.flow.internal.v0.enums.label_request_error_handling_responsibility'] = PropTypes.oneOf([
|
|
@@ -14545,13 +14723,6 @@ T['io.flow.label.v0.enums.label_request_method'] = PropTypes.oneOf([
|
|
|
14545
14723
|
'legacy_shopify_graphql_server',
|
|
14546
14724
|
]);
|
|
14547
14725
|
|
|
14548
|
-
T['io.flow.billing.v0.models.transaction_metadata_shipping_label'] = PropTypes.exact({
|
|
14549
|
-
discriminator: PropTypes.oneOf(['shipping_label']).isRequired,
|
|
14550
|
-
request_method: T['io.flow.label.v0.enums.label_request_method'],
|
|
14551
|
-
carrier: T['io.flow.billing.v0.models.transaction_metadata_shipping_label_carrier'].isRequired,
|
|
14552
|
-
revenue_share_percentage: PropTypes.number,
|
|
14553
|
-
});
|
|
14554
|
-
|
|
14555
14726
|
T['io.flow.internal.v0.models.last_failure_summary'] = PropTypes.exact({
|
|
14556
14727
|
label_request_method: T['io.flow.label.v0.enums.label_request_method'].isRequired,
|
|
14557
14728
|
label_trigger_method: T['io.flow.label.v0.enums.label_trigger_method'].isRequired,
|
|
@@ -14750,7 +14921,32 @@ T['io.flow.internal.v0.models.item_sales_margin'] = PropTypes.exact({
|
|
|
14750
14921
|
position: PropTypes.number.isRequired,
|
|
14751
14922
|
});
|
|
14752
14923
|
|
|
14753
|
-
T['io.flow.internal.v0.
|
|
14924
|
+
T['io.flow.internal.v0.models.item_hs6_override_form'] = PropTypes.exact({
|
|
14925
|
+
item_number: PropTypes.string.isRequired,
|
|
14926
|
+
hs6: PropTypes.string.isRequired,
|
|
14927
|
+
hs6_description: PropTypes.string,
|
|
14928
|
+
});
|
|
14929
|
+
|
|
14930
|
+
T['io.flow.internal.v0.models.item_hs6_overrides_form'] = PropTypes.exact({
|
|
14931
|
+
items: PropTypes.arrayOf(T['io.flow.internal.v0.models.item_hs6_override_form']).isRequired,
|
|
14932
|
+
});
|
|
14933
|
+
|
|
14934
|
+
T['io.flow.internal.v0.models.item_hs6_override_rejection'] = PropTypes.exact({
|
|
14935
|
+
item_number: PropTypes.string.isRequired,
|
|
14936
|
+
message: PropTypes.string.isRequired,
|
|
14937
|
+
});
|
|
14938
|
+
|
|
14939
|
+
T['io.flow.internal.v0.models.item_hs6_override'] = PropTypes.exact({
|
|
14940
|
+
item_number: PropTypes.string.isRequired,
|
|
14941
|
+
hs6: PropTypes.string.isRequired,
|
|
14942
|
+
});
|
|
14943
|
+
|
|
14944
|
+
T['io.flow.internal.v0.models.item_hs6_override_result'] = PropTypes.exact({
|
|
14945
|
+
applied: PropTypes.arrayOf(T['io.flow.internal.v0.models.item_hs6_override']).isRequired,
|
|
14946
|
+
rejected: PropTypes.arrayOf(T['io.flow.internal.v0.models.item_hs6_override_rejection']).isRequired,
|
|
14947
|
+
});
|
|
14948
|
+
|
|
14949
|
+
T['io.flow.internal.v0.enums.classification_scope'] = PropTypes.oneOf(['Item', 'Product', 'Bucket']);
|
|
14754
14950
|
T['io.flow.internal.v0.enums.harmonization_decision_source'] = PropTypes.oneOf(['human', 'system', 'legacy_model', 'enterprise_model', 'merchant']);
|
|
14755
14951
|
T['io.flow.internal.v0.enums.item_type'] = PropTypes.oneOf(['standard', 'multi_product']);
|
|
14756
14952
|
|
|
@@ -14794,6 +14990,32 @@ T['io.flow.internal.v0.models.item_classification'] = PropTypes.exact({
|
|
|
14794
14990
|
model_id: PropTypes.string.isRequired,
|
|
14795
14991
|
});
|
|
14796
14992
|
|
|
14993
|
+
T['io.flow.internal.v0.models.issuer'] = PropTypes.exact({
|
|
14994
|
+
id: PropTypes.string.isRequired,
|
|
14995
|
+
iin: PropTypes.string.isRequired,
|
|
14996
|
+
name: PropTypes.string,
|
|
14997
|
+
country: PropTypes.string,
|
|
14998
|
+
brand: PropTypes.string,
|
|
14999
|
+
type: PropTypes.string,
|
|
15000
|
+
category: PropTypes.string,
|
|
15001
|
+
website: PropTypes.string,
|
|
15002
|
+
phone: PropTypes.string,
|
|
15003
|
+
});
|
|
15004
|
+
|
|
15005
|
+
T['io.flow.internal.v0.models.issuer_upserted'] = PropTypes.exact({
|
|
15006
|
+
discriminator: PropTypes.oneOf(['issuer_upserted']).isRequired,
|
|
15007
|
+
event_id: PropTypes.string.isRequired,
|
|
15008
|
+
timestamp: PropTypes.string.isRequired,
|
|
15009
|
+
issuer: T['io.flow.internal.v0.models.issuer'].isRequired,
|
|
15010
|
+
});
|
|
15011
|
+
|
|
15012
|
+
T['io.flow.internal.v0.models.issuer_deleted'] = PropTypes.exact({
|
|
15013
|
+
discriminator: PropTypes.oneOf(['issuer_deleted']).isRequired,
|
|
15014
|
+
event_id: PropTypes.string.isRequired,
|
|
15015
|
+
timestamp: PropTypes.string.isRequired,
|
|
15016
|
+
issuer: T['io.flow.internal.v0.models.issuer'].isRequired,
|
|
15017
|
+
});
|
|
15018
|
+
|
|
14797
15019
|
T['io.flow.reference.v0.models.currency_symbols'] = PropTypes.exact({
|
|
14798
15020
|
primary: PropTypes.string.isRequired,
|
|
14799
15021
|
narrow: PropTypes.string,
|
|
@@ -15206,7 +15428,7 @@ T['io.flow.payment.gateway.v0.unions.action'] = PropTypes.oneOfType([
|
|
|
15206
15428
|
]);
|
|
15207
15429
|
|
|
15208
15430
|
T['io.flow.internal.v0.enums.rate_source'] = PropTypes.oneOf(['calculated', 'market']);
|
|
15209
|
-
T['io.flow.experience.v0.enums.pricing_type'] = PropTypes.oneOf(['inclusive_pricing']);
|
|
15431
|
+
T['io.flow.experience.v0.enums.pricing_type'] = PropTypes.oneOf(['inclusive_pricing', 'inclusive_pricing_with_shipping']);
|
|
15210
15432
|
|
|
15211
15433
|
T['io.flow.experience.v0.models.order_rate'] = PropTypes.exact({
|
|
15212
15434
|
from: PropTypes.string.isRequired,
|
|
@@ -15600,12 +15822,15 @@ T['io.flow.internal.v0.models.reporting_merchant_transactions'] = PropTypes.exac
|
|
|
15600
15822
|
freight_breakdown: T['io.flow.internal.v0.models.reporting_merchant_freight'],
|
|
15601
15823
|
freight_guaranteed: T['io.flow.internal.v0.models.reporting_monetary_value'],
|
|
15602
15824
|
freight_non_guaranteed: T['io.flow.internal.v0.models.reporting_monetary_value'],
|
|
15825
|
+
freight_subsidy: T['io.flow.internal.v0.models.reporting_monetary_value'],
|
|
15603
15826
|
discount: T['io.flow.internal.v0.models.reporting_monetary_value'],
|
|
15604
15827
|
total: T['io.flow.internal.v0.models.reporting_monetary_value'],
|
|
15605
15828
|
tax_refund: T['io.flow.internal.v0.models.reporting_monetary_value'],
|
|
15606
15829
|
duty_refund: T['io.flow.internal.v0.models.reporting_monetary_value'],
|
|
15607
15830
|
tax_reversal: T['io.flow.internal.v0.models.reporting_monetary_value'],
|
|
15608
15831
|
duty_reversal: T['io.flow.internal.v0.models.reporting_monetary_value'],
|
|
15832
|
+
flat_rate_reversal: T['io.flow.internal.v0.models.reporting_monetary_value'],
|
|
15833
|
+
flat_rate_subsidy_reversal: T['io.flow.internal.v0.models.reporting_monetary_value'],
|
|
15609
15834
|
tax_reversal_for_lvg_order: PropTypes.bool,
|
|
15610
15835
|
duty_reversal_for_lvg_order: PropTypes.bool,
|
|
15611
15836
|
});
|
|
@@ -15649,6 +15874,10 @@ T['io.flow.internal.v0.models.reporting_payment'] = PropTypes.exact({
|
|
|
15649
15874
|
total: T['io.flow.internal.v0.models.reporting_monetary_value'].isRequired,
|
|
15650
15875
|
});
|
|
15651
15876
|
|
|
15877
|
+
T['io.flow.internal.v0.models.reporting_freight_subsidy'] = PropTypes.exact({
|
|
15878
|
+
amount: T['io.flow.internal.v0.models.reporting_monetary_value'].isRequired,
|
|
15879
|
+
});
|
|
15880
|
+
|
|
15652
15881
|
T['io.flow.internal.v0.models.reporting_freight_guaranteed'] = PropTypes.exact({
|
|
15653
15882
|
amount: T['io.flow.internal.v0.models.reporting_monetary_value'].isRequired,
|
|
15654
15883
|
coefficient: T['io.flow.internal.v0.models.reporting_monetary_value'].isRequired,
|
|
@@ -15656,6 +15885,7 @@ T['io.flow.internal.v0.models.reporting_freight_guaranteed'] = PropTypes.exact({
|
|
|
15656
15885
|
|
|
15657
15886
|
T['io.flow.internal.v0.models.reporting_freight'] = PropTypes.exact({
|
|
15658
15887
|
guaranteed: T['io.flow.internal.v0.models.reporting_freight_guaranteed'],
|
|
15888
|
+
subsidy: T['io.flow.internal.v0.models.reporting_freight_subsidy'],
|
|
15659
15889
|
});
|
|
15660
15890
|
|
|
15661
15891
|
T['io.flow.internal.v0.models.reporting_fees'] = PropTypes.exact({
|
|
@@ -15711,10 +15941,13 @@ T['io.flow.internal.v0.models.merchant_transactions'] = PropTypes.exact({
|
|
|
15711
15941
|
surcharges: PropTypes.arrayOf(T['io.flow.internal.v0.models.merchant_surcharge']),
|
|
15712
15942
|
freight_guaranteed: PropTypes.number,
|
|
15713
15943
|
freight_non_guaranteed: PropTypes.number,
|
|
15944
|
+
freight_subsidy: PropTypes.number,
|
|
15714
15945
|
total: PropTypes.number.isRequired,
|
|
15715
15946
|
tax_refund: PropTypes.number,
|
|
15716
15947
|
tax_reversal: PropTypes.number,
|
|
15717
15948
|
duty_reversal: PropTypes.number,
|
|
15949
|
+
flat_rate_reversal: PropTypes.number,
|
|
15950
|
+
flat_rate_subsidy_reversal: PropTypes.number,
|
|
15718
15951
|
tax_reversal_for_lvg_order: PropTypes.bool,
|
|
15719
15952
|
duty_reversal_for_lvg_order: PropTypes.bool,
|
|
15720
15953
|
});
|
|
@@ -15931,6 +16164,8 @@ T['io.flow.experience.v0.models.order_identifier'] = PropTypes.exact({
|
|
|
15931
16164
|
number: PropTypes.string,
|
|
15932
16165
|
});
|
|
15933
16166
|
|
|
16167
|
+
T['io.flow.internal.v0.enums.mail_class'] = PropTypes.oneOf(['standard', 'express']);
|
|
16168
|
+
|
|
15934
16169
|
T['io.flow.internal.v0.models.fiserv_authentication_form'] = PropTypes.exact({
|
|
15935
16170
|
public_key: PropTypes.string.isRequired,
|
|
15936
16171
|
secret_key: PropTypes.string.isRequired,
|
|
@@ -15949,6 +16184,14 @@ T['io.flow.billing.bank.account.v0.models.bank_account_info_kor_v2'] = PropTypes
|
|
|
15949
16184
|
bank_name: PropTypes.string.isRequired,
|
|
15950
16185
|
});
|
|
15951
16186
|
|
|
16187
|
+
T['io.flow.billing.bank.account.v0.models.bank_account_info_kor'] = PropTypes.exact({
|
|
16188
|
+
discriminator: PropTypes.oneOf(['kor']).isRequired,
|
|
16189
|
+
name: PropTypes.string.isRequired,
|
|
16190
|
+
bank_account_number: PropTypes.string.isRequired,
|
|
16191
|
+
bank_routing_number: PropTypes.string.isRequired,
|
|
16192
|
+
bank_name: PropTypes.string.isRequired,
|
|
16193
|
+
});
|
|
16194
|
+
|
|
15952
16195
|
T['io.flow.billing.bank.account.v0.models.bank_account_info_ita'] = PropTypes.exact({
|
|
15953
16196
|
discriminator: PropTypes.oneOf(['ita']).isRequired,
|
|
15954
16197
|
swift_code: PropTypes.string.isRequired,
|
|
@@ -15983,6 +16226,26 @@ T['io.flow.internal.v0.models.finance_bank_account_owner'] = PropTypes.exact({
|
|
|
15983
16226
|
name: PropTypes.string.isRequired,
|
|
15984
16227
|
});
|
|
15985
16228
|
|
|
16229
|
+
T['io.flow.billing.bank.account.v0.unions.bank_account_info'] = PropTypes.oneOfType([
|
|
16230
|
+
T['io.flow.billing.bank.account.v0.models.bank_account_info_usa'],
|
|
16231
|
+
T['io.flow.billing.bank.account.v0.models.bank_account_info_can'],
|
|
16232
|
+
T['io.flow.billing.bank.account.v0.models.bank_account_info_gbr'],
|
|
16233
|
+
T['io.flow.billing.bank.account.v0.models.bank_account_info_fra'],
|
|
16234
|
+
T['io.flow.billing.bank.account.v0.models.bank_account_info_ita'],
|
|
16235
|
+
T['io.flow.billing.bank.account.v0.models.bank_account_info_kor'],
|
|
16236
|
+
T['io.flow.billing.bank.account.v0.models.bank_account_info_kor_v2'],
|
|
16237
|
+
]);
|
|
16238
|
+
|
|
16239
|
+
T['io.flow.billing.v0.models.bank_account_form_info'] = PropTypes.exact({
|
|
16240
|
+
discriminator: PropTypes.oneOf(['info']).isRequired,
|
|
16241
|
+
info: T['io.flow.billing.bank.account.v0.unions.bank_account_info'].isRequired,
|
|
16242
|
+
});
|
|
16243
|
+
|
|
16244
|
+
T['io.flow.billing.v0.unions.bank_account_form'] = PropTypes.oneOfType([
|
|
16245
|
+
T['io.flow.billing.v0.models.bank_account_form_info'],
|
|
16246
|
+
T['io.flow.billing.v0.models.bank_account_form_simple'],
|
|
16247
|
+
]);
|
|
16248
|
+
|
|
15986
16249
|
T['io.flow.internal.v0.models.string_feature_rule_form'] = PropTypes.exact({
|
|
15987
16250
|
discriminator: PropTypes.oneOf(['string']).isRequired,
|
|
15988
16251
|
query: PropTypes.string.isRequired,
|
|
@@ -17087,6 +17350,15 @@ T['io.flow.internal.v0.models.dimension_estimate_ops_input'] = PropTypes.exact({
|
|
|
17087
17350
|
weight_value: PropTypes.string,
|
|
17088
17351
|
});
|
|
17089
17352
|
|
|
17353
|
+
T['io.flow.internal.v0.enums.pv_decision'] = PropTypes.oneOf(['uphold', 'remove']);
|
|
17354
|
+
|
|
17355
|
+
T['io.flow.internal.v0.models.dg_class_assessment'] = PropTypes.exact({
|
|
17356
|
+
dg_class: PropTypes.string.isRequired,
|
|
17357
|
+
decision: T['io.flow.internal.v0.enums.pv_decision'].isRequired,
|
|
17358
|
+
confidence: PropTypes.number.isRequired,
|
|
17359
|
+
reasoning: PropTypes.string.isRequired,
|
|
17360
|
+
});
|
|
17361
|
+
|
|
17090
17362
|
T['io.flow.experience.v0.enums.delivered_duty_display_type'] = PropTypes.oneOf(['all', 'single']);
|
|
17091
17363
|
T['io.flow.internal.v0.enums.delivered_duty_option_message_type'] = PropTypes.oneOf(['warning', 'notification']);
|
|
17092
17364
|
|
|
@@ -17103,20 +17375,6 @@ T['io.flow.internal.v0.models.delivered_duty_option_message'] = PropTypes.exact(
|
|
|
17103
17375
|
|
|
17104
17376
|
T['io.flow.common.v0.enums.delivered_duty'] = PropTypes.oneOf(['paid', 'unpaid']);
|
|
17105
17377
|
|
|
17106
|
-
T['io.flow.ratecard.v0.models.ratecard_lane_import_form'] = PropTypes.exact({
|
|
17107
|
-
ratecard_owner: T['io.flow.fulfillment.v0.enums.ratecard_owner'].isRequired,
|
|
17108
|
-
service: PropTypes.string.isRequired,
|
|
17109
|
-
currency: PropTypes.string.isRequired,
|
|
17110
|
-
delivered_duty: T['io.flow.common.v0.enums.delivered_duty'].isRequired,
|
|
17111
|
-
origin: T['io.flow.common.v0.models.zone'].isRequired,
|
|
17112
|
-
destination: T['io.flow.common.v0.models.zone'].isRequired,
|
|
17113
|
-
shipment_window: T['io.flow.ratecard.v0.models.shipment_window'].isRequired,
|
|
17114
|
-
dim_factor: PropTypes.number.isRequired,
|
|
17115
|
-
weight_unit: T['io.flow.common.v0.enums.unit_of_measurement'].isRequired,
|
|
17116
|
-
distance_unit: T['io.flow.common.v0.enums.unit_of_measurement'].isRequired,
|
|
17117
|
-
rates: PropTypes.arrayOf(T['io.flow.ratecard.v0.models.ratecard_rate_form']).isRequired,
|
|
17118
|
-
});
|
|
17119
|
-
|
|
17120
17378
|
T['io.flow.experience.v0.models.order_builder_delivered_duty_form'] = PropTypes.exact({
|
|
17121
17379
|
delivered_duty: T['io.flow.common.v0.enums.delivered_duty'].isRequired,
|
|
17122
17380
|
});
|
|
@@ -17313,7 +17571,7 @@ T['io.flow.internal.v0.models.report_filter'] = PropTypes.exact({
|
|
|
17313
17571
|
source_type: T['io.flow.internal.v0.enums.source_type_filter'],
|
|
17314
17572
|
order_payment_source: T['io.flow.experience.v0.enums.order_payment_source_type'],
|
|
17315
17573
|
amount_range: T['io.flow.internal.v0.models.report_amount_range'],
|
|
17316
|
-
|
|
17574
|
+
account_currencies: PropTypes.arrayOf(T['io.flow.internal.v0.enums.account_currency_filter']),
|
|
17317
17575
|
channel_id: PropTypes.string,
|
|
17318
17576
|
});
|
|
17319
17577
|
|
|
@@ -17352,16 +17610,26 @@ T['io.flow.internal.v0.models.sales_payment_record'] = PropTypes.exact({
|
|
|
17352
17610
|
payment_is: T['io.flow.internal.v0.models.payment_is'].isRequired,
|
|
17353
17611
|
price_inclusivity: T['io.flow.internal.v0.models.price_inclusivity'],
|
|
17354
17612
|
destination_country: PropTypes.string.isRequired,
|
|
17613
|
+
destination_province: PropTypes.string,
|
|
17355
17614
|
fulfilled_at: PropTypes.string,
|
|
17356
17615
|
reconciliation: T['io.flow.internal.v0.models.reporting_reconciliation'],
|
|
17357
17616
|
is_eu_destination: PropTypes.bool,
|
|
17358
17617
|
debug_url: PropTypes.string,
|
|
17359
17618
|
});
|
|
17360
17619
|
|
|
17620
|
+
T['io.flow.internal.v0.models.sales_payment_record_upserted'] = PropTypes.exact({
|
|
17621
|
+
discriminator: PropTypes.oneOf(['sales_payment_record_upserted']).isRequired,
|
|
17622
|
+
event_id: PropTypes.string.isRequired,
|
|
17623
|
+
timestamp: PropTypes.string.isRequired,
|
|
17624
|
+
organization: PropTypes.string.isRequired,
|
|
17625
|
+
sales_payment_record: T['io.flow.internal.v0.models.sales_payment_record'].isRequired,
|
|
17626
|
+
});
|
|
17627
|
+
|
|
17361
17628
|
T['io.flow.label.v0.models.shipping_label_lane_summary'] = PropTypes.exact({
|
|
17362
17629
|
id: PropTypes.string,
|
|
17363
17630
|
ratecard: T['io.flow.label.v0.models.shipping_label_ratecard_summary'].isRequired,
|
|
17364
17631
|
weight_break: PropTypes.number,
|
|
17632
|
+
dim_factor: PropTypes.number,
|
|
17365
17633
|
});
|
|
17366
17634
|
|
|
17367
17635
|
T['io.flow.experience.v0.models.allocation_order_summary'] = PropTypes.exact({
|
|
@@ -17763,6 +18031,111 @@ T['io.flow.internal.v0.models.crypto_authentication'] = PropTypes.exact({
|
|
|
17763
18031
|
signature_secret_reference: PropTypes.string.isRequired,
|
|
17764
18032
|
});
|
|
17765
18033
|
|
|
18034
|
+
T['io.flow.internal.v0.enums.cpsc_file_type'] = PropTypes.oneOf(['GeRegistered', 'PreRegistered']);
|
|
18035
|
+
|
|
18036
|
+
T['io.flow.internal.v0.models.cpsc_queue_message'] = PropTypes.exact({
|
|
18037
|
+
filePath: PropTypes.string.isRequired,
|
|
18038
|
+
merchantId: PropTypes.string.isRequired,
|
|
18039
|
+
fileType: T['io.flow.internal.v0.enums.cpsc_file_type'].isRequired,
|
|
18040
|
+
});
|
|
18041
|
+
|
|
18042
|
+
T['io.flow.internal.v0.models.cpsc_queue_envelope'] = PropTypes.exact({
|
|
18043
|
+
messageType: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
18044
|
+
message: T['io.flow.internal.v0.models.cpsc_queue_message'].isRequired,
|
|
18045
|
+
});
|
|
18046
|
+
|
|
18047
|
+
T['io.flow.internal.v0.enums.cpsc_point_of_contact_type'] = PropTypes.oneOf(['Importer', 'Manufacturer', 'Laboratory', 'Broker', 'Other']);
|
|
18048
|
+
T['io.flow.internal.v0.enums.cpsc_lab_type'] = PropTypes.oneOf(['ITL', 'LAB', 'NOL']);
|
|
18049
|
+
T['io.flow.internal.v0.enums.cpsc_lot_number_assigned_by'] = PropTypes.oneOf(['Seller', 'Manufacturer']);
|
|
18050
|
+
T['io.flow.internal.v0.enums.cpsc_yes_no'] = PropTypes.oneOf(['Y', 'N']);
|
|
18051
|
+
T['io.flow.internal.v0.enums.cpsc_certificate_type'] = PropTypes.oneOf(['GCC', 'CPC']);
|
|
18052
|
+
|
|
18053
|
+
T['io.flow.internal.v0.enums.cpsc_primary_product_id_type'] = PropTypes.oneOf([
|
|
18054
|
+
'GTIN',
|
|
18055
|
+
'UPC',
|
|
18056
|
+
'SKU',
|
|
18057
|
+
'Model Number',
|
|
18058
|
+
'Serial Number',
|
|
18059
|
+
'Registered Number',
|
|
18060
|
+
'Alternate Identifier',
|
|
18061
|
+
]);
|
|
18062
|
+
|
|
18063
|
+
T['io.flow.internal.v0.models.cpsc_product_registration'] = PropTypes.exact({
|
|
18064
|
+
product_update: PropTypes.bool.isRequired,
|
|
18065
|
+
current_version_id: PropTypes.string,
|
|
18066
|
+
new_version_id: PropTypes.string.isRequired,
|
|
18067
|
+
primary_product_id: PropTypes.string.isRequired,
|
|
18068
|
+
primary_product_id_type: T['io.flow.internal.v0.enums.cpsc_primary_product_id_type'].isRequired,
|
|
18069
|
+
gtin: PropTypes.string,
|
|
18070
|
+
upc: PropTypes.string,
|
|
18071
|
+
sku: PropTypes.string,
|
|
18072
|
+
model_number: PropTypes.string,
|
|
18073
|
+
serial_number: PropTypes.string,
|
|
18074
|
+
registered_number: PropTypes.string,
|
|
18075
|
+
alternate_identifier: PropTypes.string,
|
|
18076
|
+
certificate_type: T['io.flow.internal.v0.enums.cpsc_certificate_type'].isRequired,
|
|
18077
|
+
product_name: PropTypes.string.isRequired,
|
|
18078
|
+
trade_brand_name: PropTypes.string,
|
|
18079
|
+
product_description: PropTypes.string,
|
|
18080
|
+
product_color: PropTypes.string,
|
|
18081
|
+
product_style: PropTypes.string,
|
|
18082
|
+
manufacturer_is_new: T['io.flow.internal.v0.enums.cpsc_yes_no'],
|
|
18083
|
+
manufacturer_gln: PropTypes.string,
|
|
18084
|
+
manufacturer_alternate_id: PropTypes.string,
|
|
18085
|
+
manufacturer_name: PropTypes.string,
|
|
18086
|
+
small_batch_manufacturer_cpsc_id: PropTypes.string,
|
|
18087
|
+
manufacturer_address_line_1: PropTypes.string,
|
|
18088
|
+
manufacturer_address_line_2: PropTypes.string,
|
|
18089
|
+
manufacturer_apt_suite_number: PropTypes.string,
|
|
18090
|
+
manufacturer_city: PropTypes.string,
|
|
18091
|
+
manufacturer_state_province: PropTypes.string,
|
|
18092
|
+
manufacturer_country: PropTypes.string,
|
|
18093
|
+
manufacturer_zip_postal_code: PropTypes.string,
|
|
18094
|
+
manufacturer_phone: PropTypes.string,
|
|
18095
|
+
manufacturer_email: PropTypes.string,
|
|
18096
|
+
manufacture_date: PropTypes.string.isRequired,
|
|
18097
|
+
production_start_date: PropTypes.string,
|
|
18098
|
+
production_end_date: PropTypes.string,
|
|
18099
|
+
lot_number: PropTypes.string,
|
|
18100
|
+
lot_number_assigned_by: T['io.flow.internal.v0.enums.cpsc_lot_number_assigned_by'],
|
|
18101
|
+
lab_1_type: T['io.flow.internal.v0.enums.cpsc_lab_type'].isRequired,
|
|
18102
|
+
lab_1_is_new: T['io.flow.internal.v0.enums.cpsc_yes_no'],
|
|
18103
|
+
lab_1_cpsc_id: PropTypes.string,
|
|
18104
|
+
lab_1_alternate_id: PropTypes.string,
|
|
18105
|
+
lab_1_gln: PropTypes.string,
|
|
18106
|
+
lab_1_name: PropTypes.string,
|
|
18107
|
+
lab_1_address_line_1: PropTypes.string,
|
|
18108
|
+
lab_1_address_line_2: PropTypes.string,
|
|
18109
|
+
lab_1_apt_suite_number: PropTypes.string,
|
|
18110
|
+
lab_1_city: PropTypes.string,
|
|
18111
|
+
lab_1_state_province: PropTypes.string,
|
|
18112
|
+
lab_1_country: PropTypes.string,
|
|
18113
|
+
lab_1_zip_postal_code: PropTypes.string,
|
|
18114
|
+
lab_1_phone: PropTypes.string,
|
|
18115
|
+
lab_1_email: PropTypes.string,
|
|
18116
|
+
lab_1_citation_codes: PropTypes.string.isRequired,
|
|
18117
|
+
lab_1_test_report_id: PropTypes.string,
|
|
18118
|
+
lab_1_test_url: PropTypes.string,
|
|
18119
|
+
lab_1_test_report_access_key: PropTypes.string,
|
|
18120
|
+
lab_1_is_component: PropTypes.bool,
|
|
18121
|
+
lab_1_component_description: PropTypes.string,
|
|
18122
|
+
last_test_date: PropTypes.string,
|
|
18123
|
+
poc_for_test_records: T['io.flow.internal.v0.enums.cpsc_point_of_contact_type'].isRequired,
|
|
18124
|
+
poc_is_new: T['io.flow.internal.v0.enums.cpsc_yes_no'],
|
|
18125
|
+
poc_alternate_id: PropTypes.string,
|
|
18126
|
+
poc_gln: PropTypes.string,
|
|
18127
|
+
poc_name: PropTypes.string,
|
|
18128
|
+
poc_address_line_1: PropTypes.string,
|
|
18129
|
+
poc_address_line_2: PropTypes.string,
|
|
18130
|
+
poc_apt_suite_number: PropTypes.string,
|
|
18131
|
+
poc_city: PropTypes.string,
|
|
18132
|
+
poc_state_province: PropTypes.string,
|
|
18133
|
+
poc_country: PropTypes.string,
|
|
18134
|
+
poc_zip_postal_code: PropTypes.string,
|
|
18135
|
+
poc_phone: PropTypes.string,
|
|
18136
|
+
poc_email: PropTypes.string,
|
|
18137
|
+
});
|
|
18138
|
+
|
|
17766
18139
|
T['io.flow.internal.v0.models.waste_electrical_and_electronic_equipment_compliance_data'] = PropTypes.exact({
|
|
17767
18140
|
discriminator: PropTypes.oneOf(['weee']).isRequired,
|
|
17768
18141
|
label: PropTypes.string.isRequired,
|
|
@@ -17903,6 +18276,7 @@ T['io.flow.internal.v0.enums.item_harmonization_status'] = PropTypes.oneOf([
|
|
|
17903
18276
|
'non_classifiable_not_enough_information',
|
|
17904
18277
|
'exempt',
|
|
17905
18278
|
'manual_classification_required',
|
|
18279
|
+
'unserviceable_taxonomy',
|
|
17906
18280
|
]);
|
|
17907
18281
|
|
|
17908
18282
|
T['io.flow.internal.v0.models.no_classification_form'] = PropTypes.exact({
|
|
@@ -18216,13 +18590,6 @@ T['io.flow.ratecard.v0.models.ratecard_version'] = PropTypes.exact({
|
|
|
18216
18590
|
ratecard: T['io.flow.ratecard.v0.models.ratecard'].isRequired,
|
|
18217
18591
|
});
|
|
18218
18592
|
|
|
18219
|
-
T['io.flow.ratecard.v0.models.ratecard_rate_version'] = PropTypes.exact({
|
|
18220
|
-
id: PropTypes.string.isRequired,
|
|
18221
|
-
timestamp: PropTypes.string.isRequired,
|
|
18222
|
-
type: T['io.flow.common.v0.enums.change_type'].isRequired,
|
|
18223
|
-
ratecard_rate: T['io.flow.ratecard.v0.models.ratecard_rate'].isRequired,
|
|
18224
|
-
});
|
|
18225
|
-
|
|
18226
18593
|
T['io.flow.ratecard.v0.models.dimension_estimate_version'] = PropTypes.exact({
|
|
18227
18594
|
id: PropTypes.string.isRequired,
|
|
18228
18595
|
timestamp: PropTypes.string.isRequired,
|
|
@@ -18589,41 +18956,10 @@ T['io.flow.internal.v0.enums.channel_order_acceptance_rejection_reason'] = PropT
|
|
|
18589
18956
|
'organization_deactivated',
|
|
18590
18957
|
]);
|
|
18591
18958
|
|
|
18592
|
-
T['io.flow.
|
|
18959
|
+
T['io.flow.internal.v0.models.external_order_summary'] = PropTypes.exact({
|
|
18593
18960
|
id: PropTypes.string.isRequired,
|
|
18594
18961
|
edit_ids: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
18595
|
-
|
|
18596
|
-
|
|
18597
|
-
T['io.flow.channel.shopify.v0.models.channel_shopify_order_state'] = PropTypes.exact({
|
|
18598
|
-
id: PropTypes.string.isRequired,
|
|
18599
|
-
shopify_order_summary: T['io.flow.channel.shopify.v0.models.channel_shopify_order_summary'].isRequired,
|
|
18600
|
-
status: T['io.flow.channel.internal.v0.enums.channel_order_acceptance_status'].isRequired,
|
|
18601
|
-
reasons: PropTypes.arrayOf(T['io.flow.channel.shopify.v0.models.channel_shopify_order_state_reason']),
|
|
18602
|
-
external_order_summary: T['io.flow.channel.shopify.v0.models.external_order_summary'],
|
|
18603
|
-
});
|
|
18604
|
-
|
|
18605
|
-
T['io.flow.channel.internal.v0.models.channel_order_acceptance'] = PropTypes.exact({
|
|
18606
|
-
id: PropTypes.string.isRequired,
|
|
18607
|
-
organization_id: PropTypes.string.isRequired,
|
|
18608
|
-
order_number: PropTypes.string.isRequired,
|
|
18609
|
-
channel_id: PropTypes.string.isRequired,
|
|
18610
|
-
external_order_reference: PropTypes.string.isRequired,
|
|
18611
|
-
payment_request_id: PropTypes.string,
|
|
18612
|
-
order_payment_request_ids: PropTypes.arrayOf(PropTypes.string),
|
|
18613
|
-
order_edit_payment_request_ids: PropTypes.arrayOf(PropTypes.string),
|
|
18614
|
-
status: T['io.flow.channel.internal.v0.enums.channel_order_acceptance_status'].isRequired,
|
|
18615
|
-
reasons: PropTypes.arrayOf(T['io.flow.channel.internal.v0.models.channel_order_acceptance_reason']).isRequired,
|
|
18616
|
-
next_action_from: T['io.flow.channel.internal.v0.enums.channel_order_acceptance_next_action_from'],
|
|
18617
|
-
order_created_at: PropTypes.string,
|
|
18618
|
-
order_updated_at: PropTypes.string,
|
|
18619
|
-
order_edit_summary: T['io.flow.channel.internal.v0.models.order_edit_summary'],
|
|
18620
|
-
payment_source: T['io.flow.channel.internal.v0.enums.order_payment_source_type'],
|
|
18621
|
-
external_order_summary: T['io.flow.channel.shopify.v0.models.external_order_summary'],
|
|
18622
|
-
});
|
|
18623
|
-
|
|
18624
|
-
T['io.flow.channel.internal.v0.models.channel_order_acceptance_details'] = PropTypes.exact({
|
|
18625
|
-
order_acceptance: T['io.flow.channel.internal.v0.models.channel_order_acceptance'].isRequired,
|
|
18626
|
-
external_order: PropTypes.object.isRequired,
|
|
18962
|
+
created_at: PropTypes.string,
|
|
18627
18963
|
});
|
|
18628
18964
|
|
|
18629
18965
|
T['io.flow.internal.v0.enums.order_payment_source_type'] = PropTypes.oneOf(['globale', 'third_party']);
|
|
@@ -19162,122 +19498,6 @@ T['io.flow.common.v0.models.repeat_hourly'] = PropTypes.exact({
|
|
|
19162
19498
|
interval: PropTypes.number.isRequired,
|
|
19163
19499
|
});
|
|
19164
19500
|
|
|
19165
|
-
T['io.flow.common.v0.models.channel_reference'] = PropTypes.exact({
|
|
19166
|
-
id: PropTypes.string.isRequired,
|
|
19167
|
-
});
|
|
19168
|
-
|
|
19169
|
-
T['io.flow.channel.internal.v0.models.channel_shop_statistics'] = PropTypes.exact({
|
|
19170
|
-
id: PropTypes.string.isRequired,
|
|
19171
|
-
channel: T['io.flow.common.v0.models.channel_reference'].isRequired,
|
|
19172
|
-
initial_catalog_synced_at: PropTypes.string,
|
|
19173
|
-
catalog_sync_duration: PropTypes.number,
|
|
19174
|
-
catalog_products_count: PropTypes.number,
|
|
19175
|
-
});
|
|
19176
|
-
|
|
19177
|
-
T['io.flow.shopify.markets.internal.v0.models.shopify_markets_shop_summary'] = PropTypes.exact({
|
|
19178
|
-
organization: T['io.flow.common.v0.models.organization_summary'].isRequired,
|
|
19179
|
-
channel: T['io.flow.common.v0.models.channel_reference'].isRequired,
|
|
19180
|
-
});
|
|
19181
|
-
|
|
19182
|
-
T['io.flow.shopify.markets.internal.v0.models.shopify_markets_shop'] = PropTypes.exact({
|
|
19183
|
-
id: PropTypes.string.isRequired,
|
|
19184
|
-
shopify_shop_id: PropTypes.string,
|
|
19185
|
-
channel: T['io.flow.common.v0.models.channel_reference'].isRequired,
|
|
19186
|
-
domain: PropTypes.string.isRequired,
|
|
19187
|
-
myshopify_domain: PropTypes.string.isRequired,
|
|
19188
|
-
organization_id: PropTypes.string.isRequired,
|
|
19189
|
-
shop: PropTypes.string.isRequired,
|
|
19190
|
-
created_at: PropTypes.string.isRequired,
|
|
19191
|
-
shared_secret_masked: PropTypes.string.isRequired,
|
|
19192
|
-
api_key_masked: PropTypes.string,
|
|
19193
|
-
api_password_masked: PropTypes.string,
|
|
19194
|
-
access_token_masked: PropTypes.string,
|
|
19195
|
-
shopify_plan_name: T['io.flow.shopify.external.v0.enums.shopify_plan_name'],
|
|
19196
|
-
catalog_publication_owner: T['io.flow.channel.shopify.internal.v0.enums.catalog_publication_owner'],
|
|
19197
|
-
fast_sellability_completed_at: PropTypes.string,
|
|
19198
|
-
});
|
|
19199
|
-
|
|
19200
|
-
T['io.flow.shopify.markets.internal.event.v0.models.shopify_markets_shop_upserted'] = PropTypes.exact({
|
|
19201
|
-
discriminator: PropTypes.oneOf(['shopify_markets_shop_upserted']).isRequired,
|
|
19202
|
-
event_id: PropTypes.string.isRequired,
|
|
19203
|
-
timestamp: PropTypes.string.isRequired,
|
|
19204
|
-
organization: PropTypes.string.isRequired,
|
|
19205
|
-
shopify_markets_shop: T['io.flow.shopify.markets.internal.v0.models.shopify_markets_shop'].isRequired,
|
|
19206
|
-
});
|
|
19207
|
-
|
|
19208
|
-
T['io.flow.channel.v0.models.channel_currency'] = PropTypes.exact({
|
|
19209
|
-
id: PropTypes.string.isRequired,
|
|
19210
|
-
currency: PropTypes.string.isRequired,
|
|
19211
|
-
channel: T['io.flow.common.v0.models.channel_reference'].isRequired,
|
|
19212
|
-
capabilities: PropTypes.arrayOf(T['io.flow.channel.v0.enums.channel_currency_capability']).isRequired,
|
|
19213
|
-
});
|
|
19214
|
-
|
|
19215
|
-
T['io.flow.internal.v0.models.shopify_markets_shop_summary'] = PropTypes.exact({
|
|
19216
|
-
organization: T['io.flow.common.v0.models.organization_summary'].isRequired,
|
|
19217
|
-
channel: T['io.flow.common.v0.models.channel_reference'].isRequired,
|
|
19218
|
-
});
|
|
19219
|
-
|
|
19220
|
-
T['io.flow.internal.v0.models.shopify_markets_shop'] = PropTypes.exact({
|
|
19221
|
-
id: PropTypes.string.isRequired,
|
|
19222
|
-
shopify_shop_id: PropTypes.string,
|
|
19223
|
-
channel: T['io.flow.common.v0.models.channel_reference'].isRequired,
|
|
19224
|
-
domain: PropTypes.string.isRequired,
|
|
19225
|
-
myshopify_domain: PropTypes.string.isRequired,
|
|
19226
|
-
organization_id: PropTypes.string.isRequired,
|
|
19227
|
-
shop: PropTypes.string.isRequired,
|
|
19228
|
-
created_at: PropTypes.string.isRequired,
|
|
19229
|
-
shared_secret_masked: PropTypes.string.isRequired,
|
|
19230
|
-
api_key_masked: PropTypes.string,
|
|
19231
|
-
api_password_masked: PropTypes.string,
|
|
19232
|
-
access_token_masked: PropTypes.string,
|
|
19233
|
-
shopify_plan_name: T['io.flow.shopify.external.v0.enums.shopify_plan_name'],
|
|
19234
|
-
catalog_publication_owner: T['io.flow.internal.v0.enums.catalog_publication_owner'],
|
|
19235
|
-
fast_sellability_completed_at: PropTypes.string,
|
|
19236
|
-
});
|
|
19237
|
-
|
|
19238
|
-
T['io.flow.internal.v0.models.shopify_markets_shop_upserted'] = PropTypes.exact({
|
|
19239
|
-
discriminator: PropTypes.oneOf(['shopify_markets_shop_upserted']).isRequired,
|
|
19240
|
-
event_id: PropTypes.string.isRequired,
|
|
19241
|
-
timestamp: PropTypes.string.isRequired,
|
|
19242
|
-
organization: PropTypes.string.isRequired,
|
|
19243
|
-
shopify_markets_shop: T['io.flow.internal.v0.models.shopify_markets_shop'].isRequired,
|
|
19244
|
-
});
|
|
19245
|
-
|
|
19246
|
-
T['io.flow.internal.v0.models.internal_channel_rate'] = PropTypes.exact({
|
|
19247
|
-
id: PropTypes.string.isRequired,
|
|
19248
|
-
channel: T['io.flow.common.v0.models.channel_reference'].isRequired,
|
|
19249
|
-
base: PropTypes.string.isRequired,
|
|
19250
|
-
target: PropTypes.string.isRequired,
|
|
19251
|
-
effective_at: PropTypes.string.isRequired,
|
|
19252
|
-
spot_rate: PropTypes.number.isRequired,
|
|
19253
|
-
flow_margin: PropTypes.number.isRequired,
|
|
19254
|
-
flow_rate: PropTypes.number.isRequired,
|
|
19255
|
-
rate_lock: T['io.flow.common.v0.models.duration'].isRequired,
|
|
19256
|
-
});
|
|
19257
|
-
|
|
19258
|
-
T['io.flow.internal.v0.models.internal_channel_rate_upserted'] = PropTypes.exact({
|
|
19259
|
-
discriminator: PropTypes.oneOf(['internal_channel_rate_upserted']).isRequired,
|
|
19260
|
-
event_id: PropTypes.string.isRequired,
|
|
19261
|
-
timestamp: PropTypes.string.isRequired,
|
|
19262
|
-
rate: T['io.flow.internal.v0.models.internal_channel_rate'].isRequired,
|
|
19263
|
-
});
|
|
19264
|
-
|
|
19265
|
-
T['io.flow.internal.v0.models.channel_shop_statistics'] = PropTypes.exact({
|
|
19266
|
-
id: PropTypes.string.isRequired,
|
|
19267
|
-
channel: T['io.flow.common.v0.models.channel_reference'].isRequired,
|
|
19268
|
-
initial_catalog_synced_at: PropTypes.string,
|
|
19269
|
-
catalog_sync_duration: PropTypes.number,
|
|
19270
|
-
catalog_products_count: PropTypes.number,
|
|
19271
|
-
});
|
|
19272
|
-
|
|
19273
|
-
T['io.flow.internal.v0.models.channel_shop_statistics_upserted'] = PropTypes.exact({
|
|
19274
|
-
discriminator: PropTypes.oneOf(['channel_shop_statistics_upserted']).isRequired,
|
|
19275
|
-
event_id: PropTypes.string.isRequired,
|
|
19276
|
-
timestamp: PropTypes.string.isRequired,
|
|
19277
|
-
organization: PropTypes.string.isRequired,
|
|
19278
|
-
channel_shop_statistics: T['io.flow.internal.v0.models.channel_shop_statistics'].isRequired,
|
|
19279
|
-
});
|
|
19280
|
-
|
|
19281
19501
|
T['io.flow.common.v0.models.dimensions'] = PropTypes.exact({
|
|
19282
19502
|
product: T['io.flow.common.v0.models.dimension'],
|
|
19283
19503
|
packaging: T['io.flow.common.v0.models.dimension'],
|
|
@@ -19352,38 +19572,6 @@ T['io.flow.common.v0.models.address'] = PropTypes.exact({
|
|
|
19352
19572
|
longitude: PropTypes.string,
|
|
19353
19573
|
});
|
|
19354
19574
|
|
|
19355
|
-
T['io.flow.billing.bank.account.v0.models.bank_account_info_kor'] = PropTypes.exact({
|
|
19356
|
-
discriminator: PropTypes.oneOf(['kor']).isRequired,
|
|
19357
|
-
name: PropTypes.string,
|
|
19358
|
-
address: T['io.flow.common.v0.models.address'],
|
|
19359
|
-
phone: PropTypes.string,
|
|
19360
|
-
email: PropTypes.string,
|
|
19361
|
-
bank_account_number: PropTypes.string.isRequired,
|
|
19362
|
-
bank_routing_number: PropTypes.string,
|
|
19363
|
-
bank_name: PropTypes.string,
|
|
19364
|
-
bank_address: T['io.flow.common.v0.models.address'],
|
|
19365
|
-
});
|
|
19366
|
-
|
|
19367
|
-
T['io.flow.billing.bank.account.v0.unions.bank_account_info'] = PropTypes.oneOfType([
|
|
19368
|
-
T['io.flow.billing.bank.account.v0.models.bank_account_info_usa'],
|
|
19369
|
-
T['io.flow.billing.bank.account.v0.models.bank_account_info_can'],
|
|
19370
|
-
T['io.flow.billing.bank.account.v0.models.bank_account_info_gbr'],
|
|
19371
|
-
T['io.flow.billing.bank.account.v0.models.bank_account_info_fra'],
|
|
19372
|
-
T['io.flow.billing.bank.account.v0.models.bank_account_info_ita'],
|
|
19373
|
-
T['io.flow.billing.bank.account.v0.models.bank_account_info_kor'],
|
|
19374
|
-
T['io.flow.billing.bank.account.v0.models.bank_account_info_kor_v2'],
|
|
19375
|
-
]);
|
|
19376
|
-
|
|
19377
|
-
T['io.flow.billing.v0.models.bank_account_form_info'] = PropTypes.exact({
|
|
19378
|
-
discriminator: PropTypes.oneOf(['info']).isRequired,
|
|
19379
|
-
info: T['io.flow.billing.bank.account.v0.unions.bank_account_info'].isRequired,
|
|
19380
|
-
});
|
|
19381
|
-
|
|
19382
|
-
T['io.flow.billing.v0.unions.bank_account_form'] = PropTypes.oneOfType([
|
|
19383
|
-
T['io.flow.billing.v0.models.bank_account_form_info'],
|
|
19384
|
-
T['io.flow.billing.v0.models.bank_account_form_simple'],
|
|
19385
|
-
]);
|
|
19386
|
-
|
|
19387
19575
|
T['io.flow.merchant.onboarding.v0.models.operations_contact'] = PropTypes.exact({
|
|
19388
19576
|
company: PropTypes.string,
|
|
19389
19577
|
email: PropTypes.string,
|
|
@@ -19884,6 +20072,14 @@ T['io.flow.billing.v0.models.transaction_metadata_trueup'] = PropTypes.exact({
|
|
|
19884
20072
|
actual: T['io.flow.billing.v0.models.transaction_metadata_trueup_data'].isRequired,
|
|
19885
20073
|
});
|
|
19886
20074
|
|
|
20075
|
+
T['io.flow.billing.v0.models.transaction_metadata_shipping_label'] = PropTypes.exact({
|
|
20076
|
+
discriminator: PropTypes.oneOf(['shipping_label']).isRequired,
|
|
20077
|
+
request_method: T['io.flow.label.v0.enums.label_request_method'],
|
|
20078
|
+
carrier: T['io.flow.billing.v0.models.transaction_metadata_shipping_label_carrier'].isRequired,
|
|
20079
|
+
revenue_share_percentage: PropTypes.number,
|
|
20080
|
+
actual: T['io.flow.billing.v0.models.transaction_metadata_trueup_data'],
|
|
20081
|
+
});
|
|
20082
|
+
|
|
19887
20083
|
T['io.flow.billing.v0.unions.transaction_metadata'] = PropTypes.oneOfType([
|
|
19888
20084
|
T['io.flow.billing.v0.models.transaction_metadata_shipping_label'],
|
|
19889
20085
|
T['io.flow.billing.v0.models.transaction_metadata_channel'],
|
|
@@ -20285,7 +20481,7 @@ T['io.flow.internal.v0.models.channel_order_acceptance'] = PropTypes.exact({
|
|
|
20285
20481
|
order_updated_at: PropTypes.string,
|
|
20286
20482
|
order_edit_summary: T['io.flow.internal.v0.models.order_edit_summary'],
|
|
20287
20483
|
payment_source: T['io.flow.internal.v0.enums.order_payment_source_type'],
|
|
20288
|
-
external_order_summary: T['io.flow.
|
|
20484
|
+
external_order_summary: T['io.flow.internal.v0.models.external_order_summary'],
|
|
20289
20485
|
});
|
|
20290
20486
|
|
|
20291
20487
|
T['io.flow.internal.v0.models.channel_order_acceptance_upserted'] = PropTypes.exact({
|
|
@@ -20675,6 +20871,122 @@ T['io.flow.internal.v0.models.billing_organization_processing_rates_upserted'] =
|
|
|
20675
20871
|
rates: T['io.flow.internal.v0.models.billing_organization_processing_rates'].isRequired,
|
|
20676
20872
|
});
|
|
20677
20873
|
|
|
20874
|
+
T['io.flow.common.v0.models.channel_reference'] = PropTypes.exact({
|
|
20875
|
+
id: PropTypes.string.isRequired,
|
|
20876
|
+
});
|
|
20877
|
+
|
|
20878
|
+
T['io.flow.channel.internal.v0.models.channel_shop_statistics'] = PropTypes.exact({
|
|
20879
|
+
id: PropTypes.string.isRequired,
|
|
20880
|
+
channel: T['io.flow.common.v0.models.channel_reference'].isRequired,
|
|
20881
|
+
initial_catalog_synced_at: PropTypes.string,
|
|
20882
|
+
catalog_sync_duration: PropTypes.number,
|
|
20883
|
+
catalog_products_count: PropTypes.number,
|
|
20884
|
+
});
|
|
20885
|
+
|
|
20886
|
+
T['io.flow.shopify.markets.internal.v0.models.shopify_markets_shop_summary'] = PropTypes.exact({
|
|
20887
|
+
organization: T['io.flow.common.v0.models.organization_summary'].isRequired,
|
|
20888
|
+
channel: T['io.flow.common.v0.models.channel_reference'].isRequired,
|
|
20889
|
+
});
|
|
20890
|
+
|
|
20891
|
+
T['io.flow.shopify.markets.internal.v0.models.shopify_markets_shop'] = PropTypes.exact({
|
|
20892
|
+
id: PropTypes.string.isRequired,
|
|
20893
|
+
shopify_shop_id: PropTypes.string,
|
|
20894
|
+
channel: T['io.flow.common.v0.models.channel_reference'].isRequired,
|
|
20895
|
+
domain: PropTypes.string.isRequired,
|
|
20896
|
+
myshopify_domain: PropTypes.string.isRequired,
|
|
20897
|
+
organization_id: PropTypes.string.isRequired,
|
|
20898
|
+
shop: PropTypes.string.isRequired,
|
|
20899
|
+
created_at: PropTypes.string.isRequired,
|
|
20900
|
+
shared_secret_masked: PropTypes.string.isRequired,
|
|
20901
|
+
api_key_masked: PropTypes.string,
|
|
20902
|
+
api_password_masked: PropTypes.string,
|
|
20903
|
+
access_token_masked: PropTypes.string,
|
|
20904
|
+
shopify_plan_name: T['io.flow.shopify.external.v0.enums.shopify_plan_name'],
|
|
20905
|
+
catalog_publication_owner: T['io.flow.channel.shopify.internal.v0.enums.catalog_publication_owner'],
|
|
20906
|
+
fast_sellability_completed_at: PropTypes.string,
|
|
20907
|
+
});
|
|
20908
|
+
|
|
20909
|
+
T['io.flow.shopify.markets.internal.event.v0.models.shopify_markets_shop_upserted'] = PropTypes.exact({
|
|
20910
|
+
discriminator: PropTypes.oneOf(['shopify_markets_shop_upserted']).isRequired,
|
|
20911
|
+
event_id: PropTypes.string.isRequired,
|
|
20912
|
+
timestamp: PropTypes.string.isRequired,
|
|
20913
|
+
organization: PropTypes.string.isRequired,
|
|
20914
|
+
shopify_markets_shop: T['io.flow.shopify.markets.internal.v0.models.shopify_markets_shop'].isRequired,
|
|
20915
|
+
});
|
|
20916
|
+
|
|
20917
|
+
T['io.flow.channel.v0.models.channel_currency'] = PropTypes.exact({
|
|
20918
|
+
id: PropTypes.string.isRequired,
|
|
20919
|
+
currency: PropTypes.string.isRequired,
|
|
20920
|
+
channel: T['io.flow.common.v0.models.channel_reference'].isRequired,
|
|
20921
|
+
capabilities: PropTypes.arrayOf(T['io.flow.channel.v0.enums.channel_currency_capability']).isRequired,
|
|
20922
|
+
});
|
|
20923
|
+
|
|
20924
|
+
T['io.flow.internal.v0.models.shopify_markets_shop_summary'] = PropTypes.exact({
|
|
20925
|
+
organization: T['io.flow.common.v0.models.organization_summary'].isRequired,
|
|
20926
|
+
channel: T['io.flow.common.v0.models.channel_reference'].isRequired,
|
|
20927
|
+
});
|
|
20928
|
+
|
|
20929
|
+
T['io.flow.internal.v0.models.shopify_markets_shop'] = PropTypes.exact({
|
|
20930
|
+
id: PropTypes.string.isRequired,
|
|
20931
|
+
shopify_shop_id: PropTypes.string,
|
|
20932
|
+
channel: T['io.flow.common.v0.models.channel_reference'].isRequired,
|
|
20933
|
+
domain: PropTypes.string.isRequired,
|
|
20934
|
+
myshopify_domain: PropTypes.string.isRequired,
|
|
20935
|
+
organization_id: PropTypes.string.isRequired,
|
|
20936
|
+
shop: PropTypes.string.isRequired,
|
|
20937
|
+
created_at: PropTypes.string.isRequired,
|
|
20938
|
+
shared_secret_masked: PropTypes.string.isRequired,
|
|
20939
|
+
api_key_masked: PropTypes.string,
|
|
20940
|
+
api_password_masked: PropTypes.string,
|
|
20941
|
+
access_token_masked: PropTypes.string,
|
|
20942
|
+
shopify_plan_name: T['io.flow.shopify.external.v0.enums.shopify_plan_name'],
|
|
20943
|
+
catalog_publication_owner: T['io.flow.internal.v0.enums.catalog_publication_owner'],
|
|
20944
|
+
fast_sellability_completed_at: PropTypes.string,
|
|
20945
|
+
});
|
|
20946
|
+
|
|
20947
|
+
T['io.flow.internal.v0.models.shopify_markets_shop_upserted'] = PropTypes.exact({
|
|
20948
|
+
discriminator: PropTypes.oneOf(['shopify_markets_shop_upserted']).isRequired,
|
|
20949
|
+
event_id: PropTypes.string.isRequired,
|
|
20950
|
+
timestamp: PropTypes.string.isRequired,
|
|
20951
|
+
organization: PropTypes.string.isRequired,
|
|
20952
|
+
shopify_markets_shop: T['io.flow.internal.v0.models.shopify_markets_shop'].isRequired,
|
|
20953
|
+
});
|
|
20954
|
+
|
|
20955
|
+
T['io.flow.internal.v0.models.internal_channel_rate'] = PropTypes.exact({
|
|
20956
|
+
id: PropTypes.string.isRequired,
|
|
20957
|
+
channel: T['io.flow.common.v0.models.channel_reference'].isRequired,
|
|
20958
|
+
base: PropTypes.string.isRequired,
|
|
20959
|
+
target: PropTypes.string.isRequired,
|
|
20960
|
+
effective_at: PropTypes.string.isRequired,
|
|
20961
|
+
spot_rate: PropTypes.number.isRequired,
|
|
20962
|
+
flow_margin: PropTypes.number.isRequired,
|
|
20963
|
+
flow_rate: PropTypes.number.isRequired,
|
|
20964
|
+
rate_lock: T['io.flow.common.v0.models.duration'].isRequired,
|
|
20965
|
+
});
|
|
20966
|
+
|
|
20967
|
+
T['io.flow.internal.v0.models.internal_channel_rate_upserted'] = PropTypes.exact({
|
|
20968
|
+
discriminator: PropTypes.oneOf(['internal_channel_rate_upserted']).isRequired,
|
|
20969
|
+
event_id: PropTypes.string.isRequired,
|
|
20970
|
+
timestamp: PropTypes.string.isRequired,
|
|
20971
|
+
rate: T['io.flow.internal.v0.models.internal_channel_rate'].isRequired,
|
|
20972
|
+
});
|
|
20973
|
+
|
|
20974
|
+
T['io.flow.internal.v0.models.channel_shop_statistics'] = PropTypes.exact({
|
|
20975
|
+
id: PropTypes.string.isRequired,
|
|
20976
|
+
channel: T['io.flow.common.v0.models.channel_reference'].isRequired,
|
|
20977
|
+
initial_catalog_synced_at: PropTypes.string,
|
|
20978
|
+
catalog_sync_duration: PropTypes.number,
|
|
20979
|
+
catalog_products_count: PropTypes.number,
|
|
20980
|
+
});
|
|
20981
|
+
|
|
20982
|
+
T['io.flow.internal.v0.models.channel_shop_statistics_upserted'] = PropTypes.exact({
|
|
20983
|
+
discriminator: PropTypes.oneOf(['channel_shop_statistics_upserted']).isRequired,
|
|
20984
|
+
event_id: PropTypes.string.isRequired,
|
|
20985
|
+
timestamp: PropTypes.string.isRequired,
|
|
20986
|
+
organization: PropTypes.string.isRequired,
|
|
20987
|
+
channel_shop_statistics: T['io.flow.internal.v0.models.channel_shop_statistics'].isRequired,
|
|
20988
|
+
});
|
|
20989
|
+
|
|
20678
20990
|
T['io.flow.internal.v0.models.billing_order_destination'] = PropTypes.exact({
|
|
20679
20991
|
city: PropTypes.string,
|
|
20680
20992
|
province: PropTypes.string,
|
|
@@ -20755,6 +21067,7 @@ T['io.flow.billing.v0.enums.transaction_source'] = PropTypes.oneOf([
|
|
|
20755
21067
|
'b2b_fee_mor_tax',
|
|
20756
21068
|
'b2b_fee_shipping_tax',
|
|
20757
21069
|
'flat_rate_label',
|
|
21070
|
+
'flat_rate_label_subsidy',
|
|
20758
21071
|
]);
|
|
20759
21072
|
|
|
20760
21073
|
T['io.flow.internal.v0.models.debug_original_transaction_summary'] = PropTypes.exact({
|
|
@@ -20777,6 +21090,7 @@ T['io.flow.internal.v0.models.other_record_order_summary'] = PropTypes.exact({
|
|
|
20777
21090
|
organization: T['io.flow.internal.v0.models.other_record_organization_summary'].isRequired,
|
|
20778
21091
|
number: PropTypes.string.isRequired,
|
|
20779
21092
|
identifiers: T['io.flow.internal.v0.models.other_record_order_summary_identifiers'].isRequired,
|
|
21093
|
+
destination_province: PropTypes.string,
|
|
20780
21094
|
});
|
|
20781
21095
|
|
|
20782
21096
|
T['io.flow.internal.v0.models.other_record_metadata'] = PropTypes.exact({
|
|
@@ -20871,7 +21185,7 @@ T['io.flow.internal.v0.models.bank_payment_detail_attachment'] = PropTypes.exact
|
|
|
20871
21185
|
statement_transactions_url: PropTypes.string,
|
|
20872
21186
|
});
|
|
20873
21187
|
|
|
20874
|
-
T['io.flow.internal.v0.enums.bank_payment_status_code'] = PropTypes.oneOf(['scheduled', 'sent', 'failed']);
|
|
21188
|
+
T['io.flow.internal.v0.enums.bank_payment_status_code'] = PropTypes.oneOf(['scheduled', 'sent', 'failed', 'paid']);
|
|
20875
21189
|
|
|
20876
21190
|
T['io.flow.internal.v0.models.bank_payment_status_single_form'] = PropTypes.exact({
|
|
20877
21191
|
payment_id: PropTypes.string.isRequired,
|
|
@@ -20888,6 +21202,11 @@ T['io.flow.internal.v0.models.bank_payment_status_form'] = PropTypes.exact({
|
|
|
20888
21202
|
failure_reason: T['io.flow.billing.v0.enums.payout_status_failure_code'],
|
|
20889
21203
|
});
|
|
20890
21204
|
|
|
21205
|
+
T['io.flow.billing.v0.models.payout_status_paid'] = PropTypes.exact({
|
|
21206
|
+
code: PropTypes.oneOf(['paid']).isRequired,
|
|
21207
|
+
timestamp: PropTypes.string.isRequired,
|
|
21208
|
+
});
|
|
21209
|
+
|
|
20891
21210
|
T['io.flow.billing.v0.models.payout_status_failed'] = PropTypes.exact({
|
|
20892
21211
|
code: PropTypes.oneOf(['failed']).isRequired,
|
|
20893
21212
|
timestamp: PropTypes.string.isRequired,
|
|
@@ -20908,6 +21227,7 @@ T['io.flow.billing.v0.unions.payout_status'] = PropTypes.oneOfType([
|
|
|
20908
21227
|
T['io.flow.billing.v0.models.payout_status_scheduled'],
|
|
20909
21228
|
T['io.flow.billing.v0.models.payout_status_sent'],
|
|
20910
21229
|
T['io.flow.billing.v0.models.payout_status_failed'],
|
|
21230
|
+
T['io.flow.billing.v0.models.payout_status_paid'],
|
|
20911
21231
|
]);
|
|
20912
21232
|
|
|
20913
21233
|
T['io.flow.billing.v0.models.settlement_payout'] = PropTypes.exact({
|
|
@@ -20934,6 +21254,7 @@ T['io.flow.billing.v0.models.statement'] = PropTypes.exact({
|
|
|
20934
21254
|
settlement: T['io.flow.billing.v0.unions.settlement'].isRequired,
|
|
20935
21255
|
attachments: PropTypes.arrayOf(T['io.flow.billing.v0.models.attachment']).isRequired,
|
|
20936
21256
|
created_at: PropTypes.string.isRequired,
|
|
21257
|
+
period: T['io.flow.common.v0.models.datetime_range'],
|
|
20937
21258
|
});
|
|
20938
21259
|
|
|
20939
21260
|
T['io.flow.billing.v0.models.organization_payout'] = PropTypes.exact({
|
|
@@ -20954,6 +21275,7 @@ T['io.flow.billing.v0.models.channel_statement'] = PropTypes.exact({
|
|
|
20954
21275
|
settlement: T['io.flow.billing.v0.unions.settlement'].isRequired,
|
|
20955
21276
|
attachments: PropTypes.arrayOf(T['io.flow.billing.v0.models.attachment']).isRequired,
|
|
20956
21277
|
created_at: PropTypes.string.isRequired,
|
|
21278
|
+
period: T['io.flow.common.v0.models.datetime_range'],
|
|
20957
21279
|
});
|
|
20958
21280
|
|
|
20959
21281
|
T['io.flow.billing.v0.models.channel_payout'] = PropTypes.exact({
|
|
@@ -21028,7 +21350,7 @@ T['io.flow.internal.v0.models.b2b_fee_shipping_tax_trigger_metadata'] = PropType
|
|
|
21028
21350
|
trigger_type: T['io.flow.internal.v0.enums.b2b_fee_shipping_tax_trigger_type'].isRequired,
|
|
21029
21351
|
});
|
|
21030
21352
|
|
|
21031
|
-
T['io.flow.internal.v0.enums.b2b_fee_mor_tax_trigger_type'] = PropTypes.oneOf(['capture', 'order']);
|
|
21353
|
+
T['io.flow.internal.v0.enums.b2b_fee_mor_tax_trigger_type'] = PropTypes.oneOf(['capture', 'order', 'settings']);
|
|
21032
21354
|
|
|
21033
21355
|
T['io.flow.internal.v0.models.b2b_fee_mor_tax_trigger_metadata'] = PropTypes.exact({
|
|
21034
21356
|
discriminator: PropTypes.oneOf(['b2b_fee_mor_tax_trigger_metadata']).isRequired,
|
|
@@ -22037,6 +22359,7 @@ T['io.flow.internal.v0.models.restriction_rule_form'] = PropTypes.exact({
|
|
|
22037
22359
|
attribute_rule_conditions: T['io.flow.internal.v0.models.attribute_rule'],
|
|
22038
22360
|
keyword_cancelling: PropTypes.arrayOf(T['io.flow.internal.v0.models.keyword_cancelling']),
|
|
22039
22361
|
activation_status: T['io.flow.internal.v0.enums.restriction_rule_activation_status'].isRequired,
|
|
22362
|
+
evaluation_mode: T['io.flow.internal.v0.enums.restriction_rule_evaluation_mode'].isRequired,
|
|
22040
22363
|
});
|
|
22041
22364
|
|
|
22042
22365
|
T['io.flow.internal.v0.models.restriction_rule'] = PropTypes.exact({
|
|
@@ -22057,6 +22380,7 @@ T['io.flow.internal.v0.models.restriction_rule'] = PropTypes.exact({
|
|
|
22057
22380
|
attribute_rule_conditions: T['io.flow.internal.v0.models.attribute_rule'],
|
|
22058
22381
|
keyword_cancelling: PropTypes.arrayOf(T['io.flow.internal.v0.models.keyword_cancelling']),
|
|
22059
22382
|
activation_status: T['io.flow.internal.v0.enums.restriction_rule_activation_status'].isRequired,
|
|
22383
|
+
evaluation_mode: T['io.flow.internal.v0.enums.restriction_rule_evaluation_mode'].isRequired,
|
|
22060
22384
|
});
|
|
22061
22385
|
|
|
22062
22386
|
T['io.flow.internal.v0.models.restriction_rule_upserted'] = PropTypes.exact({
|
|
@@ -22068,6 +22392,99 @@ T['io.flow.internal.v0.models.restriction_rule_upserted'] = PropTypes.exact({
|
|
|
22068
22392
|
|
|
22069
22393
|
T['io.flow.internal.v0.enums.amrutha_item_type'] = PropTypes.oneOf(['physical', 'digital']);
|
|
22070
22394
|
|
|
22395
|
+
T['io.flow.internal.v0.models.pc_review_output'] = PropTypes.exact({
|
|
22396
|
+
discriminator: PropTypes.oneOf(['pc_review_output']).isRequired,
|
|
22397
|
+
hs_code: PropTypes.string.isRequired,
|
|
22398
|
+
alternates: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
22399
|
+
confidence: PropTypes.number.isRequired,
|
|
22400
|
+
reasoning: PropTypes.string.isRequired,
|
|
22401
|
+
});
|
|
22402
|
+
|
|
22403
|
+
T['io.flow.internal.v0.models.dg_review_output'] = PropTypes.exact({
|
|
22404
|
+
discriminator: PropTypes.oneOf(['dg_review_output']).isRequired,
|
|
22405
|
+
assessments: PropTypes.arrayOf(T['io.flow.internal.v0.models.dg_class_assessment']).isRequired,
|
|
22406
|
+
});
|
|
22407
|
+
|
|
22408
|
+
T['io.flow.internal.v0.models.pv_review_output'] = PropTypes.exact({
|
|
22409
|
+
discriminator: PropTypes.oneOf(['pv_review_output']).isRequired,
|
|
22410
|
+
decision: T['io.flow.internal.v0.enums.pv_decision'].isRequired,
|
|
22411
|
+
confidence: PropTypes.number.isRequired,
|
|
22412
|
+
reasoning: PropTypes.string.isRequired,
|
|
22413
|
+
});
|
|
22414
|
+
|
|
22415
|
+
T['io.flow.internal.v0.unions.ai_output'] = PropTypes.oneOfType([
|
|
22416
|
+
T['io.flow.internal.v0.models.pv_review_output'],
|
|
22417
|
+
T['io.flow.internal.v0.models.dg_review_output'],
|
|
22418
|
+
T['io.flow.internal.v0.models.pc_review_output'],
|
|
22419
|
+
]);
|
|
22420
|
+
|
|
22421
|
+
T['io.flow.internal.v0.models.ai_review_failed_item'] = PropTypes.exact({
|
|
22422
|
+
review_id: PropTypes.string.isRequired,
|
|
22423
|
+
organization_id: PropTypes.string.isRequired,
|
|
22424
|
+
});
|
|
22425
|
+
|
|
22426
|
+
T['io.flow.internal.v0.enums.ai_review_failure_reason'] = PropTypes.oneOf([
|
|
22427
|
+
'item_errored',
|
|
22428
|
+
'item_expired',
|
|
22429
|
+
'item_unparseable',
|
|
22430
|
+
'item_image_fetch_failed',
|
|
22431
|
+
'item_undecided',
|
|
22432
|
+
'batch_failed',
|
|
22433
|
+
'batch_timed_out',
|
|
22434
|
+
]);
|
|
22435
|
+
|
|
22436
|
+
T['io.flow.internal.v0.unions.ai_review_context'] = PropTypes.oneOfType([
|
|
22437
|
+
T['io.flow.internal.v0.models.pv_review_context'],
|
|
22438
|
+
T['io.flow.internal.v0.models.dg_review_context'],
|
|
22439
|
+
T['io.flow.internal.v0.models.pc_review_context'],
|
|
22440
|
+
]);
|
|
22441
|
+
|
|
22442
|
+
T['io.flow.internal.v0.enums.ai_review_type'] = PropTypes.oneOf(['pv_review_general', 'pv_review_dg_hazmat', 'pc_review']);
|
|
22443
|
+
|
|
22444
|
+
T['io.flow.internal.v0.models.review_request_item'] = PropTypes.exact({
|
|
22445
|
+
review_type: T['io.flow.internal.v0.enums.ai_review_type'].isRequired,
|
|
22446
|
+
review_id: PropTypes.string.isRequired,
|
|
22447
|
+
context: T['io.flow.internal.v0.unions.ai_review_context'].isRequired,
|
|
22448
|
+
});
|
|
22449
|
+
|
|
22450
|
+
T['io.flow.internal.v0.enums.ai_review_consumer'] = PropTypes.oneOf(['restrictions', 'sellability', 'harmonization']);
|
|
22451
|
+
|
|
22452
|
+
T['io.flow.internal.v0.models.ai_review_result'] = PropTypes.exact({
|
|
22453
|
+
review_id: PropTypes.string.isRequired,
|
|
22454
|
+
organization_id: PropTypes.string.isRequired,
|
|
22455
|
+
consumer: T['io.flow.internal.v0.enums.ai_review_consumer'].isRequired,
|
|
22456
|
+
review_type: T['io.flow.internal.v0.enums.ai_review_type'].isRequired,
|
|
22457
|
+
ai_output: T['io.flow.internal.v0.unions.ai_output'].isRequired,
|
|
22458
|
+
ai_model: PropTypes.string.isRequired,
|
|
22459
|
+
prompt_id: PropTypes.string.isRequired,
|
|
22460
|
+
prompt_version: PropTypes.string.isRequired,
|
|
22461
|
+
});
|
|
22462
|
+
|
|
22463
|
+
T['io.flow.internal.v0.models.ai_review_result_upserted'] = PropTypes.exact({
|
|
22464
|
+
discriminator: PropTypes.oneOf(['ai_review_result_upserted']).isRequired,
|
|
22465
|
+
event_id: PropTypes.string.isRequired,
|
|
22466
|
+
timestamp: PropTypes.string.isRequired,
|
|
22467
|
+
ai_review_result: T['io.flow.internal.v0.models.ai_review_result'].isRequired,
|
|
22468
|
+
});
|
|
22469
|
+
|
|
22470
|
+
T['io.flow.internal.v0.models.ai_review_request_failed'] = PropTypes.exact({
|
|
22471
|
+
discriminator: PropTypes.oneOf(['ai_review_request_failed']).isRequired,
|
|
22472
|
+
event_id: PropTypes.string.isRequired,
|
|
22473
|
+
timestamp: PropTypes.string.isRequired,
|
|
22474
|
+
consumer: T['io.flow.internal.v0.enums.ai_review_consumer'].isRequired,
|
|
22475
|
+
review_type: T['io.flow.internal.v0.enums.ai_review_type'].isRequired,
|
|
22476
|
+
reason: T['io.flow.internal.v0.enums.ai_review_failure_reason'].isRequired,
|
|
22477
|
+
items: PropTypes.arrayOf(T['io.flow.internal.v0.models.ai_review_failed_item']).isRequired,
|
|
22478
|
+
});
|
|
22479
|
+
|
|
22480
|
+
T['io.flow.internal.v0.models.ai_review_batch_submitted'] = PropTypes.exact({
|
|
22481
|
+
discriminator: PropTypes.oneOf(['ai_review_batch_submitted']).isRequired,
|
|
22482
|
+
event_id: PropTypes.string.isRequired,
|
|
22483
|
+
timestamp: PropTypes.string.isRequired,
|
|
22484
|
+
consumer: T['io.flow.internal.v0.enums.ai_review_consumer'].isRequired,
|
|
22485
|
+
items: PropTypes.arrayOf(T['io.flow.internal.v0.models.review_request_item']).isRequired,
|
|
22486
|
+
});
|
|
22487
|
+
|
|
22071
22488
|
T['io.flow.internal.v0.models.afterpay_refund'] = PropTypes.exact({
|
|
22072
22489
|
id: PropTypes.string.isRequired,
|
|
22073
22490
|
flow_refund_id: PropTypes.string.isRequired,
|
|
@@ -23055,6 +23472,7 @@ T['io.flow.sellability.v0.models.sellability_screening_form'] = PropTypes.exact(
|
|
|
23055
23472
|
price: T['io.flow.common.v0.models.money'].isRequired,
|
|
23056
23473
|
description: PropTypes.string.isRequired,
|
|
23057
23474
|
taxonomy_category: T['io.flow.product.v0.models.product_taxonomy_category'].isRequired,
|
|
23475
|
+
inferred_taxonomy_category: T['io.flow.product.v0.models.product_taxonomy_category'],
|
|
23058
23476
|
mode: T['io.flow.sellability.v0.enums.sellability_screening_mode'].isRequired,
|
|
23059
23477
|
catalog_size: PropTypes.number,
|
|
23060
23478
|
relative_ranking: PropTypes.number,
|
|
@@ -23509,7 +23927,7 @@ T['io.flow.ratecard.v0.unions.service_fee'] = PropTypes.oneOfType([
|
|
|
23509
23927
|
T['io.flow.ratecard.v0.models.eei_filing_service_fee'],
|
|
23510
23928
|
]);
|
|
23511
23929
|
|
|
23512
|
-
T['io.flow.internal.v0.models.
|
|
23930
|
+
T['io.flow.internal.v0.models.service_fees_form'] = PropTypes.exact({
|
|
23513
23931
|
service_fees: PropTypes.arrayOf(T['io.flow.ratecard.v0.unions.service_fee']).isRequired,
|
|
23514
23932
|
});
|
|
23515
23933
|
|
|
@@ -24055,6 +24473,7 @@ T['io.flow.internal.v0.models.shipment_cost_summary'] = PropTypes.exact({
|
|
|
24055
24473
|
rate_level_key: PropTypes.string,
|
|
24056
24474
|
cost_estimate_source: T['io.flow.label.v0.enums.cost_estimate_source'].isRequired,
|
|
24057
24475
|
cost: T['io.flow.common.v0.models.money'].isRequired,
|
|
24476
|
+
dim_factor: PropTypes.number.isRequired,
|
|
24058
24477
|
});
|
|
24059
24478
|
|
|
24060
24479
|
T['io.flow.internal.v0.models.restriction_organization'] = PropTypes.exact({
|
|
@@ -24104,6 +24523,26 @@ T['io.flow.internal.v0.models.preonboarding_classification_request'] = PropTypes
|
|
|
24104
24523
|
screening_mode: T['io.flow.sellability.v0.enums.sellability_screening_mode'],
|
|
24105
24524
|
});
|
|
24106
24525
|
|
|
24526
|
+
T['io.flow.internal.v0.models.outbound_shipping_cost'] = PropTypes.exact({
|
|
24527
|
+
channel_id: PropTypes.string.isRequired,
|
|
24528
|
+
organization_id: PropTypes.string.isRequired,
|
|
24529
|
+
destination_country: PropTypes.string.isRequired,
|
|
24530
|
+
carrier_service_id: PropTypes.string.isRequired,
|
|
24531
|
+
cost: T['io.flow.common.v0.models.money'].isRequired,
|
|
24532
|
+
updated_at: PropTypes.number.isRequired,
|
|
24533
|
+
run_id: PropTypes.string.isRequired,
|
|
24534
|
+
model_version: PropTypes.string.isRequired,
|
|
24535
|
+
});
|
|
24536
|
+
|
|
24537
|
+
T['io.flow.internal.v0.models.outbound_shipping_cost_upserted'] = PropTypes.exact({
|
|
24538
|
+
discriminator: PropTypes.oneOf(['outbound_shipping_cost_upserted']).isRequired,
|
|
24539
|
+
event_id: PropTypes.string.isRequired,
|
|
24540
|
+
timestamp: PropTypes.string.isRequired,
|
|
24541
|
+
organization: PropTypes.string.isRequired,
|
|
24542
|
+
channel_id: PropTypes.string.isRequired,
|
|
24543
|
+
outbound_shipping_cost: T['io.flow.internal.v0.models.outbound_shipping_cost'].isRequired,
|
|
24544
|
+
});
|
|
24545
|
+
|
|
24107
24546
|
T['io.flow.internal.v0.models.mor_cost_summary'] = PropTypes.exact({
|
|
24108
24547
|
id: PropTypes.string.isRequired,
|
|
24109
24548
|
organization_id: PropTypes.string.isRequired,
|
|
@@ -24138,6 +24577,52 @@ T['io.flow.internal.v0.models.liability_item'] = PropTypes.exact({
|
|
|
24138
24577
|
no_liability_reason_code: T['io.flow.internal.v0.enums.no_liability_reason_code'],
|
|
24139
24578
|
});
|
|
24140
24579
|
|
|
24580
|
+
T['io.flow.internal.v0.models.guaranteed_shipping_settings_destination_update'] = PropTypes.exact({
|
|
24581
|
+
country: PropTypes.string.isRequired,
|
|
24582
|
+
updated_at: PropTypes.string.isRequired,
|
|
24583
|
+
tax_and_duty_coefficient: PropTypes.number.isRequired,
|
|
24584
|
+
fees_coefficient: PropTypes.number.isRequired,
|
|
24585
|
+
merchant_subsidy: T['io.flow.common.v0.models.money'].isRequired,
|
|
24586
|
+
});
|
|
24587
|
+
|
|
24588
|
+
T['io.flow.internal.v0.models.guaranteed_shipping_settings_update'] = PropTypes.exact({
|
|
24589
|
+
channel_id: PropTypes.string.isRequired,
|
|
24590
|
+
organization_id: PropTypes.string.isRequired,
|
|
24591
|
+
|
|
24592
|
+
destination_updates: PropTypes.arrayOf(
|
|
24593
|
+
T['io.flow.internal.v0.models.guaranteed_shipping_settings_destination_update'],
|
|
24594
|
+
).isRequired,
|
|
24595
|
+
});
|
|
24596
|
+
|
|
24597
|
+
T['io.flow.internal.v0.models.guaranteed_shipping_settings_update_upserted'] = PropTypes.exact({
|
|
24598
|
+
discriminator: PropTypes.oneOf(['guaranteed_shipping_settings_update_upserted']).isRequired,
|
|
24599
|
+
event_id: PropTypes.string.isRequired,
|
|
24600
|
+
timestamp: PropTypes.string.isRequired,
|
|
24601
|
+
organization: PropTypes.string.isRequired,
|
|
24602
|
+
channel_id: PropTypes.string.isRequired,
|
|
24603
|
+
guaranteed_shipping_settings_update: T['io.flow.internal.v0.models.guaranteed_shipping_settings_update'].isRequired,
|
|
24604
|
+
});
|
|
24605
|
+
|
|
24606
|
+
T['io.flow.internal.v0.models.guaranteed_shipping_settings'] = PropTypes.exact({
|
|
24607
|
+
coefficients_updated_at: PropTypes.number.isRequired,
|
|
24608
|
+
channel_id: PropTypes.string.isRequired,
|
|
24609
|
+
organization_id: PropTypes.string.isRequired,
|
|
24610
|
+
destination_country: PropTypes.string.isRequired,
|
|
24611
|
+
tax_and_duty_coefficient: PropTypes.number.isRequired,
|
|
24612
|
+
fees_coefficient: PropTypes.number.isRequired,
|
|
24613
|
+
merchant_subsidy: T['io.flow.common.v0.models.money'].isRequired,
|
|
24614
|
+
created_at: PropTypes.number.isRequired,
|
|
24615
|
+
});
|
|
24616
|
+
|
|
24617
|
+
T['io.flow.internal.v0.models.guaranteed_shipping_settings_upserted'] = PropTypes.exact({
|
|
24618
|
+
discriminator: PropTypes.oneOf(['guaranteed_shipping_settings_upserted']).isRequired,
|
|
24619
|
+
event_id: PropTypes.string.isRequired,
|
|
24620
|
+
timestamp: PropTypes.string.isRequired,
|
|
24621
|
+
organization: PropTypes.string.isRequired,
|
|
24622
|
+
channel_id: PropTypes.string.isRequired,
|
|
24623
|
+
guaranteed_shipping_settings: T['io.flow.internal.v0.models.guaranteed_shipping_settings'].isRequired,
|
|
24624
|
+
});
|
|
24625
|
+
|
|
24141
24626
|
T['io.flow.internal.v0.models.fx_revenue_recognition_source'] = PropTypes.exact({
|
|
24142
24627
|
id: PropTypes.string.isRequired,
|
|
24143
24628
|
local: T['io.flow.common.v0.models.money'].isRequired,
|
|
@@ -24167,6 +24652,23 @@ T['io.flow.internal.v0.models.fx_revenue_recognition'] = PropTypes.exact({
|
|
|
24167
24652
|
reporting_date: PropTypes.string,
|
|
24168
24653
|
});
|
|
24169
24654
|
|
|
24655
|
+
T['io.flow.internal.v0.models.flat_rate_label_subsidy'] = PropTypes.exact({
|
|
24656
|
+
id: PropTypes.string.isRequired,
|
|
24657
|
+
source: T['io.flow.billing.v0.enums.transaction_source'].isRequired,
|
|
24658
|
+
organization_id: PropTypes.string.isRequired,
|
|
24659
|
+
order_number: PropTypes.string.isRequired,
|
|
24660
|
+
amount: T['io.flow.common.v0.models.money'].isRequired,
|
|
24661
|
+
tax: T['io.flow.common.v0.models.money'].isRequired,
|
|
24662
|
+
});
|
|
24663
|
+
|
|
24664
|
+
T['io.flow.internal.v0.models.flat_rate_label_subsidy_upserted'] = PropTypes.exact({
|
|
24665
|
+
discriminator: PropTypes.oneOf(['flat_rate_label_subsidy_upserted']).isRequired,
|
|
24666
|
+
event_id: PropTypes.string.isRequired,
|
|
24667
|
+
timestamp: PropTypes.string.isRequired,
|
|
24668
|
+
organization: PropTypes.string.isRequired,
|
|
24669
|
+
flat_rate_label_subsidy: T['io.flow.internal.v0.models.flat_rate_label_subsidy'].isRequired,
|
|
24670
|
+
});
|
|
24671
|
+
|
|
24170
24672
|
T['io.flow.internal.v0.models.flat_rate_label_reversal'] = PropTypes.exact({
|
|
24171
24673
|
id: PropTypes.string.isRequired,
|
|
24172
24674
|
organization_id: PropTypes.string.isRequired,
|
|
@@ -24183,6 +24685,53 @@ T['io.flow.internal.v0.models.flat_rate_label_reversal_upserted'] = PropTypes.ex
|
|
|
24183
24685
|
flat_rate_label_reversal: T['io.flow.internal.v0.models.flat_rate_label_reversal'].isRequired,
|
|
24184
24686
|
});
|
|
24185
24687
|
|
|
24688
|
+
T['io.flow.internal.v0.models.flat_rate'] = PropTypes.exact({
|
|
24689
|
+
mail_class: T['io.flow.internal.v0.enums.mail_class'].isRequired,
|
|
24690
|
+
carrier_id: PropTypes.string.isRequired,
|
|
24691
|
+
service_id: PropTypes.string.isRequired,
|
|
24692
|
+
price: T['io.flow.common.v0.models.money'].isRequired,
|
|
24693
|
+
free_shipping_threshold: T['io.flow.common.v0.models.money'],
|
|
24694
|
+
min_delivery_days: PropTypes.number,
|
|
24695
|
+
max_delivery_days: PropTypes.number,
|
|
24696
|
+
});
|
|
24697
|
+
|
|
24698
|
+
T['io.flow.internal.v0.models.guaranteed_shipping_published_output'] = PropTypes.exact({
|
|
24699
|
+
id: PropTypes.string.isRequired,
|
|
24700
|
+
organization_id: PropTypes.string.isRequired,
|
|
24701
|
+
channel_id: PropTypes.string.isRequired,
|
|
24702
|
+
destination_country: PropTypes.string.isRequired,
|
|
24703
|
+
coefficient: PropTypes.number.isRequired,
|
|
24704
|
+
flat_rates: PropTypes.arrayOf(T['io.flow.internal.v0.models.flat_rate']).isRequired,
|
|
24705
|
+
inputs_updated_at: PropTypes.number.isRequired,
|
|
24706
|
+
});
|
|
24707
|
+
|
|
24708
|
+
T['io.flow.internal.v0.models.guaranteed_shipping_published_output_upserted'] = PropTypes.exact({
|
|
24709
|
+
discriminator: PropTypes.oneOf(['guaranteed_shipping_published_output_upserted']).isRequired,
|
|
24710
|
+
event_id: PropTypes.string.isRequired,
|
|
24711
|
+
timestamp: PropTypes.string.isRequired,
|
|
24712
|
+
organization: PropTypes.string.isRequired,
|
|
24713
|
+
guaranteed_shipping_published_output: T['io.flow.internal.v0.models.guaranteed_shipping_published_output'].isRequired,
|
|
24714
|
+
});
|
|
24715
|
+
|
|
24716
|
+
T['io.flow.internal.v0.models.guaranteed_shipping_calibrated_output'] = PropTypes.exact({
|
|
24717
|
+
id: PropTypes.string.isRequired,
|
|
24718
|
+
organization_id: PropTypes.string.isRequired,
|
|
24719
|
+
channel_id: PropTypes.string.isRequired,
|
|
24720
|
+
destination_country: PropTypes.string.isRequired,
|
|
24721
|
+
coefficient: PropTypes.number.isRequired,
|
|
24722
|
+
flat_rates: PropTypes.arrayOf(T['io.flow.internal.v0.models.flat_rate']).isRequired,
|
|
24723
|
+
effective_at: PropTypes.string.isRequired,
|
|
24724
|
+
effective_until: PropTypes.string,
|
|
24725
|
+
});
|
|
24726
|
+
|
|
24727
|
+
T['io.flow.internal.v0.models.guaranteed_shipping_calibrated_output_upserted'] = PropTypes.exact({
|
|
24728
|
+
discriminator: PropTypes.oneOf(['guaranteed_shipping_calibrated_output_upserted']).isRequired,
|
|
24729
|
+
event_id: PropTypes.string.isRequired,
|
|
24730
|
+
timestamp: PropTypes.string.isRequired,
|
|
24731
|
+
organization: PropTypes.string.isRequired,
|
|
24732
|
+
guaranteed_shipping_calibrated_output: T['io.flow.internal.v0.models.guaranteed_shipping_calibrated_output'].isRequired,
|
|
24733
|
+
});
|
|
24734
|
+
|
|
24186
24735
|
T['io.flow.common.v0.models.line_item_form'] = PropTypes.exact({
|
|
24187
24736
|
number: PropTypes.string.isRequired,
|
|
24188
24737
|
quantity: PropTypes.number.isRequired,
|
|
@@ -24896,37 +25445,6 @@ T['io.flow.internal.v0.unions.calculator_stamp'] = PropTypes.oneOfType([
|
|
|
24896
25445
|
T['io.flow.internal.v0.models.calculation_step'],
|
|
24897
25446
|
]);
|
|
24898
25447
|
|
|
24899
|
-
T['io.flow.internal.v0.enums.mail_class'] = PropTypes.oneOf(['standard', 'express']);
|
|
24900
|
-
|
|
24901
|
-
T['io.flow.internal.v0.models.flat_rate'] = PropTypes.exact({
|
|
24902
|
-
mail_class: T['io.flow.internal.v0.enums.mail_class'].isRequired,
|
|
24903
|
-
carrier_id: PropTypes.string.isRequired,
|
|
24904
|
-
service_id: PropTypes.string.isRequired,
|
|
24905
|
-
price: T['io.flow.common.v0.models.money'].isRequired,
|
|
24906
|
-
free_shipping_threshold: T['io.flow.common.v0.models.money'],
|
|
24907
|
-
min_delivery_days: PropTypes.number,
|
|
24908
|
-
max_delivery_days: PropTypes.number,
|
|
24909
|
-
});
|
|
24910
|
-
|
|
24911
|
-
T['io.flow.internal.v0.models.adaptive_shipping_rate'] = PropTypes.exact({
|
|
24912
|
-
id: PropTypes.string.isRequired,
|
|
24913
|
-
organization_id: PropTypes.string.isRequired,
|
|
24914
|
-
channel_id: PropTypes.string.isRequired,
|
|
24915
|
-
destination_country: PropTypes.string.isRequired,
|
|
24916
|
-
coefficient: PropTypes.number.isRequired,
|
|
24917
|
-
flat_rates: PropTypes.arrayOf(T['io.flow.internal.v0.models.flat_rate']).isRequired,
|
|
24918
|
-
effective_at: PropTypes.string.isRequired,
|
|
24919
|
-
effective_until: PropTypes.string,
|
|
24920
|
-
});
|
|
24921
|
-
|
|
24922
|
-
T['io.flow.internal.v0.models.adaptive_shipping_rate_upserted'] = PropTypes.exact({
|
|
24923
|
-
discriminator: PropTypes.oneOf(['adaptive_shipping_rate_upserted']).isRequired,
|
|
24924
|
-
event_id: PropTypes.string.isRequired,
|
|
24925
|
-
timestamp: PropTypes.string.isRequired,
|
|
24926
|
-
organization: PropTypes.string.isRequired,
|
|
24927
|
-
adaptive_shipping_rate: T['io.flow.internal.v0.models.adaptive_shipping_rate'].isRequired,
|
|
24928
|
-
});
|
|
24929
|
-
|
|
24930
25448
|
T['io.flow.internal.v0.enums.adaptive_shipping_order_guarantee_state'] = PropTypes.oneOf(['confirmed', 'voided']);
|
|
24931
25449
|
|
|
24932
25450
|
T['io.flow.internal.v0.models.adaptive_shipping_order_guarantee'] = PropTypes.exact({
|
|
@@ -24946,21 +25464,6 @@ T['io.flow.internal.v0.models.adaptive_shipping_order_guarantee_upserted'] = Pro
|
|
|
24946
25464
|
adaptive_shipping_order_guarantee: T['io.flow.internal.v0.models.adaptive_shipping_order_guarantee'].isRequired,
|
|
24947
25465
|
});
|
|
24948
25466
|
|
|
24949
|
-
T['io.flow.internal.v0.models.adaptive_pricing_destination_update'] = PropTypes.exact({
|
|
24950
|
-
country_code: PropTypes.string.isRequired,
|
|
24951
|
-
updated_at: PropTypes.string.isRequired,
|
|
24952
|
-
tax_and_duty_coefficient: PropTypes.number.isRequired,
|
|
24953
|
-
fees_coefficient: PropTypes.number.isRequired,
|
|
24954
|
-
merchant_subsidy_amount: PropTypes.number.isRequired,
|
|
24955
|
-
merchant_subsidy_currency: PropTypes.string.isRequired,
|
|
24956
|
-
});
|
|
24957
|
-
|
|
24958
|
-
T['io.flow.internal.v0.models.adaptive_pricing_update'] = PropTypes.exact({
|
|
24959
|
-
channel_id: PropTypes.string.isRequired,
|
|
24960
|
-
organization_id: PropTypes.string.isRequired,
|
|
24961
|
-
destination_updates: PropTypes.arrayOf(T['io.flow.internal.v0.models.adaptive_pricing_destination_update']).isRequired,
|
|
24962
|
-
});
|
|
24963
|
-
|
|
24964
25467
|
T['io.flow.internal.v0.enums.item_quantity_action'] = PropTypes.oneOf(['fulfillment_ship', 'fulfillment_cancel', 'fulfillment_generate_label']);
|
|
24965
25468
|
|
|
24966
25469
|
T['io.flow.internal.v0.models.action_quantity'] = PropTypes.exact({
|
|
@@ -25060,6 +25563,8 @@ T['io.flow.internal.v0.models.accounting_return_metadata'] = PropTypes.exact({
|
|
|
25060
25563
|
refund: T['io.flow.payment.v0.models.refund_reference'],
|
|
25061
25564
|
tax_reversal: T['io.flow.internal.v0.models.transaction_reference'],
|
|
25062
25565
|
duty_reversal: T['io.flow.internal.v0.models.transaction_reference'],
|
|
25566
|
+
flat_rate_reversal: T['io.flow.internal.v0.models.transaction_reference'],
|
|
25567
|
+
flat_rate_subsidy_reversal: T['io.flow.internal.v0.models.transaction_reference'],
|
|
25063
25568
|
});
|
|
25064
25569
|
|
|
25065
25570
|
T['io.flow.internal.v0.models.bank_account_reference'] = PropTypes.exact({
|
|
@@ -25091,6 +25596,7 @@ T['io.flow.internal.v0.models.account_origin'] = PropTypes.exact({
|
|
|
25091
25596
|
T['io.flow.common.v0.models.organization_reference'] = PropTypes.exact({
|
|
25092
25597
|
discriminator: PropTypes.oneOf(['organization_reference']).isRequired,
|
|
25093
25598
|
id: PropTypes.string.isRequired,
|
|
25599
|
+
channel: T['io.flow.common.v0.models.channel_reference'],
|
|
25094
25600
|
});
|
|
25095
25601
|
|
|
25096
25602
|
T['io.flow.token.v0.models.organization_token_v2_reference'] = PropTypes.exact({
|
|
@@ -25161,8 +25667,6 @@ T['io.flow.shopify.markets.internal.event.v0.unions.shopify_markets_internal_eve
|
|
|
25161
25667
|
T['io.flow.shopify.markets.internal.event.v0.models.shopify_order_transaction_deleted'],
|
|
25162
25668
|
T['io.flow.shopify.markets.internal.event.v0.models.shopify_test_order_upserted'],
|
|
25163
25669
|
T['io.flow.shopify.markets.internal.event.v0.models.shopify_test_order_deleted'],
|
|
25164
|
-
T['io.flow.shopify.markets.internal.event.v0.models.shopify_adaptive_pricing_coefficients_upserted'],
|
|
25165
|
-
T['io.flow.shopify.markets.internal.event.v0.models.shopify_adaptive_pricing_coefficients_deleted'],
|
|
25166
25670
|
T['io.flow.shopify.markets.internal.event.v0.models.shopify_merchant_markets_upserted'],
|
|
25167
25671
|
T['io.flow.shopify.markets.internal.event.v0.models.shopify_merchant_markets_deleted'],
|
|
25168
25672
|
]);
|
|
@@ -25256,7 +25760,7 @@ T['io.flow.internal.v0.models.ratecard_internal_summary'] = PropTypes.exact({
|
|
|
25256
25760
|
number: PropTypes.string.isRequired,
|
|
25257
25761
|
});
|
|
25258
25762
|
|
|
25259
|
-
T['io.flow.internal.v0.models.
|
|
25763
|
+
T['io.flow.internal.v0.models.service_fees'] = PropTypes.exact({
|
|
25260
25764
|
ratecard: T['io.flow.internal.v0.models.ratecard_internal_summary'].isRequired,
|
|
25261
25765
|
service_fees: PropTypes.arrayOf(T['io.flow.ratecard.v0.unions.service_fee']).isRequired,
|
|
25262
25766
|
});
|
|
@@ -25292,6 +25796,7 @@ T['io.flow.common.v0.models.organization'] = PropTypes.exact({
|
|
|
25292
25796
|
created_at: PropTypes.string,
|
|
25293
25797
|
status: T['io.flow.common.v0.enums.organization_status'],
|
|
25294
25798
|
type: T['io.flow.common.v0.enums.organization_type'],
|
|
25799
|
+
channel: T['io.flow.common.v0.models.channel_reference'],
|
|
25295
25800
|
});
|
|
25296
25801
|
|
|
25297
25802
|
T['io.flow.organization.v0.models.organization_version'] = PropTypes.exact({
|
|
@@ -25740,6 +26245,7 @@ T['io.flow.internal.v0.unions.task_metadata'] = PropTypes.oneOfType([
|
|
|
25740
26245
|
T['io.flow.internal.v0.models.channel_transaction_trigger_metadata'],
|
|
25741
26246
|
T['io.flow.internal.v0.models.b2b_fee_mor_tax_trigger_metadata'],
|
|
25742
26247
|
T['io.flow.internal.v0.models.b2b_fee_shipping_tax_trigger_metadata'],
|
|
26248
|
+
T['io.flow.internal.v0.models.remediate_tax_duty_metadata'],
|
|
25743
26249
|
]);
|
|
25744
26250
|
|
|
25745
26251
|
T['io.flow.common.v0.models.price'] = PropTypes.exact({
|
|
@@ -26030,6 +26536,36 @@ T['io.flow.consumer.invoice.v0.models.b2b_invoice'] = PropTypes.exact({
|
|
|
26030
26536
|
b2b_invoice_type: T['io.flow.consumer.invoice.v0.enums.b2b_invoice_type'].isRequired,
|
|
26031
26537
|
});
|
|
26032
26538
|
|
|
26539
|
+
T['io.flow.consumer.invoice.v0.models.b2b_debit_note'] = PropTypes.exact({
|
|
26540
|
+
id: PropTypes.string.isRequired,
|
|
26541
|
+
number: PropTypes.string.isRequired,
|
|
26542
|
+
buyer: T['io.flow.common.v0.models.merchant_of_record_entity'].isRequired,
|
|
26543
|
+
seller: T['io.flow.common.v0.models.merchant_of_record_entity'].isRequired,
|
|
26544
|
+
status: T['io.flow.consumer.invoice.v0.enums.consumer_invoice_status'].isRequired,
|
|
26545
|
+
date: PropTypes.string.isRequired,
|
|
26546
|
+
key: PropTypes.string.isRequired,
|
|
26547
|
+
order: T['io.flow.consumer.invoice.v0.models.consumer_invoice_order_summary'].isRequired,
|
|
26548
|
+
center: T['io.flow.consumer.invoice.v0.models.consumer_invoice_center_reference'],
|
|
26549
|
+
lines: PropTypes.arrayOf(T['io.flow.consumer.invoice.v0.unions.consumer_invoice_line']).isRequired,
|
|
26550
|
+
documents: PropTypes.arrayOf(T['io.flow.consumer.invoice.v0.models.consumer_invoice_document']).isRequired,
|
|
26551
|
+
attributes: PropTypes.objectOf(PropTypes.string).isRequired,
|
|
26552
|
+
});
|
|
26553
|
+
|
|
26554
|
+
T['io.flow.consumer.invoice.v0.models.b2b_credit_note'] = PropTypes.exact({
|
|
26555
|
+
id: PropTypes.string.isRequired,
|
|
26556
|
+
number: PropTypes.string.isRequired,
|
|
26557
|
+
status: T['io.flow.consumer.invoice.v0.enums.consumer_invoice_status'].isRequired,
|
|
26558
|
+
date: PropTypes.string.isRequired,
|
|
26559
|
+
key: PropTypes.string.isRequired,
|
|
26560
|
+
debit_note: T['io.flow.consumer.invoice.v0.models.b2b_debit_note_reference'].isRequired,
|
|
26561
|
+
order: T['io.flow.consumer.invoice.v0.models.consumer_invoice_order_summary'],
|
|
26562
|
+
center: T['io.flow.consumer.invoice.v0.models.consumer_invoice_center_reference'],
|
|
26563
|
+
lines: PropTypes.arrayOf(T['io.flow.consumer.invoice.v0.unions.consumer_invoice_line']).isRequired,
|
|
26564
|
+
documents: PropTypes.arrayOf(T['io.flow.consumer.invoice.v0.models.consumer_invoice_document']).isRequired,
|
|
26565
|
+
attributes: PropTypes.objectOf(PropTypes.string).isRequired,
|
|
26566
|
+
voids_b2b_debit_note: PropTypes.bool,
|
|
26567
|
+
});
|
|
26568
|
+
|
|
26033
26569
|
T['io.flow.consumer.invoice.v0.models.b2b_credit_memo'] = PropTypes.exact({
|
|
26034
26570
|
id: PropTypes.string.isRequired,
|
|
26035
26571
|
number: PropTypes.string.isRequired,
|
|
@@ -26404,7 +26940,6 @@ T['io.flow.internal.v0.models.restriction_product'] = PropTypes.exact({
|
|
|
26404
26940
|
taxonomy_category: T['io.flow.product.v0.models.product_taxonomy_category'],
|
|
26405
26941
|
taxonomy_data: PropTypes.arrayOf(T['io.flow.product.v0.models.product_taxonomy_data']),
|
|
26406
26942
|
channel: PropTypes.string,
|
|
26407
|
-
is_deleted: PropTypes.bool,
|
|
26408
26943
|
});
|
|
26409
26944
|
|
|
26410
26945
|
T['io.flow.internal.v0.models.restriction_item'] = PropTypes.exact({
|
|
@@ -26429,7 +26964,6 @@ T['io.flow.internal.v0.models.restriction_item'] = PropTypes.exact({
|
|
|
26429
26964
|
created_at: PropTypes.string.isRequired,
|
|
26430
26965
|
updated_at: PropTypes.string.isRequired,
|
|
26431
26966
|
channel: PropTypes.string,
|
|
26432
|
-
is_deleted: PropTypes.bool,
|
|
26433
26967
|
});
|
|
26434
26968
|
|
|
26435
26969
|
T['io.flow.internal.v0.models.raveena_item_form'] = PropTypes.exact({
|
|
@@ -26511,6 +27045,13 @@ T['io.flow.internal.v0.models.mahesh_item'] = PropTypes.exact({
|
|
|
26511
27045
|
added_on: PropTypes.string.isRequired,
|
|
26512
27046
|
});
|
|
26513
27047
|
|
|
27048
|
+
T['io.flow.internal.v0.models.mahesh_item_upserted'] = PropTypes.exact({
|
|
27049
|
+
discriminator: PropTypes.oneOf(['mahesh_item_upserted']).isRequired,
|
|
27050
|
+
event_id: PropTypes.string.isRequired,
|
|
27051
|
+
timestamp: PropTypes.string.isRequired,
|
|
27052
|
+
item: T['io.flow.internal.v0.models.mahesh_item'].isRequired,
|
|
27053
|
+
});
|
|
27054
|
+
|
|
26514
27055
|
T['io.flow.internal.v0.models.invoice_line'] = PropTypes.exact({
|
|
26515
27056
|
id: PropTypes.string.isRequired,
|
|
26516
27057
|
description: PropTypes.string.isRequired,
|
|
@@ -26612,6 +27153,7 @@ T['io.flow.internal.v0.models.fees'] = PropTypes.exact({
|
|
|
26612
27153
|
transfer: T['io.flow.internal.v0.models.fee'],
|
|
26613
27154
|
negative_balance: T['io.flow.internal.v0.models.fee'],
|
|
26614
27155
|
sp: T['io.flow.internal.v0.models.fee'],
|
|
27156
|
+
revenue_share: T['io.flow.internal.v0.models.fee'],
|
|
26615
27157
|
});
|
|
26616
27158
|
|
|
26617
27159
|
T['io.flow.internal.v0.models.next_billing_statement'] = PropTypes.exact({
|
|
@@ -26679,6 +27221,7 @@ T['io.flow.internal.v0.models.billing_statement_totals'] = PropTypes.exact({
|
|
|
26679
27221
|
b2b_fee_mor_tax: T['io.flow.common.v0.models.price'].isRequired,
|
|
26680
27222
|
b2b_fee_shipping_tax: T['io.flow.common.v0.models.price'].isRequired,
|
|
26681
27223
|
flat_rate_label: T['io.flow.common.v0.models.price'].isRequired,
|
|
27224
|
+
flat_rate_label_subsidy: T['io.flow.common.v0.models.price'].isRequired,
|
|
26682
27225
|
});
|
|
26683
27226
|
|
|
26684
27227
|
T['io.flow.internal.v0.models.organization_billing_statement'] = PropTypes.exact({
|
|
@@ -26730,6 +27273,8 @@ T['io.flow.internal.v0.models.bank_payment'] = PropTypes.exact({
|
|
|
26730
27273
|
expected_delivery_by: PropTypes.string,
|
|
26731
27274
|
attributes: PropTypes.objectOf(PropTypes.string),
|
|
26732
27275
|
total: T['io.flow.common.v0.models.price'].isRequired,
|
|
27276
|
+
created_at: PropTypes.string,
|
|
27277
|
+
failed_on: PropTypes.string,
|
|
26733
27278
|
});
|
|
26734
27279
|
|
|
26735
27280
|
T['io.flow.internal.v0.models.bank_payment_upserted_v2'] = PropTypes.exact({
|
|
@@ -26899,16 +27444,29 @@ T['io.flow.experience.v0.models.allocation'] = PropTypes.exact({
|
|
|
26899
27444
|
details: PropTypes.arrayOf(T['io.flow.experience.v0.unions.allocation_detail']).isRequired,
|
|
26900
27445
|
});
|
|
26901
27446
|
|
|
27447
|
+
T['io.flow.order.price.v0.models.order_price_subsidy'] = PropTypes.exact({
|
|
27448
|
+
type: T['io.flow.order.price.v0.enums.order_price_subsidy_type'].isRequired,
|
|
27449
|
+
price: T['io.flow.common.v0.models.price_with_base'].isRequired,
|
|
27450
|
+
});
|
|
27451
|
+
|
|
26902
27452
|
T['io.flow.order.price.v0.models.order_price_fee'] = PropTypes.exact({
|
|
26903
27453
|
key: PropTypes.string.isRequired,
|
|
26904
27454
|
value: T['io.flow.common.v0.models.price_with_base'].isRequired,
|
|
26905
27455
|
type: T['io.flow.order.price.v0.enums.order_price_fee_type'].isRequired,
|
|
26906
27456
|
});
|
|
26907
27457
|
|
|
27458
|
+
T['io.flow.order.price.v0.models.order_price_coefficient'] = PropTypes.exact({
|
|
27459
|
+
type: T['io.flow.order.price.v0.enums.order_price_coefficient_type'].isRequired,
|
|
27460
|
+
value: PropTypes.number.isRequired,
|
|
27461
|
+
price: T['io.flow.common.v0.models.price_with_base'].isRequired,
|
|
27462
|
+
});
|
|
27463
|
+
|
|
26908
27464
|
T['io.flow.order.price.v0.models.purchase_price_breakdown'] = PropTypes.exact({
|
|
26909
27465
|
total_price: T['io.flow.common.v0.models.price_with_base'].isRequired,
|
|
26910
27466
|
product_price: T['io.flow.common.v0.models.price_with_base'].isRequired,
|
|
26911
27467
|
fees: PropTypes.arrayOf(T['io.flow.order.price.v0.models.order_price_fee']).isRequired,
|
|
27468
|
+
coefficients: PropTypes.arrayOf(T['io.flow.order.price.v0.models.order_price_coefficient']),
|
|
27469
|
+
subsidies: PropTypes.arrayOf(T['io.flow.order.price.v0.models.order_price_subsidy']),
|
|
26912
27470
|
});
|
|
26913
27471
|
|
|
26914
27472
|
T['io.flow.order.price.v0.models.order_price_detail_breakdown'] = PropTypes.exact({
|
|
@@ -27903,6 +28461,7 @@ T['io.flow.internal.v0.enums.billing_transaction_type'] = PropTypes.oneOf([
|
|
|
27903
28461
|
'b2b_fee_mor_tax',
|
|
27904
28462
|
'b2b_fee_shipping_tax',
|
|
27905
28463
|
'flat_rate_label',
|
|
28464
|
+
'flat_rate_label_subsidy',
|
|
27906
28465
|
]);
|
|
27907
28466
|
|
|
27908
28467
|
T['io.flow.internal.v0.models.virtual_card_transaction'] = PropTypes.exact({
|
|
@@ -28178,6 +28737,7 @@ T['io.flow.internal.v0.models.main_transaction'] = PropTypes.exact({
|
|
|
28178
28737
|
channel_statement: T['io.flow.internal.v0.models.billing_statement_reference'],
|
|
28179
28738
|
created_at: PropTypes.string.isRequired,
|
|
28180
28739
|
original_at: PropTypes.string,
|
|
28740
|
+
payment_source: T['io.flow.experience.v0.enums.order_payment_source_type'],
|
|
28181
28741
|
});
|
|
28182
28742
|
|
|
28183
28743
|
T['io.flow.internal.v0.models.main_transaction_upserted_v2'] = PropTypes.exact({
|
|
@@ -28624,8 +29184,6 @@ T['io.flow.internal.v0.models.fraud_review_authorization_decision_upserted'] = P
|
|
|
28624
29184
|
});
|
|
28625
29185
|
|
|
28626
29186
|
T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
|
|
28627
|
-
T['io.flow.internal.v0.models.adaptive_shipping_rate_upserted'],
|
|
28628
|
-
T['io.flow.internal.v0.models.adaptive_shipping_rate_deleted'],
|
|
28629
29187
|
T['io.flow.internal.v0.models.adyen_authorization_deleted'],
|
|
28630
29188
|
T['io.flow.internal.v0.models.adyen_authorization_upserted'],
|
|
28631
29189
|
T['io.flow.internal.v0.models.adyen_cancel_deleted'],
|
|
@@ -28636,6 +29194,10 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
|
|
|
28636
29194
|
T['io.flow.internal.v0.models.adyen_refund_upserted'],
|
|
28637
29195
|
T['io.flow.internal.v0.models.adyen_dispute_upserted'],
|
|
28638
29196
|
T['io.flow.internal.v0.models.adyen_dispute_deleted'],
|
|
29197
|
+
T['io.flow.internal.v0.models.ai_review_batch_submitted'],
|
|
29198
|
+
T['io.flow.internal.v0.models.ai_review_result_upserted'],
|
|
29199
|
+
T['io.flow.internal.v0.models.ai_review_result_deleted'],
|
|
29200
|
+
T['io.flow.internal.v0.models.ai_review_request_failed'],
|
|
28639
29201
|
T['io.flow.internal.v0.models.fulfillment_upserted'],
|
|
28640
29202
|
T['io.flow.internal.v0.models.fulfillment_deleted'],
|
|
28641
29203
|
T['io.flow.internal.v0.models.merchant_upserted'],
|
|
@@ -28690,6 +29252,8 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
|
|
|
28690
29252
|
T['io.flow.internal.v0.models.revenue_record_deleted'],
|
|
28691
29253
|
T['io.flow.internal.v0.models.other_record_upserted'],
|
|
28692
29254
|
T['io.flow.internal.v0.models.other_record_deleted'],
|
|
29255
|
+
T['io.flow.internal.v0.models.sales_payment_record_upserted'],
|
|
29256
|
+
T['io.flow.internal.v0.models.sales_payment_record_deleted'],
|
|
28693
29257
|
T['io.flow.internal.v0.models.calculator_organization_settings_upserted'],
|
|
28694
29258
|
T['io.flow.internal.v0.models.calculator_organization_settings_deleted'],
|
|
28695
29259
|
T['io.flow.internal.v0.models.carrier_account_upserted_v2'],
|
|
@@ -28771,6 +29335,8 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
|
|
|
28771
29335
|
T['io.flow.internal.v0.models.mor_cost_deleted'],
|
|
28772
29336
|
T['io.flow.internal.v0.models.flat_rate_label_reversal_upserted'],
|
|
28773
29337
|
T['io.flow.internal.v0.models.flat_rate_label_reversal_deleted'],
|
|
29338
|
+
T['io.flow.internal.v0.models.flat_rate_label_subsidy_upserted'],
|
|
29339
|
+
T['io.flow.internal.v0.models.flat_rate_label_subsidy_deleted'],
|
|
28774
29340
|
T['io.flow.internal.v0.models.fraud_review_upserted'],
|
|
28775
29341
|
T['io.flow.internal.v0.models.fraud_review_deleted'],
|
|
28776
29342
|
T['io.flow.internal.v0.models.fraud_pending_review_upserted'],
|
|
@@ -28796,6 +29362,16 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
|
|
|
28796
29362
|
T['io.flow.internal.v0.models.fulfillment_fallbacks_deleted'],
|
|
28797
29363
|
T['io.flow.internal.v0.models.quote_upserted'],
|
|
28798
29364
|
T['io.flow.internal.v0.models.quote_deleted'],
|
|
29365
|
+
T['io.flow.internal.v0.models.guaranteed_shipping_calibrated_output_upserted'],
|
|
29366
|
+
T['io.flow.internal.v0.models.guaranteed_shipping_calibrated_output_deleted'],
|
|
29367
|
+
T['io.flow.internal.v0.models.outbound_shipping_cost_upserted'],
|
|
29368
|
+
T['io.flow.internal.v0.models.outbound_shipping_cost_deleted'],
|
|
29369
|
+
T['io.flow.internal.v0.models.guaranteed_shipping_published_output_upserted'],
|
|
29370
|
+
T['io.flow.internal.v0.models.guaranteed_shipping_published_output_deleted'],
|
|
29371
|
+
T['io.flow.internal.v0.models.guaranteed_shipping_settings_upserted'],
|
|
29372
|
+
T['io.flow.internal.v0.models.guaranteed_shipping_settings_deleted'],
|
|
29373
|
+
T['io.flow.internal.v0.models.guaranteed_shipping_settings_update_upserted'],
|
|
29374
|
+
T['io.flow.internal.v0.models.guaranteed_shipping_settings_update_deleted'],
|
|
28799
29375
|
T['io.flow.internal.v0.models.all_items_export'],
|
|
28800
29376
|
T['io.flow.internal.v0.models.harmonized_items_hs6_export'],
|
|
28801
29377
|
T['io.flow.internal.v0.models.unharmonized_items_export'],
|
|
@@ -28818,6 +29394,8 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
|
|
|
28818
29394
|
T['io.flow.internal.v0.models.merchant_override_upserted'],
|
|
28819
29395
|
T['io.flow.internal.v0.models.merchant_override_deleted'],
|
|
28820
29396
|
T['io.flow.internal.v0.models.harmonization_classification_statistics_published'],
|
|
29397
|
+
T['io.flow.internal.v0.models.issuer_upserted'],
|
|
29398
|
+
T['io.flow.internal.v0.models.issuer_deleted'],
|
|
28821
29399
|
T['io.flow.internal.v0.models.item_form_import_request'],
|
|
28822
29400
|
T['io.flow.internal.v0.models.label_request_error_upserted'],
|
|
28823
29401
|
T['io.flow.internal.v0.models.label_request_error_deleted'],
|
|
@@ -28900,7 +29478,6 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
|
|
|
28900
29478
|
T['io.flow.internal.v0.models.order_rates_published_v3'],
|
|
28901
29479
|
T['io.flow.internal.v0.models.ratecard_dimension_estimate_upserted'],
|
|
28902
29480
|
T['io.flow.internal.v0.models.ratecard_dimension_estimate_deleted'],
|
|
28903
|
-
T['io.flow.internal.v0.models.ratecard_lanes_import_request'],
|
|
28904
29481
|
T['io.flow.internal.v0.models.ratecard_service_fee_upserted'],
|
|
28905
29482
|
T['io.flow.internal.v0.models.ratecard_service_fee_deleted'],
|
|
28906
29483
|
T['io.flow.internal.v0.models.ratecard_rate_level_upserted'],
|
|
@@ -28929,6 +29506,10 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
|
|
|
28929
29506
|
T['io.flow.internal.v0.models.taxonomy_category_hs6_ref_deleted'],
|
|
28930
29507
|
T['io.flow.internal.v0.models.preonboarding_merchant_upserted'],
|
|
28931
29508
|
T['io.flow.internal.v0.models.preonboarding_merchant_deleted'],
|
|
29509
|
+
T['io.flow.internal.v0.models.unserviceable_taxonomy_category_upserted'],
|
|
29510
|
+
T['io.flow.internal.v0.models.unserviceable_taxonomy_category_deleted'],
|
|
29511
|
+
T['io.flow.internal.v0.models.sellability_pending_verification_upserted'],
|
|
29512
|
+
T['io.flow.internal.v0.models.sellability_pending_verification_deleted'],
|
|
28932
29513
|
T['io.flow.internal.v0.models.shopify_hs10_codes_upserted'],
|
|
28933
29514
|
T['io.flow.internal.v0.models.shopify_hs10_codes_deleted'],
|
|
28934
29515
|
T['io.flow.internal.v0.models.shopify_markets_order_upserted'],
|
|
@@ -28962,8 +29543,6 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
|
|
|
28962
29543
|
T['io.flow.internal.v0.models.shopify_order_transaction_deleted'],
|
|
28963
29544
|
T['io.flow.internal.v0.models.shopify_test_order_upserted'],
|
|
28964
29545
|
T['io.flow.internal.v0.models.shopify_test_order_deleted'],
|
|
28965
|
-
T['io.flow.internal.v0.models.shopify_adaptive_pricing_coefficients_upserted'],
|
|
28966
|
-
T['io.flow.internal.v0.models.shopify_adaptive_pricing_coefficients_deleted'],
|
|
28967
29546
|
T['io.flow.internal.v0.models.shopify_merchant_markets_upserted'],
|
|
28968
29547
|
T['io.flow.internal.v0.models.shopify_merchant_markets_deleted'],
|
|
28969
29548
|
T['io.flow.internal.v0.models.shopify_product_create_upserted'],
|
|
@@ -29012,6 +29591,8 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
|
|
|
29012
29591
|
T['io.flow.internal.v0.models.bojana_item_deleted'],
|
|
29013
29592
|
T['io.flow.internal.v0.models.raveena_item_upserted'],
|
|
29014
29593
|
T['io.flow.internal.v0.models.raveena_item_deleted'],
|
|
29594
|
+
T['io.flow.internal.v0.models.mahesh_item_upserted'],
|
|
29595
|
+
T['io.flow.internal.v0.models.mahesh_item_deleted'],
|
|
29015
29596
|
T['io.flow.internal.v0.models.tracking_processing_error_upserted'],
|
|
29016
29597
|
T['io.flow.internal.v0.models.tracking_processing_error_deleted'],
|
|
29017
29598
|
T['io.flow.internal.v0.models.tracking_label_event_upserted_v2'],
|
|
@@ -29198,8 +29779,6 @@ T['io.flow.internal.v0.enums.duty_exempt_item_types'] = PropTypes.oneOf(['gift_c
|
|
|
29198
29779
|
T['io.flow.internal.v0.enums.duty_transaction_type'] = PropTypes.oneOf(['adjustment', 'reversal', 'duty', 'refund']);
|
|
29199
29780
|
|
|
29200
29781
|
T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
|
|
29201
|
-
'adaptive_shipping_rate_upserted',
|
|
29202
|
-
'adaptive_shipping_rate_deleted',
|
|
29203
29782
|
'adyen_authorization_deleted',
|
|
29204
29783
|
'adyen_authorization_upserted',
|
|
29205
29784
|
'adyen_cancel_deleted',
|
|
@@ -29210,6 +29789,10 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
|
|
|
29210
29789
|
'adyen_refund_upserted',
|
|
29211
29790
|
'adyen_dispute_upserted',
|
|
29212
29791
|
'adyen_dispute_deleted',
|
|
29792
|
+
'ai_review_batch_submitted',
|
|
29793
|
+
'ai_review_result_upserted',
|
|
29794
|
+
'ai_review_result_deleted',
|
|
29795
|
+
'ai_review_request_failed',
|
|
29213
29796
|
'fulfillment_upserted',
|
|
29214
29797
|
'fulfillment_deleted',
|
|
29215
29798
|
'merchant_upserted',
|
|
@@ -29264,6 +29847,8 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
|
|
|
29264
29847
|
'revenue_record_deleted',
|
|
29265
29848
|
'other_record_upserted',
|
|
29266
29849
|
'other_record_deleted',
|
|
29850
|
+
'sales_payment_record_upserted',
|
|
29851
|
+
'sales_payment_record_deleted',
|
|
29267
29852
|
'calculator_organization_settings_upserted',
|
|
29268
29853
|
'calculator_organization_settings_deleted',
|
|
29269
29854
|
'carrier_account_upserted_v2',
|
|
@@ -29345,6 +29930,8 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
|
|
|
29345
29930
|
'mor_cost_deleted',
|
|
29346
29931
|
'flat_rate_label_reversal_upserted',
|
|
29347
29932
|
'flat_rate_label_reversal_deleted',
|
|
29933
|
+
'flat_rate_label_subsidy_upserted',
|
|
29934
|
+
'flat_rate_label_subsidy_deleted',
|
|
29348
29935
|
'fraud_review_upserted',
|
|
29349
29936
|
'fraud_review_deleted',
|
|
29350
29937
|
'fraud_pending_review_upserted',
|
|
@@ -29370,6 +29957,16 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
|
|
|
29370
29957
|
'fulfillment_fallbacks_deleted',
|
|
29371
29958
|
'quote_upserted',
|
|
29372
29959
|
'quote_deleted',
|
|
29960
|
+
'guaranteed_shipping_calibrated_output_upserted',
|
|
29961
|
+
'guaranteed_shipping_calibrated_output_deleted',
|
|
29962
|
+
'outbound_shipping_cost_upserted',
|
|
29963
|
+
'outbound_shipping_cost_deleted',
|
|
29964
|
+
'guaranteed_shipping_published_output_upserted',
|
|
29965
|
+
'guaranteed_shipping_published_output_deleted',
|
|
29966
|
+
'guaranteed_shipping_settings_upserted',
|
|
29967
|
+
'guaranteed_shipping_settings_deleted',
|
|
29968
|
+
'guaranteed_shipping_settings_update_upserted',
|
|
29969
|
+
'guaranteed_shipping_settings_update_deleted',
|
|
29373
29970
|
'all_items_export',
|
|
29374
29971
|
'harmonized_items_hs6_export',
|
|
29375
29972
|
'unharmonized_items_export',
|
|
@@ -29392,6 +29989,8 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
|
|
|
29392
29989
|
'merchant_override_upserted',
|
|
29393
29990
|
'merchant_override_deleted',
|
|
29394
29991
|
'harmonization_classification_statistics_published',
|
|
29992
|
+
'issuer_upserted',
|
|
29993
|
+
'issuer_deleted',
|
|
29395
29994
|
'item_form_import_request',
|
|
29396
29995
|
'label_request_error_upserted',
|
|
29397
29996
|
'label_request_error_deleted',
|
|
@@ -29474,7 +30073,6 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
|
|
|
29474
30073
|
'order_rates_published_v3',
|
|
29475
30074
|
'ratecard_dimension_estimate_upserted',
|
|
29476
30075
|
'ratecard_dimension_estimate_deleted',
|
|
29477
|
-
'ratecard_lanes_import_request',
|
|
29478
30076
|
'ratecard_service_fee_upserted',
|
|
29479
30077
|
'ratecard_service_fee_deleted',
|
|
29480
30078
|
'ratecard_rate_level_upserted',
|
|
@@ -29503,6 +30101,10 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
|
|
|
29503
30101
|
'taxonomy_category_hs6_ref_deleted',
|
|
29504
30102
|
'preonboarding_merchant_upserted',
|
|
29505
30103
|
'preonboarding_merchant_deleted',
|
|
30104
|
+
'unserviceable_taxonomy_category_upserted',
|
|
30105
|
+
'unserviceable_taxonomy_category_deleted',
|
|
30106
|
+
'sellability_pending_verification_upserted',
|
|
30107
|
+
'sellability_pending_verification_deleted',
|
|
29506
30108
|
'shopify_hs10_codes_upserted',
|
|
29507
30109
|
'shopify_hs10_codes_deleted',
|
|
29508
30110
|
'shopify_markets_order_upserted',
|
|
@@ -29536,8 +30138,6 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
|
|
|
29536
30138
|
'shopify_order_transaction_deleted',
|
|
29537
30139
|
'shopify_test_order_upserted',
|
|
29538
30140
|
'shopify_test_order_deleted',
|
|
29539
|
-
'shopify_adaptive_pricing_coefficients_upserted',
|
|
29540
|
-
'shopify_adaptive_pricing_coefficients_deleted',
|
|
29541
30141
|
'shopify_merchant_markets_upserted',
|
|
29542
30142
|
'shopify_merchant_markets_deleted',
|
|
29543
30143
|
'shopify_product_create_upserted',
|
|
@@ -29586,6 +30186,8 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
|
|
|
29586
30186
|
'bojana_item_deleted',
|
|
29587
30187
|
'raveena_item_upserted',
|
|
29588
30188
|
'raveena_item_deleted',
|
|
30189
|
+
'mahesh_item_upserted',
|
|
30190
|
+
'mahesh_item_deleted',
|
|
29589
30191
|
'tracking_processing_error_upserted',
|
|
29590
30192
|
'tracking_processing_error_deleted',
|
|
29591
30193
|
'tracking_label_event_upserted_v2',
|
|
@@ -29608,7 +30210,8 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
|
|
|
29608
30210
|
'user_deleted_v2',
|
|
29609
30211
|
]);
|
|
29610
30212
|
|
|
29611
|
-
T['io.flow.internal.v0.enums.
|
|
30213
|
+
T['io.flow.internal.v0.enums.flat_rate_label_guarantee_status'] = PropTypes.oneOf(['active', 'void']);
|
|
30214
|
+
T['io.flow.internal.v0.enums.flat_rate_label_transaction_type'] = PropTypes.oneOf(['adjustment', 'reversal', 'fee', 'subsidy']);
|
|
29612
30215
|
T['io.flow.internal.v0.enums.ge_ingestion_file_status'] = PropTypes.oneOf(['pending', 'processed']);
|
|
29613
30216
|
T['io.flow.internal.v0.enums.ge_revenue_share_transaction_type'] = PropTypes.oneOf(['adjustment', 'reversal', 'revenue_share']);
|
|
29614
30217
|
|
|
@@ -29687,6 +30290,8 @@ T['io.flow.internal.v0.enums.restriction_organization_channel'] = PropTypes.oneO
|
|
|
29687
30290
|
'shopify-sandbox',
|
|
29688
30291
|
'enterprise-sandbox',
|
|
29689
30292
|
'enterprise-qa',
|
|
30293
|
+
'globale',
|
|
30294
|
+
'globale-sandbox',
|
|
29690
30295
|
'cafe24',
|
|
29691
30296
|
'cafe24-sandbox',
|
|
29692
30297
|
]);
|
|
@@ -30442,6 +31047,10 @@ T['io.flow.internal.v0.models.report_summary'] = PropTypes.exact({
|
|
|
30442
31047
|
task_id: PropTypes.string.isRequired,
|
|
30443
31048
|
});
|
|
30444
31049
|
|
|
31050
|
+
T['io.flow.internal.v0.models.reporting_usd'] = PropTypes.exact({
|
|
31051
|
+
usd: PropTypes.number.isRequired,
|
|
31052
|
+
});
|
|
31053
|
+
|
|
30445
31054
|
T['io.flow.internal.v0.models.requeue_request_form'] = PropTypes.exact({
|
|
30446
31055
|
product_ids: PropTypes.arrayOf(PropTypes.string),
|
|
30447
31056
|
hs6_codes: PropTypes.arrayOf(PropTypes.string),
|
|
@@ -31781,6 +32390,21 @@ T['io.flow.merchant.onboarding.v0.enums.onboarding_trade_sector'] = PropTypes.on
|
|
|
31781
32390
|
'other',
|
|
31782
32391
|
]);
|
|
31783
32392
|
|
|
32393
|
+
T['io.flow.catalog.v0.enums.cpsc_attribute'] = PropTypes.oneOf([
|
|
32394
|
+
'certification_id',
|
|
32395
|
+
'citation_codes',
|
|
32396
|
+
'manufactured_date',
|
|
32397
|
+
'manufactured_location',
|
|
32398
|
+
'product_test_date',
|
|
32399
|
+
'test_lab_name',
|
|
32400
|
+
'point_of_contact',
|
|
32401
|
+
'certification_version',
|
|
32402
|
+
'certification_product_id',
|
|
32403
|
+
'certificate_type',
|
|
32404
|
+
'lab_type',
|
|
32405
|
+
'taxonomy_reference',
|
|
32406
|
+
]);
|
|
32407
|
+
|
|
31784
32408
|
T['io.flow.catalog.v0.enums.fulfillment_method_type'] = PropTypes.oneOf(['fulfillment_method']);
|
|
31785
32409
|
T['io.flow.catalog.v0.enums.taxability_type'] = PropTypes.oneOf(['tax_rule']);
|
|
31786
32410
|
T['io.flow.catalog.v0.enums.taxability_value'] = PropTypes.oneOf(['exempt']);
|
|
@@ -31913,6 +32537,7 @@ T['io.flow.organization.v0.models.organization_tax_registration_form'] = PropTyp
|
|
|
31913
32537
|
province: PropTypes.string,
|
|
31914
32538
|
self_billing_agreement_effective_at: PropTypes.string.isRequired,
|
|
31915
32539
|
self_billing_agreement_expires_at: PropTypes.string,
|
|
32540
|
+
legal_name: PropTypes.string,
|
|
31916
32541
|
});
|
|
31917
32542
|
|
|
31918
32543
|
export const acceptance = T['io.flow.internal.v0.models.acceptance'];
|
|
@@ -31951,15 +32576,10 @@ export const accountUpsertedV2 = T['io.flow.internal.v0.models.account_upserted_
|
|
|
31951
32576
|
export const accountingPendingOrderMetadata = T['io.flow.internal.v0.models.accounting_pending_order_metadata'];
|
|
31952
32577
|
export const accountingReturnMetadata = T['io.flow.internal.v0.models.accounting_return_metadata'];
|
|
31953
32578
|
export const actionQuantity = T['io.flow.internal.v0.models.action_quantity'];
|
|
31954
|
-
export const adaptivePricingDestinationUpdate = T['io.flow.internal.v0.models.adaptive_pricing_destination_update'];
|
|
31955
|
-
export const adaptivePricingUpdate = T['io.flow.internal.v0.models.adaptive_pricing_update'];
|
|
31956
32579
|
export const adaptiveShippingOrderGuarantee = T['io.flow.internal.v0.models.adaptive_shipping_order_guarantee'];
|
|
31957
32580
|
export const adaptiveShippingOrderGuaranteeDeleted = T['io.flow.internal.v0.models.adaptive_shipping_order_guarantee_deleted'];
|
|
31958
32581
|
export const adaptiveShippingOrderGuaranteeState = T['io.flow.internal.v0.enums.adaptive_shipping_order_guarantee_state'];
|
|
31959
32582
|
export const adaptiveShippingOrderGuaranteeUpserted = T['io.flow.internal.v0.models.adaptive_shipping_order_guarantee_upserted'];
|
|
31960
|
-
export const adaptiveShippingRate = T['io.flow.internal.v0.models.adaptive_shipping_rate'];
|
|
31961
|
-
export const adaptiveShippingRateDeleted = T['io.flow.internal.v0.models.adaptive_shipping_rate_deleted'];
|
|
31962
|
-
export const adaptiveShippingRateUpserted = T['io.flow.internal.v0.models.adaptive_shipping_rate_upserted'];
|
|
31963
32583
|
export const additionalImportTax = T['io.flow.internal.v0.models.additional_import_tax'];
|
|
31964
32584
|
export const adjustmentAmount = T['io.flow.internal.v0.unions.adjustment_amount'];
|
|
31965
32585
|
export const adjustmentAmountFixed = T['io.flow.internal.v0.models.adjustment_amount_fixed'];
|
|
@@ -32017,6 +32637,17 @@ export const afterpayRefund = T['io.flow.internal.v0.models.afterpay_refund'];
|
|
|
32017
32637
|
export const afterpayRefundDeleted = T['io.flow.internal.v0.models.afterpay_refund_deleted'];
|
|
32018
32638
|
export const afterpayRefundUpserted = T['io.flow.internal.v0.models.afterpay_refund_upserted'];
|
|
32019
32639
|
export const aftershipWebhook = T['io.flow.internal.v0.models.aftership_webhook'];
|
|
32640
|
+
export const aiOutput = T['io.flow.internal.v0.unions.ai_output'];
|
|
32641
|
+
export const aiReviewBatchSubmitted = T['io.flow.internal.v0.models.ai_review_batch_submitted'];
|
|
32642
|
+
export const aiReviewConsumer = T['io.flow.internal.v0.enums.ai_review_consumer'];
|
|
32643
|
+
export const aiReviewContext = T['io.flow.internal.v0.unions.ai_review_context'];
|
|
32644
|
+
export const aiReviewFailedItem = T['io.flow.internal.v0.models.ai_review_failed_item'];
|
|
32645
|
+
export const aiReviewFailureReason = T['io.flow.internal.v0.enums.ai_review_failure_reason'];
|
|
32646
|
+
export const aiReviewRequestFailed = T['io.flow.internal.v0.models.ai_review_request_failed'];
|
|
32647
|
+
export const aiReviewResult = T['io.flow.internal.v0.models.ai_review_result'];
|
|
32648
|
+
export const aiReviewResultDeleted = T['io.flow.internal.v0.models.ai_review_result_deleted'];
|
|
32649
|
+
export const aiReviewResultUpserted = T['io.flow.internal.v0.models.ai_review_result_upserted'];
|
|
32650
|
+
export const aiReviewType = T['io.flow.internal.v0.enums.ai_review_type'];
|
|
32020
32651
|
export const allItemsExport = T['io.flow.internal.v0.models.all_items_export'];
|
|
32021
32652
|
export const allocationItemReference = T['io.flow.internal.v0.models.allocation_item_reference'];
|
|
32022
32653
|
export const allowedLabels = T['io.flow.internal.v0.models.allowed_labels'];
|
|
@@ -32363,6 +32994,16 @@ export const consoleLabelRequestForm = T['io.flow.internal.v0.models.console_lab
|
|
|
32363
32994
|
export const consoleLabelValidationForm = T['io.flow.internal.v0.unions.console_label_validation_form'];
|
|
32364
32995
|
export const consoleMarkUnresolvableForm = T['io.flow.internal.v0.models.console_mark_unresolvable_form'];
|
|
32365
32996
|
export const courthouseProductSummary = T['io.flow.internal.v0.models.courthouse_product_summary'];
|
|
32997
|
+
export const cpscCertificateType = T['io.flow.internal.v0.enums.cpsc_certificate_type'];
|
|
32998
|
+
export const cpscFileType = T['io.flow.internal.v0.enums.cpsc_file_type'];
|
|
32999
|
+
export const cpscLabType = T['io.flow.internal.v0.enums.cpsc_lab_type'];
|
|
33000
|
+
export const cpscLotNumberAssignedBy = T['io.flow.internal.v0.enums.cpsc_lot_number_assigned_by'];
|
|
33001
|
+
export const cpscPointOfContactType = T['io.flow.internal.v0.enums.cpsc_point_of_contact_type'];
|
|
33002
|
+
export const cpscPrimaryProductIdType = T['io.flow.internal.v0.enums.cpsc_primary_product_id_type'];
|
|
33003
|
+
export const cpscProductRegistration = T['io.flow.internal.v0.models.cpsc_product_registration'];
|
|
33004
|
+
export const cpscQueueEnvelope = T['io.flow.internal.v0.models.cpsc_queue_envelope'];
|
|
33005
|
+
export const cpscQueueMessage = T['io.flow.internal.v0.models.cpsc_queue_message'];
|
|
33006
|
+
export const cpscYesNo = T['io.flow.internal.v0.enums.cpsc_yes_no'];
|
|
32366
33007
|
export const crossdockTrackingStatus = T['io.flow.internal.v0.enums.crossdock_tracking_status'];
|
|
32367
33008
|
export const cryptoAccount = T['io.flow.internal.v0.models.crypto_account'];
|
|
32368
33009
|
export const cryptoAccountModificationForm = T['io.flow.internal.v0.models.crypto_account_modification_form'];
|
|
@@ -32423,6 +33064,9 @@ export const deliveredDutyPreferenceForm = T['io.flow.internal.v0.models.deliver
|
|
|
32423
33064
|
export const deminimisAdjustmentType = T['io.flow.internal.v0.enums.deminimis_adjustment_type'];
|
|
32424
33065
|
export const destinationDutyComparison = T['io.flow.internal.v0.models.destination_duty_comparison'];
|
|
32425
33066
|
export const destinationError = T['io.flow.internal.v0.models.destination_error'];
|
|
33067
|
+
export const dgClassAssessment = T['io.flow.internal.v0.models.dg_class_assessment'];
|
|
33068
|
+
export const dgReviewContext = T['io.flow.internal.v0.models.dg_review_context'];
|
|
33069
|
+
export const dgReviewOutput = T['io.flow.internal.v0.models.dg_review_output'];
|
|
32426
33070
|
export const dhl = T['io.flow.internal.v0.models.dhl'];
|
|
32427
33071
|
export const dhlEcommerce = T['io.flow.internal.v0.models.dhl_ecommerce'];
|
|
32428
33072
|
export const dimensionEstimateOpsInput = T['io.flow.internal.v0.models.dimension_estimate_ops_input'];
|
|
@@ -32541,6 +33185,7 @@ export const externalFulfillmentProof = T['io.flow.internal.v0.models.external_f
|
|
|
32541
33185
|
export const externalFulfillmentProofForm = T['io.flow.internal.v0.models.external_fulfillment_proof_form'];
|
|
32542
33186
|
export const externalFulfillmentProofTracking = T['io.flow.internal.v0.models.external_fulfillment_proof_tracking'];
|
|
32543
33187
|
export const externalFulfillmentProofTrackingForm = T['io.flow.internal.v0.models.external_fulfillment_proof_tracking_form'];
|
|
33188
|
+
export const externalOrderSummary = T['io.flow.internal.v0.models.external_order_summary'];
|
|
32544
33189
|
export const externalRatecardLink = T['io.flow.internal.v0.models.external_ratecard_link'];
|
|
32545
33190
|
export const externalRatecardLinkResponse = T['io.flow.internal.v0.models.external_ratecard_link_response'];
|
|
32546
33191
|
export const facebookPixel = T['io.flow.internal.v0.models.facebook_pixel'];
|
|
@@ -32588,9 +33233,13 @@ export const fiservMerchant = T['io.flow.internal.v0.models.fiserv_merchant'];
|
|
|
32588
33233
|
export const fiservMerchantModificationForm = T['io.flow.internal.v0.models.fiserv_merchant_modification_form'];
|
|
32589
33234
|
export const fiservMerchantPutForm = T['io.flow.internal.v0.models.fiserv_merchant_put_form'];
|
|
32590
33235
|
export const flatRate = T['io.flow.internal.v0.models.flat_rate'];
|
|
33236
|
+
export const flatRateLabelGuaranteeStatus = T['io.flow.internal.v0.enums.flat_rate_label_guarantee_status'];
|
|
32591
33237
|
export const flatRateLabelReversal = T['io.flow.internal.v0.models.flat_rate_label_reversal'];
|
|
32592
33238
|
export const flatRateLabelReversalDeleted = T['io.flow.internal.v0.models.flat_rate_label_reversal_deleted'];
|
|
32593
33239
|
export const flatRateLabelReversalUpserted = T['io.flow.internal.v0.models.flat_rate_label_reversal_upserted'];
|
|
33240
|
+
export const flatRateLabelSubsidy = T['io.flow.internal.v0.models.flat_rate_label_subsidy'];
|
|
33241
|
+
export const flatRateLabelSubsidyDeleted = T['io.flow.internal.v0.models.flat_rate_label_subsidy_deleted'];
|
|
33242
|
+
export const flatRateLabelSubsidyUpserted = T['io.flow.internal.v0.models.flat_rate_label_subsidy_upserted'];
|
|
32594
33243
|
export const flatRateLabelTransaction = T['io.flow.internal.v0.models.flat_rate_label_transaction'];
|
|
32595
33244
|
export const flatRateLabelTransactionType = T['io.flow.internal.v0.enums.flat_rate_label_transaction_type'];
|
|
32596
33245
|
export const flexeWebhook = T['io.flow.internal.v0.models.flexe_webhook'];
|
|
@@ -32697,6 +33346,19 @@ export const googleShoppingAccountParameters = T['io.flow.internal.v0.models.goo
|
|
|
32697
33346
|
export const googleShoppingSetting = T['io.flow.internal.v0.models.google_shopping_setting'];
|
|
32698
33347
|
export const googleTagManager = T['io.flow.internal.v0.models.google_tag_manager'];
|
|
32699
33348
|
export const graphqlServiceTypes = T['io.flow.internal.v0.enums.graphql_service_types'];
|
|
33349
|
+
export const guaranteedShippingCalibratedOutput = T['io.flow.internal.v0.models.guaranteed_shipping_calibrated_output'];
|
|
33350
|
+
export const guaranteedShippingCalibratedOutputDeleted = T['io.flow.internal.v0.models.guaranteed_shipping_calibrated_output_deleted'];
|
|
33351
|
+
export const guaranteedShippingCalibratedOutputUpserted = T['io.flow.internal.v0.models.guaranteed_shipping_calibrated_output_upserted'];
|
|
33352
|
+
export const guaranteedShippingPublishedOutput = T['io.flow.internal.v0.models.guaranteed_shipping_published_output'];
|
|
33353
|
+
export const guaranteedShippingPublishedOutputDeleted = T['io.flow.internal.v0.models.guaranteed_shipping_published_output_deleted'];
|
|
33354
|
+
export const guaranteedShippingPublishedOutputUpserted = T['io.flow.internal.v0.models.guaranteed_shipping_published_output_upserted'];
|
|
33355
|
+
export const guaranteedShippingSettings = T['io.flow.internal.v0.models.guaranteed_shipping_settings'];
|
|
33356
|
+
export const guaranteedShippingSettingsDeleted = T['io.flow.internal.v0.models.guaranteed_shipping_settings_deleted'];
|
|
33357
|
+
export const guaranteedShippingSettingsDestinationUpdate = T['io.flow.internal.v0.models.guaranteed_shipping_settings_destination_update'];
|
|
33358
|
+
export const guaranteedShippingSettingsUpdate = T['io.flow.internal.v0.models.guaranteed_shipping_settings_update'];
|
|
33359
|
+
export const guaranteedShippingSettingsUpdateDeleted = T['io.flow.internal.v0.models.guaranteed_shipping_settings_update_deleted'];
|
|
33360
|
+
export const guaranteedShippingSettingsUpdateUpserted = T['io.flow.internal.v0.models.guaranteed_shipping_settings_update_upserted'];
|
|
33361
|
+
export const guaranteedShippingSettingsUpserted = T['io.flow.internal.v0.models.guaranteed_shipping_settings_upserted'];
|
|
32700
33362
|
export const harmonizationClassificationStatisticsData = T['io.flow.internal.v0.models.harmonization_classification_statistics_data'];
|
|
32701
33363
|
export const harmonizationClassificationStatisticsPublished = T['io.flow.internal.v0.models.harmonization_classification_statistics_published'];
|
|
32702
33364
|
export const harmonizationCodesImport = T['io.flow.internal.v0.models.harmonization_codes_import'];
|
|
@@ -32753,6 +33415,9 @@ export const invoiceInfoForm = T['io.flow.internal.v0.models.invoice_info_form']
|
|
|
32753
33415
|
export const invoiceLine = T['io.flow.internal.v0.models.invoice_line'];
|
|
32754
33416
|
export const invoiceLineItem = T['io.flow.internal.v0.models.invoice_line_item'];
|
|
32755
33417
|
export const invoiceTransaction = T['io.flow.internal.v0.models.invoice_transaction'];
|
|
33418
|
+
export const issuer = T['io.flow.internal.v0.models.issuer'];
|
|
33419
|
+
export const issuerDeleted = T['io.flow.internal.v0.models.issuer_deleted'];
|
|
33420
|
+
export const issuerUpserted = T['io.flow.internal.v0.models.issuer_upserted'];
|
|
32756
33421
|
export const itemClassification = T['io.flow.internal.v0.models.item_classification'];
|
|
32757
33422
|
export const itemClassificationAction = T['io.flow.internal.v0.enums.item_classification_action'];
|
|
32758
33423
|
export const itemClassificationForm = T['io.flow.internal.v0.models.item_classification_form'];
|
|
@@ -32769,6 +33434,11 @@ export const itemHarmonization = T['io.flow.internal.v0.models.item_harmonizatio
|
|
|
32769
33434
|
export const itemHarmonizationDeleted = T['io.flow.internal.v0.models.item_harmonization_deleted'];
|
|
32770
33435
|
export const itemHarmonizationStatus = T['io.flow.internal.v0.enums.item_harmonization_status'];
|
|
32771
33436
|
export const itemHarmonizationUpserted = T['io.flow.internal.v0.models.item_harmonization_upserted'];
|
|
33437
|
+
export const itemHs6Override = T['io.flow.internal.v0.models.item_hs6_override'];
|
|
33438
|
+
export const itemHs6OverrideForm = T['io.flow.internal.v0.models.item_hs6_override_form'];
|
|
33439
|
+
export const itemHs6OverrideRejection = T['io.flow.internal.v0.models.item_hs6_override_rejection'];
|
|
33440
|
+
export const itemHs6OverrideResult = T['io.flow.internal.v0.models.item_hs6_override_result'];
|
|
33441
|
+
export const itemHs6OverridesForm = T['io.flow.internal.v0.models.item_hs6_overrides_form'];
|
|
32772
33442
|
export const itemQuantityAction = T['io.flow.internal.v0.enums.item_quantity_action'];
|
|
32773
33443
|
export const itemQueryResponse = T['io.flow.internal.v0.models.item_query_response'];
|
|
32774
33444
|
export const itemRestriction = T['io.flow.internal.v0.models.item_restriction'];
|
|
@@ -32866,8 +33536,10 @@ export const loyaltyProgramMessage = T['io.flow.internal.v0.models.loyalty_progr
|
|
|
32866
33536
|
export const loyaltyProgramReward = T['io.flow.internal.v0.models.loyalty_program_reward'];
|
|
32867
33537
|
export const loyaltyProgramRewards = T['io.flow.internal.v0.models.loyalty_program_rewards'];
|
|
32868
33538
|
export const maheshItem = T['io.flow.internal.v0.models.mahesh_item'];
|
|
33539
|
+
export const maheshItemDeleted = T['io.flow.internal.v0.models.mahesh_item_deleted'];
|
|
32869
33540
|
export const maheshItemForm = T['io.flow.internal.v0.models.mahesh_item_form'];
|
|
32870
33541
|
export const maheshItemType = T['io.flow.internal.v0.enums.mahesh_item_type'];
|
|
33542
|
+
export const maheshItemUpserted = T['io.flow.internal.v0.models.mahesh_item_upserted'];
|
|
32871
33543
|
export const mailClass = T['io.flow.internal.v0.enums.mail_class'];
|
|
32872
33544
|
export const mainTransaction = T['io.flow.internal.v0.models.main_transaction'];
|
|
32873
33545
|
export const mainTransactionDeleted = T['io.flow.internal.v0.models.main_transaction_deleted'];
|
|
@@ -32986,6 +33658,7 @@ export const orderRevenueRegionDataPoint = T['io.flow.internal.v0.models.order_r
|
|
|
32986
33658
|
export const orderRevenueTimelineChart = T['io.flow.internal.v0.models.order_revenue_timeline_chart'];
|
|
32987
33659
|
export const orderRevenueTimelineDataPoint = T['io.flow.internal.v0.models.order_revenue_timeline_data_point'];
|
|
32988
33660
|
export const orderServiceChangeCsvForm = T['io.flow.internal.v0.models.order_service_change_csv_form'];
|
|
33661
|
+
export const orderSettings = T['io.flow.internal.v0.models.order_settings'];
|
|
32989
33662
|
export const orderSummary = T['io.flow.internal.v0.models.order_summary'];
|
|
32990
33663
|
export const orderTaxAndDutyInclusivitySetting = T['io.flow.internal.v0.models.order_tax_and_duty_inclusivity_setting'];
|
|
32991
33664
|
export const orderTaxAndDutyInclusivitySettingDeleted = T['io.flow.internal.v0.models.order_tax_and_duty_inclusivity_setting_deleted'];
|
|
@@ -33080,6 +33753,9 @@ export const otherRecordOrderSummaryIdentifiers = T['io.flow.internal.v0.models.
|
|
|
33080
33753
|
export const otherRecordOrganizationSummary = T['io.flow.internal.v0.models.other_record_organization_summary'];
|
|
33081
33754
|
export const otherRecordUpserted = T['io.flow.internal.v0.models.other_record_upserted'];
|
|
33082
33755
|
export const otherRecordWithholdings = T['io.flow.internal.v0.models.other_record_withholdings'];
|
|
33756
|
+
export const outboundShippingCost = T['io.flow.internal.v0.models.outbound_shipping_cost'];
|
|
33757
|
+
export const outboundShippingCostDeleted = T['io.flow.internal.v0.models.outbound_shipping_cost_deleted'];
|
|
33758
|
+
export const outboundShippingCostUpserted = T['io.flow.internal.v0.models.outbound_shipping_cost_upserted'];
|
|
33083
33759
|
export const outputStyle = T['io.flow.internal.v0.enums.output_style'];
|
|
33084
33760
|
export const owner = T['io.flow.internal.v0.enums.owner'];
|
|
33085
33761
|
export const partner = T['io.flow.internal.v0.models.partner'];
|
|
@@ -33147,6 +33823,8 @@ export const paypalPaymentDeleted = T['io.flow.internal.v0.models.paypal_payment
|
|
|
33147
33823
|
export const paypalPaymentUpserted = T['io.flow.internal.v0.models.paypal_payment_upserted'];
|
|
33148
33824
|
export const paypalRefundDeleted = T['io.flow.internal.v0.models.paypal_refund_deleted'];
|
|
33149
33825
|
export const paypalRefundUpserted = T['io.flow.internal.v0.models.paypal_refund_upserted'];
|
|
33826
|
+
export const pcReviewContext = T['io.flow.internal.v0.models.pc_review_context'];
|
|
33827
|
+
export const pcReviewOutput = T['io.flow.internal.v0.models.pc_review_output'];
|
|
33150
33828
|
export const pendingBankPayment = T['io.flow.internal.v0.models.pending_bank_payment'];
|
|
33151
33829
|
export const pendingBankPaymentDetail = T['io.flow.internal.v0.models.pending_bank_payment_detail'];
|
|
33152
33830
|
export const pendingOrder = T['io.flow.internal.v0.models.pending_order'];
|
|
@@ -33244,6 +33922,9 @@ export const pspRoutingDistributionRevision = T['io.flow.internal.v0.models.psp_
|
|
|
33244
33922
|
export const pspRoutingDistributionRevisionForm = T['io.flow.internal.v0.models.psp_routing_distribution_revision_form'];
|
|
33245
33923
|
export const publicHub = T['io.flow.internal.v0.models.public_hub'];
|
|
33246
33924
|
export const publicHubForm = T['io.flow.internal.v0.models.public_hub_form'];
|
|
33925
|
+
export const pvDecision = T['io.flow.internal.v0.enums.pv_decision'];
|
|
33926
|
+
export const pvReviewContext = T['io.flow.internal.v0.models.pv_review_context'];
|
|
33927
|
+
export const pvReviewOutput = T['io.flow.internal.v0.models.pv_review_output'];
|
|
33247
33928
|
export const quote = T['io.flow.internal.v0.models.quote'];
|
|
33248
33929
|
export const quoteDeleted = T['io.flow.internal.v0.models.quote_deleted'];
|
|
33249
33930
|
export const quoteUpserted = T['io.flow.internal.v0.models.quote_upserted'];
|
|
@@ -33280,7 +33961,6 @@ export const ratecardDimensionEstimateDeleted = T['io.flow.internal.v0.models.ra
|
|
|
33280
33961
|
export const ratecardDimensionEstimateUpserted = T['io.flow.internal.v0.models.ratecard_dimension_estimate_upserted'];
|
|
33281
33962
|
export const ratecardInternalServiceFee = T['io.flow.internal.v0.models.ratecard_internal_service_fee'];
|
|
33282
33963
|
export const ratecardInternalSummary = T['io.flow.internal.v0.models.ratecard_internal_summary'];
|
|
33283
|
-
export const ratecardLanesImportRequest = T['io.flow.internal.v0.models.ratecard_lanes_import_request'];
|
|
33284
33964
|
export const ratecardRateLevelDeleted = T['io.flow.internal.v0.models.ratecard_rate_level_deleted'];
|
|
33285
33965
|
export const ratecardRateLevelOrganizationDeleted = T['io.flow.internal.v0.models.ratecard_rate_level_organization_deleted'];
|
|
33286
33966
|
export const ratecardRateLevelOrganizationUpserted = T['io.flow.internal.v0.models.ratecard_rate_level_organization_upserted'];
|
|
@@ -33289,8 +33969,6 @@ export const ratecardRateLevelRatecardUpserted = T['io.flow.internal.v0.models.r
|
|
|
33289
33969
|
export const ratecardRateLevelUpserted = T['io.flow.internal.v0.models.ratecard_rate_level_upserted'];
|
|
33290
33970
|
export const ratecardServiceFeeDeleted = T['io.flow.internal.v0.models.ratecard_service_fee_deleted'];
|
|
33291
33971
|
export const ratecardServiceFeeUpserted = T['io.flow.internal.v0.models.ratecard_service_fee_upserted'];
|
|
33292
|
-
export const ratecardServiceFeesOverride = T['io.flow.internal.v0.models.ratecard_service_fees_override'];
|
|
33293
|
-
export const ratecardServiceFeesOverrideForm = T['io.flow.internal.v0.models.ratecard_service_fees_override_form'];
|
|
33294
33972
|
export const ratesChanged = T['io.flow.internal.v0.models.rates_changed'];
|
|
33295
33973
|
export const ratesNamesSummary = T['io.flow.internal.v0.models.rates_names_summary'];
|
|
33296
33974
|
export const raveenaItem = T['io.flow.internal.v0.models.raveena_item'];
|
|
@@ -33305,6 +33983,8 @@ export const redirectReason = T['io.flow.internal.v0.enums.redirect_reason'];
|
|
|
33305
33983
|
export const registeredExporterTariffEligibilityData = T['io.flow.internal.v0.models.registered_exporter_tariff_eligibility_data'];
|
|
33306
33984
|
export const registeredExporterTariffEligibilityForm = T['io.flow.internal.v0.models.registered_exporter_tariff_eligibility_form'];
|
|
33307
33985
|
export const rejectionReason = T['io.flow.internal.v0.enums.rejection_reason'];
|
|
33986
|
+
export const remediateTaxDutyArm = T['io.flow.internal.v0.enums.remediate_tax_duty_arm'];
|
|
33987
|
+
export const remediateTaxDutyMetadata = T['io.flow.internal.v0.models.remediate_tax_duty_metadata'];
|
|
33308
33988
|
export const remittanceResponsibility = T['io.flow.internal.v0.models.remittance_responsibility'];
|
|
33309
33989
|
export const report = T['io.flow.internal.v0.models.report'];
|
|
33310
33990
|
export const reportAccount = T['io.flow.internal.v0.models.report_account'];
|
|
@@ -33341,11 +34021,13 @@ export const reportingDetails = T['io.flow.internal.v0.models.reporting_details'
|
|
|
33341
34021
|
export const reportingFees = T['io.flow.internal.v0.models.reporting_fees'];
|
|
33342
34022
|
export const reportingFreight = T['io.flow.internal.v0.models.reporting_freight'];
|
|
33343
34023
|
export const reportingFreightGuaranteed = T['io.flow.internal.v0.models.reporting_freight_guaranteed'];
|
|
34024
|
+
export const reportingFreightSubsidy = T['io.flow.internal.v0.models.reporting_freight_subsidy'];
|
|
33344
34025
|
export const reportingFulfillment = T['io.flow.internal.v0.models.reporting_fulfillment'];
|
|
33345
34026
|
export const reportingFulfillmentHas = T['io.flow.internal.v0.models.reporting_fulfillment_has'];
|
|
33346
34027
|
export const reportingFulfillmentIs = T['io.flow.internal.v0.models.reporting_fulfillment_is'];
|
|
33347
34028
|
export const reportingFulfillmentIsVirtual = T['io.flow.internal.v0.enums.reporting_fulfillment_is_virtual'];
|
|
33348
34029
|
export const reportingFx = T['io.flow.internal.v0.models.reporting_fx'];
|
|
34030
|
+
export const reportingFxValue = T['io.flow.internal.v0.models.reporting_fx_value'];
|
|
33349
34031
|
export const reportingMerchantBreakdown = T['io.flow.internal.v0.models.reporting_merchant_breakdown'];
|
|
33350
34032
|
export const reportingMerchantFees = T['io.flow.internal.v0.models.reporting_merchant_fees'];
|
|
33351
34033
|
export const reportingMerchantFreight = T['io.flow.internal.v0.models.reporting_merchant_freight'];
|
|
@@ -33411,6 +34093,7 @@ export const restrictionRuleEffect = T['io.flow.internal.v0.models.restriction_r
|
|
|
33411
34093
|
export const restrictionRuleEffectDeleted = T['io.flow.internal.v0.models.restriction_rule_effect_deleted'];
|
|
33412
34094
|
export const restrictionRuleEffectForm = T['io.flow.internal.v0.models.restriction_rule_effect_form'];
|
|
33413
34095
|
export const restrictionRuleEffectUpserted = T['io.flow.internal.v0.models.restriction_rule_effect_upserted'];
|
|
34096
|
+
export const restrictionRuleEvaluationMode = T['io.flow.internal.v0.enums.restriction_rule_evaluation_mode'];
|
|
33414
34097
|
export const restrictionRuleExceptionAction = T['io.flow.internal.v0.enums.restriction_rule_exception_action'];
|
|
33415
34098
|
export const restrictionRuleForm = T['io.flow.internal.v0.models.restriction_rule_form'];
|
|
33416
34099
|
export const restrictionRuleLaneExemption = T['io.flow.internal.v0.models.restriction_rule_lane_exemption'];
|
|
@@ -33449,6 +34132,7 @@ export const revenueRecord = T['io.flow.internal.v0.models.revenue_record'];
|
|
|
33449
34132
|
export const revenueRecordDeleted = T['io.flow.internal.v0.models.revenue_record_deleted'];
|
|
33450
34133
|
export const revenueRecordType = T['io.flow.internal.v0.enums.revenue_record_type'];
|
|
33451
34134
|
export const revenueRecordUpserted = T['io.flow.internal.v0.models.revenue_record_upserted'];
|
|
34135
|
+
export const reviewRequestItem = T['io.flow.internal.v0.models.review_request_item'];
|
|
33452
34136
|
export const riskCheck = T['io.flow.internal.v0.enums.risk_check'];
|
|
33453
34137
|
export const riskEvaluation = T['io.flow.internal.v0.enums.risk_evaluation'];
|
|
33454
34138
|
export const routingAccount = T['io.flow.internal.v0.models.routing_account'];
|
|
@@ -33456,6 +34140,8 @@ export const routingEntity = T['io.flow.internal.v0.unions.routing_entity'];
|
|
|
33456
34140
|
export const routingMerchant = T['io.flow.internal.v0.models.routing_merchant'];
|
|
33457
34141
|
export const routingProcessor = T['io.flow.internal.v0.models.routing_processor'];
|
|
33458
34142
|
export const salesPaymentRecord = T['io.flow.internal.v0.models.sales_payment_record'];
|
|
34143
|
+
export const salesPaymentRecordDeleted = T['io.flow.internal.v0.models.sales_payment_record_deleted'];
|
|
34144
|
+
export const salesPaymentRecordUpserted = T['io.flow.internal.v0.models.sales_payment_record_upserted'];
|
|
33459
34145
|
export const sandboxSetup = T['io.flow.internal.v0.models.sandbox_setup'];
|
|
33460
34146
|
export const sandboxSetupForm = T['io.flow.internal.v0.models.sandbox_setup_form'];
|
|
33461
34147
|
export const scheduledPayment = T['io.flow.internal.v0.models.scheduled_payment'];
|
|
@@ -33474,7 +34160,12 @@ export const searchTrackingSummary = T['io.flow.internal.v0.models.search_tracki
|
|
|
33474
34160
|
export const sellabilityCheckResult = T['io.flow.internal.v0.models.sellability_check_result'];
|
|
33475
34161
|
export const sellabilityCheckStatus = T['io.flow.internal.v0.enums.sellability_check_status'];
|
|
33476
34162
|
export const sellabilityInternalMatchType = T['io.flow.internal.v0.enums.sellability_internal_match_type'];
|
|
34163
|
+
export const sellabilityPendingVerification = T['io.flow.internal.v0.models.sellability_pending_verification'];
|
|
34164
|
+
export const sellabilityPendingVerificationDeleted = T['io.flow.internal.v0.models.sellability_pending_verification_deleted'];
|
|
34165
|
+
export const sellabilityPendingVerificationUpserted = T['io.flow.internal.v0.models.sellability_pending_verification_upserted'];
|
|
33477
34166
|
export const sellabilityStatus = T['io.flow.internal.v0.enums.sellability_status'];
|
|
34167
|
+
export const serviceFees = T['io.flow.internal.v0.models.service_fees'];
|
|
34168
|
+
export const serviceFeesForm = T['io.flow.internal.v0.models.service_fees_form'];
|
|
33478
34169
|
export const sessionOrderData = T['io.flow.internal.v0.models.session_order_data'];
|
|
33479
34170
|
export const setupBlockPutForm = T['io.flow.internal.v0.models.setup_block_put_form'];
|
|
33480
34171
|
export const sfExpress = T['io.flow.internal.v0.models.sf_express'];
|
|
@@ -33488,9 +34179,6 @@ export const shippingPricing = T['io.flow.internal.v0.models.shipping_pricing'];
|
|
|
33488
34179
|
export const shippingRateEstimateAvailableInternal = T['io.flow.internal.v0.models.shipping_rate_estimate_available_internal'];
|
|
33489
34180
|
export const shippingRateEstimateInternal = T['io.flow.internal.v0.models.shipping_rate_estimate_internal'];
|
|
33490
34181
|
export const shippingRateEstimateRequestInternal = T['io.flow.internal.v0.models.shipping_rate_estimate_request_internal'];
|
|
33491
|
-
export const shopifyAdaptivePricingCoefficients = T['io.flow.internal.v0.models.shopify_adaptive_pricing_coefficients'];
|
|
33492
|
-
export const shopifyAdaptivePricingCoefficientsDeleted = T['io.flow.internal.v0.models.shopify_adaptive_pricing_coefficients_deleted'];
|
|
33493
|
-
export const shopifyAdaptivePricingCoefficientsUpserted = T['io.flow.internal.v0.models.shopify_adaptive_pricing_coefficients_upserted'];
|
|
33494
34182
|
export const shopifyAddress = T['io.flow.internal.v0.models.shopify_address'];
|
|
33495
34183
|
export const shopifyCallbackError = T['io.flow.internal.v0.models.shopify_callback_error'];
|
|
33496
34184
|
export const shopifyCallbackErrorCode = T['io.flow.internal.v0.enums.shopify_callback_error_code'];
|
|
@@ -33500,6 +34188,7 @@ export const shopifyChannelOrganizationToken = T['io.flow.internal.v0.models.sho
|
|
|
33500
34188
|
export const shopifyChannelOrganizationTokens = T['io.flow.internal.v0.models.shopify_channel_organization_tokens'];
|
|
33501
34189
|
export const shopifyChargeCode = T['io.flow.internal.v0.enums.shopify_charge_code'];
|
|
33502
34190
|
export const shopifyContactDetails = T['io.flow.internal.v0.models.shopify_contact_details'];
|
|
34191
|
+
export const shopifyCost = T['io.flow.internal.v0.models.shopify_cost'];
|
|
33503
34192
|
export const shopifyDeliveryMethodType = T['io.flow.internal.v0.enums.shopify_delivery_method_type'];
|
|
33504
34193
|
export const shopifyDimensionUnit = T['io.flow.internal.v0.enums.shopify_dimension_unit'];
|
|
33505
34194
|
export const shopifyDispute = T['io.flow.internal.v0.models.shopify_dispute'];
|
|
@@ -33628,7 +34317,6 @@ export const shopifyShipmentRateRequest = T['io.flow.internal.v0.models.shopify_
|
|
|
33628
34317
|
export const shopifyShipmentRateResponse = T['io.flow.internal.v0.models.shopify_shipment_rate_response'];
|
|
33629
34318
|
export const shopifyShipmentRateShipment = T['io.flow.internal.v0.models.shopify_shipment_rate_shipment'];
|
|
33630
34319
|
export const shopifyShipmentRateShipper = T['io.flow.internal.v0.models.shopify_shipment_rate_shipper'];
|
|
33631
|
-
export const shopifyShipmentRateTotalCharges = T['io.flow.internal.v0.models.shopify_shipment_rate_total_charges'];
|
|
33632
34320
|
export const shopifyShipmentRateUnavailable = T['io.flow.internal.v0.models.shopify_shipment_rate_unavailable'];
|
|
33633
34321
|
export const shopifyShippingLocation = T['io.flow.internal.v0.models.shopify_shipping_location'];
|
|
33634
34322
|
export const shopifyShopStatistics = T['io.flow.internal.v0.models.shopify_shop_statistics'];
|
|
@@ -33833,6 +34521,9 @@ export const unclassifiedProductsPurgeRequest = T['io.flow.internal.v0.models.un
|
|
|
33833
34521
|
export const unclassifiedProductsSummary = T['io.flow.internal.v0.models.unclassified_products_summary'];
|
|
33834
34522
|
export const unharmonizedItemsExport = T['io.flow.internal.v0.models.unharmonized_items_export'];
|
|
33835
34523
|
export const unphrasedProductsExport = T['io.flow.internal.v0.models.unphrased_products_export'];
|
|
34524
|
+
export const unserviceableTaxonomyCategory = T['io.flow.internal.v0.models.unserviceable_taxonomy_category'];
|
|
34525
|
+
export const unserviceableTaxonomyCategoryDeleted = T['io.flow.internal.v0.models.unserviceable_taxonomy_category_deleted'];
|
|
34526
|
+
export const unserviceableTaxonomyCategoryUpserted = T['io.flow.internal.v0.models.unserviceable_taxonomy_category_upserted'];
|
|
33836
34527
|
export const ups = T['io.flow.internal.v0.models.ups'];
|
|
33837
34528
|
export const usdSpotRate = T['io.flow.internal.v0.models.usd_spot_rate'];
|
|
33838
34529
|
export const usdSpotRateDeleted = T['io.flow.internal.v0.models.usd_spot_rate_deleted'];
|