@flowio/api-internal-prop-types 9.24.135 → 9.24.137
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 +421 -19
- package/lib/api-internal.js +1 -1
- package/package.json +1 -1
- package/src/api-internal.d.ts +421 -19
- package/src/api-internal.js +507 -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,
|
|
@@ -1280,6 +1278,22 @@ T['io.flow.experience.v0.models.address_configuration_province'] = PropTypes.exa
|
|
|
1280
1278
|
),
|
|
1281
1279
|
});
|
|
1282
1280
|
|
|
1281
|
+
T['io.flow.shopify.markets.internal.event.v0.models.shopify_merchant_markets_deleted'] = PropTypes.exact({
|
|
1282
|
+
discriminator: PropTypes.oneOf(['shopify_merchant_markets_deleted']).isRequired,
|
|
1283
|
+
event_id: PropTypes.string.isRequired,
|
|
1284
|
+
timestamp: PropTypes.string.isRequired,
|
|
1285
|
+
organization: PropTypes.string.isRequired,
|
|
1286
|
+
id: PropTypes.string.isRequired,
|
|
1287
|
+
});
|
|
1288
|
+
|
|
1289
|
+
T['io.flow.shopify.markets.internal.event.v0.models.shopify_adaptive_pricing_coefficients_deleted'] = PropTypes.exact({
|
|
1290
|
+
discriminator: PropTypes.oneOf(['shopify_adaptive_pricing_coefficients_deleted']).isRequired,
|
|
1291
|
+
event_id: PropTypes.string.isRequired,
|
|
1292
|
+
timestamp: PropTypes.string.isRequired,
|
|
1293
|
+
organization: PropTypes.string.isRequired,
|
|
1294
|
+
id: PropTypes.string.isRequired,
|
|
1295
|
+
});
|
|
1296
|
+
|
|
1283
1297
|
T['io.flow.shopify.markets.internal.event.v0.models.shopify_test_order_deleted'] = PropTypes.exact({
|
|
1284
1298
|
discriminator: PropTypes.oneOf(['shopify_test_order_deleted']).isRequired,
|
|
1285
1299
|
event_id: PropTypes.string.isRequired,
|
|
@@ -2842,11 +2856,6 @@ T['io.flow.shopify.external.v0.models.graphql_metafield'] = PropTypes.exact({
|
|
|
2842
2856
|
type: PropTypes.string,
|
|
2843
2857
|
});
|
|
2844
2858
|
|
|
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
2859
|
T['io.flow.shopify.external.v0.models.graphql_option'] = PropTypes.exact({
|
|
2851
2860
|
id: PropTypes.string.isRequired,
|
|
2852
2861
|
values: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
@@ -2905,6 +2914,15 @@ T['io.flow.shopify.external.v0.models.graphql_product_variant'] = PropTypes.exac
|
|
|
2905
2914
|
inventoryItem: T['io.flow.shopify.external.v0.models.graphql_inventory_item'].isRequired,
|
|
2906
2915
|
});
|
|
2907
2916
|
|
|
2917
|
+
T['io.flow.shopify.external.v0.models.graphql_taxonomy_category'] = PropTypes.exact({
|
|
2918
|
+
name: PropTypes.string.isRequired,
|
|
2919
|
+
fullName: PropTypes.string.isRequired,
|
|
2920
|
+
});
|
|
2921
|
+
|
|
2922
|
+
T['io.flow.shopify.external.v0.models.graphql_inferred_product_category'] = PropTypes.exact({
|
|
2923
|
+
category: T['io.flow.shopify.external.v0.models.graphql_taxonomy_category'],
|
|
2924
|
+
});
|
|
2925
|
+
|
|
2908
2926
|
T['io.flow.shopify.external.v0.models.graphql_product'] = PropTypes.exact({
|
|
2909
2927
|
id: PropTypes.string.isRequired,
|
|
2910
2928
|
legacyResourceId: PropTypes.string.isRequired,
|
|
@@ -2924,6 +2942,7 @@ T['io.flow.shopify.external.v0.models.graphql_product'] = PropTypes.exact({
|
|
|
2924
2942
|
updatedAt: PropTypes.string.isRequired,
|
|
2925
2943
|
hasVariantsThatRequiresComponents: PropTypes.bool,
|
|
2926
2944
|
category: T['io.flow.shopify.external.v0.models.graphql_taxonomy_category'],
|
|
2945
|
+
inferredProductCategory: T['io.flow.shopify.external.v0.models.graphql_inferred_product_category'],
|
|
2927
2946
|
metafields: PropTypes.arrayOf(T['io.flow.shopify.external.v0.models.graphql_metafield']),
|
|
2928
2947
|
});
|
|
2929
2948
|
|
|
@@ -3528,6 +3547,28 @@ T['io.flow.shopify.markets.internal.event.v0.models.shopify_product_bundle_upser
|
|
|
3528
3547
|
shopify_product_bundle: T['io.flow.shopify.markets.internal.v0.models.shopify_product_bundle'].isRequired,
|
|
3529
3548
|
});
|
|
3530
3549
|
|
|
3550
|
+
T['io.flow.shopify.markets.internal.v0.models.shopify_merchant_market_country'] = PropTypes.exact({
|
|
3551
|
+
code: PropTypes.string.isRequired,
|
|
3552
|
+
actively_managing: PropTypes.bool.isRequired,
|
|
3553
|
+
});
|
|
3554
|
+
|
|
3555
|
+
T['io.flow.shopify.markets.internal.v0.models.shopify_merchant_markets'] = PropTypes.exact({
|
|
3556
|
+
id: PropTypes.string.isRequired,
|
|
3557
|
+
organization_id: PropTypes.string.isRequired,
|
|
3558
|
+
|
|
3559
|
+
countries: PropTypes.arrayOf(
|
|
3560
|
+
T['io.flow.shopify.markets.internal.v0.models.shopify_merchant_market_country'],
|
|
3561
|
+
).isRequired,
|
|
3562
|
+
});
|
|
3563
|
+
|
|
3564
|
+
T['io.flow.shopify.markets.internal.event.v0.models.shopify_merchant_markets_upserted'] = PropTypes.exact({
|
|
3565
|
+
discriminator: PropTypes.oneOf(['shopify_merchant_markets_upserted']).isRequired,
|
|
3566
|
+
event_id: PropTypes.string.isRequired,
|
|
3567
|
+
timestamp: PropTypes.string.isRequired,
|
|
3568
|
+
organization: PropTypes.string.isRequired,
|
|
3569
|
+
shopify_merchant_markets: T['io.flow.shopify.markets.internal.v0.models.shopify_merchant_markets'].isRequired,
|
|
3570
|
+
});
|
|
3571
|
+
|
|
3531
3572
|
T['io.flow.shopify.markets.internal.v0.models.shopify_markets_incorporation_country'] = PropTypes.exact({
|
|
3532
3573
|
country: PropTypes.string.isRequired,
|
|
3533
3574
|
state: PropTypes.string,
|
|
@@ -3601,6 +3642,7 @@ T['io.flow.channel.internal.v0.enums.channel_order_acceptance_rejection_reason']
|
|
|
3601
3642
|
'unsupported_order_edit',
|
|
3602
3643
|
'order_allocation_duties_mismatch',
|
|
3603
3644
|
'order_missing',
|
|
3645
|
+
'order_cancelled',
|
|
3604
3646
|
'organization_deactivated',
|
|
3605
3647
|
]);
|
|
3606
3648
|
|
|
@@ -8019,6 +8061,8 @@ T['io.flow.return.v0.models.return_source_flow'] = PropTypes.exact({
|
|
|
8019
8061
|
attributes: PropTypes.objectOf(PropTypes.string),
|
|
8020
8062
|
});
|
|
8021
8063
|
|
|
8064
|
+
T['io.flow.label.v0.enums.shipping_cost_guarantee'] = PropTypes.oneOf(['guaranteed', 'non_guaranteed']);
|
|
8065
|
+
|
|
8022
8066
|
T['io.flow.label.v0.models.label_order_summary'] = PropTypes.exact({
|
|
8023
8067
|
id: PropTypes.string.isRequired,
|
|
8024
8068
|
number: PropTypes.string.isRequired,
|
|
@@ -8596,6 +8640,13 @@ T['io.flow.internal.v0.models.tracking_processing_error_deleted'] = PropTypes.ex
|
|
|
8596
8640
|
id: PropTypes.string.isRequired,
|
|
8597
8641
|
});
|
|
8598
8642
|
|
|
8643
|
+
T['io.flow.internal.v0.models.raveena_item_deleted'] = PropTypes.exact({
|
|
8644
|
+
discriminator: PropTypes.oneOf(['raveena_item_deleted']).isRequired,
|
|
8645
|
+
event_id: PropTypes.string.isRequired,
|
|
8646
|
+
timestamp: PropTypes.string.isRequired,
|
|
8647
|
+
id: PropTypes.string.isRequired,
|
|
8648
|
+
});
|
|
8649
|
+
|
|
8599
8650
|
T['io.flow.internal.v0.models.bojana_item_deleted'] = PropTypes.exact({
|
|
8600
8651
|
discriminator: PropTypes.oneOf(['bojana_item_deleted']).isRequired,
|
|
8601
8652
|
event_id: PropTypes.string.isRequired,
|
|
@@ -8716,6 +8767,22 @@ T['io.flow.internal.v0.models.shopify_product_create_deleted'] = PropTypes.exact
|
|
|
8716
8767
|
id: PropTypes.string.isRequired,
|
|
8717
8768
|
});
|
|
8718
8769
|
|
|
8770
|
+
T['io.flow.internal.v0.models.shopify_merchant_markets_deleted'] = PropTypes.exact({
|
|
8771
|
+
discriminator: PropTypes.oneOf(['shopify_merchant_markets_deleted']).isRequired,
|
|
8772
|
+
event_id: PropTypes.string.isRequired,
|
|
8773
|
+
timestamp: PropTypes.string.isRequired,
|
|
8774
|
+
organization: PropTypes.string.isRequired,
|
|
8775
|
+
id: PropTypes.string.isRequired,
|
|
8776
|
+
});
|
|
8777
|
+
|
|
8778
|
+
T['io.flow.internal.v0.models.shopify_adaptive_pricing_coefficients_deleted'] = PropTypes.exact({
|
|
8779
|
+
discriminator: PropTypes.oneOf(['shopify_adaptive_pricing_coefficients_deleted']).isRequired,
|
|
8780
|
+
event_id: PropTypes.string.isRequired,
|
|
8781
|
+
timestamp: PropTypes.string.isRequired,
|
|
8782
|
+
organization: PropTypes.string.isRequired,
|
|
8783
|
+
id: PropTypes.string.isRequired,
|
|
8784
|
+
});
|
|
8785
|
+
|
|
8719
8786
|
T['io.flow.internal.v0.models.shopify_test_order_deleted'] = PropTypes.exact({
|
|
8720
8787
|
discriminator: PropTypes.oneOf(['shopify_test_order_deleted']).isRequired,
|
|
8721
8788
|
event_id: PropTypes.string.isRequired,
|
|
@@ -8833,6 +8900,13 @@ T['io.flow.internal.v0.models.shopify_hs10_codes_deleted'] = PropTypes.exact({
|
|
|
8833
8900
|
id: PropTypes.string.isRequired,
|
|
8834
8901
|
});
|
|
8835
8902
|
|
|
8903
|
+
T['io.flow.internal.v0.models.preonboarding_merchant_deleted'] = PropTypes.exact({
|
|
8904
|
+
discriminator: PropTypes.oneOf(['preonboarding_merchant_deleted']).isRequired,
|
|
8905
|
+
event_id: PropTypes.string.isRequired,
|
|
8906
|
+
timestamp: PropTypes.string.isRequired,
|
|
8907
|
+
id: PropTypes.string.isRequired,
|
|
8908
|
+
});
|
|
8909
|
+
|
|
8836
8910
|
T['io.flow.internal.v0.models.taxonomy_category_hs6_ref_deleted'] = PropTypes.exact({
|
|
8837
8911
|
discriminator: PropTypes.oneOf(['taxonomy_category_hs6_ref_deleted']).isRequired,
|
|
8838
8912
|
event_id: PropTypes.string.isRequired,
|
|
@@ -8854,6 +8928,20 @@ T['io.flow.internal.v0.models.restriction_rule_deleted'] = PropTypes.exact({
|
|
|
8854
8928
|
id: PropTypes.string.isRequired,
|
|
8855
8929
|
});
|
|
8856
8930
|
|
|
8931
|
+
T['io.flow.internal.v0.models.restrictions_athena_dailyops_fs_deleted'] = PropTypes.exact({
|
|
8932
|
+
discriminator: PropTypes.oneOf(['restrictions_athena_dailyops_fs_deleted']).isRequired,
|
|
8933
|
+
event_id: PropTypes.string.isRequired,
|
|
8934
|
+
timestamp: PropTypes.string.isRequired,
|
|
8935
|
+
id: PropTypes.string.isRequired,
|
|
8936
|
+
});
|
|
8937
|
+
|
|
8938
|
+
T['io.flow.internal.v0.models.restrictions_athena_dailyops_pc_pv_deleted'] = PropTypes.exact({
|
|
8939
|
+
discriminator: PropTypes.oneOf(['restrictions_athena_dailyops_pc_pv_deleted']).isRequired,
|
|
8940
|
+
event_id: PropTypes.string.isRequired,
|
|
8941
|
+
timestamp: PropTypes.string.isRequired,
|
|
8942
|
+
id: PropTypes.string.isRequired,
|
|
8943
|
+
});
|
|
8944
|
+
|
|
8857
8945
|
T['io.flow.internal.v0.models.restrictions_dailyops_deleted'] = PropTypes.exact({
|
|
8858
8946
|
discriminator: PropTypes.oneOf(['restrictions_dailyops_deleted']).isRequired,
|
|
8859
8947
|
event_id: PropTypes.string.isRequired,
|
|
@@ -9032,6 +9120,14 @@ T['io.flow.internal.v0.models.label_tracking_summary_deleted'] = PropTypes.exact
|
|
|
9032
9120
|
id: PropTypes.string.isRequired,
|
|
9033
9121
|
});
|
|
9034
9122
|
|
|
9123
|
+
T['io.flow.internal.v0.models.adaptive_shipping_order_guarantee_deleted'] = PropTypes.exact({
|
|
9124
|
+
discriminator: PropTypes.oneOf(['adaptive_shipping_order_guarantee_deleted']).isRequired,
|
|
9125
|
+
event_id: PropTypes.string.isRequired,
|
|
9126
|
+
timestamp: PropTypes.string.isRequired,
|
|
9127
|
+
organization: PropTypes.string.isRequired,
|
|
9128
|
+
id: PropTypes.string.isRequired,
|
|
9129
|
+
});
|
|
9130
|
+
|
|
9035
9131
|
T['io.flow.internal.v0.models.label_creation_job_deleted'] = PropTypes.exact({
|
|
9036
9132
|
discriminator: PropTypes.oneOf(['label_creation_job_deleted']).isRequired,
|
|
9037
9133
|
event_id: PropTypes.string.isRequired,
|
|
@@ -9238,6 +9334,14 @@ T['io.flow.internal.v0.models.fraud_review_deleted'] = PropTypes.exact({
|
|
|
9238
9334
|
id: PropTypes.string.isRequired,
|
|
9239
9335
|
});
|
|
9240
9336
|
|
|
9337
|
+
T['io.flow.internal.v0.models.flat_rate_label_reversal_deleted'] = PropTypes.exact({
|
|
9338
|
+
discriminator: PropTypes.oneOf(['flat_rate_label_reversal_deleted']).isRequired,
|
|
9339
|
+
event_id: PropTypes.string.isRequired,
|
|
9340
|
+
timestamp: PropTypes.string.isRequired,
|
|
9341
|
+
organization: PropTypes.string.isRequired,
|
|
9342
|
+
id: PropTypes.string.isRequired,
|
|
9343
|
+
});
|
|
9344
|
+
|
|
9241
9345
|
T['io.flow.internal.v0.models.mor_cost_deleted'] = PropTypes.exact({
|
|
9242
9346
|
discriminator: PropTypes.oneOf(['mor_cost_deleted']).isRequired,
|
|
9243
9347
|
event_id: PropTypes.string.isRequired,
|
|
@@ -9489,6 +9593,14 @@ T['io.flow.internal.v0.models.commercial_invoice_internal_deleted'] = PropTypes.
|
|
|
9489
9593
|
id: PropTypes.string.isRequired,
|
|
9490
9594
|
});
|
|
9491
9595
|
|
|
9596
|
+
T['io.flow.internal.v0.models.channel_shop_statistics_deleted'] = PropTypes.exact({
|
|
9597
|
+
discriminator: PropTypes.oneOf(['channel_shop_statistics_deleted']).isRequired,
|
|
9598
|
+
event_id: PropTypes.string.isRequired,
|
|
9599
|
+
timestamp: PropTypes.string.isRequired,
|
|
9600
|
+
organization: PropTypes.string.isRequired,
|
|
9601
|
+
id: PropTypes.string.isRequired,
|
|
9602
|
+
});
|
|
9603
|
+
|
|
9492
9604
|
T['io.flow.internal.v0.models.catalog_settings_deleted'] = PropTypes.exact({
|
|
9493
9605
|
discriminator: PropTypes.oneOf(['catalog_settings_deleted']).isRequired,
|
|
9494
9606
|
event_id: PropTypes.string.isRequired,
|
|
@@ -10877,6 +10989,25 @@ T['io.flow.internal.v0.models.stripe_connect_report_record_upserted'] = PropType
|
|
|
10877
10989
|
record: T['io.flow.internal.v0.models.stripe_connect_report_record'].isRequired,
|
|
10878
10990
|
});
|
|
10879
10991
|
|
|
10992
|
+
T['io.flow.internal.v0.models.shopify_merchant_market_country'] = PropTypes.exact({
|
|
10993
|
+
code: PropTypes.string.isRequired,
|
|
10994
|
+
actively_managing: PropTypes.bool.isRequired,
|
|
10995
|
+
});
|
|
10996
|
+
|
|
10997
|
+
T['io.flow.internal.v0.models.shopify_merchant_markets'] = PropTypes.exact({
|
|
10998
|
+
id: PropTypes.string.isRequired,
|
|
10999
|
+
organization_id: PropTypes.string.isRequired,
|
|
11000
|
+
countries: PropTypes.arrayOf(T['io.flow.internal.v0.models.shopify_merchant_market_country']).isRequired,
|
|
11001
|
+
});
|
|
11002
|
+
|
|
11003
|
+
T['io.flow.internal.v0.models.shopify_merchant_markets_upserted'] = PropTypes.exact({
|
|
11004
|
+
discriminator: PropTypes.oneOf(['shopify_merchant_markets_upserted']).isRequired,
|
|
11005
|
+
event_id: PropTypes.string.isRequired,
|
|
11006
|
+
timestamp: PropTypes.string.isRequired,
|
|
11007
|
+
organization: PropTypes.string.isRequired,
|
|
11008
|
+
shopify_merchant_markets: T['io.flow.internal.v0.models.shopify_merchant_markets'].isRequired,
|
|
11009
|
+
});
|
|
11010
|
+
|
|
10880
11011
|
T['io.flow.internal.v0.enums.shopify_weight_unit'] = PropTypes.oneOf(['g', 'kg', 'lb', 'oz']);
|
|
10881
11012
|
T['io.flow.internal.v0.enums.shopify_dimension_unit'] = PropTypes.oneOf(['cm', 'ft', 'in', 'm', 'mm']);
|
|
10882
11013
|
|
|
@@ -10947,6 +11078,7 @@ T['io.flow.shopify.markets.v0.enums.shopify_webhook_topic'] = PropTypes.oneOf([
|
|
|
10947
11078
|
'themes/update',
|
|
10948
11079
|
'bulk_operations/finish',
|
|
10949
11080
|
'shop/update',
|
|
11081
|
+
'managed_markets_adaptive_pricing/updated',
|
|
10950
11082
|
]);
|
|
10951
11083
|
|
|
10952
11084
|
T['io.flow.shopify.markets.v0.models.shopify_webhook_request'] = PropTypes.exact({
|
|
@@ -11306,6 +11438,51 @@ T['io.flow.internal.v0.models.shopify_callback_error'] = PropTypes.exact({
|
|
|
11306
11438
|
errors: PropTypes.arrayOf(T['io.flow.internal.v0.models.shopify_callback_error_item']).isRequired,
|
|
11307
11439
|
});
|
|
11308
11440
|
|
|
11441
|
+
T['io.flow.shopify.markets.v0.models.shopify_adaptive_pricing_destination_coefficients'] = PropTypes.exact({
|
|
11442
|
+
country: PropTypes.string.isRequired,
|
|
11443
|
+
updated_at: PropTypes.string.isRequired,
|
|
11444
|
+
tax_and_duty_coefficient: PropTypes.string.isRequired,
|
|
11445
|
+
fees_coefficient: PropTypes.string.isRequired,
|
|
11446
|
+
merchant_subsidy_amount: PropTypes.string.isRequired,
|
|
11447
|
+
merchant_subsidy_currency: PropTypes.string.isRequired,
|
|
11448
|
+
adaptive_pricing_enabled: PropTypes.bool.isRequired,
|
|
11449
|
+
adaptive_shipping_enabled: PropTypes.bool.isRequired,
|
|
11450
|
+
});
|
|
11451
|
+
|
|
11452
|
+
T['io.flow.shopify.markets.internal.v0.models.shopify_adaptive_pricing_coefficients'] = PropTypes.exact({
|
|
11453
|
+
id: PropTypes.string.isRequired,
|
|
11454
|
+
organization_id: PropTypes.string.isRequired,
|
|
11455
|
+
|
|
11456
|
+
destination_coefficients: PropTypes.arrayOf(
|
|
11457
|
+
T['io.flow.shopify.markets.v0.models.shopify_adaptive_pricing_destination_coefficients'],
|
|
11458
|
+
).isRequired,
|
|
11459
|
+
});
|
|
11460
|
+
|
|
11461
|
+
T['io.flow.shopify.markets.internal.event.v0.models.shopify_adaptive_pricing_coefficients_upserted'] = PropTypes.exact({
|
|
11462
|
+
discriminator: PropTypes.oneOf(['shopify_adaptive_pricing_coefficients_upserted']).isRequired,
|
|
11463
|
+
event_id: PropTypes.string.isRequired,
|
|
11464
|
+
timestamp: PropTypes.string.isRequired,
|
|
11465
|
+
organization: PropTypes.string.isRequired,
|
|
11466
|
+
shopify_adaptive_pricing_coefficients: T['io.flow.shopify.markets.internal.v0.models.shopify_adaptive_pricing_coefficients'].isRequired,
|
|
11467
|
+
});
|
|
11468
|
+
|
|
11469
|
+
T['io.flow.internal.v0.models.shopify_adaptive_pricing_coefficients'] = PropTypes.exact({
|
|
11470
|
+
id: PropTypes.string.isRequired,
|
|
11471
|
+
organization_id: PropTypes.string.isRequired,
|
|
11472
|
+
|
|
11473
|
+
destination_coefficients: PropTypes.arrayOf(
|
|
11474
|
+
T['io.flow.shopify.markets.v0.models.shopify_adaptive_pricing_destination_coefficients'],
|
|
11475
|
+
).isRequired,
|
|
11476
|
+
});
|
|
11477
|
+
|
|
11478
|
+
T['io.flow.internal.v0.models.shopify_adaptive_pricing_coefficients_upserted'] = PropTypes.exact({
|
|
11479
|
+
discriminator: PropTypes.oneOf(['shopify_adaptive_pricing_coefficients_upserted']).isRequired,
|
|
11480
|
+
event_id: PropTypes.string.isRequired,
|
|
11481
|
+
timestamp: PropTypes.string.isRequired,
|
|
11482
|
+
organization: PropTypes.string.isRequired,
|
|
11483
|
+
shopify_adaptive_pricing_coefficients: T['io.flow.internal.v0.models.shopify_adaptive_pricing_coefficients'].isRequired,
|
|
11484
|
+
});
|
|
11485
|
+
|
|
11309
11486
|
T['io.flow.ratecard.v0.models.ratecard_carrier_summary'] = PropTypes.exact({
|
|
11310
11487
|
id: PropTypes.string.isRequired,
|
|
11311
11488
|
name: PropTypes.string.isRequired,
|
|
@@ -11492,6 +11669,7 @@ T['io.flow.internal.v0.models.report_bank_account_cleartext'] = PropTypes.exact(
|
|
|
11492
11669
|
type: PropTypes.string.isRequired,
|
|
11493
11670
|
routing_number: PropTypes.string.isRequired,
|
|
11494
11671
|
account_number: PropTypes.string.isRequired,
|
|
11672
|
+
bank_name: PropTypes.string,
|
|
11495
11673
|
});
|
|
11496
11674
|
|
|
11497
11675
|
T['io.flow.internal.v0.models.price_inclusivity'] = PropTypes.exact({
|
|
@@ -11620,6 +11798,63 @@ T['io.flow.internal.v0.models.restrictions_dailyops_upserted'] = PropTypes.exact
|
|
|
11620
11798
|
restrictions_dailyops: T['io.flow.internal.v0.models.restrictions_dailyops'].isRequired,
|
|
11621
11799
|
});
|
|
11622
11800
|
|
|
11801
|
+
T['io.flow.internal.v0.enums.athena_dailyops_intent_level'] = PropTypes.oneOf(['low_intent', 'high_intent']);
|
|
11802
|
+
|
|
11803
|
+
T['io.flow.internal.v0.models.restrictions_athena_dailyops_pc_pv'] = PropTypes.exact({
|
|
11804
|
+
id: PropTypes.string.isRequired,
|
|
11805
|
+
report_date: PropTypes.string.isRequired,
|
|
11806
|
+
intent_level: T['io.flow.internal.v0.enums.athena_dailyops_intent_level'].isRequired,
|
|
11807
|
+
num_orgs_setup_complete_with_pvs: PropTypes.number.isRequired,
|
|
11808
|
+
num_products_setup_complete_with_pvs: PropTypes.number.isRequired,
|
|
11809
|
+
num_orgs_transacting_with_pvs: PropTypes.number.isRequired,
|
|
11810
|
+
num_products_transacting_with_pvs: PropTypes.number.isRequired,
|
|
11811
|
+
num_orgs_setup_complete_with_pcs: PropTypes.number.isRequired,
|
|
11812
|
+
num_products_setup_complete_with_pcs: PropTypes.number.isRequired,
|
|
11813
|
+
num_orgs_transacting_with_pcs: PropTypes.number.isRequired,
|
|
11814
|
+
num_products_transacting_with_pcs: PropTypes.number.isRequired,
|
|
11815
|
+
oldest_pv_product_date_setup_complete: PropTypes.string,
|
|
11816
|
+
oldest_pv_product_date_transacting: PropTypes.string,
|
|
11817
|
+
oldest_pc_product_date_setup_complete: PropTypes.string,
|
|
11818
|
+
oldest_pc_product_date_transacting: PropTypes.string,
|
|
11819
|
+
oldest_insufficient_details_pv_active: PropTypes.string,
|
|
11820
|
+
oldest_insufficient_details_pv_transacting: PropTypes.string,
|
|
11821
|
+
num_pv_inflow_net_new: PropTypes.number.isRequired,
|
|
11822
|
+
num_pv_outflow_human_decisions: PropTypes.number.isRequired,
|
|
11823
|
+
num_pv_outflow_auto_review_decisions: PropTypes.number.isRequired,
|
|
11824
|
+
num_pv_outflow_side_effect_decisions: PropTypes.number.isRequired,
|
|
11825
|
+
num_pending_decisions_transacting: PropTypes.number.isRequired,
|
|
11826
|
+
pv_decisions_setup_complete: PropTypes.number.isRequired,
|
|
11827
|
+
});
|
|
11828
|
+
|
|
11829
|
+
T['io.flow.internal.v0.models.restrictions_athena_dailyops_pc_pv_upserted'] = PropTypes.exact({
|
|
11830
|
+
discriminator: PropTypes.oneOf(['restrictions_athena_dailyops_pc_pv_upserted']).isRequired,
|
|
11831
|
+
event_id: PropTypes.string.isRequired,
|
|
11832
|
+
timestamp: PropTypes.string.isRequired,
|
|
11833
|
+
restrictions_athena_dailyops_pc_pv: T['io.flow.internal.v0.models.restrictions_athena_dailyops_pc_pv'].isRequired,
|
|
11834
|
+
});
|
|
11835
|
+
|
|
11836
|
+
T['io.flow.internal.v0.models.restrictions_athena_dailyops_fs'] = PropTypes.exact({
|
|
11837
|
+
id: PropTypes.string.isRequired,
|
|
11838
|
+
report_date: PropTypes.string.isRequired,
|
|
11839
|
+
num_products_with_fs_result: PropTypes.number,
|
|
11840
|
+
num_products_sellable_somewhere_by_fs: PropTypes.number,
|
|
11841
|
+
num_products_restricted_somewhere_by_fs: PropTypes.number,
|
|
11842
|
+
num_products_with_false_allows_by_fs: PropTypes.number,
|
|
11843
|
+
num_products_with_false_restricts_by_fs: PropTypes.number,
|
|
11844
|
+
daily_num_products_with_fs_result: PropTypes.number,
|
|
11845
|
+
daily_num_products_sellable_somewhere_by_fs: PropTypes.number,
|
|
11846
|
+
daily_num_products_restricted_somewhere_by_fs: PropTypes.number,
|
|
11847
|
+
daily_num_products_with_false_allows_by_fs: PropTypes.number,
|
|
11848
|
+
daily_num_products_with_false_restricts_by_fs: PropTypes.number,
|
|
11849
|
+
});
|
|
11850
|
+
|
|
11851
|
+
T['io.flow.internal.v0.models.restrictions_athena_dailyops_fs_upserted'] = PropTypes.exact({
|
|
11852
|
+
discriminator: PropTypes.oneOf(['restrictions_athena_dailyops_fs_upserted']).isRequired,
|
|
11853
|
+
event_id: PropTypes.string.isRequired,
|
|
11854
|
+
timestamp: PropTypes.string.isRequired,
|
|
11855
|
+
restrictions_athena_dailyops_fs: T['io.flow.internal.v0.models.restrictions_athena_dailyops_fs'].isRequired,
|
|
11856
|
+
});
|
|
11857
|
+
|
|
11623
11858
|
T['io.flow.internal.v0.enums.restriction_rule_activation_status'] = PropTypes.oneOf(['draft', 'active', 'inactive']);
|
|
11624
11859
|
|
|
11625
11860
|
T['io.flow.internal.v0.models.keyword_cancelling'] = PropTypes.exact({
|
|
@@ -11814,7 +12049,7 @@ T['io.flow.internal.v0.models.report_organization_reference'] = PropTypes.exact(
|
|
|
11814
12049
|
organization_id: PropTypes.string.isRequired,
|
|
11815
12050
|
});
|
|
11816
12051
|
|
|
11817
|
-
T['io.flow.internal.v0.enums.account_currency_filter'] = PropTypes.oneOf(['GBP', 'CAD', 'USD']);
|
|
12052
|
+
T['io.flow.internal.v0.enums.account_currency_filter'] = PropTypes.oneOf(['GBP', 'CAD', 'USD', 'KRW']);
|
|
11818
12053
|
|
|
11819
12054
|
T['io.flow.internal.v0.models.report_amount_range'] = PropTypes.exact({
|
|
11820
12055
|
min: PropTypes.number,
|
|
@@ -11875,6 +12110,8 @@ T['io.flow.internal.v0.enums.report_type'] = PropTypes.oneOf([
|
|
|
11875
12110
|
'non_channel_payment_bank_account',
|
|
11876
12111
|
'scheduled_payment',
|
|
11877
12112
|
'scheduled_payment_citi',
|
|
12113
|
+
'scheduled_payment_citi_krw',
|
|
12114
|
+
'scheduled_payment_citi_krw_txt',
|
|
11878
12115
|
'account_quarterly_balances',
|
|
11879
12116
|
'invariants',
|
|
11880
12117
|
'payments',
|
|
@@ -12309,6 +12546,23 @@ T['io.flow.sellability.v0.models.sellability_screening'] = PropTypes.exact({
|
|
|
12309
12546
|
error_message: PropTypes.string,
|
|
12310
12547
|
});
|
|
12311
12548
|
|
|
12549
|
+
T['io.flow.internal.v0.models.preonboarding_merchant'] = PropTypes.exact({
|
|
12550
|
+
id: PropTypes.string.isRequired,
|
|
12551
|
+
merchant_id: PropTypes.string.isRequired,
|
|
12552
|
+
channel: PropTypes.string.isRequired,
|
|
12553
|
+
catalog_size: PropTypes.number.isRequired,
|
|
12554
|
+
processed_product_count: PropTypes.number.isRequired,
|
|
12555
|
+
last_request: PropTypes.string.isRequired,
|
|
12556
|
+
updated_by_user_id: PropTypes.string.isRequired,
|
|
12557
|
+
});
|
|
12558
|
+
|
|
12559
|
+
T['io.flow.internal.v0.models.preonboarding_merchant_upserted'] = PropTypes.exact({
|
|
12560
|
+
discriminator: PropTypes.oneOf(['preonboarding_merchant_upserted']).isRequired,
|
|
12561
|
+
event_id: PropTypes.string.isRequired,
|
|
12562
|
+
timestamp: PropTypes.string.isRequired,
|
|
12563
|
+
preonboarding_merchant: T['io.flow.internal.v0.models.preonboarding_merchant'].isRequired,
|
|
12564
|
+
});
|
|
12565
|
+
|
|
12312
12566
|
T['io.flow.internal.v0.enums.preonboarding_classification_type'] = PropTypes.oneOf(['None', 'Manual', 'ML', 'System']);
|
|
12313
12567
|
T['io.flow.internal.v0.enums.preonboarding_classification_decision'] = PropTypes.oneOf(['Accept', 'Reject']);
|
|
12314
12568
|
|
|
@@ -12321,8 +12575,11 @@ T['io.flow.internal.v0.models.preonboarding_classification_result'] = PropTypes.
|
|
|
12321
12575
|
probability: PropTypes.number,
|
|
12322
12576
|
classification_decision: T['io.flow.internal.v0.enums.preonboarding_classification_decision'].isRequired,
|
|
12323
12577
|
classification_type: T['io.flow.internal.v0.enums.preonboarding_classification_type'].isRequired,
|
|
12578
|
+
model_id: PropTypes.string,
|
|
12324
12579
|
});
|
|
12325
12580
|
|
|
12581
|
+
T['io.flow.sellability.v0.enums.sellability_screening_mode'] = PropTypes.oneOf(['pre_onboarding', 'default_on', 'active']);
|
|
12582
|
+
|
|
12326
12583
|
T['io.flow.product.v0.models.product_taxonomy_category'] = PropTypes.exact({
|
|
12327
12584
|
name: PropTypes.string.isRequired,
|
|
12328
12585
|
full_name: PropTypes.string.isRequired,
|
|
@@ -12332,6 +12589,7 @@ T['io.flow.product.v0.models.product'] = PropTypes.exact({
|
|
|
12332
12589
|
organization_id: PropTypes.string.isRequired,
|
|
12333
12590
|
number: PropTypes.string.isRequired,
|
|
12334
12591
|
taxonomy_category: T['io.flow.product.v0.models.product_taxonomy_category'],
|
|
12592
|
+
inferred_taxonomy_category: T['io.flow.product.v0.models.product_taxonomy_category'],
|
|
12335
12593
|
taxonomy_data: PropTypes.arrayOf(T['io.flow.product.v0.models.product_taxonomy_data']),
|
|
12336
12594
|
item_numbers: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
12337
12595
|
highest_value_item_number: PropTypes.string,
|
|
@@ -12423,7 +12681,10 @@ T['io.flow.internal.v0.models.preonboarding_sellability_result'] = PropTypes.exa
|
|
|
12423
12681
|
matching_sellability_positive_keywords: PropTypes.arrayOf(PropTypes.string),
|
|
12424
12682
|
classification_failure_reason: T['io.flow.internal.v0.enums.classification_failure_reason'],
|
|
12425
12683
|
taxonomy_category: T['io.flow.product.v0.models.product_taxonomy_category'],
|
|
12684
|
+
inferred_taxonomy_category: T['io.flow.product.v0.models.product_taxonomy_category'],
|
|
12685
|
+
effective_taxonomy_category: T['io.flow.product.v0.models.product_taxonomy_category'],
|
|
12426
12686
|
fingerprint: PropTypes.string.isRequired,
|
|
12687
|
+
screening_mode: T['io.flow.sellability.v0.enums.sellability_screening_mode'],
|
|
12427
12688
|
});
|
|
12428
12689
|
|
|
12429
12690
|
T['io.flow.internal.v0.models.preonboarding_sellability_result_updated'] = PropTypes.exact({
|
|
@@ -13963,6 +14224,7 @@ T['io.flow.internal.v0.models.manual_transaction_form'] = PropTypes.exact({
|
|
|
13963
14224
|
});
|
|
13964
14225
|
|
|
13965
14226
|
T['io.flow.internal.v0.enums.manual_review_rule_status'] = PropTypes.oneOf(['active', 'archived']);
|
|
14227
|
+
T['io.flow.internal.v0.enums.mahesh_item_type'] = PropTypes.oneOf(['physical', 'digital']);
|
|
13966
14228
|
|
|
13967
14229
|
T['io.flow.internal.v0.models.loyalty_program_reward'] = PropTypes.exact({
|
|
13968
14230
|
id: PropTypes.string.isRequired,
|
|
@@ -14247,6 +14509,7 @@ T['io.flow.ratecard.v0.models.ratecard'] = PropTypes.exact({
|
|
|
14247
14509
|
rate_level_key: PropTypes.string,
|
|
14248
14510
|
direction: T['io.flow.label.v0.enums.direction'].isRequired,
|
|
14249
14511
|
effective_at: PropTypes.string.isRequired,
|
|
14512
|
+
effective_until: PropTypes.string,
|
|
14250
14513
|
origination_zones: PropTypes.arrayOf(T['io.flow.common.v0.models.zone']).isRequired,
|
|
14251
14514
|
service: T['io.flow.ratecard.v0.models.ratecard_service_summary'].isRequired,
|
|
14252
14515
|
published_at: PropTypes.string,
|
|
@@ -14422,13 +14685,6 @@ T['io.flow.internal.v0.models.label_creation_job_upserted'] = PropTypes.exact({
|
|
|
14422
14685
|
label_creation_job: T['io.flow.internal.v0.models.label_creation_job'].isRequired,
|
|
14423
14686
|
});
|
|
14424
14687
|
|
|
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
14688
|
T['io.flow.internal.v0.models.lab_project_settings_form_acceptance'] = PropTypes.exact({
|
|
14433
14689
|
accepted: PropTypes.bool.isRequired,
|
|
14434
14690
|
});
|
|
@@ -15342,6 +15598,8 @@ T['io.flow.internal.v0.models.reporting_merchant_transactions'] = PropTypes.exac
|
|
|
15342
15598
|
duty: T['io.flow.internal.v0.models.reporting_monetary_value'].isRequired,
|
|
15343
15599
|
freight: T['io.flow.internal.v0.models.reporting_monetary_value'].isRequired,
|
|
15344
15600
|
freight_breakdown: T['io.flow.internal.v0.models.reporting_merchant_freight'],
|
|
15601
|
+
freight_guaranteed: T['io.flow.internal.v0.models.reporting_monetary_value'],
|
|
15602
|
+
freight_non_guaranteed: T['io.flow.internal.v0.models.reporting_monetary_value'],
|
|
15345
15603
|
discount: T['io.flow.internal.v0.models.reporting_monetary_value'],
|
|
15346
15604
|
total: T['io.flow.internal.v0.models.reporting_monetary_value'],
|
|
15347
15605
|
tax_refund: T['io.flow.internal.v0.models.reporting_monetary_value'],
|
|
@@ -15391,6 +15649,15 @@ T['io.flow.internal.v0.models.reporting_payment'] = PropTypes.exact({
|
|
|
15391
15649
|
total: T['io.flow.internal.v0.models.reporting_monetary_value'].isRequired,
|
|
15392
15650
|
});
|
|
15393
15651
|
|
|
15652
|
+
T['io.flow.internal.v0.models.reporting_freight_guaranteed'] = PropTypes.exact({
|
|
15653
|
+
amount: T['io.flow.internal.v0.models.reporting_monetary_value'].isRequired,
|
|
15654
|
+
coefficient: T['io.flow.internal.v0.models.reporting_monetary_value'].isRequired,
|
|
15655
|
+
});
|
|
15656
|
+
|
|
15657
|
+
T['io.flow.internal.v0.models.reporting_freight'] = PropTypes.exact({
|
|
15658
|
+
guaranteed: T['io.flow.internal.v0.models.reporting_freight_guaranteed'],
|
|
15659
|
+
});
|
|
15660
|
+
|
|
15394
15661
|
T['io.flow.internal.v0.models.reporting_fees'] = PropTypes.exact({
|
|
15395
15662
|
mor: T['io.flow.internal.v0.models.reporting_monetary_value'].isRequired,
|
|
15396
15663
|
fx: T['io.flow.internal.v0.models.reporting_monetary_value'].isRequired,
|
|
@@ -15442,6 +15709,8 @@ T['io.flow.internal.v0.models.merchant_transactions'] = PropTypes.exact({
|
|
|
15442
15709
|
freight: PropTypes.number.isRequired,
|
|
15443
15710
|
base_amount: PropTypes.number,
|
|
15444
15711
|
surcharges: PropTypes.arrayOf(T['io.flow.internal.v0.models.merchant_surcharge']),
|
|
15712
|
+
freight_guaranteed: PropTypes.number,
|
|
15713
|
+
freight_non_guaranteed: PropTypes.number,
|
|
15445
15714
|
total: PropTypes.number.isRequired,
|
|
15446
15715
|
tax_refund: PropTypes.number,
|
|
15447
15716
|
tax_reversal: PropTypes.number,
|
|
@@ -15672,8 +15941,8 @@ T['io.flow.internal.v0.models.fiserv_authentication'] = PropTypes.exact({
|
|
|
15672
15941
|
secret_key_reference: PropTypes.string.isRequired,
|
|
15673
15942
|
});
|
|
15674
15943
|
|
|
15675
|
-
T['io.flow.billing.bank.account.v0.models.
|
|
15676
|
-
discriminator: PropTypes.oneOf(['
|
|
15944
|
+
T['io.flow.billing.bank.account.v0.models.bank_account_info_kor_v2'] = PropTypes.exact({
|
|
15945
|
+
discriminator: PropTypes.oneOf(['kor_v2']).isRequired,
|
|
15677
15946
|
name: PropTypes.string.isRequired,
|
|
15678
15947
|
bank_account_number: PropTypes.string.isRequired,
|
|
15679
15948
|
bank_routing_number: PropTypes.string.isRequired,
|
|
@@ -15714,25 +15983,6 @@ T['io.flow.internal.v0.models.finance_bank_account_owner'] = PropTypes.exact({
|
|
|
15714
15983
|
name: PropTypes.string.isRequired,
|
|
15715
15984
|
});
|
|
15716
15985
|
|
|
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
15986
|
T['io.flow.internal.v0.models.string_feature_rule_form'] = PropTypes.exact({
|
|
15737
15987
|
discriminator: PropTypes.oneOf(['string']).isRequired,
|
|
15738
15988
|
query: PropTypes.string.isRequired,
|
|
@@ -17097,6 +17347,7 @@ T['io.flow.internal.v0.models.sales_payment_record'] = PropTypes.exact({
|
|
|
17097
17347
|
tax: T['io.flow.internal.v0.models.reporting_monetary_value'],
|
|
17098
17348
|
duty: T['io.flow.internal.v0.models.reporting_monetary_value'],
|
|
17099
17349
|
fees: T['io.flow.internal.v0.models.reporting_fees'].isRequired,
|
|
17350
|
+
freight: T['io.flow.internal.v0.models.reporting_freight'],
|
|
17100
17351
|
conversion_rate: T['io.flow.internal.v0.models.reporting_conversion_rates'].isRequired,
|
|
17101
17352
|
payment_is: T['io.flow.internal.v0.models.payment_is'].isRequired,
|
|
17102
17353
|
price_inclusivity: T['io.flow.internal.v0.models.price_inclusivity'],
|
|
@@ -18334,6 +18585,7 @@ T['io.flow.internal.v0.enums.channel_order_acceptance_rejection_reason'] = PropT
|
|
|
18334
18585
|
'unsupported_order_edit',
|
|
18335
18586
|
'order_allocation_duties_mismatch',
|
|
18336
18587
|
'order_missing',
|
|
18588
|
+
'order_cancelled',
|
|
18337
18589
|
'organization_deactivated',
|
|
18338
18590
|
]);
|
|
18339
18591
|
|
|
@@ -18914,6 +19166,14 @@ T['io.flow.common.v0.models.channel_reference'] = PropTypes.exact({
|
|
|
18914
19166
|
id: PropTypes.string.isRequired,
|
|
18915
19167
|
});
|
|
18916
19168
|
|
|
19169
|
+
T['io.flow.channel.internal.v0.models.channel_shop_statistics'] = PropTypes.exact({
|
|
19170
|
+
id: PropTypes.string.isRequired,
|
|
19171
|
+
channel: T['io.flow.common.v0.models.channel_reference'].isRequired,
|
|
19172
|
+
initial_catalog_synced_at: PropTypes.string,
|
|
19173
|
+
catalog_sync_duration: PropTypes.number,
|
|
19174
|
+
catalog_products_count: PropTypes.number,
|
|
19175
|
+
});
|
|
19176
|
+
|
|
18917
19177
|
T['io.flow.shopify.markets.internal.v0.models.shopify_markets_shop_summary'] = PropTypes.exact({
|
|
18918
19178
|
organization: T['io.flow.common.v0.models.organization_summary'].isRequired,
|
|
18919
19179
|
channel: T['io.flow.common.v0.models.channel_reference'].isRequired,
|
|
@@ -19002,6 +19262,22 @@ T['io.flow.internal.v0.models.internal_channel_rate_upserted'] = PropTypes.exact
|
|
|
19002
19262
|
rate: T['io.flow.internal.v0.models.internal_channel_rate'].isRequired,
|
|
19003
19263
|
});
|
|
19004
19264
|
|
|
19265
|
+
T['io.flow.internal.v0.models.channel_shop_statistics'] = PropTypes.exact({
|
|
19266
|
+
id: PropTypes.string.isRequired,
|
|
19267
|
+
channel: T['io.flow.common.v0.models.channel_reference'].isRequired,
|
|
19268
|
+
initial_catalog_synced_at: PropTypes.string,
|
|
19269
|
+
catalog_sync_duration: PropTypes.number,
|
|
19270
|
+
catalog_products_count: PropTypes.number,
|
|
19271
|
+
});
|
|
19272
|
+
|
|
19273
|
+
T['io.flow.internal.v0.models.channel_shop_statistics_upserted'] = PropTypes.exact({
|
|
19274
|
+
discriminator: PropTypes.oneOf(['channel_shop_statistics_upserted']).isRequired,
|
|
19275
|
+
event_id: PropTypes.string.isRequired,
|
|
19276
|
+
timestamp: PropTypes.string.isRequired,
|
|
19277
|
+
organization: PropTypes.string.isRequired,
|
|
19278
|
+
channel_shop_statistics: T['io.flow.internal.v0.models.channel_shop_statistics'].isRequired,
|
|
19279
|
+
});
|
|
19280
|
+
|
|
19005
19281
|
T['io.flow.common.v0.models.dimensions'] = PropTypes.exact({
|
|
19006
19282
|
product: T['io.flow.common.v0.models.dimension'],
|
|
19007
19283
|
packaging: T['io.flow.common.v0.models.dimension'],
|
|
@@ -19076,6 +19352,38 @@ T['io.flow.common.v0.models.address'] = PropTypes.exact({
|
|
|
19076
19352
|
longitude: PropTypes.string,
|
|
19077
19353
|
});
|
|
19078
19354
|
|
|
19355
|
+
T['io.flow.billing.bank.account.v0.models.bank_account_info_kor'] = PropTypes.exact({
|
|
19356
|
+
discriminator: PropTypes.oneOf(['kor']).isRequired,
|
|
19357
|
+
name: PropTypes.string,
|
|
19358
|
+
address: T['io.flow.common.v0.models.address'],
|
|
19359
|
+
phone: PropTypes.string,
|
|
19360
|
+
email: PropTypes.string,
|
|
19361
|
+
bank_account_number: PropTypes.string.isRequired,
|
|
19362
|
+
bank_routing_number: PropTypes.string,
|
|
19363
|
+
bank_name: PropTypes.string,
|
|
19364
|
+
bank_address: T['io.flow.common.v0.models.address'],
|
|
19365
|
+
});
|
|
19366
|
+
|
|
19367
|
+
T['io.flow.billing.bank.account.v0.unions.bank_account_info'] = PropTypes.oneOfType([
|
|
19368
|
+
T['io.flow.billing.bank.account.v0.models.bank_account_info_usa'],
|
|
19369
|
+
T['io.flow.billing.bank.account.v0.models.bank_account_info_can'],
|
|
19370
|
+
T['io.flow.billing.bank.account.v0.models.bank_account_info_gbr'],
|
|
19371
|
+
T['io.flow.billing.bank.account.v0.models.bank_account_info_fra'],
|
|
19372
|
+
T['io.flow.billing.bank.account.v0.models.bank_account_info_ita'],
|
|
19373
|
+
T['io.flow.billing.bank.account.v0.models.bank_account_info_kor'],
|
|
19374
|
+
T['io.flow.billing.bank.account.v0.models.bank_account_info_kor_v2'],
|
|
19375
|
+
]);
|
|
19376
|
+
|
|
19377
|
+
T['io.flow.billing.v0.models.bank_account_form_info'] = PropTypes.exact({
|
|
19378
|
+
discriminator: PropTypes.oneOf(['info']).isRequired,
|
|
19379
|
+
info: T['io.flow.billing.bank.account.v0.unions.bank_account_info'].isRequired,
|
|
19380
|
+
});
|
|
19381
|
+
|
|
19382
|
+
T['io.flow.billing.v0.unions.bank_account_form'] = PropTypes.oneOfType([
|
|
19383
|
+
T['io.flow.billing.v0.models.bank_account_form_info'],
|
|
19384
|
+
T['io.flow.billing.v0.models.bank_account_form_simple'],
|
|
19385
|
+
]);
|
|
19386
|
+
|
|
19079
19387
|
T['io.flow.merchant.onboarding.v0.models.operations_contact'] = PropTypes.exact({
|
|
19080
19388
|
company: PropTypes.string,
|
|
19081
19389
|
email: PropTypes.string,
|
|
@@ -23793,6 +24101,7 @@ T['io.flow.internal.v0.models.preonboarding_classification_request'] = PropTypes
|
|
|
23793
24101
|
relative_ranking: PropTypes.number.isRequired,
|
|
23794
24102
|
taxonomy_category: T['io.flow.product.v0.models.product_taxonomy_category'],
|
|
23795
24103
|
fingerprint: PropTypes.string.isRequired,
|
|
24104
|
+
screening_mode: T['io.flow.sellability.v0.enums.sellability_screening_mode'],
|
|
23796
24105
|
});
|
|
23797
24106
|
|
|
23798
24107
|
T['io.flow.internal.v0.models.mor_cost_summary'] = PropTypes.exact({
|
|
@@ -23858,6 +24167,22 @@ T['io.flow.internal.v0.models.fx_revenue_recognition'] = PropTypes.exact({
|
|
|
23858
24167
|
reporting_date: PropTypes.string,
|
|
23859
24168
|
});
|
|
23860
24169
|
|
|
24170
|
+
T['io.flow.internal.v0.models.flat_rate_label_reversal'] = PropTypes.exact({
|
|
24171
|
+
id: PropTypes.string.isRequired,
|
|
24172
|
+
organization_id: PropTypes.string.isRequired,
|
|
24173
|
+
order_number: PropTypes.string.isRequired,
|
|
24174
|
+
amount: T['io.flow.common.v0.models.money'].isRequired,
|
|
24175
|
+
tax: T['io.flow.common.v0.models.money'].isRequired,
|
|
24176
|
+
});
|
|
24177
|
+
|
|
24178
|
+
T['io.flow.internal.v0.models.flat_rate_label_reversal_upserted'] = PropTypes.exact({
|
|
24179
|
+
discriminator: PropTypes.oneOf(['flat_rate_label_reversal_upserted']).isRequired,
|
|
24180
|
+
event_id: PropTypes.string.isRequired,
|
|
24181
|
+
timestamp: PropTypes.string.isRequired,
|
|
24182
|
+
organization: PropTypes.string.isRequired,
|
|
24183
|
+
flat_rate_label_reversal: T['io.flow.internal.v0.models.flat_rate_label_reversal'].isRequired,
|
|
24184
|
+
});
|
|
24185
|
+
|
|
23861
24186
|
T['io.flow.common.v0.models.line_item_form'] = PropTypes.exact({
|
|
23862
24187
|
number: PropTypes.string.isRequired,
|
|
23863
24188
|
quantity: PropTypes.number.isRequired,
|
|
@@ -24423,6 +24748,8 @@ T['io.flow.internal.v0.models.calculation_stamping_line_item'] = PropTypes.exact
|
|
|
24423
24748
|
sales_tax_rate: PropTypes.number.isRequired,
|
|
24424
24749
|
additional_tax: T['io.flow.common.v0.models.money'],
|
|
24425
24750
|
additional_tax_rate: PropTypes.number,
|
|
24751
|
+
fixed_fee: T['io.flow.common.v0.models.money'],
|
|
24752
|
+
fixed_fee_tax: T['io.flow.common.v0.models.money'],
|
|
24426
24753
|
total: T['io.flow.common.v0.models.money'].isRequired,
|
|
24427
24754
|
});
|
|
24428
24755
|
|
|
@@ -24551,6 +24878,8 @@ T['io.flow.internal.v0.models.calculation_total'] = PropTypes.exact({
|
|
|
24551
24878
|
additional_tax_import_included: PropTypes.bool.isRequired,
|
|
24552
24879
|
additional_tax: T['io.flow.common.v0.models.money'],
|
|
24553
24880
|
additional_import_tax: PropTypes.arrayOf(T['io.flow.internal.v0.models.additional_import_tax']),
|
|
24881
|
+
fixed_fee: T['io.flow.common.v0.models.money'],
|
|
24882
|
+
fixed_fee_tax: T['io.flow.common.v0.models.money'],
|
|
24554
24883
|
});
|
|
24555
24884
|
|
|
24556
24885
|
T['io.flow.internal.v0.models.calculation_step'] = PropTypes.exact({
|
|
@@ -24582,10 +24911,10 @@ T['io.flow.internal.v0.models.flat_rate'] = PropTypes.exact({
|
|
|
24582
24911
|
T['io.flow.internal.v0.models.adaptive_shipping_rate'] = PropTypes.exact({
|
|
24583
24912
|
id: PropTypes.string.isRequired,
|
|
24584
24913
|
organization_id: PropTypes.string.isRequired,
|
|
24914
|
+
channel_id: PropTypes.string.isRequired,
|
|
24585
24915
|
destination_country: PropTypes.string.isRequired,
|
|
24586
24916
|
coefficient: PropTypes.number.isRequired,
|
|
24587
24917
|
flat_rates: PropTypes.arrayOf(T['io.flow.internal.v0.models.flat_rate']).isRequired,
|
|
24588
|
-
version_id: PropTypes.string,
|
|
24589
24918
|
effective_at: PropTypes.string.isRequired,
|
|
24590
24919
|
effective_until: PropTypes.string,
|
|
24591
24920
|
});
|
|
@@ -24598,6 +24927,40 @@ T['io.flow.internal.v0.models.adaptive_shipping_rate_upserted'] = PropTypes.exac
|
|
|
24598
24927
|
adaptive_shipping_rate: T['io.flow.internal.v0.models.adaptive_shipping_rate'].isRequired,
|
|
24599
24928
|
});
|
|
24600
24929
|
|
|
24930
|
+
T['io.flow.internal.v0.enums.adaptive_shipping_order_guarantee_state'] = PropTypes.oneOf(['confirmed', 'voided']);
|
|
24931
|
+
|
|
24932
|
+
T['io.flow.internal.v0.models.adaptive_shipping_order_guarantee'] = PropTypes.exact({
|
|
24933
|
+
id: PropTypes.string.isRequired,
|
|
24934
|
+
organization_id: PropTypes.string.isRequired,
|
|
24935
|
+
order_number: PropTypes.string.isRequired,
|
|
24936
|
+
guarantee_state: T['io.flow.internal.v0.enums.adaptive_shipping_order_guarantee_state'].isRequired,
|
|
24937
|
+
label_id: PropTypes.string,
|
|
24938
|
+
notification_id: PropTypes.string,
|
|
24939
|
+
});
|
|
24940
|
+
|
|
24941
|
+
T['io.flow.internal.v0.models.adaptive_shipping_order_guarantee_upserted'] = PropTypes.exact({
|
|
24942
|
+
discriminator: PropTypes.oneOf(['adaptive_shipping_order_guarantee_upserted']).isRequired,
|
|
24943
|
+
event_id: PropTypes.string.isRequired,
|
|
24944
|
+
timestamp: PropTypes.string.isRequired,
|
|
24945
|
+
organization: PropTypes.string.isRequired,
|
|
24946
|
+
adaptive_shipping_order_guarantee: T['io.flow.internal.v0.models.adaptive_shipping_order_guarantee'].isRequired,
|
|
24947
|
+
});
|
|
24948
|
+
|
|
24949
|
+
T['io.flow.internal.v0.models.adaptive_pricing_destination_update'] = PropTypes.exact({
|
|
24950
|
+
country_code: PropTypes.string.isRequired,
|
|
24951
|
+
updated_at: PropTypes.string.isRequired,
|
|
24952
|
+
tax_and_duty_coefficient: PropTypes.number.isRequired,
|
|
24953
|
+
fees_coefficient: PropTypes.number.isRequired,
|
|
24954
|
+
merchant_subsidy_amount: PropTypes.number.isRequired,
|
|
24955
|
+
merchant_subsidy_currency: PropTypes.string.isRequired,
|
|
24956
|
+
});
|
|
24957
|
+
|
|
24958
|
+
T['io.flow.internal.v0.models.adaptive_pricing_update'] = PropTypes.exact({
|
|
24959
|
+
channel_id: PropTypes.string.isRequired,
|
|
24960
|
+
organization_id: PropTypes.string.isRequired,
|
|
24961
|
+
destination_updates: PropTypes.arrayOf(T['io.flow.internal.v0.models.adaptive_pricing_destination_update']).isRequired,
|
|
24962
|
+
});
|
|
24963
|
+
|
|
24601
24964
|
T['io.flow.internal.v0.enums.item_quantity_action'] = PropTypes.oneOf(['fulfillment_ship', 'fulfillment_cancel', 'fulfillment_generate_label']);
|
|
24602
24965
|
|
|
24603
24966
|
T['io.flow.internal.v0.models.action_quantity'] = PropTypes.exact({
|
|
@@ -24798,6 +25161,10 @@ T['io.flow.shopify.markets.internal.event.v0.unions.shopify_markets_internal_eve
|
|
|
24798
25161
|
T['io.flow.shopify.markets.internal.event.v0.models.shopify_order_transaction_deleted'],
|
|
24799
25162
|
T['io.flow.shopify.markets.internal.event.v0.models.shopify_test_order_upserted'],
|
|
24800
25163
|
T['io.flow.shopify.markets.internal.event.v0.models.shopify_test_order_deleted'],
|
|
25164
|
+
T['io.flow.shopify.markets.internal.event.v0.models.shopify_adaptive_pricing_coefficients_upserted'],
|
|
25165
|
+
T['io.flow.shopify.markets.internal.event.v0.models.shopify_adaptive_pricing_coefficients_deleted'],
|
|
25166
|
+
T['io.flow.shopify.markets.internal.event.v0.models.shopify_merchant_markets_upserted'],
|
|
25167
|
+
T['io.flow.shopify.markets.internal.event.v0.models.shopify_merchant_markets_deleted'],
|
|
24801
25168
|
]);
|
|
24802
25169
|
|
|
24803
25170
|
T['io.flow.export.v0.models.marketing_feeds_export_type'] = PropTypes.exact({
|
|
@@ -25973,6 +26340,7 @@ T['io.flow.label.v0.models.shipping_label'] = PropTypes.exact({
|
|
|
25973
26340
|
created_at: PropTypes.string,
|
|
25974
26341
|
updated_at: PropTypes.string,
|
|
25975
26342
|
direction: T['io.flow.label.v0.enums.direction'],
|
|
26343
|
+
shipping_cost_guarantee: T['io.flow.label.v0.enums.shipping_cost_guarantee'],
|
|
25976
26344
|
});
|
|
25977
26345
|
|
|
25978
26346
|
T['io.flow.label.v0.models.shipping_label_version'] = PropTypes.exact({
|
|
@@ -26036,6 +26404,7 @@ T['io.flow.internal.v0.models.restriction_product'] = PropTypes.exact({
|
|
|
26036
26404
|
taxonomy_category: T['io.flow.product.v0.models.product_taxonomy_category'],
|
|
26037
26405
|
taxonomy_data: PropTypes.arrayOf(T['io.flow.product.v0.models.product_taxonomy_data']),
|
|
26038
26406
|
channel: PropTypes.string,
|
|
26407
|
+
is_deleted: PropTypes.bool,
|
|
26039
26408
|
});
|
|
26040
26409
|
|
|
26041
26410
|
T['io.flow.internal.v0.models.restriction_item'] = PropTypes.exact({
|
|
@@ -26060,6 +26429,7 @@ T['io.flow.internal.v0.models.restriction_item'] = PropTypes.exact({
|
|
|
26060
26429
|
created_at: PropTypes.string.isRequired,
|
|
26061
26430
|
updated_at: PropTypes.string.isRequired,
|
|
26062
26431
|
channel: PropTypes.string,
|
|
26432
|
+
is_deleted: PropTypes.bool,
|
|
26063
26433
|
});
|
|
26064
26434
|
|
|
26065
26435
|
T['io.flow.internal.v0.models.raveena_item_form'] = PropTypes.exact({
|
|
@@ -26079,6 +26449,13 @@ T['io.flow.internal.v0.models.raveena_item'] = PropTypes.exact({
|
|
|
26079
26449
|
added_on: PropTypes.string.isRequired,
|
|
26080
26450
|
});
|
|
26081
26451
|
|
|
26452
|
+
T['io.flow.internal.v0.models.raveena_item_upserted'] = PropTypes.exact({
|
|
26453
|
+
discriminator: PropTypes.oneOf(['raveena_item_upserted']).isRequired,
|
|
26454
|
+
event_id: PropTypes.string.isRequired,
|
|
26455
|
+
timestamp: PropTypes.string.isRequired,
|
|
26456
|
+
item: T['io.flow.internal.v0.models.raveena_item'].isRequired,
|
|
26457
|
+
});
|
|
26458
|
+
|
|
26082
26459
|
T['io.flow.internal.v0.models.payment_summary_v2'] = PropTypes.exact({
|
|
26083
26460
|
discriminator: PropTypes.oneOf(['payment_summary_v2']).isRequired,
|
|
26084
26461
|
id: PropTypes.string.isRequired,
|
|
@@ -26117,6 +26494,23 @@ T['io.flow.internal.v0.models.order_revenue_region_chart'] = PropTypes.exact({
|
|
|
26117
26494
|
data: PropTypes.arrayOf(T['io.flow.internal.v0.models.order_revenue_region_data_point']).isRequired,
|
|
26118
26495
|
});
|
|
26119
26496
|
|
|
26497
|
+
T['io.flow.internal.v0.models.mahesh_item_form'] = PropTypes.exact({
|
|
26498
|
+
number: PropTypes.string.isRequired,
|
|
26499
|
+
amount: T['io.flow.common.v0.models.price'].isRequired,
|
|
26500
|
+
description: PropTypes.string,
|
|
26501
|
+
type: T['io.flow.internal.v0.enums.mahesh_item_type'].isRequired,
|
|
26502
|
+
added_on: PropTypes.string.isRequired,
|
|
26503
|
+
});
|
|
26504
|
+
|
|
26505
|
+
T['io.flow.internal.v0.models.mahesh_item'] = PropTypes.exact({
|
|
26506
|
+
id: PropTypes.string.isRequired,
|
|
26507
|
+
number: PropTypes.string.isRequired,
|
|
26508
|
+
amount: T['io.flow.common.v0.models.price'].isRequired,
|
|
26509
|
+
description: PropTypes.string,
|
|
26510
|
+
type: T['io.flow.internal.v0.enums.mahesh_item_type'].isRequired,
|
|
26511
|
+
added_on: PropTypes.string.isRequired,
|
|
26512
|
+
});
|
|
26513
|
+
|
|
26120
26514
|
T['io.flow.internal.v0.models.invoice_line'] = PropTypes.exact({
|
|
26121
26515
|
id: PropTypes.string.isRequired,
|
|
26122
26516
|
description: PropTypes.string.isRequired,
|
|
@@ -28314,6 +28708,8 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
|
|
|
28314
28708
|
T['io.flow.internal.v0.models.channel_order_acceptance_upserted'],
|
|
28315
28709
|
T['io.flow.internal.v0.models.channel_order_acceptance_deleted'],
|
|
28316
28710
|
T['io.flow.internal.v0.models.channel_order_acceptance_failed'],
|
|
28711
|
+
T['io.flow.internal.v0.models.channel_shop_statistics_upserted'],
|
|
28712
|
+
T['io.flow.internal.v0.models.channel_shop_statistics_deleted'],
|
|
28317
28713
|
T['io.flow.internal.v0.models.commercial_invoice_internal_upserted'],
|
|
28318
28714
|
T['io.flow.internal.v0.models.commercial_invoice_internal_deleted'],
|
|
28319
28715
|
T['io.flow.internal.v0.models.internal_channel_rate_deleted'],
|
|
@@ -28373,6 +28769,8 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
|
|
|
28373
28769
|
T['io.flow.internal.v0.models.shipping_cost_deleted'],
|
|
28374
28770
|
T['io.flow.internal.v0.models.mor_cost_upserted'],
|
|
28375
28771
|
T['io.flow.internal.v0.models.mor_cost_deleted'],
|
|
28772
|
+
T['io.flow.internal.v0.models.flat_rate_label_reversal_upserted'],
|
|
28773
|
+
T['io.flow.internal.v0.models.flat_rate_label_reversal_deleted'],
|
|
28376
28774
|
T['io.flow.internal.v0.models.fraud_review_upserted'],
|
|
28377
28775
|
T['io.flow.internal.v0.models.fraud_review_deleted'],
|
|
28378
28776
|
T['io.flow.internal.v0.models.fraud_pending_review_upserted'],
|
|
@@ -28429,6 +28827,8 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
|
|
|
28429
28827
|
T['io.flow.internal.v0.models.order_validation_deleted'],
|
|
28430
28828
|
T['io.flow.internal.v0.models.label_creation_job_upserted'],
|
|
28431
28829
|
T['io.flow.internal.v0.models.label_creation_job_deleted'],
|
|
28830
|
+
T['io.flow.internal.v0.models.adaptive_shipping_order_guarantee_upserted'],
|
|
28831
|
+
T['io.flow.internal.v0.models.adaptive_shipping_order_guarantee_deleted'],
|
|
28432
28832
|
T['io.flow.internal.v0.models.label_tracking_summary_upserted'],
|
|
28433
28833
|
T['io.flow.internal.v0.models.label_tracking_summary_deleted'],
|
|
28434
28834
|
T['io.flow.internal.v0.models.logistics_capabilities_upserted'],
|
|
@@ -28517,12 +28917,18 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
|
|
|
28517
28917
|
T['io.flow.internal.v0.models.screening_status_change_deleted'],
|
|
28518
28918
|
T['io.flow.internal.v0.models.restrictions_dailyops_upserted'],
|
|
28519
28919
|
T['io.flow.internal.v0.models.restrictions_dailyops_deleted'],
|
|
28920
|
+
T['io.flow.internal.v0.models.restrictions_athena_dailyops_pc_pv_upserted'],
|
|
28921
|
+
T['io.flow.internal.v0.models.restrictions_athena_dailyops_pc_pv_deleted'],
|
|
28922
|
+
T['io.flow.internal.v0.models.restrictions_athena_dailyops_fs_upserted'],
|
|
28923
|
+
T['io.flow.internal.v0.models.restrictions_athena_dailyops_fs_deleted'],
|
|
28520
28924
|
T['io.flow.internal.v0.models.restriction_rule_upserted'],
|
|
28521
28925
|
T['io.flow.internal.v0.models.restriction_rule_deleted'],
|
|
28522
28926
|
T['io.flow.internal.v0.models.restriction_rule_effect_upserted'],
|
|
28523
28927
|
T['io.flow.internal.v0.models.restriction_rule_effect_deleted'],
|
|
28524
28928
|
T['io.flow.internal.v0.models.taxonomy_category_hs6_ref_upserted'],
|
|
28525
28929
|
T['io.flow.internal.v0.models.taxonomy_category_hs6_ref_deleted'],
|
|
28930
|
+
T['io.flow.internal.v0.models.preonboarding_merchant_upserted'],
|
|
28931
|
+
T['io.flow.internal.v0.models.preonboarding_merchant_deleted'],
|
|
28526
28932
|
T['io.flow.internal.v0.models.shopify_hs10_codes_upserted'],
|
|
28527
28933
|
T['io.flow.internal.v0.models.shopify_hs10_codes_deleted'],
|
|
28528
28934
|
T['io.flow.internal.v0.models.shopify_markets_order_upserted'],
|
|
@@ -28556,6 +28962,10 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
|
|
|
28556
28962
|
T['io.flow.internal.v0.models.shopify_order_transaction_deleted'],
|
|
28557
28963
|
T['io.flow.internal.v0.models.shopify_test_order_upserted'],
|
|
28558
28964
|
T['io.flow.internal.v0.models.shopify_test_order_deleted'],
|
|
28965
|
+
T['io.flow.internal.v0.models.shopify_adaptive_pricing_coefficients_upserted'],
|
|
28966
|
+
T['io.flow.internal.v0.models.shopify_adaptive_pricing_coefficients_deleted'],
|
|
28967
|
+
T['io.flow.internal.v0.models.shopify_merchant_markets_upserted'],
|
|
28968
|
+
T['io.flow.internal.v0.models.shopify_merchant_markets_deleted'],
|
|
28559
28969
|
T['io.flow.internal.v0.models.shopify_product_create_upserted'],
|
|
28560
28970
|
T['io.flow.internal.v0.models.shopify_product_create_deleted'],
|
|
28561
28971
|
T['io.flow.internal.v0.models.shopify_product_update_upserted'],
|
|
@@ -28600,6 +29010,8 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
|
|
|
28600
29010
|
T['io.flow.internal.v0.models.chenglin_item_deleted'],
|
|
28601
29011
|
T['io.flow.internal.v0.models.bojana_item_upserted'],
|
|
28602
29012
|
T['io.flow.internal.v0.models.bojana_item_deleted'],
|
|
29013
|
+
T['io.flow.internal.v0.models.raveena_item_upserted'],
|
|
29014
|
+
T['io.flow.internal.v0.models.raveena_item_deleted'],
|
|
28603
29015
|
T['io.flow.internal.v0.models.tracking_processing_error_upserted'],
|
|
28604
29016
|
T['io.flow.internal.v0.models.tracking_processing_error_deleted'],
|
|
28605
29017
|
T['io.flow.internal.v0.models.tracking_label_event_upserted_v2'],
|
|
@@ -28870,6 +29282,8 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
|
|
|
28870
29282
|
'channel_order_acceptance_upserted',
|
|
28871
29283
|
'channel_order_acceptance_deleted',
|
|
28872
29284
|
'channel_order_acceptance_failed',
|
|
29285
|
+
'channel_shop_statistics_upserted',
|
|
29286
|
+
'channel_shop_statistics_deleted',
|
|
28873
29287
|
'commercial_invoice_internal_upserted',
|
|
28874
29288
|
'commercial_invoice_internal_deleted',
|
|
28875
29289
|
'internal_channel_rate_deleted',
|
|
@@ -28929,6 +29343,8 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
|
|
|
28929
29343
|
'shipping_cost_deleted',
|
|
28930
29344
|
'mor_cost_upserted',
|
|
28931
29345
|
'mor_cost_deleted',
|
|
29346
|
+
'flat_rate_label_reversal_upserted',
|
|
29347
|
+
'flat_rate_label_reversal_deleted',
|
|
28932
29348
|
'fraud_review_upserted',
|
|
28933
29349
|
'fraud_review_deleted',
|
|
28934
29350
|
'fraud_pending_review_upserted',
|
|
@@ -28985,6 +29401,8 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
|
|
|
28985
29401
|
'order_validation_deleted',
|
|
28986
29402
|
'label_creation_job_upserted',
|
|
28987
29403
|
'label_creation_job_deleted',
|
|
29404
|
+
'adaptive_shipping_order_guarantee_upserted',
|
|
29405
|
+
'adaptive_shipping_order_guarantee_deleted',
|
|
28988
29406
|
'label_tracking_summary_upserted',
|
|
28989
29407
|
'label_tracking_summary_deleted',
|
|
28990
29408
|
'logistics_capabilities_upserted',
|
|
@@ -29073,12 +29491,18 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
|
|
|
29073
29491
|
'screening_status_change_deleted',
|
|
29074
29492
|
'restrictions_dailyops_upserted',
|
|
29075
29493
|
'restrictions_dailyops_deleted',
|
|
29494
|
+
'restrictions_athena_dailyops_pc_pv_upserted',
|
|
29495
|
+
'restrictions_athena_dailyops_pc_pv_deleted',
|
|
29496
|
+
'restrictions_athena_dailyops_fs_upserted',
|
|
29497
|
+
'restrictions_athena_dailyops_fs_deleted',
|
|
29076
29498
|
'restriction_rule_upserted',
|
|
29077
29499
|
'restriction_rule_deleted',
|
|
29078
29500
|
'restriction_rule_effect_upserted',
|
|
29079
29501
|
'restriction_rule_effect_deleted',
|
|
29080
29502
|
'taxonomy_category_hs6_ref_upserted',
|
|
29081
29503
|
'taxonomy_category_hs6_ref_deleted',
|
|
29504
|
+
'preonboarding_merchant_upserted',
|
|
29505
|
+
'preonboarding_merchant_deleted',
|
|
29082
29506
|
'shopify_hs10_codes_upserted',
|
|
29083
29507
|
'shopify_hs10_codes_deleted',
|
|
29084
29508
|
'shopify_markets_order_upserted',
|
|
@@ -29112,6 +29536,10 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
|
|
|
29112
29536
|
'shopify_order_transaction_deleted',
|
|
29113
29537
|
'shopify_test_order_upserted',
|
|
29114
29538
|
'shopify_test_order_deleted',
|
|
29539
|
+
'shopify_adaptive_pricing_coefficients_upserted',
|
|
29540
|
+
'shopify_adaptive_pricing_coefficients_deleted',
|
|
29541
|
+
'shopify_merchant_markets_upserted',
|
|
29542
|
+
'shopify_merchant_markets_deleted',
|
|
29115
29543
|
'shopify_product_create_upserted',
|
|
29116
29544
|
'shopify_product_create_deleted',
|
|
29117
29545
|
'shopify_product_update_upserted',
|
|
@@ -29156,6 +29584,8 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
|
|
|
29156
29584
|
'chenglin_item_deleted',
|
|
29157
29585
|
'bojana_item_upserted',
|
|
29158
29586
|
'bojana_item_deleted',
|
|
29587
|
+
'raveena_item_upserted',
|
|
29588
|
+
'raveena_item_deleted',
|
|
29159
29589
|
'tracking_processing_error_upserted',
|
|
29160
29590
|
'tracking_processing_error_deleted',
|
|
29161
29591
|
'tracking_label_event_upserted_v2',
|
|
@@ -29340,6 +29770,7 @@ T['io.flow.internal.v0.enums.task_processor_key'] = PropTypes.oneOf([
|
|
|
29340
29770
|
'rate_levels',
|
|
29341
29771
|
'center_defaults',
|
|
29342
29772
|
'item_dimensions',
|
|
29773
|
+
'center',
|
|
29343
29774
|
]);
|
|
29344
29775
|
|
|
29345
29776
|
T['io.flow.internal.v0.enums.tax_transaction_type'] = PropTypes.oneOf(['adjustment', 'reversal', 'tax', 'refund']);
|
|
@@ -29953,14 +30384,6 @@ T['io.flow.internal.v0.models.phrase_propagated'] = PropTypes.exact({
|
|
|
29953
30384
|
phrase_id: PropTypes.string.isRequired,
|
|
29954
30385
|
});
|
|
29955
30386
|
|
|
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
30387
|
T['io.flow.internal.v0.models.prioritized_center_reference'] = PropTypes.exact({
|
|
29965
30388
|
center_key: PropTypes.string.isRequired,
|
|
29966
30389
|
position: PropTypes.number.isRequired,
|
|
@@ -31215,6 +31638,10 @@ T['io.flow.experience.v0.models.order_service_change_request_data'] = PropTypes.
|
|
|
31215
31638
|
filename: PropTypes.string,
|
|
31216
31639
|
});
|
|
31217
31640
|
|
|
31641
|
+
T['io.flow.ratecard.v0.models.ratecard_effective_until_form'] = PropTypes.exact({
|
|
31642
|
+
effective_until: PropTypes.string,
|
|
31643
|
+
});
|
|
31644
|
+
|
|
31218
31645
|
T['io.flow.token.v0.models.channel_token_form'] = PropTypes.exact({
|
|
31219
31646
|
channel_id: PropTypes.string.isRequired,
|
|
31220
31647
|
description: PropTypes.string,
|
|
@@ -31524,6 +31951,12 @@ export const accountUpsertedV2 = T['io.flow.internal.v0.models.account_upserted_
|
|
|
31524
31951
|
export const accountingPendingOrderMetadata = T['io.flow.internal.v0.models.accounting_pending_order_metadata'];
|
|
31525
31952
|
export const accountingReturnMetadata = T['io.flow.internal.v0.models.accounting_return_metadata'];
|
|
31526
31953
|
export const actionQuantity = T['io.flow.internal.v0.models.action_quantity'];
|
|
31954
|
+
export const adaptivePricingDestinationUpdate = T['io.flow.internal.v0.models.adaptive_pricing_destination_update'];
|
|
31955
|
+
export const adaptivePricingUpdate = T['io.flow.internal.v0.models.adaptive_pricing_update'];
|
|
31956
|
+
export const adaptiveShippingOrderGuarantee = T['io.flow.internal.v0.models.adaptive_shipping_order_guarantee'];
|
|
31957
|
+
export const adaptiveShippingOrderGuaranteeDeleted = T['io.flow.internal.v0.models.adaptive_shipping_order_guarantee_deleted'];
|
|
31958
|
+
export const adaptiveShippingOrderGuaranteeState = T['io.flow.internal.v0.enums.adaptive_shipping_order_guarantee_state'];
|
|
31959
|
+
export const adaptiveShippingOrderGuaranteeUpserted = T['io.flow.internal.v0.models.adaptive_shipping_order_guarantee_upserted'];
|
|
31527
31960
|
export const adaptiveShippingRate = T['io.flow.internal.v0.models.adaptive_shipping_rate'];
|
|
31528
31961
|
export const adaptiveShippingRateDeleted = T['io.flow.internal.v0.models.adaptive_shipping_rate_deleted'];
|
|
31529
31962
|
export const adaptiveShippingRateUpserted = T['io.flow.internal.v0.models.adaptive_shipping_rate_upserted'];
|
|
@@ -31595,6 +32028,7 @@ export const apiCallReferenceId = T['io.flow.internal.v0.enums.api_call_referenc
|
|
|
31595
32028
|
export const applePayAuthorizationPayload = T['io.flow.internal.v0.models.apple_pay_authorization_payload'];
|
|
31596
32029
|
export const applicablePreferentialRate = T['io.flow.internal.v0.enums.applicable_preferential_rate'];
|
|
31597
32030
|
export const applyAtValueForm = T['io.flow.internal.v0.models.apply_at_value_form'];
|
|
32031
|
+
export const athenaDailyopsIntentLevel = T['io.flow.internal.v0.enums.athena_dailyops_intent_level'];
|
|
31598
32032
|
export const attemptStatistics = T['io.flow.internal.v0.models.attempt_statistics'];
|
|
31599
32033
|
export const attributeLabel = T['io.flow.internal.v0.models.attribute_label'];
|
|
31600
32034
|
export const attributeRule = T['io.flow.internal.v0.models.attribute_rule'];
|
|
@@ -31824,6 +32258,9 @@ export const channelRateMetadataRate = T['io.flow.internal.v0.models.channel_rat
|
|
|
31824
32258
|
export const channelService = T['io.flow.internal.v0.enums.channel_service'];
|
|
31825
32259
|
export const channelShop = T['io.flow.internal.v0.models.channel_shop'];
|
|
31826
32260
|
export const channelShopForm = T['io.flow.internal.v0.models.channel_shop_form'];
|
|
32261
|
+
export const channelShopStatistics = T['io.flow.internal.v0.models.channel_shop_statistics'];
|
|
32262
|
+
export const channelShopStatisticsDeleted = T['io.flow.internal.v0.models.channel_shop_statistics_deleted'];
|
|
32263
|
+
export const channelShopStatisticsUpserted = T['io.flow.internal.v0.models.channel_shop_statistics_upserted'];
|
|
31827
32264
|
export const channelTransaction = T['io.flow.internal.v0.models.channel_transaction'];
|
|
31828
32265
|
export const channelTransactionDeleted = T['io.flow.internal.v0.models.channel_transaction_deleted'];
|
|
31829
32266
|
export const channelTransactionRate = T['io.flow.internal.v0.models.channel_transaction_rate'];
|
|
@@ -32151,6 +32588,9 @@ export const fiservMerchant = T['io.flow.internal.v0.models.fiserv_merchant'];
|
|
|
32151
32588
|
export const fiservMerchantModificationForm = T['io.flow.internal.v0.models.fiserv_merchant_modification_form'];
|
|
32152
32589
|
export const fiservMerchantPutForm = T['io.flow.internal.v0.models.fiserv_merchant_put_form'];
|
|
32153
32590
|
export const flatRate = T['io.flow.internal.v0.models.flat_rate'];
|
|
32591
|
+
export const flatRateLabelReversal = T['io.flow.internal.v0.models.flat_rate_label_reversal'];
|
|
32592
|
+
export const flatRateLabelReversalDeleted = T['io.flow.internal.v0.models.flat_rate_label_reversal_deleted'];
|
|
32593
|
+
export const flatRateLabelReversalUpserted = T['io.flow.internal.v0.models.flat_rate_label_reversal_upserted'];
|
|
32154
32594
|
export const flatRateLabelTransaction = T['io.flow.internal.v0.models.flat_rate_label_transaction'];
|
|
32155
32595
|
export const flatRateLabelTransactionType = T['io.flow.internal.v0.enums.flat_rate_label_transaction_type'];
|
|
32156
32596
|
export const flexeWebhook = T['io.flow.internal.v0.models.flexe_webhook'];
|
|
@@ -32359,8 +32799,6 @@ export const labProjectSettingsFormAcceptance = T['io.flow.internal.v0.models.la
|
|
|
32359
32799
|
export const labelAliases = T['io.flow.internal.v0.models.label_aliases'];
|
|
32360
32800
|
export const labelAssociation = T['io.flow.internal.v0.models.label_association'];
|
|
32361
32801
|
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
32802
|
export const labelCreationJob = T['io.flow.internal.v0.models.label_creation_job'];
|
|
32365
32803
|
export const labelCreationJobDeleted = T['io.flow.internal.v0.models.label_creation_job_deleted'];
|
|
32366
32804
|
export const labelCreationJobSummary = T['io.flow.internal.v0.models.label_creation_job_summary'];
|
|
@@ -32427,6 +32865,9 @@ export const loyaltyProgram = T['io.flow.internal.v0.models.loyalty_program'];
|
|
|
32427
32865
|
export const loyaltyProgramMessage = T['io.flow.internal.v0.models.loyalty_program_message'];
|
|
32428
32866
|
export const loyaltyProgramReward = T['io.flow.internal.v0.models.loyalty_program_reward'];
|
|
32429
32867
|
export const loyaltyProgramRewards = T['io.flow.internal.v0.models.loyalty_program_rewards'];
|
|
32868
|
+
export const maheshItem = T['io.flow.internal.v0.models.mahesh_item'];
|
|
32869
|
+
export const maheshItemForm = T['io.flow.internal.v0.models.mahesh_item_form'];
|
|
32870
|
+
export const maheshItemType = T['io.flow.internal.v0.enums.mahesh_item_type'];
|
|
32430
32871
|
export const mailClass = T['io.flow.internal.v0.enums.mail_class'];
|
|
32431
32872
|
export const mainTransaction = T['io.flow.internal.v0.models.main_transaction'];
|
|
32432
32873
|
export const mainTransactionDeleted = T['io.flow.internal.v0.models.main_transaction_deleted'];
|
|
@@ -32732,6 +33173,8 @@ export const preonboardingClassificationRequest = T['io.flow.internal.v0.models.
|
|
|
32732
33173
|
export const preonboardingClassificationResult = T['io.flow.internal.v0.models.preonboarding_classification_result'];
|
|
32733
33174
|
export const preonboardingClassificationType = T['io.flow.internal.v0.enums.preonboarding_classification_type'];
|
|
32734
33175
|
export const preonboardingMerchant = T['io.flow.internal.v0.models.preonboarding_merchant'];
|
|
33176
|
+
export const preonboardingMerchantDeleted = T['io.flow.internal.v0.models.preonboarding_merchant_deleted'];
|
|
33177
|
+
export const preonboardingMerchantUpserted = T['io.flow.internal.v0.models.preonboarding_merchant_upserted'];
|
|
32735
33178
|
export const preonboardingRequestStatus = T['io.flow.internal.v0.enums.preonboarding_request_status'];
|
|
32736
33179
|
export const preonboardingSellabilityResult = T['io.flow.internal.v0.models.preonboarding_sellability_result'];
|
|
32737
33180
|
export const preonboardingSellabilityResultDeleted = T['io.flow.internal.v0.models.preonboarding_sellability_result_deleted'];
|
|
@@ -32851,8 +33294,10 @@ export const ratecardServiceFeesOverrideForm = T['io.flow.internal.v0.models.rat
|
|
|
32851
33294
|
export const ratesChanged = T['io.flow.internal.v0.models.rates_changed'];
|
|
32852
33295
|
export const ratesNamesSummary = T['io.flow.internal.v0.models.rates_names_summary'];
|
|
32853
33296
|
export const raveenaItem = T['io.flow.internal.v0.models.raveena_item'];
|
|
33297
|
+
export const raveenaItemDeleted = T['io.flow.internal.v0.models.raveena_item_deleted'];
|
|
32854
33298
|
export const raveenaItemForm = T['io.flow.internal.v0.models.raveena_item_form'];
|
|
32855
33299
|
export const raveenaItemType = T['io.flow.internal.v0.enums.raveena_item_type'];
|
|
33300
|
+
export const raveenaItemUpserted = T['io.flow.internal.v0.models.raveena_item_upserted'];
|
|
32856
33301
|
export const recordReference = T['io.flow.internal.v0.models.record_reference'];
|
|
32857
33302
|
export const redirect = T['io.flow.internal.v0.models.redirect'];
|
|
32858
33303
|
export const redirectActionCompleted = T['io.flow.internal.v0.models.redirect_action_completed'];
|
|
@@ -32894,6 +33339,8 @@ export const reportingDebugMissingSubsidies = T['io.flow.internal.v0.models.repo
|
|
|
32894
33339
|
export const reportingDestination = T['io.flow.internal.v0.models.reporting_destination'];
|
|
32895
33340
|
export const reportingDetails = T['io.flow.internal.v0.models.reporting_details'];
|
|
32896
33341
|
export const reportingFees = T['io.flow.internal.v0.models.reporting_fees'];
|
|
33342
|
+
export const reportingFreight = T['io.flow.internal.v0.models.reporting_freight'];
|
|
33343
|
+
export const reportingFreightGuaranteed = T['io.flow.internal.v0.models.reporting_freight_guaranteed'];
|
|
32897
33344
|
export const reportingFulfillment = T['io.flow.internal.v0.models.reporting_fulfillment'];
|
|
32898
33345
|
export const reportingFulfillmentHas = T['io.flow.internal.v0.models.reporting_fulfillment_has'];
|
|
32899
33346
|
export const reportingFulfillmentIs = T['io.flow.internal.v0.models.reporting_fulfillment_is'];
|
|
@@ -32976,6 +33423,12 @@ export const restrictionRuleUpserted = T['io.flow.internal.v0.models.restriction
|
|
|
32976
33423
|
export const restrictionStateReviewStatus = T['io.flow.internal.v0.enums.restriction_state_review_status'];
|
|
32977
33424
|
export const restrictionStatus = T['io.flow.internal.v0.enums.restriction_status'];
|
|
32978
33425
|
export const restrictionSummaryCounts = T['io.flow.internal.v0.models.restriction_summary_counts'];
|
|
33426
|
+
export const restrictionsAthenaDailyopsFs = T['io.flow.internal.v0.models.restrictions_athena_dailyops_fs'];
|
|
33427
|
+
export const restrictionsAthenaDailyopsFsDeleted = T['io.flow.internal.v0.models.restrictions_athena_dailyops_fs_deleted'];
|
|
33428
|
+
export const restrictionsAthenaDailyopsFsUpserted = T['io.flow.internal.v0.models.restrictions_athena_dailyops_fs_upserted'];
|
|
33429
|
+
export const restrictionsAthenaDailyopsPcPv = T['io.flow.internal.v0.models.restrictions_athena_dailyops_pc_pv'];
|
|
33430
|
+
export const restrictionsAthenaDailyopsPcPvDeleted = T['io.flow.internal.v0.models.restrictions_athena_dailyops_pc_pv_deleted'];
|
|
33431
|
+
export const restrictionsAthenaDailyopsPcPvUpserted = T['io.flow.internal.v0.models.restrictions_athena_dailyops_pc_pv_upserted'];
|
|
32979
33432
|
export const restrictionsDailyops = T['io.flow.internal.v0.models.restrictions_dailyops'];
|
|
32980
33433
|
export const restrictionsDailyopsDeleted = T['io.flow.internal.v0.models.restrictions_dailyops_deleted'];
|
|
32981
33434
|
export const restrictionsDailyopsUpserted = T['io.flow.internal.v0.models.restrictions_dailyops_upserted'];
|
|
@@ -33035,6 +33488,9 @@ export const shippingPricing = T['io.flow.internal.v0.models.shipping_pricing'];
|
|
|
33035
33488
|
export const shippingRateEstimateAvailableInternal = T['io.flow.internal.v0.models.shipping_rate_estimate_available_internal'];
|
|
33036
33489
|
export const shippingRateEstimateInternal = T['io.flow.internal.v0.models.shipping_rate_estimate_internal'];
|
|
33037
33490
|
export const shippingRateEstimateRequestInternal = T['io.flow.internal.v0.models.shipping_rate_estimate_request_internal'];
|
|
33491
|
+
export const shopifyAdaptivePricingCoefficients = T['io.flow.internal.v0.models.shopify_adaptive_pricing_coefficients'];
|
|
33492
|
+
export const shopifyAdaptivePricingCoefficientsDeleted = T['io.flow.internal.v0.models.shopify_adaptive_pricing_coefficients_deleted'];
|
|
33493
|
+
export const shopifyAdaptivePricingCoefficientsUpserted = T['io.flow.internal.v0.models.shopify_adaptive_pricing_coefficients_upserted'];
|
|
33038
33494
|
export const shopifyAddress = T['io.flow.internal.v0.models.shopify_address'];
|
|
33039
33495
|
export const shopifyCallbackError = T['io.flow.internal.v0.models.shopify_callback_error'];
|
|
33040
33496
|
export const shopifyCallbackErrorCode = T['io.flow.internal.v0.enums.shopify_callback_error_code'];
|
|
@@ -33101,6 +33557,10 @@ export const shopifyMarketsWebhookRegistration = T['io.flow.internal.v0.models.s
|
|
|
33101
33557
|
export const shopifyMarketsWebhookRegistrationDeleted = T['io.flow.internal.v0.models.shopify_markets_webhook_registration_deleted'];
|
|
33102
33558
|
export const shopifyMarketsWebhookRegistrationUpserted = T['io.flow.internal.v0.models.shopify_markets_webhook_registration_upserted'];
|
|
33103
33559
|
export const shopifyMeasurements = T['io.flow.internal.v0.models.shopify_measurements'];
|
|
33560
|
+
export const shopifyMerchantMarketCountry = T['io.flow.internal.v0.models.shopify_merchant_market_country'];
|
|
33561
|
+
export const shopifyMerchantMarkets = T['io.flow.internal.v0.models.shopify_merchant_markets'];
|
|
33562
|
+
export const shopifyMerchantMarketsDeleted = T['io.flow.internal.v0.models.shopify_merchant_markets_deleted'];
|
|
33563
|
+
export const shopifyMerchantMarketsUpserted = T['io.flow.internal.v0.models.shopify_merchant_markets_upserted'];
|
|
33104
33564
|
export const shopifyMerchantPlan = T['io.flow.internal.v0.models.shopify_merchant_plan'];
|
|
33105
33565
|
export const shopifyMerchantPlanDeleted = T['io.flow.internal.v0.models.shopify_merchant_plan_deleted'];
|
|
33106
33566
|
export const shopifyMerchantPlanUpserted = T['io.flow.internal.v0.models.shopify_merchant_plan_upserted'];
|