@flowio/api-internal-prop-types 9.24.114 → 9.24.116
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 +410 -94
- package/lib/api-internal.js +1 -1
- package/package.json +2 -2
- package/src/api-internal.d.ts +410 -94
- package/src/api-internal.js +1249 -905
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,20 @@ 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([
|
|
62
|
+
T['io.flow.sellability.v0.enums.sellability_error_code'] = PropTypes.oneOf([
|
|
63
|
+
'insufficient_details',
|
|
64
|
+
'ineligible_category',
|
|
65
|
+
'wait_for_high_fidelity',
|
|
66
|
+
'external_service_unavailable',
|
|
67
|
+
]);
|
|
72
68
|
|
|
73
69
|
T['io.flow.sellability.v0.models.sellability_error'] = PropTypes.exact({
|
|
74
70
|
code: T['io.flow.sellability.v0.enums.sellability_error_code'].isRequired,
|
|
75
71
|
messages: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
76
72
|
});
|
|
77
73
|
|
|
74
|
+
T['io.flow.sellability.v0.enums.sellability_request_status'] = PropTypes.oneOf(['commit']);
|
|
75
|
+
|
|
78
76
|
T['io.flow.sellability.v0.models.product_sellability_price'] = PropTypes.exact({
|
|
79
77
|
currency: PropTypes.string.isRequired,
|
|
80
78
|
amount: PropTypes.number.isRequired,
|
|
@@ -290,8 +288,6 @@ T['io.flow.common.v0.models.partner_reference'] = PropTypes.exact({
|
|
|
290
288
|
id: PropTypes.string.isRequired,
|
|
291
289
|
});
|
|
292
290
|
|
|
293
|
-
T['io.flow.fulfillment.v0.enums.center_capability'] = PropTypes.oneOf(['international', 'domestic', 'crossdock', 'commercial_invoice']);
|
|
294
|
-
|
|
295
291
|
T['io.flow.fulfillment.v0.models.number_range'] = PropTypes.exact({
|
|
296
292
|
min: PropTypes.number.isRequired,
|
|
297
293
|
max: PropTypes.number.isRequired,
|
|
@@ -397,8 +393,19 @@ T['io.flow.billing.v0.models.trueup_label_base'] = PropTypes.exact({
|
|
|
397
393
|
|
|
398
394
|
T['io.flow.billing.v0.enums.trueup_source'] = PropTypes.oneOf(['flow', 'channel', 'dhl-parcel', 'dhl', 'ups']);
|
|
399
395
|
|
|
396
|
+
T['io.flow.billing.v0.enums.tax_duty_transaction_reason_code'] = PropTypes.oneOf([
|
|
397
|
+
'order_edit',
|
|
398
|
+
'order_acceptance',
|
|
399
|
+
'mixed_fulfilment_non_lvg',
|
|
400
|
+
'lvg_refund',
|
|
401
|
+
'order_cancellation_above_de_min',
|
|
402
|
+
'wyol_shipment_above_de_min',
|
|
403
|
+
'full_refund_without_shipment',
|
|
404
|
+
]);
|
|
405
|
+
|
|
400
406
|
T['io.flow.billing.v0.models.transaction_metadata_shipping_label_carrier'] = PropTypes.exact({
|
|
401
407
|
id: PropTypes.string.isRequired,
|
|
408
|
+
service_id: PropTypes.string,
|
|
402
409
|
tracking_number: PropTypes.string.isRequired,
|
|
403
410
|
});
|
|
404
411
|
|
|
@@ -406,6 +413,11 @@ T['io.flow.billing.v0.models.transaction_metadata_outbound_transaction'] = PropT
|
|
|
406
413
|
transaction_id: PropTypes.string.isRequired,
|
|
407
414
|
});
|
|
408
415
|
|
|
416
|
+
T['io.flow.billing.v0.models.transaction_metadata_tax_duty'] = PropTypes.exact({
|
|
417
|
+
discriminator: PropTypes.oneOf(['transaction_tax_duty']).isRequired,
|
|
418
|
+
reason_code: T['io.flow.billing.v0.enums.tax_duty_transaction_reason_code'].isRequired,
|
|
419
|
+
});
|
|
420
|
+
|
|
409
421
|
T['io.flow.billing.v0.models.transaction_metadata_payment_transaction'] = PropTypes.exact({
|
|
410
422
|
discriminator: PropTypes.oneOf(['payment_transaction']).isRequired,
|
|
411
423
|
id: PropTypes.string,
|
|
@@ -815,19 +827,6 @@ T['io.flow.reference.v0.models.localized_translation'] = PropTypes.exact({
|
|
|
815
827
|
name: PropTypes.string.isRequired,
|
|
816
828
|
});
|
|
817
829
|
|
|
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
830
|
T['io.flow.trueup.v0.models.label_surcharge_detail_per_weight_unit'] = PropTypes.exact({
|
|
832
831
|
discriminator: PropTypes.oneOf(['per_weight_unit']).isRequired,
|
|
833
832
|
fee: PropTypes.number.isRequired,
|
|
@@ -1368,6 +1367,14 @@ T['io.flow.experience.v0.models.address_configuration_province_translation'] = P
|
|
|
1368
1367
|
name: PropTypes.string.isRequired,
|
|
1369
1368
|
});
|
|
1370
1369
|
|
|
1370
|
+
T['io.flow.shopify.markets.internal.event.v0.models.shopify_order_risk_assessment_deleted'] = PropTypes.exact({
|
|
1371
|
+
discriminator: PropTypes.oneOf(['shopify_order_risk_assessment_deleted']).isRequired,
|
|
1372
|
+
event_id: PropTypes.string.isRequired,
|
|
1373
|
+
timestamp: PropTypes.string.isRequired,
|
|
1374
|
+
organization: PropTypes.string.isRequired,
|
|
1375
|
+
id: PropTypes.string.isRequired,
|
|
1376
|
+
});
|
|
1377
|
+
|
|
1371
1378
|
T['io.flow.shopify.markets.internal.event.v0.models.shopify_markets_best_selling_product_deleted'] = PropTypes.exact({
|
|
1372
1379
|
discriminator: PropTypes.oneOf(['shopify_markets_best_selling_product_deleted']).isRequired,
|
|
1373
1380
|
event_id: PropTypes.string.isRequired,
|
|
@@ -1439,6 +1446,20 @@ T['io.flow.shopify.markets.internal.event.v0.models.shopify_markets_shop_deleted
|
|
|
1439
1446
|
id: PropTypes.string.isRequired,
|
|
1440
1447
|
});
|
|
1441
1448
|
|
|
1449
|
+
T['io.flow.shopify.markets.internal.v0.models.shopify_order_risk_assessment'] = PropTypes.exact({
|
|
1450
|
+
id: PropTypes.string.isRequired,
|
|
1451
|
+
risk_level: PropTypes.string.isRequired,
|
|
1452
|
+
assessment_created_at: PropTypes.string.isRequired,
|
|
1453
|
+
});
|
|
1454
|
+
|
|
1455
|
+
T['io.flow.shopify.markets.internal.event.v0.models.shopify_order_risk_assessment_upserted'] = PropTypes.exact({
|
|
1456
|
+
discriminator: PropTypes.oneOf(['shopify_order_risk_assessment_upserted']).isRequired,
|
|
1457
|
+
event_id: PropTypes.string.isRequired,
|
|
1458
|
+
timestamp: PropTypes.string.isRequired,
|
|
1459
|
+
organization: PropTypes.string.isRequired,
|
|
1460
|
+
assessment: T['io.flow.shopify.markets.internal.v0.models.shopify_order_risk_assessment'].isRequired,
|
|
1461
|
+
});
|
|
1462
|
+
|
|
1442
1463
|
T['io.flow.shopify.markets.internal.v0.models.shopify_shop_statistics'] = PropTypes.exact({
|
|
1443
1464
|
id: PropTypes.string.isRequired,
|
|
1444
1465
|
initial_catalog_synced_at: PropTypes.string,
|
|
@@ -1547,12 +1568,6 @@ T['io.flow.fulfillment.v0.models.scheduled_pickup'] = PropTypes.exact({
|
|
|
1547
1568
|
minute_of_hour: PropTypes.string.isRequired,
|
|
1548
1569
|
});
|
|
1549
1570
|
|
|
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
1571
|
T['io.flow.merchant.onboarding.v0.models.onboarding_merchant_scheduled_pickup'] = PropTypes.exact({
|
|
1557
1572
|
day_of_week: T['io.flow.common.v0.enums.day_of_week'].isRequired,
|
|
1558
1573
|
window: T['io.flow.merchant.onboarding.v0.models.onboarding_merchant_pickup_window'].isRequired,
|
|
@@ -3496,27 +3511,6 @@ T['io.flow.channel.internal.v0.enums.channel_order_acceptance_next_action_from']
|
|
|
3496
3511
|
'logistics_team',
|
|
3497
3512
|
]);
|
|
3498
3513
|
|
|
3499
|
-
T['io.flow.channel.internal.v0.models.channel_order_acceptance'] = PropTypes.exact({
|
|
3500
|
-
id: PropTypes.string.isRequired,
|
|
3501
|
-
organization_id: PropTypes.string.isRequired,
|
|
3502
|
-
order_number: PropTypes.string.isRequired,
|
|
3503
|
-
channel_id: PropTypes.string.isRequired,
|
|
3504
|
-
external_order_reference: PropTypes.string.isRequired,
|
|
3505
|
-
payment_request_id: PropTypes.string,
|
|
3506
|
-
order_edit_payment_request_ids: PropTypes.arrayOf(PropTypes.string),
|
|
3507
|
-
status: T['io.flow.channel.internal.v0.enums.channel_order_acceptance_status'].isRequired,
|
|
3508
|
-
reasons: PropTypes.arrayOf(T['io.flow.channel.internal.v0.models.channel_order_acceptance_reason']).isRequired,
|
|
3509
|
-
next_action_from: T['io.flow.channel.internal.v0.enums.channel_order_acceptance_next_action_from'],
|
|
3510
|
-
order_created_at: PropTypes.string,
|
|
3511
|
-
order_updated_at: PropTypes.string,
|
|
3512
|
-
order_edit_summary: T['io.flow.channel.internal.v0.models.order_edit_summary'],
|
|
3513
|
-
});
|
|
3514
|
-
|
|
3515
|
-
T['io.flow.channel.internal.v0.models.channel_order_acceptance_details'] = PropTypes.exact({
|
|
3516
|
-
order_acceptance: T['io.flow.channel.internal.v0.models.channel_order_acceptance'].isRequired,
|
|
3517
|
-
external_order: PropTypes.object.isRequired,
|
|
3518
|
-
});
|
|
3519
|
-
|
|
3520
3514
|
T['io.flow.shopify.markets.internal.v0.models.product_restriction_result_validation_error'] = PropTypes.exact({
|
|
3521
3515
|
message: PropTypes.string.isRequired,
|
|
3522
3516
|
reason: PropTypes.string.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,12 @@ 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'],
|
|
10174
|
+
dry_run: PropTypes.bool,
|
|
10180
10175
|
});
|
|
10181
10176
|
|
|
10182
10177
|
T['io.flow.product.v0.models.product'] = PropTypes.exact({
|
|
@@ -10324,6 +10319,20 @@ T['io.flow.internal.v0.models.shopify_product_bundle_upserted'] = PropTypes.exac
|
|
|
10324
10319
|
shopify_product_bundle: T['io.flow.internal.v0.models.shopify_product_bundle'].isRequired,
|
|
10325
10320
|
});
|
|
10326
10321
|
|
|
10322
|
+
T['io.flow.internal.v0.models.shopify_order_risk_assessment'] = PropTypes.exact({
|
|
10323
|
+
id: PropTypes.string.isRequired,
|
|
10324
|
+
risk_level: PropTypes.string.isRequired,
|
|
10325
|
+
assessment_created_at: PropTypes.string.isRequired,
|
|
10326
|
+
});
|
|
10327
|
+
|
|
10328
|
+
T['io.flow.internal.v0.models.shopify_order_risk_assessment_upserted'] = PropTypes.exact({
|
|
10329
|
+
discriminator: PropTypes.oneOf(['shopify_order_risk_assessment_upserted']).isRequired,
|
|
10330
|
+
event_id: PropTypes.string.isRequired,
|
|
10331
|
+
timestamp: PropTypes.string.isRequired,
|
|
10332
|
+
organization: PropTypes.string.isRequired,
|
|
10333
|
+
assessment: T['io.flow.internal.v0.models.shopify_order_risk_assessment'].isRequired,
|
|
10334
|
+
});
|
|
10335
|
+
|
|
10327
10336
|
T['io.flow.internal.v0.models.fulfillment_snapshot'] = PropTypes.exact({
|
|
10328
10337
|
tracking_source: PropTypes.string.isRequired,
|
|
10329
10338
|
fulfillment_status: PropTypes.string,
|
|
@@ -10873,6 +10882,29 @@ T['io.flow.internal.v0.models.shopify_check_inventory_error'] = PropTypes.exact(
|
|
|
10873
10882
|
numbers: PropTypes.arrayOf(PropTypes.string),
|
|
10874
10883
|
});
|
|
10875
10884
|
|
|
10885
|
+
T['io.flow.fulfillment.v0.enums.ratecard_owner'] = PropTypes.oneOf(['flow', 'organization']);
|
|
10886
|
+
|
|
10887
|
+
T['io.flow.ratecard.v0.models.ratecard_summary'] = PropTypes.exact({
|
|
10888
|
+
id: PropTypes.string.isRequired,
|
|
10889
|
+
number: PropTypes.string.isRequired,
|
|
10890
|
+
ratecard_owner: T['io.flow.fulfillment.v0.enums.ratecard_owner'].isRequired,
|
|
10891
|
+
});
|
|
10892
|
+
|
|
10893
|
+
T['io.flow.ratecard.v0.models.lane_summary'] = PropTypes.exact({
|
|
10894
|
+
id: PropTypes.string.isRequired,
|
|
10895
|
+
ratecard: T['io.flow.ratecard.v0.models.ratecard_summary'].isRequired,
|
|
10896
|
+
});
|
|
10897
|
+
|
|
10898
|
+
T['io.flow.label.v0.models.shipping_label_ratecard_summary'] = PropTypes.exact({
|
|
10899
|
+
id: PropTypes.string,
|
|
10900
|
+
ratecard_owner: T['io.flow.fulfillment.v0.enums.ratecard_owner'].isRequired,
|
|
10901
|
+
rate_level_key: PropTypes.string,
|
|
10902
|
+
glbe_shipping_method_id: PropTypes.string,
|
|
10903
|
+
glbe_proposition_name: PropTypes.string,
|
|
10904
|
+
channel_revenue_share_percentage: PropTypes.number,
|
|
10905
|
+
shopify_grc_gid: PropTypes.string,
|
|
10906
|
+
});
|
|
10907
|
+
|
|
10876
10908
|
T['io.flow.organization.onboarding.state.v0.enums.onboarding_blocked_reason'] = PropTypes.oneOf([
|
|
10877
10909
|
'street_address_is_blank_3pl',
|
|
10878
10910
|
'street_address_is_po_box_3pl',
|
|
@@ -10889,21 +10921,6 @@ T['io.flow.internal.v0.models.setup_block_put_form'] = PropTypes.exact({
|
|
|
10889
10921
|
).isRequired,
|
|
10890
10922
|
});
|
|
10891
10923
|
|
|
10892
|
-
T['io.flow.internal.v0.enums.session_country_status'] = PropTypes.oneOf(['enabled', 'disabled']);
|
|
10893
|
-
|
|
10894
|
-
T['io.flow.internal.v0.models.session_country_form'] = PropTypes.exact({
|
|
10895
|
-
status: T['io.flow.internal.v0.enums.session_country_status'].isRequired,
|
|
10896
|
-
});
|
|
10897
|
-
|
|
10898
|
-
T['io.flow.internal.v0.models.session_country'] = PropTypes.exact({
|
|
10899
|
-
country: PropTypes.string.isRequired,
|
|
10900
|
-
status: T['io.flow.internal.v0.enums.session_country_status'].isRequired,
|
|
10901
|
-
});
|
|
10902
|
-
|
|
10903
|
-
T['io.flow.internal.v0.models.session_countries'] = PropTypes.exact({
|
|
10904
|
-
countries: PropTypes.arrayOf(T['io.flow.internal.v0.models.session_country']).isRequired,
|
|
10905
|
-
});
|
|
10906
|
-
|
|
10907
10924
|
T['io.flow.experience.v0.enums.experience_status'] = PropTypes.oneOf(['draft', 'active', 'archiving', 'archived']);
|
|
10908
10925
|
|
|
10909
10926
|
T['io.flow.experience.v0.models.experience_status_form'] = PropTypes.exact({
|
|
@@ -11030,6 +11047,8 @@ T['io.flow.internal.v0.models.report_bank_account_cleartext'] = PropTypes.exact(
|
|
|
11030
11047
|
account_number: PropTypes.string.isRequired,
|
|
11031
11048
|
});
|
|
11032
11049
|
|
|
11050
|
+
T['io.flow.internal.v0.enums.rohan_item_type'] = PropTypes.oneOf(['physical', 'digital']);
|
|
11051
|
+
|
|
11033
11052
|
T['io.flow.internal.v0.models.marked_as_final'] = PropTypes.exact({
|
|
11034
11053
|
products: PropTypes.bool.isRequired,
|
|
11035
11054
|
shipping: PropTypes.bool.isRequired,
|
|
@@ -11202,8 +11221,15 @@ T['io.flow.internal.v0.models.restriction_rule_effect_upserted'] = PropTypes.exa
|
|
|
11202
11221
|
restriction_rule_effect: T['io.flow.internal.v0.models.restriction_rule_effect'].isRequired,
|
|
11203
11222
|
});
|
|
11204
11223
|
|
|
11224
|
+
T['io.flow.internal.v0.enums.restriction_organization_source'] = PropTypes.oneOf(['shopify', 'enterprise']);
|
|
11205
11225
|
T['io.flow.internal.v0.enums.restriction_action'] = PropTypes.oneOf(['prohibited', 'restricted']);
|
|
11206
11226
|
T['io.flow.internal.v0.enums.organization_source'] = PropTypes.oneOf(['shopify', 'enterprise']);
|
|
11227
|
+
|
|
11228
|
+
T['io.flow.internal.v0.models.restriction_summary_counts'] = PropTypes.exact({
|
|
11229
|
+
pending_restriction_count: PropTypes.number.isRequired,
|
|
11230
|
+
pending_verification_count: PropTypes.number.isRequired,
|
|
11231
|
+
});
|
|
11232
|
+
|
|
11207
11233
|
T['io.flow.internal.v0.enums.keyword_type'] = PropTypes.oneOf(['positive', 'negative']);
|
|
11208
11234
|
|
|
11209
11235
|
T['io.flow.internal.v0.models.restriction_keyword_metadata'] = PropTypes.exact({
|
|
@@ -11276,6 +11302,7 @@ T['io.flow.internal.v0.models.reporting_fulfillment_is'] = PropTypes.exact({
|
|
|
11276
11302
|
tax_inclusive: PropTypes.bool,
|
|
11277
11303
|
duty_inclusive: PropTypes.bool,
|
|
11278
11304
|
manual_payment: PropTypes.bool,
|
|
11305
|
+
manual_capture: PropTypes.bool,
|
|
11279
11306
|
partial_fulfillment: PropTypes.bool,
|
|
11280
11307
|
partial_refund: PropTypes.bool,
|
|
11281
11308
|
});
|
|
@@ -11561,165 +11588,48 @@ T['io.flow.internal.v0.models.rate_source_composition_summary'] = PropTypes.exac
|
|
|
11561
11588
|
percentage_composition: PropTypes.number.isRequired,
|
|
11562
11589
|
});
|
|
11563
11590
|
|
|
11564
|
-
T['io.flow.
|
|
11565
|
-
|
|
11566
|
-
|
|
11567
|
-
|
|
11568
|
-
|
|
11569
|
-
|
|
11570
|
-
|
|
11571
|
-
|
|
11572
|
-
|
|
11573
|
-
|
|
11591
|
+
T['io.flow.internal.v0.models.currency_internal_rate'] = PropTypes.exact({
|
|
11592
|
+
id: PropTypes.string.isRequired,
|
|
11593
|
+
organization_id: PropTypes.string.isRequired,
|
|
11594
|
+
base: PropTypes.string.isRequired,
|
|
11595
|
+
target: PropTypes.string.isRequired,
|
|
11596
|
+
effective_at: PropTypes.string.isRequired,
|
|
11597
|
+
spot_rate: PropTypes.number.isRequired,
|
|
11598
|
+
flow_margin: PropTypes.number.isRequired,
|
|
11599
|
+
flow_rate: PropTypes.number.isRequired,
|
|
11600
|
+
organization_margin: PropTypes.number.isRequired,
|
|
11601
|
+
organization_rate: PropTypes.number.isRequired,
|
|
11602
|
+
rate_lock_unit: PropTypes.string.isRequired,
|
|
11603
|
+
rate_lock_value: PropTypes.number.isRequired,
|
|
11604
|
+
created_at: PropTypes.string.isRequired,
|
|
11605
|
+
updated_at: PropTypes.string.isRequired,
|
|
11606
|
+
updated_by_user_id: PropTypes.string.isRequired,
|
|
11574
11607
|
});
|
|
11575
11608
|
|
|
11576
|
-
T['io.flow.
|
|
11577
|
-
|
|
11578
|
-
|
|
11579
|
-
|
|
11580
|
-
|
|
11609
|
+
T['io.flow.internal.v0.models.rate_upserted_v2'] = PropTypes.exact({
|
|
11610
|
+
discriminator: PropTypes.oneOf(['rate_upserted_v2']).isRequired,
|
|
11611
|
+
event_id: PropTypes.string.isRequired,
|
|
11612
|
+
timestamp: PropTypes.string.isRequired,
|
|
11613
|
+
rate: T['io.flow.internal.v0.models.currency_internal_rate'].isRequired,
|
|
11581
11614
|
});
|
|
11582
11615
|
|
|
11583
|
-
T['io.flow.
|
|
11584
|
-
|
|
11585
|
-
|
|
11586
|
-
|
|
11587
|
-
|
|
11588
|
-
experience: T['io.flow.experience.v0.models.experience_geo'].isRequired,
|
|
11616
|
+
T['io.flow.internal.v0.models.rate_deleted_v2'] = PropTypes.exact({
|
|
11617
|
+
discriminator: PropTypes.oneOf(['rate_deleted_v2']).isRequired,
|
|
11618
|
+
event_id: PropTypes.string.isRequired,
|
|
11619
|
+
timestamp: PropTypes.string.isRequired,
|
|
11620
|
+
rate: T['io.flow.internal.v0.models.currency_internal_rate'].isRequired,
|
|
11589
11621
|
});
|
|
11590
11622
|
|
|
11591
|
-
T['io.flow.
|
|
11592
|
-
|
|
11593
|
-
|
|
11594
|
-
|
|
11595
|
-
|
|
11596
|
-
|
|
11597
|
-
|
|
11598
|
-
|
|
11599
|
-
|
|
11600
|
-
|
|
11601
|
-
origin: T['io.flow.reference.v0.models.country'].isRequired,
|
|
11602
|
-
});
|
|
11603
|
-
|
|
11604
|
-
T['io.flow.internal.v0.models.resync_by_hs6_destinations'] = PropTypes.exact({
|
|
11605
|
-
hs6_code: PropTypes.string.isRequired,
|
|
11606
|
-
destinations: PropTypes.arrayOf(T['io.flow.reference.v0.models.country']).isRequired,
|
|
11607
|
-
});
|
|
11608
|
-
|
|
11609
|
-
T['io.flow.internal.v0.models.resync_by_destinations'] = PropTypes.exact({
|
|
11610
|
-
destinations: PropTypes.arrayOf(T['io.flow.reference.v0.models.country']).isRequired,
|
|
11611
|
-
});
|
|
11612
|
-
|
|
11613
|
-
T['io.flow.internal.v0.models.rates_names_summary'] = PropTypes.exact({
|
|
11614
|
-
origin: T['io.flow.reference.v0.models.country'].isRequired,
|
|
11615
|
-
destination: T['io.flow.reference.v0.models.country'].isRequired,
|
|
11616
|
-
summaries: PropTypes.arrayOf(T['io.flow.internal.v0.models.rate_name_summary']).isRequired,
|
|
11617
|
-
});
|
|
11618
|
-
|
|
11619
|
-
T['io.flow.internal.v0.models.rates_changed'] = PropTypes.exact({
|
|
11620
|
-
event_id: PropTypes.string.isRequired,
|
|
11621
|
-
timestamp: PropTypes.string.isRequired,
|
|
11622
|
-
hs6: PropTypes.string.isRequired,
|
|
11623
|
-
origin: T['io.flow.reference.v0.models.country'].isRequired,
|
|
11624
|
-
destination: T['io.flow.reference.v0.models.country'].isRequired,
|
|
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,
|
|
11704
|
-
});
|
|
11705
|
-
|
|
11706
|
-
T['io.flow.internal.v0.models.rate_deleted_v2'] = PropTypes.exact({
|
|
11707
|
-
discriminator: PropTypes.oneOf(['rate_deleted_v2']).isRequired,
|
|
11708
|
-
event_id: PropTypes.string.isRequired,
|
|
11709
|
-
timestamp: PropTypes.string.isRequired,
|
|
11710
|
-
rate: T['io.flow.internal.v0.models.currency_internal_rate'].isRequired,
|
|
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
|
-
]);
|
|
11623
|
+
T['io.flow.internal.v0.enums.duty_selection_rule'] = PropTypes.oneOf([
|
|
11624
|
+
'lookup_by_tariff_code',
|
|
11625
|
+
'lookup_by_hs6_code',
|
|
11626
|
+
'fallback_for_jurisdiction',
|
|
11627
|
+
'domestic_sale',
|
|
11628
|
+
'intra_community_sale',
|
|
11629
|
+
'reimport',
|
|
11630
|
+
'override',
|
|
11631
|
+
'preferential_rate',
|
|
11632
|
+
]);
|
|
11723
11633
|
|
|
11724
11634
|
T['io.flow.internal.v0.models.quote'] = PropTypes.exact({
|
|
11725
11635
|
id: PropTypes.string.isRequired,
|
|
@@ -11753,6 +11663,44 @@ T['io.flow.internal.v0.models.restriction_pending'] = PropTypes.exact({
|
|
|
11753
11663
|
count: PropTypes.number.isRequired,
|
|
11754
11664
|
});
|
|
11755
11665
|
|
|
11666
|
+
T['io.flow.internal.v0.enums.restriction_state_review_status'] = PropTypes.oneOf(['reviewed', 'in_review']);
|
|
11667
|
+
|
|
11668
|
+
T['io.flow.internal.v0.models.product_restriction_state'] = PropTypes.exact({
|
|
11669
|
+
id: PropTypes.string.isRequired,
|
|
11670
|
+
organization_id: PropTypes.string.isRequired,
|
|
11671
|
+
product_number: PropTypes.string.isRequired,
|
|
11672
|
+
review_status: T['io.flow.internal.v0.enums.restriction_state_review_status'].isRequired,
|
|
11673
|
+
pending_restriction_count: PropTypes.number,
|
|
11674
|
+
pending_verification_count: PropTypes.number,
|
|
11675
|
+
oldest_pending_restriction_date: PropTypes.string,
|
|
11676
|
+
oldest_pending_verification_date: PropTypes.string,
|
|
11677
|
+
});
|
|
11678
|
+
|
|
11679
|
+
T['io.flow.internal.v0.models.product_restriction_state_updated'] = PropTypes.exact({
|
|
11680
|
+
discriminator: PropTypes.oneOf(['product_restriction_state_updated']).isRequired,
|
|
11681
|
+
event_id: PropTypes.string.isRequired,
|
|
11682
|
+
timestamp: PropTypes.string.isRequired,
|
|
11683
|
+
organization: PropTypes.string.isRequired,
|
|
11684
|
+
previous_product_restriction_state: T['io.flow.internal.v0.models.product_restriction_state'].isRequired,
|
|
11685
|
+
product_restriction_state: T['io.flow.internal.v0.models.product_restriction_state'].isRequired,
|
|
11686
|
+
});
|
|
11687
|
+
|
|
11688
|
+
T['io.flow.internal.v0.models.product_restriction_state_inserted'] = PropTypes.exact({
|
|
11689
|
+
discriminator: PropTypes.oneOf(['product_restriction_state_inserted']).isRequired,
|
|
11690
|
+
event_id: PropTypes.string.isRequired,
|
|
11691
|
+
timestamp: PropTypes.string.isRequired,
|
|
11692
|
+
organization: PropTypes.string.isRequired,
|
|
11693
|
+
product_restriction_state: T['io.flow.internal.v0.models.product_restriction_state'].isRequired,
|
|
11694
|
+
});
|
|
11695
|
+
|
|
11696
|
+
T['io.flow.internal.v0.models.product_restriction_state_deleted'] = PropTypes.exact({
|
|
11697
|
+
discriminator: PropTypes.oneOf(['product_restriction_state_deleted']).isRequired,
|
|
11698
|
+
event_id: PropTypes.string.isRequired,
|
|
11699
|
+
timestamp: PropTypes.string.isRequired,
|
|
11700
|
+
organization: PropTypes.string.isRequired,
|
|
11701
|
+
product_restriction_state: T['io.flow.internal.v0.models.product_restriction_state'].isRequired,
|
|
11702
|
+
});
|
|
11703
|
+
|
|
11756
11704
|
T['io.flow.internal.v0.models.product_transaction'] = PropTypes.exact({
|
|
11757
11705
|
transaction_amount: PropTypes.number.isRequired,
|
|
11758
11706
|
destination_amount: PropTypes.number.isRequired,
|
|
@@ -11793,6 +11741,8 @@ T['io.flow.internal.v0.models.classified_product'] = PropTypes.exact({
|
|
|
11793
11741
|
classification_model_id: PropTypes.string.isRequired,
|
|
11794
11742
|
});
|
|
11795
11743
|
|
|
11744
|
+
T['io.flow.internal.v0.enums.prateek_item_type'] = PropTypes.oneOf(['physical', 'digital']);
|
|
11745
|
+
|
|
11796
11746
|
T['io.flow.internal.v0.models.platform_fee_percentage_tier'] = PropTypes.exact({
|
|
11797
11747
|
minimum_amount_base: PropTypes.number.isRequired,
|
|
11798
11748
|
rate: PropTypes.number.isRequired,
|
|
@@ -12713,6 +12663,8 @@ T['io.flow.internal.v0.models.report_payment'] = PropTypes.exact({
|
|
|
12713
12663
|
created_at: PropTypes.string.isRequired,
|
|
12714
12664
|
});
|
|
12715
12665
|
|
|
12666
|
+
T['io.flow.internal.v0.enums.niall_item_type'] = PropTypes.oneOf(['physical', 'digital']);
|
|
12667
|
+
|
|
12716
12668
|
T['io.flow.internal.v0.models.attempt_statistics'] = PropTypes.exact({
|
|
12717
12669
|
merchant_count: PropTypes.number.isRequired,
|
|
12718
12670
|
amount: PropTypes.number.isRequired,
|
|
@@ -13594,8 +13546,6 @@ T['io.flow.label.v0.models.shipping_label_document'] = PropTypes.exact({
|
|
|
13594
13546
|
required: PropTypes.bool.isRequired,
|
|
13595
13547
|
});
|
|
13596
13548
|
|
|
13597
|
-
T['io.flow.label.v0.enums.shipment_recipient'] = PropTypes.oneOf(['customer', 'return', 'crossdock']);
|
|
13598
|
-
|
|
13599
13549
|
T['io.flow.internal.v0.models.liability_party_details'] = PropTypes.exact({
|
|
13600
13550
|
eori_number: PropTypes.string,
|
|
13601
13551
|
});
|
|
@@ -13979,6 +13929,52 @@ T['io.flow.internal.v0.models.issuer_deleted'] = PropTypes.exact({
|
|
|
13979
13929
|
issuer: T['io.flow.internal.v0.models.issuer'].isRequired,
|
|
13980
13930
|
});
|
|
13981
13931
|
|
|
13932
|
+
T['io.flow.reference.v0.models.currency_symbols'] = PropTypes.exact({
|
|
13933
|
+
primary: PropTypes.string.isRequired,
|
|
13934
|
+
narrow: PropTypes.string,
|
|
13935
|
+
});
|
|
13936
|
+
|
|
13937
|
+
T['io.flow.internal.v0.enums.commercial_invoice_version'] = PropTypes.oneOf(['v2_2_1']);
|
|
13938
|
+
T['io.flow.label.v0.enums.shipment_recipient'] = PropTypes.oneOf(['customer', 'return', 'crossdock']);
|
|
13939
|
+
|
|
13940
|
+
T['io.flow.internal.v0.models.shipping_pricing'] = PropTypes.exact({
|
|
13941
|
+
freight_cost: PropTypes.number.isRequired,
|
|
13942
|
+
customer_price: PropTypes.number.isRequired,
|
|
13943
|
+
});
|
|
13944
|
+
|
|
13945
|
+
T['io.flow.reference.v0.models.currency'] = PropTypes.exact({
|
|
13946
|
+
name: PropTypes.string.isRequired,
|
|
13947
|
+
iso_4217_3: PropTypes.string.isRequired,
|
|
13948
|
+
number_decimals: PropTypes.number.isRequired,
|
|
13949
|
+
symbols: T['io.flow.reference.v0.models.currency_symbols'],
|
|
13950
|
+
default_locale: PropTypes.string,
|
|
13951
|
+
});
|
|
13952
|
+
|
|
13953
|
+
T['io.flow.internal.v0.models.invoice_data_line_item'] = PropTypes.exact({
|
|
13954
|
+
i: PropTypes.number.isRequired,
|
|
13955
|
+
number: PropTypes.string.isRequired,
|
|
13956
|
+
quantity: PropTypes.number.isRequired,
|
|
13957
|
+
description: PropTypes.string.isRequired,
|
|
13958
|
+
tariff_code: PropTypes.string.isRequired,
|
|
13959
|
+
country_of_origin: PropTypes.string.isRequired,
|
|
13960
|
+
display_country_of_origin: PropTypes.string.isRequired,
|
|
13961
|
+
gst_paid: PropTypes.bool.isRequired,
|
|
13962
|
+
gst_paid_text: PropTypes.string.isRequired,
|
|
13963
|
+
unit_price: PropTypes.number.isRequired,
|
|
13964
|
+
vat_price: PropTypes.number.isRequired,
|
|
13965
|
+
duty_price: PropTypes.number.isRequired,
|
|
13966
|
+
discount_price: PropTypes.number.isRequired,
|
|
13967
|
+
total_price: PropTypes.number.isRequired,
|
|
13968
|
+
export_control_classification_number: PropTypes.string.isRequired,
|
|
13969
|
+
manufacturer_id: PropTypes.string,
|
|
13970
|
+
display_number: PropTypes.string.isRequired,
|
|
13971
|
+
item_type: PropTypes.string,
|
|
13972
|
+
construction: PropTypes.string,
|
|
13973
|
+
gender: PropTypes.string,
|
|
13974
|
+
material: PropTypes.string,
|
|
13975
|
+
url: PropTypes.string,
|
|
13976
|
+
});
|
|
13977
|
+
|
|
13982
13978
|
T['io.flow.shopify.external.v0.models.shopify_country_harmonized_system_code'] = PropTypes.exact({
|
|
13983
13979
|
country_code: PropTypes.string.isRequired,
|
|
13984
13980
|
harmonized_system_code: PropTypes.string.isRequired,
|
|
@@ -14343,7 +14339,6 @@ T['io.flow.payment.gateway.v0.unions.action'] = PropTypes.oneOfType([
|
|
|
14343
14339
|
]);
|
|
14344
14340
|
|
|
14345
14341
|
T['io.flow.internal.v0.enums.rate_source'] = PropTypes.oneOf(['calculated', 'market']);
|
|
14346
|
-
T['io.flow.experience.v0.enums.order_payment_source_type'] = PropTypes.oneOf(['globale', 'third_party']);
|
|
14347
14342
|
|
|
14348
14343
|
T['io.flow.experience.v0.models.incoterm_summary'] = PropTypes.exact({
|
|
14349
14344
|
configuration: T['io.flow.experience.v0.enums.incoterm_configuration'].isRequired,
|
|
@@ -15481,61 +15476,185 @@ T['io.flow.internal.v0.models.erp_flow_file'] = PropTypes.exact({
|
|
|
15481
15476
|
created_at: PropTypes.string.isRequired,
|
|
15482
15477
|
});
|
|
15483
15478
|
|
|
15484
|
-
T['io.flow.
|
|
15485
|
-
|
|
15479
|
+
T['io.flow.reference.v0.models.country'] = PropTypes.exact({
|
|
15480
|
+
name: PropTypes.string.isRequired,
|
|
15481
|
+
iso_3166_2: PropTypes.string.isRequired,
|
|
15482
|
+
iso_3166_3: PropTypes.string.isRequired,
|
|
15483
|
+
languages: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
15484
|
+
measurement_system: PropTypes.string.isRequired,
|
|
15485
|
+
default_currency: PropTypes.string,
|
|
15486
|
+
default_language: PropTypes.string,
|
|
15487
|
+
timezones: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
15488
|
+
default_delivered_duty: PropTypes.string,
|
|
15486
15489
|
});
|
|
15487
15490
|
|
|
15488
|
-
T['io.flow.
|
|
15489
|
-
|
|
15490
|
-
|
|
15491
|
-
|
|
15492
|
-
|
|
15493
|
-
passphrase_ids: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
15491
|
+
T['io.flow.session.v0.models.session_geo'] = PropTypes.exact({
|
|
15492
|
+
country: T['io.flow.reference.v0.models.country'].isRequired,
|
|
15493
|
+
currency: T['io.flow.reference.v0.models.currency'].isRequired,
|
|
15494
|
+
language: T['io.flow.reference.v0.models.language'].isRequired,
|
|
15495
|
+
locale: T['io.flow.reference.v0.models.locale'].isRequired,
|
|
15494
15496
|
});
|
|
15495
15497
|
|
|
15496
|
-
T['io.flow.
|
|
15497
|
-
T['io.flow.
|
|
15498
|
+
T['io.flow.session.v0.models.local_session'] = 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,
|
|
15503
|
+
experience: T['io.flow.experience.v0.models.experience_geo'].isRequired,
|
|
15504
|
+
});
|
|
15498
15505
|
|
|
15499
|
-
T['io.flow.
|
|
15500
|
-
|
|
15501
|
-
origin: PropTypes.string.isRequired,
|
|
15502
|
-
destination: PropTypes.string.isRequired,
|
|
15506
|
+
T['io.flow.shopify.merchant.config.v0.models.country_of_origin'] = PropTypes.exact({
|
|
15507
|
+
country: T['io.flow.reference.v0.models.country'].isRequired,
|
|
15503
15508
|
});
|
|
15504
15509
|
|
|
15505
|
-
T['io.flow.internal.v0.models.
|
|
15506
|
-
|
|
15507
|
-
product_id: PropTypes.string,
|
|
15510
|
+
T['io.flow.internal.v0.models.resync_fallback_rates'] = PropTypes.exact({
|
|
15511
|
+
destinations: PropTypes.arrayOf(T['io.flow.reference.v0.models.country']).isRequired,
|
|
15508
15512
|
});
|
|
15509
15513
|
|
|
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,
|
|
15514
|
+
T['io.flow.internal.v0.models.resync_by_hs6_origin'] = PropTypes.exact({
|
|
15513
15515
|
hs6_code: PropTypes.string.isRequired,
|
|
15514
|
-
|
|
15516
|
+
origin: T['io.flow.reference.v0.models.country'].isRequired,
|
|
15515
15517
|
});
|
|
15516
15518
|
|
|
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,
|
|
15519
|
+
T['io.flow.internal.v0.models.resync_by_hs6_destinations'] = PropTypes.exact({
|
|
15520
|
+
hs6_code: PropTypes.string.isRequired,
|
|
15521
|
+
destinations: PropTypes.arrayOf(T['io.flow.reference.v0.models.country']).isRequired,
|
|
15523
15522
|
});
|
|
15524
15523
|
|
|
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'],
|
|
15524
|
+
T['io.flow.internal.v0.models.resync_by_destinations'] = PropTypes.exact({
|
|
15525
|
+
destinations: PropTypes.arrayOf(T['io.flow.reference.v0.models.country']).isRequired,
|
|
15534
15526
|
});
|
|
15535
15527
|
|
|
15536
|
-
T['io.flow.internal.v0.
|
|
15537
|
-
T['io.flow.
|
|
15538
|
-
|
|
15528
|
+
T['io.flow.internal.v0.models.rates_names_summary'] = PropTypes.exact({
|
|
15529
|
+
origin: T['io.flow.reference.v0.models.country'].isRequired,
|
|
15530
|
+
destination: T['io.flow.reference.v0.models.country'].isRequired,
|
|
15531
|
+
summaries: PropTypes.arrayOf(T['io.flow.internal.v0.models.rate_name_summary']).isRequired,
|
|
15532
|
+
});
|
|
15533
|
+
|
|
15534
|
+
T['io.flow.internal.v0.models.rates_changed'] = PropTypes.exact({
|
|
15535
|
+
event_id: PropTypes.string.isRequired,
|
|
15536
|
+
timestamp: PropTypes.string.isRequired,
|
|
15537
|
+
hs6: PropTypes.string.isRequired,
|
|
15538
|
+
origin: T['io.flow.reference.v0.models.country'].isRequired,
|
|
15539
|
+
destination: T['io.flow.reference.v0.models.country'].isRequired,
|
|
15540
|
+
});
|
|
15541
|
+
|
|
15542
|
+
T['io.flow.internal.v0.models.rate_source_summary'] = PropTypes.exact({
|
|
15543
|
+
discriminator: PropTypes.oneOf(['rate-source']).isRequired,
|
|
15544
|
+
key: PropTypes.string.isRequired,
|
|
15545
|
+
destination: T['io.flow.reference.v0.models.country'].isRequired,
|
|
15546
|
+
rate_source_composition_summaries: PropTypes.arrayOf(T['io.flow.internal.v0.models.rate_source_composition_summary']).isRequired,
|
|
15547
|
+
});
|
|
15548
|
+
|
|
15549
|
+
T['io.flow.internal.v0.models.rate_source_summary_upserted'] = PropTypes.exact({
|
|
15550
|
+
discriminator: PropTypes.oneOf(['rate_source_summary_upserted']).isRequired,
|
|
15551
|
+
event_id: PropTypes.string.isRequired,
|
|
15552
|
+
timestamp: PropTypes.string.isRequired,
|
|
15553
|
+
rate_source_summary: T['io.flow.internal.v0.models.rate_source_summary'].isRequired,
|
|
15554
|
+
});
|
|
15555
|
+
|
|
15556
|
+
T['io.flow.internal.v0.models.rate_source_summary_deleted'] = PropTypes.exact({
|
|
15557
|
+
discriminator: PropTypes.oneOf(['rate_source_summary_deleted']).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_destination_freshness_summary'] = PropTypes.exact({
|
|
15564
|
+
destination: T['io.flow.reference.v0.models.country'].isRequired,
|
|
15565
|
+
percentage_updated: PropTypes.number.isRequired,
|
|
15566
|
+
});
|
|
15567
|
+
|
|
15568
|
+
T['io.flow.internal.v0.models.rate_freshness_summary'] = PropTypes.exact({
|
|
15569
|
+
discriminator: PropTypes.oneOf(['rate-freshness']).isRequired,
|
|
15570
|
+
key: PropTypes.string.isRequired,
|
|
15571
|
+
updated_since: PropTypes.string.isRequired,
|
|
15572
|
+
destination_freshness_summaries: PropTypes.arrayOf(T['io.flow.internal.v0.models.rate_destination_freshness_summary']).isRequired,
|
|
15573
|
+
});
|
|
15574
|
+
|
|
15575
|
+
T['io.flow.internal.v0.unions.internal_harmonization_statistic'] = PropTypes.oneOfType([
|
|
15576
|
+
T['io.flow.internal.v0.models.time_to_classify'],
|
|
15577
|
+
T['io.flow.internal.v0.models.time_to_classify_aggregated'],
|
|
15578
|
+
T['io.flow.internal.v0.models.rate_source_summary'],
|
|
15579
|
+
T['io.flow.internal.v0.models.rate_freshness_summary'],
|
|
15580
|
+
]);
|
|
15581
|
+
|
|
15582
|
+
T['io.flow.internal.v0.models.rate_freshness_summary_upserted'] = PropTypes.exact({
|
|
15583
|
+
discriminator: PropTypes.oneOf(['rate_freshness_summary_upserted']).isRequired,
|
|
15584
|
+
event_id: PropTypes.string.isRequired,
|
|
15585
|
+
timestamp: PropTypes.string.isRequired,
|
|
15586
|
+
rate_freshness_summary: T['io.flow.internal.v0.models.rate_freshness_summary'].isRequired,
|
|
15587
|
+
});
|
|
15588
|
+
|
|
15589
|
+
T['io.flow.internal.v0.models.rate_freshness_summary_deleted'] = PropTypes.exact({
|
|
15590
|
+
discriminator: PropTypes.oneOf(['rate_freshness_summary_deleted']).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.entity_reference_number'] = PropTypes.exact({
|
|
15597
|
+
short_name: PropTypes.string.isRequired,
|
|
15598
|
+
number: PropTypes.string.isRequired,
|
|
15599
|
+
issuing_country: T['io.flow.reference.v0.models.country'],
|
|
15600
|
+
display_name: PropTypes.string,
|
|
15601
|
+
});
|
|
15602
|
+
|
|
15603
|
+
T['io.flow.internal.v0.models.key_reference'] = PropTypes.exact({
|
|
15604
|
+
id: PropTypes.string.isRequired,
|
|
15605
|
+
});
|
|
15606
|
+
|
|
15607
|
+
T['io.flow.internal.v0.models.encryption'] = PropTypes.exact({
|
|
15608
|
+
id: PropTypes.string.isRequired,
|
|
15609
|
+
key: T['io.flow.internal.v0.models.key_reference'].isRequired,
|
|
15610
|
+
iv: PropTypes.string.isRequired,
|
|
15611
|
+
cipher: PropTypes.string.isRequired,
|
|
15612
|
+
passphrase_ids: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
15613
|
+
});
|
|
15614
|
+
|
|
15615
|
+
T['io.flow.internal.v0.enums.duty_rate_unit_of_measure'] = PropTypes.oneOf(['kg', 'sq m', 'item', 'pair']);
|
|
15616
|
+
T['io.flow.internal.v0.enums.duty_simple_expression_type'] = PropTypes.oneOf(['free', 'percent', 'per_uom', 'flat']);
|
|
15617
|
+
|
|
15618
|
+
T['io.flow.internal.v0.models.duty_rate_summary'] = PropTypes.exact({
|
|
15619
|
+
tariff_code: PropTypes.string.isRequired,
|
|
15620
|
+
origin: PropTypes.string.isRequired,
|
|
15621
|
+
destination: PropTypes.string.isRequired,
|
|
15622
|
+
});
|
|
15623
|
+
|
|
15624
|
+
T['io.flow.internal.v0.models.duty_rate_item_summary'] = PropTypes.exact({
|
|
15625
|
+
number: PropTypes.string.isRequired,
|
|
15626
|
+
product_id: PropTypes.string,
|
|
15627
|
+
});
|
|
15628
|
+
|
|
15629
|
+
T['io.flow.internal.v0.models.duty_rates_data_summary'] = PropTypes.exact({
|
|
15630
|
+
id: PropTypes.string.isRequired,
|
|
15631
|
+
item_summary: T['io.flow.internal.v0.models.duty_rate_item_summary'].isRequired,
|
|
15632
|
+
hs6_code: PropTypes.string.isRequired,
|
|
15633
|
+
summaries: PropTypes.arrayOf(T['io.flow.internal.v0.models.duty_rate_summary']).isRequired,
|
|
15634
|
+
});
|
|
15635
|
+
|
|
15636
|
+
T['io.flow.internal.v0.models.duty_rates_published_v2'] = PropTypes.exact({
|
|
15637
|
+
discriminator: PropTypes.oneOf(['duty_rates_published_v2']).isRequired,
|
|
15638
|
+
event_id: PropTypes.string.isRequired,
|
|
15639
|
+
timestamp: PropTypes.string.isRequired,
|
|
15640
|
+
organization: PropTypes.string.isRequired,
|
|
15641
|
+
data: T['io.flow.internal.v0.models.duty_rates_data_summary'].isRequired,
|
|
15642
|
+
});
|
|
15643
|
+
|
|
15644
|
+
T['io.flow.internal.v0.enums.duty_rate_source'] = PropTypes.oneOf(
|
|
15645
|
+
['tariff_code_rate', 'compound_rate', 'csv_fallback_rate', 'hardcoded_rate'],
|
|
15646
|
+
);
|
|
15647
|
+
|
|
15648
|
+
T['io.flow.internal.v0.models.duty_simple_expression'] = PropTypes.exact({
|
|
15649
|
+
discriminator: PropTypes.oneOf(['duty_simple_expression']).isRequired,
|
|
15650
|
+
type: T['io.flow.internal.v0.enums.duty_simple_expression_type'].isRequired,
|
|
15651
|
+
value: PropTypes.number.isRequired,
|
|
15652
|
+
unit_of_measure: T['io.flow.internal.v0.enums.duty_rate_unit_of_measure'],
|
|
15653
|
+
});
|
|
15654
|
+
|
|
15655
|
+
T['io.flow.internal.v0.enums.duty_compound_expression_type'] = PropTypes.oneOf(['sum', 'max', 'min']);
|
|
15656
|
+
T['io.flow.internal.v0.unions.duty_expression'] = PropTypes.oneOfType([PropTypes.any, T['io.flow.internal.v0.models.duty_simple_expression']]);
|
|
15657
|
+
|
|
15539
15658
|
T['io.flow.internal.v0.models.duty_internal_rate'] = PropTypes.exact({
|
|
15540
15659
|
id: PropTypes.string.isRequired,
|
|
15541
15660
|
hs6: PropTypes.string.isRequired,
|
|
@@ -15593,6 +15712,7 @@ T['io.flow.internal.v0.models.reporting_order_summary'] = PropTypes.exact({
|
|
|
15593
15712
|
id: PropTypes.string.isRequired,
|
|
15594
15713
|
number: PropTypes.string.isRequired,
|
|
15595
15714
|
submitted_at: PropTypes.string.isRequired,
|
|
15715
|
+
payment_source: PropTypes.string,
|
|
15596
15716
|
});
|
|
15597
15717
|
|
|
15598
15718
|
T['io.flow.internal.v0.models.reporting_authorization_reference'] = PropTypes.exact({
|
|
@@ -15811,31 +15931,6 @@ T['io.flow.fulfillment.v0.models.option_weight_estimates'] = PropTypes.exact({
|
|
|
15811
15931
|
dimensional: T['io.flow.common.v0.models.measurement'].isRequired,
|
|
15812
15932
|
});
|
|
15813
15933
|
|
|
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
15934
|
T['io.flow.ratecard.v0.models.estimated_dimensions'] = PropTypes.exact({
|
|
15840
15935
|
depth: T['io.flow.common.v0.models.measurement'].isRequired,
|
|
15841
15936
|
length: T['io.flow.common.v0.models.measurement'].isRequired,
|
|
@@ -15881,6 +15976,31 @@ T['io.flow.internal.v0.models.item_dimension_estimate'] = PropTypes.exact({
|
|
|
15881
15976
|
dimensions: T['io.flow.ratecard.v0.models.estimated_dimensions'].isRequired,
|
|
15882
15977
|
});
|
|
15883
15978
|
|
|
15979
|
+
T['io.flow.common.v0.models.dimension'] = PropTypes.exact({
|
|
15980
|
+
depth: T['io.flow.common.v0.models.measurement'],
|
|
15981
|
+
diameter: T['io.flow.common.v0.models.measurement'],
|
|
15982
|
+
length: T['io.flow.common.v0.models.measurement'],
|
|
15983
|
+
weight: T['io.flow.common.v0.models.measurement'],
|
|
15984
|
+
width: T['io.flow.common.v0.models.measurement'],
|
|
15985
|
+
});
|
|
15986
|
+
|
|
15987
|
+
T['io.flow.shopify.merchant.config.v0.models.package_dimensions_form'] = PropTypes.exact({
|
|
15988
|
+
dimensions: PropTypes.arrayOf(T['io.flow.common.v0.models.dimension']).isRequired,
|
|
15989
|
+
});
|
|
15990
|
+
|
|
15991
|
+
T['io.flow.shopify.merchant.config.v0.models.package_dimensions'] = PropTypes.exact({
|
|
15992
|
+
dimensions: PropTypes.arrayOf(T['io.flow.common.v0.models.dimension']).isRequired,
|
|
15993
|
+
});
|
|
15994
|
+
|
|
15995
|
+
T['io.flow.label.v0.models.single_package_shipping_notification_form'] = PropTypes.exact({
|
|
15996
|
+
discriminator: PropTypes.oneOf(['single_package_shipping_notification_form']).isRequired,
|
|
15997
|
+
fulfillment_key: PropTypes.string.isRequired,
|
|
15998
|
+
carrier_tracking_number: PropTypes.string.isRequired,
|
|
15999
|
+
package_dimensions: T['io.flow.common.v0.models.dimension'],
|
|
16000
|
+
service: PropTypes.string,
|
|
16001
|
+
shipment_recipient: T['io.flow.label.v0.enums.shipment_recipient'],
|
|
16002
|
+
});
|
|
16003
|
+
|
|
15884
16004
|
T['io.flow.ratecard.v0.models.fee_weight'] = PropTypes.exact({
|
|
15885
16005
|
weight: PropTypes.number.isRequired,
|
|
15886
16006
|
unit: T['io.flow.common.v0.enums.unit_of_measurement'].isRequired,
|
|
@@ -16339,6 +16459,8 @@ T['io.flow.internal.v0.models.customs_product_attribute_label'] = PropTypes.exac
|
|
|
16339
16459
|
value: PropTypes.string.isRequired,
|
|
16340
16460
|
});
|
|
16341
16461
|
|
|
16462
|
+
T['io.flow.internal.v0.enums.applicable_preferential_rate'] = PropTypes.oneOf(['baby', 'children']);
|
|
16463
|
+
|
|
16342
16464
|
T['io.flow.internal.v0.models.customs_product_labels'] = PropTypes.exact({
|
|
16343
16465
|
item_type: PropTypes.string.isRequired,
|
|
16344
16466
|
gender: T['io.flow.internal.v0.models.customs_product_attribute_label'],
|
|
@@ -16397,6 +16519,7 @@ T['io.flow.internal.v0.models.item_customs_details'] = PropTypes.exact({
|
|
|
16397
16519
|
duty_composition_rate: PropTypes.number.isRequired,
|
|
16398
16520
|
export_control_classification_number: PropTypes.string,
|
|
16399
16521
|
labels: T['io.flow.internal.v0.models.customs_product_labels'],
|
|
16522
|
+
applicable_preferential_rate: T['io.flow.internal.v0.enums.applicable_preferential_rate'],
|
|
16400
16523
|
});
|
|
16401
16524
|
|
|
16402
16525
|
T['io.flow.internal.v0.unions.tariff_eligibility_data'] = PropTypes.oneOfType([
|
|
@@ -17460,6 +17583,30 @@ T['io.flow.internal.v0.enums.channel_order_acceptance_rejection_reason'] = PropT
|
|
|
17460
17583
|
'order_missing',
|
|
17461
17584
|
]);
|
|
17462
17585
|
|
|
17586
|
+
T['io.flow.experience.v0.enums.order_payment_source_type'] = PropTypes.oneOf(['globale', 'third_party']);
|
|
17587
|
+
|
|
17588
|
+
T['io.flow.channel.internal.v0.models.channel_order_acceptance'] = PropTypes.exact({
|
|
17589
|
+
id: PropTypes.string.isRequired,
|
|
17590
|
+
organization_id: PropTypes.string.isRequired,
|
|
17591
|
+
order_number: PropTypes.string.isRequired,
|
|
17592
|
+
channel_id: PropTypes.string.isRequired,
|
|
17593
|
+
external_order_reference: PropTypes.string.isRequired,
|
|
17594
|
+
payment_request_id: PropTypes.string,
|
|
17595
|
+
order_edit_payment_request_ids: PropTypes.arrayOf(PropTypes.string),
|
|
17596
|
+
status: T['io.flow.channel.internal.v0.enums.channel_order_acceptance_status'].isRequired,
|
|
17597
|
+
reasons: PropTypes.arrayOf(T['io.flow.channel.internal.v0.models.channel_order_acceptance_reason']).isRequired,
|
|
17598
|
+
next_action_from: T['io.flow.channel.internal.v0.enums.channel_order_acceptance_next_action_from'],
|
|
17599
|
+
order_created_at: PropTypes.string,
|
|
17600
|
+
order_updated_at: PropTypes.string,
|
|
17601
|
+
order_edit_summary: T['io.flow.channel.internal.v0.models.order_edit_summary'],
|
|
17602
|
+
payment_source: T['io.flow.experience.v0.enums.order_payment_source_type'],
|
|
17603
|
+
});
|
|
17604
|
+
|
|
17605
|
+
T['io.flow.channel.internal.v0.models.channel_order_acceptance_details'] = PropTypes.exact({
|
|
17606
|
+
order_acceptance: T['io.flow.channel.internal.v0.models.channel_order_acceptance'].isRequired,
|
|
17607
|
+
external_order: PropTypes.object.isRequired,
|
|
17608
|
+
});
|
|
17609
|
+
|
|
17463
17610
|
T['io.flow.internal.v0.models.order_edit_summary'] = PropTypes.exact({
|
|
17464
17611
|
edited_at: PropTypes.string.isRequired,
|
|
17465
17612
|
});
|
|
@@ -18630,6 +18777,7 @@ T['io.flow.billing.v0.unions.transaction_metadata'] = PropTypes.oneOfType([
|
|
|
18630
18777
|
T['io.flow.billing.v0.models.transaction_metadata_manual'],
|
|
18631
18778
|
T['io.flow.billing.v0.models.transaction_metadata_failed_payout'],
|
|
18632
18779
|
T['io.flow.billing.v0.models.transaction_metadata_payment_transaction'],
|
|
18780
|
+
T['io.flow.billing.v0.models.transaction_metadata_tax_duty'],
|
|
18633
18781
|
]);
|
|
18634
18782
|
|
|
18635
18783
|
T['io.flow.internal.v0.models.label_metadata'] = PropTypes.exact({
|
|
@@ -19007,6 +19155,7 @@ T['io.flow.internal.v0.models.channel_order_acceptance'] = PropTypes.exact({
|
|
|
19007
19155
|
order_created_at: PropTypes.string,
|
|
19008
19156
|
order_updated_at: PropTypes.string,
|
|
19009
19157
|
order_edit_summary: T['io.flow.internal.v0.models.order_edit_summary'],
|
|
19158
|
+
payment_source: T['io.flow.experience.v0.enums.order_payment_source_type'],
|
|
19010
19159
|
});
|
|
19011
19160
|
|
|
19012
19161
|
T['io.flow.internal.v0.models.channel_order_acceptance_upserted'] = PropTypes.exact({
|
|
@@ -19700,12 +19849,6 @@ T['io.flow.internal.v0.models.restriction_status_metadata'] = PropTypes.exact({
|
|
|
19700
19849
|
count: PropTypes.number.isRequired,
|
|
19701
19850
|
});
|
|
19702
19851
|
|
|
19703
|
-
T['io.flow.internal.v0.models.restriction_rule_metadata'] = PropTypes.exact({
|
|
19704
|
-
rule: T['io.flow.internal.v0.models.restriction_rule_summary'].isRequired,
|
|
19705
|
-
statuses: PropTypes.arrayOf(T['io.flow.internal.v0.models.restriction_status_metadata']).isRequired,
|
|
19706
|
-
count: PropTypes.number.isRequired,
|
|
19707
|
-
});
|
|
19708
|
-
|
|
19709
19852
|
T['io.flow.internal.v0.models.restriction_item_review_summary'] = PropTypes.exact({
|
|
19710
19853
|
rule: T['io.flow.internal.v0.models.restriction_rule_summary'].isRequired,
|
|
19711
19854
|
status: T['io.flow.internal.v0.enums.restriction_status'].isRequired,
|
|
@@ -19779,6 +19922,8 @@ T['io.flow.internal.v0.models.restriction_rule_form'] = PropTypes.exact({
|
|
|
19779
19922
|
negative_keywords: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
19780
19923
|
value_threshold_usd: PropTypes.number,
|
|
19781
19924
|
auto_review_criteria: PropTypes.arrayOf(T['io.flow.internal.v0.models.auto_review_criteria']),
|
|
19925
|
+
source: T['io.flow.internal.v0.enums.restriction_organization_source'],
|
|
19926
|
+
sellability_positive_keywords: PropTypes.arrayOf(PropTypes.string),
|
|
19782
19927
|
});
|
|
19783
19928
|
|
|
19784
19929
|
T['io.flow.internal.v0.models.restriction_rule'] = PropTypes.exact({
|
|
@@ -19791,6 +19936,8 @@ T['io.flow.internal.v0.models.restriction_rule'] = PropTypes.exact({
|
|
|
19791
19936
|
negative_keywords: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
19792
19937
|
value_threshold_usd: PropTypes.number,
|
|
19793
19938
|
auto_review_criteria: PropTypes.arrayOf(T['io.flow.internal.v0.models.auto_review_criteria']),
|
|
19939
|
+
source: T['io.flow.internal.v0.enums.restriction_organization_source'].isRequired,
|
|
19940
|
+
sellability_positive_keywords: PropTypes.arrayOf(PropTypes.string),
|
|
19794
19941
|
});
|
|
19795
19942
|
|
|
19796
19943
|
T['io.flow.internal.v0.models.restriction_rule_upserted'] = PropTypes.exact({
|
|
@@ -19825,6 +19972,14 @@ T['io.flow.customer.v0.models.customer_form'] = PropTypes.exact({
|
|
|
19825
19972
|
phone: PropTypes.string,
|
|
19826
19973
|
});
|
|
19827
19974
|
|
|
19975
|
+
T['io.flow.customer.v0.models.customer'] = PropTypes.exact({
|
|
19976
|
+
id: PropTypes.string.isRequired,
|
|
19977
|
+
number: PropTypes.string.isRequired,
|
|
19978
|
+
email: PropTypes.string,
|
|
19979
|
+
name: T['io.flow.common.v0.models.name'],
|
|
19980
|
+
phone: PropTypes.string,
|
|
19981
|
+
});
|
|
19982
|
+
|
|
19828
19983
|
T['io.flow.internal.v0.models.search_customer_summary'] = PropTypes.exact({
|
|
19829
19984
|
name: T['io.flow.common.v0.models.name'].isRequired,
|
|
19830
19985
|
email: PropTypes.string,
|
|
@@ -19920,22 +20075,6 @@ T['io.flow.internal.v0.models.order_note'] = PropTypes.exact({
|
|
|
19920
20075
|
updated_at: PropTypes.string.isRequired,
|
|
19921
20076
|
});
|
|
19922
20077
|
|
|
19923
|
-
T['io.flow.customer.v0.models.customer'] = PropTypes.exact({
|
|
19924
|
-
id: PropTypes.string.isRequired,
|
|
19925
|
-
number: PropTypes.string.isRequired,
|
|
19926
|
-
email: PropTypes.string,
|
|
19927
|
-
name: T['io.flow.common.v0.models.name'],
|
|
19928
|
-
phone: PropTypes.string,
|
|
19929
|
-
});
|
|
19930
|
-
|
|
19931
|
-
T['io.flow.internal.v0.models.customer_purge_upserted'] = PropTypes.exact({
|
|
19932
|
-
discriminator: PropTypes.oneOf(['customer_purge_upserted']).isRequired,
|
|
19933
|
-
event_id: PropTypes.string.isRequired,
|
|
19934
|
-
timestamp: PropTypes.string.isRequired,
|
|
19935
|
-
organization: PropTypes.string.isRequired,
|
|
19936
|
-
customer: T['io.flow.customer.v0.models.customer'].isRequired,
|
|
19937
|
-
});
|
|
19938
|
-
|
|
19939
20078
|
T['io.flow.common.v0.models.contact'] = PropTypes.exact({
|
|
19940
20079
|
name: T['io.flow.common.v0.models.name'].isRequired,
|
|
19941
20080
|
company: PropTypes.string,
|
|
@@ -20102,19 +20241,6 @@ T['io.flow.internal.v0.models.tracking_subscription_upserted'] = PropTypes.exact
|
|
|
20102
20241
|
tracking_subscription: T['io.flow.internal.v0.models.tracking_subscription'].isRequired,
|
|
20103
20242
|
});
|
|
20104
20243
|
|
|
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
20244
|
T['io.flow.internal.v0.models.order_validation_failure_summary'] = PropTypes.exact({
|
|
20119
20245
|
organization_id: PropTypes.string.isRequired,
|
|
20120
20246
|
order_number: PropTypes.string.isRequired,
|
|
@@ -20184,6 +20310,19 @@ T['io.flow.internal.v0.models.order_fulfillment_upserted'] = PropTypes.exact({
|
|
|
20184
20310
|
center: T['io.flow.fulfillment.v0.models.center_summary'],
|
|
20185
20311
|
});
|
|
20186
20312
|
|
|
20313
|
+
T['io.flow.internal.v0.models.validated_address'] = PropTypes.exact({
|
|
20314
|
+
company_name: PropTypes.string.isRequired,
|
|
20315
|
+
person_name: PropTypes.string.isRequired,
|
|
20316
|
+
phone: PropTypes.string.isRequired,
|
|
20317
|
+
email: PropTypes.string.isRequired,
|
|
20318
|
+
original_streets: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
20319
|
+
city: PropTypes.string.isRequired,
|
|
20320
|
+
province: PropTypes.string.isRequired,
|
|
20321
|
+
postal: PropTypes.string.isRequired,
|
|
20322
|
+
country: T['io.flow.reference.v0.models.country'].isRequired,
|
|
20323
|
+
original_address: T['io.flow.fulfillment.v0.models.shipping_address'].isRequired,
|
|
20324
|
+
});
|
|
20325
|
+
|
|
20187
20326
|
T['io.flow.internal.v0.models.console_label_request_form'] = PropTypes.exact({
|
|
20188
20327
|
discriminator: PropTypes.oneOf(['console_label_request_form']).isRequired,
|
|
20189
20328
|
order_number: PropTypes.string.isRequired,
|
|
@@ -20692,6 +20831,7 @@ T['io.flow.internal.v0.models.search_authorization'] = PropTypes.exact({
|
|
|
20692
20831
|
T['io.flow.internal.v0.unions.payment_summary_details'] = PropTypes.oneOfType([T['io.flow.internal.v0.models.search_authorization']]);
|
|
20693
20832
|
|
|
20694
20833
|
T['io.flow.internal.v0.models.shopify_merchant_plan'] = PropTypes.exact({
|
|
20834
|
+
id: PropTypes.string.isRequired,
|
|
20695
20835
|
authorization: T['io.flow.payment.v0.models.authorization_reference'].isRequired,
|
|
20696
20836
|
plan: T['io.flow.internal.v0.enums.shopify_plan_type'].isRequired,
|
|
20697
20837
|
});
|
|
@@ -22446,636 +22586,672 @@ T['io.flow.common.v0.models.discounts_form'] = PropTypes.exact({
|
|
|
22446
22586
|
discounts: PropTypes.arrayOf(T['io.flow.common.v0.models.discount_form']).isRequired,
|
|
22447
22587
|
});
|
|
22448
22588
|
|
|
22449
|
-
T['io.flow.
|
|
22450
|
-
number: PropTypes.string.isRequired,
|
|
22451
|
-
quantity: PropTypes.number.isRequired,
|
|
22452
|
-
shipment_estimate: T['io.flow.common.v0.models.datetime_range'],
|
|
22453
|
-
price: T['io.flow.common.v0.models.money'],
|
|
22454
|
-
attributes: PropTypes.objectOf(PropTypes.string),
|
|
22455
|
-
center: PropTypes.string,
|
|
22456
|
-
discount: T['io.flow.common.v0.models.money'],
|
|
22457
|
-
discounts: T['io.flow.common.v0.models.discounts_form'],
|
|
22458
|
-
});
|
|
22459
|
-
|
|
22460
|
-
T['io.flow.fulfillment.v0.models.delivery_summary'] = PropTypes.exact({
|
|
22589
|
+
T['io.flow.payment.v0.models.transfer'] = PropTypes.exact({
|
|
22461
22590
|
id: PropTypes.string.isRequired,
|
|
22462
|
-
|
|
22591
|
+
type: T['io.flow.payment.v0.enums.transfer_type'].isRequired,
|
|
22592
|
+
base: T['io.flow.common.v0.models.money'].isRequired,
|
|
22593
|
+
status: T['io.flow.payment.v0.enums.transfer_status'].isRequired,
|
|
22594
|
+
created_at: PropTypes.string.isRequired,
|
|
22595
|
+
authorization: T['io.flow.payment.v0.models.authorization_reference'].isRequired,
|
|
22596
|
+
transferred_at: PropTypes.string.isRequired,
|
|
22463
22597
|
});
|
|
22464
22598
|
|
|
22465
|
-
T['io.flow.
|
|
22599
|
+
T['io.flow.payment.v0.models.reversal'] = PropTypes.exact({
|
|
22466
22600
|
id: PropTypes.string.isRequired,
|
|
22467
|
-
|
|
22468
|
-
|
|
22469
|
-
|
|
22601
|
+
key: PropTypes.string.isRequired,
|
|
22602
|
+
authorization: T['io.flow.payment.v0.models.authorization_reference'].isRequired,
|
|
22603
|
+
status: T['io.flow.payment.v0.enums.reversal_status'].isRequired,
|
|
22604
|
+
amount: PropTypes.number.isRequired,
|
|
22605
|
+
currency: PropTypes.string.isRequired,
|
|
22606
|
+
requested: T['io.flow.common.v0.models.money'].isRequired,
|
|
22607
|
+
created_at: PropTypes.string.isRequired,
|
|
22608
|
+
attributes: PropTypes.objectOf(PropTypes.string).isRequired,
|
|
22609
|
+
base: T['io.flow.common.v0.models.money'],
|
|
22470
22610
|
});
|
|
22471
22611
|
|
|
22472
|
-
T['io.flow.
|
|
22473
|
-
|
|
22474
|
-
|
|
22475
|
-
|
|
22476
|
-
|
|
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']),
|
|
22612
|
+
T['io.flow.payment.v0.models.reversal_version'] = PropTypes.exact({
|
|
22613
|
+
id: PropTypes.string.isRequired,
|
|
22614
|
+
timestamp: PropTypes.string.isRequired,
|
|
22615
|
+
type: T['io.flow.common.v0.enums.change_type'].isRequired,
|
|
22616
|
+
reversal: T['io.flow.payment.v0.models.reversal'].isRequired,
|
|
22486
22617
|
});
|
|
22487
22618
|
|
|
22488
|
-
T['io.flow.
|
|
22489
|
-
discriminator: PropTypes.oneOf(['
|
|
22490
|
-
|
|
22491
|
-
|
|
22492
|
-
|
|
22493
|
-
|
|
22494
|
-
|
|
22495
|
-
|
|
22619
|
+
T['io.flow.payment.v0.models.online_authorization'] = PropTypes.exact({
|
|
22620
|
+
discriminator: PropTypes.oneOf(['online_authorization']).isRequired,
|
|
22621
|
+
id: PropTypes.string.isRequired,
|
|
22622
|
+
key: PropTypes.string.isRequired,
|
|
22623
|
+
method: T['io.flow.reference.v0.models.payment_method'],
|
|
22624
|
+
merchant_of_record: T['io.flow.common.v0.enums.merchant_of_record'],
|
|
22625
|
+
details: T['io.flow.payment.v0.unions.online_authorization_details'],
|
|
22626
|
+
payment: PropTypes.object,
|
|
22627
|
+
amount: PropTypes.number.isRequired,
|
|
22628
|
+
currency: PropTypes.string.isRequired,
|
|
22629
|
+
requested: T['io.flow.common.v0.models.money'],
|
|
22630
|
+
customer: T['io.flow.common.v0.models.order_customer'].isRequired,
|
|
22631
|
+
attributes: PropTypes.objectOf(PropTypes.string).isRequired,
|
|
22632
|
+
destination: T['io.flow.common.v0.models.address'],
|
|
22633
|
+
billing_address: T['io.flow.common.v0.models.billing_address'],
|
|
22634
|
+
order: T['io.flow.payment.v0.models.authorization_order_reference'],
|
|
22635
|
+
payment_order_reference: T['io.flow.payment.v0.unions.payment_order_reference'],
|
|
22636
|
+
ip: PropTypes.string,
|
|
22637
|
+
result: T['io.flow.payment.v0.models.authorization_result'].isRequired,
|
|
22638
|
+
created_at: PropTypes.string.isRequired,
|
|
22639
|
+
expires_at: PropTypes.string,
|
|
22640
|
+
base: T['io.flow.common.v0.models.money'],
|
|
22641
|
+
processor: T['io.flow.payment.v0.unions.expandable_payment_processor'],
|
|
22642
|
+
confirmation_details: T['io.flow.payment.v0.unions.confirmation_details'],
|
|
22643
|
+
authorized_at: PropTypes.string,
|
|
22644
|
+
authorization_request_id: PropTypes.string,
|
|
22496
22645
|
});
|
|
22497
22646
|
|
|
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'],
|
|
22647
|
+
T['io.flow.payment.v0.models.exchanged_money'] = PropTypes.exact({
|
|
22648
|
+
fx_rate: PropTypes.number.isRequired,
|
|
22649
|
+
money: T['io.flow.common.v0.models.money'].isRequired,
|
|
22506
22650
|
});
|
|
22507
22651
|
|
|
22508
|
-
T['io.flow.
|
|
22509
|
-
discriminator: PropTypes.oneOf(['
|
|
22510
|
-
|
|
22511
|
-
|
|
22512
|
-
|
|
22652
|
+
T['io.flow.payment.v0.models.card_authorization'] = PropTypes.exact({
|
|
22653
|
+
discriminator: PropTypes.oneOf(['card_authorization']).isRequired,
|
|
22654
|
+
id: PropTypes.string.isRequired,
|
|
22655
|
+
key: PropTypes.string.isRequired,
|
|
22656
|
+
merchant_of_record: T['io.flow.common.v0.enums.merchant_of_record'],
|
|
22657
|
+
method: T['io.flow.reference.v0.models.payment_method'],
|
|
22658
|
+
card: T['io.flow.payment.v0.unions.expandable_card'].isRequired,
|
|
22513
22659
|
amount: PropTypes.number.isRequired,
|
|
22514
|
-
|
|
22515
|
-
|
|
22516
|
-
|
|
22517
|
-
|
|
22518
|
-
|
|
22519
|
-
|
|
22660
|
+
currency: PropTypes.string.isRequired,
|
|
22661
|
+
requested: T['io.flow.common.v0.models.money'],
|
|
22662
|
+
customer: T['io.flow.common.v0.models.order_customer'].isRequired,
|
|
22663
|
+
attributes: PropTypes.objectOf(PropTypes.string).isRequired,
|
|
22664
|
+
destination: T['io.flow.common.v0.models.address'],
|
|
22665
|
+
billing_address: T['io.flow.common.v0.models.billing_address'],
|
|
22666
|
+
order: T['io.flow.payment.v0.models.authorization_order_reference'],
|
|
22667
|
+
payment_order_reference: T['io.flow.payment.v0.unions.payment_order_reference'],
|
|
22668
|
+
ip: PropTypes.string,
|
|
22669
|
+
result: T['io.flow.payment.v0.models.authorization_result'].isRequired,
|
|
22670
|
+
created_at: PropTypes.string.isRequired,
|
|
22671
|
+
expires_at: PropTypes.string,
|
|
22672
|
+
base: T['io.flow.common.v0.models.money'],
|
|
22673
|
+
processor: T['io.flow.payment.v0.unions.expandable_payment_processor'],
|
|
22674
|
+
stored_method_usage_step: T['io.flow.payment.v0.enums.stored_method_usage_step'],
|
|
22675
|
+
authorized_at: PropTypes.string,
|
|
22676
|
+
authorization_request_id: PropTypes.string,
|
|
22520
22677
|
});
|
|
22521
22678
|
|
|
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'],
|
|
22679
|
+
T['io.flow.payment.v0.unions.authorization'] = PropTypes.oneOfType([
|
|
22680
|
+
T['io.flow.payment.v0.models.card_authorization'],
|
|
22681
|
+
T['io.flow.payment.v0.models.online_authorization'],
|
|
22527
22682
|
]);
|
|
22528
22683
|
|
|
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'],
|
|
22684
|
+
T['io.flow.shopify.markets.internal.v0.models.markets_order'] = PropTypes.exact({
|
|
22685
|
+
shopify_order: T['io.flow.shopify.markets.v0.models.shopify_order'].isRequired,
|
|
22686
|
+
flow_authorization: T['io.flow.payment.v0.unions.authorization'],
|
|
22544
22687
|
});
|
|
22545
22688
|
|
|
22546
|
-
T['io.flow.
|
|
22547
|
-
|
|
22689
|
+
T['io.flow.payment.v0.models.authorization_version'] = PropTypes.exact({
|
|
22690
|
+
id: PropTypes.string.isRequired,
|
|
22691
|
+
timestamp: PropTypes.string.isRequired,
|
|
22692
|
+
type: T['io.flow.common.v0.enums.change_type'].isRequired,
|
|
22693
|
+
authorization: T['io.flow.payment.v0.unions.authorization'].isRequired,
|
|
22548
22694
|
});
|
|
22549
22695
|
|
|
22550
|
-
T['io.flow.
|
|
22551
|
-
|
|
22552
|
-
|
|
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'],
|
|
22696
|
+
T['io.flow.internal.v0.models.markets_order'] = PropTypes.exact({
|
|
22697
|
+
shopify_order: T['io.flow.shopify.markets.v0.models.shopify_order'].isRequired,
|
|
22698
|
+
flow_authorization: T['io.flow.payment.v0.unions.authorization'],
|
|
22564
22699
|
});
|
|
22565
22700
|
|
|
22566
|
-
T['io.flow.
|
|
22567
|
-
|
|
22568
|
-
|
|
22569
|
-
|
|
22570
|
-
|
|
22571
|
-
|
|
22572
|
-
|
|
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'],
|
|
22701
|
+
T['io.flow.internal.v0.models.checkout_payment'] = PropTypes.exact({
|
|
22702
|
+
authorizations: PropTypes.arrayOf(T['io.flow.payment.v0.unions.authorization']).isRequired,
|
|
22703
|
+
sources: PropTypes.arrayOf(T['io.flow.payment.v0.unions.payment_source']).isRequired,
|
|
22704
|
+
public_key: T['io.flow.payment.v0.models.public_key'].isRequired,
|
|
22705
|
+
method_types: PropTypes.arrayOf(T['io.flow.reference.v0.enums.payment_method_type']).isRequired,
|
|
22706
|
+
method_rules: PropTypes.arrayOf(T['io.flow.experience.v0.models.payment_method_rule']).isRequired,
|
|
22707
|
+
authorization_parameters: PropTypes.arrayOf(T['io.flow.internal.v0.models.authorization_parameters']).isRequired,
|
|
22579
22708
|
});
|
|
22580
22709
|
|
|
22581
|
-
T['io.flow.
|
|
22582
|
-
|
|
22583
|
-
|
|
22710
|
+
T['io.flow.payment.v0.models.payment_fee'] = PropTypes.exact({
|
|
22711
|
+
type: T['io.flow.payment.v0.enums.payment_fee_type'].isRequired,
|
|
22712
|
+
money: T['io.flow.common.v0.models.money'].isRequired,
|
|
22713
|
+
base: T['io.flow.common.v0.models.money'],
|
|
22584
22714
|
});
|
|
22585
22715
|
|
|
22586
|
-
T['io.flow.
|
|
22587
|
-
|
|
22588
|
-
|
|
22589
|
-
|
|
22716
|
+
T['io.flow.payment.v0.models.capture'] = PropTypes.exact({
|
|
22717
|
+
id: PropTypes.string.isRequired,
|
|
22718
|
+
key: PropTypes.string.isRequired,
|
|
22719
|
+
authorization: T['io.flow.payment.v0.models.authorization_reference'].isRequired,
|
|
22720
|
+
amount: PropTypes.number.isRequired,
|
|
22721
|
+
currency: PropTypes.string.isRequired,
|
|
22722
|
+
requested: T['io.flow.common.v0.models.money'],
|
|
22723
|
+
created_at: PropTypes.string.isRequired,
|
|
22724
|
+
attributes: PropTypes.objectOf(PropTypes.string),
|
|
22725
|
+
status: T['io.flow.payment.v0.enums.capture_status'],
|
|
22726
|
+
base: T['io.flow.common.v0.models.money'],
|
|
22727
|
+
fees: PropTypes.arrayOf(T['io.flow.payment.v0.models.payment_fee']),
|
|
22590
22728
|
});
|
|
22591
22729
|
|
|
22592
|
-
T['io.flow.
|
|
22593
|
-
|
|
22594
|
-
|
|
22595
|
-
reference_number: PropTypes.string.isRequired,
|
|
22730
|
+
T['io.flow.payment.v0.models.refund_capture_summary'] = PropTypes.exact({
|
|
22731
|
+
capture: T['io.flow.payment.v0.models.capture'].isRequired,
|
|
22732
|
+
amount: PropTypes.number.isRequired,
|
|
22596
22733
|
});
|
|
22597
22734
|
|
|
22598
|
-
T['io.flow.
|
|
22599
|
-
|
|
22600
|
-
|
|
22601
|
-
|
|
22602
|
-
|
|
22603
|
-
|
|
22735
|
+
T['io.flow.payment.v0.models.refund'] = PropTypes.exact({
|
|
22736
|
+
id: PropTypes.string.isRequired,
|
|
22737
|
+
key: PropTypes.string.isRequired,
|
|
22738
|
+
authorization: T['io.flow.payment.v0.models.authorization_reference'].isRequired,
|
|
22739
|
+
amount: PropTypes.number.isRequired,
|
|
22740
|
+
currency: PropTypes.string.isRequired,
|
|
22741
|
+
requested: T['io.flow.common.v0.models.money'],
|
|
22742
|
+
captures: PropTypes.arrayOf(T['io.flow.payment.v0.models.refund_capture_summary']).isRequired,
|
|
22743
|
+
created_at: PropTypes.string.isRequired,
|
|
22744
|
+
attributes: PropTypes.objectOf(PropTypes.string),
|
|
22745
|
+
status: T['io.flow.payment.v0.enums.refund_status'],
|
|
22746
|
+
base: T['io.flow.common.v0.models.money'],
|
|
22747
|
+
failure_category: T['io.flow.payment.v0.enums.refund_failure_category'],
|
|
22748
|
+
failure_psp_reason: PropTypes.string,
|
|
22604
22749
|
});
|
|
22605
22750
|
|
|
22606
|
-
T['io.flow.
|
|
22607
|
-
|
|
22608
|
-
|
|
22609
|
-
|
|
22610
|
-
|
|
22611
|
-
carrier_tracking_number: PropTypes.string.isRequired,
|
|
22612
|
-
key: PropTypes.string,
|
|
22613
|
-
shipment_recipient: T['io.flow.label.v0.enums.shipment_recipient'],
|
|
22751
|
+
T['io.flow.payment.v0.models.refund_version'] = PropTypes.exact({
|
|
22752
|
+
id: PropTypes.string.isRequired,
|
|
22753
|
+
timestamp: PropTypes.string.isRequired,
|
|
22754
|
+
type: T['io.flow.common.v0.enums.change_type'].isRequired,
|
|
22755
|
+
refund: T['io.flow.payment.v0.models.refund'].isRequired,
|
|
22614
22756
|
});
|
|
22615
22757
|
|
|
22616
|
-
T['io.flow.
|
|
22617
|
-
|
|
22618
|
-
|
|
22619
|
-
|
|
22620
|
-
|
|
22621
|
-
|
|
22622
|
-
|
|
22758
|
+
T['io.flow.payment.v0.models.refund_capture'] = PropTypes.exact({
|
|
22759
|
+
id: PropTypes.string.isRequired,
|
|
22760
|
+
refund: T['io.flow.payment.v0.models.refund'].isRequired,
|
|
22761
|
+
capture: T['io.flow.payment.v0.models.capture'].isRequired,
|
|
22762
|
+
amount: PropTypes.number.isRequired,
|
|
22763
|
+
currency: PropTypes.string.isRequired,
|
|
22764
|
+
base: T['io.flow.common.v0.models.money'].isRequired,
|
|
22765
|
+
status: T['io.flow.payment.v0.enums.refund_status'],
|
|
22623
22766
|
});
|
|
22624
22767
|
|
|
22625
|
-
T['io.flow.
|
|
22626
|
-
|
|
22627
|
-
|
|
22628
|
-
|
|
22629
|
-
|
|
22768
|
+
T['io.flow.payment.v0.models.capture_version'] = PropTypes.exact({
|
|
22769
|
+
id: PropTypes.string.isRequired,
|
|
22770
|
+
timestamp: PropTypes.string.isRequired,
|
|
22771
|
+
type: T['io.flow.common.v0.enums.change_type'].isRequired,
|
|
22772
|
+
capture: T['io.flow.payment.v0.models.capture'].isRequired,
|
|
22630
22773
|
});
|
|
22631
22774
|
|
|
22632
|
-
T['io.flow.
|
|
22633
|
-
discriminator: PropTypes.oneOf(['
|
|
22634
|
-
|
|
22635
|
-
|
|
22636
|
-
|
|
22637
|
-
|
|
22638
|
-
|
|
22775
|
+
T['io.flow.merchant.onboarding.v0.models.shopify_merchant_application'] = PropTypes.exact({
|
|
22776
|
+
discriminator: PropTypes.oneOf(['shopify_merchant_application']).isRequired,
|
|
22777
|
+
id: PropTypes.string.isRequired,
|
|
22778
|
+
organization_id: PropTypes.string.isRequired,
|
|
22779
|
+
organization_reference: T['io.flow.merchant.onboarding.v0.models.onboarding_organization_reference'].isRequired,
|
|
22780
|
+
status: T['io.flow.merchant.onboarding.v0.enums.onboarding_application_status'].isRequired,
|
|
22781
|
+
company: T['io.flow.merchant.onboarding.v0.models.merchant_info'],
|
|
22782
|
+
indirect_tax: T['io.flow.merchant.onboarding.v0.models.indirect_tax'],
|
|
22783
|
+
beneficiary: PropTypes.string,
|
|
22784
|
+
ultimate_beneficiary_owner: T['io.flow.merchant.onboarding.v0.models.ultimate_beneficiary_owner'],
|
|
22785
|
+
business_url: PropTypes.string,
|
|
22786
|
+
business_description: PropTypes.string,
|
|
22787
|
+
business_address: T['io.flow.common.v0.models.address'],
|
|
22788
|
+
refund_percentage: PropTypes.number,
|
|
22789
|
+
chargeback_percentage: PropTypes.number,
|
|
22790
|
+
bank_account_number: PropTypes.string,
|
|
22791
|
+
aba_routing_transit_number: PropTypes.string,
|
|
22792
|
+
other_trade_sector: PropTypes.string,
|
|
22793
|
+
third_party_logistics_partners: PropTypes.arrayOf(T['io.flow.merchant.onboarding.v0.models.third_party_logistics_partner']),
|
|
22794
|
+
center_contact: T['io.flow.merchant.onboarding.v0.models.operations_contact'],
|
|
22795
|
+
average_order_weight: PropTypes.number,
|
|
22796
|
+
package_dimensions: PropTypes.arrayOf(T['io.flow.common.v0.models.dimension']),
|
|
22797
|
+
monthly_average: T['io.flow.merchant.onboarding.v0.models.monthly_average'],
|
|
22798
|
+
default_country_of_origin: PropTypes.string,
|
|
22799
|
+
ratecard: T['io.flow.ratecard.v0.models.ratecard_reference'],
|
|
22800
|
+
rate_card: PropTypes.string.isRequired,
|
|
22801
|
+
created_at: PropTypes.string.isRequired,
|
|
22802
|
+
activated_at: PropTypes.string,
|
|
22803
|
+
status_updated_at: PropTypes.string,
|
|
22804
|
+
shop: T['io.flow.merchant.onboarding.v0.models.shop'],
|
|
22805
|
+
last_year_xborder_gmv: T['io.flow.common.v0.models.money'],
|
|
22806
|
+
last_month_xborder_gmv: T['io.flow.common.v0.models.money'],
|
|
22807
|
+
average_order_value: T['io.flow.common.v0.models.money'],
|
|
22808
|
+
glbe_merchant_guid: PropTypes.string,
|
|
22809
|
+
mcc_codes: PropTypes.arrayOf(PropTypes.number),
|
|
22639
22810
|
});
|
|
22640
22811
|
|
|
22641
|
-
T['io.flow.
|
|
22642
|
-
discriminator: PropTypes.oneOf(['detailed_label_form']).isRequired,
|
|
22643
|
-
organization: PropTypes.string.isRequired,
|
|
22644
|
-
destination: T['io.flow.fulfillment.v0.models.shipping_address'].isRequired,
|
|
22645
|
-
order_number: PropTypes.string.isRequired,
|
|
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),
|
|
22650
|
-
});
|
|
22812
|
+
T['io.flow.merchant.onboarding.v0.unions.merchant_application'] = PropTypes.oneOfType([T['io.flow.merchant.onboarding.v0.models.shopify_merchant_application']]);
|
|
22651
22813
|
|
|
22652
|
-
T['io.flow.
|
|
22653
|
-
|
|
22654
|
-
T['io.flow.
|
|
22655
|
-
|
|
22656
|
-
]);
|
|
22814
|
+
T['io.flow.internal.v0.models.shopify_promotion_attribute_value'] = PropTypes.exact({
|
|
22815
|
+
name: PropTypes.string.isRequired,
|
|
22816
|
+
discount: T['io.flow.common.v0.models.money'].isRequired,
|
|
22817
|
+
});
|
|
22657
22818
|
|
|
22658
|
-
T['io.flow.
|
|
22659
|
-
|
|
22660
|
-
|
|
22661
|
-
|
|
22662
|
-
|
|
22663
|
-
|
|
22664
|
-
|
|
22665
|
-
|
|
22666
|
-
|
|
22667
|
-
|
|
22668
|
-
|
|
22669
|
-
order: T['io.flow.label.v0.models.label_order_summary'],
|
|
22670
|
-
order_identifier: PropTypes.string,
|
|
22671
|
-
fulfillment_key: PropTypes.string,
|
|
22672
|
-
shipment_recipient: T['io.flow.label.v0.enums.shipment_recipient'],
|
|
22673
|
-
created_at: PropTypes.string,
|
|
22674
|
-
updated_at: PropTypes.string,
|
|
22819
|
+
T['io.flow.internal.v0.models.shipment_cost_summary'] = PropTypes.exact({
|
|
22820
|
+
lane_id: PropTypes.string,
|
|
22821
|
+
ratecard_id: PropTypes.string,
|
|
22822
|
+
ratecard_owner: T['io.flow.fulfillment.v0.enums.ratecard_owner'].isRequired,
|
|
22823
|
+
glbe_shipping_method_id: PropTypes.string,
|
|
22824
|
+
glbe_proposition_name: PropTypes.string,
|
|
22825
|
+
weight_break: PropTypes.number,
|
|
22826
|
+
channel_revenue_share_percentage: PropTypes.number,
|
|
22827
|
+
rate_level_key: PropTypes.string,
|
|
22828
|
+
cost_estimate_source: T['io.flow.label.v0.enums.cost_estimate_source'].isRequired,
|
|
22829
|
+
cost: T['io.flow.common.v0.models.money'].isRequired,
|
|
22675
22830
|
});
|
|
22676
22831
|
|
|
22677
|
-
T['io.flow.
|
|
22832
|
+
T['io.flow.internal.v0.models.restriction_organization'] = PropTypes.exact({
|
|
22678
22833
|
id: PropTypes.string.isRequired,
|
|
22679
|
-
|
|
22680
|
-
|
|
22681
|
-
|
|
22834
|
+
name: PropTypes.string.isRequired,
|
|
22835
|
+
environment: T['io.flow.common.v0.enums.environment'].isRequired,
|
|
22836
|
+
url: PropTypes.string,
|
|
22837
|
+
approval_status: T['io.flow.internal.v0.enums.organization_restriction_approval_status'],
|
|
22838
|
+
screening_status: T['io.flow.internal.v0.enums.organization_restriction_screening_status'],
|
|
22839
|
+
review_type: T['io.flow.internal.v0.enums.organization_restriction_review_type'],
|
|
22840
|
+
risk_level: T['io.flow.internal.v0.enums.organization_restriction_risk_level'],
|
|
22841
|
+
hs_code: PropTypes.string,
|
|
22842
|
+
merchant_category_code: PropTypes.string,
|
|
22843
|
+
notes: PropTypes.arrayOf(T['io.flow.internal.v0.models.organization_restriction_status_note']).isRequired,
|
|
22844
|
+
last_year_xborder_gmv: T['io.flow.common.v0.models.money'],
|
|
22845
|
+
last_year_domestic_gmv: T['io.flow.common.v0.models.money'],
|
|
22682
22846
|
});
|
|
22683
22847
|
|
|
22684
|
-
T['io.flow.
|
|
22685
|
-
|
|
22686
|
-
|
|
22687
|
-
|
|
22688
|
-
|
|
22689
|
-
|
|
22690
|
-
|
|
22691
|
-
|
|
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'],
|
|
22848
|
+
T['io.flow.internal.v0.models.restriction_organization_decision_summary'] = PropTypes.exact({
|
|
22849
|
+
organization: T['io.flow.internal.v0.models.restriction_organization'].isRequired,
|
|
22850
|
+
earliest_pending_date: PropTypes.string.isRequired,
|
|
22851
|
+
priority_score: PropTypes.number.isRequired,
|
|
22852
|
+
date: PropTypes.string.isRequired,
|
|
22853
|
+
statuses: PropTypes.arrayOf(T['io.flow.internal.v0.models.restriction_status_metadata']).isRequired,
|
|
22854
|
+
counts: T['io.flow.internal.v0.models.restriction_summary_counts'].isRequired,
|
|
22855
|
+
count: PropTypes.number.isRequired,
|
|
22695
22856
|
});
|
|
22696
22857
|
|
|
22697
|
-
T['io.flow.
|
|
22698
|
-
T['io.flow.
|
|
22699
|
-
T['io.flow.
|
|
22700
|
-
T['io.flow.
|
|
22701
|
-
]);
|
|
22702
|
-
|
|
22703
|
-
T['io.flow.label.v0.models.detailed_shipping_label_form'] = PropTypes.exact({
|
|
22704
|
-
discriminator: PropTypes.oneOf(['detailed_shipping_label_form']).isRequired,
|
|
22705
|
-
destination: T['io.flow.fulfillment.v0.models.shipping_address'].isRequired,
|
|
22706
|
-
origin: T['io.flow.fulfillment.v0.models.shipping_address'].isRequired,
|
|
22707
|
-
'package': T['io.flow.label.v0.models.shipping_label_package'].isRequired,
|
|
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,
|
|
22858
|
+
T['io.flow.internal.v0.models.liability_money'] = PropTypes.exact({
|
|
22859
|
+
local: T['io.flow.common.v0.models.money'].isRequired,
|
|
22860
|
+
base: T['io.flow.common.v0.models.money'].isRequired,
|
|
22861
|
+
remittance: T['io.flow.common.v0.models.money'].isRequired,
|
|
22717
22862
|
});
|
|
22718
22863
|
|
|
22719
|
-
T['io.flow.
|
|
22720
|
-
|
|
22721
|
-
|
|
22722
|
-
|
|
22723
|
-
|
|
22724
|
-
|
|
22725
|
-
|
|
22726
|
-
|
|
22727
|
-
|
|
22728
|
-
|
|
22864
|
+
T['io.flow.internal.v0.models.liability_item'] = PropTypes.exact({
|
|
22865
|
+
item_number: PropTypes.string,
|
|
22866
|
+
line_number: PropTypes.string,
|
|
22867
|
+
description: PropTypes.string.isRequired,
|
|
22868
|
+
code: PropTypes.string,
|
|
22869
|
+
amount: T['io.flow.internal.v0.models.liability_money'].isRequired,
|
|
22870
|
+
rate: PropTypes.number.isRequired,
|
|
22871
|
+
basis: T['io.flow.internal.v0.models.liability_money'].isRequired,
|
|
22872
|
+
included_components: PropTypes.arrayOf(T['io.flow.price.v0.enums.levy_component']).isRequired,
|
|
22873
|
+
no_liability_reason_code: T['io.flow.internal.v0.enums.no_liability_reason_code'],
|
|
22729
22874
|
});
|
|
22730
22875
|
|
|
22731
|
-
T['io.flow.
|
|
22732
|
-
T['io.flow.label.v0.models.detailed_shipping_label_form'],
|
|
22733
|
-
T['io.flow.label.v0.models.summary_shipping_label_form'],
|
|
22734
|
-
T['io.flow.label.v0.models.bridge_shipping_label_form'],
|
|
22735
|
-
]);
|
|
22736
|
-
|
|
22737
|
-
T['io.flow.internal.v0.models.label_summary'] = PropTypes.exact({
|
|
22876
|
+
T['io.flow.internal.v0.models.fx_revenue_recognition_source'] = PropTypes.exact({
|
|
22738
22877
|
id: PropTypes.string.isRequired,
|
|
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'],
|
|
22878
|
+
local: T['io.flow.common.v0.models.money'].isRequired,
|
|
22879
|
+
transaction_created_at: PropTypes.string.isRequired,
|
|
22749
22880
|
});
|
|
22750
22881
|
|
|
22751
|
-
T['io.flow.internal.v0.models.
|
|
22752
|
-
|
|
22753
|
-
|
|
22754
|
-
number: PropTypes.string.isRequired,
|
|
22755
|
-
status: T['io.flow.tracking.v0.enums.tracking_status'].isRequired,
|
|
22756
|
-
label: T['io.flow.internal.v0.models.label_summary'].isRequired,
|
|
22882
|
+
T['io.flow.internal.v0.models.fx_revenue_recognition_account'] = PropTypes.exact({
|
|
22883
|
+
value: T['io.flow.common.v0.models.money'].isRequired,
|
|
22884
|
+
spot_rate: T['io.flow.internal.v0.models.fx_revenue_recognition_account_rate'].isRequired,
|
|
22757
22885
|
});
|
|
22758
22886
|
|
|
22759
|
-
T['io.flow.internal.v0.models.
|
|
22760
|
-
|
|
22761
|
-
|
|
22762
|
-
key: PropTypes.string.isRequired,
|
|
22763
|
-
tracking_summary: T['io.flow.internal.v0.models.search_tracking_summary'],
|
|
22887
|
+
T['io.flow.internal.v0.models.fx_fee'] = PropTypes.exact({
|
|
22888
|
+
base: T['io.flow.common.v0.models.money'].isRequired,
|
|
22889
|
+
local: T['io.flow.common.v0.models.money'].isRequired,
|
|
22764
22890
|
});
|
|
22765
22891
|
|
|
22766
|
-
T['io.flow.
|
|
22892
|
+
T['io.flow.internal.v0.models.fx_revenue_recognition'] = PropTypes.exact({
|
|
22767
22893
|
id: PropTypes.string.isRequired,
|
|
22768
|
-
|
|
22769
|
-
|
|
22770
|
-
|
|
22771
|
-
|
|
22772
|
-
currency: PropTypes.string.isRequired,
|
|
22773
|
-
requested: T['io.flow.common.v0.models.money'].isRequired,
|
|
22894
|
+
organization: T['io.flow.internal.v0.models.fx_revenue_recognition_organization'].isRequired,
|
|
22895
|
+
account: T['io.flow.internal.v0.models.fx_revenue_recognition_account'].isRequired,
|
|
22896
|
+
fx: T['io.flow.internal.v0.models.fx_fee'].isRequired,
|
|
22897
|
+
spot_rate: T['io.flow.internal.v0.models.fx_revenue_recognition_rate'].isRequired,
|
|
22774
22898
|
created_at: PropTypes.string.isRequired,
|
|
22775
|
-
|
|
22776
|
-
|
|
22899
|
+
order: T['io.flow.internal.v0.models.fx_revenue_recognition_order'].isRequired,
|
|
22900
|
+
merchant_of_record: T['io.flow.common.v0.enums.merchant_of_record'].isRequired,
|
|
22901
|
+
source: T['io.flow.internal.v0.models.fx_revenue_recognition_source'].isRequired,
|
|
22902
|
+
reporting_date: PropTypes.string,
|
|
22777
22903
|
});
|
|
22778
22904
|
|
|
22779
|
-
T['io.flow.
|
|
22780
|
-
|
|
22781
|
-
|
|
22782
|
-
|
|
22783
|
-
reversal: T['io.flow.payment.v0.models.reversal'].isRequired,
|
|
22905
|
+
T['io.flow.internal.v0.models.fuel_surcharge_service_fee_amount_by_weight_put_form'] = PropTypes.exact({
|
|
22906
|
+
discriminator: PropTypes.oneOf(['fuel_surcharge_service_fee_amount_by_weight_put_form']).isRequired,
|
|
22907
|
+
amount: T['io.flow.common.v0.models.money'].isRequired,
|
|
22908
|
+
weight: T['io.flow.ratecard.v0.models.fee_weight'].isRequired,
|
|
22784
22909
|
});
|
|
22785
22910
|
|
|
22786
|
-
T['io.flow.
|
|
22787
|
-
|
|
22788
|
-
|
|
22789
|
-
|
|
22790
|
-
method: T['io.flow.reference.v0.models.payment_method'],
|
|
22791
|
-
merchant_of_record: T['io.flow.common.v0.enums.merchant_of_record'],
|
|
22792
|
-
details: T['io.flow.payment.v0.unions.online_authorization_details'],
|
|
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,
|
|
22805
|
-
created_at: PropTypes.string.isRequired,
|
|
22806
|
-
expires_at: PropTypes.string,
|
|
22807
|
-
base: T['io.flow.common.v0.models.money'],
|
|
22808
|
-
processor: T['io.flow.payment.v0.unions.expandable_payment_processor'],
|
|
22809
|
-
confirmation_details: T['io.flow.payment.v0.unions.confirmation_details'],
|
|
22810
|
-
authorized_at: PropTypes.string,
|
|
22811
|
-
authorization_request_id: PropTypes.string,
|
|
22812
|
-
});
|
|
22911
|
+
T['io.flow.internal.v0.unions.fuel_surcharge_service_fee_put_form'] = PropTypes.oneOfType([
|
|
22912
|
+
T['io.flow.internal.v0.models.fuel_surcharge_service_fee_percent_put_form'],
|
|
22913
|
+
T['io.flow.internal.v0.models.fuel_surcharge_service_fee_amount_by_weight_put_form'],
|
|
22914
|
+
]);
|
|
22813
22915
|
|
|
22814
|
-
T['io.flow.
|
|
22815
|
-
|
|
22816
|
-
|
|
22916
|
+
T['io.flow.common.v0.models.line_item_form'] = PropTypes.exact({
|
|
22917
|
+
number: PropTypes.string.isRequired,
|
|
22918
|
+
quantity: PropTypes.number.isRequired,
|
|
22919
|
+
shipment_estimate: T['io.flow.common.v0.models.datetime_range'],
|
|
22920
|
+
price: T['io.flow.common.v0.models.money'],
|
|
22921
|
+
attributes: PropTypes.objectOf(PropTypes.string),
|
|
22922
|
+
center: PropTypes.string,
|
|
22923
|
+
discount: T['io.flow.common.v0.models.money'],
|
|
22924
|
+
discounts: T['io.flow.common.v0.models.discounts_form'],
|
|
22817
22925
|
});
|
|
22818
22926
|
|
|
22819
|
-
T['io.flow.
|
|
22927
|
+
T['io.flow.fulfillment.v0.models.delivery_summary'] = PropTypes.exact({
|
|
22820
22928
|
id: PropTypes.string.isRequired,
|
|
22821
|
-
|
|
22822
|
-
money: T['io.flow.common.v0.models.money'].isRequired,
|
|
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,
|
|
22929
|
+
items: PropTypes.arrayOf(T['io.flow.common.v0.models.line_item_form']).isRequired,
|
|
22828
22930
|
});
|
|
22829
22931
|
|
|
22830
|
-
T['io.flow.
|
|
22831
|
-
discriminator: PropTypes.oneOf(['card_authorization']).isRequired,
|
|
22932
|
+
T['io.flow.fulfillment.v0.models.delivery_version'] = PropTypes.exact({
|
|
22832
22933
|
id: PropTypes.string.isRequired,
|
|
22833
|
-
|
|
22834
|
-
|
|
22835
|
-
|
|
22836
|
-
|
|
22837
|
-
|
|
22934
|
+
timestamp: PropTypes.string.isRequired,
|
|
22935
|
+
type: T['io.flow.common.v0.enums.change_type'].isRequired,
|
|
22936
|
+
delivery: T['io.flow.fulfillment.v0.models.delivery_summary'].isRequired,
|
|
22937
|
+
});
|
|
22938
|
+
|
|
22939
|
+
T['io.flow.ratecard.v0.models.ratecard_estimate_v4'] = PropTypes.exact({
|
|
22940
|
+
discriminator: PropTypes.oneOf(['ratecard_estimate_v4']).isRequired,
|
|
22941
|
+
hops: PropTypes.arrayOf(T['io.flow.ratecard.v0.models.hop_v2']).isRequired,
|
|
22942
|
+
delivered_duty: T['io.flow.common.v0.enums.delivered_duty'].isRequired,
|
|
22943
|
+
distance_unit_of_measurement: T['io.flow.common.v0.enums.unit_of_measurement'],
|
|
22944
|
+
weight_unit_of_measurement: T['io.flow.common.v0.enums.unit_of_measurement'],
|
|
22945
|
+
dimensional_weight: T['io.flow.common.v0.models.measurement'],
|
|
22946
|
+
gravitational_weight: T['io.flow.common.v0.models.measurement'],
|
|
22947
|
+
ratecard_id: PropTypes.string,
|
|
22948
|
+
glbe_shipping_method_id: PropTypes.string,
|
|
22949
|
+
glbe_proposition_name: PropTypes.string,
|
|
22950
|
+
channel_revenue_share_percentage: PropTypes.number,
|
|
22951
|
+
rate_level_key: PropTypes.string,
|
|
22952
|
+
line_items: PropTypes.arrayOf(T['io.flow.common.v0.models.line_item_form']),
|
|
22953
|
+
});
|
|
22954
|
+
|
|
22955
|
+
T['io.flow.ratecard.v0.models.ratecard_estimate_v3'] = PropTypes.exact({
|
|
22956
|
+
discriminator: PropTypes.oneOf(['ratecard_estimate_v3']).isRequired,
|
|
22957
|
+
hops: PropTypes.arrayOf(T['io.flow.ratecard.v0.models.hop']).isRequired,
|
|
22958
|
+
delivered_duty: T['io.flow.common.v0.enums.delivered_duty'].isRequired,
|
|
22959
|
+
dimensional_weight: T['io.flow.common.v0.models.measurement'],
|
|
22960
|
+
gravitational_weight: T['io.flow.common.v0.models.measurement'],
|
|
22961
|
+
line_items: PropTypes.arrayOf(T['io.flow.common.v0.models.line_item_form']),
|
|
22962
|
+
ratecard: T['io.flow.ratecard.v0.models.ratecard_summary'].isRequired,
|
|
22963
|
+
});
|
|
22964
|
+
|
|
22965
|
+
T['io.flow.ratecard.v0.models.ratecard_estimate_v2'] = PropTypes.exact({
|
|
22966
|
+
discriminator: PropTypes.oneOf(['ratecard_estimate_v2']).isRequired,
|
|
22967
|
+
hops: PropTypes.arrayOf(T['io.flow.ratecard.v0.models.hop']).isRequired,
|
|
22968
|
+
delivered_duty: T['io.flow.common.v0.enums.delivered_duty'].isRequired,
|
|
22969
|
+
dimensional_weight: T['io.flow.common.v0.models.measurement'],
|
|
22970
|
+
gravitational_weight: T['io.flow.common.v0.models.measurement'],
|
|
22971
|
+
line_items: PropTypes.arrayOf(T['io.flow.common.v0.models.line_item_form']),
|
|
22972
|
+
ratecard_owner: T['io.flow.fulfillment.v0.enums.ratecard_owner'],
|
|
22973
|
+
});
|
|
22974
|
+
|
|
22975
|
+
T['io.flow.ratecard.v0.models.ratecard_estimate_v1'] = PropTypes.exact({
|
|
22976
|
+
discriminator: PropTypes.oneOf(['ratecard_estimate_v1']).isRequired,
|
|
22977
|
+
service: T['io.flow.ratecard.v0.models.ratecard_service_summary'].isRequired,
|
|
22978
|
+
shipment_window: T['io.flow.ratecard.v0.models.shipment_window'].isRequired,
|
|
22838
22979
|
currency: PropTypes.string.isRequired,
|
|
22839
|
-
|
|
22840
|
-
|
|
22841
|
-
|
|
22842
|
-
|
|
22843
|
-
|
|
22844
|
-
|
|
22845
|
-
|
|
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,
|
|
22980
|
+
amount: PropTypes.number.isRequired,
|
|
22981
|
+
fees: PropTypes.arrayOf(T['io.flow.ratecard.v0.unions.ratecard_fee']).isRequired,
|
|
22982
|
+
total: PropTypes.number.isRequired,
|
|
22983
|
+
delivered_duty: T['io.flow.common.v0.enums.delivered_duty'].isRequired,
|
|
22984
|
+
dimensional_weight: T['io.flow.common.v0.models.measurement'],
|
|
22985
|
+
gravitational_weight: T['io.flow.common.v0.models.measurement'],
|
|
22986
|
+
line_items: PropTypes.arrayOf(T['io.flow.common.v0.models.line_item_form']),
|
|
22855
22987
|
});
|
|
22856
22988
|
|
|
22857
|
-
T['io.flow.
|
|
22858
|
-
T['io.flow.
|
|
22859
|
-
T['io.flow.
|
|
22989
|
+
T['io.flow.ratecard.v0.unions.ratecard_estimate'] = PropTypes.oneOfType([
|
|
22990
|
+
T['io.flow.ratecard.v0.models.ratecard_estimate_v1'],
|
|
22991
|
+
T['io.flow.ratecard.v0.models.ratecard_estimate_v2'],
|
|
22992
|
+
T['io.flow.ratecard.v0.models.ratecard_estimate_v3'],
|
|
22993
|
+
T['io.flow.ratecard.v0.models.ratecard_estimate_v4'],
|
|
22860
22994
|
]);
|
|
22861
22995
|
|
|
22862
|
-
T['io.flow.
|
|
22863
|
-
|
|
22864
|
-
|
|
22996
|
+
T['io.flow.ratecard.v0.models.ratecard_estimate_form'] = PropTypes.exact({
|
|
22997
|
+
origin_address: T['io.flow.common.v0.models.address'].isRequired,
|
|
22998
|
+
destination_address: T['io.flow.common.v0.models.address'].isRequired,
|
|
22999
|
+
weight_unit: T['io.flow.common.v0.enums.unit_of_measurement'],
|
|
23000
|
+
distance_unit: T['io.flow.common.v0.enums.unit_of_measurement'],
|
|
23001
|
+
service: PropTypes.string,
|
|
23002
|
+
weight: PropTypes.number,
|
|
23003
|
+
length: PropTypes.number,
|
|
23004
|
+
width: PropTypes.number,
|
|
23005
|
+
depth: PropTypes.number,
|
|
23006
|
+
delivered_duty: T['io.flow.common.v0.enums.delivered_duty'],
|
|
23007
|
+
line_items: PropTypes.arrayOf(T['io.flow.common.v0.models.line_item_form']),
|
|
23008
|
+
center_id: PropTypes.string,
|
|
23009
|
+
taxes_owed: T['io.flow.common.v0.models.money'],
|
|
23010
|
+
duties_owed: T['io.flow.common.v0.models.money'],
|
|
22865
23011
|
});
|
|
22866
23012
|
|
|
22867
|
-
T['io.flow.
|
|
22868
|
-
|
|
22869
|
-
timestamp: PropTypes.string.isRequired,
|
|
22870
|
-
type: T['io.flow.common.v0.enums.change_type'].isRequired,
|
|
22871
|
-
authorization: T['io.flow.payment.v0.unions.authorization'].isRequired,
|
|
23013
|
+
T['io.flow.experience.v0.models.order_replacement_form'] = PropTypes.exact({
|
|
23014
|
+
items: PropTypes.arrayOf(T['io.flow.common.v0.models.line_item_form']),
|
|
22872
23015
|
});
|
|
22873
23016
|
|
|
22874
|
-
T['io.flow.
|
|
22875
|
-
|
|
22876
|
-
|
|
23017
|
+
T['io.flow.experience.v0.models.order_put_form'] = PropTypes.exact({
|
|
23018
|
+
order_type: T['io.flow.experience.v0.enums.order_type'],
|
|
23019
|
+
items: PropTypes.arrayOf(T['io.flow.common.v0.models.line_item_form']).isRequired,
|
|
23020
|
+
customer: T['io.flow.common.v0.models.order_customer_form'],
|
|
23021
|
+
delivered_duty: T['io.flow.common.v0.enums.delivered_duty'],
|
|
23022
|
+
selections: PropTypes.arrayOf(PropTypes.string),
|
|
23023
|
+
destination: T['io.flow.experience.v0.models.order_address'],
|
|
23024
|
+
discount: T['io.flow.common.v0.models.money'],
|
|
23025
|
+
discounts: T['io.flow.common.v0.models.discounts_form'],
|
|
23026
|
+
attributes: PropTypes.objectOf(PropTypes.string),
|
|
23027
|
+
authorization_keys: PropTypes.arrayOf(PropTypes.string),
|
|
23028
|
+
options: T['io.flow.experience.v0.models.order_options'],
|
|
23029
|
+
device_details: T['io.flow.payment.v0.unions.device_details'],
|
|
23030
|
+
payment_source: T['io.flow.experience.v0.enums.order_payment_source_type'],
|
|
22877
23031
|
});
|
|
22878
23032
|
|
|
22879
|
-
T['io.flow.
|
|
22880
|
-
|
|
22881
|
-
|
|
22882
|
-
|
|
22883
|
-
|
|
22884
|
-
|
|
22885
|
-
|
|
23033
|
+
T['io.flow.experience.v0.models.order_form'] = PropTypes.exact({
|
|
23034
|
+
customer: T['io.flow.common.v0.models.order_customer_form'],
|
|
23035
|
+
items: PropTypes.arrayOf(T['io.flow.common.v0.models.line_item_form']).isRequired,
|
|
23036
|
+
delivered_duty: T['io.flow.common.v0.enums.delivered_duty'],
|
|
23037
|
+
number: PropTypes.string,
|
|
23038
|
+
destination: T['io.flow.experience.v0.models.order_address'],
|
|
23039
|
+
discount: T['io.flow.common.v0.models.money'],
|
|
23040
|
+
discounts: T['io.flow.common.v0.models.discounts_form'],
|
|
23041
|
+
attributes: PropTypes.objectOf(PropTypes.string),
|
|
23042
|
+
authorization_keys: PropTypes.arrayOf(PropTypes.string),
|
|
23043
|
+
options: T['io.flow.experience.v0.models.order_options'],
|
|
23044
|
+
device_details: T['io.flow.payment.v0.unions.device_details'],
|
|
23045
|
+
payment_source: T['io.flow.experience.v0.enums.order_payment_source_type'],
|
|
22886
23046
|
});
|
|
22887
23047
|
|
|
22888
|
-
T['io.flow.
|
|
22889
|
-
|
|
22890
|
-
|
|
22891
|
-
base: T['io.flow.common.v0.models.money'],
|
|
23048
|
+
T['io.flow.experience.v0.models.order_with_discounts_form'] = PropTypes.exact({
|
|
23049
|
+
order: T['io.flow.experience.v0.models.order_form'].isRequired,
|
|
23050
|
+
discounts: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
22892
23051
|
});
|
|
22893
23052
|
|
|
22894
|
-
T['io.flow.
|
|
22895
|
-
|
|
22896
|
-
|
|
22897
|
-
|
|
22898
|
-
amount: PropTypes.number.isRequired,
|
|
22899
|
-
currency: PropTypes.string.isRequired,
|
|
22900
|
-
requested: T['io.flow.common.v0.models.money'],
|
|
22901
|
-
created_at: PropTypes.string.isRequired,
|
|
22902
|
-
attributes: PropTypes.objectOf(PropTypes.string),
|
|
22903
|
-
status: T['io.flow.payment.v0.enums.capture_status'],
|
|
22904
|
-
base: T['io.flow.common.v0.models.money'],
|
|
22905
|
-
fees: PropTypes.arrayOf(T['io.flow.payment.v0.models.payment_fee']),
|
|
23053
|
+
T['io.flow.experience.v0.models.order_estimate_form'] = PropTypes.exact({
|
|
23054
|
+
items: PropTypes.arrayOf(T['io.flow.common.v0.models.line_item_form']).isRequired,
|
|
23055
|
+
destination: T['io.flow.experience.v0.models.order_address'],
|
|
23056
|
+
selections: PropTypes.arrayOf(PropTypes.string),
|
|
22906
23057
|
});
|
|
22907
23058
|
|
|
22908
|
-
T['io.flow.
|
|
22909
|
-
|
|
22910
|
-
|
|
23059
|
+
T['io.flow.partner.v0.models.bridge_label_package'] = PropTypes.exact({
|
|
23060
|
+
dimensions: T['io.flow.common.v0.models.dimension'],
|
|
23061
|
+
items: PropTypes.arrayOf(T['io.flow.common.v0.models.line_item_form']).isRequired,
|
|
23062
|
+
reference_number: PropTypes.string.isRequired,
|
|
22911
23063
|
});
|
|
22912
23064
|
|
|
22913
|
-
T['io.flow.
|
|
22914
|
-
|
|
22915
|
-
|
|
22916
|
-
|
|
22917
|
-
|
|
22918
|
-
|
|
22919
|
-
requested: T['io.flow.common.v0.models.money'],
|
|
22920
|
-
captures: PropTypes.arrayOf(T['io.flow.payment.v0.models.refund_capture_summary']).isRequired,
|
|
22921
|
-
created_at: PropTypes.string.isRequired,
|
|
22922
|
-
attributes: PropTypes.objectOf(PropTypes.string),
|
|
22923
|
-
status: T['io.flow.payment.v0.enums.refund_status'],
|
|
22924
|
-
base: T['io.flow.common.v0.models.money'],
|
|
22925
|
-
failure_category: T['io.flow.payment.v0.enums.refund_failure_category'],
|
|
22926
|
-
failure_psp_reason: PropTypes.string,
|
|
23065
|
+
T['io.flow.partner.v0.models.bridge_label_form'] = PropTypes.exact({
|
|
23066
|
+
discriminator: PropTypes.oneOf(['bridge_label_form']).isRequired,
|
|
23067
|
+
organization: PropTypes.string.isRequired,
|
|
23068
|
+
order_number: PropTypes.string.isRequired,
|
|
23069
|
+
'package': T['io.flow.partner.v0.models.bridge_label_package'].isRequired,
|
|
23070
|
+
hub: T['io.flow.partner.v0.models.bridge_hub'],
|
|
22927
23071
|
});
|
|
22928
23072
|
|
|
22929
|
-
T['io.flow.
|
|
22930
|
-
|
|
22931
|
-
|
|
22932
|
-
|
|
22933
|
-
|
|
23073
|
+
T['io.flow.label.v0.models.summary_shipping_notification_form'] = PropTypes.exact({
|
|
23074
|
+
discriminator: PropTypes.oneOf(['summary_shipping_notification_form']).isRequired,
|
|
23075
|
+
order_number: PropTypes.string.isRequired,
|
|
23076
|
+
items: PropTypes.arrayOf(T['io.flow.common.v0.models.line_item_form']).isRequired,
|
|
23077
|
+
service: PropTypes.string.isRequired,
|
|
23078
|
+
carrier_tracking_number: PropTypes.string.isRequired,
|
|
23079
|
+
key: PropTypes.string,
|
|
23080
|
+
shipment_recipient: T['io.flow.label.v0.enums.shipment_recipient'],
|
|
22934
23081
|
});
|
|
22935
23082
|
|
|
22936
|
-
T['io.flow.
|
|
22937
|
-
|
|
22938
|
-
|
|
22939
|
-
|
|
22940
|
-
|
|
22941
|
-
|
|
22942
|
-
|
|
22943
|
-
status: T['io.flow.payment.v0.enums.refund_status'],
|
|
23083
|
+
T['io.flow.label.v0.models.summary_shipping_label_form'] = PropTypes.exact({
|
|
23084
|
+
discriminator: PropTypes.oneOf(['summary_shipping_label_form']).isRequired,
|
|
23085
|
+
order_number: PropTypes.string.isRequired,
|
|
23086
|
+
items: PropTypes.arrayOf(T['io.flow.common.v0.models.line_item_form']).isRequired,
|
|
23087
|
+
center_key: PropTypes.string,
|
|
23088
|
+
direction: T['io.flow.label.v0.enums.direction'],
|
|
23089
|
+
reference_id: PropTypes.string,
|
|
22944
23090
|
});
|
|
22945
23091
|
|
|
22946
|
-
T['io.flow.
|
|
22947
|
-
|
|
22948
|
-
|
|
22949
|
-
|
|
22950
|
-
|
|
23092
|
+
T['io.flow.label.v0.models.shipping_label_package'] = PropTypes.exact({
|
|
23093
|
+
dimensions: T['io.flow.common.v0.models.dimension'].isRequired,
|
|
23094
|
+
volumetric_weight: PropTypes.number,
|
|
23095
|
+
items: PropTypes.arrayOf(T['io.flow.common.v0.models.line_item_form']).isRequired,
|
|
23096
|
+
reference_number: PropTypes.string,
|
|
22951
23097
|
});
|
|
22952
23098
|
|
|
22953
|
-
T['io.flow.
|
|
22954
|
-
discriminator: PropTypes.oneOf(['
|
|
22955
|
-
|
|
22956
|
-
|
|
22957
|
-
|
|
22958
|
-
|
|
22959
|
-
|
|
22960
|
-
indirect_tax: T['io.flow.merchant.onboarding.v0.models.indirect_tax'],
|
|
22961
|
-
beneficiary: PropTypes.string,
|
|
22962
|
-
ultimate_beneficiary_owner: T['io.flow.merchant.onboarding.v0.models.ultimate_beneficiary_owner'],
|
|
22963
|
-
business_url: PropTypes.string,
|
|
22964
|
-
business_description: PropTypes.string,
|
|
22965
|
-
business_address: T['io.flow.common.v0.models.address'],
|
|
22966
|
-
refund_percentage: PropTypes.number,
|
|
22967
|
-
chargeback_percentage: PropTypes.number,
|
|
22968
|
-
bank_account_number: PropTypes.string,
|
|
22969
|
-
aba_routing_transit_number: PropTypes.string,
|
|
22970
|
-
other_trade_sector: PropTypes.string,
|
|
22971
|
-
third_party_logistics_partners: PropTypes.arrayOf(T['io.flow.merchant.onboarding.v0.models.third_party_logistics_partner']),
|
|
22972
|
-
center_contact: T['io.flow.merchant.onboarding.v0.models.operations_contact'],
|
|
22973
|
-
average_order_weight: PropTypes.number,
|
|
22974
|
-
package_dimensions: PropTypes.arrayOf(T['io.flow.common.v0.models.dimension']),
|
|
22975
|
-
monthly_average: T['io.flow.merchant.onboarding.v0.models.monthly_average'],
|
|
22976
|
-
default_country_of_origin: PropTypes.string,
|
|
22977
|
-
ratecard: T['io.flow.ratecard.v0.models.ratecard_reference'],
|
|
22978
|
-
rate_card: PropTypes.string.isRequired,
|
|
22979
|
-
created_at: PropTypes.string.isRequired,
|
|
22980
|
-
activated_at: PropTypes.string,
|
|
22981
|
-
status_updated_at: PropTypes.string,
|
|
22982
|
-
shop: T['io.flow.merchant.onboarding.v0.models.shop'],
|
|
22983
|
-
last_year_xborder_gmv: T['io.flow.common.v0.models.money'],
|
|
22984
|
-
last_month_xborder_gmv: T['io.flow.common.v0.models.money'],
|
|
22985
|
-
average_order_value: T['io.flow.common.v0.models.money'],
|
|
22986
|
-
glbe_merchant_guid: PropTypes.string,
|
|
22987
|
-
mcc_codes: PropTypes.arrayOf(PropTypes.number),
|
|
23099
|
+
T['io.flow.partner.v0.models.summary_label_form'] = PropTypes.exact({
|
|
23100
|
+
discriminator: PropTypes.oneOf(['summary_label_form']).isRequired,
|
|
23101
|
+
organization: PropTypes.string.isRequired,
|
|
23102
|
+
order_number: PropTypes.string.isRequired,
|
|
23103
|
+
items: PropTypes.arrayOf(T['io.flow.common.v0.models.line_item_form']),
|
|
23104
|
+
'package': T['io.flow.label.v0.models.shipping_label_package'],
|
|
23105
|
+
center_key: PropTypes.string,
|
|
22988
23106
|
});
|
|
22989
23107
|
|
|
22990
|
-
T['io.flow.
|
|
23108
|
+
T['io.flow.partner.v0.models.detailed_label_form'] = PropTypes.exact({
|
|
23109
|
+
discriminator: PropTypes.oneOf(['detailed_label_form']).isRequired,
|
|
23110
|
+
organization: PropTypes.string.isRequired,
|
|
23111
|
+
destination: T['io.flow.fulfillment.v0.models.shipping_address'].isRequired,
|
|
23112
|
+
order_number: PropTypes.string.isRequired,
|
|
23113
|
+
origin: T['io.flow.fulfillment.v0.models.shipping_address'].isRequired,
|
|
23114
|
+
'package': T['io.flow.label.v0.models.shipping_label_package'].isRequired,
|
|
23115
|
+
service: PropTypes.string,
|
|
23116
|
+
references: PropTypes.arrayOf(PropTypes.string),
|
|
23117
|
+
});
|
|
22991
23118
|
|
|
22992
|
-
T['io.flow.
|
|
22993
|
-
|
|
22994
|
-
|
|
23119
|
+
T['io.flow.partner.v0.unions.label_form'] = PropTypes.oneOfType([
|
|
23120
|
+
T['io.flow.partner.v0.models.detailed_label_form'],
|
|
23121
|
+
T['io.flow.partner.v0.models.summary_label_form'],
|
|
23122
|
+
T['io.flow.partner.v0.models.bridge_label_form'],
|
|
23123
|
+
]);
|
|
23124
|
+
|
|
23125
|
+
T['io.flow.label.v0.models.shipping_notification'] = PropTypes.exact({
|
|
23126
|
+
id: PropTypes.string.isRequired,
|
|
23127
|
+
key: PropTypes.string.isRequired,
|
|
23128
|
+
attributes: PropTypes.objectOf(PropTypes.string).isRequired,
|
|
23129
|
+
carrier_tracking_number: PropTypes.string.isRequired,
|
|
23130
|
+
destination: T['io.flow.fulfillment.v0.models.shipping_address'],
|
|
23131
|
+
flow_tracking_number: PropTypes.string.isRequired,
|
|
23132
|
+
origin: T['io.flow.fulfillment.v0.models.shipping_address'],
|
|
23133
|
+
'package': T['io.flow.label.v0.models.shipping_label_package'],
|
|
23134
|
+
service: T['io.flow.fulfillment.v0.unions.service_description'].isRequired,
|
|
23135
|
+
window: T['io.flow.common.v0.models.datetime_range'],
|
|
23136
|
+
order: T['io.flow.label.v0.models.label_order_summary'],
|
|
23137
|
+
order_identifier: PropTypes.string,
|
|
23138
|
+
fulfillment_key: PropTypes.string,
|
|
23139
|
+
shipment_recipient: T['io.flow.label.v0.enums.shipment_recipient'],
|
|
23140
|
+
created_at: PropTypes.string,
|
|
23141
|
+
updated_at: PropTypes.string,
|
|
22995
23142
|
});
|
|
22996
23143
|
|
|
22997
|
-
T['io.flow.
|
|
23144
|
+
T['io.flow.label.v0.models.shipping_notification_version'] = PropTypes.exact({
|
|
22998
23145
|
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'],
|
|
23146
|
+
timestamp: PropTypes.string.isRequired,
|
|
23147
|
+
type: T['io.flow.common.v0.enums.change_type'].isRequired,
|
|
23148
|
+
shipping_notification: T['io.flow.label.v0.models.shipping_notification'].isRequired,
|
|
23011
23149
|
});
|
|
23012
23150
|
|
|
23013
|
-
T['io.flow.
|
|
23014
|
-
|
|
23015
|
-
|
|
23016
|
-
|
|
23017
|
-
|
|
23018
|
-
|
|
23019
|
-
|
|
23151
|
+
T['io.flow.label.v0.models.detailed_shipping_notification_form'] = PropTypes.exact({
|
|
23152
|
+
discriminator: PropTypes.oneOf(['detailed_shipping_notification_form']).isRequired,
|
|
23153
|
+
key: PropTypes.string,
|
|
23154
|
+
attributes: PropTypes.objectOf(PropTypes.string),
|
|
23155
|
+
carrier_tracking_number: PropTypes.string.isRequired,
|
|
23156
|
+
destination: T['io.flow.fulfillment.v0.models.shipping_address'].isRequired,
|
|
23157
|
+
order_number: PropTypes.string.isRequired,
|
|
23158
|
+
'package': T['io.flow.label.v0.models.shipping_label_package'].isRequired,
|
|
23159
|
+
service: PropTypes.string.isRequired,
|
|
23160
|
+
origin: T['io.flow.fulfillment.v0.models.shipping_address'],
|
|
23161
|
+
shipment_recipient: T['io.flow.label.v0.enums.shipment_recipient'],
|
|
23020
23162
|
});
|
|
23021
23163
|
|
|
23022
|
-
T['io.flow.
|
|
23023
|
-
|
|
23024
|
-
|
|
23025
|
-
|
|
23026
|
-
|
|
23164
|
+
T['io.flow.label.v0.unions.shipping_notification_form'] = PropTypes.oneOfType([
|
|
23165
|
+
T['io.flow.label.v0.models.detailed_shipping_notification_form'],
|
|
23166
|
+
T['io.flow.label.v0.models.single_package_shipping_notification_form'],
|
|
23167
|
+
T['io.flow.label.v0.models.summary_shipping_notification_form'],
|
|
23168
|
+
]);
|
|
23027
23169
|
|
|
23028
|
-
T['io.flow.
|
|
23029
|
-
|
|
23030
|
-
|
|
23031
|
-
|
|
23032
|
-
|
|
23033
|
-
|
|
23034
|
-
|
|
23035
|
-
|
|
23036
|
-
|
|
23037
|
-
|
|
23170
|
+
T['io.flow.label.v0.models.detailed_shipping_label_form'] = PropTypes.exact({
|
|
23171
|
+
discriminator: PropTypes.oneOf(['detailed_shipping_label_form']).isRequired,
|
|
23172
|
+
destination: T['io.flow.fulfillment.v0.models.shipping_address'].isRequired,
|
|
23173
|
+
origin: T['io.flow.fulfillment.v0.models.shipping_address'].isRequired,
|
|
23174
|
+
'package': T['io.flow.label.v0.models.shipping_label_package'].isRequired,
|
|
23175
|
+
attributes: PropTypes.objectOf(PropTypes.string),
|
|
23176
|
+
delivered_duty: T['io.flow.common.v0.enums.delivered_duty'],
|
|
23177
|
+
direction: T['io.flow.label.v0.enums.direction'],
|
|
23178
|
+
order_number: PropTypes.string.isRequired,
|
|
23179
|
+
service: PropTypes.string,
|
|
23180
|
+
shipment_recipient: T['io.flow.label.v0.enums.shipment_recipient'],
|
|
23181
|
+
package_dimensions_source: T['io.flow.label.v0.enums.package_dimensions_source'],
|
|
23182
|
+
origin_location_source: T['io.flow.label.v0.enums.origin_location_source'],
|
|
23183
|
+
reference_id: PropTypes.string,
|
|
23038
23184
|
});
|
|
23039
23185
|
|
|
23040
|
-
T['io.flow.
|
|
23041
|
-
|
|
23042
|
-
|
|
23043
|
-
|
|
23186
|
+
T['io.flow.label.v0.models.bridge_shipping_label_form'] = PropTypes.exact({
|
|
23187
|
+
discriminator: PropTypes.oneOf(['bridge_shipping_label_form']).isRequired,
|
|
23188
|
+
order_number: PropTypes.string.isRequired,
|
|
23189
|
+
items: PropTypes.arrayOf(T['io.flow.common.v0.models.line_item_form']),
|
|
23190
|
+
'package': T['io.flow.label.v0.models.shipping_label_package'],
|
|
23191
|
+
origin: T['io.flow.fulfillment.v0.models.shipping_address'],
|
|
23192
|
+
direction: T['io.flow.label.v0.enums.direction'],
|
|
23193
|
+
reference_id: PropTypes.string,
|
|
23194
|
+
origin_location_source: T['io.flow.label.v0.enums.origin_location_source'],
|
|
23195
|
+
hub_code: PropTypes.string,
|
|
23044
23196
|
});
|
|
23045
23197
|
|
|
23046
|
-
T['io.flow.
|
|
23047
|
-
|
|
23048
|
-
|
|
23198
|
+
T['io.flow.label.v0.unions.shipping_label_form'] = PropTypes.oneOfType([
|
|
23199
|
+
T['io.flow.label.v0.models.detailed_shipping_label_form'],
|
|
23200
|
+
T['io.flow.label.v0.models.summary_shipping_label_form'],
|
|
23201
|
+
T['io.flow.label.v0.models.bridge_shipping_label_form'],
|
|
23202
|
+
]);
|
|
23203
|
+
|
|
23204
|
+
T['io.flow.internal.v0.models.label_summary'] = PropTypes.exact({
|
|
23205
|
+
id: PropTypes.string.isRequired,
|
|
23206
|
+
commercial_invoice: PropTypes.string,
|
|
23207
|
+
pdf: PropTypes.string,
|
|
23208
|
+
png: PropTypes.string,
|
|
23209
|
+
recipient: T['io.flow.label.v0.enums.shipment_recipient'],
|
|
23210
|
+
'package': T['io.flow.label.v0.models.shipping_label_package'],
|
|
23211
|
+
label: T['io.flow.label.v0.models.shipping_label_document'],
|
|
23212
|
+
invoice: T['io.flow.label.v0.models.shipping_label_document'],
|
|
23213
|
+
carrier_tracking_number: PropTypes.string,
|
|
23214
|
+
carrier_tracking_number_url: PropTypes.string,
|
|
23215
|
+
service: T['io.flow.reference.v0.models.carrier_service'],
|
|
23049
23216
|
});
|
|
23050
23217
|
|
|
23051
|
-
T['io.flow.internal.v0.models.
|
|
23052
|
-
|
|
23053
|
-
|
|
23218
|
+
T['io.flow.internal.v0.models.search_tracking_summary'] = PropTypes.exact({
|
|
23219
|
+
timestamp: PropTypes.string.isRequired,
|
|
23220
|
+
description: PropTypes.string.isRequired,
|
|
23221
|
+
number: PropTypes.string.isRequired,
|
|
23222
|
+
status: T['io.flow.tracking.v0.enums.tracking_status'].isRequired,
|
|
23223
|
+
label: T['io.flow.internal.v0.models.label_summary'].isRequired,
|
|
23054
23224
|
});
|
|
23055
23225
|
|
|
23056
|
-
T['io.flow.internal.v0.models.
|
|
23226
|
+
T['io.flow.internal.v0.models.return_summary'] = PropTypes.exact({
|
|
23057
23227
|
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,
|
|
23228
|
+
items: PropTypes.arrayOf(T['io.flow.return.v0.models.return_line_item']).isRequired,
|
|
23229
|
+
key: PropTypes.string.isRequired,
|
|
23230
|
+
tracking_summary: T['io.flow.internal.v0.models.search_tracking_summary'],
|
|
23067
23231
|
});
|
|
23068
23232
|
|
|
23069
|
-
T['io.flow.internal.v0.models.
|
|
23070
|
-
|
|
23071
|
-
|
|
23072
|
-
|
|
23233
|
+
T['io.flow.internal.v0.models.enriched_line_item_form'] = PropTypes.exact({
|
|
23234
|
+
form: T['io.flow.common.v0.models.line_item_form'].isRequired,
|
|
23235
|
+
customs_product_name: PropTypes.string,
|
|
23236
|
+
tariff_code: PropTypes.string,
|
|
23237
|
+
customs_description: PropTypes.string,
|
|
23238
|
+
hs_description: PropTypes.string,
|
|
23239
|
+
country_of_origin: PropTypes.string.isRequired,
|
|
23240
|
+
price_composition_rate: PropTypes.number.isRequired,
|
|
23241
|
+
duty_composition_rate: PropTypes.number.isRequired,
|
|
23242
|
+
export_control_classification_number: PropTypes.string.isRequired,
|
|
23243
|
+
sub_item_number: PropTypes.string,
|
|
23244
|
+
item_type: PropTypes.string,
|
|
23245
|
+
material: PropTypes.string,
|
|
23246
|
+
construction: PropTypes.string,
|
|
23247
|
+
gender: PropTypes.string,
|
|
23073
23248
|
});
|
|
23074
23249
|
|
|
23075
|
-
T['io.flow.internal.v0.
|
|
23076
|
-
T['io.flow.
|
|
23077
|
-
T['io.flow.internal.v0.models.
|
|
23078
|
-
|
|
23250
|
+
T['io.flow.internal.v0.models.enriched_shipping_label_package'] = PropTypes.exact({
|
|
23251
|
+
dimensions: T['io.flow.common.v0.models.dimension'].isRequired,
|
|
23252
|
+
items: PropTypes.arrayOf(T['io.flow.internal.v0.models.enriched_line_item_form']).isRequired,
|
|
23253
|
+
reference_number: PropTypes.string,
|
|
23254
|
+
});
|
|
23079
23255
|
|
|
23080
23256
|
T['io.flow.internal.v0.models.dispute'] = PropTypes.exact({
|
|
23081
23257
|
id: PropTypes.string.isRequired,
|
|
@@ -23496,6 +23672,8 @@ T['io.flow.shopify.markets.internal.event.v0.unions.shopify_markets_internal_eve
|
|
|
23496
23672
|
T['io.flow.shopify.markets.internal.event.v0.models.shopify_incoterm_summary_error_published'],
|
|
23497
23673
|
T['io.flow.shopify.markets.internal.event.v0.models.shopify_markets_best_selling_product_upserted'],
|
|
23498
23674
|
T['io.flow.shopify.markets.internal.event.v0.models.shopify_markets_best_selling_product_deleted'],
|
|
23675
|
+
T['io.flow.shopify.markets.internal.event.v0.models.shopify_order_risk_assessment_upserted'],
|
|
23676
|
+
T['io.flow.shopify.markets.internal.event.v0.models.shopify_order_risk_assessment_deleted'],
|
|
23499
23677
|
]);
|
|
23500
23678
|
|
|
23501
23679
|
T['io.flow.export.v0.models.marketing_feeds_export_type'] = PropTypes.exact({
|
|
@@ -23880,6 +24058,53 @@ T['io.flow.internal.v0.models.label_request_result'] = PropTypes.exact({
|
|
|
23880
24058
|
tax_lrp_liabilities: PropTypes.arrayOf(T['io.flow.internal.v0.models.liability']),
|
|
23881
24059
|
});
|
|
23882
24060
|
|
|
24061
|
+
T['io.flow.internal.v0.models.invoice_data'] = PropTypes.exact({
|
|
24062
|
+
organization_id: PropTypes.string.isRequired,
|
|
24063
|
+
order_number: PropTypes.string.isRequired,
|
|
24064
|
+
invoice_reference: PropTypes.string.isRequired,
|
|
24065
|
+
signature_url: PropTypes.string.isRequired,
|
|
24066
|
+
signature_date: PropTypes.string.isRequired,
|
|
24067
|
+
signature_name: PropTypes.string.isRequired,
|
|
24068
|
+
line_items: PropTypes.arrayOf(T['io.flow.internal.v0.models.invoice_data_line_item']).isRequired,
|
|
24069
|
+
currency: T['io.flow.reference.v0.models.currency'].isRequired,
|
|
24070
|
+
delivered_duty: T['io.flow.common.v0.enums.delivered_duty'].isRequired,
|
|
24071
|
+
delivered_duty_text: PropTypes.string.isRequired,
|
|
24072
|
+
transaction_date: PropTypes.string.isRequired,
|
|
24073
|
+
origin: T['io.flow.internal.v0.models.validated_address'].isRequired,
|
|
24074
|
+
destination: T['io.flow.internal.v0.models.validated_address'].isRequired,
|
|
24075
|
+
billing_address: T['io.flow.internal.v0.models.validated_address'],
|
|
24076
|
+
service: T['io.flow.reference.v0.models.carrier_service'].isRequired,
|
|
24077
|
+
flow_tracking_number: PropTypes.string.isRequired,
|
|
24078
|
+
rex_number: PropTypes.string,
|
|
24079
|
+
weee_number: PropTypes.string,
|
|
24080
|
+
business_gst_numbers: PropTypes.arrayOf(T['io.flow.internal.v0.models.entity_reference_number']).isRequired,
|
|
24081
|
+
destination_identification_numbers: PropTypes.arrayOf(T['io.flow.internal.v0.models.entity_reference_number']),
|
|
24082
|
+
vat_name: PropTypes.string.isRequired,
|
|
24083
|
+
item_identifier_column_name: PropTypes.string.isRequired,
|
|
24084
|
+
feature_show_merchant_id: PropTypes.bool.isRequired,
|
|
24085
|
+
shipping_pricing: T['io.flow.internal.v0.models.shipping_pricing'].isRequired,
|
|
24086
|
+
shipment_recipient: T['io.flow.label.v0.enums.shipment_recipient'],
|
|
24087
|
+
eu_preferential_origin: PropTypes.string,
|
|
24088
|
+
customs_master_file_number: PropTypes.string,
|
|
24089
|
+
merchant_of_record_entity: T['io.flow.common.v0.models.merchant_of_record_entity'],
|
|
24090
|
+
weight_measured: PropTypes.string,
|
|
24091
|
+
notes_export_declaration: PropTypes.string,
|
|
24092
|
+
notes_import_duty_taxes_due: PropTypes.string,
|
|
24093
|
+
invoice_id: PropTypes.string.isRequired,
|
|
24094
|
+
invoice_date: PropTypes.string.isRequired,
|
|
24095
|
+
invoice_number: PropTypes.string,
|
|
24096
|
+
invoice_version: T['io.flow.internal.v0.enums.commercial_invoice_version'].isRequired,
|
|
24097
|
+
shipping_price: PropTypes.number.isRequired,
|
|
24098
|
+
goods_value: PropTypes.number.isRequired,
|
|
24099
|
+
total_taxes: PropTypes.number.isRequired,
|
|
24100
|
+
total_duties: PropTypes.number.isRequired,
|
|
24101
|
+
customs_value: PropTypes.number.isRequired,
|
|
24102
|
+
total_value: PropTypes.number.isRequired,
|
|
24103
|
+
usa_exporter_identifier_number_if_value_over_threshold: PropTypes.string,
|
|
24104
|
+
feature_israel_notes_import_duty_and_taxes_due: PropTypes.bool.isRequired,
|
|
24105
|
+
feature_new_export_declaration: PropTypes.bool.isRequired,
|
|
24106
|
+
});
|
|
24107
|
+
|
|
23883
24108
|
T['io.flow.internal.v0.models.commercial_invoice_internal'] = PropTypes.exact({
|
|
23884
24109
|
id: PropTypes.string.isRequired,
|
|
23885
24110
|
label_id: PropTypes.string.isRequired,
|
|
@@ -24538,6 +24763,23 @@ T['io.flow.internal.v0.models.subscription'] = PropTypes.exact({
|
|
|
24538
24763
|
created_at: PropTypes.string.isRequired,
|
|
24539
24764
|
});
|
|
24540
24765
|
|
|
24766
|
+
T['io.flow.internal.v0.models.rohan_item_form'] = PropTypes.exact({
|
|
24767
|
+
number: PropTypes.string.isRequired,
|
|
24768
|
+
amount: T['io.flow.common.v0.models.price'].isRequired,
|
|
24769
|
+
description: PropTypes.string,
|
|
24770
|
+
type: T['io.flow.internal.v0.enums.rohan_item_type'].isRequired,
|
|
24771
|
+
added_on: PropTypes.string.isRequired,
|
|
24772
|
+
});
|
|
24773
|
+
|
|
24774
|
+
T['io.flow.internal.v0.models.rohan_item'] = PropTypes.exact({
|
|
24775
|
+
id: PropTypes.string.isRequired,
|
|
24776
|
+
number: PropTypes.string.isRequired,
|
|
24777
|
+
amount: T['io.flow.common.v0.models.price'].isRequired,
|
|
24778
|
+
description: PropTypes.string,
|
|
24779
|
+
type: T['io.flow.internal.v0.enums.rohan_item_type'].isRequired,
|
|
24780
|
+
added_on: PropTypes.string.isRequired,
|
|
24781
|
+
});
|
|
24782
|
+
|
|
24541
24783
|
T['io.flow.internal.v0.models.restriction_product'] = PropTypes.exact({
|
|
24542
24784
|
id: PropTypes.string.isRequired,
|
|
24543
24785
|
organization_id: PropTypes.string.isRequired,
|
|
@@ -24577,6 +24819,23 @@ T['io.flow.internal.v0.models.restriction_item'] = PropTypes.exact({
|
|
|
24577
24819
|
updated_at: PropTypes.string.isRequired,
|
|
24578
24820
|
});
|
|
24579
24821
|
|
|
24822
|
+
T['io.flow.internal.v0.models.prateek_item_form'] = PropTypes.exact({
|
|
24823
|
+
number: PropTypes.string.isRequired,
|
|
24824
|
+
amount: T['io.flow.common.v0.models.price'].isRequired,
|
|
24825
|
+
description: PropTypes.string,
|
|
24826
|
+
type: T['io.flow.internal.v0.enums.prateek_item_type'].isRequired,
|
|
24827
|
+
added_on: PropTypes.string.isRequired,
|
|
24828
|
+
});
|
|
24829
|
+
|
|
24830
|
+
T['io.flow.internal.v0.models.prateek_item'] = PropTypes.exact({
|
|
24831
|
+
id: PropTypes.string.isRequired,
|
|
24832
|
+
number: PropTypes.string.isRequired,
|
|
24833
|
+
amount: T['io.flow.common.v0.models.price'].isRequired,
|
|
24834
|
+
description: PropTypes.string,
|
|
24835
|
+
type: T['io.flow.internal.v0.enums.prateek_item_type'].isRequired,
|
|
24836
|
+
added_on: PropTypes.string.isRequired,
|
|
24837
|
+
});
|
|
24838
|
+
|
|
24580
24839
|
T['io.flow.internal.v0.models.payment_summary_v2'] = PropTypes.exact({
|
|
24581
24840
|
discriminator: PropTypes.oneOf(['payment_summary_v2']).isRequired,
|
|
24582
24841
|
id: PropTypes.string.isRequired,
|
|
@@ -24615,6 +24874,23 @@ T['io.flow.internal.v0.models.order_revenue_region_chart'] = PropTypes.exact({
|
|
|
24615
24874
|
data: PropTypes.arrayOf(T['io.flow.internal.v0.models.order_revenue_region_data_point']).isRequired,
|
|
24616
24875
|
});
|
|
24617
24876
|
|
|
24877
|
+
T['io.flow.internal.v0.models.niall_item_form'] = PropTypes.exact({
|
|
24878
|
+
number: PropTypes.string.isRequired,
|
|
24879
|
+
amount: T['io.flow.common.v0.models.price'].isRequired,
|
|
24880
|
+
description: PropTypes.string,
|
|
24881
|
+
type: T['io.flow.internal.v0.enums.niall_item_type'].isRequired,
|
|
24882
|
+
added_on: PropTypes.string.isRequired,
|
|
24883
|
+
});
|
|
24884
|
+
|
|
24885
|
+
T['io.flow.internal.v0.models.niall_item'] = PropTypes.exact({
|
|
24886
|
+
id: PropTypes.string.isRequired,
|
|
24887
|
+
number: PropTypes.string.isRequired,
|
|
24888
|
+
amount: T['io.flow.common.v0.models.price'].isRequired,
|
|
24889
|
+
description: PropTypes.string,
|
|
24890
|
+
type: T['io.flow.internal.v0.enums.niall_item_type'].isRequired,
|
|
24891
|
+
added_on: PropTypes.string.isRequired,
|
|
24892
|
+
});
|
|
24893
|
+
|
|
24618
24894
|
T['io.flow.internal.v0.models.invoice_line'] = PropTypes.exact({
|
|
24619
24895
|
id: PropTypes.string.isRequired,
|
|
24620
24896
|
description: PropTypes.string.isRequired,
|
|
@@ -24801,6 +25077,9 @@ T['io.flow.internal.v0.models.billing_statement_totals'] = PropTypes.exact({
|
|
|
24801
25077
|
duty: T['io.flow.common.v0.models.price'].isRequired,
|
|
24802
25078
|
trueup: T['io.flow.common.v0.models.price'].isRequired,
|
|
24803
25079
|
carrier_charge: T['io.flow.common.v0.models.price'].isRequired,
|
|
25080
|
+
duty_refund: T['io.flow.common.v0.models.price'].isRequired,
|
|
25081
|
+
ge_revenue_share: T['io.flow.common.v0.models.price'].isRequired,
|
|
25082
|
+
non_l4l_tax_duty_fx: T['io.flow.common.v0.models.price'].isRequired,
|
|
24804
25083
|
ending_balance: T['io.flow.common.v0.models.price'].isRequired,
|
|
24805
25084
|
tax_refund: T['io.flow.common.v0.models.price'].isRequired,
|
|
24806
25085
|
});
|
|
@@ -25458,6 +25737,40 @@ T['io.flow.order.management.event.v0.unions.order_management_event'] = PropTypes
|
|
|
25458
25737
|
T['io.flow.order.management.event.v0.models.ready_to_fulfill_v2'],
|
|
25459
25738
|
]);
|
|
25460
25739
|
|
|
25740
|
+
T['io.flow.internal.v0.models.validated_shipping_data'] = PropTypes.exact({
|
|
25741
|
+
organization: PropTypes.string.isRequired,
|
|
25742
|
+
reference_id: PropTypes.string,
|
|
25743
|
+
delivered_duty: T['io.flow.common.v0.enums.delivered_duty'].isRequired,
|
|
25744
|
+
merchant_of_record_entity: T['io.flow.common.v0.models.merchant_of_record_entity'],
|
|
25745
|
+
destination: T['io.flow.internal.v0.models.validated_address'].isRequired,
|
|
25746
|
+
origin: T['io.flow.internal.v0.models.validated_address'].isRequired,
|
|
25747
|
+
service: T['io.flow.reference.v0.models.carrier_service'].isRequired,
|
|
25748
|
+
'package': T['io.flow.internal.v0.models.enriched_shipping_label_package'].isRequired,
|
|
25749
|
+
total_catalog_item_value: T['io.flow.common.v0.models.money'].isRequired,
|
|
25750
|
+
weight_unit: T['io.flow.common.v0.enums.unit_of_measurement'].isRequired,
|
|
25751
|
+
distance_unit: T['io.flow.common.v0.enums.unit_of_measurement'].isRequired,
|
|
25752
|
+
flow_tracking_number: PropTypes.string.isRequired,
|
|
25753
|
+
center: T['io.flow.fulfillment.v0.models.center'],
|
|
25754
|
+
catalog_items: PropTypes.arrayOf(T['io.flow.internal.v0.models.internal_item']).isRequired,
|
|
25755
|
+
order: T['io.flow.experience.v0.models.order'].isRequired,
|
|
25756
|
+
window: T['io.flow.common.v0.models.datetime_range'].isRequired,
|
|
25757
|
+
id: PropTypes.string.isRequired,
|
|
25758
|
+
shipment_recipient: T['io.flow.label.v0.enums.shipment_recipient'].isRequired,
|
|
25759
|
+
request_id: PropTypes.string.isRequired,
|
|
25760
|
+
commercial_invoice_data: T['io.flow.internal.v0.models.invoice_data'],
|
|
25761
|
+
order_identifier: PropTypes.string,
|
|
25762
|
+
fulfillment_key: PropTypes.string,
|
|
25763
|
+
rex_number: PropTypes.string,
|
|
25764
|
+
weee_number: PropTypes.string,
|
|
25765
|
+
generate_commercial_invoice_only: PropTypes.bool.isRequired,
|
|
25766
|
+
liability_remittance_plan: T['io.flow.internal.v0.models.liability_remittance_plan'],
|
|
25767
|
+
shipment_cost_summary: T['io.flow.internal.v0.models.shipment_cost_summary'],
|
|
25768
|
+
shipping_label_hop_cost_itemized_estimate: T['io.flow.label.v0.models.shipping_label_hop_cost_itemized_estimate'],
|
|
25769
|
+
additional_services_requested: PropTypes.arrayOf(T['io.flow.label.v0.models.additional_services_requested']),
|
|
25770
|
+
provided_charges: PropTypes.arrayOf(T['io.flow.internal.v0.models.charge_input']),
|
|
25771
|
+
direction: T['io.flow.label.v0.enums.direction'],
|
|
25772
|
+
});
|
|
25773
|
+
|
|
25461
25774
|
T['io.flow.experience.v0.models.order_builder'] = PropTypes.exact({
|
|
25462
25775
|
order: T['io.flow.experience.v0.models.order'],
|
|
25463
25776
|
errors: PropTypes.arrayOf(T['io.flow.experience.v0.models.order_error']),
|
|
@@ -26894,7 +27207,6 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
|
|
|
26894
27207
|
T['io.flow.internal.v0.models.organization_currency_setting_deleted'],
|
|
26895
27208
|
T['io.flow.internal.v0.models.channel_currency_setting_upserted'],
|
|
26896
27209
|
T['io.flow.internal.v0.models.channel_currency_setting_deleted'],
|
|
26897
|
-
T['io.flow.internal.v0.models.customer_purge_upserted'],
|
|
26898
27210
|
T['io.flow.internal.v0.models.customs_description_import'],
|
|
26899
27211
|
T['io.flow.internal.v0.models.customs_description_tariffs_import'],
|
|
26900
27212
|
T['io.flow.internal.v0.models.dispute_upserted'],
|
|
@@ -27017,8 +27329,6 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
|
|
|
27017
27329
|
T['io.flow.internal.v0.models.unassigned_merchant_guid_deleted'],
|
|
27018
27330
|
T['io.flow.internal.v0.models.partner_tracking_subscription_upserted'],
|
|
27019
27331
|
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
27332
|
T['io.flow.internal.v0.models.partner_request_upserted'],
|
|
27023
27333
|
T['io.flow.internal.v0.models.partner_request_deleted'],
|
|
27024
27334
|
T['io.flow.internal.v0.models.internal_authorization_upserted'],
|
|
@@ -27051,6 +27361,9 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
|
|
|
27051
27361
|
T['io.flow.internal.v0.models.paypal_dispute_deleted'],
|
|
27052
27362
|
T['io.flow.internal.v0.models.product_restriction_rule_decision_upserted'],
|
|
27053
27363
|
T['io.flow.internal.v0.models.product_restriction_rule_decision_deleted'],
|
|
27364
|
+
T['io.flow.internal.v0.models.product_restriction_state_inserted'],
|
|
27365
|
+
T['io.flow.internal.v0.models.product_restriction_state_updated'],
|
|
27366
|
+
T['io.flow.internal.v0.models.product_restriction_state_deleted'],
|
|
27054
27367
|
T['io.flow.internal.v0.models.order_rates_published_v3'],
|
|
27055
27368
|
T['io.flow.internal.v0.models.ratecard_dimension_estimate_upserted'],
|
|
27056
27369
|
T['io.flow.internal.v0.models.ratecard_dimension_estimate_deleted'],
|
|
@@ -27102,6 +27415,8 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
|
|
|
27102
27415
|
T['io.flow.internal.v0.models.shopify_incoterm_summary_error_published'],
|
|
27103
27416
|
T['io.flow.internal.v0.models.shopify_markets_best_selling_product_upserted'],
|
|
27104
27417
|
T['io.flow.internal.v0.models.shopify_markets_best_selling_product_deleted'],
|
|
27418
|
+
T['io.flow.internal.v0.models.shopify_order_risk_assessment_upserted'],
|
|
27419
|
+
T['io.flow.internal.v0.models.shopify_order_risk_assessment_deleted'],
|
|
27105
27420
|
T['io.flow.internal.v0.models.shopify_product_create_upserted'],
|
|
27106
27421
|
T['io.flow.internal.v0.models.shopify_product_create_deleted'],
|
|
27107
27422
|
T['io.flow.internal.v0.models.shopify_product_update_upserted'],
|
|
@@ -27415,7 +27730,6 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
|
|
|
27415
27730
|
'organization_currency_setting_deleted',
|
|
27416
27731
|
'channel_currency_setting_upserted',
|
|
27417
27732
|
'channel_currency_setting_deleted',
|
|
27418
|
-
'customer_purge_upserted',
|
|
27419
27733
|
'customs_description_import',
|
|
27420
27734
|
'customs_description_tariffs_import',
|
|
27421
27735
|
'dispute_upserted',
|
|
@@ -27538,8 +27852,6 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
|
|
|
27538
27852
|
'unassigned_merchant_guid_deleted',
|
|
27539
27853
|
'partner_tracking_subscription_upserted',
|
|
27540
27854
|
'partner_tracking_subscription_deleted',
|
|
27541
|
-
'spp_tracker_update_request_upserted',
|
|
27542
|
-
'spp_tracker_update_request_deleted',
|
|
27543
27855
|
'partner_request_upserted',
|
|
27544
27856
|
'partner_request_deleted',
|
|
27545
27857
|
'internal_authorization_upserted',
|
|
@@ -27572,6 +27884,9 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
|
|
|
27572
27884
|
'paypal_dispute_deleted',
|
|
27573
27885
|
'product_restriction_rule_decision_upserted',
|
|
27574
27886
|
'product_restriction_rule_decision_deleted',
|
|
27887
|
+
'product_restriction_state_inserted',
|
|
27888
|
+
'product_restriction_state_updated',
|
|
27889
|
+
'product_restriction_state_deleted',
|
|
27575
27890
|
'order_rates_published_v3',
|
|
27576
27891
|
'ratecard_dimension_estimate_upserted',
|
|
27577
27892
|
'ratecard_dimension_estimate_deleted',
|
|
@@ -27623,6 +27938,8 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
|
|
|
27623
27938
|
'shopify_incoterm_summary_error_published',
|
|
27624
27939
|
'shopify_markets_best_selling_product_upserted',
|
|
27625
27940
|
'shopify_markets_best_selling_product_deleted',
|
|
27941
|
+
'shopify_order_risk_assessment_upserted',
|
|
27942
|
+
'shopify_order_risk_assessment_deleted',
|
|
27626
27943
|
'shopify_product_create_upserted',
|
|
27627
27944
|
'shopify_product_create_deleted',
|
|
27628
27945
|
'shopify_product_update_upserted',
|
|
@@ -27681,6 +27998,7 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
|
|
|
27681
27998
|
|
|
27682
27999
|
T['io.flow.internal.v0.enums.financial_reporting_responsible_party'] = PropTypes.oneOf(['flow', 'organization']);
|
|
27683
28000
|
T['io.flow.internal.v0.enums.flow_app'] = PropTypes.oneOf(['console']);
|
|
28001
|
+
T['io.flow.internal.v0.enums.ge_ingestion_file_status'] = PropTypes.oneOf(['pending', 'processed']);
|
|
27684
28002
|
|
|
27685
28003
|
T['io.flow.internal.v0.enums.graphql_service_types'] = PropTypes.oneOf([
|
|
27686
28004
|
'order_update_mutation',
|
|
@@ -27699,6 +28017,7 @@ T['io.flow.internal.v0.enums.http_method'] = PropTypes.oneOf(['get', 'post']);
|
|
|
27699
28017
|
T['io.flow.internal.v0.enums.label_billing_strategy'] = PropTypes.oneOf(['quote', 'carrier']);
|
|
27700
28018
|
T['io.flow.internal.v0.enums.label_request_result_organization_type'] = PropTypes.oneOf(['all', 'legacy_production', 'managed_markets_production', 'sandbox']);
|
|
27701
28019
|
T['io.flow.internal.v0.enums.label_transaction_type'] = PropTypes.oneOf(['adjustment', 'reversal', 'billable_label', 'fee', 'revenue_share']);
|
|
28020
|
+
T['io.flow.internal.v0.enums.non_l4l_tax_duty_fx_transaction_type'] = PropTypes.oneOf(['adjustment', 'reversal', 'fee']);
|
|
27702
28021
|
T['io.flow.internal.v0.enums.onboarding_automation_process_state'] = PropTypes.oneOf(['not_started', 'in_progress', 'success', 'failed']);
|
|
27703
28022
|
T['io.flow.internal.v0.enums.onboarding_automation_task_state'] = PropTypes.oneOf(['not_started', 'in_progress', 'success', 'failed']);
|
|
27704
28023
|
|
|
@@ -27747,6 +28066,8 @@ T['io.flow.internal.v0.enums.rate_level_key'] = PropTypes.oneOf([
|
|
|
27747
28066
|
]);
|
|
27748
28067
|
|
|
27749
28068
|
T['io.flow.internal.v0.enums.report_interval'] = PropTypes.oneOf(['hourly', 'daily', 'weekly', 'monthly']);
|
|
28069
|
+
T['io.flow.internal.v0.enums.restriction_organization_channel'] = PropTypes.oneOf(['shopify', 'enterprise', 'shopify-sandbox', 'enterprise-sandbox']);
|
|
28070
|
+
T['io.flow.internal.v0.enums.restriction_rule_exception_action'] = PropTypes.oneOf(['allow', 'deny']);
|
|
27750
28071
|
T['io.flow.internal.v0.enums.risk_check'] = PropTypes.oneOf(['three_d_secure']);
|
|
27751
28072
|
T['io.flow.internal.v0.enums.shopify_grant_status'] = PropTypes.oneOf(['pass', 'fail']);
|
|
27752
28073
|
|
|
@@ -28027,11 +28348,6 @@ T['io.flow.internal.v0.models.content_schema_summary'] = PropTypes.exact({
|
|
|
28027
28348
|
description: PropTypes.string,
|
|
28028
28349
|
});
|
|
28029
28350
|
|
|
28030
|
-
T['io.flow.internal.v0.models.customer_secret'] = PropTypes.exact({
|
|
28031
|
-
id: PropTypes.string.isRequired,
|
|
28032
|
-
secret: PropTypes.string.isRequired,
|
|
28033
|
-
});
|
|
28034
|
-
|
|
28035
28351
|
T['io.flow.internal.v0.models.customs_description_statistics'] = PropTypes.exact({
|
|
28036
28352
|
message: PropTypes.string.isRequired,
|
|
28037
28353
|
default_customs_description_total: PropTypes.number.isRequired,
|
|
@@ -28476,6 +28792,14 @@ T['io.flow.internal.v0.models.product_detail_settings_form'] = PropTypes.exact({
|
|
|
28476
28792
|
keys: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
28477
28793
|
});
|
|
28478
28794
|
|
|
28795
|
+
T['io.flow.internal.v0.models.product_sellability_result'] = PropTypes.exact({
|
|
28796
|
+
shop_id: PropTypes.string.isRequired,
|
|
28797
|
+
product_number: PropTypes.string.isRequired,
|
|
28798
|
+
request_id: PropTypes.string.isRequired,
|
|
28799
|
+
hs6_code: PropTypes.string.isRequired,
|
|
28800
|
+
restricted_regions: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
28801
|
+
});
|
|
28802
|
+
|
|
28479
28803
|
T['io.flow.internal.v0.models.rate_data'] = PropTypes.exact({
|
|
28480
28804
|
base: PropTypes.string.isRequired,
|
|
28481
28805
|
target: PropTypes.string.isRequired,
|
|
@@ -28555,6 +28879,14 @@ T['io.flow.internal.v0.models.restriction_product_request_form'] = PropTypes.exa
|
|
|
28555
28879
|
product_id: PropTypes.string,
|
|
28556
28880
|
});
|
|
28557
28881
|
|
|
28882
|
+
T['io.flow.internal.v0.models.restriction_rule_lane_exemption'] = PropTypes.exact({
|
|
28883
|
+
id: PropTypes.string.isRequired,
|
|
28884
|
+
rule_id: PropTypes.string.isRequired,
|
|
28885
|
+
description: PropTypes.string.isRequired,
|
|
28886
|
+
origin_countries: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
28887
|
+
destination_countries: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
28888
|
+
});
|
|
28889
|
+
|
|
28558
28890
|
T['io.flow.internal.v0.models.restriction_rule_override'] = PropTypes.exact({
|
|
28559
28891
|
id: PropTypes.string.isRequired,
|
|
28560
28892
|
organization_id: PropTypes.string.isRequired,
|
|
@@ -28599,15 +28931,6 @@ T['io.flow.internal.v0.models.search_provider_export'] = PropTypes.exact({
|
|
|
28599
28931
|
name: PropTypes.string.isRequired,
|
|
28600
28932
|
});
|
|
28601
28933
|
|
|
28602
|
-
T['io.flow.internal.v0.models.session_rollout'] = PropTypes.exact({
|
|
28603
|
-
id: PropTypes.string.isRequired,
|
|
28604
|
-
percent: PropTypes.number.isRequired,
|
|
28605
|
-
});
|
|
28606
|
-
|
|
28607
|
-
T['io.flow.internal.v0.models.session_rollout_form'] = PropTypes.exact({
|
|
28608
|
-
percent: PropTypes.number.isRequired,
|
|
28609
|
-
});
|
|
28610
|
-
|
|
28611
28934
|
T['io.flow.internal.v0.models.shipping_lane'] = PropTypes.exact({
|
|
28612
28935
|
origin: PropTypes.string.isRequired,
|
|
28613
28936
|
destination: PropTypes.string.isRequired,
|
|
@@ -30059,10 +30382,6 @@ T['io.flow.currency.v0.models.rate_form'] = PropTypes.exact({
|
|
|
30059
30382
|
effective_at: PropTypes.string.isRequired,
|
|
30060
30383
|
});
|
|
30061
30384
|
|
|
30062
|
-
T['io.flow.organization.v0.models.organization_default_configurations_form'] = PropTypes.exact({
|
|
30063
|
-
id: PropTypes.string.isRequired,
|
|
30064
|
-
});
|
|
30065
|
-
|
|
30066
30385
|
T['io.flow.session.v0.models.cart_reference'] = PropTypes.exact({
|
|
30067
30386
|
id: PropTypes.string.isRequired,
|
|
30068
30387
|
});
|
|
@@ -30205,6 +30524,7 @@ export const anyDangerousGoods = T['io.flow.internal.v0.enums.any_dangerous_good
|
|
|
30205
30524
|
export const apiCallReferenceId = T['io.flow.internal.v0.enums.api_call_reference_id'];
|
|
30206
30525
|
export const apmContent = T['io.flow.internal.v0.models.apm_content'];
|
|
30207
30526
|
export const applePayAuthorizationPayload = T['io.flow.internal.v0.models.apple_pay_authorization_payload'];
|
|
30527
|
+
export const applicablePreferentialRate = T['io.flow.internal.v0.enums.applicable_preferential_rate'];
|
|
30208
30528
|
export const applyAtValueForm = T['io.flow.internal.v0.models.apply_at_value_form'];
|
|
30209
30529
|
export const attemptStatistics = T['io.flow.internal.v0.models.attempt_statistics'];
|
|
30210
30530
|
export const attributeLabel = T['io.flow.internal.v0.models.attribute_label'];
|
|
@@ -30484,6 +30804,7 @@ export const commercialInvoiceInternal = T['io.flow.internal.v0.models.commercia
|
|
|
30484
30804
|
export const commercialInvoiceInternalDeleted = T['io.flow.internal.v0.models.commercial_invoice_internal_deleted'];
|
|
30485
30805
|
export const commercialInvoiceInternalUpserted = T['io.flow.internal.v0.models.commercial_invoice_internal_upserted'];
|
|
30486
30806
|
export const commercialInvoiceSummary = T['io.flow.internal.v0.models.commercial_invoice_summary'];
|
|
30807
|
+
export const commercialInvoiceVersion = T['io.flow.internal.v0.enums.commercial_invoice_version'];
|
|
30487
30808
|
export const company = T['io.flow.internal.v0.enums.company'];
|
|
30488
30809
|
export const companyReference = T['io.flow.internal.v0.models.company_reference'];
|
|
30489
30810
|
export const compliance = T['io.flow.internal.v0.models.compliance'];
|
|
@@ -30523,8 +30844,6 @@ export const cryptoAuthentication = T['io.flow.internal.v0.models.crypto_authent
|
|
|
30523
30844
|
export const cryptoAuthenticationForm = T['io.flow.internal.v0.models.crypto_authentication_form'];
|
|
30524
30845
|
export const csvTransaction = T['io.flow.internal.v0.models.csv_transaction'];
|
|
30525
30846
|
export const currencyInternalRate = T['io.flow.internal.v0.models.currency_internal_rate'];
|
|
30526
|
-
export const customerPurgeUpserted = T['io.flow.internal.v0.models.customer_purge_upserted'];
|
|
30527
|
-
export const customerSecret = T['io.flow.internal.v0.models.customer_secret'];
|
|
30528
30847
|
export const customsDescriptionImport = T['io.flow.internal.v0.models.customs_description_import'];
|
|
30529
30848
|
export const customsDescriptionStatistics = T['io.flow.internal.v0.models.customs_description_statistics'];
|
|
30530
30849
|
export const customsDescriptionSuggestion = T['io.flow.internal.v0.models.customs_description_suggestion'];
|
|
@@ -30645,7 +30964,10 @@ export const emailModificationForm = T['io.flow.internal.v0.models.email_modific
|
|
|
30645
30964
|
export const emptyAttribute = T['io.flow.internal.v0.enums.empty_attribute'];
|
|
30646
30965
|
export const emptyClassificationForm = T['io.flow.internal.v0.models.empty_classification_form'];
|
|
30647
30966
|
export const encryption = T['io.flow.internal.v0.models.encryption'];
|
|
30967
|
+
export const enrichedLineItemForm = T['io.flow.internal.v0.models.enriched_line_item_form'];
|
|
30968
|
+
export const enrichedShippingLabelPackage = T['io.flow.internal.v0.models.enriched_shipping_label_package'];
|
|
30648
30969
|
export const entityReference = T['io.flow.internal.v0.models.entity_reference'];
|
|
30970
|
+
export const entityReferenceNumber = T['io.flow.internal.v0.models.entity_reference_number'];
|
|
30649
30971
|
export const erpFileType = T['io.flow.internal.v0.enums.erp_file_type'];
|
|
30650
30972
|
export const erpFlowFile = T['io.flow.internal.v0.models.erp_flow_file'];
|
|
30651
30973
|
export const erpFlowFileForm = T['io.flow.internal.v0.models.erp_flow_file_form'];
|
|
@@ -30818,6 +31140,7 @@ export const fxRevenueRecognitionOrder = T['io.flow.internal.v0.models.fx_revenu
|
|
|
30818
31140
|
export const fxRevenueRecognitionOrganization = T['io.flow.internal.v0.models.fx_revenue_recognition_organization'];
|
|
30819
31141
|
export const fxRevenueRecognitionRate = T['io.flow.internal.v0.models.fx_revenue_recognition_rate'];
|
|
30820
31142
|
export const fxRevenueRecognitionSource = T['io.flow.internal.v0.models.fx_revenue_recognition_source'];
|
|
31143
|
+
export const geIngestionFileStatus = T['io.flow.internal.v0.enums.ge_ingestion_file_status'];
|
|
30821
31144
|
export const geRevenueShareTransaction = T['io.flow.internal.v0.models.ge_revenue_share_transaction'];
|
|
30822
31145
|
export const generateLoad = T['io.flow.internal.v0.unions.generate_load'];
|
|
30823
31146
|
export const generateLoadMultipleOrgs = T['io.flow.internal.v0.models.generate_load_multiple_orgs'];
|
|
@@ -30873,6 +31196,7 @@ export const internalDebugTransaction = T['io.flow.internal.v0.models.internal_d
|
|
|
30873
31196
|
export const internalExclusionRuleForm = T['io.flow.internal.v0.models.internal_exclusion_rule_form'];
|
|
30874
31197
|
export const internalFiservAuthorizationDetails = T['io.flow.internal.v0.models.internal_fiserv_authorization_details'];
|
|
30875
31198
|
export const internalHarmonizationStatistic = T['io.flow.internal.v0.unions.internal_harmonization_statistic'];
|
|
31199
|
+
export const internalItem = T['io.flow.internal.v0.models.internal_item'];
|
|
30876
31200
|
export const internalItemForm = T['io.flow.internal.v0.models.internal_item_form'];
|
|
30877
31201
|
export const internalOrder = T['io.flow.internal.v0.models.internal_order'];
|
|
30878
31202
|
export const internalPaymentEntityType = T['io.flow.internal.v0.enums.internal_payment_entity_type'];
|
|
@@ -30886,6 +31210,8 @@ export const internalTransactionDetailsCard = T['io.flow.internal.v0.models.inte
|
|
|
30886
31210
|
export const invariant = T['io.flow.internal.v0.models.invariant'];
|
|
30887
31211
|
export const inventoryItemWrapper = T['io.flow.internal.v0.models.inventory_item_wrapper'];
|
|
30888
31212
|
export const invoice = T['io.flow.internal.v0.models.invoice'];
|
|
31213
|
+
export const invoiceData = T['io.flow.internal.v0.models.invoice_data'];
|
|
31214
|
+
export const invoiceDataLineItem = T['io.flow.internal.v0.models.invoice_data_line_item'];
|
|
30889
31215
|
export const invoiceInfoForm = T['io.flow.internal.v0.models.invoice_info_form'];
|
|
30890
31216
|
export const invoiceLine = T['io.flow.internal.v0.models.invoice_line'];
|
|
30891
31217
|
export const invoiceLineItem = T['io.flow.internal.v0.models.invoice_line_item'];
|
|
@@ -31065,11 +31391,15 @@ export const mixedBagWeight = T['io.flow.internal.v0.enums.mixed_bag_weight'];
|
|
|
31065
31391
|
export const natureOfSale = T['io.flow.internal.v0.enums.nature_of_sale'];
|
|
31066
31392
|
export const negativeDebitMetrics = T['io.flow.internal.v0.models.negative_debit_metrics'];
|
|
31067
31393
|
export const nextBillingStatement = T['io.flow.internal.v0.models.next_billing_statement'];
|
|
31394
|
+
export const niallItem = T['io.flow.internal.v0.models.niall_item'];
|
|
31395
|
+
export const niallItemForm = T['io.flow.internal.v0.models.niall_item_form'];
|
|
31396
|
+
export const niallItemType = T['io.flow.internal.v0.enums.niall_item_type'];
|
|
31068
31397
|
export const noCalculatedTaxAmount = T['io.flow.internal.v0.models.no_calculated_tax_amount'];
|
|
31069
31398
|
export const noClassificationForm = T['io.flow.internal.v0.models.no_classification_form'];
|
|
31070
31399
|
export const noLiabilityReasonCode = T['io.flow.internal.v0.enums.no_liability_reason_code'];
|
|
31071
31400
|
export const nonChannelPaymentBankAccount = T['io.flow.internal.v0.models.non_channel_payment_bank_account'];
|
|
31072
31401
|
export const nonL4LTaxDutyFxTransaction = T['io.flow.internal.v0.models.non_l4l_tax_duty_fx_transaction'];
|
|
31402
|
+
export const nonL4LTaxDutyFxTransactionType = T['io.flow.internal.v0.enums.non_l4l_tax_duty_fx_transaction_type'];
|
|
31073
31403
|
export const notification = T['io.flow.internal.v0.models.notification'];
|
|
31074
31404
|
export const onboardingAuditMessage = T['io.flow.internal.v0.models.onboarding_audit_message'];
|
|
31075
31405
|
export const onboardingAuditMessageLevel = T['io.flow.internal.v0.enums.onboarding_audit_message_level'];
|
|
@@ -31306,6 +31636,9 @@ export const platformFeeFlat = T['io.flow.internal.v0.models.platform_fee_flat']
|
|
|
31306
31636
|
export const platformFeePause = T['io.flow.internal.v0.models.platform_fee_pause'];
|
|
31307
31637
|
export const platformFeePercentage = T['io.flow.internal.v0.models.platform_fee_percentage'];
|
|
31308
31638
|
export const platformFeePercentageTier = T['io.flow.internal.v0.models.platform_fee_percentage_tier'];
|
|
31639
|
+
export const prateekItem = T['io.flow.internal.v0.models.prateek_item'];
|
|
31640
|
+
export const prateekItemForm = T['io.flow.internal.v0.models.prateek_item_form'];
|
|
31641
|
+
export const prateekItemType = T['io.flow.internal.v0.enums.prateek_item_type'];
|
|
31309
31642
|
export const prediction = T['io.flow.internal.v0.models.prediction'];
|
|
31310
31643
|
export const preferredBillingSchedule = T['io.flow.internal.v0.enums.preferred_billing_schedule'];
|
|
31311
31644
|
export const priceSelector = T['io.flow.internal.v0.enums.price_selector'];
|
|
@@ -31342,7 +31675,12 @@ export const productRestrictionResultValidationError = T['io.flow.internal.v0.mo
|
|
|
31342
31675
|
export const productRestrictionRuleDecision = T['io.flow.internal.v0.models.product_restriction_rule_decision'];
|
|
31343
31676
|
export const productRestrictionRuleDecisionDeleted = T['io.flow.internal.v0.models.product_restriction_rule_decision_deleted'];
|
|
31344
31677
|
export const productRestrictionRuleDecisionUpserted = T['io.flow.internal.v0.models.product_restriction_rule_decision_upserted'];
|
|
31678
|
+
export const productRestrictionState = T['io.flow.internal.v0.models.product_restriction_state'];
|
|
31679
|
+
export const productRestrictionStateDeleted = T['io.flow.internal.v0.models.product_restriction_state_deleted'];
|
|
31680
|
+
export const productRestrictionStateInserted = T['io.flow.internal.v0.models.product_restriction_state_inserted'];
|
|
31681
|
+
export const productRestrictionStateUpdated = T['io.flow.internal.v0.models.product_restriction_state_updated'];
|
|
31345
31682
|
export const productReviewHistory = T['io.flow.internal.v0.models.product_review_history'];
|
|
31683
|
+
export const productSellabilityResult = T['io.flow.internal.v0.models.product_sellability_result'];
|
|
31346
31684
|
export const productStatus = T['io.flow.internal.v0.enums.product_status'];
|
|
31347
31685
|
export const productTransaction = T['io.flow.internal.v0.models.product_transaction'];
|
|
31348
31686
|
export const promptAction = T['io.flow.internal.v0.enums.prompt_action'];
|
|
@@ -31497,7 +31835,9 @@ export const restrictionItemReviewSummary = T['io.flow.internal.v0.models.restri
|
|
|
31497
31835
|
export const restrictionKeywordMetadata = T['io.flow.internal.v0.models.restriction_keyword_metadata'];
|
|
31498
31836
|
export const restrictionKeywords = T['io.flow.internal.v0.models.restriction_keywords'];
|
|
31499
31837
|
export const restrictionOrganization = T['io.flow.internal.v0.models.restriction_organization'];
|
|
31838
|
+
export const restrictionOrganizationChannel = T['io.flow.internal.v0.enums.restriction_organization_channel'];
|
|
31500
31839
|
export const restrictionOrganizationDecisionSummary = T['io.flow.internal.v0.models.restriction_organization_decision_summary'];
|
|
31840
|
+
export const restrictionOrganizationSource = T['io.flow.internal.v0.enums.restriction_organization_source'];
|
|
31501
31841
|
export const restrictionOrganizationStatus = T['io.flow.internal.v0.models.restriction_organization_status'];
|
|
31502
31842
|
export const restrictionOrganizationStatusDeleted = T['io.flow.internal.v0.models.restriction_organization_status_deleted'];
|
|
31503
31843
|
export const restrictionOrganizationStatusUpserted = T['io.flow.internal.v0.models.restriction_organization_status_upserted'];
|
|
@@ -31514,13 +31854,16 @@ export const restrictionRuleEffect = T['io.flow.internal.v0.models.restriction_r
|
|
|
31514
31854
|
export const restrictionRuleEffectDeleted = T['io.flow.internal.v0.models.restriction_rule_effect_deleted'];
|
|
31515
31855
|
export const restrictionRuleEffectForm = T['io.flow.internal.v0.models.restriction_rule_effect_form'];
|
|
31516
31856
|
export const restrictionRuleEffectUpserted = T['io.flow.internal.v0.models.restriction_rule_effect_upserted'];
|
|
31857
|
+
export const restrictionRuleExceptionAction = T['io.flow.internal.v0.enums.restriction_rule_exception_action'];
|
|
31517
31858
|
export const restrictionRuleForm = T['io.flow.internal.v0.models.restriction_rule_form'];
|
|
31518
|
-
export const
|
|
31859
|
+
export const restrictionRuleLaneExemption = T['io.flow.internal.v0.models.restriction_rule_lane_exemption'];
|
|
31519
31860
|
export const restrictionRuleOverride = T['io.flow.internal.v0.models.restriction_rule_override'];
|
|
31520
31861
|
export const restrictionRuleSummary = T['io.flow.internal.v0.models.restriction_rule_summary'];
|
|
31521
31862
|
export const restrictionRuleUpserted = T['io.flow.internal.v0.models.restriction_rule_upserted'];
|
|
31863
|
+
export const restrictionStateReviewStatus = T['io.flow.internal.v0.enums.restriction_state_review_status'];
|
|
31522
31864
|
export const restrictionStatus = T['io.flow.internal.v0.enums.restriction_status'];
|
|
31523
31865
|
export const restrictionStatusMetadata = T['io.flow.internal.v0.models.restriction_status_metadata'];
|
|
31866
|
+
export const restrictionSummaryCounts = T['io.flow.internal.v0.models.restriction_summary_counts'];
|
|
31524
31867
|
export const restrictionsDailyops = T['io.flow.internal.v0.models.restrictions_dailyops'];
|
|
31525
31868
|
export const restrictionsDailyopsDeleted = T['io.flow.internal.v0.models.restrictions_dailyops_deleted'];
|
|
31526
31869
|
export const restrictionsDailyopsUpserted = T['io.flow.internal.v0.models.restrictions_dailyops_upserted'];
|
|
@@ -31544,6 +31887,9 @@ export const revenueRecordType = T['io.flow.internal.v0.enums.revenue_record_typ
|
|
|
31544
31887
|
export const revenueRecordUpserted = T['io.flow.internal.v0.models.revenue_record_upserted'];
|
|
31545
31888
|
export const riskCheck = T['io.flow.internal.v0.enums.risk_check'];
|
|
31546
31889
|
export const riskEvaluation = T['io.flow.internal.v0.enums.risk_evaluation'];
|
|
31890
|
+
export const rohanItem = T['io.flow.internal.v0.models.rohan_item'];
|
|
31891
|
+
export const rohanItemForm = T['io.flow.internal.v0.models.rohan_item_form'];
|
|
31892
|
+
export const rohanItemType = T['io.flow.internal.v0.enums.rohan_item_type'];
|
|
31547
31893
|
export const routingAccount = T['io.flow.internal.v0.models.routing_account'];
|
|
31548
31894
|
export const routingEntity = T['io.flow.internal.v0.unions.routing_entity'];
|
|
31549
31895
|
export const routingMerchant = T['io.flow.internal.v0.models.routing_merchant'];
|
|
@@ -31563,17 +31909,13 @@ export const searchItemSummary = T['io.flow.internal.v0.models.search_item_summa
|
|
|
31563
31909
|
export const searchOrderSummary = T['io.flow.internal.v0.models.search_order_summary'];
|
|
31564
31910
|
export const searchProviderExport = T['io.flow.internal.v0.models.search_provider_export'];
|
|
31565
31911
|
export const searchTrackingSummary = T['io.flow.internal.v0.models.search_tracking_summary'];
|
|
31566
|
-
export const sessionCountries = T['io.flow.internal.v0.models.session_countries'];
|
|
31567
|
-
export const sessionCountry = T['io.flow.internal.v0.models.session_country'];
|
|
31568
|
-
export const sessionCountryForm = T['io.flow.internal.v0.models.session_country_form'];
|
|
31569
|
-
export const sessionCountryStatus = T['io.flow.internal.v0.enums.session_country_status'];
|
|
31570
31912
|
export const sessionOrderData = T['io.flow.internal.v0.models.session_order_data'];
|
|
31571
|
-
export const sessionRollout = T['io.flow.internal.v0.models.session_rollout'];
|
|
31572
|
-
export const sessionRolloutForm = T['io.flow.internal.v0.models.session_rollout_form'];
|
|
31573
31913
|
export const setupBlockPutForm = T['io.flow.internal.v0.models.setup_block_put_form'];
|
|
31574
31914
|
export const sfExpress = T['io.flow.internal.v0.models.sf_express'];
|
|
31915
|
+
export const shipmentCostSummary = T['io.flow.internal.v0.models.shipment_cost_summary'];
|
|
31575
31916
|
export const shippingLane = T['io.flow.internal.v0.models.shipping_lane'];
|
|
31576
31917
|
export const shippingMethodReference = T['io.flow.internal.v0.models.shipping_method_reference'];
|
|
31918
|
+
export const shippingPricing = T['io.flow.internal.v0.models.shipping_pricing'];
|
|
31577
31919
|
export const shop = T['io.flow.internal.v0.models.shop'];
|
|
31578
31920
|
export const shopForm = T['io.flow.internal.v0.models.shop_form'];
|
|
31579
31921
|
export const shopVersion = T['io.flow.internal.v0.models.shop_version'];
|
|
@@ -31671,6 +32013,9 @@ export const shopifyOrderFulfillmentsSnapshotUpserted = T['io.flow.internal.v0.m
|
|
|
31671
32013
|
export const shopifyOrderInventoryCheck = T['io.flow.internal.v0.models.shopify_order_inventory_check'];
|
|
31672
32014
|
export const shopifyOrderLineAttribute = T['io.flow.internal.v0.models.shopify_order_line_attribute'];
|
|
31673
32015
|
export const shopifyOrderLineContent = T['io.flow.internal.v0.models.shopify_order_line_content'];
|
|
32016
|
+
export const shopifyOrderRiskAssessment = T['io.flow.internal.v0.models.shopify_order_risk_assessment'];
|
|
32017
|
+
export const shopifyOrderRiskAssessmentDeleted = T['io.flow.internal.v0.models.shopify_order_risk_assessment_deleted'];
|
|
32018
|
+
export const shopifyOrderRiskAssessmentUpserted = T['io.flow.internal.v0.models.shopify_order_risk_assessment_upserted'];
|
|
31674
32019
|
export const shopifyOrganizationSettings = T['io.flow.internal.v0.models.shopify_organization_settings'];
|
|
31675
32020
|
export const shopifyOrganizationSettingsForm = T['io.flow.internal.v0.models.shopify_organization_settings_form'];
|
|
31676
32021
|
export const shopifyPartnerWebhook = T['io.flow.internal.v0.models.shopify_partner_webhook'];
|
|
@@ -31750,9 +32095,6 @@ export const spotRateMetadataIdentity = T['io.flow.internal.v0.models.spot_rate_
|
|
|
31750
32095
|
export const spotRateMetadataRate = T['io.flow.internal.v0.models.spot_rate_metadata_rate'];
|
|
31751
32096
|
export const spotRateUpserted = T['io.flow.internal.v0.models.spot_rate_upserted'];
|
|
31752
32097
|
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
32098
|
export const standaloneAttachment = T['io.flow.internal.v0.models.standalone_attachment'];
|
|
31757
32099
|
export const standaloneAttachmentDeleted = T['io.flow.internal.v0.models.standalone_attachment_deleted'];
|
|
31758
32100
|
export const standaloneAttachmentUpserted = T['io.flow.internal.v0.models.standalone_attachment_upserted'];
|
|
@@ -31928,6 +32270,8 @@ export const userStatusRule = T['io.flow.internal.v0.models.user_status_rule'];
|
|
|
31928
32270
|
export const userStatusRuleForm = T['io.flow.internal.v0.models.user_status_rule_form'];
|
|
31929
32271
|
export const userUpsertedV2 = T['io.flow.internal.v0.models.user_upserted_v2'];
|
|
31930
32272
|
export const v1Checkout = T['io.flow.internal.v0.models.v1_checkout'];
|
|
32273
|
+
export const validatedAddress = T['io.flow.internal.v0.models.validated_address'];
|
|
32274
|
+
export const validatedShippingData = T['io.flow.internal.v0.models.validated_shipping_data'];
|
|
31931
32275
|
export const validationCharacterLength = T['io.flow.internal.v0.models.validation_character_length'];
|
|
31932
32276
|
export const validationRule = T['io.flow.internal.v0.unions.validation_rule'];
|
|
31933
32277
|
export const viesResult = T['io.flow.internal.v0.models.vies_result'];
|