@flowio/api-internal-prop-types 9.24.118 → 9.24.119
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 +216 -33
- package/lib/api-internal.js +1 -1
- package/package.json +2 -2
- package/src/api-internal.d.ts +216 -33
- package/src/api-internal.js +416 -170
package/src/api-internal.js
CHANGED
|
@@ -67,6 +67,7 @@ T['io.flow.sellability.v0.enums.sellability_error_code'] = PropTypes.oneOf([
|
|
|
67
67
|
]);
|
|
68
68
|
|
|
69
69
|
T['io.flow.sellability.v0.models.sellability_error'] = PropTypes.exact({
|
|
70
|
+
discriminator: PropTypes.oneOf(['sellability_error']).isRequired,
|
|
70
71
|
code: T['io.flow.sellability.v0.enums.sellability_error_code'].isRequired,
|
|
71
72
|
messages: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
72
73
|
});
|
|
@@ -328,6 +329,13 @@ T['io.flow.shopify.v0.models.shopify_location_flow_center_mapping'] = PropTypes.
|
|
|
328
329
|
flow_center: T['io.flow.shopify.v0.models.flow_center_reference'].isRequired,
|
|
329
330
|
});
|
|
330
331
|
|
|
332
|
+
T['io.flow.fulfillment.v0.enums.item_availability_status'] = PropTypes.oneOf(['available', 'low', 'out_of_stock']);
|
|
333
|
+
|
|
334
|
+
T['io.flow.fulfillment.v0.models.country_availability'] = PropTypes.exact({
|
|
335
|
+
status: T['io.flow.fulfillment.v0.enums.item_availability_status'].isRequired,
|
|
336
|
+
countries: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
337
|
+
});
|
|
338
|
+
|
|
331
339
|
T['io.flow.common.v0.enums.incoterm'] = PropTypes.oneOf([
|
|
332
340
|
'EXW',
|
|
333
341
|
'FCA',
|
|
@@ -393,16 +401,6 @@ T['io.flow.billing.v0.models.trueup_label_base'] = PropTypes.exact({
|
|
|
393
401
|
|
|
394
402
|
T['io.flow.billing.v0.enums.trueup_source'] = PropTypes.oneOf(['flow', 'channel', 'dhl-parcel', 'dhl', 'ups']);
|
|
395
403
|
|
|
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
|
-
|
|
406
404
|
T['io.flow.billing.v0.models.transaction_metadata_shipping_label_carrier'] = PropTypes.exact({
|
|
407
405
|
id: PropTypes.string.isRequired,
|
|
408
406
|
service_id: PropTypes.string,
|
|
@@ -413,11 +411,6 @@ T['io.flow.billing.v0.models.transaction_metadata_outbound_transaction'] = PropT
|
|
|
413
411
|
transaction_id: PropTypes.string.isRequired,
|
|
414
412
|
});
|
|
415
413
|
|
|
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
|
-
|
|
421
414
|
T['io.flow.billing.v0.models.transaction_metadata_payment_transaction'] = PropTypes.exact({
|
|
422
415
|
discriminator: PropTypes.oneOf(['payment_transaction']).isRequired,
|
|
423
416
|
id: PropTypes.string,
|
|
@@ -1367,6 +1360,14 @@ T['io.flow.experience.v0.models.address_configuration_province_translation'] = P
|
|
|
1367
1360
|
name: PropTypes.string.isRequired,
|
|
1368
1361
|
});
|
|
1369
1362
|
|
|
1363
|
+
T['io.flow.shopify.markets.internal.event.v0.models.shopify_order_transaction_deleted'] = PropTypes.exact({
|
|
1364
|
+
discriminator: PropTypes.oneOf(['shopify_order_transaction_deleted']).isRequired,
|
|
1365
|
+
event_id: PropTypes.string.isRequired,
|
|
1366
|
+
timestamp: PropTypes.string.isRequired,
|
|
1367
|
+
organization: PropTypes.string.isRequired,
|
|
1368
|
+
id: PropTypes.string.isRequired,
|
|
1369
|
+
});
|
|
1370
|
+
|
|
1370
1371
|
T['io.flow.shopify.markets.internal.event.v0.models.shopify_order_risk_assessment_deleted'] = PropTypes.exact({
|
|
1371
1372
|
discriminator: PropTypes.oneOf(['shopify_order_risk_assessment_deleted']).isRequired,
|
|
1372
1373
|
event_id: PropTypes.string.isRequired,
|
|
@@ -1678,6 +1679,17 @@ T['io.flow.order.price.v0.enums.order_price_detail_component_key'] = PropTypes.o
|
|
|
1678
1679
|
'tip',
|
|
1679
1680
|
]);
|
|
1680
1681
|
|
|
1682
|
+
T['io.flow.channel.shopify.internal.v0.enums.shopify_service'] = PropTypes.oneOf(['payment', 'duty_tax_calculator', 'sellability']);
|
|
1683
|
+
|
|
1684
|
+
T['io.flow.channel.shopify.internal.v0.models.shopify_channel_organization_token'] = PropTypes.exact({
|
|
1685
|
+
cleartext: PropTypes.string.isRequired,
|
|
1686
|
+
});
|
|
1687
|
+
|
|
1688
|
+
T['io.flow.channel.shopify.internal.v0.models.shopify_channel_organization_tokens'] = PropTypes.exact({
|
|
1689
|
+
token: T['io.flow.channel.shopify.internal.v0.models.shopify_channel_organization_token'].isRequired,
|
|
1690
|
+
service: T['io.flow.channel.shopify.internal.v0.enums.shopify_service'].isRequired,
|
|
1691
|
+
});
|
|
1692
|
+
|
|
1681
1693
|
T['io.flow.shopify.markets.v0.models.shopify_webhook_customers_data_request_id'] = PropTypes.exact({
|
|
1682
1694
|
id: PropTypes.number.isRequired,
|
|
1683
1695
|
});
|
|
@@ -1992,31 +2004,6 @@ T['io.flow.shopify.markets.v0.models.shop_wrapper'] = PropTypes.exact({
|
|
|
1992
2004
|
shop: T['io.flow.shopify.markets.v0.models.shop'].isRequired,
|
|
1993
2005
|
});
|
|
1994
2006
|
|
|
1995
|
-
T['io.flow.shopify.markets.v0.enums.shopify_order_transaction_error_code'] = PropTypes.oneOf([
|
|
1996
|
-
'incorrect_number',
|
|
1997
|
-
'invalid_number',
|
|
1998
|
-
'invalid_expiry_date',
|
|
1999
|
-
'invalid_cvc',
|
|
2000
|
-
'expired_card',
|
|
2001
|
-
'incorrect_cvc',
|
|
2002
|
-
'incorrect_zip',
|
|
2003
|
-
'incorrect_address',
|
|
2004
|
-
'card_declined',
|
|
2005
|
-
'processing_error',
|
|
2006
|
-
'call_issuer',
|
|
2007
|
-
'pick_up_card',
|
|
2008
|
-
]);
|
|
2009
|
-
|
|
2010
|
-
T['io.flow.shopify.markets.v0.models.shopify_order_payment_detail'] = PropTypes.exact({
|
|
2011
|
-
avs_result_code: PropTypes.string,
|
|
2012
|
-
credit_card_bin: PropTypes.string,
|
|
2013
|
-
credit_card_company: PropTypes.string.isRequired,
|
|
2014
|
-
credit_card_number: PropTypes.string.isRequired,
|
|
2015
|
-
cvv_result_code: PropTypes.string,
|
|
2016
|
-
});
|
|
2017
|
-
|
|
2018
|
-
T['io.flow.shopify.markets.v0.enums.shopify_order_transaction_status'] = PropTypes.oneOf(['pending', 'failure', 'success', 'error']);
|
|
2019
|
-
T['io.flow.shopify.markets.v0.enums.shopify_order_kind_type'] = PropTypes.oneOf(['authorization', 'capture', 'sale', 'void', 'refund']);
|
|
2020
2007
|
T['io.flow.shopify.markets.v0.enums.incoterm_duties'] = PropTypes.oneOf(['DAP', 'DDP']);
|
|
2021
2008
|
|
|
2022
2009
|
T['io.flow.shopify.markets.v0.models.fulfillment_order_international_duties'] = PropTypes.exact({
|
|
@@ -3384,6 +3371,8 @@ T['io.flow.adyen.v0.models.adyen_dispute_event'] = PropTypes.exact({
|
|
|
3384
3371
|
notificationItems: PropTypes.arrayOf(T['io.flow.adyen.v0.models.outer_notification_request_item']).isRequired,
|
|
3385
3372
|
});
|
|
3386
3373
|
|
|
3374
|
+
T['io.flow.channel.internal.v0.enums.order_payment_source_type'] = PropTypes.oneOf(['globale', 'third_party']);
|
|
3375
|
+
|
|
3387
3376
|
T['io.flow.channel.internal.v0.models.order_edit_summary'] = PropTypes.exact({
|
|
3388
3377
|
edited_at: PropTypes.string.isRequired,
|
|
3389
3378
|
});
|
|
@@ -3423,6 +3412,19 @@ T['io.flow.shopify.markets.internal.v0.models.shopify_markets_subsidiary_company
|
|
|
3423
3412
|
incorporation_country: T['io.flow.shopify.markets.internal.v0.models.shopify_markets_incorporation_country'],
|
|
3424
3413
|
});
|
|
3425
3414
|
|
|
3415
|
+
T['io.flow.channel.shopify.internal.v0.enums.catalog_publication_owner'] = PropTypes.oneOf(['shopify', 'globale']);
|
|
3416
|
+
|
|
3417
|
+
T['io.flow.channel.shopify.internal.v0.models.shopify_catalog_publication'] = PropTypes.exact({
|
|
3418
|
+
owner: T['io.flow.channel.shopify.internal.v0.enums.catalog_publication_owner'].isRequired,
|
|
3419
|
+
});
|
|
3420
|
+
|
|
3421
|
+
T['io.flow.channel.shopify.internal.v0.models.shopify_metadata'] = PropTypes.exact({
|
|
3422
|
+
domain: PropTypes.string.isRequired,
|
|
3423
|
+
myshopify_domain: PropTypes.string.isRequired,
|
|
3424
|
+
catalog_publication: T['io.flow.channel.shopify.internal.v0.models.shopify_catalog_publication'],
|
|
3425
|
+
token: PropTypes.string.isRequired,
|
|
3426
|
+
});
|
|
3427
|
+
|
|
3426
3428
|
T['io.flow.shopify.markets.internal.v0.models.shopify_markets_internal_order_metrics'] = PropTypes.exact({
|
|
3427
3429
|
total_order_count: PropTypes.number.isRequired,
|
|
3428
3430
|
});
|
|
@@ -3511,6 +3513,28 @@ T['io.flow.channel.internal.v0.enums.channel_order_acceptance_next_action_from']
|
|
|
3511
3513
|
'logistics_team',
|
|
3512
3514
|
]);
|
|
3513
3515
|
|
|
3516
|
+
T['io.flow.channel.internal.v0.models.channel_order_acceptance'] = PropTypes.exact({
|
|
3517
|
+
id: PropTypes.string.isRequired,
|
|
3518
|
+
organization_id: PropTypes.string.isRequired,
|
|
3519
|
+
order_number: PropTypes.string.isRequired,
|
|
3520
|
+
channel_id: PropTypes.string.isRequired,
|
|
3521
|
+
external_order_reference: PropTypes.string.isRequired,
|
|
3522
|
+
payment_request_id: PropTypes.string,
|
|
3523
|
+
order_edit_payment_request_ids: PropTypes.arrayOf(PropTypes.string),
|
|
3524
|
+
status: T['io.flow.channel.internal.v0.enums.channel_order_acceptance_status'].isRequired,
|
|
3525
|
+
reasons: PropTypes.arrayOf(T['io.flow.channel.internal.v0.models.channel_order_acceptance_reason']).isRequired,
|
|
3526
|
+
next_action_from: T['io.flow.channel.internal.v0.enums.channel_order_acceptance_next_action_from'],
|
|
3527
|
+
order_created_at: PropTypes.string,
|
|
3528
|
+
order_updated_at: PropTypes.string,
|
|
3529
|
+
order_edit_summary: T['io.flow.channel.internal.v0.models.order_edit_summary'],
|
|
3530
|
+
payment_source: T['io.flow.channel.internal.v0.enums.order_payment_source_type'],
|
|
3531
|
+
});
|
|
3532
|
+
|
|
3533
|
+
T['io.flow.channel.internal.v0.models.channel_order_acceptance_details'] = PropTypes.exact({
|
|
3534
|
+
order_acceptance: T['io.flow.channel.internal.v0.models.channel_order_acceptance'].isRequired,
|
|
3535
|
+
external_order: PropTypes.object.isRequired,
|
|
3536
|
+
});
|
|
3537
|
+
|
|
3514
3538
|
T['io.flow.shopify.markets.internal.v0.models.product_restriction_result_validation_error'] = PropTypes.exact({
|
|
3515
3539
|
message: PropTypes.string.isRequired,
|
|
3516
3540
|
reason: PropTypes.string.isRequired,
|
|
@@ -6689,7 +6713,7 @@ T['io.flow.payment.v0.models.capture_identifier'] = PropTypes.exact({
|
|
|
6689
6713
|
primary: PropTypes.bool.isRequired,
|
|
6690
6714
|
});
|
|
6691
6715
|
|
|
6692
|
-
T['io.flow.payment.v0.enums.payment_fee_type'] = PropTypes.oneOf(['fx', 'mor']);
|
|
6716
|
+
T['io.flow.payment.v0.enums.payment_fee_type'] = PropTypes.oneOf(['fx', 'mor', 'sp']);
|
|
6693
6717
|
|
|
6694
6718
|
T['io.flow.payment.v0.models.card_browser_action_configuration'] = PropTypes.exact({
|
|
6695
6719
|
discriminator: PropTypes.oneOf(['card_browser_action_configuration']).isRequired,
|
|
@@ -7574,13 +7598,6 @@ T['io.flow.return.v0.models.return_source_flow'] = PropTypes.exact({
|
|
|
7574
7598
|
attributes: PropTypes.objectOf(PropTypes.string),
|
|
7575
7599
|
});
|
|
7576
7600
|
|
|
7577
|
-
T['io.flow.label.v0.enums.package_dimensions_source'] = PropTypes.oneOf([
|
|
7578
|
-
'provided',
|
|
7579
|
-
'item_dimensions_estimated',
|
|
7580
|
-
'dimensions_estimated',
|
|
7581
|
-
'default_item_dimensions_estimated',
|
|
7582
|
-
]);
|
|
7583
|
-
|
|
7584
7601
|
T['io.flow.label.v0.models.label_order_summary'] = PropTypes.exact({
|
|
7585
7602
|
id: PropTypes.string.isRequired,
|
|
7586
7603
|
number: PropTypes.string.isRequired,
|
|
@@ -7798,13 +7815,6 @@ T['io.flow.common.v0.models.zone'] = PropTypes.exact({
|
|
|
7798
7815
|
country: PropTypes.string.isRequired,
|
|
7799
7816
|
});
|
|
7800
7817
|
|
|
7801
|
-
T['io.flow.fulfillment.v0.enums.item_availability_status'] = PropTypes.oneOf(['available', 'low', 'out_of_stock']);
|
|
7802
|
-
|
|
7803
|
-
T['io.flow.fulfillment.v0.models.country_availability'] = PropTypes.exact({
|
|
7804
|
-
status: T['io.flow.fulfillment.v0.enums.item_availability_status'].isRequired,
|
|
7805
|
-
countries: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
7806
|
-
});
|
|
7807
|
-
|
|
7808
7818
|
T['io.flow.experience.v0.models.experience_geo'] = PropTypes.exact({
|
|
7809
7819
|
key: PropTypes.string.isRequired,
|
|
7810
7820
|
name: PropTypes.string.isRequired,
|
|
@@ -8288,6 +8298,14 @@ T['io.flow.internal.v0.models.shopify_product_create_deleted'] = PropTypes.exact
|
|
|
8288
8298
|
id: PropTypes.string.isRequired,
|
|
8289
8299
|
});
|
|
8290
8300
|
|
|
8301
|
+
T['io.flow.internal.v0.models.shopify_order_transaction_deleted'] = PropTypes.exact({
|
|
8302
|
+
discriminator: PropTypes.oneOf(['shopify_order_transaction_deleted']).isRequired,
|
|
8303
|
+
event_id: PropTypes.string.isRequired,
|
|
8304
|
+
timestamp: PropTypes.string.isRequired,
|
|
8305
|
+
organization: PropTypes.string.isRequired,
|
|
8306
|
+
id: PropTypes.string.isRequired,
|
|
8307
|
+
});
|
|
8308
|
+
|
|
8291
8309
|
T['io.flow.internal.v0.models.shopify_order_risk_assessment_deleted'] = PropTypes.exact({
|
|
8292
8310
|
discriminator: PropTypes.oneOf(['shopify_order_risk_assessment_deleted']).isRequired,
|
|
8293
8311
|
event_id: PropTypes.string.isRequired,
|
|
@@ -8374,6 +8392,13 @@ T['io.flow.internal.v0.models.shopify_shop_deleted'] = PropTypes.exact({
|
|
|
8374
8392
|
id: PropTypes.string.isRequired,
|
|
8375
8393
|
});
|
|
8376
8394
|
|
|
8395
|
+
T['io.flow.internal.v0.models.taxonomy_category_hs6_ref_deleted'] = PropTypes.exact({
|
|
8396
|
+
discriminator: PropTypes.oneOf(['taxonomy_category_hs6_ref_deleted']).isRequired,
|
|
8397
|
+
event_id: PropTypes.string.isRequired,
|
|
8398
|
+
timestamp: PropTypes.string.isRequired,
|
|
8399
|
+
id: PropTypes.string.isRequired,
|
|
8400
|
+
});
|
|
8401
|
+
|
|
8377
8402
|
T['io.flow.internal.v0.models.restriction_rule_effect_deleted'] = PropTypes.exact({
|
|
8378
8403
|
discriminator: PropTypes.oneOf(['restriction_rule_effect_deleted']).isRequired,
|
|
8379
8404
|
event_id: PropTypes.string.isRequired,
|
|
@@ -9265,6 +9290,13 @@ T['io.flow.fulfillment.v0.models.available_service'] = PropTypes.exact({
|
|
|
9265
9290
|
lead_days: T['io.flow.fulfillment.v0.models.number_range'],
|
|
9266
9291
|
});
|
|
9267
9292
|
|
|
9293
|
+
T['io.flow.label.v0.enums.package_dimensions_source'] = PropTypes.oneOf([
|
|
9294
|
+
'provided',
|
|
9295
|
+
'item_dimensions_estimated',
|
|
9296
|
+
'dimensions_estimated',
|
|
9297
|
+
'default_item_dimensions_estimated',
|
|
9298
|
+
]);
|
|
9299
|
+
|
|
9268
9300
|
T['io.flow.label.v0.models.additional_services_requested'] = PropTypes.exact({
|
|
9269
9301
|
name: PropTypes.string.isRequired,
|
|
9270
9302
|
description: PropTypes.string,
|
|
@@ -9549,11 +9581,48 @@ T['io.flow.internal.v0.models.taxonomy_node'] = PropTypes.exact({
|
|
|
9549
9581
|
children: PropTypes.arrayOf(PropTypes.any),
|
|
9550
9582
|
});
|
|
9551
9583
|
|
|
9584
|
+
T['io.flow.internal.v0.models.taxonomy_category_hs6_ref'] = PropTypes.exact({
|
|
9585
|
+
id: PropTypes.string.isRequired,
|
|
9586
|
+
taxonomy_category: PropTypes.string.isRequired,
|
|
9587
|
+
hs6: PropTypes.string.isRequired,
|
|
9588
|
+
updated_by_user_id: PropTypes.string.isRequired,
|
|
9589
|
+
});
|
|
9590
|
+
|
|
9591
|
+
T['io.flow.internal.v0.models.taxonomy_category_hs6_ref_upserted'] = PropTypes.exact({
|
|
9592
|
+
discriminator: PropTypes.oneOf(['taxonomy_category_hs6_ref_upserted']).isRequired,
|
|
9593
|
+
event_id: PropTypes.string.isRequired,
|
|
9594
|
+
timestamp: PropTypes.string.isRequired,
|
|
9595
|
+
taxonomy_category_hs6_ref: T['io.flow.internal.v0.models.taxonomy_category_hs6_ref'].isRequired,
|
|
9596
|
+
});
|
|
9597
|
+
|
|
9552
9598
|
T['io.flow.internal.v0.models.billing_invoice_summary'] = PropTypes.exact({
|
|
9553
9599
|
id: PropTypes.string.isRequired,
|
|
9554
9600
|
url: PropTypes.string.isRequired,
|
|
9555
9601
|
});
|
|
9556
9602
|
|
|
9603
|
+
T['io.flow.billing.v0.enums.tax_duty_transaction_reason_code'] = PropTypes.oneOf([
|
|
9604
|
+
'post_capture',
|
|
9605
|
+
'post_fulfilment',
|
|
9606
|
+
'manual_payment_or_gift_card',
|
|
9607
|
+
'order_edit',
|
|
9608
|
+
'mixed_fulfilment_non_lvg',
|
|
9609
|
+
'lvg_refund',
|
|
9610
|
+
'order_cancellation_above_de_min',
|
|
9611
|
+
'wyol_shipment_above_de_min',
|
|
9612
|
+
'full_refund_without_shipment',
|
|
9613
|
+
'unfulfilled_order_above_de_min',
|
|
9614
|
+
]);
|
|
9615
|
+
|
|
9616
|
+
T['io.flow.billing.v0.models.transaction_metadata_tax_duty'] = PropTypes.exact({
|
|
9617
|
+
discriminator: PropTypes.oneOf(['transaction_tax_duty']).isRequired,
|
|
9618
|
+
reason_code: T['io.flow.billing.v0.enums.tax_duty_transaction_reason_code'].isRequired,
|
|
9619
|
+
});
|
|
9620
|
+
|
|
9621
|
+
T['io.flow.internal.v0.models.tax_duty_reason_code_metadata'] = PropTypes.exact({
|
|
9622
|
+
discriminator: PropTypes.oneOf(['tax_duty_reason_code_metadata']).isRequired,
|
|
9623
|
+
reason_code: T['io.flow.billing.v0.enums.tax_duty_transaction_reason_code'].isRequired,
|
|
9624
|
+
});
|
|
9625
|
+
|
|
9557
9626
|
T['io.flow.internal.v0.enums.tax_calculation_error_code'] = PropTypes.oneOf(['generic_error', 'outside_of_jurisdiction']);
|
|
9558
9627
|
|
|
9559
9628
|
T['io.flow.internal.v0.models.tax_calculation_error'] = PropTypes.exact({
|
|
@@ -9714,6 +9783,7 @@ T['io.flow.internal.v0.models.stripe_connect_report_record_transfer_metadata'] =
|
|
|
9714
9783
|
import_taxes: PropTypes.number,
|
|
9715
9784
|
mor_fees: PropTypes.number,
|
|
9716
9785
|
mor_foreign_exchange_fees: PropTypes.number,
|
|
9786
|
+
sp_processing_fees: PropTypes.number,
|
|
9717
9787
|
merchant_account_currency: PropTypes.string,
|
|
9718
9788
|
amount_in_merchant_account_currency: PropTypes.number,
|
|
9719
9789
|
payout_exchange_rate: PropTypes.number,
|
|
@@ -10319,6 +10389,32 @@ T['io.flow.internal.v0.models.shopify_product_bundle_upserted'] = PropTypes.exac
|
|
|
10319
10389
|
shopify_product_bundle: T['io.flow.internal.v0.models.shopify_product_bundle'].isRequired,
|
|
10320
10390
|
});
|
|
10321
10391
|
|
|
10392
|
+
T['io.flow.shopify.markets.v0.enums.shopify_order_transaction_error_code'] = PropTypes.oneOf([
|
|
10393
|
+
'incorrect_number',
|
|
10394
|
+
'invalid_number',
|
|
10395
|
+
'invalid_expiry_date',
|
|
10396
|
+
'invalid_cvc',
|
|
10397
|
+
'expired_card',
|
|
10398
|
+
'incorrect_cvc',
|
|
10399
|
+
'incorrect_zip',
|
|
10400
|
+
'incorrect_address',
|
|
10401
|
+
'card_declined',
|
|
10402
|
+
'processing_error',
|
|
10403
|
+
'call_issuer',
|
|
10404
|
+
'pick_up_card',
|
|
10405
|
+
]);
|
|
10406
|
+
|
|
10407
|
+
T['io.flow.shopify.markets.v0.models.shopify_order_payment_detail'] = PropTypes.exact({
|
|
10408
|
+
avs_result_code: PropTypes.string,
|
|
10409
|
+
credit_card_bin: PropTypes.string,
|
|
10410
|
+
credit_card_company: PropTypes.string.isRequired,
|
|
10411
|
+
credit_card_number: PropTypes.string.isRequired,
|
|
10412
|
+
cvv_result_code: PropTypes.string,
|
|
10413
|
+
});
|
|
10414
|
+
|
|
10415
|
+
T['io.flow.shopify.markets.v0.enums.shopify_order_transaction_status'] = PropTypes.oneOf(['pending', 'failure', 'success', 'error']);
|
|
10416
|
+
T['io.flow.shopify.markets.v0.enums.shopify_order_kind_type'] = PropTypes.oneOf(['authorization', 'capture', 'sale', 'void', 'refund']);
|
|
10417
|
+
|
|
10322
10418
|
T['io.flow.internal.v0.models.shopify_order_risk_assessment'] = PropTypes.exact({
|
|
10323
10419
|
id: PropTypes.string.isRequired,
|
|
10324
10420
|
risk_level: PropTypes.string.isRequired,
|
|
@@ -10423,6 +10519,7 @@ T['io.flow.internal.v0.models.stripe_connect_report_record_payment_metadata'] =
|
|
|
10423
10519
|
import_taxes: PropTypes.number,
|
|
10424
10520
|
mor_fees: PropTypes.number,
|
|
10425
10521
|
mor_foreign_exchange_fees: PropTypes.number,
|
|
10522
|
+
sp_processing_fees: PropTypes.number,
|
|
10426
10523
|
});
|
|
10427
10524
|
|
|
10428
10525
|
T['io.flow.internal.v0.unions.stripe_connect_report_record_metadata'] = PropTypes.oneOfType([
|
|
@@ -10622,17 +10719,7 @@ T['io.flow.shopify.markets.internal.v0.models.shopify_markets_shop_form'] = Prop
|
|
|
10622
10719
|
api_password: PropTypes.string,
|
|
10623
10720
|
access_token: PropTypes.string,
|
|
10624
10721
|
shopify_plan_name: T['io.flow.shopify.external.v0.enums.shopify_plan_name'],
|
|
10625
|
-
|
|
10626
|
-
|
|
10627
|
-
T['io.flow.internal.v0.models.shopify_markets_shop_form'] = PropTypes.exact({
|
|
10628
|
-
shop: PropTypes.string.isRequired,
|
|
10629
|
-
domain: PropTypes.string.isRequired,
|
|
10630
|
-
myshopify_domain: PropTypes.string.isRequired,
|
|
10631
|
-
shared_secret: PropTypes.string.isRequired,
|
|
10632
|
-
api_key: PropTypes.string,
|
|
10633
|
-
api_password: PropTypes.string,
|
|
10634
|
-
access_token: PropTypes.string,
|
|
10635
|
-
shopify_plan_name: T['io.flow.shopify.external.v0.enums.shopify_plan_name'],
|
|
10722
|
+
catalog_publication_owner: T['io.flow.channel.shopify.internal.v0.enums.catalog_publication_owner'],
|
|
10636
10723
|
});
|
|
10637
10724
|
|
|
10638
10725
|
T['io.flow.internal.v0.models.shopify_markets_internal_order_metrics'] = PropTypes.exact({
|
|
@@ -10883,6 +10970,19 @@ T['io.flow.internal.v0.models.shopify_check_inventory_error'] = PropTypes.exact(
|
|
|
10883
10970
|
});
|
|
10884
10971
|
|
|
10885
10972
|
T['io.flow.internal.v0.enums.catalog_publication_owner'] = PropTypes.oneOf(['shopify', 'globale']);
|
|
10973
|
+
|
|
10974
|
+
T['io.flow.internal.v0.models.shopify_markets_shop_form'] = PropTypes.exact({
|
|
10975
|
+
shop: PropTypes.string.isRequired,
|
|
10976
|
+
domain: PropTypes.string.isRequired,
|
|
10977
|
+
myshopify_domain: PropTypes.string.isRequired,
|
|
10978
|
+
shared_secret: PropTypes.string.isRequired,
|
|
10979
|
+
api_key: PropTypes.string,
|
|
10980
|
+
api_password: PropTypes.string,
|
|
10981
|
+
access_token: PropTypes.string,
|
|
10982
|
+
shopify_plan_name: T['io.flow.shopify.external.v0.enums.shopify_plan_name'],
|
|
10983
|
+
catalog_publication_owner: T['io.flow.internal.v0.enums.catalog_publication_owner'],
|
|
10984
|
+
});
|
|
10985
|
+
|
|
10886
10986
|
T['io.flow.fulfillment.v0.enums.ratecard_owner'] = PropTypes.oneOf(['flow', 'organization']);
|
|
10887
10987
|
|
|
10888
10988
|
T['io.flow.ratecard.v0.models.ratecard_summary'] = PropTypes.exact({
|
|
@@ -11176,6 +11276,16 @@ T['io.flow.internal.v0.models.restrictions_dailyops'] = PropTypes.exact({
|
|
|
11176
11276
|
oldest_insufficient_details_pv_onboarding: PropTypes.string,
|
|
11177
11277
|
oldest_insufficient_details_pv_active: PropTypes.string,
|
|
11178
11278
|
oldest_insufficient_details_pv_transacting: PropTypes.string,
|
|
11279
|
+
num_products_with_fs_result: PropTypes.number,
|
|
11280
|
+
num_products_sellable_somewhere_by_fs: PropTypes.number,
|
|
11281
|
+
num_products_restricted_somewhere_by_fs: PropTypes.number,
|
|
11282
|
+
num_products_with_false_allows_by_fs: PropTypes.number,
|
|
11283
|
+
num_products_with_false_restricts_by_fs: PropTypes.number,
|
|
11284
|
+
daily_num_products_with_fs_result: PropTypes.number,
|
|
11285
|
+
daily_num_products_sellable_somewhere_by_fs: PropTypes.number,
|
|
11286
|
+
daily_num_products_restricted_somewhere_by_fs: PropTypes.number,
|
|
11287
|
+
daily_num_products_with_false_allows_by_fs: PropTypes.number,
|
|
11288
|
+
daily_num_products_with_false_restricts_by_fs: PropTypes.number,
|
|
11179
11289
|
});
|
|
11180
11290
|
|
|
11181
11291
|
T['io.flow.internal.v0.models.restrictions_dailyops_upserted'] = PropTypes.exact({
|
|
@@ -11185,43 +11295,6 @@ T['io.flow.internal.v0.models.restrictions_dailyops_upserted'] = PropTypes.exact
|
|
|
11185
11295
|
restrictions_dailyops: T['io.flow.internal.v0.models.restrictions_dailyops'].isRequired,
|
|
11186
11296
|
});
|
|
11187
11297
|
|
|
11188
|
-
T['io.flow.sellability.v0.enums.rule_effect_type'] = PropTypes.oneOf(['market', 'dhl', 'dhl_ecommerce', 'ups']);
|
|
11189
|
-
|
|
11190
|
-
T['io.flow.sellability.v0.models.sellablility_region_result'] = PropTypes.exact({
|
|
11191
|
-
type: T['io.flow.sellability.v0.enums.rule_effect_type'].isRequired,
|
|
11192
|
-
regions: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
11193
|
-
});
|
|
11194
|
-
|
|
11195
|
-
T['io.flow.sellability.v0.models.product_sellability'] = PropTypes.exact({
|
|
11196
|
-
shop_id: PropTypes.string.isRequired,
|
|
11197
|
-
product_id: PropTypes.string,
|
|
11198
|
-
request_id: PropTypes.string.isRequired,
|
|
11199
|
-
hs6_code: PropTypes.string.isRequired,
|
|
11200
|
-
restricted_regions: PropTypes.arrayOf(T['io.flow.sellability.v0.models.sellablility_region_result']).isRequired,
|
|
11201
|
-
});
|
|
11202
|
-
|
|
11203
|
-
T['io.flow.internal.v0.models.restriction_rule_effect_form'] = PropTypes.exact({
|
|
11204
|
-
rule_id: PropTypes.string.isRequired,
|
|
11205
|
-
effect: T['io.flow.sellability.v0.enums.rule_effect_type'].isRequired,
|
|
11206
|
-
regions: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
11207
|
-
description: PropTypes.string,
|
|
11208
|
-
});
|
|
11209
|
-
|
|
11210
|
-
T['io.flow.internal.v0.models.restriction_rule_effect'] = PropTypes.exact({
|
|
11211
|
-
id: PropTypes.string.isRequired,
|
|
11212
|
-
rule_id: PropTypes.string.isRequired,
|
|
11213
|
-
effect: T['io.flow.sellability.v0.enums.rule_effect_type'].isRequired,
|
|
11214
|
-
regions: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
11215
|
-
description: PropTypes.string,
|
|
11216
|
-
});
|
|
11217
|
-
|
|
11218
|
-
T['io.flow.internal.v0.models.restriction_rule_effect_upserted'] = PropTypes.exact({
|
|
11219
|
-
discriminator: PropTypes.oneOf(['restriction_rule_effect_upserted']).isRequired,
|
|
11220
|
-
event_id: PropTypes.string.isRequired,
|
|
11221
|
-
timestamp: PropTypes.string.isRequired,
|
|
11222
|
-
restriction_rule_effect: T['io.flow.internal.v0.models.restriction_rule_effect'].isRequired,
|
|
11223
|
-
});
|
|
11224
|
-
|
|
11225
11298
|
T['io.flow.internal.v0.enums.restriction_organization_source'] = PropTypes.oneOf(['shopify', 'enterprise']);
|
|
11226
11299
|
T['io.flow.internal.v0.enums.restriction_action'] = PropTypes.oneOf(['prohibited', 'restricted']);
|
|
11227
11300
|
T['io.flow.internal.v0.enums.organization_source'] = PropTypes.oneOf(['shopify', 'enterprise']);
|
|
@@ -11229,6 +11302,7 @@ T['io.flow.internal.v0.enums.organization_source'] = PropTypes.oneOf(['shopify',
|
|
|
11229
11302
|
T['io.flow.internal.v0.models.restriction_summary_counts'] = PropTypes.exact({
|
|
11230
11303
|
pending_restriction_count: PropTypes.number.isRequired,
|
|
11231
11304
|
pending_verification_count: PropTypes.number.isRequired,
|
|
11305
|
+
pending_classification_count: PropTypes.number.isRequired,
|
|
11232
11306
|
});
|
|
11233
11307
|
|
|
11234
11308
|
T['io.flow.internal.v0.enums.restriction_decision'] = PropTypes.oneOf(['accept', 'escalate', 'reject', 'review']);
|
|
@@ -11345,11 +11419,6 @@ T['io.flow.internal.v0.models.report_organization_reference'] = PropTypes.exact(
|
|
|
11345
11419
|
});
|
|
11346
11420
|
|
|
11347
11421
|
T['io.flow.internal.v0.enums.source_type_filter'] = PropTypes.oneOf(['organization', 'channel']);
|
|
11348
|
-
|
|
11349
|
-
T['io.flow.internal.v0.models.report_filter'] = PropTypes.exact({
|
|
11350
|
-
source_type: T['io.flow.internal.v0.enums.source_type_filter'],
|
|
11351
|
-
});
|
|
11352
|
-
|
|
11353
11422
|
T['io.flow.internal.v0.enums.report_file_status'] = PropTypes.oneOf(['processing', 'failed', 'succeeded']);
|
|
11354
11423
|
|
|
11355
11424
|
T['io.flow.internal.v0.enums.merchant_of_record'] = PropTypes.oneOf([
|
|
@@ -11397,17 +11466,6 @@ T['io.flow.internal.v0.enums.report_type'] = PropTypes.oneOf([
|
|
|
11397
11466
|
'disputes',
|
|
11398
11467
|
]);
|
|
11399
11468
|
|
|
11400
|
-
T['io.flow.internal.v0.models.report_form'] = PropTypes.exact({
|
|
11401
|
-
type: T['io.flow.internal.v0.enums.report_type'].isRequired,
|
|
11402
|
-
from: PropTypes.string,
|
|
11403
|
-
to: PropTypes.string,
|
|
11404
|
-
payment_type: T['io.flow.internal.v0.enums.report_payment_type'],
|
|
11405
|
-
organizations: PropTypes.arrayOf(T['io.flow.internal.v0.models.report_organization_reference']),
|
|
11406
|
-
orders: PropTypes.arrayOf(T['io.flow.internal.v0.models.report_order_reference']),
|
|
11407
|
-
recipients: PropTypes.arrayOf(PropTypes.string),
|
|
11408
|
-
filter: T['io.flow.internal.v0.models.report_filter'],
|
|
11409
|
-
});
|
|
11410
|
-
|
|
11411
11469
|
T['io.flow.internal.v0.enums.report_status'] = PropTypes.oneOf(['created', 'completed', 'completed_no_records', 'failed']);
|
|
11412
11470
|
|
|
11413
11471
|
T['io.flow.internal.v0.models.report'] = PropTypes.exact({
|
|
@@ -11640,6 +11698,58 @@ T['io.flow.internal.v0.models.quote_upserted'] = PropTypes.exact({
|
|
|
11640
11698
|
quote: T['io.flow.internal.v0.models.quote'].isRequired,
|
|
11641
11699
|
});
|
|
11642
11700
|
|
|
11701
|
+
T['io.flow.sellability.v0.enums.rule_effect_type'] = PropTypes.oneOf(['market', 'dhl', 'dhl_ecommerce', 'ups']);
|
|
11702
|
+
|
|
11703
|
+
T['io.flow.internal.v0.models.restriction_rule_effect_form'] = PropTypes.exact({
|
|
11704
|
+
rule_id: PropTypes.string.isRequired,
|
|
11705
|
+
effect: T['io.flow.sellability.v0.enums.rule_effect_type'].isRequired,
|
|
11706
|
+
regions: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
11707
|
+
description: PropTypes.string,
|
|
11708
|
+
});
|
|
11709
|
+
|
|
11710
|
+
T['io.flow.internal.v0.models.restriction_rule_effect'] = PropTypes.exact({
|
|
11711
|
+
id: PropTypes.string.isRequired,
|
|
11712
|
+
rule_id: PropTypes.string.isRequired,
|
|
11713
|
+
effect: T['io.flow.sellability.v0.enums.rule_effect_type'].isRequired,
|
|
11714
|
+
regions: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
11715
|
+
description: PropTypes.string,
|
|
11716
|
+
});
|
|
11717
|
+
|
|
11718
|
+
T['io.flow.internal.v0.models.restriction_rule_effect_upserted'] = PropTypes.exact({
|
|
11719
|
+
discriminator: PropTypes.oneOf(['restriction_rule_effect_upserted']).isRequired,
|
|
11720
|
+
event_id: PropTypes.string.isRequired,
|
|
11721
|
+
timestamp: PropTypes.string.isRequired,
|
|
11722
|
+
restriction_rule_effect: T['io.flow.internal.v0.models.restriction_rule_effect'].isRequired,
|
|
11723
|
+
});
|
|
11724
|
+
|
|
11725
|
+
T['io.flow.sellability.v0.models.sellablility_region_result'] = PropTypes.exact({
|
|
11726
|
+
type: T['io.flow.sellability.v0.enums.rule_effect_type'].isRequired,
|
|
11727
|
+
regions: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
11728
|
+
});
|
|
11729
|
+
|
|
11730
|
+
T['io.flow.sellability.v0.models.product_sellability'] = PropTypes.exact({
|
|
11731
|
+
discriminator: PropTypes.oneOf(['product_sellability']).isRequired,
|
|
11732
|
+
shop_id: PropTypes.string.isRequired,
|
|
11733
|
+
product_id: PropTypes.string,
|
|
11734
|
+
request_id: PropTypes.string.isRequired,
|
|
11735
|
+
hs6_code: PropTypes.string.isRequired,
|
|
11736
|
+
restricted_regions: PropTypes.arrayOf(T['io.flow.sellability.v0.models.sellablility_region_result']).isRequired,
|
|
11737
|
+
});
|
|
11738
|
+
|
|
11739
|
+
T['io.flow.sellability.v0.unions.sellability_response'] = PropTypes.oneOfType([
|
|
11740
|
+
T['io.flow.sellability.v0.models.product_sellability'],
|
|
11741
|
+
T['io.flow.sellability.v0.models.sellability_error'],
|
|
11742
|
+
]);
|
|
11743
|
+
|
|
11744
|
+
T['io.flow.internal.v0.models.product_sellability_internal'] = PropTypes.exact({
|
|
11745
|
+
shop_id: PropTypes.string.isRequired,
|
|
11746
|
+
product_id: PropTypes.string,
|
|
11747
|
+
request_id: PropTypes.string.isRequired,
|
|
11748
|
+
hs6_code: PropTypes.string.isRequired,
|
|
11749
|
+
restricted_regions: PropTypes.arrayOf(T['io.flow.sellability.v0.models.sellablility_region_result']).isRequired,
|
|
11750
|
+
rule_ids: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
11751
|
+
});
|
|
11752
|
+
|
|
11643
11753
|
T['io.flow.internal.v0.models.restriction_keywords'] = PropTypes.exact({
|
|
11644
11754
|
positive_keywords: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
11645
11755
|
negative_keywords: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
@@ -11660,6 +11770,7 @@ T['io.flow.internal.v0.models.product_restriction_state'] = PropTypes.exact({
|
|
|
11660
11770
|
review_status: T['io.flow.internal.v0.enums.restriction_state_review_status'].isRequired,
|
|
11661
11771
|
pending_restriction_count: PropTypes.number,
|
|
11662
11772
|
pending_verification_count: PropTypes.number,
|
|
11773
|
+
pending_classification_count: PropTypes.number,
|
|
11663
11774
|
oldest_pending_restriction_date: PropTypes.string,
|
|
11664
11775
|
oldest_pending_verification_date: PropTypes.string,
|
|
11665
11776
|
});
|
|
@@ -12234,6 +12345,7 @@ T['io.flow.internal.v0.models.organization_metadata'] = PropTypes.exact({
|
|
|
12234
12345
|
organization_id: PropTypes.string.isRequired,
|
|
12235
12346
|
pending_restriction_count: PropTypes.number.isRequired,
|
|
12236
12347
|
pending_verification_count: PropTypes.number.isRequired,
|
|
12348
|
+
pending_classification_count: PropTypes.number,
|
|
12237
12349
|
oldest_pending_restriction_date: PropTypes.string,
|
|
12238
12350
|
oldest_pending_verification_date: PropTypes.string,
|
|
12239
12351
|
product_count: PropTypes.number.isRequired,
|
|
@@ -12768,7 +12880,13 @@ T['io.flow.internal.v0.models.merchant_search_result'] = PropTypes.exact({
|
|
|
12768
12880
|
shop_domain: PropTypes.string,
|
|
12769
12881
|
});
|
|
12770
12882
|
|
|
12771
|
-
T['io.flow.internal.v0.
|
|
12883
|
+
T['io.flow.internal.v0.models.evaluation_results'] = PropTypes.exact({
|
|
12884
|
+
chapter_result: PropTypes.object.isRequired,
|
|
12885
|
+
sellability_result: PropTypes.object.isRequired,
|
|
12886
|
+
duty_variance_result: PropTypes.object.isRequired,
|
|
12887
|
+
});
|
|
12888
|
+
|
|
12889
|
+
T['io.flow.internal.v0.enums.merchant_override_status'] = PropTypes.oneOf(['pending', 'in_review', 'accepted', 'rejected']);
|
|
12772
12890
|
|
|
12773
12891
|
T['io.flow.internal.v0.models.merchant_override_decision_form'] = PropTypes.exact({
|
|
12774
12892
|
id: PropTypes.string.isRequired,
|
|
@@ -12782,6 +12900,7 @@ T['io.flow.internal.v0.models.merchant_override'] = PropTypes.exact({
|
|
|
12782
12900
|
status: T['io.flow.internal.v0.enums.merchant_override_status'].isRequired,
|
|
12783
12901
|
hs6_code: PropTypes.string.isRequired,
|
|
12784
12902
|
merchant_hs6_code: PropTypes.string.isRequired,
|
|
12903
|
+
evaluation_results: T['io.flow.internal.v0.models.evaluation_results'],
|
|
12785
12904
|
created_at: PropTypes.string.isRequired,
|
|
12786
12905
|
updated_at: PropTypes.string.isRequired,
|
|
12787
12906
|
updated_by_user_id: PropTypes.string.isRequired,
|
|
@@ -12879,10 +12998,36 @@ T['io.flow.shopify.markets.v0.models.shopify_order_transaction'] = PropTypes.exa
|
|
|
12879
12998
|
user_id: PropTypes.number,
|
|
12880
12999
|
});
|
|
12881
13000
|
|
|
13001
|
+
T['io.flow.shopify.markets.internal.event.v0.models.shopify_order_transaction'] = PropTypes.exact({
|
|
13002
|
+
id: PropTypes.string.isRequired,
|
|
13003
|
+
model: T['io.flow.shopify.markets.v0.models.shopify_order_transaction'].isRequired,
|
|
13004
|
+
});
|
|
13005
|
+
|
|
13006
|
+
T['io.flow.shopify.markets.internal.event.v0.models.shopify_order_transaction_upserted'] = PropTypes.exact({
|
|
13007
|
+
discriminator: PropTypes.oneOf(['shopify_order_transaction_upserted']).isRequired,
|
|
13008
|
+
event_id: PropTypes.string.isRequired,
|
|
13009
|
+
timestamp: PropTypes.string.isRequired,
|
|
13010
|
+
organization: PropTypes.string.isRequired,
|
|
13011
|
+
transaction: T['io.flow.shopify.markets.internal.event.v0.models.shopify_order_transaction'].isRequired,
|
|
13012
|
+
});
|
|
13013
|
+
|
|
12882
13014
|
T['io.flow.shopify.markets.v0.models.response_shopify_transactions'] = PropTypes.exact({
|
|
12883
13015
|
transactions: PropTypes.arrayOf(T['io.flow.shopify.markets.v0.models.shopify_order_transaction']).isRequired,
|
|
12884
13016
|
});
|
|
12885
13017
|
|
|
13018
|
+
T['io.flow.internal.v0.models.shopify_order_transaction'] = PropTypes.exact({
|
|
13019
|
+
id: PropTypes.string.isRequired,
|
|
13020
|
+
model: T['io.flow.shopify.markets.v0.models.shopify_order_transaction'].isRequired,
|
|
13021
|
+
});
|
|
13022
|
+
|
|
13023
|
+
T['io.flow.internal.v0.models.shopify_order_transaction_upserted'] = PropTypes.exact({
|
|
13024
|
+
discriminator: PropTypes.oneOf(['shopify_order_transaction_upserted']).isRequired,
|
|
13025
|
+
event_id: PropTypes.string.isRequired,
|
|
13026
|
+
timestamp: PropTypes.string.isRequired,
|
|
13027
|
+
organization: PropTypes.string.isRequired,
|
|
13028
|
+
transaction: T['io.flow.internal.v0.models.shopify_order_transaction'].isRequired,
|
|
13029
|
+
});
|
|
13030
|
+
|
|
12886
13031
|
T['io.flow.shopify.markets.v0.enums.shopify_order_inventory_behaviour'] = PropTypes.oneOf(['bypass', 'decrement_ignoring_policy', 'decrement_obeying_policy']);
|
|
12887
13032
|
T['io.flow.shopify.markets.v0.enums.shopify_order_processing_method_type'] = PropTypes.oneOf(['checkout', 'direct', 'manual', 'offsite', 'express', 'deferred_payment']);
|
|
12888
13033
|
|
|
@@ -13848,7 +13993,8 @@ T['io.flow.internal.v0.models.item_sales_margin'] = PropTypes.exact({
|
|
|
13848
13993
|
position: PropTypes.number.isRequired,
|
|
13849
13994
|
});
|
|
13850
13995
|
|
|
13851
|
-
T['io.flow.internal.v0.enums.
|
|
13996
|
+
T['io.flow.internal.v0.enums.classification_scope'] = PropTypes.oneOf(['Item', 'Product']);
|
|
13997
|
+
T['io.flow.internal.v0.enums.harmonization_decision_source'] = PropTypes.oneOf(['human', 'system', 'legacy_model', 'enterprise_model', 'merchant']);
|
|
13852
13998
|
T['io.flow.internal.v0.enums.item_type'] = PropTypes.oneOf(['standard', 'multi_product']);
|
|
13853
13999
|
|
|
13854
14000
|
T['io.flow.common.v0.models.item_reference'] = PropTypes.exact({
|
|
@@ -15696,13 +15842,6 @@ T['io.flow.internal.v0.models.duty_rate'] = PropTypes.exact({
|
|
|
15696
15842
|
created_at: PropTypes.string.isRequired,
|
|
15697
15843
|
});
|
|
15698
15844
|
|
|
15699
|
-
T['io.flow.internal.v0.models.reporting_order_summary'] = PropTypes.exact({
|
|
15700
|
-
id: PropTypes.string.isRequired,
|
|
15701
|
-
number: PropTypes.string.isRequired,
|
|
15702
|
-
submitted_at: PropTypes.string.isRequired,
|
|
15703
|
-
payment_source: PropTypes.string,
|
|
15704
|
-
});
|
|
15705
|
-
|
|
15706
15845
|
T['io.flow.internal.v0.models.reporting_authorization_reference'] = PropTypes.exact({
|
|
15707
15846
|
id: PropTypes.string.isRequired,
|
|
15708
15847
|
});
|
|
@@ -16239,6 +16378,31 @@ T['io.flow.order.price.v0.enums.order_price_detail_key'] = PropTypes.oneOf([
|
|
|
16239
16378
|
'tip',
|
|
16240
16379
|
]);
|
|
16241
16380
|
|
|
16381
|
+
T['io.flow.experience.v0.enums.order_payment_source_type'] = PropTypes.oneOf(['globale', 'third_party']);
|
|
16382
|
+
|
|
16383
|
+
T['io.flow.internal.v0.models.report_filter'] = PropTypes.exact({
|
|
16384
|
+
source_type: T['io.flow.internal.v0.enums.source_type_filter'],
|
|
16385
|
+
order_payment_source: T['io.flow.experience.v0.enums.order_payment_source_type'],
|
|
16386
|
+
});
|
|
16387
|
+
|
|
16388
|
+
T['io.flow.internal.v0.models.report_form'] = PropTypes.exact({
|
|
16389
|
+
type: T['io.flow.internal.v0.enums.report_type'].isRequired,
|
|
16390
|
+
from: PropTypes.string,
|
|
16391
|
+
to: PropTypes.string,
|
|
16392
|
+
payment_type: T['io.flow.internal.v0.enums.report_payment_type'],
|
|
16393
|
+
organizations: PropTypes.arrayOf(T['io.flow.internal.v0.models.report_organization_reference']),
|
|
16394
|
+
orders: PropTypes.arrayOf(T['io.flow.internal.v0.models.report_order_reference']),
|
|
16395
|
+
recipients: PropTypes.arrayOf(PropTypes.string),
|
|
16396
|
+
filter: T['io.flow.internal.v0.models.report_filter'],
|
|
16397
|
+
});
|
|
16398
|
+
|
|
16399
|
+
T['io.flow.internal.v0.models.reporting_order_summary'] = PropTypes.exact({
|
|
16400
|
+
id: PropTypes.string.isRequired,
|
|
16401
|
+
number: PropTypes.string.isRequired,
|
|
16402
|
+
submitted_at: PropTypes.string.isRequired,
|
|
16403
|
+
payment_source: T['io.flow.experience.v0.enums.order_payment_source_type'],
|
|
16404
|
+
});
|
|
16405
|
+
|
|
16242
16406
|
T['io.flow.label.v0.models.shipping_label_lane_summary'] = PropTypes.exact({
|
|
16243
16407
|
id: PropTypes.string,
|
|
16244
16408
|
ratecard: T['io.flow.label.v0.models.shipping_label_ratecard_summary'].isRequired,
|
|
@@ -16427,6 +16591,40 @@ T['io.flow.internal.v0.enums.billing_metric_key'] = PropTypes.oneOf([
|
|
|
16427
16591
|
'fourth_plus_attempt_failed_merchant_count',
|
|
16428
16592
|
'fourth_plus_attempt_failed_amount_total',
|
|
16429
16593
|
'fourth_plus_attempt_success_ratio',
|
|
16594
|
+
'ge_revenue_share_standard_transactions_count',
|
|
16595
|
+
'ge_revenue_share_standard_transactions_total',
|
|
16596
|
+
'ge_revenue_share_shopify_plus_transactions_count',
|
|
16597
|
+
'ge_revenue_share_shopify_plus_transactions_total',
|
|
16598
|
+
'non_l4l_tax_duty_fx_transactions_count',
|
|
16599
|
+
'non_l4l_tax_duty_fx_transactions_total',
|
|
16600
|
+
'sp_adjustment_transactions_count',
|
|
16601
|
+
'sp_adjustment_transactions_total',
|
|
16602
|
+
'sp_billable_label_transactions_count',
|
|
16603
|
+
'sp_billable_label_transactions_count_for_unique_orders',
|
|
16604
|
+
'sp_billable_label_transactions_total',
|
|
16605
|
+
'sp_capture_transactions_count',
|
|
16606
|
+
'sp_capture_transactions_total',
|
|
16607
|
+
'sp_carrier_charge_transactions_count',
|
|
16608
|
+
'sp_carrier_charge_transactions_total',
|
|
16609
|
+
'sp_channel_transactions_count',
|
|
16610
|
+
'sp_channel_transactions_total',
|
|
16611
|
+
'sp_duty_transactions_count',
|
|
16612
|
+
'sp_duty_transactions_total',
|
|
16613
|
+
'sp_manual_transactions_count',
|
|
16614
|
+
'sp_manual_transactions_total',
|
|
16615
|
+
'sp_refund_transactions_count',
|
|
16616
|
+
'sp_refund_transactions_total',
|
|
16617
|
+
'sp_reversal_transactions_count',
|
|
16618
|
+
'sp_reversal_transactions_total',
|
|
16619
|
+
'sp_revenue_share_label_transactions_count',
|
|
16620
|
+
'sp_revenue_share_label_transactions_count_for_unique_orders',
|
|
16621
|
+
'sp_revenue_share_label_transactions_total',
|
|
16622
|
+
'sp_tax_transactions_count',
|
|
16623
|
+
'sp_tax_transactions_total',
|
|
16624
|
+
'sp_transfer_transactions_count',
|
|
16625
|
+
'sp_transfer_transactions_total',
|
|
16626
|
+
'sp_trueup_transactions_count',
|
|
16627
|
+
'sp_trueup_transactions_total',
|
|
16430
16628
|
]);
|
|
16431
16629
|
|
|
16432
16630
|
T['io.flow.internal.v0.models.daily_value'] = PropTypes.exact({
|
|
@@ -16921,6 +17119,7 @@ T['io.flow.internal.v0.models.item_harmonization'] = PropTypes.exact({
|
|
|
16921
17119
|
status: T['io.flow.internal.v0.enums.item_harmonization_status'].isRequired,
|
|
16922
17120
|
tariffs: PropTypes.objectOf(T['io.flow.internal.v0.models.tariff_code_duty']),
|
|
16923
17121
|
decision_source: T['io.flow.internal.v0.enums.harmonization_decision_source'],
|
|
17122
|
+
classification_scope: T['io.flow.internal.v0.enums.classification_scope'],
|
|
16924
17123
|
created_at: PropTypes.string,
|
|
16925
17124
|
updated_at: PropTypes.string,
|
|
16926
17125
|
updated_by_user_id: PropTypes.string,
|
|
@@ -17506,6 +17705,11 @@ T['io.flow.channel.v0.models.channel_organization_form'] = PropTypes.exact({
|
|
|
17506
17705
|
attributes: PropTypes.objectOf(PropTypes.string),
|
|
17507
17706
|
});
|
|
17508
17707
|
|
|
17708
|
+
T['io.flow.channel.shopify.internal.v0.models.channel_organization_shopify_post_form'] = PropTypes.exact({
|
|
17709
|
+
form: T['io.flow.channel.v0.models.channel_organization_form'].isRequired,
|
|
17710
|
+
metadata: T['io.flow.channel.shopify.internal.v0.models.shopify_metadata'].isRequired,
|
|
17711
|
+
});
|
|
17712
|
+
|
|
17509
17713
|
T['io.flow.internal.v0.models.channel_organization_shopify_post_form'] = PropTypes.exact({
|
|
17510
17714
|
form: T['io.flow.channel.v0.models.channel_organization_form'].isRequired,
|
|
17511
17715
|
metadata: T['io.flow.internal.v0.models.shopify_metadata'].isRequired,
|
|
@@ -17518,6 +17722,11 @@ T['io.flow.channel.v0.models.channel_organization_put_form'] = PropTypes.exact({
|
|
|
17518
17722
|
attributes: PropTypes.objectOf(PropTypes.string),
|
|
17519
17723
|
});
|
|
17520
17724
|
|
|
17725
|
+
T['io.flow.channel.shopify.internal.v0.models.channel_organization_shopify_form'] = PropTypes.exact({
|
|
17726
|
+
form: T['io.flow.channel.v0.models.channel_organization_put_form'].isRequired,
|
|
17727
|
+
metadata: T['io.flow.channel.shopify.internal.v0.models.shopify_metadata'].isRequired,
|
|
17728
|
+
});
|
|
17729
|
+
|
|
17521
17730
|
T['io.flow.internal.v0.models.channel_organization_shopify_form'] = PropTypes.exact({
|
|
17522
17731
|
form: T['io.flow.channel.v0.models.channel_organization_put_form'].isRequired,
|
|
17523
17732
|
metadata: T['io.flow.internal.v0.models.shopify_metadata'].isRequired,
|
|
@@ -17576,29 +17785,7 @@ T['io.flow.internal.v0.enums.channel_order_acceptance_rejection_reason'] = PropT
|
|
|
17576
17785
|
'order_missing',
|
|
17577
17786
|
]);
|
|
17578
17787
|
|
|
17579
|
-
T['io.flow.
|
|
17580
|
-
|
|
17581
|
-
T['io.flow.channel.internal.v0.models.channel_order_acceptance'] = PropTypes.exact({
|
|
17582
|
-
id: PropTypes.string.isRequired,
|
|
17583
|
-
organization_id: PropTypes.string.isRequired,
|
|
17584
|
-
order_number: PropTypes.string.isRequired,
|
|
17585
|
-
channel_id: PropTypes.string.isRequired,
|
|
17586
|
-
external_order_reference: PropTypes.string.isRequired,
|
|
17587
|
-
payment_request_id: PropTypes.string,
|
|
17588
|
-
order_edit_payment_request_ids: PropTypes.arrayOf(PropTypes.string),
|
|
17589
|
-
status: T['io.flow.channel.internal.v0.enums.channel_order_acceptance_status'].isRequired,
|
|
17590
|
-
reasons: PropTypes.arrayOf(T['io.flow.channel.internal.v0.models.channel_order_acceptance_reason']).isRequired,
|
|
17591
|
-
next_action_from: T['io.flow.channel.internal.v0.enums.channel_order_acceptance_next_action_from'],
|
|
17592
|
-
order_created_at: PropTypes.string,
|
|
17593
|
-
order_updated_at: PropTypes.string,
|
|
17594
|
-
order_edit_summary: T['io.flow.channel.internal.v0.models.order_edit_summary'],
|
|
17595
|
-
payment_source: T['io.flow.experience.v0.enums.order_payment_source_type'],
|
|
17596
|
-
});
|
|
17597
|
-
|
|
17598
|
-
T['io.flow.channel.internal.v0.models.channel_order_acceptance_details'] = PropTypes.exact({
|
|
17599
|
-
order_acceptance: T['io.flow.channel.internal.v0.models.channel_order_acceptance'].isRequired,
|
|
17600
|
-
external_order: PropTypes.object.isRequired,
|
|
17601
|
-
});
|
|
17788
|
+
T['io.flow.internal.v0.enums.order_payment_source_type'] = PropTypes.oneOf(['globale', 'third_party']);
|
|
17602
17789
|
|
|
17603
17790
|
T['io.flow.internal.v0.models.order_edit_summary'] = PropTypes.exact({
|
|
17604
17791
|
edited_at: PropTypes.string.isRequired,
|
|
@@ -18904,6 +19091,13 @@ T['io.flow.internal.v0.models.carrier_account_validation'] = PropTypes.exact({
|
|
|
18904
19091
|
error_message: PropTypes.string,
|
|
18905
19092
|
});
|
|
18906
19093
|
|
|
19094
|
+
T['io.flow.internal.v0.models.fedex_api'] = PropTypes.exact({
|
|
19095
|
+
discriminator: PropTypes.oneOf(['fedex_api']).isRequired,
|
|
19096
|
+
client_id: PropTypes.string.isRequired,
|
|
19097
|
+
client_secret: PropTypes.string.isRequired,
|
|
19098
|
+
account_number: PropTypes.string.isRequired,
|
|
19099
|
+
});
|
|
19100
|
+
|
|
18907
19101
|
T['io.flow.internal.v0.models.fedex'] = PropTypes.exact({
|
|
18908
19102
|
discriminator: PropTypes.oneOf(['fedex']).isRequired,
|
|
18909
19103
|
key: PropTypes.string.isRequired,
|
|
@@ -18966,6 +19160,7 @@ T['io.flow.internal.v0.unions.carrier_credentials'] = PropTypes.oneOfType([
|
|
|
18966
19160
|
T['io.flow.internal.v0.models.fedex_crossborder'],
|
|
18967
19161
|
T['io.flow.internal.v0.models.ups'],
|
|
18968
19162
|
T['io.flow.internal.v0.models.fedex'],
|
|
19163
|
+
T['io.flow.internal.v0.models.fedex_api'],
|
|
18969
19164
|
]);
|
|
18970
19165
|
|
|
18971
19166
|
T['io.flow.internal.v0.models.tracking_request'] = PropTypes.exact({
|
|
@@ -19148,7 +19343,7 @@ T['io.flow.internal.v0.models.channel_order_acceptance'] = PropTypes.exact({
|
|
|
19148
19343
|
order_created_at: PropTypes.string,
|
|
19149
19344
|
order_updated_at: PropTypes.string,
|
|
19150
19345
|
order_edit_summary: T['io.flow.internal.v0.models.order_edit_summary'],
|
|
19151
|
-
payment_source: T['io.flow.
|
|
19346
|
+
payment_source: T['io.flow.internal.v0.enums.order_payment_source_type'],
|
|
19152
19347
|
});
|
|
19153
19348
|
|
|
19154
19349
|
T['io.flow.internal.v0.models.channel_order_acceptance_upserted'] = PropTypes.exact({
|
|
@@ -19855,6 +20050,7 @@ T['io.flow.internal.v0.models.restriction_item_request_form'] = PropTypes.exact(
|
|
|
19855
20050
|
rule_ids: PropTypes.arrayOf(PropTypes.string),
|
|
19856
20051
|
user_ids: PropTypes.arrayOf(PropTypes.string),
|
|
19857
20052
|
categories: PropTypes.arrayOf(PropTypes.string),
|
|
20053
|
+
category: PropTypes.string,
|
|
19858
20054
|
product_name_query: PropTypes.string,
|
|
19859
20055
|
hs6: PropTypes.string,
|
|
19860
20056
|
positive_keywords: PropTypes.arrayOf(PropTypes.string),
|
|
@@ -19910,7 +20106,7 @@ T['io.flow.internal.v0.models.restriction_rule_form'] = PropTypes.exact({
|
|
|
19910
20106
|
negative_keywords: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
19911
20107
|
value_threshold_usd: PropTypes.number,
|
|
19912
20108
|
auto_review_criteria: PropTypes.arrayOf(T['io.flow.internal.v0.models.auto_review_criteria']),
|
|
19913
|
-
source: T['io.flow.internal.v0.enums.restriction_organization_source'],
|
|
20109
|
+
source: T['io.flow.internal.v0.enums.restriction_organization_source'].isRequired,
|
|
19914
20110
|
sellability_positive_keywords: PropTypes.arrayOf(PropTypes.string),
|
|
19915
20111
|
});
|
|
19916
20112
|
|
|
@@ -21861,6 +22057,7 @@ T['io.flow.billing.v0.enums.fee_deduction_type'] = PropTypes.oneOf([
|
|
|
21861
22057
|
'rate_lock',
|
|
21862
22058
|
'transfer',
|
|
21863
22059
|
'negative_balance_guarantee',
|
|
22060
|
+
'sp',
|
|
21864
22061
|
]);
|
|
21865
22062
|
|
|
21866
22063
|
T['io.flow.billing.v0.models.fee_deduction'] = PropTypes.exact({
|
|
@@ -22179,6 +22376,8 @@ T['io.flow.ratecard.v0.models.peak_surcharge_service_fee'] = PropTypes.exact({
|
|
|
22179
22376
|
amount: T['io.flow.common.v0.models.money'].isRequired,
|
|
22180
22377
|
starts_at: PropTypes.string,
|
|
22181
22378
|
ends_at: PropTypes.string,
|
|
22379
|
+
regions: PropTypes.arrayOf(PropTypes.string),
|
|
22380
|
+
dependent_service_fees: PropTypes.arrayOf(PropTypes.string),
|
|
22182
22381
|
});
|
|
22183
22382
|
|
|
22184
22383
|
T['io.flow.ratecard.v0.models.peak_surcharge_ratecard_fee'] = PropTypes.exact({
|
|
@@ -22370,6 +22569,11 @@ T['io.flow.ratecard.v0.models.ratecard_lane_version'] = PropTypes.exact({
|
|
|
22370
22569
|
ratecard_lane: T['io.flow.ratecard.v0.models.ratecard_lane'].isRequired,
|
|
22371
22570
|
});
|
|
22372
22571
|
|
|
22572
|
+
T['io.flow.ratecard.v0.models.ratecard_fee_summary'] = PropTypes.exact({
|
|
22573
|
+
ratecard_fee: T['io.flow.ratecard.v0.unions.ratecard_fee'].isRequired,
|
|
22574
|
+
source_service_fees: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
22575
|
+
});
|
|
22576
|
+
|
|
22373
22577
|
T['io.flow.ratecard.v0.models.hop_estimate_v2'] = PropTypes.exact({
|
|
22374
22578
|
origin_address: T['io.flow.fulfillment.v0.models.shipping_address'].isRequired,
|
|
22375
22579
|
destination_address: T['io.flow.fulfillment.v0.models.shipping_address'].isRequired,
|
|
@@ -23660,6 +23864,8 @@ T['io.flow.shopify.markets.internal.event.v0.unions.shopify_markets_internal_eve
|
|
|
23660
23864
|
T['io.flow.shopify.markets.internal.event.v0.models.shopify_markets_best_selling_product_deleted'],
|
|
23661
23865
|
T['io.flow.shopify.markets.internal.event.v0.models.shopify_order_risk_assessment_upserted'],
|
|
23662
23866
|
T['io.flow.shopify.markets.internal.event.v0.models.shopify_order_risk_assessment_deleted'],
|
|
23867
|
+
T['io.flow.shopify.markets.internal.event.v0.models.shopify_order_transaction_upserted'],
|
|
23868
|
+
T['io.flow.shopify.markets.internal.event.v0.models.shopify_order_transaction_deleted'],
|
|
23663
23869
|
]);
|
|
23664
23870
|
|
|
23665
23871
|
T['io.flow.export.v0.models.marketing_feeds_export_type'] = PropTypes.exact({
|
|
@@ -24163,6 +24369,14 @@ T['io.flow.channel.v0.models.channel_organization'] = PropTypes.exact({
|
|
|
24163
24369
|
attributes: PropTypes.objectOf(PropTypes.string),
|
|
24164
24370
|
});
|
|
24165
24371
|
|
|
24372
|
+
T['io.flow.channel.shopify.internal.v0.models.channel_organization_shopify'] = PropTypes.exact({
|
|
24373
|
+
organization: T['io.flow.channel.v0.models.channel_organization'].isRequired,
|
|
24374
|
+
|
|
24375
|
+
tokens: PropTypes.arrayOf(
|
|
24376
|
+
T['io.flow.channel.shopify.internal.v0.models.shopify_channel_organization_tokens'],
|
|
24377
|
+
).isRequired,
|
|
24378
|
+
});
|
|
24379
|
+
|
|
24166
24380
|
T['io.flow.internal.v0.models.channel_organization_shopify'] = PropTypes.exact({
|
|
24167
24381
|
organization: T['io.flow.channel.v0.models.channel_organization'].isRequired,
|
|
24168
24382
|
tokens: PropTypes.arrayOf(T['io.flow.internal.v0.models.shopify_channel_organization_tokens']).isRequired,
|
|
@@ -24256,6 +24470,7 @@ T['io.flow.internal.v0.models.accounting_pending_order_metadata'] = PropTypes.ex
|
|
|
24256
24470
|
T['io.flow.internal.v0.unions.task_metadata'] = PropTypes.oneOfType([
|
|
24257
24471
|
T['io.flow.internal.v0.models.statement_creation_metadata'],
|
|
24258
24472
|
T['io.flow.internal.v0.models.accounting_pending_order_metadata'],
|
|
24473
|
+
T['io.flow.internal.v0.models.tax_duty_reason_code_metadata'],
|
|
24259
24474
|
]);
|
|
24260
24475
|
|
|
24261
24476
|
T['io.flow.common.v0.models.price'] = PropTypes.exact({
|
|
@@ -24780,6 +24995,7 @@ T['io.flow.internal.v0.models.restriction_product'] = PropTypes.exact({
|
|
|
24780
24995
|
images: PropTypes.arrayOf(T['io.flow.catalog.v0.models.image']).isRequired,
|
|
24781
24996
|
thumbnails: PropTypes.arrayOf(T['io.flow.catalog.v0.models.image']).isRequired,
|
|
24782
24997
|
hs_code: PropTypes.string,
|
|
24998
|
+
hs_code_source: T['io.flow.internal.v0.enums.harmonization_decision_source'],
|
|
24783
24999
|
url: PropTypes.string,
|
|
24784
25000
|
reviews: PropTypes.arrayOf(T['io.flow.internal.v0.models.restriction_item_review']).isRequired,
|
|
24785
25001
|
created_at: PropTypes.string.isRequired,
|
|
@@ -24796,6 +25012,7 @@ T['io.flow.internal.v0.models.restriction_item'] = PropTypes.exact({
|
|
|
24796
25012
|
name: PropTypes.string.isRequired,
|
|
24797
25013
|
price: T['io.flow.common.v0.models.price'].isRequired,
|
|
24798
25014
|
hs_code: PropTypes.string,
|
|
25015
|
+
hs_code_source: T['io.flow.internal.v0.enums.harmonization_decision_source'],
|
|
24799
25016
|
description: PropTypes.string.isRequired,
|
|
24800
25017
|
category: PropTypes.string,
|
|
24801
25018
|
categories: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
@@ -24926,6 +25143,7 @@ T['io.flow.internal.v0.models.debug_order'] = PropTypes.exact({
|
|
|
24926
25143
|
total: T['io.flow.common.v0.models.money_with_base'].isRequired,
|
|
24927
25144
|
identifiers: PropTypes.objectOf(PropTypes.string),
|
|
24928
25145
|
submitted_at: PropTypes.string,
|
|
25146
|
+
payment_source: T['io.flow.experience.v0.enums.order_payment_source_type'],
|
|
24929
25147
|
});
|
|
24930
25148
|
|
|
24931
25149
|
T['io.flow.internal.v0.models.components'] = PropTypes.exact({
|
|
@@ -24948,6 +25166,7 @@ T['io.flow.internal.v0.models.fees'] = PropTypes.exact({
|
|
|
24948
25166
|
duty_guarantee: T['io.flow.internal.v0.models.fee'],
|
|
24949
25167
|
transfer: T['io.flow.internal.v0.models.fee'],
|
|
24950
25168
|
negative_balance: T['io.flow.internal.v0.models.fee'],
|
|
25169
|
+
sp: T['io.flow.internal.v0.models.fee'],
|
|
24951
25170
|
});
|
|
24952
25171
|
|
|
24953
25172
|
T['io.flow.catalog.v0.models.localized_total'] = PropTypes.exact({
|
|
@@ -25757,6 +25976,7 @@ T['io.flow.internal.v0.models.validated_shipping_data'] = PropTypes.exact({
|
|
|
25757
25976
|
additional_services_requested: PropTypes.arrayOf(T['io.flow.label.v0.models.additional_services_requested']),
|
|
25758
25977
|
provided_charges: PropTypes.arrayOf(T['io.flow.internal.v0.models.charge_input']),
|
|
25759
25978
|
direction: T['io.flow.label.v0.enums.direction'],
|
|
25979
|
+
package_dimensions_source: T['io.flow.label.v0.enums.package_dimensions_source'].isRequired,
|
|
25760
25980
|
});
|
|
25761
25981
|
|
|
25762
25982
|
T['io.flow.experience.v0.models.order_builder'] = PropTypes.exact({
|
|
@@ -27378,6 +27598,8 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
|
|
|
27378
27598
|
T['io.flow.internal.v0.models.restriction_rule_deleted'],
|
|
27379
27599
|
T['io.flow.internal.v0.models.restriction_rule_effect_upserted'],
|
|
27380
27600
|
T['io.flow.internal.v0.models.restriction_rule_effect_deleted'],
|
|
27601
|
+
T['io.flow.internal.v0.models.taxonomy_category_hs6_ref_upserted'],
|
|
27602
|
+
T['io.flow.internal.v0.models.taxonomy_category_hs6_ref_deleted'],
|
|
27381
27603
|
T['io.flow.internal.v0.models.shopify_shop_upserted'],
|
|
27382
27604
|
T['io.flow.internal.v0.models.shopify_shop_deleted'],
|
|
27383
27605
|
T['io.flow.internal.v0.models.shopify_experience_short_id_upserted'],
|
|
@@ -27405,6 +27627,8 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
|
|
|
27405
27627
|
T['io.flow.internal.v0.models.shopify_markets_best_selling_product_deleted'],
|
|
27406
27628
|
T['io.flow.internal.v0.models.shopify_order_risk_assessment_upserted'],
|
|
27407
27629
|
T['io.flow.internal.v0.models.shopify_order_risk_assessment_deleted'],
|
|
27630
|
+
T['io.flow.internal.v0.models.shopify_order_transaction_upserted'],
|
|
27631
|
+
T['io.flow.internal.v0.models.shopify_order_transaction_deleted'],
|
|
27408
27632
|
T['io.flow.internal.v0.models.shopify_product_create_upserted'],
|
|
27409
27633
|
T['io.flow.internal.v0.models.shopify_product_create_deleted'],
|
|
27410
27634
|
T['io.flow.internal.v0.models.shopify_product_update_upserted'],
|
|
@@ -27568,6 +27792,15 @@ T['io.flow.internal.v0.enums.auto_restrict_rule'] = PropTypes.oneOf([
|
|
|
27568
27792
|
'prr-79e41878ea564f9c81cc432a0e84703f',
|
|
27569
27793
|
'prr-f29c26dc09e04536bc77f9c32786ed70',
|
|
27570
27794
|
'prr-b186129720f0446eb452a68518437c95',
|
|
27795
|
+
'prr-36e1603f56e54eb889792637c29eed40',
|
|
27796
|
+
'prr-7ead2cc4bf2840a3a9b50d222eb0ed7e',
|
|
27797
|
+
'prr-ec2f3d608b7e43a49de88ac40e6b50a8',
|
|
27798
|
+
'prr-04ed078c39ca4447b171f767d71a481d',
|
|
27799
|
+
'prr-bb664a76d6d64a17843e720e6ccd401a',
|
|
27800
|
+
'prr-8ce63afcd48641eb9d44e04117348a96',
|
|
27801
|
+
'prr-76544617791b4ce8af96b3a7879474c6',
|
|
27802
|
+
'prr-566cc67167944bc4bd08167aa9c0beba',
|
|
27803
|
+
'prr-74e1320efb7741cf9ace400b69800f9b',
|
|
27571
27804
|
]);
|
|
27572
27805
|
|
|
27573
27806
|
T['io.flow.internal.v0.enums.bank_payment_promise_completed_method'] = PropTypes.oneOf(['credit', 'time']);
|
|
@@ -27901,6 +28134,8 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
|
|
|
27901
28134
|
'restriction_rule_deleted',
|
|
27902
28135
|
'restriction_rule_effect_upserted',
|
|
27903
28136
|
'restriction_rule_effect_deleted',
|
|
28137
|
+
'taxonomy_category_hs6_ref_upserted',
|
|
28138
|
+
'taxonomy_category_hs6_ref_deleted',
|
|
27904
28139
|
'shopify_shop_upserted',
|
|
27905
28140
|
'shopify_shop_deleted',
|
|
27906
28141
|
'shopify_experience_short_id_upserted',
|
|
@@ -27928,6 +28163,8 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
|
|
|
27928
28163
|
'shopify_markets_best_selling_product_deleted',
|
|
27929
28164
|
'shopify_order_risk_assessment_upserted',
|
|
27930
28165
|
'shopify_order_risk_assessment_deleted',
|
|
28166
|
+
'shopify_order_transaction_upserted',
|
|
28167
|
+
'shopify_order_transaction_deleted',
|
|
27931
28168
|
'shopify_product_create_upserted',
|
|
27932
28169
|
'shopify_product_create_deleted',
|
|
27933
28170
|
'shopify_product_update_upserted',
|
|
@@ -28787,6 +29024,7 @@ T['io.flow.internal.v0.models.product_sellability_result'] = PropTypes.exact({
|
|
|
28787
29024
|
request_id: PropTypes.string.isRequired,
|
|
28788
29025
|
hs6_code: PropTypes.string.isRequired,
|
|
28789
29026
|
restricted_regions: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
29027
|
+
rule_ids: PropTypes.arrayOf(PropTypes.string),
|
|
28790
29028
|
});
|
|
28791
29029
|
|
|
28792
29030
|
T['io.flow.internal.v0.models.rate_data'] = PropTypes.exact({
|
|
@@ -28863,6 +29101,7 @@ T['io.flow.internal.v0.models.restriction_product_request_form'] = PropTypes.exa
|
|
|
28863
29101
|
negative_keywords: PropTypes.arrayOf(PropTypes.string),
|
|
28864
29102
|
user_ids: PropTypes.arrayOf(PropTypes.string),
|
|
28865
29103
|
categories: PropTypes.arrayOf(PropTypes.string),
|
|
29104
|
+
category: PropTypes.string,
|
|
28866
29105
|
product_name_query: PropTypes.string,
|
|
28867
29106
|
hs6: PropTypes.string,
|
|
28868
29107
|
product_id: PropTypes.string,
|
|
@@ -28876,21 +29115,22 @@ T['io.flow.internal.v0.models.restriction_rule_lane_exemption'] = PropTypes.exac
|
|
|
28876
29115
|
destination_countries: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
28877
29116
|
});
|
|
28878
29117
|
|
|
28879
|
-
T['io.flow.internal.v0.models.
|
|
29118
|
+
T['io.flow.internal.v0.models.restriction_rule_organization_exemption'] = PropTypes.exact({
|
|
28880
29119
|
id: PropTypes.string.isRequired,
|
|
28881
29120
|
organization_id: PropTypes.string.isRequired,
|
|
28882
29121
|
rule_id: PropTypes.string.isRequired,
|
|
28883
|
-
|
|
28884
|
-
|
|
28885
|
-
|
|
28886
|
-
|
|
28887
|
-
|
|
28888
|
-
tracking_number: PropTypes.string,
|
|
29122
|
+
description: PropTypes.string.isRequired,
|
|
29123
|
+
is_rule_exempt: PropTypes.bool.isRequired,
|
|
29124
|
+
exempt_countries: PropTypes.arrayOf(PropTypes.string),
|
|
29125
|
+
ignored_keywords: PropTypes.arrayOf(PropTypes.string),
|
|
29126
|
+
additional_keywords: PropTypes.arrayOf(PropTypes.string),
|
|
28889
29127
|
});
|
|
28890
29128
|
|
|
28891
|
-
T['io.flow.internal.v0.models.
|
|
28892
|
-
|
|
28893
|
-
|
|
29129
|
+
T['io.flow.internal.v0.models.restriction_rule_override'] = PropTypes.exact({
|
|
29130
|
+
id: PropTypes.string.isRequired,
|
|
29131
|
+
organization_id: PropTypes.string.isRequired,
|
|
29132
|
+
rule_id: PropTypes.string.isRequired,
|
|
29133
|
+
value_threshold_usd: PropTypes.number.isRequired,
|
|
28894
29134
|
});
|
|
28895
29135
|
|
|
28896
29136
|
T['io.flow.internal.v0.models.sandbox_setup'] = PropTypes.exact({
|
|
@@ -29093,10 +29333,6 @@ T['io.flow.internal.v0.models.tracking_debug_force_transit_form'] = PropTypes.ex
|
|
|
29093
29333
|
description: PropTypes.string.isRequired,
|
|
29094
29334
|
});
|
|
29095
29335
|
|
|
29096
|
-
T['io.flow.internal.v0.models.tracking_resync'] = PropTypes.exact({
|
|
29097
|
-
placeholder: PropTypes.bool,
|
|
29098
|
-
});
|
|
29099
|
-
|
|
29100
29336
|
T['io.flow.internal.v0.models.tracking_webhook'] = PropTypes.exact({
|
|
29101
29337
|
placeholder: PropTypes.bool,
|
|
29102
29338
|
});
|
|
@@ -30779,6 +31015,7 @@ export const classificationProductSummary = T['io.flow.internal.v0.models.classi
|
|
|
30779
31015
|
export const classificationProductSummaryPage = T['io.flow.internal.v0.models.classification_product_summary_page'];
|
|
30780
31016
|
export const classificationRequeueRequest = T['io.flow.internal.v0.models.classification_requeue_request'];
|
|
30781
31017
|
export const classificationResponse = T['io.flow.internal.v0.unions.classification_response'];
|
|
31018
|
+
export const classificationScope = T['io.flow.internal.v0.enums.classification_scope'];
|
|
30782
31019
|
export const classificationStatistics = T['io.flow.internal.v0.models.classification_statistics'];
|
|
30783
31020
|
export const classificationSummaryReportPayload = T['io.flow.internal.v0.models.classification_summary_report_payload'];
|
|
30784
31021
|
export const classificationTaxonomy = T['io.flow.internal.v0.unions.classification_taxonomy'];
|
|
@@ -30971,6 +31208,7 @@ export const erpVendorStatus = T['io.flow.internal.v0.models.erp_vendor_status']
|
|
|
30971
31208
|
export const erpVendorStatusEntity = T['io.flow.internal.v0.models.erp_vendor_status_entity'];
|
|
30972
31209
|
export const erpVendorStatusFlowFile = T['io.flow.internal.v0.models.erp_vendor_status_flow_file'];
|
|
30973
31210
|
export const erpVendorStatusPriorityFile = T['io.flow.internal.v0.models.erp_vendor_status_priority_file'];
|
|
31211
|
+
export const evaluationResults = T['io.flow.internal.v0.models.evaluation_results'];
|
|
30974
31212
|
export const event = T['io.flow.internal.v0.unions.event'];
|
|
30975
31213
|
export const eventType = T['io.flow.internal.v0.enums.event_type'];
|
|
30976
31214
|
export const exclusionRuleDeleted = T['io.flow.internal.v0.models.exclusion_rule_deleted'];
|
|
@@ -31024,6 +31262,7 @@ export const featureValue = T['io.flow.internal.v0.unions.feature_value'];
|
|
|
31024
31262
|
export const featureValueForm = T['io.flow.internal.v0.models.feature_value_form'];
|
|
31025
31263
|
export const featureValueResult = T['io.flow.internal.v0.models.feature_value_result'];
|
|
31026
31264
|
export const fedex = T['io.flow.internal.v0.models.fedex'];
|
|
31265
|
+
export const fedexApi = T['io.flow.internal.v0.models.fedex_api'];
|
|
31027
31266
|
export const fedexCrossborder = T['io.flow.internal.v0.models.fedex_crossborder'];
|
|
31028
31267
|
export const fee = T['io.flow.internal.v0.models.fee'];
|
|
31029
31268
|
export const fees = T['io.flow.internal.v0.models.fees'];
|
|
@@ -31443,6 +31682,7 @@ export const orderLifecycleEvent = T['io.flow.internal.v0.enums.order_lifecycle_
|
|
|
31443
31682
|
export const orderNote = T['io.flow.internal.v0.models.order_note'];
|
|
31444
31683
|
export const orderNoteForm = T['io.flow.internal.v0.models.order_note_form'];
|
|
31445
31684
|
export const orderPaymentAuthorization = T['io.flow.internal.v0.models.order_payment_authorization'];
|
|
31685
|
+
export const orderPaymentSourceType = T['io.flow.internal.v0.enums.order_payment_source_type'];
|
|
31446
31686
|
export const orderRatesDataV3 = T['io.flow.internal.v0.models.order_rates_data_v3'];
|
|
31447
31687
|
export const orderRatesPublishedV3 = T['io.flow.internal.v0.models.order_rates_published_v3'];
|
|
31448
31688
|
export const orderReference = T['io.flow.internal.v0.models.order_reference'];
|
|
@@ -31670,6 +31910,7 @@ export const productRestrictionStateDeleted = T['io.flow.internal.v0.models.prod
|
|
|
31670
31910
|
export const productRestrictionStateInserted = T['io.flow.internal.v0.models.product_restriction_state_inserted'];
|
|
31671
31911
|
export const productRestrictionStateUpdated = T['io.flow.internal.v0.models.product_restriction_state_updated'];
|
|
31672
31912
|
export const productReviewHistory = T['io.flow.internal.v0.models.product_review_history'];
|
|
31913
|
+
export const productSellabilityInternal = T['io.flow.internal.v0.models.product_sellability_internal'];
|
|
31673
31914
|
export const productSellabilityResult = T['io.flow.internal.v0.models.product_sellability_result'];
|
|
31674
31915
|
export const productStatus = T['io.flow.internal.v0.enums.product_status'];
|
|
31675
31916
|
export const productTransaction = T['io.flow.internal.v0.models.product_transaction'];
|
|
@@ -31845,6 +32086,7 @@ export const restrictionRuleEffectUpserted = T['io.flow.internal.v0.models.restr
|
|
|
31845
32086
|
export const restrictionRuleExceptionAction = T['io.flow.internal.v0.enums.restriction_rule_exception_action'];
|
|
31846
32087
|
export const restrictionRuleForm = T['io.flow.internal.v0.models.restriction_rule_form'];
|
|
31847
32088
|
export const restrictionRuleLaneExemption = T['io.flow.internal.v0.models.restriction_rule_lane_exemption'];
|
|
32089
|
+
export const restrictionRuleOrganizationExemption = T['io.flow.internal.v0.models.restriction_rule_organization_exemption'];
|
|
31848
32090
|
export const restrictionRuleOverride = T['io.flow.internal.v0.models.restriction_rule_override'];
|
|
31849
32091
|
export const restrictionRuleSummary = T['io.flow.internal.v0.models.restriction_rule_summary'];
|
|
31850
32092
|
export const restrictionRuleUpserted = T['io.flow.internal.v0.models.restriction_rule_upserted'];
|
|
@@ -31858,8 +32100,6 @@ export const resyncByDestinations = T['io.flow.internal.v0.models.resync_by_dest
|
|
|
31858
32100
|
export const resyncByHs6Destinations = T['io.flow.internal.v0.models.resync_by_hs6_destinations'];
|
|
31859
32101
|
export const resyncByHs6Origin = T['io.flow.internal.v0.models.resync_by_hs6_origin'];
|
|
31860
32102
|
export const resyncFallbackRates = T['io.flow.internal.v0.models.resync_fallback_rates'];
|
|
31861
|
-
export const retracking = T['io.flow.internal.v0.models.retracking'];
|
|
31862
|
-
export const retrackingForm = T['io.flow.internal.v0.models.retracking_form'];
|
|
31863
32103
|
export const UNSAFE_return = T['io.flow.internal.v0.models.return'];
|
|
31864
32104
|
export const returnPolicyDeleted = T['io.flow.internal.v0.models.return_policy_deleted'];
|
|
31865
32105
|
export const returnPolicyItemResultDeleted = T['io.flow.internal.v0.models.return_policy_item_result_deleted'];
|
|
@@ -32004,6 +32244,9 @@ export const shopifyOrderLineContent = T['io.flow.internal.v0.models.shopify_ord
|
|
|
32004
32244
|
export const shopifyOrderRiskAssessment = T['io.flow.internal.v0.models.shopify_order_risk_assessment'];
|
|
32005
32245
|
export const shopifyOrderRiskAssessmentDeleted = T['io.flow.internal.v0.models.shopify_order_risk_assessment_deleted'];
|
|
32006
32246
|
export const shopifyOrderRiskAssessmentUpserted = T['io.flow.internal.v0.models.shopify_order_risk_assessment_upserted'];
|
|
32247
|
+
export const shopifyOrderTransaction = T['io.flow.internal.v0.models.shopify_order_transaction'];
|
|
32248
|
+
export const shopifyOrderTransactionDeleted = T['io.flow.internal.v0.models.shopify_order_transaction_deleted'];
|
|
32249
|
+
export const shopifyOrderTransactionUpserted = T['io.flow.internal.v0.models.shopify_order_transaction_upserted'];
|
|
32007
32250
|
export const shopifyOrganizationSettings = T['io.flow.internal.v0.models.shopify_organization_settings'];
|
|
32008
32251
|
export const shopifyOrganizationSettingsForm = T['io.flow.internal.v0.models.shopify_organization_settings_form'];
|
|
32009
32252
|
export const shopifyPartnerWebhook = T['io.flow.internal.v0.models.shopify_partner_webhook'];
|
|
@@ -32156,6 +32399,7 @@ export const taxCalculationErrorCode = T['io.flow.internal.v0.enums.tax_calculat
|
|
|
32156
32399
|
export const taxCalculationForm = T['io.flow.internal.v0.models.tax_calculation_form'];
|
|
32157
32400
|
export const taxCalculationLineItem = T['io.flow.internal.v0.models.tax_calculation_line_item'];
|
|
32158
32401
|
export const taxCalculationLineItemForm = T['io.flow.internal.v0.models.tax_calculation_line_item_form'];
|
|
32402
|
+
export const taxDutyReasonCodeMetadata = T['io.flow.internal.v0.models.tax_duty_reason_code_metadata'];
|
|
32159
32403
|
export const taxParty = T['io.flow.internal.v0.enums.tax_party'];
|
|
32160
32404
|
export const taxRemittanceTransaction = T['io.flow.internal.v0.models.tax_remittance_transaction'];
|
|
32161
32405
|
export const taxRemittanceTransactionDeleted = T['io.flow.internal.v0.models.tax_remittance_transaction_deleted'];
|
|
@@ -32165,6 +32409,9 @@ export const taxTransactionDeleted = T['io.flow.internal.v0.models.tax_transacti
|
|
|
32165
32409
|
export const taxTransactionType = T['io.flow.internal.v0.enums.tax_transaction_type'];
|
|
32166
32410
|
export const taxTransactionUpserted = T['io.flow.internal.v0.models.tax_transaction_upserted'];
|
|
32167
32411
|
export const taxonomyCategory = PropTypes.any;
|
|
32412
|
+
export const taxonomyCategoryHs6Ref = T['io.flow.internal.v0.models.taxonomy_category_hs6_ref'];
|
|
32413
|
+
export const taxonomyCategoryHs6RefDeleted = T['io.flow.internal.v0.models.taxonomy_category_hs6_ref_deleted'];
|
|
32414
|
+
export const taxonomyCategoryHs6RefUpserted = T['io.flow.internal.v0.models.taxonomy_category_hs6_ref_upserted'];
|
|
32168
32415
|
export const taxonomyNode = PropTypes.any;
|
|
32169
32416
|
export const techOnboardingDescription = T['io.flow.internal.v0.models.tech_onboarding_description'];
|
|
32170
32417
|
export const test = T['io.flow.internal.v0.models.test'];
|
|
@@ -32211,7 +32458,6 @@ export const trackingProcessingErrorUpserted = T['io.flow.internal.v0.models.tra
|
|
|
32211
32458
|
export const trackingProcessingFailureClassification = T['io.flow.internal.v0.enums.tracking_processing_failure_classification'];
|
|
32212
32459
|
export const trackingRequest = T['io.flow.internal.v0.models.tracking_request'];
|
|
32213
32460
|
export const trackingResponse = T['io.flow.internal.v0.models.tracking_response'];
|
|
32214
|
-
export const trackingResync = T['io.flow.internal.v0.models.tracking_resync'];
|
|
32215
32461
|
export const trackingSubscription = T['io.flow.internal.v0.models.tracking_subscription'];
|
|
32216
32462
|
export const trackingSubscriptionDeleted = T['io.flow.internal.v0.models.tracking_subscription_deleted'];
|
|
32217
32463
|
export const trackingSubscriptionUpserted = T['io.flow.internal.v0.models.tracking_subscription_upserted'];
|