@flowio/api-internal-prop-types 9.24.121 → 9.24.123
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 +483 -73
- package/lib/api-internal.js +1 -1
- package/package.json +2 -2
- package/src/api-internal.d.ts +483 -73
- package/src/api-internal.js +1091 -623
package/src/api-internal.js
CHANGED
|
@@ -53,19 +53,6 @@ T['io.flow.organization.v0.models.country_picker'] = PropTypes.exact({
|
|
|
53
53
|
source: T['io.flow.organization.v0.enums.country_picker_source'].isRequired,
|
|
54
54
|
});
|
|
55
55
|
|
|
56
|
-
T['io.flow.sellability.v0.enums.sellability_error_code'] = PropTypes.oneOf([
|
|
57
|
-
'insufficient_details',
|
|
58
|
-
'ineligible_category',
|
|
59
|
-
'wait_for_high_fidelity',
|
|
60
|
-
'external_service_unavailable',
|
|
61
|
-
]);
|
|
62
|
-
|
|
63
|
-
T['io.flow.sellability.v0.models.sellability_error'] = PropTypes.exact({
|
|
64
|
-
discriminator: PropTypes.oneOf(['sellability_error']).isRequired,
|
|
65
|
-
code: T['io.flow.sellability.v0.enums.sellability_error_code'].isRequired,
|
|
66
|
-
messages: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
67
|
-
});
|
|
68
|
-
|
|
69
56
|
T['io.flow.sellability.v0.enums.sellability_request_status'] = PropTypes.oneOf(['commit']);
|
|
70
57
|
T['io.flow.fraud.v0.enums.fraud_email_rule_decision'] = PropTypes.oneOf(['approved', 'declined']);
|
|
71
58
|
|
|
@@ -265,6 +252,16 @@ T['io.flow.permission.v0.models.permitted_route'] = PropTypes.exact({
|
|
|
265
252
|
|
|
266
253
|
T['io.flow.permission.v0.enums.authentication_technique'] = PropTypes.oneOf(['anonymous', 'session', 'token', 'partner_token', 'user']);
|
|
267
254
|
|
|
255
|
+
T['io.flow.inventory.v0.models.generic_reservation_error'] = PropTypes.exact({
|
|
256
|
+
code: PropTypes.oneOf(['generic_reservation_error']).isRequired,
|
|
257
|
+
messages: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
258
|
+
});
|
|
259
|
+
|
|
260
|
+
T['io.flow.inventory.v0.models.external_api_timeout_reservation_error'] = PropTypes.exact({
|
|
261
|
+
code: PropTypes.oneOf(['external_api_timeout']).isRequired,
|
|
262
|
+
messages: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
263
|
+
});
|
|
264
|
+
|
|
268
265
|
T['io.flow.inventory.v0.models.reservation_item_form'] = PropTypes.exact({
|
|
269
266
|
item_number: PropTypes.string.isRequired,
|
|
270
267
|
quantity: PropTypes.number.isRequired,
|
|
@@ -279,6 +276,23 @@ T['io.flow.inventory.v0.models.reservation_item_reference'] = PropTypes.exact({
|
|
|
279
276
|
number: PropTypes.string.isRequired,
|
|
280
277
|
});
|
|
281
278
|
|
|
279
|
+
T['io.flow.inventory.v0.models.reservation_item'] = PropTypes.exact({
|
|
280
|
+
item: T['io.flow.inventory.v0.models.reservation_item_reference'].isRequired,
|
|
281
|
+
quantity: PropTypes.number.isRequired,
|
|
282
|
+
});
|
|
283
|
+
|
|
284
|
+
T['io.flow.inventory.v0.models.reservation_order_reference'] = PropTypes.exact({
|
|
285
|
+
number: PropTypes.string.isRequired,
|
|
286
|
+
});
|
|
287
|
+
|
|
288
|
+
T['io.flow.inventory.v0.models.reservation'] = PropTypes.exact({
|
|
289
|
+
id: PropTypes.string.isRequired,
|
|
290
|
+
key: PropTypes.string.isRequired,
|
|
291
|
+
order: T['io.flow.inventory.v0.models.reservation_order_reference'],
|
|
292
|
+
items: PropTypes.arrayOf(T['io.flow.inventory.v0.models.reservation_item']).isRequired,
|
|
293
|
+
reserved_until: PropTypes.string,
|
|
294
|
+
});
|
|
295
|
+
|
|
282
296
|
T['io.flow.inventory.v0.models.pfs_inventory_check_response_item'] = PropTypes.exact({
|
|
283
297
|
number: PropTypes.string.isRequired,
|
|
284
298
|
ats: PropTypes.number.isRequired,
|
|
@@ -295,6 +309,18 @@ T['io.flow.inventory.v0.models.no_inventory_reservation_error_item'] = PropTypes
|
|
|
295
309
|
available_quantity: PropTypes.number.isRequired,
|
|
296
310
|
});
|
|
297
311
|
|
|
312
|
+
T['io.flow.inventory.v0.models.no_inventory_reservation_error'] = PropTypes.exact({
|
|
313
|
+
code: PropTypes.oneOf(['no_inventory']).isRequired,
|
|
314
|
+
messages: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
315
|
+
items: PropTypes.arrayOf(T['io.flow.inventory.v0.models.no_inventory_reservation_error_item']).isRequired,
|
|
316
|
+
});
|
|
317
|
+
|
|
318
|
+
T['io.flow.inventory.v0.unions.reservation_error'] = PropTypes.oneOfType([
|
|
319
|
+
T['io.flow.inventory.v0.models.no_inventory_reservation_error'],
|
|
320
|
+
T['io.flow.inventory.v0.models.external_api_timeout_reservation_error'],
|
|
321
|
+
T['io.flow.inventory.v0.models.generic_reservation_error'],
|
|
322
|
+
]);
|
|
323
|
+
|
|
298
324
|
T['io.flow.inventory.v0.enums.update_type'] = PropTypes.oneOf(['change', 'set']);
|
|
299
325
|
|
|
300
326
|
T['io.flow.inventory.v0.models.inventory_update_form'] = PropTypes.exact({
|
|
@@ -739,45 +765,6 @@ T['io.flow.ratecard.v0.models.ratecard_region_reference'] = PropTypes.exact({
|
|
|
739
765
|
id: PropTypes.string.isRequired,
|
|
740
766
|
});
|
|
741
767
|
|
|
742
|
-
T['io.flow.inventory.v0.models.generic_reservation_error'] = PropTypes.exact({
|
|
743
|
-
code: PropTypes.oneOf(['generic_reservation_error']).isRequired,
|
|
744
|
-
messages: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
745
|
-
});
|
|
746
|
-
|
|
747
|
-
T['io.flow.inventory.v0.models.external_api_timeout_reservation_error'] = PropTypes.exact({
|
|
748
|
-
code: PropTypes.oneOf(['external_api_timeout']).isRequired,
|
|
749
|
-
messages: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
750
|
-
});
|
|
751
|
-
|
|
752
|
-
T['io.flow.inventory.v0.models.no_inventory_reservation_error'] = PropTypes.exact({
|
|
753
|
-
code: PropTypes.oneOf(['no_inventory']).isRequired,
|
|
754
|
-
messages: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
755
|
-
items: PropTypes.arrayOf(T['io.flow.inventory.v0.models.no_inventory_reservation_error_item']).isRequired,
|
|
756
|
-
});
|
|
757
|
-
|
|
758
|
-
T['io.flow.inventory.v0.unions.reservation_error'] = PropTypes.oneOfType([
|
|
759
|
-
T['io.flow.inventory.v0.models.no_inventory_reservation_error'],
|
|
760
|
-
T['io.flow.inventory.v0.models.external_api_timeout_reservation_error'],
|
|
761
|
-
T['io.flow.inventory.v0.models.generic_reservation_error'],
|
|
762
|
-
]);
|
|
763
|
-
|
|
764
|
-
T['io.flow.inventory.v0.models.reservation_item'] = PropTypes.exact({
|
|
765
|
-
item: T['io.flow.inventory.v0.models.reservation_item_reference'].isRequired,
|
|
766
|
-
quantity: PropTypes.number.isRequired,
|
|
767
|
-
});
|
|
768
|
-
|
|
769
|
-
T['io.flow.inventory.v0.models.reservation_order_reference'] = PropTypes.exact({
|
|
770
|
-
number: PropTypes.string.isRequired,
|
|
771
|
-
});
|
|
772
|
-
|
|
773
|
-
T['io.flow.inventory.v0.models.reservation'] = PropTypes.exact({
|
|
774
|
-
id: PropTypes.string.isRequired,
|
|
775
|
-
key: PropTypes.string.isRequired,
|
|
776
|
-
order: T['io.flow.inventory.v0.models.reservation_order_reference'],
|
|
777
|
-
items: PropTypes.arrayOf(T['io.flow.inventory.v0.models.reservation_item']).isRequired,
|
|
778
|
-
reserved_until: PropTypes.string,
|
|
779
|
-
});
|
|
780
|
-
|
|
781
768
|
T['io.flow.experience.v0.models.order_number_generator_hexadecimal'] = PropTypes.exact({
|
|
782
769
|
discriminator: PropTypes.oneOf(['hexadecimal']).isRequired,
|
|
783
770
|
length: PropTypes.number.isRequired,
|
|
@@ -871,6 +858,23 @@ T['io.flow.experience.v0.models.order_options'] = PropTypes.exact({
|
|
|
871
858
|
storage: T['io.flow.experience.v0.enums.order_storage'].isRequired,
|
|
872
859
|
});
|
|
873
860
|
|
|
861
|
+
T['io.flow.experience.v0.enums.order_error_code'] = PropTypes.oneOf([
|
|
862
|
+
'generic_error',
|
|
863
|
+
'order_item_not_available',
|
|
864
|
+
'order_identifier_error',
|
|
865
|
+
'authorization_invalid',
|
|
866
|
+
'domestic_shipping_unavailable',
|
|
867
|
+
'shipping_unavailable',
|
|
868
|
+
'value_threshold_exceeded',
|
|
869
|
+
'invalid_currency',
|
|
870
|
+
'invalid_country',
|
|
871
|
+
'invalid_region',
|
|
872
|
+
'invalid_language',
|
|
873
|
+
'item_out_of_stock',
|
|
874
|
+
'gift_card_not_accepted',
|
|
875
|
+
'total_changed',
|
|
876
|
+
]);
|
|
877
|
+
|
|
874
878
|
T['io.flow.experience.v0.models.order_rule_reference'] = PropTypes.exact({
|
|
875
879
|
id: PropTypes.string.isRequired,
|
|
876
880
|
key: PropTypes.string.isRequired,
|
|
@@ -1243,6 +1247,20 @@ T['io.flow.shopify.markets.internal.event.v0.models.shopify_markets_metrics_dele
|
|
|
1243
1247
|
id: PropTypes.string.isRequired,
|
|
1244
1248
|
});
|
|
1245
1249
|
|
|
1250
|
+
T['io.flow.shopify.markets.internal.event.v0.models.shopify_product_taxonomy_attribute_value_deleted'] = PropTypes.exact({
|
|
1251
|
+
discriminator: PropTypes.oneOf(['shopify_product_taxonomy_attribute_value_deleted']).isRequired,
|
|
1252
|
+
event_id: PropTypes.string.isRequired,
|
|
1253
|
+
timestamp: PropTypes.string.isRequired,
|
|
1254
|
+
id: PropTypes.string.isRequired,
|
|
1255
|
+
});
|
|
1256
|
+
|
|
1257
|
+
T['io.flow.shopify.markets.internal.event.v0.models.shopify_product_taxonomy_attribute_deleted'] = PropTypes.exact({
|
|
1258
|
+
discriminator: PropTypes.oneOf(['shopify_product_taxonomy_attribute_deleted']).isRequired,
|
|
1259
|
+
event_id: PropTypes.string.isRequired,
|
|
1260
|
+
timestamp: PropTypes.string.isRequired,
|
|
1261
|
+
id: PropTypes.string.isRequired,
|
|
1262
|
+
});
|
|
1263
|
+
|
|
1246
1264
|
T['io.flow.shopify.markets.internal.event.v0.models.shopify_markets_shop_statistics_deleted'] = PropTypes.exact({
|
|
1247
1265
|
discriminator: PropTypes.oneOf(['shopify_markets_shop_statistics_deleted']).isRequired,
|
|
1248
1266
|
event_id: PropTypes.string.isRequired,
|
|
@@ -1267,6 +1285,36 @@ T['io.flow.shopify.markets.internal.event.v0.models.shopify_markets_shop_deleted
|
|
|
1267
1285
|
id: PropTypes.string.isRequired,
|
|
1268
1286
|
});
|
|
1269
1287
|
|
|
1288
|
+
T['io.flow.shopify.markets.internal.v0.models.shopify_product_taxonomy_attribute_value'] = PropTypes.exact({
|
|
1289
|
+
id: PropTypes.string.isRequired,
|
|
1290
|
+
attribute_id: PropTypes.string.isRequired,
|
|
1291
|
+
handle: PropTypes.string.isRequired,
|
|
1292
|
+
name: PropTypes.string.isRequired,
|
|
1293
|
+
friendly_id: PropTypes.string.isRequired,
|
|
1294
|
+
});
|
|
1295
|
+
|
|
1296
|
+
T['io.flow.shopify.markets.internal.event.v0.models.shopify_product_taxonomy_attribute_value_upserted'] = PropTypes.exact({
|
|
1297
|
+
discriminator: PropTypes.oneOf(['shopify_product_taxonomy_attribute_value_upserted']).isRequired,
|
|
1298
|
+
event_id: PropTypes.string.isRequired,
|
|
1299
|
+
timestamp: PropTypes.string.isRequired,
|
|
1300
|
+
shopify_product_taxonomy_attribute_value: T['io.flow.shopify.markets.internal.v0.models.shopify_product_taxonomy_attribute_value'].isRequired,
|
|
1301
|
+
});
|
|
1302
|
+
|
|
1303
|
+
T['io.flow.shopify.markets.internal.v0.models.shopify_product_taxonomy_attribute'] = PropTypes.exact({
|
|
1304
|
+
id: PropTypes.string.isRequired,
|
|
1305
|
+
handle: PropTypes.string.isRequired,
|
|
1306
|
+
name: PropTypes.string.isRequired,
|
|
1307
|
+
friendly_id: PropTypes.string.isRequired,
|
|
1308
|
+
description: PropTypes.string,
|
|
1309
|
+
});
|
|
1310
|
+
|
|
1311
|
+
T['io.flow.shopify.markets.internal.event.v0.models.shopify_product_taxonomy_attribute_upserted'] = PropTypes.exact({
|
|
1312
|
+
discriminator: PropTypes.oneOf(['shopify_product_taxonomy_attribute_upserted']).isRequired,
|
|
1313
|
+
event_id: PropTypes.string.isRequired,
|
|
1314
|
+
timestamp: PropTypes.string.isRequired,
|
|
1315
|
+
shopify_product_taxonomy_attribute: T['io.flow.shopify.markets.internal.v0.models.shopify_product_taxonomy_attribute'].isRequired,
|
|
1316
|
+
});
|
|
1317
|
+
|
|
1270
1318
|
T['io.flow.shopify.markets.internal.v0.models.shopify_order_risk_assessment'] = PropTypes.exact({
|
|
1271
1319
|
id: PropTypes.string.isRequired,
|
|
1272
1320
|
risk_level: PropTypes.string.isRequired,
|
|
@@ -1422,6 +1470,8 @@ T['io.flow.channel.internal.v0.models.channel_order_acceptance_failure'] = PropT
|
|
|
1422
1470
|
reason: PropTypes.string.isRequired,
|
|
1423
1471
|
});
|
|
1424
1472
|
|
|
1473
|
+
T['io.flow.order.price.v0.enums.order_price_fee_type'] = PropTypes.oneOf(['service', 'fx', 'tax', 'duties', 'tax_and_duties', 'product']);
|
|
1474
|
+
|
|
1425
1475
|
T['io.flow.order.price.v0.enums.order_price_detail_component_key'] = PropTypes.oneOf([
|
|
1426
1476
|
'adjustment',
|
|
1427
1477
|
'vat_deminimis',
|
|
@@ -2675,6 +2725,7 @@ T['io.flow.shopify.external.v0.models.graphql_product_image'] = PropTypes.exact(
|
|
|
2675
2725
|
T['io.flow.shopify.external.v0.models.graphql_metaobject_field'] = PropTypes.exact({
|
|
2676
2726
|
key: PropTypes.string.isRequired,
|
|
2677
2727
|
value: PropTypes.string,
|
|
2728
|
+
type: PropTypes.string,
|
|
2678
2729
|
});
|
|
2679
2730
|
|
|
2680
2731
|
T['io.flow.shopify.external.v0.models.graphql_metaobject'] = PropTypes.exact({
|
|
@@ -3268,19 +3319,6 @@ T['io.flow.shopify.markets.internal.v0.models.shopify_markets_subsidiary_company
|
|
|
3268
3319
|
incorporation_country: T['io.flow.shopify.markets.internal.v0.models.shopify_markets_incorporation_country'],
|
|
3269
3320
|
});
|
|
3270
3321
|
|
|
3271
|
-
T['io.flow.channel.shopify.internal.v0.enums.catalog_publication_owner'] = PropTypes.oneOf(['shopify', 'globale']);
|
|
3272
|
-
|
|
3273
|
-
T['io.flow.channel.shopify.internal.v0.models.shopify_catalog_publication'] = PropTypes.exact({
|
|
3274
|
-
owner: T['io.flow.channel.shopify.internal.v0.enums.catalog_publication_owner'].isRequired,
|
|
3275
|
-
});
|
|
3276
|
-
|
|
3277
|
-
T['io.flow.channel.shopify.internal.v0.models.shopify_metadata'] = PropTypes.exact({
|
|
3278
|
-
domain: PropTypes.string.isRequired,
|
|
3279
|
-
myshopify_domain: PropTypes.string.isRequired,
|
|
3280
|
-
catalog_publication: T['io.flow.channel.shopify.internal.v0.models.shopify_catalog_publication'],
|
|
3281
|
-
token: PropTypes.string.isRequired,
|
|
3282
|
-
});
|
|
3283
|
-
|
|
3284
3322
|
T['io.flow.shopify.markets.internal.v0.models.shopify_markets_internal_order_metrics'] = PropTypes.exact({
|
|
3285
3323
|
total_order_count: PropTypes.number.isRequired,
|
|
3286
3324
|
});
|
|
@@ -3363,6 +3401,37 @@ T['io.flow.shopify.markets.internal.event.v0.models.order_tax_and_duty_inclusivi
|
|
|
3363
3401
|
order_tax_and_duty_inclusivity_setting: T['io.flow.shopify.markets.internal.v0.models.order_tax_and_duty_inclusivity_setting'].isRequired,
|
|
3364
3402
|
});
|
|
3365
3403
|
|
|
3404
|
+
T['io.flow.shopify.markets.internal.v0.enums.sellability_status'] = PropTypes.oneOf(['complete', 'incomplete']);
|
|
3405
|
+
|
|
3406
|
+
T['io.flow.shopify.markets.internal.v0.models.channel_organization_sellability_status_put_form'] = PropTypes.exact({
|
|
3407
|
+
status: T['io.flow.shopify.markets.internal.v0.enums.sellability_status'].isRequired,
|
|
3408
|
+
});
|
|
3409
|
+
|
|
3410
|
+
T['io.flow.shopify.markets.internal.v0.models.channel_organization_sellability_status'] = PropTypes.exact({
|
|
3411
|
+
status: T['io.flow.shopify.markets.internal.v0.enums.sellability_status'].isRequired,
|
|
3412
|
+
});
|
|
3413
|
+
|
|
3414
|
+
T['io.flow.channel.shopify.internal.v0.enums.catalog_publication_owner'] = PropTypes.oneOf(['shopify', 'globale']);
|
|
3415
|
+
|
|
3416
|
+
T['io.flow.channel.shopify.internal.v0.models.shopify_catalog_publication'] = PropTypes.exact({
|
|
3417
|
+
owner: T['io.flow.channel.shopify.internal.v0.enums.catalog_publication_owner'].isRequired,
|
|
3418
|
+
});
|
|
3419
|
+
|
|
3420
|
+
T['io.flow.channel.shopify.internal.v0.models.shopify_metadata'] = PropTypes.exact({
|
|
3421
|
+
domain: PropTypes.string.isRequired,
|
|
3422
|
+
myshopify_domain: PropTypes.string.isRequired,
|
|
3423
|
+
catalog_publication: T['io.flow.channel.shopify.internal.v0.models.shopify_catalog_publication'],
|
|
3424
|
+
token: PropTypes.string.isRequired,
|
|
3425
|
+
});
|
|
3426
|
+
|
|
3427
|
+
T['io.flow.shopify.markets.internal.v0.models.channel_organization_publication_owner_put_form'] = PropTypes.exact({
|
|
3428
|
+
owner: T['io.flow.channel.shopify.internal.v0.enums.catalog_publication_owner'].isRequired,
|
|
3429
|
+
});
|
|
3430
|
+
|
|
3431
|
+
T['io.flow.shopify.markets.internal.v0.models.channel_organization_publication_owner'] = PropTypes.exact({
|
|
3432
|
+
owner: T['io.flow.channel.shopify.internal.v0.enums.catalog_publication_owner'].isRequired,
|
|
3433
|
+
});
|
|
3434
|
+
|
|
3366
3435
|
T['io.flow.shopify.markets.internal.v0.enums.channel_order_fulfillment_status_code'] = PropTypes.oneOf(['unfulfilled', 'fulfilled', 'partial', 'cancelled']);
|
|
3367
3436
|
|
|
3368
3437
|
T['io.flow.shopify.markets.internal.v0.models.channel_order_summary_fulfillment_details'] = PropTypes.exact({
|
|
@@ -3387,6 +3456,7 @@ T['io.flow.channel.internal.v0.models.channel_order_acceptance'] = PropTypes.exa
|
|
|
3387
3456
|
channel_id: PropTypes.string.isRequired,
|
|
3388
3457
|
external_order_reference: PropTypes.string.isRequired,
|
|
3389
3458
|
payment_request_id: PropTypes.string,
|
|
3459
|
+
order_payment_request_ids: PropTypes.arrayOf(PropTypes.string),
|
|
3390
3460
|
order_edit_payment_request_ids: PropTypes.arrayOf(PropTypes.string),
|
|
3391
3461
|
status: T['io.flow.channel.internal.v0.enums.channel_order_acceptance_status'].isRequired,
|
|
3392
3462
|
reasons: PropTypes.arrayOf(T['io.flow.channel.internal.v0.models.channel_order_acceptance_reason']).isRequired,
|
|
@@ -8074,23 +8144,6 @@ T['io.flow.merchant.onboarding.v0.unions.merchant_application_put_form'] = PropT
|
|
|
8074
8144
|
T['io.flow.merchant.onboarding.v0.models.shopify_merchant_application_put_form'],
|
|
8075
8145
|
]);
|
|
8076
8146
|
|
|
8077
|
-
T['io.flow.experience.v0.enums.order_error_code'] = PropTypes.oneOf([
|
|
8078
|
-
'generic_error',
|
|
8079
|
-
'order_item_not_available',
|
|
8080
|
-
'order_identifier_error',
|
|
8081
|
-
'authorization_invalid',
|
|
8082
|
-
'domestic_shipping_unavailable',
|
|
8083
|
-
'shipping_unavailable',
|
|
8084
|
-
'value_threshold_exceeded',
|
|
8085
|
-
'invalid_currency',
|
|
8086
|
-
'invalid_country',
|
|
8087
|
-
'invalid_region',
|
|
8088
|
-
'invalid_language',
|
|
8089
|
-
'item_out_of_stock',
|
|
8090
|
-
'gift_card_not_accepted',
|
|
8091
|
-
'total_changed',
|
|
8092
|
-
]);
|
|
8093
|
-
|
|
8094
8147
|
T['io.flow.query.builder.v0.unions.available_filter'] = PropTypes.oneOfType([
|
|
8095
8148
|
T['io.flow.query.builder.v0.models.available_filter_structured'],
|
|
8096
8149
|
T['io.flow.query.builder.v0.models.available_filter_unstructured'],
|
|
@@ -8509,6 +8562,20 @@ T['io.flow.internal.v0.models.shopify_markets_metrics_deleted'] = PropTypes.exac
|
|
|
8509
8562
|
id: PropTypes.string.isRequired,
|
|
8510
8563
|
});
|
|
8511
8564
|
|
|
8565
|
+
T['io.flow.internal.v0.models.shopify_product_taxonomy_attribute_value_deleted'] = PropTypes.exact({
|
|
8566
|
+
discriminator: PropTypes.oneOf(['shopify_product_taxonomy_attribute_value_deleted']).isRequired,
|
|
8567
|
+
event_id: PropTypes.string.isRequired,
|
|
8568
|
+
timestamp: PropTypes.string.isRequired,
|
|
8569
|
+
id: PropTypes.string.isRequired,
|
|
8570
|
+
});
|
|
8571
|
+
|
|
8572
|
+
T['io.flow.internal.v0.models.shopify_product_taxonomy_attribute_deleted'] = PropTypes.exact({
|
|
8573
|
+
discriminator: PropTypes.oneOf(['shopify_product_taxonomy_attribute_deleted']).isRequired,
|
|
8574
|
+
event_id: PropTypes.string.isRequired,
|
|
8575
|
+
timestamp: PropTypes.string.isRequired,
|
|
8576
|
+
id: PropTypes.string.isRequired,
|
|
8577
|
+
});
|
|
8578
|
+
|
|
8512
8579
|
T['io.flow.internal.v0.models.shopify_markets_shop_statistics_deleted'] = PropTypes.exact({
|
|
8513
8580
|
discriminator: PropTypes.oneOf(['shopify_markets_shop_statistics_deleted']).isRequired,
|
|
8514
8581
|
event_id: PropTypes.string.isRequired,
|
|
@@ -8608,6 +8675,14 @@ T['io.flow.internal.v0.models.paypal_dispute_deleted'] = PropTypes.exact({
|
|
|
8608
8675
|
id: PropTypes.string.isRequired,
|
|
8609
8676
|
});
|
|
8610
8677
|
|
|
8678
|
+
T['io.flow.internal.v0.models.order_refund_transaction_deleted'] = PropTypes.exact({
|
|
8679
|
+
discriminator: PropTypes.oneOf(['order_refund_transaction_deleted']).isRequired,
|
|
8680
|
+
event_id: PropTypes.string.isRequired,
|
|
8681
|
+
timestamp: PropTypes.string.isRequired,
|
|
8682
|
+
organization: PropTypes.string.isRequired,
|
|
8683
|
+
id: PropTypes.string.isRequired,
|
|
8684
|
+
});
|
|
8685
|
+
|
|
8611
8686
|
T['io.flow.internal.v0.models.organization_payment_setting_deleted'] = PropTypes.exact({
|
|
8612
8687
|
discriminator: PropTypes.oneOf(['organization_payment_setting_deleted']).isRequired,
|
|
8613
8688
|
event_id: PropTypes.string.isRequired,
|
|
@@ -8758,6 +8833,13 @@ T['io.flow.internal.v0.models.label_request_error_deleted'] = PropTypes.exact({
|
|
|
8758
8833
|
id: PropTypes.string.isRequired,
|
|
8759
8834
|
});
|
|
8760
8835
|
|
|
8836
|
+
T['io.flow.internal.v0.models.merchant_override_deleted'] = PropTypes.exact({
|
|
8837
|
+
discriminator: PropTypes.oneOf(['merchant_override_deleted']).isRequired,
|
|
8838
|
+
event_id: PropTypes.string.isRequired,
|
|
8839
|
+
timestamp: PropTypes.string.isRequired,
|
|
8840
|
+
id: PropTypes.string.isRequired,
|
|
8841
|
+
});
|
|
8842
|
+
|
|
8761
8843
|
T['io.flow.internal.v0.models.import_failed'] = PropTypes.exact({
|
|
8762
8844
|
discriminator: PropTypes.oneOf(['import_failed']).isRequired,
|
|
8763
8845
|
event_id: PropTypes.string.isRequired,
|
|
@@ -9397,6 +9479,14 @@ T['io.flow.internal.v0.unions.channel_rate_metadata'] = PropTypes.oneOfType([
|
|
|
9397
9479
|
T['io.flow.internal.v0.models.channel_rate_metadata_rate'],
|
|
9398
9480
|
]);
|
|
9399
9481
|
|
|
9482
|
+
T['io.flow.internal.v0.models.fedex_carrier_label_attributes'] = PropTypes.exact({
|
|
9483
|
+
discriminator: PropTypes.oneOf(['fedex_carrier_label_attributes']).isRequired,
|
|
9484
|
+
origin_location_id: PropTypes.string,
|
|
9485
|
+
destination_location_id: PropTypes.string,
|
|
9486
|
+
});
|
|
9487
|
+
|
|
9488
|
+
T['io.flow.internal.v0.unions.carrier_label_attributes'] = PropTypes.oneOfType([T['io.flow.internal.v0.models.fedex_carrier_label_attributes']]);
|
|
9489
|
+
|
|
9400
9490
|
T['io.flow.internal.v0.models.message_stamp'] = PropTypes.exact({
|
|
9401
9491
|
discriminator: PropTypes.oneOf(['message_stamp']).isRequired,
|
|
9402
9492
|
message: PropTypes.string.isRequired,
|
|
@@ -10061,6 +10151,36 @@ T['io.flow.internal.v0.models.fulfillment_subsidy_breakdown'] = PropTypes.exact(
|
|
|
10061
10151
|
total: PropTypes.number.isRequired,
|
|
10062
10152
|
});
|
|
10063
10153
|
|
|
10154
|
+
T['io.flow.internal.v0.models.shopify_product_taxonomy_attribute_value'] = PropTypes.exact({
|
|
10155
|
+
id: PropTypes.string.isRequired,
|
|
10156
|
+
attribute_id: PropTypes.string.isRequired,
|
|
10157
|
+
handle: PropTypes.string.isRequired,
|
|
10158
|
+
name: PropTypes.string.isRequired,
|
|
10159
|
+
friendly_id: PropTypes.string.isRequired,
|
|
10160
|
+
});
|
|
10161
|
+
|
|
10162
|
+
T['io.flow.internal.v0.models.shopify_product_taxonomy_attribute_value_upserted'] = PropTypes.exact({
|
|
10163
|
+
discriminator: PropTypes.oneOf(['shopify_product_taxonomy_attribute_value_upserted']).isRequired,
|
|
10164
|
+
event_id: PropTypes.string.isRequired,
|
|
10165
|
+
timestamp: PropTypes.string.isRequired,
|
|
10166
|
+
shopify_product_taxonomy_attribute_value: T['io.flow.internal.v0.models.shopify_product_taxonomy_attribute_value'].isRequired,
|
|
10167
|
+
});
|
|
10168
|
+
|
|
10169
|
+
T['io.flow.internal.v0.models.shopify_product_taxonomy_attribute'] = PropTypes.exact({
|
|
10170
|
+
id: PropTypes.string.isRequired,
|
|
10171
|
+
handle: PropTypes.string.isRequired,
|
|
10172
|
+
name: PropTypes.string.isRequired,
|
|
10173
|
+
friendly_id: PropTypes.string.isRequired,
|
|
10174
|
+
description: PropTypes.string,
|
|
10175
|
+
});
|
|
10176
|
+
|
|
10177
|
+
T['io.flow.internal.v0.models.shopify_product_taxonomy_attribute_upserted'] = PropTypes.exact({
|
|
10178
|
+
discriminator: PropTypes.oneOf(['shopify_product_taxonomy_attribute_upserted']).isRequired,
|
|
10179
|
+
event_id: PropTypes.string.isRequired,
|
|
10180
|
+
timestamp: PropTypes.string.isRequired,
|
|
10181
|
+
shopify_product_taxonomy_attribute: T['io.flow.internal.v0.models.shopify_product_taxonomy_attribute'].isRequired,
|
|
10182
|
+
});
|
|
10183
|
+
|
|
10064
10184
|
T['io.flow.shopify.external.v0.models.product_delete'] = PropTypes.exact({
|
|
10065
10185
|
id: PropTypes.number.isRequired,
|
|
10066
10186
|
});
|
|
@@ -10223,7 +10343,6 @@ T['io.flow.internal.v0.models.shopify_order_fulfillments_snapshot_upserted'] = P
|
|
|
10223
10343
|
shopify_order_fulfillments_snapshot: T['io.flow.internal.v0.models.shopify_order_fulfillments_snapshot'].isRequired,
|
|
10224
10344
|
});
|
|
10225
10345
|
|
|
10226
|
-
T['io.flow.internal.v0.enums.shopify_monitoring_monitor_review_status'] = PropTypes.oneOf(['in_review', 'reviewed']);
|
|
10227
10346
|
T['io.flow.internal.v0.enums.shopify_monitoring_tracking_field'] = PropTypes.oneOf(['tracking_number', 'carrier_service', 'tracking_url']);
|
|
10228
10347
|
|
|
10229
10348
|
T['io.flow.internal.v0.models.shopify_monitoring_fulfillment_missing_details'] = PropTypes.exact({
|
|
@@ -10670,20 +10789,6 @@ T['io.flow.internal.v0.models.shopify_dispute_upserted'] = PropTypes.exact({
|
|
|
10670
10789
|
dispute: T['io.flow.internal.v0.models.shopify_dispute'].isRequired,
|
|
10671
10790
|
});
|
|
10672
10791
|
|
|
10673
|
-
T['io.flow.internal.v0.enums.catalog_publication_owner'] = PropTypes.oneOf(['shopify', 'globale']);
|
|
10674
|
-
|
|
10675
|
-
T['io.flow.internal.v0.models.shopify_markets_shop_form'] = PropTypes.exact({
|
|
10676
|
-
shop: PropTypes.string.isRequired,
|
|
10677
|
-
domain: PropTypes.string.isRequired,
|
|
10678
|
-
myshopify_domain: PropTypes.string.isRequired,
|
|
10679
|
-
shared_secret: PropTypes.string.isRequired,
|
|
10680
|
-
api_key: PropTypes.string,
|
|
10681
|
-
api_password: PropTypes.string,
|
|
10682
|
-
access_token: PropTypes.string,
|
|
10683
|
-
shopify_plan_name: T['io.flow.shopify.external.v0.enums.shopify_plan_name'],
|
|
10684
|
-
catalog_publication_owner: T['io.flow.internal.v0.enums.catalog_publication_owner'],
|
|
10685
|
-
});
|
|
10686
|
-
|
|
10687
10792
|
T['io.flow.fulfillment.v0.enums.ratecard_owner'] = PropTypes.oneOf(['flow', 'organization']);
|
|
10688
10793
|
|
|
10689
10794
|
T['io.flow.ratecard.v0.models.ratecard_summary'] = PropTypes.exact({
|
|
@@ -10723,11 +10828,18 @@ T['io.flow.internal.v0.models.setup_block_put_form'] = PropTypes.exact({
|
|
|
10723
10828
|
).isRequired,
|
|
10724
10829
|
});
|
|
10725
10830
|
|
|
10726
|
-
T['io.flow.
|
|
10727
|
-
|
|
10728
|
-
|
|
10729
|
-
|
|
10730
|
-
|
|
10831
|
+
T['io.flow.sellability.v0.enums.sellability_error_code'] = PropTypes.oneOf([
|
|
10832
|
+
'insufficient_details',
|
|
10833
|
+
'ineligible_category',
|
|
10834
|
+
'wait_for_high_fidelity',
|
|
10835
|
+
'external_service_unavailable',
|
|
10836
|
+
]);
|
|
10837
|
+
|
|
10838
|
+
T['io.flow.experience.v0.enums.experience_status'] = PropTypes.oneOf(['draft', 'active', 'archiving', 'archived']);
|
|
10839
|
+
|
|
10840
|
+
T['io.flow.experience.v0.models.experience_status_form'] = PropTypes.exact({
|
|
10841
|
+
status: T['io.flow.experience.v0.enums.experience_status'].isRequired,
|
|
10842
|
+
});
|
|
10731
10843
|
|
|
10732
10844
|
T['io.flow.internal.v0.models.search_experience_summary'] = PropTypes.exact({
|
|
10733
10845
|
discriminator: PropTypes.oneOf(['search_experience_summary']).isRequired,
|
|
@@ -10894,26 +11006,6 @@ T['io.flow.internal.v0.models.record_reference'] = PropTypes.exact({
|
|
|
10894
11006
|
id: PropTypes.string.isRequired,
|
|
10895
11007
|
});
|
|
10896
11008
|
|
|
10897
|
-
T['io.flow.payment.v0.models.refund_reference'] = PropTypes.exact({
|
|
10898
|
-
discriminator: PropTypes.oneOf(['refund_reference']).isRequired,
|
|
10899
|
-
id: PropTypes.string.isRequired,
|
|
10900
|
-
key: PropTypes.string.isRequired,
|
|
10901
|
-
});
|
|
10902
|
-
|
|
10903
|
-
T['io.flow.payment.v0.unions.transfer_reference'] = PropTypes.oneOfType([
|
|
10904
|
-
T['io.flow.payment.v0.models.capture_reference'],
|
|
10905
|
-
T['io.flow.payment.v0.models.refund_reference'],
|
|
10906
|
-
T['io.flow.payment.v0.models.dispute_reference'],
|
|
10907
|
-
]);
|
|
10908
|
-
|
|
10909
|
-
T['io.flow.payment.v0.models.refund_identifier'] = PropTypes.exact({
|
|
10910
|
-
id: PropTypes.string.isRequired,
|
|
10911
|
-
refund: T['io.flow.payment.v0.models.refund_reference'].isRequired,
|
|
10912
|
-
name: PropTypes.string.isRequired,
|
|
10913
|
-
identifier: PropTypes.string.isRequired,
|
|
10914
|
-
primary: PropTypes.bool.isRequired,
|
|
10915
|
-
});
|
|
10916
|
-
|
|
10917
11009
|
T['io.flow.return.v0.models.return_reason'] = PropTypes.exact({
|
|
10918
11010
|
name: PropTypes.string.isRequired,
|
|
10919
11011
|
});
|
|
@@ -10949,13 +11041,6 @@ T['io.flow.internal.v0.models.return_policy_item_result_deleted'] = PropTypes.ex
|
|
|
10949
11041
|
result: T['io.flow.catalog.return.v0.models.return_policy_item_result'].isRequired,
|
|
10950
11042
|
});
|
|
10951
11043
|
|
|
10952
|
-
T['io.flow.internal.v0.models.return_trigger_refund'] = PropTypes.exact({
|
|
10953
|
-
discriminator: PropTypes.oneOf(['by_refund']).isRequired,
|
|
10954
|
-
refund: T['io.flow.payment.v0.models.refund_reference'].isRequired,
|
|
10955
|
-
});
|
|
10956
|
-
|
|
10957
|
-
T['io.flow.internal.v0.unions.return_trigger'] = PropTypes.oneOfType([T['io.flow.internal.v0.models.return_trigger_refund']]);
|
|
10958
|
-
|
|
10959
11044
|
T['io.flow.internal.v0.models.restrictions_dailyops'] = PropTypes.exact({
|
|
10960
11045
|
id: PropTypes.string.isRequired,
|
|
10961
11046
|
report_date: PropTypes.string.isRequired,
|
|
@@ -11009,6 +11094,13 @@ T['io.flow.internal.v0.models.restrictions_dailyops_upserted'] = PropTypes.exact
|
|
|
11009
11094
|
restrictions_dailyops: T['io.flow.internal.v0.models.restrictions_dailyops'].isRequired,
|
|
11010
11095
|
});
|
|
11011
11096
|
|
|
11097
|
+
T['io.flow.internal.v0.enums.restriction_rule_activation_status'] = PropTypes.oneOf(['draft', 'active', 'inactive']);
|
|
11098
|
+
|
|
11099
|
+
T['io.flow.internal.v0.models.keyword_cancelling'] = PropTypes.exact({
|
|
11100
|
+
positive_keyword: PropTypes.string.isRequired,
|
|
11101
|
+
negative_keywords: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
11102
|
+
});
|
|
11103
|
+
|
|
11012
11104
|
T['io.flow.internal.v0.enums.restriction_rule_community_exemption'] = PropTypes.oneOf(['domestic_exemption', 'intra_eu_exemption']);
|
|
11013
11105
|
|
|
11014
11106
|
T['io.flow.internal.v0.models.restriction_rule_organization_exemption'] = PropTypes.exact({
|
|
@@ -11021,14 +11113,21 @@ T['io.flow.internal.v0.models.restriction_rule_organization_exemption'] = PropTy
|
|
|
11021
11113
|
ignored_keywords: PropTypes.arrayOf(PropTypes.string),
|
|
11022
11114
|
additional_keywords: PropTypes.arrayOf(PropTypes.string),
|
|
11023
11115
|
community_exemption_override: PropTypes.arrayOf(T['io.flow.internal.v0.enums.restriction_rule_community_exemption']),
|
|
11116
|
+
is_rule_active: PropTypes.bool,
|
|
11024
11117
|
});
|
|
11025
11118
|
|
|
11026
11119
|
T['io.flow.internal.v0.enums.restriction_organization_source'] = PropTypes.oneOf(['shopify', 'enterprise']);
|
|
11027
11120
|
T['io.flow.internal.v0.enums.restriction_action'] = PropTypes.oneOf(['prohibited', 'restricted']);
|
|
11028
11121
|
|
|
11122
|
+
T['io.flow.product.v0.models.product_taxonomy_value'] = PropTypes.exact({
|
|
11123
|
+
handle: PropTypes.string.isRequired,
|
|
11124
|
+
name: PropTypes.string.isRequired,
|
|
11125
|
+
});
|
|
11126
|
+
|
|
11029
11127
|
T['io.flow.product.v0.models.product_taxonomy_data'] = PropTypes.exact({
|
|
11030
11128
|
key: PropTypes.string.isRequired,
|
|
11031
11129
|
value: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
11130
|
+
value_obj: PropTypes.arrayOf(T['io.flow.product.v0.models.product_taxonomy_value']),
|
|
11032
11131
|
});
|
|
11033
11132
|
|
|
11034
11133
|
T['io.flow.product.v0.models.product_taxonomy_category'] = PropTypes.exact({
|
|
@@ -11140,6 +11239,24 @@ T['io.flow.internal.v0.models.restriction_item_review_decision_form'] = PropType
|
|
|
11140
11239
|
decision: T['io.flow.internal.v0.enums.restriction_decision'].isRequired,
|
|
11141
11240
|
});
|
|
11142
11241
|
|
|
11242
|
+
T['io.flow.internal.v0.enums.restriction_attribute_condition_single_operator'] = PropTypes.oneOf(['equals', 'not_equals']);
|
|
11243
|
+
|
|
11244
|
+
T['io.flow.internal.v0.models.restriction_attribute_condition_single'] = PropTypes.exact({
|
|
11245
|
+
discriminator: PropTypes.oneOf(['single']).isRequired,
|
|
11246
|
+
attribute: PropTypes.string.isRequired,
|
|
11247
|
+
operator: T['io.flow.internal.v0.enums.restriction_attribute_condition_single_operator'].isRequired,
|
|
11248
|
+
value: PropTypes.string.isRequired,
|
|
11249
|
+
});
|
|
11250
|
+
|
|
11251
|
+
T['io.flow.internal.v0.enums.restriction_attribute_condition_multiple_operator'] = PropTypes.oneOf(['in', 'not_in']);
|
|
11252
|
+
|
|
11253
|
+
T['io.flow.internal.v0.models.restriction_attribute_condition_multiple'] = PropTypes.exact({
|
|
11254
|
+
discriminator: PropTypes.oneOf(['multiple']).isRequired,
|
|
11255
|
+
attribute: PropTypes.string.isRequired,
|
|
11256
|
+
operator: T['io.flow.internal.v0.enums.restriction_attribute_condition_multiple_operator'].isRequired,
|
|
11257
|
+
values: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
11258
|
+
});
|
|
11259
|
+
|
|
11143
11260
|
T['io.flow.internal.v0.models.reporting_vat_remittance_rate'] = PropTypes.exact({
|
|
11144
11261
|
entity: PropTypes.number.isRequired,
|
|
11145
11262
|
});
|
|
@@ -11571,49 +11688,6 @@ T['io.flow.internal.v0.models.restriction_rule_effect_upserted'] = PropTypes.exa
|
|
|
11571
11688
|
restriction_rule_effect: T['io.flow.internal.v0.models.restriction_rule_effect'].isRequired,
|
|
11572
11689
|
});
|
|
11573
11690
|
|
|
11574
|
-
T['io.flow.sellability.v0.models.sellablility_region_result'] = PropTypes.exact({
|
|
11575
|
-
type: T['io.flow.sellability.v0.enums.rule_effect_type'].isRequired,
|
|
11576
|
-
regions: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
11577
|
-
});
|
|
11578
|
-
|
|
11579
|
-
T['io.flow.sellability.v0.models.product_sellability'] = PropTypes.exact({
|
|
11580
|
-
discriminator: PropTypes.oneOf(['product_sellability']).isRequired,
|
|
11581
|
-
shop_id: PropTypes.string.isRequired,
|
|
11582
|
-
product_id: PropTypes.string,
|
|
11583
|
-
request_id: PropTypes.string.isRequired,
|
|
11584
|
-
hs6_code: PropTypes.string.isRequired,
|
|
11585
|
-
restricted_regions: PropTypes.arrayOf(T['io.flow.sellability.v0.models.sellablility_region_result']).isRequired,
|
|
11586
|
-
});
|
|
11587
|
-
|
|
11588
|
-
T['io.flow.sellability.v0.unions.sellability_response'] = PropTypes.oneOfType([
|
|
11589
|
-
T['io.flow.sellability.v0.models.product_sellability'],
|
|
11590
|
-
T['io.flow.sellability.v0.models.sellability_error'],
|
|
11591
|
-
]);
|
|
11592
|
-
|
|
11593
|
-
T['io.flow.internal.v0.models.product_sellability_result'] = PropTypes.exact({
|
|
11594
|
-
shop_id: PropTypes.string.isRequired,
|
|
11595
|
-
product_number: PropTypes.string.isRequired,
|
|
11596
|
-
request_id: PropTypes.string.isRequired,
|
|
11597
|
-
hs6_code: PropTypes.string.isRequired,
|
|
11598
|
-
restricted_regions: PropTypes.arrayOf(PropTypes.string),
|
|
11599
|
-
restricted_regions_by_type: PropTypes.arrayOf(T['io.flow.sellability.v0.models.sellablility_region_result']),
|
|
11600
|
-
rule_ids: PropTypes.arrayOf(PropTypes.string),
|
|
11601
|
-
});
|
|
11602
|
-
|
|
11603
|
-
T['io.flow.internal.v0.models.product_sellability_internal_result'] = PropTypes.exact({
|
|
11604
|
-
restricted_regions: PropTypes.arrayOf(T['io.flow.sellability.v0.models.sellablility_region_result']).isRequired,
|
|
11605
|
-
rule_ids: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
11606
|
-
});
|
|
11607
|
-
|
|
11608
|
-
T['io.flow.internal.v0.models.product_sellability_internal'] = PropTypes.exact({
|
|
11609
|
-
shop_id: PropTypes.string.isRequired,
|
|
11610
|
-
product_id: PropTypes.string,
|
|
11611
|
-
request_id: PropTypes.string.isRequired,
|
|
11612
|
-
hs6_code: PropTypes.string.isRequired,
|
|
11613
|
-
restricted_regions: PropTypes.arrayOf(T['io.flow.sellability.v0.models.sellablility_region_result']).isRequired,
|
|
11614
|
-
rule_ids: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
11615
|
-
});
|
|
11616
|
-
|
|
11617
11691
|
T['io.flow.internal.v0.models.restriction_keywords'] = PropTypes.exact({
|
|
11618
11692
|
positive_keywords: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
11619
11693
|
negative_keywords: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
@@ -11637,6 +11711,7 @@ T['io.flow.internal.v0.models.product_restriction_state'] = PropTypes.exact({
|
|
|
11637
11711
|
pending_classification_count: PropTypes.number,
|
|
11638
11712
|
oldest_pending_restriction_date: PropTypes.string,
|
|
11639
11713
|
oldest_pending_verification_date: PropTypes.string,
|
|
11714
|
+
oldest_pending_classification_date: PropTypes.string,
|
|
11640
11715
|
});
|
|
11641
11716
|
|
|
11642
11717
|
T['io.flow.internal.v0.models.product_restriction_state_updated'] = PropTypes.exact({
|
|
@@ -12209,6 +12284,7 @@ T['io.flow.internal.v0.models.organization_metadata'] = PropTypes.exact({
|
|
|
12209
12284
|
pending_classification_count: PropTypes.number,
|
|
12210
12285
|
oldest_pending_restriction_date: PropTypes.string,
|
|
12211
12286
|
oldest_pending_verification_date: PropTypes.string,
|
|
12287
|
+
oldest_pending_classification_date: PropTypes.string,
|
|
12212
12288
|
product_count: PropTypes.number.isRequired,
|
|
12213
12289
|
restricted_product_count: PropTypes.number.isRequired,
|
|
12214
12290
|
last_order_submitted_at: PropTypes.string,
|
|
@@ -12316,6 +12392,23 @@ T['io.flow.internal.v0.models.order_tax_and_duty_inclusivity_setting_upserted']
|
|
|
12316
12392
|
order_tax_and_duty_inclusivity_setting: T['io.flow.internal.v0.models.order_tax_and_duty_inclusivity_setting'].isRequired,
|
|
12317
12393
|
});
|
|
12318
12394
|
|
|
12395
|
+
T['io.flow.common.v0.enums.user_status'] = PropTypes.oneOf(['pending', 'active', 'inactive']);
|
|
12396
|
+
|
|
12397
|
+
T['io.flow.internal.v0.models.user_status_rule_form'] = PropTypes.exact({
|
|
12398
|
+
domain: PropTypes.string.isRequired,
|
|
12399
|
+
status: T['io.flow.common.v0.enums.user_status'].isRequired,
|
|
12400
|
+
});
|
|
12401
|
+
|
|
12402
|
+
T['io.flow.internal.v0.models.user_status_rule'] = PropTypes.exact({
|
|
12403
|
+
id: PropTypes.string.isRequired,
|
|
12404
|
+
domain: PropTypes.string.isRequired,
|
|
12405
|
+
status: T['io.flow.common.v0.enums.user_status'].isRequired,
|
|
12406
|
+
});
|
|
12407
|
+
|
|
12408
|
+
T['io.flow.internal.v0.models.user_status_form'] = PropTypes.exact({
|
|
12409
|
+
status: T['io.flow.common.v0.enums.user_status'].isRequired,
|
|
12410
|
+
});
|
|
12411
|
+
|
|
12319
12412
|
T['io.flow.order.management.v0.models.fulfillment_item_quantity'] = PropTypes.exact({
|
|
12320
12413
|
status: T['io.flow.order.management.v0.enums.fulfillment_item_quantity_status'].isRequired,
|
|
12321
12414
|
quantity: PropTypes.number.isRequired,
|
|
@@ -12461,23 +12554,6 @@ T['io.flow.internal.v0.models.whole_order_action_form'] = PropTypes.exact({
|
|
|
12461
12554
|
action: T['io.flow.internal.v0.enums.order_action'].isRequired,
|
|
12462
12555
|
});
|
|
12463
12556
|
|
|
12464
|
-
T['io.flow.common.v0.enums.user_status'] = PropTypes.oneOf(['pending', 'active', 'inactive']);
|
|
12465
|
-
|
|
12466
|
-
T['io.flow.internal.v0.models.user_status_rule_form'] = PropTypes.exact({
|
|
12467
|
-
domain: PropTypes.string.isRequired,
|
|
12468
|
-
status: T['io.flow.common.v0.enums.user_status'].isRequired,
|
|
12469
|
-
});
|
|
12470
|
-
|
|
12471
|
-
T['io.flow.internal.v0.models.user_status_rule'] = PropTypes.exact({
|
|
12472
|
-
id: PropTypes.string.isRequired,
|
|
12473
|
-
domain: PropTypes.string.isRequired,
|
|
12474
|
-
status: T['io.flow.common.v0.enums.user_status'].isRequired,
|
|
12475
|
-
});
|
|
12476
|
-
|
|
12477
|
-
T['io.flow.internal.v0.models.user_status_form'] = PropTypes.exact({
|
|
12478
|
-
status: T['io.flow.common.v0.enums.user_status'].isRequired,
|
|
12479
|
-
});
|
|
12480
|
-
|
|
12481
12557
|
T['io.flow.internal.v0.enums.onboarding_audit_theme_key'] = PropTypes.oneOf([
|
|
12482
12558
|
'billing',
|
|
12483
12559
|
'b2b_invoicing',
|
|
@@ -12658,12 +12734,6 @@ T['io.flow.internal.v0.models.merchant_search_result'] = PropTypes.exact({
|
|
|
12658
12734
|
shop_domain: PropTypes.string,
|
|
12659
12735
|
});
|
|
12660
12736
|
|
|
12661
|
-
T['io.flow.internal.v0.models.evaluation_results'] = PropTypes.exact({
|
|
12662
|
-
chapter_result: PropTypes.object.isRequired,
|
|
12663
|
-
sellability_result: PropTypes.object.isRequired,
|
|
12664
|
-
duty_variance_result: PropTypes.object.isRequired,
|
|
12665
|
-
});
|
|
12666
|
-
|
|
12667
12737
|
T['io.flow.internal.v0.enums.merchant_override_status'] = PropTypes.oneOf(['pending', 'in_review', 'accepted', 'rejected']);
|
|
12668
12738
|
|
|
12669
12739
|
T['io.flow.internal.v0.models.merchant_override_decision_form'] = PropTypes.exact({
|
|
@@ -12671,19 +12741,6 @@ T['io.flow.internal.v0.models.merchant_override_decision_form'] = PropTypes.exac
|
|
|
12671
12741
|
status: T['io.flow.internal.v0.enums.merchant_override_status'].isRequired,
|
|
12672
12742
|
});
|
|
12673
12743
|
|
|
12674
|
-
T['io.flow.internal.v0.models.merchant_override'] = PropTypes.exact({
|
|
12675
|
-
id: PropTypes.string.isRequired,
|
|
12676
|
-
organization_id: PropTypes.string.isRequired,
|
|
12677
|
-
item_number: PropTypes.string.isRequired,
|
|
12678
|
-
status: T['io.flow.internal.v0.enums.merchant_override_status'].isRequired,
|
|
12679
|
-
hs6_code: PropTypes.string.isRequired,
|
|
12680
|
-
merchant_hs6_code: PropTypes.string.isRequired,
|
|
12681
|
-
evaluation_results: T['io.flow.internal.v0.models.evaluation_results'],
|
|
12682
|
-
created_at: PropTypes.string.isRequired,
|
|
12683
|
-
updated_at: PropTypes.string.isRequired,
|
|
12684
|
-
updated_by_user_id: PropTypes.string.isRequired,
|
|
12685
|
-
});
|
|
12686
|
-
|
|
12687
12744
|
T['io.flow.internal.v0.models.merchant_guid_assignment'] = PropTypes.exact({
|
|
12688
12745
|
id: PropTypes.string.isRequired,
|
|
12689
12746
|
merchant_guid: PropTypes.string.isRequired,
|
|
@@ -13595,6 +13652,7 @@ T['io.flow.trueup.v0.enums.trueup_surcharge_type'] = PropTypes.oneOf([
|
|
|
13595
13652
|
'saturday_stop',
|
|
13596
13653
|
'residential_extended_area_pickup',
|
|
13597
13654
|
'package_level_detail',
|
|
13655
|
+
'pickup',
|
|
13598
13656
|
]);
|
|
13599
13657
|
|
|
13600
13658
|
T['io.flow.billing.v0.models.trueup_label_surcharge'] = PropTypes.exact({
|
|
@@ -13743,14 +13801,6 @@ T['io.flow.internal.v0.models.item_sales_margin'] = PropTypes.exact({
|
|
|
13743
13801
|
position: PropTypes.number.isRequired,
|
|
13744
13802
|
});
|
|
13745
13803
|
|
|
13746
|
-
T['io.flow.internal.v0.enums.taxonomy_category_classification_alignment'] = PropTypes.oneOf([
|
|
13747
|
-
'aligned',
|
|
13748
|
-
'not_aligned',
|
|
13749
|
-
'product_missing_category',
|
|
13750
|
-
'config_missing_category',
|
|
13751
|
-
'product_not_found',
|
|
13752
|
-
]);
|
|
13753
|
-
|
|
13754
13804
|
T['io.flow.internal.v0.enums.classification_scope'] = PropTypes.oneOf(['Item', 'Product']);
|
|
13755
13805
|
T['io.flow.internal.v0.enums.harmonization_decision_source'] = PropTypes.oneOf(['human', 'system', 'legacy_model', 'enterprise_model', 'merchant']);
|
|
13756
13806
|
T['io.flow.internal.v0.enums.item_type'] = PropTypes.oneOf(['standard', 'multi_product']);
|
|
@@ -13839,6 +13889,7 @@ T['io.flow.internal.v0.models.invoice_data_line_item'] = PropTypes.exact({
|
|
|
13839
13889
|
gender: PropTypes.string,
|
|
13840
13890
|
material: PropTypes.string,
|
|
13841
13891
|
url: PropTypes.string,
|
|
13892
|
+
preferential_rate_statement: PropTypes.string,
|
|
13842
13893
|
});
|
|
13843
13894
|
|
|
13844
13895
|
T['io.flow.shopify.external.v0.models.shopify_country_harmonized_system_code'] = PropTypes.exact({
|
|
@@ -14206,6 +14257,17 @@ T['io.flow.payment.gateway.v0.unions.action'] = PropTypes.oneOfType([
|
|
|
14206
14257
|
|
|
14207
14258
|
T['io.flow.internal.v0.enums.rate_source'] = PropTypes.oneOf(['calculated', 'market']);
|
|
14208
14259
|
|
|
14260
|
+
T['io.flow.experience.v0.models.order_rate'] = PropTypes.exact({
|
|
14261
|
+
from: PropTypes.string.isRequired,
|
|
14262
|
+
to: PropTypes.string.isRequired,
|
|
14263
|
+
rate: PropTypes.number.isRequired,
|
|
14264
|
+
});
|
|
14265
|
+
|
|
14266
|
+
T['io.flow.experience.v0.models.edit_summary'] = PropTypes.exact({
|
|
14267
|
+
id: PropTypes.string.isRequired,
|
|
14268
|
+
edited_at: PropTypes.string.isRequired,
|
|
14269
|
+
});
|
|
14270
|
+
|
|
14209
14271
|
T['io.flow.experience.v0.models.incoterm_summary'] = PropTypes.exact({
|
|
14210
14272
|
configuration: T['io.flow.experience.v0.enums.incoterm_configuration'].isRequired,
|
|
14211
14273
|
includes: T['io.flow.experience.v0.models.incoterm_includes'].isRequired,
|
|
@@ -14570,6 +14632,10 @@ T['io.flow.internal.v0.models.reporting_merchant_transactions'] = PropTypes.exac
|
|
|
14570
14632
|
total: T['io.flow.internal.v0.models.reporting_monetary_value'],
|
|
14571
14633
|
tax_refund: T['io.flow.internal.v0.models.reporting_monetary_value'],
|
|
14572
14634
|
duty_refund: T['io.flow.internal.v0.models.reporting_monetary_value'],
|
|
14635
|
+
tax_reversal: T['io.flow.internal.v0.models.reporting_monetary_value'],
|
|
14636
|
+
duty_reversal: T['io.flow.internal.v0.models.reporting_monetary_value'],
|
|
14637
|
+
tax_reversal_for_lvg_order: PropTypes.bool,
|
|
14638
|
+
duty_reversal_for_lvg_order: PropTypes.bool,
|
|
14573
14639
|
});
|
|
14574
14640
|
|
|
14575
14641
|
T['io.flow.internal.v0.models.reporting_merchant_fees'] = PropTypes.exact({
|
|
@@ -14606,6 +14672,12 @@ T['io.flow.internal.v0.models.reporting_payment'] = PropTypes.exact({
|
|
|
14606
14672
|
total: T['io.flow.internal.v0.models.reporting_monetary_value'].isRequired,
|
|
14607
14673
|
});
|
|
14608
14674
|
|
|
14675
|
+
T['io.flow.internal.v0.models.reporting_fees'] = PropTypes.exact({
|
|
14676
|
+
mor: T['io.flow.internal.v0.models.reporting_monetary_value'].isRequired,
|
|
14677
|
+
fx: T['io.flow.internal.v0.models.reporting_monetary_value'].isRequired,
|
|
14678
|
+
sp: T['io.flow.internal.v0.models.reporting_monetary_value'].isRequired,
|
|
14679
|
+
});
|
|
14680
|
+
|
|
14609
14681
|
T['io.flow.internal.v0.models.reporting_shopper_fees'] = PropTypes.exact({
|
|
14610
14682
|
fuel: T['io.flow.internal.v0.models.reporting_monetary_value'].isRequired,
|
|
14611
14683
|
remote_area: T['io.flow.internal.v0.models.reporting_monetary_value'].isRequired,
|
|
@@ -14646,6 +14718,10 @@ T['io.flow.internal.v0.models.merchant_transactions'] = PropTypes.exact({
|
|
|
14646
14718
|
freight: PropTypes.number.isRequired,
|
|
14647
14719
|
total: PropTypes.number.isRequired,
|
|
14648
14720
|
tax_refund: PropTypes.number,
|
|
14721
|
+
tax_reversal: PropTypes.number,
|
|
14722
|
+
duty_reversal: PropTypes.number,
|
|
14723
|
+
tax_reversal_for_lvg_order: PropTypes.bool,
|
|
14724
|
+
duty_reversal_for_lvg_order: PropTypes.bool,
|
|
14649
14725
|
});
|
|
14650
14726
|
|
|
14651
14727
|
T['io.flow.internal.v0.models.merchant_fees'] = PropTypes.exact({
|
|
@@ -15169,6 +15245,72 @@ T['io.flow.internal.v0.models.return_policy_deleted'] = PropTypes.exact({
|
|
|
15169
15245
|
return_policy: T['io.flow.catalog.return.v0.models.return_policy'].isRequired,
|
|
15170
15246
|
});
|
|
15171
15247
|
|
|
15248
|
+
T['io.flow.internal.v0.enums.taxonomy_category_classification_alignment'] = PropTypes.oneOf([
|
|
15249
|
+
'aligned',
|
|
15250
|
+
'not_aligned',
|
|
15251
|
+
'product_missing_category',
|
|
15252
|
+
'config_missing_category',
|
|
15253
|
+
'product_not_found',
|
|
15254
|
+
]);
|
|
15255
|
+
|
|
15256
|
+
T['io.flow.sellability.v0.models.sellability_error'] = PropTypes.exact({
|
|
15257
|
+
discriminator: PropTypes.oneOf(['sellability_error']).isRequired,
|
|
15258
|
+
code: T['io.flow.sellability.v0.enums.sellability_error_code'].isRequired,
|
|
15259
|
+
messages: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
15260
|
+
});
|
|
15261
|
+
|
|
15262
|
+
T['io.flow.sellability.v0.models.sellablility_region_result'] = PropTypes.exact({
|
|
15263
|
+
type: T['io.flow.sellability.v0.enums.rule_effect_type'].isRequired,
|
|
15264
|
+
regions: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
15265
|
+
});
|
|
15266
|
+
|
|
15267
|
+
T['io.flow.sellability.v0.models.product_sellability'] = PropTypes.exact({
|
|
15268
|
+
discriminator: PropTypes.oneOf(['product_sellability']).isRequired,
|
|
15269
|
+
shop_id: PropTypes.string.isRequired,
|
|
15270
|
+
product_id: PropTypes.string,
|
|
15271
|
+
request_id: PropTypes.string.isRequired,
|
|
15272
|
+
hs6_code: PropTypes.string.isRequired,
|
|
15273
|
+
restricted_regions: PropTypes.arrayOf(T['io.flow.sellability.v0.models.sellablility_region_result']).isRequired,
|
|
15274
|
+
});
|
|
15275
|
+
|
|
15276
|
+
T['io.flow.sellability.v0.unions.sellability_response'] = PropTypes.oneOfType([
|
|
15277
|
+
T['io.flow.sellability.v0.models.product_sellability'],
|
|
15278
|
+
T['io.flow.sellability.v0.models.sellability_error'],
|
|
15279
|
+
]);
|
|
15280
|
+
|
|
15281
|
+
T['io.flow.internal.v0.models.product_sellability_result'] = PropTypes.exact({
|
|
15282
|
+
shop_id: PropTypes.string.isRequired,
|
|
15283
|
+
product_number: PropTypes.string.isRequired,
|
|
15284
|
+
request_id: PropTypes.string.isRequired,
|
|
15285
|
+
hs6_code: PropTypes.string.isRequired,
|
|
15286
|
+
restricted_regions: PropTypes.arrayOf(PropTypes.string),
|
|
15287
|
+
restricted_regions_by_type: PropTypes.arrayOf(T['io.flow.sellability.v0.models.sellablility_region_result']),
|
|
15288
|
+
rule_ids: PropTypes.arrayOf(PropTypes.string),
|
|
15289
|
+
taxonomy_category: PropTypes.string,
|
|
15290
|
+
});
|
|
15291
|
+
|
|
15292
|
+
T['io.flow.internal.v0.models.product_sellability_internal_result'] = PropTypes.exact({
|
|
15293
|
+
restricted_regions: PropTypes.arrayOf(T['io.flow.sellability.v0.models.sellablility_region_result']).isRequired,
|
|
15294
|
+
rule_ids: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
15295
|
+
});
|
|
15296
|
+
|
|
15297
|
+
T['io.flow.internal.v0.models.product_sellability_internal'] = PropTypes.exact({
|
|
15298
|
+
shop_id: PropTypes.string.isRequired,
|
|
15299
|
+
product_id: PropTypes.string,
|
|
15300
|
+
request_id: PropTypes.string.isRequired,
|
|
15301
|
+
hs6_code: PropTypes.string.isRequired,
|
|
15302
|
+
restricted_regions: PropTypes.arrayOf(T['io.flow.sellability.v0.models.sellablility_region_result']).isRequired,
|
|
15303
|
+
rule_ids: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
15304
|
+
});
|
|
15305
|
+
|
|
15306
|
+
T['io.flow.internal.v0.enums.sellability_check_status'] = PropTypes.oneOf([
|
|
15307
|
+
'more_restrictive',
|
|
15308
|
+
'less_restrictive',
|
|
15309
|
+
'similar',
|
|
15310
|
+
'regions_differ',
|
|
15311
|
+
'rules_differ',
|
|
15312
|
+
]);
|
|
15313
|
+
|
|
15172
15314
|
T['io.flow.internal.v0.models.erp_vendor_status_priority_file'] = PropTypes.exact({
|
|
15173
15315
|
name: PropTypes.string.isRequired,
|
|
15174
15316
|
url: PropTypes.string.isRequired,
|
|
@@ -15443,6 +15585,15 @@ T['io.flow.internal.v0.models.encryption'] = PropTypes.exact({
|
|
|
15443
15585
|
passphrase_ids: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
15444
15586
|
});
|
|
15445
15587
|
|
|
15588
|
+
T['io.flow.internal.v0.models.destination_duty_comparison'] = PropTypes.exact({
|
|
15589
|
+
country: PropTypes.string.isRequired,
|
|
15590
|
+
current_duty: PropTypes.number,
|
|
15591
|
+
merchant_duty: PropTypes.number,
|
|
15592
|
+
current_error: PropTypes.number,
|
|
15593
|
+
merchant_error: PropTypes.number,
|
|
15594
|
+
});
|
|
15595
|
+
|
|
15596
|
+
T['io.flow.internal.v0.enums.duty_variance_status'] = PropTypes.oneOf(['acceptable', 'exceeded']);
|
|
15446
15597
|
T['io.flow.internal.v0.enums.duty_rate_unit_of_measure'] = PropTypes.oneOf(['kg', 'sq m', 'item', 'pair']);
|
|
15447
15598
|
T['io.flow.internal.v0.enums.duty_simple_expression_type'] = PropTypes.oneOf(['free', 'percent', 'per_uom', 'flat']);
|
|
15448
15599
|
|
|
@@ -16129,15 +16280,18 @@ T['io.flow.internal.v0.models.reporting_order_summary'] = PropTypes.exact({
|
|
|
16129
16280
|
number: PropTypes.string.isRequired,
|
|
16130
16281
|
submitted_at: PropTypes.string.isRequired,
|
|
16131
16282
|
payment_source: T['io.flow.experience.v0.enums.order_payment_source_type'],
|
|
16283
|
+
is_edited: PropTypes.bool,
|
|
16132
16284
|
});
|
|
16133
16285
|
|
|
16134
16286
|
T['io.flow.internal.v0.models.sales_payment_record'] = PropTypes.exact({
|
|
16135
16287
|
id: PropTypes.string.isRequired,
|
|
16136
16288
|
organization: T['io.flow.internal.v0.models.reporting_organization_summary'].isRequired,
|
|
16289
|
+
vendor: T['io.flow.internal.v0.models.reporting_vendor'],
|
|
16137
16290
|
order: T['io.flow.internal.v0.models.reporting_order_summary'].isRequired,
|
|
16138
16291
|
order_total: T['io.flow.internal.v0.models.reporting_monetary_value'].isRequired,
|
|
16139
16292
|
shopper_breakdown: T['io.flow.internal.v0.models.shopper_breakdown'].isRequired,
|
|
16140
16293
|
payment: T['io.flow.internal.v0.models.reporting_payment'].isRequired,
|
|
16294
|
+
fees: T['io.flow.internal.v0.models.reporting_fees'].isRequired,
|
|
16141
16295
|
conversion_rate: T['io.flow.internal.v0.models.reporting_conversion_rates'].isRequired,
|
|
16142
16296
|
payment_is: T['io.flow.internal.v0.models.payment_is'].isRequired,
|
|
16143
16297
|
destination_country: PropTypes.string.isRequired,
|
|
@@ -16346,6 +16500,10 @@ T['io.flow.internal.v0.enums.billing_metric_key'] = PropTypes.oneOf([
|
|
|
16346
16500
|
'sp_billable_label_transactions_count',
|
|
16347
16501
|
'sp_billable_label_transactions_count_for_unique_orders',
|
|
16348
16502
|
'sp_billable_label_transactions_total',
|
|
16503
|
+
'capture_transactions_standard_count',
|
|
16504
|
+
'capture_transactions_standard_total',
|
|
16505
|
+
'capture_transactions_shopify_plus_count',
|
|
16506
|
+
'capture_transactions_shopify_plus_total',
|
|
16349
16507
|
'sp_capture_transactions_count',
|
|
16350
16508
|
'sp_capture_transactions_total',
|
|
16351
16509
|
'sp_carrier_charge_transactions_count',
|
|
@@ -16610,6 +16768,7 @@ T['io.flow.internal.v0.models.invoice_line_item'] = PropTypes.exact({
|
|
|
16610
16768
|
total_price: PropTypes.number.isRequired,
|
|
16611
16769
|
manufacturer_id: PropTypes.string,
|
|
16612
16770
|
export_control_classification_number: PropTypes.string.isRequired,
|
|
16771
|
+
preferential_rate_statement: PropTypes.string,
|
|
16613
16772
|
});
|
|
16614
16773
|
|
|
16615
16774
|
T['io.flow.internal.v0.models.commercial_invoice_summary'] = PropTypes.exact({
|
|
@@ -16709,6 +16868,7 @@ T['io.flow.internal.v0.enums.item_harmonization_status'] = PropTypes.oneOf([
|
|
|
16709
16868
|
'classified',
|
|
16710
16869
|
'non_classifiable_not_enough_information',
|
|
16711
16870
|
'exempt',
|
|
16871
|
+
'manual_classification_required',
|
|
16712
16872
|
]);
|
|
16713
16873
|
|
|
16714
16874
|
T['io.flow.internal.v0.models.no_classification_form'] = PropTypes.exact({
|
|
@@ -17131,40 +17291,87 @@ T['io.flow.internal.v0.enums.charge_input_type'] = PropTypes.oneOf([
|
|
|
17131
17291
|
'peak_surcharge',
|
|
17132
17292
|
]);
|
|
17133
17293
|
|
|
17134
|
-
T['io.flow.internal.v0.
|
|
17135
|
-
|
|
17294
|
+
T['io.flow.internal.v0.enums.evaluation_check_result'] = PropTypes.oneOf(['pass', 'fail']);
|
|
17295
|
+
|
|
17296
|
+
T['io.flow.internal.v0.models.taxonomy_alignment_check_result'] = PropTypes.exact({
|
|
17297
|
+
status: T['io.flow.internal.v0.enums.taxonomy_category_classification_alignment'].isRequired,
|
|
17298
|
+
result: T['io.flow.internal.v0.enums.evaluation_check_result'].isRequired,
|
|
17299
|
+
merchant_taxonomy_status: T['io.flow.internal.v0.enums.taxonomy_category_classification_alignment'].isRequired,
|
|
17300
|
+
current_taxonomy_status: T['io.flow.internal.v0.enums.taxonomy_category_classification_alignment'].isRequired,
|
|
17136
17301
|
});
|
|
17137
17302
|
|
|
17138
|
-
T['io.flow.internal.v0.models.
|
|
17139
|
-
|
|
17303
|
+
T['io.flow.internal.v0.models.sellability_check_result'] = PropTypes.exact({
|
|
17304
|
+
status: T['io.flow.internal.v0.enums.sellability_check_status'].isRequired,
|
|
17305
|
+
result: T['io.flow.internal.v0.enums.evaluation_check_result'].isRequired,
|
|
17306
|
+
current_rule_ids: PropTypes.arrayOf(PropTypes.string),
|
|
17307
|
+
current_restricted_regions: PropTypes.arrayOf(T['io.flow.sellability.v0.models.sellablility_region_result']),
|
|
17308
|
+
merchant_rule_ids: PropTypes.arrayOf(PropTypes.string),
|
|
17309
|
+
merchant_restricted_regions: PropTypes.arrayOf(T['io.flow.sellability.v0.models.sellablility_region_result']),
|
|
17310
|
+
current_error: PropTypes.arrayOf(T['io.flow.sellability.v0.models.sellability_error']),
|
|
17311
|
+
merchant_error: PropTypes.arrayOf(T['io.flow.sellability.v0.models.sellability_error']),
|
|
17140
17312
|
});
|
|
17141
17313
|
|
|
17142
|
-
T['io.flow.internal.v0.models.
|
|
17143
|
-
|
|
17144
|
-
|
|
17145
|
-
|
|
17146
|
-
token: PropTypes.string.isRequired,
|
|
17314
|
+
T['io.flow.internal.v0.models.duty_variance_result'] = PropTypes.exact({
|
|
17315
|
+
status: T['io.flow.internal.v0.enums.duty_variance_status'].isRequired,
|
|
17316
|
+
result: T['io.flow.internal.v0.enums.evaluation_check_result'].isRequired,
|
|
17317
|
+
destinations: PropTypes.arrayOf(T['io.flow.internal.v0.models.destination_duty_comparison']).isRequired,
|
|
17147
17318
|
});
|
|
17148
17319
|
|
|
17149
|
-
T['io.flow.internal.v0.enums.
|
|
17320
|
+
T['io.flow.internal.v0.enums.chapter_check_status'] = PropTypes.oneOf(['apparel_like', 'similar', 'does_not_match']);
|
|
17150
17321
|
|
|
17151
|
-
T['io.flow.internal.v0.models.
|
|
17152
|
-
|
|
17322
|
+
T['io.flow.internal.v0.models.chapter_check_result'] = PropTypes.exact({
|
|
17323
|
+
status: T['io.flow.internal.v0.enums.chapter_check_status'].isRequired,
|
|
17324
|
+
result: T['io.flow.internal.v0.enums.evaluation_check_result'].isRequired,
|
|
17325
|
+
current_chapter: PropTypes.string.isRequired,
|
|
17326
|
+
merchant_chapter: PropTypes.string.isRequired,
|
|
17153
17327
|
});
|
|
17154
17328
|
|
|
17155
|
-
T['io.flow.
|
|
17156
|
-
|
|
17157
|
-
|
|
17158
|
-
|
|
17159
|
-
|
|
17160
|
-
timezone: PropTypes.string.isRequired,
|
|
17329
|
+
T['io.flow.internal.v0.models.evaluation_results'] = PropTypes.exact({
|
|
17330
|
+
chapter_result: T['io.flow.internal.v0.models.chapter_check_result'].isRequired,
|
|
17331
|
+
sellability_result: T['io.flow.internal.v0.models.sellability_check_result'].isRequired,
|
|
17332
|
+
duty_variance_result: T['io.flow.internal.v0.models.duty_variance_result'].isRequired,
|
|
17333
|
+
taxonomy_alignment_result: T['io.flow.internal.v0.models.taxonomy_alignment_check_result'],
|
|
17161
17334
|
});
|
|
17162
17335
|
|
|
17163
|
-
T['io.flow.
|
|
17164
|
-
|
|
17165
|
-
|
|
17166
|
-
|
|
17167
|
-
|
|
17336
|
+
T['io.flow.internal.v0.models.merchant_override'] = PropTypes.exact({
|
|
17337
|
+
id: PropTypes.string.isRequired,
|
|
17338
|
+
organization_id: PropTypes.string.isRequired,
|
|
17339
|
+
item_number: PropTypes.string.isRequired,
|
|
17340
|
+
status: T['io.flow.internal.v0.enums.merchant_override_status'].isRequired,
|
|
17341
|
+
hs6_code: PropTypes.string.isRequired,
|
|
17342
|
+
merchant_hs6_code: PropTypes.string.isRequired,
|
|
17343
|
+
evaluation_results: T['io.flow.internal.v0.models.evaluation_results'],
|
|
17344
|
+
created_at: PropTypes.string.isRequired,
|
|
17345
|
+
updated_at: PropTypes.string.isRequired,
|
|
17346
|
+
updated_by_user_id: PropTypes.string.isRequired,
|
|
17347
|
+
});
|
|
17348
|
+
|
|
17349
|
+
T['io.flow.internal.v0.models.merchant_override_upserted'] = PropTypes.exact({
|
|
17350
|
+
discriminator: PropTypes.oneOf(['merchant_override_upserted']).isRequired,
|
|
17351
|
+
event_id: PropTypes.string.isRequired,
|
|
17352
|
+
timestamp: PropTypes.string.isRequired,
|
|
17353
|
+
merchant_override: T['io.flow.internal.v0.models.merchant_override'].isRequired,
|
|
17354
|
+
});
|
|
17355
|
+
|
|
17356
|
+
T['io.flow.internal.v0.enums.shopify_service'] = PropTypes.oneOf(['payment', 'duty_tax_calculator', 'sellability']);
|
|
17357
|
+
|
|
17358
|
+
T['io.flow.internal.v0.models.shopify_channel_organization_token'] = PropTypes.exact({
|
|
17359
|
+
cleartext: PropTypes.string.isRequired,
|
|
17360
|
+
});
|
|
17361
|
+
|
|
17362
|
+
T['io.flow.common.v0.models.organization_defaults'] = PropTypes.exact({
|
|
17363
|
+
country: PropTypes.string.isRequired,
|
|
17364
|
+
base_currency: PropTypes.string.isRequired,
|
|
17365
|
+
language: PropTypes.string.isRequired,
|
|
17366
|
+
locale: PropTypes.string.isRequired,
|
|
17367
|
+
timezone: PropTypes.string.isRequired,
|
|
17368
|
+
});
|
|
17369
|
+
|
|
17370
|
+
T['io.flow.channel.v0.models.channel_organization_form'] = PropTypes.exact({
|
|
17371
|
+
key: PropTypes.string.isRequired,
|
|
17372
|
+
name: PropTypes.string,
|
|
17373
|
+
slug: PropTypes.string,
|
|
17374
|
+
defaults: T['io.flow.common.v0.models.organization_defaults'].isRequired,
|
|
17168
17375
|
attributes: PropTypes.objectOf(PropTypes.string),
|
|
17169
17376
|
});
|
|
17170
17377
|
|
|
@@ -17173,11 +17380,6 @@ T['io.flow.channel.shopify.internal.v0.models.channel_organization_shopify_post_
|
|
|
17173
17380
|
metadata: T['io.flow.channel.shopify.internal.v0.models.shopify_metadata'].isRequired,
|
|
17174
17381
|
});
|
|
17175
17382
|
|
|
17176
|
-
T['io.flow.internal.v0.models.channel_organization_shopify_post_form'] = PropTypes.exact({
|
|
17177
|
-
form: T['io.flow.channel.v0.models.channel_organization_form'].isRequired,
|
|
17178
|
-
metadata: T['io.flow.internal.v0.models.shopify_metadata'].isRequired,
|
|
17179
|
-
});
|
|
17180
|
-
|
|
17181
17383
|
T['io.flow.channel.v0.models.channel_organization_put_form'] = PropTypes.exact({
|
|
17182
17384
|
name: PropTypes.string,
|
|
17183
17385
|
slug: PropTypes.string,
|
|
@@ -17190,14 +17392,62 @@ T['io.flow.channel.shopify.internal.v0.models.channel_organization_shopify_form'
|
|
|
17190
17392
|
metadata: T['io.flow.channel.shopify.internal.v0.models.shopify_metadata'].isRequired,
|
|
17191
17393
|
});
|
|
17192
17394
|
|
|
17395
|
+
T['io.flow.internal.v0.models.shopify_channel_organization_tokens'] = PropTypes.exact({
|
|
17396
|
+
token: T['io.flow.internal.v0.models.shopify_channel_organization_token'].isRequired,
|
|
17397
|
+
service: T['io.flow.internal.v0.enums.shopify_service'].isRequired,
|
|
17398
|
+
});
|
|
17399
|
+
|
|
17400
|
+
T['io.flow.internal.v0.enums.sellability_status'] = PropTypes.oneOf(['complete', 'incomplete']);
|
|
17401
|
+
|
|
17402
|
+
T['io.flow.internal.v0.models.channel_organization_sellability_status_put_form'] = PropTypes.exact({
|
|
17403
|
+
status: T['io.flow.internal.v0.enums.sellability_status'].isRequired,
|
|
17404
|
+
});
|
|
17405
|
+
|
|
17406
|
+
T['io.flow.internal.v0.models.channel_organization_sellability_status'] = PropTypes.exact({
|
|
17407
|
+
status: T['io.flow.internal.v0.enums.sellability_status'].isRequired,
|
|
17408
|
+
});
|
|
17409
|
+
|
|
17410
|
+
T['io.flow.internal.v0.enums.catalog_publication_owner'] = PropTypes.oneOf(['shopify', 'globale']);
|
|
17411
|
+
|
|
17412
|
+
T['io.flow.internal.v0.models.shopify_markets_shop_form'] = PropTypes.exact({
|
|
17413
|
+
shop: PropTypes.string.isRequired,
|
|
17414
|
+
domain: PropTypes.string.isRequired,
|
|
17415
|
+
myshopify_domain: PropTypes.string.isRequired,
|
|
17416
|
+
shared_secret: PropTypes.string.isRequired,
|
|
17417
|
+
api_key: PropTypes.string,
|
|
17418
|
+
api_password: PropTypes.string,
|
|
17419
|
+
access_token: PropTypes.string,
|
|
17420
|
+
shopify_plan_name: T['io.flow.shopify.external.v0.enums.shopify_plan_name'],
|
|
17421
|
+
catalog_publication_owner: T['io.flow.internal.v0.enums.catalog_publication_owner'],
|
|
17422
|
+
});
|
|
17423
|
+
|
|
17424
|
+
T['io.flow.internal.v0.models.shopify_catalog_publication'] = PropTypes.exact({
|
|
17425
|
+
owner: T['io.flow.internal.v0.enums.catalog_publication_owner'].isRequired,
|
|
17426
|
+
});
|
|
17427
|
+
|
|
17428
|
+
T['io.flow.internal.v0.models.shopify_metadata'] = PropTypes.exact({
|
|
17429
|
+
domain: PropTypes.string.isRequired,
|
|
17430
|
+
myshopify_domain: PropTypes.string.isRequired,
|
|
17431
|
+
catalog_publication: T['io.flow.internal.v0.models.shopify_catalog_publication'],
|
|
17432
|
+
token: PropTypes.string.isRequired,
|
|
17433
|
+
});
|
|
17434
|
+
|
|
17435
|
+
T['io.flow.internal.v0.models.channel_organization_shopify_post_form'] = PropTypes.exact({
|
|
17436
|
+
form: T['io.flow.channel.v0.models.channel_organization_form'].isRequired,
|
|
17437
|
+
metadata: T['io.flow.internal.v0.models.shopify_metadata'].isRequired,
|
|
17438
|
+
});
|
|
17439
|
+
|
|
17193
17440
|
T['io.flow.internal.v0.models.channel_organization_shopify_form'] = PropTypes.exact({
|
|
17194
17441
|
form: T['io.flow.channel.v0.models.channel_organization_put_form'].isRequired,
|
|
17195
17442
|
metadata: T['io.flow.internal.v0.models.shopify_metadata'].isRequired,
|
|
17196
17443
|
});
|
|
17197
17444
|
|
|
17198
|
-
T['io.flow.internal.v0.models.
|
|
17199
|
-
|
|
17200
|
-
|
|
17445
|
+
T['io.flow.internal.v0.models.channel_organization_publication_owner_put_form'] = PropTypes.exact({
|
|
17446
|
+
owner: T['io.flow.internal.v0.enums.catalog_publication_owner'].isRequired,
|
|
17447
|
+
});
|
|
17448
|
+
|
|
17449
|
+
T['io.flow.internal.v0.models.channel_organization_publication_owner'] = PropTypes.exact({
|
|
17450
|
+
owner: T['io.flow.internal.v0.enums.catalog_publication_owner'].isRequired,
|
|
17201
17451
|
});
|
|
17202
17452
|
|
|
17203
17453
|
T['io.flow.internal.v0.enums.channel_order_fulfillment_status_code'] = PropTypes.oneOf(['unfulfilled', 'fulfilled', 'partial', 'cancelled']);
|
|
@@ -17761,6 +18011,7 @@ T['io.flow.shopify.markets.internal.v0.models.shopify_markets_shop'] = PropTypes
|
|
|
17761
18011
|
api_password_masked: PropTypes.string,
|
|
17762
18012
|
access_token_masked: PropTypes.string,
|
|
17763
18013
|
shopify_plan_name: T['io.flow.shopify.external.v0.enums.shopify_plan_name'],
|
|
18014
|
+
catalog_publication_owner: T['io.flow.channel.shopify.internal.v0.enums.catalog_publication_owner'],
|
|
17764
18015
|
});
|
|
17765
18016
|
|
|
17766
18017
|
T['io.flow.shopify.markets.internal.event.v0.models.shopify_markets_shop_upserted'] = PropTypes.exact({
|
|
@@ -17797,6 +18048,7 @@ T['io.flow.internal.v0.models.shopify_markets_shop'] = PropTypes.exact({
|
|
|
17797
18048
|
api_password_masked: PropTypes.string,
|
|
17798
18049
|
access_token_masked: PropTypes.string,
|
|
17799
18050
|
shopify_plan_name: T['io.flow.shopify.external.v0.enums.shopify_plan_name'],
|
|
18051
|
+
catalog_publication_owner: T['io.flow.internal.v0.enums.catalog_publication_owner'],
|
|
17800
18052
|
});
|
|
17801
18053
|
|
|
17802
18054
|
T['io.flow.internal.v0.models.shopify_markets_shop_upserted'] = PropTypes.exact({
|
|
@@ -18265,6 +18517,8 @@ T['io.flow.internal.v0.models.carrier_file'] = PropTypes.exact({
|
|
|
18265
18517
|
result: T['io.flow.internal.v0.models.carrier_file_result'],
|
|
18266
18518
|
});
|
|
18267
18519
|
|
|
18520
|
+
T['io.flow.internal.v0.enums.carrier_document_type'] = PropTypes.oneOf(['commercial_invoice']);
|
|
18521
|
+
|
|
18268
18522
|
T['io.flow.internal.v0.models.carrier_charge_reference'] = PropTypes.exact({
|
|
18269
18523
|
id: PropTypes.string.isRequired,
|
|
18270
18524
|
});
|
|
@@ -18400,6 +18654,7 @@ T['io.flow.internal.v0.models.label_surcharge_form'] = PropTypes.exact({
|
|
|
18400
18654
|
saturday_stop: T['io.flow.internal.v0.models.label_surcharge_single_form'],
|
|
18401
18655
|
residential_extended_area_pickup: T['io.flow.internal.v0.models.label_surcharge_single_form'],
|
|
18402
18656
|
package_level_detail: T['io.flow.internal.v0.models.label_surcharge_single_form'],
|
|
18657
|
+
pickup: T['io.flow.internal.v0.models.label_surcharge_single_form'],
|
|
18403
18658
|
});
|
|
18404
18659
|
|
|
18405
18660
|
T['io.flow.internal.v0.models.carrier_tax_form'] = PropTypes.exact({
|
|
@@ -18749,6 +19004,7 @@ T['io.flow.internal.v0.models.channel_order_acceptance'] = PropTypes.exact({
|
|
|
18749
19004
|
channel_id: PropTypes.string.isRequired,
|
|
18750
19005
|
external_order_reference: PropTypes.string.isRequired,
|
|
18751
19006
|
payment_request_id: PropTypes.string,
|
|
19007
|
+
order_payment_request_ids: PropTypes.arrayOf(PropTypes.string),
|
|
18752
19008
|
order_edit_payment_request_ids: PropTypes.arrayOf(PropTypes.string),
|
|
18753
19009
|
status: T['io.flow.internal.v0.enums.channel_order_acceptance_status'].isRequired,
|
|
18754
19010
|
reasons: PropTypes.arrayOf(T['io.flow.internal.v0.models.channel_order_acceptance_reason']).isRequired,
|
|
@@ -19247,6 +19503,21 @@ T['io.flow.internal.v0.models.other_record_metadata'] = PropTypes.exact({
|
|
|
19247
19503
|
failed_payout: T['io.flow.internal.v0.models.other_record_metadata_failed_payout'],
|
|
19248
19504
|
});
|
|
19249
19505
|
|
|
19506
|
+
T['io.flow.internal.v0.enums.file_type'] = PropTypes.oneOf(['pdf']);
|
|
19507
|
+
|
|
19508
|
+
T['io.flow.internal.v0.models.base_64_carrier_document_content'] = PropTypes.exact({
|
|
19509
|
+
discriminator: PropTypes.oneOf(['base_64_carrier_document_content']).isRequired,
|
|
19510
|
+
base64_string: PropTypes.string.isRequired,
|
|
19511
|
+
file_type: T['io.flow.internal.v0.enums.file_type'].isRequired,
|
|
19512
|
+
});
|
|
19513
|
+
|
|
19514
|
+
T['io.flow.internal.v0.unions.carrier_document_content'] = PropTypes.oneOfType([T['io.flow.internal.v0.models.base_64_carrier_document_content']]);
|
|
19515
|
+
|
|
19516
|
+
T['io.flow.internal.v0.models.carrier_document'] = PropTypes.exact({
|
|
19517
|
+
document_type: T['io.flow.internal.v0.enums.carrier_document_type'].isRequired,
|
|
19518
|
+
document_content: T['io.flow.internal.v0.unions.carrier_document_content'].isRequired,
|
|
19519
|
+
});
|
|
19520
|
+
|
|
19250
19521
|
T['io.flow.internal.v0.models.bank_payment_status_import_result'] = PropTypes.exact({
|
|
19251
19522
|
processed_at: PropTypes.string.isRequired,
|
|
19252
19523
|
number_lines_successful: PropTypes.number.isRequired,
|
|
@@ -19297,11 +19568,6 @@ T['io.flow.internal.v0.models.standalone_attachment_upserted'] = PropTypes.exact
|
|
|
19297
19568
|
attachment: T['io.flow.internal.v0.models.standalone_attachment'].isRequired,
|
|
19298
19569
|
});
|
|
19299
19570
|
|
|
19300
|
-
T['io.flow.internal.v0.models.pending_bank_payment_detail'] = PropTypes.exact({
|
|
19301
|
-
transaction: T['io.flow.internal.v0.models.transaction_reference'].isRequired,
|
|
19302
|
-
statement: T['io.flow.internal.v0.models.billing_statement_reference'].isRequired,
|
|
19303
|
-
});
|
|
19304
|
-
|
|
19305
19571
|
T['io.flow.internal.v0.models.explicit_statement'] = PropTypes.exact({
|
|
19306
19572
|
id: PropTypes.string.isRequired,
|
|
19307
19573
|
statement: T['io.flow.internal.v0.models.billing_statement_reference'].isRequired,
|
|
@@ -19443,6 +19709,7 @@ T['io.flow.internal.v0.models.restriction_item_request_form'] = PropTypes.exact(
|
|
|
19443
19709
|
statuses: PropTypes.arrayOf(T['io.flow.internal.v0.enums.restriction_status']),
|
|
19444
19710
|
rule_ids: PropTypes.arrayOf(PropTypes.string),
|
|
19445
19711
|
user_ids: PropTypes.arrayOf(PropTypes.string),
|
|
19712
|
+
exclude_items_with_pc: PropTypes.bool,
|
|
19446
19713
|
category: PropTypes.string,
|
|
19447
19714
|
product_name_query: PropTypes.string,
|
|
19448
19715
|
hs6: PropTypes.string,
|
|
@@ -19490,44 +19757,6 @@ T['io.flow.internal.v0.models.auto_review_criteria'] = PropTypes.exact({
|
|
|
19490
19757
|
action: T['io.flow.internal.v0.enums.restriction_status'],
|
|
19491
19758
|
});
|
|
19492
19759
|
|
|
19493
|
-
T['io.flow.internal.v0.models.restriction_rule_form'] = PropTypes.exact({
|
|
19494
|
-
name: PropTypes.string.isRequired,
|
|
19495
|
-
description: PropTypes.string.isRequired,
|
|
19496
|
-
action: T['io.flow.internal.v0.enums.restriction_action'].isRequired,
|
|
19497
|
-
regions: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
19498
|
-
positive_keywords: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
19499
|
-
negative_keywords: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
19500
|
-
value_threshold_usd: PropTypes.number,
|
|
19501
|
-
auto_review_criteria: PropTypes.arrayOf(T['io.flow.internal.v0.models.auto_review_criteria']),
|
|
19502
|
-
source: T['io.flow.internal.v0.enums.restriction_organization_source'].isRequired,
|
|
19503
|
-
sellability_positive_keywords: PropTypes.arrayOf(PropTypes.string),
|
|
19504
|
-
community_exemption: PropTypes.arrayOf(T['io.flow.internal.v0.enums.restriction_rule_community_exemption']).isRequired,
|
|
19505
|
-
reason_code: PropTypes.string.isRequired,
|
|
19506
|
-
});
|
|
19507
|
-
|
|
19508
|
-
T['io.flow.internal.v0.models.restriction_rule'] = PropTypes.exact({
|
|
19509
|
-
id: PropTypes.string.isRequired,
|
|
19510
|
-
name: PropTypes.string.isRequired,
|
|
19511
|
-
description: PropTypes.string.isRequired,
|
|
19512
|
-
action: T['io.flow.internal.v0.enums.restriction_action'].isRequired,
|
|
19513
|
-
regions: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
19514
|
-
positive_keywords: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
19515
|
-
negative_keywords: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
19516
|
-
value_threshold_usd: PropTypes.number,
|
|
19517
|
-
auto_review_criteria: PropTypes.arrayOf(T['io.flow.internal.v0.models.auto_review_criteria']),
|
|
19518
|
-
source: T['io.flow.internal.v0.enums.restriction_organization_source'].isRequired,
|
|
19519
|
-
sellability_positive_keywords: PropTypes.arrayOf(PropTypes.string),
|
|
19520
|
-
community_exemption: PropTypes.arrayOf(T['io.flow.internal.v0.enums.restriction_rule_community_exemption']).isRequired,
|
|
19521
|
-
reason_code: PropTypes.string.isRequired,
|
|
19522
|
-
});
|
|
19523
|
-
|
|
19524
|
-
T['io.flow.internal.v0.models.restriction_rule_upserted'] = PropTypes.exact({
|
|
19525
|
-
discriminator: PropTypes.oneOf(['restriction_rule_upserted']).isRequired,
|
|
19526
|
-
event_id: PropTypes.string.isRequired,
|
|
19527
|
-
timestamp: PropTypes.string.isRequired,
|
|
19528
|
-
restriction_rule: T['io.flow.internal.v0.models.restriction_rule'].isRequired,
|
|
19529
|
-
});
|
|
19530
|
-
|
|
19531
19760
|
T['io.flow.internal.v0.enums.order_charge_trigger'] = PropTypes.oneOf(['first_shipment', 'last_shipment', 'shipment_exhausted']);
|
|
19532
19761
|
|
|
19533
19762
|
T['io.flow.common.v0.models.catalog_item_reference'] = PropTypes.exact({
|
|
@@ -20382,7 +20611,76 @@ T['io.flow.internal.v0.models.authorization_bundle_upserted'] = PropTypes.exact(
|
|
|
20382
20611
|
authorization_bundle: T['io.flow.internal.v0.models.authorization_bundle'].isRequired,
|
|
20383
20612
|
});
|
|
20384
20613
|
|
|
20614
|
+
T['io.flow.internal.v0.enums.restriction_attribute_operator'] = PropTypes.oneOf(['and', 'or']);
|
|
20615
|
+
|
|
20616
|
+
T['io.flow.internal.v0.unions.restriction_attribute_rule_condition'] = PropTypes.oneOfType([
|
|
20617
|
+
T['io.flow.internal.v0.models.restriction_attribute_condition_single'],
|
|
20618
|
+
T['io.flow.internal.v0.models.restriction_attribute_condition_multiple'],
|
|
20619
|
+
]);
|
|
20620
|
+
|
|
20621
|
+
T['io.flow.internal.v0.enums.restriction_attribute_result'] = PropTypes.oneOf(
|
|
20622
|
+
['pending_classification', 'pending_verification', 'accepted', 'restricted'],
|
|
20623
|
+
);
|
|
20624
|
+
|
|
20625
|
+
T['io.flow.internal.v0.models.restriction_attribute_rule'] = PropTypes.exact({
|
|
20626
|
+
conditions: PropTypes.arrayOf(T['io.flow.internal.v0.unions.restriction_attribute_rule_condition']).isRequired,
|
|
20627
|
+
operator: T['io.flow.internal.v0.enums.restriction_attribute_operator'],
|
|
20628
|
+
result: T['io.flow.internal.v0.enums.restriction_attribute_result'].isRequired,
|
|
20629
|
+
});
|
|
20630
|
+
|
|
20631
|
+
T['io.flow.internal.v0.models.attribute_rule'] = PropTypes.exact({
|
|
20632
|
+
restriction_attribute_rules: PropTypes.arrayOf(T['io.flow.internal.v0.models.restriction_attribute_rule']).isRequired,
|
|
20633
|
+
default_result: T['io.flow.internal.v0.enums.restriction_attribute_result'],
|
|
20634
|
+
});
|
|
20635
|
+
|
|
20636
|
+
T['io.flow.internal.v0.models.restriction_rule_form'] = PropTypes.exact({
|
|
20637
|
+
name: PropTypes.string.isRequired,
|
|
20638
|
+
description: PropTypes.string.isRequired,
|
|
20639
|
+
action: T['io.flow.internal.v0.enums.restriction_action'].isRequired,
|
|
20640
|
+
regions: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
20641
|
+
positive_keywords: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
20642
|
+
negative_keywords: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
20643
|
+
value_threshold_usd: PropTypes.number,
|
|
20644
|
+
auto_review_criteria: PropTypes.arrayOf(T['io.flow.internal.v0.models.auto_review_criteria']),
|
|
20645
|
+
source: T['io.flow.internal.v0.enums.restriction_organization_source'].isRequired,
|
|
20646
|
+
sellability_positive_keywords: PropTypes.arrayOf(PropTypes.string),
|
|
20647
|
+
community_exemption: PropTypes.arrayOf(T['io.flow.internal.v0.enums.restriction_rule_community_exemption']).isRequired,
|
|
20648
|
+
reason_code: PropTypes.string.isRequired,
|
|
20649
|
+
attribute_names: PropTypes.arrayOf(PropTypes.string),
|
|
20650
|
+
attribute_rule_conditions: T['io.flow.internal.v0.models.attribute_rule'],
|
|
20651
|
+
keyword_cancelling: PropTypes.arrayOf(T['io.flow.internal.v0.models.keyword_cancelling']),
|
|
20652
|
+
activation_status: T['io.flow.internal.v0.enums.restriction_rule_activation_status'],
|
|
20653
|
+
});
|
|
20654
|
+
|
|
20655
|
+
T['io.flow.internal.v0.models.restriction_rule'] = PropTypes.exact({
|
|
20656
|
+
id: PropTypes.string.isRequired,
|
|
20657
|
+
name: PropTypes.string.isRequired,
|
|
20658
|
+
description: PropTypes.string.isRequired,
|
|
20659
|
+
action: T['io.flow.internal.v0.enums.restriction_action'].isRequired,
|
|
20660
|
+
regions: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
20661
|
+
positive_keywords: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
20662
|
+
negative_keywords: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
20663
|
+
value_threshold_usd: PropTypes.number,
|
|
20664
|
+
auto_review_criteria: PropTypes.arrayOf(T['io.flow.internal.v0.models.auto_review_criteria']),
|
|
20665
|
+
source: T['io.flow.internal.v0.enums.restriction_organization_source'].isRequired,
|
|
20666
|
+
sellability_positive_keywords: PropTypes.arrayOf(PropTypes.string),
|
|
20667
|
+
community_exemption: PropTypes.arrayOf(T['io.flow.internal.v0.enums.restriction_rule_community_exemption']).isRequired,
|
|
20668
|
+
reason_code: PropTypes.string.isRequired,
|
|
20669
|
+
attribute_names: PropTypes.arrayOf(PropTypes.string),
|
|
20670
|
+
attribute_rule_conditions: T['io.flow.internal.v0.models.attribute_rule'],
|
|
20671
|
+
keyword_cancelling: PropTypes.arrayOf(T['io.flow.internal.v0.models.keyword_cancelling']),
|
|
20672
|
+
activation_status: T['io.flow.internal.v0.enums.restriction_rule_activation_status'],
|
|
20673
|
+
});
|
|
20674
|
+
|
|
20675
|
+
T['io.flow.internal.v0.models.restriction_rule_upserted'] = PropTypes.exact({
|
|
20676
|
+
discriminator: PropTypes.oneOf(['restriction_rule_upserted']).isRequired,
|
|
20677
|
+
event_id: PropTypes.string.isRequired,
|
|
20678
|
+
timestamp: PropTypes.string.isRequired,
|
|
20679
|
+
restriction_rule: T['io.flow.internal.v0.models.restriction_rule'].isRequired,
|
|
20680
|
+
});
|
|
20681
|
+
|
|
20385
20682
|
T['io.flow.internal.v0.enums.ansh_item_type'] = PropTypes.oneOf(['physical', 'digital']);
|
|
20683
|
+
T['io.flow.internal.v0.enums.anirban_item_type'] = PropTypes.oneOf(['physical', 'digital']);
|
|
20386
20684
|
T['io.flow.common.v0.enums.role'] = PropTypes.oneOf(['admin', 'member']);
|
|
20387
20685
|
|
|
20388
20686
|
T['io.flow.organization.v0.models.organization_authorization'] = PropTypes.exact({
|
|
@@ -20449,22 +20747,6 @@ T['io.flow.internal.v0.models.all_organizations_membership'] = PropTypes.exact({
|
|
|
20449
20747
|
role: T['io.flow.common.v0.enums.role'].isRequired,
|
|
20450
20748
|
});
|
|
20451
20749
|
|
|
20452
|
-
T['io.flow.internal.v0.models.alert_error_summary'] = PropTypes.exact({
|
|
20453
|
-
event_id: PropTypes.number.isRequired,
|
|
20454
|
-
error: PropTypes.string.isRequired,
|
|
20455
|
-
});
|
|
20456
|
-
|
|
20457
|
-
T['io.flow.internal.v0.models.alert_failure_summary_detail'] = PropTypes.exact({
|
|
20458
|
-
queue: PropTypes.string.isRequired,
|
|
20459
|
-
count: PropTypes.number.isRequired,
|
|
20460
|
-
errors: PropTypes.arrayOf(T['io.flow.internal.v0.models.alert_error_summary']).isRequired,
|
|
20461
|
-
});
|
|
20462
|
-
|
|
20463
|
-
T['io.flow.internal.v0.models.alert_failure_summary'] = PropTypes.exact({
|
|
20464
|
-
database: PropTypes.string.isRequired,
|
|
20465
|
-
summaries: PropTypes.arrayOf(T['io.flow.internal.v0.models.alert_failure_summary_detail']).isRequired,
|
|
20466
|
-
});
|
|
20467
|
-
|
|
20468
20750
|
T['io.flow.internal.v0.enums.aldo_item_type'] = PropTypes.oneOf(['physical', 'digital']);
|
|
20469
20751
|
|
|
20470
20752
|
T['io.flow.internal.v0.models.afterpay_refund'] = PropTypes.exact({
|
|
@@ -22638,6 +22920,7 @@ T['io.flow.label.v0.models.detailed_shipping_label_form'] = PropTypes.exact({
|
|
|
22638
22920
|
package_dimensions_source: T['io.flow.label.v0.enums.package_dimensions_source'],
|
|
22639
22921
|
origin_location_source: T['io.flow.label.v0.enums.origin_location_source'],
|
|
22640
22922
|
reference_id: PropTypes.string,
|
|
22923
|
+
shipping_date_time: PropTypes.string,
|
|
22641
22924
|
});
|
|
22642
22925
|
|
|
22643
22926
|
T['io.flow.label.v0.models.bridge_shipping_label_form'] = PropTypes.exact({
|
|
@@ -22957,14 +23240,6 @@ T['io.flow.internal.v0.models.transaction_adjustment_form'] = PropTypes.exact({
|
|
|
22957
23240
|
type: T['io.flow.internal.v0.enums.adjustment_transaction_type'],
|
|
22958
23241
|
});
|
|
22959
23242
|
|
|
22960
|
-
T['io.flow.internal.v0.models.transaction_adjustment'] = PropTypes.exact({
|
|
22961
|
-
id: PropTypes.string.isRequired,
|
|
22962
|
-
original_transaction: T['io.flow.internal.v0.models.transaction_reference'].isRequired,
|
|
22963
|
-
adjustment_transaction: T['io.flow.internal.v0.models.transaction_reference'],
|
|
22964
|
-
description: PropTypes.string.isRequired,
|
|
22965
|
-
details: T['io.flow.internal.v0.unions.adjustment_details'].isRequired,
|
|
22966
|
-
});
|
|
22967
|
-
|
|
22968
23243
|
T['io.flow.internal.v0.models.additional_import_tax'] = PropTypes.exact({
|
|
22969
23244
|
name: PropTypes.string,
|
|
22970
23245
|
additional_import_tax_value: T['io.flow.common.v0.models.money'],
|
|
@@ -23032,6 +23307,72 @@ T['io.flow.internal.v0.unions.order_action_form'] = PropTypes.oneOfType([
|
|
|
23032
23307
|
T['io.flow.internal.v0.models.fulfillment_action_form'],
|
|
23033
23308
|
]);
|
|
23034
23309
|
|
|
23310
|
+
T['io.flow.internal.v0.models.transaction_reference'] = PropTypes.exact({
|
|
23311
|
+
id: PropTypes.string.isRequired,
|
|
23312
|
+
});
|
|
23313
|
+
|
|
23314
|
+
T['io.flow.internal.v0.models.transaction_adjustment'] = PropTypes.exact({
|
|
23315
|
+
id: PropTypes.string.isRequired,
|
|
23316
|
+
original_transaction: T['io.flow.internal.v0.models.transaction_reference'].isRequired,
|
|
23317
|
+
adjustment_transaction: T['io.flow.internal.v0.models.transaction_reference'],
|
|
23318
|
+
description: PropTypes.string.isRequired,
|
|
23319
|
+
details: T['io.flow.internal.v0.unions.adjustment_details'].isRequired,
|
|
23320
|
+
});
|
|
23321
|
+
|
|
23322
|
+
T['io.flow.internal.v0.models.return_trigger_reversal'] = PropTypes.exact({
|
|
23323
|
+
discriminator: PropTypes.oneOf(['by_reversal']).isRequired,
|
|
23324
|
+
reversal: T['io.flow.internal.v0.models.transaction_reference'].isRequired,
|
|
23325
|
+
});
|
|
23326
|
+
|
|
23327
|
+
T['io.flow.internal.v0.models.pending_bank_payment_detail'] = PropTypes.exact({
|
|
23328
|
+
transaction: T['io.flow.internal.v0.models.transaction_reference'].isRequired,
|
|
23329
|
+
statement: T['io.flow.internal.v0.models.billing_statement_reference'].isRequired,
|
|
23330
|
+
});
|
|
23331
|
+
|
|
23332
|
+
T['io.flow.internal.v0.models.non_l4l_tax_duty_fx_fee_metadata'] = PropTypes.exact({
|
|
23333
|
+
discriminator: PropTypes.oneOf(['non_l4l_tax_duty_fx_fee_metadata']).isRequired,
|
|
23334
|
+
tax: T['io.flow.internal.v0.models.transaction_reference'],
|
|
23335
|
+
duty: T['io.flow.internal.v0.models.transaction_reference'],
|
|
23336
|
+
});
|
|
23337
|
+
|
|
23338
|
+
T['io.flow.payment.v0.models.refund_reference'] = PropTypes.exact({
|
|
23339
|
+
discriminator: PropTypes.oneOf(['refund_reference']).isRequired,
|
|
23340
|
+
id: PropTypes.string.isRequired,
|
|
23341
|
+
key: PropTypes.string.isRequired,
|
|
23342
|
+
});
|
|
23343
|
+
|
|
23344
|
+
T['io.flow.payment.v0.unions.transfer_reference'] = PropTypes.oneOfType([
|
|
23345
|
+
T['io.flow.payment.v0.models.capture_reference'],
|
|
23346
|
+
T['io.flow.payment.v0.models.refund_reference'],
|
|
23347
|
+
T['io.flow.payment.v0.models.dispute_reference'],
|
|
23348
|
+
]);
|
|
23349
|
+
|
|
23350
|
+
T['io.flow.payment.v0.models.refund_identifier'] = PropTypes.exact({
|
|
23351
|
+
id: PropTypes.string.isRequired,
|
|
23352
|
+
refund: T['io.flow.payment.v0.models.refund_reference'].isRequired,
|
|
23353
|
+
name: PropTypes.string.isRequired,
|
|
23354
|
+
identifier: PropTypes.string.isRequired,
|
|
23355
|
+
primary: PropTypes.bool.isRequired,
|
|
23356
|
+
});
|
|
23357
|
+
|
|
23358
|
+
T['io.flow.internal.v0.models.return_trigger_refund'] = PropTypes.exact({
|
|
23359
|
+
discriminator: PropTypes.oneOf(['by_refund']).isRequired,
|
|
23360
|
+
refund: T['io.flow.payment.v0.models.refund_reference'].isRequired,
|
|
23361
|
+
});
|
|
23362
|
+
|
|
23363
|
+
T['io.flow.internal.v0.unions.return_trigger'] = PropTypes.oneOfType([
|
|
23364
|
+
T['io.flow.internal.v0.models.return_trigger_refund'],
|
|
23365
|
+
T['io.flow.internal.v0.models.return_trigger_reversal'],
|
|
23366
|
+
]);
|
|
23367
|
+
|
|
23368
|
+
T['io.flow.internal.v0.models.accounting_return_metadata'] = PropTypes.exact({
|
|
23369
|
+
discriminator: PropTypes.oneOf(['accounting_return_metadata']).isRequired,
|
|
23370
|
+
transactions_until: PropTypes.string.isRequired,
|
|
23371
|
+
refund: T['io.flow.payment.v0.models.refund_reference'],
|
|
23372
|
+
tax_reversal: T['io.flow.internal.v0.models.transaction_reference'],
|
|
23373
|
+
duty_reversal: T['io.flow.internal.v0.models.transaction_reference'],
|
|
23374
|
+
});
|
|
23375
|
+
|
|
23035
23376
|
T['io.flow.internal.v0.models.bank_account_reference'] = PropTypes.exact({
|
|
23036
23377
|
id: PropTypes.string.isRequired,
|
|
23037
23378
|
});
|
|
@@ -23108,6 +23449,10 @@ T['io.flow.shopify.markets.internal.event.v0.unions.shopify_markets_internal_eve
|
|
|
23108
23449
|
T['io.flow.shopify.markets.internal.event.v0.models.shopify_markets_webhook_registration_deleted'],
|
|
23109
23450
|
T['io.flow.shopify.markets.internal.event.v0.models.shopify_markets_shop_statistics_upserted'],
|
|
23110
23451
|
T['io.flow.shopify.markets.internal.event.v0.models.shopify_markets_shop_statistics_deleted'],
|
|
23452
|
+
T['io.flow.shopify.markets.internal.event.v0.models.shopify_product_taxonomy_attribute_upserted'],
|
|
23453
|
+
T['io.flow.shopify.markets.internal.event.v0.models.shopify_product_taxonomy_attribute_deleted'],
|
|
23454
|
+
T['io.flow.shopify.markets.internal.event.v0.models.shopify_product_taxonomy_attribute_value_upserted'],
|
|
23455
|
+
T['io.flow.shopify.markets.internal.event.v0.models.shopify_product_taxonomy_attribute_value_deleted'],
|
|
23111
23456
|
T['io.flow.shopify.markets.internal.event.v0.models.shopify_markets_metrics_upserted'],
|
|
23112
23457
|
T['io.flow.shopify.markets.internal.event.v0.models.shopify_markets_metrics_deleted'],
|
|
23113
23458
|
T['io.flow.shopify.markets.internal.event.v0.models.channel_order_summary_upserted'],
|
|
@@ -23194,12 +23539,6 @@ T['io.flow.internal.v0.models.shopify_monitoring_order_monitor'] = PropTypes.exa
|
|
|
23194
23539
|
monitor: T['io.flow.internal.v0.unions.shopify_monitoring_order_monitor_type'].isRequired,
|
|
23195
23540
|
});
|
|
23196
23541
|
|
|
23197
|
-
T['io.flow.internal.v0.models.shopify_monitoring_order_monitor_review'] = PropTypes.exact({
|
|
23198
|
-
id: PropTypes.string.isRequired,
|
|
23199
|
-
order_monitor: T['io.flow.internal.v0.models.shopify_monitoring_order_monitor'].isRequired,
|
|
23200
|
-
status: T['io.flow.internal.v0.enums.shopify_monitoring_monitor_review_status'].isRequired,
|
|
23201
|
-
});
|
|
23202
|
-
|
|
23203
23542
|
T['io.flow.internal.v0.models.shopify_monitoring_order_monitor_event_upserted'] = PropTypes.exact({
|
|
23204
23543
|
discriminator: PropTypes.oneOf(['shopify_monitoring_order_monitor_event_upserted']).isRequired,
|
|
23205
23544
|
event_id: PropTypes.string.isRequired,
|
|
@@ -23325,15 +23664,6 @@ T['io.flow.organization.v0.models.invitation_version'] = PropTypes.exact({
|
|
|
23325
23664
|
invitation: T['io.flow.organization.v0.models.invitation'].isRequired,
|
|
23326
23665
|
});
|
|
23327
23666
|
|
|
23328
|
-
T['io.flow.internal.v0.models.onboarding_audit_snapshot'] = PropTypes.exact({
|
|
23329
|
-
id: PropTypes.string.isRequired,
|
|
23330
|
-
organization: T['io.flow.common.v0.models.organization'].isRequired,
|
|
23331
|
-
result: T['io.flow.internal.v0.enums.onboarding_audit_result'].isRequired,
|
|
23332
|
-
theme_reports: PropTypes.arrayOf(T['io.flow.internal.v0.models.onboarding_audit_theme_report']).isRequired,
|
|
23333
|
-
requested_by: T['io.flow.common.v0.models.user'].isRequired,
|
|
23334
|
-
requested_at: PropTypes.string.isRequired,
|
|
23335
|
-
});
|
|
23336
|
-
|
|
23337
23667
|
T['io.flow.internal.v0.models.onboarding_audit_report'] = PropTypes.exact({
|
|
23338
23668
|
organization: T['io.flow.common.v0.models.organization'].isRequired,
|
|
23339
23669
|
result: T['io.flow.internal.v0.enums.onboarding_audit_result'].isRequired,
|
|
@@ -23696,6 +24026,8 @@ T['io.flow.internal.v0.unions.task_metadata'] = PropTypes.oneOfType([
|
|
|
23696
24026
|
T['io.flow.internal.v0.models.statement_creation_metadata'],
|
|
23697
24027
|
T['io.flow.internal.v0.models.accounting_pending_order_metadata'],
|
|
23698
24028
|
T['io.flow.internal.v0.models.tax_duty_reason_code_metadata'],
|
|
24029
|
+
T['io.flow.internal.v0.models.accounting_return_metadata'],
|
|
24030
|
+
T['io.flow.internal.v0.models.non_l4l_tax_duty_fx_fee_metadata'],
|
|
23699
24031
|
]);
|
|
23700
24032
|
|
|
23701
24033
|
T['io.flow.common.v0.models.price'] = PropTypes.exact({
|
|
@@ -24238,6 +24570,7 @@ T['io.flow.internal.v0.models.restriction_product'] = PropTypes.exact({
|
|
|
24238
24570
|
thumbnails: PropTypes.arrayOf(T['io.flow.catalog.v0.models.image']).isRequired,
|
|
24239
24571
|
hs_code: PropTypes.string,
|
|
24240
24572
|
hs_code_source: T['io.flow.internal.v0.enums.harmonization_decision_source'],
|
|
24573
|
+
classification_scope: T['io.flow.internal.v0.enums.classification_scope'],
|
|
24241
24574
|
url: PropTypes.string,
|
|
24242
24575
|
reviews: PropTypes.arrayOf(T['io.flow.internal.v0.models.restriction_item_review']).isRequired,
|
|
24243
24576
|
created_at: PropTypes.string.isRequired,
|
|
@@ -24257,6 +24590,7 @@ T['io.flow.internal.v0.models.restriction_item'] = PropTypes.exact({
|
|
|
24257
24590
|
price: T['io.flow.common.v0.models.price'].isRequired,
|
|
24258
24591
|
hs_code: PropTypes.string,
|
|
24259
24592
|
hs_code_source: T['io.flow.internal.v0.enums.harmonization_decision_source'],
|
|
24593
|
+
classification_scope: T['io.flow.internal.v0.enums.classification_scope'],
|
|
24260
24594
|
description: PropTypes.string.isRequired,
|
|
24261
24595
|
category: PropTypes.string,
|
|
24262
24596
|
categories: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
@@ -24384,29 +24718,6 @@ T['io.flow.internal.v0.models.gift_card_authorization_error'] = PropTypes.exact(
|
|
|
24384
24718
|
gift_card_program: T['io.flow.internal.v0.models.gift_card_program'].isRequired,
|
|
24385
24719
|
});
|
|
24386
24720
|
|
|
24387
|
-
T['io.flow.order.price.v0.models.order_price_detail'] = PropTypes.exact({
|
|
24388
|
-
key: T['io.flow.order.price.v0.enums.order_price_detail_key'].isRequired,
|
|
24389
|
-
currency: PropTypes.string.isRequired,
|
|
24390
|
-
amount: PropTypes.number.isRequired,
|
|
24391
|
-
label: PropTypes.string.isRequired,
|
|
24392
|
-
base: T['io.flow.common.v0.models.price'].isRequired,
|
|
24393
|
-
components: PropTypes.arrayOf(T['io.flow.order.price.v0.models.order_price_detail_component']).isRequired,
|
|
24394
|
-
name: PropTypes.string,
|
|
24395
|
-
rate: PropTypes.number,
|
|
24396
|
-
accuracy: T['io.flow.price.v0.enums.price_accuracy'],
|
|
24397
|
-
rate_label: PropTypes.string,
|
|
24398
|
-
});
|
|
24399
|
-
|
|
24400
|
-
T['io.flow.internal.v0.models.debug_order'] = PropTypes.exact({
|
|
24401
|
-
organization_id: PropTypes.string.isRequired,
|
|
24402
|
-
number: PropTypes.string.isRequired,
|
|
24403
|
-
prices: PropTypes.arrayOf(T['io.flow.order.price.v0.models.order_price_detail']).isRequired,
|
|
24404
|
-
total: T['io.flow.common.v0.models.money_with_base'].isRequired,
|
|
24405
|
-
identifiers: PropTypes.objectOf(PropTypes.string),
|
|
24406
|
-
submitted_at: PropTypes.string,
|
|
24407
|
-
payment_source: T['io.flow.experience.v0.enums.order_payment_source_type'],
|
|
24408
|
-
});
|
|
24409
|
-
|
|
24410
24721
|
T['io.flow.internal.v0.models.components'] = PropTypes.exact({
|
|
24411
24722
|
vat: T['io.flow.common.v0.models.price'].isRequired,
|
|
24412
24723
|
duty: T['io.flow.common.v0.models.price'].isRequired,
|
|
@@ -24430,91 +24741,6 @@ T['io.flow.internal.v0.models.fees'] = PropTypes.exact({
|
|
|
24430
24741
|
sp: T['io.flow.internal.v0.models.fee'],
|
|
24431
24742
|
});
|
|
24432
24743
|
|
|
24433
|
-
T['io.flow.catalog.v0.models.localized_total'] = PropTypes.exact({
|
|
24434
|
-
key: PropTypes.oneOf(['localized_total']).isRequired,
|
|
24435
|
-
currency: PropTypes.string.isRequired,
|
|
24436
|
-
amount: PropTypes.number.isRequired,
|
|
24437
|
-
label: PropTypes.string.isRequired,
|
|
24438
|
-
base: T['io.flow.common.v0.models.price'].isRequired,
|
|
24439
|
-
});
|
|
24440
|
-
|
|
24441
|
-
T['io.flow.catalog.v0.unions.localized_price'] = PropTypes.oneOfType([
|
|
24442
|
-
T['io.flow.catalog.v0.models.localized_item_price'],
|
|
24443
|
-
T['io.flow.catalog.v0.models.localized_item_vat'],
|
|
24444
|
-
T['io.flow.catalog.v0.models.localized_item_duty'],
|
|
24445
|
-
T['io.flow.catalog.v0.models.localized_total'],
|
|
24446
|
-
]);
|
|
24447
|
-
|
|
24448
|
-
T['io.flow.fulfillment.v0.models.physical_delivery'] = PropTypes.exact({
|
|
24449
|
-
discriminator: PropTypes.oneOf(['physical_delivery']).isRequired,
|
|
24450
|
-
id: PropTypes.string.isRequired,
|
|
24451
|
-
key: PropTypes.string,
|
|
24452
|
-
center: T['io.flow.fulfillment.v0.models.center_summary'],
|
|
24453
|
-
fulfillment_routing: T['io.flow.fulfillment.v0.enums.fulfillment_routing'],
|
|
24454
|
-
ship_from_country: PropTypes.string,
|
|
24455
|
-
items: PropTypes.arrayOf(T['io.flow.fulfillment.v0.models.delivery_item']).isRequired,
|
|
24456
|
-
options: PropTypes.arrayOf(T['io.flow.fulfillment.v0.models.delivery_option']).isRequired,
|
|
24457
|
-
special_services: PropTypes.arrayOf(T['io.flow.fulfillment.v0.enums.physical_delivery_special_serivce']),
|
|
24458
|
-
prices: PropTypes.arrayOf(T['io.flow.order.price.v0.models.order_price_detail']),
|
|
24459
|
-
total: T['io.flow.catalog.v0.models.localized_total'],
|
|
24460
|
-
goods_supply: T['io.flow.common.v0.enums.goods_supply'],
|
|
24461
|
-
merchant_of_record_flow_entity: T['io.flow.merchant.of.record.v0.enums.flow_entity'],
|
|
24462
|
-
preferred_service: T['io.flow.fulfillment.v0.models.physical_delivery_preferred_service'],
|
|
24463
|
-
});
|
|
24464
|
-
|
|
24465
|
-
T['io.flow.fulfillment.v0.models.digital_delivery'] = PropTypes.exact({
|
|
24466
|
-
discriminator: PropTypes.oneOf(['digital_delivery']).isRequired,
|
|
24467
|
-
id: PropTypes.string.isRequired,
|
|
24468
|
-
key: PropTypes.string,
|
|
24469
|
-
items: PropTypes.arrayOf(T['io.flow.fulfillment.v0.models.delivery_item']).isRequired,
|
|
24470
|
-
prices: PropTypes.arrayOf(T['io.flow.order.price.v0.models.order_price_detail']),
|
|
24471
|
-
total: T['io.flow.catalog.v0.models.localized_total'],
|
|
24472
|
-
});
|
|
24473
|
-
|
|
24474
|
-
T['io.flow.fulfillment.v0.unions.delivery'] = PropTypes.oneOfType([
|
|
24475
|
-
T['io.flow.fulfillment.v0.models.digital_delivery'],
|
|
24476
|
-
T['io.flow.fulfillment.v0.models.physical_delivery'],
|
|
24477
|
-
]);
|
|
24478
|
-
|
|
24479
|
-
T['io.flow.fulfillment.v0.models.quote'] = PropTypes.exact({
|
|
24480
|
-
id: PropTypes.string.isRequired,
|
|
24481
|
-
destination: T['io.flow.fulfillment.v0.models.shipping_address'].isRequired,
|
|
24482
|
-
deliveries: PropTypes.arrayOf(T['io.flow.fulfillment.v0.unions.delivery']).isRequired,
|
|
24483
|
-
selections: PropTypes.arrayOf(T['io.flow.fulfillment.v0.models.delivery_option_reference']).isRequired,
|
|
24484
|
-
delivered_duty: T['io.flow.common.v0.enums.delivered_duty'].isRequired,
|
|
24485
|
-
delivered_duties: PropTypes.arrayOf(T['io.flow.common.v0.enums.delivered_duty']).isRequired,
|
|
24486
|
-
});
|
|
24487
|
-
|
|
24488
|
-
T['io.flow.internal.v0.models.order_rates_data_v3'] = PropTypes.exact({
|
|
24489
|
-
organization: PropTypes.string.isRequired,
|
|
24490
|
-
order_id: PropTypes.string.isRequired,
|
|
24491
|
-
order_number: PropTypes.string.isRequired,
|
|
24492
|
-
order_total: T['io.flow.catalog.v0.models.localized_total'].isRequired,
|
|
24493
|
-
rates: PropTypes.arrayOf(T['io.flow.internal.v0.models.rate_data_v3']).isRequired,
|
|
24494
|
-
});
|
|
24495
|
-
|
|
24496
|
-
T['io.flow.internal.v0.models.order_rates_published_v3'] = PropTypes.exact({
|
|
24497
|
-
discriminator: PropTypes.oneOf(['order_rates_published_v3']).isRequired,
|
|
24498
|
-
event_id: PropTypes.string.isRequired,
|
|
24499
|
-
timestamp: PropTypes.string.isRequired,
|
|
24500
|
-
organization: PropTypes.string.isRequired,
|
|
24501
|
-
data: T['io.flow.internal.v0.models.order_rates_data_v3'].isRequired,
|
|
24502
|
-
});
|
|
24503
|
-
|
|
24504
|
-
T['io.flow.internal.v0.models.channel_order'] = PropTypes.exact({
|
|
24505
|
-
org_id: PropTypes.string.isRequired,
|
|
24506
|
-
flow_order_number: PropTypes.string.isRequired,
|
|
24507
|
-
shopify_order_number: PropTypes.string.isRequired,
|
|
24508
|
-
order_submission_date: PropTypes.string,
|
|
24509
|
-
order_item_count: PropTypes.number.isRequired,
|
|
24510
|
-
total: T['io.flow.catalog.v0.models.localized_total'].isRequired,
|
|
24511
|
-
merchant_total: PropTypes.number.isRequired,
|
|
24512
|
-
tracking_numbers: PropTypes.arrayOf(PropTypes.string),
|
|
24513
|
-
carrier: T['io.flow.reference.v0.models.carrier_service'],
|
|
24514
|
-
duty_paid: PropTypes.bool.isRequired,
|
|
24515
|
-
shop_id: PropTypes.string,
|
|
24516
|
-
});
|
|
24517
|
-
|
|
24518
24744
|
T['io.flow.internal.v0.models.next_billing_statement'] = PropTypes.exact({
|
|
24519
24745
|
date: PropTypes.string.isRequired,
|
|
24520
24746
|
amount: T['io.flow.common.v0.models.price'].isRequired,
|
|
@@ -24664,6 +24890,169 @@ T['io.flow.experience.v0.models.order_payment'] = PropTypes.exact({
|
|
|
24664
24890
|
method: PropTypes.string,
|
|
24665
24891
|
});
|
|
24666
24892
|
|
|
24893
|
+
T['io.flow.experience.v0.models.line'] = PropTypes.exact({
|
|
24894
|
+
id: PropTypes.string,
|
|
24895
|
+
item_number: PropTypes.string.isRequired,
|
|
24896
|
+
quantity: PropTypes.number.isRequired,
|
|
24897
|
+
price: T['io.flow.common.v0.models.price_with_base'].isRequired,
|
|
24898
|
+
total: T['io.flow.common.v0.models.price_with_base'].isRequired,
|
|
24899
|
+
attributes: PropTypes.objectOf(PropTypes.string),
|
|
24900
|
+
});
|
|
24901
|
+
|
|
24902
|
+
T['io.flow.experience.v0.models.experience_price_facet_conversion'] = PropTypes.exact({
|
|
24903
|
+
request: T['io.flow.experience.v0.models.experience_price_facet_conversion_request'].isRequired,
|
|
24904
|
+
price: T['io.flow.common.v0.models.price_with_base'].isRequired,
|
|
24905
|
+
});
|
|
24906
|
+
|
|
24907
|
+
T['io.flow.experience.v0.models.experience_price_facet_conversion_response'] = PropTypes.exact({
|
|
24908
|
+
facets: PropTypes.arrayOf(T['io.flow.experience.v0.models.experience_price_facet_conversion']).isRequired,
|
|
24909
|
+
});
|
|
24910
|
+
|
|
24911
|
+
T['io.flow.experience.v0.models.experience_price_conversion'] = PropTypes.exact({
|
|
24912
|
+
request: T['io.flow.experience.v0.models.experience_price_conversion_request'].isRequired,
|
|
24913
|
+
price: T['io.flow.common.v0.models.price_with_base'].isRequired,
|
|
24914
|
+
});
|
|
24915
|
+
|
|
24916
|
+
T['io.flow.experience.v0.models.experience_price_conversion_response'] = PropTypes.exact({
|
|
24917
|
+
prices: PropTypes.arrayOf(T['io.flow.experience.v0.models.experience_price_conversion']).isRequired,
|
|
24918
|
+
});
|
|
24919
|
+
|
|
24920
|
+
T['io.flow.experience.v0.models.discount'] = PropTypes.exact({
|
|
24921
|
+
discriminator: PropTypes.oneOf(['discount']).isRequired,
|
|
24922
|
+
id: PropTypes.string.isRequired,
|
|
24923
|
+
code: PropTypes.string,
|
|
24924
|
+
label: PropTypes.string.isRequired,
|
|
24925
|
+
price: T['io.flow.common.v0.models.price_with_base'].isRequired,
|
|
24926
|
+
attributes: PropTypes.objectOf(PropTypes.string),
|
|
24927
|
+
});
|
|
24928
|
+
|
|
24929
|
+
T['io.flow.experience.v0.unions.promotion'] = PropTypes.oneOfType([
|
|
24930
|
+
T['io.flow.experience.v0.models.free_shipping'],
|
|
24931
|
+
T['io.flow.experience.v0.models.discount'],
|
|
24932
|
+
]);
|
|
24933
|
+
|
|
24934
|
+
T['io.flow.experience.v0.models.promotions'] = PropTypes.exact({
|
|
24935
|
+
applied: PropTypes.arrayOf(T['io.flow.experience.v0.unions.promotion']).isRequired,
|
|
24936
|
+
available: PropTypes.arrayOf(T['io.flow.experience.v0.unions.promotion']).isRequired,
|
|
24937
|
+
});
|
|
24938
|
+
|
|
24939
|
+
T['io.flow.experience.v0.models.available_promotion'] = PropTypes.exact({
|
|
24940
|
+
id: PropTypes.string.isRequired,
|
|
24941
|
+
shipping_configuration: T['io.flow.fulfillment.v0.models.shipping_configuration_reference'].isRequired,
|
|
24942
|
+
region: T['io.flow.experience.v0.models.region_reference'].isRequired,
|
|
24943
|
+
promotions: PropTypes.arrayOf(T['io.flow.experience.v0.unions.promotion']).isRequired,
|
|
24944
|
+
});
|
|
24945
|
+
|
|
24946
|
+
T['io.flow.experience.v0.models.allocation_levy_component'] = PropTypes.exact({
|
|
24947
|
+
discriminator: PropTypes.oneOf(['allocation_levy_component']).isRequired,
|
|
24948
|
+
key: T['io.flow.order.price.v0.enums.order_price_detail_component_key'].isRequired,
|
|
24949
|
+
total: T['io.flow.common.v0.models.price_with_base'].isRequired,
|
|
24950
|
+
rate: PropTypes.number.isRequired,
|
|
24951
|
+
name: PropTypes.string.isRequired,
|
|
24952
|
+
price: T['io.flow.common.v0.models.price_with_base'],
|
|
24953
|
+
accuracy: T['io.flow.price.v0.enums.price_accuracy'],
|
|
24954
|
+
basis: T['io.flow.common.v0.models.money_with_base'],
|
|
24955
|
+
});
|
|
24956
|
+
|
|
24957
|
+
T['io.flow.experience.v0.models.allocation_detail_component'] = PropTypes.exact({
|
|
24958
|
+
discriminator: PropTypes.oneOf(['allocation_detail_component']).isRequired,
|
|
24959
|
+
key: T['io.flow.order.price.v0.enums.order_price_detail_component_key'].isRequired,
|
|
24960
|
+
total: T['io.flow.common.v0.models.price_with_base'].isRequired,
|
|
24961
|
+
price: T['io.flow.common.v0.models.price_with_base'],
|
|
24962
|
+
});
|
|
24963
|
+
|
|
24964
|
+
T['io.flow.experience.v0.unions.allocation_component'] = PropTypes.oneOfType([
|
|
24965
|
+
T['io.flow.experience.v0.models.allocation_detail_component'],
|
|
24966
|
+
T['io.flow.experience.v0.models.allocation_levy_component'],
|
|
24967
|
+
]);
|
|
24968
|
+
|
|
24969
|
+
T['io.flow.experience.v0.models.allocation_order_detail'] = PropTypes.exact({
|
|
24970
|
+
discriminator: PropTypes.oneOf(['allocation_order_detail']).isRequired,
|
|
24971
|
+
key: T['io.flow.order.price.v0.enums.order_price_detail_key'].isRequired,
|
|
24972
|
+
total: T['io.flow.common.v0.models.price_with_base'].isRequired,
|
|
24973
|
+
included: PropTypes.arrayOf(T['io.flow.experience.v0.unions.allocation_component']).isRequired,
|
|
24974
|
+
not_included: PropTypes.arrayOf(T['io.flow.experience.v0.unions.allocation_component']).isRequired,
|
|
24975
|
+
});
|
|
24976
|
+
|
|
24977
|
+
T['io.flow.experience.v0.models.allocation_line_detail'] = PropTypes.exact({
|
|
24978
|
+
discriminator: PropTypes.oneOf(['allocation_line_detail']).isRequired,
|
|
24979
|
+
id: PropTypes.string,
|
|
24980
|
+
number: PropTypes.string.isRequired,
|
|
24981
|
+
quantity: PropTypes.number.isRequired,
|
|
24982
|
+
key: T['io.flow.order.price.v0.enums.order_price_detail_key'].isRequired,
|
|
24983
|
+
price: T['io.flow.common.v0.models.price_with_base'].isRequired,
|
|
24984
|
+
total: T['io.flow.common.v0.models.price_with_base'].isRequired,
|
|
24985
|
+
included: PropTypes.arrayOf(T['io.flow.experience.v0.unions.allocation_component']).isRequired,
|
|
24986
|
+
not_included: PropTypes.arrayOf(T['io.flow.experience.v0.unions.allocation_component']).isRequired,
|
|
24987
|
+
});
|
|
24988
|
+
|
|
24989
|
+
T['io.flow.experience.v0.unions.allocation_detail'] = PropTypes.oneOfType([
|
|
24990
|
+
T['io.flow.experience.v0.models.allocation_line_detail'],
|
|
24991
|
+
T['io.flow.experience.v0.models.allocation_order_detail'],
|
|
24992
|
+
]);
|
|
24993
|
+
|
|
24994
|
+
T['io.flow.experience.v0.models.allocation'] = PropTypes.exact({
|
|
24995
|
+
order: T['io.flow.experience.v0.models.allocation_order_summary'].isRequired,
|
|
24996
|
+
details: PropTypes.arrayOf(T['io.flow.experience.v0.unions.allocation_detail']).isRequired,
|
|
24997
|
+
});
|
|
24998
|
+
|
|
24999
|
+
T['io.flow.order.price.v0.models.order_price_fee'] = PropTypes.exact({
|
|
25000
|
+
key: PropTypes.string.isRequired,
|
|
25001
|
+
value: T['io.flow.common.v0.models.price_with_base'].isRequired,
|
|
25002
|
+
type: T['io.flow.order.price.v0.enums.order_price_fee_type'].isRequired,
|
|
25003
|
+
});
|
|
25004
|
+
|
|
25005
|
+
T['io.flow.order.price.v0.models.purchase_price_breakdown'] = PropTypes.exact({
|
|
25006
|
+
total_price: T['io.flow.common.v0.models.price_with_base'].isRequired,
|
|
25007
|
+
product_price: T['io.flow.common.v0.models.price_with_base'].isRequired,
|
|
25008
|
+
fees: PropTypes.arrayOf(T['io.flow.order.price.v0.models.order_price_fee']).isRequired,
|
|
25009
|
+
});
|
|
25010
|
+
|
|
25011
|
+
T['io.flow.order.price.v0.models.order_price_detail_breakdown'] = PropTypes.exact({
|
|
25012
|
+
purchase_price: T['io.flow.order.price.v0.models.purchase_price_breakdown'].isRequired,
|
|
25013
|
+
fees: PropTypes.arrayOf(T['io.flow.order.price.v0.models.order_price_fee']).isRequired,
|
|
25014
|
+
});
|
|
25015
|
+
|
|
25016
|
+
T['io.flow.order.price.v0.models.order_price_detail'] = PropTypes.exact({
|
|
25017
|
+
key: T['io.flow.order.price.v0.enums.order_price_detail_key'].isRequired,
|
|
25018
|
+
currency: PropTypes.string.isRequired,
|
|
25019
|
+
amount: PropTypes.number.isRequired,
|
|
25020
|
+
label: PropTypes.string.isRequired,
|
|
25021
|
+
base: T['io.flow.common.v0.models.price'].isRequired,
|
|
25022
|
+
components: PropTypes.arrayOf(T['io.flow.order.price.v0.models.order_price_detail_component']).isRequired,
|
|
25023
|
+
name: PropTypes.string,
|
|
25024
|
+
rate: PropTypes.number,
|
|
25025
|
+
accuracy: T['io.flow.price.v0.enums.price_accuracy'],
|
|
25026
|
+
rate_label: PropTypes.string,
|
|
25027
|
+
breakdown: T['io.flow.order.price.v0.models.order_price_detail_breakdown'],
|
|
25028
|
+
});
|
|
25029
|
+
|
|
25030
|
+
T['io.flow.internal.v0.models.debug_order'] = PropTypes.exact({
|
|
25031
|
+
organization_id: PropTypes.string.isRequired,
|
|
25032
|
+
number: PropTypes.string.isRequired,
|
|
25033
|
+
prices: PropTypes.arrayOf(T['io.flow.order.price.v0.models.order_price_detail']).isRequired,
|
|
25034
|
+
total: T['io.flow.common.v0.models.money_with_base'].isRequired,
|
|
25035
|
+
identifiers: PropTypes.objectOf(PropTypes.string),
|
|
25036
|
+
submitted_at: PropTypes.string,
|
|
25037
|
+
payment_source: T['io.flow.experience.v0.enums.order_payment_source_type'],
|
|
25038
|
+
});
|
|
25039
|
+
|
|
25040
|
+
T['io.flow.catalog.v0.models.localized_total'] = PropTypes.exact({
|
|
25041
|
+
key: PropTypes.oneOf(['localized_total']).isRequired,
|
|
25042
|
+
currency: PropTypes.string.isRequired,
|
|
25043
|
+
amount: PropTypes.number.isRequired,
|
|
25044
|
+
label: PropTypes.string.isRequired,
|
|
25045
|
+
base: T['io.flow.common.v0.models.price'].isRequired,
|
|
25046
|
+
breakdown: T['io.flow.order.price.v0.models.order_price_detail_breakdown'],
|
|
25047
|
+
});
|
|
25048
|
+
|
|
25049
|
+
T['io.flow.catalog.v0.unions.localized_price'] = PropTypes.oneOfType([
|
|
25050
|
+
T['io.flow.catalog.v0.models.localized_item_price'],
|
|
25051
|
+
T['io.flow.catalog.v0.models.localized_item_vat'],
|
|
25052
|
+
T['io.flow.catalog.v0.models.localized_item_duty'],
|
|
25053
|
+
T['io.flow.catalog.v0.models.localized_total'],
|
|
25054
|
+
]);
|
|
25055
|
+
|
|
24667
25056
|
T['io.flow.catalog.v0.models.local'] = PropTypes.exact({
|
|
24668
25057
|
experience: T['io.flow.common.v0.models.experience_summary'].isRequired,
|
|
24669
25058
|
prices: PropTypes.arrayOf(T['io.flow.catalog.v0.unions.localized_price']).isRequired,
|
|
@@ -24734,6 +25123,99 @@ T['io.flow.internal.v0.models.item_filter_response'] = PropTypes.exact({
|
|
|
24734
25123
|
responses: PropTypes.arrayOf(T['io.flow.internal.v0.models.item_filter_value_response']).isRequired,
|
|
24735
25124
|
});
|
|
24736
25125
|
|
|
25126
|
+
T['io.flow.fulfillment.v0.models.physical_delivery'] = PropTypes.exact({
|
|
25127
|
+
discriminator: PropTypes.oneOf(['physical_delivery']).isRequired,
|
|
25128
|
+
id: PropTypes.string.isRequired,
|
|
25129
|
+
key: PropTypes.string,
|
|
25130
|
+
center: T['io.flow.fulfillment.v0.models.center_summary'],
|
|
25131
|
+
fulfillment_routing: T['io.flow.fulfillment.v0.enums.fulfillment_routing'],
|
|
25132
|
+
ship_from_country: PropTypes.string,
|
|
25133
|
+
items: PropTypes.arrayOf(T['io.flow.fulfillment.v0.models.delivery_item']).isRequired,
|
|
25134
|
+
options: PropTypes.arrayOf(T['io.flow.fulfillment.v0.models.delivery_option']).isRequired,
|
|
25135
|
+
special_services: PropTypes.arrayOf(T['io.flow.fulfillment.v0.enums.physical_delivery_special_serivce']),
|
|
25136
|
+
prices: PropTypes.arrayOf(T['io.flow.order.price.v0.models.order_price_detail']),
|
|
25137
|
+
total: T['io.flow.catalog.v0.models.localized_total'],
|
|
25138
|
+
goods_supply: T['io.flow.common.v0.enums.goods_supply'],
|
|
25139
|
+
merchant_of_record_flow_entity: T['io.flow.merchant.of.record.v0.enums.flow_entity'],
|
|
25140
|
+
preferred_service: T['io.flow.fulfillment.v0.models.physical_delivery_preferred_service'],
|
|
25141
|
+
});
|
|
25142
|
+
|
|
25143
|
+
T['io.flow.fulfillment.v0.models.digital_delivery'] = PropTypes.exact({
|
|
25144
|
+
discriminator: PropTypes.oneOf(['digital_delivery']).isRequired,
|
|
25145
|
+
id: PropTypes.string.isRequired,
|
|
25146
|
+
key: PropTypes.string,
|
|
25147
|
+
items: PropTypes.arrayOf(T['io.flow.fulfillment.v0.models.delivery_item']).isRequired,
|
|
25148
|
+
prices: PropTypes.arrayOf(T['io.flow.order.price.v0.models.order_price_detail']),
|
|
25149
|
+
total: T['io.flow.catalog.v0.models.localized_total'],
|
|
25150
|
+
});
|
|
25151
|
+
|
|
25152
|
+
T['io.flow.fulfillment.v0.unions.delivery'] = PropTypes.oneOfType([
|
|
25153
|
+
T['io.flow.fulfillment.v0.models.digital_delivery'],
|
|
25154
|
+
T['io.flow.fulfillment.v0.models.physical_delivery'],
|
|
25155
|
+
]);
|
|
25156
|
+
|
|
25157
|
+
T['io.flow.fulfillment.v0.models.quote'] = PropTypes.exact({
|
|
25158
|
+
id: PropTypes.string.isRequired,
|
|
25159
|
+
destination: T['io.flow.fulfillment.v0.models.shipping_address'].isRequired,
|
|
25160
|
+
deliveries: PropTypes.arrayOf(T['io.flow.fulfillment.v0.unions.delivery']).isRequired,
|
|
25161
|
+
selections: PropTypes.arrayOf(T['io.flow.fulfillment.v0.models.delivery_option_reference']).isRequired,
|
|
25162
|
+
delivered_duty: T['io.flow.common.v0.enums.delivered_duty'].isRequired,
|
|
25163
|
+
delivered_duties: PropTypes.arrayOf(T['io.flow.common.v0.enums.delivered_duty']).isRequired,
|
|
25164
|
+
});
|
|
25165
|
+
|
|
25166
|
+
T['io.flow.internal.v0.models.order_rates_data_v3'] = PropTypes.exact({
|
|
25167
|
+
organization: PropTypes.string.isRequired,
|
|
25168
|
+
order_id: PropTypes.string.isRequired,
|
|
25169
|
+
order_number: PropTypes.string.isRequired,
|
|
25170
|
+
order_total: T['io.flow.catalog.v0.models.localized_total'].isRequired,
|
|
25171
|
+
rates: PropTypes.arrayOf(T['io.flow.internal.v0.models.rate_data_v3']).isRequired,
|
|
25172
|
+
});
|
|
25173
|
+
|
|
25174
|
+
T['io.flow.internal.v0.models.order_rates_published_v3'] = PropTypes.exact({
|
|
25175
|
+
discriminator: PropTypes.oneOf(['order_rates_published_v3']).isRequired,
|
|
25176
|
+
event_id: PropTypes.string.isRequired,
|
|
25177
|
+
timestamp: PropTypes.string.isRequired,
|
|
25178
|
+
organization: PropTypes.string.isRequired,
|
|
25179
|
+
data: T['io.flow.internal.v0.models.order_rates_data_v3'].isRequired,
|
|
25180
|
+
});
|
|
25181
|
+
|
|
25182
|
+
T['io.flow.experience.v0.models.allocation_v2'] = PropTypes.exact({
|
|
25183
|
+
id: PropTypes.string.isRequired,
|
|
25184
|
+
order: T['io.flow.experience.v0.models.allocation_order_summary'].isRequired,
|
|
25185
|
+
details: PropTypes.arrayOf(T['io.flow.experience.v0.unions.allocation_detail']).isRequired,
|
|
25186
|
+
total: T['io.flow.catalog.v0.models.localized_total'].isRequired,
|
|
25187
|
+
});
|
|
25188
|
+
|
|
25189
|
+
T['io.flow.internal.v0.models.debug_details'] = PropTypes.exact({
|
|
25190
|
+
labels: PropTypes.arrayOf(T['io.flow.internal.v0.models.debug_label']).isRequired,
|
|
25191
|
+
captures: PropTypes.arrayOf(T['io.flow.internal.v0.models.debug_payment_transaction_summary']).isRequired,
|
|
25192
|
+
refunds: PropTypes.arrayOf(T['io.flow.internal.v0.models.debug_payment_transaction_summary']).isRequired,
|
|
25193
|
+
allocation: T['io.flow.experience.v0.models.allocation_v2'].isRequired,
|
|
25194
|
+
adjustments: PropTypes.arrayOf(T['io.flow.internal.v0.models.debug_adjustment']).isRequired,
|
|
25195
|
+
});
|
|
25196
|
+
|
|
25197
|
+
T['io.flow.internal.v0.models.debug_order_transaction'] = PropTypes.exact({
|
|
25198
|
+
order: T['io.flow.internal.v0.models.debug_order'].isRequired,
|
|
25199
|
+
debug: T['io.flow.internal.v0.models.debug_details'].isRequired,
|
|
25200
|
+
transactions: PropTypes.arrayOf(T['io.flow.internal.v0.models.debug_order_transaction_details']).isRequired,
|
|
25201
|
+
reporting: T['io.flow.internal.v0.models.reporting_details'].isRequired,
|
|
25202
|
+
banking: T['io.flow.internal.v0.models.debug_banking_details'].isRequired,
|
|
25203
|
+
});
|
|
25204
|
+
|
|
25205
|
+
T['io.flow.internal.v0.models.channel_order'] = PropTypes.exact({
|
|
25206
|
+
org_id: PropTypes.string.isRequired,
|
|
25207
|
+
flow_order_number: PropTypes.string.isRequired,
|
|
25208
|
+
shopify_order_number: PropTypes.string.isRequired,
|
|
25209
|
+
order_submission_date: PropTypes.string,
|
|
25210
|
+
order_item_count: PropTypes.number.isRequired,
|
|
25211
|
+
total: T['io.flow.catalog.v0.models.localized_total'].isRequired,
|
|
25212
|
+
merchant_total: PropTypes.number.isRequired,
|
|
25213
|
+
tracking_numbers: PropTypes.arrayOf(PropTypes.string),
|
|
25214
|
+
carrier: T['io.flow.reference.v0.models.carrier_service'],
|
|
25215
|
+
duty_paid: PropTypes.bool.isRequired,
|
|
25216
|
+
shop_id: PropTypes.string,
|
|
25217
|
+
});
|
|
25218
|
+
|
|
24737
25219
|
T['io.flow.experience.v0.models.localized_line_item'] = PropTypes.exact({
|
|
24738
25220
|
id: PropTypes.string,
|
|
24739
25221
|
number: PropTypes.string.isRequired,
|
|
@@ -24748,64 +25230,7 @@ T['io.flow.experience.v0.models.localized_line_item'] = PropTypes.exact({
|
|
|
24748
25230
|
local: T['io.flow.catalog.v0.models.local'].isRequired,
|
|
24749
25231
|
shipment_estimate: T['io.flow.common.v0.models.datetime_range'],
|
|
24750
25232
|
price_source: T['io.flow.common.v0.unions.price_source'],
|
|
24751
|
-
|
|
24752
|
-
|
|
24753
|
-
T['io.flow.internal.v0.models.channel_fulfillment'] = PropTypes.exact({
|
|
24754
|
-
org_id: PropTypes.string.isRequired,
|
|
24755
|
-
flow_order_number: PropTypes.string.isRequired,
|
|
24756
|
-
shopify_order_number: PropTypes.string.isRequired,
|
|
24757
|
-
legal_name: PropTypes.string,
|
|
24758
|
-
flow_tracking_status: T['io.flow.tracking.v0.enums.tracking_status'],
|
|
24759
|
-
order_items: PropTypes.arrayOf(T['io.flow.experience.v0.models.localized_line_item']).isRequired,
|
|
24760
|
-
label_items: PropTypes.arrayOf(T['io.flow.experience.v0.models.localized_line_item']).isRequired,
|
|
24761
|
-
carrier: T['io.flow.reference.v0.models.carrier_service'],
|
|
24762
|
-
tracking_numbers: PropTypes.arrayOf(PropTypes.string),
|
|
24763
|
-
});
|
|
24764
|
-
|
|
24765
|
-
T['io.flow.experience.v0.models.line'] = PropTypes.exact({
|
|
24766
|
-
id: PropTypes.string,
|
|
24767
|
-
item_number: PropTypes.string.isRequired,
|
|
24768
|
-
quantity: PropTypes.number.isRequired,
|
|
24769
|
-
price: T['io.flow.common.v0.models.price_with_base'].isRequired,
|
|
24770
|
-
total: T['io.flow.common.v0.models.price_with_base'].isRequired,
|
|
24771
|
-
attributes: PropTypes.objectOf(PropTypes.string),
|
|
24772
|
-
});
|
|
24773
|
-
|
|
24774
|
-
T['io.flow.experience.v0.models.experience_price_facet_conversion'] = PropTypes.exact({
|
|
24775
|
-
request: T['io.flow.experience.v0.models.experience_price_facet_conversion_request'].isRequired,
|
|
24776
|
-
price: T['io.flow.common.v0.models.price_with_base'].isRequired,
|
|
24777
|
-
});
|
|
24778
|
-
|
|
24779
|
-
T['io.flow.experience.v0.models.experience_price_facet_conversion_response'] = PropTypes.exact({
|
|
24780
|
-
facets: PropTypes.arrayOf(T['io.flow.experience.v0.models.experience_price_facet_conversion']).isRequired,
|
|
24781
|
-
});
|
|
24782
|
-
|
|
24783
|
-
T['io.flow.experience.v0.models.experience_price_conversion'] = PropTypes.exact({
|
|
24784
|
-
request: T['io.flow.experience.v0.models.experience_price_conversion_request'].isRequired,
|
|
24785
|
-
price: T['io.flow.common.v0.models.price_with_base'].isRequired,
|
|
24786
|
-
});
|
|
24787
|
-
|
|
24788
|
-
T['io.flow.experience.v0.models.experience_price_conversion_response'] = PropTypes.exact({
|
|
24789
|
-
prices: PropTypes.arrayOf(T['io.flow.experience.v0.models.experience_price_conversion']).isRequired,
|
|
24790
|
-
});
|
|
24791
|
-
|
|
24792
|
-
T['io.flow.experience.v0.models.discount'] = PropTypes.exact({
|
|
24793
|
-
discriminator: PropTypes.oneOf(['discount']).isRequired,
|
|
24794
|
-
id: PropTypes.string.isRequired,
|
|
24795
|
-
code: PropTypes.string,
|
|
24796
|
-
label: PropTypes.string.isRequired,
|
|
24797
|
-
price: T['io.flow.common.v0.models.price_with_base'].isRequired,
|
|
24798
|
-
attributes: PropTypes.objectOf(PropTypes.string),
|
|
24799
|
-
});
|
|
24800
|
-
|
|
24801
|
-
T['io.flow.experience.v0.unions.promotion'] = PropTypes.oneOfType([
|
|
24802
|
-
T['io.flow.experience.v0.models.free_shipping'],
|
|
24803
|
-
T['io.flow.experience.v0.models.discount'],
|
|
24804
|
-
]);
|
|
24805
|
-
|
|
24806
|
-
T['io.flow.experience.v0.models.promotions'] = PropTypes.exact({
|
|
24807
|
-
applied: PropTypes.arrayOf(T['io.flow.experience.v0.unions.promotion']).isRequired,
|
|
24808
|
-
available: PropTypes.arrayOf(T['io.flow.experience.v0.unions.promotion']).isRequired,
|
|
25233
|
+
breakdown: T['io.flow.order.price.v0.models.order_price_detail_breakdown'],
|
|
24809
25234
|
});
|
|
24810
25235
|
|
|
24811
25236
|
T['io.flow.experience.v0.models.order_estimate'] = PropTypes.exact({
|
|
@@ -24850,6 +25275,8 @@ T['io.flow.experience.v0.models.order'] = PropTypes.exact({
|
|
|
24850
25275
|
destination_contact_details: PropTypes.arrayOf(T['io.flow.experience.v0.models.destination_contact_detail']),
|
|
24851
25276
|
incoterm_summary: T['io.flow.experience.v0.models.incoterm_summary'],
|
|
24852
25277
|
payment_source: T['io.flow.experience.v0.enums.order_payment_source_type'],
|
|
25278
|
+
edits: PropTypes.arrayOf(T['io.flow.experience.v0.models.edit_summary']),
|
|
25279
|
+
rates: PropTypes.arrayOf(T['io.flow.experience.v0.models.order_rate']),
|
|
24853
25280
|
});
|
|
24854
25281
|
|
|
24855
25282
|
T['io.flow.experience.v0.models.order_version'] = PropTypes.exact({
|
|
@@ -24865,6 +25292,11 @@ T['io.flow.experience.v0.models.order_replacement'] = PropTypes.exact({
|
|
|
24865
25292
|
replacement_order: T['io.flow.experience.v0.models.order'].isRequired,
|
|
24866
25293
|
});
|
|
24867
25294
|
|
|
25295
|
+
T['io.flow.experience.v0.models.order_builder'] = PropTypes.exact({
|
|
25296
|
+
order: T['io.flow.experience.v0.models.order'],
|
|
25297
|
+
errors: PropTypes.arrayOf(T['io.flow.experience.v0.models.order_error']),
|
|
25298
|
+
});
|
|
25299
|
+
|
|
24868
25300
|
T['io.flow.experience.v0.unions.expandable_order'] = PropTypes.oneOfType([
|
|
24869
25301
|
T['io.flow.experience.v0.models.order'],
|
|
24870
25302
|
T['io.flow.experience.v0.models.order_reference'],
|
|
@@ -24882,9 +25314,27 @@ T['io.flow.experience.v0.models.free_shipping_order_promotion'] = PropTypes.exac
|
|
|
24882
25314
|
|
|
24883
25315
|
T['io.flow.experience.v0.unions.order_promotion'] = PropTypes.oneOfType([T['io.flow.experience.v0.models.free_shipping_order_promotion']]);
|
|
24884
25316
|
|
|
24885
|
-
T['io.flow.experience.v0.models.
|
|
24886
|
-
|
|
24887
|
-
|
|
25317
|
+
T['io.flow.experience.v0.models.credit_payment'] = PropTypes.exact({
|
|
25318
|
+
id: PropTypes.string.isRequired,
|
|
25319
|
+
order: T['io.flow.experience.v0.unions.expandable_order'].isRequired,
|
|
25320
|
+
key: PropTypes.string.isRequired,
|
|
25321
|
+
description: PropTypes.string.isRequired,
|
|
25322
|
+
value: T['io.flow.common.v0.models.price_with_base'].isRequired,
|
|
25323
|
+
original: T['io.flow.experience.v0.models.original_prices'].isRequired,
|
|
25324
|
+
attributes: PropTypes.objectOf(PropTypes.string).isRequired,
|
|
25325
|
+
});
|
|
25326
|
+
|
|
25327
|
+
T['io.flow.experience.v0.models.credit_payment_version'] = PropTypes.exact({
|
|
25328
|
+
id: PropTypes.string.isRequired,
|
|
25329
|
+
timestamp: PropTypes.string.isRequired,
|
|
25330
|
+
type: T['io.flow.common.v0.enums.change_type'].isRequired,
|
|
25331
|
+
credit_payment: T['io.flow.experience.v0.models.credit_payment'].isRequired,
|
|
25332
|
+
});
|
|
25333
|
+
|
|
25334
|
+
T['io.flow.order.management.v0.models.order_placed_details'] = PropTypes.exact({
|
|
25335
|
+
id: PropTypes.string.isRequired,
|
|
25336
|
+
order: T['io.flow.experience.v0.models.order'].isRequired,
|
|
25337
|
+
allocation: T['io.flow.experience.v0.models.allocation_v2'].isRequired,
|
|
24888
25338
|
});
|
|
24889
25339
|
|
|
24890
25340
|
T['io.flow.internal.v0.models.validated_shipping_data'] = PropTypes.exact({
|
|
@@ -24920,6 +25370,7 @@ T['io.flow.internal.v0.models.validated_shipping_data'] = PropTypes.exact({
|
|
|
24920
25370
|
provided_charges: PropTypes.arrayOf(T['io.flow.internal.v0.models.charge_input']),
|
|
24921
25371
|
direction: T['io.flow.label.v0.enums.direction'],
|
|
24922
25372
|
package_dimensions_source: T['io.flow.label.v0.enums.package_dimensions_source'].isRequired,
|
|
25373
|
+
shipping_date_time: PropTypes.string,
|
|
24923
25374
|
});
|
|
24924
25375
|
|
|
24925
25376
|
T['io.flow.internal.v0.models.submitted_order_upserted'] = PropTypes.exact({
|
|
@@ -24939,110 +25390,31 @@ T['io.flow.internal.v0.models.internal_order'] = PropTypes.exact({
|
|
|
24939
25390
|
discount: T['io.flow.common.v0.models.money'],
|
|
24940
25391
|
});
|
|
24941
25392
|
|
|
24942
|
-
T['io.flow.
|
|
24943
|
-
|
|
24944
|
-
|
|
24945
|
-
|
|
24946
|
-
|
|
24947
|
-
|
|
24948
|
-
|
|
24949
|
-
T['io.flow.experience.v0.models.
|
|
24950
|
-
|
|
24951
|
-
|
|
24952
|
-
key: PropTypes.string.isRequired,
|
|
24953
|
-
description: PropTypes.string.isRequired,
|
|
24954
|
-
value: T['io.flow.common.v0.models.price_with_base'].isRequired,
|
|
24955
|
-
original: T['io.flow.experience.v0.models.original_prices'].isRequired,
|
|
24956
|
-
attributes: PropTypes.objectOf(PropTypes.string).isRequired,
|
|
25393
|
+
T['io.flow.internal.v0.models.channel_fulfillment'] = PropTypes.exact({
|
|
25394
|
+
org_id: PropTypes.string.isRequired,
|
|
25395
|
+
flow_order_number: PropTypes.string.isRequired,
|
|
25396
|
+
shopify_order_number: PropTypes.string.isRequired,
|
|
25397
|
+
legal_name: PropTypes.string,
|
|
25398
|
+
flow_tracking_status: T['io.flow.tracking.v0.enums.tracking_status'],
|
|
25399
|
+
order_items: PropTypes.arrayOf(T['io.flow.experience.v0.models.localized_line_item']).isRequired,
|
|
25400
|
+
label_items: PropTypes.arrayOf(T['io.flow.experience.v0.models.localized_line_item']).isRequired,
|
|
25401
|
+
carrier: T['io.flow.reference.v0.models.carrier_service'],
|
|
25402
|
+
tracking_numbers: PropTypes.arrayOf(PropTypes.string),
|
|
24957
25403
|
});
|
|
24958
25404
|
|
|
24959
|
-
T['io.flow.
|
|
25405
|
+
T['io.flow.internal.v0.models.order_refund_transaction'] = PropTypes.exact({
|
|
24960
25406
|
id: PropTypes.string.isRequired,
|
|
24961
|
-
|
|
24962
|
-
|
|
24963
|
-
credit_payment: T['io.flow.experience.v0.models.credit_payment'].isRequired,
|
|
24964
|
-
});
|
|
24965
|
-
|
|
24966
|
-
T['io.flow.experience.v0.models.allocation_levy_component'] = PropTypes.exact({
|
|
24967
|
-
discriminator: PropTypes.oneOf(['allocation_levy_component']).isRequired,
|
|
24968
|
-
key: T['io.flow.order.price.v0.enums.order_price_detail_component_key'].isRequired,
|
|
24969
|
-
total: T['io.flow.common.v0.models.price_with_base'].isRequired,
|
|
24970
|
-
rate: PropTypes.number.isRequired,
|
|
24971
|
-
name: PropTypes.string.isRequired,
|
|
24972
|
-
price: T['io.flow.common.v0.models.price_with_base'],
|
|
24973
|
-
accuracy: T['io.flow.price.v0.enums.price_accuracy'],
|
|
24974
|
-
basis: T['io.flow.common.v0.models.money_with_base'],
|
|
24975
|
-
});
|
|
24976
|
-
|
|
24977
|
-
T['io.flow.experience.v0.models.allocation_detail_component'] = PropTypes.exact({
|
|
24978
|
-
discriminator: PropTypes.oneOf(['allocation_detail_component']).isRequired,
|
|
24979
|
-
key: T['io.flow.order.price.v0.enums.order_price_detail_component_key'].isRequired,
|
|
24980
|
-
total: T['io.flow.common.v0.models.price_with_base'].isRequired,
|
|
24981
|
-
price: T['io.flow.common.v0.models.price_with_base'],
|
|
24982
|
-
});
|
|
24983
|
-
|
|
24984
|
-
T['io.flow.experience.v0.unions.allocation_component'] = PropTypes.oneOfType([
|
|
24985
|
-
T['io.flow.experience.v0.models.allocation_detail_component'],
|
|
24986
|
-
T['io.flow.experience.v0.models.allocation_levy_component'],
|
|
24987
|
-
]);
|
|
24988
|
-
|
|
24989
|
-
T['io.flow.experience.v0.models.allocation_order_detail'] = PropTypes.exact({
|
|
24990
|
-
discriminator: PropTypes.oneOf(['allocation_order_detail']).isRequired,
|
|
24991
|
-
key: T['io.flow.order.price.v0.enums.order_price_detail_key'].isRequired,
|
|
24992
|
-
total: T['io.flow.common.v0.models.price_with_base'].isRequired,
|
|
24993
|
-
included: PropTypes.arrayOf(T['io.flow.experience.v0.unions.allocation_component']).isRequired,
|
|
24994
|
-
not_included: PropTypes.arrayOf(T['io.flow.experience.v0.unions.allocation_component']).isRequired,
|
|
24995
|
-
});
|
|
24996
|
-
|
|
24997
|
-
T['io.flow.experience.v0.models.allocation_line_detail'] = PropTypes.exact({
|
|
24998
|
-
discriminator: PropTypes.oneOf(['allocation_line_detail']).isRequired,
|
|
24999
|
-
id: PropTypes.string,
|
|
25000
|
-
number: PropTypes.string.isRequired,
|
|
25001
|
-
quantity: PropTypes.number.isRequired,
|
|
25002
|
-
key: T['io.flow.order.price.v0.enums.order_price_detail_key'].isRequired,
|
|
25407
|
+
organization_id: PropTypes.string.isRequired,
|
|
25408
|
+
order_number: PropTypes.string.isRequired,
|
|
25003
25409
|
price: T['io.flow.common.v0.models.price_with_base'].isRequired,
|
|
25004
|
-
total: T['io.flow.common.v0.models.price_with_base'].isRequired,
|
|
25005
|
-
included: PropTypes.arrayOf(T['io.flow.experience.v0.unions.allocation_component']).isRequired,
|
|
25006
|
-
not_included: PropTypes.arrayOf(T['io.flow.experience.v0.unions.allocation_component']).isRequired,
|
|
25007
|
-
});
|
|
25008
|
-
|
|
25009
|
-
T['io.flow.experience.v0.unions.allocation_detail'] = PropTypes.oneOfType([
|
|
25010
|
-
T['io.flow.experience.v0.models.allocation_line_detail'],
|
|
25011
|
-
T['io.flow.experience.v0.models.allocation_order_detail'],
|
|
25012
|
-
]);
|
|
25013
|
-
|
|
25014
|
-
T['io.flow.experience.v0.models.allocation'] = PropTypes.exact({
|
|
25015
|
-
order: T['io.flow.experience.v0.models.allocation_order_summary'].isRequired,
|
|
25016
|
-
details: PropTypes.arrayOf(T['io.flow.experience.v0.unions.allocation_detail']).isRequired,
|
|
25017
|
-
});
|
|
25018
|
-
|
|
25019
|
-
T['io.flow.experience.v0.models.allocation_v2'] = PropTypes.exact({
|
|
25020
|
-
id: PropTypes.string.isRequired,
|
|
25021
|
-
order: T['io.flow.experience.v0.models.allocation_order_summary'].isRequired,
|
|
25022
|
-
details: PropTypes.arrayOf(T['io.flow.experience.v0.unions.allocation_detail']).isRequired,
|
|
25023
|
-
total: T['io.flow.catalog.v0.models.localized_total'].isRequired,
|
|
25024
|
-
});
|
|
25025
|
-
|
|
25026
|
-
T['io.flow.order.management.v0.models.order_placed_details'] = PropTypes.exact({
|
|
25027
|
-
id: PropTypes.string.isRequired,
|
|
25028
|
-
order: T['io.flow.experience.v0.models.order'].isRequired,
|
|
25029
|
-
allocation: T['io.flow.experience.v0.models.allocation_v2'].isRequired,
|
|
25030
|
-
});
|
|
25031
|
-
|
|
25032
|
-
T['io.flow.internal.v0.models.debug_details'] = PropTypes.exact({
|
|
25033
|
-
labels: PropTypes.arrayOf(T['io.flow.internal.v0.models.debug_label']).isRequired,
|
|
25034
|
-
captures: PropTypes.arrayOf(T['io.flow.internal.v0.models.debug_payment_transaction_summary']).isRequired,
|
|
25035
|
-
refunds: PropTypes.arrayOf(T['io.flow.internal.v0.models.debug_payment_transaction_summary']).isRequired,
|
|
25036
|
-
allocation: T['io.flow.experience.v0.models.allocation_v2'].isRequired,
|
|
25037
|
-
adjustments: PropTypes.arrayOf(T['io.flow.internal.v0.models.debug_adjustment']).isRequired,
|
|
25038
25410
|
});
|
|
25039
25411
|
|
|
25040
|
-
T['io.flow.internal.v0.models.
|
|
25041
|
-
|
|
25042
|
-
|
|
25043
|
-
|
|
25044
|
-
|
|
25045
|
-
|
|
25412
|
+
T['io.flow.internal.v0.models.order_refund_transaction_upserted'] = PropTypes.exact({
|
|
25413
|
+
discriminator: PropTypes.oneOf(['order_refund_transaction_upserted']).isRequired,
|
|
25414
|
+
event_id: PropTypes.string.isRequired,
|
|
25415
|
+
timestamp: PropTypes.string.isRequired,
|
|
25416
|
+
organization: PropTypes.string.isRequired,
|
|
25417
|
+
transaction: T['io.flow.internal.v0.models.order_refund_transaction'].isRequired,
|
|
25046
25418
|
});
|
|
25047
25419
|
|
|
25048
25420
|
T['io.flow.export.v0.models.export_localized_item_prices_detail'] = PropTypes.exact({
|
|
@@ -25116,6 +25488,23 @@ T['io.flow.internal.v0.models.ansh_item'] = PropTypes.exact({
|
|
|
25116
25488
|
added_on: PropTypes.string.isRequired,
|
|
25117
25489
|
});
|
|
25118
25490
|
|
|
25491
|
+
T['io.flow.internal.v0.models.anirban_item_form'] = PropTypes.exact({
|
|
25492
|
+
number: PropTypes.string.isRequired,
|
|
25493
|
+
amount: T['io.flow.common.v0.models.price'].isRequired,
|
|
25494
|
+
description: PropTypes.string,
|
|
25495
|
+
type: T['io.flow.internal.v0.enums.anirban_item_type'].isRequired,
|
|
25496
|
+
added_on: PropTypes.string.isRequired,
|
|
25497
|
+
});
|
|
25498
|
+
|
|
25499
|
+
T['io.flow.internal.v0.models.anirban_item'] = PropTypes.exact({
|
|
25500
|
+
id: PropTypes.string.isRequired,
|
|
25501
|
+
number: PropTypes.string.isRequired,
|
|
25502
|
+
amount: T['io.flow.common.v0.models.price'].isRequired,
|
|
25503
|
+
description: PropTypes.string,
|
|
25504
|
+
type: T['io.flow.internal.v0.enums.anirban_item_type'].isRequired,
|
|
25505
|
+
added_on: PropTypes.string.isRequired,
|
|
25506
|
+
});
|
|
25507
|
+
|
|
25119
25508
|
T['io.flow.internal.v0.models.aldo_item_form'] = PropTypes.exact({
|
|
25120
25509
|
number: PropTypes.string.isRequired,
|
|
25121
25510
|
amount: T['io.flow.common.v0.models.price'].isRequired,
|
|
@@ -26508,6 +26897,8 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
|
|
|
26508
26897
|
T['io.flow.internal.v0.models.rate_freshness_summary_deleted'],
|
|
26509
26898
|
T['io.flow.internal.v0.models.item_harmonization_upserted'],
|
|
26510
26899
|
T['io.flow.internal.v0.models.item_harmonization_deleted'],
|
|
26900
|
+
T['io.flow.internal.v0.models.merchant_override_upserted'],
|
|
26901
|
+
T['io.flow.internal.v0.models.merchant_override_deleted'],
|
|
26511
26902
|
T['io.flow.internal.v0.models.harmonization_classification_statistics_published'],
|
|
26512
26903
|
T['io.flow.internal.v0.models.item_form_import_request'],
|
|
26513
26904
|
T['io.flow.internal.v0.models.label_request_error_upserted'],
|
|
@@ -26565,6 +26956,8 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
|
|
|
26565
26956
|
T['io.flow.internal.v0.models.authorization_bundle_deleted'],
|
|
26566
26957
|
T['io.flow.internal.v0.models.organization_payment_setting_upserted'],
|
|
26567
26958
|
T['io.flow.internal.v0.models.organization_payment_setting_deleted'],
|
|
26959
|
+
T['io.flow.internal.v0.models.order_refund_transaction_upserted'],
|
|
26960
|
+
T['io.flow.internal.v0.models.order_refund_transaction_deleted'],
|
|
26568
26961
|
T['io.flow.internal.v0.models.paypal_payment_deleted'],
|
|
26569
26962
|
T['io.flow.internal.v0.models.paypal_payment_upserted'],
|
|
26570
26963
|
T['io.flow.internal.v0.models.paypal_execution_deleted'],
|
|
@@ -26616,6 +27009,10 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
|
|
|
26616
27009
|
T['io.flow.internal.v0.models.shopify_markets_webhook_registration_deleted'],
|
|
26617
27010
|
T['io.flow.internal.v0.models.shopify_markets_shop_statistics_upserted'],
|
|
26618
27011
|
T['io.flow.internal.v0.models.shopify_markets_shop_statistics_deleted'],
|
|
27012
|
+
T['io.flow.internal.v0.models.shopify_product_taxonomy_attribute_upserted'],
|
|
27013
|
+
T['io.flow.internal.v0.models.shopify_product_taxonomy_attribute_deleted'],
|
|
27014
|
+
T['io.flow.internal.v0.models.shopify_product_taxonomy_attribute_value_upserted'],
|
|
27015
|
+
T['io.flow.internal.v0.models.shopify_product_taxonomy_attribute_value_deleted'],
|
|
26619
27016
|
T['io.flow.internal.v0.models.shopify_markets_metrics_upserted'],
|
|
26620
27017
|
T['io.flow.internal.v0.models.shopify_markets_metrics_deleted'],
|
|
26621
27018
|
T['io.flow.internal.v0.models.channel_order_summary_upserted'],
|
|
@@ -27037,6 +27434,8 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
|
|
|
27037
27434
|
'rate_freshness_summary_deleted',
|
|
27038
27435
|
'item_harmonization_upserted',
|
|
27039
27436
|
'item_harmonization_deleted',
|
|
27437
|
+
'merchant_override_upserted',
|
|
27438
|
+
'merchant_override_deleted',
|
|
27040
27439
|
'harmonization_classification_statistics_published',
|
|
27041
27440
|
'item_form_import_request',
|
|
27042
27441
|
'label_request_error_upserted',
|
|
@@ -27094,6 +27493,8 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
|
|
|
27094
27493
|
'authorization_bundle_deleted',
|
|
27095
27494
|
'organization_payment_setting_upserted',
|
|
27096
27495
|
'organization_payment_setting_deleted',
|
|
27496
|
+
'order_refund_transaction_upserted',
|
|
27497
|
+
'order_refund_transaction_deleted',
|
|
27097
27498
|
'paypal_payment_deleted',
|
|
27098
27499
|
'paypal_payment_upserted',
|
|
27099
27500
|
'paypal_execution_deleted',
|
|
@@ -27145,6 +27546,10 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
|
|
|
27145
27546
|
'shopify_markets_webhook_registration_deleted',
|
|
27146
27547
|
'shopify_markets_shop_statistics_upserted',
|
|
27147
27548
|
'shopify_markets_shop_statistics_deleted',
|
|
27549
|
+
'shopify_product_taxonomy_attribute_upserted',
|
|
27550
|
+
'shopify_product_taxonomy_attribute_deleted',
|
|
27551
|
+
'shopify_product_taxonomy_attribute_value_upserted',
|
|
27552
|
+
'shopify_product_taxonomy_attribute_value_deleted',
|
|
27148
27553
|
'shopify_markets_metrics_upserted',
|
|
27149
27554
|
'shopify_markets_metrics_deleted',
|
|
27150
27555
|
'channel_order_summary_upserted',
|
|
@@ -27349,6 +27754,7 @@ T['io.flow.internal.v0.enums.shopify_markets_trade_sector'] = PropTypes.oneOf([
|
|
|
27349
27754
|
'other',
|
|
27350
27755
|
]);
|
|
27351
27756
|
|
|
27757
|
+
T['io.flow.internal.v0.enums.shopify_monitoring_monitor_review_status'] = PropTypes.oneOf(['in_review', 'reviewed']);
|
|
27352
27758
|
T['io.flow.internal.v0.enums.simple_rounding_strategy'] = PropTypes.oneOf(['no_rounding', 'currency_precision']);
|
|
27353
27759
|
|
|
27354
27760
|
T['io.flow.internal.v0.enums.statistic_type'] = PropTypes.oneOf([
|
|
@@ -27399,18 +27805,6 @@ T['io.flow.internal.v0.models.aftership_webhook'] = PropTypes.exact({
|
|
|
27399
27805
|
placeholder: PropTypes.bool,
|
|
27400
27806
|
});
|
|
27401
27807
|
|
|
27402
|
-
T['io.flow.internal.v0.models.alert_import_summary'] = PropTypes.exact({
|
|
27403
|
-
organization_id: PropTypes.string.isRequired,
|
|
27404
|
-
filename: PropTypes.string.isRequired,
|
|
27405
|
-
type: PropTypes.string.isRequired,
|
|
27406
|
-
started_at: PropTypes.string,
|
|
27407
|
-
});
|
|
27408
|
-
|
|
27409
|
-
T['io.flow.internal.v0.models.alert_requeue_summary'] = PropTypes.exact({
|
|
27410
|
-
queue: PropTypes.string.isRequired,
|
|
27411
|
-
count: PropTypes.number.isRequired,
|
|
27412
|
-
});
|
|
27413
|
-
|
|
27414
27808
|
T['io.flow.internal.v0.models.allocation_item_reference'] = PropTypes.exact({
|
|
27415
27809
|
number: PropTypes.string.isRequired,
|
|
27416
27810
|
});
|
|
@@ -27676,6 +28070,16 @@ T['io.flow.internal.v0.models.erp_vendor'] = PropTypes.exact({
|
|
|
27676
28070
|
placeholder: PropTypes.string,
|
|
27677
28071
|
});
|
|
27678
28072
|
|
|
28073
|
+
T['io.flow.internal.v0.models.external_ratecard_link'] = PropTypes.exact({
|
|
28074
|
+
external_ratecard_id: PropTypes.string.isRequired,
|
|
28075
|
+
flow_ratecard_ids: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
28076
|
+
});
|
|
28077
|
+
|
|
28078
|
+
T['io.flow.internal.v0.models.external_ratecard_link_response'] = PropTypes.exact({
|
|
28079
|
+
external_ratecard_id: PropTypes.string.isRequired,
|
|
28080
|
+
flow_ratecard_ids: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
28081
|
+
});
|
|
28082
|
+
|
|
27679
28083
|
T['io.flow.internal.v0.models.feature_release_form'] = PropTypes.exact({
|
|
27680
28084
|
released_at: PropTypes.string,
|
|
27681
28085
|
});
|
|
@@ -27960,6 +28364,11 @@ T['io.flow.internal.v0.models.payment_organization_settings_put_form'] = PropTyp
|
|
|
27960
28364
|
payment_statement_suffix: PropTypes.string,
|
|
27961
28365
|
});
|
|
27962
28366
|
|
|
28367
|
+
T['io.flow.internal.v0.models.payment_request_authorization'] = PropTypes.exact({
|
|
28368
|
+
payment_request_id: PropTypes.string.isRequired,
|
|
28369
|
+
authorization_id: PropTypes.string.isRequired,
|
|
28370
|
+
});
|
|
28371
|
+
|
|
27963
28372
|
T['io.flow.internal.v0.models.payout_status_counts'] = PropTypes.exact({
|
|
27964
28373
|
scheduled: PropTypes.number.isRequired,
|
|
27965
28374
|
sent: PropTypes.number.isRequired,
|
|
@@ -28174,14 +28583,22 @@ T['io.flow.internal.v0.models.shopify_stripe_event'] = PropTypes.exact({
|
|
|
28174
28583
|
request: PropTypes.object,
|
|
28175
28584
|
});
|
|
28176
28585
|
|
|
28177
|
-
T['io.flow.internal.v0.models.
|
|
28178
|
-
|
|
28179
|
-
|
|
28586
|
+
T['io.flow.internal.v0.models.shopify_taxonomy_alignment_config'] = PropTypes.exact({
|
|
28587
|
+
id: PropTypes.string.isRequired,
|
|
28588
|
+
taxonomy_category: PropTypes.string.isRequired,
|
|
28589
|
+
allowable_hs_prefixes: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
28590
|
+
default_hs6_code: PropTypes.string,
|
|
28591
|
+
auto_correct: PropTypes.bool.isRequired,
|
|
28592
|
+
created_at: PropTypes.string.isRequired,
|
|
28593
|
+
updated_at: PropTypes.string.isRequired,
|
|
28594
|
+
updated_by_user_id: PropTypes.string.isRequired,
|
|
28180
28595
|
});
|
|
28181
28596
|
|
|
28182
|
-
T['io.flow.internal.v0.models.
|
|
28183
|
-
|
|
28184
|
-
|
|
28597
|
+
T['io.flow.internal.v0.models.shopify_taxonomy_alignment_config_form'] = PropTypes.exact({
|
|
28598
|
+
taxonomy_category: PropTypes.string.isRequired,
|
|
28599
|
+
allowable_hs_prefixes: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
28600
|
+
default_hs6_code: PropTypes.string,
|
|
28601
|
+
auto_correct: PropTypes.bool.isRequired,
|
|
28185
28602
|
});
|
|
28186
28603
|
|
|
28187
28604
|
T['io.flow.internal.v0.models.tech_onboarding_description'] = PropTypes.exact({
|
|
@@ -28698,6 +29115,11 @@ T['io.flow.shopify.markets.internal.v0.models.markets_order_summary'] = PropType
|
|
|
28698
29115
|
id: PropTypes.string.isRequired,
|
|
28699
29116
|
});
|
|
28700
29117
|
|
|
29118
|
+
T['io.flow.shopify.markets.internal.v0.models.payment_request_authorization'] = PropTypes.exact({
|
|
29119
|
+
payment_request_id: PropTypes.string.isRequired,
|
|
29120
|
+
authorization_id: PropTypes.string.isRequired,
|
|
29121
|
+
});
|
|
29122
|
+
|
|
28701
29123
|
T['io.flow.shopify.markets.internal.v0.models.shipping_lane'] = PropTypes.exact({
|
|
28702
29124
|
origin: PropTypes.string.isRequired,
|
|
28703
29125
|
destination: PropTypes.string.isRequired,
|
|
@@ -29489,6 +29911,7 @@ export const accountType = T['io.flow.internal.v0.enums.account_type'];
|
|
|
29489
29911
|
export const accountUpserted = T['io.flow.internal.v0.models.account_upserted'];
|
|
29490
29912
|
export const accountUpsertedV2 = T['io.flow.internal.v0.models.account_upserted_v2'];
|
|
29491
29913
|
export const accountingPendingOrderMetadata = T['io.flow.internal.v0.models.accounting_pending_order_metadata'];
|
|
29914
|
+
export const accountingReturnMetadata = T['io.flow.internal.v0.models.accounting_return_metadata'];
|
|
29492
29915
|
export const actionQuantity = T['io.flow.internal.v0.models.action_quantity'];
|
|
29493
29916
|
export const additionalImportTax = T['io.flow.internal.v0.models.additional_import_tax'];
|
|
29494
29917
|
export const adjustmentAmount = T['io.flow.internal.v0.unions.adjustment_amount'];
|
|
@@ -29550,15 +29973,13 @@ export const aftershipWebhook = T['io.flow.internal.v0.models.aftership_webhook'
|
|
|
29550
29973
|
export const aldoItem = T['io.flow.internal.v0.models.aldo_item'];
|
|
29551
29974
|
export const aldoItemForm = T['io.flow.internal.v0.models.aldo_item_form'];
|
|
29552
29975
|
export const aldoItemType = T['io.flow.internal.v0.enums.aldo_item_type'];
|
|
29553
|
-
export const alertErrorSummary = T['io.flow.internal.v0.models.alert_error_summary'];
|
|
29554
|
-
export const alertFailureSummary = T['io.flow.internal.v0.models.alert_failure_summary'];
|
|
29555
|
-
export const alertFailureSummaryDetail = T['io.flow.internal.v0.models.alert_failure_summary_detail'];
|
|
29556
|
-
export const alertImportSummary = T['io.flow.internal.v0.models.alert_import_summary'];
|
|
29557
|
-
export const alertRequeueSummary = T['io.flow.internal.v0.models.alert_requeue_summary'];
|
|
29558
29976
|
export const allItemsExport = T['io.flow.internal.v0.models.all_items_export'];
|
|
29559
29977
|
export const allOrganizationsMembership = T['io.flow.internal.v0.models.all_organizations_membership'];
|
|
29560
29978
|
export const allocationItemReference = T['io.flow.internal.v0.models.allocation_item_reference'];
|
|
29561
29979
|
export const allowedLabels = T['io.flow.internal.v0.models.allowed_labels'];
|
|
29980
|
+
export const anirbanItem = T['io.flow.internal.v0.models.anirban_item'];
|
|
29981
|
+
export const anirbanItemForm = T['io.flow.internal.v0.models.anirban_item_form'];
|
|
29982
|
+
export const anirbanItemType = T['io.flow.internal.v0.enums.anirban_item_type'];
|
|
29562
29983
|
export const anshItem = T['io.flow.internal.v0.models.ansh_item'];
|
|
29563
29984
|
export const anshItemForm = T['io.flow.internal.v0.models.ansh_item_form'];
|
|
29564
29985
|
export const anshItemType = T['io.flow.internal.v0.enums.ansh_item_type'];
|
|
@@ -29569,6 +29990,7 @@ export const applicablePreferentialRate = T['io.flow.internal.v0.enums.applicabl
|
|
|
29569
29990
|
export const applyAtValueForm = T['io.flow.internal.v0.models.apply_at_value_form'];
|
|
29570
29991
|
export const attemptStatistics = T['io.flow.internal.v0.models.attempt_statistics'];
|
|
29571
29992
|
export const attributeLabel = T['io.flow.internal.v0.models.attribute_label'];
|
|
29993
|
+
export const attributeRule = T['io.flow.internal.v0.models.attribute_rule'];
|
|
29572
29994
|
export const authenticationForm = T['io.flow.internal.v0.models.authentication_form'];
|
|
29573
29995
|
export const authorizationBundle = T['io.flow.internal.v0.models.authorization_bundle'];
|
|
29574
29996
|
export const authorizationBundleDeleted = T['io.flow.internal.v0.models.authorization_bundle_deleted'];
|
|
@@ -29605,6 +30027,7 @@ export const bankPaymentStatusSentImportForm = T['io.flow.internal.v0.models.ban
|
|
|
29605
30027
|
export const bankPaymentStatusSingleForm = T['io.flow.internal.v0.models.bank_payment_status_single_form'];
|
|
29606
30028
|
export const bankPaymentUpserted = T['io.flow.internal.v0.models.bank_payment_upserted'];
|
|
29607
30029
|
export const bankPaymentUpsertedV2 = T['io.flow.internal.v0.models.bank_payment_upserted_v2'];
|
|
30030
|
+
export const base64CarrierDocumentContent = T['io.flow.internal.v0.models.base_64_carrier_document_content'];
|
|
29608
30031
|
export const billingAllocationKey = T['io.flow.internal.v0.enums.billing_allocation_key'];
|
|
29609
30032
|
export const billingAuthorizationReference = T['io.flow.internal.v0.models.billing_authorization_reference'];
|
|
29610
30033
|
export const billingCsvTransactionDeleted = T['io.flow.internal.v0.models.billing_csv_transaction_deleted'];
|
|
@@ -29678,11 +30101,15 @@ export const carrierChargeType = T['io.flow.internal.v0.enums.carrier_charge_typ
|
|
|
29678
30101
|
export const carrierChargeUnits = T['io.flow.internal.v0.models.carrier_charge_units'];
|
|
29679
30102
|
export const carrierChargeUpserted = T['io.flow.internal.v0.models.carrier_charge_upserted'];
|
|
29680
30103
|
export const carrierCredentials = T['io.flow.internal.v0.unions.carrier_credentials'];
|
|
30104
|
+
export const carrierDocument = T['io.flow.internal.v0.models.carrier_document'];
|
|
30105
|
+
export const carrierDocumentContent = T['io.flow.internal.v0.unions.carrier_document_content'];
|
|
30106
|
+
export const carrierDocumentType = T['io.flow.internal.v0.enums.carrier_document_type'];
|
|
29681
30107
|
export const carrierFile = T['io.flow.internal.v0.models.carrier_file'];
|
|
29682
30108
|
export const carrierFileForm = T['io.flow.internal.v0.models.carrier_file_form'];
|
|
29683
30109
|
export const carrierFileResult = T['io.flow.internal.v0.models.carrier_file_result'];
|
|
29684
30110
|
export const carrierFileType = T['io.flow.internal.v0.enums.carrier_file_type'];
|
|
29685
30111
|
export const carrierInvoice = T['io.flow.internal.v0.models.carrier_invoice'];
|
|
30112
|
+
export const carrierLabelAttributes = T['io.flow.internal.v0.unions.carrier_label_attributes'];
|
|
29686
30113
|
export const carrierLabelGenerationMethod = T['io.flow.internal.v0.enums.carrier_label_generation_method'];
|
|
29687
30114
|
export const carrierTaxForm = T['io.flow.internal.v0.models.carrier_tax_form'];
|
|
29688
30115
|
export const carrierTaxUnits = T['io.flow.internal.v0.models.carrier_tax_units'];
|
|
@@ -29752,6 +30179,10 @@ export const channelOrderSummaryUpserted = T['io.flow.internal.v0.models.channel
|
|
|
29752
30179
|
export const channelOrganizationIdentifier = T['io.flow.internal.v0.models.channel_organization_identifier'];
|
|
29753
30180
|
export const channelOrganizationIdentifierDeleted = T['io.flow.internal.v0.models.channel_organization_identifier_deleted'];
|
|
29754
30181
|
export const channelOrganizationIdentifierUpserted = T['io.flow.internal.v0.models.channel_organization_identifier_upserted'];
|
|
30182
|
+
export const channelOrganizationPublicationOwner = T['io.flow.internal.v0.models.channel_organization_publication_owner'];
|
|
30183
|
+
export const channelOrganizationPublicationOwnerPutForm = T['io.flow.internal.v0.models.channel_organization_publication_owner_put_form'];
|
|
30184
|
+
export const channelOrganizationSellabilityStatus = T['io.flow.internal.v0.models.channel_organization_sellability_status'];
|
|
30185
|
+
export const channelOrganizationSellabilityStatusPutForm = T['io.flow.internal.v0.models.channel_organization_sellability_status_put_form'];
|
|
29755
30186
|
export const channelOrganizationShopify = T['io.flow.internal.v0.models.channel_organization_shopify'];
|
|
29756
30187
|
export const channelOrganizationShopifyForm = T['io.flow.internal.v0.models.channel_organization_shopify_form'];
|
|
29757
30188
|
export const channelOrganizationShopifyPostForm = T['io.flow.internal.v0.models.channel_organization_shopify_post_form'];
|
|
@@ -29763,6 +30194,8 @@ export const channelTransactionDeleted = T['io.flow.internal.v0.models.channel_t
|
|
|
29763
30194
|
export const channelTransactionRate = T['io.flow.internal.v0.models.channel_transaction_rate'];
|
|
29764
30195
|
export const channelTransactionType = T['io.flow.internal.v0.enums.channel_transaction_type'];
|
|
29765
30196
|
export const channelTransactionUpserted = T['io.flow.internal.v0.models.channel_transaction_upserted'];
|
|
30197
|
+
export const chapterCheckResult = T['io.flow.internal.v0.models.chapter_check_result'];
|
|
30198
|
+
export const chapterCheckStatus = T['io.flow.internal.v0.enums.chapter_check_status'];
|
|
29766
30199
|
export const chargeEstimateSource = T['io.flow.internal.v0.enums.charge_estimate_source'];
|
|
29767
30200
|
export const chargeInput = T['io.flow.internal.v0.models.charge_input'];
|
|
29768
30201
|
export const chargeInputType = T['io.flow.internal.v0.enums.charge_input_type'];
|
|
@@ -29907,6 +30340,7 @@ export const deliveredDutyOptionsMessage = T['io.flow.internal.v0.models.deliver
|
|
|
29907
30340
|
export const deliveredDutyPreference = T['io.flow.internal.v0.models.delivered_duty_preference'];
|
|
29908
30341
|
export const deliveredDutyPreferenceForm = T['io.flow.internal.v0.models.delivered_duty_preference_form'];
|
|
29909
30342
|
export const deminimisAdjustmentType = T['io.flow.internal.v0.enums.deminimis_adjustment_type'];
|
|
30343
|
+
export const destinationDutyComparison = T['io.flow.internal.v0.models.destination_duty_comparison'];
|
|
29910
30344
|
export const destinationError = T['io.flow.internal.v0.models.destination_error'];
|
|
29911
30345
|
export const dhl = T['io.flow.internal.v0.models.dhl'];
|
|
29912
30346
|
export const dhlEcommerce = T['io.flow.internal.v0.models.dhl_ecommerce'];
|
|
@@ -29972,6 +30406,8 @@ export const dutyTransaction = T['io.flow.internal.v0.models.duty_transaction'];
|
|
|
29972
30406
|
export const dutyTransactionDeleted = T['io.flow.internal.v0.models.duty_transaction_deleted'];
|
|
29973
30407
|
export const dutyTransactionType = T['io.flow.internal.v0.enums.duty_transaction_type'];
|
|
29974
30408
|
export const dutyTransactionUpserted = T['io.flow.internal.v0.models.duty_transaction_upserted'];
|
|
30409
|
+
export const dutyVarianceResult = T['io.flow.internal.v0.models.duty_variance_result'];
|
|
30410
|
+
export const dutyVarianceStatus = T['io.flow.internal.v0.enums.duty_variance_status'];
|
|
29975
30411
|
export const emailForm = T['io.flow.internal.v0.models.email_form'];
|
|
29976
30412
|
export const emailModificationForm = T['io.flow.internal.v0.models.email_modification_form'];
|
|
29977
30413
|
export const emptyAttribute = T['io.flow.internal.v0.enums.empty_attribute'];
|
|
@@ -29994,6 +30430,7 @@ export const erpVendorStatus = T['io.flow.internal.v0.models.erp_vendor_status']
|
|
|
29994
30430
|
export const erpVendorStatusEntity = T['io.flow.internal.v0.models.erp_vendor_status_entity'];
|
|
29995
30431
|
export const erpVendorStatusFlowFile = T['io.flow.internal.v0.models.erp_vendor_status_flow_file'];
|
|
29996
30432
|
export const erpVendorStatusPriorityFile = T['io.flow.internal.v0.models.erp_vendor_status_priority_file'];
|
|
30433
|
+
export const evaluationCheckResult = T['io.flow.internal.v0.enums.evaluation_check_result'];
|
|
29997
30434
|
export const evaluationResults = T['io.flow.internal.v0.models.evaluation_results'];
|
|
29998
30435
|
export const event = T['io.flow.internal.v0.unions.event'];
|
|
29999
30436
|
export const eventType = T['io.flow.internal.v0.enums.event_type'];
|
|
@@ -30023,6 +30460,8 @@ export const externalFulfillmentProof = T['io.flow.internal.v0.models.external_f
|
|
|
30023
30460
|
export const externalFulfillmentProofForm = T['io.flow.internal.v0.models.external_fulfillment_proof_form'];
|
|
30024
30461
|
export const externalFulfillmentProofTracking = T['io.flow.internal.v0.models.external_fulfillment_proof_tracking'];
|
|
30025
30462
|
export const externalFulfillmentProofTrackingForm = T['io.flow.internal.v0.models.external_fulfillment_proof_tracking_form'];
|
|
30463
|
+
export const externalRatecardLink = T['io.flow.internal.v0.models.external_ratecard_link'];
|
|
30464
|
+
export const externalRatecardLinkResponse = T['io.flow.internal.v0.models.external_ratecard_link_response'];
|
|
30026
30465
|
export const facebookPixel = T['io.flow.internal.v0.models.facebook_pixel'];
|
|
30027
30466
|
export const failedDimensionEstimateOpsInputWithReason = T['io.flow.internal.v0.models.failed_dimension_estimate_ops_input_with_reason'];
|
|
30028
30467
|
export const feature = T['io.flow.internal.v0.models.feature'];
|
|
@@ -30049,10 +30488,12 @@ export const featureValueForm = T['io.flow.internal.v0.models.feature_value_form
|
|
|
30049
30488
|
export const featureValueResult = T['io.flow.internal.v0.models.feature_value_result'];
|
|
30050
30489
|
export const fedex = T['io.flow.internal.v0.models.fedex'];
|
|
30051
30490
|
export const fedexApi = T['io.flow.internal.v0.models.fedex_api'];
|
|
30491
|
+
export const fedexCarrierLabelAttributes = T['io.flow.internal.v0.models.fedex_carrier_label_attributes'];
|
|
30052
30492
|
export const fedexCrossborder = T['io.flow.internal.v0.models.fedex_crossborder'];
|
|
30053
30493
|
export const fee = T['io.flow.internal.v0.models.fee'];
|
|
30054
30494
|
export const fees = T['io.flow.internal.v0.models.fees'];
|
|
30055
30495
|
export const feesSource = T['io.flow.internal.v0.enums.fees_source'];
|
|
30496
|
+
export const fileType = T['io.flow.internal.v0.enums.file_type'];
|
|
30056
30497
|
export const financeBankAccount = T['io.flow.internal.v0.models.finance_bank_account'];
|
|
30057
30498
|
export const financeBankAccountOwner = T['io.flow.internal.v0.models.finance_bank_account_owner'];
|
|
30058
30499
|
export const financeBankPayment = T['io.flow.internal.v0.models.finance_bank_payment'];
|
|
@@ -30259,6 +30700,7 @@ export const journalFailure = T['io.flow.internal.v0.models.journal_failure'];
|
|
|
30259
30700
|
export const journalOperation = T['io.flow.internal.v0.enums.journal_operation'];
|
|
30260
30701
|
export const key = T['io.flow.internal.v0.models.key'];
|
|
30261
30702
|
export const keyReference = T['io.flow.internal.v0.models.key_reference'];
|
|
30703
|
+
export const keywordCancelling = T['io.flow.internal.v0.models.keyword_cancelling'];
|
|
30262
30704
|
export const keywordType = T['io.flow.internal.v0.enums.keyword_type'];
|
|
30263
30705
|
export const klarnaAuthorizationParameters = T['io.flow.internal.v0.models.klarna_authorization_parameters'];
|
|
30264
30706
|
export const klarnaPaymentMethodCategory = T['io.flow.internal.v0.models.klarna_payment_method_category'];
|
|
@@ -30369,7 +30811,9 @@ export const merchantOfRecordEntitySettings = T['io.flow.internal.v0.models.merc
|
|
|
30369
30811
|
export const merchantOfRecordEntitySettingsForm = T['io.flow.internal.v0.models.merchant_of_record_entity_settings_form'];
|
|
30370
30812
|
export const merchantOverride = T['io.flow.internal.v0.models.merchant_override'];
|
|
30371
30813
|
export const merchantOverrideDecisionForm = T['io.flow.internal.v0.models.merchant_override_decision_form'];
|
|
30814
|
+
export const merchantOverrideDeleted = T['io.flow.internal.v0.models.merchant_override_deleted'];
|
|
30372
30815
|
export const merchantOverrideStatus = T['io.flow.internal.v0.enums.merchant_override_status'];
|
|
30816
|
+
export const merchantOverrideUpserted = T['io.flow.internal.v0.models.merchant_override_upserted'];
|
|
30373
30817
|
export const merchantSearchResult = T['io.flow.internal.v0.models.merchant_search_result'];
|
|
30374
30818
|
export const merchantSubsidies = T['io.flow.internal.v0.models.merchant_subsidies'];
|
|
30375
30819
|
export const merchantSummary = T['io.flow.internal.v0.models.merchant_summary'];
|
|
@@ -30389,6 +30833,7 @@ export const noCalculatedTaxAmount = T['io.flow.internal.v0.models.no_calculated
|
|
|
30389
30833
|
export const noClassificationForm = T['io.flow.internal.v0.models.no_classification_form'];
|
|
30390
30834
|
export const noLiabilityReasonCode = T['io.flow.internal.v0.enums.no_liability_reason_code'];
|
|
30391
30835
|
export const nonChannelPaymentBankAccount = T['io.flow.internal.v0.models.non_channel_payment_bank_account'];
|
|
30836
|
+
export const nonL4LTaxDutyFxFeeMetadata = T['io.flow.internal.v0.models.non_l4l_tax_duty_fx_fee_metadata'];
|
|
30392
30837
|
export const nonL4LTaxDutyFxTransaction = T['io.flow.internal.v0.models.non_l4l_tax_duty_fx_transaction'];
|
|
30393
30838
|
export const nonL4LTaxDutyFxTransactionType = T['io.flow.internal.v0.enums.non_l4l_tax_duty_fx_transaction_type'];
|
|
30394
30839
|
export const notification = T['io.flow.internal.v0.models.notification'];
|
|
@@ -30397,7 +30842,6 @@ export const onboardingAuditMessageLevel = T['io.flow.internal.v0.enums.onboardi
|
|
|
30397
30842
|
export const onboardingAuditReport = T['io.flow.internal.v0.models.onboarding_audit_report'];
|
|
30398
30843
|
export const onboardingAuditReportLine = T['io.flow.internal.v0.models.onboarding_audit_report_line'];
|
|
30399
30844
|
export const onboardingAuditResult = T['io.flow.internal.v0.enums.onboarding_audit_result'];
|
|
30400
|
-
export const onboardingAuditSnapshot = T['io.flow.internal.v0.models.onboarding_audit_snapshot'];
|
|
30401
30845
|
export const onboardingAuditThemeKey = T['io.flow.internal.v0.enums.onboarding_audit_theme_key'];
|
|
30402
30846
|
export const onboardingAuditThemeReport = T['io.flow.internal.v0.models.onboarding_audit_theme_report'];
|
|
30403
30847
|
export const onboardingAutomationProcessState = T['io.flow.internal.v0.enums.onboarding_automation_process_state'];
|
|
@@ -30440,6 +30884,9 @@ export const orderPaymentSourceType = T['io.flow.internal.v0.enums.order_payment
|
|
|
30440
30884
|
export const orderRatesDataV3 = T['io.flow.internal.v0.models.order_rates_data_v3'];
|
|
30441
30885
|
export const orderRatesPublishedV3 = T['io.flow.internal.v0.models.order_rates_published_v3'];
|
|
30442
30886
|
export const orderReference = T['io.flow.internal.v0.models.order_reference'];
|
|
30887
|
+
export const orderRefundTransaction = T['io.flow.internal.v0.models.order_refund_transaction'];
|
|
30888
|
+
export const orderRefundTransactionDeleted = T['io.flow.internal.v0.models.order_refund_transaction_deleted'];
|
|
30889
|
+
export const orderRefundTransactionUpserted = T['io.flow.internal.v0.models.order_refund_transaction_upserted'];
|
|
30443
30890
|
export const orderRevenueRegionChart = T['io.flow.internal.v0.models.order_revenue_region_chart'];
|
|
30444
30891
|
export const orderRevenueRegionDataPoint = T['io.flow.internal.v0.models.order_revenue_region_data_point'];
|
|
30445
30892
|
export const orderRevenueTimelineChart = T['io.flow.internal.v0.models.order_revenue_timeline_chart'];
|
|
@@ -30574,6 +31021,7 @@ export const paymentProcessorAccountUpserted = T['io.flow.internal.v0.models.pay
|
|
|
30574
31021
|
export const paymentProcessorMerchantDeleted = T['io.flow.internal.v0.models.payment_processor_merchant_deleted'];
|
|
30575
31022
|
export const paymentProcessorMerchantUpserted = T['io.flow.internal.v0.models.payment_processor_merchant_upserted'];
|
|
30576
31023
|
export const paymentRedirect = T['io.flow.internal.v0.unions.payment_redirect'];
|
|
31024
|
+
export const paymentRequestAuthorization = T['io.flow.internal.v0.models.payment_request_authorization'];
|
|
30577
31025
|
export const paymentShortUrl = T['io.flow.internal.v0.models.payment_short_url'];
|
|
30578
31026
|
export const paymentShortUrlDiscriminator = T['io.flow.internal.v0.enums.payment_short_url_discriminator'];
|
|
30579
31027
|
export const paymentSummary = T['io.flow.internal.v0.models.payment_summary'];
|
|
@@ -30777,6 +31225,7 @@ export const reportingDebug = T['io.flow.internal.v0.models.reporting_debug'];
|
|
|
30777
31225
|
export const reportingDebugMissingSubsidies = T['io.flow.internal.v0.models.reporting_debug_missing_subsidies'];
|
|
30778
31226
|
export const reportingDestination = T['io.flow.internal.v0.models.reporting_destination'];
|
|
30779
31227
|
export const reportingDetails = T['io.flow.internal.v0.models.reporting_details'];
|
|
31228
|
+
export const reportingFees = T['io.flow.internal.v0.models.reporting_fees'];
|
|
30780
31229
|
export const reportingFulfillment = T['io.flow.internal.v0.models.reporting_fulfillment'];
|
|
30781
31230
|
export const reportingFulfillmentHas = T['io.flow.internal.v0.models.reporting_fulfillment_has'];
|
|
30782
31231
|
export const reportingFulfillmentIs = T['io.flow.internal.v0.models.reporting_fulfillment_is'];
|
|
@@ -30804,6 +31253,14 @@ export const requeueRequestForm = T['io.flow.internal.v0.models.requeue_request_
|
|
|
30804
31253
|
export const rescreenRestrictionsProducts = T['io.flow.internal.v0.models.rescreen_restrictions_products'];
|
|
30805
31254
|
export const responsibleParty = T['io.flow.internal.v0.enums.responsible_party'];
|
|
30806
31255
|
export const restrictionAction = T['io.flow.internal.v0.enums.restriction_action'];
|
|
31256
|
+
export const restrictionAttributeConditionMultiple = T['io.flow.internal.v0.models.restriction_attribute_condition_multiple'];
|
|
31257
|
+
export const restrictionAttributeConditionMultipleOperator = T['io.flow.internal.v0.enums.restriction_attribute_condition_multiple_operator'];
|
|
31258
|
+
export const restrictionAttributeConditionSingle = T['io.flow.internal.v0.models.restriction_attribute_condition_single'];
|
|
31259
|
+
export const restrictionAttributeConditionSingleOperator = T['io.flow.internal.v0.enums.restriction_attribute_condition_single_operator'];
|
|
31260
|
+
export const restrictionAttributeOperator = T['io.flow.internal.v0.enums.restriction_attribute_operator'];
|
|
31261
|
+
export const restrictionAttributeResult = T['io.flow.internal.v0.enums.restriction_attribute_result'];
|
|
31262
|
+
export const restrictionAttributeRule = T['io.flow.internal.v0.models.restriction_attribute_rule'];
|
|
31263
|
+
export const restrictionAttributeRuleCondition = T['io.flow.internal.v0.unions.restriction_attribute_rule_condition'];
|
|
30807
31264
|
export const restrictionBlanketOrganizationExemption = T['io.flow.internal.v0.models.restriction_blanket_organization_exemption'];
|
|
30808
31265
|
export const restrictionCategory = T['io.flow.internal.v0.models.restriction_category'];
|
|
30809
31266
|
export const restrictionDecision = T['io.flow.internal.v0.enums.restriction_decision'];
|
|
@@ -30828,6 +31285,7 @@ export const restrictionProductDecisionForm = T['io.flow.internal.v0.models.rest
|
|
|
30828
31285
|
export const restrictionProductRequestForm = T['io.flow.internal.v0.models.restriction_product_request_form'];
|
|
30829
31286
|
export const restrictionProductSummary = T['io.flow.internal.v0.models.restriction_product_summary'];
|
|
30830
31287
|
export const restrictionRule = T['io.flow.internal.v0.models.restriction_rule'];
|
|
31288
|
+
export const restrictionRuleActivationStatus = T['io.flow.internal.v0.enums.restriction_rule_activation_status'];
|
|
30831
31289
|
export const restrictionRuleCommunityExemption = T['io.flow.internal.v0.enums.restriction_rule_community_exemption'];
|
|
30832
31290
|
export const restrictionRuleDecisionForm = T['io.flow.internal.v0.models.restriction_rule_decision_form'];
|
|
30833
31291
|
export const restrictionRuleDeleted = T['io.flow.internal.v0.models.restriction_rule_deleted'];
|
|
@@ -30860,6 +31318,7 @@ export const returnPolicyUpserted = T['io.flow.internal.v0.models.return_policy_
|
|
|
30860
31318
|
export const returnSummary = T['io.flow.internal.v0.models.return_summary'];
|
|
30861
31319
|
export const returnTrigger = T['io.flow.internal.v0.unions.return_trigger'];
|
|
30862
31320
|
export const returnTriggerRefund = T['io.flow.internal.v0.models.return_trigger_refund'];
|
|
31321
|
+
export const returnTriggerReversal = T['io.flow.internal.v0.models.return_trigger_reversal'];
|
|
30863
31322
|
export const revenueRecord = T['io.flow.internal.v0.models.revenue_record'];
|
|
30864
31323
|
export const revenueRecordDeleted = T['io.flow.internal.v0.models.revenue_record_deleted'];
|
|
30865
31324
|
export const revenueRecordType = T['io.flow.internal.v0.enums.revenue_record_type'];
|
|
@@ -30892,6 +31351,9 @@ export const searchItemSummary = T['io.flow.internal.v0.models.search_item_summa
|
|
|
30892
31351
|
export const searchOrderSummary = T['io.flow.internal.v0.models.search_order_summary'];
|
|
30893
31352
|
export const searchProviderExport = T['io.flow.internal.v0.models.search_provider_export'];
|
|
30894
31353
|
export const searchTrackingSummary = T['io.flow.internal.v0.models.search_tracking_summary'];
|
|
31354
|
+
export const sellabilityCheckResult = T['io.flow.internal.v0.models.sellability_check_result'];
|
|
31355
|
+
export const sellabilityCheckStatus = T['io.flow.internal.v0.enums.sellability_check_status'];
|
|
31356
|
+
export const sellabilityStatus = T['io.flow.internal.v0.enums.sellability_status'];
|
|
30895
31357
|
export const sessionOrderData = T['io.flow.internal.v0.models.session_order_data'];
|
|
30896
31358
|
export const setupBlockPutForm = T['io.flow.internal.v0.models.setup_block_put_form'];
|
|
30897
31359
|
export const sfExpress = T['io.flow.internal.v0.models.sf_express'];
|
|
@@ -30965,7 +31427,6 @@ export const shopifyMonitoringMonitorReviewStatus = T['io.flow.internal.v0.enums
|
|
|
30965
31427
|
export const shopifyMonitoringOrderMonitor = T['io.flow.internal.v0.models.shopify_monitoring_order_monitor'];
|
|
30966
31428
|
export const shopifyMonitoringOrderMonitorEventDeleted = T['io.flow.internal.v0.models.shopify_monitoring_order_monitor_event_deleted'];
|
|
30967
31429
|
export const shopifyMonitoringOrderMonitorEventUpserted = T['io.flow.internal.v0.models.shopify_monitoring_order_monitor_event_upserted'];
|
|
30968
|
-
export const shopifyMonitoringOrderMonitorReview = T['io.flow.internal.v0.models.shopify_monitoring_order_monitor_review'];
|
|
30969
31430
|
export const shopifyMonitoringOrderMonitorType = T['io.flow.internal.v0.unions.shopify_monitoring_order_monitor_type'];
|
|
30970
31431
|
export const shopifyMonitoringTrackingField = T['io.flow.internal.v0.enums.shopify_monitoring_tracking_field'];
|
|
30971
31432
|
export const shopifyMonitoringTrackingNumber = T['io.flow.internal.v0.models.shopify_monitoring_tracking_number'];
|
|
@@ -30995,6 +31456,12 @@ export const shopifyProductCreateWebhookEvent = T['io.flow.internal.v0.models.sh
|
|
|
30995
31456
|
export const shopifyProductDeleteDeleted = T['io.flow.internal.v0.models.shopify_product_delete_deleted'];
|
|
30996
31457
|
export const shopifyProductDeleteUpserted = T['io.flow.internal.v0.models.shopify_product_delete_upserted'];
|
|
30997
31458
|
export const shopifyProductDeleteWebhookEvent = T['io.flow.internal.v0.models.shopify_product_delete_webhook_event'];
|
|
31459
|
+
export const shopifyProductTaxonomyAttribute = T['io.flow.internal.v0.models.shopify_product_taxonomy_attribute'];
|
|
31460
|
+
export const shopifyProductTaxonomyAttributeDeleted = T['io.flow.internal.v0.models.shopify_product_taxonomy_attribute_deleted'];
|
|
31461
|
+
export const shopifyProductTaxonomyAttributeUpserted = T['io.flow.internal.v0.models.shopify_product_taxonomy_attribute_upserted'];
|
|
31462
|
+
export const shopifyProductTaxonomyAttributeValue = T['io.flow.internal.v0.models.shopify_product_taxonomy_attribute_value'];
|
|
31463
|
+
export const shopifyProductTaxonomyAttributeValueDeleted = T['io.flow.internal.v0.models.shopify_product_taxonomy_attribute_value_deleted'];
|
|
31464
|
+
export const shopifyProductTaxonomyAttributeValueUpserted = T['io.flow.internal.v0.models.shopify_product_taxonomy_attribute_value_upserted'];
|
|
30998
31465
|
export const shopifyProductUpdateDeleted = T['io.flow.internal.v0.models.shopify_product_update_deleted'];
|
|
30999
31466
|
export const shopifyProductUpdateUpserted = T['io.flow.internal.v0.models.shopify_product_update_upserted'];
|
|
31000
31467
|
export const shopifyProductUpdateWebhookEvent = T['io.flow.internal.v0.models.shopify_product_update_webhook_event'];
|
|
@@ -31005,6 +31472,8 @@ export const shopifyService = T['io.flow.internal.v0.enums.shopify_service'];
|
|
|
31005
31472
|
export const shopifyShopStatistics = T['io.flow.internal.v0.models.shopify_shop_statistics'];
|
|
31006
31473
|
export const shopifyStoreDetail = T['io.flow.internal.v0.models.shopify_store_detail'];
|
|
31007
31474
|
export const shopifyStripeEvent = T['io.flow.internal.v0.models.shopify_stripe_event'];
|
|
31475
|
+
export const shopifyTaxonomyAlignmentConfig = T['io.flow.internal.v0.models.shopify_taxonomy_alignment_config'];
|
|
31476
|
+
export const shopifyTaxonomyAlignmentConfigForm = T['io.flow.internal.v0.models.shopify_taxonomy_alignment_config_form'];
|
|
31008
31477
|
export const shopperBreakdown = T['io.flow.internal.v0.models.shopper_breakdown'];
|
|
31009
31478
|
export const shopperFees = T['io.flow.internal.v0.models.shopper_fees'];
|
|
31010
31479
|
export const shopperFreight = T['io.flow.internal.v0.models.shopper_freight'];
|
|
@@ -31075,7 +31544,6 @@ export const stripeRefundDeleted = T['io.flow.internal.v0.models.stripe_refund_d
|
|
|
31075
31544
|
export const stripeRefundUpserted = T['io.flow.internal.v0.models.stripe_refund_upserted'];
|
|
31076
31545
|
export const stripeReversalDeleted = T['io.flow.internal.v0.models.stripe_reversal_deleted'];
|
|
31077
31546
|
export const stripeReversalUpserted = T['io.flow.internal.v0.models.stripe_reversal_upserted'];
|
|
31078
|
-
export const subcatalogItemCount = T['io.flow.internal.v0.models.subcatalog_item_count'];
|
|
31079
31547
|
export const submittedOrderUpserted = T['io.flow.internal.v0.models.submitted_order_upserted'];
|
|
31080
31548
|
export const subscription = T['io.flow.internal.v0.models.subscription'];
|
|
31081
31549
|
export const subscriptionFrequency = T['io.flow.internal.v0.enums.subscription_frequency'];
|
|
@@ -31088,7 +31556,6 @@ export const tariffEligibilityData = T['io.flow.internal.v0.unions.tariff_eligib
|
|
|
31088
31556
|
export const tariffEligibilityForm = T['io.flow.internal.v0.unions.tariff_eligibility_form'];
|
|
31089
31557
|
export const tariffEligibilityType = T['io.flow.internal.v0.enums.tariff_eligibility_type'];
|
|
31090
31558
|
export const task = T['io.flow.internal.v0.models.task'];
|
|
31091
|
-
export const taskCount = T['io.flow.internal.v0.models.task_count'];
|
|
31092
31559
|
export const taskData = T['io.flow.internal.v0.unions.task_data'];
|
|
31093
31560
|
export const taskImport = T['io.flow.internal.v0.models.task_import'];
|
|
31094
31561
|
export const taskItemUpserted = T['io.flow.internal.v0.models.task_item_upserted'];
|
|
@@ -31113,6 +31580,7 @@ export const taxTransaction = T['io.flow.internal.v0.models.tax_transaction'];
|
|
|
31113
31580
|
export const taxTransactionDeleted = T['io.flow.internal.v0.models.tax_transaction_deleted'];
|
|
31114
31581
|
export const taxTransactionType = T['io.flow.internal.v0.enums.tax_transaction_type'];
|
|
31115
31582
|
export const taxTransactionUpserted = T['io.flow.internal.v0.models.tax_transaction_upserted'];
|
|
31583
|
+
export const taxonomyAlignmentCheckResult = T['io.flow.internal.v0.models.taxonomy_alignment_check_result'];
|
|
31116
31584
|
export const taxonomyCategory = PropTypes.any;
|
|
31117
31585
|
export const taxonomyCategoryClassificationAlignment = T['io.flow.internal.v0.enums.taxonomy_category_classification_alignment'];
|
|
31118
31586
|
export const taxonomyCategoryHs6Ref = T['io.flow.internal.v0.models.taxonomy_category_hs6_ref'];
|