@flowio/api-internal-prop-types 9.24.117 → 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 +226 -33
- package/lib/api-internal.js +1 -1
- package/package.json +2 -2
- package/src/api-internal.d.ts +226 -33
- package/src/api-internal.js +426 -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({
|
|
@@ -10882,6 +10969,20 @@ T['io.flow.internal.v0.models.shopify_check_inventory_error'] = PropTypes.exact(
|
|
|
10882
10969
|
numbers: PropTypes.arrayOf(PropTypes.string),
|
|
10883
10970
|
});
|
|
10884
10971
|
|
|
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
|
+
|
|
10885
10986
|
T['io.flow.fulfillment.v0.enums.ratecard_owner'] = PropTypes.oneOf(['flow', 'organization']);
|
|
10886
10987
|
|
|
10887
10988
|
T['io.flow.ratecard.v0.models.ratecard_summary'] = PropTypes.exact({
|
|
@@ -11175,6 +11276,16 @@ T['io.flow.internal.v0.models.restrictions_dailyops'] = PropTypes.exact({
|
|
|
11175
11276
|
oldest_insufficient_details_pv_onboarding: PropTypes.string,
|
|
11176
11277
|
oldest_insufficient_details_pv_active: PropTypes.string,
|
|
11177
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,
|
|
11178
11289
|
});
|
|
11179
11290
|
|
|
11180
11291
|
T['io.flow.internal.v0.models.restrictions_dailyops_upserted'] = PropTypes.exact({
|
|
@@ -11184,43 +11295,6 @@ T['io.flow.internal.v0.models.restrictions_dailyops_upserted'] = PropTypes.exact
|
|
|
11184
11295
|
restrictions_dailyops: T['io.flow.internal.v0.models.restrictions_dailyops'].isRequired,
|
|
11185
11296
|
});
|
|
11186
11297
|
|
|
11187
|
-
T['io.flow.sellability.v0.enums.rule_effect_type'] = PropTypes.oneOf(['market', 'dhl', 'dhl_ecommerce', 'ups']);
|
|
11188
|
-
|
|
11189
|
-
T['io.flow.sellability.v0.models.sellablility_region_result'] = PropTypes.exact({
|
|
11190
|
-
type: T['io.flow.sellability.v0.enums.rule_effect_type'].isRequired,
|
|
11191
|
-
regions: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
11192
|
-
});
|
|
11193
|
-
|
|
11194
|
-
T['io.flow.sellability.v0.models.product_sellability'] = PropTypes.exact({
|
|
11195
|
-
shop_id: PropTypes.string.isRequired,
|
|
11196
|
-
product_id: PropTypes.string,
|
|
11197
|
-
request_id: PropTypes.string.isRequired,
|
|
11198
|
-
hs6_code: PropTypes.string.isRequired,
|
|
11199
|
-
restricted_regions: PropTypes.arrayOf(T['io.flow.sellability.v0.models.sellablility_region_result']).isRequired,
|
|
11200
|
-
});
|
|
11201
|
-
|
|
11202
|
-
T['io.flow.internal.v0.models.restriction_rule_effect_form'] = PropTypes.exact({
|
|
11203
|
-
rule_id: PropTypes.string.isRequired,
|
|
11204
|
-
effect: T['io.flow.sellability.v0.enums.rule_effect_type'].isRequired,
|
|
11205
|
-
regions: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
11206
|
-
description: PropTypes.string,
|
|
11207
|
-
});
|
|
11208
|
-
|
|
11209
|
-
T['io.flow.internal.v0.models.restriction_rule_effect'] = PropTypes.exact({
|
|
11210
|
-
id: PropTypes.string.isRequired,
|
|
11211
|
-
rule_id: PropTypes.string.isRequired,
|
|
11212
|
-
effect: T['io.flow.sellability.v0.enums.rule_effect_type'].isRequired,
|
|
11213
|
-
regions: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
11214
|
-
description: PropTypes.string,
|
|
11215
|
-
});
|
|
11216
|
-
|
|
11217
|
-
T['io.flow.internal.v0.models.restriction_rule_effect_upserted'] = PropTypes.exact({
|
|
11218
|
-
discriminator: PropTypes.oneOf(['restriction_rule_effect_upserted']).isRequired,
|
|
11219
|
-
event_id: PropTypes.string.isRequired,
|
|
11220
|
-
timestamp: PropTypes.string.isRequired,
|
|
11221
|
-
restriction_rule_effect: T['io.flow.internal.v0.models.restriction_rule_effect'].isRequired,
|
|
11222
|
-
});
|
|
11223
|
-
|
|
11224
11298
|
T['io.flow.internal.v0.enums.restriction_organization_source'] = PropTypes.oneOf(['shopify', 'enterprise']);
|
|
11225
11299
|
T['io.flow.internal.v0.enums.restriction_action'] = PropTypes.oneOf(['prohibited', 'restricted']);
|
|
11226
11300
|
T['io.flow.internal.v0.enums.organization_source'] = PropTypes.oneOf(['shopify', 'enterprise']);
|
|
@@ -11228,6 +11302,7 @@ T['io.flow.internal.v0.enums.organization_source'] = PropTypes.oneOf(['shopify',
|
|
|
11228
11302
|
T['io.flow.internal.v0.models.restriction_summary_counts'] = PropTypes.exact({
|
|
11229
11303
|
pending_restriction_count: PropTypes.number.isRequired,
|
|
11230
11304
|
pending_verification_count: PropTypes.number.isRequired,
|
|
11305
|
+
pending_classification_count: PropTypes.number.isRequired,
|
|
11231
11306
|
});
|
|
11232
11307
|
|
|
11233
11308
|
T['io.flow.internal.v0.enums.restriction_decision'] = PropTypes.oneOf(['accept', 'escalate', 'reject', 'review']);
|
|
@@ -11344,11 +11419,6 @@ T['io.flow.internal.v0.models.report_organization_reference'] = PropTypes.exact(
|
|
|
11344
11419
|
});
|
|
11345
11420
|
|
|
11346
11421
|
T['io.flow.internal.v0.enums.source_type_filter'] = PropTypes.oneOf(['organization', 'channel']);
|
|
11347
|
-
|
|
11348
|
-
T['io.flow.internal.v0.models.report_filter'] = PropTypes.exact({
|
|
11349
|
-
source_type: T['io.flow.internal.v0.enums.source_type_filter'],
|
|
11350
|
-
});
|
|
11351
|
-
|
|
11352
11422
|
T['io.flow.internal.v0.enums.report_file_status'] = PropTypes.oneOf(['processing', 'failed', 'succeeded']);
|
|
11353
11423
|
|
|
11354
11424
|
T['io.flow.internal.v0.enums.merchant_of_record'] = PropTypes.oneOf([
|
|
@@ -11396,17 +11466,6 @@ T['io.flow.internal.v0.enums.report_type'] = PropTypes.oneOf([
|
|
|
11396
11466
|
'disputes',
|
|
11397
11467
|
]);
|
|
11398
11468
|
|
|
11399
|
-
T['io.flow.internal.v0.models.report_form'] = PropTypes.exact({
|
|
11400
|
-
type: T['io.flow.internal.v0.enums.report_type'].isRequired,
|
|
11401
|
-
from: PropTypes.string,
|
|
11402
|
-
to: PropTypes.string,
|
|
11403
|
-
payment_type: T['io.flow.internal.v0.enums.report_payment_type'],
|
|
11404
|
-
organizations: PropTypes.arrayOf(T['io.flow.internal.v0.models.report_organization_reference']),
|
|
11405
|
-
orders: PropTypes.arrayOf(T['io.flow.internal.v0.models.report_order_reference']),
|
|
11406
|
-
recipients: PropTypes.arrayOf(PropTypes.string),
|
|
11407
|
-
filter: T['io.flow.internal.v0.models.report_filter'],
|
|
11408
|
-
});
|
|
11409
|
-
|
|
11410
11469
|
T['io.flow.internal.v0.enums.report_status'] = PropTypes.oneOf(['created', 'completed', 'completed_no_records', 'failed']);
|
|
11411
11470
|
|
|
11412
11471
|
T['io.flow.internal.v0.models.report'] = PropTypes.exact({
|
|
@@ -11639,6 +11698,58 @@ T['io.flow.internal.v0.models.quote_upserted'] = PropTypes.exact({
|
|
|
11639
11698
|
quote: T['io.flow.internal.v0.models.quote'].isRequired,
|
|
11640
11699
|
});
|
|
11641
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
|
+
|
|
11642
11753
|
T['io.flow.internal.v0.models.restriction_keywords'] = PropTypes.exact({
|
|
11643
11754
|
positive_keywords: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
11644
11755
|
negative_keywords: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
@@ -11659,6 +11770,7 @@ T['io.flow.internal.v0.models.product_restriction_state'] = PropTypes.exact({
|
|
|
11659
11770
|
review_status: T['io.flow.internal.v0.enums.restriction_state_review_status'].isRequired,
|
|
11660
11771
|
pending_restriction_count: PropTypes.number,
|
|
11661
11772
|
pending_verification_count: PropTypes.number,
|
|
11773
|
+
pending_classification_count: PropTypes.number,
|
|
11662
11774
|
oldest_pending_restriction_date: PropTypes.string,
|
|
11663
11775
|
oldest_pending_verification_date: PropTypes.string,
|
|
11664
11776
|
});
|
|
@@ -12233,6 +12345,7 @@ T['io.flow.internal.v0.models.organization_metadata'] = PropTypes.exact({
|
|
|
12233
12345
|
organization_id: PropTypes.string.isRequired,
|
|
12234
12346
|
pending_restriction_count: PropTypes.number.isRequired,
|
|
12235
12347
|
pending_verification_count: PropTypes.number.isRequired,
|
|
12348
|
+
pending_classification_count: PropTypes.number,
|
|
12236
12349
|
oldest_pending_restriction_date: PropTypes.string,
|
|
12237
12350
|
oldest_pending_verification_date: PropTypes.string,
|
|
12238
12351
|
product_count: PropTypes.number.isRequired,
|
|
@@ -12767,7 +12880,13 @@ T['io.flow.internal.v0.models.merchant_search_result'] = PropTypes.exact({
|
|
|
12767
12880
|
shop_domain: PropTypes.string,
|
|
12768
12881
|
});
|
|
12769
12882
|
|
|
12770
|
-
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']);
|
|
12771
12890
|
|
|
12772
12891
|
T['io.flow.internal.v0.models.merchant_override_decision_form'] = PropTypes.exact({
|
|
12773
12892
|
id: PropTypes.string.isRequired,
|
|
@@ -12781,6 +12900,7 @@ T['io.flow.internal.v0.models.merchant_override'] = PropTypes.exact({
|
|
|
12781
12900
|
status: T['io.flow.internal.v0.enums.merchant_override_status'].isRequired,
|
|
12782
12901
|
hs6_code: PropTypes.string.isRequired,
|
|
12783
12902
|
merchant_hs6_code: PropTypes.string.isRequired,
|
|
12903
|
+
evaluation_results: T['io.flow.internal.v0.models.evaluation_results'],
|
|
12784
12904
|
created_at: PropTypes.string.isRequired,
|
|
12785
12905
|
updated_at: PropTypes.string.isRequired,
|
|
12786
12906
|
updated_by_user_id: PropTypes.string.isRequired,
|
|
@@ -12878,10 +12998,36 @@ T['io.flow.shopify.markets.v0.models.shopify_order_transaction'] = PropTypes.exa
|
|
|
12878
12998
|
user_id: PropTypes.number,
|
|
12879
12999
|
});
|
|
12880
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
|
+
|
|
12881
13014
|
T['io.flow.shopify.markets.v0.models.response_shopify_transactions'] = PropTypes.exact({
|
|
12882
13015
|
transactions: PropTypes.arrayOf(T['io.flow.shopify.markets.v0.models.shopify_order_transaction']).isRequired,
|
|
12883
13016
|
});
|
|
12884
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
|
+
|
|
12885
13031
|
T['io.flow.shopify.markets.v0.enums.shopify_order_inventory_behaviour'] = PropTypes.oneOf(['bypass', 'decrement_ignoring_policy', 'decrement_obeying_policy']);
|
|
12886
13032
|
T['io.flow.shopify.markets.v0.enums.shopify_order_processing_method_type'] = PropTypes.oneOf(['checkout', 'direct', 'manual', 'offsite', 'express', 'deferred_payment']);
|
|
12887
13033
|
|
|
@@ -13847,7 +13993,8 @@ T['io.flow.internal.v0.models.item_sales_margin'] = PropTypes.exact({
|
|
|
13847
13993
|
position: PropTypes.number.isRequired,
|
|
13848
13994
|
});
|
|
13849
13995
|
|
|
13850
|
-
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']);
|
|
13851
13998
|
T['io.flow.internal.v0.enums.item_type'] = PropTypes.oneOf(['standard', 'multi_product']);
|
|
13852
13999
|
|
|
13853
14000
|
T['io.flow.common.v0.models.item_reference'] = PropTypes.exact({
|
|
@@ -15695,13 +15842,6 @@ T['io.flow.internal.v0.models.duty_rate'] = PropTypes.exact({
|
|
|
15695
15842
|
created_at: PropTypes.string.isRequired,
|
|
15696
15843
|
});
|
|
15697
15844
|
|
|
15698
|
-
T['io.flow.internal.v0.models.reporting_order_summary'] = PropTypes.exact({
|
|
15699
|
-
id: PropTypes.string.isRequired,
|
|
15700
|
-
number: PropTypes.string.isRequired,
|
|
15701
|
-
submitted_at: PropTypes.string.isRequired,
|
|
15702
|
-
payment_source: PropTypes.string,
|
|
15703
|
-
});
|
|
15704
|
-
|
|
15705
15845
|
T['io.flow.internal.v0.models.reporting_authorization_reference'] = PropTypes.exact({
|
|
15706
15846
|
id: PropTypes.string.isRequired,
|
|
15707
15847
|
});
|
|
@@ -16238,6 +16378,31 @@ T['io.flow.order.price.v0.enums.order_price_detail_key'] = PropTypes.oneOf([
|
|
|
16238
16378
|
'tip',
|
|
16239
16379
|
]);
|
|
16240
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
|
+
|
|
16241
16406
|
T['io.flow.label.v0.models.shipping_label_lane_summary'] = PropTypes.exact({
|
|
16242
16407
|
id: PropTypes.string,
|
|
16243
16408
|
ratecard: T['io.flow.label.v0.models.shipping_label_ratecard_summary'].isRequired,
|
|
@@ -16426,6 +16591,40 @@ T['io.flow.internal.v0.enums.billing_metric_key'] = PropTypes.oneOf([
|
|
|
16426
16591
|
'fourth_plus_attempt_failed_merchant_count',
|
|
16427
16592
|
'fourth_plus_attempt_failed_amount_total',
|
|
16428
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',
|
|
16429
16628
|
]);
|
|
16430
16629
|
|
|
16431
16630
|
T['io.flow.internal.v0.models.daily_value'] = PropTypes.exact({
|
|
@@ -16920,6 +17119,7 @@ T['io.flow.internal.v0.models.item_harmonization'] = PropTypes.exact({
|
|
|
16920
17119
|
status: T['io.flow.internal.v0.enums.item_harmonization_status'].isRequired,
|
|
16921
17120
|
tariffs: PropTypes.objectOf(T['io.flow.internal.v0.models.tariff_code_duty']),
|
|
16922
17121
|
decision_source: T['io.flow.internal.v0.enums.harmonization_decision_source'],
|
|
17122
|
+
classification_scope: T['io.flow.internal.v0.enums.classification_scope'],
|
|
16923
17123
|
created_at: PropTypes.string,
|
|
16924
17124
|
updated_at: PropTypes.string,
|
|
16925
17125
|
updated_by_user_id: PropTypes.string,
|
|
@@ -17472,9 +17672,14 @@ T['io.flow.internal.v0.models.transaction_reference'] = PropTypes.exact({
|
|
|
17472
17672
|
id: PropTypes.string.isRequired,
|
|
17473
17673
|
});
|
|
17474
17674
|
|
|
17675
|
+
T['io.flow.internal.v0.models.shopify_catalog_publication'] = PropTypes.exact({
|
|
17676
|
+
owner: T['io.flow.internal.v0.enums.catalog_publication_owner'].isRequired,
|
|
17677
|
+
});
|
|
17678
|
+
|
|
17475
17679
|
T['io.flow.internal.v0.models.shopify_metadata'] = PropTypes.exact({
|
|
17476
17680
|
domain: PropTypes.string.isRequired,
|
|
17477
17681
|
myshopify_domain: PropTypes.string.isRequired,
|
|
17682
|
+
catalog_publication: T['io.flow.internal.v0.models.shopify_catalog_publication'],
|
|
17478
17683
|
token: PropTypes.string.isRequired,
|
|
17479
17684
|
});
|
|
17480
17685
|
|
|
@@ -17500,6 +17705,11 @@ T['io.flow.channel.v0.models.channel_organization_form'] = PropTypes.exact({
|
|
|
17500
17705
|
attributes: PropTypes.objectOf(PropTypes.string),
|
|
17501
17706
|
});
|
|
17502
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
|
+
|
|
17503
17713
|
T['io.flow.internal.v0.models.channel_organization_shopify_post_form'] = PropTypes.exact({
|
|
17504
17714
|
form: T['io.flow.channel.v0.models.channel_organization_form'].isRequired,
|
|
17505
17715
|
metadata: T['io.flow.internal.v0.models.shopify_metadata'].isRequired,
|
|
@@ -17512,6 +17722,11 @@ T['io.flow.channel.v0.models.channel_organization_put_form'] = PropTypes.exact({
|
|
|
17512
17722
|
attributes: PropTypes.objectOf(PropTypes.string),
|
|
17513
17723
|
});
|
|
17514
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
|
+
|
|
17515
17730
|
T['io.flow.internal.v0.models.channel_organization_shopify_form'] = PropTypes.exact({
|
|
17516
17731
|
form: T['io.flow.channel.v0.models.channel_organization_put_form'].isRequired,
|
|
17517
17732
|
metadata: T['io.flow.internal.v0.models.shopify_metadata'].isRequired,
|
|
@@ -17570,29 +17785,7 @@ T['io.flow.internal.v0.enums.channel_order_acceptance_rejection_reason'] = PropT
|
|
|
17570
17785
|
'order_missing',
|
|
17571
17786
|
]);
|
|
17572
17787
|
|
|
17573
|
-
T['io.flow.
|
|
17574
|
-
|
|
17575
|
-
T['io.flow.channel.internal.v0.models.channel_order_acceptance'] = PropTypes.exact({
|
|
17576
|
-
id: PropTypes.string.isRequired,
|
|
17577
|
-
organization_id: PropTypes.string.isRequired,
|
|
17578
|
-
order_number: PropTypes.string.isRequired,
|
|
17579
|
-
channel_id: PropTypes.string.isRequired,
|
|
17580
|
-
external_order_reference: PropTypes.string.isRequired,
|
|
17581
|
-
payment_request_id: PropTypes.string,
|
|
17582
|
-
order_edit_payment_request_ids: PropTypes.arrayOf(PropTypes.string),
|
|
17583
|
-
status: T['io.flow.channel.internal.v0.enums.channel_order_acceptance_status'].isRequired,
|
|
17584
|
-
reasons: PropTypes.arrayOf(T['io.flow.channel.internal.v0.models.channel_order_acceptance_reason']).isRequired,
|
|
17585
|
-
next_action_from: T['io.flow.channel.internal.v0.enums.channel_order_acceptance_next_action_from'],
|
|
17586
|
-
order_created_at: PropTypes.string,
|
|
17587
|
-
order_updated_at: PropTypes.string,
|
|
17588
|
-
order_edit_summary: T['io.flow.channel.internal.v0.models.order_edit_summary'],
|
|
17589
|
-
payment_source: T['io.flow.experience.v0.enums.order_payment_source_type'],
|
|
17590
|
-
});
|
|
17591
|
-
|
|
17592
|
-
T['io.flow.channel.internal.v0.models.channel_order_acceptance_details'] = PropTypes.exact({
|
|
17593
|
-
order_acceptance: T['io.flow.channel.internal.v0.models.channel_order_acceptance'].isRequired,
|
|
17594
|
-
external_order: PropTypes.object.isRequired,
|
|
17595
|
-
});
|
|
17788
|
+
T['io.flow.internal.v0.enums.order_payment_source_type'] = PropTypes.oneOf(['globale', 'third_party']);
|
|
17596
17789
|
|
|
17597
17790
|
T['io.flow.internal.v0.models.order_edit_summary'] = PropTypes.exact({
|
|
17598
17791
|
edited_at: PropTypes.string.isRequired,
|
|
@@ -18898,6 +19091,13 @@ T['io.flow.internal.v0.models.carrier_account_validation'] = PropTypes.exact({
|
|
|
18898
19091
|
error_message: PropTypes.string,
|
|
18899
19092
|
});
|
|
18900
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
|
+
|
|
18901
19101
|
T['io.flow.internal.v0.models.fedex'] = PropTypes.exact({
|
|
18902
19102
|
discriminator: PropTypes.oneOf(['fedex']).isRequired,
|
|
18903
19103
|
key: PropTypes.string.isRequired,
|
|
@@ -18960,6 +19160,7 @@ T['io.flow.internal.v0.unions.carrier_credentials'] = PropTypes.oneOfType([
|
|
|
18960
19160
|
T['io.flow.internal.v0.models.fedex_crossborder'],
|
|
18961
19161
|
T['io.flow.internal.v0.models.ups'],
|
|
18962
19162
|
T['io.flow.internal.v0.models.fedex'],
|
|
19163
|
+
T['io.flow.internal.v0.models.fedex_api'],
|
|
18963
19164
|
]);
|
|
18964
19165
|
|
|
18965
19166
|
T['io.flow.internal.v0.models.tracking_request'] = PropTypes.exact({
|
|
@@ -19142,7 +19343,7 @@ T['io.flow.internal.v0.models.channel_order_acceptance'] = PropTypes.exact({
|
|
|
19142
19343
|
order_created_at: PropTypes.string,
|
|
19143
19344
|
order_updated_at: PropTypes.string,
|
|
19144
19345
|
order_edit_summary: T['io.flow.internal.v0.models.order_edit_summary'],
|
|
19145
|
-
payment_source: T['io.flow.
|
|
19346
|
+
payment_source: T['io.flow.internal.v0.enums.order_payment_source_type'],
|
|
19146
19347
|
});
|
|
19147
19348
|
|
|
19148
19349
|
T['io.flow.internal.v0.models.channel_order_acceptance_upserted'] = PropTypes.exact({
|
|
@@ -19849,6 +20050,7 @@ T['io.flow.internal.v0.models.restriction_item_request_form'] = PropTypes.exact(
|
|
|
19849
20050
|
rule_ids: PropTypes.arrayOf(PropTypes.string),
|
|
19850
20051
|
user_ids: PropTypes.arrayOf(PropTypes.string),
|
|
19851
20052
|
categories: PropTypes.arrayOf(PropTypes.string),
|
|
20053
|
+
category: PropTypes.string,
|
|
19852
20054
|
product_name_query: PropTypes.string,
|
|
19853
20055
|
hs6: PropTypes.string,
|
|
19854
20056
|
positive_keywords: PropTypes.arrayOf(PropTypes.string),
|
|
@@ -19904,7 +20106,7 @@ T['io.flow.internal.v0.models.restriction_rule_form'] = PropTypes.exact({
|
|
|
19904
20106
|
negative_keywords: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
19905
20107
|
value_threshold_usd: PropTypes.number,
|
|
19906
20108
|
auto_review_criteria: PropTypes.arrayOf(T['io.flow.internal.v0.models.auto_review_criteria']),
|
|
19907
|
-
source: T['io.flow.internal.v0.enums.restriction_organization_source'],
|
|
20109
|
+
source: T['io.flow.internal.v0.enums.restriction_organization_source'].isRequired,
|
|
19908
20110
|
sellability_positive_keywords: PropTypes.arrayOf(PropTypes.string),
|
|
19909
20111
|
});
|
|
19910
20112
|
|
|
@@ -21855,6 +22057,7 @@ T['io.flow.billing.v0.enums.fee_deduction_type'] = PropTypes.oneOf([
|
|
|
21855
22057
|
'rate_lock',
|
|
21856
22058
|
'transfer',
|
|
21857
22059
|
'negative_balance_guarantee',
|
|
22060
|
+
'sp',
|
|
21858
22061
|
]);
|
|
21859
22062
|
|
|
21860
22063
|
T['io.flow.billing.v0.models.fee_deduction'] = PropTypes.exact({
|
|
@@ -22173,6 +22376,8 @@ T['io.flow.ratecard.v0.models.peak_surcharge_service_fee'] = PropTypes.exact({
|
|
|
22173
22376
|
amount: T['io.flow.common.v0.models.money'].isRequired,
|
|
22174
22377
|
starts_at: PropTypes.string,
|
|
22175
22378
|
ends_at: PropTypes.string,
|
|
22379
|
+
regions: PropTypes.arrayOf(PropTypes.string),
|
|
22380
|
+
dependent_service_fees: PropTypes.arrayOf(PropTypes.string),
|
|
22176
22381
|
});
|
|
22177
22382
|
|
|
22178
22383
|
T['io.flow.ratecard.v0.models.peak_surcharge_ratecard_fee'] = PropTypes.exact({
|
|
@@ -22364,6 +22569,11 @@ T['io.flow.ratecard.v0.models.ratecard_lane_version'] = PropTypes.exact({
|
|
|
22364
22569
|
ratecard_lane: T['io.flow.ratecard.v0.models.ratecard_lane'].isRequired,
|
|
22365
22570
|
});
|
|
22366
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
|
+
|
|
22367
22577
|
T['io.flow.ratecard.v0.models.hop_estimate_v2'] = PropTypes.exact({
|
|
22368
22578
|
origin_address: T['io.flow.fulfillment.v0.models.shipping_address'].isRequired,
|
|
22369
22579
|
destination_address: T['io.flow.fulfillment.v0.models.shipping_address'].isRequired,
|
|
@@ -23654,6 +23864,8 @@ T['io.flow.shopify.markets.internal.event.v0.unions.shopify_markets_internal_eve
|
|
|
23654
23864
|
T['io.flow.shopify.markets.internal.event.v0.models.shopify_markets_best_selling_product_deleted'],
|
|
23655
23865
|
T['io.flow.shopify.markets.internal.event.v0.models.shopify_order_risk_assessment_upserted'],
|
|
23656
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'],
|
|
23657
23869
|
]);
|
|
23658
23870
|
|
|
23659
23871
|
T['io.flow.export.v0.models.marketing_feeds_export_type'] = PropTypes.exact({
|
|
@@ -24157,6 +24369,14 @@ T['io.flow.channel.v0.models.channel_organization'] = PropTypes.exact({
|
|
|
24157
24369
|
attributes: PropTypes.objectOf(PropTypes.string),
|
|
24158
24370
|
});
|
|
24159
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
|
+
|
|
24160
24380
|
T['io.flow.internal.v0.models.channel_organization_shopify'] = PropTypes.exact({
|
|
24161
24381
|
organization: T['io.flow.channel.v0.models.channel_organization'].isRequired,
|
|
24162
24382
|
tokens: PropTypes.arrayOf(T['io.flow.internal.v0.models.shopify_channel_organization_tokens']).isRequired,
|
|
@@ -24250,6 +24470,7 @@ T['io.flow.internal.v0.models.accounting_pending_order_metadata'] = PropTypes.ex
|
|
|
24250
24470
|
T['io.flow.internal.v0.unions.task_metadata'] = PropTypes.oneOfType([
|
|
24251
24471
|
T['io.flow.internal.v0.models.statement_creation_metadata'],
|
|
24252
24472
|
T['io.flow.internal.v0.models.accounting_pending_order_metadata'],
|
|
24473
|
+
T['io.flow.internal.v0.models.tax_duty_reason_code_metadata'],
|
|
24253
24474
|
]);
|
|
24254
24475
|
|
|
24255
24476
|
T['io.flow.common.v0.models.price'] = PropTypes.exact({
|
|
@@ -24769,10 +24990,12 @@ T['io.flow.internal.v0.models.restriction_product'] = PropTypes.exact({
|
|
|
24769
24990
|
item_numbers: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
24770
24991
|
primary_item_number: PropTypes.string,
|
|
24771
24992
|
description: PropTypes.string.isRequired,
|
|
24993
|
+
category: PropTypes.string,
|
|
24772
24994
|
categories: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
24773
24995
|
images: PropTypes.arrayOf(T['io.flow.catalog.v0.models.image']).isRequired,
|
|
24774
24996
|
thumbnails: PropTypes.arrayOf(T['io.flow.catalog.v0.models.image']).isRequired,
|
|
24775
24997
|
hs_code: PropTypes.string,
|
|
24998
|
+
hs_code_source: T['io.flow.internal.v0.enums.harmonization_decision_source'],
|
|
24776
24999
|
url: PropTypes.string,
|
|
24777
25000
|
reviews: PropTypes.arrayOf(T['io.flow.internal.v0.models.restriction_item_review']).isRequired,
|
|
24778
25001
|
created_at: PropTypes.string.isRequired,
|
|
@@ -24789,7 +25012,9 @@ T['io.flow.internal.v0.models.restriction_item'] = PropTypes.exact({
|
|
|
24789
25012
|
name: PropTypes.string.isRequired,
|
|
24790
25013
|
price: T['io.flow.common.v0.models.price'].isRequired,
|
|
24791
25014
|
hs_code: PropTypes.string,
|
|
25015
|
+
hs_code_source: T['io.flow.internal.v0.enums.harmonization_decision_source'],
|
|
24792
25016
|
description: PropTypes.string.isRequired,
|
|
25017
|
+
category: PropTypes.string,
|
|
24793
25018
|
categories: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
24794
25019
|
images: PropTypes.arrayOf(T['io.flow.catalog.v0.models.image']).isRequired,
|
|
24795
25020
|
thumbnails: PropTypes.arrayOf(T['io.flow.catalog.v0.models.image']).isRequired,
|
|
@@ -24918,6 +25143,7 @@ T['io.flow.internal.v0.models.debug_order'] = PropTypes.exact({
|
|
|
24918
25143
|
total: T['io.flow.common.v0.models.money_with_base'].isRequired,
|
|
24919
25144
|
identifiers: PropTypes.objectOf(PropTypes.string),
|
|
24920
25145
|
submitted_at: PropTypes.string,
|
|
25146
|
+
payment_source: T['io.flow.experience.v0.enums.order_payment_source_type'],
|
|
24921
25147
|
});
|
|
24922
25148
|
|
|
24923
25149
|
T['io.flow.internal.v0.models.components'] = PropTypes.exact({
|
|
@@ -24940,6 +25166,7 @@ T['io.flow.internal.v0.models.fees'] = PropTypes.exact({
|
|
|
24940
25166
|
duty_guarantee: T['io.flow.internal.v0.models.fee'],
|
|
24941
25167
|
transfer: T['io.flow.internal.v0.models.fee'],
|
|
24942
25168
|
negative_balance: T['io.flow.internal.v0.models.fee'],
|
|
25169
|
+
sp: T['io.flow.internal.v0.models.fee'],
|
|
24943
25170
|
});
|
|
24944
25171
|
|
|
24945
25172
|
T['io.flow.catalog.v0.models.localized_total'] = PropTypes.exact({
|
|
@@ -25749,6 +25976,7 @@ T['io.flow.internal.v0.models.validated_shipping_data'] = PropTypes.exact({
|
|
|
25749
25976
|
additional_services_requested: PropTypes.arrayOf(T['io.flow.label.v0.models.additional_services_requested']),
|
|
25750
25977
|
provided_charges: PropTypes.arrayOf(T['io.flow.internal.v0.models.charge_input']),
|
|
25751
25978
|
direction: T['io.flow.label.v0.enums.direction'],
|
|
25979
|
+
package_dimensions_source: T['io.flow.label.v0.enums.package_dimensions_source'].isRequired,
|
|
25752
25980
|
});
|
|
25753
25981
|
|
|
25754
25982
|
T['io.flow.experience.v0.models.order_builder'] = PropTypes.exact({
|
|
@@ -27370,6 +27598,8 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
|
|
|
27370
27598
|
T['io.flow.internal.v0.models.restriction_rule_deleted'],
|
|
27371
27599
|
T['io.flow.internal.v0.models.restriction_rule_effect_upserted'],
|
|
27372
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'],
|
|
27373
27603
|
T['io.flow.internal.v0.models.shopify_shop_upserted'],
|
|
27374
27604
|
T['io.flow.internal.v0.models.shopify_shop_deleted'],
|
|
27375
27605
|
T['io.flow.internal.v0.models.shopify_experience_short_id_upserted'],
|
|
@@ -27397,6 +27627,8 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
|
|
|
27397
27627
|
T['io.flow.internal.v0.models.shopify_markets_best_selling_product_deleted'],
|
|
27398
27628
|
T['io.flow.internal.v0.models.shopify_order_risk_assessment_upserted'],
|
|
27399
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'],
|
|
27400
27632
|
T['io.flow.internal.v0.models.shopify_product_create_upserted'],
|
|
27401
27633
|
T['io.flow.internal.v0.models.shopify_product_create_deleted'],
|
|
27402
27634
|
T['io.flow.internal.v0.models.shopify_product_update_upserted'],
|
|
@@ -27560,6 +27792,15 @@ T['io.flow.internal.v0.enums.auto_restrict_rule'] = PropTypes.oneOf([
|
|
|
27560
27792
|
'prr-79e41878ea564f9c81cc432a0e84703f',
|
|
27561
27793
|
'prr-f29c26dc09e04536bc77f9c32786ed70',
|
|
27562
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',
|
|
27563
27804
|
]);
|
|
27564
27805
|
|
|
27565
27806
|
T['io.flow.internal.v0.enums.bank_payment_promise_completed_method'] = PropTypes.oneOf(['credit', 'time']);
|
|
@@ -27893,6 +28134,8 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
|
|
|
27893
28134
|
'restriction_rule_deleted',
|
|
27894
28135
|
'restriction_rule_effect_upserted',
|
|
27895
28136
|
'restriction_rule_effect_deleted',
|
|
28137
|
+
'taxonomy_category_hs6_ref_upserted',
|
|
28138
|
+
'taxonomy_category_hs6_ref_deleted',
|
|
27896
28139
|
'shopify_shop_upserted',
|
|
27897
28140
|
'shopify_shop_deleted',
|
|
27898
28141
|
'shopify_experience_short_id_upserted',
|
|
@@ -27920,6 +28163,8 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
|
|
|
27920
28163
|
'shopify_markets_best_selling_product_deleted',
|
|
27921
28164
|
'shopify_order_risk_assessment_upserted',
|
|
27922
28165
|
'shopify_order_risk_assessment_deleted',
|
|
28166
|
+
'shopify_order_transaction_upserted',
|
|
28167
|
+
'shopify_order_transaction_deleted',
|
|
27923
28168
|
'shopify_product_create_upserted',
|
|
27924
28169
|
'shopify_product_create_deleted',
|
|
27925
28170
|
'shopify_product_update_upserted',
|
|
@@ -28779,6 +29024,7 @@ T['io.flow.internal.v0.models.product_sellability_result'] = PropTypes.exact({
|
|
|
28779
29024
|
request_id: PropTypes.string.isRequired,
|
|
28780
29025
|
hs6_code: PropTypes.string.isRequired,
|
|
28781
29026
|
restricted_regions: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
29027
|
+
rule_ids: PropTypes.arrayOf(PropTypes.string),
|
|
28782
29028
|
});
|
|
28783
29029
|
|
|
28784
29030
|
T['io.flow.internal.v0.models.rate_data'] = PropTypes.exact({
|
|
@@ -28855,6 +29101,7 @@ T['io.flow.internal.v0.models.restriction_product_request_form'] = PropTypes.exa
|
|
|
28855
29101
|
negative_keywords: PropTypes.arrayOf(PropTypes.string),
|
|
28856
29102
|
user_ids: PropTypes.arrayOf(PropTypes.string),
|
|
28857
29103
|
categories: PropTypes.arrayOf(PropTypes.string),
|
|
29104
|
+
category: PropTypes.string,
|
|
28858
29105
|
product_name_query: PropTypes.string,
|
|
28859
29106
|
hs6: PropTypes.string,
|
|
28860
29107
|
product_id: PropTypes.string,
|
|
@@ -28868,21 +29115,22 @@ T['io.flow.internal.v0.models.restriction_rule_lane_exemption'] = PropTypes.exac
|
|
|
28868
29115
|
destination_countries: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
28869
29116
|
});
|
|
28870
29117
|
|
|
28871
|
-
T['io.flow.internal.v0.models.
|
|
29118
|
+
T['io.flow.internal.v0.models.restriction_rule_organization_exemption'] = PropTypes.exact({
|
|
28872
29119
|
id: PropTypes.string.isRequired,
|
|
28873
29120
|
organization_id: PropTypes.string.isRequired,
|
|
28874
29121
|
rule_id: PropTypes.string.isRequired,
|
|
28875
|
-
|
|
28876
|
-
|
|
28877
|
-
|
|
28878
|
-
|
|
28879
|
-
|
|
28880
|
-
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),
|
|
28881
29127
|
});
|
|
28882
29128
|
|
|
28883
|
-
T['io.flow.internal.v0.models.
|
|
28884
|
-
|
|
28885
|
-
|
|
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,
|
|
28886
29134
|
});
|
|
28887
29135
|
|
|
28888
29136
|
T['io.flow.internal.v0.models.sandbox_setup'] = PropTypes.exact({
|
|
@@ -29085,10 +29333,6 @@ T['io.flow.internal.v0.models.tracking_debug_force_transit_form'] = PropTypes.ex
|
|
|
29085
29333
|
description: PropTypes.string.isRequired,
|
|
29086
29334
|
});
|
|
29087
29335
|
|
|
29088
|
-
T['io.flow.internal.v0.models.tracking_resync'] = PropTypes.exact({
|
|
29089
|
-
placeholder: PropTypes.bool,
|
|
29090
|
-
});
|
|
29091
|
-
|
|
29092
29336
|
T['io.flow.internal.v0.models.tracking_webhook'] = PropTypes.exact({
|
|
29093
29337
|
placeholder: PropTypes.bool,
|
|
29094
29338
|
});
|
|
@@ -30633,6 +30877,7 @@ export const catalogItemIndexTask = T['io.flow.internal.v0.models.catalog_item_i
|
|
|
30633
30877
|
export const catalogItemRegionAvailabilities = T['io.flow.internal.v0.models.catalog_item_region_availabilities'];
|
|
30634
30878
|
export const catalogItemRegionAvailabilitiesData = T['io.flow.internal.v0.models.catalog_item_region_availabilities_data'];
|
|
30635
30879
|
export const catalogItemRegionAvailabilitiesPublished = T['io.flow.internal.v0.models.catalog_item_region_availabilities_published'];
|
|
30880
|
+
export const catalogPublicationOwner = T['io.flow.internal.v0.enums.catalog_publication_owner'];
|
|
30636
30881
|
export const catalogPublicationSyncValidationError = T['io.flow.internal.v0.models.catalog_publication_sync_validation_error'];
|
|
30637
30882
|
export const catalogSettings = T['io.flow.internal.v0.models.catalog_settings'];
|
|
30638
30883
|
export const catalogSettingsDeleted = T['io.flow.internal.v0.models.catalog_settings_deleted'];
|
|
@@ -30770,6 +31015,7 @@ export const classificationProductSummary = T['io.flow.internal.v0.models.classi
|
|
|
30770
31015
|
export const classificationProductSummaryPage = T['io.flow.internal.v0.models.classification_product_summary_page'];
|
|
30771
31016
|
export const classificationRequeueRequest = T['io.flow.internal.v0.models.classification_requeue_request'];
|
|
30772
31017
|
export const classificationResponse = T['io.flow.internal.v0.unions.classification_response'];
|
|
31018
|
+
export const classificationScope = T['io.flow.internal.v0.enums.classification_scope'];
|
|
30773
31019
|
export const classificationStatistics = T['io.flow.internal.v0.models.classification_statistics'];
|
|
30774
31020
|
export const classificationSummaryReportPayload = T['io.flow.internal.v0.models.classification_summary_report_payload'];
|
|
30775
31021
|
export const classificationTaxonomy = T['io.flow.internal.v0.unions.classification_taxonomy'];
|
|
@@ -30962,6 +31208,7 @@ export const erpVendorStatus = T['io.flow.internal.v0.models.erp_vendor_status']
|
|
|
30962
31208
|
export const erpVendorStatusEntity = T['io.flow.internal.v0.models.erp_vendor_status_entity'];
|
|
30963
31209
|
export const erpVendorStatusFlowFile = T['io.flow.internal.v0.models.erp_vendor_status_flow_file'];
|
|
30964
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'];
|
|
30965
31212
|
export const event = T['io.flow.internal.v0.unions.event'];
|
|
30966
31213
|
export const eventType = T['io.flow.internal.v0.enums.event_type'];
|
|
30967
31214
|
export const exclusionRuleDeleted = T['io.flow.internal.v0.models.exclusion_rule_deleted'];
|
|
@@ -31015,6 +31262,7 @@ export const featureValue = T['io.flow.internal.v0.unions.feature_value'];
|
|
|
31015
31262
|
export const featureValueForm = T['io.flow.internal.v0.models.feature_value_form'];
|
|
31016
31263
|
export const featureValueResult = T['io.flow.internal.v0.models.feature_value_result'];
|
|
31017
31264
|
export const fedex = T['io.flow.internal.v0.models.fedex'];
|
|
31265
|
+
export const fedexApi = T['io.flow.internal.v0.models.fedex_api'];
|
|
31018
31266
|
export const fedexCrossborder = T['io.flow.internal.v0.models.fedex_crossborder'];
|
|
31019
31267
|
export const fee = T['io.flow.internal.v0.models.fee'];
|
|
31020
31268
|
export const fees = T['io.flow.internal.v0.models.fees'];
|
|
@@ -31434,6 +31682,7 @@ export const orderLifecycleEvent = T['io.flow.internal.v0.enums.order_lifecycle_
|
|
|
31434
31682
|
export const orderNote = T['io.flow.internal.v0.models.order_note'];
|
|
31435
31683
|
export const orderNoteForm = T['io.flow.internal.v0.models.order_note_form'];
|
|
31436
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'];
|
|
31437
31686
|
export const orderRatesDataV3 = T['io.flow.internal.v0.models.order_rates_data_v3'];
|
|
31438
31687
|
export const orderRatesPublishedV3 = T['io.flow.internal.v0.models.order_rates_published_v3'];
|
|
31439
31688
|
export const orderReference = T['io.flow.internal.v0.models.order_reference'];
|
|
@@ -31661,6 +31910,7 @@ export const productRestrictionStateDeleted = T['io.flow.internal.v0.models.prod
|
|
|
31661
31910
|
export const productRestrictionStateInserted = T['io.flow.internal.v0.models.product_restriction_state_inserted'];
|
|
31662
31911
|
export const productRestrictionStateUpdated = T['io.flow.internal.v0.models.product_restriction_state_updated'];
|
|
31663
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'];
|
|
31664
31914
|
export const productSellabilityResult = T['io.flow.internal.v0.models.product_sellability_result'];
|
|
31665
31915
|
export const productStatus = T['io.flow.internal.v0.enums.product_status'];
|
|
31666
31916
|
export const productTransaction = T['io.flow.internal.v0.models.product_transaction'];
|
|
@@ -31836,6 +32086,7 @@ export const restrictionRuleEffectUpserted = T['io.flow.internal.v0.models.restr
|
|
|
31836
32086
|
export const restrictionRuleExceptionAction = T['io.flow.internal.v0.enums.restriction_rule_exception_action'];
|
|
31837
32087
|
export const restrictionRuleForm = T['io.flow.internal.v0.models.restriction_rule_form'];
|
|
31838
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'];
|
|
31839
32090
|
export const restrictionRuleOverride = T['io.flow.internal.v0.models.restriction_rule_override'];
|
|
31840
32091
|
export const restrictionRuleSummary = T['io.flow.internal.v0.models.restriction_rule_summary'];
|
|
31841
32092
|
export const restrictionRuleUpserted = T['io.flow.internal.v0.models.restriction_rule_upserted'];
|
|
@@ -31849,8 +32100,6 @@ export const resyncByDestinations = T['io.flow.internal.v0.models.resync_by_dest
|
|
|
31849
32100
|
export const resyncByHs6Destinations = T['io.flow.internal.v0.models.resync_by_hs6_destinations'];
|
|
31850
32101
|
export const resyncByHs6Origin = T['io.flow.internal.v0.models.resync_by_hs6_origin'];
|
|
31851
32102
|
export const resyncFallbackRates = T['io.flow.internal.v0.models.resync_fallback_rates'];
|
|
31852
|
-
export const retracking = T['io.flow.internal.v0.models.retracking'];
|
|
31853
|
-
export const retrackingForm = T['io.flow.internal.v0.models.retracking_form'];
|
|
31854
32103
|
export const UNSAFE_return = T['io.flow.internal.v0.models.return'];
|
|
31855
32104
|
export const returnPolicyDeleted = T['io.flow.internal.v0.models.return_policy_deleted'];
|
|
31856
32105
|
export const returnPolicyItemResultDeleted = T['io.flow.internal.v0.models.return_policy_item_result_deleted'];
|
|
@@ -31897,6 +32146,7 @@ export const shippingPricing = T['io.flow.internal.v0.models.shipping_pricing'];
|
|
|
31897
32146
|
export const shop = T['io.flow.internal.v0.models.shop'];
|
|
31898
32147
|
export const shopForm = T['io.flow.internal.v0.models.shop_form'];
|
|
31899
32148
|
export const shopVersion = T['io.flow.internal.v0.models.shop_version'];
|
|
32149
|
+
export const shopifyCatalogPublication = T['io.flow.internal.v0.models.shopify_catalog_publication'];
|
|
31900
32150
|
export const shopifyChannelOrganizationToken = T['io.flow.internal.v0.models.shopify_channel_organization_token'];
|
|
31901
32151
|
export const shopifyChannelOrganizationTokens = T['io.flow.internal.v0.models.shopify_channel_organization_tokens'];
|
|
31902
32152
|
export const shopifyCheckInventoryError = T['io.flow.internal.v0.models.shopify_check_inventory_error'];
|
|
@@ -31994,6 +32244,9 @@ export const shopifyOrderLineContent = T['io.flow.internal.v0.models.shopify_ord
|
|
|
31994
32244
|
export const shopifyOrderRiskAssessment = T['io.flow.internal.v0.models.shopify_order_risk_assessment'];
|
|
31995
32245
|
export const shopifyOrderRiskAssessmentDeleted = T['io.flow.internal.v0.models.shopify_order_risk_assessment_deleted'];
|
|
31996
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'];
|
|
31997
32250
|
export const shopifyOrganizationSettings = T['io.flow.internal.v0.models.shopify_organization_settings'];
|
|
31998
32251
|
export const shopifyOrganizationSettingsForm = T['io.flow.internal.v0.models.shopify_organization_settings_form'];
|
|
31999
32252
|
export const shopifyPartnerWebhook = T['io.flow.internal.v0.models.shopify_partner_webhook'];
|
|
@@ -32146,6 +32399,7 @@ export const taxCalculationErrorCode = T['io.flow.internal.v0.enums.tax_calculat
|
|
|
32146
32399
|
export const taxCalculationForm = T['io.flow.internal.v0.models.tax_calculation_form'];
|
|
32147
32400
|
export const taxCalculationLineItem = T['io.flow.internal.v0.models.tax_calculation_line_item'];
|
|
32148
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'];
|
|
32149
32403
|
export const taxParty = T['io.flow.internal.v0.enums.tax_party'];
|
|
32150
32404
|
export const taxRemittanceTransaction = T['io.flow.internal.v0.models.tax_remittance_transaction'];
|
|
32151
32405
|
export const taxRemittanceTransactionDeleted = T['io.flow.internal.v0.models.tax_remittance_transaction_deleted'];
|
|
@@ -32155,6 +32409,9 @@ export const taxTransactionDeleted = T['io.flow.internal.v0.models.tax_transacti
|
|
|
32155
32409
|
export const taxTransactionType = T['io.flow.internal.v0.enums.tax_transaction_type'];
|
|
32156
32410
|
export const taxTransactionUpserted = T['io.flow.internal.v0.models.tax_transaction_upserted'];
|
|
32157
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'];
|
|
32158
32415
|
export const taxonomyNode = PropTypes.any;
|
|
32159
32416
|
export const techOnboardingDescription = T['io.flow.internal.v0.models.tech_onboarding_description'];
|
|
32160
32417
|
export const test = T['io.flow.internal.v0.models.test'];
|
|
@@ -32201,7 +32458,6 @@ export const trackingProcessingErrorUpserted = T['io.flow.internal.v0.models.tra
|
|
|
32201
32458
|
export const trackingProcessingFailureClassification = T['io.flow.internal.v0.enums.tracking_processing_failure_classification'];
|
|
32202
32459
|
export const trackingRequest = T['io.flow.internal.v0.models.tracking_request'];
|
|
32203
32460
|
export const trackingResponse = T['io.flow.internal.v0.models.tracking_response'];
|
|
32204
|
-
export const trackingResync = T['io.flow.internal.v0.models.tracking_resync'];
|
|
32205
32461
|
export const trackingSubscription = T['io.flow.internal.v0.models.tracking_subscription'];
|
|
32206
32462
|
export const trackingSubscriptionDeleted = T['io.flow.internal.v0.models.tracking_subscription_deleted'];
|
|
32207
32463
|
export const trackingSubscriptionUpserted = T['io.flow.internal.v0.models.tracking_subscription_upserted'];
|