@flowio/api-internal-prop-types 9.24.114 → 9.24.115
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 +361 -44
- package/lib/api-internal.js +1 -1
- package/package.json +2 -2
- package/src/api-internal.d.ts +361 -44
- package/src/api-internal.js +1177 -847
package/src/api-internal.js
CHANGED
|
@@ -18,15 +18,6 @@ T['io.flow.organization.v0.models.region_setting'] = PropTypes.exact({
|
|
|
18
18
|
status: T['io.flow.common.v0.enums.availability_status'].isRequired,
|
|
19
19
|
});
|
|
20
20
|
|
|
21
|
-
T['io.flow.organization.v0.models.organization_configuration_reference'] = PropTypes.exact({
|
|
22
|
-
id: PropTypes.string.isRequired,
|
|
23
|
-
});
|
|
24
|
-
|
|
25
|
-
T['io.flow.organization.v0.models.organization_default_configurations'] = PropTypes.exact({
|
|
26
|
-
id: PropTypes.string.isRequired,
|
|
27
|
-
checkout_configuration: T['io.flow.organization.v0.models.organization_configuration_reference'].isRequired,
|
|
28
|
-
});
|
|
29
|
-
|
|
30
21
|
T['io.flow.organization.v0.enums.invitation_error_code'] = PropTypes.oneOf(['expired', 'invalid_email']);
|
|
31
22
|
|
|
32
23
|
T['io.flow.organization.v0.models.invitation_error'] = PropTypes.exact({
|
|
@@ -68,13 +59,15 @@ T['io.flow.organization.v0.models.country_picker'] = PropTypes.exact({
|
|
|
68
59
|
source: T['io.flow.organization.v0.enums.country_picker_source'].isRequired,
|
|
69
60
|
});
|
|
70
61
|
|
|
71
|
-
T['io.flow.sellability.v0.enums.sellability_error_code'] = PropTypes.oneOf(['insufficient_details', 'ineligible_category']);
|
|
62
|
+
T['io.flow.sellability.v0.enums.sellability_error_code'] = PropTypes.oneOf(['insufficient_details', 'ineligible_category', 'wait_for_high_fidelity']);
|
|
72
63
|
|
|
73
64
|
T['io.flow.sellability.v0.models.sellability_error'] = PropTypes.exact({
|
|
74
65
|
code: T['io.flow.sellability.v0.enums.sellability_error_code'].isRequired,
|
|
75
66
|
messages: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
76
67
|
});
|
|
77
68
|
|
|
69
|
+
T['io.flow.sellability.v0.enums.sellability_request_status'] = PropTypes.oneOf(['commit']);
|
|
70
|
+
|
|
78
71
|
T['io.flow.sellability.v0.models.product_sellability_price'] = PropTypes.exact({
|
|
79
72
|
currency: PropTypes.string.isRequired,
|
|
80
73
|
amount: PropTypes.number.isRequired,
|
|
@@ -290,8 +283,6 @@ T['io.flow.common.v0.models.partner_reference'] = PropTypes.exact({
|
|
|
290
283
|
id: PropTypes.string.isRequired,
|
|
291
284
|
});
|
|
292
285
|
|
|
293
|
-
T['io.flow.fulfillment.v0.enums.center_capability'] = PropTypes.oneOf(['international', 'domestic', 'crossdock', 'commercial_invoice']);
|
|
294
|
-
|
|
295
286
|
T['io.flow.fulfillment.v0.models.number_range'] = PropTypes.exact({
|
|
296
287
|
min: PropTypes.number.isRequired,
|
|
297
288
|
max: PropTypes.number.isRequired,
|
|
@@ -815,19 +806,6 @@ T['io.flow.reference.v0.models.localized_translation'] = PropTypes.exact({
|
|
|
815
806
|
name: PropTypes.string.isRequired,
|
|
816
807
|
});
|
|
817
808
|
|
|
818
|
-
T['io.flow.reference.v0.models.currency_symbols'] = PropTypes.exact({
|
|
819
|
-
primary: PropTypes.string.isRequired,
|
|
820
|
-
narrow: PropTypes.string,
|
|
821
|
-
});
|
|
822
|
-
|
|
823
|
-
T['io.flow.reference.v0.models.currency'] = PropTypes.exact({
|
|
824
|
-
name: PropTypes.string.isRequired,
|
|
825
|
-
iso_4217_3: PropTypes.string.isRequired,
|
|
826
|
-
number_decimals: PropTypes.number.isRequired,
|
|
827
|
-
symbols: T['io.flow.reference.v0.models.currency_symbols'],
|
|
828
|
-
default_locale: PropTypes.string,
|
|
829
|
-
});
|
|
830
|
-
|
|
831
809
|
T['io.flow.trueup.v0.models.label_surcharge_detail_per_weight_unit'] = PropTypes.exact({
|
|
832
810
|
discriminator: PropTypes.oneOf(['per_weight_unit']).isRequired,
|
|
833
811
|
fee: PropTypes.number.isRequired,
|
|
@@ -1368,6 +1346,14 @@ T['io.flow.experience.v0.models.address_configuration_province_translation'] = P
|
|
|
1368
1346
|
name: PropTypes.string.isRequired,
|
|
1369
1347
|
});
|
|
1370
1348
|
|
|
1349
|
+
T['io.flow.shopify.markets.internal.event.v0.models.shopify_order_risk_assessment_deleted'] = PropTypes.exact({
|
|
1350
|
+
discriminator: PropTypes.oneOf(['shopify_order_risk_assessment_deleted']).isRequired,
|
|
1351
|
+
event_id: PropTypes.string.isRequired,
|
|
1352
|
+
timestamp: PropTypes.string.isRequired,
|
|
1353
|
+
organization: PropTypes.string.isRequired,
|
|
1354
|
+
id: PropTypes.string.isRequired,
|
|
1355
|
+
});
|
|
1356
|
+
|
|
1371
1357
|
T['io.flow.shopify.markets.internal.event.v0.models.shopify_markets_best_selling_product_deleted'] = PropTypes.exact({
|
|
1372
1358
|
discriminator: PropTypes.oneOf(['shopify_markets_best_selling_product_deleted']).isRequired,
|
|
1373
1359
|
event_id: PropTypes.string.isRequired,
|
|
@@ -1439,6 +1425,20 @@ T['io.flow.shopify.markets.internal.event.v0.models.shopify_markets_shop_deleted
|
|
|
1439
1425
|
id: PropTypes.string.isRequired,
|
|
1440
1426
|
});
|
|
1441
1427
|
|
|
1428
|
+
T['io.flow.shopify.markets.internal.v0.models.shopify_order_risk_assessment'] = PropTypes.exact({
|
|
1429
|
+
id: PropTypes.string.isRequired,
|
|
1430
|
+
risk_level: PropTypes.string.isRequired,
|
|
1431
|
+
assessment_created_at: PropTypes.string.isRequired,
|
|
1432
|
+
});
|
|
1433
|
+
|
|
1434
|
+
T['io.flow.shopify.markets.internal.event.v0.models.shopify_order_risk_assessment_upserted'] = PropTypes.exact({
|
|
1435
|
+
discriminator: PropTypes.oneOf(['shopify_order_risk_assessment_upserted']).isRequired,
|
|
1436
|
+
event_id: PropTypes.string.isRequired,
|
|
1437
|
+
timestamp: PropTypes.string.isRequired,
|
|
1438
|
+
organization: PropTypes.string.isRequired,
|
|
1439
|
+
assessment: T['io.flow.shopify.markets.internal.v0.models.shopify_order_risk_assessment'].isRequired,
|
|
1440
|
+
});
|
|
1441
|
+
|
|
1442
1442
|
T['io.flow.shopify.markets.internal.v0.models.shopify_shop_statistics'] = PropTypes.exact({
|
|
1443
1443
|
id: PropTypes.string.isRequired,
|
|
1444
1444
|
initial_catalog_synced_at: PropTypes.string,
|
|
@@ -1547,12 +1547,6 @@ T['io.flow.fulfillment.v0.models.scheduled_pickup'] = PropTypes.exact({
|
|
|
1547
1547
|
minute_of_hour: PropTypes.string.isRequired,
|
|
1548
1548
|
});
|
|
1549
1549
|
|
|
1550
|
-
T['io.flow.fulfillment.v0.models.available_service'] = PropTypes.exact({
|
|
1551
|
-
service: PropTypes.string.isRequired,
|
|
1552
|
-
scheduled_pickups: PropTypes.arrayOf(T['io.flow.fulfillment.v0.models.scheduled_pickup']),
|
|
1553
|
-
lead_days: T['io.flow.fulfillment.v0.models.number_range'],
|
|
1554
|
-
});
|
|
1555
|
-
|
|
1556
1550
|
T['io.flow.merchant.onboarding.v0.models.onboarding_merchant_scheduled_pickup'] = PropTypes.exact({
|
|
1557
1551
|
day_of_week: T['io.flow.common.v0.enums.day_of_week'].isRequired,
|
|
1558
1552
|
window: T['io.flow.merchant.onboarding.v0.models.onboarding_merchant_pickup_window'].isRequired,
|
|
@@ -6411,6 +6405,12 @@ T['io.flow.field.validation.v0.unions.field_validation_rule'] = PropTypes.oneOfT
|
|
|
6411
6405
|
T['io.flow.field.validation.v0.models.field_validation_pattern'],
|
|
6412
6406
|
]);
|
|
6413
6407
|
|
|
6408
|
+
T['io.flow.payment.v0.models.dispute_reference'] = PropTypes.exact({
|
|
6409
|
+
discriminator: PropTypes.oneOf(['dispute_reference']).isRequired,
|
|
6410
|
+
id: PropTypes.string.isRequired,
|
|
6411
|
+
key: PropTypes.string.isRequired,
|
|
6412
|
+
});
|
|
6413
|
+
|
|
6414
6414
|
T['io.flow.payment.v0.models.card_payment_source_form'] = PropTypes.exact({
|
|
6415
6415
|
discriminator: PropTypes.oneOf(['card_payment_source_form']).isRequired,
|
|
6416
6416
|
customer_number: PropTypes.string.isRequired,
|
|
@@ -6453,12 +6453,6 @@ T['io.flow.payment.v0.models.issuer_v1'] = PropTypes.exact({
|
|
|
6453
6453
|
country: PropTypes.string,
|
|
6454
6454
|
});
|
|
6455
6455
|
|
|
6456
|
-
T['io.flow.payment.v0.models.dispute_reference'] = PropTypes.exact({
|
|
6457
|
-
discriminator: PropTypes.oneOf(['dispute_reference']).isRequired,
|
|
6458
|
-
id: PropTypes.string.isRequired,
|
|
6459
|
-
key: PropTypes.string.isRequired,
|
|
6460
|
-
});
|
|
6461
|
-
|
|
6462
6456
|
T['io.flow.payment.v0.enums.transfer_status'] = PropTypes.oneOf(['succeeded', 'canceled']);
|
|
6463
6457
|
|
|
6464
6458
|
T['io.flow.payment.v0.enums.transfer_type'] = PropTypes.oneOf([
|
|
@@ -7580,11 +7574,6 @@ T['io.flow.return.v0.models.return_source_flow'] = PropTypes.exact({
|
|
|
7580
7574
|
attributes: PropTypes.objectOf(PropTypes.string),
|
|
7581
7575
|
});
|
|
7582
7576
|
|
|
7583
|
-
T['io.flow.label.v0.models.additional_services_requested'] = PropTypes.exact({
|
|
7584
|
-
name: PropTypes.string.isRequired,
|
|
7585
|
-
description: PropTypes.string,
|
|
7586
|
-
});
|
|
7587
|
-
|
|
7588
7577
|
T['io.flow.label.v0.enums.package_dimensions_source'] = PropTypes.oneOf([
|
|
7589
7578
|
'provided',
|
|
7590
7579
|
'item_dimensions_estimated',
|
|
@@ -7797,29 +7786,6 @@ T['io.flow.google.pay.v0.models.encrypted_message'] = PropTypes.exact({
|
|
|
7797
7786
|
paymentMethodDetails: T['io.flow.google.pay.v0.models.payment_method_details'].isRequired,
|
|
7798
7787
|
});
|
|
7799
7788
|
|
|
7800
|
-
T['io.flow.fulfillment.v0.enums.ratecard_owner'] = PropTypes.oneOf(['flow', 'organization']);
|
|
7801
|
-
|
|
7802
|
-
T['io.flow.ratecard.v0.models.ratecard_summary'] = PropTypes.exact({
|
|
7803
|
-
id: PropTypes.string.isRequired,
|
|
7804
|
-
number: PropTypes.string.isRequired,
|
|
7805
|
-
ratecard_owner: T['io.flow.fulfillment.v0.enums.ratecard_owner'].isRequired,
|
|
7806
|
-
});
|
|
7807
|
-
|
|
7808
|
-
T['io.flow.ratecard.v0.models.lane_summary'] = PropTypes.exact({
|
|
7809
|
-
id: PropTypes.string.isRequired,
|
|
7810
|
-
ratecard: T['io.flow.ratecard.v0.models.ratecard_summary'].isRequired,
|
|
7811
|
-
});
|
|
7812
|
-
|
|
7813
|
-
T['io.flow.label.v0.models.shipping_label_ratecard_summary'] = PropTypes.exact({
|
|
7814
|
-
id: PropTypes.string,
|
|
7815
|
-
ratecard_owner: T['io.flow.fulfillment.v0.enums.ratecard_owner'].isRequired,
|
|
7816
|
-
rate_level_key: PropTypes.string,
|
|
7817
|
-
glbe_shipping_method_id: PropTypes.string,
|
|
7818
|
-
glbe_proposition_name: PropTypes.string,
|
|
7819
|
-
channel_revenue_share_percentage: PropTypes.number,
|
|
7820
|
-
shopify_grc_gid: PropTypes.string,
|
|
7821
|
-
});
|
|
7822
|
-
|
|
7823
7789
|
T['io.flow.ratecard.v0.models.ratecard_service_summary'] = PropTypes.exact({
|
|
7824
7790
|
id: PropTypes.string.isRequired,
|
|
7825
7791
|
name: PropTypes.string.isRequired,
|
|
@@ -8322,6 +8288,14 @@ T['io.flow.internal.v0.models.shopify_product_create_deleted'] = PropTypes.exact
|
|
|
8322
8288
|
id: PropTypes.string.isRequired,
|
|
8323
8289
|
});
|
|
8324
8290
|
|
|
8291
|
+
T['io.flow.internal.v0.models.shopify_order_risk_assessment_deleted'] = PropTypes.exact({
|
|
8292
|
+
discriminator: PropTypes.oneOf(['shopify_order_risk_assessment_deleted']).isRequired,
|
|
8293
|
+
event_id: PropTypes.string.isRequired,
|
|
8294
|
+
timestamp: PropTypes.string.isRequired,
|
|
8295
|
+
organization: PropTypes.string.isRequired,
|
|
8296
|
+
id: PropTypes.string.isRequired,
|
|
8297
|
+
});
|
|
8298
|
+
|
|
8325
8299
|
T['io.flow.internal.v0.models.shopify_markets_best_selling_product_deleted'] = PropTypes.exact({
|
|
8326
8300
|
discriminator: PropTypes.oneOf(['shopify_markets_best_selling_product_deleted']).isRequired,
|
|
8327
8301
|
event_id: PropTypes.string.isRequired,
|
|
@@ -8483,13 +8457,6 @@ T['io.flow.internal.v0.models.partner_request_deleted'] = PropTypes.exact({
|
|
|
8483
8457
|
id: PropTypes.string.isRequired,
|
|
8484
8458
|
});
|
|
8485
8459
|
|
|
8486
|
-
T['io.flow.internal.v0.models.spp_tracker_update_request_deleted'] = PropTypes.exact({
|
|
8487
|
-
discriminator: PropTypes.oneOf(['spp_tracker_update_request_deleted']).isRequired,
|
|
8488
|
-
event_id: PropTypes.string.isRequired,
|
|
8489
|
-
timestamp: PropTypes.string.isRequired,
|
|
8490
|
-
id: PropTypes.string.isRequired,
|
|
8491
|
-
});
|
|
8492
|
-
|
|
8493
8460
|
T['io.flow.internal.v0.models.partner_tracking_subscription_deleted'] = PropTypes.exact({
|
|
8494
8461
|
discriminator: PropTypes.oneOf(['partner_tracking_subscription_deleted']).isRequired,
|
|
8495
8462
|
event_id: PropTypes.string.isRequired,
|
|
@@ -9290,6 +9257,33 @@ T['io.flow.payment.v0.models.virtual_card_reference'] = PropTypes.exact({
|
|
|
9290
9257
|
id: PropTypes.string.isRequired,
|
|
9291
9258
|
});
|
|
9292
9259
|
|
|
9260
|
+
T['io.flow.fulfillment.v0.enums.center_capability'] = PropTypes.oneOf(['international', 'domestic', 'crossdock', 'commercial_invoice']);
|
|
9261
|
+
|
|
9262
|
+
T['io.flow.fulfillment.v0.models.available_service'] = PropTypes.exact({
|
|
9263
|
+
service: PropTypes.string.isRequired,
|
|
9264
|
+
scheduled_pickups: PropTypes.arrayOf(T['io.flow.fulfillment.v0.models.scheduled_pickup']),
|
|
9265
|
+
lead_days: T['io.flow.fulfillment.v0.models.number_range'],
|
|
9266
|
+
});
|
|
9267
|
+
|
|
9268
|
+
T['io.flow.label.v0.models.additional_services_requested'] = PropTypes.exact({
|
|
9269
|
+
name: PropTypes.string.isRequired,
|
|
9270
|
+
description: PropTypes.string,
|
|
9271
|
+
});
|
|
9272
|
+
|
|
9273
|
+
T['io.flow.internal.v0.models.internal_item'] = PropTypes.exact({
|
|
9274
|
+
id: PropTypes.string.isRequired,
|
|
9275
|
+
organization: PropTypes.string.isRequired,
|
|
9276
|
+
catalog: PropTypes.string.isRequired,
|
|
9277
|
+
name: PropTypes.string.isRequired,
|
|
9278
|
+
number: PropTypes.string.isRequired,
|
|
9279
|
+
currency: PropTypes.string.isRequired,
|
|
9280
|
+
price: PropTypes.number.isRequired,
|
|
9281
|
+
categories: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
9282
|
+
attributes: PropTypes.objectOf(PropTypes.string).isRequired,
|
|
9283
|
+
sku: PropTypes.string,
|
|
9284
|
+
barcode: PropTypes.string,
|
|
9285
|
+
});
|
|
9286
|
+
|
|
9293
9287
|
T['io.flow.reference.v0.enums.postal_type'] = PropTypes.oneOf(['eircode', 'pin', 'postal', 'zip']);
|
|
9294
9288
|
|
|
9295
9289
|
T['io.flow.reference.v0.enums.province_type'] = PropTypes.oneOf([
|
|
@@ -10172,11 +10166,11 @@ T['io.flow.product.v0.models.product_taxonomy_category'] = PropTypes.exact({
|
|
|
10172
10166
|
T['io.flow.sellability.v0.models.product_sellability_form'] = PropTypes.exact({
|
|
10173
10167
|
shop_id: PropTypes.string.isRequired,
|
|
10174
10168
|
product_id: PropTypes.string,
|
|
10175
|
-
request_id: PropTypes.string.isRequired,
|
|
10176
10169
|
name: PropTypes.string.isRequired,
|
|
10177
10170
|
price: T['io.flow.sellability.v0.models.product_sellability_price'].isRequired,
|
|
10178
10171
|
description: PropTypes.string.isRequired,
|
|
10179
10172
|
taxonomy_category: T['io.flow.product.v0.models.product_taxonomy_category'].isRequired,
|
|
10173
|
+
status: T['io.flow.sellability.v0.enums.sellability_request_status'],
|
|
10180
10174
|
});
|
|
10181
10175
|
|
|
10182
10176
|
T['io.flow.product.v0.models.product'] = PropTypes.exact({
|
|
@@ -10324,6 +10318,20 @@ T['io.flow.internal.v0.models.shopify_product_bundle_upserted'] = PropTypes.exac
|
|
|
10324
10318
|
shopify_product_bundle: T['io.flow.internal.v0.models.shopify_product_bundle'].isRequired,
|
|
10325
10319
|
});
|
|
10326
10320
|
|
|
10321
|
+
T['io.flow.internal.v0.models.shopify_order_risk_assessment'] = PropTypes.exact({
|
|
10322
|
+
id: PropTypes.string.isRequired,
|
|
10323
|
+
risk_level: PropTypes.string.isRequired,
|
|
10324
|
+
assessment_created_at: PropTypes.string.isRequired,
|
|
10325
|
+
});
|
|
10326
|
+
|
|
10327
|
+
T['io.flow.internal.v0.models.shopify_order_risk_assessment_upserted'] = PropTypes.exact({
|
|
10328
|
+
discriminator: PropTypes.oneOf(['shopify_order_risk_assessment_upserted']).isRequired,
|
|
10329
|
+
event_id: PropTypes.string.isRequired,
|
|
10330
|
+
timestamp: PropTypes.string.isRequired,
|
|
10331
|
+
organization: PropTypes.string.isRequired,
|
|
10332
|
+
assessment: T['io.flow.internal.v0.models.shopify_order_risk_assessment'].isRequired,
|
|
10333
|
+
});
|
|
10334
|
+
|
|
10327
10335
|
T['io.flow.internal.v0.models.fulfillment_snapshot'] = PropTypes.exact({
|
|
10328
10336
|
tracking_source: PropTypes.string.isRequired,
|
|
10329
10337
|
fulfillment_status: PropTypes.string,
|
|
@@ -10873,6 +10881,29 @@ T['io.flow.internal.v0.models.shopify_check_inventory_error'] = PropTypes.exact(
|
|
|
10873
10881
|
numbers: PropTypes.arrayOf(PropTypes.string),
|
|
10874
10882
|
});
|
|
10875
10883
|
|
|
10884
|
+
T['io.flow.fulfillment.v0.enums.ratecard_owner'] = PropTypes.oneOf(['flow', 'organization']);
|
|
10885
|
+
|
|
10886
|
+
T['io.flow.ratecard.v0.models.ratecard_summary'] = PropTypes.exact({
|
|
10887
|
+
id: PropTypes.string.isRequired,
|
|
10888
|
+
number: PropTypes.string.isRequired,
|
|
10889
|
+
ratecard_owner: T['io.flow.fulfillment.v0.enums.ratecard_owner'].isRequired,
|
|
10890
|
+
});
|
|
10891
|
+
|
|
10892
|
+
T['io.flow.ratecard.v0.models.lane_summary'] = PropTypes.exact({
|
|
10893
|
+
id: PropTypes.string.isRequired,
|
|
10894
|
+
ratecard: T['io.flow.ratecard.v0.models.ratecard_summary'].isRequired,
|
|
10895
|
+
});
|
|
10896
|
+
|
|
10897
|
+
T['io.flow.label.v0.models.shipping_label_ratecard_summary'] = PropTypes.exact({
|
|
10898
|
+
id: PropTypes.string,
|
|
10899
|
+
ratecard_owner: T['io.flow.fulfillment.v0.enums.ratecard_owner'].isRequired,
|
|
10900
|
+
rate_level_key: PropTypes.string,
|
|
10901
|
+
glbe_shipping_method_id: PropTypes.string,
|
|
10902
|
+
glbe_proposition_name: PropTypes.string,
|
|
10903
|
+
channel_revenue_share_percentage: PropTypes.number,
|
|
10904
|
+
shopify_grc_gid: PropTypes.string,
|
|
10905
|
+
});
|
|
10906
|
+
|
|
10876
10907
|
T['io.flow.organization.onboarding.state.v0.enums.onboarding_blocked_reason'] = PropTypes.oneOf([
|
|
10877
10908
|
'street_address_is_blank_3pl',
|
|
10878
10909
|
'street_address_is_po_box_3pl',
|
|
@@ -11202,6 +11233,7 @@ T['io.flow.internal.v0.models.restriction_rule_effect_upserted'] = PropTypes.exa
|
|
|
11202
11233
|
restriction_rule_effect: T['io.flow.internal.v0.models.restriction_rule_effect'].isRequired,
|
|
11203
11234
|
});
|
|
11204
11235
|
|
|
11236
|
+
T['io.flow.internal.v0.enums.restriction_organization_source'] = PropTypes.oneOf(['shopify', 'enterprise']);
|
|
11205
11237
|
T['io.flow.internal.v0.enums.restriction_action'] = PropTypes.oneOf(['prohibited', 'restricted']);
|
|
11206
11238
|
T['io.flow.internal.v0.enums.organization_source'] = PropTypes.oneOf(['shopify', 'enterprise']);
|
|
11207
11239
|
T['io.flow.internal.v0.enums.keyword_type'] = PropTypes.oneOf(['positive', 'negative']);
|
|
@@ -11276,6 +11308,7 @@ T['io.flow.internal.v0.models.reporting_fulfillment_is'] = PropTypes.exact({
|
|
|
11276
11308
|
tax_inclusive: PropTypes.bool,
|
|
11277
11309
|
duty_inclusive: PropTypes.bool,
|
|
11278
11310
|
manual_payment: PropTypes.bool,
|
|
11311
|
+
manual_capture: PropTypes.bool,
|
|
11279
11312
|
partial_fulfillment: PropTypes.bool,
|
|
11280
11313
|
partial_refund: PropTypes.bool,
|
|
11281
11314
|
});
|
|
@@ -11561,196 +11594,117 @@ T['io.flow.internal.v0.models.rate_source_composition_summary'] = PropTypes.exac
|
|
|
11561
11594
|
percentage_composition: PropTypes.number.isRequired,
|
|
11562
11595
|
});
|
|
11563
11596
|
|
|
11564
|
-
T['io.flow.
|
|
11565
|
-
|
|
11566
|
-
|
|
11567
|
-
|
|
11568
|
-
|
|
11569
|
-
|
|
11570
|
-
|
|
11571
|
-
|
|
11572
|
-
|
|
11573
|
-
|
|
11597
|
+
T['io.flow.internal.v0.models.currency_internal_rate'] = PropTypes.exact({
|
|
11598
|
+
id: PropTypes.string.isRequired,
|
|
11599
|
+
organization_id: PropTypes.string.isRequired,
|
|
11600
|
+
base: PropTypes.string.isRequired,
|
|
11601
|
+
target: PropTypes.string.isRequired,
|
|
11602
|
+
effective_at: PropTypes.string.isRequired,
|
|
11603
|
+
spot_rate: PropTypes.number.isRequired,
|
|
11604
|
+
flow_margin: PropTypes.number.isRequired,
|
|
11605
|
+
flow_rate: PropTypes.number.isRequired,
|
|
11606
|
+
organization_margin: PropTypes.number.isRequired,
|
|
11607
|
+
organization_rate: PropTypes.number.isRequired,
|
|
11608
|
+
rate_lock_unit: PropTypes.string.isRequired,
|
|
11609
|
+
rate_lock_value: PropTypes.number.isRequired,
|
|
11610
|
+
created_at: PropTypes.string.isRequired,
|
|
11611
|
+
updated_at: PropTypes.string.isRequired,
|
|
11612
|
+
updated_by_user_id: PropTypes.string.isRequired,
|
|
11574
11613
|
});
|
|
11575
11614
|
|
|
11576
|
-
T['io.flow.
|
|
11577
|
-
|
|
11578
|
-
|
|
11579
|
-
|
|
11580
|
-
|
|
11615
|
+
T['io.flow.internal.v0.models.rate_upserted_v2'] = PropTypes.exact({
|
|
11616
|
+
discriminator: PropTypes.oneOf(['rate_upserted_v2']).isRequired,
|
|
11617
|
+
event_id: PropTypes.string.isRequired,
|
|
11618
|
+
timestamp: PropTypes.string.isRequired,
|
|
11619
|
+
rate: T['io.flow.internal.v0.models.currency_internal_rate'].isRequired,
|
|
11581
11620
|
});
|
|
11582
11621
|
|
|
11583
|
-
T['io.flow.
|
|
11584
|
-
|
|
11585
|
-
|
|
11586
|
-
|
|
11587
|
-
|
|
11588
|
-
experience: T['io.flow.experience.v0.models.experience_geo'].isRequired,
|
|
11622
|
+
T['io.flow.internal.v0.models.rate_deleted_v2'] = PropTypes.exact({
|
|
11623
|
+
discriminator: PropTypes.oneOf(['rate_deleted_v2']).isRequired,
|
|
11624
|
+
event_id: PropTypes.string.isRequired,
|
|
11625
|
+
timestamp: PropTypes.string.isRequired,
|
|
11626
|
+
rate: T['io.flow.internal.v0.models.currency_internal_rate'].isRequired,
|
|
11589
11627
|
});
|
|
11590
11628
|
|
|
11591
|
-
T['io.flow.
|
|
11592
|
-
|
|
11629
|
+
T['io.flow.internal.v0.enums.duty_selection_rule'] = PropTypes.oneOf([
|
|
11630
|
+
'lookup_by_tariff_code',
|
|
11631
|
+
'lookup_by_hs6_code',
|
|
11632
|
+
'fallback_for_jurisdiction',
|
|
11633
|
+
'domestic_sale',
|
|
11634
|
+
'intra_community_sale',
|
|
11635
|
+
'reimport',
|
|
11636
|
+
'override',
|
|
11637
|
+
'preferential_rate',
|
|
11638
|
+
]);
|
|
11639
|
+
|
|
11640
|
+
T['io.flow.internal.v0.models.quote'] = PropTypes.exact({
|
|
11641
|
+
id: PropTypes.string.isRequired,
|
|
11642
|
+
base: PropTypes.string.isRequired,
|
|
11643
|
+
target: PropTypes.string.isRequired,
|
|
11644
|
+
value: PropTypes.number.isRequired,
|
|
11645
|
+
effective_at: PropTypes.string.isRequired,
|
|
11646
|
+
expires_at: PropTypes.string.isRequired,
|
|
11593
11647
|
});
|
|
11594
11648
|
|
|
11595
|
-
T['io.flow.internal.v0.models.
|
|
11596
|
-
|
|
11649
|
+
T['io.flow.internal.v0.models.quote_upserted'] = PropTypes.exact({
|
|
11650
|
+
discriminator: PropTypes.oneOf(['quote_upserted']).isRequired,
|
|
11651
|
+
event_id: PropTypes.string.isRequired,
|
|
11652
|
+
timestamp: PropTypes.string.isRequired,
|
|
11653
|
+
quote: T['io.flow.internal.v0.models.quote'].isRequired,
|
|
11597
11654
|
});
|
|
11598
11655
|
|
|
11599
|
-
T['io.flow.internal.v0.models.
|
|
11600
|
-
|
|
11601
|
-
|
|
11656
|
+
T['io.flow.internal.v0.models.restriction_keywords'] = PropTypes.exact({
|
|
11657
|
+
positive_keywords: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
11658
|
+
negative_keywords: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
11602
11659
|
});
|
|
11603
11660
|
|
|
11604
|
-
T['io.flow.internal.v0.models.
|
|
11605
|
-
|
|
11606
|
-
|
|
11661
|
+
T['io.flow.internal.v0.models.restriction_rule_summary'] = PropTypes.exact({
|
|
11662
|
+
id: PropTypes.string.isRequired,
|
|
11663
|
+
name: PropTypes.string.isRequired,
|
|
11664
|
+
description: PropTypes.string.isRequired,
|
|
11607
11665
|
});
|
|
11608
11666
|
|
|
11609
|
-
T['io.flow.internal.v0.models.
|
|
11610
|
-
|
|
11667
|
+
T['io.flow.internal.v0.models.restriction_pending'] = PropTypes.exact({
|
|
11668
|
+
rule: T['io.flow.internal.v0.models.restriction_rule_summary'].isRequired,
|
|
11669
|
+
count: PropTypes.number.isRequired,
|
|
11611
11670
|
});
|
|
11612
11671
|
|
|
11613
|
-
T['io.flow.internal.v0.
|
|
11614
|
-
|
|
11615
|
-
|
|
11616
|
-
|
|
11672
|
+
T['io.flow.internal.v0.enums.restriction_state_review_status'] = PropTypes.oneOf(['reviewed', 'in_review']);
|
|
11673
|
+
|
|
11674
|
+
T['io.flow.internal.v0.models.product_restriction_state'] = PropTypes.exact({
|
|
11675
|
+
id: PropTypes.string.isRequired,
|
|
11676
|
+
organization_id: PropTypes.string.isRequired,
|
|
11677
|
+
product_number: PropTypes.string.isRequired,
|
|
11678
|
+
review_status: T['io.flow.internal.v0.enums.restriction_state_review_status'].isRequired,
|
|
11679
|
+
pending_restriction_count: PropTypes.number,
|
|
11680
|
+
pending_verification_count: PropTypes.number,
|
|
11681
|
+
oldest_pending_restriction_date: PropTypes.string,
|
|
11682
|
+
oldest_pending_verification_date: PropTypes.string,
|
|
11617
11683
|
});
|
|
11618
11684
|
|
|
11619
|
-
T['io.flow.internal.v0.models.
|
|
11685
|
+
T['io.flow.internal.v0.models.product_restriction_state_updated'] = PropTypes.exact({
|
|
11686
|
+
discriminator: PropTypes.oneOf(['product_restriction_state_updated']).isRequired,
|
|
11620
11687
|
event_id: PropTypes.string.isRequired,
|
|
11621
11688
|
timestamp: PropTypes.string.isRequired,
|
|
11622
|
-
|
|
11623
|
-
|
|
11624
|
-
|
|
11625
|
-
});
|
|
11626
|
-
|
|
11627
|
-
T['io.flow.internal.v0.models.rate_source_summary'] = PropTypes.exact({
|
|
11628
|
-
discriminator: PropTypes.oneOf(['rate-source']).isRequired,
|
|
11629
|
-
key: PropTypes.string.isRequired,
|
|
11630
|
-
destination: T['io.flow.reference.v0.models.country'].isRequired,
|
|
11631
|
-
rate_source_composition_summaries: PropTypes.arrayOf(T['io.flow.internal.v0.models.rate_source_composition_summary']).isRequired,
|
|
11632
|
-
});
|
|
11633
|
-
|
|
11634
|
-
T['io.flow.internal.v0.models.rate_source_summary_upserted'] = PropTypes.exact({
|
|
11635
|
-
discriminator: PropTypes.oneOf(['rate_source_summary_upserted']).isRequired,
|
|
11636
|
-
event_id: PropTypes.string.isRequired,
|
|
11637
|
-
timestamp: PropTypes.string.isRequired,
|
|
11638
|
-
rate_source_summary: T['io.flow.internal.v0.models.rate_source_summary'].isRequired,
|
|
11639
|
-
});
|
|
11640
|
-
|
|
11641
|
-
T['io.flow.internal.v0.models.rate_source_summary_deleted'] = PropTypes.exact({
|
|
11642
|
-
discriminator: PropTypes.oneOf(['rate_source_summary_deleted']).isRequired,
|
|
11643
|
-
event_id: PropTypes.string.isRequired,
|
|
11644
|
-
timestamp: PropTypes.string.isRequired,
|
|
11645
|
-
rate_source_summary: T['io.flow.internal.v0.models.rate_source_summary'].isRequired,
|
|
11646
|
-
});
|
|
11647
|
-
|
|
11648
|
-
T['io.flow.internal.v0.models.rate_destination_freshness_summary'] = PropTypes.exact({
|
|
11649
|
-
destination: T['io.flow.reference.v0.models.country'].isRequired,
|
|
11650
|
-
percentage_updated: PropTypes.number.isRequired,
|
|
11651
|
-
});
|
|
11652
|
-
|
|
11653
|
-
T['io.flow.internal.v0.models.rate_freshness_summary'] = PropTypes.exact({
|
|
11654
|
-
discriminator: PropTypes.oneOf(['rate-freshness']).isRequired,
|
|
11655
|
-
key: PropTypes.string.isRequired,
|
|
11656
|
-
updated_since: PropTypes.string.isRequired,
|
|
11657
|
-
destination_freshness_summaries: PropTypes.arrayOf(T['io.flow.internal.v0.models.rate_destination_freshness_summary']).isRequired,
|
|
11658
|
-
});
|
|
11659
|
-
|
|
11660
|
-
T['io.flow.internal.v0.unions.internal_harmonization_statistic'] = PropTypes.oneOfType([
|
|
11661
|
-
T['io.flow.internal.v0.models.time_to_classify'],
|
|
11662
|
-
T['io.flow.internal.v0.models.time_to_classify_aggregated'],
|
|
11663
|
-
T['io.flow.internal.v0.models.rate_source_summary'],
|
|
11664
|
-
T['io.flow.internal.v0.models.rate_freshness_summary'],
|
|
11665
|
-
]);
|
|
11666
|
-
|
|
11667
|
-
T['io.flow.internal.v0.models.rate_freshness_summary_upserted'] = PropTypes.exact({
|
|
11668
|
-
discriminator: PropTypes.oneOf(['rate_freshness_summary_upserted']).isRequired,
|
|
11669
|
-
event_id: PropTypes.string.isRequired,
|
|
11670
|
-
timestamp: PropTypes.string.isRequired,
|
|
11671
|
-
rate_freshness_summary: T['io.flow.internal.v0.models.rate_freshness_summary'].isRequired,
|
|
11672
|
-
});
|
|
11673
|
-
|
|
11674
|
-
T['io.flow.internal.v0.models.rate_freshness_summary_deleted'] = PropTypes.exact({
|
|
11675
|
-
discriminator: PropTypes.oneOf(['rate_freshness_summary_deleted']).isRequired,
|
|
11676
|
-
event_id: PropTypes.string.isRequired,
|
|
11677
|
-
timestamp: PropTypes.string.isRequired,
|
|
11678
|
-
rate_freshness_summary: T['io.flow.internal.v0.models.rate_freshness_summary'].isRequired,
|
|
11679
|
-
});
|
|
11680
|
-
|
|
11681
|
-
T['io.flow.internal.v0.models.currency_internal_rate'] = PropTypes.exact({
|
|
11682
|
-
id: PropTypes.string.isRequired,
|
|
11683
|
-
organization_id: PropTypes.string.isRequired,
|
|
11684
|
-
base: PropTypes.string.isRequired,
|
|
11685
|
-
target: PropTypes.string.isRequired,
|
|
11686
|
-
effective_at: PropTypes.string.isRequired,
|
|
11687
|
-
spot_rate: PropTypes.number.isRequired,
|
|
11688
|
-
flow_margin: PropTypes.number.isRequired,
|
|
11689
|
-
flow_rate: PropTypes.number.isRequired,
|
|
11690
|
-
organization_margin: PropTypes.number.isRequired,
|
|
11691
|
-
organization_rate: PropTypes.number.isRequired,
|
|
11692
|
-
rate_lock_unit: PropTypes.string.isRequired,
|
|
11693
|
-
rate_lock_value: PropTypes.number.isRequired,
|
|
11694
|
-
created_at: PropTypes.string.isRequired,
|
|
11695
|
-
updated_at: PropTypes.string.isRequired,
|
|
11696
|
-
updated_by_user_id: PropTypes.string.isRequired,
|
|
11697
|
-
});
|
|
11698
|
-
|
|
11699
|
-
T['io.flow.internal.v0.models.rate_upserted_v2'] = PropTypes.exact({
|
|
11700
|
-
discriminator: PropTypes.oneOf(['rate_upserted_v2']).isRequired,
|
|
11701
|
-
event_id: PropTypes.string.isRequired,
|
|
11702
|
-
timestamp: PropTypes.string.isRequired,
|
|
11703
|
-
rate: T['io.flow.internal.v0.models.currency_internal_rate'].isRequired,
|
|
11689
|
+
organization: PropTypes.string.isRequired,
|
|
11690
|
+
previous_product_restriction_state: T['io.flow.internal.v0.models.product_restriction_state'].isRequired,
|
|
11691
|
+
product_restriction_state: T['io.flow.internal.v0.models.product_restriction_state'].isRequired,
|
|
11704
11692
|
});
|
|
11705
11693
|
|
|
11706
|
-
T['io.flow.internal.v0.models.
|
|
11707
|
-
discriminator: PropTypes.oneOf(['
|
|
11694
|
+
T['io.flow.internal.v0.models.product_restriction_state_inserted'] = PropTypes.exact({
|
|
11695
|
+
discriminator: PropTypes.oneOf(['product_restriction_state_inserted']).isRequired,
|
|
11708
11696
|
event_id: PropTypes.string.isRequired,
|
|
11709
11697
|
timestamp: PropTypes.string.isRequired,
|
|
11710
|
-
|
|
11711
|
-
|
|
11712
|
-
|
|
11713
|
-
T['io.flow.internal.v0.enums.duty_selection_rule'] = PropTypes.oneOf([
|
|
11714
|
-
'lookup_by_tariff_code',
|
|
11715
|
-
'lookup_by_hs6_code',
|
|
11716
|
-
'fallback_for_jurisdiction',
|
|
11717
|
-
'domestic_sale',
|
|
11718
|
-
'intra_community_sale',
|
|
11719
|
-
'reimport',
|
|
11720
|
-
'override',
|
|
11721
|
-
'preferential_rate',
|
|
11722
|
-
]);
|
|
11723
|
-
|
|
11724
|
-
T['io.flow.internal.v0.models.quote'] = PropTypes.exact({
|
|
11725
|
-
id: PropTypes.string.isRequired,
|
|
11726
|
-
base: PropTypes.string.isRequired,
|
|
11727
|
-
target: PropTypes.string.isRequired,
|
|
11728
|
-
value: PropTypes.number.isRequired,
|
|
11729
|
-
effective_at: PropTypes.string.isRequired,
|
|
11730
|
-
expires_at: PropTypes.string.isRequired,
|
|
11698
|
+
organization: PropTypes.string.isRequired,
|
|
11699
|
+
product_restriction_state: T['io.flow.internal.v0.models.product_restriction_state'].isRequired,
|
|
11731
11700
|
});
|
|
11732
11701
|
|
|
11733
|
-
T['io.flow.internal.v0.models.
|
|
11734
|
-
discriminator: PropTypes.oneOf(['
|
|
11702
|
+
T['io.flow.internal.v0.models.product_restriction_state_deleted'] = PropTypes.exact({
|
|
11703
|
+
discriminator: PropTypes.oneOf(['product_restriction_state_deleted']).isRequired,
|
|
11735
11704
|
event_id: PropTypes.string.isRequired,
|
|
11736
11705
|
timestamp: PropTypes.string.isRequired,
|
|
11737
|
-
|
|
11738
|
-
|
|
11739
|
-
|
|
11740
|
-
T['io.flow.internal.v0.models.restriction_keywords'] = PropTypes.exact({
|
|
11741
|
-
positive_keywords: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
11742
|
-
negative_keywords: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
11743
|
-
});
|
|
11744
|
-
|
|
11745
|
-
T['io.flow.internal.v0.models.restriction_rule_summary'] = PropTypes.exact({
|
|
11746
|
-
id: PropTypes.string.isRequired,
|
|
11747
|
-
name: PropTypes.string.isRequired,
|
|
11748
|
-
description: PropTypes.string.isRequired,
|
|
11749
|
-
});
|
|
11750
|
-
|
|
11751
|
-
T['io.flow.internal.v0.models.restriction_pending'] = PropTypes.exact({
|
|
11752
|
-
rule: T['io.flow.internal.v0.models.restriction_rule_summary'].isRequired,
|
|
11753
|
-
count: PropTypes.number.isRequired,
|
|
11706
|
+
organization: PropTypes.string.isRequired,
|
|
11707
|
+
product_restriction_state: T['io.flow.internal.v0.models.product_restriction_state'].isRequired,
|
|
11754
11708
|
});
|
|
11755
11709
|
|
|
11756
11710
|
T['io.flow.internal.v0.models.product_transaction'] = PropTypes.exact({
|
|
@@ -11793,6 +11747,8 @@ T['io.flow.internal.v0.models.classified_product'] = PropTypes.exact({
|
|
|
11793
11747
|
classification_model_id: PropTypes.string.isRequired,
|
|
11794
11748
|
});
|
|
11795
11749
|
|
|
11750
|
+
T['io.flow.internal.v0.enums.prateek_item_type'] = PropTypes.oneOf(['physical', 'digital']);
|
|
11751
|
+
|
|
11796
11752
|
T['io.flow.internal.v0.models.platform_fee_percentage_tier'] = PropTypes.exact({
|
|
11797
11753
|
minimum_amount_base: PropTypes.number.isRequired,
|
|
11798
11754
|
rate: PropTypes.number.isRequired,
|
|
@@ -12713,6 +12669,8 @@ T['io.flow.internal.v0.models.report_payment'] = PropTypes.exact({
|
|
|
12713
12669
|
created_at: PropTypes.string.isRequired,
|
|
12714
12670
|
});
|
|
12715
12671
|
|
|
12672
|
+
T['io.flow.internal.v0.enums.niall_item_type'] = PropTypes.oneOf(['physical', 'digital']);
|
|
12673
|
+
|
|
12716
12674
|
T['io.flow.internal.v0.models.attempt_statistics'] = PropTypes.exact({
|
|
12717
12675
|
merchant_count: PropTypes.number.isRequired,
|
|
12718
12676
|
amount: PropTypes.number.isRequired,
|
|
@@ -13594,8 +13552,6 @@ T['io.flow.label.v0.models.shipping_label_document'] = PropTypes.exact({
|
|
|
13594
13552
|
required: PropTypes.bool.isRequired,
|
|
13595
13553
|
});
|
|
13596
13554
|
|
|
13597
|
-
T['io.flow.label.v0.enums.shipment_recipient'] = PropTypes.oneOf(['customer', 'return', 'crossdock']);
|
|
13598
|
-
|
|
13599
13555
|
T['io.flow.internal.v0.models.liability_party_details'] = PropTypes.exact({
|
|
13600
13556
|
eori_number: PropTypes.string,
|
|
13601
13557
|
});
|
|
@@ -13979,6 +13935,52 @@ T['io.flow.internal.v0.models.issuer_deleted'] = PropTypes.exact({
|
|
|
13979
13935
|
issuer: T['io.flow.internal.v0.models.issuer'].isRequired,
|
|
13980
13936
|
});
|
|
13981
13937
|
|
|
13938
|
+
T['io.flow.reference.v0.models.currency_symbols'] = PropTypes.exact({
|
|
13939
|
+
primary: PropTypes.string.isRequired,
|
|
13940
|
+
narrow: PropTypes.string,
|
|
13941
|
+
});
|
|
13942
|
+
|
|
13943
|
+
T['io.flow.internal.v0.enums.commercial_invoice_version'] = PropTypes.oneOf(['v2_2_1']);
|
|
13944
|
+
T['io.flow.label.v0.enums.shipment_recipient'] = PropTypes.oneOf(['customer', 'return', 'crossdock']);
|
|
13945
|
+
|
|
13946
|
+
T['io.flow.internal.v0.models.shipping_pricing'] = PropTypes.exact({
|
|
13947
|
+
freight_cost: PropTypes.number.isRequired,
|
|
13948
|
+
customer_price: PropTypes.number.isRequired,
|
|
13949
|
+
});
|
|
13950
|
+
|
|
13951
|
+
T['io.flow.reference.v0.models.currency'] = PropTypes.exact({
|
|
13952
|
+
name: PropTypes.string.isRequired,
|
|
13953
|
+
iso_4217_3: PropTypes.string.isRequired,
|
|
13954
|
+
number_decimals: PropTypes.number.isRequired,
|
|
13955
|
+
symbols: T['io.flow.reference.v0.models.currency_symbols'],
|
|
13956
|
+
default_locale: PropTypes.string,
|
|
13957
|
+
});
|
|
13958
|
+
|
|
13959
|
+
T['io.flow.internal.v0.models.invoice_data_line_item'] = PropTypes.exact({
|
|
13960
|
+
i: PropTypes.number.isRequired,
|
|
13961
|
+
number: PropTypes.string.isRequired,
|
|
13962
|
+
quantity: PropTypes.number.isRequired,
|
|
13963
|
+
description: PropTypes.string.isRequired,
|
|
13964
|
+
tariff_code: PropTypes.string.isRequired,
|
|
13965
|
+
country_of_origin: PropTypes.string.isRequired,
|
|
13966
|
+
display_country_of_origin: PropTypes.string.isRequired,
|
|
13967
|
+
gst_paid: PropTypes.bool.isRequired,
|
|
13968
|
+
gst_paid_text: PropTypes.string.isRequired,
|
|
13969
|
+
unit_price: PropTypes.number.isRequired,
|
|
13970
|
+
vat_price: PropTypes.number.isRequired,
|
|
13971
|
+
duty_price: PropTypes.number.isRequired,
|
|
13972
|
+
discount_price: PropTypes.number.isRequired,
|
|
13973
|
+
total_price: PropTypes.number.isRequired,
|
|
13974
|
+
export_control_classification_number: PropTypes.string.isRequired,
|
|
13975
|
+
manufacturer_id: PropTypes.string,
|
|
13976
|
+
display_number: PropTypes.string.isRequired,
|
|
13977
|
+
item_type: PropTypes.string,
|
|
13978
|
+
construction: PropTypes.string,
|
|
13979
|
+
gender: PropTypes.string,
|
|
13980
|
+
material: PropTypes.string,
|
|
13981
|
+
url: PropTypes.string,
|
|
13982
|
+
});
|
|
13983
|
+
|
|
13982
13984
|
T['io.flow.shopify.external.v0.models.shopify_country_harmonized_system_code'] = PropTypes.exact({
|
|
13983
13985
|
country_code: PropTypes.string.isRequired,
|
|
13984
13986
|
harmonized_system_code: PropTypes.string.isRequired,
|
|
@@ -15481,80 +15483,204 @@ T['io.flow.internal.v0.models.erp_flow_file'] = PropTypes.exact({
|
|
|
15481
15483
|
created_at: PropTypes.string.isRequired,
|
|
15482
15484
|
});
|
|
15483
15485
|
|
|
15484
|
-
T['io.flow.
|
|
15485
|
-
|
|
15486
|
+
T['io.flow.reference.v0.models.country'] = PropTypes.exact({
|
|
15487
|
+
name: PropTypes.string.isRequired,
|
|
15488
|
+
iso_3166_2: PropTypes.string.isRequired,
|
|
15489
|
+
iso_3166_3: PropTypes.string.isRequired,
|
|
15490
|
+
languages: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
15491
|
+
measurement_system: PropTypes.string.isRequired,
|
|
15492
|
+
default_currency: PropTypes.string,
|
|
15493
|
+
default_language: PropTypes.string,
|
|
15494
|
+
timezones: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
15495
|
+
default_delivered_duty: PropTypes.string,
|
|
15486
15496
|
});
|
|
15487
15497
|
|
|
15488
|
-
T['io.flow.
|
|
15489
|
-
|
|
15490
|
-
|
|
15491
|
-
|
|
15492
|
-
|
|
15493
|
-
passphrase_ids: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
15498
|
+
T['io.flow.session.v0.models.session_geo'] = PropTypes.exact({
|
|
15499
|
+
country: T['io.flow.reference.v0.models.country'].isRequired,
|
|
15500
|
+
currency: T['io.flow.reference.v0.models.currency'].isRequired,
|
|
15501
|
+
language: T['io.flow.reference.v0.models.language'].isRequired,
|
|
15502
|
+
locale: T['io.flow.reference.v0.models.locale'].isRequired,
|
|
15494
15503
|
});
|
|
15495
15504
|
|
|
15496
|
-
T['io.flow.
|
|
15497
|
-
T['io.flow.
|
|
15505
|
+
T['io.flow.session.v0.models.local_session'] = PropTypes.exact({
|
|
15506
|
+
country: T['io.flow.reference.v0.models.country'].isRequired,
|
|
15507
|
+
currency: T['io.flow.reference.v0.models.currency'].isRequired,
|
|
15508
|
+
language: T['io.flow.reference.v0.models.language'].isRequired,
|
|
15509
|
+
locale: T['io.flow.reference.v0.models.locale'].isRequired,
|
|
15510
|
+
experience: T['io.flow.experience.v0.models.experience_geo'].isRequired,
|
|
15511
|
+
});
|
|
15498
15512
|
|
|
15499
|
-
T['io.flow.
|
|
15500
|
-
|
|
15501
|
-
origin: PropTypes.string.isRequired,
|
|
15502
|
-
destination: PropTypes.string.isRequired,
|
|
15513
|
+
T['io.flow.shopify.merchant.config.v0.models.country_of_origin'] = PropTypes.exact({
|
|
15514
|
+
country: T['io.flow.reference.v0.models.country'].isRequired,
|
|
15503
15515
|
});
|
|
15504
15516
|
|
|
15505
|
-
T['io.flow.internal.v0.models.
|
|
15506
|
-
|
|
15507
|
-
product_id: PropTypes.string,
|
|
15517
|
+
T['io.flow.internal.v0.models.resync_fallback_rates'] = PropTypes.exact({
|
|
15518
|
+
destinations: PropTypes.arrayOf(T['io.flow.reference.v0.models.country']).isRequired,
|
|
15508
15519
|
});
|
|
15509
15520
|
|
|
15510
|
-
T['io.flow.internal.v0.models.
|
|
15511
|
-
id: PropTypes.string.isRequired,
|
|
15512
|
-
item_summary: T['io.flow.internal.v0.models.duty_rate_item_summary'].isRequired,
|
|
15521
|
+
T['io.flow.internal.v0.models.resync_by_hs6_origin'] = PropTypes.exact({
|
|
15513
15522
|
hs6_code: PropTypes.string.isRequired,
|
|
15514
|
-
|
|
15523
|
+
origin: T['io.flow.reference.v0.models.country'].isRequired,
|
|
15515
15524
|
});
|
|
15516
15525
|
|
|
15517
|
-
T['io.flow.internal.v0.models.
|
|
15518
|
-
|
|
15519
|
-
|
|
15520
|
-
timestamp: PropTypes.string.isRequired,
|
|
15521
|
-
organization: PropTypes.string.isRequired,
|
|
15522
|
-
data: T['io.flow.internal.v0.models.duty_rates_data_summary'].isRequired,
|
|
15526
|
+
T['io.flow.internal.v0.models.resync_by_hs6_destinations'] = PropTypes.exact({
|
|
15527
|
+
hs6_code: PropTypes.string.isRequired,
|
|
15528
|
+
destinations: PropTypes.arrayOf(T['io.flow.reference.v0.models.country']).isRequired,
|
|
15523
15529
|
});
|
|
15524
15530
|
|
|
15525
|
-
T['io.flow.internal.v0.
|
|
15526
|
-
['
|
|
15527
|
-
);
|
|
15528
|
-
|
|
15529
|
-
T['io.flow.internal.v0.models.duty_simple_expression'] = PropTypes.exact({
|
|
15530
|
-
discriminator: PropTypes.oneOf(['duty_simple_expression']).isRequired,
|
|
15531
|
-
type: T['io.flow.internal.v0.enums.duty_simple_expression_type'].isRequired,
|
|
15532
|
-
value: PropTypes.number.isRequired,
|
|
15533
|
-
unit_of_measure: T['io.flow.internal.v0.enums.duty_rate_unit_of_measure'],
|
|
15531
|
+
T['io.flow.internal.v0.models.resync_by_destinations'] = PropTypes.exact({
|
|
15532
|
+
destinations: PropTypes.arrayOf(T['io.flow.reference.v0.models.country']).isRequired,
|
|
15534
15533
|
});
|
|
15535
15534
|
|
|
15536
|
-
T['io.flow.internal.v0.
|
|
15537
|
-
T['io.flow.
|
|
15535
|
+
T['io.flow.internal.v0.models.rates_names_summary'] = PropTypes.exact({
|
|
15536
|
+
origin: T['io.flow.reference.v0.models.country'].isRequired,
|
|
15537
|
+
destination: T['io.flow.reference.v0.models.country'].isRequired,
|
|
15538
|
+
summaries: PropTypes.arrayOf(T['io.flow.internal.v0.models.rate_name_summary']).isRequired,
|
|
15539
|
+
});
|
|
15538
15540
|
|
|
15539
|
-
T['io.flow.internal.v0.models.
|
|
15540
|
-
|
|
15541
|
+
T['io.flow.internal.v0.models.rates_changed'] = PropTypes.exact({
|
|
15542
|
+
event_id: PropTypes.string.isRequired,
|
|
15543
|
+
timestamp: PropTypes.string.isRequired,
|
|
15541
15544
|
hs6: PropTypes.string.isRequired,
|
|
15542
|
-
origin:
|
|
15543
|
-
destination:
|
|
15544
|
-
tariff_code: PropTypes.string.isRequired,
|
|
15545
|
-
name: PropTypes.string.isRequired,
|
|
15546
|
-
long_name: PropTypes.string,
|
|
15547
|
-
duty_expression: T['io.flow.internal.v0.unions.duty_expression'].isRequired,
|
|
15548
|
-
source: T['io.flow.internal.v0.enums.duty_rate_source'].isRequired,
|
|
15549
|
-
position: PropTypes.number.isRequired,
|
|
15545
|
+
origin: T['io.flow.reference.v0.models.country'].isRequired,
|
|
15546
|
+
destination: T['io.flow.reference.v0.models.country'].isRequired,
|
|
15550
15547
|
});
|
|
15551
15548
|
|
|
15552
|
-
T['io.flow.internal.v0.models.
|
|
15553
|
-
discriminator: PropTypes.oneOf(['
|
|
15554
|
-
|
|
15555
|
-
|
|
15556
|
-
|
|
15557
|
-
});
|
|
15549
|
+
T['io.flow.internal.v0.models.rate_source_summary'] = PropTypes.exact({
|
|
15550
|
+
discriminator: PropTypes.oneOf(['rate-source']).isRequired,
|
|
15551
|
+
key: PropTypes.string.isRequired,
|
|
15552
|
+
destination: T['io.flow.reference.v0.models.country'].isRequired,
|
|
15553
|
+
rate_source_composition_summaries: PropTypes.arrayOf(T['io.flow.internal.v0.models.rate_source_composition_summary']).isRequired,
|
|
15554
|
+
});
|
|
15555
|
+
|
|
15556
|
+
T['io.flow.internal.v0.models.rate_source_summary_upserted'] = PropTypes.exact({
|
|
15557
|
+
discriminator: PropTypes.oneOf(['rate_source_summary_upserted']).isRequired,
|
|
15558
|
+
event_id: PropTypes.string.isRequired,
|
|
15559
|
+
timestamp: PropTypes.string.isRequired,
|
|
15560
|
+
rate_source_summary: T['io.flow.internal.v0.models.rate_source_summary'].isRequired,
|
|
15561
|
+
});
|
|
15562
|
+
|
|
15563
|
+
T['io.flow.internal.v0.models.rate_source_summary_deleted'] = PropTypes.exact({
|
|
15564
|
+
discriminator: PropTypes.oneOf(['rate_source_summary_deleted']).isRequired,
|
|
15565
|
+
event_id: PropTypes.string.isRequired,
|
|
15566
|
+
timestamp: PropTypes.string.isRequired,
|
|
15567
|
+
rate_source_summary: T['io.flow.internal.v0.models.rate_source_summary'].isRequired,
|
|
15568
|
+
});
|
|
15569
|
+
|
|
15570
|
+
T['io.flow.internal.v0.models.rate_destination_freshness_summary'] = PropTypes.exact({
|
|
15571
|
+
destination: T['io.flow.reference.v0.models.country'].isRequired,
|
|
15572
|
+
percentage_updated: PropTypes.number.isRequired,
|
|
15573
|
+
});
|
|
15574
|
+
|
|
15575
|
+
T['io.flow.internal.v0.models.rate_freshness_summary'] = PropTypes.exact({
|
|
15576
|
+
discriminator: PropTypes.oneOf(['rate-freshness']).isRequired,
|
|
15577
|
+
key: PropTypes.string.isRequired,
|
|
15578
|
+
updated_since: PropTypes.string.isRequired,
|
|
15579
|
+
destination_freshness_summaries: PropTypes.arrayOf(T['io.flow.internal.v0.models.rate_destination_freshness_summary']).isRequired,
|
|
15580
|
+
});
|
|
15581
|
+
|
|
15582
|
+
T['io.flow.internal.v0.unions.internal_harmonization_statistic'] = PropTypes.oneOfType([
|
|
15583
|
+
T['io.flow.internal.v0.models.time_to_classify'],
|
|
15584
|
+
T['io.flow.internal.v0.models.time_to_classify_aggregated'],
|
|
15585
|
+
T['io.flow.internal.v0.models.rate_source_summary'],
|
|
15586
|
+
T['io.flow.internal.v0.models.rate_freshness_summary'],
|
|
15587
|
+
]);
|
|
15588
|
+
|
|
15589
|
+
T['io.flow.internal.v0.models.rate_freshness_summary_upserted'] = PropTypes.exact({
|
|
15590
|
+
discriminator: PropTypes.oneOf(['rate_freshness_summary_upserted']).isRequired,
|
|
15591
|
+
event_id: PropTypes.string.isRequired,
|
|
15592
|
+
timestamp: PropTypes.string.isRequired,
|
|
15593
|
+
rate_freshness_summary: T['io.flow.internal.v0.models.rate_freshness_summary'].isRequired,
|
|
15594
|
+
});
|
|
15595
|
+
|
|
15596
|
+
T['io.flow.internal.v0.models.rate_freshness_summary_deleted'] = PropTypes.exact({
|
|
15597
|
+
discriminator: PropTypes.oneOf(['rate_freshness_summary_deleted']).isRequired,
|
|
15598
|
+
event_id: PropTypes.string.isRequired,
|
|
15599
|
+
timestamp: PropTypes.string.isRequired,
|
|
15600
|
+
rate_freshness_summary: T['io.flow.internal.v0.models.rate_freshness_summary'].isRequired,
|
|
15601
|
+
});
|
|
15602
|
+
|
|
15603
|
+
T['io.flow.internal.v0.models.entity_reference_number'] = PropTypes.exact({
|
|
15604
|
+
short_name: PropTypes.string.isRequired,
|
|
15605
|
+
number: PropTypes.string.isRequired,
|
|
15606
|
+
issuing_country: T['io.flow.reference.v0.models.country'],
|
|
15607
|
+
display_name: PropTypes.string,
|
|
15608
|
+
});
|
|
15609
|
+
|
|
15610
|
+
T['io.flow.internal.v0.models.key_reference'] = PropTypes.exact({
|
|
15611
|
+
id: PropTypes.string.isRequired,
|
|
15612
|
+
});
|
|
15613
|
+
|
|
15614
|
+
T['io.flow.internal.v0.models.encryption'] = PropTypes.exact({
|
|
15615
|
+
id: PropTypes.string.isRequired,
|
|
15616
|
+
key: T['io.flow.internal.v0.models.key_reference'].isRequired,
|
|
15617
|
+
iv: PropTypes.string.isRequired,
|
|
15618
|
+
cipher: PropTypes.string.isRequired,
|
|
15619
|
+
passphrase_ids: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
15620
|
+
});
|
|
15621
|
+
|
|
15622
|
+
T['io.flow.internal.v0.enums.duty_rate_unit_of_measure'] = PropTypes.oneOf(['kg', 'sq m', 'item', 'pair']);
|
|
15623
|
+
T['io.flow.internal.v0.enums.duty_simple_expression_type'] = PropTypes.oneOf(['free', 'percent', 'per_uom', 'flat']);
|
|
15624
|
+
|
|
15625
|
+
T['io.flow.internal.v0.models.duty_rate_summary'] = PropTypes.exact({
|
|
15626
|
+
tariff_code: PropTypes.string.isRequired,
|
|
15627
|
+
origin: PropTypes.string.isRequired,
|
|
15628
|
+
destination: PropTypes.string.isRequired,
|
|
15629
|
+
});
|
|
15630
|
+
|
|
15631
|
+
T['io.flow.internal.v0.models.duty_rate_item_summary'] = PropTypes.exact({
|
|
15632
|
+
number: PropTypes.string.isRequired,
|
|
15633
|
+
product_id: PropTypes.string,
|
|
15634
|
+
});
|
|
15635
|
+
|
|
15636
|
+
T['io.flow.internal.v0.models.duty_rates_data_summary'] = PropTypes.exact({
|
|
15637
|
+
id: PropTypes.string.isRequired,
|
|
15638
|
+
item_summary: T['io.flow.internal.v0.models.duty_rate_item_summary'].isRequired,
|
|
15639
|
+
hs6_code: PropTypes.string.isRequired,
|
|
15640
|
+
summaries: PropTypes.arrayOf(T['io.flow.internal.v0.models.duty_rate_summary']).isRequired,
|
|
15641
|
+
});
|
|
15642
|
+
|
|
15643
|
+
T['io.flow.internal.v0.models.duty_rates_published_v2'] = PropTypes.exact({
|
|
15644
|
+
discriminator: PropTypes.oneOf(['duty_rates_published_v2']).isRequired,
|
|
15645
|
+
event_id: PropTypes.string.isRequired,
|
|
15646
|
+
timestamp: PropTypes.string.isRequired,
|
|
15647
|
+
organization: PropTypes.string.isRequired,
|
|
15648
|
+
data: T['io.flow.internal.v0.models.duty_rates_data_summary'].isRequired,
|
|
15649
|
+
});
|
|
15650
|
+
|
|
15651
|
+
T['io.flow.internal.v0.enums.duty_rate_source'] = PropTypes.oneOf(
|
|
15652
|
+
['tariff_code_rate', 'compound_rate', 'csv_fallback_rate', 'hardcoded_rate'],
|
|
15653
|
+
);
|
|
15654
|
+
|
|
15655
|
+
T['io.flow.internal.v0.models.duty_simple_expression'] = PropTypes.exact({
|
|
15656
|
+
discriminator: PropTypes.oneOf(['duty_simple_expression']).isRequired,
|
|
15657
|
+
type: T['io.flow.internal.v0.enums.duty_simple_expression_type'].isRequired,
|
|
15658
|
+
value: PropTypes.number.isRequired,
|
|
15659
|
+
unit_of_measure: T['io.flow.internal.v0.enums.duty_rate_unit_of_measure'],
|
|
15660
|
+
});
|
|
15661
|
+
|
|
15662
|
+
T['io.flow.internal.v0.enums.duty_compound_expression_type'] = PropTypes.oneOf(['sum', 'max', 'min']);
|
|
15663
|
+
T['io.flow.internal.v0.unions.duty_expression'] = PropTypes.oneOfType([PropTypes.any, T['io.flow.internal.v0.models.duty_simple_expression']]);
|
|
15664
|
+
|
|
15665
|
+
T['io.flow.internal.v0.models.duty_internal_rate'] = PropTypes.exact({
|
|
15666
|
+
id: PropTypes.string.isRequired,
|
|
15667
|
+
hs6: PropTypes.string.isRequired,
|
|
15668
|
+
origin: PropTypes.string.isRequired,
|
|
15669
|
+
destination: PropTypes.string.isRequired,
|
|
15670
|
+
tariff_code: PropTypes.string.isRequired,
|
|
15671
|
+
name: PropTypes.string.isRequired,
|
|
15672
|
+
long_name: PropTypes.string,
|
|
15673
|
+
duty_expression: T['io.flow.internal.v0.unions.duty_expression'].isRequired,
|
|
15674
|
+
source: T['io.flow.internal.v0.enums.duty_rate_source'].isRequired,
|
|
15675
|
+
position: PropTypes.number.isRequired,
|
|
15676
|
+
});
|
|
15677
|
+
|
|
15678
|
+
T['io.flow.internal.v0.models.duty_compound_expression'] = PropTypes.exact({
|
|
15679
|
+
discriminator: PropTypes.oneOf(['duty_compound_expression']).isRequired,
|
|
15680
|
+
type: T['io.flow.internal.v0.enums.duty_compound_expression_type'].isRequired,
|
|
15681
|
+
left: T['io.flow.internal.v0.unions.duty_expression'].isRequired,
|
|
15682
|
+
right: T['io.flow.internal.v0.unions.duty_expression'].isRequired,
|
|
15683
|
+
});
|
|
15558
15684
|
|
|
15559
15685
|
T['io.flow.price.v0.enums.levy_component'] = PropTypes.oneOf(['goods', 'duty', 'insurance', 'freight', 'vat']);
|
|
15560
15686
|
|
|
@@ -15811,31 +15937,6 @@ T['io.flow.fulfillment.v0.models.option_weight_estimates'] = PropTypes.exact({
|
|
|
15811
15937
|
dimensional: T['io.flow.common.v0.models.measurement'].isRequired,
|
|
15812
15938
|
});
|
|
15813
15939
|
|
|
15814
|
-
T['io.flow.common.v0.models.dimension'] = PropTypes.exact({
|
|
15815
|
-
depth: T['io.flow.common.v0.models.measurement'],
|
|
15816
|
-
diameter: T['io.flow.common.v0.models.measurement'],
|
|
15817
|
-
length: T['io.flow.common.v0.models.measurement'],
|
|
15818
|
-
weight: T['io.flow.common.v0.models.measurement'],
|
|
15819
|
-
width: T['io.flow.common.v0.models.measurement'],
|
|
15820
|
-
});
|
|
15821
|
-
|
|
15822
|
-
T['io.flow.shopify.merchant.config.v0.models.package_dimensions_form'] = PropTypes.exact({
|
|
15823
|
-
dimensions: PropTypes.arrayOf(T['io.flow.common.v0.models.dimension']).isRequired,
|
|
15824
|
-
});
|
|
15825
|
-
|
|
15826
|
-
T['io.flow.shopify.merchant.config.v0.models.package_dimensions'] = PropTypes.exact({
|
|
15827
|
-
dimensions: PropTypes.arrayOf(T['io.flow.common.v0.models.dimension']).isRequired,
|
|
15828
|
-
});
|
|
15829
|
-
|
|
15830
|
-
T['io.flow.label.v0.models.single_package_shipping_notification_form'] = PropTypes.exact({
|
|
15831
|
-
discriminator: PropTypes.oneOf(['single_package_shipping_notification_form']).isRequired,
|
|
15832
|
-
fulfillment_key: PropTypes.string.isRequired,
|
|
15833
|
-
carrier_tracking_number: PropTypes.string.isRequired,
|
|
15834
|
-
package_dimensions: T['io.flow.common.v0.models.dimension'],
|
|
15835
|
-
service: PropTypes.string,
|
|
15836
|
-
shipment_recipient: T['io.flow.label.v0.enums.shipment_recipient'],
|
|
15837
|
-
});
|
|
15838
|
-
|
|
15839
15940
|
T['io.flow.ratecard.v0.models.estimated_dimensions'] = PropTypes.exact({
|
|
15840
15941
|
depth: T['io.flow.common.v0.models.measurement'].isRequired,
|
|
15841
15942
|
length: T['io.flow.common.v0.models.measurement'].isRequired,
|
|
@@ -15881,6 +15982,31 @@ T['io.flow.internal.v0.models.item_dimension_estimate'] = PropTypes.exact({
|
|
|
15881
15982
|
dimensions: T['io.flow.ratecard.v0.models.estimated_dimensions'].isRequired,
|
|
15882
15983
|
});
|
|
15883
15984
|
|
|
15985
|
+
T['io.flow.common.v0.models.dimension'] = PropTypes.exact({
|
|
15986
|
+
depth: T['io.flow.common.v0.models.measurement'],
|
|
15987
|
+
diameter: T['io.flow.common.v0.models.measurement'],
|
|
15988
|
+
length: T['io.flow.common.v0.models.measurement'],
|
|
15989
|
+
weight: T['io.flow.common.v0.models.measurement'],
|
|
15990
|
+
width: T['io.flow.common.v0.models.measurement'],
|
|
15991
|
+
});
|
|
15992
|
+
|
|
15993
|
+
T['io.flow.shopify.merchant.config.v0.models.package_dimensions_form'] = PropTypes.exact({
|
|
15994
|
+
dimensions: PropTypes.arrayOf(T['io.flow.common.v0.models.dimension']).isRequired,
|
|
15995
|
+
});
|
|
15996
|
+
|
|
15997
|
+
T['io.flow.shopify.merchant.config.v0.models.package_dimensions'] = PropTypes.exact({
|
|
15998
|
+
dimensions: PropTypes.arrayOf(T['io.flow.common.v0.models.dimension']).isRequired,
|
|
15999
|
+
});
|
|
16000
|
+
|
|
16001
|
+
T['io.flow.label.v0.models.single_package_shipping_notification_form'] = PropTypes.exact({
|
|
16002
|
+
discriminator: PropTypes.oneOf(['single_package_shipping_notification_form']).isRequired,
|
|
16003
|
+
fulfillment_key: PropTypes.string.isRequired,
|
|
16004
|
+
carrier_tracking_number: PropTypes.string.isRequired,
|
|
16005
|
+
package_dimensions: T['io.flow.common.v0.models.dimension'],
|
|
16006
|
+
service: PropTypes.string,
|
|
16007
|
+
shipment_recipient: T['io.flow.label.v0.enums.shipment_recipient'],
|
|
16008
|
+
});
|
|
16009
|
+
|
|
15884
16010
|
T['io.flow.ratecard.v0.models.fee_weight'] = PropTypes.exact({
|
|
15885
16011
|
weight: PropTypes.number.isRequired,
|
|
15886
16012
|
unit: T['io.flow.common.v0.enums.unit_of_measurement'].isRequired,
|
|
@@ -16339,6 +16465,8 @@ T['io.flow.internal.v0.models.customs_product_attribute_label'] = PropTypes.exac
|
|
|
16339
16465
|
value: PropTypes.string.isRequired,
|
|
16340
16466
|
});
|
|
16341
16467
|
|
|
16468
|
+
T['io.flow.internal.v0.enums.applicable_preferential_rate'] = PropTypes.oneOf(['baby', 'children']);
|
|
16469
|
+
|
|
16342
16470
|
T['io.flow.internal.v0.models.customs_product_labels'] = PropTypes.exact({
|
|
16343
16471
|
item_type: PropTypes.string.isRequired,
|
|
16344
16472
|
gender: T['io.flow.internal.v0.models.customs_product_attribute_label'],
|
|
@@ -16397,6 +16525,7 @@ T['io.flow.internal.v0.models.item_customs_details'] = PropTypes.exact({
|
|
|
16397
16525
|
duty_composition_rate: PropTypes.number.isRequired,
|
|
16398
16526
|
export_control_classification_number: PropTypes.string,
|
|
16399
16527
|
labels: T['io.flow.internal.v0.models.customs_product_labels'],
|
|
16528
|
+
applicable_preferential_rate: T['io.flow.internal.v0.enums.applicable_preferential_rate'],
|
|
16400
16529
|
});
|
|
16401
16530
|
|
|
16402
16531
|
T['io.flow.internal.v0.unions.tariff_eligibility_data'] = PropTypes.oneOfType([
|
|
@@ -19779,6 +19908,7 @@ T['io.flow.internal.v0.models.restriction_rule_form'] = PropTypes.exact({
|
|
|
19779
19908
|
negative_keywords: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
19780
19909
|
value_threshold_usd: PropTypes.number,
|
|
19781
19910
|
auto_review_criteria: PropTypes.arrayOf(T['io.flow.internal.v0.models.auto_review_criteria']),
|
|
19911
|
+
source: T['io.flow.internal.v0.enums.restriction_organization_source'],
|
|
19782
19912
|
});
|
|
19783
19913
|
|
|
19784
19914
|
T['io.flow.internal.v0.models.restriction_rule'] = PropTypes.exact({
|
|
@@ -19791,6 +19921,7 @@ T['io.flow.internal.v0.models.restriction_rule'] = PropTypes.exact({
|
|
|
19791
19921
|
negative_keywords: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
19792
19922
|
value_threshold_usd: PropTypes.number,
|
|
19793
19923
|
auto_review_criteria: PropTypes.arrayOf(T['io.flow.internal.v0.models.auto_review_criteria']),
|
|
19924
|
+
source: T['io.flow.internal.v0.enums.restriction_organization_source'].isRequired,
|
|
19794
19925
|
});
|
|
19795
19926
|
|
|
19796
19927
|
T['io.flow.internal.v0.models.restriction_rule_upserted'] = PropTypes.exact({
|
|
@@ -20102,19 +20233,6 @@ T['io.flow.internal.v0.models.tracking_subscription_upserted'] = PropTypes.exact
|
|
|
20102
20233
|
tracking_subscription: T['io.flow.internal.v0.models.tracking_subscription'].isRequired,
|
|
20103
20234
|
});
|
|
20104
20235
|
|
|
20105
|
-
T['io.flow.internal.v0.models.spp_tracker_update_request'] = PropTypes.exact({
|
|
20106
|
-
id: PropTypes.string.isRequired,
|
|
20107
|
-
tracking_subscription: T['io.flow.internal.v0.models.tracking_subscription'].isRequired,
|
|
20108
|
-
created_at: PropTypes.string.isRequired,
|
|
20109
|
-
});
|
|
20110
|
-
|
|
20111
|
-
T['io.flow.internal.v0.models.spp_tracker_update_request_upserted'] = PropTypes.exact({
|
|
20112
|
-
discriminator: PropTypes.oneOf(['spp_tracker_update_request_upserted']).isRequired,
|
|
20113
|
-
event_id: PropTypes.string.isRequired,
|
|
20114
|
-
timestamp: PropTypes.string.isRequired,
|
|
20115
|
-
spp_tracker_update_request: T['io.flow.internal.v0.models.spp_tracker_update_request'].isRequired,
|
|
20116
|
-
});
|
|
20117
|
-
|
|
20118
20236
|
T['io.flow.internal.v0.models.order_validation_failure_summary'] = PropTypes.exact({
|
|
20119
20237
|
organization_id: PropTypes.string.isRequired,
|
|
20120
20238
|
order_number: PropTypes.string.isRequired,
|
|
@@ -20184,6 +20302,19 @@ T['io.flow.internal.v0.models.order_fulfillment_upserted'] = PropTypes.exact({
|
|
|
20184
20302
|
center: T['io.flow.fulfillment.v0.models.center_summary'],
|
|
20185
20303
|
});
|
|
20186
20304
|
|
|
20305
|
+
T['io.flow.internal.v0.models.validated_address'] = PropTypes.exact({
|
|
20306
|
+
company_name: PropTypes.string.isRequired,
|
|
20307
|
+
person_name: PropTypes.string.isRequired,
|
|
20308
|
+
phone: PropTypes.string.isRequired,
|
|
20309
|
+
email: PropTypes.string.isRequired,
|
|
20310
|
+
original_streets: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
20311
|
+
city: PropTypes.string.isRequired,
|
|
20312
|
+
province: PropTypes.string.isRequired,
|
|
20313
|
+
postal: PropTypes.string.isRequired,
|
|
20314
|
+
country: T['io.flow.reference.v0.models.country'].isRequired,
|
|
20315
|
+
original_address: T['io.flow.fulfillment.v0.models.shipping_address'].isRequired,
|
|
20316
|
+
});
|
|
20317
|
+
|
|
20187
20318
|
T['io.flow.internal.v0.models.console_label_request_form'] = PropTypes.exact({
|
|
20188
20319
|
discriminator: PropTypes.oneOf(['console_label_request_form']).isRequired,
|
|
20189
20320
|
order_number: PropTypes.string.isRequired,
|
|
@@ -20692,6 +20823,7 @@ T['io.flow.internal.v0.models.search_authorization'] = PropTypes.exact({
|
|
|
20692
20823
|
T['io.flow.internal.v0.unions.payment_summary_details'] = PropTypes.oneOfType([T['io.flow.internal.v0.models.search_authorization']]);
|
|
20693
20824
|
|
|
20694
20825
|
T['io.flow.internal.v0.models.shopify_merchant_plan'] = PropTypes.exact({
|
|
20826
|
+
id: PropTypes.string.isRequired,
|
|
20695
20827
|
authorization: T['io.flow.payment.v0.models.authorization_reference'].isRequired,
|
|
20696
20828
|
plan: T['io.flow.internal.v0.enums.shopify_plan_type'].isRequired,
|
|
20697
20829
|
});
|
|
@@ -22446,636 +22578,671 @@ T['io.flow.common.v0.models.discounts_form'] = PropTypes.exact({
|
|
|
22446
22578
|
discounts: PropTypes.arrayOf(T['io.flow.common.v0.models.discount_form']).isRequired,
|
|
22447
22579
|
});
|
|
22448
22580
|
|
|
22449
|
-
T['io.flow.
|
|
22450
|
-
|
|
22451
|
-
|
|
22452
|
-
|
|
22453
|
-
|
|
22454
|
-
|
|
22455
|
-
|
|
22456
|
-
|
|
22457
|
-
discounts: T['io.flow.common.v0.models.discounts_form'],
|
|
22581
|
+
T['io.flow.payment.v0.models.transfer'] = PropTypes.exact({
|
|
22582
|
+
id: PropTypes.string.isRequired,
|
|
22583
|
+
type: T['io.flow.payment.v0.enums.transfer_type'].isRequired,
|
|
22584
|
+
base: T['io.flow.common.v0.models.money'].isRequired,
|
|
22585
|
+
status: T['io.flow.payment.v0.enums.transfer_status'].isRequired,
|
|
22586
|
+
created_at: PropTypes.string.isRequired,
|
|
22587
|
+
authorization: T['io.flow.payment.v0.models.authorization_reference'].isRequired,
|
|
22588
|
+
transferred_at: PropTypes.string.isRequired,
|
|
22458
22589
|
});
|
|
22459
22590
|
|
|
22460
|
-
T['io.flow.
|
|
22591
|
+
T['io.flow.payment.v0.models.reversal'] = PropTypes.exact({
|
|
22461
22592
|
id: PropTypes.string.isRequired,
|
|
22462
|
-
|
|
22593
|
+
key: PropTypes.string.isRequired,
|
|
22594
|
+
authorization: T['io.flow.payment.v0.models.authorization_reference'].isRequired,
|
|
22595
|
+
status: T['io.flow.payment.v0.enums.reversal_status'].isRequired,
|
|
22596
|
+
amount: PropTypes.number.isRequired,
|
|
22597
|
+
currency: PropTypes.string.isRequired,
|
|
22598
|
+
requested: T['io.flow.common.v0.models.money'].isRequired,
|
|
22599
|
+
created_at: PropTypes.string.isRequired,
|
|
22600
|
+
attributes: PropTypes.objectOf(PropTypes.string).isRequired,
|
|
22601
|
+
base: T['io.flow.common.v0.models.money'],
|
|
22463
22602
|
});
|
|
22464
22603
|
|
|
22465
|
-
T['io.flow.
|
|
22604
|
+
T['io.flow.payment.v0.models.reversal_version'] = PropTypes.exact({
|
|
22466
22605
|
id: PropTypes.string.isRequired,
|
|
22467
22606
|
timestamp: PropTypes.string.isRequired,
|
|
22468
22607
|
type: T['io.flow.common.v0.enums.change_type'].isRequired,
|
|
22469
|
-
|
|
22470
|
-
});
|
|
22471
|
-
|
|
22472
|
-
T['io.flow.ratecard.v0.models.ratecard_estimate_v4'] = PropTypes.exact({
|
|
22473
|
-
discriminator: PropTypes.oneOf(['ratecard_estimate_v4']).isRequired,
|
|
22474
|
-
hops: PropTypes.arrayOf(T['io.flow.ratecard.v0.models.hop_v2']).isRequired,
|
|
22475
|
-
delivered_duty: T['io.flow.common.v0.enums.delivered_duty'].isRequired,
|
|
22476
|
-
distance_unit_of_measurement: T['io.flow.common.v0.enums.unit_of_measurement'],
|
|
22477
|
-
weight_unit_of_measurement: T['io.flow.common.v0.enums.unit_of_measurement'],
|
|
22478
|
-
dimensional_weight: T['io.flow.common.v0.models.measurement'],
|
|
22479
|
-
gravitational_weight: T['io.flow.common.v0.models.measurement'],
|
|
22480
|
-
ratecard_id: PropTypes.string,
|
|
22481
|
-
glbe_shipping_method_id: PropTypes.string,
|
|
22482
|
-
glbe_proposition_name: PropTypes.string,
|
|
22483
|
-
channel_revenue_share_percentage: PropTypes.number,
|
|
22484
|
-
rate_level_key: PropTypes.string,
|
|
22485
|
-
line_items: PropTypes.arrayOf(T['io.flow.common.v0.models.line_item_form']),
|
|
22608
|
+
reversal: T['io.flow.payment.v0.models.reversal'].isRequired,
|
|
22486
22609
|
});
|
|
22487
22610
|
|
|
22488
|
-
T['io.flow.
|
|
22489
|
-
discriminator: PropTypes.oneOf(['
|
|
22490
|
-
|
|
22491
|
-
|
|
22492
|
-
|
|
22493
|
-
|
|
22494
|
-
|
|
22495
|
-
|
|
22496
|
-
|
|
22611
|
+
T['io.flow.payment.v0.models.online_authorization'] = PropTypes.exact({
|
|
22612
|
+
discriminator: PropTypes.oneOf(['online_authorization']).isRequired,
|
|
22613
|
+
id: PropTypes.string.isRequired,
|
|
22614
|
+
key: PropTypes.string.isRequired,
|
|
22615
|
+
method: T['io.flow.reference.v0.models.payment_method'],
|
|
22616
|
+
merchant_of_record: T['io.flow.common.v0.enums.merchant_of_record'],
|
|
22617
|
+
details: T['io.flow.payment.v0.unions.online_authorization_details'],
|
|
22618
|
+
payment: PropTypes.object,
|
|
22619
|
+
amount: PropTypes.number.isRequired,
|
|
22620
|
+
currency: PropTypes.string.isRequired,
|
|
22621
|
+
requested: T['io.flow.common.v0.models.money'],
|
|
22622
|
+
customer: T['io.flow.common.v0.models.order_customer'].isRequired,
|
|
22623
|
+
attributes: PropTypes.objectOf(PropTypes.string).isRequired,
|
|
22624
|
+
destination: T['io.flow.common.v0.models.address'],
|
|
22625
|
+
billing_address: T['io.flow.common.v0.models.billing_address'],
|
|
22626
|
+
order: T['io.flow.payment.v0.models.authorization_order_reference'],
|
|
22627
|
+
payment_order_reference: T['io.flow.payment.v0.unions.payment_order_reference'],
|
|
22628
|
+
ip: PropTypes.string,
|
|
22629
|
+
result: T['io.flow.payment.v0.models.authorization_result'].isRequired,
|
|
22630
|
+
created_at: PropTypes.string.isRequired,
|
|
22631
|
+
expires_at: PropTypes.string,
|
|
22632
|
+
base: T['io.flow.common.v0.models.money'],
|
|
22633
|
+
processor: T['io.flow.payment.v0.unions.expandable_payment_processor'],
|
|
22634
|
+
confirmation_details: T['io.flow.payment.v0.unions.confirmation_details'],
|
|
22635
|
+
authorized_at: PropTypes.string,
|
|
22636
|
+
authorization_request_id: PropTypes.string,
|
|
22637
|
+
});
|
|
22497
22638
|
|
|
22498
|
-
T['io.flow.
|
|
22499
|
-
|
|
22500
|
-
|
|
22501
|
-
delivered_duty: T['io.flow.common.v0.enums.delivered_duty'].isRequired,
|
|
22502
|
-
dimensional_weight: T['io.flow.common.v0.models.measurement'],
|
|
22503
|
-
gravitational_weight: T['io.flow.common.v0.models.measurement'],
|
|
22504
|
-
line_items: PropTypes.arrayOf(T['io.flow.common.v0.models.line_item_form']),
|
|
22505
|
-
ratecard_owner: T['io.flow.fulfillment.v0.enums.ratecard_owner'],
|
|
22639
|
+
T['io.flow.payment.v0.models.exchanged_money'] = PropTypes.exact({
|
|
22640
|
+
fx_rate: PropTypes.number.isRequired,
|
|
22641
|
+
money: T['io.flow.common.v0.models.money'].isRequired,
|
|
22506
22642
|
});
|
|
22507
22643
|
|
|
22508
|
-
T['io.flow.
|
|
22509
|
-
discriminator: PropTypes.oneOf(['
|
|
22510
|
-
|
|
22511
|
-
|
|
22512
|
-
|
|
22644
|
+
T['io.flow.payment.v0.models.card_authorization'] = PropTypes.exact({
|
|
22645
|
+
discriminator: PropTypes.oneOf(['card_authorization']).isRequired,
|
|
22646
|
+
id: PropTypes.string.isRequired,
|
|
22647
|
+
key: PropTypes.string.isRequired,
|
|
22648
|
+
merchant_of_record: T['io.flow.common.v0.enums.merchant_of_record'],
|
|
22649
|
+
method: T['io.flow.reference.v0.models.payment_method'],
|
|
22650
|
+
card: T['io.flow.payment.v0.unions.expandable_card'].isRequired,
|
|
22513
22651
|
amount: PropTypes.number.isRequired,
|
|
22514
|
-
|
|
22515
|
-
|
|
22516
|
-
|
|
22517
|
-
|
|
22518
|
-
|
|
22519
|
-
|
|
22652
|
+
currency: PropTypes.string.isRequired,
|
|
22653
|
+
requested: T['io.flow.common.v0.models.money'],
|
|
22654
|
+
customer: T['io.flow.common.v0.models.order_customer'].isRequired,
|
|
22655
|
+
attributes: PropTypes.objectOf(PropTypes.string).isRequired,
|
|
22656
|
+
destination: T['io.flow.common.v0.models.address'],
|
|
22657
|
+
billing_address: T['io.flow.common.v0.models.billing_address'],
|
|
22658
|
+
order: T['io.flow.payment.v0.models.authorization_order_reference'],
|
|
22659
|
+
payment_order_reference: T['io.flow.payment.v0.unions.payment_order_reference'],
|
|
22660
|
+
ip: PropTypes.string,
|
|
22661
|
+
result: T['io.flow.payment.v0.models.authorization_result'].isRequired,
|
|
22662
|
+
created_at: PropTypes.string.isRequired,
|
|
22663
|
+
expires_at: PropTypes.string,
|
|
22664
|
+
base: T['io.flow.common.v0.models.money'],
|
|
22665
|
+
processor: T['io.flow.payment.v0.unions.expandable_payment_processor'],
|
|
22666
|
+
stored_method_usage_step: T['io.flow.payment.v0.enums.stored_method_usage_step'],
|
|
22667
|
+
authorized_at: PropTypes.string,
|
|
22668
|
+
authorization_request_id: PropTypes.string,
|
|
22520
22669
|
});
|
|
22521
22670
|
|
|
22522
|
-
T['io.flow.
|
|
22523
|
-
T['io.flow.
|
|
22524
|
-
T['io.flow.
|
|
22525
|
-
T['io.flow.ratecard.v0.models.ratecard_estimate_v3'],
|
|
22526
|
-
T['io.flow.ratecard.v0.models.ratecard_estimate_v4'],
|
|
22671
|
+
T['io.flow.payment.v0.unions.authorization'] = PropTypes.oneOfType([
|
|
22672
|
+
T['io.flow.payment.v0.models.card_authorization'],
|
|
22673
|
+
T['io.flow.payment.v0.models.online_authorization'],
|
|
22527
22674
|
]);
|
|
22528
22675
|
|
|
22529
|
-
T['io.flow.
|
|
22530
|
-
|
|
22531
|
-
|
|
22532
|
-
weight_unit: T['io.flow.common.v0.enums.unit_of_measurement'],
|
|
22533
|
-
distance_unit: T['io.flow.common.v0.enums.unit_of_measurement'],
|
|
22534
|
-
service: PropTypes.string,
|
|
22535
|
-
weight: PropTypes.number,
|
|
22536
|
-
length: PropTypes.number,
|
|
22537
|
-
width: PropTypes.number,
|
|
22538
|
-
depth: PropTypes.number,
|
|
22539
|
-
delivered_duty: T['io.flow.common.v0.enums.delivered_duty'],
|
|
22540
|
-
line_items: PropTypes.arrayOf(T['io.flow.common.v0.models.line_item_form']),
|
|
22541
|
-
center_id: PropTypes.string,
|
|
22542
|
-
taxes_owed: T['io.flow.common.v0.models.money'],
|
|
22543
|
-
duties_owed: T['io.flow.common.v0.models.money'],
|
|
22544
|
-
});
|
|
22545
|
-
|
|
22546
|
-
T['io.flow.experience.v0.models.order_replacement_form'] = PropTypes.exact({
|
|
22547
|
-
items: PropTypes.arrayOf(T['io.flow.common.v0.models.line_item_form']),
|
|
22548
|
-
});
|
|
22549
|
-
|
|
22550
|
-
T['io.flow.experience.v0.models.order_put_form'] = PropTypes.exact({
|
|
22551
|
-
order_type: T['io.flow.experience.v0.enums.order_type'],
|
|
22552
|
-
items: PropTypes.arrayOf(T['io.flow.common.v0.models.line_item_form']).isRequired,
|
|
22553
|
-
customer: T['io.flow.common.v0.models.order_customer_form'],
|
|
22554
|
-
delivered_duty: T['io.flow.common.v0.enums.delivered_duty'],
|
|
22555
|
-
selections: PropTypes.arrayOf(PropTypes.string),
|
|
22556
|
-
destination: T['io.flow.experience.v0.models.order_address'],
|
|
22557
|
-
discount: T['io.flow.common.v0.models.money'],
|
|
22558
|
-
discounts: T['io.flow.common.v0.models.discounts_form'],
|
|
22559
|
-
attributes: PropTypes.objectOf(PropTypes.string),
|
|
22560
|
-
authorization_keys: PropTypes.arrayOf(PropTypes.string),
|
|
22561
|
-
options: T['io.flow.experience.v0.models.order_options'],
|
|
22562
|
-
device_details: T['io.flow.payment.v0.unions.device_details'],
|
|
22563
|
-
payment_source: T['io.flow.experience.v0.enums.order_payment_source_type'],
|
|
22676
|
+
T['io.flow.shopify.markets.internal.v0.models.markets_order'] = PropTypes.exact({
|
|
22677
|
+
shopify_order: T['io.flow.shopify.markets.v0.models.shopify_order'].isRequired,
|
|
22678
|
+
flow_authorization: T['io.flow.payment.v0.unions.authorization'],
|
|
22564
22679
|
});
|
|
22565
22680
|
|
|
22566
|
-
T['io.flow.
|
|
22567
|
-
|
|
22568
|
-
|
|
22569
|
-
|
|
22570
|
-
|
|
22571
|
-
destination: T['io.flow.experience.v0.models.order_address'],
|
|
22572
|
-
discount: T['io.flow.common.v0.models.money'],
|
|
22573
|
-
discounts: T['io.flow.common.v0.models.discounts_form'],
|
|
22574
|
-
attributes: PropTypes.objectOf(PropTypes.string),
|
|
22575
|
-
authorization_keys: PropTypes.arrayOf(PropTypes.string),
|
|
22576
|
-
options: T['io.flow.experience.v0.models.order_options'],
|
|
22577
|
-
device_details: T['io.flow.payment.v0.unions.device_details'],
|
|
22578
|
-
payment_source: T['io.flow.experience.v0.enums.order_payment_source_type'],
|
|
22681
|
+
T['io.flow.payment.v0.models.authorization_version'] = PropTypes.exact({
|
|
22682
|
+
id: PropTypes.string.isRequired,
|
|
22683
|
+
timestamp: PropTypes.string.isRequired,
|
|
22684
|
+
type: T['io.flow.common.v0.enums.change_type'].isRequired,
|
|
22685
|
+
authorization: T['io.flow.payment.v0.unions.authorization'].isRequired,
|
|
22579
22686
|
});
|
|
22580
22687
|
|
|
22581
|
-
T['io.flow.
|
|
22582
|
-
|
|
22583
|
-
|
|
22688
|
+
T['io.flow.internal.v0.models.markets_order'] = PropTypes.exact({
|
|
22689
|
+
shopify_order: T['io.flow.shopify.markets.v0.models.shopify_order'].isRequired,
|
|
22690
|
+
flow_authorization: T['io.flow.payment.v0.unions.authorization'],
|
|
22584
22691
|
});
|
|
22585
22692
|
|
|
22586
|
-
T['io.flow.
|
|
22587
|
-
|
|
22588
|
-
|
|
22589
|
-
|
|
22693
|
+
T['io.flow.internal.v0.models.checkout_payment'] = PropTypes.exact({
|
|
22694
|
+
authorizations: PropTypes.arrayOf(T['io.flow.payment.v0.unions.authorization']).isRequired,
|
|
22695
|
+
sources: PropTypes.arrayOf(T['io.flow.payment.v0.unions.payment_source']).isRequired,
|
|
22696
|
+
public_key: T['io.flow.payment.v0.models.public_key'].isRequired,
|
|
22697
|
+
method_types: PropTypes.arrayOf(T['io.flow.reference.v0.enums.payment_method_type']).isRequired,
|
|
22698
|
+
method_rules: PropTypes.arrayOf(T['io.flow.experience.v0.models.payment_method_rule']).isRequired,
|
|
22699
|
+
authorization_parameters: PropTypes.arrayOf(T['io.flow.internal.v0.models.authorization_parameters']).isRequired,
|
|
22590
22700
|
});
|
|
22591
22701
|
|
|
22592
|
-
T['io.flow.
|
|
22593
|
-
|
|
22594
|
-
|
|
22595
|
-
|
|
22702
|
+
T['io.flow.payment.v0.models.payment_fee'] = PropTypes.exact({
|
|
22703
|
+
type: T['io.flow.payment.v0.enums.payment_fee_type'].isRequired,
|
|
22704
|
+
money: T['io.flow.common.v0.models.money'].isRequired,
|
|
22705
|
+
base: T['io.flow.common.v0.models.money'],
|
|
22596
22706
|
});
|
|
22597
22707
|
|
|
22598
|
-
T['io.flow.
|
|
22599
|
-
|
|
22600
|
-
|
|
22601
|
-
|
|
22602
|
-
|
|
22603
|
-
|
|
22708
|
+
T['io.flow.payment.v0.models.capture'] = PropTypes.exact({
|
|
22709
|
+
id: PropTypes.string.isRequired,
|
|
22710
|
+
key: PropTypes.string.isRequired,
|
|
22711
|
+
authorization: T['io.flow.payment.v0.models.authorization_reference'].isRequired,
|
|
22712
|
+
amount: PropTypes.number.isRequired,
|
|
22713
|
+
currency: PropTypes.string.isRequired,
|
|
22714
|
+
requested: T['io.flow.common.v0.models.money'],
|
|
22715
|
+
created_at: PropTypes.string.isRequired,
|
|
22716
|
+
attributes: PropTypes.objectOf(PropTypes.string),
|
|
22717
|
+
status: T['io.flow.payment.v0.enums.capture_status'],
|
|
22718
|
+
base: T['io.flow.common.v0.models.money'],
|
|
22719
|
+
fees: PropTypes.arrayOf(T['io.flow.payment.v0.models.payment_fee']),
|
|
22604
22720
|
});
|
|
22605
22721
|
|
|
22606
|
-
T['io.flow.
|
|
22607
|
-
|
|
22608
|
-
|
|
22609
|
-
items: PropTypes.arrayOf(T['io.flow.common.v0.models.line_item_form']).isRequired,
|
|
22610
|
-
service: PropTypes.string.isRequired,
|
|
22611
|
-
carrier_tracking_number: PropTypes.string.isRequired,
|
|
22612
|
-
key: PropTypes.string,
|
|
22613
|
-
shipment_recipient: T['io.flow.label.v0.enums.shipment_recipient'],
|
|
22722
|
+
T['io.flow.payment.v0.models.refund_capture_summary'] = PropTypes.exact({
|
|
22723
|
+
capture: T['io.flow.payment.v0.models.capture'].isRequired,
|
|
22724
|
+
amount: PropTypes.number.isRequired,
|
|
22614
22725
|
});
|
|
22615
22726
|
|
|
22616
|
-
T['io.flow.
|
|
22617
|
-
|
|
22618
|
-
|
|
22619
|
-
|
|
22620
|
-
|
|
22621
|
-
|
|
22622
|
-
|
|
22727
|
+
T['io.flow.payment.v0.models.refund'] = PropTypes.exact({
|
|
22728
|
+
id: PropTypes.string.isRequired,
|
|
22729
|
+
key: PropTypes.string.isRequired,
|
|
22730
|
+
authorization: T['io.flow.payment.v0.models.authorization_reference'].isRequired,
|
|
22731
|
+
amount: PropTypes.number.isRequired,
|
|
22732
|
+
currency: PropTypes.string.isRequired,
|
|
22733
|
+
requested: T['io.flow.common.v0.models.money'],
|
|
22734
|
+
captures: PropTypes.arrayOf(T['io.flow.payment.v0.models.refund_capture_summary']).isRequired,
|
|
22735
|
+
created_at: PropTypes.string.isRequired,
|
|
22736
|
+
attributes: PropTypes.objectOf(PropTypes.string),
|
|
22737
|
+
status: T['io.flow.payment.v0.enums.refund_status'],
|
|
22738
|
+
base: T['io.flow.common.v0.models.money'],
|
|
22739
|
+
failure_category: T['io.flow.payment.v0.enums.refund_failure_category'],
|
|
22740
|
+
failure_psp_reason: PropTypes.string,
|
|
22623
22741
|
});
|
|
22624
22742
|
|
|
22625
|
-
T['io.flow.
|
|
22626
|
-
|
|
22627
|
-
|
|
22628
|
-
|
|
22629
|
-
|
|
22743
|
+
T['io.flow.payment.v0.models.refund_version'] = PropTypes.exact({
|
|
22744
|
+
id: PropTypes.string.isRequired,
|
|
22745
|
+
timestamp: PropTypes.string.isRequired,
|
|
22746
|
+
type: T['io.flow.common.v0.enums.change_type'].isRequired,
|
|
22747
|
+
refund: T['io.flow.payment.v0.models.refund'].isRequired,
|
|
22630
22748
|
});
|
|
22631
22749
|
|
|
22632
|
-
T['io.flow.
|
|
22633
|
-
|
|
22634
|
-
|
|
22635
|
-
|
|
22636
|
-
|
|
22637
|
-
|
|
22638
|
-
|
|
22750
|
+
T['io.flow.payment.v0.models.refund_capture'] = PropTypes.exact({
|
|
22751
|
+
id: PropTypes.string.isRequired,
|
|
22752
|
+
refund: T['io.flow.payment.v0.models.refund'].isRequired,
|
|
22753
|
+
capture: T['io.flow.payment.v0.models.capture'].isRequired,
|
|
22754
|
+
amount: PropTypes.number.isRequired,
|
|
22755
|
+
currency: PropTypes.string.isRequired,
|
|
22756
|
+
base: T['io.flow.common.v0.models.money'].isRequired,
|
|
22757
|
+
status: T['io.flow.payment.v0.enums.refund_status'],
|
|
22639
22758
|
});
|
|
22640
22759
|
|
|
22641
|
-
T['io.flow.
|
|
22642
|
-
|
|
22643
|
-
|
|
22644
|
-
|
|
22645
|
-
|
|
22646
|
-
origin: T['io.flow.fulfillment.v0.models.shipping_address'].isRequired,
|
|
22647
|
-
'package': T['io.flow.label.v0.models.shipping_label_package'].isRequired,
|
|
22648
|
-
service: PropTypes.string,
|
|
22649
|
-
references: PropTypes.arrayOf(PropTypes.string),
|
|
22760
|
+
T['io.flow.payment.v0.models.capture_version'] = PropTypes.exact({
|
|
22761
|
+
id: PropTypes.string.isRequired,
|
|
22762
|
+
timestamp: PropTypes.string.isRequired,
|
|
22763
|
+
type: T['io.flow.common.v0.enums.change_type'].isRequired,
|
|
22764
|
+
capture: T['io.flow.payment.v0.models.capture'].isRequired,
|
|
22650
22765
|
});
|
|
22651
22766
|
|
|
22652
|
-
T['io.flow.
|
|
22653
|
-
|
|
22654
|
-
T['io.flow.partner.v0.models.summary_label_form'],
|
|
22655
|
-
T['io.flow.partner.v0.models.bridge_label_form'],
|
|
22656
|
-
]);
|
|
22657
|
-
|
|
22658
|
-
T['io.flow.label.v0.models.shipping_notification'] = PropTypes.exact({
|
|
22767
|
+
T['io.flow.merchant.onboarding.v0.models.shopify_merchant_application'] = PropTypes.exact({
|
|
22768
|
+
discriminator: PropTypes.oneOf(['shopify_merchant_application']).isRequired,
|
|
22659
22769
|
id: PropTypes.string.isRequired,
|
|
22660
|
-
|
|
22661
|
-
|
|
22662
|
-
|
|
22663
|
-
|
|
22664
|
-
|
|
22665
|
-
|
|
22666
|
-
|
|
22667
|
-
|
|
22668
|
-
|
|
22669
|
-
|
|
22670
|
-
|
|
22671
|
-
|
|
22672
|
-
|
|
22673
|
-
|
|
22674
|
-
|
|
22770
|
+
organization_id: PropTypes.string.isRequired,
|
|
22771
|
+
organization_reference: T['io.flow.merchant.onboarding.v0.models.onboarding_organization_reference'].isRequired,
|
|
22772
|
+
status: T['io.flow.merchant.onboarding.v0.enums.onboarding_application_status'].isRequired,
|
|
22773
|
+
company: T['io.flow.merchant.onboarding.v0.models.merchant_info'],
|
|
22774
|
+
indirect_tax: T['io.flow.merchant.onboarding.v0.models.indirect_tax'],
|
|
22775
|
+
beneficiary: PropTypes.string,
|
|
22776
|
+
ultimate_beneficiary_owner: T['io.flow.merchant.onboarding.v0.models.ultimate_beneficiary_owner'],
|
|
22777
|
+
business_url: PropTypes.string,
|
|
22778
|
+
business_description: PropTypes.string,
|
|
22779
|
+
business_address: T['io.flow.common.v0.models.address'],
|
|
22780
|
+
refund_percentage: PropTypes.number,
|
|
22781
|
+
chargeback_percentage: PropTypes.number,
|
|
22782
|
+
bank_account_number: PropTypes.string,
|
|
22783
|
+
aba_routing_transit_number: PropTypes.string,
|
|
22784
|
+
other_trade_sector: PropTypes.string,
|
|
22785
|
+
third_party_logistics_partners: PropTypes.arrayOf(T['io.flow.merchant.onboarding.v0.models.third_party_logistics_partner']),
|
|
22786
|
+
center_contact: T['io.flow.merchant.onboarding.v0.models.operations_contact'],
|
|
22787
|
+
average_order_weight: PropTypes.number,
|
|
22788
|
+
package_dimensions: PropTypes.arrayOf(T['io.flow.common.v0.models.dimension']),
|
|
22789
|
+
monthly_average: T['io.flow.merchant.onboarding.v0.models.monthly_average'],
|
|
22790
|
+
default_country_of_origin: PropTypes.string,
|
|
22791
|
+
ratecard: T['io.flow.ratecard.v0.models.ratecard_reference'],
|
|
22792
|
+
rate_card: PropTypes.string.isRequired,
|
|
22793
|
+
created_at: PropTypes.string.isRequired,
|
|
22794
|
+
activated_at: PropTypes.string,
|
|
22795
|
+
status_updated_at: PropTypes.string,
|
|
22796
|
+
shop: T['io.flow.merchant.onboarding.v0.models.shop'],
|
|
22797
|
+
last_year_xborder_gmv: T['io.flow.common.v0.models.money'],
|
|
22798
|
+
last_month_xborder_gmv: T['io.flow.common.v0.models.money'],
|
|
22799
|
+
average_order_value: T['io.flow.common.v0.models.money'],
|
|
22800
|
+
glbe_merchant_guid: PropTypes.string,
|
|
22801
|
+
mcc_codes: PropTypes.arrayOf(PropTypes.number),
|
|
22675
22802
|
});
|
|
22676
22803
|
|
|
22677
|
-
T['io.flow.
|
|
22678
|
-
id: PropTypes.string.isRequired,
|
|
22679
|
-
timestamp: PropTypes.string.isRequired,
|
|
22680
|
-
type: T['io.flow.common.v0.enums.change_type'].isRequired,
|
|
22681
|
-
shipping_notification: T['io.flow.label.v0.models.shipping_notification'].isRequired,
|
|
22682
|
-
});
|
|
22804
|
+
T['io.flow.merchant.onboarding.v0.unions.merchant_application'] = PropTypes.oneOfType([T['io.flow.merchant.onboarding.v0.models.shopify_merchant_application']]);
|
|
22683
22805
|
|
|
22684
|
-
T['io.flow.
|
|
22685
|
-
|
|
22686
|
-
|
|
22687
|
-
attributes: PropTypes.objectOf(PropTypes.string),
|
|
22688
|
-
carrier_tracking_number: PropTypes.string.isRequired,
|
|
22689
|
-
destination: T['io.flow.fulfillment.v0.models.shipping_address'].isRequired,
|
|
22690
|
-
order_number: PropTypes.string.isRequired,
|
|
22691
|
-
'package': T['io.flow.label.v0.models.shipping_label_package'].isRequired,
|
|
22692
|
-
service: PropTypes.string.isRequired,
|
|
22693
|
-
origin: T['io.flow.fulfillment.v0.models.shipping_address'],
|
|
22694
|
-
shipment_recipient: T['io.flow.label.v0.enums.shipment_recipient'],
|
|
22806
|
+
T['io.flow.internal.v0.models.shopify_promotion_attribute_value'] = PropTypes.exact({
|
|
22807
|
+
name: PropTypes.string.isRequired,
|
|
22808
|
+
discount: T['io.flow.common.v0.models.money'].isRequired,
|
|
22695
22809
|
});
|
|
22696
22810
|
|
|
22697
|
-
T['io.flow.
|
|
22698
|
-
|
|
22699
|
-
|
|
22700
|
-
T['io.flow.
|
|
22701
|
-
|
|
22702
|
-
|
|
22703
|
-
|
|
22704
|
-
|
|
22705
|
-
|
|
22706
|
-
|
|
22707
|
-
|
|
22708
|
-
attributes: PropTypes.objectOf(PropTypes.string),
|
|
22709
|
-
delivered_duty: T['io.flow.common.v0.enums.delivered_duty'],
|
|
22710
|
-
direction: T['io.flow.label.v0.enums.direction'],
|
|
22711
|
-
order_number: PropTypes.string.isRequired,
|
|
22712
|
-
service: PropTypes.string,
|
|
22713
|
-
shipment_recipient: T['io.flow.label.v0.enums.shipment_recipient'],
|
|
22714
|
-
package_dimensions_source: T['io.flow.label.v0.enums.package_dimensions_source'],
|
|
22715
|
-
origin_location_source: T['io.flow.label.v0.enums.origin_location_source'],
|
|
22716
|
-
reference_id: PropTypes.string,
|
|
22811
|
+
T['io.flow.internal.v0.models.shipment_cost_summary'] = PropTypes.exact({
|
|
22812
|
+
lane_id: PropTypes.string,
|
|
22813
|
+
ratecard_id: PropTypes.string,
|
|
22814
|
+
ratecard_owner: T['io.flow.fulfillment.v0.enums.ratecard_owner'].isRequired,
|
|
22815
|
+
glbe_shipping_method_id: PropTypes.string,
|
|
22816
|
+
glbe_proposition_name: PropTypes.string,
|
|
22817
|
+
weight_break: PropTypes.number,
|
|
22818
|
+
channel_revenue_share_percentage: PropTypes.number,
|
|
22819
|
+
rate_level_key: PropTypes.string,
|
|
22820
|
+
cost_estimate_source: T['io.flow.label.v0.enums.cost_estimate_source'].isRequired,
|
|
22821
|
+
cost: T['io.flow.common.v0.models.money'].isRequired,
|
|
22717
22822
|
});
|
|
22718
22823
|
|
|
22719
|
-
T['io.flow.
|
|
22720
|
-
|
|
22721
|
-
|
|
22722
|
-
|
|
22723
|
-
|
|
22724
|
-
|
|
22725
|
-
|
|
22726
|
-
|
|
22727
|
-
|
|
22728
|
-
|
|
22824
|
+
T['io.flow.internal.v0.models.restriction_organization'] = PropTypes.exact({
|
|
22825
|
+
id: PropTypes.string.isRequired,
|
|
22826
|
+
name: PropTypes.string.isRequired,
|
|
22827
|
+
environment: T['io.flow.common.v0.enums.environment'].isRequired,
|
|
22828
|
+
url: PropTypes.string,
|
|
22829
|
+
approval_status: T['io.flow.internal.v0.enums.organization_restriction_approval_status'],
|
|
22830
|
+
screening_status: T['io.flow.internal.v0.enums.organization_restriction_screening_status'],
|
|
22831
|
+
review_type: T['io.flow.internal.v0.enums.organization_restriction_review_type'],
|
|
22832
|
+
risk_level: T['io.flow.internal.v0.enums.organization_restriction_risk_level'],
|
|
22833
|
+
hs_code: PropTypes.string,
|
|
22834
|
+
merchant_category_code: PropTypes.string,
|
|
22835
|
+
notes: PropTypes.arrayOf(T['io.flow.internal.v0.models.organization_restriction_status_note']).isRequired,
|
|
22836
|
+
last_year_xborder_gmv: T['io.flow.common.v0.models.money'],
|
|
22837
|
+
last_year_domestic_gmv: T['io.flow.common.v0.models.money'],
|
|
22729
22838
|
});
|
|
22730
22839
|
|
|
22731
|
-
T['io.flow.
|
|
22732
|
-
T['io.flow.
|
|
22733
|
-
|
|
22734
|
-
|
|
22735
|
-
|
|
22840
|
+
T['io.flow.internal.v0.models.restriction_organization_decision_summary'] = PropTypes.exact({
|
|
22841
|
+
organization: T['io.flow.internal.v0.models.restriction_organization'].isRequired,
|
|
22842
|
+
earliest_pending_date: PropTypes.string.isRequired,
|
|
22843
|
+
priority_score: PropTypes.number.isRequired,
|
|
22844
|
+
date: PropTypes.string.isRequired,
|
|
22845
|
+
statuses: PropTypes.arrayOf(T['io.flow.internal.v0.models.restriction_status_metadata']).isRequired,
|
|
22846
|
+
count: PropTypes.number.isRequired,
|
|
22847
|
+
});
|
|
22736
22848
|
|
|
22737
|
-
T['io.flow.internal.v0.models.
|
|
22738
|
-
|
|
22739
|
-
|
|
22740
|
-
|
|
22741
|
-
png: PropTypes.string,
|
|
22742
|
-
recipient: T['io.flow.label.v0.enums.shipment_recipient'],
|
|
22743
|
-
'package': T['io.flow.label.v0.models.shipping_label_package'],
|
|
22744
|
-
label: T['io.flow.label.v0.models.shipping_label_document'],
|
|
22745
|
-
invoice: T['io.flow.label.v0.models.shipping_label_document'],
|
|
22746
|
-
carrier_tracking_number: PropTypes.string,
|
|
22747
|
-
carrier_tracking_number_url: PropTypes.string,
|
|
22748
|
-
service: T['io.flow.reference.v0.models.carrier_service'],
|
|
22849
|
+
T['io.flow.internal.v0.models.liability_money'] = PropTypes.exact({
|
|
22850
|
+
local: T['io.flow.common.v0.models.money'].isRequired,
|
|
22851
|
+
base: T['io.flow.common.v0.models.money'].isRequired,
|
|
22852
|
+
remittance: T['io.flow.common.v0.models.money'].isRequired,
|
|
22749
22853
|
});
|
|
22750
22854
|
|
|
22751
|
-
T['io.flow.internal.v0.models.
|
|
22752
|
-
|
|
22855
|
+
T['io.flow.internal.v0.models.liability_item'] = PropTypes.exact({
|
|
22856
|
+
item_number: PropTypes.string,
|
|
22857
|
+
line_number: PropTypes.string,
|
|
22753
22858
|
description: PropTypes.string.isRequired,
|
|
22754
|
-
|
|
22755
|
-
|
|
22756
|
-
|
|
22859
|
+
code: PropTypes.string,
|
|
22860
|
+
amount: T['io.flow.internal.v0.models.liability_money'].isRequired,
|
|
22861
|
+
rate: PropTypes.number.isRequired,
|
|
22862
|
+
basis: T['io.flow.internal.v0.models.liability_money'].isRequired,
|
|
22863
|
+
included_components: PropTypes.arrayOf(T['io.flow.price.v0.enums.levy_component']).isRequired,
|
|
22864
|
+
no_liability_reason_code: T['io.flow.internal.v0.enums.no_liability_reason_code'],
|
|
22757
22865
|
});
|
|
22758
22866
|
|
|
22759
|
-
T['io.flow.internal.v0.models.
|
|
22867
|
+
T['io.flow.internal.v0.models.fx_revenue_recognition_source'] = PropTypes.exact({
|
|
22760
22868
|
id: PropTypes.string.isRequired,
|
|
22761
|
-
|
|
22762
|
-
|
|
22763
|
-
tracking_summary: T['io.flow.internal.v0.models.search_tracking_summary'],
|
|
22869
|
+
local: T['io.flow.common.v0.models.money'].isRequired,
|
|
22870
|
+
transaction_created_at: PropTypes.string.isRequired,
|
|
22764
22871
|
});
|
|
22765
22872
|
|
|
22766
|
-
T['io.flow.
|
|
22767
|
-
|
|
22768
|
-
|
|
22769
|
-
authorization: T['io.flow.payment.v0.models.authorization_reference'].isRequired,
|
|
22770
|
-
status: T['io.flow.payment.v0.enums.reversal_status'].isRequired,
|
|
22771
|
-
amount: PropTypes.number.isRequired,
|
|
22772
|
-
currency: PropTypes.string.isRequired,
|
|
22773
|
-
requested: T['io.flow.common.v0.models.money'].isRequired,
|
|
22774
|
-
created_at: PropTypes.string.isRequired,
|
|
22775
|
-
attributes: PropTypes.objectOf(PropTypes.string).isRequired,
|
|
22776
|
-
base: T['io.flow.common.v0.models.money'],
|
|
22873
|
+
T['io.flow.internal.v0.models.fx_revenue_recognition_account'] = PropTypes.exact({
|
|
22874
|
+
value: T['io.flow.common.v0.models.money'].isRequired,
|
|
22875
|
+
spot_rate: T['io.flow.internal.v0.models.fx_revenue_recognition_account_rate'].isRequired,
|
|
22777
22876
|
});
|
|
22778
22877
|
|
|
22779
|
-
T['io.flow.
|
|
22780
|
-
|
|
22781
|
-
|
|
22782
|
-
type: T['io.flow.common.v0.enums.change_type'].isRequired,
|
|
22783
|
-
reversal: T['io.flow.payment.v0.models.reversal'].isRequired,
|
|
22878
|
+
T['io.flow.internal.v0.models.fx_fee'] = PropTypes.exact({
|
|
22879
|
+
base: T['io.flow.common.v0.models.money'].isRequired,
|
|
22880
|
+
local: T['io.flow.common.v0.models.money'].isRequired,
|
|
22784
22881
|
});
|
|
22785
22882
|
|
|
22786
|
-
T['io.flow.
|
|
22787
|
-
discriminator: PropTypes.oneOf(['online_authorization']).isRequired,
|
|
22883
|
+
T['io.flow.internal.v0.models.fx_revenue_recognition'] = PropTypes.exact({
|
|
22788
22884
|
id: PropTypes.string.isRequired,
|
|
22789
|
-
|
|
22790
|
-
|
|
22791
|
-
|
|
22792
|
-
|
|
22793
|
-
payment: PropTypes.object,
|
|
22794
|
-
amount: PropTypes.number.isRequired,
|
|
22795
|
-
currency: PropTypes.string.isRequired,
|
|
22796
|
-
requested: T['io.flow.common.v0.models.money'],
|
|
22797
|
-
customer: T['io.flow.common.v0.models.order_customer'].isRequired,
|
|
22798
|
-
attributes: PropTypes.objectOf(PropTypes.string).isRequired,
|
|
22799
|
-
destination: T['io.flow.common.v0.models.address'],
|
|
22800
|
-
billing_address: T['io.flow.common.v0.models.billing_address'],
|
|
22801
|
-
order: T['io.flow.payment.v0.models.authorization_order_reference'],
|
|
22802
|
-
payment_order_reference: T['io.flow.payment.v0.unions.payment_order_reference'],
|
|
22803
|
-
ip: PropTypes.string,
|
|
22804
|
-
result: T['io.flow.payment.v0.models.authorization_result'].isRequired,
|
|
22885
|
+
organization: T['io.flow.internal.v0.models.fx_revenue_recognition_organization'].isRequired,
|
|
22886
|
+
account: T['io.flow.internal.v0.models.fx_revenue_recognition_account'].isRequired,
|
|
22887
|
+
fx: T['io.flow.internal.v0.models.fx_fee'].isRequired,
|
|
22888
|
+
spot_rate: T['io.flow.internal.v0.models.fx_revenue_recognition_rate'].isRequired,
|
|
22805
22889
|
created_at: PropTypes.string.isRequired,
|
|
22806
|
-
|
|
22807
|
-
|
|
22808
|
-
|
|
22809
|
-
|
|
22810
|
-
authorized_at: PropTypes.string,
|
|
22811
|
-
authorization_request_id: PropTypes.string,
|
|
22890
|
+
order: T['io.flow.internal.v0.models.fx_revenue_recognition_order'].isRequired,
|
|
22891
|
+
merchant_of_record: T['io.flow.common.v0.enums.merchant_of_record'].isRequired,
|
|
22892
|
+
source: T['io.flow.internal.v0.models.fx_revenue_recognition_source'].isRequired,
|
|
22893
|
+
reporting_date: PropTypes.string,
|
|
22812
22894
|
});
|
|
22813
22895
|
|
|
22814
|
-
T['io.flow.
|
|
22815
|
-
|
|
22816
|
-
|
|
22896
|
+
T['io.flow.internal.v0.models.fuel_surcharge_service_fee_amount_by_weight_put_form'] = PropTypes.exact({
|
|
22897
|
+
discriminator: PropTypes.oneOf(['fuel_surcharge_service_fee_amount_by_weight_put_form']).isRequired,
|
|
22898
|
+
amount: T['io.flow.common.v0.models.money'].isRequired,
|
|
22899
|
+
weight: T['io.flow.ratecard.v0.models.fee_weight'].isRequired,
|
|
22817
22900
|
});
|
|
22818
22901
|
|
|
22819
|
-
T['io.flow.
|
|
22820
|
-
|
|
22821
|
-
|
|
22822
|
-
|
|
22823
|
-
transferred_money: T['io.flow.payment.v0.models.exchanged_money'].isRequired,
|
|
22824
|
-
status: T['io.flow.payment.v0.enums.transfer_status'].isRequired,
|
|
22825
|
-
created_at: PropTypes.string.isRequired,
|
|
22826
|
-
reference: T['io.flow.payment.v0.unions.transfer_reference'].isRequired,
|
|
22827
|
-
transferred_at: PropTypes.string.isRequired,
|
|
22828
|
-
});
|
|
22902
|
+
T['io.flow.internal.v0.unions.fuel_surcharge_service_fee_put_form'] = PropTypes.oneOfType([
|
|
22903
|
+
T['io.flow.internal.v0.models.fuel_surcharge_service_fee_percent_put_form'],
|
|
22904
|
+
T['io.flow.internal.v0.models.fuel_surcharge_service_fee_amount_by_weight_put_form'],
|
|
22905
|
+
]);
|
|
22829
22906
|
|
|
22830
|
-
T['io.flow.
|
|
22831
|
-
|
|
22832
|
-
|
|
22833
|
-
|
|
22834
|
-
|
|
22835
|
-
|
|
22836
|
-
|
|
22837
|
-
|
|
22838
|
-
|
|
22839
|
-
requested: T['io.flow.common.v0.models.money'],
|
|
22840
|
-
customer: T['io.flow.common.v0.models.order_customer'].isRequired,
|
|
22841
|
-
attributes: PropTypes.objectOf(PropTypes.string).isRequired,
|
|
22842
|
-
destination: T['io.flow.common.v0.models.address'],
|
|
22843
|
-
billing_address: T['io.flow.common.v0.models.billing_address'],
|
|
22844
|
-
order: T['io.flow.payment.v0.models.authorization_order_reference'],
|
|
22845
|
-
payment_order_reference: T['io.flow.payment.v0.unions.payment_order_reference'],
|
|
22846
|
-
ip: PropTypes.string,
|
|
22847
|
-
result: T['io.flow.payment.v0.models.authorization_result'].isRequired,
|
|
22848
|
-
created_at: PropTypes.string.isRequired,
|
|
22849
|
-
expires_at: PropTypes.string,
|
|
22850
|
-
base: T['io.flow.common.v0.models.money'],
|
|
22851
|
-
processor: T['io.flow.payment.v0.unions.expandable_payment_processor'],
|
|
22852
|
-
stored_method_usage_step: T['io.flow.payment.v0.enums.stored_method_usage_step'],
|
|
22853
|
-
authorized_at: PropTypes.string,
|
|
22854
|
-
authorization_request_id: PropTypes.string,
|
|
22907
|
+
T['io.flow.common.v0.models.line_item_form'] = PropTypes.exact({
|
|
22908
|
+
number: PropTypes.string.isRequired,
|
|
22909
|
+
quantity: PropTypes.number.isRequired,
|
|
22910
|
+
shipment_estimate: T['io.flow.common.v0.models.datetime_range'],
|
|
22911
|
+
price: T['io.flow.common.v0.models.money'],
|
|
22912
|
+
attributes: PropTypes.objectOf(PropTypes.string),
|
|
22913
|
+
center: PropTypes.string,
|
|
22914
|
+
discount: T['io.flow.common.v0.models.money'],
|
|
22915
|
+
discounts: T['io.flow.common.v0.models.discounts_form'],
|
|
22855
22916
|
});
|
|
22856
22917
|
|
|
22857
|
-
T['io.flow.
|
|
22858
|
-
|
|
22859
|
-
T['io.flow.
|
|
22860
|
-
]);
|
|
22861
|
-
|
|
22862
|
-
T['io.flow.shopify.markets.internal.v0.models.markets_order'] = PropTypes.exact({
|
|
22863
|
-
shopify_order: T['io.flow.shopify.markets.v0.models.shopify_order'].isRequired,
|
|
22864
|
-
flow_authorization: T['io.flow.payment.v0.unions.authorization'],
|
|
22918
|
+
T['io.flow.fulfillment.v0.models.delivery_summary'] = PropTypes.exact({
|
|
22919
|
+
id: PropTypes.string.isRequired,
|
|
22920
|
+
items: PropTypes.arrayOf(T['io.flow.common.v0.models.line_item_form']).isRequired,
|
|
22865
22921
|
});
|
|
22866
22922
|
|
|
22867
|
-
T['io.flow.
|
|
22923
|
+
T['io.flow.fulfillment.v0.models.delivery_version'] = PropTypes.exact({
|
|
22868
22924
|
id: PropTypes.string.isRequired,
|
|
22869
22925
|
timestamp: PropTypes.string.isRequired,
|
|
22870
22926
|
type: T['io.flow.common.v0.enums.change_type'].isRequired,
|
|
22871
|
-
|
|
22927
|
+
delivery: T['io.flow.fulfillment.v0.models.delivery_summary'].isRequired,
|
|
22872
22928
|
});
|
|
22873
22929
|
|
|
22874
|
-
T['io.flow.
|
|
22875
|
-
|
|
22876
|
-
|
|
22930
|
+
T['io.flow.ratecard.v0.models.ratecard_estimate_v4'] = PropTypes.exact({
|
|
22931
|
+
discriminator: PropTypes.oneOf(['ratecard_estimate_v4']).isRequired,
|
|
22932
|
+
hops: PropTypes.arrayOf(T['io.flow.ratecard.v0.models.hop_v2']).isRequired,
|
|
22933
|
+
delivered_duty: T['io.flow.common.v0.enums.delivered_duty'].isRequired,
|
|
22934
|
+
distance_unit_of_measurement: T['io.flow.common.v0.enums.unit_of_measurement'],
|
|
22935
|
+
weight_unit_of_measurement: T['io.flow.common.v0.enums.unit_of_measurement'],
|
|
22936
|
+
dimensional_weight: T['io.flow.common.v0.models.measurement'],
|
|
22937
|
+
gravitational_weight: T['io.flow.common.v0.models.measurement'],
|
|
22938
|
+
ratecard_id: PropTypes.string,
|
|
22939
|
+
glbe_shipping_method_id: PropTypes.string,
|
|
22940
|
+
glbe_proposition_name: PropTypes.string,
|
|
22941
|
+
channel_revenue_share_percentage: PropTypes.number,
|
|
22942
|
+
rate_level_key: PropTypes.string,
|
|
22943
|
+
line_items: PropTypes.arrayOf(T['io.flow.common.v0.models.line_item_form']),
|
|
22877
22944
|
});
|
|
22878
22945
|
|
|
22879
|
-
T['io.flow.
|
|
22880
|
-
|
|
22881
|
-
|
|
22882
|
-
|
|
22883
|
-
|
|
22884
|
-
|
|
22885
|
-
|
|
22946
|
+
T['io.flow.ratecard.v0.models.ratecard_estimate_v3'] = PropTypes.exact({
|
|
22947
|
+
discriminator: PropTypes.oneOf(['ratecard_estimate_v3']).isRequired,
|
|
22948
|
+
hops: PropTypes.arrayOf(T['io.flow.ratecard.v0.models.hop']).isRequired,
|
|
22949
|
+
delivered_duty: T['io.flow.common.v0.enums.delivered_duty'].isRequired,
|
|
22950
|
+
dimensional_weight: T['io.flow.common.v0.models.measurement'],
|
|
22951
|
+
gravitational_weight: T['io.flow.common.v0.models.measurement'],
|
|
22952
|
+
line_items: PropTypes.arrayOf(T['io.flow.common.v0.models.line_item_form']),
|
|
22953
|
+
ratecard: T['io.flow.ratecard.v0.models.ratecard_summary'].isRequired,
|
|
22886
22954
|
});
|
|
22887
22955
|
|
|
22888
|
-
T['io.flow.
|
|
22889
|
-
|
|
22890
|
-
|
|
22891
|
-
|
|
22956
|
+
T['io.flow.ratecard.v0.models.ratecard_estimate_v2'] = PropTypes.exact({
|
|
22957
|
+
discriminator: PropTypes.oneOf(['ratecard_estimate_v2']).isRequired,
|
|
22958
|
+
hops: PropTypes.arrayOf(T['io.flow.ratecard.v0.models.hop']).isRequired,
|
|
22959
|
+
delivered_duty: T['io.flow.common.v0.enums.delivered_duty'].isRequired,
|
|
22960
|
+
dimensional_weight: T['io.flow.common.v0.models.measurement'],
|
|
22961
|
+
gravitational_weight: T['io.flow.common.v0.models.measurement'],
|
|
22962
|
+
line_items: PropTypes.arrayOf(T['io.flow.common.v0.models.line_item_form']),
|
|
22963
|
+
ratecard_owner: T['io.flow.fulfillment.v0.enums.ratecard_owner'],
|
|
22892
22964
|
});
|
|
22893
22965
|
|
|
22894
|
-
T['io.flow.
|
|
22895
|
-
|
|
22896
|
-
|
|
22897
|
-
|
|
22898
|
-
amount: PropTypes.number.isRequired,
|
|
22966
|
+
T['io.flow.ratecard.v0.models.ratecard_estimate_v1'] = PropTypes.exact({
|
|
22967
|
+
discriminator: PropTypes.oneOf(['ratecard_estimate_v1']).isRequired,
|
|
22968
|
+
service: T['io.flow.ratecard.v0.models.ratecard_service_summary'].isRequired,
|
|
22969
|
+
shipment_window: T['io.flow.ratecard.v0.models.shipment_window'].isRequired,
|
|
22899
22970
|
currency: PropTypes.string.isRequired,
|
|
22900
|
-
|
|
22901
|
-
|
|
22902
|
-
|
|
22903
|
-
|
|
22904
|
-
|
|
22905
|
-
|
|
22971
|
+
amount: PropTypes.number.isRequired,
|
|
22972
|
+
fees: PropTypes.arrayOf(T['io.flow.ratecard.v0.unions.ratecard_fee']).isRequired,
|
|
22973
|
+
total: PropTypes.number.isRequired,
|
|
22974
|
+
delivered_duty: T['io.flow.common.v0.enums.delivered_duty'].isRequired,
|
|
22975
|
+
dimensional_weight: T['io.flow.common.v0.models.measurement'],
|
|
22976
|
+
gravitational_weight: T['io.flow.common.v0.models.measurement'],
|
|
22977
|
+
line_items: PropTypes.arrayOf(T['io.flow.common.v0.models.line_item_form']),
|
|
22906
22978
|
});
|
|
22907
22979
|
|
|
22908
|
-
T['io.flow.
|
|
22909
|
-
|
|
22910
|
-
|
|
22980
|
+
T['io.flow.ratecard.v0.unions.ratecard_estimate'] = PropTypes.oneOfType([
|
|
22981
|
+
T['io.flow.ratecard.v0.models.ratecard_estimate_v1'],
|
|
22982
|
+
T['io.flow.ratecard.v0.models.ratecard_estimate_v2'],
|
|
22983
|
+
T['io.flow.ratecard.v0.models.ratecard_estimate_v3'],
|
|
22984
|
+
T['io.flow.ratecard.v0.models.ratecard_estimate_v4'],
|
|
22985
|
+
]);
|
|
22986
|
+
|
|
22987
|
+
T['io.flow.ratecard.v0.models.ratecard_estimate_form'] = PropTypes.exact({
|
|
22988
|
+
origin_address: T['io.flow.common.v0.models.address'].isRequired,
|
|
22989
|
+
destination_address: T['io.flow.common.v0.models.address'].isRequired,
|
|
22990
|
+
weight_unit: T['io.flow.common.v0.enums.unit_of_measurement'],
|
|
22991
|
+
distance_unit: T['io.flow.common.v0.enums.unit_of_measurement'],
|
|
22992
|
+
service: PropTypes.string,
|
|
22993
|
+
weight: PropTypes.number,
|
|
22994
|
+
length: PropTypes.number,
|
|
22995
|
+
width: PropTypes.number,
|
|
22996
|
+
depth: PropTypes.number,
|
|
22997
|
+
delivered_duty: T['io.flow.common.v0.enums.delivered_duty'],
|
|
22998
|
+
line_items: PropTypes.arrayOf(T['io.flow.common.v0.models.line_item_form']),
|
|
22999
|
+
center_id: PropTypes.string,
|
|
23000
|
+
taxes_owed: T['io.flow.common.v0.models.money'],
|
|
23001
|
+
duties_owed: T['io.flow.common.v0.models.money'],
|
|
22911
23002
|
});
|
|
22912
23003
|
|
|
22913
|
-
T['io.flow.
|
|
22914
|
-
|
|
22915
|
-
|
|
22916
|
-
|
|
22917
|
-
|
|
22918
|
-
|
|
22919
|
-
|
|
22920
|
-
|
|
22921
|
-
|
|
23004
|
+
T['io.flow.experience.v0.models.order_replacement_form'] = PropTypes.exact({
|
|
23005
|
+
items: PropTypes.arrayOf(T['io.flow.common.v0.models.line_item_form']),
|
|
23006
|
+
});
|
|
23007
|
+
|
|
23008
|
+
T['io.flow.experience.v0.models.order_put_form'] = PropTypes.exact({
|
|
23009
|
+
order_type: T['io.flow.experience.v0.enums.order_type'],
|
|
23010
|
+
items: PropTypes.arrayOf(T['io.flow.common.v0.models.line_item_form']).isRequired,
|
|
23011
|
+
customer: T['io.flow.common.v0.models.order_customer_form'],
|
|
23012
|
+
delivered_duty: T['io.flow.common.v0.enums.delivered_duty'],
|
|
23013
|
+
selections: PropTypes.arrayOf(PropTypes.string),
|
|
23014
|
+
destination: T['io.flow.experience.v0.models.order_address'],
|
|
23015
|
+
discount: T['io.flow.common.v0.models.money'],
|
|
23016
|
+
discounts: T['io.flow.common.v0.models.discounts_form'],
|
|
22922
23017
|
attributes: PropTypes.objectOf(PropTypes.string),
|
|
22923
|
-
|
|
22924
|
-
|
|
22925
|
-
|
|
22926
|
-
|
|
23018
|
+
authorization_keys: PropTypes.arrayOf(PropTypes.string),
|
|
23019
|
+
options: T['io.flow.experience.v0.models.order_options'],
|
|
23020
|
+
device_details: T['io.flow.payment.v0.unions.device_details'],
|
|
23021
|
+
payment_source: T['io.flow.experience.v0.enums.order_payment_source_type'],
|
|
22927
23022
|
});
|
|
22928
23023
|
|
|
22929
|
-
T['io.flow.
|
|
22930
|
-
|
|
22931
|
-
|
|
22932
|
-
|
|
22933
|
-
|
|
23024
|
+
T['io.flow.experience.v0.models.order_form'] = PropTypes.exact({
|
|
23025
|
+
customer: T['io.flow.common.v0.models.order_customer_form'],
|
|
23026
|
+
items: PropTypes.arrayOf(T['io.flow.common.v0.models.line_item_form']).isRequired,
|
|
23027
|
+
delivered_duty: T['io.flow.common.v0.enums.delivered_duty'],
|
|
23028
|
+
number: PropTypes.string,
|
|
23029
|
+
destination: T['io.flow.experience.v0.models.order_address'],
|
|
23030
|
+
discount: T['io.flow.common.v0.models.money'],
|
|
23031
|
+
discounts: T['io.flow.common.v0.models.discounts_form'],
|
|
23032
|
+
attributes: PropTypes.objectOf(PropTypes.string),
|
|
23033
|
+
authorization_keys: PropTypes.arrayOf(PropTypes.string),
|
|
23034
|
+
options: T['io.flow.experience.v0.models.order_options'],
|
|
23035
|
+
device_details: T['io.flow.payment.v0.unions.device_details'],
|
|
23036
|
+
payment_source: T['io.flow.experience.v0.enums.order_payment_source_type'],
|
|
22934
23037
|
});
|
|
22935
23038
|
|
|
22936
|
-
T['io.flow.
|
|
22937
|
-
|
|
22938
|
-
|
|
22939
|
-
capture: T['io.flow.payment.v0.models.capture'].isRequired,
|
|
22940
|
-
amount: PropTypes.number.isRequired,
|
|
22941
|
-
currency: PropTypes.string.isRequired,
|
|
22942
|
-
base: T['io.flow.common.v0.models.money'].isRequired,
|
|
22943
|
-
status: T['io.flow.payment.v0.enums.refund_status'],
|
|
23039
|
+
T['io.flow.experience.v0.models.order_with_discounts_form'] = PropTypes.exact({
|
|
23040
|
+
order: T['io.flow.experience.v0.models.order_form'].isRequired,
|
|
23041
|
+
discounts: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
22944
23042
|
});
|
|
22945
23043
|
|
|
22946
|
-
T['io.flow.
|
|
22947
|
-
|
|
22948
|
-
|
|
22949
|
-
|
|
22950
|
-
capture: T['io.flow.payment.v0.models.capture'].isRequired,
|
|
23044
|
+
T['io.flow.experience.v0.models.order_estimate_form'] = PropTypes.exact({
|
|
23045
|
+
items: PropTypes.arrayOf(T['io.flow.common.v0.models.line_item_form']).isRequired,
|
|
23046
|
+
destination: T['io.flow.experience.v0.models.order_address'],
|
|
23047
|
+
selections: PropTypes.arrayOf(PropTypes.string),
|
|
22951
23048
|
});
|
|
22952
23049
|
|
|
22953
|
-
T['io.flow.
|
|
22954
|
-
|
|
22955
|
-
|
|
22956
|
-
|
|
22957
|
-
|
|
22958
|
-
|
|
22959
|
-
|
|
22960
|
-
|
|
22961
|
-
|
|
22962
|
-
|
|
22963
|
-
|
|
22964
|
-
|
|
22965
|
-
|
|
22966
|
-
|
|
22967
|
-
|
|
22968
|
-
|
|
22969
|
-
|
|
22970
|
-
|
|
22971
|
-
|
|
22972
|
-
|
|
22973
|
-
|
|
22974
|
-
|
|
22975
|
-
|
|
22976
|
-
|
|
22977
|
-
|
|
22978
|
-
|
|
22979
|
-
|
|
22980
|
-
|
|
22981
|
-
|
|
22982
|
-
|
|
22983
|
-
|
|
22984
|
-
|
|
22985
|
-
|
|
22986
|
-
|
|
22987
|
-
|
|
23050
|
+
T['io.flow.partner.v0.models.bridge_label_package'] = PropTypes.exact({
|
|
23051
|
+
dimensions: T['io.flow.common.v0.models.dimension'],
|
|
23052
|
+
items: PropTypes.arrayOf(T['io.flow.common.v0.models.line_item_form']).isRequired,
|
|
23053
|
+
reference_number: PropTypes.string.isRequired,
|
|
23054
|
+
});
|
|
23055
|
+
|
|
23056
|
+
T['io.flow.partner.v0.models.bridge_label_form'] = PropTypes.exact({
|
|
23057
|
+
discriminator: PropTypes.oneOf(['bridge_label_form']).isRequired,
|
|
23058
|
+
organization: PropTypes.string.isRequired,
|
|
23059
|
+
order_number: PropTypes.string.isRequired,
|
|
23060
|
+
'package': T['io.flow.partner.v0.models.bridge_label_package'].isRequired,
|
|
23061
|
+
hub: T['io.flow.partner.v0.models.bridge_hub'],
|
|
23062
|
+
});
|
|
23063
|
+
|
|
23064
|
+
T['io.flow.label.v0.models.summary_shipping_notification_form'] = PropTypes.exact({
|
|
23065
|
+
discriminator: PropTypes.oneOf(['summary_shipping_notification_form']).isRequired,
|
|
23066
|
+
order_number: PropTypes.string.isRequired,
|
|
23067
|
+
items: PropTypes.arrayOf(T['io.flow.common.v0.models.line_item_form']).isRequired,
|
|
23068
|
+
service: PropTypes.string.isRequired,
|
|
23069
|
+
carrier_tracking_number: PropTypes.string.isRequired,
|
|
23070
|
+
key: PropTypes.string,
|
|
23071
|
+
shipment_recipient: T['io.flow.label.v0.enums.shipment_recipient'],
|
|
23072
|
+
});
|
|
23073
|
+
|
|
23074
|
+
T['io.flow.label.v0.models.summary_shipping_label_form'] = PropTypes.exact({
|
|
23075
|
+
discriminator: PropTypes.oneOf(['summary_shipping_label_form']).isRequired,
|
|
23076
|
+
order_number: PropTypes.string.isRequired,
|
|
23077
|
+
items: PropTypes.arrayOf(T['io.flow.common.v0.models.line_item_form']).isRequired,
|
|
23078
|
+
center_key: PropTypes.string,
|
|
23079
|
+
direction: T['io.flow.label.v0.enums.direction'],
|
|
23080
|
+
reference_id: PropTypes.string,
|
|
23081
|
+
});
|
|
23082
|
+
|
|
23083
|
+
T['io.flow.label.v0.models.shipping_label_package'] = PropTypes.exact({
|
|
23084
|
+
dimensions: T['io.flow.common.v0.models.dimension'].isRequired,
|
|
23085
|
+
volumetric_weight: PropTypes.number,
|
|
23086
|
+
items: PropTypes.arrayOf(T['io.flow.common.v0.models.line_item_form']).isRequired,
|
|
23087
|
+
reference_number: PropTypes.string,
|
|
23088
|
+
});
|
|
23089
|
+
|
|
23090
|
+
T['io.flow.partner.v0.models.summary_label_form'] = PropTypes.exact({
|
|
23091
|
+
discriminator: PropTypes.oneOf(['summary_label_form']).isRequired,
|
|
23092
|
+
organization: PropTypes.string.isRequired,
|
|
23093
|
+
order_number: PropTypes.string.isRequired,
|
|
23094
|
+
items: PropTypes.arrayOf(T['io.flow.common.v0.models.line_item_form']),
|
|
23095
|
+
'package': T['io.flow.label.v0.models.shipping_label_package'],
|
|
23096
|
+
center_key: PropTypes.string,
|
|
23097
|
+
});
|
|
23098
|
+
|
|
23099
|
+
T['io.flow.partner.v0.models.detailed_label_form'] = PropTypes.exact({
|
|
23100
|
+
discriminator: PropTypes.oneOf(['detailed_label_form']).isRequired,
|
|
23101
|
+
organization: PropTypes.string.isRequired,
|
|
23102
|
+
destination: T['io.flow.fulfillment.v0.models.shipping_address'].isRequired,
|
|
23103
|
+
order_number: PropTypes.string.isRequired,
|
|
23104
|
+
origin: T['io.flow.fulfillment.v0.models.shipping_address'].isRequired,
|
|
23105
|
+
'package': T['io.flow.label.v0.models.shipping_label_package'].isRequired,
|
|
23106
|
+
service: PropTypes.string,
|
|
23107
|
+
references: PropTypes.arrayOf(PropTypes.string),
|
|
22988
23108
|
});
|
|
22989
23109
|
|
|
22990
|
-
T['io.flow.
|
|
23110
|
+
T['io.flow.partner.v0.unions.label_form'] = PropTypes.oneOfType([
|
|
23111
|
+
T['io.flow.partner.v0.models.detailed_label_form'],
|
|
23112
|
+
T['io.flow.partner.v0.models.summary_label_form'],
|
|
23113
|
+
T['io.flow.partner.v0.models.bridge_label_form'],
|
|
23114
|
+
]);
|
|
22991
23115
|
|
|
22992
|
-
T['io.flow.
|
|
22993
|
-
|
|
22994
|
-
|
|
23116
|
+
T['io.flow.label.v0.models.shipping_notification'] = PropTypes.exact({
|
|
23117
|
+
id: PropTypes.string.isRequired,
|
|
23118
|
+
key: PropTypes.string.isRequired,
|
|
23119
|
+
attributes: PropTypes.objectOf(PropTypes.string).isRequired,
|
|
23120
|
+
carrier_tracking_number: PropTypes.string.isRequired,
|
|
23121
|
+
destination: T['io.flow.fulfillment.v0.models.shipping_address'],
|
|
23122
|
+
flow_tracking_number: PropTypes.string.isRequired,
|
|
23123
|
+
origin: T['io.flow.fulfillment.v0.models.shipping_address'],
|
|
23124
|
+
'package': T['io.flow.label.v0.models.shipping_label_package'],
|
|
23125
|
+
service: T['io.flow.fulfillment.v0.unions.service_description'].isRequired,
|
|
23126
|
+
window: T['io.flow.common.v0.models.datetime_range'],
|
|
23127
|
+
order: T['io.flow.label.v0.models.label_order_summary'],
|
|
23128
|
+
order_identifier: PropTypes.string,
|
|
23129
|
+
fulfillment_key: PropTypes.string,
|
|
23130
|
+
shipment_recipient: T['io.flow.label.v0.enums.shipment_recipient'],
|
|
23131
|
+
created_at: PropTypes.string,
|
|
23132
|
+
updated_at: PropTypes.string,
|
|
22995
23133
|
});
|
|
22996
23134
|
|
|
22997
|
-
T['io.flow.
|
|
23135
|
+
T['io.flow.label.v0.models.shipping_notification_version'] = PropTypes.exact({
|
|
22998
23136
|
id: PropTypes.string.isRequired,
|
|
22999
|
-
|
|
23000
|
-
|
|
23001
|
-
|
|
23002
|
-
approval_status: T['io.flow.internal.v0.enums.organization_restriction_approval_status'],
|
|
23003
|
-
screening_status: T['io.flow.internal.v0.enums.organization_restriction_screening_status'],
|
|
23004
|
-
review_type: T['io.flow.internal.v0.enums.organization_restriction_review_type'],
|
|
23005
|
-
risk_level: T['io.flow.internal.v0.enums.organization_restriction_risk_level'],
|
|
23006
|
-
hs_code: PropTypes.string,
|
|
23007
|
-
merchant_category_code: PropTypes.string,
|
|
23008
|
-
notes: PropTypes.arrayOf(T['io.flow.internal.v0.models.organization_restriction_status_note']).isRequired,
|
|
23009
|
-
last_year_xborder_gmv: T['io.flow.common.v0.models.money'],
|
|
23010
|
-
last_year_domestic_gmv: T['io.flow.common.v0.models.money'],
|
|
23137
|
+
timestamp: PropTypes.string.isRequired,
|
|
23138
|
+
type: T['io.flow.common.v0.enums.change_type'].isRequired,
|
|
23139
|
+
shipping_notification: T['io.flow.label.v0.models.shipping_notification'].isRequired,
|
|
23011
23140
|
});
|
|
23012
23141
|
|
|
23013
|
-
T['io.flow.
|
|
23014
|
-
|
|
23015
|
-
|
|
23016
|
-
|
|
23017
|
-
|
|
23018
|
-
|
|
23019
|
-
|
|
23142
|
+
T['io.flow.label.v0.models.detailed_shipping_notification_form'] = PropTypes.exact({
|
|
23143
|
+
discriminator: PropTypes.oneOf(['detailed_shipping_notification_form']).isRequired,
|
|
23144
|
+
key: PropTypes.string,
|
|
23145
|
+
attributes: PropTypes.objectOf(PropTypes.string),
|
|
23146
|
+
carrier_tracking_number: PropTypes.string.isRequired,
|
|
23147
|
+
destination: T['io.flow.fulfillment.v0.models.shipping_address'].isRequired,
|
|
23148
|
+
order_number: PropTypes.string.isRequired,
|
|
23149
|
+
'package': T['io.flow.label.v0.models.shipping_label_package'].isRequired,
|
|
23150
|
+
service: PropTypes.string.isRequired,
|
|
23151
|
+
origin: T['io.flow.fulfillment.v0.models.shipping_address'],
|
|
23152
|
+
shipment_recipient: T['io.flow.label.v0.enums.shipment_recipient'],
|
|
23020
23153
|
});
|
|
23021
23154
|
|
|
23022
|
-
T['io.flow.
|
|
23023
|
-
|
|
23024
|
-
|
|
23025
|
-
|
|
23026
|
-
|
|
23155
|
+
T['io.flow.label.v0.unions.shipping_notification_form'] = PropTypes.oneOfType([
|
|
23156
|
+
T['io.flow.label.v0.models.detailed_shipping_notification_form'],
|
|
23157
|
+
T['io.flow.label.v0.models.single_package_shipping_notification_form'],
|
|
23158
|
+
T['io.flow.label.v0.models.summary_shipping_notification_form'],
|
|
23159
|
+
]);
|
|
23027
23160
|
|
|
23028
|
-
T['io.flow.
|
|
23029
|
-
|
|
23030
|
-
|
|
23031
|
-
|
|
23032
|
-
|
|
23033
|
-
|
|
23034
|
-
|
|
23035
|
-
|
|
23036
|
-
|
|
23037
|
-
|
|
23161
|
+
T['io.flow.label.v0.models.detailed_shipping_label_form'] = PropTypes.exact({
|
|
23162
|
+
discriminator: PropTypes.oneOf(['detailed_shipping_label_form']).isRequired,
|
|
23163
|
+
destination: T['io.flow.fulfillment.v0.models.shipping_address'].isRequired,
|
|
23164
|
+
origin: T['io.flow.fulfillment.v0.models.shipping_address'].isRequired,
|
|
23165
|
+
'package': T['io.flow.label.v0.models.shipping_label_package'].isRequired,
|
|
23166
|
+
attributes: PropTypes.objectOf(PropTypes.string),
|
|
23167
|
+
delivered_duty: T['io.flow.common.v0.enums.delivered_duty'],
|
|
23168
|
+
direction: T['io.flow.label.v0.enums.direction'],
|
|
23169
|
+
order_number: PropTypes.string.isRequired,
|
|
23170
|
+
service: PropTypes.string,
|
|
23171
|
+
shipment_recipient: T['io.flow.label.v0.enums.shipment_recipient'],
|
|
23172
|
+
package_dimensions_source: T['io.flow.label.v0.enums.package_dimensions_source'],
|
|
23173
|
+
origin_location_source: T['io.flow.label.v0.enums.origin_location_source'],
|
|
23174
|
+
reference_id: PropTypes.string,
|
|
23038
23175
|
});
|
|
23039
23176
|
|
|
23040
|
-
T['io.flow.
|
|
23041
|
-
|
|
23042
|
-
|
|
23043
|
-
|
|
23177
|
+
T['io.flow.label.v0.models.bridge_shipping_label_form'] = PropTypes.exact({
|
|
23178
|
+
discriminator: PropTypes.oneOf(['bridge_shipping_label_form']).isRequired,
|
|
23179
|
+
order_number: PropTypes.string.isRequired,
|
|
23180
|
+
items: PropTypes.arrayOf(T['io.flow.common.v0.models.line_item_form']),
|
|
23181
|
+
'package': T['io.flow.label.v0.models.shipping_label_package'],
|
|
23182
|
+
origin: T['io.flow.fulfillment.v0.models.shipping_address'],
|
|
23183
|
+
direction: T['io.flow.label.v0.enums.direction'],
|
|
23184
|
+
reference_id: PropTypes.string,
|
|
23185
|
+
origin_location_source: T['io.flow.label.v0.enums.origin_location_source'],
|
|
23186
|
+
hub_code: PropTypes.string,
|
|
23044
23187
|
});
|
|
23045
23188
|
|
|
23046
|
-
T['io.flow.
|
|
23047
|
-
|
|
23048
|
-
|
|
23189
|
+
T['io.flow.label.v0.unions.shipping_label_form'] = PropTypes.oneOfType([
|
|
23190
|
+
T['io.flow.label.v0.models.detailed_shipping_label_form'],
|
|
23191
|
+
T['io.flow.label.v0.models.summary_shipping_label_form'],
|
|
23192
|
+
T['io.flow.label.v0.models.bridge_shipping_label_form'],
|
|
23193
|
+
]);
|
|
23194
|
+
|
|
23195
|
+
T['io.flow.internal.v0.models.label_summary'] = PropTypes.exact({
|
|
23196
|
+
id: PropTypes.string.isRequired,
|
|
23197
|
+
commercial_invoice: PropTypes.string,
|
|
23198
|
+
pdf: PropTypes.string,
|
|
23199
|
+
png: PropTypes.string,
|
|
23200
|
+
recipient: T['io.flow.label.v0.enums.shipment_recipient'],
|
|
23201
|
+
'package': T['io.flow.label.v0.models.shipping_label_package'],
|
|
23202
|
+
label: T['io.flow.label.v0.models.shipping_label_document'],
|
|
23203
|
+
invoice: T['io.flow.label.v0.models.shipping_label_document'],
|
|
23204
|
+
carrier_tracking_number: PropTypes.string,
|
|
23205
|
+
carrier_tracking_number_url: PropTypes.string,
|
|
23206
|
+
service: T['io.flow.reference.v0.models.carrier_service'],
|
|
23049
23207
|
});
|
|
23050
23208
|
|
|
23051
|
-
T['io.flow.internal.v0.models.
|
|
23052
|
-
|
|
23053
|
-
|
|
23209
|
+
T['io.flow.internal.v0.models.search_tracking_summary'] = PropTypes.exact({
|
|
23210
|
+
timestamp: PropTypes.string.isRequired,
|
|
23211
|
+
description: PropTypes.string.isRequired,
|
|
23212
|
+
number: PropTypes.string.isRequired,
|
|
23213
|
+
status: T['io.flow.tracking.v0.enums.tracking_status'].isRequired,
|
|
23214
|
+
label: T['io.flow.internal.v0.models.label_summary'].isRequired,
|
|
23054
23215
|
});
|
|
23055
23216
|
|
|
23056
|
-
T['io.flow.internal.v0.models.
|
|
23217
|
+
T['io.flow.internal.v0.models.return_summary'] = PropTypes.exact({
|
|
23057
23218
|
id: PropTypes.string.isRequired,
|
|
23058
|
-
|
|
23059
|
-
|
|
23060
|
-
|
|
23061
|
-
spot_rate: T['io.flow.internal.v0.models.fx_revenue_recognition_rate'].isRequired,
|
|
23062
|
-
created_at: PropTypes.string.isRequired,
|
|
23063
|
-
order: T['io.flow.internal.v0.models.fx_revenue_recognition_order'].isRequired,
|
|
23064
|
-
merchant_of_record: T['io.flow.common.v0.enums.merchant_of_record'].isRequired,
|
|
23065
|
-
source: T['io.flow.internal.v0.models.fx_revenue_recognition_source'].isRequired,
|
|
23066
|
-
reporting_date: PropTypes.string,
|
|
23219
|
+
items: PropTypes.arrayOf(T['io.flow.return.v0.models.return_line_item']).isRequired,
|
|
23220
|
+
key: PropTypes.string.isRequired,
|
|
23221
|
+
tracking_summary: T['io.flow.internal.v0.models.search_tracking_summary'],
|
|
23067
23222
|
});
|
|
23068
23223
|
|
|
23069
|
-
T['io.flow.internal.v0.models.
|
|
23070
|
-
|
|
23071
|
-
|
|
23072
|
-
|
|
23224
|
+
T['io.flow.internal.v0.models.enriched_line_item_form'] = PropTypes.exact({
|
|
23225
|
+
form: T['io.flow.common.v0.models.line_item_form'].isRequired,
|
|
23226
|
+
customs_product_name: PropTypes.string,
|
|
23227
|
+
tariff_code: PropTypes.string,
|
|
23228
|
+
customs_description: PropTypes.string,
|
|
23229
|
+
hs_description: PropTypes.string,
|
|
23230
|
+
country_of_origin: PropTypes.string.isRequired,
|
|
23231
|
+
price_composition_rate: PropTypes.number.isRequired,
|
|
23232
|
+
duty_composition_rate: PropTypes.number.isRequired,
|
|
23233
|
+
export_control_classification_number: PropTypes.string.isRequired,
|
|
23234
|
+
sub_item_number: PropTypes.string,
|
|
23235
|
+
item_type: PropTypes.string,
|
|
23236
|
+
material: PropTypes.string,
|
|
23237
|
+
construction: PropTypes.string,
|
|
23238
|
+
gender: PropTypes.string,
|
|
23073
23239
|
});
|
|
23074
23240
|
|
|
23075
|
-
T['io.flow.internal.v0.
|
|
23076
|
-
T['io.flow.
|
|
23077
|
-
T['io.flow.internal.v0.models.
|
|
23078
|
-
|
|
23241
|
+
T['io.flow.internal.v0.models.enriched_shipping_label_package'] = PropTypes.exact({
|
|
23242
|
+
dimensions: T['io.flow.common.v0.models.dimension'].isRequired,
|
|
23243
|
+
items: PropTypes.arrayOf(T['io.flow.internal.v0.models.enriched_line_item_form']).isRequired,
|
|
23244
|
+
reference_number: PropTypes.string,
|
|
23245
|
+
});
|
|
23079
23246
|
|
|
23080
23247
|
T['io.flow.internal.v0.models.dispute'] = PropTypes.exact({
|
|
23081
23248
|
id: PropTypes.string.isRequired,
|
|
@@ -23496,6 +23663,8 @@ T['io.flow.shopify.markets.internal.event.v0.unions.shopify_markets_internal_eve
|
|
|
23496
23663
|
T['io.flow.shopify.markets.internal.event.v0.models.shopify_incoterm_summary_error_published'],
|
|
23497
23664
|
T['io.flow.shopify.markets.internal.event.v0.models.shopify_markets_best_selling_product_upserted'],
|
|
23498
23665
|
T['io.flow.shopify.markets.internal.event.v0.models.shopify_markets_best_selling_product_deleted'],
|
|
23666
|
+
T['io.flow.shopify.markets.internal.event.v0.models.shopify_order_risk_assessment_upserted'],
|
|
23667
|
+
T['io.flow.shopify.markets.internal.event.v0.models.shopify_order_risk_assessment_deleted'],
|
|
23499
23668
|
]);
|
|
23500
23669
|
|
|
23501
23670
|
T['io.flow.export.v0.models.marketing_feeds_export_type'] = PropTypes.exact({
|
|
@@ -23880,6 +24049,53 @@ T['io.flow.internal.v0.models.label_request_result'] = PropTypes.exact({
|
|
|
23880
24049
|
tax_lrp_liabilities: PropTypes.arrayOf(T['io.flow.internal.v0.models.liability']),
|
|
23881
24050
|
});
|
|
23882
24051
|
|
|
24052
|
+
T['io.flow.internal.v0.models.invoice_data'] = PropTypes.exact({
|
|
24053
|
+
organization_id: PropTypes.string.isRequired,
|
|
24054
|
+
order_number: PropTypes.string.isRequired,
|
|
24055
|
+
invoice_reference: PropTypes.string.isRequired,
|
|
24056
|
+
signature_url: PropTypes.string.isRequired,
|
|
24057
|
+
signature_date: PropTypes.string.isRequired,
|
|
24058
|
+
signature_name: PropTypes.string.isRequired,
|
|
24059
|
+
line_items: PropTypes.arrayOf(T['io.flow.internal.v0.models.invoice_data_line_item']).isRequired,
|
|
24060
|
+
currency: T['io.flow.reference.v0.models.currency'].isRequired,
|
|
24061
|
+
delivered_duty: T['io.flow.common.v0.enums.delivered_duty'].isRequired,
|
|
24062
|
+
delivered_duty_text: PropTypes.string.isRequired,
|
|
24063
|
+
transaction_date: PropTypes.string.isRequired,
|
|
24064
|
+
origin: T['io.flow.internal.v0.models.validated_address'].isRequired,
|
|
24065
|
+
destination: T['io.flow.internal.v0.models.validated_address'].isRequired,
|
|
24066
|
+
billing_address: T['io.flow.internal.v0.models.validated_address'],
|
|
24067
|
+
service: T['io.flow.reference.v0.models.carrier_service'].isRequired,
|
|
24068
|
+
flow_tracking_number: PropTypes.string.isRequired,
|
|
24069
|
+
rex_number: PropTypes.string,
|
|
24070
|
+
weee_number: PropTypes.string,
|
|
24071
|
+
business_gst_numbers: PropTypes.arrayOf(T['io.flow.internal.v0.models.entity_reference_number']).isRequired,
|
|
24072
|
+
destination_identification_numbers: PropTypes.arrayOf(T['io.flow.internal.v0.models.entity_reference_number']),
|
|
24073
|
+
vat_name: PropTypes.string.isRequired,
|
|
24074
|
+
item_identifier_column_name: PropTypes.string.isRequired,
|
|
24075
|
+
feature_show_merchant_id: PropTypes.bool.isRequired,
|
|
24076
|
+
shipping_pricing: T['io.flow.internal.v0.models.shipping_pricing'].isRequired,
|
|
24077
|
+
shipment_recipient: T['io.flow.label.v0.enums.shipment_recipient'],
|
|
24078
|
+
eu_preferential_origin: PropTypes.string,
|
|
24079
|
+
customs_master_file_number: PropTypes.string,
|
|
24080
|
+
merchant_of_record_entity: T['io.flow.common.v0.models.merchant_of_record_entity'],
|
|
24081
|
+
weight_measured: PropTypes.string,
|
|
24082
|
+
notes_export_declaration: PropTypes.string,
|
|
24083
|
+
notes_import_duty_taxes_due: PropTypes.string,
|
|
24084
|
+
invoice_id: PropTypes.string.isRequired,
|
|
24085
|
+
invoice_date: PropTypes.string.isRequired,
|
|
24086
|
+
invoice_number: PropTypes.string,
|
|
24087
|
+
invoice_version: T['io.flow.internal.v0.enums.commercial_invoice_version'].isRequired,
|
|
24088
|
+
shipping_price: PropTypes.number.isRequired,
|
|
24089
|
+
goods_value: PropTypes.number.isRequired,
|
|
24090
|
+
total_taxes: PropTypes.number.isRequired,
|
|
24091
|
+
total_duties: PropTypes.number.isRequired,
|
|
24092
|
+
customs_value: PropTypes.number.isRequired,
|
|
24093
|
+
total_value: PropTypes.number.isRequired,
|
|
24094
|
+
usa_exporter_identifier_number_if_value_over_threshold: PropTypes.string,
|
|
24095
|
+
feature_israel_notes_import_duty_and_taxes_due: PropTypes.bool.isRequired,
|
|
24096
|
+
feature_new_export_declaration: PropTypes.bool.isRequired,
|
|
24097
|
+
});
|
|
24098
|
+
|
|
23883
24099
|
T['io.flow.internal.v0.models.commercial_invoice_internal'] = PropTypes.exact({
|
|
23884
24100
|
id: PropTypes.string.isRequired,
|
|
23885
24101
|
label_id: PropTypes.string.isRequired,
|
|
@@ -24577,6 +24793,23 @@ T['io.flow.internal.v0.models.restriction_item'] = PropTypes.exact({
|
|
|
24577
24793
|
updated_at: PropTypes.string.isRequired,
|
|
24578
24794
|
});
|
|
24579
24795
|
|
|
24796
|
+
T['io.flow.internal.v0.models.prateek_item_form'] = PropTypes.exact({
|
|
24797
|
+
number: PropTypes.string.isRequired,
|
|
24798
|
+
amount: T['io.flow.common.v0.models.price'].isRequired,
|
|
24799
|
+
description: PropTypes.string,
|
|
24800
|
+
type: T['io.flow.internal.v0.enums.prateek_item_type'].isRequired,
|
|
24801
|
+
added_on: PropTypes.string.isRequired,
|
|
24802
|
+
});
|
|
24803
|
+
|
|
24804
|
+
T['io.flow.internal.v0.models.prateek_item'] = PropTypes.exact({
|
|
24805
|
+
id: PropTypes.string.isRequired,
|
|
24806
|
+
number: PropTypes.string.isRequired,
|
|
24807
|
+
amount: T['io.flow.common.v0.models.price'].isRequired,
|
|
24808
|
+
description: PropTypes.string,
|
|
24809
|
+
type: T['io.flow.internal.v0.enums.prateek_item_type'].isRequired,
|
|
24810
|
+
added_on: PropTypes.string.isRequired,
|
|
24811
|
+
});
|
|
24812
|
+
|
|
24580
24813
|
T['io.flow.internal.v0.models.payment_summary_v2'] = PropTypes.exact({
|
|
24581
24814
|
discriminator: PropTypes.oneOf(['payment_summary_v2']).isRequired,
|
|
24582
24815
|
id: PropTypes.string.isRequired,
|
|
@@ -24615,6 +24848,23 @@ T['io.flow.internal.v0.models.order_revenue_region_chart'] = PropTypes.exact({
|
|
|
24615
24848
|
data: PropTypes.arrayOf(T['io.flow.internal.v0.models.order_revenue_region_data_point']).isRequired,
|
|
24616
24849
|
});
|
|
24617
24850
|
|
|
24851
|
+
T['io.flow.internal.v0.models.niall_item_form'] = PropTypes.exact({
|
|
24852
|
+
number: PropTypes.string.isRequired,
|
|
24853
|
+
amount: T['io.flow.common.v0.models.price'].isRequired,
|
|
24854
|
+
description: PropTypes.string,
|
|
24855
|
+
type: T['io.flow.internal.v0.enums.niall_item_type'].isRequired,
|
|
24856
|
+
added_on: PropTypes.string.isRequired,
|
|
24857
|
+
});
|
|
24858
|
+
|
|
24859
|
+
T['io.flow.internal.v0.models.niall_item'] = PropTypes.exact({
|
|
24860
|
+
id: PropTypes.string.isRequired,
|
|
24861
|
+
number: PropTypes.string.isRequired,
|
|
24862
|
+
amount: T['io.flow.common.v0.models.price'].isRequired,
|
|
24863
|
+
description: PropTypes.string,
|
|
24864
|
+
type: T['io.flow.internal.v0.enums.niall_item_type'].isRequired,
|
|
24865
|
+
added_on: PropTypes.string.isRequired,
|
|
24866
|
+
});
|
|
24867
|
+
|
|
24618
24868
|
T['io.flow.internal.v0.models.invoice_line'] = PropTypes.exact({
|
|
24619
24869
|
id: PropTypes.string.isRequired,
|
|
24620
24870
|
description: PropTypes.string.isRequired,
|
|
@@ -24801,6 +25051,9 @@ T['io.flow.internal.v0.models.billing_statement_totals'] = PropTypes.exact({
|
|
|
24801
25051
|
duty: T['io.flow.common.v0.models.price'].isRequired,
|
|
24802
25052
|
trueup: T['io.flow.common.v0.models.price'].isRequired,
|
|
24803
25053
|
carrier_charge: T['io.flow.common.v0.models.price'].isRequired,
|
|
25054
|
+
duty_refund: T['io.flow.common.v0.models.price'].isRequired,
|
|
25055
|
+
ge_revenue_share: T['io.flow.common.v0.models.price'].isRequired,
|
|
25056
|
+
non_l4l_tax_duty_fx: T['io.flow.common.v0.models.price'].isRequired,
|
|
24804
25057
|
ending_balance: T['io.flow.common.v0.models.price'].isRequired,
|
|
24805
25058
|
tax_refund: T['io.flow.common.v0.models.price'].isRequired,
|
|
24806
25059
|
});
|
|
@@ -25458,6 +25711,40 @@ T['io.flow.order.management.event.v0.unions.order_management_event'] = PropTypes
|
|
|
25458
25711
|
T['io.flow.order.management.event.v0.models.ready_to_fulfill_v2'],
|
|
25459
25712
|
]);
|
|
25460
25713
|
|
|
25714
|
+
T['io.flow.internal.v0.models.validated_shipping_data'] = PropTypes.exact({
|
|
25715
|
+
organization: PropTypes.string.isRequired,
|
|
25716
|
+
reference_id: PropTypes.string,
|
|
25717
|
+
delivered_duty: T['io.flow.common.v0.enums.delivered_duty'].isRequired,
|
|
25718
|
+
merchant_of_record_entity: T['io.flow.common.v0.models.merchant_of_record_entity'],
|
|
25719
|
+
destination: T['io.flow.internal.v0.models.validated_address'].isRequired,
|
|
25720
|
+
origin: T['io.flow.internal.v0.models.validated_address'].isRequired,
|
|
25721
|
+
service: T['io.flow.reference.v0.models.carrier_service'].isRequired,
|
|
25722
|
+
'package': T['io.flow.internal.v0.models.enriched_shipping_label_package'].isRequired,
|
|
25723
|
+
total_catalog_item_value: T['io.flow.common.v0.models.money'].isRequired,
|
|
25724
|
+
weight_unit: T['io.flow.common.v0.enums.unit_of_measurement'].isRequired,
|
|
25725
|
+
distance_unit: T['io.flow.common.v0.enums.unit_of_measurement'].isRequired,
|
|
25726
|
+
flow_tracking_number: PropTypes.string.isRequired,
|
|
25727
|
+
center: T['io.flow.fulfillment.v0.models.center'],
|
|
25728
|
+
catalog_items: PropTypes.arrayOf(T['io.flow.internal.v0.models.internal_item']).isRequired,
|
|
25729
|
+
order: T['io.flow.experience.v0.models.order'].isRequired,
|
|
25730
|
+
window: T['io.flow.common.v0.models.datetime_range'].isRequired,
|
|
25731
|
+
id: PropTypes.string.isRequired,
|
|
25732
|
+
shipment_recipient: T['io.flow.label.v0.enums.shipment_recipient'].isRequired,
|
|
25733
|
+
request_id: PropTypes.string.isRequired,
|
|
25734
|
+
commercial_invoice_data: T['io.flow.internal.v0.models.invoice_data'],
|
|
25735
|
+
order_identifier: PropTypes.string,
|
|
25736
|
+
fulfillment_key: PropTypes.string,
|
|
25737
|
+
rex_number: PropTypes.string,
|
|
25738
|
+
weee_number: PropTypes.string,
|
|
25739
|
+
generate_commercial_invoice_only: PropTypes.bool.isRequired,
|
|
25740
|
+
liability_remittance_plan: T['io.flow.internal.v0.models.liability_remittance_plan'],
|
|
25741
|
+
shipment_cost_summary: T['io.flow.internal.v0.models.shipment_cost_summary'],
|
|
25742
|
+
shipping_label_hop_cost_itemized_estimate: T['io.flow.label.v0.models.shipping_label_hop_cost_itemized_estimate'],
|
|
25743
|
+
additional_services_requested: PropTypes.arrayOf(T['io.flow.label.v0.models.additional_services_requested']),
|
|
25744
|
+
provided_charges: PropTypes.arrayOf(T['io.flow.internal.v0.models.charge_input']),
|
|
25745
|
+
direction: T['io.flow.label.v0.enums.direction'],
|
|
25746
|
+
});
|
|
25747
|
+
|
|
25461
25748
|
T['io.flow.experience.v0.models.order_builder'] = PropTypes.exact({
|
|
25462
25749
|
order: T['io.flow.experience.v0.models.order'],
|
|
25463
25750
|
errors: PropTypes.arrayOf(T['io.flow.experience.v0.models.order_error']),
|
|
@@ -27017,8 +27304,6 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
|
|
|
27017
27304
|
T['io.flow.internal.v0.models.unassigned_merchant_guid_deleted'],
|
|
27018
27305
|
T['io.flow.internal.v0.models.partner_tracking_subscription_upserted'],
|
|
27019
27306
|
T['io.flow.internal.v0.models.partner_tracking_subscription_deleted'],
|
|
27020
|
-
T['io.flow.internal.v0.models.spp_tracker_update_request_upserted'],
|
|
27021
|
-
T['io.flow.internal.v0.models.spp_tracker_update_request_deleted'],
|
|
27022
27307
|
T['io.flow.internal.v0.models.partner_request_upserted'],
|
|
27023
27308
|
T['io.flow.internal.v0.models.partner_request_deleted'],
|
|
27024
27309
|
T['io.flow.internal.v0.models.internal_authorization_upserted'],
|
|
@@ -27051,6 +27336,9 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
|
|
|
27051
27336
|
T['io.flow.internal.v0.models.paypal_dispute_deleted'],
|
|
27052
27337
|
T['io.flow.internal.v0.models.product_restriction_rule_decision_upserted'],
|
|
27053
27338
|
T['io.flow.internal.v0.models.product_restriction_rule_decision_deleted'],
|
|
27339
|
+
T['io.flow.internal.v0.models.product_restriction_state_inserted'],
|
|
27340
|
+
T['io.flow.internal.v0.models.product_restriction_state_updated'],
|
|
27341
|
+
T['io.flow.internal.v0.models.product_restriction_state_deleted'],
|
|
27054
27342
|
T['io.flow.internal.v0.models.order_rates_published_v3'],
|
|
27055
27343
|
T['io.flow.internal.v0.models.ratecard_dimension_estimate_upserted'],
|
|
27056
27344
|
T['io.flow.internal.v0.models.ratecard_dimension_estimate_deleted'],
|
|
@@ -27102,6 +27390,8 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
|
|
|
27102
27390
|
T['io.flow.internal.v0.models.shopify_incoterm_summary_error_published'],
|
|
27103
27391
|
T['io.flow.internal.v0.models.shopify_markets_best_selling_product_upserted'],
|
|
27104
27392
|
T['io.flow.internal.v0.models.shopify_markets_best_selling_product_deleted'],
|
|
27393
|
+
T['io.flow.internal.v0.models.shopify_order_risk_assessment_upserted'],
|
|
27394
|
+
T['io.flow.internal.v0.models.shopify_order_risk_assessment_deleted'],
|
|
27105
27395
|
T['io.flow.internal.v0.models.shopify_product_create_upserted'],
|
|
27106
27396
|
T['io.flow.internal.v0.models.shopify_product_create_deleted'],
|
|
27107
27397
|
T['io.flow.internal.v0.models.shopify_product_update_upserted'],
|
|
@@ -27538,8 +27828,6 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
|
|
|
27538
27828
|
'unassigned_merchant_guid_deleted',
|
|
27539
27829
|
'partner_tracking_subscription_upserted',
|
|
27540
27830
|
'partner_tracking_subscription_deleted',
|
|
27541
|
-
'spp_tracker_update_request_upserted',
|
|
27542
|
-
'spp_tracker_update_request_deleted',
|
|
27543
27831
|
'partner_request_upserted',
|
|
27544
27832
|
'partner_request_deleted',
|
|
27545
27833
|
'internal_authorization_upserted',
|
|
@@ -27572,6 +27860,9 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
|
|
|
27572
27860
|
'paypal_dispute_deleted',
|
|
27573
27861
|
'product_restriction_rule_decision_upserted',
|
|
27574
27862
|
'product_restriction_rule_decision_deleted',
|
|
27863
|
+
'product_restriction_state_inserted',
|
|
27864
|
+
'product_restriction_state_updated',
|
|
27865
|
+
'product_restriction_state_deleted',
|
|
27575
27866
|
'order_rates_published_v3',
|
|
27576
27867
|
'ratecard_dimension_estimate_upserted',
|
|
27577
27868
|
'ratecard_dimension_estimate_deleted',
|
|
@@ -27623,6 +27914,8 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
|
|
|
27623
27914
|
'shopify_incoterm_summary_error_published',
|
|
27624
27915
|
'shopify_markets_best_selling_product_upserted',
|
|
27625
27916
|
'shopify_markets_best_selling_product_deleted',
|
|
27917
|
+
'shopify_order_risk_assessment_upserted',
|
|
27918
|
+
'shopify_order_risk_assessment_deleted',
|
|
27626
27919
|
'shopify_product_create_upserted',
|
|
27627
27920
|
'shopify_product_create_deleted',
|
|
27628
27921
|
'shopify_product_update_upserted',
|
|
@@ -27681,6 +27974,7 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
|
|
|
27681
27974
|
|
|
27682
27975
|
T['io.flow.internal.v0.enums.financial_reporting_responsible_party'] = PropTypes.oneOf(['flow', 'organization']);
|
|
27683
27976
|
T['io.flow.internal.v0.enums.flow_app'] = PropTypes.oneOf(['console']);
|
|
27977
|
+
T['io.flow.internal.v0.enums.ge_ingestion_file_status'] = PropTypes.oneOf(['pending', 'processed']);
|
|
27684
27978
|
|
|
27685
27979
|
T['io.flow.internal.v0.enums.graphql_service_types'] = PropTypes.oneOf([
|
|
27686
27980
|
'order_update_mutation',
|
|
@@ -27699,6 +27993,7 @@ T['io.flow.internal.v0.enums.http_method'] = PropTypes.oneOf(['get', 'post']);
|
|
|
27699
27993
|
T['io.flow.internal.v0.enums.label_billing_strategy'] = PropTypes.oneOf(['quote', 'carrier']);
|
|
27700
27994
|
T['io.flow.internal.v0.enums.label_request_result_organization_type'] = PropTypes.oneOf(['all', 'legacy_production', 'managed_markets_production', 'sandbox']);
|
|
27701
27995
|
T['io.flow.internal.v0.enums.label_transaction_type'] = PropTypes.oneOf(['adjustment', 'reversal', 'billable_label', 'fee', 'revenue_share']);
|
|
27996
|
+
T['io.flow.internal.v0.enums.non_l4l_tax_duty_fx_transaction_type'] = PropTypes.oneOf(['adjustment', 'reversal', 'fee']);
|
|
27702
27997
|
T['io.flow.internal.v0.enums.onboarding_automation_process_state'] = PropTypes.oneOf(['not_started', 'in_progress', 'success', 'failed']);
|
|
27703
27998
|
T['io.flow.internal.v0.enums.onboarding_automation_task_state'] = PropTypes.oneOf(['not_started', 'in_progress', 'success', 'failed']);
|
|
27704
27999
|
|
|
@@ -27747,6 +28042,8 @@ T['io.flow.internal.v0.enums.rate_level_key'] = PropTypes.oneOf([
|
|
|
27747
28042
|
]);
|
|
27748
28043
|
|
|
27749
28044
|
T['io.flow.internal.v0.enums.report_interval'] = PropTypes.oneOf(['hourly', 'daily', 'weekly', 'monthly']);
|
|
28045
|
+
T['io.flow.internal.v0.enums.restriction_organization_channel'] = PropTypes.oneOf(['shopify', 'enterprise', 'shopify-sandbox', 'enterprise-sandbox']);
|
|
28046
|
+
T['io.flow.internal.v0.enums.restriction_rule_exception_action'] = PropTypes.oneOf(['allow', 'deny']);
|
|
27750
28047
|
T['io.flow.internal.v0.enums.risk_check'] = PropTypes.oneOf(['three_d_secure']);
|
|
27751
28048
|
T['io.flow.internal.v0.enums.shopify_grant_status'] = PropTypes.oneOf(['pass', 'fail']);
|
|
27752
28049
|
|
|
@@ -28476,6 +28773,14 @@ T['io.flow.internal.v0.models.product_detail_settings_form'] = PropTypes.exact({
|
|
|
28476
28773
|
keys: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
28477
28774
|
});
|
|
28478
28775
|
|
|
28776
|
+
T['io.flow.internal.v0.models.product_sellability_result'] = PropTypes.exact({
|
|
28777
|
+
shop_id: PropTypes.string.isRequired,
|
|
28778
|
+
product_number: PropTypes.string.isRequired,
|
|
28779
|
+
request_id: PropTypes.string.isRequired,
|
|
28780
|
+
hs6_code: PropTypes.string.isRequired,
|
|
28781
|
+
restricted_regions: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
28782
|
+
});
|
|
28783
|
+
|
|
28479
28784
|
T['io.flow.internal.v0.models.rate_data'] = PropTypes.exact({
|
|
28480
28785
|
base: PropTypes.string.isRequired,
|
|
28481
28786
|
target: PropTypes.string.isRequired,
|
|
@@ -30059,10 +30364,6 @@ T['io.flow.currency.v0.models.rate_form'] = PropTypes.exact({
|
|
|
30059
30364
|
effective_at: PropTypes.string.isRequired,
|
|
30060
30365
|
});
|
|
30061
30366
|
|
|
30062
|
-
T['io.flow.organization.v0.models.organization_default_configurations_form'] = PropTypes.exact({
|
|
30063
|
-
id: PropTypes.string.isRequired,
|
|
30064
|
-
});
|
|
30065
|
-
|
|
30066
30367
|
T['io.flow.session.v0.models.cart_reference'] = PropTypes.exact({
|
|
30067
30368
|
id: PropTypes.string.isRequired,
|
|
30068
30369
|
});
|
|
@@ -30205,6 +30506,7 @@ export const anyDangerousGoods = T['io.flow.internal.v0.enums.any_dangerous_good
|
|
|
30205
30506
|
export const apiCallReferenceId = T['io.flow.internal.v0.enums.api_call_reference_id'];
|
|
30206
30507
|
export const apmContent = T['io.flow.internal.v0.models.apm_content'];
|
|
30207
30508
|
export const applePayAuthorizationPayload = T['io.flow.internal.v0.models.apple_pay_authorization_payload'];
|
|
30509
|
+
export const applicablePreferentialRate = T['io.flow.internal.v0.enums.applicable_preferential_rate'];
|
|
30208
30510
|
export const applyAtValueForm = T['io.flow.internal.v0.models.apply_at_value_form'];
|
|
30209
30511
|
export const attemptStatistics = T['io.flow.internal.v0.models.attempt_statistics'];
|
|
30210
30512
|
export const attributeLabel = T['io.flow.internal.v0.models.attribute_label'];
|
|
@@ -30484,6 +30786,7 @@ export const commercialInvoiceInternal = T['io.flow.internal.v0.models.commercia
|
|
|
30484
30786
|
export const commercialInvoiceInternalDeleted = T['io.flow.internal.v0.models.commercial_invoice_internal_deleted'];
|
|
30485
30787
|
export const commercialInvoiceInternalUpserted = T['io.flow.internal.v0.models.commercial_invoice_internal_upserted'];
|
|
30486
30788
|
export const commercialInvoiceSummary = T['io.flow.internal.v0.models.commercial_invoice_summary'];
|
|
30789
|
+
export const commercialInvoiceVersion = T['io.flow.internal.v0.enums.commercial_invoice_version'];
|
|
30487
30790
|
export const company = T['io.flow.internal.v0.enums.company'];
|
|
30488
30791
|
export const companyReference = T['io.flow.internal.v0.models.company_reference'];
|
|
30489
30792
|
export const compliance = T['io.flow.internal.v0.models.compliance'];
|
|
@@ -30645,7 +30948,10 @@ export const emailModificationForm = T['io.flow.internal.v0.models.email_modific
|
|
|
30645
30948
|
export const emptyAttribute = T['io.flow.internal.v0.enums.empty_attribute'];
|
|
30646
30949
|
export const emptyClassificationForm = T['io.flow.internal.v0.models.empty_classification_form'];
|
|
30647
30950
|
export const encryption = T['io.flow.internal.v0.models.encryption'];
|
|
30951
|
+
export const enrichedLineItemForm = T['io.flow.internal.v0.models.enriched_line_item_form'];
|
|
30952
|
+
export const enrichedShippingLabelPackage = T['io.flow.internal.v0.models.enriched_shipping_label_package'];
|
|
30648
30953
|
export const entityReference = T['io.flow.internal.v0.models.entity_reference'];
|
|
30954
|
+
export const entityReferenceNumber = T['io.flow.internal.v0.models.entity_reference_number'];
|
|
30649
30955
|
export const erpFileType = T['io.flow.internal.v0.enums.erp_file_type'];
|
|
30650
30956
|
export const erpFlowFile = T['io.flow.internal.v0.models.erp_flow_file'];
|
|
30651
30957
|
export const erpFlowFileForm = T['io.flow.internal.v0.models.erp_flow_file_form'];
|
|
@@ -30818,6 +31124,7 @@ export const fxRevenueRecognitionOrder = T['io.flow.internal.v0.models.fx_revenu
|
|
|
30818
31124
|
export const fxRevenueRecognitionOrganization = T['io.flow.internal.v0.models.fx_revenue_recognition_organization'];
|
|
30819
31125
|
export const fxRevenueRecognitionRate = T['io.flow.internal.v0.models.fx_revenue_recognition_rate'];
|
|
30820
31126
|
export const fxRevenueRecognitionSource = T['io.flow.internal.v0.models.fx_revenue_recognition_source'];
|
|
31127
|
+
export const geIngestionFileStatus = T['io.flow.internal.v0.enums.ge_ingestion_file_status'];
|
|
30821
31128
|
export const geRevenueShareTransaction = T['io.flow.internal.v0.models.ge_revenue_share_transaction'];
|
|
30822
31129
|
export const generateLoad = T['io.flow.internal.v0.unions.generate_load'];
|
|
30823
31130
|
export const generateLoadMultipleOrgs = T['io.flow.internal.v0.models.generate_load_multiple_orgs'];
|
|
@@ -30873,6 +31180,7 @@ export const internalDebugTransaction = T['io.flow.internal.v0.models.internal_d
|
|
|
30873
31180
|
export const internalExclusionRuleForm = T['io.flow.internal.v0.models.internal_exclusion_rule_form'];
|
|
30874
31181
|
export const internalFiservAuthorizationDetails = T['io.flow.internal.v0.models.internal_fiserv_authorization_details'];
|
|
30875
31182
|
export const internalHarmonizationStatistic = T['io.flow.internal.v0.unions.internal_harmonization_statistic'];
|
|
31183
|
+
export const internalItem = T['io.flow.internal.v0.models.internal_item'];
|
|
30876
31184
|
export const internalItemForm = T['io.flow.internal.v0.models.internal_item_form'];
|
|
30877
31185
|
export const internalOrder = T['io.flow.internal.v0.models.internal_order'];
|
|
30878
31186
|
export const internalPaymentEntityType = T['io.flow.internal.v0.enums.internal_payment_entity_type'];
|
|
@@ -30886,6 +31194,8 @@ export const internalTransactionDetailsCard = T['io.flow.internal.v0.models.inte
|
|
|
30886
31194
|
export const invariant = T['io.flow.internal.v0.models.invariant'];
|
|
30887
31195
|
export const inventoryItemWrapper = T['io.flow.internal.v0.models.inventory_item_wrapper'];
|
|
30888
31196
|
export const invoice = T['io.flow.internal.v0.models.invoice'];
|
|
31197
|
+
export const invoiceData = T['io.flow.internal.v0.models.invoice_data'];
|
|
31198
|
+
export const invoiceDataLineItem = T['io.flow.internal.v0.models.invoice_data_line_item'];
|
|
30889
31199
|
export const invoiceInfoForm = T['io.flow.internal.v0.models.invoice_info_form'];
|
|
30890
31200
|
export const invoiceLine = T['io.flow.internal.v0.models.invoice_line'];
|
|
30891
31201
|
export const invoiceLineItem = T['io.flow.internal.v0.models.invoice_line_item'];
|
|
@@ -31065,11 +31375,15 @@ export const mixedBagWeight = T['io.flow.internal.v0.enums.mixed_bag_weight'];
|
|
|
31065
31375
|
export const natureOfSale = T['io.flow.internal.v0.enums.nature_of_sale'];
|
|
31066
31376
|
export const negativeDebitMetrics = T['io.flow.internal.v0.models.negative_debit_metrics'];
|
|
31067
31377
|
export const nextBillingStatement = T['io.flow.internal.v0.models.next_billing_statement'];
|
|
31378
|
+
export const niallItem = T['io.flow.internal.v0.models.niall_item'];
|
|
31379
|
+
export const niallItemForm = T['io.flow.internal.v0.models.niall_item_form'];
|
|
31380
|
+
export const niallItemType = T['io.flow.internal.v0.enums.niall_item_type'];
|
|
31068
31381
|
export const noCalculatedTaxAmount = T['io.flow.internal.v0.models.no_calculated_tax_amount'];
|
|
31069
31382
|
export const noClassificationForm = T['io.flow.internal.v0.models.no_classification_form'];
|
|
31070
31383
|
export const noLiabilityReasonCode = T['io.flow.internal.v0.enums.no_liability_reason_code'];
|
|
31071
31384
|
export const nonChannelPaymentBankAccount = T['io.flow.internal.v0.models.non_channel_payment_bank_account'];
|
|
31072
31385
|
export const nonL4LTaxDutyFxTransaction = T['io.flow.internal.v0.models.non_l4l_tax_duty_fx_transaction'];
|
|
31386
|
+
export const nonL4LTaxDutyFxTransactionType = T['io.flow.internal.v0.enums.non_l4l_tax_duty_fx_transaction_type'];
|
|
31073
31387
|
export const notification = T['io.flow.internal.v0.models.notification'];
|
|
31074
31388
|
export const onboardingAuditMessage = T['io.flow.internal.v0.models.onboarding_audit_message'];
|
|
31075
31389
|
export const onboardingAuditMessageLevel = T['io.flow.internal.v0.enums.onboarding_audit_message_level'];
|
|
@@ -31306,6 +31620,9 @@ export const platformFeeFlat = T['io.flow.internal.v0.models.platform_fee_flat']
|
|
|
31306
31620
|
export const platformFeePause = T['io.flow.internal.v0.models.platform_fee_pause'];
|
|
31307
31621
|
export const platformFeePercentage = T['io.flow.internal.v0.models.platform_fee_percentage'];
|
|
31308
31622
|
export const platformFeePercentageTier = T['io.flow.internal.v0.models.platform_fee_percentage_tier'];
|
|
31623
|
+
export const prateekItem = T['io.flow.internal.v0.models.prateek_item'];
|
|
31624
|
+
export const prateekItemForm = T['io.flow.internal.v0.models.prateek_item_form'];
|
|
31625
|
+
export const prateekItemType = T['io.flow.internal.v0.enums.prateek_item_type'];
|
|
31309
31626
|
export const prediction = T['io.flow.internal.v0.models.prediction'];
|
|
31310
31627
|
export const preferredBillingSchedule = T['io.flow.internal.v0.enums.preferred_billing_schedule'];
|
|
31311
31628
|
export const priceSelector = T['io.flow.internal.v0.enums.price_selector'];
|
|
@@ -31342,7 +31659,12 @@ export const productRestrictionResultValidationError = T['io.flow.internal.v0.mo
|
|
|
31342
31659
|
export const productRestrictionRuleDecision = T['io.flow.internal.v0.models.product_restriction_rule_decision'];
|
|
31343
31660
|
export const productRestrictionRuleDecisionDeleted = T['io.flow.internal.v0.models.product_restriction_rule_decision_deleted'];
|
|
31344
31661
|
export const productRestrictionRuleDecisionUpserted = T['io.flow.internal.v0.models.product_restriction_rule_decision_upserted'];
|
|
31662
|
+
export const productRestrictionState = T['io.flow.internal.v0.models.product_restriction_state'];
|
|
31663
|
+
export const productRestrictionStateDeleted = T['io.flow.internal.v0.models.product_restriction_state_deleted'];
|
|
31664
|
+
export const productRestrictionStateInserted = T['io.flow.internal.v0.models.product_restriction_state_inserted'];
|
|
31665
|
+
export const productRestrictionStateUpdated = T['io.flow.internal.v0.models.product_restriction_state_updated'];
|
|
31345
31666
|
export const productReviewHistory = T['io.flow.internal.v0.models.product_review_history'];
|
|
31667
|
+
export const productSellabilityResult = T['io.flow.internal.v0.models.product_sellability_result'];
|
|
31346
31668
|
export const productStatus = T['io.flow.internal.v0.enums.product_status'];
|
|
31347
31669
|
export const productTransaction = T['io.flow.internal.v0.models.product_transaction'];
|
|
31348
31670
|
export const promptAction = T['io.flow.internal.v0.enums.prompt_action'];
|
|
@@ -31497,7 +31819,9 @@ export const restrictionItemReviewSummary = T['io.flow.internal.v0.models.restri
|
|
|
31497
31819
|
export const restrictionKeywordMetadata = T['io.flow.internal.v0.models.restriction_keyword_metadata'];
|
|
31498
31820
|
export const restrictionKeywords = T['io.flow.internal.v0.models.restriction_keywords'];
|
|
31499
31821
|
export const restrictionOrganization = T['io.flow.internal.v0.models.restriction_organization'];
|
|
31822
|
+
export const restrictionOrganizationChannel = T['io.flow.internal.v0.enums.restriction_organization_channel'];
|
|
31500
31823
|
export const restrictionOrganizationDecisionSummary = T['io.flow.internal.v0.models.restriction_organization_decision_summary'];
|
|
31824
|
+
export const restrictionOrganizationSource = T['io.flow.internal.v0.enums.restriction_organization_source'];
|
|
31501
31825
|
export const restrictionOrganizationStatus = T['io.flow.internal.v0.models.restriction_organization_status'];
|
|
31502
31826
|
export const restrictionOrganizationStatusDeleted = T['io.flow.internal.v0.models.restriction_organization_status_deleted'];
|
|
31503
31827
|
export const restrictionOrganizationStatusUpserted = T['io.flow.internal.v0.models.restriction_organization_status_upserted'];
|
|
@@ -31514,11 +31838,13 @@ export const restrictionRuleEffect = T['io.flow.internal.v0.models.restriction_r
|
|
|
31514
31838
|
export const restrictionRuleEffectDeleted = T['io.flow.internal.v0.models.restriction_rule_effect_deleted'];
|
|
31515
31839
|
export const restrictionRuleEffectForm = T['io.flow.internal.v0.models.restriction_rule_effect_form'];
|
|
31516
31840
|
export const restrictionRuleEffectUpserted = T['io.flow.internal.v0.models.restriction_rule_effect_upserted'];
|
|
31841
|
+
export const restrictionRuleExceptionAction = T['io.flow.internal.v0.enums.restriction_rule_exception_action'];
|
|
31517
31842
|
export const restrictionRuleForm = T['io.flow.internal.v0.models.restriction_rule_form'];
|
|
31518
31843
|
export const restrictionRuleMetadata = T['io.flow.internal.v0.models.restriction_rule_metadata'];
|
|
31519
31844
|
export const restrictionRuleOverride = T['io.flow.internal.v0.models.restriction_rule_override'];
|
|
31520
31845
|
export const restrictionRuleSummary = T['io.flow.internal.v0.models.restriction_rule_summary'];
|
|
31521
31846
|
export const restrictionRuleUpserted = T['io.flow.internal.v0.models.restriction_rule_upserted'];
|
|
31847
|
+
export const restrictionStateReviewStatus = T['io.flow.internal.v0.enums.restriction_state_review_status'];
|
|
31522
31848
|
export const restrictionStatus = T['io.flow.internal.v0.enums.restriction_status'];
|
|
31523
31849
|
export const restrictionStatusMetadata = T['io.flow.internal.v0.models.restriction_status_metadata'];
|
|
31524
31850
|
export const restrictionsDailyops = T['io.flow.internal.v0.models.restrictions_dailyops'];
|
|
@@ -31572,8 +31898,10 @@ export const sessionRollout = T['io.flow.internal.v0.models.session_rollout'];
|
|
|
31572
31898
|
export const sessionRolloutForm = T['io.flow.internal.v0.models.session_rollout_form'];
|
|
31573
31899
|
export const setupBlockPutForm = T['io.flow.internal.v0.models.setup_block_put_form'];
|
|
31574
31900
|
export const sfExpress = T['io.flow.internal.v0.models.sf_express'];
|
|
31901
|
+
export const shipmentCostSummary = T['io.flow.internal.v0.models.shipment_cost_summary'];
|
|
31575
31902
|
export const shippingLane = T['io.flow.internal.v0.models.shipping_lane'];
|
|
31576
31903
|
export const shippingMethodReference = T['io.flow.internal.v0.models.shipping_method_reference'];
|
|
31904
|
+
export const shippingPricing = T['io.flow.internal.v0.models.shipping_pricing'];
|
|
31577
31905
|
export const shop = T['io.flow.internal.v0.models.shop'];
|
|
31578
31906
|
export const shopForm = T['io.flow.internal.v0.models.shop_form'];
|
|
31579
31907
|
export const shopVersion = T['io.flow.internal.v0.models.shop_version'];
|
|
@@ -31671,6 +31999,9 @@ export const shopifyOrderFulfillmentsSnapshotUpserted = T['io.flow.internal.v0.m
|
|
|
31671
31999
|
export const shopifyOrderInventoryCheck = T['io.flow.internal.v0.models.shopify_order_inventory_check'];
|
|
31672
32000
|
export const shopifyOrderLineAttribute = T['io.flow.internal.v0.models.shopify_order_line_attribute'];
|
|
31673
32001
|
export const shopifyOrderLineContent = T['io.flow.internal.v0.models.shopify_order_line_content'];
|
|
32002
|
+
export const shopifyOrderRiskAssessment = T['io.flow.internal.v0.models.shopify_order_risk_assessment'];
|
|
32003
|
+
export const shopifyOrderRiskAssessmentDeleted = T['io.flow.internal.v0.models.shopify_order_risk_assessment_deleted'];
|
|
32004
|
+
export const shopifyOrderRiskAssessmentUpserted = T['io.flow.internal.v0.models.shopify_order_risk_assessment_upserted'];
|
|
31674
32005
|
export const shopifyOrganizationSettings = T['io.flow.internal.v0.models.shopify_organization_settings'];
|
|
31675
32006
|
export const shopifyOrganizationSettingsForm = T['io.flow.internal.v0.models.shopify_organization_settings_form'];
|
|
31676
32007
|
export const shopifyPartnerWebhook = T['io.flow.internal.v0.models.shopify_partner_webhook'];
|
|
@@ -31750,9 +32081,6 @@ export const spotRateMetadataIdentity = T['io.flow.internal.v0.models.spot_rate_
|
|
|
31750
32081
|
export const spotRateMetadataRate = T['io.flow.internal.v0.models.spot_rate_metadata_rate'];
|
|
31751
32082
|
export const spotRateUpserted = T['io.flow.internal.v0.models.spot_rate_upserted'];
|
|
31752
32083
|
export const spotRateVersion = T['io.flow.internal.v0.models.spot_rate_version'];
|
|
31753
|
-
export const sppTrackerUpdateRequest = T['io.flow.internal.v0.models.spp_tracker_update_request'];
|
|
31754
|
-
export const sppTrackerUpdateRequestDeleted = T['io.flow.internal.v0.models.spp_tracker_update_request_deleted'];
|
|
31755
|
-
export const sppTrackerUpdateRequestUpserted = T['io.flow.internal.v0.models.spp_tracker_update_request_upserted'];
|
|
31756
32084
|
export const standaloneAttachment = T['io.flow.internal.v0.models.standalone_attachment'];
|
|
31757
32085
|
export const standaloneAttachmentDeleted = T['io.flow.internal.v0.models.standalone_attachment_deleted'];
|
|
31758
32086
|
export const standaloneAttachmentUpserted = T['io.flow.internal.v0.models.standalone_attachment_upserted'];
|
|
@@ -31928,6 +32256,8 @@ export const userStatusRule = T['io.flow.internal.v0.models.user_status_rule'];
|
|
|
31928
32256
|
export const userStatusRuleForm = T['io.flow.internal.v0.models.user_status_rule_form'];
|
|
31929
32257
|
export const userUpsertedV2 = T['io.flow.internal.v0.models.user_upserted_v2'];
|
|
31930
32258
|
export const v1Checkout = T['io.flow.internal.v0.models.v1_checkout'];
|
|
32259
|
+
export const validatedAddress = T['io.flow.internal.v0.models.validated_address'];
|
|
32260
|
+
export const validatedShippingData = T['io.flow.internal.v0.models.validated_shipping_data'];
|
|
31931
32261
|
export const validationCharacterLength = T['io.flow.internal.v0.models.validation_character_length'];
|
|
31932
32262
|
export const validationRule = T['io.flow.internal.v0.unions.validation_rule'];
|
|
31933
32263
|
export const viesResult = T['io.flow.internal.v0.models.vies_result'];
|