@flowio/api-prop-types 10.16.110 → 10.16.112
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/api.d.ts +235 -26
- package/lib/api.js +1 -1
- package/package.json +2 -3
- package/src/api.d.ts +235 -26
- package/src/api.js +285 -47
package/src/api.js
CHANGED
|
@@ -29,6 +29,7 @@ T['io.flow.product.v0.models.product_taxonomy_data'] = PropTypes.exact({
|
|
|
29
29
|
value_obj: PropTypes.arrayOf(T['io.flow.product.v0.models.product_taxonomy_value']),
|
|
30
30
|
});
|
|
31
31
|
|
|
32
|
+
T['io.flow.tech.onboarding.playground.v0.enums.gabriel_item_type'] = PropTypes.oneOf(['physical', 'digital']);
|
|
32
33
|
T['io.flow.apple.pay.v0.enums.apple_pay_line_item_type'] = PropTypes.oneOf(['final', 'pending']);
|
|
33
34
|
T['io.flow.channel.shopify.v0.enums.channel_shopify_order_state_reason_code'] = PropTypes.oneOf(['placeholder_reason_code']);
|
|
34
35
|
|
|
@@ -98,19 +99,6 @@ T['io.flow.common.v0.unions.repeat_schedule'] = PropTypes.oneOfType([
|
|
|
98
99
|
T['io.flow.common.v0.models.repeat_monthly'],
|
|
99
100
|
]);
|
|
100
101
|
|
|
101
|
-
T['io.flow.common.v0.models.price'] = PropTypes.exact({
|
|
102
|
-
amount: PropTypes.number.isRequired,
|
|
103
|
-
currency: PropTypes.string.isRequired,
|
|
104
|
-
label: PropTypes.string.isRequired,
|
|
105
|
-
});
|
|
106
|
-
|
|
107
|
-
T['io.flow.common.v0.models.price_with_base'] = PropTypes.exact({
|
|
108
|
-
currency: PropTypes.string.isRequired,
|
|
109
|
-
amount: PropTypes.number.isRequired,
|
|
110
|
-
label: PropTypes.string.isRequired,
|
|
111
|
-
base: T['io.flow.common.v0.models.price'],
|
|
112
|
-
});
|
|
113
|
-
|
|
114
102
|
T['io.flow.common.v0.models.price_source_price_book_reference'] = PropTypes.exact({
|
|
115
103
|
id: PropTypes.string.isRequired,
|
|
116
104
|
key: PropTypes.string.isRequired,
|
|
@@ -285,7 +273,7 @@ T['io.flow.common.v0.unions.discount_offer'] = PropTypes.oneOfType([
|
|
|
285
273
|
|
|
286
274
|
T['io.flow.common.v0.models.discount_form'] = PropTypes.exact({
|
|
287
275
|
offer: T['io.flow.common.v0.unions.discount_offer'].isRequired,
|
|
288
|
-
target: T['io.flow.common.v0.enums.discount_target'],
|
|
276
|
+
target: T['io.flow.common.v0.enums.discount_target'].isRequired,
|
|
289
277
|
label: PropTypes.string,
|
|
290
278
|
});
|
|
291
279
|
|
|
@@ -296,6 +284,7 @@ T['io.flow.common.v0.models.discounts_form'] = PropTypes.exact({
|
|
|
296
284
|
T['io.flow.common.v0.models.line_item_form'] = PropTypes.exact({
|
|
297
285
|
number: PropTypes.string.isRequired,
|
|
298
286
|
quantity: PropTypes.number.isRequired,
|
|
287
|
+
line_item_identifier: PropTypes.string,
|
|
299
288
|
shipment_estimate: T['io.flow.common.v0.models.datetime_range'],
|
|
300
289
|
price: T['io.flow.common.v0.models.money'],
|
|
301
290
|
attributes: PropTypes.objectOf(PropTypes.string),
|
|
@@ -590,7 +579,7 @@ T['io.flow.common.v0.models.organization'] = PropTypes.exact({
|
|
|
590
579
|
parent: T['io.flow.common.v0.models.organization_reference'],
|
|
591
580
|
defaults: T['io.flow.common.v0.models.organization_defaults'],
|
|
592
581
|
created_at: PropTypes.string,
|
|
593
|
-
status: T['io.flow.common.v0.enums.organization_status'],
|
|
582
|
+
status: T['io.flow.common.v0.enums.organization_status'].isRequired,
|
|
594
583
|
type: T['io.flow.common.v0.enums.organization_type'],
|
|
595
584
|
});
|
|
596
585
|
|
|
@@ -884,7 +873,7 @@ T['io.flow.shopify.external.v0.models.shopify_customer'] = PropTypes.exact({
|
|
|
884
873
|
tax_exempt: PropTypes.bool.isRequired,
|
|
885
874
|
verified_email: PropTypes.bool.isRequired,
|
|
886
875
|
state: T['io.flow.shopify.external.v0.enums.shopify_customer_state'].isRequired,
|
|
887
|
-
accepts_marketing: PropTypes.bool,
|
|
876
|
+
accepts_marketing: PropTypes.bool.isRequired,
|
|
888
877
|
default_address: PropTypes.object,
|
|
889
878
|
email: PropTypes.string,
|
|
890
879
|
first_name: PropTypes.string,
|
|
@@ -1034,7 +1023,7 @@ T['io.flow.shopify.external.v0.models.shopify_webhook_order_line_item'] = PropTy
|
|
|
1034
1023
|
|
|
1035
1024
|
T['io.flow.shopify.external.v0.models.shopify_webhook_order'] = PropTypes.exact({
|
|
1036
1025
|
id: PropTypes.number,
|
|
1037
|
-
line_items: PropTypes.arrayOf(T['io.flow.shopify.external.v0.models.shopify_webhook_order_line_item']),
|
|
1026
|
+
line_items: PropTypes.arrayOf(T['io.flow.shopify.external.v0.models.shopify_webhook_order_line_item']).isRequired,
|
|
1038
1027
|
});
|
|
1039
1028
|
|
|
1040
1029
|
T['io.flow.shopify.external.v0.models.shopify_line_item_form'] = PropTypes.exact({
|
|
@@ -1137,7 +1126,7 @@ T['io.flow.shopify.external.v0.models.shopify_order_customer'] = PropTypes.exact
|
|
|
1137
1126
|
});
|
|
1138
1127
|
|
|
1139
1128
|
T['io.flow.shopify.external.v0.models.shopify_client_detail'] = PropTypes.exact({
|
|
1140
|
-
accept_language: PropTypes.bool,
|
|
1129
|
+
accept_language: PropTypes.bool.isRequired,
|
|
1141
1130
|
browser_height: PropTypes.number,
|
|
1142
1131
|
browser_ip: PropTypes.string,
|
|
1143
1132
|
browser_width: PropTypes.number,
|
|
@@ -1457,7 +1446,7 @@ T['io.flow.shopify.external.v0.models.shopify_order'] = PropTypes.exact({
|
|
|
1457
1446
|
gateway: PropTypes.string,
|
|
1458
1447
|
transactions: PropTypes.arrayOf(T['io.flow.shopify.external.v0.models.shopify_transaction_form']),
|
|
1459
1448
|
send_receipt: PropTypes.bool,
|
|
1460
|
-
metafields: PropTypes.arrayOf(T['io.flow.shopify.external.v0.models.metafield_form']),
|
|
1449
|
+
metafields: PropTypes.arrayOf(T['io.flow.shopify.external.v0.models.metafield_form']).isRequired,
|
|
1461
1450
|
});
|
|
1462
1451
|
|
|
1463
1452
|
T['io.flow.shopify.external.v0.models.shopify_order_wrapper'] = PropTypes.exact({
|
|
@@ -1530,7 +1519,7 @@ T['io.flow.shopify.external.v0.models.response_variant'] = PropTypes.exact({
|
|
|
1530
1519
|
T['io.flow.shopify.external.v0.models.product'] = PropTypes.exact({
|
|
1531
1520
|
id: PropTypes.number.isRequired,
|
|
1532
1521
|
handle: PropTypes.string.isRequired,
|
|
1533
|
-
variants: PropTypes.arrayOf(T['io.flow.shopify.external.v0.models.product_variant']),
|
|
1522
|
+
variants: PropTypes.arrayOf(T['io.flow.shopify.external.v0.models.product_variant']).isRequired,
|
|
1534
1523
|
images: PropTypes.arrayOf(T['io.flow.shopify.external.v0.models.product_image']).isRequired,
|
|
1535
1524
|
title: PropTypes.string.isRequired,
|
|
1536
1525
|
vendor: PropTypes.string,
|
|
@@ -1631,7 +1620,7 @@ T['io.flow.shopify.external.v0.models.graphql_product'] = PropTypes.exact({
|
|
|
1631
1620
|
id: PropTypes.string.isRequired,
|
|
1632
1621
|
legacyResourceId: PropTypes.string.isRequired,
|
|
1633
1622
|
handle: PropTypes.string.isRequired,
|
|
1634
|
-
variants: PropTypes.arrayOf(T['io.flow.shopify.external.v0.models.graphql_product_variant']),
|
|
1623
|
+
variants: PropTypes.arrayOf(T['io.flow.shopify.external.v0.models.graphql_product_variant']).isRequired,
|
|
1635
1624
|
images: PropTypes.arrayOf(T['io.flow.shopify.external.v0.models.graphql_product_image']).isRequired,
|
|
1636
1625
|
title: PropTypes.string.isRequired,
|
|
1637
1626
|
vendor: PropTypes.string,
|
|
@@ -3624,7 +3613,9 @@ T['io.flow.v0.models.product_sellability_result_deleted'] = PropTypes.exact({
|
|
|
3624
3613
|
discriminator: PropTypes.oneOf(['product_sellability_result_deleted']).isRequired,
|
|
3625
3614
|
event_id: PropTypes.string.isRequired,
|
|
3626
3615
|
timestamp: PropTypes.string.isRequired,
|
|
3627
|
-
organization: PropTypes.string
|
|
3616
|
+
organization: PropTypes.string,
|
|
3617
|
+
merchant: PropTypes.string,
|
|
3618
|
+
channel_id: PropTypes.string,
|
|
3628
3619
|
id: PropTypes.string.isRequired,
|
|
3629
3620
|
});
|
|
3630
3621
|
|
|
@@ -3784,6 +3775,14 @@ T['io.flow.v0.models.manifested_label_upserted'] = PropTypes.exact({
|
|
|
3784
3775
|
fulfillment_key: PropTypes.string,
|
|
3785
3776
|
});
|
|
3786
3777
|
|
|
3778
|
+
T['io.flow.v0.models.tariff_codes_deleted'] = PropTypes.exact({
|
|
3779
|
+
discriminator: PropTypes.oneOf(['tariff_codes_deleted']).isRequired,
|
|
3780
|
+
event_id: PropTypes.string.isRequired,
|
|
3781
|
+
timestamp: PropTypes.string.isRequired,
|
|
3782
|
+
organization: PropTypes.string.isRequired,
|
|
3783
|
+
id: PropTypes.string.isRequired,
|
|
3784
|
+
});
|
|
3785
|
+
|
|
3787
3786
|
T['io.flow.v0.models.item_origin_deleted'] = PropTypes.exact({
|
|
3788
3787
|
discriminator: PropTypes.oneOf(['item_origin_deleted']).isRequired,
|
|
3789
3788
|
event_id: PropTypes.string.isRequired,
|
|
@@ -3848,6 +3847,15 @@ T['io.flow.v0.models.shipping_configuration_deleted'] = PropTypes.exact({
|
|
|
3848
3847
|
id: PropTypes.string.isRequired,
|
|
3849
3848
|
});
|
|
3850
3849
|
|
|
3850
|
+
T['io.flow.v0.models.order_state_deleted'] = PropTypes.exact({
|
|
3851
|
+
discriminator: PropTypes.oneOf(['order_state_deleted']).isRequired,
|
|
3852
|
+
event_id: PropTypes.string.isRequired,
|
|
3853
|
+
timestamp: PropTypes.string.isRequired,
|
|
3854
|
+
organization: PropTypes.string.isRequired,
|
|
3855
|
+
channel_id: PropTypes.string.isRequired,
|
|
3856
|
+
id: PropTypes.string.isRequired,
|
|
3857
|
+
});
|
|
3858
|
+
|
|
3851
3859
|
T['io.flow.v0.models.order_identifier_deleted_v2'] = PropTypes.exact({
|
|
3852
3860
|
discriminator: PropTypes.oneOf(['order_identifier_deleted_v2']).isRequired,
|
|
3853
3861
|
event_id: PropTypes.string.isRequired,
|
|
@@ -4044,6 +4052,13 @@ T['io.flow.v0.models.organization_transaction_deleted'] = PropTypes.exact({
|
|
|
4044
4052
|
id: PropTypes.string.isRequired,
|
|
4045
4053
|
});
|
|
4046
4054
|
|
|
4055
|
+
T['io.flow.v0.models.amrutha_item_deleted'] = PropTypes.exact({
|
|
4056
|
+
discriminator: PropTypes.oneOf(['amrutha_item_deleted']).isRequired,
|
|
4057
|
+
event_id: PropTypes.string.isRequired,
|
|
4058
|
+
timestamp: PropTypes.string.isRequired,
|
|
4059
|
+
id: PropTypes.string.isRequired,
|
|
4060
|
+
});
|
|
4061
|
+
|
|
4047
4062
|
T['io.flow.v0.models.generate_load'] = PropTypes.exact({
|
|
4048
4063
|
discriminator: PropTypes.oneOf(['generate_load']).isRequired,
|
|
4049
4064
|
event_id: PropTypes.string.isRequired,
|
|
@@ -4235,6 +4250,7 @@ T['io.flow.v0.enums.tax_duty_transaction_reason_code'] = PropTypes.oneOf([
|
|
|
4235
4250
|
'wyol_shipment_above_de_min',
|
|
4236
4251
|
'full_refund_without_shipment',
|
|
4237
4252
|
'unfulfilled_order_above_de_min',
|
|
4253
|
+
'order_cancellation_without_capture',
|
|
4238
4254
|
]);
|
|
4239
4255
|
|
|
4240
4256
|
T['io.flow.v0.models.transaction_metadata_shipping_label_carrier'] = PropTypes.exact({
|
|
@@ -4243,6 +4259,13 @@ T['io.flow.v0.models.transaction_metadata_shipping_label_carrier'] = PropTypes.e
|
|
|
4243
4259
|
tracking_number: PropTypes.string.isRequired,
|
|
4244
4260
|
});
|
|
4245
4261
|
|
|
4262
|
+
T['io.flow.v0.models.transaction_metadata_merchant_fee_item'] = PropTypes.exact({
|
|
4263
|
+
type: PropTypes.string.isRequired,
|
|
4264
|
+
amount: PropTypes.number.isRequired,
|
|
4265
|
+
local_amount: PropTypes.number,
|
|
4266
|
+
description: PropTypes.string,
|
|
4267
|
+
});
|
|
4268
|
+
|
|
4246
4269
|
T['io.flow.v0.models.transaction_metadata_original_transaction'] = PropTypes.exact({
|
|
4247
4270
|
id: PropTypes.string.isRequired,
|
|
4248
4271
|
});
|
|
@@ -4387,6 +4410,8 @@ T['io.flow.v0.models.test_upserted'] = PropTypes.exact({
|
|
|
4387
4410
|
discriminator: PropTypes.oneOf(['test_upserted']).isRequired,
|
|
4388
4411
|
event_id: PropTypes.string.isRequired,
|
|
4389
4412
|
timestamp: PropTypes.string.isRequired,
|
|
4413
|
+
organization: PropTypes.string.isRequired,
|
|
4414
|
+
channel_id: PropTypes.string.isRequired,
|
|
4390
4415
|
test: T['io.flow.ben.test.internal.v0.models.test'].isRequired,
|
|
4391
4416
|
});
|
|
4392
4417
|
|
|
@@ -4505,6 +4530,26 @@ T['io.flow.v0.models.tax_duty_calculator_validation_error'] = PropTypes.exact({
|
|
|
4505
4530
|
messages: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
4506
4531
|
});
|
|
4507
4532
|
|
|
4533
|
+
T['io.flow.v0.models.harmonization_tariff_code'] = PropTypes.exact({
|
|
4534
|
+
tariff_code: PropTypes.string.isRequired,
|
|
4535
|
+
destination: PropTypes.string.isRequired,
|
|
4536
|
+
});
|
|
4537
|
+
|
|
4538
|
+
T['io.flow.v0.models.tariff_codes'] = PropTypes.exact({
|
|
4539
|
+
item_number: PropTypes.string.isRequired,
|
|
4540
|
+
product_id: PropTypes.string.isRequired,
|
|
4541
|
+
hs6_code: PropTypes.string.isRequired,
|
|
4542
|
+
codes: PropTypes.arrayOf(T['io.flow.v0.models.harmonization_tariff_code']).isRequired,
|
|
4543
|
+
});
|
|
4544
|
+
|
|
4545
|
+
T['io.flow.v0.models.tariff_codes_upserted'] = PropTypes.exact({
|
|
4546
|
+
discriminator: PropTypes.oneOf(['tariff_codes_upserted']).isRequired,
|
|
4547
|
+
event_id: PropTypes.string.isRequired,
|
|
4548
|
+
timestamp: PropTypes.string.isRequired,
|
|
4549
|
+
organization: PropTypes.string.isRequired,
|
|
4550
|
+
tariff_codes: T['io.flow.v0.models.tariff_codes'].isRequired,
|
|
4551
|
+
});
|
|
4552
|
+
|
|
4508
4553
|
T['io.flow.v0.enums.surcharge_responsible_party'] = PropTypes.oneOf(['organization', 'customer']);
|
|
4509
4554
|
|
|
4510
4555
|
T['io.flow.v0.models.surcharge_responsible_party_display'] = PropTypes.exact({
|
|
@@ -4617,7 +4662,7 @@ T['io.flow.shopify.external.v0.models.shopify_external_cart_item'] = PropTypes.e
|
|
|
4617
4662
|
original_line_price: PropTypes.number.isRequired,
|
|
4618
4663
|
total_discount: PropTypes.number.isRequired,
|
|
4619
4664
|
discounted_price: PropTypes.number.isRequired,
|
|
4620
|
-
discounts: PropTypes.arrayOf(T['io.flow.shopify.external.v0.models.shopify_cart_item_discount']),
|
|
4665
|
+
discounts: PropTypes.arrayOf(T['io.flow.shopify.external.v0.models.shopify_cart_item_discount']).isRequired,
|
|
4621
4666
|
taxable: PropTypes.bool.isRequired,
|
|
4622
4667
|
quantity: PropTypes.number.isRequired,
|
|
4623
4668
|
sku: PropTypes.string,
|
|
@@ -4635,11 +4680,11 @@ T['io.flow.shopify.external.v0.models.shopify_external_cart_item'] = PropTypes.e
|
|
|
4635
4680
|
product_description: PropTypes.string,
|
|
4636
4681
|
product_type: PropTypes.string.isRequired,
|
|
4637
4682
|
variant_title: PropTypes.string,
|
|
4638
|
-
variant_options: PropTypes.arrayOf(PropTypes.string),
|
|
4683
|
+
variant_options: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
4639
4684
|
|
|
4640
4685
|
line_level_discount_allocations: PropTypes.arrayOf(
|
|
4641
4686
|
T['io.flow.shopify.external.v0.models.shopify_line_level_discount_allocation'],
|
|
4642
|
-
),
|
|
4687
|
+
).isRequired,
|
|
4643
4688
|
});
|
|
4644
4689
|
|
|
4645
4690
|
T['io.flow.shopify.external.v0.models.shopify_external_cart'] = PropTypes.exact({
|
|
@@ -4655,7 +4700,7 @@ T['io.flow.shopify.external.v0.models.shopify_external_cart'] = PropTypes.exact(
|
|
|
4655
4700
|
requires_shipping: PropTypes.bool.isRequired,
|
|
4656
4701
|
currency: PropTypes.string,
|
|
4657
4702
|
items: PropTypes.arrayOf(T['io.flow.shopify.external.v0.models.shopify_external_cart_item']).isRequired,
|
|
4658
|
-
cart_level_discount_applications: PropTypes.arrayOf(T['io.flow.shopify.external.v0.models.shopify_discount_application']),
|
|
4703
|
+
cart_level_discount_applications: PropTypes.arrayOf(T['io.flow.shopify.external.v0.models.shopify_discount_application']).isRequired,
|
|
4659
4704
|
});
|
|
4660
4705
|
|
|
4661
4706
|
T['io.flow.v0.models.shopify_cart_conversion_shopify_cart'] = PropTypes.exact({
|
|
@@ -4737,7 +4782,16 @@ T['io.flow.v0.enums.onboarding_blocked_reason'] = PropTypes.oneOf([
|
|
|
4737
4782
|
]);
|
|
4738
4783
|
|
|
4739
4784
|
T['io.flow.v0.enums.sellability_screening_mode'] = PropTypes.oneOf(['pre_onboarding', 'default_on', 'active']);
|
|
4740
|
-
|
|
4785
|
+
|
|
4786
|
+
T['io.flow.v0.enums.sellability_result_error_code'] = PropTypes.oneOf([
|
|
4787
|
+
'insufficient_details',
|
|
4788
|
+
'ineligible_category',
|
|
4789
|
+
'wait_for_high_fidelity',
|
|
4790
|
+
'external_service_unavailable',
|
|
4791
|
+
'generic_error',
|
|
4792
|
+
'catalog_processing_threshold',
|
|
4793
|
+
]);
|
|
4794
|
+
|
|
4741
4795
|
T['io.flow.v0.enums.sellability_result_status'] = PropTypes.oneOf(['in_review', 'succeeded', 'failed']);
|
|
4742
4796
|
|
|
4743
4797
|
T['io.flow.v0.enums.sellability_error_code'] = PropTypes.oneOf([
|
|
@@ -4890,6 +4944,12 @@ T['io.flow.v0.models.ratecard_rate'] = PropTypes.exact({
|
|
|
4890
4944
|
weight: PropTypes.number.isRequired,
|
|
4891
4945
|
});
|
|
4892
4946
|
|
|
4947
|
+
T['io.flow.v0.models.ratecard_data'] = PropTypes.exact({
|
|
4948
|
+
dhlParcelDistributionCenter: PropTypes.string,
|
|
4949
|
+
glbeRatecardMetadataLaneIdentifier: PropTypes.string,
|
|
4950
|
+
pickupCenter: PropTypes.string,
|
|
4951
|
+
});
|
|
4952
|
+
|
|
4893
4953
|
T['io.flow.v0.enums.commercial_invoice_mode'] = PropTypes.oneOf(['direct', 'indirect']);
|
|
4894
4954
|
|
|
4895
4955
|
T['io.flow.v0.models.zone'] = PropTypes.exact({
|
|
@@ -4968,11 +5028,13 @@ T['io.flow.v0.models.query_filter_structured'] = PropTypes.exact({
|
|
|
4968
5028
|
T['io.flow.v0.models.sellability_reason_with_regions'] = PropTypes.exact({
|
|
4969
5029
|
reason: PropTypes.string.isRequired,
|
|
4970
5030
|
regions: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
5031
|
+
review_status: PropTypes.string,
|
|
4971
5032
|
});
|
|
4972
5033
|
|
|
4973
5034
|
T['io.flow.v0.models.sellability_needs_action_attributes'] = PropTypes.exact({
|
|
4974
5035
|
reason_code: PropTypes.string.isRequired,
|
|
4975
5036
|
category_metafield_handles: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
5037
|
+
category_metafield_ids: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
4976
5038
|
require_msds: PropTypes.bool,
|
|
4977
5039
|
});
|
|
4978
5040
|
|
|
@@ -4995,6 +5057,7 @@ T['io.flow.v0.models.sellability_restricted_region'] = PropTypes.exact({
|
|
|
4995
5057
|
});
|
|
4996
5058
|
|
|
4997
5059
|
T['io.flow.v0.models.product_sellability_result'] = PropTypes.exact({
|
|
5060
|
+
id: PropTypes.string.isRequired,
|
|
4998
5061
|
merchant_id: PropTypes.string,
|
|
4999
5062
|
product_id: PropTypes.string.isRequired,
|
|
5000
5063
|
restricted_regions: PropTypes.arrayOf(T['io.flow.v0.models.sellability_restricted_region']).isRequired,
|
|
@@ -5017,7 +5080,9 @@ T['io.flow.v0.models.product_sellability_result_upserted'] = PropTypes.exact({
|
|
|
5017
5080
|
discriminator: PropTypes.oneOf(['product_sellability_result_upserted']).isRequired,
|
|
5018
5081
|
event_id: PropTypes.string.isRequired,
|
|
5019
5082
|
timestamp: PropTypes.string.isRequired,
|
|
5020
|
-
organization: PropTypes.string
|
|
5083
|
+
organization: PropTypes.string,
|
|
5084
|
+
merchant: PropTypes.string,
|
|
5085
|
+
channel_id: PropTypes.string,
|
|
5021
5086
|
product_sellability_result: T['io.flow.v0.models.product_sellability_result'].isRequired,
|
|
5022
5087
|
});
|
|
5023
5088
|
|
|
@@ -5661,6 +5726,18 @@ T['io.flow.v0.models.session_visitor'] = PropTypes.exact({
|
|
|
5661
5726
|
});
|
|
5662
5727
|
|
|
5663
5728
|
T['io.flow.v0.enums.organization_type'] = PropTypes.oneOf(['standalone', 'channel']);
|
|
5729
|
+
|
|
5730
|
+
T['io.flow.v0.models.order_state_rejection_reason_items_empty'] = PropTypes.exact({
|
|
5731
|
+
discriminator: PropTypes.oneOf(['order_state_rejection_reason_items_empty']).isRequired,
|
|
5732
|
+
line_items: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
5733
|
+
});
|
|
5734
|
+
|
|
5735
|
+
T['io.flow.v0.models.order_state_rejection_reason_restricted_item'] = PropTypes.exact({
|
|
5736
|
+
discriminator: PropTypes.oneOf(['order_state_rejection_reason_restricted_item']).isRequired,
|
|
5737
|
+
item_numbers: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
5738
|
+
});
|
|
5739
|
+
|
|
5740
|
+
T['io.flow.v0.enums.order_state_status'] = PropTypes.oneOf(['pending', 'accepted', 'rejected']);
|
|
5664
5741
|
T['io.flow.v0.enums.order_refund_summary_partial_charged'] = PropTypes.oneOf(['per_item', 'for_order', 'by_value_percentage', 'by_quantity_percentage']);
|
|
5665
5742
|
|
|
5666
5743
|
T['io.flow.v0.models.order_refund_summary_item'] = PropTypes.exact({
|
|
@@ -6277,6 +6354,7 @@ T['io.flow.v0.enums.label_request_method'] = PropTypes.oneOf([
|
|
|
6277
6354
|
'notification_requiring_crossdock',
|
|
6278
6355
|
'flow_simulation_sync',
|
|
6279
6356
|
'autogenerated',
|
|
6357
|
+
'legacy_shopify_graphql_server',
|
|
6280
6358
|
]);
|
|
6281
6359
|
|
|
6282
6360
|
T['io.flow.v0.models.label_order_summary'] = PropTypes.exact({
|
|
@@ -6524,6 +6602,10 @@ T['io.flow.v0.models.product_restriction_result'] = PropTypes.exact({
|
|
|
6524
6602
|
hs_code: PropTypes.string,
|
|
6525
6603
|
restricted_regions_by_type: PropTypes.arrayOf(T['io.flow.v0.models.sellability_region_result']),
|
|
6526
6604
|
needs_action_attributes: PropTypes.arrayOf(T['io.flow.v0.models.needs_action_attributes']),
|
|
6605
|
+
fingerprint: PropTypes.string,
|
|
6606
|
+
restriction_created_at: PropTypes.string,
|
|
6607
|
+
first_reviewed_at: PropTypes.string,
|
|
6608
|
+
seconds_to_first_review: PropTypes.number,
|
|
6527
6609
|
});
|
|
6528
6610
|
|
|
6529
6611
|
T['io.flow.v0.models.product_restriction_result_upserted'] = PropTypes.exact({
|
|
@@ -7796,12 +7878,6 @@ T['io.flow.v0.models.monthly_average'] = PropTypes.exact({
|
|
|
7796
7878
|
number_transactions: PropTypes.number,
|
|
7797
7879
|
});
|
|
7798
7880
|
|
|
7799
|
-
T['io.flow.v0.models.operations_contact'] = PropTypes.exact({
|
|
7800
|
-
company: PropTypes.string,
|
|
7801
|
-
email: PropTypes.string,
|
|
7802
|
-
phone: PropTypes.string,
|
|
7803
|
-
});
|
|
7804
|
-
|
|
7805
7881
|
T['io.flow.v0.models.ultimate_beneficiary_owner'] = PropTypes.exact({
|
|
7806
7882
|
name: PropTypes.string.isRequired,
|
|
7807
7883
|
dob: PropTypes.string.isRequired,
|
|
@@ -8053,8 +8129,14 @@ T['io.flow.v0.enums.fee_deduction_type'] = PropTypes.oneOf([
|
|
|
8053
8129
|
'transfer',
|
|
8054
8130
|
'negative_balance_guarantee',
|
|
8055
8131
|
'sp',
|
|
8132
|
+
'rev_share',
|
|
8056
8133
|
]);
|
|
8057
8134
|
|
|
8135
|
+
T['io.flow.v0.models.transaction_metadata_merchant_fee'] = PropTypes.exact({
|
|
8136
|
+
discriminator: PropTypes.oneOf(['merchant_fee']).isRequired,
|
|
8137
|
+
items: PropTypes.arrayOf(T['io.flow.v0.models.transaction_metadata_merchant_fee_item']).isRequired,
|
|
8138
|
+
});
|
|
8139
|
+
|
|
8058
8140
|
T['io.flow.v0.models.transaction_metadata_tax_duty'] = PropTypes.exact({
|
|
8059
8141
|
discriminator: PropTypes.oneOf(['transaction_tax_duty']).isRequired,
|
|
8060
8142
|
reason_code: T['io.flow.v0.enums.tax_duty_transaction_reason_code'].isRequired,
|
|
@@ -8085,6 +8167,7 @@ T['io.flow.v0.models.transaction_metadata_manual'] = PropTypes.exact({
|
|
|
8085
8167
|
description: PropTypes.string.isRequired,
|
|
8086
8168
|
original: T['io.flow.v0.models.transaction_metadata_original_transaction'],
|
|
8087
8169
|
url: PropTypes.string,
|
|
8170
|
+
recoup: PropTypes.bool,
|
|
8088
8171
|
});
|
|
8089
8172
|
|
|
8090
8173
|
T['io.flow.v0.models.transaction_metadata_carrier_charge'] = PropTypes.exact({
|
|
@@ -8093,7 +8176,7 @@ T['io.flow.v0.models.transaction_metadata_carrier_charge'] = PropTypes.exact({
|
|
|
8093
8176
|
label_created_at: PropTypes.string.isRequired,
|
|
8094
8177
|
carrier_id: PropTypes.string.isRequired,
|
|
8095
8178
|
carrier_tracking_number: PropTypes.string.isRequired,
|
|
8096
|
-
revenue_share_percentage: PropTypes.number
|
|
8179
|
+
revenue_share_percentage: PropTypes.number,
|
|
8097
8180
|
outbound: T['io.flow.v0.models.transaction_metadata_outbound_transaction'],
|
|
8098
8181
|
});
|
|
8099
8182
|
|
|
@@ -8177,6 +8260,7 @@ T['io.flow.v0.enums.transaction_source'] = PropTypes.oneOf([
|
|
|
8177
8260
|
'merchant_fee',
|
|
8178
8261
|
'b2b_tax',
|
|
8179
8262
|
'b2b_tax_refund',
|
|
8263
|
+
'b2b_fee_mor_tax',
|
|
8180
8264
|
]);
|
|
8181
8265
|
|
|
8182
8266
|
T['io.flow.v0.models.parent_transaction_summary'] = PropTypes.exact({
|
|
@@ -8963,6 +9047,7 @@ T['io.flow.v0.unions.transaction_metadata'] = PropTypes.oneOfType([
|
|
|
8963
9047
|
T['io.flow.v0.models.transaction_metadata_failed_payout'],
|
|
8964
9048
|
T['io.flow.v0.models.transaction_metadata_payment_transaction'],
|
|
8965
9049
|
T['io.flow.v0.models.transaction_metadata_tax_duty'],
|
|
9050
|
+
T['io.flow.v0.models.transaction_metadata_merchant_fee'],
|
|
8966
9051
|
]);
|
|
8967
9052
|
|
|
8968
9053
|
T['io.flow.v0.models.transaction_network_details_card'] = PropTypes.exact({
|
|
@@ -9288,7 +9373,7 @@ T['io.flow.v0.models.ratecard_form'] = PropTypes.exact({
|
|
|
9288
9373
|
glbe_shipping_method_id: PropTypes.string,
|
|
9289
9374
|
glbe_proposition_name: PropTypes.string,
|
|
9290
9375
|
channel_revenue_share_percentage: PropTypes.number,
|
|
9291
|
-
data:
|
|
9376
|
+
data: T['io.flow.v0.models.ratecard_data'],
|
|
9292
9377
|
});
|
|
9293
9378
|
|
|
9294
9379
|
T['io.flow.v0.models.ratecard'] = PropTypes.exact({
|
|
@@ -9815,15 +9900,6 @@ T['io.flow.v0.models.onboarding_merchant_scheduled_pickup'] = PropTypes.exact({
|
|
|
9815
9900
|
instructions: PropTypes.string,
|
|
9816
9901
|
});
|
|
9817
9902
|
|
|
9818
|
-
T['io.flow.v0.models.third_party_logistics_partner'] = PropTypes.exact({
|
|
9819
|
-
warehouse_address: T['io.flow.v0.models.merchant_onboarding_address'].isRequired,
|
|
9820
|
-
warehouse_url: PropTypes.string,
|
|
9821
|
-
location: T['io.flow.v0.models.merchant_onboarding_address'],
|
|
9822
|
-
scheduled_pickups: PropTypes.arrayOf(T['io.flow.v0.models.onboarding_merchant_scheduled_pickup']),
|
|
9823
|
-
operations_contact: T['io.flow.v0.models.operations_contact'].isRequired,
|
|
9824
|
-
center_id: PropTypes.string,
|
|
9825
|
-
});
|
|
9826
|
-
|
|
9827
9903
|
T['io.flow.v0.models.number_range'] = PropTypes.exact({
|
|
9828
9904
|
min: PropTypes.number.isRequired,
|
|
9829
9905
|
max: PropTypes.number.isRequired,
|
|
@@ -10527,6 +10603,79 @@ T['io.flow.v0.models.channel_statement_deleted'] = PropTypes.exact({
|
|
|
10527
10603
|
channel_statement: T['io.flow.v0.models.channel_statement'].isRequired,
|
|
10528
10604
|
});
|
|
10529
10605
|
|
|
10606
|
+
T['io.flow.tech.onboarding.playground.v0.enums.amrutha_item_type'] = PropTypes.oneOf(['physical', 'digital']);
|
|
10607
|
+
|
|
10608
|
+
T['io.flow.common.v0.models.price'] = PropTypes.exact({
|
|
10609
|
+
amount: PropTypes.number.isRequired,
|
|
10610
|
+
currency: PropTypes.string.isRequired,
|
|
10611
|
+
label: PropTypes.string.isRequired,
|
|
10612
|
+
});
|
|
10613
|
+
|
|
10614
|
+
T['io.flow.tech.onboarding.playground.v0.models.gabriel_item_form'] = PropTypes.exact({
|
|
10615
|
+
number: PropTypes.string.isRequired,
|
|
10616
|
+
amount: T['io.flow.common.v0.models.price'].isRequired,
|
|
10617
|
+
description: PropTypes.string,
|
|
10618
|
+
type: T['io.flow.tech.onboarding.playground.v0.enums.gabriel_item_type'].isRequired,
|
|
10619
|
+
added_on: PropTypes.string.isRequired,
|
|
10620
|
+
});
|
|
10621
|
+
|
|
10622
|
+
T['io.flow.tech.onboarding.playground.v0.models.gabriel_item'] = PropTypes.exact({
|
|
10623
|
+
id: PropTypes.string.isRequired,
|
|
10624
|
+
number: PropTypes.string.isRequired,
|
|
10625
|
+
amount: T['io.flow.common.v0.models.price'].isRequired,
|
|
10626
|
+
description: PropTypes.string,
|
|
10627
|
+
type: T['io.flow.tech.onboarding.playground.v0.enums.gabriel_item_type'].isRequired,
|
|
10628
|
+
added_on: PropTypes.string.isRequired,
|
|
10629
|
+
});
|
|
10630
|
+
|
|
10631
|
+
T['io.flow.tech.onboarding.playground.v0.models.chenglin_item_form'] = PropTypes.exact({
|
|
10632
|
+
number: PropTypes.string.isRequired,
|
|
10633
|
+
amount: T['io.flow.common.v0.models.price'].isRequired,
|
|
10634
|
+
description: PropTypes.string,
|
|
10635
|
+
type: T['io.flow.tech.onboarding.playground.v0.enums.gabriel_item_type'].isRequired,
|
|
10636
|
+
added_on: PropTypes.string.isRequired,
|
|
10637
|
+
});
|
|
10638
|
+
|
|
10639
|
+
T['io.flow.tech.onboarding.playground.v0.models.chenglin_item'] = PropTypes.exact({
|
|
10640
|
+
id: PropTypes.string.isRequired,
|
|
10641
|
+
number: PropTypes.string.isRequired,
|
|
10642
|
+
amount: T['io.flow.common.v0.models.price'].isRequired,
|
|
10643
|
+
description: PropTypes.string,
|
|
10644
|
+
type: T['io.flow.tech.onboarding.playground.v0.enums.gabriel_item_type'].isRequired,
|
|
10645
|
+
added_on: PropTypes.string.isRequired,
|
|
10646
|
+
});
|
|
10647
|
+
|
|
10648
|
+
T['io.flow.tech.onboarding.playground.v0.models.amrutha_item_form'] = PropTypes.exact({
|
|
10649
|
+
number: PropTypes.string.isRequired,
|
|
10650
|
+
amount: T['io.flow.common.v0.models.price'].isRequired,
|
|
10651
|
+
description: PropTypes.string,
|
|
10652
|
+
type: T['io.flow.tech.onboarding.playground.v0.enums.amrutha_item_type'].isRequired,
|
|
10653
|
+
added_on: PropTypes.string.isRequired,
|
|
10654
|
+
});
|
|
10655
|
+
|
|
10656
|
+
T['io.flow.common.v0.models.price_with_base'] = PropTypes.exact({
|
|
10657
|
+
currency: PropTypes.string.isRequired,
|
|
10658
|
+
amount: PropTypes.number.isRequired,
|
|
10659
|
+
label: PropTypes.string.isRequired,
|
|
10660
|
+
base: T['io.flow.common.v0.models.price'],
|
|
10661
|
+
});
|
|
10662
|
+
|
|
10663
|
+
T['io.flow.tech.onboarding.playground.v0.models.amrutha_item'] = PropTypes.exact({
|
|
10664
|
+
id: PropTypes.string.isRequired,
|
|
10665
|
+
number: PropTypes.string.isRequired,
|
|
10666
|
+
amount: T['io.flow.common.v0.models.price'].isRequired,
|
|
10667
|
+
description: PropTypes.string,
|
|
10668
|
+
type: T['io.flow.tech.onboarding.playground.v0.enums.amrutha_item_type'].isRequired,
|
|
10669
|
+
added_on: PropTypes.string.isRequired,
|
|
10670
|
+
});
|
|
10671
|
+
|
|
10672
|
+
T['io.flow.v0.models.amrutha_item_upserted'] = PropTypes.exact({
|
|
10673
|
+
discriminator: PropTypes.oneOf(['amrutha_item_upserted']).isRequired,
|
|
10674
|
+
event_id: PropTypes.string.isRequired,
|
|
10675
|
+
timestamp: PropTypes.string.isRequired,
|
|
10676
|
+
item: T['io.flow.tech.onboarding.playground.v0.models.amrutha_item'].isRequired,
|
|
10677
|
+
});
|
|
10678
|
+
|
|
10530
10679
|
T['io.flow.v0.enums.order_price_detail_key'] = PropTypes.oneOf([
|
|
10531
10680
|
'adjustment',
|
|
10532
10681
|
'subtotal',
|
|
@@ -11373,6 +11522,35 @@ T['io.flow.v0.models.tracking'] = PropTypes.exact({
|
|
|
11373
11522
|
order_number: PropTypes.string,
|
|
11374
11523
|
});
|
|
11375
11524
|
|
|
11525
|
+
T['io.flow.v0.models.order_state_rejection_reason_domestic_order'] = PropTypes.exact({
|
|
11526
|
+
discriminator: PropTypes.oneOf(['order_state_rejection_reason_domestic_order']).isRequired,
|
|
11527
|
+
destination_address: T['io.flow.v0.models.address'].isRequired,
|
|
11528
|
+
});
|
|
11529
|
+
|
|
11530
|
+
T['io.flow.v0.unions.order_state_rejection_reason'] = PropTypes.oneOfType([
|
|
11531
|
+
T['io.flow.v0.models.order_state_rejection_reason_restricted_item'],
|
|
11532
|
+
T['io.flow.v0.models.order_state_rejection_reason_domestic_order'],
|
|
11533
|
+
T['io.flow.v0.models.order_state_rejection_reason_items_empty'],
|
|
11534
|
+
]);
|
|
11535
|
+
|
|
11536
|
+
T['io.flow.v0.models.order_state'] = PropTypes.exact({
|
|
11537
|
+
id: PropTypes.string.isRequired,
|
|
11538
|
+
order_number: PropTypes.string.isRequired,
|
|
11539
|
+
external_order_reference: PropTypes.string.isRequired,
|
|
11540
|
+
payment_requests: PropTypes.arrayOf(T['io.flow.v0.models.payment_request_reference']).isRequired,
|
|
11541
|
+
status: T['io.flow.v0.enums.order_state_status'].isRequired,
|
|
11542
|
+
rejection_reasons: PropTypes.arrayOf(T['io.flow.v0.unions.order_state_rejection_reason']),
|
|
11543
|
+
});
|
|
11544
|
+
|
|
11545
|
+
T['io.flow.v0.models.order_state_upserted'] = PropTypes.exact({
|
|
11546
|
+
discriminator: PropTypes.oneOf(['order_state_upserted']).isRequired,
|
|
11547
|
+
event_id: PropTypes.string.isRequired,
|
|
11548
|
+
timestamp: PropTypes.string.isRequired,
|
|
11549
|
+
organization: PropTypes.string.isRequired,
|
|
11550
|
+
channel_id: PropTypes.string.isRequired,
|
|
11551
|
+
order_state: T['io.flow.v0.models.order_state'].isRequired,
|
|
11552
|
+
});
|
|
11553
|
+
|
|
11376
11554
|
T['io.flow.v0.models.know_your_business_usa_form'] = PropTypes.exact({
|
|
11377
11555
|
discriminator: PropTypes.oneOf(['know_your_business_usa_form']).isRequired,
|
|
11378
11556
|
primary_entity: T['io.flow.v0.unions.entity'].isRequired,
|
|
@@ -11427,6 +11605,22 @@ T['io.flow.v0.models.harmonized_landed_cost_upserted'] = PropTypes.exact({
|
|
|
11427
11605
|
landed_cost: T['io.flow.v0.models.harmonized_landed_cost'].isRequired,
|
|
11428
11606
|
});
|
|
11429
11607
|
|
|
11608
|
+
T['io.flow.v0.models.operations_contact'] = PropTypes.exact({
|
|
11609
|
+
company: PropTypes.string,
|
|
11610
|
+
email: PropTypes.string,
|
|
11611
|
+
phone: PropTypes.string,
|
|
11612
|
+
address: T['io.flow.v0.models.address'],
|
|
11613
|
+
});
|
|
11614
|
+
|
|
11615
|
+
T['io.flow.v0.models.third_party_logistics_partner'] = PropTypes.exact({
|
|
11616
|
+
warehouse_address: T['io.flow.v0.models.merchant_onboarding_address'].isRequired,
|
|
11617
|
+
warehouse_url: PropTypes.string,
|
|
11618
|
+
location: T['io.flow.v0.models.merchant_onboarding_address'],
|
|
11619
|
+
scheduled_pickups: PropTypes.arrayOf(T['io.flow.v0.models.onboarding_merchant_scheduled_pickup']),
|
|
11620
|
+
operations_contact: T['io.flow.v0.models.operations_contact'].isRequired,
|
|
11621
|
+
center_id: PropTypes.string,
|
|
11622
|
+
});
|
|
11623
|
+
|
|
11430
11624
|
T['io.flow.v0.models.merchant_onboarding_beneficiary_details'] = PropTypes.exact({
|
|
11431
11625
|
name: PropTypes.string,
|
|
11432
11626
|
address: T['io.flow.v0.models.address'],
|
|
@@ -12110,6 +12304,7 @@ T['io.flow.v0.models.b2b_credit_memo'] = PropTypes.exact({
|
|
|
12110
12304
|
b2b_invoice_type: T['io.flow.v0.enums.b2b_invoice_type'].isRequired,
|
|
12111
12305
|
center: T['io.flow.v0.models.consumer_invoice_center_reference'],
|
|
12112
12306
|
order: T['io.flow.v0.models.consumer_invoice_order_summary'],
|
|
12307
|
+
voids_b2b_invoice: PropTypes.bool,
|
|
12113
12308
|
});
|
|
12114
12309
|
|
|
12115
12310
|
T['io.flow.v0.models.b2b_credit_memo_upserted'] = PropTypes.exact({
|
|
@@ -12691,6 +12886,7 @@ T['io.flow.v0.models.shopify_merchant_application_form'] = PropTypes.exact({
|
|
|
12691
12886
|
ratecard_id: PropTypes.string,
|
|
12692
12887
|
rate_card: PropTypes.string.isRequired,
|
|
12693
12888
|
shop: T['io.flow.v0.models.shop'],
|
|
12889
|
+
settlement_currency: PropTypes.string,
|
|
12694
12890
|
last_year_xborder_gmv: T['io.flow.v0.models.money'],
|
|
12695
12891
|
last_month_xborder_gmv: T['io.flow.v0.models.money'],
|
|
12696
12892
|
average_order_value: T['io.flow.v0.models.money'],
|
|
@@ -12728,6 +12924,7 @@ T['io.flow.v0.models.shopify_merchant_application'] = PropTypes.exact({
|
|
|
12728
12924
|
activated_at: PropTypes.string,
|
|
12729
12925
|
status_updated_at: PropTypes.string,
|
|
12730
12926
|
shop: T['io.flow.v0.models.shop'],
|
|
12927
|
+
settlement_currency: PropTypes.string,
|
|
12731
12928
|
last_year_xborder_gmv: T['io.flow.v0.models.money'],
|
|
12732
12929
|
last_month_xborder_gmv: T['io.flow.v0.models.money'],
|
|
12733
12930
|
average_order_value: T['io.flow.v0.models.money'],
|
|
@@ -12914,7 +13111,6 @@ T['io.flow.v0.models.common_merchant_application_form'] = PropTypes.exact({
|
|
|
12914
13111
|
beneficiary_details: T['io.flow.v0.models.merchant_onboarding_beneficiary_details'],
|
|
12915
13112
|
other_trade_sector: PropTypes.string,
|
|
12916
13113
|
center_contact: T['io.flow.v0.models.operations_contact'],
|
|
12917
|
-
center_address: T['io.flow.v0.models.address'],
|
|
12918
13114
|
average_order_weight: PropTypes.number,
|
|
12919
13115
|
average_order_weight_unit: T['io.flow.v0.enums.unit_of_measurement'],
|
|
12920
13116
|
package_dimensions: PropTypes.arrayOf(T['io.flow.v0.models.dimension']),
|
|
@@ -12923,6 +13119,7 @@ T['io.flow.v0.models.common_merchant_application_form'] = PropTypes.exact({
|
|
|
12923
13119
|
monthly_average_number_transactions: PropTypes.number,
|
|
12924
13120
|
default_country_of_origin: PropTypes.string,
|
|
12925
13121
|
shop: T['io.flow.v0.models.shop'],
|
|
13122
|
+
settlement_currency: PropTypes.string,
|
|
12926
13123
|
rate_card: PropTypes.string,
|
|
12927
13124
|
last_year_xborder_gmv: T['io.flow.v0.models.money'],
|
|
12928
13125
|
last_month_xborder_gmv: T['io.flow.v0.models.money'],
|
|
@@ -12952,7 +13149,6 @@ T['io.flow.v0.models.common_merchant_application'] = PropTypes.exact({
|
|
|
12952
13149
|
beneficiary_details: T['io.flow.v0.models.merchant_onboarding_beneficiary_details'],
|
|
12953
13150
|
other_trade_sector: PropTypes.string,
|
|
12954
13151
|
center_contact: T['io.flow.v0.models.operations_contact'],
|
|
12955
|
-
center_address: T['io.flow.v0.models.address'],
|
|
12956
13152
|
average_order_weight: PropTypes.number,
|
|
12957
13153
|
average_order_weight_unit: T['io.flow.v0.enums.unit_of_measurement'],
|
|
12958
13154
|
package_dimensions: PropTypes.arrayOf(T['io.flow.v0.models.dimension']),
|
|
@@ -12960,6 +13156,7 @@ T['io.flow.v0.models.common_merchant_application'] = PropTypes.exact({
|
|
|
12960
13156
|
default_country_of_origin: PropTypes.string,
|
|
12961
13157
|
rate_card: PropTypes.string.isRequired,
|
|
12962
13158
|
shop: T['io.flow.v0.models.shop'],
|
|
13159
|
+
settlement_currency: PropTypes.string,
|
|
12963
13160
|
created_at: PropTypes.string.isRequired,
|
|
12964
13161
|
last_year_xborder_gmv: T['io.flow.v0.models.money'],
|
|
12965
13162
|
last_month_xborder_gmv: T['io.flow.v0.models.money'],
|
|
@@ -14807,6 +15004,8 @@ T['io.flow.v0.models.label_deleted_v2'] = PropTypes.exact({
|
|
|
14807
15004
|
T['io.flow.v0.unions.event'] = PropTypes.oneOfType([
|
|
14808
15005
|
T['io.flow.v0.models.test_upserted'],
|
|
14809
15006
|
T['io.flow.v0.models.generate_load'],
|
|
15007
|
+
T['io.flow.v0.models.amrutha_item_upserted'],
|
|
15008
|
+
T['io.flow.v0.models.amrutha_item_deleted'],
|
|
14810
15009
|
T['io.flow.v0.models.transaction_upserted'],
|
|
14811
15010
|
T['io.flow.v0.models.organization_transaction_upserted'],
|
|
14812
15011
|
T['io.flow.v0.models.organization_transaction_deleted'],
|
|
@@ -14867,6 +15066,8 @@ T['io.flow.v0.unions.event'] = PropTypes.oneOfType([
|
|
|
14867
15066
|
T['io.flow.v0.models.order_upserted_v2'],
|
|
14868
15067
|
T['io.flow.v0.models.order_identifier_deleted_v2'],
|
|
14869
15068
|
T['io.flow.v0.models.order_identifier_upserted_v3'],
|
|
15069
|
+
T['io.flow.v0.models.order_state_upserted'],
|
|
15070
|
+
T['io.flow.v0.models.order_state_deleted'],
|
|
14870
15071
|
T['io.flow.v0.models.fraud_status_changed'],
|
|
14871
15072
|
T['io.flow.v0.models.center_upserted'],
|
|
14872
15073
|
T['io.flow.v0.models.center_deleted'],
|
|
@@ -14891,6 +15092,8 @@ T['io.flow.v0.unions.event'] = PropTypes.oneOfType([
|
|
|
14891
15092
|
T['io.flow.v0.models.item_origin_deleted'],
|
|
14892
15093
|
T['io.flow.v0.models.harmonized_landed_cost_upserted'],
|
|
14893
15094
|
T['io.flow.v0.models.fully_harmonized_item_upserted'],
|
|
15095
|
+
T['io.flow.v0.models.tariff_codes_upserted'],
|
|
15096
|
+
T['io.flow.v0.models.tariff_codes_deleted'],
|
|
14894
15097
|
T['io.flow.v0.models.label_deleted_v2'],
|
|
14895
15098
|
T['io.flow.v0.models.label_upserted_v2'],
|
|
14896
15099
|
T['io.flow.v0.models.notification_upserted_v2'],
|
|
@@ -15156,6 +15359,8 @@ T['io.flow.v0.enums.capability'] = PropTypes.oneOf(['crossdock']);
|
|
|
15156
15359
|
T['io.flow.v0.enums.event_type'] = PropTypes.oneOf([
|
|
15157
15360
|
'test_upserted',
|
|
15158
15361
|
'generate_load',
|
|
15362
|
+
'amrutha_item_upserted',
|
|
15363
|
+
'amrutha_item_deleted',
|
|
15159
15364
|
'transaction_upserted',
|
|
15160
15365
|
'organization_transaction_upserted',
|
|
15161
15366
|
'organization_transaction_deleted',
|
|
@@ -15216,6 +15421,8 @@ T['io.flow.v0.enums.event_type'] = PropTypes.oneOf([
|
|
|
15216
15421
|
'order_upserted_v2',
|
|
15217
15422
|
'order_identifier_deleted_v2',
|
|
15218
15423
|
'order_identifier_upserted_v3',
|
|
15424
|
+
'order_state_upserted',
|
|
15425
|
+
'order_state_deleted',
|
|
15219
15426
|
'fraud_status_changed',
|
|
15220
15427
|
'center_upserted',
|
|
15221
15428
|
'center_deleted',
|
|
@@ -15240,6 +15447,8 @@ T['io.flow.v0.enums.event_type'] = PropTypes.oneOf([
|
|
|
15240
15447
|
'item_origin_deleted',
|
|
15241
15448
|
'harmonized_landed_cost_upserted',
|
|
15242
15449
|
'fully_harmonized_item_upserted',
|
|
15450
|
+
'tariff_codes_upserted',
|
|
15451
|
+
'tariff_codes_deleted',
|
|
15243
15452
|
'label_deleted_v2',
|
|
15244
15453
|
'label_upserted_v2',
|
|
15245
15454
|
'notification_upserted_v2',
|
|
@@ -16389,6 +16598,18 @@ T['io.flow.apple.pay.v0.models.apple_pay_payment_data'] = PropTypes.exact({
|
|
|
16389
16598
|
paymentData: PropTypes.object.isRequired,
|
|
16390
16599
|
});
|
|
16391
16600
|
|
|
16601
|
+
T['io.flow.tech.onboarding.playground.v0.enums.chenglin_item_type'] = PropTypes.oneOf(['physical', 'digital']);
|
|
16602
|
+
|
|
16603
|
+
T['io.flow.tech.onboarding.playground.v0.models.tech_onboarding_description'] = PropTypes.exact({
|
|
16604
|
+
description: PropTypes.string.isRequired,
|
|
16605
|
+
});
|
|
16606
|
+
|
|
16607
|
+
T['io.flow.ben.test.internal.v0.models.generate_load_rate'] = PropTypes.exact({
|
|
16608
|
+
organization_ids: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
16609
|
+
events_per_second: PropTypes.number.isRequired,
|
|
16610
|
+
duration_seconds: PropTypes.number.isRequired,
|
|
16611
|
+
});
|
|
16612
|
+
|
|
16392
16613
|
T['io.flow.ben.test.internal.v0.models.test_form'] = PropTypes.exact({
|
|
16393
16614
|
name: PropTypes.string.isRequired,
|
|
16394
16615
|
});
|
|
@@ -16460,6 +16681,8 @@ export const allocationUpsertedV2 = T['io.flow.v0.models.allocation_upserted_v2'
|
|
|
16460
16681
|
export const allocationV2 = T['io.flow.v0.models.allocation_v2'];
|
|
16461
16682
|
export const amountMargin = T['io.flow.v0.models.amount_margin'];
|
|
16462
16683
|
export const amountMarginForm = T['io.flow.v0.models.amount_margin_form'];
|
|
16684
|
+
export const amruthaItemDeleted = T['io.flow.v0.models.amrutha_item_deleted'];
|
|
16685
|
+
export const amruthaItemUpserted = T['io.flow.v0.models.amrutha_item_upserted'];
|
|
16463
16686
|
export const analyticsExportType = T['io.flow.v0.models.analytics_export_type'];
|
|
16464
16687
|
export const applePayMerchantValidationPayload = T['io.flow.v0.models.apple_pay_merchant_validation_payload'];
|
|
16465
16688
|
export const applepaySdkCreateResultActionDetails = T['io.flow.v0.models.applepay_sdk_create_result_action_details'];
|
|
@@ -17033,6 +17256,7 @@ export const harmonizationDocument = T['io.flow.v0.models.harmonization_document
|
|
|
17033
17256
|
export const harmonizationHs10ExportType = T['io.flow.v0.models.harmonization_hs10_export_type'];
|
|
17034
17257
|
export const harmonizationHs6ExportType = T['io.flow.v0.models.harmonization_hs6_export_type'];
|
|
17035
17258
|
export const harmonizationOverviewExportType = T['io.flow.v0.models.harmonization_overview_export_type'];
|
|
17259
|
+
export const harmonizationTariffCode = T['io.flow.v0.models.harmonization_tariff_code'];
|
|
17036
17260
|
export const harmonizationTariffCodesExportType = T['io.flow.v0.models.harmonization_tariff_codes_export_type'];
|
|
17037
17261
|
export const harmonizedCategoryReference = T['io.flow.v0.models.harmonized_category_reference'];
|
|
17038
17262
|
export const harmonizedItem = T['io.flow.v0.models.harmonized_item'];
|
|
@@ -17349,6 +17573,14 @@ export const orderRulesSummary = T['io.flow.v0.models.order_rules_summary'];
|
|
|
17349
17573
|
export const orderServiceChange = T['io.flow.v0.models.order_service_change'];
|
|
17350
17574
|
export const orderServiceChangeForm = T['io.flow.v0.models.order_service_change_form'];
|
|
17351
17575
|
export const orderServiceChangeRequestData = T['io.flow.v0.models.order_service_change_request_data'];
|
|
17576
|
+
export const orderState = T['io.flow.v0.models.order_state'];
|
|
17577
|
+
export const orderStateDeleted = T['io.flow.v0.models.order_state_deleted'];
|
|
17578
|
+
export const orderStateRejectionReason = T['io.flow.v0.unions.order_state_rejection_reason'];
|
|
17579
|
+
export const orderStateRejectionReasonDomesticOrder = T['io.flow.v0.models.order_state_rejection_reason_domestic_order'];
|
|
17580
|
+
export const orderStateRejectionReasonItemsEmpty = T['io.flow.v0.models.order_state_rejection_reason_items_empty'];
|
|
17581
|
+
export const orderStateRejectionReasonRestrictedItem = T['io.flow.v0.models.order_state_rejection_reason_restricted_item'];
|
|
17582
|
+
export const orderStateStatus = T['io.flow.v0.enums.order_state_status'];
|
|
17583
|
+
export const orderStateUpserted = T['io.flow.v0.models.order_state_upserted'];
|
|
17352
17584
|
export const orderStatus = T['io.flow.v0.enums.order_status'];
|
|
17353
17585
|
export const orderStorage = T['io.flow.v0.enums.order_storage'];
|
|
17354
17586
|
export const orderSubmissionForm = T['io.flow.v0.models.order_submission_form'];
|
|
@@ -17684,6 +17916,7 @@ export const rateUpsertedV3 = T['io.flow.v0.models.rate_upserted_v3'];
|
|
|
17684
17916
|
export const rateVersion = T['io.flow.v0.models.rate_version'];
|
|
17685
17917
|
export const ratecard = T['io.flow.v0.models.ratecard'];
|
|
17686
17918
|
export const ratecardCarrierSummary = T['io.flow.v0.models.ratecard_carrier_summary'];
|
|
17919
|
+
export const ratecardData = T['io.flow.v0.models.ratecard_data'];
|
|
17687
17920
|
export const ratecardDeleted = T['io.flow.v0.models.ratecard_deleted'];
|
|
17688
17921
|
export const ratecardEstimate = T['io.flow.v0.unions.ratecard_estimate'];
|
|
17689
17922
|
export const ratecardEstimateForm = T['io.flow.v0.models.ratecard_estimate_form'];
|
|
@@ -17975,6 +18208,9 @@ export const surchargeResponsibleParty = T['io.flow.v0.enums.surcharge_responsib
|
|
|
17975
18208
|
export const surchargeResponsiblePartyDisplay = T['io.flow.v0.models.surcharge_responsible_party_display'];
|
|
17976
18209
|
export const surchargeSetting = T['io.flow.v0.models.surcharge_setting'];
|
|
17977
18210
|
export const surchargeSettingDisplay = T['io.flow.v0.models.surcharge_setting_display'];
|
|
18211
|
+
export const tariffCodes = T['io.flow.v0.models.tariff_codes'];
|
|
18212
|
+
export const tariffCodesDeleted = T['io.flow.v0.models.tariff_codes_deleted'];
|
|
18213
|
+
export const tariffCodesUpserted = T['io.flow.v0.models.tariff_codes_upserted'];
|
|
17978
18214
|
export const tax = T['io.flow.v0.models.tax'];
|
|
17979
18215
|
export const taxApplicability = T['io.flow.v0.enums.tax_applicability'];
|
|
17980
18216
|
export const taxBreakdown = T['io.flow.v0.models.tax_breakdown'];
|
|
@@ -18077,6 +18313,8 @@ export const transactionMetadataChannelOrganizationTransaction = T['io.flow.v0.m
|
|
|
18077
18313
|
export const transactionMetadataFailedPayout = T['io.flow.v0.models.transaction_metadata_failed_payout'];
|
|
18078
18314
|
export const transactionMetadataFailedPayoutReference = T['io.flow.v0.models.transaction_metadata_failed_payout_reference'];
|
|
18079
18315
|
export const transactionMetadataManual = T['io.flow.v0.models.transaction_metadata_manual'];
|
|
18316
|
+
export const transactionMetadataMerchantFee = T['io.flow.v0.models.transaction_metadata_merchant_fee'];
|
|
18317
|
+
export const transactionMetadataMerchantFeeItem = T['io.flow.v0.models.transaction_metadata_merchant_fee_item'];
|
|
18080
18318
|
export const transactionMetadataOriginalTransaction = T['io.flow.v0.models.transaction_metadata_original_transaction'];
|
|
18081
18319
|
export const transactionMetadataOutboundTransaction = T['io.flow.v0.models.transaction_metadata_outbound_transaction'];
|
|
18082
18320
|
export const transactionMetadataPaymentTransaction = T['io.flow.v0.models.transaction_metadata_payment_transaction'];
|