@flowio/api-internal-prop-types 9.24.135 → 9.24.136
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 +267 -15
- package/lib/api-internal.js +1 -1
- package/package.json +1 -1
- package/src/api-internal.d.ts +267 -15
- package/src/api-internal.js +333 -47
package/src/api-internal.js
CHANGED
|
@@ -65,8 +65,6 @@ T['io.flow.organization.v0.models.country_picker'] = PropTypes.exact({
|
|
|
65
65
|
source: T['io.flow.organization.v0.enums.country_picker_source'].isRequired,
|
|
66
66
|
});
|
|
67
67
|
|
|
68
|
-
T['io.flow.sellability.v0.enums.sellability_screening_mode'] = PropTypes.oneOf(['pre_onboarding', 'default_on', 'active']);
|
|
69
|
-
|
|
70
68
|
T['io.flow.sellability.v0.models.sellability_reason_with_regions'] = PropTypes.exact({
|
|
71
69
|
reason: PropTypes.string.isRequired,
|
|
72
70
|
regions: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
@@ -2842,11 +2840,6 @@ T['io.flow.shopify.external.v0.models.graphql_metafield'] = PropTypes.exact({
|
|
|
2842
2840
|
type: PropTypes.string,
|
|
2843
2841
|
});
|
|
2844
2842
|
|
|
2845
|
-
T['io.flow.shopify.external.v0.models.graphql_taxonomy_category'] = PropTypes.exact({
|
|
2846
|
-
name: PropTypes.string.isRequired,
|
|
2847
|
-
fullName: PropTypes.string.isRequired,
|
|
2848
|
-
});
|
|
2849
|
-
|
|
2850
2843
|
T['io.flow.shopify.external.v0.models.graphql_option'] = PropTypes.exact({
|
|
2851
2844
|
id: PropTypes.string.isRequired,
|
|
2852
2845
|
values: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
@@ -2905,6 +2898,15 @@ T['io.flow.shopify.external.v0.models.graphql_product_variant'] = PropTypes.exac
|
|
|
2905
2898
|
inventoryItem: T['io.flow.shopify.external.v0.models.graphql_inventory_item'].isRequired,
|
|
2906
2899
|
});
|
|
2907
2900
|
|
|
2901
|
+
T['io.flow.shopify.external.v0.models.graphql_taxonomy_category'] = PropTypes.exact({
|
|
2902
|
+
name: PropTypes.string.isRequired,
|
|
2903
|
+
fullName: PropTypes.string.isRequired,
|
|
2904
|
+
});
|
|
2905
|
+
|
|
2906
|
+
T['io.flow.shopify.external.v0.models.graphql_inferred_product_category'] = PropTypes.exact({
|
|
2907
|
+
category: T['io.flow.shopify.external.v0.models.graphql_taxonomy_category'],
|
|
2908
|
+
});
|
|
2909
|
+
|
|
2908
2910
|
T['io.flow.shopify.external.v0.models.graphql_product'] = PropTypes.exact({
|
|
2909
2911
|
id: PropTypes.string.isRequired,
|
|
2910
2912
|
legacyResourceId: PropTypes.string.isRequired,
|
|
@@ -2924,6 +2926,7 @@ T['io.flow.shopify.external.v0.models.graphql_product'] = PropTypes.exact({
|
|
|
2924
2926
|
updatedAt: PropTypes.string.isRequired,
|
|
2925
2927
|
hasVariantsThatRequiresComponents: PropTypes.bool,
|
|
2926
2928
|
category: T['io.flow.shopify.external.v0.models.graphql_taxonomy_category'],
|
|
2929
|
+
inferredProductCategory: T['io.flow.shopify.external.v0.models.graphql_inferred_product_category'],
|
|
2927
2930
|
metafields: PropTypes.arrayOf(T['io.flow.shopify.external.v0.models.graphql_metafield']),
|
|
2928
2931
|
});
|
|
2929
2932
|
|
|
@@ -8019,6 +8022,8 @@ T['io.flow.return.v0.models.return_source_flow'] = PropTypes.exact({
|
|
|
8019
8022
|
attributes: PropTypes.objectOf(PropTypes.string),
|
|
8020
8023
|
});
|
|
8021
8024
|
|
|
8025
|
+
T['io.flow.label.v0.enums.shipping_cost_guarantee'] = PropTypes.oneOf(['guaranteed', 'non_guaranteed']);
|
|
8026
|
+
|
|
8022
8027
|
T['io.flow.label.v0.models.label_order_summary'] = PropTypes.exact({
|
|
8023
8028
|
id: PropTypes.string.isRequired,
|
|
8024
8029
|
number: PropTypes.string.isRequired,
|
|
@@ -8596,6 +8601,13 @@ T['io.flow.internal.v0.models.tracking_processing_error_deleted'] = PropTypes.ex
|
|
|
8596
8601
|
id: PropTypes.string.isRequired,
|
|
8597
8602
|
});
|
|
8598
8603
|
|
|
8604
|
+
T['io.flow.internal.v0.models.raveena_item_deleted'] = PropTypes.exact({
|
|
8605
|
+
discriminator: PropTypes.oneOf(['raveena_item_deleted']).isRequired,
|
|
8606
|
+
event_id: PropTypes.string.isRequired,
|
|
8607
|
+
timestamp: PropTypes.string.isRequired,
|
|
8608
|
+
id: PropTypes.string.isRequired,
|
|
8609
|
+
});
|
|
8610
|
+
|
|
8599
8611
|
T['io.flow.internal.v0.models.bojana_item_deleted'] = PropTypes.exact({
|
|
8600
8612
|
discriminator: PropTypes.oneOf(['bojana_item_deleted']).isRequired,
|
|
8601
8613
|
event_id: PropTypes.string.isRequired,
|
|
@@ -8833,6 +8845,13 @@ T['io.flow.internal.v0.models.shopify_hs10_codes_deleted'] = PropTypes.exact({
|
|
|
8833
8845
|
id: PropTypes.string.isRequired,
|
|
8834
8846
|
});
|
|
8835
8847
|
|
|
8848
|
+
T['io.flow.internal.v0.models.preonboarding_merchant_deleted'] = PropTypes.exact({
|
|
8849
|
+
discriminator: PropTypes.oneOf(['preonboarding_merchant_deleted']).isRequired,
|
|
8850
|
+
event_id: PropTypes.string.isRequired,
|
|
8851
|
+
timestamp: PropTypes.string.isRequired,
|
|
8852
|
+
id: PropTypes.string.isRequired,
|
|
8853
|
+
});
|
|
8854
|
+
|
|
8836
8855
|
T['io.flow.internal.v0.models.taxonomy_category_hs6_ref_deleted'] = PropTypes.exact({
|
|
8837
8856
|
discriminator: PropTypes.oneOf(['taxonomy_category_hs6_ref_deleted']).isRequired,
|
|
8838
8857
|
event_id: PropTypes.string.isRequired,
|
|
@@ -8854,6 +8873,20 @@ T['io.flow.internal.v0.models.restriction_rule_deleted'] = PropTypes.exact({
|
|
|
8854
8873
|
id: PropTypes.string.isRequired,
|
|
8855
8874
|
});
|
|
8856
8875
|
|
|
8876
|
+
T['io.flow.internal.v0.models.restrictions_athena_dailyops_fs_deleted'] = PropTypes.exact({
|
|
8877
|
+
discriminator: PropTypes.oneOf(['restrictions_athena_dailyops_fs_deleted']).isRequired,
|
|
8878
|
+
event_id: PropTypes.string.isRequired,
|
|
8879
|
+
timestamp: PropTypes.string.isRequired,
|
|
8880
|
+
id: PropTypes.string.isRequired,
|
|
8881
|
+
});
|
|
8882
|
+
|
|
8883
|
+
T['io.flow.internal.v0.models.restrictions_athena_dailyops_pc_pv_deleted'] = PropTypes.exact({
|
|
8884
|
+
discriminator: PropTypes.oneOf(['restrictions_athena_dailyops_pc_pv_deleted']).isRequired,
|
|
8885
|
+
event_id: PropTypes.string.isRequired,
|
|
8886
|
+
timestamp: PropTypes.string.isRequired,
|
|
8887
|
+
id: PropTypes.string.isRequired,
|
|
8888
|
+
});
|
|
8889
|
+
|
|
8857
8890
|
T['io.flow.internal.v0.models.restrictions_dailyops_deleted'] = PropTypes.exact({
|
|
8858
8891
|
discriminator: PropTypes.oneOf(['restrictions_dailyops_deleted']).isRequired,
|
|
8859
8892
|
event_id: PropTypes.string.isRequired,
|
|
@@ -9032,6 +9065,14 @@ T['io.flow.internal.v0.models.label_tracking_summary_deleted'] = PropTypes.exact
|
|
|
9032
9065
|
id: PropTypes.string.isRequired,
|
|
9033
9066
|
});
|
|
9034
9067
|
|
|
9068
|
+
T['io.flow.internal.v0.models.adaptive_shipping_order_guarantee_deleted'] = PropTypes.exact({
|
|
9069
|
+
discriminator: PropTypes.oneOf(['adaptive_shipping_order_guarantee_deleted']).isRequired,
|
|
9070
|
+
event_id: PropTypes.string.isRequired,
|
|
9071
|
+
timestamp: PropTypes.string.isRequired,
|
|
9072
|
+
organization: PropTypes.string.isRequired,
|
|
9073
|
+
id: PropTypes.string.isRequired,
|
|
9074
|
+
});
|
|
9075
|
+
|
|
9035
9076
|
T['io.flow.internal.v0.models.label_creation_job_deleted'] = PropTypes.exact({
|
|
9036
9077
|
discriminator: PropTypes.oneOf(['label_creation_job_deleted']).isRequired,
|
|
9037
9078
|
event_id: PropTypes.string.isRequired,
|
|
@@ -9238,6 +9279,14 @@ T['io.flow.internal.v0.models.fraud_review_deleted'] = PropTypes.exact({
|
|
|
9238
9279
|
id: PropTypes.string.isRequired,
|
|
9239
9280
|
});
|
|
9240
9281
|
|
|
9282
|
+
T['io.flow.internal.v0.models.flat_rate_label_reversal_deleted'] = PropTypes.exact({
|
|
9283
|
+
discriminator: PropTypes.oneOf(['flat_rate_label_reversal_deleted']).isRequired,
|
|
9284
|
+
event_id: PropTypes.string.isRequired,
|
|
9285
|
+
timestamp: PropTypes.string.isRequired,
|
|
9286
|
+
organization: PropTypes.string.isRequired,
|
|
9287
|
+
id: PropTypes.string.isRequired,
|
|
9288
|
+
});
|
|
9289
|
+
|
|
9241
9290
|
T['io.flow.internal.v0.models.mor_cost_deleted'] = PropTypes.exact({
|
|
9242
9291
|
discriminator: PropTypes.oneOf(['mor_cost_deleted']).isRequired,
|
|
9243
9292
|
event_id: PropTypes.string.isRequired,
|
|
@@ -9489,6 +9538,14 @@ T['io.flow.internal.v0.models.commercial_invoice_internal_deleted'] = PropTypes.
|
|
|
9489
9538
|
id: PropTypes.string.isRequired,
|
|
9490
9539
|
});
|
|
9491
9540
|
|
|
9541
|
+
T['io.flow.internal.v0.models.channel_shop_statistics_deleted'] = PropTypes.exact({
|
|
9542
|
+
discriminator: PropTypes.oneOf(['channel_shop_statistics_deleted']).isRequired,
|
|
9543
|
+
event_id: PropTypes.string.isRequired,
|
|
9544
|
+
timestamp: PropTypes.string.isRequired,
|
|
9545
|
+
organization: PropTypes.string.isRequired,
|
|
9546
|
+
id: PropTypes.string.isRequired,
|
|
9547
|
+
});
|
|
9548
|
+
|
|
9492
9549
|
T['io.flow.internal.v0.models.catalog_settings_deleted'] = PropTypes.exact({
|
|
9493
9550
|
discriminator: PropTypes.oneOf(['catalog_settings_deleted']).isRequired,
|
|
9494
9551
|
event_id: PropTypes.string.isRequired,
|
|
@@ -11492,6 +11549,7 @@ T['io.flow.internal.v0.models.report_bank_account_cleartext'] = PropTypes.exact(
|
|
|
11492
11549
|
type: PropTypes.string.isRequired,
|
|
11493
11550
|
routing_number: PropTypes.string.isRequired,
|
|
11494
11551
|
account_number: PropTypes.string.isRequired,
|
|
11552
|
+
bank_name: PropTypes.string,
|
|
11495
11553
|
});
|
|
11496
11554
|
|
|
11497
11555
|
T['io.flow.internal.v0.models.price_inclusivity'] = PropTypes.exact({
|
|
@@ -11620,6 +11678,63 @@ T['io.flow.internal.v0.models.restrictions_dailyops_upserted'] = PropTypes.exact
|
|
|
11620
11678
|
restrictions_dailyops: T['io.flow.internal.v0.models.restrictions_dailyops'].isRequired,
|
|
11621
11679
|
});
|
|
11622
11680
|
|
|
11681
|
+
T['io.flow.internal.v0.enums.athena_dailyops_intent_level'] = PropTypes.oneOf(['low_intent', 'high_intent']);
|
|
11682
|
+
|
|
11683
|
+
T['io.flow.internal.v0.models.restrictions_athena_dailyops_pc_pv'] = PropTypes.exact({
|
|
11684
|
+
id: PropTypes.string.isRequired,
|
|
11685
|
+
report_date: PropTypes.string.isRequired,
|
|
11686
|
+
intent_level: T['io.flow.internal.v0.enums.athena_dailyops_intent_level'].isRequired,
|
|
11687
|
+
num_orgs_setup_complete_with_pvs: PropTypes.number.isRequired,
|
|
11688
|
+
num_products_setup_complete_with_pvs: PropTypes.number.isRequired,
|
|
11689
|
+
num_orgs_transacting_with_pvs: PropTypes.number.isRequired,
|
|
11690
|
+
num_products_transacting_with_pvs: PropTypes.number.isRequired,
|
|
11691
|
+
num_orgs_setup_complete_with_pcs: PropTypes.number.isRequired,
|
|
11692
|
+
num_products_setup_complete_with_pcs: PropTypes.number.isRequired,
|
|
11693
|
+
num_orgs_transacting_with_pcs: PropTypes.number.isRequired,
|
|
11694
|
+
num_products_transacting_with_pcs: PropTypes.number.isRequired,
|
|
11695
|
+
oldest_pv_product_date_setup_complete: PropTypes.string,
|
|
11696
|
+
oldest_pv_product_date_transacting: PropTypes.string,
|
|
11697
|
+
oldest_pc_product_date_setup_complete: PropTypes.string,
|
|
11698
|
+
oldest_pc_product_date_transacting: PropTypes.string,
|
|
11699
|
+
oldest_insufficient_details_pv_active: PropTypes.string,
|
|
11700
|
+
oldest_insufficient_details_pv_transacting: PropTypes.string,
|
|
11701
|
+
num_pv_inflow_net_new: PropTypes.number.isRequired,
|
|
11702
|
+
num_pv_outflow_human_decisions: PropTypes.number.isRequired,
|
|
11703
|
+
num_pv_outflow_auto_review_decisions: PropTypes.number.isRequired,
|
|
11704
|
+
num_pv_outflow_side_effect_decisions: PropTypes.number.isRequired,
|
|
11705
|
+
num_pending_decisions_transacting: PropTypes.number.isRequired,
|
|
11706
|
+
pv_decisions_setup_complete: PropTypes.number.isRequired,
|
|
11707
|
+
});
|
|
11708
|
+
|
|
11709
|
+
T['io.flow.internal.v0.models.restrictions_athena_dailyops_pc_pv_upserted'] = PropTypes.exact({
|
|
11710
|
+
discriminator: PropTypes.oneOf(['restrictions_athena_dailyops_pc_pv_upserted']).isRequired,
|
|
11711
|
+
event_id: PropTypes.string.isRequired,
|
|
11712
|
+
timestamp: PropTypes.string.isRequired,
|
|
11713
|
+
restrictions_athena_dailyops_pc_pv: T['io.flow.internal.v0.models.restrictions_athena_dailyops_pc_pv'].isRequired,
|
|
11714
|
+
});
|
|
11715
|
+
|
|
11716
|
+
T['io.flow.internal.v0.models.restrictions_athena_dailyops_fs'] = PropTypes.exact({
|
|
11717
|
+
id: PropTypes.string.isRequired,
|
|
11718
|
+
report_date: PropTypes.string.isRequired,
|
|
11719
|
+
num_products_with_fs_result: PropTypes.number,
|
|
11720
|
+
num_products_sellable_somewhere_by_fs: PropTypes.number,
|
|
11721
|
+
num_products_restricted_somewhere_by_fs: PropTypes.number,
|
|
11722
|
+
num_products_with_false_allows_by_fs: PropTypes.number,
|
|
11723
|
+
num_products_with_false_restricts_by_fs: PropTypes.number,
|
|
11724
|
+
daily_num_products_with_fs_result: PropTypes.number,
|
|
11725
|
+
daily_num_products_sellable_somewhere_by_fs: PropTypes.number,
|
|
11726
|
+
daily_num_products_restricted_somewhere_by_fs: PropTypes.number,
|
|
11727
|
+
daily_num_products_with_false_allows_by_fs: PropTypes.number,
|
|
11728
|
+
daily_num_products_with_false_restricts_by_fs: PropTypes.number,
|
|
11729
|
+
});
|
|
11730
|
+
|
|
11731
|
+
T['io.flow.internal.v0.models.restrictions_athena_dailyops_fs_upserted'] = PropTypes.exact({
|
|
11732
|
+
discriminator: PropTypes.oneOf(['restrictions_athena_dailyops_fs_upserted']).isRequired,
|
|
11733
|
+
event_id: PropTypes.string.isRequired,
|
|
11734
|
+
timestamp: PropTypes.string.isRequired,
|
|
11735
|
+
restrictions_athena_dailyops_fs: T['io.flow.internal.v0.models.restrictions_athena_dailyops_fs'].isRequired,
|
|
11736
|
+
});
|
|
11737
|
+
|
|
11623
11738
|
T['io.flow.internal.v0.enums.restriction_rule_activation_status'] = PropTypes.oneOf(['draft', 'active', 'inactive']);
|
|
11624
11739
|
|
|
11625
11740
|
T['io.flow.internal.v0.models.keyword_cancelling'] = PropTypes.exact({
|
|
@@ -11814,7 +11929,7 @@ T['io.flow.internal.v0.models.report_organization_reference'] = PropTypes.exact(
|
|
|
11814
11929
|
organization_id: PropTypes.string.isRequired,
|
|
11815
11930
|
});
|
|
11816
11931
|
|
|
11817
|
-
T['io.flow.internal.v0.enums.account_currency_filter'] = PropTypes.oneOf(['GBP', 'CAD', 'USD']);
|
|
11932
|
+
T['io.flow.internal.v0.enums.account_currency_filter'] = PropTypes.oneOf(['GBP', 'CAD', 'USD', 'KRW']);
|
|
11818
11933
|
|
|
11819
11934
|
T['io.flow.internal.v0.models.report_amount_range'] = PropTypes.exact({
|
|
11820
11935
|
min: PropTypes.number,
|
|
@@ -11875,6 +11990,8 @@ T['io.flow.internal.v0.enums.report_type'] = PropTypes.oneOf([
|
|
|
11875
11990
|
'non_channel_payment_bank_account',
|
|
11876
11991
|
'scheduled_payment',
|
|
11877
11992
|
'scheduled_payment_citi',
|
|
11993
|
+
'scheduled_payment_citi_krw',
|
|
11994
|
+
'scheduled_payment_citi_krw_txt',
|
|
11878
11995
|
'account_quarterly_balances',
|
|
11879
11996
|
'invariants',
|
|
11880
11997
|
'payments',
|
|
@@ -12309,6 +12426,23 @@ T['io.flow.sellability.v0.models.sellability_screening'] = PropTypes.exact({
|
|
|
12309
12426
|
error_message: PropTypes.string,
|
|
12310
12427
|
});
|
|
12311
12428
|
|
|
12429
|
+
T['io.flow.internal.v0.models.preonboarding_merchant'] = PropTypes.exact({
|
|
12430
|
+
id: PropTypes.string.isRequired,
|
|
12431
|
+
merchant_id: PropTypes.string.isRequired,
|
|
12432
|
+
channel: PropTypes.string.isRequired,
|
|
12433
|
+
catalog_size: PropTypes.number.isRequired,
|
|
12434
|
+
processed_product_count: PropTypes.number.isRequired,
|
|
12435
|
+
last_request: PropTypes.string.isRequired,
|
|
12436
|
+
updated_by_user_id: PropTypes.string.isRequired,
|
|
12437
|
+
});
|
|
12438
|
+
|
|
12439
|
+
T['io.flow.internal.v0.models.preonboarding_merchant_upserted'] = PropTypes.exact({
|
|
12440
|
+
discriminator: PropTypes.oneOf(['preonboarding_merchant_upserted']).isRequired,
|
|
12441
|
+
event_id: PropTypes.string.isRequired,
|
|
12442
|
+
timestamp: PropTypes.string.isRequired,
|
|
12443
|
+
preonboarding_merchant: T['io.flow.internal.v0.models.preonboarding_merchant'].isRequired,
|
|
12444
|
+
});
|
|
12445
|
+
|
|
12312
12446
|
T['io.flow.internal.v0.enums.preonboarding_classification_type'] = PropTypes.oneOf(['None', 'Manual', 'ML', 'System']);
|
|
12313
12447
|
T['io.flow.internal.v0.enums.preonboarding_classification_decision'] = PropTypes.oneOf(['Accept', 'Reject']);
|
|
12314
12448
|
|
|
@@ -12321,8 +12455,11 @@ T['io.flow.internal.v0.models.preonboarding_classification_result'] = PropTypes.
|
|
|
12321
12455
|
probability: PropTypes.number,
|
|
12322
12456
|
classification_decision: T['io.flow.internal.v0.enums.preonboarding_classification_decision'].isRequired,
|
|
12323
12457
|
classification_type: T['io.flow.internal.v0.enums.preonboarding_classification_type'].isRequired,
|
|
12458
|
+
model_id: PropTypes.string,
|
|
12324
12459
|
});
|
|
12325
12460
|
|
|
12461
|
+
T['io.flow.sellability.v0.enums.sellability_screening_mode'] = PropTypes.oneOf(['pre_onboarding', 'default_on', 'active']);
|
|
12462
|
+
|
|
12326
12463
|
T['io.flow.product.v0.models.product_taxonomy_category'] = PropTypes.exact({
|
|
12327
12464
|
name: PropTypes.string.isRequired,
|
|
12328
12465
|
full_name: PropTypes.string.isRequired,
|
|
@@ -12332,6 +12469,7 @@ T['io.flow.product.v0.models.product'] = PropTypes.exact({
|
|
|
12332
12469
|
organization_id: PropTypes.string.isRequired,
|
|
12333
12470
|
number: PropTypes.string.isRequired,
|
|
12334
12471
|
taxonomy_category: T['io.flow.product.v0.models.product_taxonomy_category'],
|
|
12472
|
+
inferred_taxonomy_category: T['io.flow.product.v0.models.product_taxonomy_category'],
|
|
12335
12473
|
taxonomy_data: PropTypes.arrayOf(T['io.flow.product.v0.models.product_taxonomy_data']),
|
|
12336
12474
|
item_numbers: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
12337
12475
|
highest_value_item_number: PropTypes.string,
|
|
@@ -12424,6 +12562,7 @@ T['io.flow.internal.v0.models.preonboarding_sellability_result'] = PropTypes.exa
|
|
|
12424
12562
|
classification_failure_reason: T['io.flow.internal.v0.enums.classification_failure_reason'],
|
|
12425
12563
|
taxonomy_category: T['io.flow.product.v0.models.product_taxonomy_category'],
|
|
12426
12564
|
fingerprint: PropTypes.string.isRequired,
|
|
12565
|
+
screening_mode: T['io.flow.sellability.v0.enums.sellability_screening_mode'],
|
|
12427
12566
|
});
|
|
12428
12567
|
|
|
12429
12568
|
T['io.flow.internal.v0.models.preonboarding_sellability_result_updated'] = PropTypes.exact({
|
|
@@ -13963,6 +14102,7 @@ T['io.flow.internal.v0.models.manual_transaction_form'] = PropTypes.exact({
|
|
|
13963
14102
|
});
|
|
13964
14103
|
|
|
13965
14104
|
T['io.flow.internal.v0.enums.manual_review_rule_status'] = PropTypes.oneOf(['active', 'archived']);
|
|
14105
|
+
T['io.flow.internal.v0.enums.mahesh_item_type'] = PropTypes.oneOf(['physical', 'digital']);
|
|
13966
14106
|
|
|
13967
14107
|
T['io.flow.internal.v0.models.loyalty_program_reward'] = PropTypes.exact({
|
|
13968
14108
|
id: PropTypes.string.isRequired,
|
|
@@ -14247,6 +14387,7 @@ T['io.flow.ratecard.v0.models.ratecard'] = PropTypes.exact({
|
|
|
14247
14387
|
rate_level_key: PropTypes.string,
|
|
14248
14388
|
direction: T['io.flow.label.v0.enums.direction'].isRequired,
|
|
14249
14389
|
effective_at: PropTypes.string.isRequired,
|
|
14390
|
+
effective_until: PropTypes.string,
|
|
14250
14391
|
origination_zones: PropTypes.arrayOf(T['io.flow.common.v0.models.zone']).isRequired,
|
|
14251
14392
|
service: T['io.flow.ratecard.v0.models.ratecard_service_summary'].isRequired,
|
|
14252
14393
|
published_at: PropTypes.string,
|
|
@@ -14422,13 +14563,6 @@ T['io.flow.internal.v0.models.label_creation_job_upserted'] = PropTypes.exact({
|
|
|
14422
14563
|
label_creation_job: T['io.flow.internal.v0.models.label_creation_job'].isRequired,
|
|
14423
14564
|
});
|
|
14424
14565
|
|
|
14425
|
-
T['io.flow.internal.v0.enums.label_cancellation_error_code'] = PropTypes.oneOf(['already_used', 'carrier_unsupported']);
|
|
14426
|
-
|
|
14427
|
-
T['io.flow.internal.v0.models.label_cancellation_error'] = PropTypes.exact({
|
|
14428
|
-
code: T['io.flow.internal.v0.enums.label_cancellation_error_code'].isRequired,
|
|
14429
|
-
messages: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
14430
|
-
});
|
|
14431
|
-
|
|
14432
14566
|
T['io.flow.internal.v0.models.lab_project_settings_form_acceptance'] = PropTypes.exact({
|
|
14433
14567
|
accepted: PropTypes.bool.isRequired,
|
|
14434
14568
|
});
|
|
@@ -15342,6 +15476,8 @@ T['io.flow.internal.v0.models.reporting_merchant_transactions'] = PropTypes.exac
|
|
|
15342
15476
|
duty: T['io.flow.internal.v0.models.reporting_monetary_value'].isRequired,
|
|
15343
15477
|
freight: T['io.flow.internal.v0.models.reporting_monetary_value'].isRequired,
|
|
15344
15478
|
freight_breakdown: T['io.flow.internal.v0.models.reporting_merchant_freight'],
|
|
15479
|
+
freight_guaranteed: T['io.flow.internal.v0.models.reporting_monetary_value'],
|
|
15480
|
+
freight_non_guaranteed: T['io.flow.internal.v0.models.reporting_monetary_value'],
|
|
15345
15481
|
discount: T['io.flow.internal.v0.models.reporting_monetary_value'],
|
|
15346
15482
|
total: T['io.flow.internal.v0.models.reporting_monetary_value'],
|
|
15347
15483
|
tax_refund: T['io.flow.internal.v0.models.reporting_monetary_value'],
|
|
@@ -15442,6 +15578,8 @@ T['io.flow.internal.v0.models.merchant_transactions'] = PropTypes.exact({
|
|
|
15442
15578
|
freight: PropTypes.number.isRequired,
|
|
15443
15579
|
base_amount: PropTypes.number,
|
|
15444
15580
|
surcharges: PropTypes.arrayOf(T['io.flow.internal.v0.models.merchant_surcharge']),
|
|
15581
|
+
freight_guaranteed: PropTypes.number,
|
|
15582
|
+
freight_non_guaranteed: PropTypes.number,
|
|
15445
15583
|
total: PropTypes.number.isRequired,
|
|
15446
15584
|
tax_refund: PropTypes.number,
|
|
15447
15585
|
tax_reversal: PropTypes.number,
|
|
@@ -15672,8 +15810,8 @@ T['io.flow.internal.v0.models.fiserv_authentication'] = PropTypes.exact({
|
|
|
15672
15810
|
secret_key_reference: PropTypes.string.isRequired,
|
|
15673
15811
|
});
|
|
15674
15812
|
|
|
15675
|
-
T['io.flow.billing.bank.account.v0.models.
|
|
15676
|
-
discriminator: PropTypes.oneOf(['
|
|
15813
|
+
T['io.flow.billing.bank.account.v0.models.bank_account_info_kor_v2'] = PropTypes.exact({
|
|
15814
|
+
discriminator: PropTypes.oneOf(['kor_v2']).isRequired,
|
|
15677
15815
|
name: PropTypes.string.isRequired,
|
|
15678
15816
|
bank_account_number: PropTypes.string.isRequired,
|
|
15679
15817
|
bank_routing_number: PropTypes.string.isRequired,
|
|
@@ -15714,25 +15852,6 @@ T['io.flow.internal.v0.models.finance_bank_account_owner'] = PropTypes.exact({
|
|
|
15714
15852
|
name: PropTypes.string.isRequired,
|
|
15715
15853
|
});
|
|
15716
15854
|
|
|
15717
|
-
T['io.flow.billing.bank.account.v0.unions.bank_account_info'] = PropTypes.oneOfType([
|
|
15718
|
-
T['io.flow.billing.bank.account.v0.models.bank_account_info_usa'],
|
|
15719
|
-
T['io.flow.billing.bank.account.v0.models.bank_account_info_can'],
|
|
15720
|
-
T['io.flow.billing.bank.account.v0.models.bank_account_info_gbr'],
|
|
15721
|
-
T['io.flow.billing.bank.account.v0.models.bank_account_info_fra'],
|
|
15722
|
-
T['io.flow.billing.bank.account.v0.models.bank_account_info_ita'],
|
|
15723
|
-
T['io.flow.billing.bank.account.v0.models.bank_account_info_kor'],
|
|
15724
|
-
]);
|
|
15725
|
-
|
|
15726
|
-
T['io.flow.billing.v0.models.bank_account_form_info'] = PropTypes.exact({
|
|
15727
|
-
discriminator: PropTypes.oneOf(['info']).isRequired,
|
|
15728
|
-
info: T['io.flow.billing.bank.account.v0.unions.bank_account_info'].isRequired,
|
|
15729
|
-
});
|
|
15730
|
-
|
|
15731
|
-
T['io.flow.billing.v0.unions.bank_account_form'] = PropTypes.oneOfType([
|
|
15732
|
-
T['io.flow.billing.v0.models.bank_account_form_info'],
|
|
15733
|
-
T['io.flow.billing.v0.models.bank_account_form_simple'],
|
|
15734
|
-
]);
|
|
15735
|
-
|
|
15736
15855
|
T['io.flow.internal.v0.models.string_feature_rule_form'] = PropTypes.exact({
|
|
15737
15856
|
discriminator: PropTypes.oneOf(['string']).isRequired,
|
|
15738
15857
|
query: PropTypes.string.isRequired,
|
|
@@ -18914,6 +19033,14 @@ T['io.flow.common.v0.models.channel_reference'] = PropTypes.exact({
|
|
|
18914
19033
|
id: PropTypes.string.isRequired,
|
|
18915
19034
|
});
|
|
18916
19035
|
|
|
19036
|
+
T['io.flow.channel.internal.v0.models.channel_shop_statistics'] = PropTypes.exact({
|
|
19037
|
+
id: PropTypes.string.isRequired,
|
|
19038
|
+
channel: T['io.flow.common.v0.models.channel_reference'].isRequired,
|
|
19039
|
+
initial_catalog_synced_at: PropTypes.string,
|
|
19040
|
+
catalog_sync_duration: PropTypes.number,
|
|
19041
|
+
catalog_products_count: PropTypes.number,
|
|
19042
|
+
});
|
|
19043
|
+
|
|
18917
19044
|
T['io.flow.shopify.markets.internal.v0.models.shopify_markets_shop_summary'] = PropTypes.exact({
|
|
18918
19045
|
organization: T['io.flow.common.v0.models.organization_summary'].isRequired,
|
|
18919
19046
|
channel: T['io.flow.common.v0.models.channel_reference'].isRequired,
|
|
@@ -19002,6 +19129,22 @@ T['io.flow.internal.v0.models.internal_channel_rate_upserted'] = PropTypes.exact
|
|
|
19002
19129
|
rate: T['io.flow.internal.v0.models.internal_channel_rate'].isRequired,
|
|
19003
19130
|
});
|
|
19004
19131
|
|
|
19132
|
+
T['io.flow.internal.v0.models.channel_shop_statistics'] = PropTypes.exact({
|
|
19133
|
+
id: PropTypes.string.isRequired,
|
|
19134
|
+
channel: T['io.flow.common.v0.models.channel_reference'].isRequired,
|
|
19135
|
+
initial_catalog_synced_at: PropTypes.string,
|
|
19136
|
+
catalog_sync_duration: PropTypes.number,
|
|
19137
|
+
catalog_products_count: PropTypes.number,
|
|
19138
|
+
});
|
|
19139
|
+
|
|
19140
|
+
T['io.flow.internal.v0.models.channel_shop_statistics_upserted'] = PropTypes.exact({
|
|
19141
|
+
discriminator: PropTypes.oneOf(['channel_shop_statistics_upserted']).isRequired,
|
|
19142
|
+
event_id: PropTypes.string.isRequired,
|
|
19143
|
+
timestamp: PropTypes.string.isRequired,
|
|
19144
|
+
organization: PropTypes.string.isRequired,
|
|
19145
|
+
channel_shop_statistics: T['io.flow.internal.v0.models.channel_shop_statistics'].isRequired,
|
|
19146
|
+
});
|
|
19147
|
+
|
|
19005
19148
|
T['io.flow.common.v0.models.dimensions'] = PropTypes.exact({
|
|
19006
19149
|
product: T['io.flow.common.v0.models.dimension'],
|
|
19007
19150
|
packaging: T['io.flow.common.v0.models.dimension'],
|
|
@@ -19076,6 +19219,38 @@ T['io.flow.common.v0.models.address'] = PropTypes.exact({
|
|
|
19076
19219
|
longitude: PropTypes.string,
|
|
19077
19220
|
});
|
|
19078
19221
|
|
|
19222
|
+
T['io.flow.billing.bank.account.v0.models.bank_account_info_kor'] = PropTypes.exact({
|
|
19223
|
+
discriminator: PropTypes.oneOf(['kor']).isRequired,
|
|
19224
|
+
name: PropTypes.string,
|
|
19225
|
+
address: T['io.flow.common.v0.models.address'],
|
|
19226
|
+
phone: PropTypes.string,
|
|
19227
|
+
email: PropTypes.string,
|
|
19228
|
+
bank_account_number: PropTypes.string.isRequired,
|
|
19229
|
+
bank_routing_number: PropTypes.string,
|
|
19230
|
+
bank_name: PropTypes.string,
|
|
19231
|
+
bank_address: T['io.flow.common.v0.models.address'],
|
|
19232
|
+
});
|
|
19233
|
+
|
|
19234
|
+
T['io.flow.billing.bank.account.v0.unions.bank_account_info'] = PropTypes.oneOfType([
|
|
19235
|
+
T['io.flow.billing.bank.account.v0.models.bank_account_info_usa'],
|
|
19236
|
+
T['io.flow.billing.bank.account.v0.models.bank_account_info_can'],
|
|
19237
|
+
T['io.flow.billing.bank.account.v0.models.bank_account_info_gbr'],
|
|
19238
|
+
T['io.flow.billing.bank.account.v0.models.bank_account_info_fra'],
|
|
19239
|
+
T['io.flow.billing.bank.account.v0.models.bank_account_info_ita'],
|
|
19240
|
+
T['io.flow.billing.bank.account.v0.models.bank_account_info_kor'],
|
|
19241
|
+
T['io.flow.billing.bank.account.v0.models.bank_account_info_kor_v2'],
|
|
19242
|
+
]);
|
|
19243
|
+
|
|
19244
|
+
T['io.flow.billing.v0.models.bank_account_form_info'] = PropTypes.exact({
|
|
19245
|
+
discriminator: PropTypes.oneOf(['info']).isRequired,
|
|
19246
|
+
info: T['io.flow.billing.bank.account.v0.unions.bank_account_info'].isRequired,
|
|
19247
|
+
});
|
|
19248
|
+
|
|
19249
|
+
T['io.flow.billing.v0.unions.bank_account_form'] = PropTypes.oneOfType([
|
|
19250
|
+
T['io.flow.billing.v0.models.bank_account_form_info'],
|
|
19251
|
+
T['io.flow.billing.v0.models.bank_account_form_simple'],
|
|
19252
|
+
]);
|
|
19253
|
+
|
|
19079
19254
|
T['io.flow.merchant.onboarding.v0.models.operations_contact'] = PropTypes.exact({
|
|
19080
19255
|
company: PropTypes.string,
|
|
19081
19256
|
email: PropTypes.string,
|
|
@@ -23793,6 +23968,7 @@ T['io.flow.internal.v0.models.preonboarding_classification_request'] = PropTypes
|
|
|
23793
23968
|
relative_ranking: PropTypes.number.isRequired,
|
|
23794
23969
|
taxonomy_category: T['io.flow.product.v0.models.product_taxonomy_category'],
|
|
23795
23970
|
fingerprint: PropTypes.string.isRequired,
|
|
23971
|
+
screening_mode: T['io.flow.sellability.v0.enums.sellability_screening_mode'],
|
|
23796
23972
|
});
|
|
23797
23973
|
|
|
23798
23974
|
T['io.flow.internal.v0.models.mor_cost_summary'] = PropTypes.exact({
|
|
@@ -23858,6 +24034,22 @@ T['io.flow.internal.v0.models.fx_revenue_recognition'] = PropTypes.exact({
|
|
|
23858
24034
|
reporting_date: PropTypes.string,
|
|
23859
24035
|
});
|
|
23860
24036
|
|
|
24037
|
+
T['io.flow.internal.v0.models.flat_rate_label_reversal'] = PropTypes.exact({
|
|
24038
|
+
id: PropTypes.string.isRequired,
|
|
24039
|
+
organization_id: PropTypes.string.isRequired,
|
|
24040
|
+
order_number: PropTypes.string.isRequired,
|
|
24041
|
+
amount: T['io.flow.common.v0.models.money'].isRequired,
|
|
24042
|
+
tax: T['io.flow.common.v0.models.money'].isRequired,
|
|
24043
|
+
});
|
|
24044
|
+
|
|
24045
|
+
T['io.flow.internal.v0.models.flat_rate_label_reversal_upserted'] = PropTypes.exact({
|
|
24046
|
+
discriminator: PropTypes.oneOf(['flat_rate_label_reversal_upserted']).isRequired,
|
|
24047
|
+
event_id: PropTypes.string.isRequired,
|
|
24048
|
+
timestamp: PropTypes.string.isRequired,
|
|
24049
|
+
organization: PropTypes.string.isRequired,
|
|
24050
|
+
flat_rate_label_reversal: T['io.flow.internal.v0.models.flat_rate_label_reversal'].isRequired,
|
|
24051
|
+
});
|
|
24052
|
+
|
|
23861
24053
|
T['io.flow.common.v0.models.line_item_form'] = PropTypes.exact({
|
|
23862
24054
|
number: PropTypes.string.isRequired,
|
|
23863
24055
|
quantity: PropTypes.number.isRequired,
|
|
@@ -24423,6 +24615,8 @@ T['io.flow.internal.v0.models.calculation_stamping_line_item'] = PropTypes.exact
|
|
|
24423
24615
|
sales_tax_rate: PropTypes.number.isRequired,
|
|
24424
24616
|
additional_tax: T['io.flow.common.v0.models.money'],
|
|
24425
24617
|
additional_tax_rate: PropTypes.number,
|
|
24618
|
+
fixed_fee: T['io.flow.common.v0.models.money'],
|
|
24619
|
+
fixed_fee_tax: T['io.flow.common.v0.models.money'],
|
|
24426
24620
|
total: T['io.flow.common.v0.models.money'].isRequired,
|
|
24427
24621
|
});
|
|
24428
24622
|
|
|
@@ -24551,6 +24745,8 @@ T['io.flow.internal.v0.models.calculation_total'] = PropTypes.exact({
|
|
|
24551
24745
|
additional_tax_import_included: PropTypes.bool.isRequired,
|
|
24552
24746
|
additional_tax: T['io.flow.common.v0.models.money'],
|
|
24553
24747
|
additional_import_tax: PropTypes.arrayOf(T['io.flow.internal.v0.models.additional_import_tax']),
|
|
24748
|
+
fixed_fee: T['io.flow.common.v0.models.money'],
|
|
24749
|
+
fixed_fee_tax: T['io.flow.common.v0.models.money'],
|
|
24554
24750
|
});
|
|
24555
24751
|
|
|
24556
24752
|
T['io.flow.internal.v0.models.calculation_step'] = PropTypes.exact({
|
|
@@ -24585,7 +24781,6 @@ T['io.flow.internal.v0.models.adaptive_shipping_rate'] = PropTypes.exact({
|
|
|
24585
24781
|
destination_country: PropTypes.string.isRequired,
|
|
24586
24782
|
coefficient: PropTypes.number.isRequired,
|
|
24587
24783
|
flat_rates: PropTypes.arrayOf(T['io.flow.internal.v0.models.flat_rate']).isRequired,
|
|
24588
|
-
version_id: PropTypes.string,
|
|
24589
24784
|
effective_at: PropTypes.string.isRequired,
|
|
24590
24785
|
effective_until: PropTypes.string,
|
|
24591
24786
|
});
|
|
@@ -24598,6 +24793,25 @@ T['io.flow.internal.v0.models.adaptive_shipping_rate_upserted'] = PropTypes.exac
|
|
|
24598
24793
|
adaptive_shipping_rate: T['io.flow.internal.v0.models.adaptive_shipping_rate'].isRequired,
|
|
24599
24794
|
});
|
|
24600
24795
|
|
|
24796
|
+
T['io.flow.internal.v0.enums.adaptive_shipping_order_guarantee_state'] = PropTypes.oneOf(['confirmed', 'voided']);
|
|
24797
|
+
|
|
24798
|
+
T['io.flow.internal.v0.models.adaptive_shipping_order_guarantee'] = PropTypes.exact({
|
|
24799
|
+
id: PropTypes.string.isRequired,
|
|
24800
|
+
organization_id: PropTypes.string.isRequired,
|
|
24801
|
+
order_number: PropTypes.string.isRequired,
|
|
24802
|
+
guarantee_state: T['io.flow.internal.v0.enums.adaptive_shipping_order_guarantee_state'].isRequired,
|
|
24803
|
+
label_id: PropTypes.string,
|
|
24804
|
+
notification_id: PropTypes.string,
|
|
24805
|
+
});
|
|
24806
|
+
|
|
24807
|
+
T['io.flow.internal.v0.models.adaptive_shipping_order_guarantee_upserted'] = PropTypes.exact({
|
|
24808
|
+
discriminator: PropTypes.oneOf(['adaptive_shipping_order_guarantee_upserted']).isRequired,
|
|
24809
|
+
event_id: PropTypes.string.isRequired,
|
|
24810
|
+
timestamp: PropTypes.string.isRequired,
|
|
24811
|
+
organization: PropTypes.string.isRequired,
|
|
24812
|
+
adaptive_shipping_order_guarantee: T['io.flow.internal.v0.models.adaptive_shipping_order_guarantee'].isRequired,
|
|
24813
|
+
});
|
|
24814
|
+
|
|
24601
24815
|
T['io.flow.internal.v0.enums.item_quantity_action'] = PropTypes.oneOf(['fulfillment_ship', 'fulfillment_cancel', 'fulfillment_generate_label']);
|
|
24602
24816
|
|
|
24603
24817
|
T['io.flow.internal.v0.models.action_quantity'] = PropTypes.exact({
|
|
@@ -25973,6 +26187,7 @@ T['io.flow.label.v0.models.shipping_label'] = PropTypes.exact({
|
|
|
25973
26187
|
created_at: PropTypes.string,
|
|
25974
26188
|
updated_at: PropTypes.string,
|
|
25975
26189
|
direction: T['io.flow.label.v0.enums.direction'],
|
|
26190
|
+
shipping_cost_guarantee: T['io.flow.label.v0.enums.shipping_cost_guarantee'],
|
|
25976
26191
|
});
|
|
25977
26192
|
|
|
25978
26193
|
T['io.flow.label.v0.models.shipping_label_version'] = PropTypes.exact({
|
|
@@ -26079,6 +26294,13 @@ T['io.flow.internal.v0.models.raveena_item'] = PropTypes.exact({
|
|
|
26079
26294
|
added_on: PropTypes.string.isRequired,
|
|
26080
26295
|
});
|
|
26081
26296
|
|
|
26297
|
+
T['io.flow.internal.v0.models.raveena_item_upserted'] = PropTypes.exact({
|
|
26298
|
+
discriminator: PropTypes.oneOf(['raveena_item_upserted']).isRequired,
|
|
26299
|
+
event_id: PropTypes.string.isRequired,
|
|
26300
|
+
timestamp: PropTypes.string.isRequired,
|
|
26301
|
+
item: T['io.flow.internal.v0.models.raveena_item'].isRequired,
|
|
26302
|
+
});
|
|
26303
|
+
|
|
26082
26304
|
T['io.flow.internal.v0.models.payment_summary_v2'] = PropTypes.exact({
|
|
26083
26305
|
discriminator: PropTypes.oneOf(['payment_summary_v2']).isRequired,
|
|
26084
26306
|
id: PropTypes.string.isRequired,
|
|
@@ -26117,6 +26339,23 @@ T['io.flow.internal.v0.models.order_revenue_region_chart'] = PropTypes.exact({
|
|
|
26117
26339
|
data: PropTypes.arrayOf(T['io.flow.internal.v0.models.order_revenue_region_data_point']).isRequired,
|
|
26118
26340
|
});
|
|
26119
26341
|
|
|
26342
|
+
T['io.flow.internal.v0.models.mahesh_item_form'] = PropTypes.exact({
|
|
26343
|
+
number: PropTypes.string.isRequired,
|
|
26344
|
+
amount: T['io.flow.common.v0.models.price'].isRequired,
|
|
26345
|
+
description: PropTypes.string,
|
|
26346
|
+
type: T['io.flow.internal.v0.enums.mahesh_item_type'].isRequired,
|
|
26347
|
+
added_on: PropTypes.string.isRequired,
|
|
26348
|
+
});
|
|
26349
|
+
|
|
26350
|
+
T['io.flow.internal.v0.models.mahesh_item'] = PropTypes.exact({
|
|
26351
|
+
id: PropTypes.string.isRequired,
|
|
26352
|
+
number: PropTypes.string.isRequired,
|
|
26353
|
+
amount: T['io.flow.common.v0.models.price'].isRequired,
|
|
26354
|
+
description: PropTypes.string,
|
|
26355
|
+
type: T['io.flow.internal.v0.enums.mahesh_item_type'].isRequired,
|
|
26356
|
+
added_on: PropTypes.string.isRequired,
|
|
26357
|
+
});
|
|
26358
|
+
|
|
26120
26359
|
T['io.flow.internal.v0.models.invoice_line'] = PropTypes.exact({
|
|
26121
26360
|
id: PropTypes.string.isRequired,
|
|
26122
26361
|
description: PropTypes.string.isRequired,
|
|
@@ -28314,6 +28553,8 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
|
|
|
28314
28553
|
T['io.flow.internal.v0.models.channel_order_acceptance_upserted'],
|
|
28315
28554
|
T['io.flow.internal.v0.models.channel_order_acceptance_deleted'],
|
|
28316
28555
|
T['io.flow.internal.v0.models.channel_order_acceptance_failed'],
|
|
28556
|
+
T['io.flow.internal.v0.models.channel_shop_statistics_upserted'],
|
|
28557
|
+
T['io.flow.internal.v0.models.channel_shop_statistics_deleted'],
|
|
28317
28558
|
T['io.flow.internal.v0.models.commercial_invoice_internal_upserted'],
|
|
28318
28559
|
T['io.flow.internal.v0.models.commercial_invoice_internal_deleted'],
|
|
28319
28560
|
T['io.flow.internal.v0.models.internal_channel_rate_deleted'],
|
|
@@ -28373,6 +28614,8 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
|
|
|
28373
28614
|
T['io.flow.internal.v0.models.shipping_cost_deleted'],
|
|
28374
28615
|
T['io.flow.internal.v0.models.mor_cost_upserted'],
|
|
28375
28616
|
T['io.flow.internal.v0.models.mor_cost_deleted'],
|
|
28617
|
+
T['io.flow.internal.v0.models.flat_rate_label_reversal_upserted'],
|
|
28618
|
+
T['io.flow.internal.v0.models.flat_rate_label_reversal_deleted'],
|
|
28376
28619
|
T['io.flow.internal.v0.models.fraud_review_upserted'],
|
|
28377
28620
|
T['io.flow.internal.v0.models.fraud_review_deleted'],
|
|
28378
28621
|
T['io.flow.internal.v0.models.fraud_pending_review_upserted'],
|
|
@@ -28429,6 +28672,8 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
|
|
|
28429
28672
|
T['io.flow.internal.v0.models.order_validation_deleted'],
|
|
28430
28673
|
T['io.flow.internal.v0.models.label_creation_job_upserted'],
|
|
28431
28674
|
T['io.flow.internal.v0.models.label_creation_job_deleted'],
|
|
28675
|
+
T['io.flow.internal.v0.models.adaptive_shipping_order_guarantee_upserted'],
|
|
28676
|
+
T['io.flow.internal.v0.models.adaptive_shipping_order_guarantee_deleted'],
|
|
28432
28677
|
T['io.flow.internal.v0.models.label_tracking_summary_upserted'],
|
|
28433
28678
|
T['io.flow.internal.v0.models.label_tracking_summary_deleted'],
|
|
28434
28679
|
T['io.flow.internal.v0.models.logistics_capabilities_upserted'],
|
|
@@ -28517,12 +28762,18 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
|
|
|
28517
28762
|
T['io.flow.internal.v0.models.screening_status_change_deleted'],
|
|
28518
28763
|
T['io.flow.internal.v0.models.restrictions_dailyops_upserted'],
|
|
28519
28764
|
T['io.flow.internal.v0.models.restrictions_dailyops_deleted'],
|
|
28765
|
+
T['io.flow.internal.v0.models.restrictions_athena_dailyops_pc_pv_upserted'],
|
|
28766
|
+
T['io.flow.internal.v0.models.restrictions_athena_dailyops_pc_pv_deleted'],
|
|
28767
|
+
T['io.flow.internal.v0.models.restrictions_athena_dailyops_fs_upserted'],
|
|
28768
|
+
T['io.flow.internal.v0.models.restrictions_athena_dailyops_fs_deleted'],
|
|
28520
28769
|
T['io.flow.internal.v0.models.restriction_rule_upserted'],
|
|
28521
28770
|
T['io.flow.internal.v0.models.restriction_rule_deleted'],
|
|
28522
28771
|
T['io.flow.internal.v0.models.restriction_rule_effect_upserted'],
|
|
28523
28772
|
T['io.flow.internal.v0.models.restriction_rule_effect_deleted'],
|
|
28524
28773
|
T['io.flow.internal.v0.models.taxonomy_category_hs6_ref_upserted'],
|
|
28525
28774
|
T['io.flow.internal.v0.models.taxonomy_category_hs6_ref_deleted'],
|
|
28775
|
+
T['io.flow.internal.v0.models.preonboarding_merchant_upserted'],
|
|
28776
|
+
T['io.flow.internal.v0.models.preonboarding_merchant_deleted'],
|
|
28526
28777
|
T['io.flow.internal.v0.models.shopify_hs10_codes_upserted'],
|
|
28527
28778
|
T['io.flow.internal.v0.models.shopify_hs10_codes_deleted'],
|
|
28528
28779
|
T['io.flow.internal.v0.models.shopify_markets_order_upserted'],
|
|
@@ -28600,6 +28851,8 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
|
|
|
28600
28851
|
T['io.flow.internal.v0.models.chenglin_item_deleted'],
|
|
28601
28852
|
T['io.flow.internal.v0.models.bojana_item_upserted'],
|
|
28602
28853
|
T['io.flow.internal.v0.models.bojana_item_deleted'],
|
|
28854
|
+
T['io.flow.internal.v0.models.raveena_item_upserted'],
|
|
28855
|
+
T['io.flow.internal.v0.models.raveena_item_deleted'],
|
|
28603
28856
|
T['io.flow.internal.v0.models.tracking_processing_error_upserted'],
|
|
28604
28857
|
T['io.flow.internal.v0.models.tracking_processing_error_deleted'],
|
|
28605
28858
|
T['io.flow.internal.v0.models.tracking_label_event_upserted_v2'],
|
|
@@ -28870,6 +29123,8 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
|
|
|
28870
29123
|
'channel_order_acceptance_upserted',
|
|
28871
29124
|
'channel_order_acceptance_deleted',
|
|
28872
29125
|
'channel_order_acceptance_failed',
|
|
29126
|
+
'channel_shop_statistics_upserted',
|
|
29127
|
+
'channel_shop_statistics_deleted',
|
|
28873
29128
|
'commercial_invoice_internal_upserted',
|
|
28874
29129
|
'commercial_invoice_internal_deleted',
|
|
28875
29130
|
'internal_channel_rate_deleted',
|
|
@@ -28929,6 +29184,8 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
|
|
|
28929
29184
|
'shipping_cost_deleted',
|
|
28930
29185
|
'mor_cost_upserted',
|
|
28931
29186
|
'mor_cost_deleted',
|
|
29187
|
+
'flat_rate_label_reversal_upserted',
|
|
29188
|
+
'flat_rate_label_reversal_deleted',
|
|
28932
29189
|
'fraud_review_upserted',
|
|
28933
29190
|
'fraud_review_deleted',
|
|
28934
29191
|
'fraud_pending_review_upserted',
|
|
@@ -28985,6 +29242,8 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
|
|
|
28985
29242
|
'order_validation_deleted',
|
|
28986
29243
|
'label_creation_job_upserted',
|
|
28987
29244
|
'label_creation_job_deleted',
|
|
29245
|
+
'adaptive_shipping_order_guarantee_upserted',
|
|
29246
|
+
'adaptive_shipping_order_guarantee_deleted',
|
|
28988
29247
|
'label_tracking_summary_upserted',
|
|
28989
29248
|
'label_tracking_summary_deleted',
|
|
28990
29249
|
'logistics_capabilities_upserted',
|
|
@@ -29073,12 +29332,18 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
|
|
|
29073
29332
|
'screening_status_change_deleted',
|
|
29074
29333
|
'restrictions_dailyops_upserted',
|
|
29075
29334
|
'restrictions_dailyops_deleted',
|
|
29335
|
+
'restrictions_athena_dailyops_pc_pv_upserted',
|
|
29336
|
+
'restrictions_athena_dailyops_pc_pv_deleted',
|
|
29337
|
+
'restrictions_athena_dailyops_fs_upserted',
|
|
29338
|
+
'restrictions_athena_dailyops_fs_deleted',
|
|
29076
29339
|
'restriction_rule_upserted',
|
|
29077
29340
|
'restriction_rule_deleted',
|
|
29078
29341
|
'restriction_rule_effect_upserted',
|
|
29079
29342
|
'restriction_rule_effect_deleted',
|
|
29080
29343
|
'taxonomy_category_hs6_ref_upserted',
|
|
29081
29344
|
'taxonomy_category_hs6_ref_deleted',
|
|
29345
|
+
'preonboarding_merchant_upserted',
|
|
29346
|
+
'preonboarding_merchant_deleted',
|
|
29082
29347
|
'shopify_hs10_codes_upserted',
|
|
29083
29348
|
'shopify_hs10_codes_deleted',
|
|
29084
29349
|
'shopify_markets_order_upserted',
|
|
@@ -29156,6 +29421,8 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
|
|
|
29156
29421
|
'chenglin_item_deleted',
|
|
29157
29422
|
'bojana_item_upserted',
|
|
29158
29423
|
'bojana_item_deleted',
|
|
29424
|
+
'raveena_item_upserted',
|
|
29425
|
+
'raveena_item_deleted',
|
|
29159
29426
|
'tracking_processing_error_upserted',
|
|
29160
29427
|
'tracking_processing_error_deleted',
|
|
29161
29428
|
'tracking_label_event_upserted_v2',
|
|
@@ -29340,6 +29607,7 @@ T['io.flow.internal.v0.enums.task_processor_key'] = PropTypes.oneOf([
|
|
|
29340
29607
|
'rate_levels',
|
|
29341
29608
|
'center_defaults',
|
|
29342
29609
|
'item_dimensions',
|
|
29610
|
+
'center',
|
|
29343
29611
|
]);
|
|
29344
29612
|
|
|
29345
29613
|
T['io.flow.internal.v0.enums.tax_transaction_type'] = PropTypes.oneOf(['adjustment', 'reversal', 'tax', 'refund']);
|
|
@@ -29953,14 +30221,6 @@ T['io.flow.internal.v0.models.phrase_propagated'] = PropTypes.exact({
|
|
|
29953
30221
|
phrase_id: PropTypes.string.isRequired,
|
|
29954
30222
|
});
|
|
29955
30223
|
|
|
29956
|
-
T['io.flow.internal.v0.models.preonboarding_merchant'] = PropTypes.exact({
|
|
29957
|
-
merchant_id: PropTypes.string.isRequired,
|
|
29958
|
-
channel: PropTypes.string.isRequired,
|
|
29959
|
-
catalog_size: PropTypes.number.isRequired,
|
|
29960
|
-
processed_product_count: PropTypes.number.isRequired,
|
|
29961
|
-
last_request: PropTypes.string.isRequired,
|
|
29962
|
-
});
|
|
29963
|
-
|
|
29964
30224
|
T['io.flow.internal.v0.models.prioritized_center_reference'] = PropTypes.exact({
|
|
29965
30225
|
center_key: PropTypes.string.isRequired,
|
|
29966
30226
|
position: PropTypes.number.isRequired,
|
|
@@ -31215,6 +31475,10 @@ T['io.flow.experience.v0.models.order_service_change_request_data'] = PropTypes.
|
|
|
31215
31475
|
filename: PropTypes.string,
|
|
31216
31476
|
});
|
|
31217
31477
|
|
|
31478
|
+
T['io.flow.ratecard.v0.models.ratecard_effective_until_form'] = PropTypes.exact({
|
|
31479
|
+
effective_until: PropTypes.string,
|
|
31480
|
+
});
|
|
31481
|
+
|
|
31218
31482
|
T['io.flow.token.v0.models.channel_token_form'] = PropTypes.exact({
|
|
31219
31483
|
channel_id: PropTypes.string.isRequired,
|
|
31220
31484
|
description: PropTypes.string,
|
|
@@ -31524,6 +31788,10 @@ export const accountUpsertedV2 = T['io.flow.internal.v0.models.account_upserted_
|
|
|
31524
31788
|
export const accountingPendingOrderMetadata = T['io.flow.internal.v0.models.accounting_pending_order_metadata'];
|
|
31525
31789
|
export const accountingReturnMetadata = T['io.flow.internal.v0.models.accounting_return_metadata'];
|
|
31526
31790
|
export const actionQuantity = T['io.flow.internal.v0.models.action_quantity'];
|
|
31791
|
+
export const adaptiveShippingOrderGuarantee = T['io.flow.internal.v0.models.adaptive_shipping_order_guarantee'];
|
|
31792
|
+
export const adaptiveShippingOrderGuaranteeDeleted = T['io.flow.internal.v0.models.adaptive_shipping_order_guarantee_deleted'];
|
|
31793
|
+
export const adaptiveShippingOrderGuaranteeState = T['io.flow.internal.v0.enums.adaptive_shipping_order_guarantee_state'];
|
|
31794
|
+
export const adaptiveShippingOrderGuaranteeUpserted = T['io.flow.internal.v0.models.adaptive_shipping_order_guarantee_upserted'];
|
|
31527
31795
|
export const adaptiveShippingRate = T['io.flow.internal.v0.models.adaptive_shipping_rate'];
|
|
31528
31796
|
export const adaptiveShippingRateDeleted = T['io.flow.internal.v0.models.adaptive_shipping_rate_deleted'];
|
|
31529
31797
|
export const adaptiveShippingRateUpserted = T['io.flow.internal.v0.models.adaptive_shipping_rate_upserted'];
|
|
@@ -31595,6 +31863,7 @@ export const apiCallReferenceId = T['io.flow.internal.v0.enums.api_call_referenc
|
|
|
31595
31863
|
export const applePayAuthorizationPayload = T['io.flow.internal.v0.models.apple_pay_authorization_payload'];
|
|
31596
31864
|
export const applicablePreferentialRate = T['io.flow.internal.v0.enums.applicable_preferential_rate'];
|
|
31597
31865
|
export const applyAtValueForm = T['io.flow.internal.v0.models.apply_at_value_form'];
|
|
31866
|
+
export const athenaDailyopsIntentLevel = T['io.flow.internal.v0.enums.athena_dailyops_intent_level'];
|
|
31598
31867
|
export const attemptStatistics = T['io.flow.internal.v0.models.attempt_statistics'];
|
|
31599
31868
|
export const attributeLabel = T['io.flow.internal.v0.models.attribute_label'];
|
|
31600
31869
|
export const attributeRule = T['io.flow.internal.v0.models.attribute_rule'];
|
|
@@ -31824,6 +32093,9 @@ export const channelRateMetadataRate = T['io.flow.internal.v0.models.channel_rat
|
|
|
31824
32093
|
export const channelService = T['io.flow.internal.v0.enums.channel_service'];
|
|
31825
32094
|
export const channelShop = T['io.flow.internal.v0.models.channel_shop'];
|
|
31826
32095
|
export const channelShopForm = T['io.flow.internal.v0.models.channel_shop_form'];
|
|
32096
|
+
export const channelShopStatistics = T['io.flow.internal.v0.models.channel_shop_statistics'];
|
|
32097
|
+
export const channelShopStatisticsDeleted = T['io.flow.internal.v0.models.channel_shop_statistics_deleted'];
|
|
32098
|
+
export const channelShopStatisticsUpserted = T['io.flow.internal.v0.models.channel_shop_statistics_upserted'];
|
|
31827
32099
|
export const channelTransaction = T['io.flow.internal.v0.models.channel_transaction'];
|
|
31828
32100
|
export const channelTransactionDeleted = T['io.flow.internal.v0.models.channel_transaction_deleted'];
|
|
31829
32101
|
export const channelTransactionRate = T['io.flow.internal.v0.models.channel_transaction_rate'];
|
|
@@ -32151,6 +32423,9 @@ export const fiservMerchant = T['io.flow.internal.v0.models.fiserv_merchant'];
|
|
|
32151
32423
|
export const fiservMerchantModificationForm = T['io.flow.internal.v0.models.fiserv_merchant_modification_form'];
|
|
32152
32424
|
export const fiservMerchantPutForm = T['io.flow.internal.v0.models.fiserv_merchant_put_form'];
|
|
32153
32425
|
export const flatRate = T['io.flow.internal.v0.models.flat_rate'];
|
|
32426
|
+
export const flatRateLabelReversal = T['io.flow.internal.v0.models.flat_rate_label_reversal'];
|
|
32427
|
+
export const flatRateLabelReversalDeleted = T['io.flow.internal.v0.models.flat_rate_label_reversal_deleted'];
|
|
32428
|
+
export const flatRateLabelReversalUpserted = T['io.flow.internal.v0.models.flat_rate_label_reversal_upserted'];
|
|
32154
32429
|
export const flatRateLabelTransaction = T['io.flow.internal.v0.models.flat_rate_label_transaction'];
|
|
32155
32430
|
export const flatRateLabelTransactionType = T['io.flow.internal.v0.enums.flat_rate_label_transaction_type'];
|
|
32156
32431
|
export const flexeWebhook = T['io.flow.internal.v0.models.flexe_webhook'];
|
|
@@ -32359,8 +32634,6 @@ export const labProjectSettingsFormAcceptance = T['io.flow.internal.v0.models.la
|
|
|
32359
32634
|
export const labelAliases = T['io.flow.internal.v0.models.label_aliases'];
|
|
32360
32635
|
export const labelAssociation = T['io.flow.internal.v0.models.label_association'];
|
|
32361
32636
|
export const labelBillingStrategy = T['io.flow.internal.v0.enums.label_billing_strategy'];
|
|
32362
|
-
export const labelCancellationError = T['io.flow.internal.v0.models.label_cancellation_error'];
|
|
32363
|
-
export const labelCancellationErrorCode = T['io.flow.internal.v0.enums.label_cancellation_error_code'];
|
|
32364
32637
|
export const labelCreationJob = T['io.flow.internal.v0.models.label_creation_job'];
|
|
32365
32638
|
export const labelCreationJobDeleted = T['io.flow.internal.v0.models.label_creation_job_deleted'];
|
|
32366
32639
|
export const labelCreationJobSummary = T['io.flow.internal.v0.models.label_creation_job_summary'];
|
|
@@ -32427,6 +32700,9 @@ export const loyaltyProgram = T['io.flow.internal.v0.models.loyalty_program'];
|
|
|
32427
32700
|
export const loyaltyProgramMessage = T['io.flow.internal.v0.models.loyalty_program_message'];
|
|
32428
32701
|
export const loyaltyProgramReward = T['io.flow.internal.v0.models.loyalty_program_reward'];
|
|
32429
32702
|
export const loyaltyProgramRewards = T['io.flow.internal.v0.models.loyalty_program_rewards'];
|
|
32703
|
+
export const maheshItem = T['io.flow.internal.v0.models.mahesh_item'];
|
|
32704
|
+
export const maheshItemForm = T['io.flow.internal.v0.models.mahesh_item_form'];
|
|
32705
|
+
export const maheshItemType = T['io.flow.internal.v0.enums.mahesh_item_type'];
|
|
32430
32706
|
export const mailClass = T['io.flow.internal.v0.enums.mail_class'];
|
|
32431
32707
|
export const mainTransaction = T['io.flow.internal.v0.models.main_transaction'];
|
|
32432
32708
|
export const mainTransactionDeleted = T['io.flow.internal.v0.models.main_transaction_deleted'];
|
|
@@ -32732,6 +33008,8 @@ export const preonboardingClassificationRequest = T['io.flow.internal.v0.models.
|
|
|
32732
33008
|
export const preonboardingClassificationResult = T['io.flow.internal.v0.models.preonboarding_classification_result'];
|
|
32733
33009
|
export const preonboardingClassificationType = T['io.flow.internal.v0.enums.preonboarding_classification_type'];
|
|
32734
33010
|
export const preonboardingMerchant = T['io.flow.internal.v0.models.preonboarding_merchant'];
|
|
33011
|
+
export const preonboardingMerchantDeleted = T['io.flow.internal.v0.models.preonboarding_merchant_deleted'];
|
|
33012
|
+
export const preonboardingMerchantUpserted = T['io.flow.internal.v0.models.preonboarding_merchant_upserted'];
|
|
32735
33013
|
export const preonboardingRequestStatus = T['io.flow.internal.v0.enums.preonboarding_request_status'];
|
|
32736
33014
|
export const preonboardingSellabilityResult = T['io.flow.internal.v0.models.preonboarding_sellability_result'];
|
|
32737
33015
|
export const preonboardingSellabilityResultDeleted = T['io.flow.internal.v0.models.preonboarding_sellability_result_deleted'];
|
|
@@ -32851,8 +33129,10 @@ export const ratecardServiceFeesOverrideForm = T['io.flow.internal.v0.models.rat
|
|
|
32851
33129
|
export const ratesChanged = T['io.flow.internal.v0.models.rates_changed'];
|
|
32852
33130
|
export const ratesNamesSummary = T['io.flow.internal.v0.models.rates_names_summary'];
|
|
32853
33131
|
export const raveenaItem = T['io.flow.internal.v0.models.raveena_item'];
|
|
33132
|
+
export const raveenaItemDeleted = T['io.flow.internal.v0.models.raveena_item_deleted'];
|
|
32854
33133
|
export const raveenaItemForm = T['io.flow.internal.v0.models.raveena_item_form'];
|
|
32855
33134
|
export const raveenaItemType = T['io.flow.internal.v0.enums.raveena_item_type'];
|
|
33135
|
+
export const raveenaItemUpserted = T['io.flow.internal.v0.models.raveena_item_upserted'];
|
|
32856
33136
|
export const recordReference = T['io.flow.internal.v0.models.record_reference'];
|
|
32857
33137
|
export const redirect = T['io.flow.internal.v0.models.redirect'];
|
|
32858
33138
|
export const redirectActionCompleted = T['io.flow.internal.v0.models.redirect_action_completed'];
|
|
@@ -32976,6 +33256,12 @@ export const restrictionRuleUpserted = T['io.flow.internal.v0.models.restriction
|
|
|
32976
33256
|
export const restrictionStateReviewStatus = T['io.flow.internal.v0.enums.restriction_state_review_status'];
|
|
32977
33257
|
export const restrictionStatus = T['io.flow.internal.v0.enums.restriction_status'];
|
|
32978
33258
|
export const restrictionSummaryCounts = T['io.flow.internal.v0.models.restriction_summary_counts'];
|
|
33259
|
+
export const restrictionsAthenaDailyopsFs = T['io.flow.internal.v0.models.restrictions_athena_dailyops_fs'];
|
|
33260
|
+
export const restrictionsAthenaDailyopsFsDeleted = T['io.flow.internal.v0.models.restrictions_athena_dailyops_fs_deleted'];
|
|
33261
|
+
export const restrictionsAthenaDailyopsFsUpserted = T['io.flow.internal.v0.models.restrictions_athena_dailyops_fs_upserted'];
|
|
33262
|
+
export const restrictionsAthenaDailyopsPcPv = T['io.flow.internal.v0.models.restrictions_athena_dailyops_pc_pv'];
|
|
33263
|
+
export const restrictionsAthenaDailyopsPcPvDeleted = T['io.flow.internal.v0.models.restrictions_athena_dailyops_pc_pv_deleted'];
|
|
33264
|
+
export const restrictionsAthenaDailyopsPcPvUpserted = T['io.flow.internal.v0.models.restrictions_athena_dailyops_pc_pv_upserted'];
|
|
32979
33265
|
export const restrictionsDailyops = T['io.flow.internal.v0.models.restrictions_dailyops'];
|
|
32980
33266
|
export const restrictionsDailyopsDeleted = T['io.flow.internal.v0.models.restrictions_dailyops_deleted'];
|
|
32981
33267
|
export const restrictionsDailyopsUpserted = T['io.flow.internal.v0.models.restrictions_dailyops_upserted'];
|