@flowio/api-internal-prop-types 9.24.101 → 9.24.103
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 +202 -3
- package/lib/api-internal.js +1 -1
- package/package.json +2 -2
- package/src/api-internal.d.ts +202 -3
- package/src/api-internal.js +473 -254
package/src/api-internal.js
CHANGED
|
@@ -1610,6 +1610,17 @@ T['io.flow.partner.v0.models.partner_order_identifier'] = PropTypes.exact({
|
|
|
1610
1610
|
number: PropTypes.string.isRequired,
|
|
1611
1611
|
});
|
|
1612
1612
|
|
|
1613
|
+
T['io.flow.channel.internal.v0.enums.channel_order_acceptance_failure_reason_code'] = PropTypes.oneOf(['channel_order_mor_invalid', 'channel_order_does_not_exist']);
|
|
1614
|
+
|
|
1615
|
+
T['io.flow.channel.internal.v0.models.channel_order_acceptance_failure'] = PropTypes.exact({
|
|
1616
|
+
id: PropTypes.string.isRequired,
|
|
1617
|
+
organization_id: PropTypes.string.isRequired,
|
|
1618
|
+
channel_id: PropTypes.string.isRequired,
|
|
1619
|
+
payment_request_id: PropTypes.string.isRequired,
|
|
1620
|
+
code: T['io.flow.channel.internal.v0.enums.channel_order_acceptance_failure_reason_code'].isRequired,
|
|
1621
|
+
reason: PropTypes.string.isRequired,
|
|
1622
|
+
});
|
|
1623
|
+
|
|
1613
1624
|
T['io.flow.order.price.v0.enums.order_price_detail_component_key'] = PropTypes.oneOf([
|
|
1614
1625
|
'adjustment',
|
|
1615
1626
|
'vat_deminimis',
|
|
@@ -4612,6 +4623,13 @@ T['io.flow.label.v0.models.shipping_label_summary'] = PropTypes.exact({
|
|
|
4612
4623
|
carrier_tracking_number: PropTypes.string.isRequired,
|
|
4613
4624
|
});
|
|
4614
4625
|
|
|
4626
|
+
T['io.flow.label.v0.enums.origin_location_source'] = PropTypes.oneOf([
|
|
4627
|
+
'public_hub_code',
|
|
4628
|
+
'merchant_hub_code_override',
|
|
4629
|
+
'shopify',
|
|
4630
|
+
'fallback_location',
|
|
4631
|
+
]);
|
|
4632
|
+
|
|
4615
4633
|
T['io.flow.common.v0.models.customer_reference'] = PropTypes.exact({
|
|
4616
4634
|
number: PropTypes.string.isRequired,
|
|
4617
4635
|
});
|
|
@@ -8261,6 +8279,13 @@ T['io.flow.internal.v0.models.svitlana_item_deleted'] = PropTypes.exact({
|
|
|
8261
8279
|
id: PropTypes.string.isRequired,
|
|
8262
8280
|
});
|
|
8263
8281
|
|
|
8282
|
+
T['io.flow.internal.v0.models.stripe_dispute_deleted'] = PropTypes.exact({
|
|
8283
|
+
discriminator: PropTypes.oneOf(['stripe_dispute_deleted']).isRequired,
|
|
8284
|
+
event_id: PropTypes.string.isRequired,
|
|
8285
|
+
timestamp: PropTypes.string.isRequired,
|
|
8286
|
+
id: PropTypes.string.isRequired,
|
|
8287
|
+
});
|
|
8288
|
+
|
|
8264
8289
|
T['io.flow.internal.v0.models.shopify_order_fulfillments_snapshot_deleted'] = PropTypes.exact({
|
|
8265
8290
|
discriminator: PropTypes.oneOf(['shopify_order_fulfillments_snapshot_deleted']).isRequired,
|
|
8266
8291
|
event_id: PropTypes.string.isRequired,
|
|
@@ -9173,6 +9198,13 @@ T['io.flow.internal.v0.models.index_assignment_deleted'] = PropTypes.exact({
|
|
|
9173
9198
|
id: PropTypes.string.isRequired,
|
|
9174
9199
|
});
|
|
9175
9200
|
|
|
9201
|
+
T['io.flow.internal.v0.models.adyen_dispute_deleted'] = PropTypes.exact({
|
|
9202
|
+
discriminator: PropTypes.oneOf(['adyen_dispute_deleted']).isRequired,
|
|
9203
|
+
event_id: PropTypes.string.isRequired,
|
|
9204
|
+
timestamp: PropTypes.string.isRequired,
|
|
9205
|
+
id: PropTypes.string.isRequired,
|
|
9206
|
+
});
|
|
9207
|
+
|
|
9176
9208
|
T['io.flow.internal.v0.models.adjusted_estimates_deleted'] = PropTypes.exact({
|
|
9177
9209
|
discriminator: PropTypes.oneOf(['adjusted_estimates_deleted']).isRequired,
|
|
9178
9210
|
event_id: PropTypes.string.isRequired,
|
|
@@ -9575,6 +9607,41 @@ T['io.flow.stripe.v0.models.account'] = PropTypes.exact({
|
|
|
9575
9607
|
type: T['io.flow.stripe.v0.enums.account_type'],
|
|
9576
9608
|
});
|
|
9577
9609
|
|
|
9610
|
+
T['io.flow.internal.v0.models.stripe_internal_dispute'] = PropTypes.exact({
|
|
9611
|
+
id: PropTypes.string.isRequired,
|
|
9612
|
+
stripe_id: PropTypes.string.isRequired,
|
|
9613
|
+
amount: PropTypes.number.isRequired,
|
|
9614
|
+
charge_id: PropTypes.string.isRequired,
|
|
9615
|
+
currency: PropTypes.string.isRequired,
|
|
9616
|
+
evidence: PropTypes.object.isRequired,
|
|
9617
|
+
metadata: PropTypes.object.isRequired,
|
|
9618
|
+
payment_intent_id: PropTypes.string,
|
|
9619
|
+
reason: PropTypes.string.isRequired,
|
|
9620
|
+
status: PropTypes.string.isRequired,
|
|
9621
|
+
connected_account: PropTypes.string,
|
|
9622
|
+
balance_transactions: PropTypes.arrayOf(PropTypes.object).isRequired,
|
|
9623
|
+
dispute_created_at: PropTypes.string.isRequired,
|
|
9624
|
+
dispute_expires_at: PropTypes.string,
|
|
9625
|
+
has_evidence: PropTypes.bool,
|
|
9626
|
+
past_due: PropTypes.bool,
|
|
9627
|
+
submission_count: PropTypes.number,
|
|
9628
|
+
is_charge_refundable: PropTypes.bool.isRequired,
|
|
9629
|
+
live_mode: PropTypes.bool.isRequired,
|
|
9630
|
+
payment_method_type: PropTypes.string,
|
|
9631
|
+
payment_method_reason_code: PropTypes.string,
|
|
9632
|
+
payment_method_card_brand: PropTypes.string,
|
|
9633
|
+
updated_by_user_id: PropTypes.string.isRequired,
|
|
9634
|
+
created_at: PropTypes.string.isRequired,
|
|
9635
|
+
updated_at: PropTypes.string.isRequired,
|
|
9636
|
+
});
|
|
9637
|
+
|
|
9638
|
+
T['io.flow.internal.v0.models.stripe_dispute_upserted'] = PropTypes.exact({
|
|
9639
|
+
discriminator: PropTypes.oneOf(['stripe_dispute_upserted']).isRequired,
|
|
9640
|
+
event_id: PropTypes.string.isRequired,
|
|
9641
|
+
timestamp: PropTypes.string.isRequired,
|
|
9642
|
+
dispute: T['io.flow.internal.v0.models.stripe_internal_dispute'].isRequired,
|
|
9643
|
+
});
|
|
9644
|
+
|
|
9578
9645
|
T['io.flow.internal.v0.models.stripe_internal_capture'] = PropTypes.exact({
|
|
9579
9646
|
id: PropTypes.string.isRequired,
|
|
9580
9647
|
flow_capture_id: PropTypes.string.isRequired,
|
|
@@ -10572,6 +10639,7 @@ T['io.flow.internal.v0.models.reporting_reconciliation'] = PropTypes.exact({
|
|
|
10572
10639
|
T['io.flow.internal.v0.models.reporting_conversion_rates'] = PropTypes.exact({
|
|
10573
10640
|
merchant: PropTypes.number.isRequired,
|
|
10574
10641
|
entity: PropTypes.number.isRequired,
|
|
10642
|
+
destination_country: PropTypes.number,
|
|
10575
10643
|
usd: PropTypes.number.isRequired,
|
|
10576
10644
|
eur: PropTypes.number.isRequired,
|
|
10577
10645
|
});
|
|
@@ -10580,6 +10648,7 @@ T['io.flow.internal.v0.models.reporting_currencies'] = PropTypes.exact({
|
|
|
10580
10648
|
transaction: PropTypes.string.isRequired,
|
|
10581
10649
|
merchant: PropTypes.string.isRequired,
|
|
10582
10650
|
entity: PropTypes.string.isRequired,
|
|
10651
|
+
destination_country: PropTypes.string,
|
|
10583
10652
|
});
|
|
10584
10653
|
|
|
10585
10654
|
T['io.flow.internal.v0.models.reporting_vendor'] = PropTypes.exact({
|
|
@@ -10789,6 +10858,8 @@ T['io.flow.internal.v0.enums.report_type'] = PropTypes.oneOf([
|
|
|
10789
10858
|
'account_quarterly_balances',
|
|
10790
10859
|
'invariants',
|
|
10791
10860
|
'payments',
|
|
10861
|
+
'reconcile_not_recorded',
|
|
10862
|
+
'products_record',
|
|
10792
10863
|
]);
|
|
10793
10864
|
|
|
10794
10865
|
T['io.flow.internal.v0.models.report_form'] = PropTypes.exact({
|
|
@@ -11091,6 +11162,25 @@ T['io.flow.internal.v0.models.restriction_pending'] = PropTypes.exact({
|
|
|
11091
11162
|
count: PropTypes.number.isRequired,
|
|
11092
11163
|
});
|
|
11093
11164
|
|
|
11165
|
+
T['io.flow.internal.v0.models.product_transaction'] = PropTypes.exact({
|
|
11166
|
+
transaction_amount: PropTypes.number.isRequired,
|
|
11167
|
+
destination_amount: PropTypes.number.isRequired,
|
|
11168
|
+
quantity: PropTypes.number.isRequired,
|
|
11169
|
+
});
|
|
11170
|
+
|
|
11171
|
+
T['io.flow.internal.v0.models.product_currencies'] = PropTypes.exact({
|
|
11172
|
+
transaction: PropTypes.string.isRequired,
|
|
11173
|
+
destination: PropTypes.string.isRequired,
|
|
11174
|
+
});
|
|
11175
|
+
|
|
11176
|
+
T['io.flow.internal.v0.models.product_record'] = PropTypes.exact({
|
|
11177
|
+
organization_id: PropTypes.string.isRequired,
|
|
11178
|
+
order_number: PropTypes.string.isRequired,
|
|
11179
|
+
fulfillment_id: PropTypes.string.isRequired,
|
|
11180
|
+
currencies: T['io.flow.internal.v0.models.product_currencies'].isRequired,
|
|
11181
|
+
products: PropTypes.arrayOf(T['io.flow.internal.v0.models.product_transaction']).isRequired,
|
|
11182
|
+
});
|
|
11183
|
+
|
|
11094
11184
|
T['io.flow.internal.v0.models.harmonization_column_setting'] = PropTypes.exact({
|
|
11095
11185
|
column: PropTypes.string.isRequired,
|
|
11096
11186
|
position: PropTypes.number.isRequired,
|
|
@@ -13038,6 +13128,9 @@ T['io.flow.tracking.v0.models.label_tracking_summary'] = PropTypes.exact({
|
|
|
13038
13128
|
delivered: T['io.flow.tracking.v0.models.label_tracking_summary_update'],
|
|
13039
13129
|
rejected: T['io.flow.tracking.v0.models.label_tracking_summary_update'],
|
|
13040
13130
|
returned: T['io.flow.tracking.v0.models.label_tracking_summary_update'],
|
|
13131
|
+
crossed_border: T['io.flow.tracking.v0.models.label_tracking_summary_update'],
|
|
13132
|
+
destroyed: T['io.flow.tracking.v0.models.label_tracking_summary_update'],
|
|
13133
|
+
return_reversal: T['io.flow.tracking.v0.models.label_tracking_summary_update'],
|
|
13041
13134
|
});
|
|
13042
13135
|
|
|
13043
13136
|
T['io.flow.internal.v0.models.label_tracking_summary_upserted'] = PropTypes.exact({
|
|
@@ -13195,6 +13288,8 @@ T['io.flow.internal.v0.models.label_request_result'] = PropTypes.exact({
|
|
|
13195
13288
|
suggested_responsibility: T['io.flow.internal.v0.enums.label_request_error_handling_responsibility'],
|
|
13196
13289
|
origin_country: PropTypes.string,
|
|
13197
13290
|
destination_country: PropTypes.string,
|
|
13291
|
+
reference_id: PropTypes.string,
|
|
13292
|
+
logistics_integration_provider: PropTypes.string,
|
|
13198
13293
|
});
|
|
13199
13294
|
|
|
13200
13295
|
T['io.flow.internal.v0.models.label_request_error'] = PropTypes.exact({
|
|
@@ -14170,6 +14265,7 @@ T['io.flow.internal.v0.models.reporting_monetary_value'] = PropTypes.exact({
|
|
|
14170
14265
|
transaction: PropTypes.number.isRequired,
|
|
14171
14266
|
merchant: PropTypes.number.isRequired,
|
|
14172
14267
|
entity: PropTypes.number.isRequired,
|
|
14268
|
+
destination_country: PropTypes.number,
|
|
14173
14269
|
usd: PropTypes.number.isRequired,
|
|
14174
14270
|
eur: PropTypes.number.isRequired,
|
|
14175
14271
|
});
|
|
@@ -16129,176 +16225,6 @@ T['io.flow.fulfillment.v0.models.center_reference'] = PropTypes.exact({
|
|
|
16129
16225
|
center_key: PropTypes.string.isRequired,
|
|
16130
16226
|
});
|
|
16131
16227
|
|
|
16132
|
-
T['io.flow.common.v0.models.address'] = PropTypes.exact({
|
|
16133
|
-
text: PropTypes.string,
|
|
16134
|
-
streets: PropTypes.arrayOf(PropTypes.string),
|
|
16135
|
-
street_number: PropTypes.string,
|
|
16136
|
-
city: PropTypes.string,
|
|
16137
|
-
province: PropTypes.string,
|
|
16138
|
-
postal: PropTypes.string,
|
|
16139
|
-
country: PropTypes.string,
|
|
16140
|
-
latitude: PropTypes.string,
|
|
16141
|
-
longitude: PropTypes.string,
|
|
16142
|
-
});
|
|
16143
|
-
|
|
16144
|
-
T['io.flow.shopify.merchant.config.v0.models.know_your_business_usa_form'] = PropTypes.exact({
|
|
16145
|
-
discriminator: PropTypes.oneOf(['know_your_business_usa_form']).isRequired,
|
|
16146
|
-
primary_entity: T['io.flow.shopify.merchant.config.v0.unions.entity'].isRequired,
|
|
16147
|
-
parent_company: T['io.flow.shopify.merchant.config.v0.models.company'],
|
|
16148
|
-
ultimate_parent_company: T['io.flow.shopify.merchant.config.v0.models.company'],
|
|
16149
|
-
ultimate_beneficiary_owner: T['io.flow.shopify.merchant.config.v0.models.individual'].isRequired,
|
|
16150
|
-
business_url: PropTypes.string.isRequired,
|
|
16151
|
-
business_address: T['io.flow.common.v0.models.address'].isRequired,
|
|
16152
|
-
});
|
|
16153
|
-
|
|
16154
|
-
T['io.flow.shopify.merchant.config.v0.unions.know_your_business_form'] = PropTypes.oneOfType(
|
|
16155
|
-
[T['io.flow.shopify.merchant.config.v0.models.know_your_business_usa_form']],
|
|
16156
|
-
);
|
|
16157
|
-
|
|
16158
|
-
T['io.flow.shopify.merchant.config.v0.models.know_your_business_usa'] = PropTypes.exact({
|
|
16159
|
-
discriminator: PropTypes.oneOf(['know_your_business_usa']).isRequired,
|
|
16160
|
-
id: PropTypes.string.isRequired,
|
|
16161
|
-
organization_id: PropTypes.string.isRequired,
|
|
16162
|
-
shop: T['io.flow.merchant.onboarding.v0.models.shop'],
|
|
16163
|
-
primary_entity: T['io.flow.shopify.merchant.config.v0.unions.entity'].isRequired,
|
|
16164
|
-
parent_company: T['io.flow.shopify.merchant.config.v0.models.company'],
|
|
16165
|
-
ultimate_parent_company: T['io.flow.shopify.merchant.config.v0.models.company'],
|
|
16166
|
-
ultimate_beneficiary_owner: T['io.flow.shopify.merchant.config.v0.models.individual'].isRequired,
|
|
16167
|
-
business_url: PropTypes.string.isRequired,
|
|
16168
|
-
business_address: T['io.flow.common.v0.models.address'].isRequired,
|
|
16169
|
-
});
|
|
16170
|
-
|
|
16171
|
-
T['io.flow.shopify.merchant.config.v0.unions.know_your_business'] = PropTypes.oneOfType([T['io.flow.shopify.merchant.config.v0.models.know_your_business_usa']]);
|
|
16172
|
-
|
|
16173
|
-
T['io.flow.shopify.markets.internal.v0.models.shopify_order_destination_form'] = PropTypes.exact({
|
|
16174
|
-
destination: T['io.flow.common.v0.models.address'].isRequired,
|
|
16175
|
-
order_note: PropTypes.string,
|
|
16176
|
-
});
|
|
16177
|
-
|
|
16178
|
-
T['io.flow.internal.v0.models.tax_calculation_line_item_form'] = PropTypes.exact({
|
|
16179
|
-
line_number: PropTypes.string.isRequired,
|
|
16180
|
-
item_number: PropTypes.string.isRequired,
|
|
16181
|
-
ship_from: T['io.flow.common.v0.models.address'],
|
|
16182
|
-
quantity: PropTypes.number.isRequired,
|
|
16183
|
-
amount: PropTypes.number.isRequired,
|
|
16184
|
-
tax_code: PropTypes.string,
|
|
16185
|
-
sku: PropTypes.string,
|
|
16186
|
-
description: PropTypes.string,
|
|
16187
|
-
category_code: PropTypes.string,
|
|
16188
|
-
});
|
|
16189
|
-
|
|
16190
|
-
T['io.flow.internal.v0.models.tax_calculation_form'] = PropTypes.exact({
|
|
16191
|
-
order_number: PropTypes.string.isRequired,
|
|
16192
|
-
target_currency_code: PropTypes.string.isRequired,
|
|
16193
|
-
destination: T['io.flow.common.v0.models.address'].isRequired,
|
|
16194
|
-
order_date: PropTypes.string.isRequired,
|
|
16195
|
-
lines: PropTypes.arrayOf(T['io.flow.internal.v0.models.tax_calculation_line_item_form']).isRequired,
|
|
16196
|
-
shipping_amount: PropTypes.number.isRequired,
|
|
16197
|
-
customer_code: PropTypes.string,
|
|
16198
|
-
});
|
|
16199
|
-
|
|
16200
|
-
T['io.flow.internal.v0.models.smp_tax_calculation_form'] = PropTypes.exact({
|
|
16201
|
-
quote_reference: PropTypes.string.isRequired,
|
|
16202
|
-
target_currency_code: PropTypes.string.isRequired,
|
|
16203
|
-
destination: T['io.flow.common.v0.models.address'].isRequired,
|
|
16204
|
-
order_date: PropTypes.string.isRequired,
|
|
16205
|
-
lines: PropTypes.arrayOf(T['io.flow.internal.v0.models.tax_calculation_line_item_form']).isRequired,
|
|
16206
|
-
shipping_amount: PropTypes.number.isRequired,
|
|
16207
|
-
customer_code: PropTypes.string,
|
|
16208
|
-
});
|
|
16209
|
-
|
|
16210
|
-
T['io.flow.internal.v0.models.tax_calculation_line_item'] = PropTypes.exact({
|
|
16211
|
-
line_number: PropTypes.string.isRequired,
|
|
16212
|
-
item_number: PropTypes.string.isRequired,
|
|
16213
|
-
ship_from: T['io.flow.common.v0.models.address'],
|
|
16214
|
-
quantity: PropTypes.number.isRequired,
|
|
16215
|
-
total: PropTypes.number.isRequired,
|
|
16216
|
-
tax: T['io.flow.internal.v0.unions.tax_amount'].isRequired,
|
|
16217
|
-
sku: PropTypes.string,
|
|
16218
|
-
description: PropTypes.string,
|
|
16219
|
-
});
|
|
16220
|
-
|
|
16221
|
-
T['io.flow.internal.v0.models.tax_calculation'] = PropTypes.exact({
|
|
16222
|
-
order_number: PropTypes.string.isRequired,
|
|
16223
|
-
target_currency_code: PropTypes.string.isRequired,
|
|
16224
|
-
total: PropTypes.number.isRequired,
|
|
16225
|
-
tax: T['io.flow.internal.v0.unions.tax_amount'].isRequired,
|
|
16226
|
-
lines: PropTypes.arrayOf(T['io.flow.internal.v0.models.tax_calculation_line_item']).isRequired,
|
|
16227
|
-
shipping_total: PropTypes.number.isRequired,
|
|
16228
|
-
shipping_tax: T['io.flow.internal.v0.unions.tax_amount'].isRequired,
|
|
16229
|
-
customer_code: PropTypes.string,
|
|
16230
|
-
});
|
|
16231
|
-
|
|
16232
|
-
T['io.flow.internal.v0.models.smp_tax_calculation'] = PropTypes.exact({
|
|
16233
|
-
quote_reference: PropTypes.string.isRequired,
|
|
16234
|
-
target_currency_code: PropTypes.string.isRequired,
|
|
16235
|
-
total: PropTypes.number.isRequired,
|
|
16236
|
-
tax: T['io.flow.internal.v0.unions.tax_amount'].isRequired,
|
|
16237
|
-
lines: PropTypes.arrayOf(T['io.flow.internal.v0.models.tax_calculation_line_item']).isRequired,
|
|
16238
|
-
shipping_total: PropTypes.number.isRequired,
|
|
16239
|
-
shipping_tax: T['io.flow.internal.v0.unions.tax_amount'].isRequired,
|
|
16240
|
-
customer_code: PropTypes.string,
|
|
16241
|
-
});
|
|
16242
|
-
|
|
16243
|
-
T['io.flow.internal.v0.models.shopify_order_destination_form'] = PropTypes.exact({
|
|
16244
|
-
destination: T['io.flow.common.v0.models.address'].isRequired,
|
|
16245
|
-
order_note: PropTypes.string,
|
|
16246
|
-
});
|
|
16247
|
-
|
|
16248
|
-
T['io.flow.internal.v0.models.rate_and_rule_item_form'] = PropTypes.exact({
|
|
16249
|
-
item_reference: PropTypes.string.isRequired,
|
|
16250
|
-
hs_code: PropTypes.string.isRequired,
|
|
16251
|
-
origin: PropTypes.string.isRequired,
|
|
16252
|
-
ship_from_address: T['io.flow.common.v0.models.address'].isRequired,
|
|
16253
|
-
});
|
|
16254
|
-
|
|
16255
|
-
T['io.flow.internal.v0.models.rate_and_rule_lookup_form'] = PropTypes.exact({
|
|
16256
|
-
address: T['io.flow.common.v0.models.address'].isRequired,
|
|
16257
|
-
effective_date: PropTypes.string.isRequired,
|
|
16258
|
-
items: PropTypes.arrayOf(T['io.flow.internal.v0.models.rate_and_rule_item_form']).isRequired,
|
|
16259
|
-
});
|
|
16260
|
-
|
|
16261
|
-
T['io.flow.internal.v0.models.rate_and_rule_item'] = PropTypes.exact({
|
|
16262
|
-
item_reference: PropTypes.string.isRequired,
|
|
16263
|
-
hs_code: PropTypes.string.isRequired,
|
|
16264
|
-
origin: PropTypes.string.isRequired,
|
|
16265
|
-
ship_from_address: T['io.flow.common.v0.models.address'].isRequired,
|
|
16266
|
-
duty: T['io.flow.price.v0.models.duty'].isRequired,
|
|
16267
|
-
tax: T['io.flow.price.v0.models.tax'].isRequired,
|
|
16268
|
-
duty_selection_rule: T['io.flow.internal.v0.enums.duty_selection_rule'].isRequired,
|
|
16269
|
-
});
|
|
16270
|
-
|
|
16271
|
-
T['io.flow.internal.v0.models.rate_and_rule_lookup'] = PropTypes.exact({
|
|
16272
|
-
address: T['io.flow.common.v0.models.address'].isRequired,
|
|
16273
|
-
effective_date: PropTypes.string.isRequired,
|
|
16274
|
-
items: PropTypes.arrayOf(T['io.flow.internal.v0.models.rate_and_rule_item']).isRequired,
|
|
16275
|
-
});
|
|
16276
|
-
|
|
16277
|
-
T['io.flow.harmonization.v0.models.harmonized_landed_cost_item'] = PropTypes.exact({
|
|
16278
|
-
item: T['io.flow.harmonization.v0.models.harmonized_item_reference'].isRequired,
|
|
16279
|
-
duty: T['io.flow.price.v0.models.duty'].isRequired,
|
|
16280
|
-
tax: T['io.flow.price.v0.models.tax'].isRequired,
|
|
16281
|
-
tax_applicability: T['io.flow.harmonization.v0.enums.tax_applicability'],
|
|
16282
|
-
origin: PropTypes.string,
|
|
16283
|
-
hs_code: PropTypes.string,
|
|
16284
|
-
tariff_code: PropTypes.string,
|
|
16285
|
-
customs_description: PropTypes.string,
|
|
16286
|
-
source_address: T['io.flow.common.v0.models.address'],
|
|
16287
|
-
});
|
|
16288
|
-
|
|
16289
|
-
T['io.flow.internal.v0.models.destination_error'] = PropTypes.exact({
|
|
16290
|
-
id: PropTypes.string.isRequired,
|
|
16291
|
-
failed_at: PropTypes.string.isRequired,
|
|
16292
|
-
error: PropTypes.string.isRequired,
|
|
16293
|
-
destination: T['io.flow.common.v0.models.address'].isRequired,
|
|
16294
|
-
});
|
|
16295
|
-
|
|
16296
|
-
T['io.flow.internal.v0.models.customs_details_form'] = PropTypes.exact({
|
|
16297
|
-
destination: T['io.flow.common.v0.models.address'].isRequired,
|
|
16298
|
-
item_numbers: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
16299
|
-
ship_from: T['io.flow.common.v0.models.address'].isRequired,
|
|
16300
|
-
});
|
|
16301
|
-
|
|
16302
16228
|
T['io.flow.internal.v0.models.invoice_line_item'] = PropTypes.exact({
|
|
16303
16229
|
number: PropTypes.string.isRequired,
|
|
16304
16230
|
description: PropTypes.string.isRequired,
|
|
@@ -17038,29 +16964,6 @@ T['io.flow.harmonization.v0.models.tax_registration'] = PropTypes.exact({
|
|
|
17038
16964
|
company_name: PropTypes.string,
|
|
17039
16965
|
});
|
|
17040
16966
|
|
|
17041
|
-
T['io.flow.harmonization.v0.models.harmonized_landed_cost'] = PropTypes.exact({
|
|
17042
|
-
address: T['io.flow.common.v0.models.address'].isRequired,
|
|
17043
|
-
items: PropTypes.arrayOf(T['io.flow.harmonization.v0.models.harmonized_landed_cost_item']).isRequired,
|
|
17044
|
-
tax_registration: T['io.flow.harmonization.v0.models.tax_registration'],
|
|
17045
|
-
});
|
|
17046
|
-
|
|
17047
|
-
T['io.flow.internal.v0.models.levy_rate_summary'] = PropTypes.exact({
|
|
17048
|
-
id: PropTypes.string.isRequired,
|
|
17049
|
-
number: PropTypes.string.isRequired,
|
|
17050
|
-
destination: T['io.flow.common.v0.models.address'].isRequired,
|
|
17051
|
-
items: PropTypes.arrayOf(T['io.flow.harmonization.v0.models.harmonized_landed_cost_item']).isRequired,
|
|
17052
|
-
tax_registration: T['io.flow.harmonization.v0.models.tax_registration'],
|
|
17053
|
-
});
|
|
17054
|
-
|
|
17055
|
-
T['io.flow.internal.v0.models.levy_rate_summary_upserted'] = PropTypes.exact({
|
|
17056
|
-
discriminator: PropTypes.oneOf(['levy_rate_summary_upserted']).isRequired,
|
|
17057
|
-
event_id: PropTypes.string.isRequired,
|
|
17058
|
-
timestamp: PropTypes.string.isRequired,
|
|
17059
|
-
organization: PropTypes.string.isRequired,
|
|
17060
|
-
id: PropTypes.string.isRequired,
|
|
17061
|
-
summary: T['io.flow.internal.v0.models.levy_rate_summary'].isRequired,
|
|
17062
|
-
});
|
|
17063
|
-
|
|
17064
16967
|
T['io.flow.experience.v0.models.order_rules_summary'] = PropTypes.exact({
|
|
17065
16968
|
applied: PropTypes.arrayOf(T['io.flow.experience.v0.models.order_rule_reference']).isRequired,
|
|
17066
16969
|
});
|
|
@@ -17671,16 +17574,36 @@ T['io.flow.internal.v0.models.channel_order_summary_fulfillment_details'] = Prop
|
|
|
17671
17574
|
timestamp: PropTypes.string.isRequired,
|
|
17672
17575
|
});
|
|
17673
17576
|
|
|
17674
|
-
T['io.flow.internal.v0.enums.
|
|
17675
|
-
|
|
17676
|
-
|
|
17677
|
-
|
|
17678
|
-
|
|
17679
|
-
|
|
17680
|
-
|
|
17681
|
-
'
|
|
17682
|
-
|
|
17683
|
-
|
|
17577
|
+
T['io.flow.internal.v0.enums.channel_order_acceptance_failure_reason_code'] = PropTypes.oneOf(['channel_order_mor_invalid', 'channel_order_does_not_exist']);
|
|
17578
|
+
|
|
17579
|
+
T['io.flow.internal.v0.models.channel_order_acceptance_failure'] = PropTypes.exact({
|
|
17580
|
+
id: PropTypes.string.isRequired,
|
|
17581
|
+
organization_id: PropTypes.string.isRequired,
|
|
17582
|
+
channel_id: PropTypes.string.isRequired,
|
|
17583
|
+
payment_request_id: PropTypes.string.isRequired,
|
|
17584
|
+
code: T['io.flow.internal.v0.enums.channel_order_acceptance_failure_reason_code'].isRequired,
|
|
17585
|
+
reason: PropTypes.string.isRequired,
|
|
17586
|
+
});
|
|
17587
|
+
|
|
17588
|
+
T['io.flow.internal.v0.models.channel_order_acceptance_failed'] = PropTypes.exact({
|
|
17589
|
+
discriminator: PropTypes.oneOf(['channel_order_acceptance_failed']).isRequired,
|
|
17590
|
+
event_id: PropTypes.string.isRequired,
|
|
17591
|
+
timestamp: PropTypes.string.isRequired,
|
|
17592
|
+
organization: PropTypes.string.isRequired,
|
|
17593
|
+
channel_id: PropTypes.string.isRequired,
|
|
17594
|
+
channel_order_acceptance_failure: T['io.flow.internal.v0.models.channel_order_acceptance_failure'].isRequired,
|
|
17595
|
+
});
|
|
17596
|
+
|
|
17597
|
+
T['io.flow.internal.v0.enums.channel_order_acceptance_rejection_reason'] = PropTypes.oneOf([
|
|
17598
|
+
'unsupported_origin_country',
|
|
17599
|
+
'unsupported_destination_country',
|
|
17600
|
+
'domestic_order',
|
|
17601
|
+
'order_contains_gift_card',
|
|
17602
|
+
'order_contains_restricted_goods',
|
|
17603
|
+
'missing_order_information',
|
|
17604
|
+
'unsupported_payment_information',
|
|
17605
|
+
'unsupported_shop_currency',
|
|
17606
|
+
'unsupported_free_order',
|
|
17684
17607
|
'extracting_distribution_info_failed',
|
|
17685
17608
|
'shipping_estimation_failed',
|
|
17686
17609
|
'payment_authorization_failed',
|
|
@@ -17797,25 +17720,6 @@ T['io.flow.tracking.v0.models.tracking_event_form'] = PropTypes.exact({
|
|
|
17797
17720
|
address: PropTypes.string,
|
|
17798
17721
|
});
|
|
17799
17722
|
|
|
17800
|
-
T['io.flow.tracking.v0.models.tracking_event'] = PropTypes.exact({
|
|
17801
|
-
id: PropTypes.string.isRequired,
|
|
17802
|
-
address: T['io.flow.common.v0.models.address'].isRequired,
|
|
17803
|
-
status: T['io.flow.tracking.v0.enums.tracking_status'].isRequired,
|
|
17804
|
-
timestamp: PropTypes.string.isRequired,
|
|
17805
|
-
description: PropTypes.string,
|
|
17806
|
-
});
|
|
17807
|
-
|
|
17808
|
-
T['io.flow.tracking.v0.models.tracking_label'] = PropTypes.exact({
|
|
17809
|
-
id: PropTypes.string.isRequired,
|
|
17810
|
-
carrier: PropTypes.string.isRequired,
|
|
17811
|
-
carrier_tracking_number: PropTypes.string.isRequired,
|
|
17812
|
-
events: PropTypes.arrayOf(T['io.flow.tracking.v0.models.tracking_event']).isRequired,
|
|
17813
|
-
status: T['io.flow.tracking.v0.enums.tracking_status'].isRequired,
|
|
17814
|
-
timestamp: PropTypes.string.isRequired,
|
|
17815
|
-
delivery_estimate: PropTypes.string,
|
|
17816
|
-
description: PropTypes.string,
|
|
17817
|
-
});
|
|
17818
|
-
|
|
17819
17723
|
T['io.flow.internal.v0.models.tracking_debug_label_event'] = PropTypes.exact({
|
|
17820
17724
|
status: T['io.flow.tracking.v0.enums.tracking_status'].isRequired,
|
|
17821
17725
|
raw_carrier_event_code: PropTypes.string,
|
|
@@ -17828,38 +17732,6 @@ T['io.flow.internal.v0.models.tracking_debug_label'] = PropTypes.exact({
|
|
|
17828
17732
|
events: PropTypes.arrayOf(T['io.flow.internal.v0.models.tracking_debug_label_event']).isRequired,
|
|
17829
17733
|
});
|
|
17830
17734
|
|
|
17831
|
-
T['io.flow.internal.v0.models.export_tracking_label_event'] = PropTypes.exact({
|
|
17832
|
-
id: PropTypes.string.isRequired,
|
|
17833
|
-
address: T['io.flow.common.v0.models.address'],
|
|
17834
|
-
carrier: PropTypes.string.isRequired,
|
|
17835
|
-
carrier_timestamp: PropTypes.string.isRequired,
|
|
17836
|
-
carrier_tracking_number: PropTypes.string.isRequired,
|
|
17837
|
-
flow_tracking_number: PropTypes.string.isRequired,
|
|
17838
|
-
status: T['io.flow.tracking.v0.enums.tracking_status'].isRequired,
|
|
17839
|
-
delivery_estimate: PropTypes.string,
|
|
17840
|
-
description: PropTypes.string,
|
|
17841
|
-
order_number: PropTypes.string,
|
|
17842
|
-
raw_carrier_event_code: PropTypes.string,
|
|
17843
|
-
aggregator_status_code: PropTypes.string,
|
|
17844
|
-
created_at: PropTypes.string,
|
|
17845
|
-
});
|
|
17846
|
-
|
|
17847
|
-
T['io.flow.internal.v0.models.tracking_label_event_upserted_v2'] = PropTypes.exact({
|
|
17848
|
-
discriminator: PropTypes.oneOf(['tracking_label_event_upserted_v2']).isRequired,
|
|
17849
|
-
event_id: PropTypes.string.isRequired,
|
|
17850
|
-
timestamp: PropTypes.string.isRequired,
|
|
17851
|
-
organization: PropTypes.string.isRequired,
|
|
17852
|
-
tracking_label_event: T['io.flow.internal.v0.models.export_tracking_label_event'].isRequired,
|
|
17853
|
-
});
|
|
17854
|
-
|
|
17855
|
-
T['io.flow.internal.v0.models.tracking_label_event_deleted_v2'] = PropTypes.exact({
|
|
17856
|
-
discriminator: PropTypes.oneOf(['tracking_label_event_deleted_v2']).isRequired,
|
|
17857
|
-
event_id: PropTypes.string.isRequired,
|
|
17858
|
-
timestamp: PropTypes.string.isRequired,
|
|
17859
|
-
organization: PropTypes.string.isRequired,
|
|
17860
|
-
tracking_label_event: T['io.flow.internal.v0.models.export_tracking_label_event'].isRequired,
|
|
17861
|
-
});
|
|
17862
|
-
|
|
17863
17735
|
T['io.flow.internal.v0.models.export_tracking_label'] = PropTypes.exact({
|
|
17864
17736
|
id: PropTypes.string.isRequired,
|
|
17865
17737
|
carrier: PropTypes.string.isRequired,
|
|
@@ -18430,6 +18302,250 @@ T['io.flow.internal.v0.models.item_form_import_request'] = PropTypes.exact({
|
|
|
18430
18302
|
internal_item_form: T['io.flow.internal.v0.models.internal_item_form'].isRequired,
|
|
18431
18303
|
});
|
|
18432
18304
|
|
|
18305
|
+
T['io.flow.common.v0.models.address'] = PropTypes.exact({
|
|
18306
|
+
text: PropTypes.string,
|
|
18307
|
+
streets: PropTypes.arrayOf(PropTypes.string),
|
|
18308
|
+
street_number: PropTypes.string,
|
|
18309
|
+
city: PropTypes.string,
|
|
18310
|
+
province: PropTypes.string,
|
|
18311
|
+
postal: PropTypes.string,
|
|
18312
|
+
country: PropTypes.string,
|
|
18313
|
+
latitude: PropTypes.string,
|
|
18314
|
+
longitude: PropTypes.string,
|
|
18315
|
+
});
|
|
18316
|
+
|
|
18317
|
+
T['io.flow.shopify.merchant.config.v0.models.know_your_business_usa_form'] = PropTypes.exact({
|
|
18318
|
+
discriminator: PropTypes.oneOf(['know_your_business_usa_form']).isRequired,
|
|
18319
|
+
primary_entity: T['io.flow.shopify.merchant.config.v0.unions.entity'].isRequired,
|
|
18320
|
+
parent_company: T['io.flow.shopify.merchant.config.v0.models.company'],
|
|
18321
|
+
ultimate_parent_company: T['io.flow.shopify.merchant.config.v0.models.company'],
|
|
18322
|
+
ultimate_beneficiary_owner: T['io.flow.shopify.merchant.config.v0.models.individual'].isRequired,
|
|
18323
|
+
business_url: PropTypes.string.isRequired,
|
|
18324
|
+
business_address: T['io.flow.common.v0.models.address'].isRequired,
|
|
18325
|
+
});
|
|
18326
|
+
|
|
18327
|
+
T['io.flow.shopify.merchant.config.v0.unions.know_your_business_form'] = PropTypes.oneOfType(
|
|
18328
|
+
[T['io.flow.shopify.merchant.config.v0.models.know_your_business_usa_form']],
|
|
18329
|
+
);
|
|
18330
|
+
|
|
18331
|
+
T['io.flow.shopify.merchant.config.v0.models.know_your_business_usa'] = PropTypes.exact({
|
|
18332
|
+
discriminator: PropTypes.oneOf(['know_your_business_usa']).isRequired,
|
|
18333
|
+
id: PropTypes.string.isRequired,
|
|
18334
|
+
organization_id: PropTypes.string.isRequired,
|
|
18335
|
+
shop: T['io.flow.merchant.onboarding.v0.models.shop'],
|
|
18336
|
+
primary_entity: T['io.flow.shopify.merchant.config.v0.unions.entity'].isRequired,
|
|
18337
|
+
parent_company: T['io.flow.shopify.merchant.config.v0.models.company'],
|
|
18338
|
+
ultimate_parent_company: T['io.flow.shopify.merchant.config.v0.models.company'],
|
|
18339
|
+
ultimate_beneficiary_owner: T['io.flow.shopify.merchant.config.v0.models.individual'].isRequired,
|
|
18340
|
+
business_url: PropTypes.string.isRequired,
|
|
18341
|
+
business_address: T['io.flow.common.v0.models.address'].isRequired,
|
|
18342
|
+
});
|
|
18343
|
+
|
|
18344
|
+
T['io.flow.shopify.merchant.config.v0.unions.know_your_business'] = PropTypes.oneOfType([T['io.flow.shopify.merchant.config.v0.models.know_your_business_usa']]);
|
|
18345
|
+
|
|
18346
|
+
T['io.flow.shopify.markets.internal.v0.models.shopify_order_destination_form'] = PropTypes.exact({
|
|
18347
|
+
destination: T['io.flow.common.v0.models.address'].isRequired,
|
|
18348
|
+
order_note: PropTypes.string,
|
|
18349
|
+
});
|
|
18350
|
+
|
|
18351
|
+
T['io.flow.tracking.v0.models.tracking_event'] = PropTypes.exact({
|
|
18352
|
+
id: PropTypes.string.isRequired,
|
|
18353
|
+
address: T['io.flow.common.v0.models.address'].isRequired,
|
|
18354
|
+
status: T['io.flow.tracking.v0.enums.tracking_status'].isRequired,
|
|
18355
|
+
timestamp: PropTypes.string.isRequired,
|
|
18356
|
+
description: PropTypes.string,
|
|
18357
|
+
});
|
|
18358
|
+
|
|
18359
|
+
T['io.flow.tracking.v0.models.tracking_label'] = PropTypes.exact({
|
|
18360
|
+
id: PropTypes.string.isRequired,
|
|
18361
|
+
carrier: PropTypes.string.isRequired,
|
|
18362
|
+
carrier_tracking_number: PropTypes.string.isRequired,
|
|
18363
|
+
events: PropTypes.arrayOf(T['io.flow.tracking.v0.models.tracking_event']).isRequired,
|
|
18364
|
+
status: T['io.flow.tracking.v0.enums.tracking_status'].isRequired,
|
|
18365
|
+
timestamp: PropTypes.string.isRequired,
|
|
18366
|
+
delivery_estimate: PropTypes.string,
|
|
18367
|
+
description: PropTypes.string,
|
|
18368
|
+
});
|
|
18369
|
+
|
|
18370
|
+
T['io.flow.internal.v0.models.tax_calculation_line_item_form'] = PropTypes.exact({
|
|
18371
|
+
line_number: PropTypes.string.isRequired,
|
|
18372
|
+
item_number: PropTypes.string.isRequired,
|
|
18373
|
+
ship_from: T['io.flow.common.v0.models.address'],
|
|
18374
|
+
quantity: PropTypes.number.isRequired,
|
|
18375
|
+
amount: PropTypes.number.isRequired,
|
|
18376
|
+
tax_code: PropTypes.string,
|
|
18377
|
+
sku: PropTypes.string,
|
|
18378
|
+
description: PropTypes.string,
|
|
18379
|
+
category_code: PropTypes.string,
|
|
18380
|
+
});
|
|
18381
|
+
|
|
18382
|
+
T['io.flow.internal.v0.models.tax_calculation_form'] = PropTypes.exact({
|
|
18383
|
+
order_number: PropTypes.string.isRequired,
|
|
18384
|
+
target_currency_code: PropTypes.string.isRequired,
|
|
18385
|
+
destination: T['io.flow.common.v0.models.address'].isRequired,
|
|
18386
|
+
order_date: PropTypes.string.isRequired,
|
|
18387
|
+
lines: PropTypes.arrayOf(T['io.flow.internal.v0.models.tax_calculation_line_item_form']).isRequired,
|
|
18388
|
+
shipping_amount: PropTypes.number.isRequired,
|
|
18389
|
+
customer_code: PropTypes.string,
|
|
18390
|
+
});
|
|
18391
|
+
|
|
18392
|
+
T['io.flow.internal.v0.models.smp_tax_calculation_form'] = PropTypes.exact({
|
|
18393
|
+
quote_reference: PropTypes.string.isRequired,
|
|
18394
|
+
target_currency_code: PropTypes.string.isRequired,
|
|
18395
|
+
destination: T['io.flow.common.v0.models.address'].isRequired,
|
|
18396
|
+
order_date: PropTypes.string.isRequired,
|
|
18397
|
+
lines: PropTypes.arrayOf(T['io.flow.internal.v0.models.tax_calculation_line_item_form']).isRequired,
|
|
18398
|
+
shipping_amount: PropTypes.number.isRequired,
|
|
18399
|
+
customer_code: PropTypes.string,
|
|
18400
|
+
});
|
|
18401
|
+
|
|
18402
|
+
T['io.flow.internal.v0.models.tax_calculation_line_item'] = PropTypes.exact({
|
|
18403
|
+
line_number: PropTypes.string.isRequired,
|
|
18404
|
+
item_number: PropTypes.string.isRequired,
|
|
18405
|
+
ship_from: T['io.flow.common.v0.models.address'],
|
|
18406
|
+
quantity: PropTypes.number.isRequired,
|
|
18407
|
+
total: PropTypes.number.isRequired,
|
|
18408
|
+
tax: T['io.flow.internal.v0.unions.tax_amount'].isRequired,
|
|
18409
|
+
sku: PropTypes.string,
|
|
18410
|
+
description: PropTypes.string,
|
|
18411
|
+
});
|
|
18412
|
+
|
|
18413
|
+
T['io.flow.internal.v0.models.tax_calculation'] = PropTypes.exact({
|
|
18414
|
+
order_number: PropTypes.string.isRequired,
|
|
18415
|
+
target_currency_code: PropTypes.string.isRequired,
|
|
18416
|
+
total: PropTypes.number.isRequired,
|
|
18417
|
+
tax: T['io.flow.internal.v0.unions.tax_amount'].isRequired,
|
|
18418
|
+
lines: PropTypes.arrayOf(T['io.flow.internal.v0.models.tax_calculation_line_item']).isRequired,
|
|
18419
|
+
shipping_total: PropTypes.number.isRequired,
|
|
18420
|
+
shipping_tax: T['io.flow.internal.v0.unions.tax_amount'].isRequired,
|
|
18421
|
+
customer_code: PropTypes.string,
|
|
18422
|
+
});
|
|
18423
|
+
|
|
18424
|
+
T['io.flow.internal.v0.models.smp_tax_calculation'] = PropTypes.exact({
|
|
18425
|
+
quote_reference: PropTypes.string.isRequired,
|
|
18426
|
+
target_currency_code: PropTypes.string.isRequired,
|
|
18427
|
+
total: PropTypes.number.isRequired,
|
|
18428
|
+
tax: T['io.flow.internal.v0.unions.tax_amount'].isRequired,
|
|
18429
|
+
lines: PropTypes.arrayOf(T['io.flow.internal.v0.models.tax_calculation_line_item']).isRequired,
|
|
18430
|
+
shipping_total: PropTypes.number.isRequired,
|
|
18431
|
+
shipping_tax: T['io.flow.internal.v0.unions.tax_amount'].isRequired,
|
|
18432
|
+
customer_code: PropTypes.string,
|
|
18433
|
+
});
|
|
18434
|
+
|
|
18435
|
+
T['io.flow.internal.v0.models.shopify_order_destination_form'] = PropTypes.exact({
|
|
18436
|
+
destination: T['io.flow.common.v0.models.address'].isRequired,
|
|
18437
|
+
order_note: PropTypes.string,
|
|
18438
|
+
});
|
|
18439
|
+
|
|
18440
|
+
T['io.flow.internal.v0.models.rate_and_rule_item_form'] = PropTypes.exact({
|
|
18441
|
+
item_reference: PropTypes.string.isRequired,
|
|
18442
|
+
hs_code: PropTypes.string.isRequired,
|
|
18443
|
+
origin: PropTypes.string.isRequired,
|
|
18444
|
+
ship_from_address: T['io.flow.common.v0.models.address'].isRequired,
|
|
18445
|
+
});
|
|
18446
|
+
|
|
18447
|
+
T['io.flow.internal.v0.models.rate_and_rule_lookup_form'] = PropTypes.exact({
|
|
18448
|
+
address: T['io.flow.common.v0.models.address'].isRequired,
|
|
18449
|
+
effective_date: PropTypes.string.isRequired,
|
|
18450
|
+
items: PropTypes.arrayOf(T['io.flow.internal.v0.models.rate_and_rule_item_form']).isRequired,
|
|
18451
|
+
});
|
|
18452
|
+
|
|
18453
|
+
T['io.flow.internal.v0.models.rate_and_rule_item'] = PropTypes.exact({
|
|
18454
|
+
item_reference: PropTypes.string.isRequired,
|
|
18455
|
+
hs_code: PropTypes.string.isRequired,
|
|
18456
|
+
origin: PropTypes.string.isRequired,
|
|
18457
|
+
ship_from_address: T['io.flow.common.v0.models.address'].isRequired,
|
|
18458
|
+
duty: T['io.flow.price.v0.models.duty'].isRequired,
|
|
18459
|
+
tax: T['io.flow.price.v0.models.tax'].isRequired,
|
|
18460
|
+
duty_selection_rule: T['io.flow.internal.v0.enums.duty_selection_rule'].isRequired,
|
|
18461
|
+
});
|
|
18462
|
+
|
|
18463
|
+
T['io.flow.internal.v0.models.rate_and_rule_lookup'] = PropTypes.exact({
|
|
18464
|
+
address: T['io.flow.common.v0.models.address'].isRequired,
|
|
18465
|
+
effective_date: PropTypes.string.isRequired,
|
|
18466
|
+
items: PropTypes.arrayOf(T['io.flow.internal.v0.models.rate_and_rule_item']).isRequired,
|
|
18467
|
+
});
|
|
18468
|
+
|
|
18469
|
+
T['io.flow.harmonization.v0.models.harmonized_landed_cost_item'] = PropTypes.exact({
|
|
18470
|
+
item: T['io.flow.harmonization.v0.models.harmonized_item_reference'].isRequired,
|
|
18471
|
+
duty: T['io.flow.price.v0.models.duty'].isRequired,
|
|
18472
|
+
tax: T['io.flow.price.v0.models.tax'].isRequired,
|
|
18473
|
+
tax_applicability: T['io.flow.harmonization.v0.enums.tax_applicability'],
|
|
18474
|
+
origin: PropTypes.string,
|
|
18475
|
+
hs_code: PropTypes.string,
|
|
18476
|
+
tariff_code: PropTypes.string,
|
|
18477
|
+
customs_description: PropTypes.string,
|
|
18478
|
+
source_address: T['io.flow.common.v0.models.address'],
|
|
18479
|
+
});
|
|
18480
|
+
|
|
18481
|
+
T['io.flow.harmonization.v0.models.harmonized_landed_cost'] = PropTypes.exact({
|
|
18482
|
+
address: T['io.flow.common.v0.models.address'].isRequired,
|
|
18483
|
+
items: PropTypes.arrayOf(T['io.flow.harmonization.v0.models.harmonized_landed_cost_item']).isRequired,
|
|
18484
|
+
tax_registration: T['io.flow.harmonization.v0.models.tax_registration'],
|
|
18485
|
+
});
|
|
18486
|
+
|
|
18487
|
+
T['io.flow.internal.v0.models.levy_rate_summary'] = PropTypes.exact({
|
|
18488
|
+
id: PropTypes.string.isRequired,
|
|
18489
|
+
number: PropTypes.string.isRequired,
|
|
18490
|
+
destination: T['io.flow.common.v0.models.address'].isRequired,
|
|
18491
|
+
items: PropTypes.arrayOf(T['io.flow.harmonization.v0.models.harmonized_landed_cost_item']).isRequired,
|
|
18492
|
+
tax_registration: T['io.flow.harmonization.v0.models.tax_registration'],
|
|
18493
|
+
});
|
|
18494
|
+
|
|
18495
|
+
T['io.flow.internal.v0.models.levy_rate_summary_upserted'] = PropTypes.exact({
|
|
18496
|
+
discriminator: PropTypes.oneOf(['levy_rate_summary_upserted']).isRequired,
|
|
18497
|
+
event_id: PropTypes.string.isRequired,
|
|
18498
|
+
timestamp: PropTypes.string.isRequired,
|
|
18499
|
+
organization: PropTypes.string.isRequired,
|
|
18500
|
+
id: PropTypes.string.isRequired,
|
|
18501
|
+
summary: T['io.flow.internal.v0.models.levy_rate_summary'].isRequired,
|
|
18502
|
+
});
|
|
18503
|
+
|
|
18504
|
+
T['io.flow.internal.v0.models.export_tracking_label_event'] = PropTypes.exact({
|
|
18505
|
+
id: PropTypes.string.isRequired,
|
|
18506
|
+
address: T['io.flow.common.v0.models.address'],
|
|
18507
|
+
carrier: PropTypes.string.isRequired,
|
|
18508
|
+
carrier_timestamp: PropTypes.string.isRequired,
|
|
18509
|
+
carrier_tracking_number: PropTypes.string.isRequired,
|
|
18510
|
+
flow_tracking_number: PropTypes.string.isRequired,
|
|
18511
|
+
status: T['io.flow.tracking.v0.enums.tracking_status'].isRequired,
|
|
18512
|
+
delivery_estimate: PropTypes.string,
|
|
18513
|
+
description: PropTypes.string,
|
|
18514
|
+
order_number: PropTypes.string,
|
|
18515
|
+
raw_carrier_event_code: PropTypes.string,
|
|
18516
|
+
aggregator_status_code: PropTypes.string,
|
|
18517
|
+
created_at: PropTypes.string,
|
|
18518
|
+
});
|
|
18519
|
+
|
|
18520
|
+
T['io.flow.internal.v0.models.tracking_label_event_upserted_v2'] = PropTypes.exact({
|
|
18521
|
+
discriminator: PropTypes.oneOf(['tracking_label_event_upserted_v2']).isRequired,
|
|
18522
|
+
event_id: PropTypes.string.isRequired,
|
|
18523
|
+
timestamp: PropTypes.string.isRequired,
|
|
18524
|
+
organization: PropTypes.string.isRequired,
|
|
18525
|
+
tracking_label_event: T['io.flow.internal.v0.models.export_tracking_label_event'].isRequired,
|
|
18526
|
+
});
|
|
18527
|
+
|
|
18528
|
+
T['io.flow.internal.v0.models.tracking_label_event_deleted_v2'] = PropTypes.exact({
|
|
18529
|
+
discriminator: PropTypes.oneOf(['tracking_label_event_deleted_v2']).isRequired,
|
|
18530
|
+
event_id: PropTypes.string.isRequired,
|
|
18531
|
+
timestamp: PropTypes.string.isRequired,
|
|
18532
|
+
organization: PropTypes.string.isRequired,
|
|
18533
|
+
tracking_label_event: T['io.flow.internal.v0.models.export_tracking_label_event'].isRequired,
|
|
18534
|
+
});
|
|
18535
|
+
|
|
18536
|
+
T['io.flow.internal.v0.models.destination_error'] = PropTypes.exact({
|
|
18537
|
+
id: PropTypes.string.isRequired,
|
|
18538
|
+
failed_at: PropTypes.string.isRequired,
|
|
18539
|
+
error: PropTypes.string.isRequired,
|
|
18540
|
+
destination: T['io.flow.common.v0.models.address'].isRequired,
|
|
18541
|
+
});
|
|
18542
|
+
|
|
18543
|
+
T['io.flow.internal.v0.models.customs_details_form'] = PropTypes.exact({
|
|
18544
|
+
destination: T['io.flow.common.v0.models.address'].isRequired,
|
|
18545
|
+
item_numbers: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
18546
|
+
ship_from: T['io.flow.common.v0.models.address'].isRequired,
|
|
18547
|
+
});
|
|
18548
|
+
|
|
18433
18549
|
T['io.flow.fulfillment.v0.models.packaging'] = PropTypes.exact({
|
|
18434
18550
|
dimensions: T['io.flow.common.v0.models.dimensions'].isRequired,
|
|
18435
18551
|
name: PropTypes.string,
|
|
@@ -20146,6 +20262,35 @@ T['io.flow.internal.v0.models.shopify_payment_summary'] = PropTypes.exact({
|
|
|
20146
20262
|
contact: T['io.flow.common.v0.models.contact'],
|
|
20147
20263
|
});
|
|
20148
20264
|
|
|
20265
|
+
T['io.flow.internal.v0.models.public_hub_form'] = PropTypes.exact({
|
|
20266
|
+
code: PropTypes.string.isRequired,
|
|
20267
|
+
third_party_logistics_reference: PropTypes.string.isRequired,
|
|
20268
|
+
contact: T['io.flow.common.v0.models.contact'].isRequired,
|
|
20269
|
+
location: T['io.flow.common.v0.models.address'].isRequired,
|
|
20270
|
+
});
|
|
20271
|
+
|
|
20272
|
+
T['io.flow.internal.v0.models.public_hub'] = PropTypes.exact({
|
|
20273
|
+
id: PropTypes.string.isRequired,
|
|
20274
|
+
code: PropTypes.string.isRequired,
|
|
20275
|
+
third_party_logistics_reference: PropTypes.string.isRequired,
|
|
20276
|
+
contact: T['io.flow.common.v0.models.contact'].isRequired,
|
|
20277
|
+
location: T['io.flow.common.v0.models.address'].isRequired,
|
|
20278
|
+
});
|
|
20279
|
+
|
|
20280
|
+
T['io.flow.internal.v0.models.merchant_hub_override_form'] = PropTypes.exact({
|
|
20281
|
+
code: PropTypes.string.isRequired,
|
|
20282
|
+
contact: T['io.flow.common.v0.models.contact'].isRequired,
|
|
20283
|
+
location: T['io.flow.common.v0.models.address'].isRequired,
|
|
20284
|
+
});
|
|
20285
|
+
|
|
20286
|
+
T['io.flow.internal.v0.models.merchant_hub_override'] = PropTypes.exact({
|
|
20287
|
+
id: PropTypes.string.isRequired,
|
|
20288
|
+
organization_id: PropTypes.string.isRequired,
|
|
20289
|
+
code: PropTypes.string.isRequired,
|
|
20290
|
+
contact: T['io.flow.common.v0.models.contact'].isRequired,
|
|
20291
|
+
location: T['io.flow.common.v0.models.address'].isRequired,
|
|
20292
|
+
});
|
|
20293
|
+
|
|
20149
20294
|
T['io.flow.internal.v0.models.fulfillment_fallbacks'] = PropTypes.exact({
|
|
20150
20295
|
id: PropTypes.string.isRequired,
|
|
20151
20296
|
packaging: PropTypes.arrayOf(T['io.flow.fulfillment.v0.models.packaging']).isRequired,
|
|
@@ -20313,12 +20458,14 @@ T['io.flow.internal.v0.unions.console_label_validation_form'] = PropTypes.oneOfT
|
|
|
20313
20458
|
T['io.flow.internal.v0.models.center_defaults_form'] = PropTypes.exact({
|
|
20314
20459
|
packaging: PropTypes.arrayOf(T['io.flow.fulfillment.v0.models.packaging']).isRequired,
|
|
20315
20460
|
shipping_address_contact: T['io.flow.common.v0.models.contact'].isRequired,
|
|
20461
|
+
location_fallback: T['io.flow.common.v0.models.address'],
|
|
20316
20462
|
});
|
|
20317
20463
|
|
|
20318
20464
|
T['io.flow.internal.v0.models.center_defaults'] = PropTypes.exact({
|
|
20319
20465
|
id: PropTypes.string.isRequired,
|
|
20320
20466
|
packaging: PropTypes.arrayOf(T['io.flow.fulfillment.v0.models.packaging']).isRequired,
|
|
20321
20467
|
shipping_address_contact: T['io.flow.common.v0.models.contact'].isRequired,
|
|
20468
|
+
location_fallback: T['io.flow.common.v0.models.address'],
|
|
20322
20469
|
});
|
|
20323
20470
|
|
|
20324
20471
|
T['io.flow.internal.v0.models.center_defaults_upserted'] = PropTypes.exact({
|
|
@@ -21129,6 +21276,39 @@ T['io.flow.internal.v0.models.internal_authorization_deleted'] = PropTypes.exact
|
|
|
21129
21276
|
internal_authorization: T['io.flow.internal.v0.models.internal_authorization'].isRequired,
|
|
21130
21277
|
});
|
|
21131
21278
|
|
|
21279
|
+
T['io.flow.internal.v0.models.adyen_internal_dispute'] = PropTypes.exact({
|
|
21280
|
+
id: PropTypes.string.isRequired,
|
|
21281
|
+
amount: PropTypes.number.isRequired,
|
|
21282
|
+
currency: PropTypes.string.isRequired,
|
|
21283
|
+
psp_reference: PropTypes.string.isRequired,
|
|
21284
|
+
original_reference: PropTypes.string,
|
|
21285
|
+
event_code: PropTypes.string.isRequired,
|
|
21286
|
+
event_date: PropTypes.string.isRequired,
|
|
21287
|
+
chargeback_reason_code: PropTypes.string,
|
|
21288
|
+
modification_merchant_references: PropTypes.string,
|
|
21289
|
+
chargeback_scheme_code: PropTypes.string,
|
|
21290
|
+
defense_period_ends_at: PropTypes.string,
|
|
21291
|
+
dispute_status: PropTypes.string,
|
|
21292
|
+
defendable: PropTypes.string,
|
|
21293
|
+
merchant_account_code: PropTypes.string.isRequired,
|
|
21294
|
+
operations: PropTypes.arrayOf(PropTypes.string),
|
|
21295
|
+
merchant_reference: PropTypes.string.isRequired,
|
|
21296
|
+
payment_method: PropTypes.string,
|
|
21297
|
+
reason: PropTypes.string,
|
|
21298
|
+
success: PropTypes.string.isRequired,
|
|
21299
|
+
livemode: PropTypes.bool.isRequired,
|
|
21300
|
+
updated_by_user_id: PropTypes.string.isRequired,
|
|
21301
|
+
created_at: PropTypes.string.isRequired,
|
|
21302
|
+
updated_at: PropTypes.string.isRequired,
|
|
21303
|
+
});
|
|
21304
|
+
|
|
21305
|
+
T['io.flow.internal.v0.models.adyen_dispute_upserted'] = PropTypes.exact({
|
|
21306
|
+
discriminator: PropTypes.oneOf(['adyen_dispute_upserted']).isRequired,
|
|
21307
|
+
event_id: PropTypes.string.isRequired,
|
|
21308
|
+
timestamp: PropTypes.string.isRequired,
|
|
21309
|
+
dispute: T['io.flow.internal.v0.models.adyen_internal_dispute'].isRequired,
|
|
21310
|
+
});
|
|
21311
|
+
|
|
21132
21312
|
T['io.flow.internal.v0.models.adyen_internal_capture'] = PropTypes.exact({
|
|
21133
21313
|
id: PropTypes.string.isRequired,
|
|
21134
21314
|
flow_capture_id: PropTypes.string.isRequired,
|
|
@@ -22643,6 +22823,7 @@ T['io.flow.label.v0.models.summary_shipping_label_form'] = PropTypes.exact({
|
|
|
22643
22823
|
items: PropTypes.arrayOf(T['io.flow.common.v0.models.line_item_form']).isRequired,
|
|
22644
22824
|
center_key: PropTypes.string,
|
|
22645
22825
|
direction: T['io.flow.label.v0.enums.direction'],
|
|
22826
|
+
reference_id: PropTypes.string,
|
|
22646
22827
|
});
|
|
22647
22828
|
|
|
22648
22829
|
T['io.flow.label.v0.models.shipping_label_package'] = PropTypes.exact({
|
|
@@ -22735,6 +22916,8 @@ T['io.flow.label.v0.models.detailed_shipping_label_form'] = PropTypes.exact({
|
|
|
22735
22916
|
service: PropTypes.string,
|
|
22736
22917
|
shipment_recipient: T['io.flow.label.v0.enums.shipment_recipient'],
|
|
22737
22918
|
package_dimensions_source: T['io.flow.label.v0.enums.package_dimensions_source'],
|
|
22919
|
+
origin_location_source: T['io.flow.label.v0.enums.origin_location_source'],
|
|
22920
|
+
reference_id: PropTypes.string,
|
|
22738
22921
|
});
|
|
22739
22922
|
|
|
22740
22923
|
T['io.flow.label.v0.models.bridge_shipping_label_form'] = PropTypes.exact({
|
|
@@ -22744,6 +22927,9 @@ T['io.flow.label.v0.models.bridge_shipping_label_form'] = PropTypes.exact({
|
|
|
22744
22927
|
'package': T['io.flow.label.v0.models.shipping_label_package'],
|
|
22745
22928
|
origin: T['io.flow.fulfillment.v0.models.shipping_address'],
|
|
22746
22929
|
direction: T['io.flow.label.v0.enums.direction'],
|
|
22930
|
+
reference_id: PropTypes.string,
|
|
22931
|
+
origin_location_source: T['io.flow.label.v0.enums.origin_location_source'],
|
|
22932
|
+
hub_code: PropTypes.string,
|
|
22747
22933
|
});
|
|
22748
22934
|
|
|
22749
22935
|
T['io.flow.label.v0.unions.shipping_label_form'] = PropTypes.oneOfType([
|
|
@@ -23091,6 +23277,7 @@ T['io.flow.internal.v0.models.dispute'] = PropTypes.exact({
|
|
|
23091
23277
|
issued_at: PropTypes.string.isRequired,
|
|
23092
23278
|
expires_at: PropTypes.string,
|
|
23093
23279
|
created_at: PropTypes.string.isRequired,
|
|
23280
|
+
updated_at: PropTypes.string,
|
|
23094
23281
|
});
|
|
23095
23282
|
|
|
23096
23283
|
T['io.flow.internal.v0.models.dispute_upserted'] = PropTypes.exact({
|
|
@@ -27205,6 +27392,8 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
|
|
|
27205
27392
|
T['io.flow.internal.v0.models.adyen_capture_upserted'],
|
|
27206
27393
|
T['io.flow.internal.v0.models.adyen_refund_deleted'],
|
|
27207
27394
|
T['io.flow.internal.v0.models.adyen_refund_upserted'],
|
|
27395
|
+
T['io.flow.internal.v0.models.adyen_dispute_upserted'],
|
|
27396
|
+
T['io.flow.internal.v0.models.adyen_dispute_deleted'],
|
|
27208
27397
|
T['io.flow.internal.v0.models.index_assignment_upserted'],
|
|
27209
27398
|
T['io.flow.internal.v0.models.index_assignment_deleted'],
|
|
27210
27399
|
T['io.flow.internal.v0.models.fulfillment_upserted'],
|
|
@@ -27278,6 +27467,7 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
|
|
|
27278
27467
|
T['io.flow.internal.v0.models.catalog_settings_deleted'],
|
|
27279
27468
|
T['io.flow.internal.v0.models.channel_order_acceptance_upserted'],
|
|
27280
27469
|
T['io.flow.internal.v0.models.channel_order_acceptance_deleted'],
|
|
27470
|
+
T['io.flow.internal.v0.models.channel_order_acceptance_failed'],
|
|
27281
27471
|
T['io.flow.internal.v0.models.checkout_configuration_upserted'],
|
|
27282
27472
|
T['io.flow.internal.v0.models.checkout_configuration_deleted'],
|
|
27283
27473
|
T['io.flow.internal.v0.models.commercial_invoice_internal_upserted'],
|
|
@@ -27533,6 +27723,8 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
|
|
|
27533
27723
|
T['io.flow.internal.v0.models.stripe_capture_upserted'],
|
|
27534
27724
|
T['io.flow.internal.v0.models.stripe_refund_deleted'],
|
|
27535
27725
|
T['io.flow.internal.v0.models.stripe_refund_upserted'],
|
|
27726
|
+
T['io.flow.internal.v0.models.stripe_dispute_upserted'],
|
|
27727
|
+
T['io.flow.internal.v0.models.stripe_dispute_deleted'],
|
|
27536
27728
|
T['io.flow.internal.v0.models.liability_remittance_plan_upserted'],
|
|
27537
27729
|
T['io.flow.internal.v0.models.liability_remittance_plan_deleted'],
|
|
27538
27730
|
T['io.flow.internal.v0.models.svitlana_item_upserted'],
|
|
@@ -27750,6 +27942,8 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
|
|
|
27750
27942
|
'adyen_capture_upserted',
|
|
27751
27943
|
'adyen_refund_deleted',
|
|
27752
27944
|
'adyen_refund_upserted',
|
|
27945
|
+
'adyen_dispute_upserted',
|
|
27946
|
+
'adyen_dispute_deleted',
|
|
27753
27947
|
'index_assignment_upserted',
|
|
27754
27948
|
'index_assignment_deleted',
|
|
27755
27949
|
'fulfillment_upserted',
|
|
@@ -27823,6 +28017,7 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
|
|
|
27823
28017
|
'catalog_settings_deleted',
|
|
27824
28018
|
'channel_order_acceptance_upserted',
|
|
27825
28019
|
'channel_order_acceptance_deleted',
|
|
28020
|
+
'channel_order_acceptance_failed',
|
|
27826
28021
|
'checkout_configuration_upserted',
|
|
27827
28022
|
'checkout_configuration_deleted',
|
|
27828
28023
|
'commercial_invoice_internal_upserted',
|
|
@@ -28078,6 +28273,8 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
|
|
|
28078
28273
|
'stripe_capture_upserted',
|
|
28079
28274
|
'stripe_refund_deleted',
|
|
28080
28275
|
'stripe_refund_upserted',
|
|
28276
|
+
'stripe_dispute_upserted',
|
|
28277
|
+
'stripe_dispute_deleted',
|
|
28081
28278
|
'liability_remittance_plan_upserted',
|
|
28082
28279
|
'liability_remittance_plan_deleted',
|
|
28083
28280
|
'svitlana_item_upserted',
|
|
@@ -28361,6 +28558,11 @@ T['io.flow.internal.v0.models.calculator_organization_settings_form'] = PropType
|
|
|
28361
28558
|
default_hs_code: PropTypes.string,
|
|
28362
28559
|
});
|
|
28363
28560
|
|
|
28561
|
+
T['io.flow.internal.v0.models.call_record'] = PropTypes.exact({
|
|
28562
|
+
id: PropTypes.string.isRequired,
|
|
28563
|
+
request_body: PropTypes.string,
|
|
28564
|
+
});
|
|
28565
|
+
|
|
28364
28566
|
T['io.flow.internal.v0.models.carrier_invoice'] = PropTypes.exact({
|
|
28365
28567
|
number: PropTypes.string.isRequired,
|
|
28366
28568
|
timestamp: PropTypes.string.isRequired,
|
|
@@ -30499,10 +30701,13 @@ export const adyenCancelDeleted = T['io.flow.internal.v0.models.adyen_cancel_del
|
|
|
30499
30701
|
export const adyenCancelUpserted = T['io.flow.internal.v0.models.adyen_cancel_upserted'];
|
|
30500
30702
|
export const adyenCaptureDeleted = T['io.flow.internal.v0.models.adyen_capture_deleted'];
|
|
30501
30703
|
export const adyenCaptureUpserted = T['io.flow.internal.v0.models.adyen_capture_upserted'];
|
|
30704
|
+
export const adyenDisputeDeleted = T['io.flow.internal.v0.models.adyen_dispute_deleted'];
|
|
30705
|
+
export const adyenDisputeUpserted = T['io.flow.internal.v0.models.adyen_dispute_upserted'];
|
|
30502
30706
|
export const adyenIntegrationType = T['io.flow.internal.v0.enums.adyen_integration_type'];
|
|
30503
30707
|
export const adyenInternalAuthorization = T['io.flow.internal.v0.models.adyen_internal_authorization'];
|
|
30504
30708
|
export const adyenInternalCancel = T['io.flow.internal.v0.models.adyen_internal_cancel'];
|
|
30505
30709
|
export const adyenInternalCapture = T['io.flow.internal.v0.models.adyen_internal_capture'];
|
|
30710
|
+
export const adyenInternalDispute = T['io.flow.internal.v0.models.adyen_internal_dispute'];
|
|
30506
30711
|
export const adyenInternalRefund = T['io.flow.internal.v0.models.adyen_internal_refund'];
|
|
30507
30712
|
export const adyenMerchant = T['io.flow.internal.v0.models.adyen_merchant'];
|
|
30508
30713
|
export const adyenMerchantAccount = T['io.flow.internal.v0.models.adyen_merchant_account'];
|
|
@@ -30643,6 +30848,7 @@ export const calculatorOrganizationSettingsDeleted = T['io.flow.internal.v0.mode
|
|
|
30643
30848
|
export const calculatorOrganizationSettingsForm = T['io.flow.internal.v0.models.calculator_organization_settings_form'];
|
|
30644
30849
|
export const calculatorOrganizationSettingsUpserted = T['io.flow.internal.v0.models.calculator_organization_settings_upserted'];
|
|
30645
30850
|
export const calculatorStamp = T['io.flow.internal.v0.unions.calculator_stamp'];
|
|
30851
|
+
export const callRecord = T['io.flow.internal.v0.models.call_record'];
|
|
30646
30852
|
export const carrierAccount = T['io.flow.internal.v0.models.carrier_account'];
|
|
30647
30853
|
export const carrierAccountDeleted = T['io.flow.internal.v0.models.carrier_account_deleted'];
|
|
30648
30854
|
export const carrierAccountForm = T['io.flow.internal.v0.models.carrier_account_form'];
|
|
@@ -30715,6 +30921,9 @@ export const channelOrderAcceptance = T['io.flow.internal.v0.models.channel_orde
|
|
|
30715
30921
|
export const channelOrderAcceptanceDeleted = T['io.flow.internal.v0.models.channel_order_acceptance_deleted'];
|
|
30716
30922
|
export const channelOrderAcceptanceDetails = T['io.flow.internal.v0.models.channel_order_acceptance_details'];
|
|
30717
30923
|
export const channelOrderAcceptanceErrorAction = T['io.flow.internal.v0.enums.channel_order_acceptance_error_action'];
|
|
30924
|
+
export const channelOrderAcceptanceFailed = T['io.flow.internal.v0.models.channel_order_acceptance_failed'];
|
|
30925
|
+
export const channelOrderAcceptanceFailure = T['io.flow.internal.v0.models.channel_order_acceptance_failure'];
|
|
30926
|
+
export const channelOrderAcceptanceFailureReasonCode = T['io.flow.internal.v0.enums.channel_order_acceptance_failure_reason_code'];
|
|
30718
30927
|
export const channelOrderAcceptanceForm = T['io.flow.internal.v0.models.channel_order_acceptance_form'];
|
|
30719
30928
|
export const channelOrderAcceptanceNextActionFrom = T['io.flow.internal.v0.enums.channel_order_acceptance_next_action_from'];
|
|
30720
30929
|
export const channelOrderAcceptanceReason = T['io.flow.internal.v0.models.channel_order_acceptance_reason'];
|
|
@@ -31505,6 +31714,8 @@ export const merchantFees = T['io.flow.internal.v0.models.merchant_fees'];
|
|
|
31505
31714
|
export const merchantGuidAssignment = T['io.flow.internal.v0.models.merchant_guid_assignment'];
|
|
31506
31715
|
export const merchantGuidAssignmentDeleted = T['io.flow.internal.v0.models.merchant_guid_assignment_deleted'];
|
|
31507
31716
|
export const merchantGuidAssignmentUpserted = T['io.flow.internal.v0.models.merchant_guid_assignment_upserted'];
|
|
31717
|
+
export const merchantHubOverride = T['io.flow.internal.v0.models.merchant_hub_override'];
|
|
31718
|
+
export const merchantHubOverrideForm = T['io.flow.internal.v0.models.merchant_hub_override_form'];
|
|
31508
31719
|
export const merchantOfRecordEntitySettings = T['io.flow.internal.v0.models.merchant_of_record_entity_settings'];
|
|
31509
31720
|
export const merchantOfRecordEntitySettingsForm = T['io.flow.internal.v0.models.merchant_of_record_entity_settings_form'];
|
|
31510
31721
|
export const merchantSearchResult = T['io.flow.internal.v0.models.merchant_search_result'];
|
|
@@ -31797,17 +32008,20 @@ export const productClassification = T['io.flow.internal.v0.models.product_class
|
|
|
31797
32008
|
export const productClassificationForm = T['io.flow.internal.v0.models.product_classification_form'];
|
|
31798
32009
|
export const productClassificationJudgementForm = T['io.flow.internal.v0.models.product_classification_judgement_form'];
|
|
31799
32010
|
export const productClassificationResult = T['io.flow.internal.v0.models.product_classification_result'];
|
|
32011
|
+
export const productCurrencies = T['io.flow.internal.v0.models.product_currencies'];
|
|
31800
32012
|
export const productDetailSettingsForm = T['io.flow.internal.v0.models.product_detail_settings_form'];
|
|
31801
32013
|
export const productHarmonization = T['io.flow.internal.v0.models.product_harmonization'];
|
|
31802
32014
|
export const productHarmonizationForm = T['io.flow.internal.v0.models.product_harmonization_form'];
|
|
31803
32015
|
export const productLabels = T['io.flow.internal.v0.models.product_labels'];
|
|
31804
32016
|
export const productListSettingsForm = T['io.flow.internal.v0.models.product_list_settings_form'];
|
|
32017
|
+
export const productRecord = T['io.flow.internal.v0.models.product_record'];
|
|
31805
32018
|
export const productRestrictionResultValidationError = T['io.flow.internal.v0.models.product_restriction_result_validation_error'];
|
|
31806
32019
|
export const productRestrictionRuleDecision = T['io.flow.internal.v0.models.product_restriction_rule_decision'];
|
|
31807
32020
|
export const productRestrictionRuleDecisionDeleted = T['io.flow.internal.v0.models.product_restriction_rule_decision_deleted'];
|
|
31808
32021
|
export const productRestrictionRuleDecisionUpserted = T['io.flow.internal.v0.models.product_restriction_rule_decision_upserted'];
|
|
31809
32022
|
export const productReviewHistory = T['io.flow.internal.v0.models.product_review_history'];
|
|
31810
32023
|
export const productStatus = T['io.flow.internal.v0.enums.product_status'];
|
|
32024
|
+
export const productTransaction = T['io.flow.internal.v0.models.product_transaction'];
|
|
31811
32025
|
export const profit = T['io.flow.internal.v0.models.profit'];
|
|
31812
32026
|
export const profitShare = T['io.flow.internal.v0.models.profit_share'];
|
|
31813
32027
|
export const profitShareOrderReference = T['io.flow.internal.v0.models.profit_share_order_reference'];
|
|
@@ -31827,6 +32041,8 @@ export const proofOfPostingOrderCancellation = T['io.flow.internal.v0.models.pro
|
|
|
31827
32041
|
export const proofOfPostingOrderCombinedShipment = T['io.flow.internal.v0.models.proof_of_posting_order_combined_shipment'];
|
|
31828
32042
|
export const proofOfPostingShippingNotification = T['io.flow.internal.v0.models.proof_of_posting_shipping_notification'];
|
|
31829
32043
|
export const proofOfPostingTimeElapsed = T['io.flow.internal.v0.models.proof_of_posting_time_elapsed'];
|
|
32044
|
+
export const publicHub = T['io.flow.internal.v0.models.public_hub'];
|
|
32045
|
+
export const publicHubForm = T['io.flow.internal.v0.models.public_hub_form'];
|
|
31830
32046
|
export const quote = T['io.flow.internal.v0.models.quote'];
|
|
31831
32047
|
export const quoteDeleted = T['io.flow.internal.v0.models.quote_deleted'];
|
|
31832
32048
|
export const quoteRequest = T['io.flow.internal.v0.models.quote_request'];
|
|
@@ -32204,8 +32420,11 @@ export const stripeAuthorizationDeleted = T['io.flow.internal.v0.models.stripe_a
|
|
|
32204
32420
|
export const stripeAuthorizationUpserted = T['io.flow.internal.v0.models.stripe_authorization_upserted'];
|
|
32205
32421
|
export const stripeCaptureDeleted = T['io.flow.internal.v0.models.stripe_capture_deleted'];
|
|
32206
32422
|
export const stripeCaptureUpserted = T['io.flow.internal.v0.models.stripe_capture_upserted'];
|
|
32423
|
+
export const stripeDisputeDeleted = T['io.flow.internal.v0.models.stripe_dispute_deleted'];
|
|
32424
|
+
export const stripeDisputeUpserted = T['io.flow.internal.v0.models.stripe_dispute_upserted'];
|
|
32207
32425
|
export const stripeInternalAuthorization = T['io.flow.internal.v0.models.stripe_internal_authorization'];
|
|
32208
32426
|
export const stripeInternalCapture = T['io.flow.internal.v0.models.stripe_internal_capture'];
|
|
32427
|
+
export const stripeInternalDispute = T['io.flow.internal.v0.models.stripe_internal_dispute'];
|
|
32209
32428
|
export const stripeInternalRefund = T['io.flow.internal.v0.models.stripe_internal_refund'];
|
|
32210
32429
|
export const stripeInternalReversal = T['io.flow.internal.v0.models.stripe_internal_reversal'];
|
|
32211
32430
|
export const stripeMerchant = T['io.flow.internal.v0.models.stripe_merchant'];
|