@flowio/api-internal-prop-types 9.24.118 → 9.24.120
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 +239 -41
- package/lib/api-internal.js +1 -1
- package/package.json +2 -2
- package/src/api-internal.d.ts +239 -41
- package/src/api-internal.js +440 -178
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,16 +12345,12 @@ 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,
|
|
12240
12352
|
restricted_product_count: PropTypes.number.isRequired,
|
|
12241
12353
|
last_order_submitted_at: PropTypes.string,
|
|
12242
|
-
matching_positive_keywords: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
12243
|
-
product_categories: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
12244
|
-
matching_negative_keywords: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
12245
|
-
decisions_user_ids: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
12246
|
-
restriction_rule_ids: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
12247
12354
|
});
|
|
12248
12355
|
|
|
12249
12356
|
T['io.flow.internal.v0.models.organization_metadata_upserted'] = PropTypes.exact({
|
|
@@ -12768,7 +12875,13 @@ T['io.flow.internal.v0.models.merchant_search_result'] = PropTypes.exact({
|
|
|
12768
12875
|
shop_domain: PropTypes.string,
|
|
12769
12876
|
});
|
|
12770
12877
|
|
|
12771
|
-
T['io.flow.internal.v0.
|
|
12878
|
+
T['io.flow.internal.v0.models.evaluation_results'] = PropTypes.exact({
|
|
12879
|
+
chapter_result: PropTypes.object.isRequired,
|
|
12880
|
+
sellability_result: PropTypes.object.isRequired,
|
|
12881
|
+
duty_variance_result: PropTypes.object.isRequired,
|
|
12882
|
+
});
|
|
12883
|
+
|
|
12884
|
+
T['io.flow.internal.v0.enums.merchant_override_status'] = PropTypes.oneOf(['pending', 'in_review', 'accepted', 'rejected']);
|
|
12772
12885
|
|
|
12773
12886
|
T['io.flow.internal.v0.models.merchant_override_decision_form'] = PropTypes.exact({
|
|
12774
12887
|
id: PropTypes.string.isRequired,
|
|
@@ -12782,6 +12895,7 @@ T['io.flow.internal.v0.models.merchant_override'] = PropTypes.exact({
|
|
|
12782
12895
|
status: T['io.flow.internal.v0.enums.merchant_override_status'].isRequired,
|
|
12783
12896
|
hs6_code: PropTypes.string.isRequired,
|
|
12784
12897
|
merchant_hs6_code: PropTypes.string.isRequired,
|
|
12898
|
+
evaluation_results: T['io.flow.internal.v0.models.evaluation_results'],
|
|
12785
12899
|
created_at: PropTypes.string.isRequired,
|
|
12786
12900
|
updated_at: PropTypes.string.isRequired,
|
|
12787
12901
|
updated_by_user_id: PropTypes.string.isRequired,
|
|
@@ -12879,10 +12993,36 @@ T['io.flow.shopify.markets.v0.models.shopify_order_transaction'] = PropTypes.exa
|
|
|
12879
12993
|
user_id: PropTypes.number,
|
|
12880
12994
|
});
|
|
12881
12995
|
|
|
12996
|
+
T['io.flow.shopify.markets.internal.event.v0.models.shopify_order_transaction'] = PropTypes.exact({
|
|
12997
|
+
id: PropTypes.string.isRequired,
|
|
12998
|
+
model: T['io.flow.shopify.markets.v0.models.shopify_order_transaction'].isRequired,
|
|
12999
|
+
});
|
|
13000
|
+
|
|
13001
|
+
T['io.flow.shopify.markets.internal.event.v0.models.shopify_order_transaction_upserted'] = PropTypes.exact({
|
|
13002
|
+
discriminator: PropTypes.oneOf(['shopify_order_transaction_upserted']).isRequired,
|
|
13003
|
+
event_id: PropTypes.string.isRequired,
|
|
13004
|
+
timestamp: PropTypes.string.isRequired,
|
|
13005
|
+
organization: PropTypes.string.isRequired,
|
|
13006
|
+
transaction: T['io.flow.shopify.markets.internal.event.v0.models.shopify_order_transaction'].isRequired,
|
|
13007
|
+
});
|
|
13008
|
+
|
|
12882
13009
|
T['io.flow.shopify.markets.v0.models.response_shopify_transactions'] = PropTypes.exact({
|
|
12883
13010
|
transactions: PropTypes.arrayOf(T['io.flow.shopify.markets.v0.models.shopify_order_transaction']).isRequired,
|
|
12884
13011
|
});
|
|
12885
13012
|
|
|
13013
|
+
T['io.flow.internal.v0.models.shopify_order_transaction'] = PropTypes.exact({
|
|
13014
|
+
id: PropTypes.string.isRequired,
|
|
13015
|
+
model: T['io.flow.shopify.markets.v0.models.shopify_order_transaction'].isRequired,
|
|
13016
|
+
});
|
|
13017
|
+
|
|
13018
|
+
T['io.flow.internal.v0.models.shopify_order_transaction_upserted'] = PropTypes.exact({
|
|
13019
|
+
discriminator: PropTypes.oneOf(['shopify_order_transaction_upserted']).isRequired,
|
|
13020
|
+
event_id: PropTypes.string.isRequired,
|
|
13021
|
+
timestamp: PropTypes.string.isRequired,
|
|
13022
|
+
organization: PropTypes.string.isRequired,
|
|
13023
|
+
transaction: T['io.flow.internal.v0.models.shopify_order_transaction'].isRequired,
|
|
13024
|
+
});
|
|
13025
|
+
|
|
12886
13026
|
T['io.flow.shopify.markets.v0.enums.shopify_order_inventory_behaviour'] = PropTypes.oneOf(['bypass', 'decrement_ignoring_policy', 'decrement_obeying_policy']);
|
|
12887
13027
|
T['io.flow.shopify.markets.v0.enums.shopify_order_processing_method_type'] = PropTypes.oneOf(['checkout', 'direct', 'manual', 'offsite', 'express', 'deferred_payment']);
|
|
12888
13028
|
|
|
@@ -13848,7 +13988,8 @@ T['io.flow.internal.v0.models.item_sales_margin'] = PropTypes.exact({
|
|
|
13848
13988
|
position: PropTypes.number.isRequired,
|
|
13849
13989
|
});
|
|
13850
13990
|
|
|
13851
|
-
T['io.flow.internal.v0.enums.
|
|
13991
|
+
T['io.flow.internal.v0.enums.classification_scope'] = PropTypes.oneOf(['Item', 'Product']);
|
|
13992
|
+
T['io.flow.internal.v0.enums.harmonization_decision_source'] = PropTypes.oneOf(['human', 'system', 'legacy_model', 'enterprise_model', 'merchant']);
|
|
13852
13993
|
T['io.flow.internal.v0.enums.item_type'] = PropTypes.oneOf(['standard', 'multi_product']);
|
|
13853
13994
|
|
|
13854
13995
|
T['io.flow.common.v0.models.item_reference'] = PropTypes.exact({
|
|
@@ -14417,6 +14558,8 @@ T['io.flow.internal.v0.models.internal_afterpay_authorization_details'] = PropTy
|
|
|
14417
14558
|
afterpay_authentication_data: T['io.flow.internal.v0.models.afterpay_authentication_data_reference'].isRequired,
|
|
14418
14559
|
});
|
|
14419
14560
|
|
|
14561
|
+
T['io.flow.internal.v0.enums.hosein_item_type'] = PropTypes.oneOf(['physical', 'digital']);
|
|
14562
|
+
|
|
14420
14563
|
T['io.flow.internal.v0.models.harmonization_ml_model_summary'] = PropTypes.exact({
|
|
14421
14564
|
id: PropTypes.string,
|
|
14422
14565
|
customs_description: PropTypes.string,
|
|
@@ -15696,13 +15839,6 @@ T['io.flow.internal.v0.models.duty_rate'] = PropTypes.exact({
|
|
|
15696
15839
|
created_at: PropTypes.string.isRequired,
|
|
15697
15840
|
});
|
|
15698
15841
|
|
|
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
15842
|
T['io.flow.internal.v0.models.reporting_authorization_reference'] = PropTypes.exact({
|
|
15707
15843
|
id: PropTypes.string.isRequired,
|
|
15708
15844
|
});
|
|
@@ -16239,6 +16375,31 @@ T['io.flow.order.price.v0.enums.order_price_detail_key'] = PropTypes.oneOf([
|
|
|
16239
16375
|
'tip',
|
|
16240
16376
|
]);
|
|
16241
16377
|
|
|
16378
|
+
T['io.flow.experience.v0.enums.order_payment_source_type'] = PropTypes.oneOf(['globale', 'third_party']);
|
|
16379
|
+
|
|
16380
|
+
T['io.flow.internal.v0.models.report_filter'] = PropTypes.exact({
|
|
16381
|
+
source_type: T['io.flow.internal.v0.enums.source_type_filter'],
|
|
16382
|
+
order_payment_source: T['io.flow.experience.v0.enums.order_payment_source_type'],
|
|
16383
|
+
});
|
|
16384
|
+
|
|
16385
|
+
T['io.flow.internal.v0.models.report_form'] = PropTypes.exact({
|
|
16386
|
+
type: T['io.flow.internal.v0.enums.report_type'].isRequired,
|
|
16387
|
+
from: PropTypes.string,
|
|
16388
|
+
to: PropTypes.string,
|
|
16389
|
+
payment_type: T['io.flow.internal.v0.enums.report_payment_type'],
|
|
16390
|
+
organizations: PropTypes.arrayOf(T['io.flow.internal.v0.models.report_organization_reference']),
|
|
16391
|
+
orders: PropTypes.arrayOf(T['io.flow.internal.v0.models.report_order_reference']),
|
|
16392
|
+
recipients: PropTypes.arrayOf(PropTypes.string),
|
|
16393
|
+
filter: T['io.flow.internal.v0.models.report_filter'],
|
|
16394
|
+
});
|
|
16395
|
+
|
|
16396
|
+
T['io.flow.internal.v0.models.reporting_order_summary'] = PropTypes.exact({
|
|
16397
|
+
id: PropTypes.string.isRequired,
|
|
16398
|
+
number: PropTypes.string.isRequired,
|
|
16399
|
+
submitted_at: PropTypes.string.isRequired,
|
|
16400
|
+
payment_source: T['io.flow.experience.v0.enums.order_payment_source_type'],
|
|
16401
|
+
});
|
|
16402
|
+
|
|
16242
16403
|
T['io.flow.label.v0.models.shipping_label_lane_summary'] = PropTypes.exact({
|
|
16243
16404
|
id: PropTypes.string,
|
|
16244
16405
|
ratecard: T['io.flow.label.v0.models.shipping_label_ratecard_summary'].isRequired,
|
|
@@ -16427,6 +16588,40 @@ T['io.flow.internal.v0.enums.billing_metric_key'] = PropTypes.oneOf([
|
|
|
16427
16588
|
'fourth_plus_attempt_failed_merchant_count',
|
|
16428
16589
|
'fourth_plus_attempt_failed_amount_total',
|
|
16429
16590
|
'fourth_plus_attempt_success_ratio',
|
|
16591
|
+
'ge_revenue_share_standard_transactions_count',
|
|
16592
|
+
'ge_revenue_share_standard_transactions_total',
|
|
16593
|
+
'ge_revenue_share_shopify_plus_transactions_count',
|
|
16594
|
+
'ge_revenue_share_shopify_plus_transactions_total',
|
|
16595
|
+
'non_l4l_tax_duty_fx_transactions_count',
|
|
16596
|
+
'non_l4l_tax_duty_fx_transactions_total',
|
|
16597
|
+
'sp_adjustment_transactions_count',
|
|
16598
|
+
'sp_adjustment_transactions_total',
|
|
16599
|
+
'sp_billable_label_transactions_count',
|
|
16600
|
+
'sp_billable_label_transactions_count_for_unique_orders',
|
|
16601
|
+
'sp_billable_label_transactions_total',
|
|
16602
|
+
'sp_capture_transactions_count',
|
|
16603
|
+
'sp_capture_transactions_total',
|
|
16604
|
+
'sp_carrier_charge_transactions_count',
|
|
16605
|
+
'sp_carrier_charge_transactions_total',
|
|
16606
|
+
'sp_channel_transactions_count',
|
|
16607
|
+
'sp_channel_transactions_total',
|
|
16608
|
+
'sp_duty_transactions_count',
|
|
16609
|
+
'sp_duty_transactions_total',
|
|
16610
|
+
'sp_manual_transactions_count',
|
|
16611
|
+
'sp_manual_transactions_total',
|
|
16612
|
+
'sp_refund_transactions_count',
|
|
16613
|
+
'sp_refund_transactions_total',
|
|
16614
|
+
'sp_reversal_transactions_count',
|
|
16615
|
+
'sp_reversal_transactions_total',
|
|
16616
|
+
'sp_revenue_share_label_transactions_count',
|
|
16617
|
+
'sp_revenue_share_label_transactions_count_for_unique_orders',
|
|
16618
|
+
'sp_revenue_share_label_transactions_total',
|
|
16619
|
+
'sp_tax_transactions_count',
|
|
16620
|
+
'sp_tax_transactions_total',
|
|
16621
|
+
'sp_transfer_transactions_count',
|
|
16622
|
+
'sp_transfer_transactions_total',
|
|
16623
|
+
'sp_trueup_transactions_count',
|
|
16624
|
+
'sp_trueup_transactions_total',
|
|
16430
16625
|
]);
|
|
16431
16626
|
|
|
16432
16627
|
T['io.flow.internal.v0.models.daily_value'] = PropTypes.exact({
|
|
@@ -16921,6 +17116,7 @@ T['io.flow.internal.v0.models.item_harmonization'] = PropTypes.exact({
|
|
|
16921
17116
|
status: T['io.flow.internal.v0.enums.item_harmonization_status'].isRequired,
|
|
16922
17117
|
tariffs: PropTypes.objectOf(T['io.flow.internal.v0.models.tariff_code_duty']),
|
|
16923
17118
|
decision_source: T['io.flow.internal.v0.enums.harmonization_decision_source'],
|
|
17119
|
+
classification_scope: T['io.flow.internal.v0.enums.classification_scope'],
|
|
16924
17120
|
created_at: PropTypes.string,
|
|
16925
17121
|
updated_at: PropTypes.string,
|
|
16926
17122
|
updated_by_user_id: PropTypes.string,
|
|
@@ -17506,6 +17702,11 @@ T['io.flow.channel.v0.models.channel_organization_form'] = PropTypes.exact({
|
|
|
17506
17702
|
attributes: PropTypes.objectOf(PropTypes.string),
|
|
17507
17703
|
});
|
|
17508
17704
|
|
|
17705
|
+
T['io.flow.channel.shopify.internal.v0.models.channel_organization_shopify_post_form'] = PropTypes.exact({
|
|
17706
|
+
form: T['io.flow.channel.v0.models.channel_organization_form'].isRequired,
|
|
17707
|
+
metadata: T['io.flow.channel.shopify.internal.v0.models.shopify_metadata'].isRequired,
|
|
17708
|
+
});
|
|
17709
|
+
|
|
17509
17710
|
T['io.flow.internal.v0.models.channel_organization_shopify_post_form'] = PropTypes.exact({
|
|
17510
17711
|
form: T['io.flow.channel.v0.models.channel_organization_form'].isRequired,
|
|
17511
17712
|
metadata: T['io.flow.internal.v0.models.shopify_metadata'].isRequired,
|
|
@@ -17518,6 +17719,11 @@ T['io.flow.channel.v0.models.channel_organization_put_form'] = PropTypes.exact({
|
|
|
17518
17719
|
attributes: PropTypes.objectOf(PropTypes.string),
|
|
17519
17720
|
});
|
|
17520
17721
|
|
|
17722
|
+
T['io.flow.channel.shopify.internal.v0.models.channel_organization_shopify_form'] = PropTypes.exact({
|
|
17723
|
+
form: T['io.flow.channel.v0.models.channel_organization_put_form'].isRequired,
|
|
17724
|
+
metadata: T['io.flow.channel.shopify.internal.v0.models.shopify_metadata'].isRequired,
|
|
17725
|
+
});
|
|
17726
|
+
|
|
17521
17727
|
T['io.flow.internal.v0.models.channel_organization_shopify_form'] = PropTypes.exact({
|
|
17522
17728
|
form: T['io.flow.channel.v0.models.channel_organization_put_form'].isRequired,
|
|
17523
17729
|
metadata: T['io.flow.internal.v0.models.shopify_metadata'].isRequired,
|
|
@@ -17576,29 +17782,7 @@ T['io.flow.internal.v0.enums.channel_order_acceptance_rejection_reason'] = PropT
|
|
|
17576
17782
|
'order_missing',
|
|
17577
17783
|
]);
|
|
17578
17784
|
|
|
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
|
-
});
|
|
17785
|
+
T['io.flow.internal.v0.enums.order_payment_source_type'] = PropTypes.oneOf(['globale', 'third_party']);
|
|
17602
17786
|
|
|
17603
17787
|
T['io.flow.internal.v0.models.order_edit_summary'] = PropTypes.exact({
|
|
17604
17788
|
edited_at: PropTypes.string.isRequired,
|
|
@@ -18904,6 +19088,13 @@ T['io.flow.internal.v0.models.carrier_account_validation'] = PropTypes.exact({
|
|
|
18904
19088
|
error_message: PropTypes.string,
|
|
18905
19089
|
});
|
|
18906
19090
|
|
|
19091
|
+
T['io.flow.internal.v0.models.fedex_api'] = PropTypes.exact({
|
|
19092
|
+
discriminator: PropTypes.oneOf(['fedex_api']).isRequired,
|
|
19093
|
+
client_id: PropTypes.string.isRequired,
|
|
19094
|
+
client_secret: PropTypes.string.isRequired,
|
|
19095
|
+
account_number: PropTypes.string.isRequired,
|
|
19096
|
+
});
|
|
19097
|
+
|
|
18907
19098
|
T['io.flow.internal.v0.models.fedex'] = PropTypes.exact({
|
|
18908
19099
|
discriminator: PropTypes.oneOf(['fedex']).isRequired,
|
|
18909
19100
|
key: PropTypes.string.isRequired,
|
|
@@ -18966,6 +19157,7 @@ T['io.flow.internal.v0.unions.carrier_credentials'] = PropTypes.oneOfType([
|
|
|
18966
19157
|
T['io.flow.internal.v0.models.fedex_crossborder'],
|
|
18967
19158
|
T['io.flow.internal.v0.models.ups'],
|
|
18968
19159
|
T['io.flow.internal.v0.models.fedex'],
|
|
19160
|
+
T['io.flow.internal.v0.models.fedex_api'],
|
|
18969
19161
|
]);
|
|
18970
19162
|
|
|
18971
19163
|
T['io.flow.internal.v0.models.tracking_request'] = PropTypes.exact({
|
|
@@ -19148,7 +19340,7 @@ T['io.flow.internal.v0.models.channel_order_acceptance'] = PropTypes.exact({
|
|
|
19148
19340
|
order_created_at: PropTypes.string,
|
|
19149
19341
|
order_updated_at: PropTypes.string,
|
|
19150
19342
|
order_edit_summary: T['io.flow.internal.v0.models.order_edit_summary'],
|
|
19151
|
-
payment_source: T['io.flow.
|
|
19343
|
+
payment_source: T['io.flow.internal.v0.enums.order_payment_source_type'],
|
|
19152
19344
|
});
|
|
19153
19345
|
|
|
19154
19346
|
T['io.flow.internal.v0.models.channel_order_acceptance_upserted'] = PropTypes.exact({
|
|
@@ -19854,7 +20046,7 @@ T['io.flow.internal.v0.models.restriction_item_request_form'] = PropTypes.exact(
|
|
|
19854
20046
|
statuses: PropTypes.arrayOf(T['io.flow.internal.v0.enums.restriction_status']),
|
|
19855
20047
|
rule_ids: PropTypes.arrayOf(PropTypes.string),
|
|
19856
20048
|
user_ids: PropTypes.arrayOf(PropTypes.string),
|
|
19857
|
-
|
|
20049
|
+
category: PropTypes.string,
|
|
19858
20050
|
product_name_query: PropTypes.string,
|
|
19859
20051
|
hs6: PropTypes.string,
|
|
19860
20052
|
positive_keywords: PropTypes.arrayOf(PropTypes.string),
|
|
@@ -19910,7 +20102,7 @@ T['io.flow.internal.v0.models.restriction_rule_form'] = PropTypes.exact({
|
|
|
19910
20102
|
negative_keywords: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
19911
20103
|
value_threshold_usd: PropTypes.number,
|
|
19912
20104
|
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'],
|
|
20105
|
+
source: T['io.flow.internal.v0.enums.restriction_organization_source'].isRequired,
|
|
19914
20106
|
sellability_positive_keywords: PropTypes.arrayOf(PropTypes.string),
|
|
19915
20107
|
});
|
|
19916
20108
|
|
|
@@ -20022,7 +20214,6 @@ T['io.flow.internal.v0.models.restriction_item_review'] = PropTypes.exact({
|
|
|
20022
20214
|
});
|
|
20023
20215
|
|
|
20024
20216
|
T['io.flow.internal.v0.models.restriction_filter'] = PropTypes.exact({
|
|
20025
|
-
categories: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
20026
20217
|
users: PropTypes.arrayOf(T['io.flow.common.v0.models.user']).isRequired,
|
|
20027
20218
|
rules: PropTypes.arrayOf(T['io.flow.internal.v0.models.restriction_rule_summary']).isRequired,
|
|
20028
20219
|
positive_keywords: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
@@ -21861,6 +22052,7 @@ T['io.flow.billing.v0.enums.fee_deduction_type'] = PropTypes.oneOf([
|
|
|
21861
22052
|
'rate_lock',
|
|
21862
22053
|
'transfer',
|
|
21863
22054
|
'negative_balance_guarantee',
|
|
22055
|
+
'sp',
|
|
21864
22056
|
]);
|
|
21865
22057
|
|
|
21866
22058
|
T['io.flow.billing.v0.models.fee_deduction'] = PropTypes.exact({
|
|
@@ -22179,6 +22371,8 @@ T['io.flow.ratecard.v0.models.peak_surcharge_service_fee'] = PropTypes.exact({
|
|
|
22179
22371
|
amount: T['io.flow.common.v0.models.money'].isRequired,
|
|
22180
22372
|
starts_at: PropTypes.string,
|
|
22181
22373
|
ends_at: PropTypes.string,
|
|
22374
|
+
regions: PropTypes.arrayOf(PropTypes.string),
|
|
22375
|
+
dependent_service_fees: PropTypes.arrayOf(PropTypes.string),
|
|
22182
22376
|
});
|
|
22183
22377
|
|
|
22184
22378
|
T['io.flow.ratecard.v0.models.peak_surcharge_ratecard_fee'] = PropTypes.exact({
|
|
@@ -22370,6 +22564,11 @@ T['io.flow.ratecard.v0.models.ratecard_lane_version'] = PropTypes.exact({
|
|
|
22370
22564
|
ratecard_lane: T['io.flow.ratecard.v0.models.ratecard_lane'].isRequired,
|
|
22371
22565
|
});
|
|
22372
22566
|
|
|
22567
|
+
T['io.flow.ratecard.v0.models.ratecard_fee_summary'] = PropTypes.exact({
|
|
22568
|
+
ratecard_fee: T['io.flow.ratecard.v0.unions.ratecard_fee'].isRequired,
|
|
22569
|
+
source_service_fees: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
22570
|
+
});
|
|
22571
|
+
|
|
22373
22572
|
T['io.flow.ratecard.v0.models.hop_estimate_v2'] = PropTypes.exact({
|
|
22374
22573
|
origin_address: T['io.flow.fulfillment.v0.models.shipping_address'].isRequired,
|
|
22375
22574
|
destination_address: T['io.flow.fulfillment.v0.models.shipping_address'].isRequired,
|
|
@@ -23660,6 +23859,8 @@ T['io.flow.shopify.markets.internal.event.v0.unions.shopify_markets_internal_eve
|
|
|
23660
23859
|
T['io.flow.shopify.markets.internal.event.v0.models.shopify_markets_best_selling_product_deleted'],
|
|
23661
23860
|
T['io.flow.shopify.markets.internal.event.v0.models.shopify_order_risk_assessment_upserted'],
|
|
23662
23861
|
T['io.flow.shopify.markets.internal.event.v0.models.shopify_order_risk_assessment_deleted'],
|
|
23862
|
+
T['io.flow.shopify.markets.internal.event.v0.models.shopify_order_transaction_upserted'],
|
|
23863
|
+
T['io.flow.shopify.markets.internal.event.v0.models.shopify_order_transaction_deleted'],
|
|
23663
23864
|
]);
|
|
23664
23865
|
|
|
23665
23866
|
T['io.flow.export.v0.models.marketing_feeds_export_type'] = PropTypes.exact({
|
|
@@ -24163,6 +24364,14 @@ T['io.flow.channel.v0.models.channel_organization'] = PropTypes.exact({
|
|
|
24163
24364
|
attributes: PropTypes.objectOf(PropTypes.string),
|
|
24164
24365
|
});
|
|
24165
24366
|
|
|
24367
|
+
T['io.flow.channel.shopify.internal.v0.models.channel_organization_shopify'] = PropTypes.exact({
|
|
24368
|
+
organization: T['io.flow.channel.v0.models.channel_organization'].isRequired,
|
|
24369
|
+
|
|
24370
|
+
tokens: PropTypes.arrayOf(
|
|
24371
|
+
T['io.flow.channel.shopify.internal.v0.models.shopify_channel_organization_tokens'],
|
|
24372
|
+
).isRequired,
|
|
24373
|
+
});
|
|
24374
|
+
|
|
24166
24375
|
T['io.flow.internal.v0.models.channel_organization_shopify'] = PropTypes.exact({
|
|
24167
24376
|
organization: T['io.flow.channel.v0.models.channel_organization'].isRequired,
|
|
24168
24377
|
tokens: PropTypes.arrayOf(T['io.flow.internal.v0.models.shopify_channel_organization_tokens']).isRequired,
|
|
@@ -24256,6 +24465,7 @@ T['io.flow.internal.v0.models.accounting_pending_order_metadata'] = PropTypes.ex
|
|
|
24256
24465
|
T['io.flow.internal.v0.unions.task_metadata'] = PropTypes.oneOfType([
|
|
24257
24466
|
T['io.flow.internal.v0.models.statement_creation_metadata'],
|
|
24258
24467
|
T['io.flow.internal.v0.models.accounting_pending_order_metadata'],
|
|
24468
|
+
T['io.flow.internal.v0.models.tax_duty_reason_code_metadata'],
|
|
24259
24469
|
]);
|
|
24260
24470
|
|
|
24261
24471
|
T['io.flow.common.v0.models.price'] = PropTypes.exact({
|
|
@@ -24780,6 +24990,7 @@ T['io.flow.internal.v0.models.restriction_product'] = PropTypes.exact({
|
|
|
24780
24990
|
images: PropTypes.arrayOf(T['io.flow.catalog.v0.models.image']).isRequired,
|
|
24781
24991
|
thumbnails: PropTypes.arrayOf(T['io.flow.catalog.v0.models.image']).isRequired,
|
|
24782
24992
|
hs_code: PropTypes.string,
|
|
24993
|
+
hs_code_source: T['io.flow.internal.v0.enums.harmonization_decision_source'],
|
|
24783
24994
|
url: PropTypes.string,
|
|
24784
24995
|
reviews: PropTypes.arrayOf(T['io.flow.internal.v0.models.restriction_item_review']).isRequired,
|
|
24785
24996
|
created_at: PropTypes.string.isRequired,
|
|
@@ -24796,6 +25007,7 @@ T['io.flow.internal.v0.models.restriction_item'] = PropTypes.exact({
|
|
|
24796
25007
|
name: PropTypes.string.isRequired,
|
|
24797
25008
|
price: T['io.flow.common.v0.models.price'].isRequired,
|
|
24798
25009
|
hs_code: PropTypes.string,
|
|
25010
|
+
hs_code_source: T['io.flow.internal.v0.enums.harmonization_decision_source'],
|
|
24799
25011
|
description: PropTypes.string.isRequired,
|
|
24800
25012
|
category: PropTypes.string,
|
|
24801
25013
|
categories: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
@@ -24885,6 +25097,23 @@ T['io.flow.internal.v0.models.invoice_line'] = PropTypes.exact({
|
|
|
24885
25097
|
value: T['io.flow.common.v0.models.price'].isRequired,
|
|
24886
25098
|
});
|
|
24887
25099
|
|
|
25100
|
+
T['io.flow.internal.v0.models.hosein_item_form'] = PropTypes.exact({
|
|
25101
|
+
number: PropTypes.string.isRequired,
|
|
25102
|
+
amount: T['io.flow.common.v0.models.price'].isRequired,
|
|
25103
|
+
description: PropTypes.string,
|
|
25104
|
+
type: T['io.flow.internal.v0.enums.hosein_item_type'].isRequired,
|
|
25105
|
+
added_on: PropTypes.string.isRequired,
|
|
25106
|
+
});
|
|
25107
|
+
|
|
25108
|
+
T['io.flow.internal.v0.models.hosein_item'] = PropTypes.exact({
|
|
25109
|
+
id: PropTypes.string.isRequired,
|
|
25110
|
+
number: PropTypes.string.isRequired,
|
|
25111
|
+
amount: T['io.flow.common.v0.models.price'].isRequired,
|
|
25112
|
+
description: PropTypes.string,
|
|
25113
|
+
type: T['io.flow.internal.v0.enums.hosein_item_type'].isRequired,
|
|
25114
|
+
added_on: PropTypes.string.isRequired,
|
|
25115
|
+
});
|
|
25116
|
+
|
|
24888
25117
|
T['io.flow.internal.v0.models.gift_card'] = PropTypes.exact({
|
|
24889
25118
|
id: PropTypes.string.isRequired,
|
|
24890
25119
|
number: PropTypes.string.isRequired,
|
|
@@ -24926,6 +25155,7 @@ T['io.flow.internal.v0.models.debug_order'] = PropTypes.exact({
|
|
|
24926
25155
|
total: T['io.flow.common.v0.models.money_with_base'].isRequired,
|
|
24927
25156
|
identifiers: PropTypes.objectOf(PropTypes.string),
|
|
24928
25157
|
submitted_at: PropTypes.string,
|
|
25158
|
+
payment_source: T['io.flow.experience.v0.enums.order_payment_source_type'],
|
|
24929
25159
|
});
|
|
24930
25160
|
|
|
24931
25161
|
T['io.flow.internal.v0.models.components'] = PropTypes.exact({
|
|
@@ -24948,6 +25178,7 @@ T['io.flow.internal.v0.models.fees'] = PropTypes.exact({
|
|
|
24948
25178
|
duty_guarantee: T['io.flow.internal.v0.models.fee'],
|
|
24949
25179
|
transfer: T['io.flow.internal.v0.models.fee'],
|
|
24950
25180
|
negative_balance: T['io.flow.internal.v0.models.fee'],
|
|
25181
|
+
sp: T['io.flow.internal.v0.models.fee'],
|
|
24951
25182
|
});
|
|
24952
25183
|
|
|
24953
25184
|
T['io.flow.catalog.v0.models.localized_total'] = PropTypes.exact({
|
|
@@ -25757,6 +25988,7 @@ T['io.flow.internal.v0.models.validated_shipping_data'] = PropTypes.exact({
|
|
|
25757
25988
|
additional_services_requested: PropTypes.arrayOf(T['io.flow.label.v0.models.additional_services_requested']),
|
|
25758
25989
|
provided_charges: PropTypes.arrayOf(T['io.flow.internal.v0.models.charge_input']),
|
|
25759
25990
|
direction: T['io.flow.label.v0.enums.direction'],
|
|
25991
|
+
package_dimensions_source: T['io.flow.label.v0.enums.package_dimensions_source'].isRequired,
|
|
25760
25992
|
});
|
|
25761
25993
|
|
|
25762
25994
|
T['io.flow.experience.v0.models.order_builder'] = PropTypes.exact({
|
|
@@ -27378,6 +27610,8 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
|
|
|
27378
27610
|
T['io.flow.internal.v0.models.restriction_rule_deleted'],
|
|
27379
27611
|
T['io.flow.internal.v0.models.restriction_rule_effect_upserted'],
|
|
27380
27612
|
T['io.flow.internal.v0.models.restriction_rule_effect_deleted'],
|
|
27613
|
+
T['io.flow.internal.v0.models.taxonomy_category_hs6_ref_upserted'],
|
|
27614
|
+
T['io.flow.internal.v0.models.taxonomy_category_hs6_ref_deleted'],
|
|
27381
27615
|
T['io.flow.internal.v0.models.shopify_shop_upserted'],
|
|
27382
27616
|
T['io.flow.internal.v0.models.shopify_shop_deleted'],
|
|
27383
27617
|
T['io.flow.internal.v0.models.shopify_experience_short_id_upserted'],
|
|
@@ -27405,6 +27639,8 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
|
|
|
27405
27639
|
T['io.flow.internal.v0.models.shopify_markets_best_selling_product_deleted'],
|
|
27406
27640
|
T['io.flow.internal.v0.models.shopify_order_risk_assessment_upserted'],
|
|
27407
27641
|
T['io.flow.internal.v0.models.shopify_order_risk_assessment_deleted'],
|
|
27642
|
+
T['io.flow.internal.v0.models.shopify_order_transaction_upserted'],
|
|
27643
|
+
T['io.flow.internal.v0.models.shopify_order_transaction_deleted'],
|
|
27408
27644
|
T['io.flow.internal.v0.models.shopify_product_create_upserted'],
|
|
27409
27645
|
T['io.flow.internal.v0.models.shopify_product_create_deleted'],
|
|
27410
27646
|
T['io.flow.internal.v0.models.shopify_product_update_upserted'],
|
|
@@ -27568,6 +27804,15 @@ T['io.flow.internal.v0.enums.auto_restrict_rule'] = PropTypes.oneOf([
|
|
|
27568
27804
|
'prr-79e41878ea564f9c81cc432a0e84703f',
|
|
27569
27805
|
'prr-f29c26dc09e04536bc77f9c32786ed70',
|
|
27570
27806
|
'prr-b186129720f0446eb452a68518437c95',
|
|
27807
|
+
'prr-36e1603f56e54eb889792637c29eed40',
|
|
27808
|
+
'prr-7ead2cc4bf2840a3a9b50d222eb0ed7e',
|
|
27809
|
+
'prr-ec2f3d608b7e43a49de88ac40e6b50a8',
|
|
27810
|
+
'prr-04ed078c39ca4447b171f767d71a481d',
|
|
27811
|
+
'prr-bb664a76d6d64a17843e720e6ccd401a',
|
|
27812
|
+
'prr-8ce63afcd48641eb9d44e04117348a96',
|
|
27813
|
+
'prr-76544617791b4ce8af96b3a7879474c6',
|
|
27814
|
+
'prr-566cc67167944bc4bd08167aa9c0beba',
|
|
27815
|
+
'prr-74e1320efb7741cf9ace400b69800f9b',
|
|
27571
27816
|
]);
|
|
27572
27817
|
|
|
27573
27818
|
T['io.flow.internal.v0.enums.bank_payment_promise_completed_method'] = PropTypes.oneOf(['credit', 'time']);
|
|
@@ -27901,6 +28146,8 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
|
|
|
27901
28146
|
'restriction_rule_deleted',
|
|
27902
28147
|
'restriction_rule_effect_upserted',
|
|
27903
28148
|
'restriction_rule_effect_deleted',
|
|
28149
|
+
'taxonomy_category_hs6_ref_upserted',
|
|
28150
|
+
'taxonomy_category_hs6_ref_deleted',
|
|
27904
28151
|
'shopify_shop_upserted',
|
|
27905
28152
|
'shopify_shop_deleted',
|
|
27906
28153
|
'shopify_experience_short_id_upserted',
|
|
@@ -27928,6 +28175,8 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
|
|
|
27928
28175
|
'shopify_markets_best_selling_product_deleted',
|
|
27929
28176
|
'shopify_order_risk_assessment_upserted',
|
|
27930
28177
|
'shopify_order_risk_assessment_deleted',
|
|
28178
|
+
'shopify_order_transaction_upserted',
|
|
28179
|
+
'shopify_order_transaction_deleted',
|
|
27931
28180
|
'shopify_product_create_upserted',
|
|
27932
28181
|
'shopify_product_create_deleted',
|
|
27933
28182
|
'shopify_product_update_upserted',
|
|
@@ -28032,6 +28281,7 @@ T['io.flow.internal.v0.enums.order_lifecycle_event'] = PropTypes.oneOf(['order_p
|
|
|
28032
28281
|
T['io.flow.internal.v0.enums.order_transaction_type'] = PropTypes.oneOf(['adjustment', 'reversal', 'order_service']);
|
|
28033
28282
|
T['io.flow.internal.v0.enums.organization_metric_type'] = PropTypes.oneOf(['organization_restriction_status']);
|
|
28034
28283
|
T['io.flow.internal.v0.enums.output_style'] = PropTypes.oneOf(['flow', 'shopify_p1']);
|
|
28284
|
+
T['io.flow.internal.v0.enums.pending_record_type'] = PropTypes.oneOf(['verification', 'classification', 'restriction']);
|
|
28035
28285
|
T['io.flow.internal.v0.enums.preferred_billing_schedule'] = PropTypes.oneOf(['monthly', 'bi-monthly']);
|
|
28036
28286
|
T['io.flow.internal.v0.enums.price_selector'] = PropTypes.oneOf(['minimum', 'maximum']);
|
|
28037
28287
|
|
|
@@ -28787,6 +29037,7 @@ T['io.flow.internal.v0.models.product_sellability_result'] = PropTypes.exact({
|
|
|
28787
29037
|
request_id: PropTypes.string.isRequired,
|
|
28788
29038
|
hs6_code: PropTypes.string.isRequired,
|
|
28789
29039
|
restricted_regions: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
29040
|
+
rule_ids: PropTypes.arrayOf(PropTypes.string),
|
|
28790
29041
|
});
|
|
28791
29042
|
|
|
28792
29043
|
T['io.flow.internal.v0.models.rate_data'] = PropTypes.exact({
|
|
@@ -28862,7 +29113,7 @@ T['io.flow.internal.v0.models.restriction_product_request_form'] = PropTypes.exa
|
|
|
28862
29113
|
positive_keywords: PropTypes.arrayOf(PropTypes.string),
|
|
28863
29114
|
negative_keywords: PropTypes.arrayOf(PropTypes.string),
|
|
28864
29115
|
user_ids: PropTypes.arrayOf(PropTypes.string),
|
|
28865
|
-
|
|
29116
|
+
category: PropTypes.string,
|
|
28866
29117
|
product_name_query: PropTypes.string,
|
|
28867
29118
|
hs6: PropTypes.string,
|
|
28868
29119
|
product_id: PropTypes.string,
|
|
@@ -28876,21 +29127,22 @@ T['io.flow.internal.v0.models.restriction_rule_lane_exemption'] = PropTypes.exac
|
|
|
28876
29127
|
destination_countries: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
28877
29128
|
});
|
|
28878
29129
|
|
|
28879
|
-
T['io.flow.internal.v0.models.
|
|
29130
|
+
T['io.flow.internal.v0.models.restriction_rule_organization_exemption'] = PropTypes.exact({
|
|
28880
29131
|
id: PropTypes.string.isRequired,
|
|
28881
29132
|
organization_id: PropTypes.string.isRequired,
|
|
28882
29133
|
rule_id: PropTypes.string.isRequired,
|
|
28883
|
-
|
|
28884
|
-
|
|
28885
|
-
|
|
28886
|
-
|
|
28887
|
-
|
|
28888
|
-
tracking_number: PropTypes.string,
|
|
29134
|
+
description: PropTypes.string.isRequired,
|
|
29135
|
+
is_rule_exempt: PropTypes.bool.isRequired,
|
|
29136
|
+
exempt_countries: PropTypes.arrayOf(PropTypes.string),
|
|
29137
|
+
ignored_keywords: PropTypes.arrayOf(PropTypes.string),
|
|
29138
|
+
additional_keywords: PropTypes.arrayOf(PropTypes.string),
|
|
28889
29139
|
});
|
|
28890
29140
|
|
|
28891
|
-
T['io.flow.internal.v0.models.
|
|
28892
|
-
|
|
28893
|
-
|
|
29141
|
+
T['io.flow.internal.v0.models.restriction_rule_override'] = PropTypes.exact({
|
|
29142
|
+
id: PropTypes.string.isRequired,
|
|
29143
|
+
organization_id: PropTypes.string.isRequired,
|
|
29144
|
+
rule_id: PropTypes.string.isRequired,
|
|
29145
|
+
value_threshold_usd: PropTypes.number.isRequired,
|
|
28894
29146
|
});
|
|
28895
29147
|
|
|
28896
29148
|
T['io.flow.internal.v0.models.sandbox_setup'] = PropTypes.exact({
|
|
@@ -29093,10 +29345,6 @@ T['io.flow.internal.v0.models.tracking_debug_force_transit_form'] = PropTypes.ex
|
|
|
29093
29345
|
description: PropTypes.string.isRequired,
|
|
29094
29346
|
});
|
|
29095
29347
|
|
|
29096
|
-
T['io.flow.internal.v0.models.tracking_resync'] = PropTypes.exact({
|
|
29097
|
-
placeholder: PropTypes.bool,
|
|
29098
|
-
});
|
|
29099
|
-
|
|
29100
29348
|
T['io.flow.internal.v0.models.tracking_webhook'] = PropTypes.exact({
|
|
29101
29349
|
placeholder: PropTypes.bool,
|
|
29102
29350
|
});
|
|
@@ -30779,6 +31027,7 @@ export const classificationProductSummary = T['io.flow.internal.v0.models.classi
|
|
|
30779
31027
|
export const classificationProductSummaryPage = T['io.flow.internal.v0.models.classification_product_summary_page'];
|
|
30780
31028
|
export const classificationRequeueRequest = T['io.flow.internal.v0.models.classification_requeue_request'];
|
|
30781
31029
|
export const classificationResponse = T['io.flow.internal.v0.unions.classification_response'];
|
|
31030
|
+
export const classificationScope = T['io.flow.internal.v0.enums.classification_scope'];
|
|
30782
31031
|
export const classificationStatistics = T['io.flow.internal.v0.models.classification_statistics'];
|
|
30783
31032
|
export const classificationSummaryReportPayload = T['io.flow.internal.v0.models.classification_summary_report_payload'];
|
|
30784
31033
|
export const classificationTaxonomy = T['io.flow.internal.v0.unions.classification_taxonomy'];
|
|
@@ -30971,6 +31220,7 @@ export const erpVendorStatus = T['io.flow.internal.v0.models.erp_vendor_status']
|
|
|
30971
31220
|
export const erpVendorStatusEntity = T['io.flow.internal.v0.models.erp_vendor_status_entity'];
|
|
30972
31221
|
export const erpVendorStatusFlowFile = T['io.flow.internal.v0.models.erp_vendor_status_flow_file'];
|
|
30973
31222
|
export const erpVendorStatusPriorityFile = T['io.flow.internal.v0.models.erp_vendor_status_priority_file'];
|
|
31223
|
+
export const evaluationResults = T['io.flow.internal.v0.models.evaluation_results'];
|
|
30974
31224
|
export const event = T['io.flow.internal.v0.unions.event'];
|
|
30975
31225
|
export const eventType = T['io.flow.internal.v0.enums.event_type'];
|
|
30976
31226
|
export const exclusionRuleDeleted = T['io.flow.internal.v0.models.exclusion_rule_deleted'];
|
|
@@ -31024,6 +31274,7 @@ export const featureValue = T['io.flow.internal.v0.unions.feature_value'];
|
|
|
31024
31274
|
export const featureValueForm = T['io.flow.internal.v0.models.feature_value_form'];
|
|
31025
31275
|
export const featureValueResult = T['io.flow.internal.v0.models.feature_value_result'];
|
|
31026
31276
|
export const fedex = T['io.flow.internal.v0.models.fedex'];
|
|
31277
|
+
export const fedexApi = T['io.flow.internal.v0.models.fedex_api'];
|
|
31027
31278
|
export const fedexCrossborder = T['io.flow.internal.v0.models.fedex_crossborder'];
|
|
31028
31279
|
export const fee = T['io.flow.internal.v0.models.fee'];
|
|
31029
31280
|
export const fees = T['io.flow.internal.v0.models.fees'];
|
|
@@ -31163,6 +31414,9 @@ export const harmonizationThresholdForm = T['io.flow.internal.v0.models.harmoniz
|
|
|
31163
31414
|
export const harmonizationUnclassifiedStatistics = T['io.flow.internal.v0.models.harmonization_unclassified_statistics'];
|
|
31164
31415
|
export const harmonizeFullyRequestV2 = T['io.flow.internal.v0.models.harmonize_fully_request_v2'];
|
|
31165
31416
|
export const harmonizedItemsHs6Export = T['io.flow.internal.v0.models.harmonized_items_hs6_export'];
|
|
31417
|
+
export const hoseinItem = T['io.flow.internal.v0.models.hosein_item'];
|
|
31418
|
+
export const hoseinItemForm = T['io.flow.internal.v0.models.hosein_item_form'];
|
|
31419
|
+
export const hoseinItemType = T['io.flow.internal.v0.enums.hosein_item_type'];
|
|
31166
31420
|
export const href = T['io.flow.internal.v0.models.href'];
|
|
31167
31421
|
export const hs6 = T['io.flow.internal.v0.models.hs6'];
|
|
31168
31422
|
export const hs6Metadata = T['io.flow.internal.v0.models.hs6_metadata'];
|
|
@@ -31443,6 +31697,7 @@ export const orderLifecycleEvent = T['io.flow.internal.v0.enums.order_lifecycle_
|
|
|
31443
31697
|
export const orderNote = T['io.flow.internal.v0.models.order_note'];
|
|
31444
31698
|
export const orderNoteForm = T['io.flow.internal.v0.models.order_note_form'];
|
|
31445
31699
|
export const orderPaymentAuthorization = T['io.flow.internal.v0.models.order_payment_authorization'];
|
|
31700
|
+
export const orderPaymentSourceType = T['io.flow.internal.v0.enums.order_payment_source_type'];
|
|
31446
31701
|
export const orderRatesDataV3 = T['io.flow.internal.v0.models.order_rates_data_v3'];
|
|
31447
31702
|
export const orderRatesPublishedV3 = T['io.flow.internal.v0.models.order_rates_published_v3'];
|
|
31448
31703
|
export const orderReference = T['io.flow.internal.v0.models.order_reference'];
|
|
@@ -31614,6 +31869,7 @@ export const paypalRefundUpserted = T['io.flow.internal.v0.models.paypal_refund_
|
|
|
31614
31869
|
export const pendingBankPayment = T['io.flow.internal.v0.models.pending_bank_payment'];
|
|
31615
31870
|
export const pendingBankPaymentDetail = T['io.flow.internal.v0.models.pending_bank_payment_detail'];
|
|
31616
31871
|
export const pendingOrder = T['io.flow.internal.v0.models.pending_order'];
|
|
31872
|
+
export const pendingRecordType = T['io.flow.internal.v0.enums.pending_record_type'];
|
|
31617
31873
|
export const phraseClassified = T['io.flow.internal.v0.models.phrase_classified'];
|
|
31618
31874
|
export const phrasePropagated = T['io.flow.internal.v0.models.phrase_propagated'];
|
|
31619
31875
|
export const platformFee = T['io.flow.internal.v0.unions.platform_fee'];
|
|
@@ -31670,6 +31926,7 @@ export const productRestrictionStateDeleted = T['io.flow.internal.v0.models.prod
|
|
|
31670
31926
|
export const productRestrictionStateInserted = T['io.flow.internal.v0.models.product_restriction_state_inserted'];
|
|
31671
31927
|
export const productRestrictionStateUpdated = T['io.flow.internal.v0.models.product_restriction_state_updated'];
|
|
31672
31928
|
export const productReviewHistory = T['io.flow.internal.v0.models.product_review_history'];
|
|
31929
|
+
export const productSellabilityInternal = T['io.flow.internal.v0.models.product_sellability_internal'];
|
|
31673
31930
|
export const productSellabilityResult = T['io.flow.internal.v0.models.product_sellability_result'];
|
|
31674
31931
|
export const productStatus = T['io.flow.internal.v0.enums.product_status'];
|
|
31675
31932
|
export const productTransaction = T['io.flow.internal.v0.models.product_transaction'];
|
|
@@ -31845,6 +32102,7 @@ export const restrictionRuleEffectUpserted = T['io.flow.internal.v0.models.restr
|
|
|
31845
32102
|
export const restrictionRuleExceptionAction = T['io.flow.internal.v0.enums.restriction_rule_exception_action'];
|
|
31846
32103
|
export const restrictionRuleForm = T['io.flow.internal.v0.models.restriction_rule_form'];
|
|
31847
32104
|
export const restrictionRuleLaneExemption = T['io.flow.internal.v0.models.restriction_rule_lane_exemption'];
|
|
32105
|
+
export const restrictionRuleOrganizationExemption = T['io.flow.internal.v0.models.restriction_rule_organization_exemption'];
|
|
31848
32106
|
export const restrictionRuleOverride = T['io.flow.internal.v0.models.restriction_rule_override'];
|
|
31849
32107
|
export const restrictionRuleSummary = T['io.flow.internal.v0.models.restriction_rule_summary'];
|
|
31850
32108
|
export const restrictionRuleUpserted = T['io.flow.internal.v0.models.restriction_rule_upserted'];
|
|
@@ -31858,8 +32116,6 @@ export const resyncByDestinations = T['io.flow.internal.v0.models.resync_by_dest
|
|
|
31858
32116
|
export const resyncByHs6Destinations = T['io.flow.internal.v0.models.resync_by_hs6_destinations'];
|
|
31859
32117
|
export const resyncByHs6Origin = T['io.flow.internal.v0.models.resync_by_hs6_origin'];
|
|
31860
32118
|
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
32119
|
export const UNSAFE_return = T['io.flow.internal.v0.models.return'];
|
|
31864
32120
|
export const returnPolicyDeleted = T['io.flow.internal.v0.models.return_policy_deleted'];
|
|
31865
32121
|
export const returnPolicyItemResultDeleted = T['io.flow.internal.v0.models.return_policy_item_result_deleted'];
|
|
@@ -32004,6 +32260,9 @@ export const shopifyOrderLineContent = T['io.flow.internal.v0.models.shopify_ord
|
|
|
32004
32260
|
export const shopifyOrderRiskAssessment = T['io.flow.internal.v0.models.shopify_order_risk_assessment'];
|
|
32005
32261
|
export const shopifyOrderRiskAssessmentDeleted = T['io.flow.internal.v0.models.shopify_order_risk_assessment_deleted'];
|
|
32006
32262
|
export const shopifyOrderRiskAssessmentUpserted = T['io.flow.internal.v0.models.shopify_order_risk_assessment_upserted'];
|
|
32263
|
+
export const shopifyOrderTransaction = T['io.flow.internal.v0.models.shopify_order_transaction'];
|
|
32264
|
+
export const shopifyOrderTransactionDeleted = T['io.flow.internal.v0.models.shopify_order_transaction_deleted'];
|
|
32265
|
+
export const shopifyOrderTransactionUpserted = T['io.flow.internal.v0.models.shopify_order_transaction_upserted'];
|
|
32007
32266
|
export const shopifyOrganizationSettings = T['io.flow.internal.v0.models.shopify_organization_settings'];
|
|
32008
32267
|
export const shopifyOrganizationSettingsForm = T['io.flow.internal.v0.models.shopify_organization_settings_form'];
|
|
32009
32268
|
export const shopifyPartnerWebhook = T['io.flow.internal.v0.models.shopify_partner_webhook'];
|
|
@@ -32156,6 +32415,7 @@ export const taxCalculationErrorCode = T['io.flow.internal.v0.enums.tax_calculat
|
|
|
32156
32415
|
export const taxCalculationForm = T['io.flow.internal.v0.models.tax_calculation_form'];
|
|
32157
32416
|
export const taxCalculationLineItem = T['io.flow.internal.v0.models.tax_calculation_line_item'];
|
|
32158
32417
|
export const taxCalculationLineItemForm = T['io.flow.internal.v0.models.tax_calculation_line_item_form'];
|
|
32418
|
+
export const taxDutyReasonCodeMetadata = T['io.flow.internal.v0.models.tax_duty_reason_code_metadata'];
|
|
32159
32419
|
export const taxParty = T['io.flow.internal.v0.enums.tax_party'];
|
|
32160
32420
|
export const taxRemittanceTransaction = T['io.flow.internal.v0.models.tax_remittance_transaction'];
|
|
32161
32421
|
export const taxRemittanceTransactionDeleted = T['io.flow.internal.v0.models.tax_remittance_transaction_deleted'];
|
|
@@ -32165,6 +32425,9 @@ export const taxTransactionDeleted = T['io.flow.internal.v0.models.tax_transacti
|
|
|
32165
32425
|
export const taxTransactionType = T['io.flow.internal.v0.enums.tax_transaction_type'];
|
|
32166
32426
|
export const taxTransactionUpserted = T['io.flow.internal.v0.models.tax_transaction_upserted'];
|
|
32167
32427
|
export const taxonomyCategory = PropTypes.any;
|
|
32428
|
+
export const taxonomyCategoryHs6Ref = T['io.flow.internal.v0.models.taxonomy_category_hs6_ref'];
|
|
32429
|
+
export const taxonomyCategoryHs6RefDeleted = T['io.flow.internal.v0.models.taxonomy_category_hs6_ref_deleted'];
|
|
32430
|
+
export const taxonomyCategoryHs6RefUpserted = T['io.flow.internal.v0.models.taxonomy_category_hs6_ref_upserted'];
|
|
32168
32431
|
export const taxonomyNode = PropTypes.any;
|
|
32169
32432
|
export const techOnboardingDescription = T['io.flow.internal.v0.models.tech_onboarding_description'];
|
|
32170
32433
|
export const test = T['io.flow.internal.v0.models.test'];
|
|
@@ -32211,7 +32474,6 @@ export const trackingProcessingErrorUpserted = T['io.flow.internal.v0.models.tra
|
|
|
32211
32474
|
export const trackingProcessingFailureClassification = T['io.flow.internal.v0.enums.tracking_processing_failure_classification'];
|
|
32212
32475
|
export const trackingRequest = T['io.flow.internal.v0.models.tracking_request'];
|
|
32213
32476
|
export const trackingResponse = T['io.flow.internal.v0.models.tracking_response'];
|
|
32214
|
-
export const trackingResync = T['io.flow.internal.v0.models.tracking_resync'];
|
|
32215
32477
|
export const trackingSubscription = T['io.flow.internal.v0.models.tracking_subscription'];
|
|
32216
32478
|
export const trackingSubscriptionDeleted = T['io.flow.internal.v0.models.tracking_subscription_deleted'];
|
|
32217
32479
|
export const trackingSubscriptionUpserted = T['io.flow.internal.v0.models.tracking_subscription_upserted'];
|