@flowio/api-internal-prop-types 9.24.122 → 9.24.124
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 +475 -29
- package/lib/api-internal.js +1 -1
- package/package.json +2 -2
- package/src/api-internal.d.ts +475 -29
- package/src/api-internal.js +1161 -657
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,
|
|
@@ -4544,26 +4614,6 @@ T['io.flow.external.paypal.v1.models.paypal_dispute_event'] = PropTypes.exact({
|
|
|
4544
4614
|
resource: T['io.flow.external.paypal.v1.models.dispute'].isRequired,
|
|
4545
4615
|
});
|
|
4546
4616
|
|
|
4547
|
-
T['io.flow.label.v0.enums.shipping_label_error_code'] = PropTypes.oneOf([
|
|
4548
|
-
'generic_error',
|
|
4549
|
-
'cancelled_order',
|
|
4550
|
-
'carrier_outage',
|
|
4551
|
-
'catalog_issue',
|
|
4552
|
-
'invalid_destination',
|
|
4553
|
-
'invalid_origin',
|
|
4554
|
-
'invalid_shipping_parameters',
|
|
4555
|
-
'merchant_error',
|
|
4556
|
-
'order_not_found',
|
|
4557
|
-
'order_processing',
|
|
4558
|
-
'restricted_item',
|
|
4559
|
-
'unsupported_lane',
|
|
4560
|
-
]);
|
|
4561
|
-
|
|
4562
|
-
T['io.flow.label.v0.models.shipping_label_error'] = PropTypes.exact({
|
|
4563
|
-
code: T['io.flow.label.v0.enums.shipping_label_error_code'].isRequired,
|
|
4564
|
-
messages: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
4565
|
-
});
|
|
4566
|
-
|
|
4567
4617
|
T['io.flow.label.v0.models.shipping_label_summary'] = PropTypes.exact({
|
|
4568
4618
|
id: PropTypes.string.isRequired,
|
|
4569
4619
|
flow_tracking_number: PropTypes.string.isRequired,
|
|
@@ -7963,6 +8013,26 @@ T['io.flow.google.pay.v0.models.encrypted_message'] = PropTypes.exact({
|
|
|
7963
8013
|
paymentMethodDetails: T['io.flow.google.pay.v0.models.payment_method_details'].isRequired,
|
|
7964
8014
|
});
|
|
7965
8015
|
|
|
8016
|
+
T['io.flow.label.v0.enums.shipping_label_error_code'] = PropTypes.oneOf([
|
|
8017
|
+
'generic_error',
|
|
8018
|
+
'cancelled_order',
|
|
8019
|
+
'carrier_outage',
|
|
8020
|
+
'catalog_issue',
|
|
8021
|
+
'invalid_destination',
|
|
8022
|
+
'invalid_origin',
|
|
8023
|
+
'invalid_shipping_parameters',
|
|
8024
|
+
'merchant_error',
|
|
8025
|
+
'order_not_found',
|
|
8026
|
+
'order_processing',
|
|
8027
|
+
'restricted_item',
|
|
8028
|
+
'unsupported_lane',
|
|
8029
|
+
]);
|
|
8030
|
+
|
|
8031
|
+
T['io.flow.label.v0.models.shipping_label_error'] = PropTypes.exact({
|
|
8032
|
+
code: T['io.flow.label.v0.enums.shipping_label_error_code'].isRequired,
|
|
8033
|
+
messages: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
8034
|
+
});
|
|
8035
|
+
|
|
7966
8036
|
T['io.flow.ratecard.v0.models.ratecard_service_summary'] = PropTypes.exact({
|
|
7967
8037
|
id: PropTypes.string.isRequired,
|
|
7968
8038
|
name: PropTypes.string.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,8 +9479,16 @@ 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
|
|
|
9400
|
-
T['io.flow.internal.v0.models.
|
|
9401
|
-
discriminator: PropTypes.oneOf(['
|
|
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
|
+
|
|
9490
|
+
T['io.flow.internal.v0.models.message_stamp'] = PropTypes.exact({
|
|
9491
|
+
discriminator: PropTypes.oneOf(['message_stamp']).isRequired,
|
|
9402
9492
|
message: PropTypes.string.isRequired,
|
|
9403
9493
|
});
|
|
9404
9494
|
|
|
@@ -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,6 +10828,13 @@ T['io.flow.internal.v0.models.setup_block_put_form'] = PropTypes.exact({
|
|
|
10723
10828
|
).isRequired,
|
|
10724
10829
|
});
|
|
10725
10830
|
|
|
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
|
+
|
|
10726
10838
|
T['io.flow.experience.v0.enums.experience_status'] = PropTypes.oneOf(['draft', 'active', 'archiving', 'archived']);
|
|
10727
10839
|
|
|
10728
10840
|
T['io.flow.experience.v0.models.experience_status_form'] = PropTypes.exact({
|
|
@@ -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({
|
|
@@ -11016,19 +11108,25 @@ T['io.flow.internal.v0.models.restriction_rule_organization_exemption'] = PropTy
|
|
|
11016
11108
|
organization_id: PropTypes.string.isRequired,
|
|
11017
11109
|
rule_id: PropTypes.string.isRequired,
|
|
11018
11110
|
description: PropTypes.string.isRequired,
|
|
11019
|
-
is_rule_exempt: PropTypes.bool.isRequired,
|
|
11020
11111
|
exempt_regions: PropTypes.arrayOf(PropTypes.string),
|
|
11021
11112
|
ignored_keywords: PropTypes.arrayOf(PropTypes.string),
|
|
11022
11113
|
additional_keywords: PropTypes.arrayOf(PropTypes.string),
|
|
11023
11114
|
community_exemption_override: PropTypes.arrayOf(T['io.flow.internal.v0.enums.restriction_rule_community_exemption']),
|
|
11115
|
+
is_rule_active: PropTypes.bool,
|
|
11024
11116
|
});
|
|
11025
11117
|
|
|
11026
11118
|
T['io.flow.internal.v0.enums.restriction_organization_source'] = PropTypes.oneOf(['shopify', 'enterprise']);
|
|
11027
11119
|
T['io.flow.internal.v0.enums.restriction_action'] = PropTypes.oneOf(['prohibited', 'restricted']);
|
|
11028
11120
|
|
|
11121
|
+
T['io.flow.product.v0.models.product_taxonomy_value'] = PropTypes.exact({
|
|
11122
|
+
handle: PropTypes.string.isRequired,
|
|
11123
|
+
name: PropTypes.string.isRequired,
|
|
11124
|
+
});
|
|
11125
|
+
|
|
11029
11126
|
T['io.flow.product.v0.models.product_taxonomy_data'] = PropTypes.exact({
|
|
11030
11127
|
key: PropTypes.string.isRequired,
|
|
11031
11128
|
value: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
11129
|
+
value_obj: PropTypes.arrayOf(T['io.flow.product.v0.models.product_taxonomy_value']),
|
|
11032
11130
|
});
|
|
11033
11131
|
|
|
11034
11132
|
T['io.flow.product.v0.models.product_taxonomy_category'] = PropTypes.exact({
|
|
@@ -11140,6 +11238,24 @@ T['io.flow.internal.v0.models.restriction_item_review_decision_form'] = PropType
|
|
|
11140
11238
|
decision: T['io.flow.internal.v0.enums.restriction_decision'].isRequired,
|
|
11141
11239
|
});
|
|
11142
11240
|
|
|
11241
|
+
T['io.flow.internal.v0.enums.restriction_attribute_condition_single_operator'] = PropTypes.oneOf(['equals', 'not_equals']);
|
|
11242
|
+
|
|
11243
|
+
T['io.flow.internal.v0.models.restriction_attribute_condition_single'] = PropTypes.exact({
|
|
11244
|
+
discriminator: PropTypes.oneOf(['single']).isRequired,
|
|
11245
|
+
attribute: PropTypes.string.isRequired,
|
|
11246
|
+
operator: T['io.flow.internal.v0.enums.restriction_attribute_condition_single_operator'].isRequired,
|
|
11247
|
+
value: PropTypes.string.isRequired,
|
|
11248
|
+
});
|
|
11249
|
+
|
|
11250
|
+
T['io.flow.internal.v0.enums.restriction_attribute_condition_multiple_operator'] = PropTypes.oneOf(['in', 'not_in']);
|
|
11251
|
+
|
|
11252
|
+
T['io.flow.internal.v0.models.restriction_attribute_condition_multiple'] = PropTypes.exact({
|
|
11253
|
+
discriminator: PropTypes.oneOf(['multiple']).isRequired,
|
|
11254
|
+
attribute: PropTypes.string.isRequired,
|
|
11255
|
+
operator: T['io.flow.internal.v0.enums.restriction_attribute_condition_multiple_operator'].isRequired,
|
|
11256
|
+
values: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
11257
|
+
});
|
|
11258
|
+
|
|
11143
11259
|
T['io.flow.internal.v0.models.reporting_vat_remittance_rate'] = PropTypes.exact({
|
|
11144
11260
|
entity: PropTypes.number.isRequired,
|
|
11145
11261
|
});
|
|
@@ -11571,49 +11687,6 @@ T['io.flow.internal.v0.models.restriction_rule_effect_upserted'] = PropTypes.exa
|
|
|
11571
11687
|
restriction_rule_effect: T['io.flow.internal.v0.models.restriction_rule_effect'].isRequired,
|
|
11572
11688
|
});
|
|
11573
11689
|
|
|
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
11690
|
T['io.flow.internal.v0.models.restriction_keywords'] = PropTypes.exact({
|
|
11618
11691
|
positive_keywords: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
11619
11692
|
negative_keywords: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
@@ -11637,6 +11710,7 @@ T['io.flow.internal.v0.models.product_restriction_state'] = PropTypes.exact({
|
|
|
11637
11710
|
pending_classification_count: PropTypes.number,
|
|
11638
11711
|
oldest_pending_restriction_date: PropTypes.string,
|
|
11639
11712
|
oldest_pending_verification_date: PropTypes.string,
|
|
11713
|
+
oldest_pending_classification_date: PropTypes.string,
|
|
11640
11714
|
});
|
|
11641
11715
|
|
|
11642
11716
|
T['io.flow.internal.v0.models.product_restriction_state_updated'] = PropTypes.exact({
|
|
@@ -12209,6 +12283,7 @@ T['io.flow.internal.v0.models.organization_metadata'] = PropTypes.exact({
|
|
|
12209
12283
|
pending_classification_count: PropTypes.number,
|
|
12210
12284
|
oldest_pending_restriction_date: PropTypes.string,
|
|
12211
12285
|
oldest_pending_verification_date: PropTypes.string,
|
|
12286
|
+
oldest_pending_classification_date: PropTypes.string,
|
|
12212
12287
|
product_count: PropTypes.number.isRequired,
|
|
12213
12288
|
restricted_product_count: PropTypes.number.isRequired,
|
|
12214
12289
|
last_order_submitted_at: PropTypes.string,
|
|
@@ -12316,6 +12391,23 @@ T['io.flow.internal.v0.models.order_tax_and_duty_inclusivity_setting_upserted']
|
|
|
12316
12391
|
order_tax_and_duty_inclusivity_setting: T['io.flow.internal.v0.models.order_tax_and_duty_inclusivity_setting'].isRequired,
|
|
12317
12392
|
});
|
|
12318
12393
|
|
|
12394
|
+
T['io.flow.common.v0.enums.user_status'] = PropTypes.oneOf(['pending', 'active', 'inactive']);
|
|
12395
|
+
|
|
12396
|
+
T['io.flow.internal.v0.models.user_status_rule_form'] = PropTypes.exact({
|
|
12397
|
+
domain: PropTypes.string.isRequired,
|
|
12398
|
+
status: T['io.flow.common.v0.enums.user_status'].isRequired,
|
|
12399
|
+
});
|
|
12400
|
+
|
|
12401
|
+
T['io.flow.internal.v0.models.user_status_rule'] = PropTypes.exact({
|
|
12402
|
+
id: PropTypes.string.isRequired,
|
|
12403
|
+
domain: PropTypes.string.isRequired,
|
|
12404
|
+
status: T['io.flow.common.v0.enums.user_status'].isRequired,
|
|
12405
|
+
});
|
|
12406
|
+
|
|
12407
|
+
T['io.flow.internal.v0.models.user_status_form'] = PropTypes.exact({
|
|
12408
|
+
status: T['io.flow.common.v0.enums.user_status'].isRequired,
|
|
12409
|
+
});
|
|
12410
|
+
|
|
12319
12411
|
T['io.flow.order.management.v0.models.fulfillment_item_quantity'] = PropTypes.exact({
|
|
12320
12412
|
status: T['io.flow.order.management.v0.enums.fulfillment_item_quantity_status'].isRequired,
|
|
12321
12413
|
quantity: PropTypes.number.isRequired,
|
|
@@ -12461,23 +12553,6 @@ T['io.flow.internal.v0.models.whole_order_action_form'] = PropTypes.exact({
|
|
|
12461
12553
|
action: T['io.flow.internal.v0.enums.order_action'].isRequired,
|
|
12462
12554
|
});
|
|
12463
12555
|
|
|
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
12556
|
T['io.flow.internal.v0.enums.onboarding_audit_theme_key'] = PropTypes.oneOf([
|
|
12482
12557
|
'billing',
|
|
12483
12558
|
'b2b_invoicing',
|
|
@@ -12658,12 +12733,6 @@ T['io.flow.internal.v0.models.merchant_search_result'] = PropTypes.exact({
|
|
|
12658
12733
|
shop_domain: PropTypes.string,
|
|
12659
12734
|
});
|
|
12660
12735
|
|
|
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
12736
|
T['io.flow.internal.v0.enums.merchant_override_status'] = PropTypes.oneOf(['pending', 'in_review', 'accepted', 'rejected']);
|
|
12668
12737
|
|
|
12669
12738
|
T['io.flow.internal.v0.models.merchant_override_decision_form'] = PropTypes.exact({
|
|
@@ -12671,19 +12740,6 @@ T['io.flow.internal.v0.models.merchant_override_decision_form'] = PropTypes.exac
|
|
|
12671
12740
|
status: T['io.flow.internal.v0.enums.merchant_override_status'].isRequired,
|
|
12672
12741
|
});
|
|
12673
12742
|
|
|
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
12743
|
T['io.flow.internal.v0.models.merchant_guid_assignment'] = PropTypes.exact({
|
|
12688
12744
|
id: PropTypes.string.isRequired,
|
|
12689
12745
|
merchant_guid: PropTypes.string.isRequired,
|
|
@@ -13595,6 +13651,7 @@ T['io.flow.trueup.v0.enums.trueup_surcharge_type'] = PropTypes.oneOf([
|
|
|
13595
13651
|
'saturday_stop',
|
|
13596
13652
|
'residential_extended_area_pickup',
|
|
13597
13653
|
'package_level_detail',
|
|
13654
|
+
'pickup',
|
|
13598
13655
|
]);
|
|
13599
13656
|
|
|
13600
13657
|
T['io.flow.billing.v0.models.trueup_label_surcharge'] = PropTypes.exact({
|
|
@@ -13743,14 +13800,6 @@ T['io.flow.internal.v0.models.item_sales_margin'] = PropTypes.exact({
|
|
|
13743
13800
|
position: PropTypes.number.isRequired,
|
|
13744
13801
|
});
|
|
13745
13802
|
|
|
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
13803
|
T['io.flow.internal.v0.enums.classification_scope'] = PropTypes.oneOf(['Item', 'Product']);
|
|
13755
13804
|
T['io.flow.internal.v0.enums.harmonization_decision_source'] = PropTypes.oneOf(['human', 'system', 'legacy_model', 'enterprise_model', 'merchant']);
|
|
13756
13805
|
T['io.flow.internal.v0.enums.item_type'] = PropTypes.oneOf(['standard', 'multi_product']);
|
|
@@ -13839,6 +13888,7 @@ T['io.flow.internal.v0.models.invoice_data_line_item'] = PropTypes.exact({
|
|
|
13839
13888
|
gender: PropTypes.string,
|
|
13840
13889
|
material: PropTypes.string,
|
|
13841
13890
|
url: PropTypes.string,
|
|
13891
|
+
preferential_rate_statement: PropTypes.string,
|
|
13842
13892
|
});
|
|
13843
13893
|
|
|
13844
13894
|
T['io.flow.shopify.external.v0.models.shopify_country_harmonized_system_code'] = PropTypes.exact({
|
|
@@ -14206,6 +14256,17 @@ T['io.flow.payment.gateway.v0.unions.action'] = PropTypes.oneOfType([
|
|
|
14206
14256
|
|
|
14207
14257
|
T['io.flow.internal.v0.enums.rate_source'] = PropTypes.oneOf(['calculated', 'market']);
|
|
14208
14258
|
|
|
14259
|
+
T['io.flow.experience.v0.models.order_rate'] = PropTypes.exact({
|
|
14260
|
+
from: PropTypes.string.isRequired,
|
|
14261
|
+
to: PropTypes.string.isRequired,
|
|
14262
|
+
rate: PropTypes.number.isRequired,
|
|
14263
|
+
});
|
|
14264
|
+
|
|
14265
|
+
T['io.flow.experience.v0.models.edit_summary'] = PropTypes.exact({
|
|
14266
|
+
id: PropTypes.string.isRequired,
|
|
14267
|
+
edited_at: PropTypes.string.isRequired,
|
|
14268
|
+
});
|
|
14269
|
+
|
|
14209
14270
|
T['io.flow.experience.v0.models.incoterm_summary'] = PropTypes.exact({
|
|
14210
14271
|
configuration: T['io.flow.experience.v0.enums.incoterm_configuration'].isRequired,
|
|
14211
14272
|
includes: T['io.flow.experience.v0.models.incoterm_includes'].isRequired,
|
|
@@ -14570,6 +14631,10 @@ T['io.flow.internal.v0.models.reporting_merchant_transactions'] = PropTypes.exac
|
|
|
14570
14631
|
total: T['io.flow.internal.v0.models.reporting_monetary_value'],
|
|
14571
14632
|
tax_refund: T['io.flow.internal.v0.models.reporting_monetary_value'],
|
|
14572
14633
|
duty_refund: T['io.flow.internal.v0.models.reporting_monetary_value'],
|
|
14634
|
+
tax_reversal: T['io.flow.internal.v0.models.reporting_monetary_value'],
|
|
14635
|
+
duty_reversal: T['io.flow.internal.v0.models.reporting_monetary_value'],
|
|
14636
|
+
tax_reversal_for_lvg_order: PropTypes.bool,
|
|
14637
|
+
duty_reversal_for_lvg_order: PropTypes.bool,
|
|
14573
14638
|
});
|
|
14574
14639
|
|
|
14575
14640
|
T['io.flow.internal.v0.models.reporting_merchant_fees'] = PropTypes.exact({
|
|
@@ -14652,6 +14717,10 @@ T['io.flow.internal.v0.models.merchant_transactions'] = PropTypes.exact({
|
|
|
14652
14717
|
freight: PropTypes.number.isRequired,
|
|
14653
14718
|
total: PropTypes.number.isRequired,
|
|
14654
14719
|
tax_refund: PropTypes.number,
|
|
14720
|
+
tax_reversal: PropTypes.number,
|
|
14721
|
+
duty_reversal: PropTypes.number,
|
|
14722
|
+
tax_reversal_for_lvg_order: PropTypes.bool,
|
|
14723
|
+
duty_reversal_for_lvg_order: PropTypes.bool,
|
|
14655
14724
|
});
|
|
14656
14725
|
|
|
14657
14726
|
T['io.flow.internal.v0.models.merchant_fees'] = PropTypes.exact({
|
|
@@ -15175,45 +15244,111 @@ T['io.flow.internal.v0.models.return_policy_deleted'] = PropTypes.exact({
|
|
|
15175
15244
|
return_policy: T['io.flow.catalog.return.v0.models.return_policy'].isRequired,
|
|
15176
15245
|
});
|
|
15177
15246
|
|
|
15178
|
-
T['io.flow.internal.v0.
|
|
15179
|
-
|
|
15180
|
-
|
|
15181
|
-
|
|
15182
|
-
|
|
15183
|
-
|
|
15247
|
+
T['io.flow.internal.v0.enums.taxonomy_category_classification_alignment'] = PropTypes.oneOf([
|
|
15248
|
+
'aligned',
|
|
15249
|
+
'not_aligned',
|
|
15250
|
+
'product_missing_category',
|
|
15251
|
+
'config_missing_category',
|
|
15252
|
+
'product_not_found',
|
|
15253
|
+
]);
|
|
15254
|
+
|
|
15255
|
+
T['io.flow.sellability.v0.models.sellability_error'] = PropTypes.exact({
|
|
15256
|
+
discriminator: PropTypes.oneOf(['sellability_error']).isRequired,
|
|
15257
|
+
code: T['io.flow.sellability.v0.enums.sellability_error_code'].isRequired,
|
|
15258
|
+
messages: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
15184
15259
|
});
|
|
15185
15260
|
|
|
15186
|
-
T['io.flow.
|
|
15187
|
-
|
|
15188
|
-
|
|
15261
|
+
T['io.flow.sellability.v0.models.sellablility_region_result'] = PropTypes.exact({
|
|
15262
|
+
type: T['io.flow.sellability.v0.enums.rule_effect_type'].isRequired,
|
|
15263
|
+
regions: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
15189
15264
|
});
|
|
15190
15265
|
|
|
15191
|
-
T['io.flow.
|
|
15266
|
+
T['io.flow.sellability.v0.models.product_sellability'] = PropTypes.exact({
|
|
15267
|
+
discriminator: PropTypes.oneOf(['product_sellability']).isRequired,
|
|
15268
|
+
shop_id: PropTypes.string.isRequired,
|
|
15269
|
+
product_id: PropTypes.string,
|
|
15270
|
+
request_id: PropTypes.string.isRequired,
|
|
15271
|
+
hs6_code: PropTypes.string.isRequired,
|
|
15272
|
+
restricted_regions: PropTypes.arrayOf(T['io.flow.sellability.v0.models.sellablility_region_result']).isRequired,
|
|
15273
|
+
});
|
|
15192
15274
|
|
|
15193
|
-
T['io.flow.
|
|
15194
|
-
|
|
15195
|
-
|
|
15196
|
-
|
|
15197
|
-
|
|
15198
|
-
|
|
15199
|
-
|
|
15200
|
-
|
|
15201
|
-
|
|
15202
|
-
|
|
15203
|
-
|
|
15204
|
-
|
|
15205
|
-
|
|
15206
|
-
|
|
15207
|
-
|
|
15208
|
-
|
|
15209
|
-
|
|
15210
|
-
|
|
15211
|
-
|
|
15212
|
-
|
|
15213
|
-
|
|
15214
|
-
|
|
15215
|
-
|
|
15216
|
-
|
|
15275
|
+
T['io.flow.sellability.v0.unions.sellability_response'] = PropTypes.oneOfType([
|
|
15276
|
+
T['io.flow.sellability.v0.models.product_sellability'],
|
|
15277
|
+
T['io.flow.sellability.v0.models.sellability_error'],
|
|
15278
|
+
]);
|
|
15279
|
+
|
|
15280
|
+
T['io.flow.internal.v0.models.product_sellability_result'] = PropTypes.exact({
|
|
15281
|
+
shop_id: PropTypes.string.isRequired,
|
|
15282
|
+
product_number: PropTypes.string.isRequired,
|
|
15283
|
+
request_id: PropTypes.string.isRequired,
|
|
15284
|
+
hs6_code: PropTypes.string.isRequired,
|
|
15285
|
+
restricted_regions: PropTypes.arrayOf(PropTypes.string),
|
|
15286
|
+
restricted_regions_by_type: PropTypes.arrayOf(T['io.flow.sellability.v0.models.sellablility_region_result']),
|
|
15287
|
+
rule_ids: PropTypes.arrayOf(PropTypes.string),
|
|
15288
|
+
taxonomy_category: PropTypes.string,
|
|
15289
|
+
});
|
|
15290
|
+
|
|
15291
|
+
T['io.flow.internal.v0.models.product_sellability_internal_result'] = PropTypes.exact({
|
|
15292
|
+
restricted_regions: PropTypes.arrayOf(T['io.flow.sellability.v0.models.sellablility_region_result']).isRequired,
|
|
15293
|
+
rule_ids: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
15294
|
+
});
|
|
15295
|
+
|
|
15296
|
+
T['io.flow.internal.v0.models.product_sellability_internal'] = PropTypes.exact({
|
|
15297
|
+
shop_id: PropTypes.string.isRequired,
|
|
15298
|
+
product_id: PropTypes.string,
|
|
15299
|
+
request_id: PropTypes.string.isRequired,
|
|
15300
|
+
hs6_code: PropTypes.string.isRequired,
|
|
15301
|
+
restricted_regions: PropTypes.arrayOf(T['io.flow.sellability.v0.models.sellablility_region_result']).isRequired,
|
|
15302
|
+
rule_ids: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
15303
|
+
});
|
|
15304
|
+
|
|
15305
|
+
T['io.flow.internal.v0.enums.sellability_check_status'] = PropTypes.oneOf([
|
|
15306
|
+
'more_restrictive',
|
|
15307
|
+
'less_restrictive',
|
|
15308
|
+
'similar',
|
|
15309
|
+
'regions_differ',
|
|
15310
|
+
'rules_differ',
|
|
15311
|
+
]);
|
|
15312
|
+
|
|
15313
|
+
T['io.flow.internal.v0.models.erp_vendor_status_priority_file'] = PropTypes.exact({
|
|
15314
|
+
name: PropTypes.string.isRequired,
|
|
15315
|
+
url: PropTypes.string.isRequired,
|
|
15316
|
+
created_at: PropTypes.string.isRequired,
|
|
15317
|
+
errors: PropTypes.arrayOf(PropTypes.string),
|
|
15318
|
+
processed_at: PropTypes.string,
|
|
15319
|
+
});
|
|
15320
|
+
|
|
15321
|
+
T['io.flow.internal.v0.models.erp_vendor_status_flow_file'] = PropTypes.exact({
|
|
15322
|
+
url: PropTypes.string.isRequired,
|
|
15323
|
+
created_at: PropTypes.string.isRequired,
|
|
15324
|
+
});
|
|
15325
|
+
|
|
15326
|
+
T['io.flow.internal.v0.enums.company'] = PropTypes.oneOf(['globale', 'flow']);
|
|
15327
|
+
|
|
15328
|
+
T['io.flow.internal.v0.models.erp_priority_vendor_form'] = PropTypes.exact({
|
|
15329
|
+
company: T['io.flow.internal.v0.enums.company'],
|
|
15330
|
+
acc_des: PropTypes.string,
|
|
15331
|
+
tax_code: PropTypes.string,
|
|
15332
|
+
tax_code_2: PropTypes.string,
|
|
15333
|
+
vat_flag: PropTypes.string,
|
|
15334
|
+
country_name: PropTypes.string,
|
|
15335
|
+
w_tax_percent: PropTypes.string,
|
|
15336
|
+
iban: PropTypes.string,
|
|
15337
|
+
confirmed_date: PropTypes.string,
|
|
15338
|
+
w_tax_date: PropTypes.string,
|
|
15339
|
+
w_tax_num_expl: PropTypes.string,
|
|
15340
|
+
acng_code: PropTypes.string,
|
|
15341
|
+
phone: PropTypes.string,
|
|
15342
|
+
address: PropTypes.string,
|
|
15343
|
+
address_a: PropTypes.string,
|
|
15344
|
+
address_2: PropTypes.string,
|
|
15345
|
+
address_3: PropTypes.string,
|
|
15346
|
+
state_name: PropTypes.string,
|
|
15347
|
+
code: PropTypes.string,
|
|
15348
|
+
zip: PropTypes.string,
|
|
15349
|
+
pay_account: PropTypes.string,
|
|
15350
|
+
comp_num: PropTypes.string,
|
|
15351
|
+
w_tax_num: PropTypes.string,
|
|
15217
15352
|
vat_num: PropTypes.string,
|
|
15218
15353
|
orig_acc_name: PropTypes.string,
|
|
15219
15354
|
branch: PropTypes.string,
|
|
@@ -15449,6 +15584,15 @@ T['io.flow.internal.v0.models.encryption'] = PropTypes.exact({
|
|
|
15449
15584
|
passphrase_ids: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
15450
15585
|
});
|
|
15451
15586
|
|
|
15587
|
+
T['io.flow.internal.v0.models.destination_duty_comparison'] = PropTypes.exact({
|
|
15588
|
+
country: PropTypes.string.isRequired,
|
|
15589
|
+
current_duty: PropTypes.number,
|
|
15590
|
+
merchant_duty: PropTypes.number,
|
|
15591
|
+
current_error: PropTypes.number,
|
|
15592
|
+
merchant_error: PropTypes.number,
|
|
15593
|
+
});
|
|
15594
|
+
|
|
15595
|
+
T['io.flow.internal.v0.enums.duty_variance_status'] = PropTypes.oneOf(['acceptable', 'exceeded']);
|
|
15452
15596
|
T['io.flow.internal.v0.enums.duty_rate_unit_of_measure'] = PropTypes.oneOf(['kg', 'sq m', 'item', 'pair']);
|
|
15453
15597
|
T['io.flow.internal.v0.enums.duty_simple_expression_type'] = PropTypes.oneOf(['free', 'percent', 'per_uom', 'flat']);
|
|
15454
15598
|
|
|
@@ -16135,11 +16279,13 @@ T['io.flow.internal.v0.models.reporting_order_summary'] = PropTypes.exact({
|
|
|
16135
16279
|
number: PropTypes.string.isRequired,
|
|
16136
16280
|
submitted_at: PropTypes.string.isRequired,
|
|
16137
16281
|
payment_source: T['io.flow.experience.v0.enums.order_payment_source_type'],
|
|
16282
|
+
is_edited: PropTypes.bool,
|
|
16138
16283
|
});
|
|
16139
16284
|
|
|
16140
16285
|
T['io.flow.internal.v0.models.sales_payment_record'] = PropTypes.exact({
|
|
16141
16286
|
id: PropTypes.string.isRequired,
|
|
16142
16287
|
organization: T['io.flow.internal.v0.models.reporting_organization_summary'].isRequired,
|
|
16288
|
+
vendor: T['io.flow.internal.v0.models.reporting_vendor'],
|
|
16143
16289
|
order: T['io.flow.internal.v0.models.reporting_order_summary'].isRequired,
|
|
16144
16290
|
order_total: T['io.flow.internal.v0.models.reporting_monetary_value'].isRequired,
|
|
16145
16291
|
shopper_breakdown: T['io.flow.internal.v0.models.shopper_breakdown'].isRequired,
|
|
@@ -16353,6 +16499,10 @@ T['io.flow.internal.v0.enums.billing_metric_key'] = PropTypes.oneOf([
|
|
|
16353
16499
|
'sp_billable_label_transactions_count',
|
|
16354
16500
|
'sp_billable_label_transactions_count_for_unique_orders',
|
|
16355
16501
|
'sp_billable_label_transactions_total',
|
|
16502
|
+
'capture_transactions_standard_count',
|
|
16503
|
+
'capture_transactions_standard_total',
|
|
16504
|
+
'capture_transactions_shopify_plus_count',
|
|
16505
|
+
'capture_transactions_shopify_plus_total',
|
|
16356
16506
|
'sp_capture_transactions_count',
|
|
16357
16507
|
'sp_capture_transactions_total',
|
|
16358
16508
|
'sp_carrier_charge_transactions_count',
|
|
@@ -16617,6 +16767,7 @@ T['io.flow.internal.v0.models.invoice_line_item'] = PropTypes.exact({
|
|
|
16617
16767
|
total_price: PropTypes.number.isRequired,
|
|
16618
16768
|
manufacturer_id: PropTypes.string,
|
|
16619
16769
|
export_control_classification_number: PropTypes.string.isRequired,
|
|
16770
|
+
preferential_rate_statement: PropTypes.string,
|
|
16620
16771
|
});
|
|
16621
16772
|
|
|
16622
16773
|
T['io.flow.internal.v0.models.commercial_invoice_summary'] = PropTypes.exact({
|
|
@@ -16716,6 +16867,7 @@ T['io.flow.internal.v0.enums.item_harmonization_status'] = PropTypes.oneOf([
|
|
|
16716
16867
|
'classified',
|
|
16717
16868
|
'non_classifiable_not_enough_information',
|
|
16718
16869
|
'exempt',
|
|
16870
|
+
'manual_classification_required',
|
|
16719
16871
|
]);
|
|
16720
16872
|
|
|
16721
16873
|
T['io.flow.internal.v0.models.no_classification_form'] = PropTypes.exact({
|
|
@@ -17138,19 +17290,66 @@ T['io.flow.internal.v0.enums.charge_input_type'] = PropTypes.oneOf([
|
|
|
17138
17290
|
'peak_surcharge',
|
|
17139
17291
|
]);
|
|
17140
17292
|
|
|
17141
|
-
T['io.flow.internal.v0.
|
|
17142
|
-
|
|
17293
|
+
T['io.flow.internal.v0.enums.evaluation_check_result'] = PropTypes.oneOf(['pass', 'fail']);
|
|
17294
|
+
|
|
17295
|
+
T['io.flow.internal.v0.models.taxonomy_alignment_check_result'] = PropTypes.exact({
|
|
17296
|
+
status: T['io.flow.internal.v0.enums.taxonomy_category_classification_alignment'].isRequired,
|
|
17297
|
+
result: T['io.flow.internal.v0.enums.evaluation_check_result'].isRequired,
|
|
17298
|
+
merchant_taxonomy_status: T['io.flow.internal.v0.enums.taxonomy_category_classification_alignment'].isRequired,
|
|
17299
|
+
current_taxonomy_status: T['io.flow.internal.v0.enums.taxonomy_category_classification_alignment'].isRequired,
|
|
17143
17300
|
});
|
|
17144
17301
|
|
|
17145
|
-
T['io.flow.internal.v0.models.
|
|
17146
|
-
|
|
17302
|
+
T['io.flow.internal.v0.models.sellability_check_result'] = PropTypes.exact({
|
|
17303
|
+
status: T['io.flow.internal.v0.enums.sellability_check_status'].isRequired,
|
|
17304
|
+
result: T['io.flow.internal.v0.enums.evaluation_check_result'].isRequired,
|
|
17305
|
+
current_rule_ids: PropTypes.arrayOf(PropTypes.string),
|
|
17306
|
+
current_restricted_regions: PropTypes.arrayOf(T['io.flow.sellability.v0.models.sellablility_region_result']),
|
|
17307
|
+
merchant_rule_ids: PropTypes.arrayOf(PropTypes.string),
|
|
17308
|
+
merchant_restricted_regions: PropTypes.arrayOf(T['io.flow.sellability.v0.models.sellablility_region_result']),
|
|
17309
|
+
current_error: PropTypes.arrayOf(T['io.flow.sellability.v0.models.sellability_error']),
|
|
17310
|
+
merchant_error: PropTypes.arrayOf(T['io.flow.sellability.v0.models.sellability_error']),
|
|
17147
17311
|
});
|
|
17148
17312
|
|
|
17149
|
-
T['io.flow.internal.v0.models.
|
|
17150
|
-
|
|
17151
|
-
|
|
17152
|
-
|
|
17153
|
-
|
|
17313
|
+
T['io.flow.internal.v0.models.duty_variance_result'] = PropTypes.exact({
|
|
17314
|
+
status: T['io.flow.internal.v0.enums.duty_variance_status'].isRequired,
|
|
17315
|
+
result: T['io.flow.internal.v0.enums.evaluation_check_result'].isRequired,
|
|
17316
|
+
destinations: PropTypes.arrayOf(T['io.flow.internal.v0.models.destination_duty_comparison']).isRequired,
|
|
17317
|
+
});
|
|
17318
|
+
|
|
17319
|
+
T['io.flow.internal.v0.enums.chapter_check_status'] = PropTypes.oneOf(['apparel_like', 'similar', 'does_not_match']);
|
|
17320
|
+
|
|
17321
|
+
T['io.flow.internal.v0.models.chapter_check_result'] = PropTypes.exact({
|
|
17322
|
+
status: T['io.flow.internal.v0.enums.chapter_check_status'].isRequired,
|
|
17323
|
+
result: T['io.flow.internal.v0.enums.evaluation_check_result'].isRequired,
|
|
17324
|
+
current_chapter: PropTypes.string.isRequired,
|
|
17325
|
+
merchant_chapter: PropTypes.string.isRequired,
|
|
17326
|
+
});
|
|
17327
|
+
|
|
17328
|
+
T['io.flow.internal.v0.models.evaluation_results'] = PropTypes.exact({
|
|
17329
|
+
chapter_result: T['io.flow.internal.v0.models.chapter_check_result'].isRequired,
|
|
17330
|
+
sellability_result: T['io.flow.internal.v0.models.sellability_check_result'].isRequired,
|
|
17331
|
+
duty_variance_result: T['io.flow.internal.v0.models.duty_variance_result'].isRequired,
|
|
17332
|
+
taxonomy_alignment_result: T['io.flow.internal.v0.models.taxonomy_alignment_check_result'],
|
|
17333
|
+
});
|
|
17334
|
+
|
|
17335
|
+
T['io.flow.internal.v0.models.merchant_override'] = PropTypes.exact({
|
|
17336
|
+
id: PropTypes.string.isRequired,
|
|
17337
|
+
organization_id: PropTypes.string.isRequired,
|
|
17338
|
+
item_number: PropTypes.string.isRequired,
|
|
17339
|
+
status: T['io.flow.internal.v0.enums.merchant_override_status'].isRequired,
|
|
17340
|
+
hs6_code: PropTypes.string.isRequired,
|
|
17341
|
+
merchant_hs6_code: PropTypes.string.isRequired,
|
|
17342
|
+
evaluation_results: T['io.flow.internal.v0.models.evaluation_results'],
|
|
17343
|
+
created_at: PropTypes.string.isRequired,
|
|
17344
|
+
updated_at: PropTypes.string.isRequired,
|
|
17345
|
+
updated_by_user_id: PropTypes.string.isRequired,
|
|
17346
|
+
});
|
|
17347
|
+
|
|
17348
|
+
T['io.flow.internal.v0.models.merchant_override_upserted'] = PropTypes.exact({
|
|
17349
|
+
discriminator: PropTypes.oneOf(['merchant_override_upserted']).isRequired,
|
|
17350
|
+
event_id: PropTypes.string.isRequired,
|
|
17351
|
+
timestamp: PropTypes.string.isRequired,
|
|
17352
|
+
merchant_override: T['io.flow.internal.v0.models.merchant_override'].isRequired,
|
|
17154
17353
|
});
|
|
17155
17354
|
|
|
17156
17355
|
T['io.flow.internal.v0.enums.shopify_service'] = PropTypes.oneOf(['payment', 'duty_tax_calculator', 'sellability']);
|
|
@@ -17180,11 +17379,6 @@ T['io.flow.channel.shopify.internal.v0.models.channel_organization_shopify_post_
|
|
|
17180
17379
|
metadata: T['io.flow.channel.shopify.internal.v0.models.shopify_metadata'].isRequired,
|
|
17181
17380
|
});
|
|
17182
17381
|
|
|
17183
|
-
T['io.flow.internal.v0.models.channel_organization_shopify_post_form'] = PropTypes.exact({
|
|
17184
|
-
form: T['io.flow.channel.v0.models.channel_organization_form'].isRequired,
|
|
17185
|
-
metadata: T['io.flow.internal.v0.models.shopify_metadata'].isRequired,
|
|
17186
|
-
});
|
|
17187
|
-
|
|
17188
17382
|
T['io.flow.channel.v0.models.channel_organization_put_form'] = PropTypes.exact({
|
|
17189
17383
|
name: PropTypes.string,
|
|
17190
17384
|
slug: PropTypes.string,
|
|
@@ -17197,14 +17391,62 @@ T['io.flow.channel.shopify.internal.v0.models.channel_organization_shopify_form'
|
|
|
17197
17391
|
metadata: T['io.flow.channel.shopify.internal.v0.models.shopify_metadata'].isRequired,
|
|
17198
17392
|
});
|
|
17199
17393
|
|
|
17394
|
+
T['io.flow.internal.v0.models.shopify_channel_organization_tokens'] = PropTypes.exact({
|
|
17395
|
+
token: T['io.flow.internal.v0.models.shopify_channel_organization_token'].isRequired,
|
|
17396
|
+
service: T['io.flow.internal.v0.enums.shopify_service'].isRequired,
|
|
17397
|
+
});
|
|
17398
|
+
|
|
17399
|
+
T['io.flow.internal.v0.enums.sellability_status'] = PropTypes.oneOf(['complete', 'incomplete']);
|
|
17400
|
+
|
|
17401
|
+
T['io.flow.internal.v0.models.channel_organization_sellability_status_put_form'] = PropTypes.exact({
|
|
17402
|
+
status: T['io.flow.internal.v0.enums.sellability_status'].isRequired,
|
|
17403
|
+
});
|
|
17404
|
+
|
|
17405
|
+
T['io.flow.internal.v0.models.channel_organization_sellability_status'] = PropTypes.exact({
|
|
17406
|
+
status: T['io.flow.internal.v0.enums.sellability_status'].isRequired,
|
|
17407
|
+
});
|
|
17408
|
+
|
|
17409
|
+
T['io.flow.internal.v0.enums.catalog_publication_owner'] = PropTypes.oneOf(['shopify', 'globale']);
|
|
17410
|
+
|
|
17411
|
+
T['io.flow.internal.v0.models.shopify_markets_shop_form'] = PropTypes.exact({
|
|
17412
|
+
shop: PropTypes.string.isRequired,
|
|
17413
|
+
domain: PropTypes.string.isRequired,
|
|
17414
|
+
myshopify_domain: PropTypes.string.isRequired,
|
|
17415
|
+
shared_secret: PropTypes.string.isRequired,
|
|
17416
|
+
api_key: PropTypes.string,
|
|
17417
|
+
api_password: PropTypes.string,
|
|
17418
|
+
access_token: PropTypes.string,
|
|
17419
|
+
shopify_plan_name: T['io.flow.shopify.external.v0.enums.shopify_plan_name'],
|
|
17420
|
+
catalog_publication_owner: T['io.flow.internal.v0.enums.catalog_publication_owner'],
|
|
17421
|
+
});
|
|
17422
|
+
|
|
17423
|
+
T['io.flow.internal.v0.models.shopify_catalog_publication'] = PropTypes.exact({
|
|
17424
|
+
owner: T['io.flow.internal.v0.enums.catalog_publication_owner'].isRequired,
|
|
17425
|
+
});
|
|
17426
|
+
|
|
17427
|
+
T['io.flow.internal.v0.models.shopify_metadata'] = PropTypes.exact({
|
|
17428
|
+
domain: PropTypes.string.isRequired,
|
|
17429
|
+
myshopify_domain: PropTypes.string.isRequired,
|
|
17430
|
+
catalog_publication: T['io.flow.internal.v0.models.shopify_catalog_publication'],
|
|
17431
|
+
token: PropTypes.string.isRequired,
|
|
17432
|
+
});
|
|
17433
|
+
|
|
17434
|
+
T['io.flow.internal.v0.models.channel_organization_shopify_post_form'] = PropTypes.exact({
|
|
17435
|
+
form: T['io.flow.channel.v0.models.channel_organization_form'].isRequired,
|
|
17436
|
+
metadata: T['io.flow.internal.v0.models.shopify_metadata'].isRequired,
|
|
17437
|
+
});
|
|
17438
|
+
|
|
17200
17439
|
T['io.flow.internal.v0.models.channel_organization_shopify_form'] = PropTypes.exact({
|
|
17201
17440
|
form: T['io.flow.channel.v0.models.channel_organization_put_form'].isRequired,
|
|
17202
17441
|
metadata: T['io.flow.internal.v0.models.shopify_metadata'].isRequired,
|
|
17203
17442
|
});
|
|
17204
17443
|
|
|
17205
|
-
T['io.flow.internal.v0.models.
|
|
17206
|
-
|
|
17207
|
-
|
|
17444
|
+
T['io.flow.internal.v0.models.channel_organization_publication_owner_put_form'] = PropTypes.exact({
|
|
17445
|
+
owner: T['io.flow.internal.v0.enums.catalog_publication_owner'].isRequired,
|
|
17446
|
+
});
|
|
17447
|
+
|
|
17448
|
+
T['io.flow.internal.v0.models.channel_organization_publication_owner'] = PropTypes.exact({
|
|
17449
|
+
owner: T['io.flow.internal.v0.enums.catalog_publication_owner'].isRequired,
|
|
17208
17450
|
});
|
|
17209
17451
|
|
|
17210
17452
|
T['io.flow.internal.v0.enums.channel_order_fulfillment_status_code'] = PropTypes.oneOf(['unfulfilled', 'fulfilled', 'partial', 'cancelled']);
|
|
@@ -17768,6 +18010,7 @@ T['io.flow.shopify.markets.internal.v0.models.shopify_markets_shop'] = PropTypes
|
|
|
17768
18010
|
api_password_masked: PropTypes.string,
|
|
17769
18011
|
access_token_masked: PropTypes.string,
|
|
17770
18012
|
shopify_plan_name: T['io.flow.shopify.external.v0.enums.shopify_plan_name'],
|
|
18013
|
+
catalog_publication_owner: T['io.flow.channel.shopify.internal.v0.enums.catalog_publication_owner'],
|
|
17771
18014
|
});
|
|
17772
18015
|
|
|
17773
18016
|
T['io.flow.shopify.markets.internal.event.v0.models.shopify_markets_shop_upserted'] = PropTypes.exact({
|
|
@@ -17804,6 +18047,7 @@ T['io.flow.internal.v0.models.shopify_markets_shop'] = PropTypes.exact({
|
|
|
17804
18047
|
api_password_masked: PropTypes.string,
|
|
17805
18048
|
access_token_masked: PropTypes.string,
|
|
17806
18049
|
shopify_plan_name: T['io.flow.shopify.external.v0.enums.shopify_plan_name'],
|
|
18050
|
+
catalog_publication_owner: T['io.flow.internal.v0.enums.catalog_publication_owner'],
|
|
17807
18051
|
});
|
|
17808
18052
|
|
|
17809
18053
|
T['io.flow.internal.v0.models.shopify_markets_shop_upserted'] = PropTypes.exact({
|
|
@@ -18272,6 +18516,8 @@ T['io.flow.internal.v0.models.carrier_file'] = PropTypes.exact({
|
|
|
18272
18516
|
result: T['io.flow.internal.v0.models.carrier_file_result'],
|
|
18273
18517
|
});
|
|
18274
18518
|
|
|
18519
|
+
T['io.flow.internal.v0.enums.carrier_document_type'] = PropTypes.oneOf(['commercial_invoice']);
|
|
18520
|
+
|
|
18275
18521
|
T['io.flow.internal.v0.models.carrier_charge_reference'] = PropTypes.exact({
|
|
18276
18522
|
id: PropTypes.string.isRequired,
|
|
18277
18523
|
});
|
|
@@ -18407,6 +18653,7 @@ T['io.flow.internal.v0.models.label_surcharge_form'] = PropTypes.exact({
|
|
|
18407
18653
|
saturday_stop: T['io.flow.internal.v0.models.label_surcharge_single_form'],
|
|
18408
18654
|
residential_extended_area_pickup: T['io.flow.internal.v0.models.label_surcharge_single_form'],
|
|
18409
18655
|
package_level_detail: T['io.flow.internal.v0.models.label_surcharge_single_form'],
|
|
18656
|
+
pickup: T['io.flow.internal.v0.models.label_surcharge_single_form'],
|
|
18410
18657
|
});
|
|
18411
18658
|
|
|
18412
18659
|
T['io.flow.internal.v0.models.carrier_tax_form'] = PropTypes.exact({
|
|
@@ -18756,6 +19003,7 @@ T['io.flow.internal.v0.models.channel_order_acceptance'] = PropTypes.exact({
|
|
|
18756
19003
|
channel_id: PropTypes.string.isRequired,
|
|
18757
19004
|
external_order_reference: PropTypes.string.isRequired,
|
|
18758
19005
|
payment_request_id: PropTypes.string,
|
|
19006
|
+
order_payment_request_ids: PropTypes.arrayOf(PropTypes.string),
|
|
18759
19007
|
order_edit_payment_request_ids: PropTypes.arrayOf(PropTypes.string),
|
|
18760
19008
|
status: T['io.flow.internal.v0.enums.channel_order_acceptance_status'].isRequired,
|
|
18761
19009
|
reasons: PropTypes.arrayOf(T['io.flow.internal.v0.models.channel_order_acceptance_reason']).isRequired,
|
|
@@ -19254,6 +19502,21 @@ T['io.flow.internal.v0.models.other_record_metadata'] = PropTypes.exact({
|
|
|
19254
19502
|
failed_payout: T['io.flow.internal.v0.models.other_record_metadata_failed_payout'],
|
|
19255
19503
|
});
|
|
19256
19504
|
|
|
19505
|
+
T['io.flow.internal.v0.enums.file_type'] = PropTypes.oneOf(['pdf']);
|
|
19506
|
+
|
|
19507
|
+
T['io.flow.internal.v0.models.base_64_carrier_document_content'] = PropTypes.exact({
|
|
19508
|
+
discriminator: PropTypes.oneOf(['base_64_carrier_document_content']).isRequired,
|
|
19509
|
+
base64_string: PropTypes.string.isRequired,
|
|
19510
|
+
file_type: T['io.flow.internal.v0.enums.file_type'].isRequired,
|
|
19511
|
+
});
|
|
19512
|
+
|
|
19513
|
+
T['io.flow.internal.v0.unions.carrier_document_content'] = PropTypes.oneOfType([T['io.flow.internal.v0.models.base_64_carrier_document_content']]);
|
|
19514
|
+
|
|
19515
|
+
T['io.flow.internal.v0.models.carrier_document'] = PropTypes.exact({
|
|
19516
|
+
document_type: T['io.flow.internal.v0.enums.carrier_document_type'].isRequired,
|
|
19517
|
+
document_content: T['io.flow.internal.v0.unions.carrier_document_content'].isRequired,
|
|
19518
|
+
});
|
|
19519
|
+
|
|
19257
19520
|
T['io.flow.internal.v0.models.bank_payment_status_import_result'] = PropTypes.exact({
|
|
19258
19521
|
processed_at: PropTypes.string.isRequired,
|
|
19259
19522
|
number_lines_successful: PropTypes.number.isRequired,
|
|
@@ -19304,11 +19567,6 @@ T['io.flow.internal.v0.models.standalone_attachment_upserted'] = PropTypes.exact
|
|
|
19304
19567
|
attachment: T['io.flow.internal.v0.models.standalone_attachment'].isRequired,
|
|
19305
19568
|
});
|
|
19306
19569
|
|
|
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
19570
|
T['io.flow.internal.v0.models.explicit_statement'] = PropTypes.exact({
|
|
19313
19571
|
id: PropTypes.string.isRequired,
|
|
19314
19572
|
statement: T['io.flow.internal.v0.models.billing_statement_reference'].isRequired,
|
|
@@ -19498,44 +19756,6 @@ T['io.flow.internal.v0.models.auto_review_criteria'] = PropTypes.exact({
|
|
|
19498
19756
|
action: T['io.flow.internal.v0.enums.restriction_status'],
|
|
19499
19757
|
});
|
|
19500
19758
|
|
|
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
19759
|
T['io.flow.internal.v0.enums.order_charge_trigger'] = PropTypes.oneOf(['first_shipment', 'last_shipment', 'shipment_exhausted']);
|
|
19540
19760
|
|
|
19541
19761
|
T['io.flow.common.v0.models.catalog_item_reference'] = PropTypes.exact({
|
|
@@ -20390,46 +20610,115 @@ T['io.flow.internal.v0.models.authorization_bundle_upserted'] = PropTypes.exact(
|
|
|
20390
20610
|
authorization_bundle: T['io.flow.internal.v0.models.authorization_bundle'].isRequired,
|
|
20391
20611
|
});
|
|
20392
20612
|
|
|
20393
|
-
T['io.flow.internal.v0.enums.
|
|
20394
|
-
T['io.flow.common.v0.enums.role'] = PropTypes.oneOf(['admin', 'member']);
|
|
20395
|
-
|
|
20396
|
-
T['io.flow.organization.v0.models.organization_authorization'] = PropTypes.exact({
|
|
20397
|
-
role: T['io.flow.common.v0.enums.role'],
|
|
20398
|
-
environment: T['io.flow.common.v0.enums.environment'].isRequired,
|
|
20399
|
-
});
|
|
20613
|
+
T['io.flow.internal.v0.enums.restriction_attribute_operator'] = PropTypes.oneOf(['and', 'or']);
|
|
20400
20614
|
|
|
20401
|
-
T['io.flow.
|
|
20402
|
-
|
|
20403
|
-
|
|
20404
|
-
|
|
20615
|
+
T['io.flow.internal.v0.unions.restriction_attribute_rule_condition'] = PropTypes.oneOfType([
|
|
20616
|
+
T['io.flow.internal.v0.models.restriction_attribute_condition_single'],
|
|
20617
|
+
T['io.flow.internal.v0.models.restriction_attribute_condition_multiple'],
|
|
20618
|
+
]);
|
|
20405
20619
|
|
|
20406
|
-
T['io.flow.
|
|
20407
|
-
|
|
20408
|
-
|
|
20409
|
-
role: T['io.flow.common.v0.enums.role'],
|
|
20410
|
-
roles: PropTypes.arrayOf(T['io.flow.permission.v0.enums.flow_role']),
|
|
20411
|
-
});
|
|
20620
|
+
T['io.flow.internal.v0.enums.restriction_attribute_result'] = PropTypes.oneOf(
|
|
20621
|
+
['pending_classification', 'pending_verification', 'accepted', 'restricted'],
|
|
20622
|
+
);
|
|
20412
20623
|
|
|
20413
|
-
T['io.flow.
|
|
20414
|
-
|
|
20415
|
-
|
|
20416
|
-
|
|
20417
|
-
role: T['io.flow.common.v0.enums.role'],
|
|
20418
|
-
roles: PropTypes.arrayOf(T['io.flow.permission.v0.enums.flow_role']),
|
|
20624
|
+
T['io.flow.internal.v0.models.restriction_attribute_rule'] = PropTypes.exact({
|
|
20625
|
+
conditions: PropTypes.arrayOf(T['io.flow.internal.v0.unions.restriction_attribute_rule_condition']).isRequired,
|
|
20626
|
+
operator: T['io.flow.internal.v0.enums.restriction_attribute_operator'],
|
|
20627
|
+
result: T['io.flow.internal.v0.enums.restriction_attribute_result'].isRequired,
|
|
20419
20628
|
});
|
|
20420
20629
|
|
|
20421
|
-
T['io.flow.
|
|
20422
|
-
|
|
20630
|
+
T['io.flow.internal.v0.models.attribute_rule'] = PropTypes.exact({
|
|
20631
|
+
restriction_attribute_rules: PropTypes.arrayOf(T['io.flow.internal.v0.models.restriction_attribute_rule']).isRequired,
|
|
20632
|
+
default_result: T['io.flow.internal.v0.enums.restriction_attribute_result'],
|
|
20423
20633
|
});
|
|
20424
20634
|
|
|
20425
|
-
T['io.flow.
|
|
20426
|
-
|
|
20427
|
-
|
|
20428
|
-
|
|
20635
|
+
T['io.flow.internal.v0.models.restriction_rule_form'] = PropTypes.exact({
|
|
20636
|
+
name: PropTypes.string.isRequired,
|
|
20637
|
+
description: PropTypes.string.isRequired,
|
|
20638
|
+
action: T['io.flow.internal.v0.enums.restriction_action'].isRequired,
|
|
20639
|
+
regions: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
20640
|
+
positive_keywords: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
20641
|
+
negative_keywords: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
20642
|
+
value_threshold_usd: PropTypes.number,
|
|
20643
|
+
auto_review_criteria: PropTypes.arrayOf(T['io.flow.internal.v0.models.auto_review_criteria']),
|
|
20644
|
+
source: T['io.flow.internal.v0.enums.restriction_organization_source'].isRequired,
|
|
20645
|
+
sellability_positive_keywords: PropTypes.arrayOf(PropTypes.string),
|
|
20646
|
+
community_exemption: PropTypes.arrayOf(T['io.flow.internal.v0.enums.restriction_rule_community_exemption']).isRequired,
|
|
20647
|
+
reason_code: PropTypes.string.isRequired,
|
|
20648
|
+
attribute_names: PropTypes.arrayOf(PropTypes.string),
|
|
20649
|
+
attribute_rule_conditions: T['io.flow.internal.v0.models.attribute_rule'],
|
|
20650
|
+
keyword_cancelling: PropTypes.arrayOf(T['io.flow.internal.v0.models.keyword_cancelling']),
|
|
20651
|
+
activation_status: T['io.flow.internal.v0.enums.restriction_rule_activation_status'],
|
|
20429
20652
|
});
|
|
20430
20653
|
|
|
20431
|
-
T['io.flow.internal.v0.models.
|
|
20432
|
-
|
|
20654
|
+
T['io.flow.internal.v0.models.restriction_rule'] = PropTypes.exact({
|
|
20655
|
+
id: PropTypes.string.isRequired,
|
|
20656
|
+
name: PropTypes.string.isRequired,
|
|
20657
|
+
description: PropTypes.string.isRequired,
|
|
20658
|
+
action: T['io.flow.internal.v0.enums.restriction_action'].isRequired,
|
|
20659
|
+
regions: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
20660
|
+
positive_keywords: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
20661
|
+
negative_keywords: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
20662
|
+
value_threshold_usd: PropTypes.number,
|
|
20663
|
+
auto_review_criteria: PropTypes.arrayOf(T['io.flow.internal.v0.models.auto_review_criteria']),
|
|
20664
|
+
source: T['io.flow.internal.v0.enums.restriction_organization_source'].isRequired,
|
|
20665
|
+
sellability_positive_keywords: PropTypes.arrayOf(PropTypes.string),
|
|
20666
|
+
community_exemption: PropTypes.arrayOf(T['io.flow.internal.v0.enums.restriction_rule_community_exemption']).isRequired,
|
|
20667
|
+
reason_code: PropTypes.string.isRequired,
|
|
20668
|
+
attribute_names: PropTypes.arrayOf(PropTypes.string),
|
|
20669
|
+
attribute_rule_conditions: T['io.flow.internal.v0.models.attribute_rule'],
|
|
20670
|
+
keyword_cancelling: PropTypes.arrayOf(T['io.flow.internal.v0.models.keyword_cancelling']),
|
|
20671
|
+
activation_status: T['io.flow.internal.v0.enums.restriction_rule_activation_status'],
|
|
20672
|
+
});
|
|
20673
|
+
|
|
20674
|
+
T['io.flow.internal.v0.models.restriction_rule_upserted'] = PropTypes.exact({
|
|
20675
|
+
discriminator: PropTypes.oneOf(['restriction_rule_upserted']).isRequired,
|
|
20676
|
+
event_id: PropTypes.string.isRequired,
|
|
20677
|
+
timestamp: PropTypes.string.isRequired,
|
|
20678
|
+
restriction_rule: T['io.flow.internal.v0.models.restriction_rule'].isRequired,
|
|
20679
|
+
});
|
|
20680
|
+
|
|
20681
|
+
T['io.flow.internal.v0.enums.ansh_item_type'] = PropTypes.oneOf(['physical', 'digital']);
|
|
20682
|
+
T['io.flow.internal.v0.enums.anirban_item_type'] = PropTypes.oneOf(['physical', 'digital']);
|
|
20683
|
+
T['io.flow.common.v0.enums.role'] = PropTypes.oneOf(['admin', 'member']);
|
|
20684
|
+
|
|
20685
|
+
T['io.flow.organization.v0.models.organization_authorization'] = PropTypes.exact({
|
|
20686
|
+
role: T['io.flow.common.v0.enums.role'],
|
|
20687
|
+
environment: T['io.flow.common.v0.enums.environment'].isRequired,
|
|
20688
|
+
});
|
|
20689
|
+
|
|
20690
|
+
T['io.flow.organization.v0.models.membership_put_form'] = PropTypes.exact({
|
|
20691
|
+
role: T['io.flow.common.v0.enums.role'],
|
|
20692
|
+
roles: PropTypes.arrayOf(T['io.flow.permission.v0.enums.flow_role']),
|
|
20693
|
+
});
|
|
20694
|
+
|
|
20695
|
+
T['io.flow.organization.v0.models.membership_form'] = PropTypes.exact({
|
|
20696
|
+
organization: PropTypes.string.isRequired,
|
|
20697
|
+
user: PropTypes.string.isRequired,
|
|
20698
|
+
role: T['io.flow.common.v0.enums.role'],
|
|
20699
|
+
roles: PropTypes.arrayOf(T['io.flow.permission.v0.enums.flow_role']),
|
|
20700
|
+
});
|
|
20701
|
+
|
|
20702
|
+
T['io.flow.organization.v0.models.invitation_form'] = PropTypes.exact({
|
|
20703
|
+
organization: PropTypes.string.isRequired,
|
|
20704
|
+
email: PropTypes.string.isRequired,
|
|
20705
|
+
name: T['io.flow.common.v0.models.name'],
|
|
20706
|
+
role: T['io.flow.common.v0.enums.role'],
|
|
20707
|
+
roles: PropTypes.arrayOf(T['io.flow.permission.v0.enums.flow_role']),
|
|
20708
|
+
});
|
|
20709
|
+
|
|
20710
|
+
T['io.flow.channel.internal.v0.models.channel_membership_put_form'] = PropTypes.exact({
|
|
20711
|
+
role: T['io.flow.common.v0.enums.role'],
|
|
20712
|
+
});
|
|
20713
|
+
|
|
20714
|
+
T['io.flow.channel.internal.v0.models.channel_membership_form'] = PropTypes.exact({
|
|
20715
|
+
channel_id: PropTypes.string.isRequired,
|
|
20716
|
+
user_id: PropTypes.string.isRequired,
|
|
20717
|
+
role: T['io.flow.common.v0.enums.role'],
|
|
20718
|
+
});
|
|
20719
|
+
|
|
20720
|
+
T['io.flow.internal.v0.models.partner_membership_put_form'] = PropTypes.exact({
|
|
20721
|
+
role: T['io.flow.common.v0.enums.role'].isRequired,
|
|
20433
20722
|
});
|
|
20434
20723
|
|
|
20435
20724
|
T['io.flow.internal.v0.models.partner_membership_form'] = PropTypes.exact({
|
|
@@ -22630,6 +22919,7 @@ T['io.flow.label.v0.models.detailed_shipping_label_form'] = PropTypes.exact({
|
|
|
22630
22919
|
package_dimensions_source: T['io.flow.label.v0.enums.package_dimensions_source'],
|
|
22631
22920
|
origin_location_source: T['io.flow.label.v0.enums.origin_location_source'],
|
|
22632
22921
|
reference_id: PropTypes.string,
|
|
22922
|
+
shipping_date_time: PropTypes.string,
|
|
22633
22923
|
});
|
|
22634
22924
|
|
|
22635
22925
|
T['io.flow.label.v0.models.bridge_shipping_label_form'] = PropTypes.exact({
|
|
@@ -22949,14 +23239,6 @@ T['io.flow.internal.v0.models.transaction_adjustment_form'] = PropTypes.exact({
|
|
|
22949
23239
|
type: T['io.flow.internal.v0.enums.adjustment_transaction_type'],
|
|
22950
23240
|
});
|
|
22951
23241
|
|
|
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
23242
|
T['io.flow.internal.v0.models.additional_import_tax'] = PropTypes.exact({
|
|
22961
23243
|
name: PropTypes.string,
|
|
22962
23244
|
additional_import_tax_value: T['io.flow.common.v0.models.money'],
|
|
@@ -23024,6 +23306,72 @@ T['io.flow.internal.v0.unions.order_action_form'] = PropTypes.oneOfType([
|
|
|
23024
23306
|
T['io.flow.internal.v0.models.fulfillment_action_form'],
|
|
23025
23307
|
]);
|
|
23026
23308
|
|
|
23309
|
+
T['io.flow.internal.v0.models.transaction_reference'] = PropTypes.exact({
|
|
23310
|
+
id: PropTypes.string.isRequired,
|
|
23311
|
+
});
|
|
23312
|
+
|
|
23313
|
+
T['io.flow.internal.v0.models.transaction_adjustment'] = PropTypes.exact({
|
|
23314
|
+
id: PropTypes.string.isRequired,
|
|
23315
|
+
original_transaction: T['io.flow.internal.v0.models.transaction_reference'].isRequired,
|
|
23316
|
+
adjustment_transaction: T['io.flow.internal.v0.models.transaction_reference'],
|
|
23317
|
+
description: PropTypes.string.isRequired,
|
|
23318
|
+
details: T['io.flow.internal.v0.unions.adjustment_details'].isRequired,
|
|
23319
|
+
});
|
|
23320
|
+
|
|
23321
|
+
T['io.flow.internal.v0.models.return_trigger_reversal'] = PropTypes.exact({
|
|
23322
|
+
discriminator: PropTypes.oneOf(['by_reversal']).isRequired,
|
|
23323
|
+
reversal: T['io.flow.internal.v0.models.transaction_reference'].isRequired,
|
|
23324
|
+
});
|
|
23325
|
+
|
|
23326
|
+
T['io.flow.internal.v0.models.pending_bank_payment_detail'] = PropTypes.exact({
|
|
23327
|
+
transaction: T['io.flow.internal.v0.models.transaction_reference'].isRequired,
|
|
23328
|
+
statement: T['io.flow.internal.v0.models.billing_statement_reference'].isRequired,
|
|
23329
|
+
});
|
|
23330
|
+
|
|
23331
|
+
T['io.flow.internal.v0.models.non_l4l_tax_duty_fx_fee_metadata'] = PropTypes.exact({
|
|
23332
|
+
discriminator: PropTypes.oneOf(['non_l4l_tax_duty_fx_fee_metadata']).isRequired,
|
|
23333
|
+
tax: T['io.flow.internal.v0.models.transaction_reference'],
|
|
23334
|
+
duty: T['io.flow.internal.v0.models.transaction_reference'],
|
|
23335
|
+
});
|
|
23336
|
+
|
|
23337
|
+
T['io.flow.payment.v0.models.refund_reference'] = PropTypes.exact({
|
|
23338
|
+
discriminator: PropTypes.oneOf(['refund_reference']).isRequired,
|
|
23339
|
+
id: PropTypes.string.isRequired,
|
|
23340
|
+
key: PropTypes.string.isRequired,
|
|
23341
|
+
});
|
|
23342
|
+
|
|
23343
|
+
T['io.flow.payment.v0.unions.transfer_reference'] = PropTypes.oneOfType([
|
|
23344
|
+
T['io.flow.payment.v0.models.capture_reference'],
|
|
23345
|
+
T['io.flow.payment.v0.models.refund_reference'],
|
|
23346
|
+
T['io.flow.payment.v0.models.dispute_reference'],
|
|
23347
|
+
]);
|
|
23348
|
+
|
|
23349
|
+
T['io.flow.payment.v0.models.refund_identifier'] = PropTypes.exact({
|
|
23350
|
+
id: PropTypes.string.isRequired,
|
|
23351
|
+
refund: T['io.flow.payment.v0.models.refund_reference'].isRequired,
|
|
23352
|
+
name: PropTypes.string.isRequired,
|
|
23353
|
+
identifier: PropTypes.string.isRequired,
|
|
23354
|
+
primary: PropTypes.bool.isRequired,
|
|
23355
|
+
});
|
|
23356
|
+
|
|
23357
|
+
T['io.flow.internal.v0.models.return_trigger_refund'] = PropTypes.exact({
|
|
23358
|
+
discriminator: PropTypes.oneOf(['by_refund']).isRequired,
|
|
23359
|
+
refund: T['io.flow.payment.v0.models.refund_reference'].isRequired,
|
|
23360
|
+
});
|
|
23361
|
+
|
|
23362
|
+
T['io.flow.internal.v0.unions.return_trigger'] = PropTypes.oneOfType([
|
|
23363
|
+
T['io.flow.internal.v0.models.return_trigger_refund'],
|
|
23364
|
+
T['io.flow.internal.v0.models.return_trigger_reversal'],
|
|
23365
|
+
]);
|
|
23366
|
+
|
|
23367
|
+
T['io.flow.internal.v0.models.accounting_return_metadata'] = PropTypes.exact({
|
|
23368
|
+
discriminator: PropTypes.oneOf(['accounting_return_metadata']).isRequired,
|
|
23369
|
+
transactions_until: PropTypes.string.isRequired,
|
|
23370
|
+
refund: T['io.flow.payment.v0.models.refund_reference'],
|
|
23371
|
+
tax_reversal: T['io.flow.internal.v0.models.transaction_reference'],
|
|
23372
|
+
duty_reversal: T['io.flow.internal.v0.models.transaction_reference'],
|
|
23373
|
+
});
|
|
23374
|
+
|
|
23027
23375
|
T['io.flow.internal.v0.models.bank_account_reference'] = PropTypes.exact({
|
|
23028
23376
|
id: PropTypes.string.isRequired,
|
|
23029
23377
|
});
|
|
@@ -23100,6 +23448,10 @@ T['io.flow.shopify.markets.internal.event.v0.unions.shopify_markets_internal_eve
|
|
|
23100
23448
|
T['io.flow.shopify.markets.internal.event.v0.models.shopify_markets_webhook_registration_deleted'],
|
|
23101
23449
|
T['io.flow.shopify.markets.internal.event.v0.models.shopify_markets_shop_statistics_upserted'],
|
|
23102
23450
|
T['io.flow.shopify.markets.internal.event.v0.models.shopify_markets_shop_statistics_deleted'],
|
|
23451
|
+
T['io.flow.shopify.markets.internal.event.v0.models.shopify_product_taxonomy_attribute_upserted'],
|
|
23452
|
+
T['io.flow.shopify.markets.internal.event.v0.models.shopify_product_taxonomy_attribute_deleted'],
|
|
23453
|
+
T['io.flow.shopify.markets.internal.event.v0.models.shopify_product_taxonomy_attribute_value_upserted'],
|
|
23454
|
+
T['io.flow.shopify.markets.internal.event.v0.models.shopify_product_taxonomy_attribute_value_deleted'],
|
|
23103
23455
|
T['io.flow.shopify.markets.internal.event.v0.models.shopify_markets_metrics_upserted'],
|
|
23104
23456
|
T['io.flow.shopify.markets.internal.event.v0.models.shopify_markets_metrics_deleted'],
|
|
23105
23457
|
T['io.flow.shopify.markets.internal.event.v0.models.channel_order_summary_upserted'],
|
|
@@ -23186,12 +23538,6 @@ T['io.flow.internal.v0.models.shopify_monitoring_order_monitor'] = PropTypes.exa
|
|
|
23186
23538
|
monitor: T['io.flow.internal.v0.unions.shopify_monitoring_order_monitor_type'].isRequired,
|
|
23187
23539
|
});
|
|
23188
23540
|
|
|
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
23541
|
T['io.flow.internal.v0.models.shopify_monitoring_order_monitor_event_upserted'] = PropTypes.exact({
|
|
23196
23542
|
discriminator: PropTypes.oneOf(['shopify_monitoring_order_monitor_event_upserted']).isRequired,
|
|
23197
23543
|
event_id: PropTypes.string.isRequired,
|
|
@@ -23317,15 +23663,6 @@ T['io.flow.organization.v0.models.invitation_version'] = PropTypes.exact({
|
|
|
23317
23663
|
invitation: T['io.flow.organization.v0.models.invitation'].isRequired,
|
|
23318
23664
|
});
|
|
23319
23665
|
|
|
23320
|
-
T['io.flow.internal.v0.models.onboarding_audit_snapshot'] = PropTypes.exact({
|
|
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
23666
|
T['io.flow.internal.v0.models.onboarding_audit_report'] = PropTypes.exact({
|
|
23330
23667
|
organization: T['io.flow.common.v0.models.organization'].isRequired,
|
|
23331
23668
|
result: T['io.flow.internal.v0.enums.onboarding_audit_result'].isRequired,
|
|
@@ -23688,6 +24025,8 @@ T['io.flow.internal.v0.unions.task_metadata'] = PropTypes.oneOfType([
|
|
|
23688
24025
|
T['io.flow.internal.v0.models.statement_creation_metadata'],
|
|
23689
24026
|
T['io.flow.internal.v0.models.accounting_pending_order_metadata'],
|
|
23690
24027
|
T['io.flow.internal.v0.models.tax_duty_reason_code_metadata'],
|
|
24028
|
+
T['io.flow.internal.v0.models.accounting_return_metadata'],
|
|
24029
|
+
T['io.flow.internal.v0.models.non_l4l_tax_duty_fx_fee_metadata'],
|
|
23691
24030
|
]);
|
|
23692
24031
|
|
|
23693
24032
|
T['io.flow.common.v0.models.price'] = PropTypes.exact({
|
|
@@ -24230,12 +24569,14 @@ T['io.flow.internal.v0.models.restriction_product'] = PropTypes.exact({
|
|
|
24230
24569
|
thumbnails: PropTypes.arrayOf(T['io.flow.catalog.v0.models.image']).isRequired,
|
|
24231
24570
|
hs_code: PropTypes.string,
|
|
24232
24571
|
hs_code_source: T['io.flow.internal.v0.enums.harmonization_decision_source'],
|
|
24572
|
+
classification_scope: T['io.flow.internal.v0.enums.classification_scope'],
|
|
24233
24573
|
url: PropTypes.string,
|
|
24234
24574
|
reviews: PropTypes.arrayOf(T['io.flow.internal.v0.models.restriction_item_review']).isRequired,
|
|
24235
24575
|
created_at: PropTypes.string.isRequired,
|
|
24236
24576
|
updated_at: PropTypes.string.isRequired,
|
|
24237
24577
|
taxonomy_category: T['io.flow.product.v0.models.product_taxonomy_category'],
|
|
24238
24578
|
taxonomy_data: PropTypes.arrayOf(T['io.flow.product.v0.models.product_taxonomy_data']),
|
|
24579
|
+
channel: PropTypes.string,
|
|
24239
24580
|
});
|
|
24240
24581
|
|
|
24241
24582
|
T['io.flow.internal.v0.models.restriction_item'] = PropTypes.exact({
|
|
@@ -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,18 +24890,181 @@ T['io.flow.experience.v0.models.order_payment'] = PropTypes.exact({
|
|
|
24656
24890
|
method: PropTypes.string,
|
|
24657
24891
|
});
|
|
24658
24892
|
|
|
24659
|
-
T['io.flow.
|
|
24660
|
-
|
|
24661
|
-
|
|
24662
|
-
|
|
24663
|
-
|
|
24664
|
-
|
|
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,
|
|
24665
24899
|
attributes: PropTypes.objectOf(PropTypes.string),
|
|
24666
|
-
price_attributes: PropTypes.objectOf(T['io.flow.common.v0.models.price_with_base']),
|
|
24667
24900
|
});
|
|
24668
24901
|
|
|
24669
|
-
T['io.flow.
|
|
24670
|
-
|
|
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
|
+
|
|
25056
|
+
T['io.flow.catalog.v0.models.local'] = PropTypes.exact({
|
|
25057
|
+
experience: T['io.flow.common.v0.models.experience_summary'].isRequired,
|
|
25058
|
+
prices: PropTypes.arrayOf(T['io.flow.catalog.v0.unions.localized_price']).isRequired,
|
|
25059
|
+
rates: PropTypes.arrayOf(T['io.flow.currency.v0.models.rate']).isRequired,
|
|
25060
|
+
spot_rates: PropTypes.arrayOf(PropTypes.object).isRequired,
|
|
25061
|
+
status: T['io.flow.catalog.v0.enums.subcatalog_item_status'].isRequired,
|
|
25062
|
+
attributes: PropTypes.objectOf(PropTypes.string),
|
|
25063
|
+
price_attributes: PropTypes.objectOf(T['io.flow.common.v0.models.price_with_base']),
|
|
25064
|
+
});
|
|
25065
|
+
|
|
25066
|
+
T['io.flow.catalog.v0.models.item'] = PropTypes.exact({
|
|
25067
|
+
id: PropTypes.string.isRequired,
|
|
24671
25068
|
number: PropTypes.string.isRequired,
|
|
24672
25069
|
locale: PropTypes.string.isRequired,
|
|
24673
25070
|
name: PropTypes.string.isRequired,
|
|
@@ -24726,78 +25123,114 @@ T['io.flow.internal.v0.models.item_filter_response'] = PropTypes.exact({
|
|
|
24726
25123
|
responses: PropTypes.arrayOf(T['io.flow.internal.v0.models.item_filter_value_response']).isRequired,
|
|
24727
25124
|
});
|
|
24728
25125
|
|
|
24729
|
-
T['io.flow.
|
|
24730
|
-
|
|
24731
|
-
|
|
24732
|
-
|
|
24733
|
-
|
|
24734
|
-
|
|
24735
|
-
|
|
24736
|
-
|
|
24737
|
-
|
|
24738
|
-
|
|
24739
|
-
|
|
24740
|
-
|
|
24741
|
-
|
|
24742
|
-
|
|
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'],
|
|
24743
25141
|
});
|
|
24744
25142
|
|
|
24745
|
-
T['io.flow.
|
|
24746
|
-
|
|
24747
|
-
|
|
24748
|
-
|
|
24749
|
-
|
|
24750
|
-
|
|
24751
|
-
|
|
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),
|
|
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'],
|
|
24755
25150
|
});
|
|
24756
25151
|
|
|
24757
|
-
T['io.flow.
|
|
24758
|
-
|
|
24759
|
-
|
|
24760
|
-
|
|
24761
|
-
|
|
24762
|
-
|
|
24763
|
-
|
|
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,
|
|
24764
25164
|
});
|
|
24765
25165
|
|
|
24766
|
-
T['io.flow.
|
|
24767
|
-
|
|
24768
|
-
|
|
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,
|
|
24769
25172
|
});
|
|
24770
25173
|
|
|
24771
|
-
T['io.flow.
|
|
24772
|
-
|
|
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,
|
|
24773
25180
|
});
|
|
24774
25181
|
|
|
24775
|
-
T['io.flow.experience.v0.models.
|
|
24776
|
-
|
|
24777
|
-
|
|
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,
|
|
24778
25187
|
});
|
|
24779
25188
|
|
|
24780
|
-
T['io.flow.
|
|
24781
|
-
|
|
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,
|
|
24782
25195
|
});
|
|
24783
25196
|
|
|
24784
|
-
T['io.flow.
|
|
24785
|
-
|
|
24786
|
-
|
|
24787
|
-
|
|
24788
|
-
|
|
24789
|
-
|
|
24790
|
-
attributes: PropTypes.objectOf(PropTypes.string),
|
|
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,
|
|
24791
25203
|
});
|
|
24792
25204
|
|
|
24793
|
-
T['io.flow.
|
|
24794
|
-
|
|
24795
|
-
|
|
24796
|
-
|
|
25205
|
+
T['io.flow.internal.v0.models.channel_order'] = PropTypes.exact({
|
|
25206
|
+
org_id: PropTypes.string.isRequired,
|
|
25207
|
+
flow_order_number: PropTypes.string.isRequired,
|
|
25208
|
+
shopify_order_number: PropTypes.string.isRequired,
|
|
25209
|
+
order_submission_date: PropTypes.string,
|
|
25210
|
+
order_item_count: PropTypes.number.isRequired,
|
|
25211
|
+
total: T['io.flow.catalog.v0.models.localized_total'].isRequired,
|
|
25212
|
+
merchant_total: PropTypes.number.isRequired,
|
|
25213
|
+
tracking_numbers: PropTypes.arrayOf(PropTypes.string),
|
|
25214
|
+
carrier: T['io.flow.reference.v0.models.carrier_service'],
|
|
25215
|
+
duty_paid: PropTypes.bool.isRequired,
|
|
25216
|
+
shop_id: PropTypes.string,
|
|
25217
|
+
});
|
|
24797
25218
|
|
|
24798
|
-
T['io.flow.experience.v0.models.
|
|
24799
|
-
|
|
24800
|
-
|
|
25219
|
+
T['io.flow.experience.v0.models.localized_line_item'] = PropTypes.exact({
|
|
25220
|
+
id: PropTypes.string,
|
|
25221
|
+
number: PropTypes.string.isRequired,
|
|
25222
|
+
name: PropTypes.string.isRequired,
|
|
25223
|
+
quantity: PropTypes.number.isRequired,
|
|
25224
|
+
image: T['io.flow.experience.v0.models.order_summary_image'],
|
|
25225
|
+
center: PropTypes.string,
|
|
25226
|
+
price: T['io.flow.common.v0.models.money'],
|
|
25227
|
+
discount: T['io.flow.experience.v0.models.localized_line_item_discount'],
|
|
25228
|
+
discounts: PropTypes.arrayOf(T['io.flow.experience.v0.models.localized_line_item_discount']),
|
|
25229
|
+
attributes: PropTypes.objectOf(PropTypes.string),
|
|
25230
|
+
local: T['io.flow.catalog.v0.models.local'].isRequired,
|
|
25231
|
+
shipment_estimate: T['io.flow.common.v0.models.datetime_range'],
|
|
25232
|
+
price_source: T['io.flow.common.v0.unions.price_source'],
|
|
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
25410
|
});
|
|
25017
25411
|
|
|
25018
|
-
T['io.flow.
|
|
25019
|
-
|
|
25020
|
-
|
|
25021
|
-
|
|
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
|
-
});
|
|
25031
|
-
|
|
25032
|
-
T['io.flow.internal.v0.models.debug_order_transaction'] = PropTypes.exact({
|
|
25033
|
-
order: T['io.flow.internal.v0.models.debug_order'].isRequired,
|
|
25034
|
-
debug: T['io.flow.internal.v0.models.debug_details'].isRequired,
|
|
25035
|
-
transactions: PropTypes.arrayOf(T['io.flow.internal.v0.models.debug_order_transaction_details']).isRequired,
|
|
25036
|
-
reporting: T['io.flow.internal.v0.models.reporting_details'].isRequired,
|
|
25037
|
-
banking: T['io.flow.internal.v0.models.debug_banking_details'].isRequired,
|
|
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'];
|