@flowio/api-prop-types 10.16.87 → 10.16.89
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.d.ts +40 -97
- package/lib/api.js +1 -1
- package/package.json +2 -2
- package/src/api.d.ts +40 -97
- package/src/api.js +90 -130
package/src/api.js
CHANGED
|
@@ -176,6 +176,26 @@ T['io.flow.inventory.v0.models.inventory_backorder'] = PropTypes.exact({
|
|
|
176
176
|
quantity: PropTypes.number.isRequired,
|
|
177
177
|
});
|
|
178
178
|
|
|
179
|
+
T['io.flow.inventory.v0.unions.inventory_strategy'] = PropTypes.oneOfType([
|
|
180
|
+
T['io.flow.inventory.v0.models.inventory_backorder'],
|
|
181
|
+
T['io.flow.inventory.v0.models.inventory_stock'],
|
|
182
|
+
T['io.flow.inventory.v0.models.inventory_unlimited'],
|
|
183
|
+
T['io.flow.inventory.v0.models.inventory_follow_ecommerce_platform'],
|
|
184
|
+
]);
|
|
185
|
+
|
|
186
|
+
T['io.flow.inventory.v0.models.inventory_rule_form'] = PropTypes.exact({
|
|
187
|
+
position: PropTypes.number.isRequired,
|
|
188
|
+
query: PropTypes.string.isRequired,
|
|
189
|
+
strategy: T['io.flow.inventory.v0.unions.inventory_strategy'].isRequired,
|
|
190
|
+
});
|
|
191
|
+
|
|
192
|
+
T['io.flow.inventory.v0.models.inventory_rule'] = PropTypes.exact({
|
|
193
|
+
id: PropTypes.string.isRequired,
|
|
194
|
+
position: PropTypes.number.isRequired,
|
|
195
|
+
query: PropTypes.string.isRequired,
|
|
196
|
+
strategy: T['io.flow.inventory.v0.unions.inventory_strategy'].isRequired,
|
|
197
|
+
});
|
|
198
|
+
|
|
179
199
|
T['io.flow.inventory.v0.models.inventory_request_item'] = PropTypes.exact({
|
|
180
200
|
number: PropTypes.string.isRequired,
|
|
181
201
|
quantity: PropTypes.number.isRequired,
|
|
@@ -722,6 +742,13 @@ T['io.flow.inventory.v0.models.inventory_snapshot_version'] = PropTypes.exact({
|
|
|
722
742
|
inventory_snapshot: T['io.flow.inventory.v0.models.inventory_snapshot'].isRequired,
|
|
723
743
|
});
|
|
724
744
|
|
|
745
|
+
T['io.flow.inventory.v0.models.inventory_rule_version'] = PropTypes.exact({
|
|
746
|
+
id: PropTypes.string.isRequired,
|
|
747
|
+
timestamp: PropTypes.string.isRequired,
|
|
748
|
+
type: T['io.flow.common.v0.enums.change_type'].isRequired,
|
|
749
|
+
inventory_rule: T['io.flow.inventory.v0.models.inventory_rule'].isRequired,
|
|
750
|
+
});
|
|
751
|
+
|
|
725
752
|
T['io.flow.catalog.v0.models.subcatalog_version'] = PropTypes.exact({
|
|
726
753
|
id: PropTypes.string.isRequired,
|
|
727
754
|
timestamp: PropTypes.string.isRequired,
|
|
@@ -3148,6 +3175,29 @@ T['io.flow.stripe.v0.models.stripe_event'] = PropTypes.exact({
|
|
|
3148
3175
|
type: PropTypes.string.isRequired,
|
|
3149
3176
|
});
|
|
3150
3177
|
|
|
3178
|
+
T['io.flow.stripe.v0.enums.early_fraud_warning_type'] = PropTypes.oneOf([
|
|
3179
|
+
'card_never_received',
|
|
3180
|
+
'fraudulent_card_application',
|
|
3181
|
+
'made_with_counterfeit_card',
|
|
3182
|
+
'made_with_lost_card',
|
|
3183
|
+
'made_with_stolen_card',
|
|
3184
|
+
'unauthorized_use_of_card',
|
|
3185
|
+
'misc',
|
|
3186
|
+
]);
|
|
3187
|
+
|
|
3188
|
+
T['io.flow.stripe.v0.enums.early_fraud_warning_event_type'] = PropTypes.oneOf(['radar.early_fraud_warning']);
|
|
3189
|
+
|
|
3190
|
+
T['io.flow.stripe.v0.models.stripe_early_fraud_warning_event'] = PropTypes.exact({
|
|
3191
|
+
id: PropTypes.string.isRequired,
|
|
3192
|
+
object: T['io.flow.stripe.v0.enums.early_fraud_warning_event_type'].isRequired,
|
|
3193
|
+
actionable: PropTypes.bool.isRequired,
|
|
3194
|
+
charge: PropTypes.string.isRequired,
|
|
3195
|
+
created: PropTypes.number.isRequired,
|
|
3196
|
+
fraud_type: T['io.flow.stripe.v0.enums.early_fraud_warning_type'].isRequired,
|
|
3197
|
+
livemode: PropTypes.bool.isRequired,
|
|
3198
|
+
payment_intent: PropTypes.string,
|
|
3199
|
+
});
|
|
3200
|
+
|
|
3151
3201
|
T['io.flow.stripe.v0.enums.dispute_event_type'] = PropTypes.oneOf([
|
|
3152
3202
|
'charge.dispute.closed',
|
|
3153
3203
|
'charge.dispute.created',
|
|
@@ -5120,32 +5170,6 @@ T['io.flow.v0.models.manifested_label_upserted'] = PropTypes.exact({
|
|
|
5120
5170
|
fulfillment_key: PropTypes.string,
|
|
5121
5171
|
});
|
|
5122
5172
|
|
|
5123
|
-
T['io.flow.v0.models.snapshot_deleted'] = PropTypes.exact({
|
|
5124
|
-
discriminator: PropTypes.oneOf(['snapshot_deleted']).isRequired,
|
|
5125
|
-
event_id: PropTypes.string.isRequired,
|
|
5126
|
-
timestamp: PropTypes.string.isRequired,
|
|
5127
|
-
snapshot_id: PropTypes.string.isRequired,
|
|
5128
|
-
});
|
|
5129
|
-
|
|
5130
|
-
T['io.flow.v0.models.snapshot_upserted'] = PropTypes.exact({
|
|
5131
|
-
discriminator: PropTypes.oneOf(['snapshot_upserted']).isRequired,
|
|
5132
|
-
event_id: PropTypes.string.isRequired,
|
|
5133
|
-
timestamp: PropTypes.string.isRequired,
|
|
5134
|
-
organization: PropTypes.string.isRequired,
|
|
5135
|
-
snapshot_id: PropTypes.string.isRequired,
|
|
5136
|
-
available: PropTypes.number.isRequired,
|
|
5137
|
-
center_key: PropTypes.string.isRequired,
|
|
5138
|
-
item_number: PropTypes.string.isRequired,
|
|
5139
|
-
quantity: PropTypes.number.isRequired,
|
|
5140
|
-
});
|
|
5141
|
-
|
|
5142
|
-
T['io.flow.v0.models.rule_deleted'] = PropTypes.exact({
|
|
5143
|
-
discriminator: PropTypes.oneOf(['rule_deleted']).isRequired,
|
|
5144
|
-
event_id: PropTypes.string.isRequired,
|
|
5145
|
-
timestamp: PropTypes.string.isRequired,
|
|
5146
|
-
id: PropTypes.string.isRequired,
|
|
5147
|
-
});
|
|
5148
|
-
|
|
5149
5173
|
T['io.flow.v0.models.item_origin_deleted'] = PropTypes.exact({
|
|
5150
5174
|
discriminator: PropTypes.oneOf(['item_origin_deleted']).isRequired,
|
|
5151
5175
|
event_id: PropTypes.string.isRequired,
|
|
@@ -6235,6 +6259,26 @@ T['io.flow.v0.models.label_base'] = PropTypes.exact({
|
|
|
6235
6259
|
weight: PropTypes.number.isRequired,
|
|
6236
6260
|
});
|
|
6237
6261
|
|
|
6262
|
+
T['io.flow.v0.enums.shipping_label_error_code'] = PropTypes.oneOf([
|
|
6263
|
+
'generic_error',
|
|
6264
|
+
'cancelled_order',
|
|
6265
|
+
'carrier_outage',
|
|
6266
|
+
'catalog_issue',
|
|
6267
|
+
'invalid_destination',
|
|
6268
|
+
'invalid_origin',
|
|
6269
|
+
'invalid_shipping_parameters',
|
|
6270
|
+
'merchant_error',
|
|
6271
|
+
'order_not_found',
|
|
6272
|
+
'order_processing',
|
|
6273
|
+
'restricted_item',
|
|
6274
|
+
'unsupported_lane',
|
|
6275
|
+
]);
|
|
6276
|
+
|
|
6277
|
+
T['io.flow.v0.models.shipping_label_error'] = PropTypes.exact({
|
|
6278
|
+
code: T['io.flow.v0.enums.shipping_label_error_code'].isRequired,
|
|
6279
|
+
messages: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
6280
|
+
});
|
|
6281
|
+
|
|
6238
6282
|
T['io.flow.v0.enums.lane_preselect_preference'] = PropTypes.oneOf(['lowest_cost', 'default_tier']);
|
|
6239
6283
|
T['io.flow.v0.enums.lane_strategy'] = PropTypes.oneOf(['oldest', 'fastest', 'lowest_cost', 'highest_priority']);
|
|
6240
6284
|
T['io.flow.v0.enums.shipping_configuration_type'] = PropTypes.oneOf(['default', 'variant']);
|
|
@@ -6256,50 +6300,6 @@ T['io.flow.v0.enums.onboarding_blocked_reason'] = PropTypes.oneOf([
|
|
|
6256
6300
|
'missing_logistics_contact_info',
|
|
6257
6301
|
]);
|
|
6258
6302
|
|
|
6259
|
-
T['io.flow.v0.models.session_experiment_variant_form'] = PropTypes.exact({
|
|
6260
|
-
key: PropTypes.string.isRequired,
|
|
6261
|
-
});
|
|
6262
|
-
|
|
6263
|
-
T['io.flow.v0.models.session_experiment_form'] = PropTypes.exact({
|
|
6264
|
-
key: PropTypes.string.isRequired,
|
|
6265
|
-
variant: T['io.flow.v0.models.session_experiment_variant_form'],
|
|
6266
|
-
});
|
|
6267
|
-
|
|
6268
|
-
T['io.flow.inventory.v0.unions.inventory_strategy'] = PropTypes.oneOfType([
|
|
6269
|
-
T['io.flow.inventory.v0.models.inventory_backorder'],
|
|
6270
|
-
T['io.flow.inventory.v0.models.inventory_stock'],
|
|
6271
|
-
T['io.flow.inventory.v0.models.inventory_unlimited'],
|
|
6272
|
-
T['io.flow.inventory.v0.models.inventory_follow_ecommerce_platform'],
|
|
6273
|
-
]);
|
|
6274
|
-
|
|
6275
|
-
T['io.flow.inventory.v0.models.inventory_rule_form'] = PropTypes.exact({
|
|
6276
|
-
position: PropTypes.number.isRequired,
|
|
6277
|
-
query: PropTypes.string.isRequired,
|
|
6278
|
-
strategy: T['io.flow.inventory.v0.unions.inventory_strategy'].isRequired,
|
|
6279
|
-
});
|
|
6280
|
-
|
|
6281
|
-
T['io.flow.inventory.v0.models.inventory_rule'] = PropTypes.exact({
|
|
6282
|
-
id: PropTypes.string.isRequired,
|
|
6283
|
-
position: PropTypes.number.isRequired,
|
|
6284
|
-
query: PropTypes.string.isRequired,
|
|
6285
|
-
strategy: T['io.flow.inventory.v0.unions.inventory_strategy'].isRequired,
|
|
6286
|
-
});
|
|
6287
|
-
|
|
6288
|
-
T['io.flow.inventory.v0.models.inventory_rule_version'] = PropTypes.exact({
|
|
6289
|
-
id: PropTypes.string.isRequired,
|
|
6290
|
-
timestamp: PropTypes.string.isRequired,
|
|
6291
|
-
type: T['io.flow.common.v0.enums.change_type'].isRequired,
|
|
6292
|
-
inventory_rule: T['io.flow.inventory.v0.models.inventory_rule'].isRequired,
|
|
6293
|
-
});
|
|
6294
|
-
|
|
6295
|
-
T['io.flow.v0.models.rule_upserted'] = PropTypes.exact({
|
|
6296
|
-
discriminator: PropTypes.oneOf(['rule_upserted']).isRequired,
|
|
6297
|
-
event_id: PropTypes.string.isRequired,
|
|
6298
|
-
timestamp: PropTypes.string.isRequired,
|
|
6299
|
-
organization_id: PropTypes.string.isRequired,
|
|
6300
|
-
rule: T['io.flow.inventory.v0.models.inventory_rule'].isRequired,
|
|
6301
|
-
});
|
|
6302
|
-
|
|
6303
6303
|
T['io.flow.v0.enums.return_policy_state'] = PropTypes.oneOf(['current', 'deleting', 'updating']);
|
|
6304
6304
|
|
|
6305
6305
|
T['io.flow.v0.models.return_policy_statistic'] = PropTypes.exact({
|
|
@@ -7135,10 +7135,6 @@ T['io.flow.v0.models.token_partner_reference'] = PropTypes.exact({
|
|
|
7135
7135
|
id: PropTypes.string.isRequired,
|
|
7136
7136
|
});
|
|
7137
7137
|
|
|
7138
|
-
T['io.flow.v0.models.context_reference'] = PropTypes.exact({
|
|
7139
|
-
id: PropTypes.string.isRequired,
|
|
7140
|
-
});
|
|
7141
|
-
|
|
7142
7138
|
T['io.flow.v0.models.session_visit'] = PropTypes.exact({
|
|
7143
7139
|
id: PropTypes.string.isRequired,
|
|
7144
7140
|
expires_at: PropTypes.string.isRequired,
|
|
@@ -7630,21 +7626,11 @@ T['io.flow.v0.models.order_summary_image'] = PropTypes.exact({
|
|
|
7630
7626
|
url: PropTypes.string.isRequired,
|
|
7631
7627
|
});
|
|
7632
7628
|
|
|
7633
|
-
T['io.flow.v0.models.session_experiment_variant'] = PropTypes.exact({
|
|
7634
|
-
key: PropTypes.string.isRequired,
|
|
7635
|
-
name: PropTypes.string.isRequired,
|
|
7636
|
-
});
|
|
7637
|
-
|
|
7638
7629
|
T['io.flow.v0.models.locale_numbers'] = PropTypes.exact({
|
|
7639
7630
|
decimal: PropTypes.string.isRequired,
|
|
7640
7631
|
group: PropTypes.string.isRequired,
|
|
7641
7632
|
});
|
|
7642
7633
|
|
|
7643
|
-
T['io.flow.v0.models.session_experiment'] = PropTypes.exact({
|
|
7644
|
-
key: PropTypes.string.isRequired,
|
|
7645
|
-
variant: T['io.flow.v0.models.session_experiment_variant'],
|
|
7646
|
-
});
|
|
7647
|
-
|
|
7648
7634
|
T['io.flow.v0.models.locale'] = PropTypes.exact({
|
|
7649
7635
|
id: PropTypes.string.isRequired,
|
|
7650
7636
|
name: PropTypes.string.isRequired,
|
|
@@ -7910,6 +7896,19 @@ T['io.flow.v0.models.issuer_reference'] = PropTypes.exact({
|
|
|
7910
7896
|
id: PropTypes.string.isRequired,
|
|
7911
7897
|
});
|
|
7912
7898
|
|
|
7899
|
+
T['io.flow.v0.models.incoterm_includes'] = PropTypes.exact({
|
|
7900
|
+
duties: PropTypes.bool.isRequired,
|
|
7901
|
+
taxes: PropTypes.bool.isRequired,
|
|
7902
|
+
});
|
|
7903
|
+
|
|
7904
|
+
T['io.flow.v0.enums.incoterm_configuration'] = PropTypes.oneOf(['DDP', 'DAP', 'DDU', 'UNSUPPORTED']);
|
|
7905
|
+
|
|
7906
|
+
T['io.flow.v0.models.incoterm_summary'] = PropTypes.exact({
|
|
7907
|
+
configuration: T['io.flow.v0.enums.incoterm_configuration'].isRequired,
|
|
7908
|
+
includes: T['io.flow.v0.models.incoterm_includes'].isRequired,
|
|
7909
|
+
reason: PropTypes.string,
|
|
7910
|
+
});
|
|
7911
|
+
|
|
7913
7912
|
T['io.flow.v0.enums.included_levy_key'] = PropTypes.oneOf(['duty', 'vat', 'vat_and_duty', 'none']);
|
|
7914
7913
|
|
|
7915
7914
|
T['io.flow.v0.models.price_book_form'] = PropTypes.exact({
|
|
@@ -9184,24 +9183,6 @@ T['io.flow.v0.models.country_availability'] = PropTypes.exact({
|
|
|
9184
9183
|
countries: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
9185
9184
|
});
|
|
9186
9185
|
|
|
9187
|
-
T['io.flow.v0.models.experiment_variant'] = PropTypes.exact({
|
|
9188
|
-
key: PropTypes.string.isRequired,
|
|
9189
|
-
});
|
|
9190
|
-
|
|
9191
|
-
T['io.flow.v0.models.session_context_experiment'] = PropTypes.exact({
|
|
9192
|
-
key: PropTypes.string.isRequired,
|
|
9193
|
-
variant: T['io.flow.v0.models.experiment_variant'],
|
|
9194
|
-
});
|
|
9195
|
-
|
|
9196
|
-
T['io.flow.v0.models.context_form'] = PropTypes.exact({
|
|
9197
|
-
experiments: PropTypes.arrayOf(T['io.flow.v0.models.session_context_experiment']).isRequired,
|
|
9198
|
-
});
|
|
9199
|
-
|
|
9200
|
-
T['io.flow.v0.models.context'] = PropTypes.exact({
|
|
9201
|
-
id: PropTypes.string.isRequired,
|
|
9202
|
-
experiments: PropTypes.arrayOf(T['io.flow.v0.models.session_context_experiment']).isRequired,
|
|
9203
|
-
});
|
|
9204
|
-
|
|
9205
9186
|
T['io.flow.v0.models.consumer_invoice_levy_form'] = PropTypes.exact({
|
|
9206
9187
|
rate: PropTypes.number.isRequired,
|
|
9207
9188
|
amount: PropTypes.number.isRequired,
|
|
@@ -11252,7 +11233,6 @@ T['io.flow.v0.models.local_session'] = PropTypes.exact({
|
|
|
11252
11233
|
language: T['io.flow.v0.models.language'].isRequired,
|
|
11253
11234
|
locale: T['io.flow.v0.models.locale'].isRequired,
|
|
11254
11235
|
experience: T['io.flow.v0.models.experience_geo'].isRequired,
|
|
11255
|
-
experiment: T['io.flow.v0.models.session_experiment'],
|
|
11256
11236
|
});
|
|
11257
11237
|
|
|
11258
11238
|
T['io.flow.v0.models.organization_session'] = PropTypes.exact({
|
|
@@ -11268,8 +11248,6 @@ T['io.flow.v0.models.organization_session'] = PropTypes.exact({
|
|
|
11268
11248
|
geo: T['io.flow.v0.models.session_geo'],
|
|
11269
11249
|
experience: T['io.flow.v0.models.experience_geo'],
|
|
11270
11250
|
format: T['io.flow.v0.models.session_format'],
|
|
11271
|
-
experiment: T['io.flow.v0.models.session_experiment'],
|
|
11272
|
-
context: T['io.flow.v0.models.context_reference'],
|
|
11273
11251
|
});
|
|
11274
11252
|
|
|
11275
11253
|
T['io.flow.v0.unions.session'] = PropTypes.oneOfType([T['io.flow.v0.models.organization_session']]);
|
|
@@ -12721,6 +12699,7 @@ T['io.flow.v0.models.tracking_event'] = PropTypes.exact({
|
|
|
12721
12699
|
status: T['io.flow.v0.enums.tracking_status'].isRequired,
|
|
12722
12700
|
timestamp: PropTypes.string.isRequired,
|
|
12723
12701
|
description: PropTypes.string,
|
|
12702
|
+
aggregator_status_code: PropTypes.string,
|
|
12724
12703
|
});
|
|
12725
12704
|
|
|
12726
12705
|
T['io.flow.v0.models.tracking_label'] = PropTypes.exact({
|
|
@@ -15235,6 +15214,7 @@ T['io.flow.v0.models.order'] = PropTypes.exact({
|
|
|
15235
15214
|
geo: T['io.flow.v0.models.order_geo'],
|
|
15236
15215
|
device_details: T['io.flow.v0.unions.device_details'],
|
|
15237
15216
|
destination_contact_details: PropTypes.arrayOf(T['io.flow.v0.models.destination_contact_detail']),
|
|
15217
|
+
incoterm_summary: T['io.flow.v0.models.incoterm_summary'],
|
|
15238
15218
|
});
|
|
15239
15219
|
|
|
15240
15220
|
T['io.flow.v0.models.shopify_cart_conversion_flow_order'] = PropTypes.exact({
|
|
@@ -16149,10 +16129,6 @@ T['io.flow.v0.unions.event'] = PropTypes.oneOfType([
|
|
|
16149
16129
|
T['io.flow.v0.models.fully_harmonized_item_upserted'],
|
|
16150
16130
|
T['io.flow.v0.models.import_completed_v2'],
|
|
16151
16131
|
T['io.flow.v0.models.import_failed_v2'],
|
|
16152
|
-
T['io.flow.v0.models.rule_upserted'],
|
|
16153
|
-
T['io.flow.v0.models.rule_deleted'],
|
|
16154
|
-
T['io.flow.v0.models.snapshot_upserted'],
|
|
16155
|
-
T['io.flow.v0.models.snapshot_deleted'],
|
|
16156
16132
|
T['io.flow.v0.models.label_upserted'],
|
|
16157
16133
|
T['io.flow.v0.models.label_deleted_v2'],
|
|
16158
16134
|
T['io.flow.v0.models.label_upserted_v2'],
|
|
@@ -16541,10 +16517,6 @@ T['io.flow.v0.enums.event_type'] = PropTypes.oneOf([
|
|
|
16541
16517
|
'fully_harmonized_item_upserted',
|
|
16542
16518
|
'import_completed_v2',
|
|
16543
16519
|
'import_failed_v2',
|
|
16544
|
-
'rule_upserted',
|
|
16545
|
-
'rule_deleted',
|
|
16546
|
-
'snapshot_upserted',
|
|
16547
|
-
'snapshot_deleted',
|
|
16548
16520
|
'label_upserted',
|
|
16549
16521
|
'label_deleted_v2',
|
|
16550
16522
|
'label_upserted_v2',
|
|
@@ -17639,10 +17611,6 @@ T['io.flow.reference.v0.models.timezone'] = PropTypes.exact({
|
|
|
17639
17611
|
offset: PropTypes.number.isRequired,
|
|
17640
17612
|
});
|
|
17641
17613
|
|
|
17642
|
-
T['io.flow.ben.test.internal.v0.models.svitlana_test'] = PropTypes.exact({
|
|
17643
|
-
name: PropTypes.string.isRequired,
|
|
17644
|
-
});
|
|
17645
|
-
|
|
17646
17614
|
T['io.flow.ben.test.internal.v0.models.test_form'] = PropTypes.exact({
|
|
17647
17615
|
name: PropTypes.string.isRequired,
|
|
17648
17616
|
});
|
|
@@ -18041,9 +18009,6 @@ export const consumerInvoiceReference = T['io.flow.v0.models.consumer_invoice_re
|
|
|
18041
18009
|
export const consumerInvoiceStatus = T['io.flow.v0.enums.consumer_invoice_status'];
|
|
18042
18010
|
export const consumerInvoiceUpserted = T['io.flow.v0.models.consumer_invoice_upserted'];
|
|
18043
18011
|
export const contact = T['io.flow.v0.models.contact'];
|
|
18044
|
-
export const context = T['io.flow.v0.models.context'];
|
|
18045
|
-
export const contextForm = T['io.flow.v0.models.context_form'];
|
|
18046
|
-
export const contextReference = T['io.flow.v0.models.context_reference'];
|
|
18047
18012
|
export const costEstimateSource = T['io.flow.v0.enums.cost_estimate_source'];
|
|
18048
18013
|
export const country = T['io.flow.v0.models.country'];
|
|
18049
18014
|
export const countryAvailability = T['io.flow.v0.models.country_availability'];
|
|
@@ -18277,7 +18242,6 @@ export const experienceSummary = T['io.flow.v0.models.experience_summary'];
|
|
|
18277
18242
|
export const experienceUpserted = T['io.flow.v0.models.experience_upserted'];
|
|
18278
18243
|
export const experienceUpsertedV2 = T['io.flow.v0.models.experience_upserted_v2'];
|
|
18279
18244
|
export const experienceVersion = T['io.flow.v0.models.experience_version'];
|
|
18280
|
-
export const experimentVariant = T['io.flow.v0.models.experiment_variant'];
|
|
18281
18245
|
export const expiration = T['io.flow.v0.models.expiration'];
|
|
18282
18246
|
export const UNSAFE_export = T['io.flow.v0.models.export'];
|
|
18283
18247
|
export const exportDelivery = T['io.flow.v0.unions.export_delivery'];
|
|
@@ -18409,6 +18373,9 @@ export const inboundCartonFee = T['io.flow.v0.models.inbound_carton_fee'];
|
|
|
18409
18373
|
export const includedLevies = T['io.flow.v0.models.included_levies'];
|
|
18410
18374
|
export const includedLevyKey = T['io.flow.v0.enums.included_levy_key'];
|
|
18411
18375
|
export const incoterm = T['io.flow.v0.enums.incoterm'];
|
|
18376
|
+
export const incotermConfiguration = T['io.flow.v0.enums.incoterm_configuration'];
|
|
18377
|
+
export const incotermIncludes = T['io.flow.v0.models.incoterm_includes'];
|
|
18378
|
+
export const incotermSummary = T['io.flow.v0.models.incoterm_summary'];
|
|
18412
18379
|
export const indirectTax = T['io.flow.v0.models.indirect_tax'];
|
|
18413
18380
|
export const individual = T['io.flow.v0.models.individual'];
|
|
18414
18381
|
export const inlineActionConfiguration = T['io.flow.v0.unions.inline_action_configuration'];
|
|
@@ -19125,8 +19092,6 @@ export const rounding = T['io.flow.v0.models.rounding'];
|
|
|
19125
19092
|
export const roundingMethod = T['io.flow.v0.enums.rounding_method'];
|
|
19126
19093
|
export const roundingType = T['io.flow.v0.enums.rounding_type'];
|
|
19127
19094
|
export const routeAudit = T['io.flow.v0.models.route_audit'];
|
|
19128
|
-
export const ruleDeleted = T['io.flow.v0.models.rule_deleted'];
|
|
19129
|
-
export const ruleUpserted = T['io.flow.v0.models.rule_upserted'];
|
|
19130
19095
|
export const schedule = T['io.flow.v0.models.schedule'];
|
|
19131
19096
|
export const scheduleExceptionStatus = T['io.flow.v0.enums.schedule_exception_status'];
|
|
19132
19097
|
export const scheduledExport = T['io.flow.v0.models.scheduled_export'];
|
|
@@ -19144,12 +19109,7 @@ export const serviceUnknown = T['io.flow.v0.models.service_unknown'];
|
|
|
19144
19109
|
export const session = T['io.flow.v0.unions.session'];
|
|
19145
19110
|
export const sessionAuthorization = T['io.flow.v0.unions.session_authorization'];
|
|
19146
19111
|
export const sessionAuthorizationForm = T['io.flow.v0.models.session_authorization_form'];
|
|
19147
|
-
export const sessionContextExperiment = T['io.flow.v0.models.session_context_experiment'];
|
|
19148
19112
|
export const sessionCurrencyFormat = T['io.flow.v0.models.session_currency_format'];
|
|
19149
|
-
export const sessionExperiment = T['io.flow.v0.models.session_experiment'];
|
|
19150
|
-
export const sessionExperimentForm = T['io.flow.v0.models.session_experiment_form'];
|
|
19151
|
-
export const sessionExperimentVariant = T['io.flow.v0.models.session_experiment_variant'];
|
|
19152
|
-
export const sessionExperimentVariantForm = T['io.flow.v0.models.session_experiment_variant_form'];
|
|
19153
19113
|
export const sessionExpirationConfig = T['io.flow.v0.models.session_expiration_config'];
|
|
19154
19114
|
export const sessionForm = T['io.flow.v0.models.session_form'];
|
|
19155
19115
|
export const sessionFormat = T['io.flow.v0.models.session_format'];
|
|
@@ -19187,6 +19147,8 @@ export const shippingConfigurationUpserted = T['io.flow.v0.models.shipping_confi
|
|
|
19187
19147
|
export const shippingConfigurationVersion = T['io.flow.v0.models.shipping_configuration_version'];
|
|
19188
19148
|
export const shippingLabel = T['io.flow.v0.models.shipping_label'];
|
|
19189
19149
|
export const shippingLabelDocument = T['io.flow.v0.models.shipping_label_document'];
|
|
19150
|
+
export const shippingLabelError = T['io.flow.v0.models.shipping_label_error'];
|
|
19151
|
+
export const shippingLabelErrorCode = T['io.flow.v0.enums.shipping_label_error_code'];
|
|
19190
19152
|
export const shippingLabelForm = T['io.flow.v0.unions.shipping_label_form'];
|
|
19191
19153
|
export const shippingLabelHopCostItemizedEstimate = T['io.flow.v0.models.shipping_label_hop_cost_itemized_estimate'];
|
|
19192
19154
|
export const shippingLabelHopSummary = T['io.flow.v0.models.shipping_label_hop_summary'];
|
|
@@ -19254,8 +19216,6 @@ export const shopifyVariantFlowMetafield = T['io.flow.v0.models.shopify_variant_
|
|
|
19254
19216
|
export const shopifyVariantInventoryMetafield = T['io.flow.v0.models.shopify_variant_inventory_metafield'];
|
|
19255
19217
|
export const simplePermissionCheck = T['io.flow.v0.models.simple_permission_check'];
|
|
19256
19218
|
export const singlePackageShippingNotificationForm = T['io.flow.v0.models.single_package_shipping_notification_form'];
|
|
19257
|
-
export const snapshotDeleted = T['io.flow.v0.models.snapshot_deleted'];
|
|
19258
|
-
export const snapshotUpserted = T['io.flow.v0.models.snapshot_upserted'];
|
|
19259
19219
|
export const solidusProductExportType = T['io.flow.v0.models.solidus_product_export_type'];
|
|
19260
19220
|
export const solidusVariantExportType = T['io.flow.v0.models.solidus_variant_export_type'];
|
|
19261
19221
|
export const sortDirection = T['io.flow.v0.enums.sort_direction'];
|