@flowio/api-internal-prop-types 9.24.138 → 9.24.140
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 +591 -140
- package/lib/api-internal.js +1 -1
- package/package.json +1 -1
- package/src/api-internal.d.ts +591 -140
- package/src/api-internal.js +835 -315
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,
|
|
@@ -9632,6 +9711,14 @@ T['io.flow.internal.v0.models.commercial_invoice_internal_deleted'] = PropTypes.
|
|
|
9632
9711
|
id: PropTypes.string.isRequired,
|
|
9633
9712
|
});
|
|
9634
9713
|
|
|
9714
|
+
T['io.flow.internal.v0.models.channel_order_tax_and_duty_inclusivity_setting_deleted'] = PropTypes.exact({
|
|
9715
|
+
discriminator: PropTypes.oneOf(['channel_order_tax_and_duty_inclusivity_setting_deleted']).isRequired,
|
|
9716
|
+
event_id: PropTypes.string.isRequired,
|
|
9717
|
+
timestamp: PropTypes.string.isRequired,
|
|
9718
|
+
organization: PropTypes.string.isRequired,
|
|
9719
|
+
id: PropTypes.string.isRequired,
|
|
9720
|
+
});
|
|
9721
|
+
|
|
9635
9722
|
T['io.flow.internal.v0.models.channel_shop_statistics_deleted'] = PropTypes.exact({
|
|
9636
9723
|
discriminator: PropTypes.oneOf(['channel_shop_statistics_deleted']).isRequired,
|
|
9637
9724
|
event_id: PropTypes.string.isRequired,
|
|
@@ -9830,36 +9917,18 @@ T['io.flow.internal.v0.models.fulfillment_deleted'] = PropTypes.exact({
|
|
|
9830
9917
|
id: PropTypes.string.isRequired,
|
|
9831
9918
|
});
|
|
9832
9919
|
|
|
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,
|
|
9920
|
+
T['io.flow.internal.v0.models.ai_review_result_deleted'] = PropTypes.exact({
|
|
9921
|
+
discriminator: PropTypes.oneOf(['ai_review_result_deleted']).isRequired,
|
|
9842
9922
|
event_id: PropTypes.string.isRequired,
|
|
9843
9923
|
timestamp: PropTypes.string.isRequired,
|
|
9844
|
-
organization: PropTypes.string.isRequired,
|
|
9845
9924
|
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
9925
|
organization: PropTypes.string.isRequired,
|
|
9853
|
-
channel_id: PropTypes.string.isRequired,
|
|
9854
|
-
id: PropTypes.string.isRequired,
|
|
9855
9926
|
});
|
|
9856
9927
|
|
|
9857
|
-
T['io.flow.internal.v0.models.
|
|
9858
|
-
discriminator: PropTypes.oneOf(['
|
|
9928
|
+
T['io.flow.internal.v0.models.adyen_dispute_deleted'] = PropTypes.exact({
|
|
9929
|
+
discriminator: PropTypes.oneOf(['adyen_dispute_deleted']).isRequired,
|
|
9859
9930
|
event_id: PropTypes.string.isRequired,
|
|
9860
9931
|
timestamp: PropTypes.string.isRequired,
|
|
9861
|
-
organization: PropTypes.string.isRequired,
|
|
9862
|
-
channel_id: PropTypes.string.isRequired,
|
|
9863
9932
|
id: PropTypes.string.isRequired,
|
|
9864
9933
|
});
|
|
9865
9934
|
|
|
@@ -9992,6 +10061,20 @@ T['io.flow.internal.v0.models.usd_spot_rate_upserted'] = PropTypes.exact({
|
|
|
9992
10061
|
usd_spot_rate: T['io.flow.internal.v0.models.usd_spot_rate'].isRequired,
|
|
9993
10062
|
});
|
|
9994
10063
|
|
|
10064
|
+
T['io.flow.internal.v0.models.unserviceable_taxonomy_category'] = PropTypes.exact({
|
|
10065
|
+
id: PropTypes.string.isRequired,
|
|
10066
|
+
taxonomy_category: PropTypes.string.isRequired,
|
|
10067
|
+
taxonomy_category_id: PropTypes.string,
|
|
10068
|
+
updated_by_user_id: PropTypes.string.isRequired,
|
|
10069
|
+
});
|
|
10070
|
+
|
|
10071
|
+
T['io.flow.internal.v0.models.unserviceable_taxonomy_category_upserted'] = PropTypes.exact({
|
|
10072
|
+
discriminator: PropTypes.oneOf(['unserviceable_taxonomy_category_upserted']).isRequired,
|
|
10073
|
+
event_id: PropTypes.string.isRequired,
|
|
10074
|
+
timestamp: PropTypes.string.isRequired,
|
|
10075
|
+
unserviceable_taxonomy_category: T['io.flow.internal.v0.models.unserviceable_taxonomy_category'].isRequired,
|
|
10076
|
+
});
|
|
10077
|
+
|
|
9995
10078
|
T['io.flow.internal.v0.models.unassigned_merchant_guid'] = PropTypes.exact({
|
|
9996
10079
|
id: PropTypes.string.isRequired,
|
|
9997
10080
|
merchant_guid: PropTypes.string.isRequired,
|
|
@@ -10175,6 +10258,7 @@ T['io.flow.internal.v0.models.taxonomy_node'] = PropTypes.exact({
|
|
|
10175
10258
|
T['io.flow.internal.v0.models.taxonomy_category_hs6_ref'] = PropTypes.exact({
|
|
10176
10259
|
id: PropTypes.string.isRequired,
|
|
10177
10260
|
taxonomy_category: PropTypes.string.isRequired,
|
|
10261
|
+
taxonomy_category_id: PropTypes.string,
|
|
10178
10262
|
hs6: PropTypes.string.isRequired,
|
|
10179
10263
|
updated_by_user_id: PropTypes.string.isRequired,
|
|
10180
10264
|
});
|
|
@@ -10201,6 +10285,7 @@ T['io.flow.billing.v0.enums.tax_duty_transaction_reason_code'] = PropTypes.oneOf
|
|
|
10201
10285
|
'us_inbound_tax_refund',
|
|
10202
10286
|
'order_cancellation_above_de_min',
|
|
10203
10287
|
'wyol_shipment_above_de_min',
|
|
10288
|
+
'wyol_shipment_lvg',
|
|
10204
10289
|
'full_refund_without_shipment',
|
|
10205
10290
|
'unfulfilled_order_above_de_min',
|
|
10206
10291
|
'order_cancellation_without_capture',
|
|
@@ -10786,6 +10871,12 @@ T['io.flow.shopify.external.v0.models.product_metafield'] = PropTypes.exact({
|
|
|
10786
10871
|
admin_graphql_api_id: PropTypes.string.isRequired,
|
|
10787
10872
|
});
|
|
10788
10873
|
|
|
10874
|
+
T['io.flow.shopify.external.v0.models.rest_taxonomy_category'] = PropTypes.exact({
|
|
10875
|
+
name: PropTypes.string.isRequired,
|
|
10876
|
+
full_name: PropTypes.string.isRequired,
|
|
10877
|
+
admin_graphql_api_id: PropTypes.string,
|
|
10878
|
+
});
|
|
10879
|
+
|
|
10789
10880
|
T['io.flow.shopify.external.v0.enums.published_scope'] = PropTypes.oneOf(['global']);
|
|
10790
10881
|
|
|
10791
10882
|
T['io.flow.shopify.external.v0.models.option'] = PropTypes.exact({
|
|
@@ -10836,6 +10927,74 @@ T['io.flow.shopify.external.v0.models.response_variant'] = PropTypes.exact({
|
|
|
10836
10927
|
variant: T['io.flow.shopify.external.v0.models.product_variant'].isRequired,
|
|
10837
10928
|
});
|
|
10838
10929
|
|
|
10930
|
+
T['io.flow.shopify.external.v0.models.product'] = PropTypes.exact({
|
|
10931
|
+
id: PropTypes.number.isRequired,
|
|
10932
|
+
handle: PropTypes.string.isRequired,
|
|
10933
|
+
variants: PropTypes.arrayOf(T['io.flow.shopify.external.v0.models.product_variant']),
|
|
10934
|
+
images: PropTypes.arrayOf(T['io.flow.shopify.external.v0.models.product_image']).isRequired,
|
|
10935
|
+
title: PropTypes.string.isRequired,
|
|
10936
|
+
vendor: PropTypes.string,
|
|
10937
|
+
body_html: PropTypes.string,
|
|
10938
|
+
product_type: PropTypes.string,
|
|
10939
|
+
status: PropTypes.string,
|
|
10940
|
+
options: PropTypes.arrayOf(T['io.flow.shopify.external.v0.models.option']).isRequired,
|
|
10941
|
+
tags: PropTypes.string,
|
|
10942
|
+
template_suffix: PropTypes.string,
|
|
10943
|
+
published_scope: T['io.flow.shopify.external.v0.enums.published_scope'],
|
|
10944
|
+
published_at: PropTypes.string,
|
|
10945
|
+
created_at: PropTypes.string.isRequired,
|
|
10946
|
+
updated_at: PropTypes.string.isRequired,
|
|
10947
|
+
has_variants_that_requires_components: PropTypes.bool,
|
|
10948
|
+
category: T['io.flow.shopify.external.v0.models.rest_taxonomy_category'],
|
|
10949
|
+
metafields: PropTypes.arrayOf(T['io.flow.shopify.external.v0.models.product_metafield']),
|
|
10950
|
+
});
|
|
10951
|
+
|
|
10952
|
+
T['io.flow.shopify.external.v0.models.response_products'] = PropTypes.exact({
|
|
10953
|
+
products: PropTypes.arrayOf(T['io.flow.shopify.external.v0.models.product']).isRequired,
|
|
10954
|
+
});
|
|
10955
|
+
|
|
10956
|
+
T['io.flow.shopify.external.v0.models.response_product'] = PropTypes.exact({
|
|
10957
|
+
product: T['io.flow.shopify.external.v0.models.product'].isRequired,
|
|
10958
|
+
});
|
|
10959
|
+
|
|
10960
|
+
T['io.flow.shopify.markets.internal.v0.models.shopify_product_wrapper'] = PropTypes.exact({
|
|
10961
|
+
shopify_product: T['io.flow.shopify.external.v0.models.product'].isRequired,
|
|
10962
|
+
deleted_at: PropTypes.string,
|
|
10963
|
+
});
|
|
10964
|
+
|
|
10965
|
+
T['io.flow.internal.v0.models.shopify_product_wrapper'] = PropTypes.exact({
|
|
10966
|
+
shopify_product: T['io.flow.shopify.external.v0.models.product'].isRequired,
|
|
10967
|
+
deleted_at: PropTypes.string,
|
|
10968
|
+
});
|
|
10969
|
+
|
|
10970
|
+
T['io.flow.internal.v0.models.shopify_product_update_webhook_event'] = PropTypes.exact({
|
|
10971
|
+
id: PropTypes.string.isRequired,
|
|
10972
|
+
product: T['io.flow.shopify.external.v0.models.product'].isRequired,
|
|
10973
|
+
domain: PropTypes.string.isRequired,
|
|
10974
|
+
api_version: PropTypes.string.isRequired,
|
|
10975
|
+
});
|
|
10976
|
+
|
|
10977
|
+
T['io.flow.internal.v0.models.shopify_product_update_upserted'] = PropTypes.exact({
|
|
10978
|
+
discriminator: PropTypes.oneOf(['shopify_product_update_upserted']).isRequired,
|
|
10979
|
+
event_id: PropTypes.string.isRequired,
|
|
10980
|
+
timestamp: PropTypes.string.isRequired,
|
|
10981
|
+
organization: PropTypes.string.isRequired,
|
|
10982
|
+
shopify_product_update: T['io.flow.internal.v0.models.shopify_product_update_webhook_event'].isRequired,
|
|
10983
|
+
});
|
|
10984
|
+
|
|
10985
|
+
T['io.flow.internal.v0.models.shopify_product_create_webhook_event'] = PropTypes.exact({
|
|
10986
|
+
id: PropTypes.string.isRequired,
|
|
10987
|
+
product: T['io.flow.shopify.external.v0.models.product'].isRequired,
|
|
10988
|
+
});
|
|
10989
|
+
|
|
10990
|
+
T['io.flow.internal.v0.models.shopify_product_create_upserted'] = PropTypes.exact({
|
|
10991
|
+
discriminator: PropTypes.oneOf(['shopify_product_create_upserted']).isRequired,
|
|
10992
|
+
event_id: PropTypes.string.isRequired,
|
|
10993
|
+
timestamp: PropTypes.string.isRequired,
|
|
10994
|
+
organization: PropTypes.string.isRequired,
|
|
10995
|
+
shopify_product_create: T['io.flow.internal.v0.models.shopify_product_create_webhook_event'].isRequired,
|
|
10996
|
+
});
|
|
10997
|
+
|
|
10839
10998
|
T['io.flow.internal.v0.models.shopify_product_bundle_underlying'] = PropTypes.exact({
|
|
10840
10999
|
product_ids: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
10841
11000
|
});
|
|
@@ -11560,6 +11719,34 @@ T['io.flow.internal.v0.models.setup_block_put_form'] = PropTypes.exact({
|
|
|
11560
11719
|
).isRequired,
|
|
11561
11720
|
});
|
|
11562
11721
|
|
|
11722
|
+
T['io.flow.internal.v0.models.sellability_pending_verification'] = PropTypes.exact({
|
|
11723
|
+
id: PropTypes.string.isRequired,
|
|
11724
|
+
merchant_id: PropTypes.string.isRequired,
|
|
11725
|
+
product_id: PropTypes.string.isRequired,
|
|
11726
|
+
channel: PropTypes.string.isRequired,
|
|
11727
|
+
request_id: PropTypes.string.isRequired,
|
|
11728
|
+
name: PropTypes.string.isRequired,
|
|
11729
|
+
description: PropTypes.string.isRequired,
|
|
11730
|
+
taxonomy_category: PropTypes.string,
|
|
11731
|
+
hs6_code: PropTypes.string,
|
|
11732
|
+
price: PropTypes.string,
|
|
11733
|
+
rule_id: PropTypes.string.isRequired,
|
|
11734
|
+
reason_code: PropTypes.string.isRequired,
|
|
11735
|
+
matching_keywords: PropTypes.string,
|
|
11736
|
+
status: PropTypes.string.isRequired,
|
|
11737
|
+
agent_decision: PropTypes.string,
|
|
11738
|
+
agent_reasoning: PropTypes.string,
|
|
11739
|
+
created_at: PropTypes.string.isRequired,
|
|
11740
|
+
updated_at: PropTypes.string.isRequired,
|
|
11741
|
+
});
|
|
11742
|
+
|
|
11743
|
+
T['io.flow.internal.v0.models.sellability_pending_verification_upserted'] = PropTypes.exact({
|
|
11744
|
+
discriminator: PropTypes.oneOf(['sellability_pending_verification_upserted']).isRequired,
|
|
11745
|
+
event_id: PropTypes.string.isRequired,
|
|
11746
|
+
timestamp: PropTypes.string.isRequired,
|
|
11747
|
+
sellability_pending_verification: T['io.flow.internal.v0.models.sellability_pending_verification'].isRequired,
|
|
11748
|
+
});
|
|
11749
|
+
|
|
11563
11750
|
T['io.flow.sellability.v0.enums.sellability_error_code'] = PropTypes.oneOf([
|
|
11564
11751
|
'insufficient_details',
|
|
11565
11752
|
'ineligible_category',
|
|
@@ -11705,6 +11892,42 @@ T['io.flow.internal.v0.models.payment_is'] = PropTypes.exact({
|
|
|
11705
11892
|
managed_pricing: PropTypes.bool,
|
|
11706
11893
|
});
|
|
11707
11894
|
|
|
11895
|
+
T['io.flow.internal.v0.models.pc_review_context'] = PropTypes.exact({
|
|
11896
|
+
discriminator: PropTypes.oneOf(['pc_review_context']).isRequired,
|
|
11897
|
+
organization_id: PropTypes.string.isRequired,
|
|
11898
|
+
item_name: PropTypes.string.isRequired,
|
|
11899
|
+
item_description: PropTypes.string,
|
|
11900
|
+
categories: PropTypes.string,
|
|
11901
|
+
taxonomy_category: PropTypes.string,
|
|
11902
|
+
image_url: PropTypes.string,
|
|
11903
|
+
});
|
|
11904
|
+
|
|
11905
|
+
T['io.flow.internal.v0.models.dg_review_context'] = PropTypes.exact({
|
|
11906
|
+
discriminator: PropTypes.oneOf(['dg_review_context']).isRequired,
|
|
11907
|
+
organization_id: PropTypes.string.isRequired,
|
|
11908
|
+
item_name: PropTypes.string.isRequired,
|
|
11909
|
+
item_description: PropTypes.string,
|
|
11910
|
+
image_url: PropTypes.string,
|
|
11911
|
+
hs_code: PropTypes.string,
|
|
11912
|
+
categories: PropTypes.string,
|
|
11913
|
+
price: PropTypes.string,
|
|
11914
|
+
});
|
|
11915
|
+
|
|
11916
|
+
T['io.flow.internal.v0.models.pv_review_context'] = PropTypes.exact({
|
|
11917
|
+
discriminator: PropTypes.oneOf(['pv_review_context']).isRequired,
|
|
11918
|
+
organization_id: PropTypes.string.isRequired,
|
|
11919
|
+
item_name: PropTypes.string.isRequired,
|
|
11920
|
+
item_description: PropTypes.string,
|
|
11921
|
+
image_url: PropTypes.string,
|
|
11922
|
+
rule_name: PropTypes.string.isRequired,
|
|
11923
|
+
rule_reason_code: PropTypes.string.isRequired,
|
|
11924
|
+
hs_code: PropTypes.string,
|
|
11925
|
+
categories: PropTypes.string,
|
|
11926
|
+
price: PropTypes.string,
|
|
11927
|
+
matching_positive_keywords: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
11928
|
+
matching_negative_keywords: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
11929
|
+
});
|
|
11930
|
+
|
|
11708
11931
|
T['io.flow.internal.v0.models.marked_as_final'] = PropTypes.exact({
|
|
11709
11932
|
products: PropTypes.bool.isRequired,
|
|
11710
11933
|
shipping: PropTypes.bool.isRequired,
|
|
@@ -11877,6 +12100,7 @@ T['io.flow.internal.v0.models.restrictions_athena_dailyops_fs_upserted'] = PropT
|
|
|
11877
12100
|
restrictions_athena_dailyops_fs: T['io.flow.internal.v0.models.restrictions_athena_dailyops_fs'].isRequired,
|
|
11878
12101
|
});
|
|
11879
12102
|
|
|
12103
|
+
T['io.flow.internal.v0.enums.restriction_rule_evaluation_mode'] = PropTypes.oneOf(['all_screenings', 'first_screening_only']);
|
|
11880
12104
|
T['io.flow.internal.v0.enums.restriction_rule_activation_status'] = PropTypes.oneOf(['draft', 'active', 'inactive']);
|
|
11881
12105
|
|
|
11882
12106
|
T['io.flow.internal.v0.models.keyword_cancelling'] = PropTypes.exact({
|
|
@@ -12135,6 +12359,7 @@ T['io.flow.internal.v0.enums.report_type'] = PropTypes.oneOf([
|
|
|
12135
12359
|
'scheduled_payment_citi',
|
|
12136
12360
|
'scheduled_payment_citi_krw',
|
|
12137
12361
|
'scheduled_payment_citi_krw_txt',
|
|
12362
|
+
'scheduled_payment_citi_uk_xml',
|
|
12138
12363
|
'account_quarterly_balances',
|
|
12139
12364
|
'invariants',
|
|
12140
12365
|
'payments',
|
|
@@ -12157,6 +12382,13 @@ T['io.flow.internal.v0.models.report'] = PropTypes.exact({
|
|
|
12157
12382
|
processed_at: PropTypes.string,
|
|
12158
12383
|
});
|
|
12159
12384
|
|
|
12385
|
+
T['io.flow.internal.v0.enums.remediate_tax_duty_arm'] = PropTypes.oneOf(['non_lvg', 'lvg_full_refund']);
|
|
12386
|
+
|
|
12387
|
+
T['io.flow.internal.v0.models.remediate_tax_duty_metadata'] = PropTypes.exact({
|
|
12388
|
+
discriminator: PropTypes.oneOf(['remediate_tax_duty_metadata']).isRequired,
|
|
12389
|
+
arm: T['io.flow.internal.v0.enums.remediate_tax_duty_arm'].isRequired,
|
|
12390
|
+
});
|
|
12391
|
+
|
|
12160
12392
|
T['io.flow.internal.v0.enums.redirect_reason'] = PropTypes.oneOf(['three_d_secure']);
|
|
12161
12393
|
|
|
12162
12394
|
T['io.flow.payment.v0.models.post_payment_redirect_urls'] = PropTypes.exact({
|
|
@@ -12555,23 +12787,6 @@ T['io.flow.sellability.v0.models.sellability_screening'] = PropTypes.exact({
|
|
|
12555
12787
|
error_message: PropTypes.string,
|
|
12556
12788
|
});
|
|
12557
12789
|
|
|
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
12790
|
T['io.flow.internal.v0.enums.preonboarding_classification_type'] = PropTypes.oneOf(['None', 'Manual', 'ML', 'System']);
|
|
12576
12791
|
T['io.flow.internal.v0.enums.preonboarding_classification_decision'] = PropTypes.oneOf(['Accept', 'Reject']);
|
|
12577
12792
|
|
|
@@ -12589,9 +12804,28 @@ T['io.flow.internal.v0.models.preonboarding_classification_result'] = PropTypes.
|
|
|
12589
12804
|
|
|
12590
12805
|
T['io.flow.sellability.v0.enums.sellability_screening_mode'] = PropTypes.oneOf(['pre_onboarding', 'default_on', 'active']);
|
|
12591
12806
|
|
|
12807
|
+
T['io.flow.internal.v0.models.preonboarding_merchant'] = PropTypes.exact({
|
|
12808
|
+
id: PropTypes.string.isRequired,
|
|
12809
|
+
merchant_id: PropTypes.string.isRequired,
|
|
12810
|
+
channel: PropTypes.string.isRequired,
|
|
12811
|
+
catalog_size: PropTypes.number.isRequired,
|
|
12812
|
+
processed_product_count: PropTypes.number.isRequired,
|
|
12813
|
+
last_request: PropTypes.string.isRequired,
|
|
12814
|
+
screening_mode: T['io.flow.sellability.v0.enums.sellability_screening_mode'],
|
|
12815
|
+
updated_by_user_id: PropTypes.string.isRequired,
|
|
12816
|
+
});
|
|
12817
|
+
|
|
12818
|
+
T['io.flow.internal.v0.models.preonboarding_merchant_upserted'] = PropTypes.exact({
|
|
12819
|
+
discriminator: PropTypes.oneOf(['preonboarding_merchant_upserted']).isRequired,
|
|
12820
|
+
event_id: PropTypes.string.isRequired,
|
|
12821
|
+
timestamp: PropTypes.string.isRequired,
|
|
12822
|
+
preonboarding_merchant: T['io.flow.internal.v0.models.preonboarding_merchant'].isRequired,
|
|
12823
|
+
});
|
|
12824
|
+
|
|
12592
12825
|
T['io.flow.product.v0.models.product_taxonomy_category'] = PropTypes.exact({
|
|
12593
12826
|
name: PropTypes.string.isRequired,
|
|
12594
12827
|
full_name: PropTypes.string.isRequired,
|
|
12828
|
+
id: PropTypes.string,
|
|
12595
12829
|
});
|
|
12596
12830
|
|
|
12597
12831
|
T['io.flow.product.v0.models.product'] = PropTypes.exact({
|
|
@@ -12606,74 +12840,6 @@ T['io.flow.product.v0.models.product'] = PropTypes.exact({
|
|
|
12606
12840
|
deleted_at: PropTypes.string,
|
|
12607
12841
|
});
|
|
12608
12842
|
|
|
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
12843
|
T['io.flow.internal.v0.models.preonboarding_sellability_result'] = PropTypes.exact({
|
|
12678
12844
|
id: PropTypes.string,
|
|
12679
12845
|
merchant_id: PropTypes.string.isRequired,
|
|
@@ -13327,43 +13493,6 @@ T['io.flow.internal.v0.enums.order_validation_status'] = PropTypes.oneOf([
|
|
|
13327
13493
|
'breached',
|
|
13328
13494
|
]);
|
|
13329
13495
|
|
|
13330
|
-
T['io.flow.experience.v0.enums.tax_and_duty_inclusivity_setting'] = PropTypes.oneOf([
|
|
13331
|
-
'duty_exclusive_tax_exclusive',
|
|
13332
|
-
'duty_inclusive_tax_exclusive',
|
|
13333
|
-
'duty_exclusive_tax_inclusive',
|
|
13334
|
-
'duty_inclusive_tax_inclusive',
|
|
13335
|
-
]);
|
|
13336
|
-
|
|
13337
|
-
T['io.flow.shopify.markets.internal.v0.models.order_tax_and_duty_inclusivity_setting'] = PropTypes.exact({
|
|
13338
|
-
id: PropTypes.string.isRequired,
|
|
13339
|
-
organization_id: PropTypes.string.isRequired,
|
|
13340
|
-
shopify_order_id: PropTypes.string.isRequired,
|
|
13341
|
-
order_number: PropTypes.string.isRequired,
|
|
13342
|
-
tax_and_duty_inclusivity_setting: T['io.flow.experience.v0.enums.tax_and_duty_inclusivity_setting'].isRequired,
|
|
13343
|
-
});
|
|
13344
|
-
|
|
13345
|
-
T['io.flow.shopify.markets.internal.event.v0.models.order_tax_and_duty_inclusivity_setting_upserted'] = PropTypes.exact({
|
|
13346
|
-
discriminator: PropTypes.oneOf(['order_tax_and_duty_inclusivity_setting_upserted']).isRequired,
|
|
13347
|
-
event_id: PropTypes.string.isRequired,
|
|
13348
|
-
timestamp: PropTypes.string.isRequired,
|
|
13349
|
-
order_tax_and_duty_inclusivity_setting: T['io.flow.shopify.markets.internal.v0.models.order_tax_and_duty_inclusivity_setting'].isRequired,
|
|
13350
|
-
});
|
|
13351
|
-
|
|
13352
|
-
T['io.flow.internal.v0.models.order_tax_and_duty_inclusivity_setting'] = PropTypes.exact({
|
|
13353
|
-
id: PropTypes.string.isRequired,
|
|
13354
|
-
organization_id: PropTypes.string.isRequired,
|
|
13355
|
-
shopify_order_id: PropTypes.string.isRequired,
|
|
13356
|
-
order_number: PropTypes.string.isRequired,
|
|
13357
|
-
tax_and_duty_inclusivity_setting: T['io.flow.experience.v0.enums.tax_and_duty_inclusivity_setting'].isRequired,
|
|
13358
|
-
});
|
|
13359
|
-
|
|
13360
|
-
T['io.flow.internal.v0.models.order_tax_and_duty_inclusivity_setting_upserted'] = PropTypes.exact({
|
|
13361
|
-
discriminator: PropTypes.oneOf(['order_tax_and_duty_inclusivity_setting_upserted']).isRequired,
|
|
13362
|
-
event_id: PropTypes.string.isRequired,
|
|
13363
|
-
timestamp: PropTypes.string.isRequired,
|
|
13364
|
-
order_tax_and_duty_inclusivity_setting: T['io.flow.internal.v0.models.order_tax_and_duty_inclusivity_setting'].isRequired,
|
|
13365
|
-
});
|
|
13366
|
-
|
|
13367
13496
|
T['io.flow.common.v0.enums.user_status'] = PropTypes.oneOf(['pending', 'active', 'inactive']);
|
|
13368
13497
|
|
|
13369
13498
|
T['io.flow.internal.v0.models.user_status_rule_form'] = PropTypes.exact({
|
|
@@ -14723,6 +14852,7 @@ T['io.flow.internal.v0.models.journal_failure'] = PropTypes.exact({
|
|
|
14723
14852
|
organization_id: PropTypes.string,
|
|
14724
14853
|
});
|
|
14725
14854
|
|
|
14855
|
+
T['io.flow.internal.v0.enums.john_strong_item_type'] = PropTypes.oneOf(['physical', 'digital']);
|
|
14726
14856
|
T['io.flow.catalog.v0.enums.fulfillment_method_value'] = PropTypes.oneOf(['digital', 'physical']);
|
|
14727
14857
|
|
|
14728
14858
|
T['io.flow.internal.v0.models.item_summary'] = PropTypes.exact({
|
|
@@ -14755,7 +14885,32 @@ T['io.flow.internal.v0.models.item_sales_margin'] = PropTypes.exact({
|
|
|
14755
14885
|
position: PropTypes.number.isRequired,
|
|
14756
14886
|
});
|
|
14757
14887
|
|
|
14758
|
-
T['io.flow.internal.v0.
|
|
14888
|
+
T['io.flow.internal.v0.models.item_hs6_override_form'] = PropTypes.exact({
|
|
14889
|
+
item_number: PropTypes.string.isRequired,
|
|
14890
|
+
hs6: PropTypes.string.isRequired,
|
|
14891
|
+
hs6_description: PropTypes.string,
|
|
14892
|
+
});
|
|
14893
|
+
|
|
14894
|
+
T['io.flow.internal.v0.models.item_hs6_overrides_form'] = PropTypes.exact({
|
|
14895
|
+
items: PropTypes.arrayOf(T['io.flow.internal.v0.models.item_hs6_override_form']).isRequired,
|
|
14896
|
+
});
|
|
14897
|
+
|
|
14898
|
+
T['io.flow.internal.v0.models.item_hs6_override_rejection'] = PropTypes.exact({
|
|
14899
|
+
item_number: PropTypes.string.isRequired,
|
|
14900
|
+
message: PropTypes.string.isRequired,
|
|
14901
|
+
});
|
|
14902
|
+
|
|
14903
|
+
T['io.flow.internal.v0.models.item_hs6_override'] = PropTypes.exact({
|
|
14904
|
+
item_number: PropTypes.string.isRequired,
|
|
14905
|
+
hs6: PropTypes.string.isRequired,
|
|
14906
|
+
});
|
|
14907
|
+
|
|
14908
|
+
T['io.flow.internal.v0.models.item_hs6_override_result'] = PropTypes.exact({
|
|
14909
|
+
applied: PropTypes.arrayOf(T['io.flow.internal.v0.models.item_hs6_override']).isRequired,
|
|
14910
|
+
rejected: PropTypes.arrayOf(T['io.flow.internal.v0.models.item_hs6_override_rejection']).isRequired,
|
|
14911
|
+
});
|
|
14912
|
+
|
|
14913
|
+
T['io.flow.internal.v0.enums.classification_scope'] = PropTypes.oneOf(['Item', 'Product', 'Bucket']);
|
|
14759
14914
|
T['io.flow.internal.v0.enums.harmonization_decision_source'] = PropTypes.oneOf(['human', 'system', 'legacy_model', 'enterprise_model', 'merchant']);
|
|
14760
14915
|
T['io.flow.internal.v0.enums.item_type'] = PropTypes.oneOf(['standard', 'multi_product']);
|
|
14761
14916
|
|
|
@@ -14799,6 +14954,32 @@ T['io.flow.internal.v0.models.item_classification'] = PropTypes.exact({
|
|
|
14799
14954
|
model_id: PropTypes.string.isRequired,
|
|
14800
14955
|
});
|
|
14801
14956
|
|
|
14957
|
+
T['io.flow.internal.v0.models.issuer'] = PropTypes.exact({
|
|
14958
|
+
id: PropTypes.string.isRequired,
|
|
14959
|
+
iin: PropTypes.string.isRequired,
|
|
14960
|
+
name: PropTypes.string,
|
|
14961
|
+
country: PropTypes.string,
|
|
14962
|
+
brand: PropTypes.string,
|
|
14963
|
+
type: PropTypes.string,
|
|
14964
|
+
category: PropTypes.string,
|
|
14965
|
+
website: PropTypes.string,
|
|
14966
|
+
phone: PropTypes.string,
|
|
14967
|
+
});
|
|
14968
|
+
|
|
14969
|
+
T['io.flow.internal.v0.models.issuer_upserted'] = PropTypes.exact({
|
|
14970
|
+
discriminator: PropTypes.oneOf(['issuer_upserted']).isRequired,
|
|
14971
|
+
event_id: PropTypes.string.isRequired,
|
|
14972
|
+
timestamp: PropTypes.string.isRequired,
|
|
14973
|
+
issuer: T['io.flow.internal.v0.models.issuer'].isRequired,
|
|
14974
|
+
});
|
|
14975
|
+
|
|
14976
|
+
T['io.flow.internal.v0.models.issuer_deleted'] = PropTypes.exact({
|
|
14977
|
+
discriminator: PropTypes.oneOf(['issuer_deleted']).isRequired,
|
|
14978
|
+
event_id: PropTypes.string.isRequired,
|
|
14979
|
+
timestamp: PropTypes.string.isRequired,
|
|
14980
|
+
issuer: T['io.flow.internal.v0.models.issuer'].isRequired,
|
|
14981
|
+
});
|
|
14982
|
+
|
|
14802
14983
|
T['io.flow.reference.v0.models.currency_symbols'] = PropTypes.exact({
|
|
14803
14984
|
primary: PropTypes.string.isRequired,
|
|
14804
14985
|
narrow: PropTypes.string,
|
|
@@ -15211,7 +15392,7 @@ T['io.flow.payment.gateway.v0.unions.action'] = PropTypes.oneOfType([
|
|
|
15211
15392
|
]);
|
|
15212
15393
|
|
|
15213
15394
|
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']);
|
|
15395
|
+
T['io.flow.experience.v0.enums.pricing_type'] = PropTypes.oneOf(['inclusive_pricing', 'inclusive_pricing_with_shipping']);
|
|
15215
15396
|
|
|
15216
15397
|
T['io.flow.experience.v0.models.order_rate'] = PropTypes.exact({
|
|
15217
15398
|
from: PropTypes.string.isRequired,
|
|
@@ -15326,6 +15507,16 @@ T['io.flow.internal.v0.models.harmonization_ml_model_summary'] = PropTypes.exact
|
|
|
15326
15507
|
score: PropTypes.number,
|
|
15327
15508
|
});
|
|
15328
15509
|
|
|
15510
|
+
T['io.flow.internal.v0.models.guaranteed_shipping_calibration_lane_form'] = PropTypes.exact({
|
|
15511
|
+
channel_id: PropTypes.string.isRequired,
|
|
15512
|
+
organization_id: PropTypes.string.isRequired,
|
|
15513
|
+
destination_country: PropTypes.string,
|
|
15514
|
+
});
|
|
15515
|
+
|
|
15516
|
+
T['io.flow.internal.v0.models.guaranteed_shipping_calibration_form'] = PropTypes.exact({
|
|
15517
|
+
lanes: PropTypes.arrayOf(T['io.flow.internal.v0.models.guaranteed_shipping_calibration_lane_form']).isRequired,
|
|
15518
|
+
});
|
|
15519
|
+
|
|
15329
15520
|
T['io.flow.internal.v0.models.google_linker'] = PropTypes.exact({
|
|
15330
15521
|
domains: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
15331
15522
|
});
|
|
@@ -15947,6 +16138,8 @@ T['io.flow.experience.v0.models.order_identifier'] = PropTypes.exact({
|
|
|
15947
16138
|
number: PropTypes.string,
|
|
15948
16139
|
});
|
|
15949
16140
|
|
|
16141
|
+
T['io.flow.internal.v0.enums.mail_class'] = PropTypes.oneOf(['standard', 'express']);
|
|
16142
|
+
|
|
15950
16143
|
T['io.flow.internal.v0.models.fiserv_authentication_form'] = PropTypes.exact({
|
|
15951
16144
|
public_key: PropTypes.string.isRequired,
|
|
15952
16145
|
secret_key: PropTypes.string.isRequired,
|
|
@@ -15957,6 +16150,14 @@ T['io.flow.internal.v0.models.fiserv_authentication'] = PropTypes.exact({
|
|
|
15957
16150
|
secret_key_reference: PropTypes.string.isRequired,
|
|
15958
16151
|
});
|
|
15959
16152
|
|
|
16153
|
+
T['io.flow.billing.bank.account.v0.models.bank_account_info_kor_v2'] = PropTypes.exact({
|
|
16154
|
+
discriminator: PropTypes.oneOf(['kor_v2']).isRequired,
|
|
16155
|
+
name: PropTypes.string.isRequired,
|
|
16156
|
+
bank_account_number: PropTypes.string.isRequired,
|
|
16157
|
+
bank_routing_number: PropTypes.string.isRequired,
|
|
16158
|
+
bank_name: PropTypes.string.isRequired,
|
|
16159
|
+
});
|
|
16160
|
+
|
|
15960
16161
|
T['io.flow.billing.bank.account.v0.models.bank_account_info_kor'] = PropTypes.exact({
|
|
15961
16162
|
discriminator: PropTypes.oneOf(['kor']).isRequired,
|
|
15962
16163
|
name: PropTypes.string.isRequired,
|
|
@@ -16006,6 +16207,7 @@ T['io.flow.billing.bank.account.v0.unions.bank_account_info'] = PropTypes.oneOfT
|
|
|
16006
16207
|
T['io.flow.billing.bank.account.v0.models.bank_account_info_fra'],
|
|
16007
16208
|
T['io.flow.billing.bank.account.v0.models.bank_account_info_ita'],
|
|
16008
16209
|
T['io.flow.billing.bank.account.v0.models.bank_account_info_kor'],
|
|
16210
|
+
T['io.flow.billing.bank.account.v0.models.bank_account_info_kor_v2'],
|
|
16009
16211
|
]);
|
|
16010
16212
|
|
|
16011
16213
|
T['io.flow.billing.v0.models.bank_account_form_info'] = PropTypes.exact({
|
|
@@ -17122,6 +17324,15 @@ T['io.flow.internal.v0.models.dimension_estimate_ops_input'] = PropTypes.exact({
|
|
|
17122
17324
|
weight_value: PropTypes.string,
|
|
17123
17325
|
});
|
|
17124
17326
|
|
|
17327
|
+
T['io.flow.internal.v0.enums.pv_decision'] = PropTypes.oneOf(['uphold', 'remove']);
|
|
17328
|
+
|
|
17329
|
+
T['io.flow.internal.v0.models.dg_class_assessment'] = PropTypes.exact({
|
|
17330
|
+
dg_class: PropTypes.string.isRequired,
|
|
17331
|
+
decision: T['io.flow.internal.v0.enums.pv_decision'].isRequired,
|
|
17332
|
+
confidence: PropTypes.number.isRequired,
|
|
17333
|
+
reasoning: PropTypes.string.isRequired,
|
|
17334
|
+
});
|
|
17335
|
+
|
|
17125
17336
|
T['io.flow.experience.v0.enums.delivered_duty_display_type'] = PropTypes.oneOf(['all', 'single']);
|
|
17126
17337
|
T['io.flow.internal.v0.enums.delivered_duty_option_message_type'] = PropTypes.oneOf(['warning', 'notification']);
|
|
17127
17338
|
|
|
@@ -18039,6 +18250,7 @@ T['io.flow.internal.v0.enums.item_harmonization_status'] = PropTypes.oneOf([
|
|
|
18039
18250
|
'non_classifiable_not_enough_information',
|
|
18040
18251
|
'exempt',
|
|
18041
18252
|
'manual_classification_required',
|
|
18253
|
+
'unserviceable_taxonomy',
|
|
18042
18254
|
]);
|
|
18043
18255
|
|
|
18044
18256
|
T['io.flow.internal.v0.models.no_classification_form'] = PropTypes.exact({
|
|
@@ -18064,6 +18276,7 @@ T['io.flow.internal.v0.models.item_harmonization'] = PropTypes.exact({
|
|
|
18064
18276
|
tariffs: PropTypes.objectOf(T['io.flow.internal.v0.models.tariff_code_duty']),
|
|
18065
18277
|
decision_source: T['io.flow.internal.v0.enums.harmonization_decision_source'],
|
|
18066
18278
|
classification_scope: T['io.flow.internal.v0.enums.classification_scope'],
|
|
18279
|
+
classification_resource_id: PropTypes.string,
|
|
18067
18280
|
taxonomy_category_classification_alignment: T['io.flow.internal.v0.enums.taxonomy_category_classification_alignment'],
|
|
18068
18281
|
created_at: PropTypes.string,
|
|
18069
18282
|
updated_at: PropTypes.string,
|
|
@@ -18667,6 +18880,51 @@ T['io.flow.internal.v0.models.channel_organization_token'] = PropTypes.exact({
|
|
|
18667
18880
|
service: T['io.flow.internal.v0.enums.channel_service'].isRequired,
|
|
18668
18881
|
});
|
|
18669
18882
|
|
|
18883
|
+
T['io.flow.experience.v0.enums.tax_and_duty_inclusivity_setting'] = PropTypes.oneOf([
|
|
18884
|
+
'duty_exclusive_tax_exclusive',
|
|
18885
|
+
'duty_inclusive_tax_exclusive',
|
|
18886
|
+
'duty_exclusive_tax_inclusive',
|
|
18887
|
+
'duty_inclusive_tax_inclusive',
|
|
18888
|
+
]);
|
|
18889
|
+
|
|
18890
|
+
T['io.flow.shopify.markets.internal.v0.models.order_tax_and_duty_inclusivity_setting'] = PropTypes.exact({
|
|
18891
|
+
id: PropTypes.string.isRequired,
|
|
18892
|
+
organization_id: PropTypes.string.isRequired,
|
|
18893
|
+
shopify_order_id: PropTypes.string.isRequired,
|
|
18894
|
+
order_number: PropTypes.string.isRequired,
|
|
18895
|
+
tax_and_duty_inclusivity_setting: T['io.flow.experience.v0.enums.tax_and_duty_inclusivity_setting'].isRequired,
|
|
18896
|
+
});
|
|
18897
|
+
|
|
18898
|
+
T['io.flow.shopify.markets.internal.event.v0.models.order_tax_and_duty_inclusivity_setting_upserted'] = PropTypes.exact({
|
|
18899
|
+
discriminator: PropTypes.oneOf(['order_tax_and_duty_inclusivity_setting_upserted']).isRequired,
|
|
18900
|
+
event_id: PropTypes.string.isRequired,
|
|
18901
|
+
timestamp: PropTypes.string.isRequired,
|
|
18902
|
+
order_tax_and_duty_inclusivity_setting: T['io.flow.shopify.markets.internal.v0.models.order_tax_and_duty_inclusivity_setting'].isRequired,
|
|
18903
|
+
});
|
|
18904
|
+
|
|
18905
|
+
T['io.flow.shopify.markets.internal.v0.models.order_settings'] = PropTypes.exact({
|
|
18906
|
+
tax_and_duty_inclusivity_setting: T['io.flow.experience.v0.enums.tax_and_duty_inclusivity_setting'],
|
|
18907
|
+
});
|
|
18908
|
+
|
|
18909
|
+
T['io.flow.internal.v0.models.order_tax_and_duty_inclusivity_setting'] = PropTypes.exact({
|
|
18910
|
+
id: PropTypes.string.isRequired,
|
|
18911
|
+
organization_id: PropTypes.string.isRequired,
|
|
18912
|
+
shopify_order_id: PropTypes.string.isRequired,
|
|
18913
|
+
order_number: PropTypes.string.isRequired,
|
|
18914
|
+
tax_and_duty_inclusivity_setting: T['io.flow.experience.v0.enums.tax_and_duty_inclusivity_setting'].isRequired,
|
|
18915
|
+
});
|
|
18916
|
+
|
|
18917
|
+
T['io.flow.internal.v0.models.order_tax_and_duty_inclusivity_setting_upserted'] = PropTypes.exact({
|
|
18918
|
+
discriminator: PropTypes.oneOf(['order_tax_and_duty_inclusivity_setting_upserted']).isRequired,
|
|
18919
|
+
event_id: PropTypes.string.isRequired,
|
|
18920
|
+
timestamp: PropTypes.string.isRequired,
|
|
18921
|
+
order_tax_and_duty_inclusivity_setting: T['io.flow.internal.v0.models.order_tax_and_duty_inclusivity_setting'].isRequired,
|
|
18922
|
+
});
|
|
18923
|
+
|
|
18924
|
+
T['io.flow.internal.v0.models.order_settings'] = PropTypes.exact({
|
|
18925
|
+
tax_and_duty_inclusivity_setting: T['io.flow.experience.v0.enums.tax_and_duty_inclusivity_setting'],
|
|
18926
|
+
});
|
|
18927
|
+
|
|
18670
18928
|
T['io.flow.internal.v0.enums.channel_order_fulfillment_status_code'] = PropTypes.oneOf(['unfulfilled', 'fulfilled', 'partial', 'cancelled']);
|
|
18671
18929
|
|
|
18672
18930
|
T['io.flow.internal.v0.models.channel_order_summary_fulfillment_details'] = PropTypes.exact({
|
|
@@ -18718,41 +18976,10 @@ T['io.flow.internal.v0.enums.channel_order_acceptance_rejection_reason'] = PropT
|
|
|
18718
18976
|
'organization_deactivated',
|
|
18719
18977
|
]);
|
|
18720
18978
|
|
|
18721
|
-
T['io.flow.
|
|
18979
|
+
T['io.flow.internal.v0.models.external_order_summary'] = PropTypes.exact({
|
|
18722
18980
|
id: PropTypes.string.isRequired,
|
|
18723
18981
|
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,
|
|
18982
|
+
created_at: PropTypes.string,
|
|
18756
18983
|
});
|
|
18757
18984
|
|
|
18758
18985
|
T['io.flow.internal.v0.enums.order_payment_source_type'] = PropTypes.oneOf(['globale', 'third_party']);
|
|
@@ -20274,7 +20501,7 @@ T['io.flow.internal.v0.models.channel_order_acceptance'] = PropTypes.exact({
|
|
|
20274
20501
|
order_updated_at: PropTypes.string,
|
|
20275
20502
|
order_edit_summary: T['io.flow.internal.v0.models.order_edit_summary'],
|
|
20276
20503
|
payment_source: T['io.flow.internal.v0.enums.order_payment_source_type'],
|
|
20277
|
-
external_order_summary: T['io.flow.
|
|
20504
|
+
external_order_summary: T['io.flow.internal.v0.models.external_order_summary'],
|
|
20278
20505
|
});
|
|
20279
20506
|
|
|
20280
20507
|
T['io.flow.internal.v0.models.channel_order_acceptance_upserted'] = PropTypes.exact({
|
|
@@ -21047,6 +21274,7 @@ T['io.flow.billing.v0.models.statement'] = PropTypes.exact({
|
|
|
21047
21274
|
settlement: T['io.flow.billing.v0.unions.settlement'].isRequired,
|
|
21048
21275
|
attachments: PropTypes.arrayOf(T['io.flow.billing.v0.models.attachment']).isRequired,
|
|
21049
21276
|
created_at: PropTypes.string.isRequired,
|
|
21277
|
+
period: T['io.flow.common.v0.models.datetime_range'],
|
|
21050
21278
|
});
|
|
21051
21279
|
|
|
21052
21280
|
T['io.flow.billing.v0.models.organization_payout'] = PropTypes.exact({
|
|
@@ -21067,6 +21295,7 @@ T['io.flow.billing.v0.models.channel_statement'] = PropTypes.exact({
|
|
|
21067
21295
|
settlement: T['io.flow.billing.v0.unions.settlement'].isRequired,
|
|
21068
21296
|
attachments: PropTypes.arrayOf(T['io.flow.billing.v0.models.attachment']).isRequired,
|
|
21069
21297
|
created_at: PropTypes.string.isRequired,
|
|
21298
|
+
period: T['io.flow.common.v0.models.datetime_range'],
|
|
21070
21299
|
});
|
|
21071
21300
|
|
|
21072
21301
|
T['io.flow.billing.v0.models.channel_payout'] = PropTypes.exact({
|
|
@@ -22150,6 +22379,7 @@ T['io.flow.internal.v0.models.restriction_rule_form'] = PropTypes.exact({
|
|
|
22150
22379
|
attribute_rule_conditions: T['io.flow.internal.v0.models.attribute_rule'],
|
|
22151
22380
|
keyword_cancelling: PropTypes.arrayOf(T['io.flow.internal.v0.models.keyword_cancelling']),
|
|
22152
22381
|
activation_status: T['io.flow.internal.v0.enums.restriction_rule_activation_status'].isRequired,
|
|
22382
|
+
evaluation_mode: T['io.flow.internal.v0.enums.restriction_rule_evaluation_mode'].isRequired,
|
|
22153
22383
|
});
|
|
22154
22384
|
|
|
22155
22385
|
T['io.flow.internal.v0.models.restriction_rule'] = PropTypes.exact({
|
|
@@ -22170,6 +22400,7 @@ T['io.flow.internal.v0.models.restriction_rule'] = PropTypes.exact({
|
|
|
22170
22400
|
attribute_rule_conditions: T['io.flow.internal.v0.models.attribute_rule'],
|
|
22171
22401
|
keyword_cancelling: PropTypes.arrayOf(T['io.flow.internal.v0.models.keyword_cancelling']),
|
|
22172
22402
|
activation_status: T['io.flow.internal.v0.enums.restriction_rule_activation_status'].isRequired,
|
|
22403
|
+
evaluation_mode: T['io.flow.internal.v0.enums.restriction_rule_evaluation_mode'].isRequired,
|
|
22173
22404
|
});
|
|
22174
22405
|
|
|
22175
22406
|
T['io.flow.internal.v0.models.restriction_rule_upserted'] = PropTypes.exact({
|
|
@@ -22181,6 +22412,99 @@ T['io.flow.internal.v0.models.restriction_rule_upserted'] = PropTypes.exact({
|
|
|
22181
22412
|
|
|
22182
22413
|
T['io.flow.internal.v0.enums.amrutha_item_type'] = PropTypes.oneOf(['physical', 'digital']);
|
|
22183
22414
|
|
|
22415
|
+
T['io.flow.internal.v0.models.pc_review_output'] = PropTypes.exact({
|
|
22416
|
+
discriminator: PropTypes.oneOf(['pc_review_output']).isRequired,
|
|
22417
|
+
hs_code: PropTypes.string.isRequired,
|
|
22418
|
+
alternates: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
22419
|
+
confidence: PropTypes.number.isRequired,
|
|
22420
|
+
reasoning: PropTypes.string.isRequired,
|
|
22421
|
+
});
|
|
22422
|
+
|
|
22423
|
+
T['io.flow.internal.v0.models.dg_review_output'] = PropTypes.exact({
|
|
22424
|
+
discriminator: PropTypes.oneOf(['dg_review_output']).isRequired,
|
|
22425
|
+
assessments: PropTypes.arrayOf(T['io.flow.internal.v0.models.dg_class_assessment']).isRequired,
|
|
22426
|
+
});
|
|
22427
|
+
|
|
22428
|
+
T['io.flow.internal.v0.models.pv_review_output'] = PropTypes.exact({
|
|
22429
|
+
discriminator: PropTypes.oneOf(['pv_review_output']).isRequired,
|
|
22430
|
+
decision: T['io.flow.internal.v0.enums.pv_decision'].isRequired,
|
|
22431
|
+
confidence: PropTypes.number.isRequired,
|
|
22432
|
+
reasoning: PropTypes.string.isRequired,
|
|
22433
|
+
});
|
|
22434
|
+
|
|
22435
|
+
T['io.flow.internal.v0.unions.ai_output'] = PropTypes.oneOfType([
|
|
22436
|
+
T['io.flow.internal.v0.models.pv_review_output'],
|
|
22437
|
+
T['io.flow.internal.v0.models.dg_review_output'],
|
|
22438
|
+
T['io.flow.internal.v0.models.pc_review_output'],
|
|
22439
|
+
]);
|
|
22440
|
+
|
|
22441
|
+
T['io.flow.internal.v0.models.ai_review_failed_item'] = PropTypes.exact({
|
|
22442
|
+
review_id: PropTypes.string.isRequired,
|
|
22443
|
+
organization_id: PropTypes.string.isRequired,
|
|
22444
|
+
});
|
|
22445
|
+
|
|
22446
|
+
T['io.flow.internal.v0.enums.ai_review_failure_reason'] = PropTypes.oneOf([
|
|
22447
|
+
'item_errored',
|
|
22448
|
+
'item_expired',
|
|
22449
|
+
'item_unparseable',
|
|
22450
|
+
'item_image_fetch_failed',
|
|
22451
|
+
'item_undecided',
|
|
22452
|
+
'batch_failed',
|
|
22453
|
+
'batch_timed_out',
|
|
22454
|
+
]);
|
|
22455
|
+
|
|
22456
|
+
T['io.flow.internal.v0.unions.ai_review_context'] = PropTypes.oneOfType([
|
|
22457
|
+
T['io.flow.internal.v0.models.pv_review_context'],
|
|
22458
|
+
T['io.flow.internal.v0.models.dg_review_context'],
|
|
22459
|
+
T['io.flow.internal.v0.models.pc_review_context'],
|
|
22460
|
+
]);
|
|
22461
|
+
|
|
22462
|
+
T['io.flow.internal.v0.enums.ai_review_type'] = PropTypes.oneOf(['pv_review_general', 'pv_review_dg_hazmat', 'pc_review']);
|
|
22463
|
+
|
|
22464
|
+
T['io.flow.internal.v0.models.review_request_item'] = PropTypes.exact({
|
|
22465
|
+
review_type: T['io.flow.internal.v0.enums.ai_review_type'].isRequired,
|
|
22466
|
+
review_id: PropTypes.string.isRequired,
|
|
22467
|
+
context: T['io.flow.internal.v0.unions.ai_review_context'].isRequired,
|
|
22468
|
+
});
|
|
22469
|
+
|
|
22470
|
+
T['io.flow.internal.v0.enums.ai_review_consumer'] = PropTypes.oneOf(['restrictions', 'sellability', 'harmonization']);
|
|
22471
|
+
|
|
22472
|
+
T['io.flow.internal.v0.models.ai_review_result'] = PropTypes.exact({
|
|
22473
|
+
review_id: PropTypes.string.isRequired,
|
|
22474
|
+
organization_id: PropTypes.string.isRequired,
|
|
22475
|
+
consumer: T['io.flow.internal.v0.enums.ai_review_consumer'].isRequired,
|
|
22476
|
+
review_type: T['io.flow.internal.v0.enums.ai_review_type'].isRequired,
|
|
22477
|
+
ai_output: T['io.flow.internal.v0.unions.ai_output'].isRequired,
|
|
22478
|
+
ai_model: PropTypes.string.isRequired,
|
|
22479
|
+
prompt_id: PropTypes.string.isRequired,
|
|
22480
|
+
prompt_version: PropTypes.string.isRequired,
|
|
22481
|
+
});
|
|
22482
|
+
|
|
22483
|
+
T['io.flow.internal.v0.models.ai_review_result_upserted'] = PropTypes.exact({
|
|
22484
|
+
discriminator: PropTypes.oneOf(['ai_review_result_upserted']).isRequired,
|
|
22485
|
+
event_id: PropTypes.string.isRequired,
|
|
22486
|
+
timestamp: PropTypes.string.isRequired,
|
|
22487
|
+
ai_review_result: T['io.flow.internal.v0.models.ai_review_result'].isRequired,
|
|
22488
|
+
});
|
|
22489
|
+
|
|
22490
|
+
T['io.flow.internal.v0.models.ai_review_request_failed'] = PropTypes.exact({
|
|
22491
|
+
discriminator: PropTypes.oneOf(['ai_review_request_failed']).isRequired,
|
|
22492
|
+
event_id: PropTypes.string.isRequired,
|
|
22493
|
+
timestamp: PropTypes.string.isRequired,
|
|
22494
|
+
consumer: T['io.flow.internal.v0.enums.ai_review_consumer'].isRequired,
|
|
22495
|
+
review_type: T['io.flow.internal.v0.enums.ai_review_type'].isRequired,
|
|
22496
|
+
reason: T['io.flow.internal.v0.enums.ai_review_failure_reason'].isRequired,
|
|
22497
|
+
items: PropTypes.arrayOf(T['io.flow.internal.v0.models.ai_review_failed_item']).isRequired,
|
|
22498
|
+
});
|
|
22499
|
+
|
|
22500
|
+
T['io.flow.internal.v0.models.ai_review_batch_submitted'] = PropTypes.exact({
|
|
22501
|
+
discriminator: PropTypes.oneOf(['ai_review_batch_submitted']).isRequired,
|
|
22502
|
+
event_id: PropTypes.string.isRequired,
|
|
22503
|
+
timestamp: PropTypes.string.isRequired,
|
|
22504
|
+
consumer: T['io.flow.internal.v0.enums.ai_review_consumer'].isRequired,
|
|
22505
|
+
items: PropTypes.arrayOf(T['io.flow.internal.v0.models.review_request_item']).isRequired,
|
|
22506
|
+
});
|
|
22507
|
+
|
|
22184
22508
|
T['io.flow.internal.v0.models.afterpay_refund'] = PropTypes.exact({
|
|
22185
22509
|
id: PropTypes.string.isRequired,
|
|
22186
22510
|
flow_refund_id: PropTypes.string.isRequired,
|
|
@@ -23155,26 +23479,6 @@ T['io.flow.internal.v0.models.debug_order_transaction_details'] = PropTypes.exac
|
|
|
23155
23479
|
payout_details: T['io.flow.billing.v0.unions.payout_status'],
|
|
23156
23480
|
});
|
|
23157
23481
|
|
|
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
23482
|
T['io.flow.common.v0.models.money'] = PropTypes.exact({
|
|
23179
23483
|
amount: PropTypes.number.isRequired,
|
|
23180
23484
|
currency: PropTypes.string.isRequired,
|
|
@@ -24239,6 +24543,26 @@ T['io.flow.internal.v0.models.preonboarding_classification_request'] = PropTypes
|
|
|
24239
24543
|
screening_mode: T['io.flow.sellability.v0.enums.sellability_screening_mode'],
|
|
24240
24544
|
});
|
|
24241
24545
|
|
|
24546
|
+
T['io.flow.internal.v0.models.outbound_shipping_cost'] = PropTypes.exact({
|
|
24547
|
+
channel_id: PropTypes.string.isRequired,
|
|
24548
|
+
organization_id: PropTypes.string.isRequired,
|
|
24549
|
+
destination_country: PropTypes.string.isRequired,
|
|
24550
|
+
carrier_service_id: PropTypes.string.isRequired,
|
|
24551
|
+
cost: T['io.flow.common.v0.models.money'].isRequired,
|
|
24552
|
+
updated_at: PropTypes.number.isRequired,
|
|
24553
|
+
run_id: PropTypes.string.isRequired,
|
|
24554
|
+
model_version: PropTypes.string.isRequired,
|
|
24555
|
+
});
|
|
24556
|
+
|
|
24557
|
+
T['io.flow.internal.v0.models.outbound_shipping_cost_upserted'] = PropTypes.exact({
|
|
24558
|
+
discriminator: PropTypes.oneOf(['outbound_shipping_cost_upserted']).isRequired,
|
|
24559
|
+
event_id: PropTypes.string.isRequired,
|
|
24560
|
+
timestamp: PropTypes.string.isRequired,
|
|
24561
|
+
organization: PropTypes.string.isRequired,
|
|
24562
|
+
channel_id: PropTypes.string.isRequired,
|
|
24563
|
+
outbound_shipping_cost: T['io.flow.internal.v0.models.outbound_shipping_cost'].isRequired,
|
|
24564
|
+
});
|
|
24565
|
+
|
|
24242
24566
|
T['io.flow.internal.v0.models.mor_cost_summary'] = PropTypes.exact({
|
|
24243
24567
|
id: PropTypes.string.isRequired,
|
|
24244
24568
|
organization_id: PropTypes.string.isRequired,
|
|
@@ -24273,6 +24597,56 @@ T['io.flow.internal.v0.models.liability_item'] = PropTypes.exact({
|
|
|
24273
24597
|
no_liability_reason_code: T['io.flow.internal.v0.enums.no_liability_reason_code'],
|
|
24274
24598
|
});
|
|
24275
24599
|
|
|
24600
|
+
T['io.flow.internal.v0.models.guaranteed_shipping_settings_destination_update'] = PropTypes.exact({
|
|
24601
|
+
country: PropTypes.string.isRequired,
|
|
24602
|
+
updated_at: PropTypes.string.isRequired,
|
|
24603
|
+
tax_and_duty_coefficient: PropTypes.number.isRequired,
|
|
24604
|
+
fees_coefficient: PropTypes.number.isRequired,
|
|
24605
|
+
merchant_subsidy: T['io.flow.common.v0.models.money'].isRequired,
|
|
24606
|
+
guaranteed_pricing_enabled: PropTypes.bool.isRequired,
|
|
24607
|
+
guaranteed_shipping_enabled: PropTypes.bool.isRequired,
|
|
24608
|
+
});
|
|
24609
|
+
|
|
24610
|
+
T['io.flow.internal.v0.models.guaranteed_shipping_settings_update'] = PropTypes.exact({
|
|
24611
|
+
channel_id: PropTypes.string.isRequired,
|
|
24612
|
+
organization_id: PropTypes.string.isRequired,
|
|
24613
|
+
|
|
24614
|
+
destination_updates: PropTypes.arrayOf(
|
|
24615
|
+
T['io.flow.internal.v0.models.guaranteed_shipping_settings_destination_update'],
|
|
24616
|
+
).isRequired,
|
|
24617
|
+
});
|
|
24618
|
+
|
|
24619
|
+
T['io.flow.internal.v0.models.guaranteed_shipping_settings_update_upserted'] = PropTypes.exact({
|
|
24620
|
+
discriminator: PropTypes.oneOf(['guaranteed_shipping_settings_update_upserted']).isRequired,
|
|
24621
|
+
event_id: PropTypes.string.isRequired,
|
|
24622
|
+
timestamp: PropTypes.string.isRequired,
|
|
24623
|
+
organization: PropTypes.string.isRequired,
|
|
24624
|
+
channel_id: PropTypes.string.isRequired,
|
|
24625
|
+
guaranteed_shipping_settings_update: T['io.flow.internal.v0.models.guaranteed_shipping_settings_update'].isRequired,
|
|
24626
|
+
});
|
|
24627
|
+
|
|
24628
|
+
T['io.flow.internal.v0.models.guaranteed_shipping_settings'] = PropTypes.exact({
|
|
24629
|
+
coefficients_updated_at: PropTypes.number.isRequired,
|
|
24630
|
+
channel_id: PropTypes.string.isRequired,
|
|
24631
|
+
organization_id: PropTypes.string.isRequired,
|
|
24632
|
+
destination_country: PropTypes.string.isRequired,
|
|
24633
|
+
tax_and_duty_coefficient: PropTypes.number.isRequired,
|
|
24634
|
+
fees_coefficient: PropTypes.number.isRequired,
|
|
24635
|
+
merchant_subsidy: T['io.flow.common.v0.models.money'].isRequired,
|
|
24636
|
+
created_at: PropTypes.number.isRequired,
|
|
24637
|
+
guaranteed_pricing_enabled: PropTypes.bool.isRequired,
|
|
24638
|
+
guaranteed_shipping_enabled: PropTypes.bool.isRequired,
|
|
24639
|
+
});
|
|
24640
|
+
|
|
24641
|
+
T['io.flow.internal.v0.models.guaranteed_shipping_settings_upserted'] = PropTypes.exact({
|
|
24642
|
+
discriminator: PropTypes.oneOf(['guaranteed_shipping_settings_upserted']).isRequired,
|
|
24643
|
+
event_id: PropTypes.string.isRequired,
|
|
24644
|
+
timestamp: PropTypes.string.isRequired,
|
|
24645
|
+
organization: PropTypes.string.isRequired,
|
|
24646
|
+
channel_id: PropTypes.string.isRequired,
|
|
24647
|
+
guaranteed_shipping_settings: T['io.flow.internal.v0.models.guaranteed_shipping_settings'].isRequired,
|
|
24648
|
+
});
|
|
24649
|
+
|
|
24276
24650
|
T['io.flow.internal.v0.models.fx_revenue_recognition_source'] = PropTypes.exact({
|
|
24277
24651
|
id: PropTypes.string.isRequired,
|
|
24278
24652
|
local: T['io.flow.common.v0.models.money'].isRequired,
|
|
@@ -24302,6 +24676,23 @@ T['io.flow.internal.v0.models.fx_revenue_recognition'] = PropTypes.exact({
|
|
|
24302
24676
|
reporting_date: PropTypes.string,
|
|
24303
24677
|
});
|
|
24304
24678
|
|
|
24679
|
+
T['io.flow.internal.v0.models.flat_rate_label_subsidy'] = PropTypes.exact({
|
|
24680
|
+
id: PropTypes.string.isRequired,
|
|
24681
|
+
source: T['io.flow.billing.v0.enums.transaction_source'].isRequired,
|
|
24682
|
+
organization_id: PropTypes.string.isRequired,
|
|
24683
|
+
order_number: PropTypes.string.isRequired,
|
|
24684
|
+
amount: T['io.flow.common.v0.models.money'].isRequired,
|
|
24685
|
+
tax: T['io.flow.common.v0.models.money'].isRequired,
|
|
24686
|
+
});
|
|
24687
|
+
|
|
24688
|
+
T['io.flow.internal.v0.models.flat_rate_label_subsidy_upserted'] = PropTypes.exact({
|
|
24689
|
+
discriminator: PropTypes.oneOf(['flat_rate_label_subsidy_upserted']).isRequired,
|
|
24690
|
+
event_id: PropTypes.string.isRequired,
|
|
24691
|
+
timestamp: PropTypes.string.isRequired,
|
|
24692
|
+
organization: PropTypes.string.isRequired,
|
|
24693
|
+
flat_rate_label_subsidy: T['io.flow.internal.v0.models.flat_rate_label_subsidy'].isRequired,
|
|
24694
|
+
});
|
|
24695
|
+
|
|
24305
24696
|
T['io.flow.internal.v0.models.flat_rate_label_reversal'] = PropTypes.exact({
|
|
24306
24697
|
id: PropTypes.string.isRequired,
|
|
24307
24698
|
organization_id: PropTypes.string.isRequired,
|
|
@@ -24318,6 +24709,53 @@ T['io.flow.internal.v0.models.flat_rate_label_reversal_upserted'] = PropTypes.ex
|
|
|
24318
24709
|
flat_rate_label_reversal: T['io.flow.internal.v0.models.flat_rate_label_reversal'].isRequired,
|
|
24319
24710
|
});
|
|
24320
24711
|
|
|
24712
|
+
T['io.flow.internal.v0.models.flat_rate'] = PropTypes.exact({
|
|
24713
|
+
mail_class: T['io.flow.internal.v0.enums.mail_class'].isRequired,
|
|
24714
|
+
carrier_id: PropTypes.string.isRequired,
|
|
24715
|
+
service_id: PropTypes.string.isRequired,
|
|
24716
|
+
price: T['io.flow.common.v0.models.money'].isRequired,
|
|
24717
|
+
free_shipping_threshold: T['io.flow.common.v0.models.money'],
|
|
24718
|
+
min_delivery_days: PropTypes.number,
|
|
24719
|
+
max_delivery_days: PropTypes.number,
|
|
24720
|
+
});
|
|
24721
|
+
|
|
24722
|
+
T['io.flow.internal.v0.models.guaranteed_shipping_published_output'] = PropTypes.exact({
|
|
24723
|
+
id: PropTypes.string.isRequired,
|
|
24724
|
+
organization_id: PropTypes.string.isRequired,
|
|
24725
|
+
channel_id: PropTypes.string.isRequired,
|
|
24726
|
+
destination_country: PropTypes.string.isRequired,
|
|
24727
|
+
coefficient: PropTypes.number.isRequired,
|
|
24728
|
+
flat_rates: PropTypes.arrayOf(T['io.flow.internal.v0.models.flat_rate']).isRequired,
|
|
24729
|
+
inputs_updated_at: PropTypes.number.isRequired,
|
|
24730
|
+
});
|
|
24731
|
+
|
|
24732
|
+
T['io.flow.internal.v0.models.guaranteed_shipping_published_output_upserted'] = PropTypes.exact({
|
|
24733
|
+
discriminator: PropTypes.oneOf(['guaranteed_shipping_published_output_upserted']).isRequired,
|
|
24734
|
+
event_id: PropTypes.string.isRequired,
|
|
24735
|
+
timestamp: PropTypes.string.isRequired,
|
|
24736
|
+
organization: PropTypes.string.isRequired,
|
|
24737
|
+
guaranteed_shipping_published_output: T['io.flow.internal.v0.models.guaranteed_shipping_published_output'].isRequired,
|
|
24738
|
+
});
|
|
24739
|
+
|
|
24740
|
+
T['io.flow.internal.v0.models.guaranteed_shipping_calibrated_output'] = PropTypes.exact({
|
|
24741
|
+
id: PropTypes.string.isRequired,
|
|
24742
|
+
organization_id: PropTypes.string.isRequired,
|
|
24743
|
+
channel_id: PropTypes.string.isRequired,
|
|
24744
|
+
destination_country: PropTypes.string.isRequired,
|
|
24745
|
+
coefficient: PropTypes.number.isRequired,
|
|
24746
|
+
flat_rates: PropTypes.arrayOf(T['io.flow.internal.v0.models.flat_rate']).isRequired,
|
|
24747
|
+
effective_at: PropTypes.string.isRequired,
|
|
24748
|
+
effective_until: PropTypes.string,
|
|
24749
|
+
});
|
|
24750
|
+
|
|
24751
|
+
T['io.flow.internal.v0.models.guaranteed_shipping_calibrated_output_upserted'] = PropTypes.exact({
|
|
24752
|
+
discriminator: PropTypes.oneOf(['guaranteed_shipping_calibrated_output_upserted']).isRequired,
|
|
24753
|
+
event_id: PropTypes.string.isRequired,
|
|
24754
|
+
timestamp: PropTypes.string.isRequired,
|
|
24755
|
+
organization: PropTypes.string.isRequired,
|
|
24756
|
+
guaranteed_shipping_calibrated_output: T['io.flow.internal.v0.models.guaranteed_shipping_calibrated_output'].isRequired,
|
|
24757
|
+
});
|
|
24758
|
+
|
|
24321
24759
|
T['io.flow.common.v0.models.line_item_form'] = PropTypes.exact({
|
|
24322
24760
|
number: PropTypes.string.isRequired,
|
|
24323
24761
|
quantity: PropTypes.number.isRequired,
|
|
@@ -25031,94 +25469,23 @@ T['io.flow.internal.v0.unions.calculator_stamp'] = PropTypes.oneOfType([
|
|
|
25031
25469
|
T['io.flow.internal.v0.models.calculation_step'],
|
|
25032
25470
|
]);
|
|
25033
25471
|
|
|
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
|
-
});
|
|
25472
|
+
T['io.flow.internal.v0.enums.adaptive_shipping_order_guarantee_state'] = PropTypes.oneOf(['confirmed', 'voided']);
|
|
25061
25473
|
|
|
25062
|
-
T['io.flow.internal.v0.models.
|
|
25474
|
+
T['io.flow.internal.v0.models.adaptive_shipping_order_guarantee'] = PropTypes.exact({
|
|
25063
25475
|
id: PropTypes.string.isRequired,
|
|
25064
25476
|
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,
|
|
25477
|
+
order_number: PropTypes.string.isRequired,
|
|
25478
|
+
guarantee_state: T['io.flow.internal.v0.enums.adaptive_shipping_order_guarantee_state'].isRequired,
|
|
25479
|
+
label_id: PropTypes.string,
|
|
25480
|
+
notification_id: PropTypes.string,
|
|
25113
25481
|
});
|
|
25114
25482
|
|
|
25115
|
-
T['io.flow.internal.v0.models.
|
|
25116
|
-
discriminator: PropTypes.oneOf(['
|
|
25483
|
+
T['io.flow.internal.v0.models.adaptive_shipping_order_guarantee_upserted'] = PropTypes.exact({
|
|
25484
|
+
discriminator: PropTypes.oneOf(['adaptive_shipping_order_guarantee_upserted']).isRequired,
|
|
25117
25485
|
event_id: PropTypes.string.isRequired,
|
|
25118
25486
|
timestamp: PropTypes.string.isRequired,
|
|
25119
25487
|
organization: PropTypes.string.isRequired,
|
|
25120
|
-
|
|
25121
|
-
adaptive_pricing_coefficient: T['io.flow.internal.v0.models.adaptive_pricing_coefficient'].isRequired,
|
|
25488
|
+
adaptive_shipping_order_guarantee: T['io.flow.internal.v0.models.adaptive_shipping_order_guarantee'].isRequired,
|
|
25122
25489
|
});
|
|
25123
25490
|
|
|
25124
25491
|
T['io.flow.internal.v0.enums.item_quantity_action'] = PropTypes.oneOf(['fulfillment_ship', 'fulfillment_cancel', 'fulfillment_generate_label']);
|
|
@@ -25220,6 +25587,8 @@ T['io.flow.internal.v0.models.accounting_return_metadata'] = PropTypes.exact({
|
|
|
25220
25587
|
refund: T['io.flow.payment.v0.models.refund_reference'],
|
|
25221
25588
|
tax_reversal: T['io.flow.internal.v0.models.transaction_reference'],
|
|
25222
25589
|
duty_reversal: T['io.flow.internal.v0.models.transaction_reference'],
|
|
25590
|
+
flat_rate_reversal: T['io.flow.internal.v0.models.transaction_reference'],
|
|
25591
|
+
flat_rate_subsidy_reversal: T['io.flow.internal.v0.models.transaction_reference'],
|
|
25223
25592
|
});
|
|
25224
25593
|
|
|
25225
25594
|
T['io.flow.internal.v0.models.bank_account_reference'] = PropTypes.exact({
|
|
@@ -25260,6 +25629,13 @@ T['io.flow.token.v0.models.organization_token_v2_reference'] = PropTypes.exact({
|
|
|
25260
25629
|
organization: T['io.flow.common.v0.models.organization_reference'].isRequired,
|
|
25261
25630
|
});
|
|
25262
25631
|
|
|
25632
|
+
T['io.flow.channel.internal.v0.models.channel_order_tax_and_duty_inclusivity_setting'] = PropTypes.exact({
|
|
25633
|
+
organization: T['io.flow.common.v0.models.organization_reference'].isRequired,
|
|
25634
|
+
order_number: PropTypes.string.isRequired,
|
|
25635
|
+
channel: T['io.flow.common.v0.models.channel_reference'].isRequired,
|
|
25636
|
+
tax_and_duty_inclusivity_setting: T['io.flow.experience.v0.enums.tax_and_duty_inclusivity_setting'].isRequired,
|
|
25637
|
+
});
|
|
25638
|
+
|
|
25263
25639
|
T['io.flow.shopify.markets.internal.v0.models.channel_organization_identifier'] = PropTypes.exact({
|
|
25264
25640
|
id: PropTypes.string.isRequired,
|
|
25265
25641
|
organization: T['io.flow.common.v0.models.organization_reference'].isRequired,
|
|
@@ -25598,6 +25974,20 @@ T['io.flow.internal.v0.models.channel_organization_identifier_upserted'] = PropT
|
|
|
25598
25974
|
channel_organization_identifier: T['io.flow.internal.v0.models.channel_organization_identifier'].isRequired,
|
|
25599
25975
|
});
|
|
25600
25976
|
|
|
25977
|
+
T['io.flow.internal.v0.models.channel_order_tax_and_duty_inclusivity_setting'] = PropTypes.exact({
|
|
25978
|
+
organization: T['io.flow.common.v0.models.organization_reference'].isRequired,
|
|
25979
|
+
order_number: PropTypes.string.isRequired,
|
|
25980
|
+
channel: T['io.flow.common.v0.models.channel_reference'].isRequired,
|
|
25981
|
+
tax_and_duty_inclusivity_setting: T['io.flow.experience.v0.enums.tax_and_duty_inclusivity_setting'].isRequired,
|
|
25982
|
+
});
|
|
25983
|
+
|
|
25984
|
+
T['io.flow.internal.v0.models.channel_order_tax_and_duty_inclusivity_setting_upserted'] = PropTypes.exact({
|
|
25985
|
+
discriminator: PropTypes.oneOf(['channel_order_tax_and_duty_inclusivity_setting_upserted']).isRequired,
|
|
25986
|
+
event_id: PropTypes.string.isRequired,
|
|
25987
|
+
timestamp: PropTypes.string.isRequired,
|
|
25988
|
+
channel_order_tax_and_duty_inclusivity_setting: T['io.flow.internal.v0.models.channel_order_tax_and_duty_inclusivity_setting'].isRequired,
|
|
25989
|
+
});
|
|
25990
|
+
|
|
25601
25991
|
T['io.flow.internal.v0.models.channel_order_summary'] = PropTypes.exact({
|
|
25602
25992
|
id: PropTypes.string.isRequired,
|
|
25603
25993
|
organization: T['io.flow.common.v0.models.organization_reference'].isRequired,
|
|
@@ -25900,6 +26290,7 @@ T['io.flow.internal.v0.unions.task_metadata'] = PropTypes.oneOfType([
|
|
|
25900
26290
|
T['io.flow.internal.v0.models.channel_transaction_trigger_metadata'],
|
|
25901
26291
|
T['io.flow.internal.v0.models.b2b_fee_mor_tax_trigger_metadata'],
|
|
25902
26292
|
T['io.flow.internal.v0.models.b2b_fee_shipping_tax_trigger_metadata'],
|
|
26293
|
+
T['io.flow.internal.v0.models.remediate_tax_duty_metadata'],
|
|
25903
26294
|
]);
|
|
25904
26295
|
|
|
25905
26296
|
T['io.flow.common.v0.models.price'] = PropTypes.exact({
|
|
@@ -26531,6 +26922,8 @@ T['io.flow.label.v0.models.shipping_label'] = PropTypes.exact({
|
|
|
26531
26922
|
updated_at: PropTypes.string,
|
|
26532
26923
|
direction: T['io.flow.label.v0.enums.direction'],
|
|
26533
26924
|
shipping_cost_guarantee: T['io.flow.label.v0.enums.shipping_cost_guarantee'],
|
|
26925
|
+
delivery_window_days_from: PropTypes.number,
|
|
26926
|
+
delivery_window_days_to: PropTypes.number,
|
|
26534
26927
|
});
|
|
26535
26928
|
|
|
26536
26929
|
T['io.flow.label.v0.models.shipping_label_version'] = PropTypes.exact({
|
|
@@ -26587,6 +26980,7 @@ T['io.flow.internal.v0.models.restriction_product'] = PropTypes.exact({
|
|
|
26587
26980
|
hs_code: PropTypes.string,
|
|
26588
26981
|
hs_code_source: T['io.flow.internal.v0.enums.harmonization_decision_source'],
|
|
26589
26982
|
classification_scope: T['io.flow.internal.v0.enums.classification_scope'],
|
|
26983
|
+
classification_resource_id: PropTypes.string,
|
|
26590
26984
|
url: PropTypes.string,
|
|
26591
26985
|
reviews: PropTypes.arrayOf(T['io.flow.internal.v0.models.restriction_item_review']).isRequired,
|
|
26592
26986
|
created_at: PropTypes.string.isRequired,
|
|
@@ -26608,6 +27002,7 @@ T['io.flow.internal.v0.models.restriction_item'] = PropTypes.exact({
|
|
|
26608
27002
|
hs_code: PropTypes.string,
|
|
26609
27003
|
hs_code_source: T['io.flow.internal.v0.enums.harmonization_decision_source'],
|
|
26610
27004
|
classification_scope: T['io.flow.internal.v0.enums.classification_scope'],
|
|
27005
|
+
classification_resource_id: PropTypes.string,
|
|
26611
27006
|
description: PropTypes.string.isRequired,
|
|
26612
27007
|
category: PropTypes.string,
|
|
26613
27008
|
categories: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
@@ -26706,6 +27101,23 @@ T['io.flow.internal.v0.models.mahesh_item_upserted'] = PropTypes.exact({
|
|
|
26706
27101
|
item: T['io.flow.internal.v0.models.mahesh_item'].isRequired,
|
|
26707
27102
|
});
|
|
26708
27103
|
|
|
27104
|
+
T['io.flow.internal.v0.models.john_strong_item_form'] = PropTypes.exact({
|
|
27105
|
+
number: PropTypes.string.isRequired,
|
|
27106
|
+
amount: T['io.flow.common.v0.models.price'].isRequired,
|
|
27107
|
+
description: PropTypes.string,
|
|
27108
|
+
type: T['io.flow.internal.v0.enums.john_strong_item_type'].isRequired,
|
|
27109
|
+
added_on: PropTypes.string.isRequired,
|
|
27110
|
+
});
|
|
27111
|
+
|
|
27112
|
+
T['io.flow.internal.v0.models.john_strong_item'] = PropTypes.exact({
|
|
27113
|
+
id: PropTypes.string.isRequired,
|
|
27114
|
+
number: PropTypes.string.isRequired,
|
|
27115
|
+
amount: T['io.flow.common.v0.models.price'].isRequired,
|
|
27116
|
+
description: PropTypes.string,
|
|
27117
|
+
type: T['io.flow.internal.v0.enums.john_strong_item_type'].isRequired,
|
|
27118
|
+
added_on: PropTypes.string.isRequired,
|
|
27119
|
+
});
|
|
27120
|
+
|
|
26709
27121
|
T['io.flow.internal.v0.models.invoice_line'] = PropTypes.exact({
|
|
26710
27122
|
id: PropTypes.string.isRequired,
|
|
26711
27123
|
description: PropTypes.string.isRequired,
|
|
@@ -27098,16 +27510,29 @@ T['io.flow.experience.v0.models.allocation'] = PropTypes.exact({
|
|
|
27098
27510
|
details: PropTypes.arrayOf(T['io.flow.experience.v0.unions.allocation_detail']).isRequired,
|
|
27099
27511
|
});
|
|
27100
27512
|
|
|
27513
|
+
T['io.flow.order.price.v0.models.order_price_subsidy'] = PropTypes.exact({
|
|
27514
|
+
type: T['io.flow.order.price.v0.enums.order_price_subsidy_type'].isRequired,
|
|
27515
|
+
price: T['io.flow.common.v0.models.price_with_base'].isRequired,
|
|
27516
|
+
});
|
|
27517
|
+
|
|
27101
27518
|
T['io.flow.order.price.v0.models.order_price_fee'] = PropTypes.exact({
|
|
27102
27519
|
key: PropTypes.string.isRequired,
|
|
27103
27520
|
value: T['io.flow.common.v0.models.price_with_base'].isRequired,
|
|
27104
27521
|
type: T['io.flow.order.price.v0.enums.order_price_fee_type'].isRequired,
|
|
27105
27522
|
});
|
|
27106
27523
|
|
|
27524
|
+
T['io.flow.order.price.v0.models.order_price_coefficient'] = PropTypes.exact({
|
|
27525
|
+
type: T['io.flow.order.price.v0.enums.order_price_coefficient_type'].isRequired,
|
|
27526
|
+
value: PropTypes.number.isRequired,
|
|
27527
|
+
price: T['io.flow.common.v0.models.price_with_base'].isRequired,
|
|
27528
|
+
});
|
|
27529
|
+
|
|
27107
27530
|
T['io.flow.order.price.v0.models.purchase_price_breakdown'] = PropTypes.exact({
|
|
27108
27531
|
total_price: T['io.flow.common.v0.models.price_with_base'].isRequired,
|
|
27109
27532
|
product_price: T['io.flow.common.v0.models.price_with_base'].isRequired,
|
|
27110
27533
|
fees: PropTypes.arrayOf(T['io.flow.order.price.v0.models.order_price_fee']).isRequired,
|
|
27534
|
+
coefficients: PropTypes.arrayOf(T['io.flow.order.price.v0.models.order_price_coefficient']),
|
|
27535
|
+
subsidies: PropTypes.arrayOf(T['io.flow.order.price.v0.models.order_price_subsidy']),
|
|
27111
27536
|
});
|
|
27112
27537
|
|
|
27113
27538
|
T['io.flow.order.price.v0.models.order_price_detail_breakdown'] = PropTypes.exact({
|
|
@@ -27473,6 +27898,8 @@ T['io.flow.internal.v0.models.validated_shipping_data'] = PropTypes.exact({
|
|
|
27473
27898
|
direction: T['io.flow.label.v0.enums.direction'],
|
|
27474
27899
|
package_dimensions_source: T['io.flow.label.v0.enums.package_dimensions_source'].isRequired,
|
|
27475
27900
|
shipping_date_time: PropTypes.string,
|
|
27901
|
+
delivery_window_days_from: PropTypes.number,
|
|
27902
|
+
delivery_window_days_to: PropTypes.number,
|
|
27476
27903
|
});
|
|
27477
27904
|
|
|
27478
27905
|
T['io.flow.internal.v0.models.submitted_order_upserted'] = PropTypes.exact({
|
|
@@ -27509,6 +27936,7 @@ T['io.flow.internal.v0.models.order_refund_transaction'] = PropTypes.exact({
|
|
|
27509
27936
|
organization_id: PropTypes.string.isRequired,
|
|
27510
27937
|
order_number: PropTypes.string.isRequired,
|
|
27511
27938
|
price: T['io.flow.common.v0.models.price_with_base'].isRequired,
|
|
27939
|
+
refunded_at: PropTypes.string,
|
|
27512
27940
|
});
|
|
27513
27941
|
|
|
27514
27942
|
T['io.flow.internal.v0.models.order_refund_transaction_upserted'] = PropTypes.exact({
|
|
@@ -28825,12 +29253,6 @@ T['io.flow.internal.v0.models.fraud_review_authorization_decision_upserted'] = P
|
|
|
28825
29253
|
});
|
|
28826
29254
|
|
|
28827
29255
|
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
29256
|
T['io.flow.internal.v0.models.adyen_authorization_deleted'],
|
|
28835
29257
|
T['io.flow.internal.v0.models.adyen_authorization_upserted'],
|
|
28836
29258
|
T['io.flow.internal.v0.models.adyen_cancel_deleted'],
|
|
@@ -28841,6 +29263,10 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
|
|
|
28841
29263
|
T['io.flow.internal.v0.models.adyen_refund_upserted'],
|
|
28842
29264
|
T['io.flow.internal.v0.models.adyen_dispute_upserted'],
|
|
28843
29265
|
T['io.flow.internal.v0.models.adyen_dispute_deleted'],
|
|
29266
|
+
T['io.flow.internal.v0.models.ai_review_batch_submitted'],
|
|
29267
|
+
T['io.flow.internal.v0.models.ai_review_result_upserted'],
|
|
29268
|
+
T['io.flow.internal.v0.models.ai_review_result_deleted'],
|
|
29269
|
+
T['io.flow.internal.v0.models.ai_review_request_failed'],
|
|
28844
29270
|
T['io.flow.internal.v0.models.fulfillment_upserted'],
|
|
28845
29271
|
T['io.flow.internal.v0.models.fulfillment_deleted'],
|
|
28846
29272
|
T['io.flow.internal.v0.models.merchant_upserted'],
|
|
@@ -28917,6 +29343,8 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
|
|
|
28917
29343
|
T['io.flow.internal.v0.models.channel_order_acceptance_failed'],
|
|
28918
29344
|
T['io.flow.internal.v0.models.channel_shop_statistics_upserted'],
|
|
28919
29345
|
T['io.flow.internal.v0.models.channel_shop_statistics_deleted'],
|
|
29346
|
+
T['io.flow.internal.v0.models.channel_order_tax_and_duty_inclusivity_setting_upserted'],
|
|
29347
|
+
T['io.flow.internal.v0.models.channel_order_tax_and_duty_inclusivity_setting_deleted'],
|
|
28920
29348
|
T['io.flow.internal.v0.models.commercial_invoice_internal_upserted'],
|
|
28921
29349
|
T['io.flow.internal.v0.models.commercial_invoice_internal_deleted'],
|
|
28922
29350
|
T['io.flow.internal.v0.models.internal_channel_rate_deleted'],
|
|
@@ -28978,6 +29406,8 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
|
|
|
28978
29406
|
T['io.flow.internal.v0.models.mor_cost_deleted'],
|
|
28979
29407
|
T['io.flow.internal.v0.models.flat_rate_label_reversal_upserted'],
|
|
28980
29408
|
T['io.flow.internal.v0.models.flat_rate_label_reversal_deleted'],
|
|
29409
|
+
T['io.flow.internal.v0.models.flat_rate_label_subsidy_upserted'],
|
|
29410
|
+
T['io.flow.internal.v0.models.flat_rate_label_subsidy_deleted'],
|
|
28981
29411
|
T['io.flow.internal.v0.models.fraud_review_upserted'],
|
|
28982
29412
|
T['io.flow.internal.v0.models.fraud_review_deleted'],
|
|
28983
29413
|
T['io.flow.internal.v0.models.fraud_pending_review_upserted'],
|
|
@@ -29003,8 +29433,16 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
|
|
|
29003
29433
|
T['io.flow.internal.v0.models.fulfillment_fallbacks_deleted'],
|
|
29004
29434
|
T['io.flow.internal.v0.models.quote_upserted'],
|
|
29005
29435
|
T['io.flow.internal.v0.models.quote_deleted'],
|
|
29436
|
+
T['io.flow.internal.v0.models.guaranteed_shipping_calibrated_output_upserted'],
|
|
29437
|
+
T['io.flow.internal.v0.models.guaranteed_shipping_calibrated_output_deleted'],
|
|
29438
|
+
T['io.flow.internal.v0.models.outbound_shipping_cost_upserted'],
|
|
29439
|
+
T['io.flow.internal.v0.models.outbound_shipping_cost_deleted'],
|
|
29006
29440
|
T['io.flow.internal.v0.models.guaranteed_shipping_published_output_upserted'],
|
|
29007
29441
|
T['io.flow.internal.v0.models.guaranteed_shipping_published_output_deleted'],
|
|
29442
|
+
T['io.flow.internal.v0.models.guaranteed_shipping_settings_upserted'],
|
|
29443
|
+
T['io.flow.internal.v0.models.guaranteed_shipping_settings_deleted'],
|
|
29444
|
+
T['io.flow.internal.v0.models.guaranteed_shipping_settings_update_upserted'],
|
|
29445
|
+
T['io.flow.internal.v0.models.guaranteed_shipping_settings_update_deleted'],
|
|
29008
29446
|
T['io.flow.internal.v0.models.all_items_export'],
|
|
29009
29447
|
T['io.flow.internal.v0.models.harmonized_items_hs6_export'],
|
|
29010
29448
|
T['io.flow.internal.v0.models.unharmonized_items_export'],
|
|
@@ -29027,6 +29465,8 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
|
|
|
29027
29465
|
T['io.flow.internal.v0.models.merchant_override_upserted'],
|
|
29028
29466
|
T['io.flow.internal.v0.models.merchant_override_deleted'],
|
|
29029
29467
|
T['io.flow.internal.v0.models.harmonization_classification_statistics_published'],
|
|
29468
|
+
T['io.flow.internal.v0.models.issuer_upserted'],
|
|
29469
|
+
T['io.flow.internal.v0.models.issuer_deleted'],
|
|
29030
29470
|
T['io.flow.internal.v0.models.item_form_import_request'],
|
|
29031
29471
|
T['io.flow.internal.v0.models.label_request_error_upserted'],
|
|
29032
29472
|
T['io.flow.internal.v0.models.label_request_error_deleted'],
|
|
@@ -29137,6 +29577,10 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
|
|
|
29137
29577
|
T['io.flow.internal.v0.models.taxonomy_category_hs6_ref_deleted'],
|
|
29138
29578
|
T['io.flow.internal.v0.models.preonboarding_merchant_upserted'],
|
|
29139
29579
|
T['io.flow.internal.v0.models.preonboarding_merchant_deleted'],
|
|
29580
|
+
T['io.flow.internal.v0.models.unserviceable_taxonomy_category_upserted'],
|
|
29581
|
+
T['io.flow.internal.v0.models.unserviceable_taxonomy_category_deleted'],
|
|
29582
|
+
T['io.flow.internal.v0.models.sellability_pending_verification_upserted'],
|
|
29583
|
+
T['io.flow.internal.v0.models.sellability_pending_verification_deleted'],
|
|
29140
29584
|
T['io.flow.internal.v0.models.shopify_hs10_codes_upserted'],
|
|
29141
29585
|
T['io.flow.internal.v0.models.shopify_hs10_codes_deleted'],
|
|
29142
29586
|
T['io.flow.internal.v0.models.shopify_markets_order_upserted'],
|
|
@@ -29406,12 +29850,6 @@ T['io.flow.internal.v0.enums.duty_exempt_item_types'] = PropTypes.oneOf(['gift_c
|
|
|
29406
29850
|
T['io.flow.internal.v0.enums.duty_transaction_type'] = PropTypes.oneOf(['adjustment', 'reversal', 'duty', 'refund']);
|
|
29407
29851
|
|
|
29408
29852
|
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
29853
|
'adyen_authorization_deleted',
|
|
29416
29854
|
'adyen_authorization_upserted',
|
|
29417
29855
|
'adyen_cancel_deleted',
|
|
@@ -29422,6 +29860,10 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
|
|
|
29422
29860
|
'adyen_refund_upserted',
|
|
29423
29861
|
'adyen_dispute_upserted',
|
|
29424
29862
|
'adyen_dispute_deleted',
|
|
29863
|
+
'ai_review_batch_submitted',
|
|
29864
|
+
'ai_review_result_upserted',
|
|
29865
|
+
'ai_review_result_deleted',
|
|
29866
|
+
'ai_review_request_failed',
|
|
29425
29867
|
'fulfillment_upserted',
|
|
29426
29868
|
'fulfillment_deleted',
|
|
29427
29869
|
'merchant_upserted',
|
|
@@ -29498,6 +29940,8 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
|
|
|
29498
29940
|
'channel_order_acceptance_failed',
|
|
29499
29941
|
'channel_shop_statistics_upserted',
|
|
29500
29942
|
'channel_shop_statistics_deleted',
|
|
29943
|
+
'channel_order_tax_and_duty_inclusivity_setting_upserted',
|
|
29944
|
+
'channel_order_tax_and_duty_inclusivity_setting_deleted',
|
|
29501
29945
|
'commercial_invoice_internal_upserted',
|
|
29502
29946
|
'commercial_invoice_internal_deleted',
|
|
29503
29947
|
'internal_channel_rate_deleted',
|
|
@@ -29559,6 +30003,8 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
|
|
|
29559
30003
|
'mor_cost_deleted',
|
|
29560
30004
|
'flat_rate_label_reversal_upserted',
|
|
29561
30005
|
'flat_rate_label_reversal_deleted',
|
|
30006
|
+
'flat_rate_label_subsidy_upserted',
|
|
30007
|
+
'flat_rate_label_subsidy_deleted',
|
|
29562
30008
|
'fraud_review_upserted',
|
|
29563
30009
|
'fraud_review_deleted',
|
|
29564
30010
|
'fraud_pending_review_upserted',
|
|
@@ -29584,8 +30030,16 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
|
|
|
29584
30030
|
'fulfillment_fallbacks_deleted',
|
|
29585
30031
|
'quote_upserted',
|
|
29586
30032
|
'quote_deleted',
|
|
30033
|
+
'guaranteed_shipping_calibrated_output_upserted',
|
|
30034
|
+
'guaranteed_shipping_calibrated_output_deleted',
|
|
30035
|
+
'outbound_shipping_cost_upserted',
|
|
30036
|
+
'outbound_shipping_cost_deleted',
|
|
29587
30037
|
'guaranteed_shipping_published_output_upserted',
|
|
29588
30038
|
'guaranteed_shipping_published_output_deleted',
|
|
30039
|
+
'guaranteed_shipping_settings_upserted',
|
|
30040
|
+
'guaranteed_shipping_settings_deleted',
|
|
30041
|
+
'guaranteed_shipping_settings_update_upserted',
|
|
30042
|
+
'guaranteed_shipping_settings_update_deleted',
|
|
29589
30043
|
'all_items_export',
|
|
29590
30044
|
'harmonized_items_hs6_export',
|
|
29591
30045
|
'unharmonized_items_export',
|
|
@@ -29608,6 +30062,8 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
|
|
|
29608
30062
|
'merchant_override_upserted',
|
|
29609
30063
|
'merchant_override_deleted',
|
|
29610
30064
|
'harmonization_classification_statistics_published',
|
|
30065
|
+
'issuer_upserted',
|
|
30066
|
+
'issuer_deleted',
|
|
29611
30067
|
'item_form_import_request',
|
|
29612
30068
|
'label_request_error_upserted',
|
|
29613
30069
|
'label_request_error_deleted',
|
|
@@ -29718,6 +30174,10 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
|
|
|
29718
30174
|
'taxonomy_category_hs6_ref_deleted',
|
|
29719
30175
|
'preonboarding_merchant_upserted',
|
|
29720
30176
|
'preonboarding_merchant_deleted',
|
|
30177
|
+
'unserviceable_taxonomy_category_upserted',
|
|
30178
|
+
'unserviceable_taxonomy_category_deleted',
|
|
30179
|
+
'sellability_pending_verification_upserted',
|
|
30180
|
+
'sellability_pending_verification_deleted',
|
|
29721
30181
|
'shopify_hs10_codes_upserted',
|
|
29722
30182
|
'shopify_hs10_codes_deleted',
|
|
29723
30183
|
'shopify_markets_order_upserted',
|
|
@@ -30370,6 +30830,12 @@ T['io.flow.internal.v0.models.google_shopping_setting'] = PropTypes.exact({
|
|
|
30370
30830
|
created_by_email: PropTypes.string.isRequired,
|
|
30371
30831
|
});
|
|
30372
30832
|
|
|
30833
|
+
T['io.flow.internal.v0.models.guaranteed_shipping_calibration'] = PropTypes.exact({
|
|
30834
|
+
channel_id: PropTypes.string.isRequired,
|
|
30835
|
+
organization_id: PropTypes.string.isRequired,
|
|
30836
|
+
destination_country: PropTypes.string.isRequired,
|
|
30837
|
+
});
|
|
30838
|
+
|
|
30373
30839
|
T['io.flow.internal.v0.models.harmonization_threshold'] = PropTypes.exact({
|
|
30374
30840
|
id: PropTypes.string.isRequired,
|
|
30375
30841
|
chapter: PropTypes.number.isRequired,
|
|
@@ -32189,20 +32655,10 @@ export const accountUpsertedV2 = T['io.flow.internal.v0.models.account_upserted_
|
|
|
32189
32655
|
export const accountingPendingOrderMetadata = T['io.flow.internal.v0.models.accounting_pending_order_metadata'];
|
|
32190
32656
|
export const accountingReturnMetadata = T['io.flow.internal.v0.models.accounting_return_metadata'];
|
|
32191
32657
|
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
32658
|
export const adaptiveShippingOrderGuarantee = T['io.flow.internal.v0.models.adaptive_shipping_order_guarantee'];
|
|
32200
32659
|
export const adaptiveShippingOrderGuaranteeDeleted = T['io.flow.internal.v0.models.adaptive_shipping_order_guarantee_deleted'];
|
|
32201
32660
|
export const adaptiveShippingOrderGuaranteeState = T['io.flow.internal.v0.enums.adaptive_shipping_order_guarantee_state'];
|
|
32202
32661
|
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
32662
|
export const additionalImportTax = T['io.flow.internal.v0.models.additional_import_tax'];
|
|
32207
32663
|
export const adjustmentAmount = T['io.flow.internal.v0.unions.adjustment_amount'];
|
|
32208
32664
|
export const adjustmentAmountFixed = T['io.flow.internal.v0.models.adjustment_amount_fixed'];
|
|
@@ -32260,6 +32716,17 @@ export const afterpayRefund = T['io.flow.internal.v0.models.afterpay_refund'];
|
|
|
32260
32716
|
export const afterpayRefundDeleted = T['io.flow.internal.v0.models.afterpay_refund_deleted'];
|
|
32261
32717
|
export const afterpayRefundUpserted = T['io.flow.internal.v0.models.afterpay_refund_upserted'];
|
|
32262
32718
|
export const aftershipWebhook = T['io.flow.internal.v0.models.aftership_webhook'];
|
|
32719
|
+
export const aiOutput = T['io.flow.internal.v0.unions.ai_output'];
|
|
32720
|
+
export const aiReviewBatchSubmitted = T['io.flow.internal.v0.models.ai_review_batch_submitted'];
|
|
32721
|
+
export const aiReviewConsumer = T['io.flow.internal.v0.enums.ai_review_consumer'];
|
|
32722
|
+
export const aiReviewContext = T['io.flow.internal.v0.unions.ai_review_context'];
|
|
32723
|
+
export const aiReviewFailedItem = T['io.flow.internal.v0.models.ai_review_failed_item'];
|
|
32724
|
+
export const aiReviewFailureReason = T['io.flow.internal.v0.enums.ai_review_failure_reason'];
|
|
32725
|
+
export const aiReviewRequestFailed = T['io.flow.internal.v0.models.ai_review_request_failed'];
|
|
32726
|
+
export const aiReviewResult = T['io.flow.internal.v0.models.ai_review_result'];
|
|
32727
|
+
export const aiReviewResultDeleted = T['io.flow.internal.v0.models.ai_review_result_deleted'];
|
|
32728
|
+
export const aiReviewResultUpserted = T['io.flow.internal.v0.models.ai_review_result_upserted'];
|
|
32729
|
+
export const aiReviewType = T['io.flow.internal.v0.enums.ai_review_type'];
|
|
32263
32730
|
export const allItemsExport = T['io.flow.internal.v0.models.all_items_export'];
|
|
32264
32731
|
export const allocationItemReference = T['io.flow.internal.v0.models.allocation_item_reference'];
|
|
32265
32732
|
export const allowedLabels = T['io.flow.internal.v0.models.allowed_labels'];
|
|
@@ -32479,6 +32946,9 @@ export const channelOrderSummary = T['io.flow.internal.v0.models.channel_order_s
|
|
|
32479
32946
|
export const channelOrderSummaryDeleted = T['io.flow.internal.v0.models.channel_order_summary_deleted'];
|
|
32480
32947
|
export const channelOrderSummaryFulfillmentDetails = T['io.flow.internal.v0.models.channel_order_summary_fulfillment_details'];
|
|
32481
32948
|
export const channelOrderSummaryUpserted = T['io.flow.internal.v0.models.channel_order_summary_upserted'];
|
|
32949
|
+
export const channelOrderTaxAndDutyInclusivitySetting = T['io.flow.internal.v0.models.channel_order_tax_and_duty_inclusivity_setting'];
|
|
32950
|
+
export const channelOrderTaxAndDutyInclusivitySettingDeleted = T['io.flow.internal.v0.models.channel_order_tax_and_duty_inclusivity_setting_deleted'];
|
|
32951
|
+
export const channelOrderTaxAndDutyInclusivitySettingUpserted = T['io.flow.internal.v0.models.channel_order_tax_and_duty_inclusivity_setting_upserted'];
|
|
32482
32952
|
export const channelOrganizationDomains = T['io.flow.internal.v0.models.channel_organization_domains'];
|
|
32483
32953
|
export const channelOrganizationIdentifier = T['io.flow.internal.v0.models.channel_organization_identifier'];
|
|
32484
32954
|
export const channelOrganizationIdentifierDeleted = T['io.flow.internal.v0.models.channel_organization_identifier_deleted'];
|
|
@@ -32676,6 +33146,9 @@ export const deliveredDutyPreferenceForm = T['io.flow.internal.v0.models.deliver
|
|
|
32676
33146
|
export const deminimisAdjustmentType = T['io.flow.internal.v0.enums.deminimis_adjustment_type'];
|
|
32677
33147
|
export const destinationDutyComparison = T['io.flow.internal.v0.models.destination_duty_comparison'];
|
|
32678
33148
|
export const destinationError = T['io.flow.internal.v0.models.destination_error'];
|
|
33149
|
+
export const dgClassAssessment = T['io.flow.internal.v0.models.dg_class_assessment'];
|
|
33150
|
+
export const dgReviewContext = T['io.flow.internal.v0.models.dg_review_context'];
|
|
33151
|
+
export const dgReviewOutput = T['io.flow.internal.v0.models.dg_review_output'];
|
|
32679
33152
|
export const dhl = T['io.flow.internal.v0.models.dhl'];
|
|
32680
33153
|
export const dhlEcommerce = T['io.flow.internal.v0.models.dhl_ecommerce'];
|
|
32681
33154
|
export const dimensionEstimateOpsInput = T['io.flow.internal.v0.models.dimension_estimate_ops_input'];
|
|
@@ -32794,6 +33267,7 @@ export const externalFulfillmentProof = T['io.flow.internal.v0.models.external_f
|
|
|
32794
33267
|
export const externalFulfillmentProofForm = T['io.flow.internal.v0.models.external_fulfillment_proof_form'];
|
|
32795
33268
|
export const externalFulfillmentProofTracking = T['io.flow.internal.v0.models.external_fulfillment_proof_tracking'];
|
|
32796
33269
|
export const externalFulfillmentProofTrackingForm = T['io.flow.internal.v0.models.external_fulfillment_proof_tracking_form'];
|
|
33270
|
+
export const externalOrderSummary = T['io.flow.internal.v0.models.external_order_summary'];
|
|
32797
33271
|
export const externalRatecardLink = T['io.flow.internal.v0.models.external_ratecard_link'];
|
|
32798
33272
|
export const externalRatecardLinkResponse = T['io.flow.internal.v0.models.external_ratecard_link_response'];
|
|
32799
33273
|
export const facebookPixel = T['io.flow.internal.v0.models.facebook_pixel'];
|
|
@@ -32845,6 +33319,9 @@ export const flatRateLabelGuaranteeStatus = T['io.flow.internal.v0.enums.flat_ra
|
|
|
32845
33319
|
export const flatRateLabelReversal = T['io.flow.internal.v0.models.flat_rate_label_reversal'];
|
|
32846
33320
|
export const flatRateLabelReversalDeleted = T['io.flow.internal.v0.models.flat_rate_label_reversal_deleted'];
|
|
32847
33321
|
export const flatRateLabelReversalUpserted = T['io.flow.internal.v0.models.flat_rate_label_reversal_upserted'];
|
|
33322
|
+
export const flatRateLabelSubsidy = T['io.flow.internal.v0.models.flat_rate_label_subsidy'];
|
|
33323
|
+
export const flatRateLabelSubsidyDeleted = T['io.flow.internal.v0.models.flat_rate_label_subsidy_deleted'];
|
|
33324
|
+
export const flatRateLabelSubsidyUpserted = T['io.flow.internal.v0.models.flat_rate_label_subsidy_upserted'];
|
|
32848
33325
|
export const flatRateLabelTransaction = T['io.flow.internal.v0.models.flat_rate_label_transaction'];
|
|
32849
33326
|
export const flatRateLabelTransactionType = T['io.flow.internal.v0.enums.flat_rate_label_transaction_type'];
|
|
32850
33327
|
export const flexeWebhook = T['io.flow.internal.v0.models.flexe_webhook'];
|
|
@@ -32951,9 +33428,22 @@ export const googleShoppingAccountParameters = T['io.flow.internal.v0.models.goo
|
|
|
32951
33428
|
export const googleShoppingSetting = T['io.flow.internal.v0.models.google_shopping_setting'];
|
|
32952
33429
|
export const googleTagManager = T['io.flow.internal.v0.models.google_tag_manager'];
|
|
32953
33430
|
export const graphqlServiceTypes = T['io.flow.internal.v0.enums.graphql_service_types'];
|
|
33431
|
+
export const guaranteedShippingCalibratedOutput = T['io.flow.internal.v0.models.guaranteed_shipping_calibrated_output'];
|
|
33432
|
+
export const guaranteedShippingCalibratedOutputDeleted = T['io.flow.internal.v0.models.guaranteed_shipping_calibrated_output_deleted'];
|
|
33433
|
+
export const guaranteedShippingCalibratedOutputUpserted = T['io.flow.internal.v0.models.guaranteed_shipping_calibrated_output_upserted'];
|
|
33434
|
+
export const guaranteedShippingCalibration = T['io.flow.internal.v0.models.guaranteed_shipping_calibration'];
|
|
33435
|
+
export const guaranteedShippingCalibrationForm = T['io.flow.internal.v0.models.guaranteed_shipping_calibration_form'];
|
|
33436
|
+
export const guaranteedShippingCalibrationLaneForm = T['io.flow.internal.v0.models.guaranteed_shipping_calibration_lane_form'];
|
|
32954
33437
|
export const guaranteedShippingPublishedOutput = T['io.flow.internal.v0.models.guaranteed_shipping_published_output'];
|
|
32955
33438
|
export const guaranteedShippingPublishedOutputDeleted = T['io.flow.internal.v0.models.guaranteed_shipping_published_output_deleted'];
|
|
32956
33439
|
export const guaranteedShippingPublishedOutputUpserted = T['io.flow.internal.v0.models.guaranteed_shipping_published_output_upserted'];
|
|
33440
|
+
export const guaranteedShippingSettings = T['io.flow.internal.v0.models.guaranteed_shipping_settings'];
|
|
33441
|
+
export const guaranteedShippingSettingsDeleted = T['io.flow.internal.v0.models.guaranteed_shipping_settings_deleted'];
|
|
33442
|
+
export const guaranteedShippingSettingsDestinationUpdate = T['io.flow.internal.v0.models.guaranteed_shipping_settings_destination_update'];
|
|
33443
|
+
export const guaranteedShippingSettingsUpdate = T['io.flow.internal.v0.models.guaranteed_shipping_settings_update'];
|
|
33444
|
+
export const guaranteedShippingSettingsUpdateDeleted = T['io.flow.internal.v0.models.guaranteed_shipping_settings_update_deleted'];
|
|
33445
|
+
export const guaranteedShippingSettingsUpdateUpserted = T['io.flow.internal.v0.models.guaranteed_shipping_settings_update_upserted'];
|
|
33446
|
+
export const guaranteedShippingSettingsUpserted = T['io.flow.internal.v0.models.guaranteed_shipping_settings_upserted'];
|
|
32957
33447
|
export const harmonizationClassificationStatisticsData = T['io.flow.internal.v0.models.harmonization_classification_statistics_data'];
|
|
32958
33448
|
export const harmonizationClassificationStatisticsPublished = T['io.flow.internal.v0.models.harmonization_classification_statistics_published'];
|
|
32959
33449
|
export const harmonizationCodesImport = T['io.flow.internal.v0.models.harmonization_codes_import'];
|
|
@@ -33010,6 +33500,9 @@ export const invoiceInfoForm = T['io.flow.internal.v0.models.invoice_info_form']
|
|
|
33010
33500
|
export const invoiceLine = T['io.flow.internal.v0.models.invoice_line'];
|
|
33011
33501
|
export const invoiceLineItem = T['io.flow.internal.v0.models.invoice_line_item'];
|
|
33012
33502
|
export const invoiceTransaction = T['io.flow.internal.v0.models.invoice_transaction'];
|
|
33503
|
+
export const issuer = T['io.flow.internal.v0.models.issuer'];
|
|
33504
|
+
export const issuerDeleted = T['io.flow.internal.v0.models.issuer_deleted'];
|
|
33505
|
+
export const issuerUpserted = T['io.flow.internal.v0.models.issuer_upserted'];
|
|
33013
33506
|
export const itemClassification = T['io.flow.internal.v0.models.item_classification'];
|
|
33014
33507
|
export const itemClassificationAction = T['io.flow.internal.v0.enums.item_classification_action'];
|
|
33015
33508
|
export const itemClassificationForm = T['io.flow.internal.v0.models.item_classification_form'];
|
|
@@ -33026,6 +33519,11 @@ export const itemHarmonization = T['io.flow.internal.v0.models.item_harmonizatio
|
|
|
33026
33519
|
export const itemHarmonizationDeleted = T['io.flow.internal.v0.models.item_harmonization_deleted'];
|
|
33027
33520
|
export const itemHarmonizationStatus = T['io.flow.internal.v0.enums.item_harmonization_status'];
|
|
33028
33521
|
export const itemHarmonizationUpserted = T['io.flow.internal.v0.models.item_harmonization_upserted'];
|
|
33522
|
+
export const itemHs6Override = T['io.flow.internal.v0.models.item_hs6_override'];
|
|
33523
|
+
export const itemHs6OverrideForm = T['io.flow.internal.v0.models.item_hs6_override_form'];
|
|
33524
|
+
export const itemHs6OverrideRejection = T['io.flow.internal.v0.models.item_hs6_override_rejection'];
|
|
33525
|
+
export const itemHs6OverrideResult = T['io.flow.internal.v0.models.item_hs6_override_result'];
|
|
33526
|
+
export const itemHs6OverridesForm = T['io.flow.internal.v0.models.item_hs6_overrides_form'];
|
|
33029
33527
|
export const itemQuantityAction = T['io.flow.internal.v0.enums.item_quantity_action'];
|
|
33030
33528
|
export const itemQueryResponse = T['io.flow.internal.v0.models.item_query_response'];
|
|
33031
33529
|
export const itemRestriction = T['io.flow.internal.v0.models.item_restriction'];
|
|
@@ -33041,6 +33539,9 @@ export const itemSalesMarginVersion = T['io.flow.internal.v0.models.item_sales_m
|
|
|
33041
33539
|
export const itemSummary = T['io.flow.internal.v0.models.item_summary'];
|
|
33042
33540
|
export const itemType = T['io.flow.internal.v0.enums.item_type'];
|
|
33043
33541
|
export const itemValuesForm = T['io.flow.internal.v0.models.item_values_form'];
|
|
33542
|
+
export const johnStrongItem = T['io.flow.internal.v0.models.john_strong_item'];
|
|
33543
|
+
export const johnStrongItemForm = T['io.flow.internal.v0.models.john_strong_item_form'];
|
|
33544
|
+
export const johnStrongItemType = T['io.flow.internal.v0.enums.john_strong_item_type'];
|
|
33044
33545
|
export const journal = T['io.flow.internal.v0.models.journal'];
|
|
33045
33546
|
export const journalFailure = T['io.flow.internal.v0.models.journal_failure'];
|
|
33046
33547
|
export const journalOperation = T['io.flow.internal.v0.enums.journal_operation'];
|
|
@@ -33245,6 +33746,7 @@ export const orderRevenueRegionDataPoint = T['io.flow.internal.v0.models.order_r
|
|
|
33245
33746
|
export const orderRevenueTimelineChart = T['io.flow.internal.v0.models.order_revenue_timeline_chart'];
|
|
33246
33747
|
export const orderRevenueTimelineDataPoint = T['io.flow.internal.v0.models.order_revenue_timeline_data_point'];
|
|
33247
33748
|
export const orderServiceChangeCsvForm = T['io.flow.internal.v0.models.order_service_change_csv_form'];
|
|
33749
|
+
export const orderSettings = T['io.flow.internal.v0.models.order_settings'];
|
|
33248
33750
|
export const orderSummary = T['io.flow.internal.v0.models.order_summary'];
|
|
33249
33751
|
export const orderTaxAndDutyInclusivitySetting = T['io.flow.internal.v0.models.order_tax_and_duty_inclusivity_setting'];
|
|
33250
33752
|
export const orderTaxAndDutyInclusivitySettingDeleted = T['io.flow.internal.v0.models.order_tax_and_duty_inclusivity_setting_deleted'];
|
|
@@ -33339,6 +33841,9 @@ export const otherRecordOrderSummaryIdentifiers = T['io.flow.internal.v0.models.
|
|
|
33339
33841
|
export const otherRecordOrganizationSummary = T['io.flow.internal.v0.models.other_record_organization_summary'];
|
|
33340
33842
|
export const otherRecordUpserted = T['io.flow.internal.v0.models.other_record_upserted'];
|
|
33341
33843
|
export const otherRecordWithholdings = T['io.flow.internal.v0.models.other_record_withholdings'];
|
|
33844
|
+
export const outboundShippingCost = T['io.flow.internal.v0.models.outbound_shipping_cost'];
|
|
33845
|
+
export const outboundShippingCostDeleted = T['io.flow.internal.v0.models.outbound_shipping_cost_deleted'];
|
|
33846
|
+
export const outboundShippingCostUpserted = T['io.flow.internal.v0.models.outbound_shipping_cost_upserted'];
|
|
33342
33847
|
export const outputStyle = T['io.flow.internal.v0.enums.output_style'];
|
|
33343
33848
|
export const owner = T['io.flow.internal.v0.enums.owner'];
|
|
33344
33849
|
export const partner = T['io.flow.internal.v0.models.partner'];
|
|
@@ -33406,6 +33911,8 @@ export const paypalPaymentDeleted = T['io.flow.internal.v0.models.paypal_payment
|
|
|
33406
33911
|
export const paypalPaymentUpserted = T['io.flow.internal.v0.models.paypal_payment_upserted'];
|
|
33407
33912
|
export const paypalRefundDeleted = T['io.flow.internal.v0.models.paypal_refund_deleted'];
|
|
33408
33913
|
export const paypalRefundUpserted = T['io.flow.internal.v0.models.paypal_refund_upserted'];
|
|
33914
|
+
export const pcReviewContext = T['io.flow.internal.v0.models.pc_review_context'];
|
|
33915
|
+
export const pcReviewOutput = T['io.flow.internal.v0.models.pc_review_output'];
|
|
33409
33916
|
export const pendingBankPayment = T['io.flow.internal.v0.models.pending_bank_payment'];
|
|
33410
33917
|
export const pendingBankPaymentDetail = T['io.flow.internal.v0.models.pending_bank_payment_detail'];
|
|
33411
33918
|
export const pendingOrder = T['io.flow.internal.v0.models.pending_order'];
|
|
@@ -33503,6 +34010,9 @@ export const pspRoutingDistributionRevision = T['io.flow.internal.v0.models.psp_
|
|
|
33503
34010
|
export const pspRoutingDistributionRevisionForm = T['io.flow.internal.v0.models.psp_routing_distribution_revision_form'];
|
|
33504
34011
|
export const publicHub = T['io.flow.internal.v0.models.public_hub'];
|
|
33505
34012
|
export const publicHubForm = T['io.flow.internal.v0.models.public_hub_form'];
|
|
34013
|
+
export const pvDecision = T['io.flow.internal.v0.enums.pv_decision'];
|
|
34014
|
+
export const pvReviewContext = T['io.flow.internal.v0.models.pv_review_context'];
|
|
34015
|
+
export const pvReviewOutput = T['io.flow.internal.v0.models.pv_review_output'];
|
|
33506
34016
|
export const quote = T['io.flow.internal.v0.models.quote'];
|
|
33507
34017
|
export const quoteDeleted = T['io.flow.internal.v0.models.quote_deleted'];
|
|
33508
34018
|
export const quoteUpserted = T['io.flow.internal.v0.models.quote_upserted'];
|
|
@@ -33561,6 +34071,8 @@ export const redirectReason = T['io.flow.internal.v0.enums.redirect_reason'];
|
|
|
33561
34071
|
export const registeredExporterTariffEligibilityData = T['io.flow.internal.v0.models.registered_exporter_tariff_eligibility_data'];
|
|
33562
34072
|
export const registeredExporterTariffEligibilityForm = T['io.flow.internal.v0.models.registered_exporter_tariff_eligibility_form'];
|
|
33563
34073
|
export const rejectionReason = T['io.flow.internal.v0.enums.rejection_reason'];
|
|
34074
|
+
export const remediateTaxDutyArm = T['io.flow.internal.v0.enums.remediate_tax_duty_arm'];
|
|
34075
|
+
export const remediateTaxDutyMetadata = T['io.flow.internal.v0.models.remediate_tax_duty_metadata'];
|
|
33564
34076
|
export const remittanceResponsibility = T['io.flow.internal.v0.models.remittance_responsibility'];
|
|
33565
34077
|
export const report = T['io.flow.internal.v0.models.report'];
|
|
33566
34078
|
export const reportAccount = T['io.flow.internal.v0.models.report_account'];
|
|
@@ -33669,6 +34181,7 @@ export const restrictionRuleEffect = T['io.flow.internal.v0.models.restriction_r
|
|
|
33669
34181
|
export const restrictionRuleEffectDeleted = T['io.flow.internal.v0.models.restriction_rule_effect_deleted'];
|
|
33670
34182
|
export const restrictionRuleEffectForm = T['io.flow.internal.v0.models.restriction_rule_effect_form'];
|
|
33671
34183
|
export const restrictionRuleEffectUpserted = T['io.flow.internal.v0.models.restriction_rule_effect_upserted'];
|
|
34184
|
+
export const restrictionRuleEvaluationMode = T['io.flow.internal.v0.enums.restriction_rule_evaluation_mode'];
|
|
33672
34185
|
export const restrictionRuleExceptionAction = T['io.flow.internal.v0.enums.restriction_rule_exception_action'];
|
|
33673
34186
|
export const restrictionRuleForm = T['io.flow.internal.v0.models.restriction_rule_form'];
|
|
33674
34187
|
export const restrictionRuleLaneExemption = T['io.flow.internal.v0.models.restriction_rule_lane_exemption'];
|
|
@@ -33707,6 +34220,7 @@ export const revenueRecord = T['io.flow.internal.v0.models.revenue_record'];
|
|
|
33707
34220
|
export const revenueRecordDeleted = T['io.flow.internal.v0.models.revenue_record_deleted'];
|
|
33708
34221
|
export const revenueRecordType = T['io.flow.internal.v0.enums.revenue_record_type'];
|
|
33709
34222
|
export const revenueRecordUpserted = T['io.flow.internal.v0.models.revenue_record_upserted'];
|
|
34223
|
+
export const reviewRequestItem = T['io.flow.internal.v0.models.review_request_item'];
|
|
33710
34224
|
export const riskCheck = T['io.flow.internal.v0.enums.risk_check'];
|
|
33711
34225
|
export const riskEvaluation = T['io.flow.internal.v0.enums.risk_evaluation'];
|
|
33712
34226
|
export const routingAccount = T['io.flow.internal.v0.models.routing_account'];
|
|
@@ -33734,6 +34248,9 @@ export const searchTrackingSummary = T['io.flow.internal.v0.models.search_tracki
|
|
|
33734
34248
|
export const sellabilityCheckResult = T['io.flow.internal.v0.models.sellability_check_result'];
|
|
33735
34249
|
export const sellabilityCheckStatus = T['io.flow.internal.v0.enums.sellability_check_status'];
|
|
33736
34250
|
export const sellabilityInternalMatchType = T['io.flow.internal.v0.enums.sellability_internal_match_type'];
|
|
34251
|
+
export const sellabilityPendingVerification = T['io.flow.internal.v0.models.sellability_pending_verification'];
|
|
34252
|
+
export const sellabilityPendingVerificationDeleted = T['io.flow.internal.v0.models.sellability_pending_verification_deleted'];
|
|
34253
|
+
export const sellabilityPendingVerificationUpserted = T['io.flow.internal.v0.models.sellability_pending_verification_upserted'];
|
|
33737
34254
|
export const sellabilityStatus = T['io.flow.internal.v0.enums.sellability_status'];
|
|
33738
34255
|
export const serviceFees = T['io.flow.internal.v0.models.service_fees'];
|
|
33739
34256
|
export const serviceFeesForm = T['io.flow.internal.v0.models.service_fees_form'];
|
|
@@ -34092,6 +34609,9 @@ export const unclassifiedProductsPurgeRequest = T['io.flow.internal.v0.models.un
|
|
|
34092
34609
|
export const unclassifiedProductsSummary = T['io.flow.internal.v0.models.unclassified_products_summary'];
|
|
34093
34610
|
export const unharmonizedItemsExport = T['io.flow.internal.v0.models.unharmonized_items_export'];
|
|
34094
34611
|
export const unphrasedProductsExport = T['io.flow.internal.v0.models.unphrased_products_export'];
|
|
34612
|
+
export const unserviceableTaxonomyCategory = T['io.flow.internal.v0.models.unserviceable_taxonomy_category'];
|
|
34613
|
+
export const unserviceableTaxonomyCategoryDeleted = T['io.flow.internal.v0.models.unserviceable_taxonomy_category_deleted'];
|
|
34614
|
+
export const unserviceableTaxonomyCategoryUpserted = T['io.flow.internal.v0.models.unserviceable_taxonomy_category_upserted'];
|
|
34095
34615
|
export const ups = T['io.flow.internal.v0.models.ups'];
|
|
34096
34616
|
export const usdSpotRate = T['io.flow.internal.v0.models.usd_spot_rate'];
|
|
34097
34617
|
export const usdSpotRateDeleted = T['io.flow.internal.v0.models.usd_spot_rate_deleted'];
|