@flowio/api-internal-prop-types 9.24.122 → 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 +474 -28
- package/lib/api-internal.js +1 -1
- package/package.json +2 -2
- package/src/api-internal.d.ts +474 -28
- package/src/api-internal.js +1093 -589
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({
|
|
@@ -14652,6 +14718,10 @@ T['io.flow.internal.v0.models.merchant_transactions'] = PropTypes.exact({
|
|
|
14652
14718
|
freight: PropTypes.number.isRequired,
|
|
14653
14719
|
total: PropTypes.number.isRequired,
|
|
14654
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,
|
|
14655
14725
|
});
|
|
14656
14726
|
|
|
14657
14727
|
T['io.flow.internal.v0.models.merchant_fees'] = PropTypes.exact({
|
|
@@ -15175,6 +15245,72 @@ T['io.flow.internal.v0.models.return_policy_deleted'] = PropTypes.exact({
|
|
|
15175
15245
|
return_policy: T['io.flow.catalog.return.v0.models.return_policy'].isRequired,
|
|
15176
15246
|
});
|
|
15177
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
|
+
|
|
15178
15314
|
T['io.flow.internal.v0.models.erp_vendor_status_priority_file'] = PropTypes.exact({
|
|
15179
15315
|
name: PropTypes.string.isRequired,
|
|
15180
15316
|
url: PropTypes.string.isRequired,
|
|
@@ -15449,6 +15585,15 @@ T['io.flow.internal.v0.models.encryption'] = PropTypes.exact({
|
|
|
15449
15585
|
passphrase_ids: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
15450
15586
|
});
|
|
15451
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']);
|
|
15452
15597
|
T['io.flow.internal.v0.enums.duty_rate_unit_of_measure'] = PropTypes.oneOf(['kg', 'sq m', 'item', 'pair']);
|
|
15453
15598
|
T['io.flow.internal.v0.enums.duty_simple_expression_type'] = PropTypes.oneOf(['free', 'percent', 'per_uom', 'flat']);
|
|
15454
15599
|
|
|
@@ -16135,11 +16280,13 @@ T['io.flow.internal.v0.models.reporting_order_summary'] = PropTypes.exact({
|
|
|
16135
16280
|
number: PropTypes.string.isRequired,
|
|
16136
16281
|
submitted_at: PropTypes.string.isRequired,
|
|
16137
16282
|
payment_source: T['io.flow.experience.v0.enums.order_payment_source_type'],
|
|
16283
|
+
is_edited: PropTypes.bool,
|
|
16138
16284
|
});
|
|
16139
16285
|
|
|
16140
16286
|
T['io.flow.internal.v0.models.sales_payment_record'] = PropTypes.exact({
|
|
16141
16287
|
id: PropTypes.string.isRequired,
|
|
16142
16288
|
organization: T['io.flow.internal.v0.models.reporting_organization_summary'].isRequired,
|
|
16289
|
+
vendor: T['io.flow.internal.v0.models.reporting_vendor'],
|
|
16143
16290
|
order: T['io.flow.internal.v0.models.reporting_order_summary'].isRequired,
|
|
16144
16291
|
order_total: T['io.flow.internal.v0.models.reporting_monetary_value'].isRequired,
|
|
16145
16292
|
shopper_breakdown: T['io.flow.internal.v0.models.shopper_breakdown'].isRequired,
|
|
@@ -16353,6 +16500,10 @@ T['io.flow.internal.v0.enums.billing_metric_key'] = PropTypes.oneOf([
|
|
|
16353
16500
|
'sp_billable_label_transactions_count',
|
|
16354
16501
|
'sp_billable_label_transactions_count_for_unique_orders',
|
|
16355
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',
|
|
16356
16507
|
'sp_capture_transactions_count',
|
|
16357
16508
|
'sp_capture_transactions_total',
|
|
16358
16509
|
'sp_carrier_charge_transactions_count',
|
|
@@ -16617,6 +16768,7 @@ T['io.flow.internal.v0.models.invoice_line_item'] = PropTypes.exact({
|
|
|
16617
16768
|
total_price: PropTypes.number.isRequired,
|
|
16618
16769
|
manufacturer_id: PropTypes.string,
|
|
16619
16770
|
export_control_classification_number: PropTypes.string.isRequired,
|
|
16771
|
+
preferential_rate_statement: PropTypes.string,
|
|
16620
16772
|
});
|
|
16621
16773
|
|
|
16622
16774
|
T['io.flow.internal.v0.models.commercial_invoice_summary'] = PropTypes.exact({
|
|
@@ -16716,6 +16868,7 @@ T['io.flow.internal.v0.enums.item_harmonization_status'] = PropTypes.oneOf([
|
|
|
16716
16868
|
'classified',
|
|
16717
16869
|
'non_classifiable_not_enough_information',
|
|
16718
16870
|
'exempt',
|
|
16871
|
+
'manual_classification_required',
|
|
16719
16872
|
]);
|
|
16720
16873
|
|
|
16721
16874
|
T['io.flow.internal.v0.models.no_classification_form'] = PropTypes.exact({
|
|
@@ -17138,51 +17291,93 @@ T['io.flow.internal.v0.enums.charge_input_type'] = PropTypes.oneOf([
|
|
|
17138
17291
|
'peak_surcharge',
|
|
17139
17292
|
]);
|
|
17140
17293
|
|
|
17141
|
-
T['io.flow.internal.v0.
|
|
17142
|
-
id: PropTypes.string.isRequired,
|
|
17143
|
-
});
|
|
17294
|
+
T['io.flow.internal.v0.enums.evaluation_check_result'] = PropTypes.oneOf(['pass', 'fail']);
|
|
17144
17295
|
|
|
17145
|
-
T['io.flow.internal.v0.models.
|
|
17146
|
-
|
|
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,
|
|
17147
17301
|
});
|
|
17148
17302
|
|
|
17149
|
-
T['io.flow.internal.v0.models.
|
|
17150
|
-
|
|
17151
|
-
|
|
17152
|
-
|
|
17153
|
-
|
|
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']),
|
|
17154
17312
|
});
|
|
17155
17313
|
|
|
17156
|
-
T['io.flow.internal.v0.
|
|
17157
|
-
|
|
17158
|
-
T['io.flow.internal.v0.
|
|
17159
|
-
|
|
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,
|
|
17160
17318
|
});
|
|
17161
17319
|
|
|
17162
|
-
T['io.flow.
|
|
17163
|
-
|
|
17164
|
-
|
|
17165
|
-
|
|
17166
|
-
|
|
17167
|
-
|
|
17320
|
+
T['io.flow.internal.v0.enums.chapter_check_status'] = PropTypes.oneOf(['apparel_like', 'similar', 'does_not_match']);
|
|
17321
|
+
|
|
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,
|
|
17168
17327
|
});
|
|
17169
17328
|
|
|
17170
|
-
T['io.flow.
|
|
17171
|
-
|
|
17172
|
-
|
|
17173
|
-
|
|
17174
|
-
|
|
17175
|
-
attributes: PropTypes.objectOf(PropTypes.string),
|
|
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'],
|
|
17176
17334
|
});
|
|
17177
17335
|
|
|
17178
|
-
T['io.flow.
|
|
17179
|
-
|
|
17180
|
-
|
|
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,
|
|
17181
17347
|
});
|
|
17182
17348
|
|
|
17183
|
-
T['io.flow.internal.v0.models.
|
|
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,
|
|
17375
|
+
attributes: PropTypes.objectOf(PropTypes.string),
|
|
17376
|
+
});
|
|
17377
|
+
|
|
17378
|
+
T['io.flow.channel.shopify.internal.v0.models.channel_organization_shopify_post_form'] = PropTypes.exact({
|
|
17184
17379
|
form: T['io.flow.channel.v0.models.channel_organization_form'].isRequired,
|
|
17185
|
-
metadata: T['io.flow.internal.v0.models.shopify_metadata'].isRequired,
|
|
17380
|
+
metadata: T['io.flow.channel.shopify.internal.v0.models.shopify_metadata'].isRequired,
|
|
17186
17381
|
});
|
|
17187
17382
|
|
|
17188
17383
|
T['io.flow.channel.v0.models.channel_organization_put_form'] = PropTypes.exact({
|
|
@@ -17197,14 +17392,62 @@ T['io.flow.channel.shopify.internal.v0.models.channel_organization_shopify_form'
|
|
|
17197
17392
|
metadata: T['io.flow.channel.shopify.internal.v0.models.shopify_metadata'].isRequired,
|
|
17198
17393
|
});
|
|
17199
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
|
+
|
|
17200
17440
|
T['io.flow.internal.v0.models.channel_organization_shopify_form'] = PropTypes.exact({
|
|
17201
17441
|
form: T['io.flow.channel.v0.models.channel_organization_put_form'].isRequired,
|
|
17202
17442
|
metadata: T['io.flow.internal.v0.models.shopify_metadata'].isRequired,
|
|
17203
17443
|
});
|
|
17204
17444
|
|
|
17205
|
-
T['io.flow.internal.v0.models.
|
|
17206
|
-
|
|
17207
|
-
|
|
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,
|
|
17208
17451
|
});
|
|
17209
17452
|
|
|
17210
17453
|
T['io.flow.internal.v0.enums.channel_order_fulfillment_status_code'] = PropTypes.oneOf(['unfulfilled', 'fulfilled', 'partial', 'cancelled']);
|
|
@@ -17768,6 +18011,7 @@ T['io.flow.shopify.markets.internal.v0.models.shopify_markets_shop'] = PropTypes
|
|
|
17768
18011
|
api_password_masked: PropTypes.string,
|
|
17769
18012
|
access_token_masked: PropTypes.string,
|
|
17770
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'],
|
|
17771
18015
|
});
|
|
17772
18016
|
|
|
17773
18017
|
T['io.flow.shopify.markets.internal.event.v0.models.shopify_markets_shop_upserted'] = PropTypes.exact({
|
|
@@ -17804,6 +18048,7 @@ T['io.flow.internal.v0.models.shopify_markets_shop'] = PropTypes.exact({
|
|
|
17804
18048
|
api_password_masked: PropTypes.string,
|
|
17805
18049
|
access_token_masked: PropTypes.string,
|
|
17806
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'],
|
|
17807
18052
|
});
|
|
17808
18053
|
|
|
17809
18054
|
T['io.flow.internal.v0.models.shopify_markets_shop_upserted'] = PropTypes.exact({
|
|
@@ -18272,6 +18517,8 @@ T['io.flow.internal.v0.models.carrier_file'] = PropTypes.exact({
|
|
|
18272
18517
|
result: T['io.flow.internal.v0.models.carrier_file_result'],
|
|
18273
18518
|
});
|
|
18274
18519
|
|
|
18520
|
+
T['io.flow.internal.v0.enums.carrier_document_type'] = PropTypes.oneOf(['commercial_invoice']);
|
|
18521
|
+
|
|
18275
18522
|
T['io.flow.internal.v0.models.carrier_charge_reference'] = PropTypes.exact({
|
|
18276
18523
|
id: PropTypes.string.isRequired,
|
|
18277
18524
|
});
|
|
@@ -18407,6 +18654,7 @@ T['io.flow.internal.v0.models.label_surcharge_form'] = PropTypes.exact({
|
|
|
18407
18654
|
saturday_stop: T['io.flow.internal.v0.models.label_surcharge_single_form'],
|
|
18408
18655
|
residential_extended_area_pickup: T['io.flow.internal.v0.models.label_surcharge_single_form'],
|
|
18409
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'],
|
|
18410
18658
|
});
|
|
18411
18659
|
|
|
18412
18660
|
T['io.flow.internal.v0.models.carrier_tax_form'] = PropTypes.exact({
|
|
@@ -18756,6 +19004,7 @@ T['io.flow.internal.v0.models.channel_order_acceptance'] = PropTypes.exact({
|
|
|
18756
19004
|
channel_id: PropTypes.string.isRequired,
|
|
18757
19005
|
external_order_reference: PropTypes.string.isRequired,
|
|
18758
19006
|
payment_request_id: PropTypes.string,
|
|
19007
|
+
order_payment_request_ids: PropTypes.arrayOf(PropTypes.string),
|
|
18759
19008
|
order_edit_payment_request_ids: PropTypes.arrayOf(PropTypes.string),
|
|
18760
19009
|
status: T['io.flow.internal.v0.enums.channel_order_acceptance_status'].isRequired,
|
|
18761
19010
|
reasons: PropTypes.arrayOf(T['io.flow.internal.v0.models.channel_order_acceptance_reason']).isRequired,
|
|
@@ -19254,6 +19503,21 @@ T['io.flow.internal.v0.models.other_record_metadata'] = PropTypes.exact({
|
|
|
19254
19503
|
failed_payout: T['io.flow.internal.v0.models.other_record_metadata_failed_payout'],
|
|
19255
19504
|
});
|
|
19256
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
|
+
|
|
19257
19521
|
T['io.flow.internal.v0.models.bank_payment_status_import_result'] = PropTypes.exact({
|
|
19258
19522
|
processed_at: PropTypes.string.isRequired,
|
|
19259
19523
|
number_lines_successful: PropTypes.number.isRequired,
|
|
@@ -19304,11 +19568,6 @@ T['io.flow.internal.v0.models.standalone_attachment_upserted'] = PropTypes.exact
|
|
|
19304
19568
|
attachment: T['io.flow.internal.v0.models.standalone_attachment'].isRequired,
|
|
19305
19569
|
});
|
|
19306
19570
|
|
|
19307
|
-
T['io.flow.internal.v0.models.pending_bank_payment_detail'] = PropTypes.exact({
|
|
19308
|
-
transaction: T['io.flow.internal.v0.models.transaction_reference'].isRequired,
|
|
19309
|
-
statement: T['io.flow.internal.v0.models.billing_statement_reference'].isRequired,
|
|
19310
|
-
});
|
|
19311
|
-
|
|
19312
19571
|
T['io.flow.internal.v0.models.explicit_statement'] = PropTypes.exact({
|
|
19313
19572
|
id: PropTypes.string.isRequired,
|
|
19314
19573
|
statement: T['io.flow.internal.v0.models.billing_statement_reference'].isRequired,
|
|
@@ -19498,44 +19757,6 @@ T['io.flow.internal.v0.models.auto_review_criteria'] = PropTypes.exact({
|
|
|
19498
19757
|
action: T['io.flow.internal.v0.enums.restriction_status'],
|
|
19499
19758
|
});
|
|
19500
19759
|
|
|
19501
|
-
T['io.flow.internal.v0.models.restriction_rule_form'] = PropTypes.exact({
|
|
19502
|
-
name: PropTypes.string.isRequired,
|
|
19503
|
-
description: PropTypes.string.isRequired,
|
|
19504
|
-
action: T['io.flow.internal.v0.enums.restriction_action'].isRequired,
|
|
19505
|
-
regions: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
19506
|
-
positive_keywords: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
19507
|
-
negative_keywords: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
19508
|
-
value_threshold_usd: PropTypes.number,
|
|
19509
|
-
auto_review_criteria: PropTypes.arrayOf(T['io.flow.internal.v0.models.auto_review_criteria']),
|
|
19510
|
-
source: T['io.flow.internal.v0.enums.restriction_organization_source'].isRequired,
|
|
19511
|
-
sellability_positive_keywords: PropTypes.arrayOf(PropTypes.string),
|
|
19512
|
-
community_exemption: PropTypes.arrayOf(T['io.flow.internal.v0.enums.restriction_rule_community_exemption']).isRequired,
|
|
19513
|
-
reason_code: PropTypes.string.isRequired,
|
|
19514
|
-
});
|
|
19515
|
-
|
|
19516
|
-
T['io.flow.internal.v0.models.restriction_rule'] = PropTypes.exact({
|
|
19517
|
-
id: PropTypes.string.isRequired,
|
|
19518
|
-
name: PropTypes.string.isRequired,
|
|
19519
|
-
description: PropTypes.string.isRequired,
|
|
19520
|
-
action: T['io.flow.internal.v0.enums.restriction_action'].isRequired,
|
|
19521
|
-
regions: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
19522
|
-
positive_keywords: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
19523
|
-
negative_keywords: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
19524
|
-
value_threshold_usd: PropTypes.number,
|
|
19525
|
-
auto_review_criteria: PropTypes.arrayOf(T['io.flow.internal.v0.models.auto_review_criteria']),
|
|
19526
|
-
source: T['io.flow.internal.v0.enums.restriction_organization_source'].isRequired,
|
|
19527
|
-
sellability_positive_keywords: PropTypes.arrayOf(PropTypes.string),
|
|
19528
|
-
community_exemption: PropTypes.arrayOf(T['io.flow.internal.v0.enums.restriction_rule_community_exemption']).isRequired,
|
|
19529
|
-
reason_code: PropTypes.string.isRequired,
|
|
19530
|
-
});
|
|
19531
|
-
|
|
19532
|
-
T['io.flow.internal.v0.models.restriction_rule_upserted'] = PropTypes.exact({
|
|
19533
|
-
discriminator: PropTypes.oneOf(['restriction_rule_upserted']).isRequired,
|
|
19534
|
-
event_id: PropTypes.string.isRequired,
|
|
19535
|
-
timestamp: PropTypes.string.isRequired,
|
|
19536
|
-
restriction_rule: T['io.flow.internal.v0.models.restriction_rule'].isRequired,
|
|
19537
|
-
});
|
|
19538
|
-
|
|
19539
19760
|
T['io.flow.internal.v0.enums.order_charge_trigger'] = PropTypes.oneOf(['first_shipment', 'last_shipment', 'shipment_exhausted']);
|
|
19540
19761
|
|
|
19541
19762
|
T['io.flow.common.v0.models.catalog_item_reference'] = PropTypes.exact({
|
|
@@ -20390,7 +20611,76 @@ T['io.flow.internal.v0.models.authorization_bundle_upserted'] = PropTypes.exact(
|
|
|
20390
20611
|
authorization_bundle: T['io.flow.internal.v0.models.authorization_bundle'].isRequired,
|
|
20391
20612
|
});
|
|
20392
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
|
+
|
|
20393
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']);
|
|
20394
20684
|
T['io.flow.common.v0.enums.role'] = PropTypes.oneOf(['admin', 'member']);
|
|
20395
20685
|
|
|
20396
20686
|
T['io.flow.organization.v0.models.organization_authorization'] = PropTypes.exact({
|
|
@@ -22630,6 +22920,7 @@ T['io.flow.label.v0.models.detailed_shipping_label_form'] = PropTypes.exact({
|
|
|
22630
22920
|
package_dimensions_source: T['io.flow.label.v0.enums.package_dimensions_source'],
|
|
22631
22921
|
origin_location_source: T['io.flow.label.v0.enums.origin_location_source'],
|
|
22632
22922
|
reference_id: PropTypes.string,
|
|
22923
|
+
shipping_date_time: PropTypes.string,
|
|
22633
22924
|
});
|
|
22634
22925
|
|
|
22635
22926
|
T['io.flow.label.v0.models.bridge_shipping_label_form'] = PropTypes.exact({
|
|
@@ -22949,14 +23240,6 @@ T['io.flow.internal.v0.models.transaction_adjustment_form'] = PropTypes.exact({
|
|
|
22949
23240
|
type: T['io.flow.internal.v0.enums.adjustment_transaction_type'],
|
|
22950
23241
|
});
|
|
22951
23242
|
|
|
22952
|
-
T['io.flow.internal.v0.models.transaction_adjustment'] = PropTypes.exact({
|
|
22953
|
-
id: PropTypes.string.isRequired,
|
|
22954
|
-
original_transaction: T['io.flow.internal.v0.models.transaction_reference'].isRequired,
|
|
22955
|
-
adjustment_transaction: T['io.flow.internal.v0.models.transaction_reference'],
|
|
22956
|
-
description: PropTypes.string.isRequired,
|
|
22957
|
-
details: T['io.flow.internal.v0.unions.adjustment_details'].isRequired,
|
|
22958
|
-
});
|
|
22959
|
-
|
|
22960
23243
|
T['io.flow.internal.v0.models.additional_import_tax'] = PropTypes.exact({
|
|
22961
23244
|
name: PropTypes.string,
|
|
22962
23245
|
additional_import_tax_value: T['io.flow.common.v0.models.money'],
|
|
@@ -23024,6 +23307,72 @@ T['io.flow.internal.v0.unions.order_action_form'] = PropTypes.oneOfType([
|
|
|
23024
23307
|
T['io.flow.internal.v0.models.fulfillment_action_form'],
|
|
23025
23308
|
]);
|
|
23026
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
|
+
|
|
23027
23376
|
T['io.flow.internal.v0.models.bank_account_reference'] = PropTypes.exact({
|
|
23028
23377
|
id: PropTypes.string.isRequired,
|
|
23029
23378
|
});
|
|
@@ -23100,6 +23449,10 @@ T['io.flow.shopify.markets.internal.event.v0.unions.shopify_markets_internal_eve
|
|
|
23100
23449
|
T['io.flow.shopify.markets.internal.event.v0.models.shopify_markets_webhook_registration_deleted'],
|
|
23101
23450
|
T['io.flow.shopify.markets.internal.event.v0.models.shopify_markets_shop_statistics_upserted'],
|
|
23102
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'],
|
|
23103
23456
|
T['io.flow.shopify.markets.internal.event.v0.models.shopify_markets_metrics_upserted'],
|
|
23104
23457
|
T['io.flow.shopify.markets.internal.event.v0.models.shopify_markets_metrics_deleted'],
|
|
23105
23458
|
T['io.flow.shopify.markets.internal.event.v0.models.channel_order_summary_upserted'],
|
|
@@ -23186,12 +23539,6 @@ T['io.flow.internal.v0.models.shopify_monitoring_order_monitor'] = PropTypes.exa
|
|
|
23186
23539
|
monitor: T['io.flow.internal.v0.unions.shopify_monitoring_order_monitor_type'].isRequired,
|
|
23187
23540
|
});
|
|
23188
23541
|
|
|
23189
|
-
T['io.flow.internal.v0.models.shopify_monitoring_order_monitor_review'] = PropTypes.exact({
|
|
23190
|
-
id: PropTypes.string.isRequired,
|
|
23191
|
-
order_monitor: T['io.flow.internal.v0.models.shopify_monitoring_order_monitor'].isRequired,
|
|
23192
|
-
status: T['io.flow.internal.v0.enums.shopify_monitoring_monitor_review_status'].isRequired,
|
|
23193
|
-
});
|
|
23194
|
-
|
|
23195
23542
|
T['io.flow.internal.v0.models.shopify_monitoring_order_monitor_event_upserted'] = PropTypes.exact({
|
|
23196
23543
|
discriminator: PropTypes.oneOf(['shopify_monitoring_order_monitor_event_upserted']).isRequired,
|
|
23197
23544
|
event_id: PropTypes.string.isRequired,
|
|
@@ -23317,16 +23664,7 @@ T['io.flow.organization.v0.models.invitation_version'] = PropTypes.exact({
|
|
|
23317
23664
|
invitation: T['io.flow.organization.v0.models.invitation'].isRequired,
|
|
23318
23665
|
});
|
|
23319
23666
|
|
|
23320
|
-
T['io.flow.internal.v0.models.
|
|
23321
|
-
id: PropTypes.string.isRequired,
|
|
23322
|
-
organization: T['io.flow.common.v0.models.organization'].isRequired,
|
|
23323
|
-
result: T['io.flow.internal.v0.enums.onboarding_audit_result'].isRequired,
|
|
23324
|
-
theme_reports: PropTypes.arrayOf(T['io.flow.internal.v0.models.onboarding_audit_theme_report']).isRequired,
|
|
23325
|
-
requested_by: T['io.flow.common.v0.models.user'].isRequired,
|
|
23326
|
-
requested_at: PropTypes.string.isRequired,
|
|
23327
|
-
});
|
|
23328
|
-
|
|
23329
|
-
T['io.flow.internal.v0.models.onboarding_audit_report'] = PropTypes.exact({
|
|
23667
|
+
T['io.flow.internal.v0.models.onboarding_audit_report'] = PropTypes.exact({
|
|
23330
23668
|
organization: T['io.flow.common.v0.models.organization'].isRequired,
|
|
23331
23669
|
result: T['io.flow.internal.v0.enums.onboarding_audit_result'].isRequired,
|
|
23332
23670
|
theme_reports: PropTypes.arrayOf(T['io.flow.internal.v0.models.onboarding_audit_theme_report']).isRequired,
|
|
@@ -23688,6 +24026,8 @@ T['io.flow.internal.v0.unions.task_metadata'] = PropTypes.oneOfType([
|
|
|
23688
24026
|
T['io.flow.internal.v0.models.statement_creation_metadata'],
|
|
23689
24027
|
T['io.flow.internal.v0.models.accounting_pending_order_metadata'],
|
|
23690
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'],
|
|
23691
24031
|
]);
|
|
23692
24032
|
|
|
23693
24033
|
T['io.flow.common.v0.models.price'] = PropTypes.exact({
|
|
@@ -24230,6 +24570,7 @@ T['io.flow.internal.v0.models.restriction_product'] = PropTypes.exact({
|
|
|
24230
24570
|
thumbnails: PropTypes.arrayOf(T['io.flow.catalog.v0.models.image']).isRequired,
|
|
24231
24571
|
hs_code: PropTypes.string,
|
|
24232
24572
|
hs_code_source: T['io.flow.internal.v0.enums.harmonization_decision_source'],
|
|
24573
|
+
classification_scope: T['io.flow.internal.v0.enums.classification_scope'],
|
|
24233
24574
|
url: PropTypes.string,
|
|
24234
24575
|
reviews: PropTypes.arrayOf(T['io.flow.internal.v0.models.restriction_item_review']).isRequired,
|
|
24235
24576
|
created_at: PropTypes.string.isRequired,
|
|
@@ -24249,6 +24590,7 @@ T['io.flow.internal.v0.models.restriction_item'] = PropTypes.exact({
|
|
|
24249
24590
|
price: T['io.flow.common.v0.models.price'].isRequired,
|
|
24250
24591
|
hs_code: PropTypes.string,
|
|
24251
24592
|
hs_code_source: T['io.flow.internal.v0.enums.harmonization_decision_source'],
|
|
24593
|
+
classification_scope: T['io.flow.internal.v0.enums.classification_scope'],
|
|
24252
24594
|
description: PropTypes.string.isRequired,
|
|
24253
24595
|
category: PropTypes.string,
|
|
24254
24596
|
categories: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
@@ -24376,29 +24718,6 @@ T['io.flow.internal.v0.models.gift_card_authorization_error'] = PropTypes.exact(
|
|
|
24376
24718
|
gift_card_program: T['io.flow.internal.v0.models.gift_card_program'].isRequired,
|
|
24377
24719
|
});
|
|
24378
24720
|
|
|
24379
|
-
T['io.flow.order.price.v0.models.order_price_detail'] = PropTypes.exact({
|
|
24380
|
-
key: T['io.flow.order.price.v0.enums.order_price_detail_key'].isRequired,
|
|
24381
|
-
currency: PropTypes.string.isRequired,
|
|
24382
|
-
amount: PropTypes.number.isRequired,
|
|
24383
|
-
label: PropTypes.string.isRequired,
|
|
24384
|
-
base: T['io.flow.common.v0.models.price'].isRequired,
|
|
24385
|
-
components: PropTypes.arrayOf(T['io.flow.order.price.v0.models.order_price_detail_component']).isRequired,
|
|
24386
|
-
name: PropTypes.string,
|
|
24387
|
-
rate: PropTypes.number,
|
|
24388
|
-
accuracy: T['io.flow.price.v0.enums.price_accuracy'],
|
|
24389
|
-
rate_label: PropTypes.string,
|
|
24390
|
-
});
|
|
24391
|
-
|
|
24392
|
-
T['io.flow.internal.v0.models.debug_order'] = PropTypes.exact({
|
|
24393
|
-
organization_id: PropTypes.string.isRequired,
|
|
24394
|
-
number: PropTypes.string.isRequired,
|
|
24395
|
-
prices: PropTypes.arrayOf(T['io.flow.order.price.v0.models.order_price_detail']).isRequired,
|
|
24396
|
-
total: T['io.flow.common.v0.models.money_with_base'].isRequired,
|
|
24397
|
-
identifiers: PropTypes.objectOf(PropTypes.string),
|
|
24398
|
-
submitted_at: PropTypes.string,
|
|
24399
|
-
payment_source: T['io.flow.experience.v0.enums.order_payment_source_type'],
|
|
24400
|
-
});
|
|
24401
|
-
|
|
24402
24721
|
T['io.flow.internal.v0.models.components'] = PropTypes.exact({
|
|
24403
24722
|
vat: T['io.flow.common.v0.models.price'].isRequired,
|
|
24404
24723
|
duty: T['io.flow.common.v0.models.price'].isRequired,
|
|
@@ -24422,91 +24741,6 @@ T['io.flow.internal.v0.models.fees'] = PropTypes.exact({
|
|
|
24422
24741
|
sp: T['io.flow.internal.v0.models.fee'],
|
|
24423
24742
|
});
|
|
24424
24743
|
|
|
24425
|
-
T['io.flow.catalog.v0.models.localized_total'] = PropTypes.exact({
|
|
24426
|
-
key: PropTypes.oneOf(['localized_total']).isRequired,
|
|
24427
|
-
currency: PropTypes.string.isRequired,
|
|
24428
|
-
amount: PropTypes.number.isRequired,
|
|
24429
|
-
label: PropTypes.string.isRequired,
|
|
24430
|
-
base: T['io.flow.common.v0.models.price'].isRequired,
|
|
24431
|
-
});
|
|
24432
|
-
|
|
24433
|
-
T['io.flow.catalog.v0.unions.localized_price'] = PropTypes.oneOfType([
|
|
24434
|
-
T['io.flow.catalog.v0.models.localized_item_price'],
|
|
24435
|
-
T['io.flow.catalog.v0.models.localized_item_vat'],
|
|
24436
|
-
T['io.flow.catalog.v0.models.localized_item_duty'],
|
|
24437
|
-
T['io.flow.catalog.v0.models.localized_total'],
|
|
24438
|
-
]);
|
|
24439
|
-
|
|
24440
|
-
T['io.flow.fulfillment.v0.models.physical_delivery'] = PropTypes.exact({
|
|
24441
|
-
discriminator: PropTypes.oneOf(['physical_delivery']).isRequired,
|
|
24442
|
-
id: PropTypes.string.isRequired,
|
|
24443
|
-
key: PropTypes.string,
|
|
24444
|
-
center: T['io.flow.fulfillment.v0.models.center_summary'],
|
|
24445
|
-
fulfillment_routing: T['io.flow.fulfillment.v0.enums.fulfillment_routing'],
|
|
24446
|
-
ship_from_country: PropTypes.string,
|
|
24447
|
-
items: PropTypes.arrayOf(T['io.flow.fulfillment.v0.models.delivery_item']).isRequired,
|
|
24448
|
-
options: PropTypes.arrayOf(T['io.flow.fulfillment.v0.models.delivery_option']).isRequired,
|
|
24449
|
-
special_services: PropTypes.arrayOf(T['io.flow.fulfillment.v0.enums.physical_delivery_special_serivce']),
|
|
24450
|
-
prices: PropTypes.arrayOf(T['io.flow.order.price.v0.models.order_price_detail']),
|
|
24451
|
-
total: T['io.flow.catalog.v0.models.localized_total'],
|
|
24452
|
-
goods_supply: T['io.flow.common.v0.enums.goods_supply'],
|
|
24453
|
-
merchant_of_record_flow_entity: T['io.flow.merchant.of.record.v0.enums.flow_entity'],
|
|
24454
|
-
preferred_service: T['io.flow.fulfillment.v0.models.physical_delivery_preferred_service'],
|
|
24455
|
-
});
|
|
24456
|
-
|
|
24457
|
-
T['io.flow.fulfillment.v0.models.digital_delivery'] = PropTypes.exact({
|
|
24458
|
-
discriminator: PropTypes.oneOf(['digital_delivery']).isRequired,
|
|
24459
|
-
id: PropTypes.string.isRequired,
|
|
24460
|
-
key: PropTypes.string,
|
|
24461
|
-
items: PropTypes.arrayOf(T['io.flow.fulfillment.v0.models.delivery_item']).isRequired,
|
|
24462
|
-
prices: PropTypes.arrayOf(T['io.flow.order.price.v0.models.order_price_detail']),
|
|
24463
|
-
total: T['io.flow.catalog.v0.models.localized_total'],
|
|
24464
|
-
});
|
|
24465
|
-
|
|
24466
|
-
T['io.flow.fulfillment.v0.unions.delivery'] = PropTypes.oneOfType([
|
|
24467
|
-
T['io.flow.fulfillment.v0.models.digital_delivery'],
|
|
24468
|
-
T['io.flow.fulfillment.v0.models.physical_delivery'],
|
|
24469
|
-
]);
|
|
24470
|
-
|
|
24471
|
-
T['io.flow.fulfillment.v0.models.quote'] = PropTypes.exact({
|
|
24472
|
-
id: PropTypes.string.isRequired,
|
|
24473
|
-
destination: T['io.flow.fulfillment.v0.models.shipping_address'].isRequired,
|
|
24474
|
-
deliveries: PropTypes.arrayOf(T['io.flow.fulfillment.v0.unions.delivery']).isRequired,
|
|
24475
|
-
selections: PropTypes.arrayOf(T['io.flow.fulfillment.v0.models.delivery_option_reference']).isRequired,
|
|
24476
|
-
delivered_duty: T['io.flow.common.v0.enums.delivered_duty'].isRequired,
|
|
24477
|
-
delivered_duties: PropTypes.arrayOf(T['io.flow.common.v0.enums.delivered_duty']).isRequired,
|
|
24478
|
-
});
|
|
24479
|
-
|
|
24480
|
-
T['io.flow.internal.v0.models.order_rates_data_v3'] = PropTypes.exact({
|
|
24481
|
-
organization: PropTypes.string.isRequired,
|
|
24482
|
-
order_id: PropTypes.string.isRequired,
|
|
24483
|
-
order_number: PropTypes.string.isRequired,
|
|
24484
|
-
order_total: T['io.flow.catalog.v0.models.localized_total'].isRequired,
|
|
24485
|
-
rates: PropTypes.arrayOf(T['io.flow.internal.v0.models.rate_data_v3']).isRequired,
|
|
24486
|
-
});
|
|
24487
|
-
|
|
24488
|
-
T['io.flow.internal.v0.models.order_rates_published_v3'] = PropTypes.exact({
|
|
24489
|
-
discriminator: PropTypes.oneOf(['order_rates_published_v3']).isRequired,
|
|
24490
|
-
event_id: PropTypes.string.isRequired,
|
|
24491
|
-
timestamp: PropTypes.string.isRequired,
|
|
24492
|
-
organization: PropTypes.string.isRequired,
|
|
24493
|
-
data: T['io.flow.internal.v0.models.order_rates_data_v3'].isRequired,
|
|
24494
|
-
});
|
|
24495
|
-
|
|
24496
|
-
T['io.flow.internal.v0.models.channel_order'] = PropTypes.exact({
|
|
24497
|
-
org_id: PropTypes.string.isRequired,
|
|
24498
|
-
flow_order_number: PropTypes.string.isRequired,
|
|
24499
|
-
shopify_order_number: PropTypes.string.isRequired,
|
|
24500
|
-
order_submission_date: PropTypes.string,
|
|
24501
|
-
order_item_count: PropTypes.number.isRequired,
|
|
24502
|
-
total: T['io.flow.catalog.v0.models.localized_total'].isRequired,
|
|
24503
|
-
merchant_total: PropTypes.number.isRequired,
|
|
24504
|
-
tracking_numbers: PropTypes.arrayOf(PropTypes.string),
|
|
24505
|
-
carrier: T['io.flow.reference.v0.models.carrier_service'],
|
|
24506
|
-
duty_paid: PropTypes.bool.isRequired,
|
|
24507
|
-
shop_id: PropTypes.string,
|
|
24508
|
-
});
|
|
24509
|
-
|
|
24510
24744
|
T['io.flow.internal.v0.models.next_billing_statement'] = PropTypes.exact({
|
|
24511
24745
|
date: PropTypes.string.isRequired,
|
|
24512
24746
|
amount: T['io.flow.common.v0.models.price'].isRequired,
|
|
@@ -24656,6 +24890,169 @@ T['io.flow.experience.v0.models.order_payment'] = PropTypes.exact({
|
|
|
24656
24890
|
method: PropTypes.string,
|
|
24657
24891
|
});
|
|
24658
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
|
+
|
|
24659
25056
|
T['io.flow.catalog.v0.models.local'] = PropTypes.exact({
|
|
24660
25057
|
experience: T['io.flow.common.v0.models.experience_summary'].isRequired,
|
|
24661
25058
|
prices: PropTypes.arrayOf(T['io.flow.catalog.v0.unions.localized_price']).isRequired,
|
|
@@ -24721,9 +25118,102 @@ T['io.flow.internal.v0.models.item_filter_value_response'] = PropTypes.exact({
|
|
|
24721
25118
|
items: PropTypes.arrayOf(T['io.flow.catalog.v0.models.item']).isRequired,
|
|
24722
25119
|
});
|
|
24723
25120
|
|
|
24724
|
-
T['io.flow.internal.v0.models.item_filter_response'] = PropTypes.exact({
|
|
24725
|
-
filter: PropTypes.string.isRequired,
|
|
24726
|
-
responses: PropTypes.arrayOf(T['io.flow.internal.v0.models.item_filter_value_response']).isRequired,
|
|
25121
|
+
T['io.flow.internal.v0.models.item_filter_response'] = PropTypes.exact({
|
|
25122
|
+
filter: PropTypes.string.isRequired,
|
|
25123
|
+
responses: PropTypes.arrayOf(T['io.flow.internal.v0.models.item_filter_value_response']).isRequired,
|
|
25124
|
+
});
|
|
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,
|
|
24727
25217
|
});
|
|
24728
25218
|
|
|
24729
25219
|
T['io.flow.experience.v0.models.localized_line_item'] = PropTypes.exact({
|
|
@@ -24740,64 +25230,7 @@ T['io.flow.experience.v0.models.localized_line_item'] = PropTypes.exact({
|
|
|
24740
25230
|
local: T['io.flow.catalog.v0.models.local'].isRequired,
|
|
24741
25231
|
shipment_estimate: T['io.flow.common.v0.models.datetime_range'],
|
|
24742
25232
|
price_source: T['io.flow.common.v0.unions.price_source'],
|
|
24743
|
-
|
|
24744
|
-
|
|
24745
|
-
T['io.flow.internal.v0.models.channel_fulfillment'] = PropTypes.exact({
|
|
24746
|
-
org_id: PropTypes.string.isRequired,
|
|
24747
|
-
flow_order_number: PropTypes.string.isRequired,
|
|
24748
|
-
shopify_order_number: PropTypes.string.isRequired,
|
|
24749
|
-
legal_name: PropTypes.string,
|
|
24750
|
-
flow_tracking_status: T['io.flow.tracking.v0.enums.tracking_status'],
|
|
24751
|
-
order_items: PropTypes.arrayOf(T['io.flow.experience.v0.models.localized_line_item']).isRequired,
|
|
24752
|
-
label_items: PropTypes.arrayOf(T['io.flow.experience.v0.models.localized_line_item']).isRequired,
|
|
24753
|
-
carrier: T['io.flow.reference.v0.models.carrier_service'],
|
|
24754
|
-
tracking_numbers: PropTypes.arrayOf(PropTypes.string),
|
|
24755
|
-
});
|
|
24756
|
-
|
|
24757
|
-
T['io.flow.experience.v0.models.line'] = PropTypes.exact({
|
|
24758
|
-
id: PropTypes.string,
|
|
24759
|
-
item_number: PropTypes.string.isRequired,
|
|
24760
|
-
quantity: PropTypes.number.isRequired,
|
|
24761
|
-
price: T['io.flow.common.v0.models.price_with_base'].isRequired,
|
|
24762
|
-
total: T['io.flow.common.v0.models.price_with_base'].isRequired,
|
|
24763
|
-
attributes: PropTypes.objectOf(PropTypes.string),
|
|
24764
|
-
});
|
|
24765
|
-
|
|
24766
|
-
T['io.flow.experience.v0.models.experience_price_facet_conversion'] = PropTypes.exact({
|
|
24767
|
-
request: T['io.flow.experience.v0.models.experience_price_facet_conversion_request'].isRequired,
|
|
24768
|
-
price: T['io.flow.common.v0.models.price_with_base'].isRequired,
|
|
24769
|
-
});
|
|
24770
|
-
|
|
24771
|
-
T['io.flow.experience.v0.models.experience_price_facet_conversion_response'] = PropTypes.exact({
|
|
24772
|
-
facets: PropTypes.arrayOf(T['io.flow.experience.v0.models.experience_price_facet_conversion']).isRequired,
|
|
24773
|
-
});
|
|
24774
|
-
|
|
24775
|
-
T['io.flow.experience.v0.models.experience_price_conversion'] = PropTypes.exact({
|
|
24776
|
-
request: T['io.flow.experience.v0.models.experience_price_conversion_request'].isRequired,
|
|
24777
|
-
price: T['io.flow.common.v0.models.price_with_base'].isRequired,
|
|
24778
|
-
});
|
|
24779
|
-
|
|
24780
|
-
T['io.flow.experience.v0.models.experience_price_conversion_response'] = PropTypes.exact({
|
|
24781
|
-
prices: PropTypes.arrayOf(T['io.flow.experience.v0.models.experience_price_conversion']).isRequired,
|
|
24782
|
-
});
|
|
24783
|
-
|
|
24784
|
-
T['io.flow.experience.v0.models.discount'] = PropTypes.exact({
|
|
24785
|
-
discriminator: PropTypes.oneOf(['discount']).isRequired,
|
|
24786
|
-
id: PropTypes.string.isRequired,
|
|
24787
|
-
code: PropTypes.string,
|
|
24788
|
-
label: PropTypes.string.isRequired,
|
|
24789
|
-
price: T['io.flow.common.v0.models.price_with_base'].isRequired,
|
|
24790
|
-
attributes: PropTypes.objectOf(PropTypes.string),
|
|
24791
|
-
});
|
|
24792
|
-
|
|
24793
|
-
T['io.flow.experience.v0.unions.promotion'] = PropTypes.oneOfType([
|
|
24794
|
-
T['io.flow.experience.v0.models.free_shipping'],
|
|
24795
|
-
T['io.flow.experience.v0.models.discount'],
|
|
24796
|
-
]);
|
|
24797
|
-
|
|
24798
|
-
T['io.flow.experience.v0.models.promotions'] = PropTypes.exact({
|
|
24799
|
-
applied: PropTypes.arrayOf(T['io.flow.experience.v0.unions.promotion']).isRequired,
|
|
24800
|
-
available: PropTypes.arrayOf(T['io.flow.experience.v0.unions.promotion']).isRequired,
|
|
25233
|
+
breakdown: T['io.flow.order.price.v0.models.order_price_detail_breakdown'],
|
|
24801
25234
|
});
|
|
24802
25235
|
|
|
24803
25236
|
T['io.flow.experience.v0.models.order_estimate'] = PropTypes.exact({
|
|
@@ -24842,6 +25275,8 @@ T['io.flow.experience.v0.models.order'] = PropTypes.exact({
|
|
|
24842
25275
|
destination_contact_details: PropTypes.arrayOf(T['io.flow.experience.v0.models.destination_contact_detail']),
|
|
24843
25276
|
incoterm_summary: T['io.flow.experience.v0.models.incoterm_summary'],
|
|
24844
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']),
|
|
24845
25280
|
});
|
|
24846
25281
|
|
|
24847
25282
|
T['io.flow.experience.v0.models.order_version'] = PropTypes.exact({
|
|
@@ -24857,6 +25292,11 @@ T['io.flow.experience.v0.models.order_replacement'] = PropTypes.exact({
|
|
|
24857
25292
|
replacement_order: T['io.flow.experience.v0.models.order'].isRequired,
|
|
24858
25293
|
});
|
|
24859
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
|
+
|
|
24860
25300
|
T['io.flow.experience.v0.unions.expandable_order'] = PropTypes.oneOfType([
|
|
24861
25301
|
T['io.flow.experience.v0.models.order'],
|
|
24862
25302
|
T['io.flow.experience.v0.models.order_reference'],
|
|
@@ -24874,9 +25314,27 @@ T['io.flow.experience.v0.models.free_shipping_order_promotion'] = PropTypes.exac
|
|
|
24874
25314
|
|
|
24875
25315
|
T['io.flow.experience.v0.unions.order_promotion'] = PropTypes.oneOfType([T['io.flow.experience.v0.models.free_shipping_order_promotion']]);
|
|
24876
25316
|
|
|
24877
|
-
T['io.flow.experience.v0.models.
|
|
24878
|
-
|
|
24879
|
-
|
|
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,
|
|
24880
25338
|
});
|
|
24881
25339
|
|
|
24882
25340
|
T['io.flow.internal.v0.models.validated_shipping_data'] = PropTypes.exact({
|
|
@@ -24912,6 +25370,7 @@ T['io.flow.internal.v0.models.validated_shipping_data'] = PropTypes.exact({
|
|
|
24912
25370
|
provided_charges: PropTypes.arrayOf(T['io.flow.internal.v0.models.charge_input']),
|
|
24913
25371
|
direction: T['io.flow.label.v0.enums.direction'],
|
|
24914
25372
|
package_dimensions_source: T['io.flow.label.v0.enums.package_dimensions_source'].isRequired,
|
|
25373
|
+
shipping_date_time: PropTypes.string,
|
|
24915
25374
|
});
|
|
24916
25375
|
|
|
24917
25376
|
T['io.flow.internal.v0.models.submitted_order_upserted'] = PropTypes.exact({
|
|
@@ -24931,110 +25390,31 @@ T['io.flow.internal.v0.models.internal_order'] = PropTypes.exact({
|
|
|
24931
25390
|
discount: T['io.flow.common.v0.models.money'],
|
|
24932
25391
|
});
|
|
24933
25392
|
|
|
24934
|
-
T['io.flow.
|
|
24935
|
-
|
|
24936
|
-
|
|
24937
|
-
|
|
24938
|
-
|
|
24939
|
-
|
|
24940
|
-
|
|
24941
|
-
T['io.flow.experience.v0.models.
|
|
24942
|
-
|
|
24943
|
-
|
|
24944
|
-
key: PropTypes.string.isRequired,
|
|
24945
|
-
description: PropTypes.string.isRequired,
|
|
24946
|
-
value: T['io.flow.common.v0.models.price_with_base'].isRequired,
|
|
24947
|
-
original: T['io.flow.experience.v0.models.original_prices'].isRequired,
|
|
24948
|
-
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),
|
|
24949
25403
|
});
|
|
24950
25404
|
|
|
24951
|
-
T['io.flow.
|
|
25405
|
+
T['io.flow.internal.v0.models.order_refund_transaction'] = PropTypes.exact({
|
|
24952
25406
|
id: PropTypes.string.isRequired,
|
|
24953
|
-
|
|
24954
|
-
|
|
24955
|
-
credit_payment: T['io.flow.experience.v0.models.credit_payment'].isRequired,
|
|
24956
|
-
});
|
|
24957
|
-
|
|
24958
|
-
T['io.flow.experience.v0.models.allocation_levy_component'] = PropTypes.exact({
|
|
24959
|
-
discriminator: PropTypes.oneOf(['allocation_levy_component']).isRequired,
|
|
24960
|
-
key: T['io.flow.order.price.v0.enums.order_price_detail_component_key'].isRequired,
|
|
24961
|
-
total: T['io.flow.common.v0.models.price_with_base'].isRequired,
|
|
24962
|
-
rate: PropTypes.number.isRequired,
|
|
24963
|
-
name: PropTypes.string.isRequired,
|
|
24964
|
-
price: T['io.flow.common.v0.models.price_with_base'],
|
|
24965
|
-
accuracy: T['io.flow.price.v0.enums.price_accuracy'],
|
|
24966
|
-
basis: T['io.flow.common.v0.models.money_with_base'],
|
|
24967
|
-
});
|
|
24968
|
-
|
|
24969
|
-
T['io.flow.experience.v0.models.allocation_detail_component'] = PropTypes.exact({
|
|
24970
|
-
discriminator: PropTypes.oneOf(['allocation_detail_component']).isRequired,
|
|
24971
|
-
key: T['io.flow.order.price.v0.enums.order_price_detail_component_key'].isRequired,
|
|
24972
|
-
total: T['io.flow.common.v0.models.price_with_base'].isRequired,
|
|
24973
|
-
price: T['io.flow.common.v0.models.price_with_base'],
|
|
24974
|
-
});
|
|
24975
|
-
|
|
24976
|
-
T['io.flow.experience.v0.unions.allocation_component'] = PropTypes.oneOfType([
|
|
24977
|
-
T['io.flow.experience.v0.models.allocation_detail_component'],
|
|
24978
|
-
T['io.flow.experience.v0.models.allocation_levy_component'],
|
|
24979
|
-
]);
|
|
24980
|
-
|
|
24981
|
-
T['io.flow.experience.v0.models.allocation_order_detail'] = PropTypes.exact({
|
|
24982
|
-
discriminator: PropTypes.oneOf(['allocation_order_detail']).isRequired,
|
|
24983
|
-
key: T['io.flow.order.price.v0.enums.order_price_detail_key'].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.models.allocation_line_detail'] = PropTypes.exact({
|
|
24990
|
-
discriminator: PropTypes.oneOf(['allocation_line_detail']).isRequired,
|
|
24991
|
-
id: PropTypes.string,
|
|
24992
|
-
number: PropTypes.string.isRequired,
|
|
24993
|
-
quantity: PropTypes.number.isRequired,
|
|
24994
|
-
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,
|
|
24995
25409
|
price: T['io.flow.common.v0.models.price_with_base'].isRequired,
|
|
24996
|
-
total: T['io.flow.common.v0.models.price_with_base'].isRequired,
|
|
24997
|
-
included: PropTypes.arrayOf(T['io.flow.experience.v0.unions.allocation_component']).isRequired,
|
|
24998
|
-
not_included: PropTypes.arrayOf(T['io.flow.experience.v0.unions.allocation_component']).isRequired,
|
|
24999
|
-
});
|
|
25000
|
-
|
|
25001
|
-
T['io.flow.experience.v0.unions.allocation_detail'] = PropTypes.oneOfType([
|
|
25002
|
-
T['io.flow.experience.v0.models.allocation_line_detail'],
|
|
25003
|
-
T['io.flow.experience.v0.models.allocation_order_detail'],
|
|
25004
|
-
]);
|
|
25005
|
-
|
|
25006
|
-
T['io.flow.experience.v0.models.allocation'] = PropTypes.exact({
|
|
25007
|
-
order: T['io.flow.experience.v0.models.allocation_order_summary'].isRequired,
|
|
25008
|
-
details: PropTypes.arrayOf(T['io.flow.experience.v0.unions.allocation_detail']).isRequired,
|
|
25009
|
-
});
|
|
25010
|
-
|
|
25011
|
-
T['io.flow.experience.v0.models.allocation_v2'] = PropTypes.exact({
|
|
25012
|
-
id: PropTypes.string.isRequired,
|
|
25013
|
-
order: T['io.flow.experience.v0.models.allocation_order_summary'].isRequired,
|
|
25014
|
-
details: PropTypes.arrayOf(T['io.flow.experience.v0.unions.allocation_detail']).isRequired,
|
|
25015
|
-
total: T['io.flow.catalog.v0.models.localized_total'].isRequired,
|
|
25016
|
-
});
|
|
25017
|
-
|
|
25018
|
-
T['io.flow.order.management.v0.models.order_placed_details'] = PropTypes.exact({
|
|
25019
|
-
id: PropTypes.string.isRequired,
|
|
25020
|
-
order: T['io.flow.experience.v0.models.order'].isRequired,
|
|
25021
|
-
allocation: T['io.flow.experience.v0.models.allocation_v2'].isRequired,
|
|
25022
|
-
});
|
|
25023
|
-
|
|
25024
|
-
T['io.flow.internal.v0.models.debug_details'] = PropTypes.exact({
|
|
25025
|
-
labels: PropTypes.arrayOf(T['io.flow.internal.v0.models.debug_label']).isRequired,
|
|
25026
|
-
captures: PropTypes.arrayOf(T['io.flow.internal.v0.models.debug_payment_transaction_summary']).isRequired,
|
|
25027
|
-
refunds: PropTypes.arrayOf(T['io.flow.internal.v0.models.debug_payment_transaction_summary']).isRequired,
|
|
25028
|
-
allocation: T['io.flow.experience.v0.models.allocation_v2'].isRequired,
|
|
25029
|
-
adjustments: PropTypes.arrayOf(T['io.flow.internal.v0.models.debug_adjustment']).isRequired,
|
|
25030
25410
|
});
|
|
25031
25411
|
|
|
25032
|
-
T['io.flow.internal.v0.models.
|
|
25033
|
-
|
|
25034
|
-
|
|
25035
|
-
|
|
25036
|
-
|
|
25037
|
-
|
|
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,
|
|
25038
25418
|
});
|
|
25039
25419
|
|
|
25040
25420
|
T['io.flow.export.v0.models.export_localized_item_prices_detail'] = PropTypes.exact({
|
|
@@ -25108,6 +25488,23 @@ T['io.flow.internal.v0.models.ansh_item'] = PropTypes.exact({
|
|
|
25108
25488
|
added_on: PropTypes.string.isRequired,
|
|
25109
25489
|
});
|
|
25110
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
|
+
|
|
25111
25508
|
T['io.flow.internal.v0.models.aldo_item_form'] = PropTypes.exact({
|
|
25112
25509
|
number: PropTypes.string.isRequired,
|
|
25113
25510
|
amount: T['io.flow.common.v0.models.price'].isRequired,
|
|
@@ -26500,6 +26897,8 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
|
|
|
26500
26897
|
T['io.flow.internal.v0.models.rate_freshness_summary_deleted'],
|
|
26501
26898
|
T['io.flow.internal.v0.models.item_harmonization_upserted'],
|
|
26502
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'],
|
|
26503
26902
|
T['io.flow.internal.v0.models.harmonization_classification_statistics_published'],
|
|
26504
26903
|
T['io.flow.internal.v0.models.item_form_import_request'],
|
|
26505
26904
|
T['io.flow.internal.v0.models.label_request_error_upserted'],
|
|
@@ -26557,6 +26956,8 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
|
|
|
26557
26956
|
T['io.flow.internal.v0.models.authorization_bundle_deleted'],
|
|
26558
26957
|
T['io.flow.internal.v0.models.organization_payment_setting_upserted'],
|
|
26559
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'],
|
|
26560
26961
|
T['io.flow.internal.v0.models.paypal_payment_deleted'],
|
|
26561
26962
|
T['io.flow.internal.v0.models.paypal_payment_upserted'],
|
|
26562
26963
|
T['io.flow.internal.v0.models.paypal_execution_deleted'],
|
|
@@ -26608,6 +27009,10 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
|
|
|
26608
27009
|
T['io.flow.internal.v0.models.shopify_markets_webhook_registration_deleted'],
|
|
26609
27010
|
T['io.flow.internal.v0.models.shopify_markets_shop_statistics_upserted'],
|
|
26610
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'],
|
|
26611
27016
|
T['io.flow.internal.v0.models.shopify_markets_metrics_upserted'],
|
|
26612
27017
|
T['io.flow.internal.v0.models.shopify_markets_metrics_deleted'],
|
|
26613
27018
|
T['io.flow.internal.v0.models.channel_order_summary_upserted'],
|
|
@@ -27029,6 +27434,8 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
|
|
|
27029
27434
|
'rate_freshness_summary_deleted',
|
|
27030
27435
|
'item_harmonization_upserted',
|
|
27031
27436
|
'item_harmonization_deleted',
|
|
27437
|
+
'merchant_override_upserted',
|
|
27438
|
+
'merchant_override_deleted',
|
|
27032
27439
|
'harmonization_classification_statistics_published',
|
|
27033
27440
|
'item_form_import_request',
|
|
27034
27441
|
'label_request_error_upserted',
|
|
@@ -27086,6 +27493,8 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
|
|
|
27086
27493
|
'authorization_bundle_deleted',
|
|
27087
27494
|
'organization_payment_setting_upserted',
|
|
27088
27495
|
'organization_payment_setting_deleted',
|
|
27496
|
+
'order_refund_transaction_upserted',
|
|
27497
|
+
'order_refund_transaction_deleted',
|
|
27089
27498
|
'paypal_payment_deleted',
|
|
27090
27499
|
'paypal_payment_upserted',
|
|
27091
27500
|
'paypal_execution_deleted',
|
|
@@ -27137,6 +27546,10 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
|
|
|
27137
27546
|
'shopify_markets_webhook_registration_deleted',
|
|
27138
27547
|
'shopify_markets_shop_statistics_upserted',
|
|
27139
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',
|
|
27140
27553
|
'shopify_markets_metrics_upserted',
|
|
27141
27554
|
'shopify_markets_metrics_deleted',
|
|
27142
27555
|
'channel_order_summary_upserted',
|
|
@@ -27341,6 +27754,7 @@ T['io.flow.internal.v0.enums.shopify_markets_trade_sector'] = PropTypes.oneOf([
|
|
|
27341
27754
|
'other',
|
|
27342
27755
|
]);
|
|
27343
27756
|
|
|
27757
|
+
T['io.flow.internal.v0.enums.shopify_monitoring_monitor_review_status'] = PropTypes.oneOf(['in_review', 'reviewed']);
|
|
27344
27758
|
T['io.flow.internal.v0.enums.simple_rounding_strategy'] = PropTypes.oneOf(['no_rounding', 'currency_precision']);
|
|
27345
27759
|
|
|
27346
27760
|
T['io.flow.internal.v0.enums.statistic_type'] = PropTypes.oneOf([
|
|
@@ -27656,6 +28070,16 @@ T['io.flow.internal.v0.models.erp_vendor'] = PropTypes.exact({
|
|
|
27656
28070
|
placeholder: PropTypes.string,
|
|
27657
28071
|
});
|
|
27658
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
|
+
|
|
27659
28083
|
T['io.flow.internal.v0.models.feature_release_form'] = PropTypes.exact({
|
|
27660
28084
|
released_at: PropTypes.string,
|
|
27661
28085
|
});
|
|
@@ -27940,6 +28364,11 @@ T['io.flow.internal.v0.models.payment_organization_settings_put_form'] = PropTyp
|
|
|
27940
28364
|
payment_statement_suffix: PropTypes.string,
|
|
27941
28365
|
});
|
|
27942
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
|
+
|
|
27943
28372
|
T['io.flow.internal.v0.models.payout_status_counts'] = PropTypes.exact({
|
|
27944
28373
|
scheduled: PropTypes.number.isRequired,
|
|
27945
28374
|
sent: PropTypes.number.isRequired,
|
|
@@ -28154,6 +28583,24 @@ T['io.flow.internal.v0.models.shopify_stripe_event'] = PropTypes.exact({
|
|
|
28154
28583
|
request: PropTypes.object,
|
|
28155
28584
|
});
|
|
28156
28585
|
|
|
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,
|
|
28595
|
+
});
|
|
28596
|
+
|
|
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,
|
|
28602
|
+
});
|
|
28603
|
+
|
|
28157
28604
|
T['io.flow.internal.v0.models.tech_onboarding_description'] = PropTypes.exact({
|
|
28158
28605
|
description: PropTypes.string.isRequired,
|
|
28159
28606
|
});
|
|
@@ -28668,6 +29115,11 @@ T['io.flow.shopify.markets.internal.v0.models.markets_order_summary'] = PropType
|
|
|
28668
29115
|
id: PropTypes.string.isRequired,
|
|
28669
29116
|
});
|
|
28670
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
|
+
|
|
28671
29123
|
T['io.flow.shopify.markets.internal.v0.models.shipping_lane'] = PropTypes.exact({
|
|
28672
29124
|
origin: PropTypes.string.isRequired,
|
|
28673
29125
|
destination: PropTypes.string.isRequired,
|
|
@@ -29459,6 +29911,7 @@ export const accountType = T['io.flow.internal.v0.enums.account_type'];
|
|
|
29459
29911
|
export const accountUpserted = T['io.flow.internal.v0.models.account_upserted'];
|
|
29460
29912
|
export const accountUpsertedV2 = T['io.flow.internal.v0.models.account_upserted_v2'];
|
|
29461
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'];
|
|
29462
29915
|
export const actionQuantity = T['io.flow.internal.v0.models.action_quantity'];
|
|
29463
29916
|
export const additionalImportTax = T['io.flow.internal.v0.models.additional_import_tax'];
|
|
29464
29917
|
export const adjustmentAmount = T['io.flow.internal.v0.unions.adjustment_amount'];
|
|
@@ -29524,6 +29977,9 @@ export const allItemsExport = T['io.flow.internal.v0.models.all_items_export'];
|
|
|
29524
29977
|
export const allOrganizationsMembership = T['io.flow.internal.v0.models.all_organizations_membership'];
|
|
29525
29978
|
export const allocationItemReference = T['io.flow.internal.v0.models.allocation_item_reference'];
|
|
29526
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'];
|
|
29527
29983
|
export const anshItem = T['io.flow.internal.v0.models.ansh_item'];
|
|
29528
29984
|
export const anshItemForm = T['io.flow.internal.v0.models.ansh_item_form'];
|
|
29529
29985
|
export const anshItemType = T['io.flow.internal.v0.enums.ansh_item_type'];
|
|
@@ -29534,6 +29990,7 @@ export const applicablePreferentialRate = T['io.flow.internal.v0.enums.applicabl
|
|
|
29534
29990
|
export const applyAtValueForm = T['io.flow.internal.v0.models.apply_at_value_form'];
|
|
29535
29991
|
export const attemptStatistics = T['io.flow.internal.v0.models.attempt_statistics'];
|
|
29536
29992
|
export const attributeLabel = T['io.flow.internal.v0.models.attribute_label'];
|
|
29993
|
+
export const attributeRule = T['io.flow.internal.v0.models.attribute_rule'];
|
|
29537
29994
|
export const authenticationForm = T['io.flow.internal.v0.models.authentication_form'];
|
|
29538
29995
|
export const authorizationBundle = T['io.flow.internal.v0.models.authorization_bundle'];
|
|
29539
29996
|
export const authorizationBundleDeleted = T['io.flow.internal.v0.models.authorization_bundle_deleted'];
|
|
@@ -29570,6 +30027,7 @@ export const bankPaymentStatusSentImportForm = T['io.flow.internal.v0.models.ban
|
|
|
29570
30027
|
export const bankPaymentStatusSingleForm = T['io.flow.internal.v0.models.bank_payment_status_single_form'];
|
|
29571
30028
|
export const bankPaymentUpserted = T['io.flow.internal.v0.models.bank_payment_upserted'];
|
|
29572
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'];
|
|
29573
30031
|
export const billingAllocationKey = T['io.flow.internal.v0.enums.billing_allocation_key'];
|
|
29574
30032
|
export const billingAuthorizationReference = T['io.flow.internal.v0.models.billing_authorization_reference'];
|
|
29575
30033
|
export const billingCsvTransactionDeleted = T['io.flow.internal.v0.models.billing_csv_transaction_deleted'];
|
|
@@ -29643,11 +30101,15 @@ export const carrierChargeType = T['io.flow.internal.v0.enums.carrier_charge_typ
|
|
|
29643
30101
|
export const carrierChargeUnits = T['io.flow.internal.v0.models.carrier_charge_units'];
|
|
29644
30102
|
export const carrierChargeUpserted = T['io.flow.internal.v0.models.carrier_charge_upserted'];
|
|
29645
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'];
|
|
29646
30107
|
export const carrierFile = T['io.flow.internal.v0.models.carrier_file'];
|
|
29647
30108
|
export const carrierFileForm = T['io.flow.internal.v0.models.carrier_file_form'];
|
|
29648
30109
|
export const carrierFileResult = T['io.flow.internal.v0.models.carrier_file_result'];
|
|
29649
30110
|
export const carrierFileType = T['io.flow.internal.v0.enums.carrier_file_type'];
|
|
29650
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'];
|
|
29651
30113
|
export const carrierLabelGenerationMethod = T['io.flow.internal.v0.enums.carrier_label_generation_method'];
|
|
29652
30114
|
export const carrierTaxForm = T['io.flow.internal.v0.models.carrier_tax_form'];
|
|
29653
30115
|
export const carrierTaxUnits = T['io.flow.internal.v0.models.carrier_tax_units'];
|
|
@@ -29717,6 +30179,10 @@ export const channelOrderSummaryUpserted = T['io.flow.internal.v0.models.channel
|
|
|
29717
30179
|
export const channelOrganizationIdentifier = T['io.flow.internal.v0.models.channel_organization_identifier'];
|
|
29718
30180
|
export const channelOrganizationIdentifierDeleted = T['io.flow.internal.v0.models.channel_organization_identifier_deleted'];
|
|
29719
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'];
|
|
29720
30186
|
export const channelOrganizationShopify = T['io.flow.internal.v0.models.channel_organization_shopify'];
|
|
29721
30187
|
export const channelOrganizationShopifyForm = T['io.flow.internal.v0.models.channel_organization_shopify_form'];
|
|
29722
30188
|
export const channelOrganizationShopifyPostForm = T['io.flow.internal.v0.models.channel_organization_shopify_post_form'];
|
|
@@ -29728,6 +30194,8 @@ export const channelTransactionDeleted = T['io.flow.internal.v0.models.channel_t
|
|
|
29728
30194
|
export const channelTransactionRate = T['io.flow.internal.v0.models.channel_transaction_rate'];
|
|
29729
30195
|
export const channelTransactionType = T['io.flow.internal.v0.enums.channel_transaction_type'];
|
|
29730
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'];
|
|
29731
30199
|
export const chargeEstimateSource = T['io.flow.internal.v0.enums.charge_estimate_source'];
|
|
29732
30200
|
export const chargeInput = T['io.flow.internal.v0.models.charge_input'];
|
|
29733
30201
|
export const chargeInputType = T['io.flow.internal.v0.enums.charge_input_type'];
|
|
@@ -29872,6 +30340,7 @@ export const deliveredDutyOptionsMessage = T['io.flow.internal.v0.models.deliver
|
|
|
29872
30340
|
export const deliveredDutyPreference = T['io.flow.internal.v0.models.delivered_duty_preference'];
|
|
29873
30341
|
export const deliveredDutyPreferenceForm = T['io.flow.internal.v0.models.delivered_duty_preference_form'];
|
|
29874
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'];
|
|
29875
30344
|
export const destinationError = T['io.flow.internal.v0.models.destination_error'];
|
|
29876
30345
|
export const dhl = T['io.flow.internal.v0.models.dhl'];
|
|
29877
30346
|
export const dhlEcommerce = T['io.flow.internal.v0.models.dhl_ecommerce'];
|
|
@@ -29937,6 +30406,8 @@ export const dutyTransaction = T['io.flow.internal.v0.models.duty_transaction'];
|
|
|
29937
30406
|
export const dutyTransactionDeleted = T['io.flow.internal.v0.models.duty_transaction_deleted'];
|
|
29938
30407
|
export const dutyTransactionType = T['io.flow.internal.v0.enums.duty_transaction_type'];
|
|
29939
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'];
|
|
29940
30411
|
export const emailForm = T['io.flow.internal.v0.models.email_form'];
|
|
29941
30412
|
export const emailModificationForm = T['io.flow.internal.v0.models.email_modification_form'];
|
|
29942
30413
|
export const emptyAttribute = T['io.flow.internal.v0.enums.empty_attribute'];
|
|
@@ -29959,6 +30430,7 @@ export const erpVendorStatus = T['io.flow.internal.v0.models.erp_vendor_status']
|
|
|
29959
30430
|
export const erpVendorStatusEntity = T['io.flow.internal.v0.models.erp_vendor_status_entity'];
|
|
29960
30431
|
export const erpVendorStatusFlowFile = T['io.flow.internal.v0.models.erp_vendor_status_flow_file'];
|
|
29961
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'];
|
|
29962
30434
|
export const evaluationResults = T['io.flow.internal.v0.models.evaluation_results'];
|
|
29963
30435
|
export const event = T['io.flow.internal.v0.unions.event'];
|
|
29964
30436
|
export const eventType = T['io.flow.internal.v0.enums.event_type'];
|
|
@@ -29988,6 +30460,8 @@ export const externalFulfillmentProof = T['io.flow.internal.v0.models.external_f
|
|
|
29988
30460
|
export const externalFulfillmentProofForm = T['io.flow.internal.v0.models.external_fulfillment_proof_form'];
|
|
29989
30461
|
export const externalFulfillmentProofTracking = T['io.flow.internal.v0.models.external_fulfillment_proof_tracking'];
|
|
29990
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'];
|
|
29991
30465
|
export const facebookPixel = T['io.flow.internal.v0.models.facebook_pixel'];
|
|
29992
30466
|
export const failedDimensionEstimateOpsInputWithReason = T['io.flow.internal.v0.models.failed_dimension_estimate_ops_input_with_reason'];
|
|
29993
30467
|
export const feature = T['io.flow.internal.v0.models.feature'];
|
|
@@ -30014,10 +30488,12 @@ export const featureValueForm = T['io.flow.internal.v0.models.feature_value_form
|
|
|
30014
30488
|
export const featureValueResult = T['io.flow.internal.v0.models.feature_value_result'];
|
|
30015
30489
|
export const fedex = T['io.flow.internal.v0.models.fedex'];
|
|
30016
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'];
|
|
30017
30492
|
export const fedexCrossborder = T['io.flow.internal.v0.models.fedex_crossborder'];
|
|
30018
30493
|
export const fee = T['io.flow.internal.v0.models.fee'];
|
|
30019
30494
|
export const fees = T['io.flow.internal.v0.models.fees'];
|
|
30020
30495
|
export const feesSource = T['io.flow.internal.v0.enums.fees_source'];
|
|
30496
|
+
export const fileType = T['io.flow.internal.v0.enums.file_type'];
|
|
30021
30497
|
export const financeBankAccount = T['io.flow.internal.v0.models.finance_bank_account'];
|
|
30022
30498
|
export const financeBankAccountOwner = T['io.flow.internal.v0.models.finance_bank_account_owner'];
|
|
30023
30499
|
export const financeBankPayment = T['io.flow.internal.v0.models.finance_bank_payment'];
|
|
@@ -30224,6 +30700,7 @@ export const journalFailure = T['io.flow.internal.v0.models.journal_failure'];
|
|
|
30224
30700
|
export const journalOperation = T['io.flow.internal.v0.enums.journal_operation'];
|
|
30225
30701
|
export const key = T['io.flow.internal.v0.models.key'];
|
|
30226
30702
|
export const keyReference = T['io.flow.internal.v0.models.key_reference'];
|
|
30703
|
+
export const keywordCancelling = T['io.flow.internal.v0.models.keyword_cancelling'];
|
|
30227
30704
|
export const keywordType = T['io.flow.internal.v0.enums.keyword_type'];
|
|
30228
30705
|
export const klarnaAuthorizationParameters = T['io.flow.internal.v0.models.klarna_authorization_parameters'];
|
|
30229
30706
|
export const klarnaPaymentMethodCategory = T['io.flow.internal.v0.models.klarna_payment_method_category'];
|
|
@@ -30334,7 +30811,9 @@ export const merchantOfRecordEntitySettings = T['io.flow.internal.v0.models.merc
|
|
|
30334
30811
|
export const merchantOfRecordEntitySettingsForm = T['io.flow.internal.v0.models.merchant_of_record_entity_settings_form'];
|
|
30335
30812
|
export const merchantOverride = T['io.flow.internal.v0.models.merchant_override'];
|
|
30336
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'];
|
|
30337
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'];
|
|
30338
30817
|
export const merchantSearchResult = T['io.flow.internal.v0.models.merchant_search_result'];
|
|
30339
30818
|
export const merchantSubsidies = T['io.flow.internal.v0.models.merchant_subsidies'];
|
|
30340
30819
|
export const merchantSummary = T['io.flow.internal.v0.models.merchant_summary'];
|
|
@@ -30354,6 +30833,7 @@ export const noCalculatedTaxAmount = T['io.flow.internal.v0.models.no_calculated
|
|
|
30354
30833
|
export const noClassificationForm = T['io.flow.internal.v0.models.no_classification_form'];
|
|
30355
30834
|
export const noLiabilityReasonCode = T['io.flow.internal.v0.enums.no_liability_reason_code'];
|
|
30356
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'];
|
|
30357
30837
|
export const nonL4LTaxDutyFxTransaction = T['io.flow.internal.v0.models.non_l4l_tax_duty_fx_transaction'];
|
|
30358
30838
|
export const nonL4LTaxDutyFxTransactionType = T['io.flow.internal.v0.enums.non_l4l_tax_duty_fx_transaction_type'];
|
|
30359
30839
|
export const notification = T['io.flow.internal.v0.models.notification'];
|
|
@@ -30362,7 +30842,6 @@ export const onboardingAuditMessageLevel = T['io.flow.internal.v0.enums.onboardi
|
|
|
30362
30842
|
export const onboardingAuditReport = T['io.flow.internal.v0.models.onboarding_audit_report'];
|
|
30363
30843
|
export const onboardingAuditReportLine = T['io.flow.internal.v0.models.onboarding_audit_report_line'];
|
|
30364
30844
|
export const onboardingAuditResult = T['io.flow.internal.v0.enums.onboarding_audit_result'];
|
|
30365
|
-
export const onboardingAuditSnapshot = T['io.flow.internal.v0.models.onboarding_audit_snapshot'];
|
|
30366
30845
|
export const onboardingAuditThemeKey = T['io.flow.internal.v0.enums.onboarding_audit_theme_key'];
|
|
30367
30846
|
export const onboardingAuditThemeReport = T['io.flow.internal.v0.models.onboarding_audit_theme_report'];
|
|
30368
30847
|
export const onboardingAutomationProcessState = T['io.flow.internal.v0.enums.onboarding_automation_process_state'];
|
|
@@ -30405,6 +30884,9 @@ export const orderPaymentSourceType = T['io.flow.internal.v0.enums.order_payment
|
|
|
30405
30884
|
export const orderRatesDataV3 = T['io.flow.internal.v0.models.order_rates_data_v3'];
|
|
30406
30885
|
export const orderRatesPublishedV3 = T['io.flow.internal.v0.models.order_rates_published_v3'];
|
|
30407
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'];
|
|
30408
30890
|
export const orderRevenueRegionChart = T['io.flow.internal.v0.models.order_revenue_region_chart'];
|
|
30409
30891
|
export const orderRevenueRegionDataPoint = T['io.flow.internal.v0.models.order_revenue_region_data_point'];
|
|
30410
30892
|
export const orderRevenueTimelineChart = T['io.flow.internal.v0.models.order_revenue_timeline_chart'];
|
|
@@ -30539,6 +31021,7 @@ export const paymentProcessorAccountUpserted = T['io.flow.internal.v0.models.pay
|
|
|
30539
31021
|
export const paymentProcessorMerchantDeleted = T['io.flow.internal.v0.models.payment_processor_merchant_deleted'];
|
|
30540
31022
|
export const paymentProcessorMerchantUpserted = T['io.flow.internal.v0.models.payment_processor_merchant_upserted'];
|
|
30541
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'];
|
|
30542
31025
|
export const paymentShortUrl = T['io.flow.internal.v0.models.payment_short_url'];
|
|
30543
31026
|
export const paymentShortUrlDiscriminator = T['io.flow.internal.v0.enums.payment_short_url_discriminator'];
|
|
30544
31027
|
export const paymentSummary = T['io.flow.internal.v0.models.payment_summary'];
|
|
@@ -30770,6 +31253,14 @@ export const requeueRequestForm = T['io.flow.internal.v0.models.requeue_request_
|
|
|
30770
31253
|
export const rescreenRestrictionsProducts = T['io.flow.internal.v0.models.rescreen_restrictions_products'];
|
|
30771
31254
|
export const responsibleParty = T['io.flow.internal.v0.enums.responsible_party'];
|
|
30772
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'];
|
|
30773
31264
|
export const restrictionBlanketOrganizationExemption = T['io.flow.internal.v0.models.restriction_blanket_organization_exemption'];
|
|
30774
31265
|
export const restrictionCategory = T['io.flow.internal.v0.models.restriction_category'];
|
|
30775
31266
|
export const restrictionDecision = T['io.flow.internal.v0.enums.restriction_decision'];
|
|
@@ -30794,6 +31285,7 @@ export const restrictionProductDecisionForm = T['io.flow.internal.v0.models.rest
|
|
|
30794
31285
|
export const restrictionProductRequestForm = T['io.flow.internal.v0.models.restriction_product_request_form'];
|
|
30795
31286
|
export const restrictionProductSummary = T['io.flow.internal.v0.models.restriction_product_summary'];
|
|
30796
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'];
|
|
30797
31289
|
export const restrictionRuleCommunityExemption = T['io.flow.internal.v0.enums.restriction_rule_community_exemption'];
|
|
30798
31290
|
export const restrictionRuleDecisionForm = T['io.flow.internal.v0.models.restriction_rule_decision_form'];
|
|
30799
31291
|
export const restrictionRuleDeleted = T['io.flow.internal.v0.models.restriction_rule_deleted'];
|
|
@@ -30826,6 +31318,7 @@ export const returnPolicyUpserted = T['io.flow.internal.v0.models.return_policy_
|
|
|
30826
31318
|
export const returnSummary = T['io.flow.internal.v0.models.return_summary'];
|
|
30827
31319
|
export const returnTrigger = T['io.flow.internal.v0.unions.return_trigger'];
|
|
30828
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'];
|
|
30829
31322
|
export const revenueRecord = T['io.flow.internal.v0.models.revenue_record'];
|
|
30830
31323
|
export const revenueRecordDeleted = T['io.flow.internal.v0.models.revenue_record_deleted'];
|
|
30831
31324
|
export const revenueRecordType = T['io.flow.internal.v0.enums.revenue_record_type'];
|
|
@@ -30858,6 +31351,9 @@ export const searchItemSummary = T['io.flow.internal.v0.models.search_item_summa
|
|
|
30858
31351
|
export const searchOrderSummary = T['io.flow.internal.v0.models.search_order_summary'];
|
|
30859
31352
|
export const searchProviderExport = T['io.flow.internal.v0.models.search_provider_export'];
|
|
30860
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'];
|
|
30861
31357
|
export const sessionOrderData = T['io.flow.internal.v0.models.session_order_data'];
|
|
30862
31358
|
export const setupBlockPutForm = T['io.flow.internal.v0.models.setup_block_put_form'];
|
|
30863
31359
|
export const sfExpress = T['io.flow.internal.v0.models.sf_express'];
|
|
@@ -30931,7 +31427,6 @@ export const shopifyMonitoringMonitorReviewStatus = T['io.flow.internal.v0.enums
|
|
|
30931
31427
|
export const shopifyMonitoringOrderMonitor = T['io.flow.internal.v0.models.shopify_monitoring_order_monitor'];
|
|
30932
31428
|
export const shopifyMonitoringOrderMonitorEventDeleted = T['io.flow.internal.v0.models.shopify_monitoring_order_monitor_event_deleted'];
|
|
30933
31429
|
export const shopifyMonitoringOrderMonitorEventUpserted = T['io.flow.internal.v0.models.shopify_monitoring_order_monitor_event_upserted'];
|
|
30934
|
-
export const shopifyMonitoringOrderMonitorReview = T['io.flow.internal.v0.models.shopify_monitoring_order_monitor_review'];
|
|
30935
31430
|
export const shopifyMonitoringOrderMonitorType = T['io.flow.internal.v0.unions.shopify_monitoring_order_monitor_type'];
|
|
30936
31431
|
export const shopifyMonitoringTrackingField = T['io.flow.internal.v0.enums.shopify_monitoring_tracking_field'];
|
|
30937
31432
|
export const shopifyMonitoringTrackingNumber = T['io.flow.internal.v0.models.shopify_monitoring_tracking_number'];
|
|
@@ -30961,6 +31456,12 @@ export const shopifyProductCreateWebhookEvent = T['io.flow.internal.v0.models.sh
|
|
|
30961
31456
|
export const shopifyProductDeleteDeleted = T['io.flow.internal.v0.models.shopify_product_delete_deleted'];
|
|
30962
31457
|
export const shopifyProductDeleteUpserted = T['io.flow.internal.v0.models.shopify_product_delete_upserted'];
|
|
30963
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'];
|
|
30964
31465
|
export const shopifyProductUpdateDeleted = T['io.flow.internal.v0.models.shopify_product_update_deleted'];
|
|
30965
31466
|
export const shopifyProductUpdateUpserted = T['io.flow.internal.v0.models.shopify_product_update_upserted'];
|
|
30966
31467
|
export const shopifyProductUpdateWebhookEvent = T['io.flow.internal.v0.models.shopify_product_update_webhook_event'];
|
|
@@ -30971,6 +31472,8 @@ export const shopifyService = T['io.flow.internal.v0.enums.shopify_service'];
|
|
|
30971
31472
|
export const shopifyShopStatistics = T['io.flow.internal.v0.models.shopify_shop_statistics'];
|
|
30972
31473
|
export const shopifyStoreDetail = T['io.flow.internal.v0.models.shopify_store_detail'];
|
|
30973
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'];
|
|
30974
31477
|
export const shopperBreakdown = T['io.flow.internal.v0.models.shopper_breakdown'];
|
|
30975
31478
|
export const shopperFees = T['io.flow.internal.v0.models.shopper_fees'];
|
|
30976
31479
|
export const shopperFreight = T['io.flow.internal.v0.models.shopper_freight'];
|
|
@@ -31077,6 +31580,7 @@ export const taxTransaction = T['io.flow.internal.v0.models.tax_transaction'];
|
|
|
31077
31580
|
export const taxTransactionDeleted = T['io.flow.internal.v0.models.tax_transaction_deleted'];
|
|
31078
31581
|
export const taxTransactionType = T['io.flow.internal.v0.enums.tax_transaction_type'];
|
|
31079
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'];
|
|
31080
31584
|
export const taxonomyCategory = PropTypes.any;
|
|
31081
31585
|
export const taxonomyCategoryClassificationAlignment = T['io.flow.internal.v0.enums.taxonomy_category_classification_alignment'];
|
|
31082
31586
|
export const taxonomyCategoryHs6Ref = T['io.flow.internal.v0.models.taxonomy_category_hs6_ref'];
|