@flowio/api-internal-prop-types 9.24.130 → 9.24.134
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 +531 -338
- package/lib/api-internal.js +1 -1
- package/package.json +2 -2
- package/src/api-internal.d.ts +531 -338
- package/src/api-internal.js +699 -388
package/src/api-internal.js
CHANGED
|
@@ -67,9 +67,16 @@ T['io.flow.organization.v0.models.country_picker'] = PropTypes.exact({
|
|
|
67
67
|
|
|
68
68
|
T['io.flow.sellability.v0.enums.sellability_screening_mode'] = PropTypes.oneOf(['pre_onboarding', 'default_on', 'active']);
|
|
69
69
|
|
|
70
|
+
T['io.flow.sellability.v0.models.sellability_reason_with_regions'] = PropTypes.exact({
|
|
71
|
+
reason: PropTypes.string.isRequired,
|
|
72
|
+
regions: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
73
|
+
review_status: PropTypes.string,
|
|
74
|
+
});
|
|
75
|
+
|
|
70
76
|
T['io.flow.sellability.v0.models.sellability_needs_action_attributes'] = PropTypes.exact({
|
|
71
77
|
reason_code: PropTypes.string.isRequired,
|
|
72
78
|
category_metafield_handles: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
79
|
+
category_metafield_ids: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
73
80
|
require_msds: PropTypes.bool,
|
|
74
81
|
});
|
|
75
82
|
|
|
@@ -101,6 +108,18 @@ T['io.flow.organization.onboarding.state.v0.enums.merchant_disabled_reason'] = P
|
|
|
101
108
|
T['io.flow.apple.pay.v0.enums.apple_pay_line_item_type'] = PropTypes.oneOf(['final', 'pending']);
|
|
102
109
|
T['io.flow.catalog.return.v0.enums.return_policy_state'] = PropTypes.oneOf(['current', 'deleting', 'updating']);
|
|
103
110
|
|
|
111
|
+
T['io.flow.harmonization.v0.models.harmonization_tariff_code'] = PropTypes.exact({
|
|
112
|
+
tariff_code: PropTypes.string.isRequired,
|
|
113
|
+
destination: PropTypes.string.isRequired,
|
|
114
|
+
});
|
|
115
|
+
|
|
116
|
+
T['io.flow.harmonization.v0.models.tariff_codes'] = PropTypes.exact({
|
|
117
|
+
item_number: PropTypes.string.isRequired,
|
|
118
|
+
product_id: PropTypes.string.isRequired,
|
|
119
|
+
hs6_code: PropTypes.string.isRequired,
|
|
120
|
+
codes: PropTypes.arrayOf(T['io.flow.harmonization.v0.models.harmonization_tariff_code']).isRequired,
|
|
121
|
+
});
|
|
122
|
+
|
|
104
123
|
T['io.flow.billing.v0.models.bank_account_form_simple'] = PropTypes.exact({
|
|
105
124
|
discriminator: PropTypes.oneOf(['simple']).isRequired,
|
|
106
125
|
routing_number: PropTypes.string.isRequired,
|
|
@@ -149,12 +168,24 @@ T['io.flow.billing.v0.models.transaction_metadata_shipping_label_carrier'] = Pro
|
|
|
149
168
|
tracking_number: PropTypes.string.isRequired,
|
|
150
169
|
});
|
|
151
170
|
|
|
171
|
+
T['io.flow.billing.v0.models.transaction_metadata_merchant_fee_item'] = PropTypes.exact({
|
|
172
|
+
type: PropTypes.string.isRequired,
|
|
173
|
+
amount: PropTypes.number.isRequired,
|
|
174
|
+
local_amount: PropTypes.number,
|
|
175
|
+
description: PropTypes.string,
|
|
176
|
+
});
|
|
177
|
+
|
|
152
178
|
T['io.flow.billing.v0.models.transaction_metadata_outbound_transaction'] = PropTypes.exact({
|
|
153
179
|
transaction_id: PropTypes.string.isRequired,
|
|
154
180
|
});
|
|
155
181
|
|
|
156
182
|
T['io.flow.billing.v0.enums.statement_status_code'] = PropTypes.oneOf(['scheduled', 'sent', 'failed']);
|
|
157
183
|
|
|
184
|
+
T['io.flow.billing.v0.models.transaction_metadata_merchant_fee'] = PropTypes.exact({
|
|
185
|
+
discriminator: PropTypes.oneOf(['merchant_fee']).isRequired,
|
|
186
|
+
items: PropTypes.arrayOf(T['io.flow.billing.v0.models.transaction_metadata_merchant_fee_item']).isRequired,
|
|
187
|
+
});
|
|
188
|
+
|
|
158
189
|
T['io.flow.billing.v0.models.transaction_metadata_payment_transaction'] = PropTypes.exact({
|
|
159
190
|
discriminator: PropTypes.oneOf(['payment_transaction']).isRequired,
|
|
160
191
|
id: PropTypes.string,
|
|
@@ -402,7 +433,7 @@ T['io.flow.inventory.v0.models.inventory_follow_ecommerce_platform'] = PropTypes
|
|
|
402
433
|
|
|
403
434
|
T['io.flow.inventory.v0.models.inventory_unlimited'] = PropTypes.exact({
|
|
404
435
|
discriminator: PropTypes.oneOf(['inventory_unlimited']).isRequired,
|
|
405
|
-
placeholder: PropTypes.string,
|
|
436
|
+
placeholder: PropTypes.string.isRequired,
|
|
406
437
|
});
|
|
407
438
|
|
|
408
439
|
T['io.flow.inventory.v0.models.inventory_stock'] = PropTypes.exact({
|
|
@@ -807,6 +838,12 @@ T['io.flow.ratecard.v0.models.ratecard_rate'] = PropTypes.exact({
|
|
|
807
838
|
weight: PropTypes.number.isRequired,
|
|
808
839
|
});
|
|
809
840
|
|
|
841
|
+
T['io.flow.ratecard.v0.models.ratecard_data'] = PropTypes.exact({
|
|
842
|
+
dhlParcelDistributionCenter: PropTypes.string,
|
|
843
|
+
glbeRatecardMetadataLaneIdentifier: PropTypes.string,
|
|
844
|
+
pickupCenter: PropTypes.string,
|
|
845
|
+
});
|
|
846
|
+
|
|
810
847
|
T['io.flow.label.v0.enums.commercial_invoice_mode'] = PropTypes.oneOf(['direct', 'indirect']);
|
|
811
848
|
|
|
812
849
|
T['io.flow.ratecard.v0.models.fuel_surcharge_percent'] = PropTypes.exact({
|
|
@@ -1237,6 +1274,14 @@ T['io.flow.experience.v0.models.address_configuration_province'] = PropTypes.exa
|
|
|
1237
1274
|
),
|
|
1238
1275
|
});
|
|
1239
1276
|
|
|
1277
|
+
T['io.flow.shopify.markets.internal.event.v0.models.shopify_test_order_deleted'] = PropTypes.exact({
|
|
1278
|
+
discriminator: PropTypes.oneOf(['shopify_test_order_deleted']).isRequired,
|
|
1279
|
+
event_id: PropTypes.string.isRequired,
|
|
1280
|
+
timestamp: PropTypes.string.isRequired,
|
|
1281
|
+
organization: PropTypes.string.isRequired,
|
|
1282
|
+
id: PropTypes.string.isRequired,
|
|
1283
|
+
});
|
|
1284
|
+
|
|
1240
1285
|
T['io.flow.shopify.markets.internal.event.v0.models.shopify_order_transaction_deleted'] = PropTypes.exact({
|
|
1241
1286
|
discriminator: PropTypes.oneOf(['shopify_order_transaction_deleted']).isRequired,
|
|
1242
1287
|
event_id: PropTypes.string.isRequired,
|
|
@@ -1338,6 +1383,19 @@ T['io.flow.shopify.markets.internal.event.v0.models.shopify_markets_shop_deleted
|
|
|
1338
1383
|
id: PropTypes.string.isRequired,
|
|
1339
1384
|
});
|
|
1340
1385
|
|
|
1386
|
+
T['io.flow.shopify.markets.internal.v0.models.shopify_test_order'] = PropTypes.exact({
|
|
1387
|
+
id: PropTypes.string.isRequired,
|
|
1388
|
+
submitted_at: PropTypes.string.isRequired,
|
|
1389
|
+
});
|
|
1390
|
+
|
|
1391
|
+
T['io.flow.shopify.markets.internal.event.v0.models.shopify_test_order_upserted'] = PropTypes.exact({
|
|
1392
|
+
discriminator: PropTypes.oneOf(['shopify_test_order_upserted']).isRequired,
|
|
1393
|
+
event_id: PropTypes.string.isRequired,
|
|
1394
|
+
timestamp: PropTypes.string.isRequired,
|
|
1395
|
+
organization: PropTypes.string.isRequired,
|
|
1396
|
+
shopify_test_order: T['io.flow.shopify.markets.internal.v0.models.shopify_test_order'].isRequired,
|
|
1397
|
+
});
|
|
1398
|
+
|
|
1341
1399
|
T['io.flow.shopify.markets.internal.v0.models.shopify_product_taxonomy_attribute_value'] = PropTypes.exact({
|
|
1342
1400
|
id: PropTypes.string.isRequired,
|
|
1343
1401
|
attribute_id: PropTypes.string.isRequired,
|
|
@@ -1544,7 +1602,7 @@ T['io.flow.channel.internal.v0.models.channel_order_acceptance_failure'] = PropT
|
|
|
1544
1602
|
reason: PropTypes.string.isRequired,
|
|
1545
1603
|
});
|
|
1546
1604
|
|
|
1547
|
-
T['io.flow.order.price.v0.enums.order_price_fee_type'] = PropTypes.oneOf(['service', 'fx', 'tax', 'duties', 'tax_and_duties', 'product']);
|
|
1605
|
+
T['io.flow.order.price.v0.enums.order_price_fee_type'] = PropTypes.oneOf(['service', 'fx', 'tax', 'duties', 'tax_and_duties', 'product', 'mor_tax']);
|
|
1548
1606
|
|
|
1549
1607
|
T['io.flow.order.price.v0.enums.order_price_detail_component_key'] = PropTypes.oneOf([
|
|
1550
1608
|
'adjustment',
|
|
@@ -6784,7 +6842,7 @@ T['io.flow.payment.v0.models.capture_identifier'] = PropTypes.exact({
|
|
|
6784
6842
|
primary: PropTypes.bool.isRequired,
|
|
6785
6843
|
});
|
|
6786
6844
|
|
|
6787
|
-
T['io.flow.payment.v0.enums.payment_fee_type'] = PropTypes.oneOf(['fx', 'mor', 'sp']);
|
|
6845
|
+
T['io.flow.payment.v0.enums.payment_fee_type'] = PropTypes.oneOf(['fx', 'mor', 'sp', 'mor_tax']);
|
|
6788
6846
|
|
|
6789
6847
|
T['io.flow.payment.v0.models.card_browser_action_configuration'] = PropTypes.exact({
|
|
6790
6848
|
discriminator: PropTypes.oneOf(['card_browser_action_configuration']).isRequired,
|
|
@@ -8250,25 +8308,6 @@ T['io.flow.merchant.onboarding.v0.models.monthly_average'] = PropTypes.exact({
|
|
|
8250
8308
|
number_transactions: PropTypes.number,
|
|
8251
8309
|
});
|
|
8252
8310
|
|
|
8253
|
-
T['io.flow.merchant.onboarding.v0.models.operations_contact'] = PropTypes.exact({
|
|
8254
|
-
company: PropTypes.string,
|
|
8255
|
-
email: PropTypes.string,
|
|
8256
|
-
phone: PropTypes.string,
|
|
8257
|
-
});
|
|
8258
|
-
|
|
8259
|
-
T['io.flow.merchant.onboarding.v0.models.third_party_logistics_partner'] = PropTypes.exact({
|
|
8260
|
-
warehouse_address: T['io.flow.merchant.onboarding.v0.models.merchant_onboarding_address'].isRequired,
|
|
8261
|
-
warehouse_url: PropTypes.string,
|
|
8262
|
-
location: T['io.flow.merchant.onboarding.v0.models.merchant_onboarding_address'],
|
|
8263
|
-
|
|
8264
|
-
scheduled_pickups: PropTypes.arrayOf(
|
|
8265
|
-
T['io.flow.merchant.onboarding.v0.models.onboarding_merchant_scheduled_pickup'],
|
|
8266
|
-
),
|
|
8267
|
-
|
|
8268
|
-
operations_contact: T['io.flow.merchant.onboarding.v0.models.operations_contact'].isRequired,
|
|
8269
|
-
center_id: PropTypes.string,
|
|
8270
|
-
});
|
|
8271
|
-
|
|
8272
8311
|
T['io.flow.merchant.onboarding.v0.models.ultimate_beneficiary_owner'] = PropTypes.exact({
|
|
8273
8312
|
name: PropTypes.string.isRequired,
|
|
8274
8313
|
dob: PropTypes.string.isRequired,
|
|
@@ -8569,57 +8608,15 @@ T['io.flow.internal.v0.models.tracking_processing_error_deleted'] = PropTypes.ex
|
|
|
8569
8608
|
id: PropTypes.string.isRequired,
|
|
8570
8609
|
});
|
|
8571
8610
|
|
|
8572
|
-
T['io.flow.internal.v0.models.
|
|
8573
|
-
discriminator: PropTypes.oneOf(['
|
|
8574
|
-
event_id: PropTypes.string.isRequired,
|
|
8575
|
-
timestamp: PropTypes.string.isRequired,
|
|
8576
|
-
id: PropTypes.string.isRequired,
|
|
8577
|
-
});
|
|
8578
|
-
|
|
8579
|
-
T['io.flow.internal.v0.models.ansh_item_deleted'] = PropTypes.exact({
|
|
8580
|
-
discriminator: PropTypes.oneOf(['ansh_item_deleted']).isRequired,
|
|
8611
|
+
T['io.flow.internal.v0.models.chenglin_item_deleted'] = PropTypes.exact({
|
|
8612
|
+
discriminator: PropTypes.oneOf(['chenglin_item_deleted']).isRequired,
|
|
8581
8613
|
event_id: PropTypes.string.isRequired,
|
|
8582
8614
|
timestamp: PropTypes.string.isRequired,
|
|
8583
8615
|
id: PropTypes.string.isRequired,
|
|
8584
8616
|
});
|
|
8585
8617
|
|
|
8586
|
-
T['io.flow.internal.v0.models.
|
|
8587
|
-
discriminator: PropTypes.oneOf(['
|
|
8588
|
-
event_id: PropTypes.string.isRequired,
|
|
8589
|
-
timestamp: PropTypes.string.isRequired,
|
|
8590
|
-
id: PropTypes.string.isRequired,
|
|
8591
|
-
});
|
|
8592
|
-
|
|
8593
|
-
T['io.flow.internal.v0.models.rohan_item_deleted'] = PropTypes.exact({
|
|
8594
|
-
discriminator: PropTypes.oneOf(['rohan_item_deleted']).isRequired,
|
|
8595
|
-
event_id: PropTypes.string.isRequired,
|
|
8596
|
-
timestamp: PropTypes.string.isRequired,
|
|
8597
|
-
id: PropTypes.string.isRequired,
|
|
8598
|
-
});
|
|
8599
|
-
|
|
8600
|
-
T['io.flow.internal.v0.models.niall_item_deleted'] = PropTypes.exact({
|
|
8601
|
-
discriminator: PropTypes.oneOf(['niall_item_deleted']).isRequired,
|
|
8602
|
-
event_id: PropTypes.string.isRequired,
|
|
8603
|
-
timestamp: PropTypes.string.isRequired,
|
|
8604
|
-
id: PropTypes.string.isRequired,
|
|
8605
|
-
});
|
|
8606
|
-
|
|
8607
|
-
T['io.flow.internal.v0.models.hosein_item_deleted'] = PropTypes.exact({
|
|
8608
|
-
discriminator: PropTypes.oneOf(['hosein_item_deleted']).isRequired,
|
|
8609
|
-
event_id: PropTypes.string.isRequired,
|
|
8610
|
-
timestamp: PropTypes.string.isRequired,
|
|
8611
|
-
id: PropTypes.string.isRequired,
|
|
8612
|
-
});
|
|
8613
|
-
|
|
8614
|
-
T['io.flow.internal.v0.models.sarvesh_item_deleted'] = PropTypes.exact({
|
|
8615
|
-
discriminator: PropTypes.oneOf(['sarvesh_item_deleted']).isRequired,
|
|
8616
|
-
event_id: PropTypes.string.isRequired,
|
|
8617
|
-
timestamp: PropTypes.string.isRequired,
|
|
8618
|
-
id: PropTypes.string.isRequired,
|
|
8619
|
-
});
|
|
8620
|
-
|
|
8621
|
-
T['io.flow.internal.v0.models.anirban_item_deleted'] = PropTypes.exact({
|
|
8622
|
-
discriminator: PropTypes.oneOf(['anirban_item_deleted']).isRequired,
|
|
8618
|
+
T['io.flow.internal.v0.models.gabriel_item_deleted'] = PropTypes.exact({
|
|
8619
|
+
discriminator: PropTypes.oneOf(['gabriel_item_deleted']).isRequired,
|
|
8623
8620
|
event_id: PropTypes.string.isRequired,
|
|
8624
8621
|
timestamp: PropTypes.string.isRequired,
|
|
8625
8622
|
id: PropTypes.string.isRequired,
|
|
@@ -8716,6 +8713,14 @@ T['io.flow.internal.v0.models.shopify_product_create_deleted'] = PropTypes.exact
|
|
|
8716
8713
|
id: PropTypes.string.isRequired,
|
|
8717
8714
|
});
|
|
8718
8715
|
|
|
8716
|
+
T['io.flow.internal.v0.models.shopify_test_order_deleted'] = PropTypes.exact({
|
|
8717
|
+
discriminator: PropTypes.oneOf(['shopify_test_order_deleted']).isRequired,
|
|
8718
|
+
event_id: PropTypes.string.isRequired,
|
|
8719
|
+
timestamp: PropTypes.string.isRequired,
|
|
8720
|
+
organization: PropTypes.string.isRequired,
|
|
8721
|
+
id: PropTypes.string.isRequired,
|
|
8722
|
+
});
|
|
8723
|
+
|
|
8719
8724
|
T['io.flow.internal.v0.models.shopify_order_transaction_deleted'] = PropTypes.exact({
|
|
8720
8725
|
discriminator: PropTypes.oneOf(['shopify_order_transaction_deleted']).isRequired,
|
|
8721
8726
|
event_id: PropTypes.string.isRequired,
|
|
@@ -8877,6 +8882,13 @@ T['io.flow.internal.v0.models.ratecard_standard_configuration_deleted'] = PropTy
|
|
|
8877
8882
|
id: PropTypes.string.isRequired,
|
|
8878
8883
|
});
|
|
8879
8884
|
|
|
8885
|
+
T['io.flow.internal.v0.models.product_sellability_result_deleted'] = PropTypes.exact({
|
|
8886
|
+
discriminator: PropTypes.oneOf(['product_sellability_result_deleted']).isRequired,
|
|
8887
|
+
event_id: PropTypes.string.isRequired,
|
|
8888
|
+
timestamp: PropTypes.string.isRequired,
|
|
8889
|
+
id: PropTypes.string.isRequired,
|
|
8890
|
+
});
|
|
8891
|
+
|
|
8880
8892
|
T['io.flow.internal.v0.models.product_restriction_rule_decision_deleted'] = PropTypes.exact({
|
|
8881
8893
|
discriminator: PropTypes.oneOf(['product_restriction_rule_decision_deleted']).isRequired,
|
|
8882
8894
|
event_id: PropTypes.string.isRequired,
|
|
@@ -8885,6 +8897,13 @@ T['io.flow.internal.v0.models.product_restriction_rule_decision_deleted'] = Prop
|
|
|
8885
8897
|
id: PropTypes.string.isRequired,
|
|
8886
8898
|
});
|
|
8887
8899
|
|
|
8900
|
+
T['io.flow.internal.v0.models.preonboarding_sellability_result_deleted'] = PropTypes.exact({
|
|
8901
|
+
discriminator: PropTypes.oneOf(['preonboarding_sellability_result_deleted']).isRequired,
|
|
8902
|
+
event_id: PropTypes.string.isRequired,
|
|
8903
|
+
timestamp: PropTypes.string.isRequired,
|
|
8904
|
+
id: PropTypes.string.isRequired,
|
|
8905
|
+
});
|
|
8906
|
+
|
|
8888
8907
|
T['io.flow.internal.v0.models.paypal_dispute_deleted'] = PropTypes.exact({
|
|
8889
8908
|
discriminator: PropTypes.oneOf(['paypal_dispute_deleted']).isRequired,
|
|
8890
8909
|
event_id: PropTypes.string.isRequired,
|
|
@@ -9224,6 +9243,14 @@ T['io.flow.internal.v0.models.fraud_review_deleted'] = PropTypes.exact({
|
|
|
9224
9243
|
id: PropTypes.string.isRequired,
|
|
9225
9244
|
});
|
|
9226
9245
|
|
|
9246
|
+
T['io.flow.internal.v0.models.shipping_cost_deleted'] = PropTypes.exact({
|
|
9247
|
+
discriminator: PropTypes.oneOf(['shipping_cost_deleted']).isRequired,
|
|
9248
|
+
event_id: PropTypes.string.isRequired,
|
|
9249
|
+
timestamp: PropTypes.string.isRequired,
|
|
9250
|
+
organization: PropTypes.string.isRequired,
|
|
9251
|
+
id: PropTypes.string.isRequired,
|
|
9252
|
+
});
|
|
9253
|
+
|
|
9227
9254
|
T['io.flow.internal.v0.models.bank_payment_order_deleted'] = PropTypes.exact({
|
|
9228
9255
|
discriminator: PropTypes.oneOf(['bank_payment_order_deleted']).isRequired,
|
|
9229
9256
|
event_id: PropTypes.string.isRequired,
|
|
@@ -9467,14 +9494,6 @@ T['io.flow.internal.v0.models.catalog_settings_deleted'] = PropTypes.exact({
|
|
|
9467
9494
|
id: PropTypes.string.isRequired,
|
|
9468
9495
|
});
|
|
9469
9496
|
|
|
9470
|
-
T['io.flow.internal.v0.models.label_generation_settings_deleted'] = PropTypes.exact({
|
|
9471
|
-
discriminator: PropTypes.oneOf(['label_generation_settings_deleted']).isRequired,
|
|
9472
|
-
event_id: PropTypes.string.isRequired,
|
|
9473
|
-
timestamp: PropTypes.string.isRequired,
|
|
9474
|
-
organization: PropTypes.string.isRequired,
|
|
9475
|
-
id: PropTypes.string.isRequired,
|
|
9476
|
-
});
|
|
9477
|
-
|
|
9478
9497
|
T['io.flow.internal.v0.models.carrier_account_deleted'] = PropTypes.exact({
|
|
9479
9498
|
discriminator: PropTypes.oneOf(['carrier_account_deleted']).isRequired,
|
|
9480
9499
|
event_id: PropTypes.string.isRequired,
|
|
@@ -9996,6 +10015,7 @@ T['io.flow.billing.v0.enums.tax_duty_transaction_reason_code'] = PropTypes.oneOf
|
|
|
9996
10015
|
'wyol_shipment_above_de_min',
|
|
9997
10016
|
'full_refund_without_shipment',
|
|
9998
10017
|
'unfulfilled_order_above_de_min',
|
|
10018
|
+
'order_cancellation_without_capture',
|
|
9999
10019
|
]);
|
|
10000
10020
|
|
|
10001
10021
|
T['io.flow.billing.v0.models.transaction_metadata_tax_duty'] = PropTypes.exact({
|
|
@@ -10381,6 +10401,187 @@ T['io.flow.internal.v0.models.fulfillment_subsidy_breakdown'] = PropTypes.exact(
|
|
|
10381
10401
|
total: PropTypes.number.isRequired,
|
|
10382
10402
|
});
|
|
10383
10403
|
|
|
10404
|
+
T['io.flow.internal.v0.models.shopify_test_order'] = PropTypes.exact({
|
|
10405
|
+
id: PropTypes.string.isRequired,
|
|
10406
|
+
submitted_at: PropTypes.string.isRequired,
|
|
10407
|
+
});
|
|
10408
|
+
|
|
10409
|
+
T['io.flow.internal.v0.models.shopify_test_order_upserted'] = PropTypes.exact({
|
|
10410
|
+
discriminator: PropTypes.oneOf(['shopify_test_order_upserted']).isRequired,
|
|
10411
|
+
event_id: PropTypes.string.isRequired,
|
|
10412
|
+
timestamp: PropTypes.string.isRequired,
|
|
10413
|
+
organization: PropTypes.string.isRequired,
|
|
10414
|
+
shopify_test_order: T['io.flow.internal.v0.models.shopify_test_order'].isRequired,
|
|
10415
|
+
});
|
|
10416
|
+
|
|
10417
|
+
T['io.flow.internal.v0.models.shopify_contact_details'] = PropTypes.exact({
|
|
10418
|
+
company: PropTypes.string,
|
|
10419
|
+
email: PropTypes.string,
|
|
10420
|
+
name: PropTypes.string,
|
|
10421
|
+
phone: PropTypes.string,
|
|
10422
|
+
});
|
|
10423
|
+
|
|
10424
|
+
T['io.flow.internal.v0.models.shopify_address'] = PropTypes.exact({
|
|
10425
|
+
address1: PropTypes.string.isRequired,
|
|
10426
|
+
city: PropTypes.string.isRequired,
|
|
10427
|
+
country_code: PropTypes.string.isRequired,
|
|
10428
|
+
address2: PropTypes.string,
|
|
10429
|
+
postal_code: PropTypes.string,
|
|
10430
|
+
province: PropTypes.string,
|
|
10431
|
+
});
|
|
10432
|
+
|
|
10433
|
+
T['io.flow.internal.v0.models.shopify_rate_pickup_point'] = PropTypes.exact({
|
|
10434
|
+
partner_reference_id: PropTypes.string.isRequired,
|
|
10435
|
+
});
|
|
10436
|
+
|
|
10437
|
+
T['io.flow.internal.v0.models.shopify_shipping_location'] = PropTypes.exact({
|
|
10438
|
+
address: T['io.flow.internal.v0.models.shopify_address'].isRequired,
|
|
10439
|
+
contact_details: T['io.flow.internal.v0.models.shopify_contact_details'].isRequired,
|
|
10440
|
+
});
|
|
10441
|
+
|
|
10442
|
+
T['io.flow.internal.v0.enums.shopify_delivery_method_type'] = PropTypes.oneOf(['SHIPPING', 'PICKUP_POINT']);
|
|
10443
|
+
|
|
10444
|
+
T['io.flow.internal.v0.models.shopify_shipment_rate_shipper'] = PropTypes.exact({
|
|
10445
|
+
account_id: PropTypes.string.isRequired,
|
|
10446
|
+
carrier_account_reference_id: PropTypes.string.isRequired,
|
|
10447
|
+
byoa: PropTypes.bool.isRequired,
|
|
10448
|
+
});
|
|
10449
|
+
|
|
10450
|
+
T['io.flow.internal.v0.enums.shopify_unavailable_rate_reason_code'] = PropTypes.oneOf([
|
|
10451
|
+
'SERVICE_NOT_AVAILABLE',
|
|
10452
|
+
'TEMPORARILY_UNAVAILABLE',
|
|
10453
|
+
'TIMEOUT',
|
|
10454
|
+
'RATE_LIMIT_EXCEEDED',
|
|
10455
|
+
'SYSTEM_ERROR',
|
|
10456
|
+
'THIRD_PARTY_SYSTEM_ERROR',
|
|
10457
|
+
'FAILED_VALIDATION',
|
|
10458
|
+
'INVALID_FORMAT',
|
|
10459
|
+
'MISSING_VALUE',
|
|
10460
|
+
'OUT_OF_RANGE',
|
|
10461
|
+
]);
|
|
10462
|
+
|
|
10463
|
+
T['io.flow.internal.v0.models.shopify_shipment_rate_reason'] = PropTypes.exact({
|
|
10464
|
+
code: T['io.flow.internal.v0.enums.shopify_unavailable_rate_reason_code'].isRequired,
|
|
10465
|
+
field: PropTypes.string,
|
|
10466
|
+
message: PropTypes.string,
|
|
10467
|
+
});
|
|
10468
|
+
|
|
10469
|
+
T['io.flow.internal.v0.models.shopify_shipment_rate_unavailable'] = PropTypes.exact({
|
|
10470
|
+
carrier_service_id: PropTypes.string.isRequired,
|
|
10471
|
+
reasons: PropTypes.arrayOf(T['io.flow.internal.v0.models.shopify_shipment_rate_reason']).isRequired,
|
|
10472
|
+
});
|
|
10473
|
+
|
|
10474
|
+
T['io.flow.internal.v0.enums.shopify_package_type'] = PropTypes.oneOf(['BOX', 'ENVELOPE', 'SOFT_PACK', 'TUBE', 'CARRIER_PACKAGING']);
|
|
10475
|
+
|
|
10476
|
+
T['io.flow.internal.v0.enums.shopify_shipment_option_code'] = PropTypes.oneOf([
|
|
10477
|
+
'adult_signature_required',
|
|
10478
|
+
'delivery_confirmation',
|
|
10479
|
+
'insurance',
|
|
10480
|
+
'named_person_only',
|
|
10481
|
+
'no_neighbour_delivery',
|
|
10482
|
+
'pickup',
|
|
10483
|
+
'package_pickup',
|
|
10484
|
+
'signature_required',
|
|
10485
|
+
'proof_of_age',
|
|
10486
|
+
'proof_of_age_16',
|
|
10487
|
+
'proof_of_age_18',
|
|
10488
|
+
'proof_of_age_19',
|
|
10489
|
+
'proof_of_age_21',
|
|
10490
|
+
'incoterm_ddp',
|
|
10491
|
+
'incoterm_dap',
|
|
10492
|
+
'usps_first_mile',
|
|
10493
|
+
]);
|
|
10494
|
+
|
|
10495
|
+
T['io.flow.internal.v0.enums.shopify_charge_code'] = PropTypes.oneOf([
|
|
10496
|
+
'transport_cost',
|
|
10497
|
+
'above_threshold',
|
|
10498
|
+
'additional_handling',
|
|
10499
|
+
'customs_additional_fees',
|
|
10500
|
+
'customs_clearance',
|
|
10501
|
+
'customs_duties',
|
|
10502
|
+
'customs_regulatory_fee',
|
|
10503
|
+
'customs_duty',
|
|
10504
|
+
'customs_taxes',
|
|
10505
|
+
'dangerous_goods',
|
|
10506
|
+
'delivery_area_surcharge',
|
|
10507
|
+
'duties_fx_surcharge',
|
|
10508
|
+
'discount',
|
|
10509
|
+
'eei_filing',
|
|
10510
|
+
'elevated_risk_area_surcharge',
|
|
10511
|
+
'emergency_situation_surcharge',
|
|
10512
|
+
'environmental_surcharge',
|
|
10513
|
+
'fuel_surcharge',
|
|
10514
|
+
'oversize_piece_surcharge',
|
|
10515
|
+
'packaging',
|
|
10516
|
+
'pickup_area_surcharge',
|
|
10517
|
+
'peak_surcharge',
|
|
10518
|
+
'remote_delivery_area_surcharge',
|
|
10519
|
+
'residential_surcharge',
|
|
10520
|
+
'security_surcharge',
|
|
10521
|
+
'shipper_intercept',
|
|
10522
|
+
'address_correction',
|
|
10523
|
+
'undeliverable',
|
|
10524
|
+
'unknown',
|
|
10525
|
+
'prohibited_item',
|
|
10526
|
+
'trade_restriction_surcharge',
|
|
10527
|
+
'processing',
|
|
10528
|
+
'delivery',
|
|
10529
|
+
'notification',
|
|
10530
|
+
'broker_notification',
|
|
10531
|
+
'delivery_confirmation',
|
|
10532
|
+
'signature_required',
|
|
10533
|
+
'tax_gst',
|
|
10534
|
+
'tax_hst',
|
|
10535
|
+
'tax_pst',
|
|
10536
|
+
'tax_vat',
|
|
10537
|
+
'discount_tax',
|
|
10538
|
+
'incoterm_ddp',
|
|
10539
|
+
]);
|
|
10540
|
+
|
|
10541
|
+
T['io.flow.internal.v0.models.shopify_money'] = PropTypes.exact({
|
|
10542
|
+
amount: PropTypes.number.isRequired,
|
|
10543
|
+
currency_code: PropTypes.string.isRequired,
|
|
10544
|
+
});
|
|
10545
|
+
|
|
10546
|
+
T['io.flow.internal.v0.models.shopify_shipment_rate_option'] = PropTypes.exact({
|
|
10547
|
+
code: T['io.flow.internal.v0.enums.shopify_shipment_option_code'].isRequired,
|
|
10548
|
+
cost: T['io.flow.internal.v0.models.shopify_money'].isRequired,
|
|
10549
|
+
optional: PropTypes.bool,
|
|
10550
|
+
});
|
|
10551
|
+
|
|
10552
|
+
T['io.flow.internal.v0.models.shopify_shipment_rate_charge'] = PropTypes.exact({
|
|
10553
|
+
code: T['io.flow.internal.v0.enums.shopify_charge_code'].isRequired,
|
|
10554
|
+
cost: T['io.flow.internal.v0.models.shopify_money'].isRequired,
|
|
10555
|
+
});
|
|
10556
|
+
|
|
10557
|
+
T['io.flow.internal.v0.models.shopify_shipment_rate_total_charges'] = PropTypes.exact({
|
|
10558
|
+
subtotal: T['io.flow.internal.v0.models.shopify_money'].isRequired,
|
|
10559
|
+
tax: T['io.flow.internal.v0.models.shopify_money'].isRequired,
|
|
10560
|
+
total: T['io.flow.internal.v0.models.shopify_money'].isRequired,
|
|
10561
|
+
});
|
|
10562
|
+
|
|
10563
|
+
T['io.flow.internal.v0.enums.shopify_incoterm'] = PropTypes.oneOf(['DAP', 'DDP']);
|
|
10564
|
+
|
|
10565
|
+
T['io.flow.internal.v0.models.shopify_shipment_rate_available'] = PropTypes.exact({
|
|
10566
|
+
carrier_service_id: PropTypes.string.isRequired,
|
|
10567
|
+
total_charges: T['io.flow.internal.v0.models.shopify_shipment_rate_total_charges'].isRequired,
|
|
10568
|
+
charges: PropTypes.arrayOf(T['io.flow.internal.v0.models.shopify_shipment_rate_charge']).isRequired,
|
|
10569
|
+
shipment_options: PropTypes.arrayOf(T['io.flow.internal.v0.models.shopify_shipment_rate_option']).isRequired,
|
|
10570
|
+
expected_delivery_date: PropTypes.string,
|
|
10571
|
+
guaranteed_delivery_date: PropTypes.string,
|
|
10572
|
+
incoterm: T['io.flow.internal.v0.enums.shopify_incoterm'],
|
|
10573
|
+
});
|
|
10574
|
+
|
|
10575
|
+
T['io.flow.internal.v0.models.shopify_shipment_rate_response'] = PropTypes.exact({
|
|
10576
|
+
rates: PropTypes.arrayOf(T['io.flow.internal.v0.models.shopify_shipment_rate_available']).isRequired,
|
|
10577
|
+
unavailable_rates: PropTypes.arrayOf(T['io.flow.internal.v0.models.shopify_shipment_rate_unavailable']).isRequired,
|
|
10578
|
+
});
|
|
10579
|
+
|
|
10580
|
+
T['io.flow.internal.v0.models.shopify_rate_customs_detail'] = PropTypes.exact({
|
|
10581
|
+
incoterm: T['io.flow.internal.v0.enums.shopify_incoterm'].isRequired,
|
|
10582
|
+
net_value: T['io.flow.internal.v0.models.shopify_money'].isRequired,
|
|
10583
|
+
});
|
|
10584
|
+
|
|
10384
10585
|
T['io.flow.internal.v0.models.shopify_product_taxonomy_attribute_value'] = PropTypes.exact({
|
|
10385
10586
|
id: PropTypes.string.isRequired,
|
|
10386
10587
|
attribute_id: PropTypes.string.isRequired,
|
|
@@ -10625,6 +10826,7 @@ T['io.flow.internal.v0.models.stripe_connect_report_record_payment_metadata'] =
|
|
|
10625
10826
|
mor_fees: PropTypes.number,
|
|
10626
10827
|
mor_foreign_exchange_fees: PropTypes.number,
|
|
10627
10828
|
sp_processing_fees: PropTypes.number,
|
|
10829
|
+
mor_fees_tax: PropTypes.number,
|
|
10628
10830
|
});
|
|
10629
10831
|
|
|
10630
10832
|
T['io.flow.internal.v0.unions.stripe_connect_report_record_metadata'] = PropTypes.oneOfType([
|
|
@@ -10664,6 +10866,43 @@ T['io.flow.internal.v0.models.stripe_connect_report_record_upserted'] = PropType
|
|
|
10664
10866
|
record: T['io.flow.internal.v0.models.stripe_connect_report_record'].isRequired,
|
|
10665
10867
|
});
|
|
10666
10868
|
|
|
10869
|
+
T['io.flow.internal.v0.enums.shopify_weight_unit'] = PropTypes.oneOf(['g', 'kg', 'lb', 'oz']);
|
|
10870
|
+
T['io.flow.internal.v0.enums.shopify_dimension_unit'] = PropTypes.oneOf(['cm', 'ft', 'in', 'm', 'mm']);
|
|
10871
|
+
|
|
10872
|
+
T['io.flow.internal.v0.models.shopify_measurements'] = PropTypes.exact({
|
|
10873
|
+
dimension_unit: T['io.flow.internal.v0.enums.shopify_dimension_unit'].isRequired,
|
|
10874
|
+
height: PropTypes.number.isRequired,
|
|
10875
|
+
length: PropTypes.number.isRequired,
|
|
10876
|
+
width: PropTypes.number.isRequired,
|
|
10877
|
+
weight: PropTypes.number.isRequired,
|
|
10878
|
+
weight_unit: T['io.flow.internal.v0.enums.shopify_weight_unit'].isRequired,
|
|
10879
|
+
});
|
|
10880
|
+
|
|
10881
|
+
T['io.flow.internal.v0.models.shopify_shipment_rate_package'] = PropTypes.exact({
|
|
10882
|
+
type: T['io.flow.internal.v0.enums.shopify_package_type'].isRequired,
|
|
10883
|
+
measurements: T['io.flow.internal.v0.models.shopify_measurements'].isRequired,
|
|
10884
|
+
});
|
|
10885
|
+
|
|
10886
|
+
T['io.flow.internal.v0.models.shopify_shipment_rate_shipment'] = PropTypes.exact({
|
|
10887
|
+
carrier_id: PropTypes.string.isRequired,
|
|
10888
|
+
delivery_method_type: T['io.flow.internal.v0.enums.shopify_delivery_method_type'].isRequired,
|
|
10889
|
+
shipping_date_time: PropTypes.string.isRequired,
|
|
10890
|
+
'return': PropTypes.bool.isRequired,
|
|
10891
|
+
origin: T['io.flow.internal.v0.models.shopify_shipping_location'].isRequired,
|
|
10892
|
+
destination: T['io.flow.internal.v0.models.shopify_shipping_location'].isRequired,
|
|
10893
|
+
'package': T['io.flow.internal.v0.models.shopify_shipment_rate_package'].isRequired,
|
|
10894
|
+
pickup_point: T['io.flow.internal.v0.models.shopify_rate_pickup_point'],
|
|
10895
|
+
customs_detail: T['io.flow.internal.v0.models.shopify_rate_customs_detail'],
|
|
10896
|
+
});
|
|
10897
|
+
|
|
10898
|
+
T['io.flow.internal.v0.models.shopify_shipment_rate_request'] = PropTypes.exact({
|
|
10899
|
+
idempotency_key: PropTypes.string.isRequired,
|
|
10900
|
+
webhook_id: PropTypes.string.isRequired,
|
|
10901
|
+
test: PropTypes.bool.isRequired,
|
|
10902
|
+
shipper: T['io.flow.internal.v0.models.shopify_shipment_rate_shipper'].isRequired,
|
|
10903
|
+
shipment: T['io.flow.internal.v0.models.shopify_shipment_rate_shipment'].isRequired,
|
|
10904
|
+
});
|
|
10905
|
+
|
|
10667
10906
|
T['io.flow.shopify.markets.v0.enums.shopify_webhook_format'] = PropTypes.oneOf(['json', 'xml']);
|
|
10668
10907
|
|
|
10669
10908
|
T['io.flow.shopify.markets.v0.enums.shopify_webhook_topic'] = PropTypes.oneOf([
|
|
@@ -11026,6 +11265,36 @@ T['io.flow.internal.v0.models.shopify_dispute_upserted'] = PropTypes.exact({
|
|
|
11026
11265
|
dispute: T['io.flow.internal.v0.models.shopify_dispute'].isRequired,
|
|
11027
11266
|
});
|
|
11028
11267
|
|
|
11268
|
+
T['io.flow.internal.v0.enums.shopify_callback_error_code'] = PropTypes.oneOf([
|
|
11269
|
+
'UNKNOWN',
|
|
11270
|
+
'SYSTEM_ERROR',
|
|
11271
|
+
'THIRD_PARTY_SYSTEM_ERROR',
|
|
11272
|
+
'TIMEOUT',
|
|
11273
|
+
'VERSION_MISMATCH',
|
|
11274
|
+
'INVALID_AUTHENTICATION',
|
|
11275
|
+
'RATE_LIMIT_EXCEEDED',
|
|
11276
|
+
'TEMPORARILY_UNAVAILABLE',
|
|
11277
|
+
'FAILED_VALIDATION',
|
|
11278
|
+
'INVALID_FORMAT',
|
|
11279
|
+
'MISSING_VALUE',
|
|
11280
|
+
'OUT_OF_RANGE',
|
|
11281
|
+
'OVER_LIMIT',
|
|
11282
|
+
'UNDER_LIMIT',
|
|
11283
|
+
'UNAUTHORIZED',
|
|
11284
|
+
'NOT_FOUND',
|
|
11285
|
+
'EXPIRED',
|
|
11286
|
+
]);
|
|
11287
|
+
|
|
11288
|
+
T['io.flow.internal.v0.models.shopify_callback_error_item'] = PropTypes.exact({
|
|
11289
|
+
code: T['io.flow.internal.v0.enums.shopify_callback_error_code'].isRequired,
|
|
11290
|
+
message: PropTypes.string.isRequired,
|
|
11291
|
+
field: PropTypes.string,
|
|
11292
|
+
});
|
|
11293
|
+
|
|
11294
|
+
T['io.flow.internal.v0.models.shopify_callback_error'] = PropTypes.exact({
|
|
11295
|
+
errors: PropTypes.arrayOf(T['io.flow.internal.v0.models.shopify_callback_error_item']).isRequired,
|
|
11296
|
+
});
|
|
11297
|
+
|
|
11029
11298
|
T['io.flow.ratecard.v0.models.ratecard_carrier_summary'] = PropTypes.exact({
|
|
11030
11299
|
id: PropTypes.string.isRequired,
|
|
11031
11300
|
name: PropTypes.string.isRequired,
|
|
@@ -11214,8 +11483,6 @@ T['io.flow.internal.v0.models.report_bank_account_cleartext'] = PropTypes.exact(
|
|
|
11214
11483
|
account_number: PropTypes.string.isRequired,
|
|
11215
11484
|
});
|
|
11216
11485
|
|
|
11217
|
-
T['io.flow.internal.v0.enums.sarvesh_item_type'] = PropTypes.oneOf(['physical', 'digital']);
|
|
11218
|
-
|
|
11219
11486
|
T['io.flow.internal.v0.models.price_inclusivity'] = PropTypes.exact({
|
|
11220
11487
|
tax: PropTypes.bool,
|
|
11221
11488
|
duty: PropTypes.bool,
|
|
@@ -11227,8 +11494,6 @@ T['io.flow.internal.v0.models.payment_is'] = PropTypes.exact({
|
|
|
11227
11494
|
managed_pricing: PropTypes.bool,
|
|
11228
11495
|
});
|
|
11229
11496
|
|
|
11230
|
-
T['io.flow.internal.v0.enums.rohan_item_type'] = PropTypes.oneOf(['physical', 'digital']);
|
|
11231
|
-
|
|
11232
11497
|
T['io.flow.internal.v0.models.marked_as_final'] = PropTypes.exact({
|
|
11233
11498
|
products: PropTypes.bool.isRequired,
|
|
11234
11499
|
shipping: PropTypes.bool.isRequired,
|
|
@@ -11527,6 +11792,8 @@ T['io.flow.internal.v0.models.report_organization_reference'] = PropTypes.exact(
|
|
|
11527
11792
|
organization_id: PropTypes.string.isRequired,
|
|
11528
11793
|
});
|
|
11529
11794
|
|
|
11795
|
+
T['io.flow.internal.v0.enums.account_currency_filter'] = PropTypes.oneOf(['GBP', 'CAD', 'USD']);
|
|
11796
|
+
|
|
11530
11797
|
T['io.flow.internal.v0.models.report_amount_range'] = PropTypes.exact({
|
|
11531
11798
|
min: PropTypes.number,
|
|
11532
11799
|
max: PropTypes.number,
|
|
@@ -11850,6 +12117,13 @@ T['io.flow.internal.v0.models.quote_upserted'] = PropTypes.exact({
|
|
|
11850
12117
|
quote: T['io.flow.internal.v0.models.quote'].isRequired,
|
|
11851
12118
|
});
|
|
11852
12119
|
|
|
12120
|
+
T['io.flow.internal.v0.enums.sellability_internal_match_type'] = PropTypes.oneOf(['positive_keyword', 'auto_restricted']);
|
|
12121
|
+
|
|
12122
|
+
T['io.flow.internal.v0.models.product_sellability_internal_rule_match'] = PropTypes.exact({
|
|
12123
|
+
rule_id: PropTypes.string.isRequired,
|
|
12124
|
+
match_types: PropTypes.arrayOf(T['io.flow.internal.v0.enums.sellability_internal_match_type']).isRequired,
|
|
12125
|
+
});
|
|
12126
|
+
|
|
11853
12127
|
T['io.flow.internal.v0.models.restriction_keywords'] = PropTypes.exact({
|
|
11854
12128
|
positive_keywords: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
11855
12129
|
negative_keywords: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
@@ -11941,11 +12215,6 @@ T['io.flow.internal.v0.models.classified_product'] = PropTypes.exact({
|
|
|
11941
12215
|
classification_model_id: PropTypes.string.isRequired,
|
|
11942
12216
|
});
|
|
11943
12217
|
|
|
11944
|
-
T['io.flow.sellability.v0.models.sellability_region_with_reasons'] = PropTypes.exact({
|
|
11945
|
-
region: PropTypes.string.isRequired,
|
|
11946
|
-
reasons: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
11947
|
-
});
|
|
11948
|
-
|
|
11949
12218
|
T['io.flow.sellability.v0.enums.rule_effect_type'] = PropTypes.oneOf(['market', 'dhl', 'dhl_ecommerce', 'ups']);
|
|
11950
12219
|
|
|
11951
12220
|
T['io.flow.sellability.v0.models.sellablility_region_result'] = PropTypes.exact({
|
|
@@ -11953,6 +12222,11 @@ T['io.flow.sellability.v0.models.sellablility_region_result'] = PropTypes.exact(
|
|
|
11953
12222
|
regions: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
11954
12223
|
});
|
|
11955
12224
|
|
|
12225
|
+
T['io.flow.sellability.v0.models.sellability_restricted_reason'] = PropTypes.exact({
|
|
12226
|
+
type: T['io.flow.sellability.v0.enums.rule_effect_type'].isRequired,
|
|
12227
|
+
reasons_with_regions: PropTypes.arrayOf(T['io.flow.sellability.v0.models.sellability_reason_with_regions']).isRequired,
|
|
12228
|
+
});
|
|
12229
|
+
|
|
11956
12230
|
T['io.flow.internal.v0.models.restriction_rule_effect_form'] = PropTypes.exact({
|
|
11957
12231
|
rule_id: PropTypes.string.isRequired,
|
|
11958
12232
|
effect: T['io.flow.sellability.v0.enums.rule_effect_type'].isRequired,
|
|
@@ -11975,28 +12249,40 @@ T['io.flow.internal.v0.models.restriction_rule_effect_upserted'] = PropTypes.exa
|
|
|
11975
12249
|
restriction_rule_effect: T['io.flow.internal.v0.models.restriction_rule_effect'].isRequired,
|
|
11976
12250
|
});
|
|
11977
12251
|
|
|
11978
|
-
T['io.flow.internal.v0.enums.classification_failure_reason'] = PropTypes.oneOf(['low_confidence', 'timeout']);
|
|
12252
|
+
T['io.flow.internal.v0.enums.classification_failure_reason'] = PropTypes.oneOf(['low_confidence', 'timeout', 'missing_hs6_code', 'invalid_price']);
|
|
11979
12253
|
|
|
11980
12254
|
T['io.flow.sellability.v0.models.sellability_restricted_region'] = PropTypes.exact({
|
|
11981
12255
|
type: T['io.flow.sellability.v0.enums.rule_effect_type'].isRequired,
|
|
11982
|
-
|
|
12256
|
+
regions: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
11983
12257
|
});
|
|
11984
12258
|
|
|
11985
12259
|
T['io.flow.sellability.v0.models.product_sellability_result'] = PropTypes.exact({
|
|
12260
|
+
id: PropTypes.string.isRequired,
|
|
11986
12261
|
merchant_id: PropTypes.string,
|
|
11987
12262
|
product_id: PropTypes.string.isRequired,
|
|
11988
12263
|
restricted_regions: PropTypes.arrayOf(T['io.flow.sellability.v0.models.sellability_restricted_region']).isRequired,
|
|
12264
|
+
restricted_reasons: PropTypes.arrayOf(T['io.flow.sellability.v0.models.sellability_restricted_reason']).isRequired,
|
|
11989
12265
|
needs_action_attributes: PropTypes.arrayOf(T['io.flow.sellability.v0.models.sellability_needs_action_attributes']),
|
|
11990
12266
|
request_id: PropTypes.string,
|
|
12267
|
+
hs6_code: PropTypes.string,
|
|
11991
12268
|
});
|
|
11992
12269
|
|
|
11993
12270
|
T['io.flow.internal.v0.enums.hs6_code_source'] = PropTypes.oneOf(['sellability', 'classification', 'human']);
|
|
11994
|
-
|
|
12271
|
+
|
|
12272
|
+
T['io.flow.sellability.v0.enums.sellability_result_error_code'] = PropTypes.oneOf([
|
|
12273
|
+
'insufficient_details',
|
|
12274
|
+
'ineligible_category',
|
|
12275
|
+
'wait_for_high_fidelity',
|
|
12276
|
+
'external_service_unavailable',
|
|
12277
|
+
'generic_error',
|
|
12278
|
+
'catalog_processing_threshold',
|
|
12279
|
+
]);
|
|
12280
|
+
|
|
11995
12281
|
T['io.flow.sellability.v0.enums.sellability_result_status'] = PropTypes.oneOf(['in_review', 'succeeded', 'failed']);
|
|
11996
12282
|
|
|
11997
12283
|
T['io.flow.sellability.v0.models.sellability_screening'] = PropTypes.exact({
|
|
11998
12284
|
discriminator: PropTypes.oneOf(['sellability_screening']).isRequired,
|
|
11999
|
-
|
|
12285
|
+
product_sellability_result: T['io.flow.sellability.v0.models.product_sellability_result'],
|
|
12000
12286
|
request_id: PropTypes.string.isRequired,
|
|
12001
12287
|
status: T['io.flow.sellability.v0.enums.sellability_result_status'].isRequired,
|
|
12002
12288
|
error_code: T['io.flow.sellability.v0.enums.sellability_result_error_code'],
|
|
@@ -12102,6 +12388,7 @@ T['io.flow.internal.v0.models.shopify_product_create_upserted'] = PropTypes.exac
|
|
|
12102
12388
|
});
|
|
12103
12389
|
|
|
12104
12390
|
T['io.flow.internal.v0.models.preonboarding_sellability_result'] = PropTypes.exact({
|
|
12391
|
+
id: PropTypes.string,
|
|
12105
12392
|
merchant_id: PropTypes.string.isRequired,
|
|
12106
12393
|
product_id: PropTypes.string.isRequired,
|
|
12107
12394
|
channel: PropTypes.string.isRequired,
|
|
@@ -12118,6 +12405,21 @@ T['io.flow.internal.v0.models.preonboarding_sellability_result'] = PropTypes.exa
|
|
|
12118
12405
|
fingerprint: PropTypes.string.isRequired,
|
|
12119
12406
|
});
|
|
12120
12407
|
|
|
12408
|
+
T['io.flow.internal.v0.models.preonboarding_sellability_result_updated'] = PropTypes.exact({
|
|
12409
|
+
discriminator: PropTypes.oneOf(['preonboarding_sellability_result_updated']).isRequired,
|
|
12410
|
+
event_id: PropTypes.string.isRequired,
|
|
12411
|
+
timestamp: PropTypes.string.isRequired,
|
|
12412
|
+
previous_preonboarding_sellability_result: T['io.flow.internal.v0.models.preonboarding_sellability_result'].isRequired,
|
|
12413
|
+
preonboarding_sellability_result: T['io.flow.internal.v0.models.preonboarding_sellability_result'].isRequired,
|
|
12414
|
+
});
|
|
12415
|
+
|
|
12416
|
+
T['io.flow.internal.v0.models.preonboarding_sellability_result_inserted'] = PropTypes.exact({
|
|
12417
|
+
discriminator: PropTypes.oneOf(['preonboarding_sellability_result_inserted']).isRequired,
|
|
12418
|
+
event_id: PropTypes.string.isRequired,
|
|
12419
|
+
timestamp: PropTypes.string.isRequired,
|
|
12420
|
+
preonboarding_sellability_result: T['io.flow.internal.v0.models.preonboarding_sellability_result'].isRequired,
|
|
12421
|
+
});
|
|
12422
|
+
|
|
12121
12423
|
T['io.flow.internal.v0.enums.preonboarding_request_status'] = PropTypes.oneOf(['pending', 'completed', 'failed', 'discarded']);
|
|
12122
12424
|
T['io.flow.internal.v0.enums.preonboarding_classification_platform'] = PropTypes.oneOf(['FlowOnboarding']);
|
|
12123
12425
|
|
|
@@ -12140,8 +12442,6 @@ T['io.flow.internal.v0.models.preonboarding_classification_rabbitmq_envelope'] =
|
|
|
12140
12442
|
message: T['io.flow.internal.v0.models.preonboarding_classification_rabbitmq_message'].isRequired,
|
|
12141
12443
|
});
|
|
12142
12444
|
|
|
12143
|
-
T['io.flow.internal.v0.enums.prateek_item_type'] = PropTypes.oneOf(['physical', 'digital']);
|
|
12144
|
-
|
|
12145
12445
|
T['io.flow.internal.v0.models.platform_fee_percentage_tier'] = PropTypes.exact({
|
|
12146
12446
|
minimum_amount_base: PropTypes.number.isRequired,
|
|
12147
12447
|
rate: PropTypes.number.isRequired,
|
|
@@ -12511,6 +12811,7 @@ T['io.flow.billing.v0.models.transaction_metadata_manual'] = PropTypes.exact({
|
|
|
12511
12811
|
description: PropTypes.string.isRequired,
|
|
12512
12812
|
original: T['io.flow.billing.v0.models.transaction_metadata_original_transaction'],
|
|
12513
12813
|
url: PropTypes.string,
|
|
12814
|
+
recoup: PropTypes.bool,
|
|
12514
12815
|
});
|
|
12515
12816
|
|
|
12516
12817
|
T['io.flow.common.v0.enums.currency_label_formatter'] = PropTypes.oneOf(['strip_trailing_zeros', 'symbol_prefix', 'symbol_suffix']);
|
|
@@ -12625,6 +12926,13 @@ T['io.flow.internal.v0.models.organization_restriction_screening_decision_form']
|
|
|
12625
12926
|
onboarding_first_viewed_at: PropTypes.string,
|
|
12626
12927
|
});
|
|
12627
12928
|
|
|
12929
|
+
T['io.flow.internal.v0.enums.organization_promotion_status'] = PropTypes.oneOf(['in_progress', 'completed', 'failed']);
|
|
12930
|
+
|
|
12931
|
+
T['io.flow.internal.v0.models.organization_promotion'] = PropTypes.exact({
|
|
12932
|
+
status: T['io.flow.internal.v0.enums.organization_promotion_status'].isRequired,
|
|
12933
|
+
prod_org: PropTypes.string.isRequired,
|
|
12934
|
+
});
|
|
12935
|
+
|
|
12628
12936
|
T['io.flow.payment.gateway.v0.models.payment_capture_option_manual'] = PropTypes.exact({
|
|
12629
12937
|
type: PropTypes.oneOf(['manual']).isRequired,
|
|
12630
12938
|
placeholder: PropTypes.string,
|
|
@@ -12973,8 +13281,6 @@ T['io.flow.internal.v0.models.report_payment'] = PropTypes.exact({
|
|
|
12973
13281
|
created_at: PropTypes.string.isRequired,
|
|
12974
13282
|
});
|
|
12975
13283
|
|
|
12976
|
-
T['io.flow.internal.v0.enums.niall_item_type'] = PropTypes.oneOf(['physical', 'digital']);
|
|
12977
|
-
|
|
12978
13284
|
T['io.flow.internal.v0.models.attempt_statistics'] = PropTypes.exact({
|
|
12979
13285
|
merchant_count: PropTypes.number.isRequired,
|
|
12980
13286
|
amount: PropTypes.number.isRequired,
|
|
@@ -13080,6 +13386,7 @@ T['io.flow.internal.v0.models.onboarding_organization'] = PropTypes.exact({
|
|
|
13080
13386
|
audit_result: T['io.flow.internal.v0.enums.onboarding_audit_result'],
|
|
13081
13387
|
blocked_since: PropTypes.string,
|
|
13082
13388
|
onboarding_segment: PropTypes.string,
|
|
13389
|
+
country: PropTypes.string,
|
|
13083
13390
|
});
|
|
13084
13391
|
|
|
13085
13392
|
T['io.flow.internal.v0.models.merchant_search_result'] = PropTypes.exact({
|
|
@@ -13522,6 +13829,7 @@ T['io.flow.shopify.markets.v0.models.shopify_order'] = PropTypes.exact({
|
|
|
13522
13829
|
tags: PropTypes.string,
|
|
13523
13830
|
tax_lines: PropTypes.arrayOf(T['io.flow.shopify.markets.v0.models.shopify_order_tax_line']).isRequired,
|
|
13524
13831
|
taxes_included: PropTypes.bool.isRequired,
|
|
13832
|
+
test: PropTypes.bool,
|
|
13525
13833
|
token: PropTypes.string,
|
|
13526
13834
|
total_weight: PropTypes.number,
|
|
13527
13835
|
updated_at: PropTypes.string,
|
|
@@ -13604,6 +13912,7 @@ T['io.flow.internal.v0.enums.manual_transaction_category'] = PropTypes.oneOf([
|
|
|
13604
13912
|
'negative_balance_guarantee',
|
|
13605
13913
|
'bank_payment_failure',
|
|
13606
13914
|
'non_fraud_chargeback',
|
|
13915
|
+
'v1_migration_neg_balance_settlement',
|
|
13607
13916
|
]);
|
|
13608
13917
|
|
|
13609
13918
|
T['io.flow.internal.v0.models.manual_transaction_form'] = PropTypes.exact({
|
|
@@ -13613,6 +13922,7 @@ T['io.flow.internal.v0.models.manual_transaction_form'] = PropTypes.exact({
|
|
|
13613
13922
|
category: T['io.flow.internal.v0.enums.manual_transaction_category'],
|
|
13614
13923
|
order: T['io.flow.internal.v0.models.manual_transaction_form_order'],
|
|
13615
13924
|
original_transaction_id: PropTypes.string,
|
|
13925
|
+
recoup: PropTypes.bool,
|
|
13616
13926
|
attributes: PropTypes.objectOf(PropTypes.string),
|
|
13617
13927
|
});
|
|
13618
13928
|
|
|
@@ -13748,7 +14058,10 @@ T['io.flow.internal.v0.models.ledger_report_url'] = PropTypes.exact({
|
|
|
13748
14058
|
type: T['io.flow.internal.v0.enums.ledger_report_url_type'].isRequired,
|
|
13749
14059
|
});
|
|
13750
14060
|
|
|
13751
|
-
T['io.flow.internal.v0.enums.ledger_report_type'] = PropTypes.oneOf([
|
|
14061
|
+
T['io.flow.internal.v0.enums.ledger_report_type'] = PropTypes.oneOf([
|
|
14062
|
+
'periodic_mor_jurisdiction_report',
|
|
14063
|
+
'periodic_mor_jurisdiction_sandbox_report',
|
|
14064
|
+
]);
|
|
13752
14065
|
|
|
13753
14066
|
T['io.flow.internal.v0.models.ledger_report'] = PropTypes.exact({
|
|
13754
14067
|
id: PropTypes.string.isRequired,
|
|
@@ -13889,7 +14202,7 @@ T['io.flow.ratecard.v0.models.ratecard_form'] = PropTypes.exact({
|
|
|
13889
14202
|
glbe_shipping_method_id: PropTypes.string,
|
|
13890
14203
|
glbe_proposition_name: PropTypes.string,
|
|
13891
14204
|
channel_revenue_share_percentage: PropTypes.number,
|
|
13892
|
-
data:
|
|
14205
|
+
data: T['io.flow.ratecard.v0.models.ratecard_data'],
|
|
13893
14206
|
});
|
|
13894
14207
|
|
|
13895
14208
|
T['io.flow.ratecard.v0.models.ratecard'] = PropTypes.exact({
|
|
@@ -13930,6 +14243,7 @@ T['io.flow.label.v0.enums.label_request_method'] = PropTypes.oneOf([
|
|
|
13930
14243
|
'notification_requiring_crossdock',
|
|
13931
14244
|
'flow_simulation_sync',
|
|
13932
14245
|
'autogenerated',
|
|
14246
|
+
'legacy_shopify_graphql_server',
|
|
13933
14247
|
]);
|
|
13934
14248
|
|
|
13935
14249
|
T['io.flow.billing.v0.models.transaction_metadata_shipping_label'] = PropTypes.exact({
|
|
@@ -14039,20 +14353,6 @@ T['io.flow.trueup.v0.models.label_surcharge'] = PropTypes.exact({
|
|
|
14039
14353
|
detail: T['io.flow.trueup.v0.unions.label_surcharge_detail'].isRequired,
|
|
14040
14354
|
});
|
|
14041
14355
|
|
|
14042
|
-
T['io.flow.internal.v0.models.label_generation_settings'] = PropTypes.exact({
|
|
14043
|
-
id: PropTypes.string.isRequired,
|
|
14044
|
-
auto_generate_query: PropTypes.string,
|
|
14045
|
-
commercial_invoice_only_query: PropTypes.string,
|
|
14046
|
-
});
|
|
14047
|
-
|
|
14048
|
-
T['io.flow.internal.v0.models.label_generation_settings_upserted'] = PropTypes.exact({
|
|
14049
|
-
discriminator: PropTypes.oneOf(['label_generation_settings_upserted']).isRequired,
|
|
14050
|
-
event_id: PropTypes.string.isRequired,
|
|
14051
|
-
timestamp: PropTypes.string.isRequired,
|
|
14052
|
-
organization: PropTypes.string.isRequired,
|
|
14053
|
-
label_generation_settings: T['io.flow.internal.v0.models.label_generation_settings'].isRequired,
|
|
14054
|
-
});
|
|
14055
|
-
|
|
14056
14356
|
T['io.flow.internal.v0.enums.label_creation_status'] = PropTypes.oneOf(['success', 'error', 'pending', 'cancelled']);
|
|
14057
14357
|
|
|
14058
14358
|
T['io.flow.internal.v0.models.label_creation_job_summary'] = PropTypes.exact({
|
|
@@ -14609,6 +14909,7 @@ T['io.flow.payment.gateway.v0.unions.action'] = PropTypes.oneOfType([
|
|
|
14609
14909
|
]);
|
|
14610
14910
|
|
|
14611
14911
|
T['io.flow.internal.v0.enums.rate_source'] = PropTypes.oneOf(['calculated', 'market']);
|
|
14912
|
+
T['io.flow.experience.v0.enums.pricing_type'] = PropTypes.oneOf(['inclusive_pricing']);
|
|
14612
14913
|
|
|
14613
14914
|
T['io.flow.experience.v0.models.order_rate'] = PropTypes.exact({
|
|
14614
14915
|
from: PropTypes.string.isRequired,
|
|
@@ -14710,7 +15011,12 @@ T['io.flow.internal.v0.models.internal_afterpay_authorization_details'] = PropTy
|
|
|
14710
15011
|
afterpay_authentication_data: T['io.flow.internal.v0.models.afterpay_authentication_data_reference'].isRequired,
|
|
14711
15012
|
});
|
|
14712
15013
|
|
|
14713
|
-
T['io.flow.internal.v0.enums.
|
|
15014
|
+
T['io.flow.internal.v0.enums.classification_source'] = PropTypes.oneOf(['sellability']);
|
|
15015
|
+
|
|
15016
|
+
T['io.flow.internal.v0.models.hs6_metadata'] = PropTypes.exact({
|
|
15017
|
+
description: PropTypes.string,
|
|
15018
|
+
classification_source: T['io.flow.internal.v0.enums.classification_source'],
|
|
15019
|
+
});
|
|
14714
15020
|
|
|
14715
15021
|
T['io.flow.internal.v0.models.harmonization_ml_model_summary'] = PropTypes.exact({
|
|
14716
15022
|
id: PropTypes.string,
|
|
@@ -14765,8 +15071,6 @@ T['io.flow.error.v0.models.generic_error'] = PropTypes.exact({
|
|
|
14765
15071
|
messages: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
14766
15072
|
});
|
|
14767
15073
|
|
|
14768
|
-
T['io.flow.internal.v0.enums.gabriel_item_type'] = PropTypes.oneOf(['physical', 'digital']);
|
|
14769
|
-
|
|
14770
15074
|
T['io.flow.internal.v0.models.fx_revenue_recognition_account_rate'] = PropTypes.exact({
|
|
14771
15075
|
value: PropTypes.number.isRequired,
|
|
14772
15076
|
});
|
|
@@ -14975,6 +15279,7 @@ T['io.flow.internal.v0.models.shopper_breakdown'] = PropTypes.exact({
|
|
|
14975
15279
|
tax: T['io.flow.internal.v0.models.reporting_monetary_value'].isRequired,
|
|
14976
15280
|
duty: T['io.flow.internal.v0.models.reporting_monetary_value'].isRequired,
|
|
14977
15281
|
discount: T['io.flow.internal.v0.models.reporting_monetary_value'].isRequired,
|
|
15282
|
+
subtotal: T['io.flow.internal.v0.models.reporting_monetary_value'],
|
|
14978
15283
|
total: T['io.flow.internal.v0.models.reporting_monetary_value'].isRequired,
|
|
14979
15284
|
});
|
|
14980
15285
|
|
|
@@ -15312,6 +15617,14 @@ T['io.flow.internal.v0.models.fiserv_authentication'] = PropTypes.exact({
|
|
|
15312
15617
|
secret_key_reference: PropTypes.string.isRequired,
|
|
15313
15618
|
});
|
|
15314
15619
|
|
|
15620
|
+
T['io.flow.billing.bank.account.v0.models.bank_account_info_kor'] = PropTypes.exact({
|
|
15621
|
+
discriminator: PropTypes.oneOf(['kor']).isRequired,
|
|
15622
|
+
name: PropTypes.string.isRequired,
|
|
15623
|
+
bank_account_number: PropTypes.string.isRequired,
|
|
15624
|
+
bank_routing_number: PropTypes.string.isRequired,
|
|
15625
|
+
bank_name: PropTypes.string.isRequired,
|
|
15626
|
+
});
|
|
15627
|
+
|
|
15315
15628
|
T['io.flow.billing.bank.account.v0.models.bank_account_info_ita'] = PropTypes.exact({
|
|
15316
15629
|
discriminator: PropTypes.oneOf(['ita']).isRequired,
|
|
15317
15630
|
swift_code: PropTypes.string.isRequired,
|
|
@@ -15352,6 +15665,7 @@ T['io.flow.billing.bank.account.v0.unions.bank_account_info'] = PropTypes.oneOfT
|
|
|
15352
15665
|
T['io.flow.billing.bank.account.v0.models.bank_account_info_gbr'],
|
|
15353
15666
|
T['io.flow.billing.bank.account.v0.models.bank_account_info_fra'],
|
|
15354
15667
|
T['io.flow.billing.bank.account.v0.models.bank_account_info_ita'],
|
|
15668
|
+
T['io.flow.billing.bank.account.v0.models.bank_account_info_kor'],
|
|
15355
15669
|
]);
|
|
15356
15670
|
|
|
15357
15671
|
T['io.flow.billing.v0.models.bank_account_form_info'] = PropTypes.exact({
|
|
@@ -15682,9 +15996,14 @@ T['io.flow.restrictions.v0.models.product_restriction_result'] = PropTypes.exact
|
|
|
15682
15996
|
hs_code: PropTypes.string,
|
|
15683
15997
|
restricted_regions_by_type: PropTypes.arrayOf(T['io.flow.sellability.v0.models.sellability_region_result']),
|
|
15684
15998
|
needs_action_attributes: PropTypes.arrayOf(T['io.flow.restrictions.v0.models.needs_action_attributes']),
|
|
15999
|
+
fingerprint: PropTypes.string,
|
|
16000
|
+
restriction_created_at: PropTypes.string,
|
|
16001
|
+
first_reviewed_at: PropTypes.string,
|
|
16002
|
+
seconds_to_first_review: PropTypes.number,
|
|
15685
16003
|
});
|
|
15686
16004
|
|
|
15687
16005
|
T['io.flow.internal.v0.models.product_sellability_result'] = PropTypes.exact({
|
|
16006
|
+
id: PropTypes.string,
|
|
15688
16007
|
shop_id: PropTypes.string.isRequired,
|
|
15689
16008
|
product_number: PropTypes.string.isRequired,
|
|
15690
16009
|
request_id: PropTypes.string.isRequired,
|
|
@@ -15693,11 +16012,29 @@ T['io.flow.internal.v0.models.product_sellability_result'] = PropTypes.exact({
|
|
|
15693
16012
|
restricted_regions_by_type: PropTypes.arrayOf(T['io.flow.sellability.v0.models.sellability_region_result']),
|
|
15694
16013
|
rule_ids: PropTypes.arrayOf(PropTypes.string),
|
|
15695
16014
|
taxonomy_category: PropTypes.string,
|
|
16015
|
+
fingerprint: PropTypes.string,
|
|
16016
|
+
processed_at: PropTypes.string,
|
|
16017
|
+
});
|
|
16018
|
+
|
|
16019
|
+
T['io.flow.internal.v0.models.product_sellability_result_updated'] = PropTypes.exact({
|
|
16020
|
+
discriminator: PropTypes.oneOf(['product_sellability_result_updated']).isRequired,
|
|
16021
|
+
event_id: PropTypes.string.isRequired,
|
|
16022
|
+
timestamp: PropTypes.string.isRequired,
|
|
16023
|
+
previous_product_sellability_result: T['io.flow.internal.v0.models.product_sellability_result'].isRequired,
|
|
16024
|
+
product_sellability_result: T['io.flow.internal.v0.models.product_sellability_result'].isRequired,
|
|
16025
|
+
});
|
|
16026
|
+
|
|
16027
|
+
T['io.flow.internal.v0.models.product_sellability_result_inserted'] = PropTypes.exact({
|
|
16028
|
+
discriminator: PropTypes.oneOf(['product_sellability_result_inserted']).isRequired,
|
|
16029
|
+
event_id: PropTypes.string.isRequired,
|
|
16030
|
+
timestamp: PropTypes.string.isRequired,
|
|
16031
|
+
product_sellability_result: T['io.flow.internal.v0.models.product_sellability_result'].isRequired,
|
|
15696
16032
|
});
|
|
15697
16033
|
|
|
15698
16034
|
T['io.flow.internal.v0.models.product_sellability_internal_result'] = PropTypes.exact({
|
|
15699
16035
|
restricted_regions: PropTypes.arrayOf(T['io.flow.sellability.v0.models.sellability_region_result']).isRequired,
|
|
15700
|
-
|
|
16036
|
+
rule_matches: PropTypes.arrayOf(T['io.flow.internal.v0.models.product_sellability_internal_rule_match']).isRequired,
|
|
16037
|
+
matching_positive_keywords: PropTypes.arrayOf(PropTypes.string),
|
|
15701
16038
|
});
|
|
15702
16039
|
|
|
15703
16040
|
T['io.flow.internal.v0.models.product_sellability_internal'] = PropTypes.exact({
|
|
@@ -16670,6 +17007,7 @@ T['io.flow.internal.v0.models.report_filter'] = PropTypes.exact({
|
|
|
16670
17007
|
source_type: T['io.flow.internal.v0.enums.source_type_filter'],
|
|
16671
17008
|
order_payment_source: T['io.flow.experience.v0.enums.order_payment_source_type'],
|
|
16672
17009
|
amount_range: T['io.flow.internal.v0.models.report_amount_range'],
|
|
17010
|
+
account_currency: T['io.flow.internal.v0.enums.account_currency_filter'],
|
|
16673
17011
|
});
|
|
16674
17012
|
|
|
16675
17013
|
T['io.flow.internal.v0.models.report_form'] = PropTypes.exact({
|
|
@@ -16707,6 +17045,9 @@ T['io.flow.internal.v0.models.sales_payment_record'] = PropTypes.exact({
|
|
|
16707
17045
|
price_inclusivity: T['io.flow.internal.v0.models.price_inclusivity'],
|
|
16708
17046
|
destination_country: PropTypes.string.isRequired,
|
|
16709
17047
|
fulfilled_at: PropTypes.string,
|
|
17048
|
+
reconciliation: T['io.flow.internal.v0.models.reporting_reconciliation'],
|
|
17049
|
+
is_eu_destination: PropTypes.bool,
|
|
17050
|
+
debug_url: PropTypes.string,
|
|
16710
17051
|
});
|
|
16711
17052
|
|
|
16712
17053
|
T['io.flow.label.v0.models.shipping_label_lane_summary'] = PropTypes.exact({
|
|
@@ -17080,6 +17421,7 @@ T['io.flow.internal.v0.models.other_record_metadata_trueup'] = PropTypes.exact({
|
|
|
17080
17421
|
label_transaction_id: PropTypes.string.isRequired,
|
|
17081
17422
|
label_invoice_request_id: PropTypes.string.isRequired,
|
|
17082
17423
|
carrier_charge_id: PropTypes.string.isRequired,
|
|
17424
|
+
subtype: PropTypes.string,
|
|
17083
17425
|
});
|
|
17084
17426
|
|
|
17085
17427
|
T['io.flow.internal.v0.models.other_record_metadata_shipping_label_revenue_share'] = PropTypes.exact({
|
|
@@ -17438,6 +17780,7 @@ T['io.flow.internal.v0.models.item_classification_summary'] = PropTypes.exact({
|
|
|
17438
17780
|
customs_description: PropTypes.string,
|
|
17439
17781
|
});
|
|
17440
17782
|
|
|
17783
|
+
T['io.flow.internal.v0.enums.gabriel_item_type'] = PropTypes.oneOf(['physical', 'digital']);
|
|
17441
17784
|
T['io.flow.internal.v0.enums.checkout_url_type'] = PropTypes.oneOf(['continue_shopping', 'confirmation', 'invalid_checkout']);
|
|
17442
17785
|
|
|
17443
17786
|
T['io.flow.internal.v0.models.checkout_url'] = PropTypes.exact({
|
|
@@ -18649,6 +18992,26 @@ T['io.flow.common.v0.models.address'] = PropTypes.exact({
|
|
|
18649
18992
|
longitude: PropTypes.string,
|
|
18650
18993
|
});
|
|
18651
18994
|
|
|
18995
|
+
T['io.flow.merchant.onboarding.v0.models.operations_contact'] = PropTypes.exact({
|
|
18996
|
+
company: PropTypes.string,
|
|
18997
|
+
email: PropTypes.string,
|
|
18998
|
+
phone: PropTypes.string,
|
|
18999
|
+
address: T['io.flow.common.v0.models.address'],
|
|
19000
|
+
});
|
|
19001
|
+
|
|
19002
|
+
T['io.flow.merchant.onboarding.v0.models.third_party_logistics_partner'] = PropTypes.exact({
|
|
19003
|
+
warehouse_address: T['io.flow.merchant.onboarding.v0.models.merchant_onboarding_address'].isRequired,
|
|
19004
|
+
warehouse_url: PropTypes.string,
|
|
19005
|
+
location: T['io.flow.merchant.onboarding.v0.models.merchant_onboarding_address'],
|
|
19006
|
+
|
|
19007
|
+
scheduled_pickups: PropTypes.arrayOf(
|
|
19008
|
+
T['io.flow.merchant.onboarding.v0.models.onboarding_merchant_scheduled_pickup'],
|
|
19009
|
+
),
|
|
19010
|
+
|
|
19011
|
+
operations_contact: T['io.flow.merchant.onboarding.v0.models.operations_contact'].isRequired,
|
|
19012
|
+
center_id: PropTypes.string,
|
|
19013
|
+
});
|
|
19014
|
+
|
|
18652
19015
|
T['io.flow.merchant.onboarding.v0.models.merchant_onboarding_beneficiary_details'] = PropTypes.exact({
|
|
18653
19016
|
name: PropTypes.string,
|
|
18654
19017
|
address: T['io.flow.common.v0.models.address'],
|
|
@@ -19066,7 +19429,7 @@ T['io.flow.billing.v0.models.transaction_metadata_carrier_charge'] = PropTypes.e
|
|
|
19066
19429
|
label_created_at: PropTypes.string.isRequired,
|
|
19067
19430
|
carrier_id: PropTypes.string.isRequired,
|
|
19068
19431
|
carrier_tracking_number: PropTypes.string.isRequired,
|
|
19069
|
-
revenue_share_percentage: PropTypes.number
|
|
19432
|
+
revenue_share_percentage: PropTypes.number,
|
|
19070
19433
|
outbound: T['io.flow.billing.v0.models.transaction_metadata_outbound_transaction'],
|
|
19071
19434
|
});
|
|
19072
19435
|
|
|
@@ -19075,7 +19438,7 @@ T['io.flow.internal.v0.models.other_record_metadata_carrier_charge'] = PropTypes
|
|
|
19075
19438
|
label_created_at: PropTypes.string.isRequired,
|
|
19076
19439
|
carrier_id: PropTypes.string.isRequired,
|
|
19077
19440
|
carrier_tracking_number: PropTypes.string.isRequired,
|
|
19078
|
-
revenue_share_percentage: PropTypes.number
|
|
19441
|
+
revenue_share_percentage: PropTypes.number,
|
|
19079
19442
|
outbound_transaction_id: PropTypes.string,
|
|
19080
19443
|
});
|
|
19081
19444
|
|
|
@@ -19140,6 +19503,7 @@ T['io.flow.billing.v0.unions.transaction_metadata'] = PropTypes.oneOfType([
|
|
|
19140
19503
|
T['io.flow.billing.v0.models.transaction_metadata_failed_payout'],
|
|
19141
19504
|
T['io.flow.billing.v0.models.transaction_metadata_payment_transaction'],
|
|
19142
19505
|
T['io.flow.billing.v0.models.transaction_metadata_tax_duty'],
|
|
19506
|
+
T['io.flow.billing.v0.models.transaction_metadata_merchant_fee'],
|
|
19143
19507
|
]);
|
|
19144
19508
|
|
|
19145
19509
|
T['io.flow.internal.v0.models.label_metadata'] = PropTypes.exact({
|
|
@@ -19769,6 +20133,8 @@ T['io.flow.internal.v0.models.feature_value_result'] = PropTypes.exact({
|
|
|
19769
20133
|
values: PropTypes.arrayOf(T['io.flow.internal.v0.unions.feature_value']).isRequired,
|
|
19770
20134
|
});
|
|
19771
20135
|
|
|
20136
|
+
T['io.flow.internal.v0.enums.bojana_item_type'] = PropTypes.oneOf(['physical', 'digital']);
|
|
20137
|
+
|
|
19772
20138
|
T['io.flow.internal.v0.models.bitpay_authentication_form'] = PropTypes.exact({
|
|
19773
20139
|
api_token: PropTypes.string.isRequired,
|
|
19774
20140
|
public_key: PropTypes.string.isRequired,
|
|
@@ -19993,6 +20359,8 @@ T['io.flow.billing.v0.enums.transaction_source'] = PropTypes.oneOf([
|
|
|
19993
20359
|
'merchant_fee',
|
|
19994
20360
|
'b2b_tax',
|
|
19995
20361
|
'b2b_tax_refund',
|
|
20362
|
+
'b2b_fee_mor_tax',
|
|
20363
|
+
'b2b_fee_shipping_tax',
|
|
19996
20364
|
]);
|
|
19997
20365
|
|
|
19998
20366
|
T['io.flow.internal.v0.models.debug_original_transaction_summary'] = PropTypes.exact({
|
|
@@ -20222,6 +20590,20 @@ T['io.flow.internal.v0.models.debug_banking_details'] = PropTypes.exact({
|
|
|
20222
20590
|
T['io.flow.internal.v0.enums.b2b_tax_ledger_document_type'] = PropTypes.oneOf(['b2b_invoice', 'b2b_credit_memo']);
|
|
20223
20591
|
T['io.flow.internal.v0.enums.b2b_tax_rate_type'] = PropTypes.oneOf(['basic', 'preferential', 'exempt']);
|
|
20224
20592
|
T['io.flow.consumer.invoice.v0.enums.tax_type'] = PropTypes.oneOf(['vat', 'gst', 'hst', 'pst', 'qst', 'sales_tax']);
|
|
20593
|
+
T['io.flow.internal.v0.enums.b2b_fee_shipping_tax_trigger_type'] = PropTypes.oneOf(['label', 'trueup']);
|
|
20594
|
+
|
|
20595
|
+
T['io.flow.internal.v0.models.b2b_fee_shipping_tax_trigger_metadata'] = PropTypes.exact({
|
|
20596
|
+
discriminator: PropTypes.oneOf(['b2b_fee_shipping_tax_trigger_metadata']).isRequired,
|
|
20597
|
+
trigger_type: T['io.flow.internal.v0.enums.b2b_fee_shipping_tax_trigger_type'].isRequired,
|
|
20598
|
+
});
|
|
20599
|
+
|
|
20600
|
+
T['io.flow.internal.v0.enums.b2b_fee_mor_tax_trigger_type'] = PropTypes.oneOf(['capture', 'order']);
|
|
20601
|
+
|
|
20602
|
+
T['io.flow.internal.v0.models.b2b_fee_mor_tax_trigger_metadata'] = PropTypes.exact({
|
|
20603
|
+
discriminator: PropTypes.oneOf(['b2b_fee_mor_tax_trigger_metadata']).isRequired,
|
|
20604
|
+
trigger_type: T['io.flow.internal.v0.enums.b2b_fee_mor_tax_trigger_type'].isRequired,
|
|
20605
|
+
});
|
|
20606
|
+
|
|
20225
20607
|
T['io.flow.internal.v0.enums.restriction_status'] = PropTypes.oneOf(['pending', 'in_review', 'escalated', 'accepted', 'restricted']);
|
|
20226
20608
|
|
|
20227
20609
|
T['io.flow.internal.v0.models.restriction_item_review_summary'] = PropTypes.exact({
|
|
@@ -21245,8 +21627,7 @@ T['io.flow.internal.v0.models.restriction_rule_upserted'] = PropTypes.exact({
|
|
|
21245
21627
|
restriction_rule: T['io.flow.internal.v0.models.restriction_rule'].isRequired,
|
|
21246
21628
|
});
|
|
21247
21629
|
|
|
21248
|
-
T['io.flow.internal.v0.enums.
|
|
21249
|
-
T['io.flow.internal.v0.enums.anirban_item_type'] = PropTypes.oneOf(['physical', 'digital']);
|
|
21630
|
+
T['io.flow.internal.v0.enums.amrutha_item_type'] = PropTypes.oneOf(['physical', 'digital']);
|
|
21250
21631
|
T['io.flow.common.v0.enums.role'] = PropTypes.oneOf(['admin', 'member']);
|
|
21251
21632
|
|
|
21252
21633
|
T['io.flow.organization.v0.models.organization_authorization'] = PropTypes.exact({
|
|
@@ -21313,8 +21694,6 @@ T['io.flow.internal.v0.models.all_organizations_membership'] = PropTypes.exact({
|
|
|
21313
21694
|
role: T['io.flow.common.v0.enums.role'].isRequired,
|
|
21314
21695
|
});
|
|
21315
21696
|
|
|
21316
|
-
T['io.flow.internal.v0.enums.aldo_item_type'] = PropTypes.oneOf(['physical', 'digital']);
|
|
21317
|
-
|
|
21318
21697
|
T['io.flow.internal.v0.models.afterpay_refund'] = PropTypes.exact({
|
|
21319
21698
|
id: PropTypes.string.isRequired,
|
|
21320
21699
|
flow_refund_id: PropTypes.string.isRequired,
|
|
@@ -22188,6 +22567,7 @@ T['io.flow.billing.v0.enums.fee_deduction_type'] = PropTypes.oneOf([
|
|
|
22188
22567
|
'transfer',
|
|
22189
22568
|
'negative_balance_guarantee',
|
|
22190
22569
|
'sp',
|
|
22570
|
+
'rev_share',
|
|
22191
22571
|
]);
|
|
22192
22572
|
|
|
22193
22573
|
T['io.flow.billing.v0.models.fee_deduction'] = PropTypes.exact({
|
|
@@ -22369,7 +22749,6 @@ T['io.flow.merchant.onboarding.v0.models.common_merchant_application_form'] = Pr
|
|
|
22369
22749
|
beneficiary_details: T['io.flow.merchant.onboarding.v0.models.merchant_onboarding_beneficiary_details'],
|
|
22370
22750
|
other_trade_sector: PropTypes.string,
|
|
22371
22751
|
center_contact: T['io.flow.merchant.onboarding.v0.models.operations_contact'],
|
|
22372
|
-
center_address: T['io.flow.common.v0.models.address'],
|
|
22373
22752
|
average_order_weight: PropTypes.number,
|
|
22374
22753
|
average_order_weight_unit: T['io.flow.common.v0.enums.unit_of_measurement'],
|
|
22375
22754
|
package_dimensions: PropTypes.arrayOf(T['io.flow.common.v0.models.dimension']),
|
|
@@ -22407,7 +22786,6 @@ T['io.flow.merchant.onboarding.v0.models.common_merchant_application'] = PropTyp
|
|
|
22407
22786
|
beneficiary_details: T['io.flow.merchant.onboarding.v0.models.merchant_onboarding_beneficiary_details'],
|
|
22408
22787
|
other_trade_sector: PropTypes.string,
|
|
22409
22788
|
center_contact: T['io.flow.merchant.onboarding.v0.models.operations_contact'],
|
|
22410
|
-
center_address: T['io.flow.common.v0.models.address'],
|
|
22411
22789
|
average_order_weight: PropTypes.number,
|
|
22412
22790
|
average_order_weight_unit: T['io.flow.common.v0.enums.unit_of_measurement'],
|
|
22413
22791
|
package_dimensions: PropTypes.arrayOf(T['io.flow.common.v0.models.dimension']),
|
|
@@ -22866,7 +23244,7 @@ T['io.flow.experience.v0.models.discount_rule_settings'] = PropTypes.exact({
|
|
|
22866
23244
|
|
|
22867
23245
|
T['io.flow.common.v0.models.discount_form'] = PropTypes.exact({
|
|
22868
23246
|
offer: T['io.flow.common.v0.unions.discount_offer'].isRequired,
|
|
22869
|
-
target: T['io.flow.common.v0.enums.discount_target'],
|
|
23247
|
+
target: T['io.flow.common.v0.enums.discount_target'].isRequired,
|
|
22870
23248
|
label: PropTypes.string,
|
|
22871
23249
|
});
|
|
22872
23250
|
|
|
@@ -23272,6 +23650,26 @@ T['io.flow.internal.v0.models.shipping_rate_estimate_internal'] = PropTypes.exac
|
|
|
23272
23650
|
available: PropTypes.arrayOf(T['io.flow.internal.v0.models.shipping_rate_estimate_available_internal']).isRequired,
|
|
23273
23651
|
});
|
|
23274
23652
|
|
|
23653
|
+
T['io.flow.internal.v0.models.shipping_cost_summary'] = PropTypes.exact({
|
|
23654
|
+
id: PropTypes.string.isRequired,
|
|
23655
|
+
source: T['io.flow.billing.v0.enums.transaction_source'].isRequired,
|
|
23656
|
+
organization_id: PropTypes.string.isRequired,
|
|
23657
|
+
order_number: PropTypes.string.isRequired,
|
|
23658
|
+
amount: T['io.flow.common.v0.models.money'].isRequired,
|
|
23659
|
+
tax: T['io.flow.common.v0.models.money'].isRequired,
|
|
23660
|
+
label_id: PropTypes.string,
|
|
23661
|
+
base: T['io.flow.trueup.v0.models.label_base'],
|
|
23662
|
+
surcharges: PropTypes.arrayOf(T['io.flow.trueup.v0.models.label_surcharge']),
|
|
23663
|
+
});
|
|
23664
|
+
|
|
23665
|
+
T['io.flow.internal.v0.models.shipping_cost_upserted'] = PropTypes.exact({
|
|
23666
|
+
discriminator: PropTypes.oneOf(['shipping_cost_upserted']).isRequired,
|
|
23667
|
+
event_id: PropTypes.string.isRequired,
|
|
23668
|
+
timestamp: PropTypes.string.isRequired,
|
|
23669
|
+
organization: PropTypes.string.isRequired,
|
|
23670
|
+
shipping_cost: T['io.flow.internal.v0.models.shipping_cost_summary'].isRequired,
|
|
23671
|
+
});
|
|
23672
|
+
|
|
23275
23673
|
T['io.flow.internal.v0.models.shipment_cost_summary'] = PropTypes.exact({
|
|
23276
23674
|
lane_id: PropTypes.string,
|
|
23277
23675
|
ratecard_id: PropTypes.string,
|
|
@@ -23392,6 +23790,7 @@ T['io.flow.internal.v0.unions.fuel_surcharge_service_fee_put_form'] = PropTypes.
|
|
|
23392
23790
|
T['io.flow.common.v0.models.line_item_form'] = PropTypes.exact({
|
|
23393
23791
|
number: PropTypes.string.isRequired,
|
|
23394
23792
|
quantity: PropTypes.number.isRequired,
|
|
23793
|
+
line_item_identifier: PropTypes.string,
|
|
23395
23794
|
shipment_estimate: T['io.flow.common.v0.models.datetime_range'],
|
|
23396
23795
|
price: T['io.flow.common.v0.models.money'],
|
|
23397
23796
|
attributes: PropTypes.objectOf(PropTypes.string),
|
|
@@ -23975,6 +24374,8 @@ T['io.flow.internal.v0.models.b2b_tax_ledger_form'] = PropTypes.exact({
|
|
|
23975
24374
|
document_type: T['io.flow.internal.v0.enums.b2b_tax_ledger_document_type'].isRequired,
|
|
23976
24375
|
document_date: PropTypes.string.isRequired,
|
|
23977
24376
|
ledger_report_id: PropTypes.string,
|
|
24377
|
+
voids_invoice_number: PropTypes.string,
|
|
24378
|
+
document_number: PropTypes.string,
|
|
23978
24379
|
});
|
|
23979
24380
|
|
|
23980
24381
|
T['io.flow.internal.v0.models.b2b_tax_ledger'] = PropTypes.exact({
|
|
@@ -23994,6 +24395,8 @@ T['io.flow.internal.v0.models.b2b_tax_ledger'] = PropTypes.exact({
|
|
|
23994
24395
|
document_type: T['io.flow.internal.v0.enums.b2b_tax_ledger_document_type'].isRequired,
|
|
23995
24396
|
document_date: PropTypes.string.isRequired,
|
|
23996
24397
|
ledger_report_id: PropTypes.string,
|
|
24398
|
+
voids_invoice_number: PropTypes.string,
|
|
24399
|
+
document_number: PropTypes.string,
|
|
23997
24400
|
});
|
|
23998
24401
|
|
|
23999
24402
|
T['io.flow.internal.v0.models.adjustment_details_amount_fixed'] = PropTypes.exact({
|
|
@@ -24275,6 +24678,8 @@ T['io.flow.shopify.markets.internal.event.v0.unions.shopify_markets_internal_eve
|
|
|
24275
24678
|
T['io.flow.shopify.markets.internal.event.v0.models.shopify_order_risk_assessment_deleted'],
|
|
24276
24679
|
T['io.flow.shopify.markets.internal.event.v0.models.shopify_order_transaction_upserted'],
|
|
24277
24680
|
T['io.flow.shopify.markets.internal.event.v0.models.shopify_order_transaction_deleted'],
|
|
24681
|
+
T['io.flow.shopify.markets.internal.event.v0.models.shopify_test_order_upserted'],
|
|
24682
|
+
T['io.flow.shopify.markets.internal.event.v0.models.shopify_test_order_deleted'],
|
|
24278
24683
|
]);
|
|
24279
24684
|
|
|
24280
24685
|
T['io.flow.export.v0.models.marketing_feeds_export_type'] = PropTypes.exact({
|
|
@@ -24415,7 +24820,7 @@ T['io.flow.common.v0.models.organization'] = PropTypes.exact({
|
|
|
24415
24820
|
parent: T['io.flow.common.v0.models.organization_reference'],
|
|
24416
24821
|
defaults: T['io.flow.common.v0.models.organization_defaults'],
|
|
24417
24822
|
created_at: PropTypes.string,
|
|
24418
|
-
status: T['io.flow.common.v0.enums.organization_status'],
|
|
24823
|
+
status: T['io.flow.common.v0.enums.organization_status'].isRequired,
|
|
24419
24824
|
type: T['io.flow.common.v0.enums.organization_type'],
|
|
24420
24825
|
});
|
|
24421
24826
|
|
|
@@ -24594,6 +24999,7 @@ T['io.flow.internal.v0.models.label_request_result'] = PropTypes.exact({
|
|
|
24594
24999
|
reference_id: PropTypes.string,
|
|
24595
25000
|
logistics_integration_provider: PropTypes.string,
|
|
24596
25001
|
tax_lrp_liabilities: PropTypes.arrayOf(T['io.flow.internal.v0.models.liability']),
|
|
25002
|
+
channel_id: PropTypes.string,
|
|
24597
25003
|
});
|
|
24598
25004
|
|
|
24599
25005
|
T['io.flow.internal.v0.models.invoice_data'] = PropTypes.exact({
|
|
@@ -24837,6 +25243,8 @@ T['io.flow.internal.v0.unions.task_metadata'] = PropTypes.oneOfType([
|
|
|
24837
25243
|
T['io.flow.internal.v0.models.accounting_return_metadata'],
|
|
24838
25244
|
T['io.flow.internal.v0.models.non_l4l_tax_duty_fx_fee_metadata'],
|
|
24839
25245
|
T['io.flow.internal.v0.models.channel_transaction_trigger_metadata'],
|
|
25246
|
+
T['io.flow.internal.v0.models.b2b_fee_mor_tax_trigger_metadata'],
|
|
25247
|
+
T['io.flow.internal.v0.models.b2b_fee_shipping_tax_trigger_metadata'],
|
|
24840
25248
|
]);
|
|
24841
25249
|
|
|
24842
25250
|
T['io.flow.common.v0.models.price'] = PropTypes.exact({
|
|
@@ -25129,6 +25537,7 @@ T['io.flow.consumer.invoice.v0.models.b2b_credit_memo'] = PropTypes.exact({
|
|
|
25129
25537
|
b2b_invoice_type: T['io.flow.consumer.invoice.v0.enums.b2b_invoice_type'].isRequired,
|
|
25130
25538
|
center: T['io.flow.consumer.invoice.v0.models.consumer_invoice_center_reference'],
|
|
25131
25539
|
order: T['io.flow.consumer.invoice.v0.models.consumer_invoice_order_summary'],
|
|
25540
|
+
voids_b2b_invoice: PropTypes.bool,
|
|
25132
25541
|
});
|
|
25133
25542
|
|
|
25134
25543
|
T['io.flow.consumer.invoice.v0.models.consumer_invoice_payment'] = PropTypes.exact({
|
|
@@ -25461,54 +25870,6 @@ T['io.flow.internal.v0.models.subscription'] = PropTypes.exact({
|
|
|
25461
25870
|
created_at: PropTypes.string.isRequired,
|
|
25462
25871
|
});
|
|
25463
25872
|
|
|
25464
|
-
T['io.flow.internal.v0.models.sarvesh_item_form'] = PropTypes.exact({
|
|
25465
|
-
number: PropTypes.string.isRequired,
|
|
25466
|
-
amount: T['io.flow.common.v0.models.price'].isRequired,
|
|
25467
|
-
description: PropTypes.string,
|
|
25468
|
-
type: T['io.flow.internal.v0.enums.sarvesh_item_type'].isRequired,
|
|
25469
|
-
added_on: PropTypes.string.isRequired,
|
|
25470
|
-
});
|
|
25471
|
-
|
|
25472
|
-
T['io.flow.internal.v0.models.sarvesh_item'] = PropTypes.exact({
|
|
25473
|
-
id: PropTypes.string.isRequired,
|
|
25474
|
-
number: PropTypes.string.isRequired,
|
|
25475
|
-
amount: T['io.flow.common.v0.models.price'].isRequired,
|
|
25476
|
-
description: PropTypes.string,
|
|
25477
|
-
type: T['io.flow.internal.v0.enums.sarvesh_item_type'].isRequired,
|
|
25478
|
-
added_on: PropTypes.string.isRequired,
|
|
25479
|
-
});
|
|
25480
|
-
|
|
25481
|
-
T['io.flow.internal.v0.models.sarvesh_item_upserted'] = PropTypes.exact({
|
|
25482
|
-
discriminator: PropTypes.oneOf(['sarvesh_item_upserted']).isRequired,
|
|
25483
|
-
event_id: PropTypes.string.isRequired,
|
|
25484
|
-
timestamp: PropTypes.string.isRequired,
|
|
25485
|
-
item: T['io.flow.internal.v0.models.sarvesh_item'].isRequired,
|
|
25486
|
-
});
|
|
25487
|
-
|
|
25488
|
-
T['io.flow.internal.v0.models.rohan_item_form'] = PropTypes.exact({
|
|
25489
|
-
number: PropTypes.string.isRequired,
|
|
25490
|
-
amount: T['io.flow.common.v0.models.price'].isRequired,
|
|
25491
|
-
description: PropTypes.string,
|
|
25492
|
-
type: T['io.flow.internal.v0.enums.rohan_item_type'].isRequired,
|
|
25493
|
-
added_on: PropTypes.string.isRequired,
|
|
25494
|
-
});
|
|
25495
|
-
|
|
25496
|
-
T['io.flow.internal.v0.models.rohan_item'] = PropTypes.exact({
|
|
25497
|
-
id: PropTypes.string.isRequired,
|
|
25498
|
-
number: PropTypes.string.isRequired,
|
|
25499
|
-
amount: T['io.flow.common.v0.models.price'].isRequired,
|
|
25500
|
-
description: PropTypes.string,
|
|
25501
|
-
type: T['io.flow.internal.v0.enums.rohan_item_type'].isRequired,
|
|
25502
|
-
added_on: PropTypes.string.isRequired,
|
|
25503
|
-
});
|
|
25504
|
-
|
|
25505
|
-
T['io.flow.internal.v0.models.rohan_item_upserted'] = PropTypes.exact({
|
|
25506
|
-
discriminator: PropTypes.oneOf(['rohan_item_upserted']).isRequired,
|
|
25507
|
-
event_id: PropTypes.string.isRequired,
|
|
25508
|
-
timestamp: PropTypes.string.isRequired,
|
|
25509
|
-
item: T['io.flow.internal.v0.models.rohan_item'].isRequired,
|
|
25510
|
-
});
|
|
25511
|
-
|
|
25512
25873
|
T['io.flow.internal.v0.models.restriction_product'] = PropTypes.exact({
|
|
25513
25874
|
id: PropTypes.string.isRequired,
|
|
25514
25875
|
organization_id: PropTypes.string.isRequired,
|
|
@@ -25558,23 +25919,6 @@ T['io.flow.internal.v0.models.restriction_item'] = PropTypes.exact({
|
|
|
25558
25919
|
channel: PropTypes.string,
|
|
25559
25920
|
});
|
|
25560
25921
|
|
|
25561
|
-
T['io.flow.internal.v0.models.prateek_item_form'] = PropTypes.exact({
|
|
25562
|
-
number: PropTypes.string.isRequired,
|
|
25563
|
-
amount: T['io.flow.common.v0.models.price'].isRequired,
|
|
25564
|
-
description: PropTypes.string,
|
|
25565
|
-
type: T['io.flow.internal.v0.enums.prateek_item_type'].isRequired,
|
|
25566
|
-
added_on: PropTypes.string.isRequired,
|
|
25567
|
-
});
|
|
25568
|
-
|
|
25569
|
-
T['io.flow.internal.v0.models.prateek_item'] = PropTypes.exact({
|
|
25570
|
-
id: PropTypes.string.isRequired,
|
|
25571
|
-
number: PropTypes.string.isRequired,
|
|
25572
|
-
amount: T['io.flow.common.v0.models.price'].isRequired,
|
|
25573
|
-
description: PropTypes.string,
|
|
25574
|
-
type: T['io.flow.internal.v0.enums.prateek_item_type'].isRequired,
|
|
25575
|
-
added_on: PropTypes.string.isRequired,
|
|
25576
|
-
});
|
|
25577
|
-
|
|
25578
25922
|
T['io.flow.internal.v0.models.payment_summary_v2'] = PropTypes.exact({
|
|
25579
25923
|
discriminator: PropTypes.oneOf(['payment_summary_v2']).isRequired,
|
|
25580
25924
|
id: PropTypes.string.isRequired,
|
|
@@ -25613,60 +25957,12 @@ T['io.flow.internal.v0.models.order_revenue_region_chart'] = PropTypes.exact({
|
|
|
25613
25957
|
data: PropTypes.arrayOf(T['io.flow.internal.v0.models.order_revenue_region_data_point']).isRequired,
|
|
25614
25958
|
});
|
|
25615
25959
|
|
|
25616
|
-
T['io.flow.internal.v0.models.niall_item_form'] = PropTypes.exact({
|
|
25617
|
-
number: PropTypes.string.isRequired,
|
|
25618
|
-
amount: T['io.flow.common.v0.models.price'].isRequired,
|
|
25619
|
-
description: PropTypes.string,
|
|
25620
|
-
type: T['io.flow.internal.v0.enums.niall_item_type'].isRequired,
|
|
25621
|
-
added_on: PropTypes.string.isRequired,
|
|
25622
|
-
});
|
|
25623
|
-
|
|
25624
|
-
T['io.flow.internal.v0.models.niall_item'] = PropTypes.exact({
|
|
25625
|
-
id: PropTypes.string.isRequired,
|
|
25626
|
-
number: PropTypes.string.isRequired,
|
|
25627
|
-
amount: T['io.flow.common.v0.models.price'].isRequired,
|
|
25628
|
-
description: PropTypes.string,
|
|
25629
|
-
type: T['io.flow.internal.v0.enums.niall_item_type'].isRequired,
|
|
25630
|
-
added_on: PropTypes.string.isRequired,
|
|
25631
|
-
});
|
|
25632
|
-
|
|
25633
|
-
T['io.flow.internal.v0.models.niall_item_upserted'] = PropTypes.exact({
|
|
25634
|
-
discriminator: PropTypes.oneOf(['niall_item_upserted']).isRequired,
|
|
25635
|
-
event_id: PropTypes.string.isRequired,
|
|
25636
|
-
timestamp: PropTypes.string.isRequired,
|
|
25637
|
-
item: T['io.flow.internal.v0.models.niall_item'].isRequired,
|
|
25638
|
-
});
|
|
25639
|
-
|
|
25640
25960
|
T['io.flow.internal.v0.models.invoice_line'] = PropTypes.exact({
|
|
25641
25961
|
id: PropTypes.string.isRequired,
|
|
25642
25962
|
description: PropTypes.string.isRequired,
|
|
25643
25963
|
value: T['io.flow.common.v0.models.price'].isRequired,
|
|
25644
25964
|
});
|
|
25645
25965
|
|
|
25646
|
-
T['io.flow.internal.v0.models.hosein_item_form'] = PropTypes.exact({
|
|
25647
|
-
number: PropTypes.string.isRequired,
|
|
25648
|
-
amount: T['io.flow.common.v0.models.price'].isRequired,
|
|
25649
|
-
description: PropTypes.string,
|
|
25650
|
-
type: T['io.flow.internal.v0.enums.hosein_item_type'].isRequired,
|
|
25651
|
-
added_on: PropTypes.string.isRequired,
|
|
25652
|
-
});
|
|
25653
|
-
|
|
25654
|
-
T['io.flow.internal.v0.models.hosein_item'] = PropTypes.exact({
|
|
25655
|
-
id: PropTypes.string.isRequired,
|
|
25656
|
-
number: PropTypes.string.isRequired,
|
|
25657
|
-
amount: T['io.flow.common.v0.models.price'].isRequired,
|
|
25658
|
-
description: PropTypes.string,
|
|
25659
|
-
type: T['io.flow.internal.v0.enums.hosein_item_type'].isRequired,
|
|
25660
|
-
added_on: PropTypes.string.isRequired,
|
|
25661
|
-
});
|
|
25662
|
-
|
|
25663
|
-
T['io.flow.internal.v0.models.hosein_item_upserted'] = PropTypes.exact({
|
|
25664
|
-
discriminator: PropTypes.oneOf(['hosein_item_upserted']).isRequired,
|
|
25665
|
-
event_id: PropTypes.string.isRequired,
|
|
25666
|
-
timestamp: PropTypes.string.isRequired,
|
|
25667
|
-
item: T['io.flow.internal.v0.models.hosein_item'].isRequired,
|
|
25668
|
-
});
|
|
25669
|
-
|
|
25670
25966
|
T['io.flow.internal.v0.models.gift_card'] = PropTypes.exact({
|
|
25671
25967
|
id: PropTypes.string.isRequired,
|
|
25672
25968
|
number: PropTypes.string.isRequired,
|
|
@@ -25719,6 +26015,30 @@ T['io.flow.internal.v0.models.components'] = PropTypes.exact({
|
|
|
25719
26015
|
insurance: T['io.flow.common.v0.models.price'].isRequired,
|
|
25720
26016
|
});
|
|
25721
26017
|
|
|
26018
|
+
T['io.flow.internal.v0.models.chenglin_item_form'] = PropTypes.exact({
|
|
26019
|
+
number: PropTypes.string.isRequired,
|
|
26020
|
+
amount: T['io.flow.common.v0.models.price'].isRequired,
|
|
26021
|
+
description: PropTypes.string,
|
|
26022
|
+
type: T['io.flow.internal.v0.enums.gabriel_item_type'].isRequired,
|
|
26023
|
+
added_on: PropTypes.string.isRequired,
|
|
26024
|
+
});
|
|
26025
|
+
|
|
26026
|
+
T['io.flow.internal.v0.models.chenglin_item'] = PropTypes.exact({
|
|
26027
|
+
id: PropTypes.string.isRequired,
|
|
26028
|
+
number: PropTypes.string.isRequired,
|
|
26029
|
+
amount: T['io.flow.common.v0.models.price'].isRequired,
|
|
26030
|
+
description: PropTypes.string,
|
|
26031
|
+
type: T['io.flow.internal.v0.enums.gabriel_item_type'].isRequired,
|
|
26032
|
+
added_on: PropTypes.string.isRequired,
|
|
26033
|
+
});
|
|
26034
|
+
|
|
26035
|
+
T['io.flow.internal.v0.models.chenglin_item_upserted'] = PropTypes.exact({
|
|
26036
|
+
discriminator: PropTypes.oneOf(['chenglin_item_upserted']).isRequired,
|
|
26037
|
+
event_id: PropTypes.string.isRequired,
|
|
26038
|
+
timestamp: PropTypes.string.isRequired,
|
|
26039
|
+
item: T['io.flow.internal.v0.models.chenglin_item'].isRequired,
|
|
26040
|
+
});
|
|
26041
|
+
|
|
25722
26042
|
T['io.flow.internal.v0.models.fee'] = PropTypes.exact({
|
|
25723
26043
|
value: T['io.flow.common.v0.models.price'].isRequired,
|
|
25724
26044
|
description: PropTypes.string,
|
|
@@ -25746,6 +26066,23 @@ T['io.flow.internal.v0.models.next_billing_statement'] = PropTypes.exact({
|
|
|
25746
26066
|
conditions: PropTypes.string,
|
|
25747
26067
|
});
|
|
25748
26068
|
|
|
26069
|
+
T['io.flow.internal.v0.models.bojana_item_form'] = PropTypes.exact({
|
|
26070
|
+
number: PropTypes.string.isRequired,
|
|
26071
|
+
amount: T['io.flow.common.v0.models.price'].isRequired,
|
|
26072
|
+
description: PropTypes.string,
|
|
26073
|
+
type: T['io.flow.internal.v0.enums.bojana_item_type'].isRequired,
|
|
26074
|
+
added_on: PropTypes.string.isRequired,
|
|
26075
|
+
});
|
|
26076
|
+
|
|
26077
|
+
T['io.flow.internal.v0.models.bojana_item'] = PropTypes.exact({
|
|
26078
|
+
id: PropTypes.string.isRequired,
|
|
26079
|
+
number: PropTypes.string.isRequired,
|
|
26080
|
+
amount: T['io.flow.common.v0.models.price'].isRequired,
|
|
26081
|
+
description: PropTypes.string,
|
|
26082
|
+
type: T['io.flow.internal.v0.enums.bojana_item_type'].isRequired,
|
|
26083
|
+
added_on: PropTypes.string.isRequired,
|
|
26084
|
+
});
|
|
26085
|
+
|
|
25749
26086
|
T['io.flow.internal.v0.models.billing_statement_totals'] = PropTypes.exact({
|
|
25750
26087
|
starting_balance: T['io.flow.common.v0.models.price'].isRequired,
|
|
25751
26088
|
subscription: T['io.flow.common.v0.models.price'].isRequired,
|
|
@@ -25777,6 +26114,9 @@ T['io.flow.internal.v0.models.billing_statement_totals'] = PropTypes.exact({
|
|
|
25777
26114
|
tax_refund: T['io.flow.common.v0.models.price'].isRequired,
|
|
25778
26115
|
b2b_tax: T['io.flow.common.v0.models.price'].isRequired,
|
|
25779
26116
|
b2b_tax_refund: T['io.flow.common.v0.models.price'].isRequired,
|
|
26117
|
+
merchant_fee: T['io.flow.common.v0.models.price'].isRequired,
|
|
26118
|
+
b2b_fee_mor_tax: T['io.flow.common.v0.models.price'].isRequired,
|
|
26119
|
+
b2b_fee_shipping_tax: T['io.flow.common.v0.models.price'].isRequired,
|
|
25780
26120
|
});
|
|
25781
26121
|
|
|
25782
26122
|
T['io.flow.internal.v0.models.organization_billing_statement'] = PropTypes.exact({
|
|
@@ -26200,7 +26540,7 @@ T['io.flow.internal.v0.models.debug_order_transaction'] = PropTypes.exact({
|
|
|
26200
26540
|
debug: T['io.flow.internal.v0.models.debug_details'].isRequired,
|
|
26201
26541
|
transactions: PropTypes.arrayOf(T['io.flow.internal.v0.models.debug_order_transaction_details']).isRequired,
|
|
26202
26542
|
reporting: T['io.flow.internal.v0.models.reporting_details'].isRequired,
|
|
26203
|
-
banking: T['io.flow.internal.v0.models.debug_banking_details']
|
|
26543
|
+
banking: T['io.flow.internal.v0.models.debug_banking_details'],
|
|
26204
26544
|
});
|
|
26205
26545
|
|
|
26206
26546
|
T['io.flow.internal.v0.models.channel_order'] = PropTypes.exact({
|
|
@@ -26278,6 +26618,7 @@ T['io.flow.experience.v0.models.order'] = PropTypes.exact({
|
|
|
26278
26618
|
payment_source: T['io.flow.experience.v0.enums.order_payment_source_type'],
|
|
26279
26619
|
edits: PropTypes.arrayOf(T['io.flow.experience.v0.models.edit_summary']),
|
|
26280
26620
|
rates: PropTypes.arrayOf(T['io.flow.experience.v0.models.order_rate']),
|
|
26621
|
+
pricing_type: T['io.flow.experience.v0.enums.pricing_type'],
|
|
26281
26622
|
});
|
|
26282
26623
|
|
|
26283
26624
|
T['io.flow.experience.v0.models.order_version'] = PropTypes.exact({
|
|
@@ -26363,7 +26704,6 @@ T['io.flow.internal.v0.models.validated_shipping_data'] = PropTypes.exact({
|
|
|
26363
26704
|
fulfillment_key: PropTypes.string,
|
|
26364
26705
|
rex_number: PropTypes.string,
|
|
26365
26706
|
weee_number: PropTypes.string,
|
|
26366
|
-
generate_commercial_invoice_only: PropTypes.bool.isRequired,
|
|
26367
26707
|
liability_remittance_plan: T['io.flow.internal.v0.models.liability_remittance_plan'],
|
|
26368
26708
|
shipment_cost_summary: T['io.flow.internal.v0.models.shipment_cost_summary'],
|
|
26369
26709
|
shipping_label_hop_cost_itemized_estimate: T['io.flow.label.v0.models.shipping_label_hop_cost_itemized_estimate'],
|
|
@@ -26472,78 +26812,23 @@ T['io.flow.internal.v0.models.authorized_charge_status'] = PropTypes.exact({
|
|
|
26472
26812
|
refunded: T['io.flow.common.v0.models.price_with_base'].isRequired,
|
|
26473
26813
|
});
|
|
26474
26814
|
|
|
26475
|
-
T['io.flow.internal.v0.models.
|
|
26476
|
-
number: PropTypes.string.isRequired,
|
|
26477
|
-
amount: T['io.flow.common.v0.models.price'].isRequired,
|
|
26478
|
-
description: PropTypes.string,
|
|
26479
|
-
type: T['io.flow.internal.v0.enums.ansh_item_type'].isRequired,
|
|
26480
|
-
added_on: PropTypes.string.isRequired,
|
|
26481
|
-
});
|
|
26482
|
-
|
|
26483
|
-
T['io.flow.internal.v0.models.ansh_item'] = PropTypes.exact({
|
|
26484
|
-
id: PropTypes.string.isRequired,
|
|
26485
|
-
number: PropTypes.string.isRequired,
|
|
26486
|
-
amount: T['io.flow.common.v0.models.price'].isRequired,
|
|
26487
|
-
description: PropTypes.string,
|
|
26488
|
-
type: T['io.flow.internal.v0.enums.ansh_item_type'].isRequired,
|
|
26489
|
-
added_on: PropTypes.string.isRequired,
|
|
26490
|
-
});
|
|
26491
|
-
|
|
26492
|
-
T['io.flow.internal.v0.models.ansh_item_upserted'] = PropTypes.exact({
|
|
26493
|
-
discriminator: PropTypes.oneOf(['ansh_item_upserted']).isRequired,
|
|
26494
|
-
event_id: PropTypes.string.isRequired,
|
|
26495
|
-
timestamp: PropTypes.string.isRequired,
|
|
26496
|
-
item: T['io.flow.internal.v0.models.ansh_item'].isRequired,
|
|
26497
|
-
});
|
|
26498
|
-
|
|
26499
|
-
T['io.flow.internal.v0.models.anirban_item_form'] = PropTypes.exact({
|
|
26500
|
-
number: PropTypes.string.isRequired,
|
|
26501
|
-
amount: T['io.flow.common.v0.models.price'].isRequired,
|
|
26502
|
-
description: PropTypes.string,
|
|
26503
|
-
type: T['io.flow.internal.v0.enums.anirban_item_type'].isRequired,
|
|
26504
|
-
added_on: PropTypes.string.isRequired,
|
|
26505
|
-
});
|
|
26506
|
-
|
|
26507
|
-
T['io.flow.internal.v0.models.anirban_item'] = PropTypes.exact({
|
|
26508
|
-
id: PropTypes.string.isRequired,
|
|
26509
|
-
number: PropTypes.string.isRequired,
|
|
26510
|
-
amount: T['io.flow.common.v0.models.price'].isRequired,
|
|
26511
|
-
description: PropTypes.string,
|
|
26512
|
-
type: T['io.flow.internal.v0.enums.anirban_item_type'].isRequired,
|
|
26513
|
-
added_on: PropTypes.string.isRequired,
|
|
26514
|
-
});
|
|
26515
|
-
|
|
26516
|
-
T['io.flow.internal.v0.models.anirban_item_upserted'] = PropTypes.exact({
|
|
26517
|
-
discriminator: PropTypes.oneOf(['anirban_item_upserted']).isRequired,
|
|
26518
|
-
event_id: PropTypes.string.isRequired,
|
|
26519
|
-
timestamp: PropTypes.string.isRequired,
|
|
26520
|
-
item: T['io.flow.internal.v0.models.anirban_item'].isRequired,
|
|
26521
|
-
});
|
|
26522
|
-
|
|
26523
|
-
T['io.flow.internal.v0.models.aldo_item_form'] = PropTypes.exact({
|
|
26815
|
+
T['io.flow.internal.v0.models.amrutha_item_form'] = PropTypes.exact({
|
|
26524
26816
|
number: PropTypes.string.isRequired,
|
|
26525
26817
|
amount: T['io.flow.common.v0.models.price'].isRequired,
|
|
26526
26818
|
description: PropTypes.string,
|
|
26527
|
-
type: T['io.flow.internal.v0.enums.
|
|
26819
|
+
type: T['io.flow.internal.v0.enums.amrutha_item_type'].isRequired,
|
|
26528
26820
|
added_on: PropTypes.string.isRequired,
|
|
26529
26821
|
});
|
|
26530
26822
|
|
|
26531
|
-
T['io.flow.internal.v0.models.
|
|
26823
|
+
T['io.flow.internal.v0.models.amrutha_item'] = PropTypes.exact({
|
|
26532
26824
|
id: PropTypes.string.isRequired,
|
|
26533
26825
|
number: PropTypes.string.isRequired,
|
|
26534
26826
|
amount: T['io.flow.common.v0.models.price'].isRequired,
|
|
26535
26827
|
description: PropTypes.string,
|
|
26536
|
-
type: T['io.flow.internal.v0.enums.
|
|
26828
|
+
type: T['io.flow.internal.v0.enums.amrutha_item_type'].isRequired,
|
|
26537
26829
|
added_on: PropTypes.string.isRequired,
|
|
26538
26830
|
});
|
|
26539
26831
|
|
|
26540
|
-
T['io.flow.internal.v0.models.aldo_item_upserted'] = PropTypes.exact({
|
|
26541
|
-
discriminator: PropTypes.oneOf(['aldo_item_upserted']).isRequired,
|
|
26542
|
-
event_id: PropTypes.string.isRequired,
|
|
26543
|
-
timestamp: PropTypes.string.isRequired,
|
|
26544
|
-
item: T['io.flow.internal.v0.models.aldo_item'].isRequired,
|
|
26545
|
-
});
|
|
26546
|
-
|
|
26547
26832
|
T['io.flow.internal.v0.models.account_statistics_additional_balances'] = PropTypes.exact({
|
|
26548
26833
|
on_hold: T['io.flow.common.v0.models.price'].isRequired,
|
|
26549
26834
|
});
|
|
@@ -26905,11 +27190,13 @@ T['io.flow.internal.v0.models.account_settings'] = PropTypes.exact({
|
|
|
26905
27190
|
transfer_method: T['io.flow.internal.v0.enums.transfer_method'],
|
|
26906
27191
|
b2b_tax_remittance_days: PropTypes.number,
|
|
26907
27192
|
merchant_of_record_fee: PropTypes.number,
|
|
27193
|
+
merchant_of_record_fee_create_on_order: PropTypes.bool,
|
|
26908
27194
|
duty_guarantee_fee: PropTypes.number,
|
|
26909
27195
|
transfer_fee: PropTypes.number,
|
|
26910
27196
|
negative_balance_fee: PropTypes.number,
|
|
26911
27197
|
order_service_fee: T['io.flow.internal.v0.models.tiered_fee'],
|
|
26912
27198
|
label_fees: T['io.flow.internal.v0.models.account_setting_label_fees'],
|
|
27199
|
+
revenue_share_rate: PropTypes.number,
|
|
26913
27200
|
charge_label_cost_directly: PropTypes.bool.isRequired,
|
|
26914
27201
|
transaction_posting_method: T['io.flow.internal.v0.enums.transaction_posting_method'].isRequired,
|
|
26915
27202
|
statement_transfer_transaction_location: T['io.flow.internal.v0.enums.statement_transfer_transaction_location'].isRequired,
|
|
@@ -26920,6 +27207,10 @@ T['io.flow.internal.v0.models.account_settings'] = PropTypes.exact({
|
|
|
26920
27207
|
enable_fee_reversals: PropTypes.bool.isRequired,
|
|
26921
27208
|
record_reason_for_transactions_pending_payout: PropTypes.bool.isRequired,
|
|
26922
27209
|
enable_negative_debits: PropTypes.bool.isRequired,
|
|
27210
|
+
enable_statement_pdf: PropTypes.bool.isRequired,
|
|
27211
|
+
enable_shipping_label_revenue_share: PropTypes.bool,
|
|
27212
|
+
enable_carrier_charge_revenue_share: PropTypes.bool,
|
|
27213
|
+
always_charge_organization_for_trueup: PropTypes.bool,
|
|
26923
27214
|
});
|
|
26924
27215
|
|
|
26925
27216
|
T['io.flow.internal.v0.models.account_settings_upserted'] = PropTypes.exact({
|
|
@@ -27047,6 +27338,8 @@ T['io.flow.internal.v0.enums.billing_transaction_type'] = PropTypes.oneOf([
|
|
|
27047
27338
|
'merchant_refund',
|
|
27048
27339
|
'b2b_tax',
|
|
27049
27340
|
'b2b_tax_refund',
|
|
27341
|
+
'b2b_fee_mor_tax',
|
|
27342
|
+
'b2b_fee_shipping_tax',
|
|
27050
27343
|
]);
|
|
27051
27344
|
|
|
27052
27345
|
T['io.flow.internal.v0.models.virtual_card_transaction'] = PropTypes.exact({
|
|
@@ -27299,6 +27592,7 @@ T['io.flow.internal.v0.models.manual_transaction'] = PropTypes.exact({
|
|
|
27299
27592
|
original_transaction: T['io.flow.internal.v0.models.transaction_reference'],
|
|
27300
27593
|
order: T['io.flow.internal.v0.models.billing_order_transaction_order_reference'],
|
|
27301
27594
|
attributes: PropTypes.objectOf(PropTypes.string),
|
|
27595
|
+
recoup: PropTypes.bool,
|
|
27302
27596
|
id: PropTypes.string.isRequired,
|
|
27303
27597
|
type: T['io.flow.internal.v0.enums.billing_transaction_type'].isRequired,
|
|
27304
27598
|
status: T['io.flow.internal.v0.enums.billing_transaction_status'].isRequired,
|
|
@@ -27821,8 +28115,6 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
|
|
|
27821
28115
|
T['io.flow.internal.v0.models.calculator_organization_settings_deleted'],
|
|
27822
28116
|
T['io.flow.internal.v0.models.carrier_account_upserted_v2'],
|
|
27823
28117
|
T['io.flow.internal.v0.models.carrier_account_deleted'],
|
|
27824
|
-
T['io.flow.internal.v0.models.label_generation_settings_upserted'],
|
|
27825
|
-
T['io.flow.internal.v0.models.label_generation_settings_deleted'],
|
|
27826
28118
|
T['io.flow.internal.v0.models.catalog_import_request'],
|
|
27827
28119
|
T['io.flow.internal.v0.models.exclusion_rule_upserted'],
|
|
27828
28120
|
T['io.flow.internal.v0.models.exclusion_rule_deleted'],
|
|
@@ -27892,6 +28184,8 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
|
|
|
27892
28184
|
T['io.flow.internal.v0.models.carrier_charge_deleted'],
|
|
27893
28185
|
T['io.flow.internal.v0.models.bank_payment_order_upserted'],
|
|
27894
28186
|
T['io.flow.internal.v0.models.bank_payment_order_deleted'],
|
|
28187
|
+
T['io.flow.internal.v0.models.shipping_cost_upserted'],
|
|
28188
|
+
T['io.flow.internal.v0.models.shipping_cost_deleted'],
|
|
27895
28189
|
T['io.flow.internal.v0.models.fraud_review_upserted'],
|
|
27896
28190
|
T['io.flow.internal.v0.models.fraud_review_deleted'],
|
|
27897
28191
|
T['io.flow.internal.v0.models.fraud_pending_review_upserted'],
|
|
@@ -28005,11 +28299,17 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
|
|
|
28005
28299
|
T['io.flow.internal.v0.models.paypal_refund_upserted'],
|
|
28006
28300
|
T['io.flow.internal.v0.models.paypal_dispute_upserted'],
|
|
28007
28301
|
T['io.flow.internal.v0.models.paypal_dispute_deleted'],
|
|
28302
|
+
T['io.flow.internal.v0.models.preonboarding_sellability_result_inserted'],
|
|
28303
|
+
T['io.flow.internal.v0.models.preonboarding_sellability_result_updated'],
|
|
28304
|
+
T['io.flow.internal.v0.models.preonboarding_sellability_result_deleted'],
|
|
28008
28305
|
T['io.flow.internal.v0.models.product_restriction_rule_decision_upserted'],
|
|
28009
28306
|
T['io.flow.internal.v0.models.product_restriction_rule_decision_deleted'],
|
|
28010
28307
|
T['io.flow.internal.v0.models.product_restriction_state_inserted'],
|
|
28011
28308
|
T['io.flow.internal.v0.models.product_restriction_state_updated'],
|
|
28012
28309
|
T['io.flow.internal.v0.models.product_restriction_state_deleted'],
|
|
28310
|
+
T['io.flow.internal.v0.models.product_sellability_result_inserted'],
|
|
28311
|
+
T['io.flow.internal.v0.models.product_sellability_result_updated'],
|
|
28312
|
+
T['io.flow.internal.v0.models.product_sellability_result_deleted'],
|
|
28013
28313
|
T['io.flow.internal.v0.models.order_rates_published_v3'],
|
|
28014
28314
|
T['io.flow.internal.v0.models.ratecard_dimension_estimate_upserted'],
|
|
28015
28315
|
T['io.flow.internal.v0.models.ratecard_dimension_estimate_deleted'],
|
|
@@ -28069,6 +28369,8 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
|
|
|
28069
28369
|
T['io.flow.internal.v0.models.shopify_order_risk_assessment_deleted'],
|
|
28070
28370
|
T['io.flow.internal.v0.models.shopify_order_transaction_upserted'],
|
|
28071
28371
|
T['io.flow.internal.v0.models.shopify_order_transaction_deleted'],
|
|
28372
|
+
T['io.flow.internal.v0.models.shopify_test_order_upserted'],
|
|
28373
|
+
T['io.flow.internal.v0.models.shopify_test_order_deleted'],
|
|
28072
28374
|
T['io.flow.internal.v0.models.shopify_product_create_upserted'],
|
|
28073
28375
|
T['io.flow.internal.v0.models.shopify_product_create_deleted'],
|
|
28074
28376
|
T['io.flow.internal.v0.models.shopify_product_update_upserted'],
|
|
@@ -28105,22 +28407,10 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
|
|
|
28105
28407
|
T['io.flow.internal.v0.models.stripe_connect_report_record_deleted'],
|
|
28106
28408
|
T['io.flow.internal.v0.models.liability_remittance_plan_upserted'],
|
|
28107
28409
|
T['io.flow.internal.v0.models.liability_remittance_plan_deleted'],
|
|
28108
|
-
T['io.flow.internal.v0.models.anirban_item_upserted'],
|
|
28109
|
-
T['io.flow.internal.v0.models.anirban_item_deleted'],
|
|
28110
|
-
T['io.flow.internal.v0.models.sarvesh_item_upserted'],
|
|
28111
|
-
T['io.flow.internal.v0.models.sarvesh_item_deleted'],
|
|
28112
|
-
T['io.flow.internal.v0.models.hosein_item_upserted'],
|
|
28113
|
-
T['io.flow.internal.v0.models.hosein_item_deleted'],
|
|
28114
|
-
T['io.flow.internal.v0.models.niall_item_upserted'],
|
|
28115
|
-
T['io.flow.internal.v0.models.niall_item_deleted'],
|
|
28116
|
-
T['io.flow.internal.v0.models.rohan_item_upserted'],
|
|
28117
|
-
T['io.flow.internal.v0.models.rohan_item_deleted'],
|
|
28118
|
-
T['io.flow.internal.v0.models.aldo_item_upserted'],
|
|
28119
|
-
T['io.flow.internal.v0.models.aldo_item_deleted'],
|
|
28120
|
-
T['io.flow.internal.v0.models.ansh_item_upserted'],
|
|
28121
|
-
T['io.flow.internal.v0.models.ansh_item_deleted'],
|
|
28122
28410
|
T['io.flow.internal.v0.models.gabriel_item_upserted'],
|
|
28123
28411
|
T['io.flow.internal.v0.models.gabriel_item_deleted'],
|
|
28412
|
+
T['io.flow.internal.v0.models.chenglin_item_upserted'],
|
|
28413
|
+
T['io.flow.internal.v0.models.chenglin_item_deleted'],
|
|
28124
28414
|
T['io.flow.internal.v0.models.tracking_processing_error_upserted'],
|
|
28125
28415
|
T['io.flow.internal.v0.models.tracking_processing_error_deleted'],
|
|
28126
28416
|
T['io.flow.internal.v0.models.tracking_label_event_upserted_v2'],
|
|
@@ -28297,6 +28587,7 @@ T['io.flow.internal.v0.enums.carrier_charge_transaction_type'] = PropTypes.oneOf
|
|
|
28297
28587
|
T['io.flow.internal.v0.enums.carrier_label_generation_method'] = PropTypes.oneOf(['direct', 'easypost']);
|
|
28298
28588
|
T['io.flow.internal.v0.enums.channel_billed_transaction_type'] = PropTypes.oneOf(['adjustment', 'reversal', 'channel_initiated']);
|
|
28299
28589
|
T['io.flow.internal.v0.enums.channel_transaction_type'] = PropTypes.oneOf(['adjustment', 'reversal', 'processing', 'order']);
|
|
28590
|
+
T['io.flow.internal.v0.enums.chenglin_item_type'] = PropTypes.oneOf(['physical', 'digital']);
|
|
28300
28591
|
T['io.flow.internal.v0.enums.compliance_type'] = PropTypes.oneOf(['weee']);
|
|
28301
28592
|
T['io.flow.internal.v0.enums.crossdock_tracking_status'] = PropTypes.oneOf(['notified', 'received', 'shipped']);
|
|
28302
28593
|
T['io.flow.internal.v0.enums.deminimis_adjustment_type'] = PropTypes.oneOf(['none', 'duty', 'vat', 'vat_and_duty']);
|
|
@@ -28374,8 +28665,6 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
|
|
|
28374
28665
|
'calculator_organization_settings_deleted',
|
|
28375
28666
|
'carrier_account_upserted_v2',
|
|
28376
28667
|
'carrier_account_deleted',
|
|
28377
|
-
'label_generation_settings_upserted',
|
|
28378
|
-
'label_generation_settings_deleted',
|
|
28379
28668
|
'catalog_import_request',
|
|
28380
28669
|
'exclusion_rule_upserted',
|
|
28381
28670
|
'exclusion_rule_deleted',
|
|
@@ -28445,6 +28734,8 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
|
|
|
28445
28734
|
'carrier_charge_deleted',
|
|
28446
28735
|
'bank_payment_order_upserted',
|
|
28447
28736
|
'bank_payment_order_deleted',
|
|
28737
|
+
'shipping_cost_upserted',
|
|
28738
|
+
'shipping_cost_deleted',
|
|
28448
28739
|
'fraud_review_upserted',
|
|
28449
28740
|
'fraud_review_deleted',
|
|
28450
28741
|
'fraud_pending_review_upserted',
|
|
@@ -28558,11 +28849,17 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
|
|
|
28558
28849
|
'paypal_refund_upserted',
|
|
28559
28850
|
'paypal_dispute_upserted',
|
|
28560
28851
|
'paypal_dispute_deleted',
|
|
28852
|
+
'preonboarding_sellability_result_inserted',
|
|
28853
|
+
'preonboarding_sellability_result_updated',
|
|
28854
|
+
'preonboarding_sellability_result_deleted',
|
|
28561
28855
|
'product_restriction_rule_decision_upserted',
|
|
28562
28856
|
'product_restriction_rule_decision_deleted',
|
|
28563
28857
|
'product_restriction_state_inserted',
|
|
28564
28858
|
'product_restriction_state_updated',
|
|
28565
28859
|
'product_restriction_state_deleted',
|
|
28860
|
+
'product_sellability_result_inserted',
|
|
28861
|
+
'product_sellability_result_updated',
|
|
28862
|
+
'product_sellability_result_deleted',
|
|
28566
28863
|
'order_rates_published_v3',
|
|
28567
28864
|
'ratecard_dimension_estimate_upserted',
|
|
28568
28865
|
'ratecard_dimension_estimate_deleted',
|
|
@@ -28622,6 +28919,8 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
|
|
|
28622
28919
|
'shopify_order_risk_assessment_deleted',
|
|
28623
28920
|
'shopify_order_transaction_upserted',
|
|
28624
28921
|
'shopify_order_transaction_deleted',
|
|
28922
|
+
'shopify_test_order_upserted',
|
|
28923
|
+
'shopify_test_order_deleted',
|
|
28625
28924
|
'shopify_product_create_upserted',
|
|
28626
28925
|
'shopify_product_create_deleted',
|
|
28627
28926
|
'shopify_product_update_upserted',
|
|
@@ -28658,22 +28957,10 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
|
|
|
28658
28957
|
'stripe_connect_report_record_deleted',
|
|
28659
28958
|
'liability_remittance_plan_upserted',
|
|
28660
28959
|
'liability_remittance_plan_deleted',
|
|
28661
|
-
'anirban_item_upserted',
|
|
28662
|
-
'anirban_item_deleted',
|
|
28663
|
-
'sarvesh_item_upserted',
|
|
28664
|
-
'sarvesh_item_deleted',
|
|
28665
|
-
'hosein_item_upserted',
|
|
28666
|
-
'hosein_item_deleted',
|
|
28667
|
-
'niall_item_upserted',
|
|
28668
|
-
'niall_item_deleted',
|
|
28669
|
-
'rohan_item_upserted',
|
|
28670
|
-
'rohan_item_deleted',
|
|
28671
|
-
'aldo_item_upserted',
|
|
28672
|
-
'aldo_item_deleted',
|
|
28673
|
-
'ansh_item_upserted',
|
|
28674
|
-
'ansh_item_deleted',
|
|
28675
28960
|
'gabriel_item_upserted',
|
|
28676
28961
|
'gabriel_item_deleted',
|
|
28962
|
+
'chenglin_item_upserted',
|
|
28963
|
+
'chenglin_item_deleted',
|
|
28677
28964
|
'tracking_processing_error_upserted',
|
|
28678
28965
|
'tracking_processing_error_deleted',
|
|
28679
28966
|
'tracking_label_event_upserted_v2',
|
|
@@ -28715,7 +29002,7 @@ T['io.flow.internal.v0.enums.graphql_service_types'] = PropTypes.oneOf([
|
|
|
28715
29002
|
T['io.flow.internal.v0.enums.http_method'] = PropTypes.oneOf(['get', 'post']);
|
|
28716
29003
|
T['io.flow.internal.v0.enums.keyword_type'] = PropTypes.oneOf(['positive', 'negative']);
|
|
28717
29004
|
T['io.flow.internal.v0.enums.label_billing_strategy'] = PropTypes.oneOf(['quote', 'carrier']);
|
|
28718
|
-
T['io.flow.internal.v0.enums.label_request_result_organization_type'] = PropTypes.oneOf(['all', '
|
|
29005
|
+
T['io.flow.internal.v0.enums.label_request_result_organization_type'] = PropTypes.oneOf(['all', 'cafe24_production', 'shopify_production', 'sandbox']);
|
|
28719
29006
|
T['io.flow.internal.v0.enums.label_transaction_type'] = PropTypes.oneOf(['adjustment', 'reversal', 'billable_label', 'fee', 'revenue_share']);
|
|
28720
29007
|
T['io.flow.internal.v0.enums.merchant_fee_transaction_type'] = PropTypes.oneOf(['adjustment', 'reversal', 'fee']);
|
|
28721
29008
|
T['io.flow.internal.v0.enums.non_l4l_tax_duty_fx_transaction_type'] = PropTypes.oneOf(['adjustment', 'reversal', 'fee']);
|
|
@@ -28774,6 +29061,8 @@ T['io.flow.internal.v0.enums.restriction_organization_channel'] = PropTypes.oneO
|
|
|
28774
29061
|
'shopify-sandbox',
|
|
28775
29062
|
'enterprise-sandbox',
|
|
28776
29063
|
'enterprise-qa',
|
|
29064
|
+
'cafe24',
|
|
29065
|
+
'cafe24-sandbox',
|
|
28777
29066
|
]);
|
|
28778
29067
|
|
|
28779
29068
|
T['io.flow.internal.v0.enums.restriction_rule_exception_action'] = PropTypes.oneOf(['allow', 'deny']);
|
|
@@ -29215,6 +29504,12 @@ T['io.flow.internal.v0.models.fulfillment_reference'] = PropTypes.exact({
|
|
|
29215
29504
|
id: PropTypes.string.isRequired,
|
|
29216
29505
|
});
|
|
29217
29506
|
|
|
29507
|
+
T['io.flow.internal.v0.models.generate_load_rate'] = PropTypes.exact({
|
|
29508
|
+
organization_ids: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
29509
|
+
events_per_second: PropTypes.number.isRequired,
|
|
29510
|
+
duration_seconds: PropTypes.number.isRequired,
|
|
29511
|
+
});
|
|
29512
|
+
|
|
29218
29513
|
T['io.flow.internal.v0.models.gift_card_form'] = PropTypes.exact({
|
|
29219
29514
|
number: PropTypes.string.isRequired,
|
|
29220
29515
|
pin: PropTypes.string,
|
|
@@ -29247,10 +29542,6 @@ T['io.flow.internal.v0.models.hs6'] = PropTypes.exact({
|
|
|
29247
29542
|
description: PropTypes.string.isRequired,
|
|
29248
29543
|
});
|
|
29249
29544
|
|
|
29250
|
-
T['io.flow.internal.v0.models.hs6_metadata'] = PropTypes.exact({
|
|
29251
|
-
description: PropTypes.string.isRequired,
|
|
29252
|
-
});
|
|
29253
|
-
|
|
29254
29545
|
T['io.flow.internal.v0.models.internal_payment_request_verification'] = PropTypes.exact({
|
|
29255
29546
|
placeholder: PropTypes.string,
|
|
29256
29547
|
});
|
|
@@ -29315,11 +29606,6 @@ T['io.flow.internal.v0.models.item_values_form'] = PropTypes.exact({
|
|
|
29315
29606
|
values: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
29316
29607
|
});
|
|
29317
29608
|
|
|
29318
|
-
T['io.flow.internal.v0.models.jean_demo_item'] = PropTypes.exact({
|
|
29319
|
-
id: PropTypes.string.isRequired,
|
|
29320
|
-
name: PropTypes.string.isRequired,
|
|
29321
|
-
});
|
|
29322
|
-
|
|
29323
29609
|
T['io.flow.internal.v0.models.journal'] = PropTypes.exact({
|
|
29324
29610
|
name: PropTypes.string.isRequired,
|
|
29325
29611
|
queued: PropTypes.number.isRequired,
|
|
@@ -29338,12 +29624,6 @@ T['io.flow.internal.v0.models.label_association'] = PropTypes.exact({
|
|
|
29338
29624
|
constructions: PropTypes.objectOf(PropTypes.arrayOf(PropTypes.string)).isRequired,
|
|
29339
29625
|
});
|
|
29340
29626
|
|
|
29341
|
-
T['io.flow.internal.v0.models.label_generation_settings_form'] = PropTypes.exact({
|
|
29342
|
-
item_identifier: PropTypes.string,
|
|
29343
|
-
auto_generate_query: PropTypes.string,
|
|
29344
|
-
commercial_invoice_only_query: PropTypes.string,
|
|
29345
|
-
});
|
|
29346
|
-
|
|
29347
29627
|
T['io.flow.internal.v0.models.labels_prediction'] = PropTypes.exact({
|
|
29348
29628
|
main_material: PropTypes.string.isRequired,
|
|
29349
29629
|
gender: PropTypes.string.isRequired,
|
|
@@ -29419,6 +29699,11 @@ T['io.flow.internal.v0.models.organization_onboarding_state_audit_result'] = Pro
|
|
|
29419
29699
|
validation_errors: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
29420
29700
|
});
|
|
29421
29701
|
|
|
29702
|
+
T['io.flow.internal.v0.models.organization_promotion_warning'] = PropTypes.exact({
|
|
29703
|
+
prod_org: PropTypes.string.isRequired,
|
|
29704
|
+
message: PropTypes.string.isRequired,
|
|
29705
|
+
});
|
|
29706
|
+
|
|
29422
29707
|
T['io.flow.internal.v0.models.partner_organization_authorization_form'] = PropTypes.exact({
|
|
29423
29708
|
partner: PropTypes.string.isRequired,
|
|
29424
29709
|
});
|
|
@@ -30986,6 +31271,11 @@ T['io.flow.organization.onboarding.state.v0.models.deactivation_put_form'] = Pro
|
|
|
30986
31271
|
deactivate_at: PropTypes.string,
|
|
30987
31272
|
});
|
|
30988
31273
|
|
|
31274
|
+
T['io.flow.sellability.v0.models.sellability_region_with_reasons'] = PropTypes.exact({
|
|
31275
|
+
region: PropTypes.string.isRequired,
|
|
31276
|
+
reasons: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
31277
|
+
});
|
|
31278
|
+
|
|
30989
31279
|
T['io.flow.currency.v0.models.rate_form'] = PropTypes.exact({
|
|
30990
31280
|
base: PropTypes.string.isRequired,
|
|
30991
31281
|
target: PropTypes.string.isRequired,
|
|
@@ -31005,6 +31295,7 @@ export const accountContact = T['io.flow.internal.v0.models.account_contact'];
|
|
|
31005
31295
|
export const accountContactDeleted = T['io.flow.internal.v0.models.account_contact_deleted'];
|
|
31006
31296
|
export const accountContactForm = T['io.flow.internal.v0.models.account_contact_form'];
|
|
31007
31297
|
export const accountContactUpserted = T['io.flow.internal.v0.models.account_contact_upserted'];
|
|
31298
|
+
export const accountCurrencyFilter = T['io.flow.internal.v0.enums.account_currency_filter'];
|
|
31008
31299
|
export const accountDeletedV2 = T['io.flow.internal.v0.models.account_deleted_v2'];
|
|
31009
31300
|
export const accountDepositRule = T['io.flow.internal.v0.models.account_deposit_rule'];
|
|
31010
31301
|
export const accountDepositRuleForm = T['io.flow.internal.v0.models.account_deposit_rule_form'];
|
|
@@ -31092,25 +31383,13 @@ export const afterpayRefund = T['io.flow.internal.v0.models.afterpay_refund'];
|
|
|
31092
31383
|
export const afterpayRefundDeleted = T['io.flow.internal.v0.models.afterpay_refund_deleted'];
|
|
31093
31384
|
export const afterpayRefundUpserted = T['io.flow.internal.v0.models.afterpay_refund_upserted'];
|
|
31094
31385
|
export const aftershipWebhook = T['io.flow.internal.v0.models.aftership_webhook'];
|
|
31095
|
-
export const aldoItem = T['io.flow.internal.v0.models.aldo_item'];
|
|
31096
|
-
export const aldoItemDeleted = T['io.flow.internal.v0.models.aldo_item_deleted'];
|
|
31097
|
-
export const aldoItemForm = T['io.flow.internal.v0.models.aldo_item_form'];
|
|
31098
|
-
export const aldoItemType = T['io.flow.internal.v0.enums.aldo_item_type'];
|
|
31099
|
-
export const aldoItemUpserted = T['io.flow.internal.v0.models.aldo_item_upserted'];
|
|
31100
31386
|
export const allItemsExport = T['io.flow.internal.v0.models.all_items_export'];
|
|
31101
31387
|
export const allOrganizationsMembership = T['io.flow.internal.v0.models.all_organizations_membership'];
|
|
31102
31388
|
export const allocationItemReference = T['io.flow.internal.v0.models.allocation_item_reference'];
|
|
31103
31389
|
export const allowedLabels = T['io.flow.internal.v0.models.allowed_labels'];
|
|
31104
|
-
export const
|
|
31105
|
-
export const
|
|
31106
|
-
export const
|
|
31107
|
-
export const anirbanItemType = T['io.flow.internal.v0.enums.anirban_item_type'];
|
|
31108
|
-
export const anirbanItemUpserted = T['io.flow.internal.v0.models.anirban_item_upserted'];
|
|
31109
|
-
export const anshItem = T['io.flow.internal.v0.models.ansh_item'];
|
|
31110
|
-
export const anshItemDeleted = T['io.flow.internal.v0.models.ansh_item_deleted'];
|
|
31111
|
-
export const anshItemForm = T['io.flow.internal.v0.models.ansh_item_form'];
|
|
31112
|
-
export const anshItemType = T['io.flow.internal.v0.enums.ansh_item_type'];
|
|
31113
|
-
export const anshItemUpserted = T['io.flow.internal.v0.models.ansh_item_upserted'];
|
|
31390
|
+
export const amruthaItem = T['io.flow.internal.v0.models.amrutha_item'];
|
|
31391
|
+
export const amruthaItemForm = T['io.flow.internal.v0.models.amrutha_item_form'];
|
|
31392
|
+
export const amruthaItemType = T['io.flow.internal.v0.enums.amrutha_item_type'];
|
|
31114
31393
|
export const anyDangerousGoods = T['io.flow.internal.v0.enums.any_dangerous_goods'];
|
|
31115
31394
|
export const apiCallReferenceId = T['io.flow.internal.v0.enums.api_call_reference_id'];
|
|
31116
31395
|
export const applePayAuthorizationPayload = T['io.flow.internal.v0.models.apple_pay_authorization_payload'];
|
|
@@ -31133,6 +31412,10 @@ export const authorizedOrderCharge = T['io.flow.internal.v0.unions.authorized_or
|
|
|
31133
31412
|
export const authorizedShippingCharge = T['io.flow.internal.v0.models.authorized_shipping_charge'];
|
|
31134
31413
|
export const autoRestrictRule = T['io.flow.internal.v0.enums.auto_restrict_rule'];
|
|
31135
31414
|
export const autoReviewCriteria = T['io.flow.internal.v0.models.auto_review_criteria'];
|
|
31415
|
+
export const b2BFeeMorTaxTriggerMetadata = T['io.flow.internal.v0.models.b2b_fee_mor_tax_trigger_metadata'];
|
|
31416
|
+
export const b2BFeeMorTaxTriggerType = T['io.flow.internal.v0.enums.b2b_fee_mor_tax_trigger_type'];
|
|
31417
|
+
export const b2BFeeShippingTaxTriggerMetadata = T['io.flow.internal.v0.models.b2b_fee_shipping_tax_trigger_metadata'];
|
|
31418
|
+
export const b2BFeeShippingTaxTriggerType = T['io.flow.internal.v0.enums.b2b_fee_shipping_tax_trigger_type'];
|
|
31136
31419
|
export const b2BTaxLedger = T['io.flow.internal.v0.models.b2b_tax_ledger'];
|
|
31137
31420
|
export const b2BTaxLedgerDocumentType = T['io.flow.internal.v0.enums.b2b_tax_ledger_document_type'];
|
|
31138
31421
|
export const b2BTaxLedgerForm = T['io.flow.internal.v0.models.b2b_tax_ledger_form'];
|
|
@@ -31194,6 +31477,9 @@ export const bitpayAccountPutForm = T['io.flow.internal.v0.models.bitpay_account
|
|
|
31194
31477
|
export const bitpayAuthentication = T['io.flow.internal.v0.models.bitpay_authentication'];
|
|
31195
31478
|
export const bitpayAuthenticationDataReference = T['io.flow.internal.v0.models.bitpay_authentication_data_reference'];
|
|
31196
31479
|
export const bitpayAuthenticationForm = T['io.flow.internal.v0.models.bitpay_authentication_form'];
|
|
31480
|
+
export const bojanaItem = T['io.flow.internal.v0.models.bojana_item'];
|
|
31481
|
+
export const bojanaItemForm = T['io.flow.internal.v0.models.bojana_item_form'];
|
|
31482
|
+
export const bojanaItemType = T['io.flow.internal.v0.enums.bojana_item_type'];
|
|
31197
31483
|
export const booleanFeatureDefaultValue = T['io.flow.internal.v0.models.boolean_feature_default_value'];
|
|
31198
31484
|
export const booleanFeatureRule = T['io.flow.internal.v0.models.boolean_feature_rule'];
|
|
31199
31485
|
export const booleanFeatureRuleForm = T['io.flow.internal.v0.models.boolean_feature_rule_form'];
|
|
@@ -31365,6 +31651,11 @@ export const checkoutSettings = T['io.flow.internal.v0.models.checkout_settings'
|
|
|
31365
31651
|
export const checkoutShippingMethodPromptBehavior = T['io.flow.internal.v0.enums.checkout_shipping_method_prompt_behavior'];
|
|
31366
31652
|
export const checkoutUrl = T['io.flow.internal.v0.models.checkout_url'];
|
|
31367
31653
|
export const checkoutUrlType = T['io.flow.internal.v0.enums.checkout_url_type'];
|
|
31654
|
+
export const chenglinItem = T['io.flow.internal.v0.models.chenglin_item'];
|
|
31655
|
+
export const chenglinItemDeleted = T['io.flow.internal.v0.models.chenglin_item_deleted'];
|
|
31656
|
+
export const chenglinItemForm = T['io.flow.internal.v0.models.chenglin_item_form'];
|
|
31657
|
+
export const chenglinItemType = T['io.flow.internal.v0.enums.chenglin_item_type'];
|
|
31658
|
+
export const chenglinItemUpserted = T['io.flow.internal.v0.models.chenglin_item_upserted'];
|
|
31368
31659
|
export const cipher = T['io.flow.internal.v0.models.cipher'];
|
|
31369
31660
|
export const cipherForm = T['io.flow.internal.v0.models.cipher_form'];
|
|
31370
31661
|
export const cipherReference = T['io.flow.internal.v0.models.cipher_reference'];
|
|
@@ -31398,6 +31689,7 @@ export const classificationProductSummaryPage = T['io.flow.internal.v0.models.cl
|
|
|
31398
31689
|
export const classificationRequeueRequest = T['io.flow.internal.v0.models.classification_requeue_request'];
|
|
31399
31690
|
export const classificationResponse = T['io.flow.internal.v0.unions.classification_response'];
|
|
31400
31691
|
export const classificationScope = T['io.flow.internal.v0.enums.classification_scope'];
|
|
31692
|
+
export const classificationSource = T['io.flow.internal.v0.enums.classification_source'];
|
|
31401
31693
|
export const classificationStatistics = T['io.flow.internal.v0.models.classification_statistics'];
|
|
31402
31694
|
export const classificationSummaryReportPayload = T['io.flow.internal.v0.models.classification_summary_report_payload'];
|
|
31403
31695
|
export const classificationTaxonomy = T['io.flow.internal.v0.unions.classification_taxonomy'];
|
|
@@ -31742,6 +32034,7 @@ export const geRevenueShareTransaction = T['io.flow.internal.v0.models.ge_revenu
|
|
|
31742
32034
|
export const geRevenueShareTransactionType = T['io.flow.internal.v0.enums.ge_revenue_share_transaction_type'];
|
|
31743
32035
|
export const generateLoad = T['io.flow.internal.v0.unions.generate_load'];
|
|
31744
32036
|
export const generateLoadMultipleOrgs = T['io.flow.internal.v0.models.generate_load_multiple_orgs'];
|
|
32037
|
+
export const generateLoadRate = T['io.flow.internal.v0.models.generate_load_rate'];
|
|
31745
32038
|
export const generateLoadSingleOrg = T['io.flow.internal.v0.models.generate_load_single_org'];
|
|
31746
32039
|
export const genericValidationError = T['io.flow.internal.v0.models.generic_validation_error'];
|
|
31747
32040
|
export const giftCard = T['io.flow.internal.v0.models.gift_card'];
|
|
@@ -31771,11 +32064,6 @@ export const harmonizationThresholdForm = T['io.flow.internal.v0.models.harmoniz
|
|
|
31771
32064
|
export const harmonizationUnclassifiedStatistics = T['io.flow.internal.v0.models.harmonization_unclassified_statistics'];
|
|
31772
32065
|
export const harmonizeFullyRequestV2 = T['io.flow.internal.v0.models.harmonize_fully_request_v2'];
|
|
31773
32066
|
export const harmonizedItemsHs6Export = T['io.flow.internal.v0.models.harmonized_items_hs6_export'];
|
|
31774
|
-
export const hoseinItem = T['io.flow.internal.v0.models.hosein_item'];
|
|
31775
|
-
export const hoseinItemDeleted = T['io.flow.internal.v0.models.hosein_item_deleted'];
|
|
31776
|
-
export const hoseinItemForm = T['io.flow.internal.v0.models.hosein_item_form'];
|
|
31777
|
-
export const hoseinItemType = T['io.flow.internal.v0.enums.hosein_item_type'];
|
|
31778
|
-
export const hoseinItemUpserted = T['io.flow.internal.v0.models.hosein_item_upserted'];
|
|
31779
32067
|
export const hs6 = T['io.flow.internal.v0.models.hs6'];
|
|
31780
32068
|
export const hs6CodeSource = T['io.flow.internal.v0.enums.hs6_code_source'];
|
|
31781
32069
|
export const hs6Metadata = T['io.flow.internal.v0.models.hs6_metadata'];
|
|
@@ -31849,7 +32137,6 @@ export const itemSalesMarginVersion = T['io.flow.internal.v0.models.item_sales_m
|
|
|
31849
32137
|
export const itemSummary = T['io.flow.internal.v0.models.item_summary'];
|
|
31850
32138
|
export const itemType = T['io.flow.internal.v0.enums.item_type'];
|
|
31851
32139
|
export const itemValuesForm = T['io.flow.internal.v0.models.item_values_form'];
|
|
31852
|
-
export const jeanDemoItem = T['io.flow.internal.v0.models.jean_demo_item'];
|
|
31853
32140
|
export const journal = T['io.flow.internal.v0.models.journal'];
|
|
31854
32141
|
export const journalFailure = T['io.flow.internal.v0.models.journal_failure'];
|
|
31855
32142
|
export const journalOperation = T['io.flow.internal.v0.enums.journal_operation'];
|
|
@@ -31876,10 +32163,6 @@ export const labelCreationStatus = T['io.flow.internal.v0.enums.label_creation_s
|
|
|
31876
32163
|
export const labelDestination = T['io.flow.internal.v0.models.label_destination'];
|
|
31877
32164
|
export const labelEventMedium = T['io.flow.internal.v0.enums.label_event_medium'];
|
|
31878
32165
|
export const labelEventSource = T['io.flow.internal.v0.enums.label_event_source'];
|
|
31879
|
-
export const labelGenerationSettings = T['io.flow.internal.v0.models.label_generation_settings'];
|
|
31880
|
-
export const labelGenerationSettingsDeleted = T['io.flow.internal.v0.models.label_generation_settings_deleted'];
|
|
31881
|
-
export const labelGenerationSettingsForm = T['io.flow.internal.v0.models.label_generation_settings_form'];
|
|
31882
|
-
export const labelGenerationSettingsUpserted = T['io.flow.internal.v0.models.label_generation_settings_upserted'];
|
|
31883
32166
|
export const labelInvoiceRequest = T['io.flow.internal.v0.models.label_invoice_request'];
|
|
31884
32167
|
export const labelInvoiceRequestDeleted = T['io.flow.internal.v0.models.label_invoice_request_deleted'];
|
|
31885
32168
|
export const labelInvoiceRequestUpserted = T['io.flow.internal.v0.models.label_invoice_request_upserted'];
|
|
@@ -31987,11 +32270,6 @@ export const mixedBagWeight = T['io.flow.internal.v0.enums.mixed_bag_weight'];
|
|
|
31987
32270
|
export const natureOfSale = T['io.flow.internal.v0.enums.nature_of_sale'];
|
|
31988
32271
|
export const negativeDebitMetrics = T['io.flow.internal.v0.models.negative_debit_metrics'];
|
|
31989
32272
|
export const nextBillingStatement = T['io.flow.internal.v0.models.next_billing_statement'];
|
|
31990
|
-
export const niallItem = T['io.flow.internal.v0.models.niall_item'];
|
|
31991
|
-
export const niallItemDeleted = T['io.flow.internal.v0.models.niall_item_deleted'];
|
|
31992
|
-
export const niallItemForm = T['io.flow.internal.v0.models.niall_item_form'];
|
|
31993
|
-
export const niallItemType = T['io.flow.internal.v0.enums.niall_item_type'];
|
|
31994
|
-
export const niallItemUpserted = T['io.flow.internal.v0.models.niall_item_upserted'];
|
|
31995
32273
|
export const noCalculatedTaxAmount = T['io.flow.internal.v0.models.no_calculated_tax_amount'];
|
|
31996
32274
|
export const noClassificationForm = T['io.flow.internal.v0.models.no_classification_form'];
|
|
31997
32275
|
export const noLiabilityReasonCode = T['io.flow.internal.v0.enums.no_liability_reason_code'];
|
|
@@ -32107,6 +32385,9 @@ export const organizationPaymentSettingForm = T['io.flow.internal.v0.models.orga
|
|
|
32107
32385
|
export const organizationPaymentSettingUpserted = T['io.flow.internal.v0.models.organization_payment_setting_upserted'];
|
|
32108
32386
|
export const organizationPaymentSettingVersion = T['io.flow.internal.v0.models.organization_payment_setting_version'];
|
|
32109
32387
|
export const organizationPaymentStatus = T['io.flow.internal.v0.enums.organization_payment_status'];
|
|
32388
|
+
export const organizationPromotion = T['io.flow.internal.v0.models.organization_promotion'];
|
|
32389
|
+
export const organizationPromotionStatus = T['io.flow.internal.v0.enums.organization_promotion_status'];
|
|
32390
|
+
export const organizationPromotionWarning = T['io.flow.internal.v0.models.organization_promotion_warning'];
|
|
32110
32391
|
export const organizationRestrictionApprovalStatus = T['io.flow.internal.v0.enums.organization_restriction_approval_status'];
|
|
32111
32392
|
export const organizationRestrictionNoteForm = T['io.flow.internal.v0.models.organization_restriction_note_form'];
|
|
32112
32393
|
export const organizationRestrictionNoteType = T['io.flow.internal.v0.enums.organization_restriction_note_type'];
|
|
@@ -32229,9 +32510,6 @@ export const platformFeeFlat = T['io.flow.internal.v0.models.platform_fee_flat']
|
|
|
32229
32510
|
export const platformFeePause = T['io.flow.internal.v0.models.platform_fee_pause'];
|
|
32230
32511
|
export const platformFeePercentage = T['io.flow.internal.v0.models.platform_fee_percentage'];
|
|
32231
32512
|
export const platformFeePercentageTier = T['io.flow.internal.v0.models.platform_fee_percentage_tier'];
|
|
32232
|
-
export const prateekItem = T['io.flow.internal.v0.models.prateek_item'];
|
|
32233
|
-
export const prateekItemForm = T['io.flow.internal.v0.models.prateek_item_form'];
|
|
32234
|
-
export const prateekItemType = T['io.flow.internal.v0.enums.prateek_item_type'];
|
|
32235
32513
|
export const prediction = T['io.flow.internal.v0.models.prediction'];
|
|
32236
32514
|
export const preferredBillingSchedule = T['io.flow.internal.v0.enums.preferred_billing_schedule'];
|
|
32237
32515
|
export const preonboardingClassificationDecision = T['io.flow.internal.v0.enums.preonboarding_classification_decision'];
|
|
@@ -32244,6 +32522,9 @@ export const preonboardingClassificationType = T['io.flow.internal.v0.enums.preo
|
|
|
32244
32522
|
export const preonboardingMerchant = T['io.flow.internal.v0.models.preonboarding_merchant'];
|
|
32245
32523
|
export const preonboardingRequestStatus = T['io.flow.internal.v0.enums.preonboarding_request_status'];
|
|
32246
32524
|
export const preonboardingSellabilityResult = T['io.flow.internal.v0.models.preonboarding_sellability_result'];
|
|
32525
|
+
export const preonboardingSellabilityResultDeleted = T['io.flow.internal.v0.models.preonboarding_sellability_result_deleted'];
|
|
32526
|
+
export const preonboardingSellabilityResultInserted = T['io.flow.internal.v0.models.preonboarding_sellability_result_inserted'];
|
|
32527
|
+
export const preonboardingSellabilityResultUpdated = T['io.flow.internal.v0.models.preonboarding_sellability_result_updated'];
|
|
32247
32528
|
export const priceInclusivity = T['io.flow.internal.v0.models.price_inclusivity'];
|
|
32248
32529
|
export const priceSelector = T['io.flow.internal.v0.enums.price_selector'];
|
|
32249
32530
|
export const prioritizedCenterReference = T['io.flow.internal.v0.models.prioritized_center_reference'];
|
|
@@ -32287,7 +32568,11 @@ export const productReviewHistory = T['io.flow.internal.v0.models.product_review
|
|
|
32287
32568
|
export const productSellabilityInternal = T['io.flow.internal.v0.models.product_sellability_internal'];
|
|
32288
32569
|
export const productSellabilityInternalForm = T['io.flow.internal.v0.models.product_sellability_internal_form'];
|
|
32289
32570
|
export const productSellabilityInternalResult = T['io.flow.internal.v0.models.product_sellability_internal_result'];
|
|
32571
|
+
export const productSellabilityInternalRuleMatch = T['io.flow.internal.v0.models.product_sellability_internal_rule_match'];
|
|
32290
32572
|
export const productSellabilityResult = T['io.flow.internal.v0.models.product_sellability_result'];
|
|
32573
|
+
export const productSellabilityResultDeleted = T['io.flow.internal.v0.models.product_sellability_result_deleted'];
|
|
32574
|
+
export const productSellabilityResultInserted = T['io.flow.internal.v0.models.product_sellability_result_inserted'];
|
|
32575
|
+
export const productSellabilityResultUpdated = T['io.flow.internal.v0.models.product_sellability_result_updated'];
|
|
32291
32576
|
export const productStatus = T['io.flow.internal.v0.enums.product_status'];
|
|
32292
32577
|
export const productTransaction = T['io.flow.internal.v0.models.product_transaction'];
|
|
32293
32578
|
export const proofOfPosting = T['io.flow.internal.v0.unions.proof_of_posting'];
|
|
@@ -32498,11 +32783,6 @@ export const revenueRecordType = T['io.flow.internal.v0.enums.revenue_record_typ
|
|
|
32498
32783
|
export const revenueRecordUpserted = T['io.flow.internal.v0.models.revenue_record_upserted'];
|
|
32499
32784
|
export const riskCheck = T['io.flow.internal.v0.enums.risk_check'];
|
|
32500
32785
|
export const riskEvaluation = T['io.flow.internal.v0.enums.risk_evaluation'];
|
|
32501
|
-
export const rohanItem = T['io.flow.internal.v0.models.rohan_item'];
|
|
32502
|
-
export const rohanItemDeleted = T['io.flow.internal.v0.models.rohan_item_deleted'];
|
|
32503
|
-
export const rohanItemForm = T['io.flow.internal.v0.models.rohan_item_form'];
|
|
32504
|
-
export const rohanItemType = T['io.flow.internal.v0.enums.rohan_item_type'];
|
|
32505
|
-
export const rohanItemUpserted = T['io.flow.internal.v0.models.rohan_item_upserted'];
|
|
32506
32786
|
export const routingAccount = T['io.flow.internal.v0.models.routing_account'];
|
|
32507
32787
|
export const routingEntity = T['io.flow.internal.v0.unions.routing_entity'];
|
|
32508
32788
|
export const routingMerchant = T['io.flow.internal.v0.models.routing_merchant'];
|
|
@@ -32510,11 +32790,6 @@ export const routingProcessor = T['io.flow.internal.v0.models.routing_processor'
|
|
|
32510
32790
|
export const salesPaymentRecord = T['io.flow.internal.v0.models.sales_payment_record'];
|
|
32511
32791
|
export const sandboxSetup = T['io.flow.internal.v0.models.sandbox_setup'];
|
|
32512
32792
|
export const sandboxSetupForm = T['io.flow.internal.v0.models.sandbox_setup_form'];
|
|
32513
|
-
export const sarveshItem = T['io.flow.internal.v0.models.sarvesh_item'];
|
|
32514
|
-
export const sarveshItemDeleted = T['io.flow.internal.v0.models.sarvesh_item_deleted'];
|
|
32515
|
-
export const sarveshItemForm = T['io.flow.internal.v0.models.sarvesh_item_form'];
|
|
32516
|
-
export const sarveshItemType = T['io.flow.internal.v0.enums.sarvesh_item_type'];
|
|
32517
|
-
export const sarveshItemUpserted = T['io.flow.internal.v0.models.sarvesh_item_upserted'];
|
|
32518
32793
|
export const scheduledPayment = T['io.flow.internal.v0.models.scheduled_payment'];
|
|
32519
32794
|
export const screen = T['io.flow.internal.v0.models.screen'];
|
|
32520
32795
|
export const screenForm = T['io.flow.internal.v0.models.screen_form'];
|
|
@@ -32530,20 +32805,32 @@ export const searchProviderExport = T['io.flow.internal.v0.models.search_provide
|
|
|
32530
32805
|
export const searchTrackingSummary = T['io.flow.internal.v0.models.search_tracking_summary'];
|
|
32531
32806
|
export const sellabilityCheckResult = T['io.flow.internal.v0.models.sellability_check_result'];
|
|
32532
32807
|
export const sellabilityCheckStatus = T['io.flow.internal.v0.enums.sellability_check_status'];
|
|
32808
|
+
export const sellabilityInternalMatchType = T['io.flow.internal.v0.enums.sellability_internal_match_type'];
|
|
32533
32809
|
export const sellabilityStatus = T['io.flow.internal.v0.enums.sellability_status'];
|
|
32534
32810
|
export const sessionOrderData = T['io.flow.internal.v0.models.session_order_data'];
|
|
32535
32811
|
export const setupBlockPutForm = T['io.flow.internal.v0.models.setup_block_put_form'];
|
|
32536
32812
|
export const sfExpress = T['io.flow.internal.v0.models.sf_express'];
|
|
32537
32813
|
export const shipmentCostSummary = T['io.flow.internal.v0.models.shipment_cost_summary'];
|
|
32814
|
+
export const shippingCostDeleted = T['io.flow.internal.v0.models.shipping_cost_deleted'];
|
|
32815
|
+
export const shippingCostSummary = T['io.flow.internal.v0.models.shipping_cost_summary'];
|
|
32816
|
+
export const shippingCostUpserted = T['io.flow.internal.v0.models.shipping_cost_upserted'];
|
|
32538
32817
|
export const shippingLane = T['io.flow.internal.v0.models.shipping_lane'];
|
|
32539
32818
|
export const shippingMethodReference = T['io.flow.internal.v0.models.shipping_method_reference'];
|
|
32540
32819
|
export const shippingPricing = T['io.flow.internal.v0.models.shipping_pricing'];
|
|
32541
32820
|
export const shippingRateEstimateAvailableInternal = T['io.flow.internal.v0.models.shipping_rate_estimate_available_internal'];
|
|
32542
32821
|
export const shippingRateEstimateInternal = T['io.flow.internal.v0.models.shipping_rate_estimate_internal'];
|
|
32543
32822
|
export const shippingRateEstimateRequestInternal = T['io.flow.internal.v0.models.shipping_rate_estimate_request_internal'];
|
|
32823
|
+
export const shopifyAddress = T['io.flow.internal.v0.models.shopify_address'];
|
|
32824
|
+
export const shopifyCallbackError = T['io.flow.internal.v0.models.shopify_callback_error'];
|
|
32825
|
+
export const shopifyCallbackErrorCode = T['io.flow.internal.v0.enums.shopify_callback_error_code'];
|
|
32826
|
+
export const shopifyCallbackErrorItem = T['io.flow.internal.v0.models.shopify_callback_error_item'];
|
|
32544
32827
|
export const shopifyCatalogPublication = T['io.flow.internal.v0.models.shopify_catalog_publication'];
|
|
32545
32828
|
export const shopifyChannelOrganizationToken = T['io.flow.internal.v0.models.shopify_channel_organization_token'];
|
|
32546
32829
|
export const shopifyChannelOrganizationTokens = T['io.flow.internal.v0.models.shopify_channel_organization_tokens'];
|
|
32830
|
+
export const shopifyChargeCode = T['io.flow.internal.v0.enums.shopify_charge_code'];
|
|
32831
|
+
export const shopifyContactDetails = T['io.flow.internal.v0.models.shopify_contact_details'];
|
|
32832
|
+
export const shopifyDeliveryMethodType = T['io.flow.internal.v0.enums.shopify_delivery_method_type'];
|
|
32833
|
+
export const shopifyDimensionUnit = T['io.flow.internal.v0.enums.shopify_dimension_unit'];
|
|
32547
32834
|
export const shopifyDispute = T['io.flow.internal.v0.models.shopify_dispute'];
|
|
32548
32835
|
export const shopifyDisputeDeleted = T['io.flow.internal.v0.models.shopify_dispute_deleted'];
|
|
32549
32836
|
export const shopifyDisputeUpserted = T['io.flow.internal.v0.models.shopify_dispute_upserted'];
|
|
@@ -32551,6 +32838,7 @@ export const shopifyHs10Code = T['io.flow.internal.v0.models.shopify_hs10_code']
|
|
|
32551
32838
|
export const shopifyHs10Codes = T['io.flow.internal.v0.models.shopify_hs10_codes'];
|
|
32552
32839
|
export const shopifyHs10CodesDeleted = T['io.flow.internal.v0.models.shopify_hs10_codes_deleted'];
|
|
32553
32840
|
export const shopifyHs10CodesUpserted = T['io.flow.internal.v0.models.shopify_hs10_codes_upserted'];
|
|
32841
|
+
export const shopifyIncoterm = T['io.flow.internal.v0.enums.shopify_incoterm'];
|
|
32554
32842
|
export const shopifyIncotermConfiguration = T['io.flow.internal.v0.enums.shopify_incoterm_configuration'];
|
|
32555
32843
|
export const shopifyIncotermIncludes = T['io.flow.internal.v0.models.shopify_incoterm_includes'];
|
|
32556
32844
|
export const shopifyIncotermSummaryErrorData = T['io.flow.internal.v0.models.shopify_incoterm_summary_error_data'];
|
|
@@ -32597,10 +32885,12 @@ export const shopifyMarketsTradeSector = T['io.flow.internal.v0.enums.shopify_ma
|
|
|
32597
32885
|
export const shopifyMarketsWebhookRegistration = T['io.flow.internal.v0.models.shopify_markets_webhook_registration'];
|
|
32598
32886
|
export const shopifyMarketsWebhookRegistrationDeleted = T['io.flow.internal.v0.models.shopify_markets_webhook_registration_deleted'];
|
|
32599
32887
|
export const shopifyMarketsWebhookRegistrationUpserted = T['io.flow.internal.v0.models.shopify_markets_webhook_registration_upserted'];
|
|
32888
|
+
export const shopifyMeasurements = T['io.flow.internal.v0.models.shopify_measurements'];
|
|
32600
32889
|
export const shopifyMerchantPlan = T['io.flow.internal.v0.models.shopify_merchant_plan'];
|
|
32601
32890
|
export const shopifyMerchantPlanDeleted = T['io.flow.internal.v0.models.shopify_merchant_plan_deleted'];
|
|
32602
32891
|
export const shopifyMerchantPlanUpserted = T['io.flow.internal.v0.models.shopify_merchant_plan_upserted'];
|
|
32603
32892
|
export const shopifyMetadata = T['io.flow.internal.v0.models.shopify_metadata'];
|
|
32893
|
+
export const shopifyMoney = T['io.flow.internal.v0.models.shopify_money'];
|
|
32604
32894
|
export const shopifyMonitoringCarrierService = T['io.flow.internal.v0.models.shopify_monitoring_carrier_service'];
|
|
32605
32895
|
export const shopifyMonitoringFulfillmentExternal = T['io.flow.internal.v0.models.shopify_monitoring_fulfillment_external'];
|
|
32606
32896
|
export const shopifyMonitoringFulfillmentMissingDetails = T['io.flow.internal.v0.models.shopify_monitoring_fulfillment_missing_details'];
|
|
@@ -32624,6 +32914,7 @@ export const shopifyOrderRiskAssessmentUpserted = T['io.flow.internal.v0.models.
|
|
|
32624
32914
|
export const shopifyOrderTransaction = T['io.flow.internal.v0.models.shopify_order_transaction'];
|
|
32625
32915
|
export const shopifyOrderTransactionDeleted = T['io.flow.internal.v0.models.shopify_order_transaction_deleted'];
|
|
32626
32916
|
export const shopifyOrderTransactionUpserted = T['io.flow.internal.v0.models.shopify_order_transaction_upserted'];
|
|
32917
|
+
export const shopifyPackageType = T['io.flow.internal.v0.enums.shopify_package_type'];
|
|
32627
32918
|
export const shopifyPartnerWebhook = T['io.flow.internal.v0.models.shopify_partner_webhook'];
|
|
32628
32919
|
export const shopifyPartnerWebhookRaw = T['io.flow.internal.v0.models.shopify_partner_webhook_raw'];
|
|
32629
32920
|
export const shopifyPlanType = T['io.flow.internal.v0.enums.shopify_plan_type'];
|
|
@@ -32647,14 +32938,34 @@ export const shopifyProductUpdateDeleted = T['io.flow.internal.v0.models.shopify
|
|
|
32647
32938
|
export const shopifyProductUpdateUpserted = T['io.flow.internal.v0.models.shopify_product_update_upserted'];
|
|
32648
32939
|
export const shopifyProductUpdateWebhookEvent = T['io.flow.internal.v0.models.shopify_product_update_webhook_event'];
|
|
32649
32940
|
export const shopifyProductWrapper = T['io.flow.internal.v0.models.shopify_product_wrapper'];
|
|
32941
|
+
export const shopifyRateCustomsDetail = T['io.flow.internal.v0.models.shopify_rate_customs_detail'];
|
|
32942
|
+
export const shopifyRatePickupPoint = T['io.flow.internal.v0.models.shopify_rate_pickup_point'];
|
|
32650
32943
|
export const shopifyReportFileDeleted = T['io.flow.internal.v0.models.shopify_report_file_deleted'];
|
|
32651
32944
|
export const shopifyReportFileUpserted = T['io.flow.internal.v0.models.shopify_report_file_upserted'];
|
|
32652
32945
|
export const shopifyService = T['io.flow.internal.v0.enums.shopify_service'];
|
|
32946
|
+
export const shopifyShipmentOptionCode = T['io.flow.internal.v0.enums.shopify_shipment_option_code'];
|
|
32947
|
+
export const shopifyShipmentRateAvailable = T['io.flow.internal.v0.models.shopify_shipment_rate_available'];
|
|
32948
|
+
export const shopifyShipmentRateCharge = T['io.flow.internal.v0.models.shopify_shipment_rate_charge'];
|
|
32949
|
+
export const shopifyShipmentRateOption = T['io.flow.internal.v0.models.shopify_shipment_rate_option'];
|
|
32950
|
+
export const shopifyShipmentRatePackage = T['io.flow.internal.v0.models.shopify_shipment_rate_package'];
|
|
32951
|
+
export const shopifyShipmentRateReason = T['io.flow.internal.v0.models.shopify_shipment_rate_reason'];
|
|
32952
|
+
export const shopifyShipmentRateRequest = T['io.flow.internal.v0.models.shopify_shipment_rate_request'];
|
|
32953
|
+
export const shopifyShipmentRateResponse = T['io.flow.internal.v0.models.shopify_shipment_rate_response'];
|
|
32954
|
+
export const shopifyShipmentRateShipment = T['io.flow.internal.v0.models.shopify_shipment_rate_shipment'];
|
|
32955
|
+
export const shopifyShipmentRateShipper = T['io.flow.internal.v0.models.shopify_shipment_rate_shipper'];
|
|
32956
|
+
export const shopifyShipmentRateTotalCharges = T['io.flow.internal.v0.models.shopify_shipment_rate_total_charges'];
|
|
32957
|
+
export const shopifyShipmentRateUnavailable = T['io.flow.internal.v0.models.shopify_shipment_rate_unavailable'];
|
|
32958
|
+
export const shopifyShippingLocation = T['io.flow.internal.v0.models.shopify_shipping_location'];
|
|
32653
32959
|
export const shopifyShopStatistics = T['io.flow.internal.v0.models.shopify_shop_statistics'];
|
|
32654
32960
|
export const shopifyStoreDetail = T['io.flow.internal.v0.models.shopify_store_detail'];
|
|
32655
32961
|
export const shopifyStripeEvent = T['io.flow.internal.v0.models.shopify_stripe_event'];
|
|
32656
32962
|
export const shopifyTaxonomyAlignmentConfig = T['io.flow.internal.v0.models.shopify_taxonomy_alignment_config'];
|
|
32657
32963
|
export const shopifyTaxonomyAlignmentConfigForm = T['io.flow.internal.v0.models.shopify_taxonomy_alignment_config_form'];
|
|
32964
|
+
export const shopifyTestOrder = T['io.flow.internal.v0.models.shopify_test_order'];
|
|
32965
|
+
export const shopifyTestOrderDeleted = T['io.flow.internal.v0.models.shopify_test_order_deleted'];
|
|
32966
|
+
export const shopifyTestOrderUpserted = T['io.flow.internal.v0.models.shopify_test_order_upserted'];
|
|
32967
|
+
export const shopifyUnavailableRateReasonCode = T['io.flow.internal.v0.enums.shopify_unavailable_rate_reason_code'];
|
|
32968
|
+
export const shopifyWeightUnit = T['io.flow.internal.v0.enums.shopify_weight_unit'];
|
|
32658
32969
|
export const shopperBreakdown = T['io.flow.internal.v0.models.shopper_breakdown'];
|
|
32659
32970
|
export const shopperFees = T['io.flow.internal.v0.models.shopper_fees'];
|
|
32660
32971
|
export const shopperFreight = T['io.flow.internal.v0.models.shopper_freight'];
|