@flowio/api-internal-prop-types 9.24.138 → 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 +507 -140
- package/lib/api-internal.js +1 -1
- package/package.json +1 -1
- package/src/api-internal.d.ts +507 -140
- package/src/api-internal.js +710 -278
package/src/api-internal.js
CHANGED
|
@@ -728,18 +728,6 @@ T['io.flow.shopify.merchant.config.v0.unions.entity'] = PropTypes.oneOfType([
|
|
|
728
728
|
T['io.flow.shopify.merchant.config.v0.models.individual'],
|
|
729
729
|
]);
|
|
730
730
|
|
|
731
|
-
T['io.flow.channel.shopify.v0.enums.channel_shopify_order_state_reason_code'] = PropTypes.oneOf(['placeholder_reason_code']);
|
|
732
|
-
|
|
733
|
-
T['io.flow.channel.shopify.v0.models.channel_shopify_order_state_reason'] = PropTypes.exact({
|
|
734
|
-
code: T['io.flow.channel.shopify.v0.enums.channel_shopify_order_state_reason_code'].isRequired,
|
|
735
|
-
message: PropTypes.string.isRequired,
|
|
736
|
-
});
|
|
737
|
-
|
|
738
|
-
T['io.flow.channel.shopify.v0.models.channel_shopify_order_summary'] = PropTypes.exact({
|
|
739
|
-
order_id: PropTypes.number.isRequired,
|
|
740
|
-
shop_id: PropTypes.number.isRequired,
|
|
741
|
-
});
|
|
742
|
-
|
|
743
731
|
T['io.flow.crypto.v0.enums.reason_type'] = PropTypes.oneOf(['duplicate', 'fraudulent', 'requested_by_customer']);
|
|
744
732
|
|
|
745
733
|
T['io.flow.crypto.v0.models.refund_request'] = PropTypes.exact({
|
|
@@ -1614,6 +1602,7 @@ T['io.flow.channel.internal.v0.models.channel_order_acceptance_failure'] = PropT
|
|
|
1614
1602
|
reason: PropTypes.string.isRequired,
|
|
1615
1603
|
});
|
|
1616
1604
|
|
|
1605
|
+
T['io.flow.order.price.v0.enums.order_price_subsidy_type'] = PropTypes.oneOf(['shipping_subsidy']);
|
|
1617
1606
|
T['io.flow.order.price.v0.enums.order_price_fee_type'] = PropTypes.oneOf(['service', 'fx', 'tax', 'duties', 'tax_and_duties', 'product', 'mor_tax']);
|
|
1618
1607
|
|
|
1619
1608
|
T['io.flow.order.price.v0.enums.order_price_detail_component_key'] = PropTypes.oneOf([
|
|
@@ -1649,6 +1638,7 @@ T['io.flow.order.price.v0.enums.order_price_detail_component_key'] = PropTypes.o
|
|
|
1649
1638
|
'tip',
|
|
1650
1639
|
]);
|
|
1651
1640
|
|
|
1641
|
+
T['io.flow.order.price.v0.enums.order_price_coefficient_type'] = PropTypes.oneOf(['item_shipping']);
|
|
1652
1642
|
T['io.flow.channel.shopify.internal.v0.enums.shopify_service'] = PropTypes.oneOf(['payment', 'duty_tax_calculator', 'sellability']);
|
|
1653
1643
|
|
|
1654
1644
|
T['io.flow.channel.shopify.internal.v0.models.shopify_channel_organization_token'] = PropTypes.exact({
|
|
@@ -2924,6 +2914,7 @@ T['io.flow.shopify.external.v0.models.graphql_product_variant'] = PropTypes.exac
|
|
|
2924
2914
|
});
|
|
2925
2915
|
|
|
2926
2916
|
T['io.flow.shopify.external.v0.models.graphql_taxonomy_category'] = PropTypes.exact({
|
|
2917
|
+
id: PropTypes.string,
|
|
2927
2918
|
name: PropTypes.string.isRequired,
|
|
2928
2919
|
fullName: PropTypes.string.isRequired,
|
|
2929
2920
|
});
|
|
@@ -3534,6 +3525,13 @@ T['io.flow.consumer.invoice.v0.models.b2b_invoice_reference'] = PropTypes.exact(
|
|
|
3534
3525
|
});
|
|
3535
3526
|
|
|
3536
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
|
+
|
|
3537
3535
|
T['io.flow.channel.internal.v0.enums.order_payment_source_type'] = PropTypes.oneOf(['globale', 'third_party']);
|
|
3538
3536
|
|
|
3539
3537
|
T['io.flow.channel.internal.v0.models.order_edit_summary'] = PropTypes.exact({
|
|
@@ -3716,6 +3714,30 @@ T['io.flow.channel.internal.v0.enums.channel_order_acceptance_next_action_from']
|
|
|
3716
3714
|
'logistics_team',
|
|
3717
3715
|
]);
|
|
3718
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
|
+
|
|
3719
3741
|
T['io.flow.shopify.markets.internal.v0.models.product_restriction_result_validation_error'] = PropTypes.exact({
|
|
3720
3742
|
message: PropTypes.string.isRequired,
|
|
3721
3743
|
reason: PropTypes.string.isRequired,
|
|
@@ -7467,7 +7489,7 @@ T['io.flow.fulfillment.v0.models.scheduled_pickup'] = PropTypes.exact({
|
|
|
7467
7489
|
minute_of_hour: PropTypes.string.isRequired,
|
|
7468
7490
|
});
|
|
7469
7491
|
|
|
7470
|
-
T['io.flow.restrictions.v0.enums.restriction_decision_reason'] = PropTypes.oneOf(['manual_dispute']);
|
|
7492
|
+
T['io.flow.restrictions.v0.enums.restriction_decision_reason'] = PropTypes.oneOf(['manual_dispute', 'operations_decision']);
|
|
7471
7493
|
T['io.flow.restrictions.v0.enums.restriction_decision'] = PropTypes.oneOf(['accept', 'reject', 'escalate', 'review']);
|
|
7472
7494
|
|
|
7473
7495
|
T['io.flow.restrictions.v0.models.restriction_rule_decision_form'] = PropTypes.exact({
|
|
@@ -8931,6 +8953,20 @@ T['io.flow.internal.v0.models.shopify_hs10_codes_deleted'] = PropTypes.exact({
|
|
|
8931
8953
|
id: PropTypes.string.isRequired,
|
|
8932
8954
|
});
|
|
8933
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
|
+
|
|
8934
8970
|
T['io.flow.internal.v0.models.preonboarding_merchant_deleted'] = PropTypes.exact({
|
|
8935
8971
|
discriminator: PropTypes.oneOf(['preonboarding_merchant_deleted']).isRequired,
|
|
8936
8972
|
event_id: PropTypes.string.isRequired,
|
|
@@ -9279,6 +9315,24 @@ T['io.flow.internal.v0.models.all_items_export'] = PropTypes.exact({
|
|
|
9279
9315
|
export_id: PropTypes.string.isRequired,
|
|
9280
9316
|
});
|
|
9281
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
|
+
|
|
9282
9336
|
T['io.flow.internal.v0.models.guaranteed_shipping_published_output_deleted'] = PropTypes.exact({
|
|
9283
9337
|
discriminator: PropTypes.oneOf(['guaranteed_shipping_published_output_deleted']).isRequired,
|
|
9284
9338
|
event_id: PropTypes.string.isRequired,
|
|
@@ -9287,6 +9341,23 @@ T['io.flow.internal.v0.models.guaranteed_shipping_published_output_deleted'] = P
|
|
|
9287
9341
|
id: PropTypes.string.isRequired,
|
|
9288
9342
|
});
|
|
9289
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
|
+
|
|
9290
9361
|
T['io.flow.internal.v0.models.quote_deleted'] = PropTypes.exact({
|
|
9291
9362
|
discriminator: PropTypes.oneOf(['quote_deleted']).isRequired,
|
|
9292
9363
|
event_id: PropTypes.string.isRequired,
|
|
@@ -9373,6 +9444,14 @@ T['io.flow.internal.v0.models.fraud_review_deleted'] = PropTypes.exact({
|
|
|
9373
9444
|
id: PropTypes.string.isRequired,
|
|
9374
9445
|
});
|
|
9375
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
|
+
|
|
9376
9455
|
T['io.flow.internal.v0.models.flat_rate_label_reversal_deleted'] = PropTypes.exact({
|
|
9377
9456
|
discriminator: PropTypes.oneOf(['flat_rate_label_reversal_deleted']).isRequired,
|
|
9378
9457
|
event_id: PropTypes.string.isRequired,
|
|
@@ -9830,36 +9909,18 @@ T['io.flow.internal.v0.models.fulfillment_deleted'] = PropTypes.exact({
|
|
|
9830
9909
|
id: PropTypes.string.isRequired,
|
|
9831
9910
|
});
|
|
9832
9911
|
|
|
9833
|
-
T['io.flow.internal.v0.models.
|
|
9834
|
-
discriminator: PropTypes.oneOf(['
|
|
9835
|
-
event_id: PropTypes.string.isRequired,
|
|
9836
|
-
timestamp: PropTypes.string.isRequired,
|
|
9837
|
-
id: PropTypes.string.isRequired,
|
|
9838
|
-
});
|
|
9839
|
-
|
|
9840
|
-
T['io.flow.internal.v0.models.adaptive_shipping_rate_deleted'] = PropTypes.exact({
|
|
9841
|
-
discriminator: PropTypes.oneOf(['adaptive_shipping_rate_deleted']).isRequired,
|
|
9912
|
+
T['io.flow.internal.v0.models.ai_review_result_deleted'] = PropTypes.exact({
|
|
9913
|
+
discriminator: PropTypes.oneOf(['ai_review_result_deleted']).isRequired,
|
|
9842
9914
|
event_id: PropTypes.string.isRequired,
|
|
9843
9915
|
timestamp: PropTypes.string.isRequired,
|
|
9844
|
-
organization: PropTypes.string.isRequired,
|
|
9845
9916
|
id: PropTypes.string.isRequired,
|
|
9846
|
-
});
|
|
9847
|
-
|
|
9848
|
-
T['io.flow.internal.v0.models.adaptive_pricing_update_deleted'] = PropTypes.exact({
|
|
9849
|
-
discriminator: PropTypes.oneOf(['adaptive_pricing_update_deleted']).isRequired,
|
|
9850
|
-
event_id: PropTypes.string.isRequired,
|
|
9851
|
-
timestamp: PropTypes.string.isRequired,
|
|
9852
9917
|
organization: PropTypes.string.isRequired,
|
|
9853
|
-
channel_id: PropTypes.string.isRequired,
|
|
9854
|
-
id: PropTypes.string.isRequired,
|
|
9855
9918
|
});
|
|
9856
9919
|
|
|
9857
|
-
T['io.flow.internal.v0.models.
|
|
9858
|
-
discriminator: PropTypes.oneOf(['
|
|
9920
|
+
T['io.flow.internal.v0.models.adyen_dispute_deleted'] = PropTypes.exact({
|
|
9921
|
+
discriminator: PropTypes.oneOf(['adyen_dispute_deleted']).isRequired,
|
|
9859
9922
|
event_id: PropTypes.string.isRequired,
|
|
9860
9923
|
timestamp: PropTypes.string.isRequired,
|
|
9861
|
-
organization: PropTypes.string.isRequired,
|
|
9862
|
-
channel_id: PropTypes.string.isRequired,
|
|
9863
9924
|
id: PropTypes.string.isRequired,
|
|
9864
9925
|
});
|
|
9865
9926
|
|
|
@@ -9992,6 +10053,20 @@ T['io.flow.internal.v0.models.usd_spot_rate_upserted'] = PropTypes.exact({
|
|
|
9992
10053
|
usd_spot_rate: T['io.flow.internal.v0.models.usd_spot_rate'].isRequired,
|
|
9993
10054
|
});
|
|
9994
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
|
+
|
|
9995
10070
|
T['io.flow.internal.v0.models.unassigned_merchant_guid'] = PropTypes.exact({
|
|
9996
10071
|
id: PropTypes.string.isRequired,
|
|
9997
10072
|
merchant_guid: PropTypes.string.isRequired,
|
|
@@ -10175,6 +10250,7 @@ T['io.flow.internal.v0.models.taxonomy_node'] = PropTypes.exact({
|
|
|
10175
10250
|
T['io.flow.internal.v0.models.taxonomy_category_hs6_ref'] = PropTypes.exact({
|
|
10176
10251
|
id: PropTypes.string.isRequired,
|
|
10177
10252
|
taxonomy_category: PropTypes.string.isRequired,
|
|
10253
|
+
taxonomy_category_id: PropTypes.string,
|
|
10178
10254
|
hs6: PropTypes.string.isRequired,
|
|
10179
10255
|
updated_by_user_id: PropTypes.string.isRequired,
|
|
10180
10256
|
});
|
|
@@ -10201,6 +10277,7 @@ T['io.flow.billing.v0.enums.tax_duty_transaction_reason_code'] = PropTypes.oneOf
|
|
|
10201
10277
|
'us_inbound_tax_refund',
|
|
10202
10278
|
'order_cancellation_above_de_min',
|
|
10203
10279
|
'wyol_shipment_above_de_min',
|
|
10280
|
+
'wyol_shipment_lvg',
|
|
10204
10281
|
'full_refund_without_shipment',
|
|
10205
10282
|
'unfulfilled_order_above_de_min',
|
|
10206
10283
|
'order_cancellation_without_capture',
|
|
@@ -10786,6 +10863,12 @@ T['io.flow.shopify.external.v0.models.product_metafield'] = PropTypes.exact({
|
|
|
10786
10863
|
admin_graphql_api_id: PropTypes.string.isRequired,
|
|
10787
10864
|
});
|
|
10788
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
|
+
|
|
10789
10872
|
T['io.flow.shopify.external.v0.enums.published_scope'] = PropTypes.oneOf(['global']);
|
|
10790
10873
|
|
|
10791
10874
|
T['io.flow.shopify.external.v0.models.option'] = PropTypes.exact({
|
|
@@ -10836,6 +10919,74 @@ T['io.flow.shopify.external.v0.models.response_variant'] = PropTypes.exact({
|
|
|
10836
10919
|
variant: T['io.flow.shopify.external.v0.models.product_variant'].isRequired,
|
|
10837
10920
|
});
|
|
10838
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
|
+
|
|
10839
10990
|
T['io.flow.internal.v0.models.shopify_product_bundle_underlying'] = PropTypes.exact({
|
|
10840
10991
|
product_ids: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
10841
10992
|
});
|
|
@@ -11560,6 +11711,34 @@ T['io.flow.internal.v0.models.setup_block_put_form'] = PropTypes.exact({
|
|
|
11560
11711
|
).isRequired,
|
|
11561
11712
|
});
|
|
11562
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
|
+
|
|
11563
11742
|
T['io.flow.sellability.v0.enums.sellability_error_code'] = PropTypes.oneOf([
|
|
11564
11743
|
'insufficient_details',
|
|
11565
11744
|
'ineligible_category',
|
|
@@ -11705,6 +11884,42 @@ T['io.flow.internal.v0.models.payment_is'] = PropTypes.exact({
|
|
|
11705
11884
|
managed_pricing: PropTypes.bool,
|
|
11706
11885
|
});
|
|
11707
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
|
+
|
|
11708
11923
|
T['io.flow.internal.v0.models.marked_as_final'] = PropTypes.exact({
|
|
11709
11924
|
products: PropTypes.bool.isRequired,
|
|
11710
11925
|
shipping: PropTypes.bool.isRequired,
|
|
@@ -11877,6 +12092,7 @@ T['io.flow.internal.v0.models.restrictions_athena_dailyops_fs_upserted'] = PropT
|
|
|
11877
12092
|
restrictions_athena_dailyops_fs: T['io.flow.internal.v0.models.restrictions_athena_dailyops_fs'].isRequired,
|
|
11878
12093
|
});
|
|
11879
12094
|
|
|
12095
|
+
T['io.flow.internal.v0.enums.restriction_rule_evaluation_mode'] = PropTypes.oneOf(['all_screenings', 'first_screening_only']);
|
|
11880
12096
|
T['io.flow.internal.v0.enums.restriction_rule_activation_status'] = PropTypes.oneOf(['draft', 'active', 'inactive']);
|
|
11881
12097
|
|
|
11882
12098
|
T['io.flow.internal.v0.models.keyword_cancelling'] = PropTypes.exact({
|
|
@@ -12135,6 +12351,7 @@ T['io.flow.internal.v0.enums.report_type'] = PropTypes.oneOf([
|
|
|
12135
12351
|
'scheduled_payment_citi',
|
|
12136
12352
|
'scheduled_payment_citi_krw',
|
|
12137
12353
|
'scheduled_payment_citi_krw_txt',
|
|
12354
|
+
'scheduled_payment_citi_uk_xml',
|
|
12138
12355
|
'account_quarterly_balances',
|
|
12139
12356
|
'invariants',
|
|
12140
12357
|
'payments',
|
|
@@ -12157,6 +12374,13 @@ T['io.flow.internal.v0.models.report'] = PropTypes.exact({
|
|
|
12157
12374
|
processed_at: PropTypes.string,
|
|
12158
12375
|
});
|
|
12159
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
|
+
|
|
12160
12384
|
T['io.flow.internal.v0.enums.redirect_reason'] = PropTypes.oneOf(['three_d_secure']);
|
|
12161
12385
|
|
|
12162
12386
|
T['io.flow.payment.v0.models.post_payment_redirect_urls'] = PropTypes.exact({
|
|
@@ -12555,23 +12779,6 @@ T['io.flow.sellability.v0.models.sellability_screening'] = PropTypes.exact({
|
|
|
12555
12779
|
error_message: PropTypes.string,
|
|
12556
12780
|
});
|
|
12557
12781
|
|
|
12558
|
-
T['io.flow.internal.v0.models.preonboarding_merchant'] = PropTypes.exact({
|
|
12559
|
-
id: PropTypes.string.isRequired,
|
|
12560
|
-
merchant_id: PropTypes.string.isRequired,
|
|
12561
|
-
channel: PropTypes.string.isRequired,
|
|
12562
|
-
catalog_size: PropTypes.number.isRequired,
|
|
12563
|
-
processed_product_count: PropTypes.number.isRequired,
|
|
12564
|
-
last_request: PropTypes.string.isRequired,
|
|
12565
|
-
updated_by_user_id: PropTypes.string.isRequired,
|
|
12566
|
-
});
|
|
12567
|
-
|
|
12568
|
-
T['io.flow.internal.v0.models.preonboarding_merchant_upserted'] = PropTypes.exact({
|
|
12569
|
-
discriminator: PropTypes.oneOf(['preonboarding_merchant_upserted']).isRequired,
|
|
12570
|
-
event_id: PropTypes.string.isRequired,
|
|
12571
|
-
timestamp: PropTypes.string.isRequired,
|
|
12572
|
-
preonboarding_merchant: T['io.flow.internal.v0.models.preonboarding_merchant'].isRequired,
|
|
12573
|
-
});
|
|
12574
|
-
|
|
12575
12782
|
T['io.flow.internal.v0.enums.preonboarding_classification_type'] = PropTypes.oneOf(['None', 'Manual', 'ML', 'System']);
|
|
12576
12783
|
T['io.flow.internal.v0.enums.preonboarding_classification_decision'] = PropTypes.oneOf(['Accept', 'Reject']);
|
|
12577
12784
|
|
|
@@ -12589,9 +12796,28 @@ T['io.flow.internal.v0.models.preonboarding_classification_result'] = PropTypes.
|
|
|
12589
12796
|
|
|
12590
12797
|
T['io.flow.sellability.v0.enums.sellability_screening_mode'] = PropTypes.oneOf(['pre_onboarding', 'default_on', 'active']);
|
|
12591
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
|
+
|
|
12592
12817
|
T['io.flow.product.v0.models.product_taxonomy_category'] = PropTypes.exact({
|
|
12593
12818
|
name: PropTypes.string.isRequired,
|
|
12594
12819
|
full_name: PropTypes.string.isRequired,
|
|
12820
|
+
id: PropTypes.string,
|
|
12595
12821
|
});
|
|
12596
12822
|
|
|
12597
12823
|
T['io.flow.product.v0.models.product'] = PropTypes.exact({
|
|
@@ -12606,74 +12832,6 @@ T['io.flow.product.v0.models.product'] = PropTypes.exact({
|
|
|
12606
12832
|
deleted_at: PropTypes.string,
|
|
12607
12833
|
});
|
|
12608
12834
|
|
|
12609
|
-
T['io.flow.shopify.external.v0.models.product'] = PropTypes.exact({
|
|
12610
|
-
id: PropTypes.number.isRequired,
|
|
12611
|
-
handle: PropTypes.string.isRequired,
|
|
12612
|
-
variants: PropTypes.arrayOf(T['io.flow.shopify.external.v0.models.product_variant']),
|
|
12613
|
-
images: PropTypes.arrayOf(T['io.flow.shopify.external.v0.models.product_image']).isRequired,
|
|
12614
|
-
title: PropTypes.string.isRequired,
|
|
12615
|
-
vendor: PropTypes.string,
|
|
12616
|
-
body_html: PropTypes.string,
|
|
12617
|
-
product_type: PropTypes.string,
|
|
12618
|
-
status: PropTypes.string,
|
|
12619
|
-
options: PropTypes.arrayOf(T['io.flow.shopify.external.v0.models.option']).isRequired,
|
|
12620
|
-
tags: PropTypes.string,
|
|
12621
|
-
template_suffix: PropTypes.string,
|
|
12622
|
-
published_scope: T['io.flow.shopify.external.v0.enums.published_scope'],
|
|
12623
|
-
published_at: PropTypes.string,
|
|
12624
|
-
created_at: PropTypes.string.isRequired,
|
|
12625
|
-
updated_at: PropTypes.string.isRequired,
|
|
12626
|
-
has_variants_that_requires_components: PropTypes.bool,
|
|
12627
|
-
category: T['io.flow.product.v0.models.product_taxonomy_category'],
|
|
12628
|
-
metafields: PropTypes.arrayOf(T['io.flow.shopify.external.v0.models.product_metafield']),
|
|
12629
|
-
});
|
|
12630
|
-
|
|
12631
|
-
T['io.flow.shopify.external.v0.models.response_products'] = PropTypes.exact({
|
|
12632
|
-
products: PropTypes.arrayOf(T['io.flow.shopify.external.v0.models.product']).isRequired,
|
|
12633
|
-
});
|
|
12634
|
-
|
|
12635
|
-
T['io.flow.shopify.external.v0.models.response_product'] = PropTypes.exact({
|
|
12636
|
-
product: T['io.flow.shopify.external.v0.models.product'].isRequired,
|
|
12637
|
-
});
|
|
12638
|
-
|
|
12639
|
-
T['io.flow.shopify.markets.internal.v0.models.shopify_product_wrapper'] = PropTypes.exact({
|
|
12640
|
-
shopify_product: T['io.flow.shopify.external.v0.models.product'].isRequired,
|
|
12641
|
-
deleted_at: PropTypes.string,
|
|
12642
|
-
});
|
|
12643
|
-
|
|
12644
|
-
T['io.flow.internal.v0.models.shopify_product_wrapper'] = PropTypes.exact({
|
|
12645
|
-
shopify_product: T['io.flow.shopify.external.v0.models.product'].isRequired,
|
|
12646
|
-
deleted_at: PropTypes.string,
|
|
12647
|
-
});
|
|
12648
|
-
|
|
12649
|
-
T['io.flow.internal.v0.models.shopify_product_update_webhook_event'] = PropTypes.exact({
|
|
12650
|
-
id: PropTypes.string.isRequired,
|
|
12651
|
-
product: T['io.flow.shopify.external.v0.models.product'].isRequired,
|
|
12652
|
-
domain: PropTypes.string.isRequired,
|
|
12653
|
-
api_version: PropTypes.string.isRequired,
|
|
12654
|
-
});
|
|
12655
|
-
|
|
12656
|
-
T['io.flow.internal.v0.models.shopify_product_update_upserted'] = PropTypes.exact({
|
|
12657
|
-
discriminator: PropTypes.oneOf(['shopify_product_update_upserted']).isRequired,
|
|
12658
|
-
event_id: PropTypes.string.isRequired,
|
|
12659
|
-
timestamp: PropTypes.string.isRequired,
|
|
12660
|
-
organization: PropTypes.string.isRequired,
|
|
12661
|
-
shopify_product_update: T['io.flow.internal.v0.models.shopify_product_update_webhook_event'].isRequired,
|
|
12662
|
-
});
|
|
12663
|
-
|
|
12664
|
-
T['io.flow.internal.v0.models.shopify_product_create_webhook_event'] = PropTypes.exact({
|
|
12665
|
-
id: PropTypes.string.isRequired,
|
|
12666
|
-
product: T['io.flow.shopify.external.v0.models.product'].isRequired,
|
|
12667
|
-
});
|
|
12668
|
-
|
|
12669
|
-
T['io.flow.internal.v0.models.shopify_product_create_upserted'] = PropTypes.exact({
|
|
12670
|
-
discriminator: PropTypes.oneOf(['shopify_product_create_upserted']).isRequired,
|
|
12671
|
-
event_id: PropTypes.string.isRequired,
|
|
12672
|
-
timestamp: PropTypes.string.isRequired,
|
|
12673
|
-
organization: PropTypes.string.isRequired,
|
|
12674
|
-
shopify_product_create: T['io.flow.internal.v0.models.shopify_product_create_webhook_event'].isRequired,
|
|
12675
|
-
});
|
|
12676
|
-
|
|
12677
12835
|
T['io.flow.internal.v0.models.preonboarding_sellability_result'] = PropTypes.exact({
|
|
12678
12836
|
id: PropTypes.string,
|
|
12679
12837
|
merchant_id: PropTypes.string.isRequired,
|
|
@@ -13349,6 +13507,10 @@ T['io.flow.shopify.markets.internal.event.v0.models.order_tax_and_duty_inclusivi
|
|
|
13349
13507
|
order_tax_and_duty_inclusivity_setting: T['io.flow.shopify.markets.internal.v0.models.order_tax_and_duty_inclusivity_setting'].isRequired,
|
|
13350
13508
|
});
|
|
13351
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
|
+
|
|
13352
13514
|
T['io.flow.internal.v0.models.order_tax_and_duty_inclusivity_setting'] = PropTypes.exact({
|
|
13353
13515
|
id: PropTypes.string.isRequired,
|
|
13354
13516
|
organization_id: PropTypes.string.isRequired,
|
|
@@ -13364,6 +13526,10 @@ T['io.flow.internal.v0.models.order_tax_and_duty_inclusivity_setting_upserted']
|
|
|
13364
13526
|
order_tax_and_duty_inclusivity_setting: T['io.flow.internal.v0.models.order_tax_and_duty_inclusivity_setting'].isRequired,
|
|
13365
13527
|
});
|
|
13366
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
|
+
|
|
13367
13533
|
T['io.flow.common.v0.enums.user_status'] = PropTypes.oneOf(['pending', 'active', 'inactive']);
|
|
13368
13534
|
|
|
13369
13535
|
T['io.flow.internal.v0.models.user_status_rule_form'] = PropTypes.exact({
|
|
@@ -14755,7 +14921,32 @@ T['io.flow.internal.v0.models.item_sales_margin'] = PropTypes.exact({
|
|
|
14755
14921
|
position: PropTypes.number.isRequired,
|
|
14756
14922
|
});
|
|
14757
14923
|
|
|
14758
|
-
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']);
|
|
14759
14950
|
T['io.flow.internal.v0.enums.harmonization_decision_source'] = PropTypes.oneOf(['human', 'system', 'legacy_model', 'enterprise_model', 'merchant']);
|
|
14760
14951
|
T['io.flow.internal.v0.enums.item_type'] = PropTypes.oneOf(['standard', 'multi_product']);
|
|
14761
14952
|
|
|
@@ -14799,6 +14990,32 @@ T['io.flow.internal.v0.models.item_classification'] = PropTypes.exact({
|
|
|
14799
14990
|
model_id: PropTypes.string.isRequired,
|
|
14800
14991
|
});
|
|
14801
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
|
+
|
|
14802
15019
|
T['io.flow.reference.v0.models.currency_symbols'] = PropTypes.exact({
|
|
14803
15020
|
primary: PropTypes.string.isRequired,
|
|
14804
15021
|
narrow: PropTypes.string,
|
|
@@ -15211,7 +15428,7 @@ T['io.flow.payment.gateway.v0.unions.action'] = PropTypes.oneOfType([
|
|
|
15211
15428
|
]);
|
|
15212
15429
|
|
|
15213
15430
|
T['io.flow.internal.v0.enums.rate_source'] = PropTypes.oneOf(['calculated', 'market']);
|
|
15214
|
-
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']);
|
|
15215
15432
|
|
|
15216
15433
|
T['io.flow.experience.v0.models.order_rate'] = PropTypes.exact({
|
|
15217
15434
|
from: PropTypes.string.isRequired,
|
|
@@ -15947,6 +16164,8 @@ T['io.flow.experience.v0.models.order_identifier'] = PropTypes.exact({
|
|
|
15947
16164
|
number: PropTypes.string,
|
|
15948
16165
|
});
|
|
15949
16166
|
|
|
16167
|
+
T['io.flow.internal.v0.enums.mail_class'] = PropTypes.oneOf(['standard', 'express']);
|
|
16168
|
+
|
|
15950
16169
|
T['io.flow.internal.v0.models.fiserv_authentication_form'] = PropTypes.exact({
|
|
15951
16170
|
public_key: PropTypes.string.isRequired,
|
|
15952
16171
|
secret_key: PropTypes.string.isRequired,
|
|
@@ -15957,6 +16176,14 @@ T['io.flow.internal.v0.models.fiserv_authentication'] = PropTypes.exact({
|
|
|
15957
16176
|
secret_key_reference: PropTypes.string.isRequired,
|
|
15958
16177
|
});
|
|
15959
16178
|
|
|
16179
|
+
T['io.flow.billing.bank.account.v0.models.bank_account_info_kor_v2'] = PropTypes.exact({
|
|
16180
|
+
discriminator: PropTypes.oneOf(['kor_v2']).isRequired,
|
|
16181
|
+
name: PropTypes.string.isRequired,
|
|
16182
|
+
bank_account_number: PropTypes.string.isRequired,
|
|
16183
|
+
bank_routing_number: PropTypes.string.isRequired,
|
|
16184
|
+
bank_name: PropTypes.string.isRequired,
|
|
16185
|
+
});
|
|
16186
|
+
|
|
15960
16187
|
T['io.flow.billing.bank.account.v0.models.bank_account_info_kor'] = PropTypes.exact({
|
|
15961
16188
|
discriminator: PropTypes.oneOf(['kor']).isRequired,
|
|
15962
16189
|
name: PropTypes.string.isRequired,
|
|
@@ -16006,6 +16233,7 @@ T['io.flow.billing.bank.account.v0.unions.bank_account_info'] = PropTypes.oneOfT
|
|
|
16006
16233
|
T['io.flow.billing.bank.account.v0.models.bank_account_info_fra'],
|
|
16007
16234
|
T['io.flow.billing.bank.account.v0.models.bank_account_info_ita'],
|
|
16008
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'],
|
|
16009
16237
|
]);
|
|
16010
16238
|
|
|
16011
16239
|
T['io.flow.billing.v0.models.bank_account_form_info'] = PropTypes.exact({
|
|
@@ -17122,6 +17350,15 @@ T['io.flow.internal.v0.models.dimension_estimate_ops_input'] = PropTypes.exact({
|
|
|
17122
17350
|
weight_value: PropTypes.string,
|
|
17123
17351
|
});
|
|
17124
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
|
+
|
|
17125
17362
|
T['io.flow.experience.v0.enums.delivered_duty_display_type'] = PropTypes.oneOf(['all', 'single']);
|
|
17126
17363
|
T['io.flow.internal.v0.enums.delivered_duty_option_message_type'] = PropTypes.oneOf(['warning', 'notification']);
|
|
17127
17364
|
|
|
@@ -18039,6 +18276,7 @@ T['io.flow.internal.v0.enums.item_harmonization_status'] = PropTypes.oneOf([
|
|
|
18039
18276
|
'non_classifiable_not_enough_information',
|
|
18040
18277
|
'exempt',
|
|
18041
18278
|
'manual_classification_required',
|
|
18279
|
+
'unserviceable_taxonomy',
|
|
18042
18280
|
]);
|
|
18043
18281
|
|
|
18044
18282
|
T['io.flow.internal.v0.models.no_classification_form'] = PropTypes.exact({
|
|
@@ -18718,41 +18956,10 @@ T['io.flow.internal.v0.enums.channel_order_acceptance_rejection_reason'] = PropT
|
|
|
18718
18956
|
'organization_deactivated',
|
|
18719
18957
|
]);
|
|
18720
18958
|
|
|
18721
|
-
T['io.flow.
|
|
18959
|
+
T['io.flow.internal.v0.models.external_order_summary'] = PropTypes.exact({
|
|
18722
18960
|
id: PropTypes.string.isRequired,
|
|
18723
18961
|
edit_ids: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
18724
|
-
|
|
18725
|
-
|
|
18726
|
-
T['io.flow.channel.shopify.v0.models.channel_shopify_order_state'] = PropTypes.exact({
|
|
18727
|
-
id: PropTypes.string.isRequired,
|
|
18728
|
-
shopify_order_summary: T['io.flow.channel.shopify.v0.models.channel_shopify_order_summary'].isRequired,
|
|
18729
|
-
status: T['io.flow.channel.internal.v0.enums.channel_order_acceptance_status'].isRequired,
|
|
18730
|
-
reasons: PropTypes.arrayOf(T['io.flow.channel.shopify.v0.models.channel_shopify_order_state_reason']),
|
|
18731
|
-
external_order_summary: T['io.flow.channel.shopify.v0.models.external_order_summary'],
|
|
18732
|
-
});
|
|
18733
|
-
|
|
18734
|
-
T['io.flow.channel.internal.v0.models.channel_order_acceptance'] = PropTypes.exact({
|
|
18735
|
-
id: PropTypes.string.isRequired,
|
|
18736
|
-
organization_id: PropTypes.string.isRequired,
|
|
18737
|
-
order_number: PropTypes.string.isRequired,
|
|
18738
|
-
channel_id: PropTypes.string.isRequired,
|
|
18739
|
-
external_order_reference: PropTypes.string.isRequired,
|
|
18740
|
-
payment_request_id: PropTypes.string,
|
|
18741
|
-
order_payment_request_ids: PropTypes.arrayOf(PropTypes.string),
|
|
18742
|
-
order_edit_payment_request_ids: PropTypes.arrayOf(PropTypes.string),
|
|
18743
|
-
status: T['io.flow.channel.internal.v0.enums.channel_order_acceptance_status'].isRequired,
|
|
18744
|
-
reasons: PropTypes.arrayOf(T['io.flow.channel.internal.v0.models.channel_order_acceptance_reason']).isRequired,
|
|
18745
|
-
next_action_from: T['io.flow.channel.internal.v0.enums.channel_order_acceptance_next_action_from'],
|
|
18746
|
-
order_created_at: PropTypes.string,
|
|
18747
|
-
order_updated_at: PropTypes.string,
|
|
18748
|
-
order_edit_summary: T['io.flow.channel.internal.v0.models.order_edit_summary'],
|
|
18749
|
-
payment_source: T['io.flow.channel.internal.v0.enums.order_payment_source_type'],
|
|
18750
|
-
external_order_summary: T['io.flow.channel.shopify.v0.models.external_order_summary'],
|
|
18751
|
-
});
|
|
18752
|
-
|
|
18753
|
-
T['io.flow.channel.internal.v0.models.channel_order_acceptance_details'] = PropTypes.exact({
|
|
18754
|
-
order_acceptance: T['io.flow.channel.internal.v0.models.channel_order_acceptance'].isRequired,
|
|
18755
|
-
external_order: PropTypes.object.isRequired,
|
|
18962
|
+
created_at: PropTypes.string,
|
|
18756
18963
|
});
|
|
18757
18964
|
|
|
18758
18965
|
T['io.flow.internal.v0.enums.order_payment_source_type'] = PropTypes.oneOf(['globale', 'third_party']);
|
|
@@ -20274,7 +20481,7 @@ T['io.flow.internal.v0.models.channel_order_acceptance'] = PropTypes.exact({
|
|
|
20274
20481
|
order_updated_at: PropTypes.string,
|
|
20275
20482
|
order_edit_summary: T['io.flow.internal.v0.models.order_edit_summary'],
|
|
20276
20483
|
payment_source: T['io.flow.internal.v0.enums.order_payment_source_type'],
|
|
20277
|
-
external_order_summary: T['io.flow.
|
|
20484
|
+
external_order_summary: T['io.flow.internal.v0.models.external_order_summary'],
|
|
20278
20485
|
});
|
|
20279
20486
|
|
|
20280
20487
|
T['io.flow.internal.v0.models.channel_order_acceptance_upserted'] = PropTypes.exact({
|
|
@@ -21047,6 +21254,7 @@ T['io.flow.billing.v0.models.statement'] = PropTypes.exact({
|
|
|
21047
21254
|
settlement: T['io.flow.billing.v0.unions.settlement'].isRequired,
|
|
21048
21255
|
attachments: PropTypes.arrayOf(T['io.flow.billing.v0.models.attachment']).isRequired,
|
|
21049
21256
|
created_at: PropTypes.string.isRequired,
|
|
21257
|
+
period: T['io.flow.common.v0.models.datetime_range'],
|
|
21050
21258
|
});
|
|
21051
21259
|
|
|
21052
21260
|
T['io.flow.billing.v0.models.organization_payout'] = PropTypes.exact({
|
|
@@ -21067,6 +21275,7 @@ T['io.flow.billing.v0.models.channel_statement'] = PropTypes.exact({
|
|
|
21067
21275
|
settlement: T['io.flow.billing.v0.unions.settlement'].isRequired,
|
|
21068
21276
|
attachments: PropTypes.arrayOf(T['io.flow.billing.v0.models.attachment']).isRequired,
|
|
21069
21277
|
created_at: PropTypes.string.isRequired,
|
|
21278
|
+
period: T['io.flow.common.v0.models.datetime_range'],
|
|
21070
21279
|
});
|
|
21071
21280
|
|
|
21072
21281
|
T['io.flow.billing.v0.models.channel_payout'] = PropTypes.exact({
|
|
@@ -22150,6 +22359,7 @@ T['io.flow.internal.v0.models.restriction_rule_form'] = PropTypes.exact({
|
|
|
22150
22359
|
attribute_rule_conditions: T['io.flow.internal.v0.models.attribute_rule'],
|
|
22151
22360
|
keyword_cancelling: PropTypes.arrayOf(T['io.flow.internal.v0.models.keyword_cancelling']),
|
|
22152
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,
|
|
22153
22363
|
});
|
|
22154
22364
|
|
|
22155
22365
|
T['io.flow.internal.v0.models.restriction_rule'] = PropTypes.exact({
|
|
@@ -22170,6 +22380,7 @@ T['io.flow.internal.v0.models.restriction_rule'] = PropTypes.exact({
|
|
|
22170
22380
|
attribute_rule_conditions: T['io.flow.internal.v0.models.attribute_rule'],
|
|
22171
22381
|
keyword_cancelling: PropTypes.arrayOf(T['io.flow.internal.v0.models.keyword_cancelling']),
|
|
22172
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,
|
|
22173
22384
|
});
|
|
22174
22385
|
|
|
22175
22386
|
T['io.flow.internal.v0.models.restriction_rule_upserted'] = PropTypes.exact({
|
|
@@ -22181,6 +22392,99 @@ T['io.flow.internal.v0.models.restriction_rule_upserted'] = PropTypes.exact({
|
|
|
22181
22392
|
|
|
22182
22393
|
T['io.flow.internal.v0.enums.amrutha_item_type'] = PropTypes.oneOf(['physical', 'digital']);
|
|
22183
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
|
+
|
|
22184
22488
|
T['io.flow.internal.v0.models.afterpay_refund'] = PropTypes.exact({
|
|
22185
22489
|
id: PropTypes.string.isRequired,
|
|
22186
22490
|
flow_refund_id: PropTypes.string.isRequired,
|
|
@@ -23155,26 +23459,6 @@ T['io.flow.internal.v0.models.debug_order_transaction_details'] = PropTypes.exac
|
|
|
23155
23459
|
payout_details: T['io.flow.billing.v0.unions.payout_status'],
|
|
23156
23460
|
});
|
|
23157
23461
|
|
|
23158
|
-
T['io.flow.internal.v0.enums.mail_class'] = PropTypes.oneOf(['standard', 'express']);
|
|
23159
|
-
T['io.flow.internal.v0.enums.adaptive_shipping_order_guarantee_state'] = PropTypes.oneOf(['confirmed', 'voided']);
|
|
23160
|
-
|
|
23161
|
-
T['io.flow.internal.v0.models.adaptive_shipping_order_guarantee'] = PropTypes.exact({
|
|
23162
|
-
id: PropTypes.string.isRequired,
|
|
23163
|
-
organization_id: PropTypes.string.isRequired,
|
|
23164
|
-
order_number: PropTypes.string.isRequired,
|
|
23165
|
-
guarantee_state: T['io.flow.internal.v0.enums.adaptive_shipping_order_guarantee_state'].isRequired,
|
|
23166
|
-
label_id: PropTypes.string,
|
|
23167
|
-
notification_id: PropTypes.string,
|
|
23168
|
-
});
|
|
23169
|
-
|
|
23170
|
-
T['io.flow.internal.v0.models.adaptive_shipping_order_guarantee_upserted'] = PropTypes.exact({
|
|
23171
|
-
discriminator: PropTypes.oneOf(['adaptive_shipping_order_guarantee_upserted']).isRequired,
|
|
23172
|
-
event_id: PropTypes.string.isRequired,
|
|
23173
|
-
timestamp: PropTypes.string.isRequired,
|
|
23174
|
-
organization: PropTypes.string.isRequired,
|
|
23175
|
-
adaptive_shipping_order_guarantee: T['io.flow.internal.v0.models.adaptive_shipping_order_guarantee'].isRequired,
|
|
23176
|
-
});
|
|
23177
|
-
|
|
23178
23462
|
T['io.flow.common.v0.models.money'] = PropTypes.exact({
|
|
23179
23463
|
amount: PropTypes.number.isRequired,
|
|
23180
23464
|
currency: PropTypes.string.isRequired,
|
|
@@ -24239,6 +24523,26 @@ T['io.flow.internal.v0.models.preonboarding_classification_request'] = PropTypes
|
|
|
24239
24523
|
screening_mode: T['io.flow.sellability.v0.enums.sellability_screening_mode'],
|
|
24240
24524
|
});
|
|
24241
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
|
+
|
|
24242
24546
|
T['io.flow.internal.v0.models.mor_cost_summary'] = PropTypes.exact({
|
|
24243
24547
|
id: PropTypes.string.isRequired,
|
|
24244
24548
|
organization_id: PropTypes.string.isRequired,
|
|
@@ -24273,6 +24577,52 @@ T['io.flow.internal.v0.models.liability_item'] = PropTypes.exact({
|
|
|
24273
24577
|
no_liability_reason_code: T['io.flow.internal.v0.enums.no_liability_reason_code'],
|
|
24274
24578
|
});
|
|
24275
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
|
+
|
|
24276
24626
|
T['io.flow.internal.v0.models.fx_revenue_recognition_source'] = PropTypes.exact({
|
|
24277
24627
|
id: PropTypes.string.isRequired,
|
|
24278
24628
|
local: T['io.flow.common.v0.models.money'].isRequired,
|
|
@@ -24302,6 +24652,23 @@ T['io.flow.internal.v0.models.fx_revenue_recognition'] = PropTypes.exact({
|
|
|
24302
24652
|
reporting_date: PropTypes.string,
|
|
24303
24653
|
});
|
|
24304
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
|
+
|
|
24305
24672
|
T['io.flow.internal.v0.models.flat_rate_label_reversal'] = PropTypes.exact({
|
|
24306
24673
|
id: PropTypes.string.isRequired,
|
|
24307
24674
|
organization_id: PropTypes.string.isRequired,
|
|
@@ -24318,6 +24685,53 @@ T['io.flow.internal.v0.models.flat_rate_label_reversal_upserted'] = PropTypes.ex
|
|
|
24318
24685
|
flat_rate_label_reversal: T['io.flow.internal.v0.models.flat_rate_label_reversal'].isRequired,
|
|
24319
24686
|
});
|
|
24320
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
|
+
|
|
24321
24735
|
T['io.flow.common.v0.models.line_item_form'] = PropTypes.exact({
|
|
24322
24736
|
number: PropTypes.string.isRequired,
|
|
24323
24737
|
quantity: PropTypes.number.isRequired,
|
|
@@ -25031,94 +25445,23 @@ T['io.flow.internal.v0.unions.calculator_stamp'] = PropTypes.oneOfType([
|
|
|
25031
25445
|
T['io.flow.internal.v0.models.calculation_step'],
|
|
25032
25446
|
]);
|
|
25033
25447
|
|
|
25034
|
-
T['io.flow.internal.v0.
|
|
25035
|
-
mail_class: T['io.flow.internal.v0.enums.mail_class'].isRequired,
|
|
25036
|
-
carrier_id: PropTypes.string.isRequired,
|
|
25037
|
-
service_id: PropTypes.string.isRequired,
|
|
25038
|
-
price: T['io.flow.common.v0.models.money'].isRequired,
|
|
25039
|
-
free_shipping_threshold: T['io.flow.common.v0.models.money'],
|
|
25040
|
-
min_delivery_days: PropTypes.number,
|
|
25041
|
-
max_delivery_days: PropTypes.number,
|
|
25042
|
-
});
|
|
25043
|
-
|
|
25044
|
-
T['io.flow.internal.v0.models.guaranteed_shipping_published_output'] = PropTypes.exact({
|
|
25045
|
-
id: PropTypes.string.isRequired,
|
|
25046
|
-
organization_id: PropTypes.string.isRequired,
|
|
25047
|
-
channel_id: PropTypes.string.isRequired,
|
|
25048
|
-
destination_country: PropTypes.string.isRequired,
|
|
25049
|
-
coefficient: PropTypes.number.isRequired,
|
|
25050
|
-
flat_rates: PropTypes.arrayOf(T['io.flow.internal.v0.models.flat_rate']).isRequired,
|
|
25051
|
-
inputs_updated_at: PropTypes.number.isRequired,
|
|
25052
|
-
});
|
|
25053
|
-
|
|
25054
|
-
T['io.flow.internal.v0.models.guaranteed_shipping_published_output_upserted'] = PropTypes.exact({
|
|
25055
|
-
discriminator: PropTypes.oneOf(['guaranteed_shipping_published_output_upserted']).isRequired,
|
|
25056
|
-
event_id: PropTypes.string.isRequired,
|
|
25057
|
-
timestamp: PropTypes.string.isRequired,
|
|
25058
|
-
organization: PropTypes.string.isRequired,
|
|
25059
|
-
guaranteed_shipping_published_output: T['io.flow.internal.v0.models.guaranteed_shipping_published_output'].isRequired,
|
|
25060
|
-
});
|
|
25448
|
+
T['io.flow.internal.v0.enums.adaptive_shipping_order_guarantee_state'] = PropTypes.oneOf(['confirmed', 'voided']);
|
|
25061
25449
|
|
|
25062
|
-
T['io.flow.internal.v0.models.
|
|
25450
|
+
T['io.flow.internal.v0.models.adaptive_shipping_order_guarantee'] = PropTypes.exact({
|
|
25063
25451
|
id: PropTypes.string.isRequired,
|
|
25064
25452
|
organization_id: PropTypes.string.isRequired,
|
|
25065
|
-
|
|
25066
|
-
|
|
25067
|
-
|
|
25068
|
-
|
|
25069
|
-
effective_at: PropTypes.string.isRequired,
|
|
25070
|
-
effective_until: PropTypes.string,
|
|
25071
|
-
});
|
|
25072
|
-
|
|
25073
|
-
T['io.flow.internal.v0.models.adaptive_shipping_rate_upserted'] = PropTypes.exact({
|
|
25074
|
-
discriminator: PropTypes.oneOf(['adaptive_shipping_rate_upserted']).isRequired,
|
|
25075
|
-
event_id: PropTypes.string.isRequired,
|
|
25076
|
-
timestamp: PropTypes.string.isRequired,
|
|
25077
|
-
organization: PropTypes.string.isRequired,
|
|
25078
|
-
adaptive_shipping_rate: T['io.flow.internal.v0.models.adaptive_shipping_rate'].isRequired,
|
|
25079
|
-
});
|
|
25080
|
-
|
|
25081
|
-
T['io.flow.internal.v0.models.adaptive_pricing_destination_update'] = PropTypes.exact({
|
|
25082
|
-
country: PropTypes.string.isRequired,
|
|
25083
|
-
updated_at: PropTypes.string.isRequired,
|
|
25084
|
-
tax_and_duty_coefficient: PropTypes.number.isRequired,
|
|
25085
|
-
fees_coefficient: PropTypes.number.isRequired,
|
|
25086
|
-
merchant_subsidy: T['io.flow.common.v0.models.money'].isRequired,
|
|
25087
|
-
});
|
|
25088
|
-
|
|
25089
|
-
T['io.flow.internal.v0.models.adaptive_pricing_update'] = PropTypes.exact({
|
|
25090
|
-
channel_id: PropTypes.string.isRequired,
|
|
25091
|
-
organization_id: PropTypes.string.isRequired,
|
|
25092
|
-
destination_updates: PropTypes.arrayOf(T['io.flow.internal.v0.models.adaptive_pricing_destination_update']).isRequired,
|
|
25093
|
-
});
|
|
25094
|
-
|
|
25095
|
-
T['io.flow.internal.v0.models.adaptive_pricing_update_upserted'] = PropTypes.exact({
|
|
25096
|
-
discriminator: PropTypes.oneOf(['adaptive_pricing_update_upserted']).isRequired,
|
|
25097
|
-
event_id: PropTypes.string.isRequired,
|
|
25098
|
-
timestamp: PropTypes.string.isRequired,
|
|
25099
|
-
organization: PropTypes.string.isRequired,
|
|
25100
|
-
channel_id: PropTypes.string.isRequired,
|
|
25101
|
-
adaptive_pricing_update: T['io.flow.internal.v0.models.adaptive_pricing_update'].isRequired,
|
|
25102
|
-
});
|
|
25103
|
-
|
|
25104
|
-
T['io.flow.internal.v0.models.adaptive_pricing_coefficient'] = PropTypes.exact({
|
|
25105
|
-
coefficients_updated_at: PropTypes.number.isRequired,
|
|
25106
|
-
channel_id: PropTypes.string.isRequired,
|
|
25107
|
-
organization_id: PropTypes.string.isRequired,
|
|
25108
|
-
destination_country: PropTypes.string.isRequired,
|
|
25109
|
-
tax_and_duty_coefficient: PropTypes.number.isRequired,
|
|
25110
|
-
fees_coefficient: PropTypes.number.isRequired,
|
|
25111
|
-
merchant_subsidy: T['io.flow.common.v0.models.money'].isRequired,
|
|
25112
|
-
created_at: PropTypes.number.isRequired,
|
|
25453
|
+
order_number: PropTypes.string.isRequired,
|
|
25454
|
+
guarantee_state: T['io.flow.internal.v0.enums.adaptive_shipping_order_guarantee_state'].isRequired,
|
|
25455
|
+
label_id: PropTypes.string,
|
|
25456
|
+
notification_id: PropTypes.string,
|
|
25113
25457
|
});
|
|
25114
25458
|
|
|
25115
|
-
T['io.flow.internal.v0.models.
|
|
25116
|
-
discriminator: PropTypes.oneOf(['
|
|
25459
|
+
T['io.flow.internal.v0.models.adaptive_shipping_order_guarantee_upserted'] = PropTypes.exact({
|
|
25460
|
+
discriminator: PropTypes.oneOf(['adaptive_shipping_order_guarantee_upserted']).isRequired,
|
|
25117
25461
|
event_id: PropTypes.string.isRequired,
|
|
25118
25462
|
timestamp: PropTypes.string.isRequired,
|
|
25119
25463
|
organization: PropTypes.string.isRequired,
|
|
25120
|
-
|
|
25121
|
-
adaptive_pricing_coefficient: T['io.flow.internal.v0.models.adaptive_pricing_coefficient'].isRequired,
|
|
25464
|
+
adaptive_shipping_order_guarantee: T['io.flow.internal.v0.models.adaptive_shipping_order_guarantee'].isRequired,
|
|
25122
25465
|
});
|
|
25123
25466
|
|
|
25124
25467
|
T['io.flow.internal.v0.enums.item_quantity_action'] = PropTypes.oneOf(['fulfillment_ship', 'fulfillment_cancel', 'fulfillment_generate_label']);
|
|
@@ -25220,6 +25563,8 @@ T['io.flow.internal.v0.models.accounting_return_metadata'] = PropTypes.exact({
|
|
|
25220
25563
|
refund: T['io.flow.payment.v0.models.refund_reference'],
|
|
25221
25564
|
tax_reversal: T['io.flow.internal.v0.models.transaction_reference'],
|
|
25222
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'],
|
|
25223
25568
|
});
|
|
25224
25569
|
|
|
25225
25570
|
T['io.flow.internal.v0.models.bank_account_reference'] = PropTypes.exact({
|
|
@@ -25900,6 +26245,7 @@ T['io.flow.internal.v0.unions.task_metadata'] = PropTypes.oneOfType([
|
|
|
25900
26245
|
T['io.flow.internal.v0.models.channel_transaction_trigger_metadata'],
|
|
25901
26246
|
T['io.flow.internal.v0.models.b2b_fee_mor_tax_trigger_metadata'],
|
|
25902
26247
|
T['io.flow.internal.v0.models.b2b_fee_shipping_tax_trigger_metadata'],
|
|
26248
|
+
T['io.flow.internal.v0.models.remediate_tax_duty_metadata'],
|
|
25903
26249
|
]);
|
|
25904
26250
|
|
|
25905
26251
|
T['io.flow.common.v0.models.price'] = PropTypes.exact({
|
|
@@ -27098,16 +27444,29 @@ T['io.flow.experience.v0.models.allocation'] = PropTypes.exact({
|
|
|
27098
27444
|
details: PropTypes.arrayOf(T['io.flow.experience.v0.unions.allocation_detail']).isRequired,
|
|
27099
27445
|
});
|
|
27100
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
|
+
|
|
27101
27452
|
T['io.flow.order.price.v0.models.order_price_fee'] = PropTypes.exact({
|
|
27102
27453
|
key: PropTypes.string.isRequired,
|
|
27103
27454
|
value: T['io.flow.common.v0.models.price_with_base'].isRequired,
|
|
27104
27455
|
type: T['io.flow.order.price.v0.enums.order_price_fee_type'].isRequired,
|
|
27105
27456
|
});
|
|
27106
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
|
+
|
|
27107
27464
|
T['io.flow.order.price.v0.models.purchase_price_breakdown'] = PropTypes.exact({
|
|
27108
27465
|
total_price: T['io.flow.common.v0.models.price_with_base'].isRequired,
|
|
27109
27466
|
product_price: T['io.flow.common.v0.models.price_with_base'].isRequired,
|
|
27110
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']),
|
|
27111
27470
|
});
|
|
27112
27471
|
|
|
27113
27472
|
T['io.flow.order.price.v0.models.order_price_detail_breakdown'] = PropTypes.exact({
|
|
@@ -28825,12 +29184,6 @@ T['io.flow.internal.v0.models.fraud_review_authorization_decision_upserted'] = P
|
|
|
28825
29184
|
});
|
|
28826
29185
|
|
|
28827
29186
|
T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
|
|
28828
|
-
T['io.flow.internal.v0.models.adaptive_pricing_coefficient_upserted'],
|
|
28829
|
-
T['io.flow.internal.v0.models.adaptive_pricing_coefficient_deleted'],
|
|
28830
|
-
T['io.flow.internal.v0.models.adaptive_pricing_update_upserted'],
|
|
28831
|
-
T['io.flow.internal.v0.models.adaptive_pricing_update_deleted'],
|
|
28832
|
-
T['io.flow.internal.v0.models.adaptive_shipping_rate_upserted'],
|
|
28833
|
-
T['io.flow.internal.v0.models.adaptive_shipping_rate_deleted'],
|
|
28834
29187
|
T['io.flow.internal.v0.models.adyen_authorization_deleted'],
|
|
28835
29188
|
T['io.flow.internal.v0.models.adyen_authorization_upserted'],
|
|
28836
29189
|
T['io.flow.internal.v0.models.adyen_cancel_deleted'],
|
|
@@ -28841,6 +29194,10 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
|
|
|
28841
29194
|
T['io.flow.internal.v0.models.adyen_refund_upserted'],
|
|
28842
29195
|
T['io.flow.internal.v0.models.adyen_dispute_upserted'],
|
|
28843
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'],
|
|
28844
29201
|
T['io.flow.internal.v0.models.fulfillment_upserted'],
|
|
28845
29202
|
T['io.flow.internal.v0.models.fulfillment_deleted'],
|
|
28846
29203
|
T['io.flow.internal.v0.models.merchant_upserted'],
|
|
@@ -28978,6 +29335,8 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
|
|
|
28978
29335
|
T['io.flow.internal.v0.models.mor_cost_deleted'],
|
|
28979
29336
|
T['io.flow.internal.v0.models.flat_rate_label_reversal_upserted'],
|
|
28980
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'],
|
|
28981
29340
|
T['io.flow.internal.v0.models.fraud_review_upserted'],
|
|
28982
29341
|
T['io.flow.internal.v0.models.fraud_review_deleted'],
|
|
28983
29342
|
T['io.flow.internal.v0.models.fraud_pending_review_upserted'],
|
|
@@ -29003,8 +29362,16 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
|
|
|
29003
29362
|
T['io.flow.internal.v0.models.fulfillment_fallbacks_deleted'],
|
|
29004
29363
|
T['io.flow.internal.v0.models.quote_upserted'],
|
|
29005
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'],
|
|
29006
29369
|
T['io.flow.internal.v0.models.guaranteed_shipping_published_output_upserted'],
|
|
29007
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'],
|
|
29008
29375
|
T['io.flow.internal.v0.models.all_items_export'],
|
|
29009
29376
|
T['io.flow.internal.v0.models.harmonized_items_hs6_export'],
|
|
29010
29377
|
T['io.flow.internal.v0.models.unharmonized_items_export'],
|
|
@@ -29027,6 +29394,8 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
|
|
|
29027
29394
|
T['io.flow.internal.v0.models.merchant_override_upserted'],
|
|
29028
29395
|
T['io.flow.internal.v0.models.merchant_override_deleted'],
|
|
29029
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'],
|
|
29030
29399
|
T['io.flow.internal.v0.models.item_form_import_request'],
|
|
29031
29400
|
T['io.flow.internal.v0.models.label_request_error_upserted'],
|
|
29032
29401
|
T['io.flow.internal.v0.models.label_request_error_deleted'],
|
|
@@ -29137,6 +29506,10 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
|
|
|
29137
29506
|
T['io.flow.internal.v0.models.taxonomy_category_hs6_ref_deleted'],
|
|
29138
29507
|
T['io.flow.internal.v0.models.preonboarding_merchant_upserted'],
|
|
29139
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'],
|
|
29140
29513
|
T['io.flow.internal.v0.models.shopify_hs10_codes_upserted'],
|
|
29141
29514
|
T['io.flow.internal.v0.models.shopify_hs10_codes_deleted'],
|
|
29142
29515
|
T['io.flow.internal.v0.models.shopify_markets_order_upserted'],
|
|
@@ -29406,12 +29779,6 @@ T['io.flow.internal.v0.enums.duty_exempt_item_types'] = PropTypes.oneOf(['gift_c
|
|
|
29406
29779
|
T['io.flow.internal.v0.enums.duty_transaction_type'] = PropTypes.oneOf(['adjustment', 'reversal', 'duty', 'refund']);
|
|
29407
29780
|
|
|
29408
29781
|
T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
|
|
29409
|
-
'adaptive_pricing_coefficient_upserted',
|
|
29410
|
-
'adaptive_pricing_coefficient_deleted',
|
|
29411
|
-
'adaptive_pricing_update_upserted',
|
|
29412
|
-
'adaptive_pricing_update_deleted',
|
|
29413
|
-
'adaptive_shipping_rate_upserted',
|
|
29414
|
-
'adaptive_shipping_rate_deleted',
|
|
29415
29782
|
'adyen_authorization_deleted',
|
|
29416
29783
|
'adyen_authorization_upserted',
|
|
29417
29784
|
'adyen_cancel_deleted',
|
|
@@ -29422,6 +29789,10 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
|
|
|
29422
29789
|
'adyen_refund_upserted',
|
|
29423
29790
|
'adyen_dispute_upserted',
|
|
29424
29791
|
'adyen_dispute_deleted',
|
|
29792
|
+
'ai_review_batch_submitted',
|
|
29793
|
+
'ai_review_result_upserted',
|
|
29794
|
+
'ai_review_result_deleted',
|
|
29795
|
+
'ai_review_request_failed',
|
|
29425
29796
|
'fulfillment_upserted',
|
|
29426
29797
|
'fulfillment_deleted',
|
|
29427
29798
|
'merchant_upserted',
|
|
@@ -29559,6 +29930,8 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
|
|
|
29559
29930
|
'mor_cost_deleted',
|
|
29560
29931
|
'flat_rate_label_reversal_upserted',
|
|
29561
29932
|
'flat_rate_label_reversal_deleted',
|
|
29933
|
+
'flat_rate_label_subsidy_upserted',
|
|
29934
|
+
'flat_rate_label_subsidy_deleted',
|
|
29562
29935
|
'fraud_review_upserted',
|
|
29563
29936
|
'fraud_review_deleted',
|
|
29564
29937
|
'fraud_pending_review_upserted',
|
|
@@ -29584,8 +29957,16 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
|
|
|
29584
29957
|
'fulfillment_fallbacks_deleted',
|
|
29585
29958
|
'quote_upserted',
|
|
29586
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',
|
|
29587
29964
|
'guaranteed_shipping_published_output_upserted',
|
|
29588
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',
|
|
29589
29970
|
'all_items_export',
|
|
29590
29971
|
'harmonized_items_hs6_export',
|
|
29591
29972
|
'unharmonized_items_export',
|
|
@@ -29608,6 +29989,8 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
|
|
|
29608
29989
|
'merchant_override_upserted',
|
|
29609
29990
|
'merchant_override_deleted',
|
|
29610
29991
|
'harmonization_classification_statistics_published',
|
|
29992
|
+
'issuer_upserted',
|
|
29993
|
+
'issuer_deleted',
|
|
29611
29994
|
'item_form_import_request',
|
|
29612
29995
|
'label_request_error_upserted',
|
|
29613
29996
|
'label_request_error_deleted',
|
|
@@ -29718,6 +30101,10 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
|
|
|
29718
30101
|
'taxonomy_category_hs6_ref_deleted',
|
|
29719
30102
|
'preonboarding_merchant_upserted',
|
|
29720
30103
|
'preonboarding_merchant_deleted',
|
|
30104
|
+
'unserviceable_taxonomy_category_upserted',
|
|
30105
|
+
'unserviceable_taxonomy_category_deleted',
|
|
30106
|
+
'sellability_pending_verification_upserted',
|
|
30107
|
+
'sellability_pending_verification_deleted',
|
|
29721
30108
|
'shopify_hs10_codes_upserted',
|
|
29722
30109
|
'shopify_hs10_codes_deleted',
|
|
29723
30110
|
'shopify_markets_order_upserted',
|
|
@@ -32189,20 +32576,10 @@ export const accountUpsertedV2 = T['io.flow.internal.v0.models.account_upserted_
|
|
|
32189
32576
|
export const accountingPendingOrderMetadata = T['io.flow.internal.v0.models.accounting_pending_order_metadata'];
|
|
32190
32577
|
export const accountingReturnMetadata = T['io.flow.internal.v0.models.accounting_return_metadata'];
|
|
32191
32578
|
export const actionQuantity = T['io.flow.internal.v0.models.action_quantity'];
|
|
32192
|
-
export const adaptivePricingCoefficient = T['io.flow.internal.v0.models.adaptive_pricing_coefficient'];
|
|
32193
|
-
export const adaptivePricingCoefficientDeleted = T['io.flow.internal.v0.models.adaptive_pricing_coefficient_deleted'];
|
|
32194
|
-
export const adaptivePricingCoefficientUpserted = T['io.flow.internal.v0.models.adaptive_pricing_coefficient_upserted'];
|
|
32195
|
-
export const adaptivePricingDestinationUpdate = T['io.flow.internal.v0.models.adaptive_pricing_destination_update'];
|
|
32196
|
-
export const adaptivePricingUpdate = T['io.flow.internal.v0.models.adaptive_pricing_update'];
|
|
32197
|
-
export const adaptivePricingUpdateDeleted = T['io.flow.internal.v0.models.adaptive_pricing_update_deleted'];
|
|
32198
|
-
export const adaptivePricingUpdateUpserted = T['io.flow.internal.v0.models.adaptive_pricing_update_upserted'];
|
|
32199
32579
|
export const adaptiveShippingOrderGuarantee = T['io.flow.internal.v0.models.adaptive_shipping_order_guarantee'];
|
|
32200
32580
|
export const adaptiveShippingOrderGuaranteeDeleted = T['io.flow.internal.v0.models.adaptive_shipping_order_guarantee_deleted'];
|
|
32201
32581
|
export const adaptiveShippingOrderGuaranteeState = T['io.flow.internal.v0.enums.adaptive_shipping_order_guarantee_state'];
|
|
32202
32582
|
export const adaptiveShippingOrderGuaranteeUpserted = T['io.flow.internal.v0.models.adaptive_shipping_order_guarantee_upserted'];
|
|
32203
|
-
export const adaptiveShippingRate = T['io.flow.internal.v0.models.adaptive_shipping_rate'];
|
|
32204
|
-
export const adaptiveShippingRateDeleted = T['io.flow.internal.v0.models.adaptive_shipping_rate_deleted'];
|
|
32205
|
-
export const adaptiveShippingRateUpserted = T['io.flow.internal.v0.models.adaptive_shipping_rate_upserted'];
|
|
32206
32583
|
export const additionalImportTax = T['io.flow.internal.v0.models.additional_import_tax'];
|
|
32207
32584
|
export const adjustmentAmount = T['io.flow.internal.v0.unions.adjustment_amount'];
|
|
32208
32585
|
export const adjustmentAmountFixed = T['io.flow.internal.v0.models.adjustment_amount_fixed'];
|
|
@@ -32260,6 +32637,17 @@ export const afterpayRefund = T['io.flow.internal.v0.models.afterpay_refund'];
|
|
|
32260
32637
|
export const afterpayRefundDeleted = T['io.flow.internal.v0.models.afterpay_refund_deleted'];
|
|
32261
32638
|
export const afterpayRefundUpserted = T['io.flow.internal.v0.models.afterpay_refund_upserted'];
|
|
32262
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'];
|
|
32263
32651
|
export const allItemsExport = T['io.flow.internal.v0.models.all_items_export'];
|
|
32264
32652
|
export const allocationItemReference = T['io.flow.internal.v0.models.allocation_item_reference'];
|
|
32265
32653
|
export const allowedLabels = T['io.flow.internal.v0.models.allowed_labels'];
|
|
@@ -32676,6 +33064,9 @@ export const deliveredDutyPreferenceForm = T['io.flow.internal.v0.models.deliver
|
|
|
32676
33064
|
export const deminimisAdjustmentType = T['io.flow.internal.v0.enums.deminimis_adjustment_type'];
|
|
32677
33065
|
export const destinationDutyComparison = T['io.flow.internal.v0.models.destination_duty_comparison'];
|
|
32678
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'];
|
|
32679
33070
|
export const dhl = T['io.flow.internal.v0.models.dhl'];
|
|
32680
33071
|
export const dhlEcommerce = T['io.flow.internal.v0.models.dhl_ecommerce'];
|
|
32681
33072
|
export const dimensionEstimateOpsInput = T['io.flow.internal.v0.models.dimension_estimate_ops_input'];
|
|
@@ -32794,6 +33185,7 @@ export const externalFulfillmentProof = T['io.flow.internal.v0.models.external_f
|
|
|
32794
33185
|
export const externalFulfillmentProofForm = T['io.flow.internal.v0.models.external_fulfillment_proof_form'];
|
|
32795
33186
|
export const externalFulfillmentProofTracking = T['io.flow.internal.v0.models.external_fulfillment_proof_tracking'];
|
|
32796
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'];
|
|
32797
33189
|
export const externalRatecardLink = T['io.flow.internal.v0.models.external_ratecard_link'];
|
|
32798
33190
|
export const externalRatecardLinkResponse = T['io.flow.internal.v0.models.external_ratecard_link_response'];
|
|
32799
33191
|
export const facebookPixel = T['io.flow.internal.v0.models.facebook_pixel'];
|
|
@@ -32845,6 +33237,9 @@ export const flatRateLabelGuaranteeStatus = T['io.flow.internal.v0.enums.flat_ra
|
|
|
32845
33237
|
export const flatRateLabelReversal = T['io.flow.internal.v0.models.flat_rate_label_reversal'];
|
|
32846
33238
|
export const flatRateLabelReversalDeleted = T['io.flow.internal.v0.models.flat_rate_label_reversal_deleted'];
|
|
32847
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'];
|
|
32848
33243
|
export const flatRateLabelTransaction = T['io.flow.internal.v0.models.flat_rate_label_transaction'];
|
|
32849
33244
|
export const flatRateLabelTransactionType = T['io.flow.internal.v0.enums.flat_rate_label_transaction_type'];
|
|
32850
33245
|
export const flexeWebhook = T['io.flow.internal.v0.models.flexe_webhook'];
|
|
@@ -32951,9 +33346,19 @@ export const googleShoppingAccountParameters = T['io.flow.internal.v0.models.goo
|
|
|
32951
33346
|
export const googleShoppingSetting = T['io.flow.internal.v0.models.google_shopping_setting'];
|
|
32952
33347
|
export const googleTagManager = T['io.flow.internal.v0.models.google_tag_manager'];
|
|
32953
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'];
|
|
32954
33352
|
export const guaranteedShippingPublishedOutput = T['io.flow.internal.v0.models.guaranteed_shipping_published_output'];
|
|
32955
33353
|
export const guaranteedShippingPublishedOutputDeleted = T['io.flow.internal.v0.models.guaranteed_shipping_published_output_deleted'];
|
|
32956
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'];
|
|
32957
33362
|
export const harmonizationClassificationStatisticsData = T['io.flow.internal.v0.models.harmonization_classification_statistics_data'];
|
|
32958
33363
|
export const harmonizationClassificationStatisticsPublished = T['io.flow.internal.v0.models.harmonization_classification_statistics_published'];
|
|
32959
33364
|
export const harmonizationCodesImport = T['io.flow.internal.v0.models.harmonization_codes_import'];
|
|
@@ -33010,6 +33415,9 @@ export const invoiceInfoForm = T['io.flow.internal.v0.models.invoice_info_form']
|
|
|
33010
33415
|
export const invoiceLine = T['io.flow.internal.v0.models.invoice_line'];
|
|
33011
33416
|
export const invoiceLineItem = T['io.flow.internal.v0.models.invoice_line_item'];
|
|
33012
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'];
|
|
33013
33421
|
export const itemClassification = T['io.flow.internal.v0.models.item_classification'];
|
|
33014
33422
|
export const itemClassificationAction = T['io.flow.internal.v0.enums.item_classification_action'];
|
|
33015
33423
|
export const itemClassificationForm = T['io.flow.internal.v0.models.item_classification_form'];
|
|
@@ -33026,6 +33434,11 @@ export const itemHarmonization = T['io.flow.internal.v0.models.item_harmonizatio
|
|
|
33026
33434
|
export const itemHarmonizationDeleted = T['io.flow.internal.v0.models.item_harmonization_deleted'];
|
|
33027
33435
|
export const itemHarmonizationStatus = T['io.flow.internal.v0.enums.item_harmonization_status'];
|
|
33028
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'];
|
|
33029
33442
|
export const itemQuantityAction = T['io.flow.internal.v0.enums.item_quantity_action'];
|
|
33030
33443
|
export const itemQueryResponse = T['io.flow.internal.v0.models.item_query_response'];
|
|
33031
33444
|
export const itemRestriction = T['io.flow.internal.v0.models.item_restriction'];
|
|
@@ -33245,6 +33658,7 @@ export const orderRevenueRegionDataPoint = T['io.flow.internal.v0.models.order_r
|
|
|
33245
33658
|
export const orderRevenueTimelineChart = T['io.flow.internal.v0.models.order_revenue_timeline_chart'];
|
|
33246
33659
|
export const orderRevenueTimelineDataPoint = T['io.flow.internal.v0.models.order_revenue_timeline_data_point'];
|
|
33247
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'];
|
|
33248
33662
|
export const orderSummary = T['io.flow.internal.v0.models.order_summary'];
|
|
33249
33663
|
export const orderTaxAndDutyInclusivitySetting = T['io.flow.internal.v0.models.order_tax_and_duty_inclusivity_setting'];
|
|
33250
33664
|
export const orderTaxAndDutyInclusivitySettingDeleted = T['io.flow.internal.v0.models.order_tax_and_duty_inclusivity_setting_deleted'];
|
|
@@ -33339,6 +33753,9 @@ export const otherRecordOrderSummaryIdentifiers = T['io.flow.internal.v0.models.
|
|
|
33339
33753
|
export const otherRecordOrganizationSummary = T['io.flow.internal.v0.models.other_record_organization_summary'];
|
|
33340
33754
|
export const otherRecordUpserted = T['io.flow.internal.v0.models.other_record_upserted'];
|
|
33341
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'];
|
|
33342
33759
|
export const outputStyle = T['io.flow.internal.v0.enums.output_style'];
|
|
33343
33760
|
export const owner = T['io.flow.internal.v0.enums.owner'];
|
|
33344
33761
|
export const partner = T['io.flow.internal.v0.models.partner'];
|
|
@@ -33406,6 +33823,8 @@ export const paypalPaymentDeleted = T['io.flow.internal.v0.models.paypal_payment
|
|
|
33406
33823
|
export const paypalPaymentUpserted = T['io.flow.internal.v0.models.paypal_payment_upserted'];
|
|
33407
33824
|
export const paypalRefundDeleted = T['io.flow.internal.v0.models.paypal_refund_deleted'];
|
|
33408
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'];
|
|
33409
33828
|
export const pendingBankPayment = T['io.flow.internal.v0.models.pending_bank_payment'];
|
|
33410
33829
|
export const pendingBankPaymentDetail = T['io.flow.internal.v0.models.pending_bank_payment_detail'];
|
|
33411
33830
|
export const pendingOrder = T['io.flow.internal.v0.models.pending_order'];
|
|
@@ -33503,6 +33922,9 @@ export const pspRoutingDistributionRevision = T['io.flow.internal.v0.models.psp_
|
|
|
33503
33922
|
export const pspRoutingDistributionRevisionForm = T['io.flow.internal.v0.models.psp_routing_distribution_revision_form'];
|
|
33504
33923
|
export const publicHub = T['io.flow.internal.v0.models.public_hub'];
|
|
33505
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'];
|
|
33506
33928
|
export const quote = T['io.flow.internal.v0.models.quote'];
|
|
33507
33929
|
export const quoteDeleted = T['io.flow.internal.v0.models.quote_deleted'];
|
|
33508
33930
|
export const quoteUpserted = T['io.flow.internal.v0.models.quote_upserted'];
|
|
@@ -33561,6 +33983,8 @@ export const redirectReason = T['io.flow.internal.v0.enums.redirect_reason'];
|
|
|
33561
33983
|
export const registeredExporterTariffEligibilityData = T['io.flow.internal.v0.models.registered_exporter_tariff_eligibility_data'];
|
|
33562
33984
|
export const registeredExporterTariffEligibilityForm = T['io.flow.internal.v0.models.registered_exporter_tariff_eligibility_form'];
|
|
33563
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'];
|
|
33564
33988
|
export const remittanceResponsibility = T['io.flow.internal.v0.models.remittance_responsibility'];
|
|
33565
33989
|
export const report = T['io.flow.internal.v0.models.report'];
|
|
33566
33990
|
export const reportAccount = T['io.flow.internal.v0.models.report_account'];
|
|
@@ -33669,6 +34093,7 @@ export const restrictionRuleEffect = T['io.flow.internal.v0.models.restriction_r
|
|
|
33669
34093
|
export const restrictionRuleEffectDeleted = T['io.flow.internal.v0.models.restriction_rule_effect_deleted'];
|
|
33670
34094
|
export const restrictionRuleEffectForm = T['io.flow.internal.v0.models.restriction_rule_effect_form'];
|
|
33671
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'];
|
|
33672
34097
|
export const restrictionRuleExceptionAction = T['io.flow.internal.v0.enums.restriction_rule_exception_action'];
|
|
33673
34098
|
export const restrictionRuleForm = T['io.flow.internal.v0.models.restriction_rule_form'];
|
|
33674
34099
|
export const restrictionRuleLaneExemption = T['io.flow.internal.v0.models.restriction_rule_lane_exemption'];
|
|
@@ -33707,6 +34132,7 @@ export const revenueRecord = T['io.flow.internal.v0.models.revenue_record'];
|
|
|
33707
34132
|
export const revenueRecordDeleted = T['io.flow.internal.v0.models.revenue_record_deleted'];
|
|
33708
34133
|
export const revenueRecordType = T['io.flow.internal.v0.enums.revenue_record_type'];
|
|
33709
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'];
|
|
33710
34136
|
export const riskCheck = T['io.flow.internal.v0.enums.risk_check'];
|
|
33711
34137
|
export const riskEvaluation = T['io.flow.internal.v0.enums.risk_evaluation'];
|
|
33712
34138
|
export const routingAccount = T['io.flow.internal.v0.models.routing_account'];
|
|
@@ -33734,6 +34160,9 @@ export const searchTrackingSummary = T['io.flow.internal.v0.models.search_tracki
|
|
|
33734
34160
|
export const sellabilityCheckResult = T['io.flow.internal.v0.models.sellability_check_result'];
|
|
33735
34161
|
export const sellabilityCheckStatus = T['io.flow.internal.v0.enums.sellability_check_status'];
|
|
33736
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'];
|
|
33737
34166
|
export const sellabilityStatus = T['io.flow.internal.v0.enums.sellability_status'];
|
|
33738
34167
|
export const serviceFees = T['io.flow.internal.v0.models.service_fees'];
|
|
33739
34168
|
export const serviceFeesForm = T['io.flow.internal.v0.models.service_fees_form'];
|
|
@@ -34092,6 +34521,9 @@ export const unclassifiedProductsPurgeRequest = T['io.flow.internal.v0.models.un
|
|
|
34092
34521
|
export const unclassifiedProductsSummary = T['io.flow.internal.v0.models.unclassified_products_summary'];
|
|
34093
34522
|
export const unharmonizedItemsExport = T['io.flow.internal.v0.models.unharmonized_items_export'];
|
|
34094
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'];
|
|
34095
34527
|
export const ups = T['io.flow.internal.v0.models.ups'];
|
|
34096
34528
|
export const usdSpotRate = T['io.flow.internal.v0.models.usd_spot_rate'];
|
|
34097
34529
|
export const usdSpotRateDeleted = T['io.flow.internal.v0.models.usd_spot_rate_deleted'];
|