@flowio/api-prop-types 10.16.91 → 10.16.93
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 +524 -220
- package/lib/api.js +1 -1
- package/package.json +2 -2
- package/src/api.d.ts +524 -220
- package/src/api.js +819 -379
package/src/api.d.ts
CHANGED
|
@@ -192,9 +192,12 @@ declare namespace io.flow.stripe.v0.enums {
|
|
|
192
192
|
type RefundFailureReason = 'charge_for_pending_refund_disputed' | 'declined' | 'expired_or_canceled_card' | 'insufficient_funds' | 'lost_or_stolen_card' | 'merchant_request' | 'unknown';
|
|
193
193
|
type RefundReason = 'duplicate' | 'fraudulent' | 'requested_by_customer';
|
|
194
194
|
type RefundStatus = 'succeeded' | 'failed' | 'pending' | 'canceled';
|
|
195
|
+
type ReportingReportRunStatus = 'pending' | 'succeeded' | 'failed';
|
|
196
|
+
type ReportingReportType = 'ending_balance_reconciliation.itemized.1' | 'ending_balance_reconciliation.itemized.2' | 'ending_balance_reconciliation.itemized.3' | 'ending_balance_reconciliation.itemized.4' | 'payout_reconciliation.itemized.5' | 'payout_reconciliation.by_id.itemized.1' | 'payout_reconciliation.by_id.itemized.2' | 'payout_reconciliation.by_id.itemized.3' | 'payout_reconciliation.by_id.itemized.4' | 'payout_reconciliation.by_id.summary.1' | 'ending_balance_reconciliation.summary.1' | 'payout_reconciliation.itemized.1' | 'payout_reconciliation.itemized.2' | 'payout_reconciliation.itemized.3' | 'payout_reconciliation.itemized.4' | 'payout_reconciliation.summary.1';
|
|
195
197
|
type RequestThreeDSecureType = 'automatic' | 'any';
|
|
196
198
|
type RequestedCapabilities = 'card_payments' | 'legacy_payments' | 'transfers';
|
|
197
199
|
type SetupFutureUsage = 'on_session' | 'off_session';
|
|
200
|
+
type ShopifyPaymentStripeEventType = 'charge.captured' | 'charge.dispute.created' | 'charge.dispute.closed' | 'charge.dispute.funds_reinstated' | 'charge.dispute.funds_withdrawn' | 'charge.dispute.updated' | 'charge.expired' | 'charge.failed' | 'charge.pending' | 'charge.refund.updated' | 'charge.refunded' | 'charge.succeeded' | 'charge.updated' | 'payment_intent.amount_capturable_updated' | 'payment_intent.canceled' | 'payment_intent.created' | 'payment_intent.partially_funded' | 'payment_intent.payment_failed' | 'payment_intent.processing' | 'payment_intent.requires_action' | 'payment_intent.succeeded' | 'transfer.created' | 'transfer.reversed' | 'transfer.updated' | 'reporting.report_run.succeeded' | 'reporting.report_type.updated' | 'reporting.report_type.failed';
|
|
198
201
|
type SourceFlow = 'redirect' | 'receiver' | 'code_verification' | 'none';
|
|
199
202
|
type SourceStatus = 'canceled' | 'chargeable' | 'consumed' | 'failed' | 'pending';
|
|
200
203
|
type SourceType = 'ach_credit_transfer' | 'ach_debit' | 'alipay' | 'bancontact' | 'bitcoin' | 'card' | 'eps' | 'giropay' | 'ideal' | 'klarna' | 'multibanco' | 'p24' | 'sepa_debit' | 'sofort' | 'three_d_secure';
|
|
@@ -1088,12 +1091,76 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
1088
1091
|
readonly 'url': string;
|
|
1089
1092
|
}
|
|
1090
1093
|
|
|
1094
|
+
interface ReportRunParameters {
|
|
1095
|
+
readonly 'interval_start': number;
|
|
1096
|
+
readonly 'interval_end': number;
|
|
1097
|
+
readonly 'columns'?: string[];
|
|
1098
|
+
readonly 'payout'?: string;
|
|
1099
|
+
readonly 'connected_account'?: string;
|
|
1100
|
+
readonly 'reporting_category'?: string;
|
|
1101
|
+
}
|
|
1102
|
+
|
|
1103
|
+
interface ReportingReportRun {
|
|
1104
|
+
readonly 'id': string;
|
|
1105
|
+
readonly 'object': string;
|
|
1106
|
+
readonly 'created': number;
|
|
1107
|
+
readonly 'error'?: string;
|
|
1108
|
+
readonly 'livemode': boolean;
|
|
1109
|
+
readonly 'status': io.flow.stripe.v0.enums.ReportingReportRunStatus;
|
|
1110
|
+
readonly 'result'?: io.flow.stripe.v0.models.ReportingReportRunResult;
|
|
1111
|
+
readonly 'succeeded_at'?: number;
|
|
1112
|
+
}
|
|
1113
|
+
|
|
1114
|
+
interface ReportingReportRunForm {
|
|
1115
|
+
readonly 'report_type': io.flow.stripe.v0.enums.ReportingReportType;
|
|
1116
|
+
readonly 'parameters': io.flow.stripe.v0.models.ReportRunParameters;
|
|
1117
|
+
}
|
|
1118
|
+
|
|
1119
|
+
interface ReportingReportRunResult {
|
|
1120
|
+
readonly 'id': string;
|
|
1121
|
+
readonly 'object': string;
|
|
1122
|
+
readonly 'created': number;
|
|
1123
|
+
readonly 'expires_at': number;
|
|
1124
|
+
readonly 'filename': string;
|
|
1125
|
+
readonly 'links': any/*object*/;
|
|
1126
|
+
readonly 'purpose': string;
|
|
1127
|
+
readonly 'size': number;
|
|
1128
|
+
readonly 'title': string;
|
|
1129
|
+
readonly 'type': string;
|
|
1130
|
+
readonly 'url': string;
|
|
1131
|
+
}
|
|
1132
|
+
|
|
1133
|
+
interface ReportingReportRuns {
|
|
1134
|
+
readonly 'object': string;
|
|
1135
|
+
readonly 'data': io.flow.stripe.v0.models.ReportingReportRun[];
|
|
1136
|
+
readonly 'has_more': boolean;
|
|
1137
|
+
readonly 'url'?: string;
|
|
1138
|
+
}
|
|
1139
|
+
|
|
1091
1140
|
interface Shipping {
|
|
1092
1141
|
readonly 'address': io.flow.stripe.v0.models.Address;
|
|
1093
1142
|
readonly 'name'?: string;
|
|
1094
1143
|
readonly 'phone'?: string;
|
|
1095
1144
|
}
|
|
1096
1145
|
|
|
1146
|
+
interface ShopifyPaymentStripeEvent {
|
|
1147
|
+
readonly 'id': string;
|
|
1148
|
+
readonly 'api_version'?: string;
|
|
1149
|
+
readonly 'data': io.flow.stripe.v0.models.ShopifyPaymentStripeEventData;
|
|
1150
|
+
readonly 'request'?: any/*object*/;
|
|
1151
|
+
readonly 'type': io.flow.stripe.v0.enums.ShopifyPaymentStripeEventType;
|
|
1152
|
+
readonly 'object': string;
|
|
1153
|
+
readonly 'account'?: string;
|
|
1154
|
+
readonly 'created': number;
|
|
1155
|
+
readonly 'livemode': boolean;
|
|
1156
|
+
readonly 'pending_webhooks': number;
|
|
1157
|
+
}
|
|
1158
|
+
|
|
1159
|
+
interface ShopifyPaymentStripeEventData {
|
|
1160
|
+
readonly 'object'?: any/*object*/;
|
|
1161
|
+
readonly 'previous_attributes'?: any/*object*/;
|
|
1162
|
+
}
|
|
1163
|
+
|
|
1097
1164
|
interface Source {
|
|
1098
1165
|
readonly 'id': string;
|
|
1099
1166
|
readonly 'object': string;
|
|
@@ -1420,6 +1487,18 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
1420
1487
|
readonly 'weight'?: io.flow.shopify.external.v0.models.GraphqlWeight;
|
|
1421
1488
|
}
|
|
1422
1489
|
|
|
1490
|
+
interface GraphqlMetafield {
|
|
1491
|
+
readonly 'id': string;
|
|
1492
|
+
readonly 'key': string;
|
|
1493
|
+
readonly 'value': string;
|
|
1494
|
+
readonly 'type'?: string;
|
|
1495
|
+
}
|
|
1496
|
+
|
|
1497
|
+
interface GraphqlMetaobject {
|
|
1498
|
+
readonly 'id': string;
|
|
1499
|
+
readonly 'displayName': string;
|
|
1500
|
+
}
|
|
1501
|
+
|
|
1423
1502
|
interface GraphqlOption {
|
|
1424
1503
|
readonly 'id': string;
|
|
1425
1504
|
readonly 'values': string[];
|
|
@@ -1445,6 +1524,8 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
1445
1524
|
readonly 'createdAt': string;
|
|
1446
1525
|
readonly 'updatedAt': string;
|
|
1447
1526
|
readonly 'hasVariantsThatRequiresComponents'?: boolean;
|
|
1527
|
+
readonly 'category'?: io.flow.shopify.external.v0.models.GraphqlTaxonomyCategory;
|
|
1528
|
+
readonly 'metafields'?: io.flow.shopify.external.v0.models.GraphqlMetafield[];
|
|
1448
1529
|
}
|
|
1449
1530
|
|
|
1450
1531
|
interface GraphqlProductImage {
|
|
@@ -1468,6 +1549,11 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
1468
1549
|
readonly 'inventoryItem': io.flow.shopify.external.v0.models.GraphqlInventoryItem;
|
|
1469
1550
|
}
|
|
1470
1551
|
|
|
1552
|
+
interface GraphqlTaxonomyCategory {
|
|
1553
|
+
readonly 'name': string;
|
|
1554
|
+
readonly 'fullName': string;
|
|
1555
|
+
}
|
|
1556
|
+
|
|
1471
1557
|
interface GraphqlVariantImage {
|
|
1472
1558
|
readonly 'id': string;
|
|
1473
1559
|
}
|
|
@@ -1585,6 +1671,8 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
1585
1671
|
readonly 'created_at': string;
|
|
1586
1672
|
readonly 'updated_at': string;
|
|
1587
1673
|
readonly 'has_variants_that_requires_components'?: boolean;
|
|
1674
|
+
readonly 'category'?: io.flow.product.v0.models.ProductTaxonomyCategory;
|
|
1675
|
+
readonly 'metafields'?: io.flow.shopify.external.v0.models.ProductMetafield[];
|
|
1588
1676
|
}
|
|
1589
1677
|
|
|
1590
1678
|
interface ProductDelete {
|
|
@@ -1602,6 +1690,17 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
1602
1690
|
readonly 'alt'?: string;
|
|
1603
1691
|
}
|
|
1604
1692
|
|
|
1693
|
+
interface ProductMetafield {
|
|
1694
|
+
readonly 'id': number;
|
|
1695
|
+
readonly 'namespace': string;
|
|
1696
|
+
readonly 'key': string;
|
|
1697
|
+
readonly 'value': string;
|
|
1698
|
+
readonly 'created_at': string;
|
|
1699
|
+
readonly 'updated_at': string;
|
|
1700
|
+
readonly 'type': string;
|
|
1701
|
+
readonly 'admin_graphql_api_id': string;
|
|
1702
|
+
}
|
|
1703
|
+
|
|
1605
1704
|
interface ProductVariant {
|
|
1606
1705
|
readonly 'id': number;
|
|
1607
1706
|
readonly 'sku'?: string;
|
|
@@ -2344,35 +2443,6 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
2344
2443
|
}
|
|
2345
2444
|
}
|
|
2346
2445
|
|
|
2347
|
-
declare namespace io.flow.order.price.v0.enums {
|
|
2348
|
-
type OrderPriceDetailComponentKey = 'adjustment' | 'vat_deminimis' | 'duty_deminimis' | 'duties_item_price' | 'duties_freight' | 'duties_insurance' | 'vat_item_price' | 'vat_freight' | 'vat_insurance' | 'vat_duties_item_price' | 'vat_duties_freight' | 'vat_duties_insurance' | 'item_price' | 'item_discount' | 'rounding' | 'insurance' | 'shipping' | 'shipping_discount' | 'order_discount' | 'subtotal_percent_sales_margin' | 'subtotal_vat_percent_sales_margin' | 'subtotal_duty_percent_sales_margin' | 'vat_subsidy' | 'duty_subsidy' | 'remote_area_surcharge' | 'fuel_surcharge' | 'emergency_situation_surcharge' | 'peak_surcharge' | 'duties_taxes_paid_surcharge' | 'tip';
|
|
2349
|
-
type OrderPriceDetailKey = 'adjustment' | 'subtotal' | 'vat' | 'duty' | 'shipping' | 'insurance' | 'discount' | 'surcharges' | 'tip';
|
|
2350
|
-
}
|
|
2351
|
-
|
|
2352
|
-
declare namespace io.flow.order.price.v0.models {
|
|
2353
|
-
interface OrderPriceDetail {
|
|
2354
|
-
readonly 'key': io.flow.order.price.v0.enums.OrderPriceDetailKey;
|
|
2355
|
-
readonly 'currency': string;
|
|
2356
|
-
readonly 'amount': number;
|
|
2357
|
-
readonly 'label': string;
|
|
2358
|
-
readonly 'base': io.flow.common.v0.models.Price;
|
|
2359
|
-
readonly 'components': io.flow.order.price.v0.models.OrderPriceDetailComponent[];
|
|
2360
|
-
readonly 'name'?: string;
|
|
2361
|
-
readonly 'rate'?: number;
|
|
2362
|
-
readonly 'accuracy'?: io.flow.price.v0.enums.PriceAccuracy;
|
|
2363
|
-
readonly 'rate_label'?: string;
|
|
2364
|
-
}
|
|
2365
|
-
|
|
2366
|
-
interface OrderPriceDetailComponent {
|
|
2367
|
-
readonly 'key': io.flow.order.price.v0.enums.OrderPriceDetailComponentKey;
|
|
2368
|
-
readonly 'currency': string;
|
|
2369
|
-
readonly 'amount': number;
|
|
2370
|
-
readonly 'label': string;
|
|
2371
|
-
readonly 'base': io.flow.common.v0.models.Price;
|
|
2372
|
-
readonly 'name'?: string;
|
|
2373
|
-
}
|
|
2374
|
-
}
|
|
2375
|
-
|
|
2376
2446
|
declare namespace io.flow.common.v0.enums {
|
|
2377
2447
|
type AttributeDataType = 'boolean' | 'integer' | 'decimal' | 'string' | 'json_array';
|
|
2378
2448
|
type AvailabilityStatus = 'enabled' | 'disabled';
|
|
@@ -3125,6 +3195,69 @@ declare namespace io.flow.price.v0.unions {
|
|
|
3125
3195
|
type Deminimis = (io.flow.price.v0.models.DeminimisSimple | io.flow.price.v0.models.DeminimisPerItem);
|
|
3126
3196
|
}
|
|
3127
3197
|
|
|
3198
|
+
declare namespace io.flow.channel.v0.enums {
|
|
3199
|
+
type ChannelCurrencyCapability = 'payment_authorizations' | 'settlement_currency';
|
|
3200
|
+
}
|
|
3201
|
+
|
|
3202
|
+
declare namespace io.flow.channel.v0.models {
|
|
3203
|
+
interface Channel {
|
|
3204
|
+
readonly 'id': string;
|
|
3205
|
+
readonly 'name': string;
|
|
3206
|
+
readonly 'environment': io.flow.common.v0.enums.Environment;
|
|
3207
|
+
readonly 'organization_id_prefix'?: string;
|
|
3208
|
+
}
|
|
3209
|
+
|
|
3210
|
+
interface ChannelAuthorization {
|
|
3211
|
+
readonly 'placeholder'?: string;
|
|
3212
|
+
}
|
|
3213
|
+
|
|
3214
|
+
interface ChannelAuthorizationForm {
|
|
3215
|
+
readonly 'channel_id': string;
|
|
3216
|
+
}
|
|
3217
|
+
|
|
3218
|
+
interface ChannelCurrency {
|
|
3219
|
+
readonly 'id': string;
|
|
3220
|
+
readonly 'currency': string;
|
|
3221
|
+
readonly 'channel': io.flow.common.v0.models.ChannelReference;
|
|
3222
|
+
readonly 'capabilities': io.flow.channel.v0.enums.ChannelCurrencyCapability[];
|
|
3223
|
+
}
|
|
3224
|
+
|
|
3225
|
+
interface ChannelOrganization {
|
|
3226
|
+
readonly 'id': string;
|
|
3227
|
+
readonly 'organization': io.flow.common.v0.models.OrganizationReference;
|
|
3228
|
+
readonly 'key': string;
|
|
3229
|
+
readonly 'channel': io.flow.common.v0.models.ChannelReference;
|
|
3230
|
+
readonly 'name': string;
|
|
3231
|
+
readonly 'slug'?: string;
|
|
3232
|
+
readonly 'defaults': io.flow.common.v0.models.OrganizationDefaults;
|
|
3233
|
+
readonly 'attributes'?: Record<string, string>;
|
|
3234
|
+
}
|
|
3235
|
+
|
|
3236
|
+
interface ChannelOrganizationAuthorization {
|
|
3237
|
+
readonly 'placeholder'?: string;
|
|
3238
|
+
}
|
|
3239
|
+
|
|
3240
|
+
interface ChannelOrganizationAuthorizationForm {
|
|
3241
|
+
readonly 'channel_id': string;
|
|
3242
|
+
readonly 'organization_id': string;
|
|
3243
|
+
}
|
|
3244
|
+
|
|
3245
|
+
interface ChannelOrganizationForm {
|
|
3246
|
+
readonly 'key': string;
|
|
3247
|
+
readonly 'name'?: string;
|
|
3248
|
+
readonly 'slug'?: string;
|
|
3249
|
+
readonly 'defaults': io.flow.common.v0.models.OrganizationDefaults;
|
|
3250
|
+
readonly 'attributes'?: Record<string, string>;
|
|
3251
|
+
}
|
|
3252
|
+
|
|
3253
|
+
interface ChannelOrganizationPutForm {
|
|
3254
|
+
readonly 'name'?: string;
|
|
3255
|
+
readonly 'slug'?: string;
|
|
3256
|
+
readonly 'defaults': io.flow.common.v0.models.OrganizationDefaults;
|
|
3257
|
+
readonly 'attributes'?: Record<string, string>;
|
|
3258
|
+
}
|
|
3259
|
+
}
|
|
3260
|
+
|
|
3128
3261
|
declare namespace io.flow.reference.v0.enums {
|
|
3129
3262
|
type PaymentMethodCapability = 'credit' | 'debit';
|
|
3130
3263
|
type PaymentMethodType = 'card' | 'online' | 'offline';
|
|
@@ -3240,33 +3373,6 @@ declare namespace io.flow.reference.v0.models {
|
|
|
3240
3373
|
}
|
|
3241
3374
|
}
|
|
3242
3375
|
|
|
3243
|
-
declare namespace io.flow.ben.test.internal.v0.models {
|
|
3244
|
-
interface GenerateLoadMultipleOrgs {
|
|
3245
|
-
readonly 'discriminator': 'generate_load_multiple_orgs';
|
|
3246
|
-
readonly 'organization_ids': string[];
|
|
3247
|
-
readonly 'num_events': number;
|
|
3248
|
-
}
|
|
3249
|
-
|
|
3250
|
-
interface GenerateLoadSingleOrg {
|
|
3251
|
-
readonly 'discriminator': 'generate_load_single_org';
|
|
3252
|
-
readonly 'organization_id': string;
|
|
3253
|
-
readonly 'num_events': number;
|
|
3254
|
-
}
|
|
3255
|
-
|
|
3256
|
-
interface Test {
|
|
3257
|
-
readonly 'id': string;
|
|
3258
|
-
readonly 'name': string;
|
|
3259
|
-
}
|
|
3260
|
-
|
|
3261
|
-
interface TestForm {
|
|
3262
|
-
readonly 'name': string;
|
|
3263
|
-
}
|
|
3264
|
-
}
|
|
3265
|
-
|
|
3266
|
-
declare namespace io.flow.ben.test.internal.v0.unions {
|
|
3267
|
-
type GenerateLoad = (io.flow.ben.test.internal.v0.models.GenerateLoadSingleOrg | io.flow.ben.test.internal.v0.models.GenerateLoadMultipleOrgs);
|
|
3268
|
-
}
|
|
3269
|
-
|
|
3270
3376
|
declare namespace io.flow.fulfillment.v0.enums {
|
|
3271
3377
|
type CenterCapability = 'international' | 'domestic' | 'crossdock' | 'commercial_invoice';
|
|
3272
3378
|
type DeliveryOptionCostDetailComponentKey = 'ratecard_base_cost' | 'ratecard_ddp_fee' | 'ratecard_fuel_surcharge' | 'ratecard_oversized_shipment_fee' | 'ratecard_rural_shipment_fee' | 'ratecard_emergency_situation_surcharge_fee' | 'ratecard_peak_surcharge_fee' | 'ratecard_duties_taxes_paid_surcharge_fee' | 'center_commercial_invoice_fee' | 'center_inbound_carton_fee' | 'center_outbound_carton_fee';
|
|
@@ -3991,6 +4097,7 @@ declare namespace io.flow.merchant.of.record.v0.enums {
|
|
|
3991
4097
|
|
|
3992
4098
|
declare namespace io.flow.tech.onboarding.playground.v0.enums {
|
|
3993
4099
|
type AldoItemType = 'physical' | 'digital';
|
|
4100
|
+
type AnshItemType = 'physical' | 'digital';
|
|
3994
4101
|
}
|
|
3995
4102
|
|
|
3996
4103
|
declare namespace io.flow.tech.onboarding.playground.v0.models {
|
|
@@ -4011,6 +4118,23 @@ declare namespace io.flow.tech.onboarding.playground.v0.models {
|
|
|
4011
4118
|
readonly 'added_on': string;
|
|
4012
4119
|
}
|
|
4013
4120
|
|
|
4121
|
+
interface AnshItem {
|
|
4122
|
+
readonly 'id': string;
|
|
4123
|
+
readonly 'number': string;
|
|
4124
|
+
readonly 'amount': io.flow.common.v0.models.Price;
|
|
4125
|
+
readonly 'description'?: string;
|
|
4126
|
+
readonly 'type': io.flow.tech.onboarding.playground.v0.enums.AnshItemType;
|
|
4127
|
+
readonly 'added_on': string;
|
|
4128
|
+
}
|
|
4129
|
+
|
|
4130
|
+
interface AnshItemForm {
|
|
4131
|
+
readonly 'number': string;
|
|
4132
|
+
readonly 'amount': io.flow.common.v0.models.Price;
|
|
4133
|
+
readonly 'description'?: string;
|
|
4134
|
+
readonly 'type': io.flow.tech.onboarding.playground.v0.enums.AnshItemType;
|
|
4135
|
+
readonly 'added_on': string;
|
|
4136
|
+
}
|
|
4137
|
+
|
|
4014
4138
|
interface JeanDemoItem {
|
|
4015
4139
|
readonly 'id': string;
|
|
4016
4140
|
readonly 'name': string;
|
|
@@ -4187,6 +4311,170 @@ declare namespace io.flow.organization.v0.models {
|
|
|
4187
4311
|
}
|
|
4188
4312
|
}
|
|
4189
4313
|
|
|
4314
|
+
declare namespace io.flow.order.price.v0.enums {
|
|
4315
|
+
type OrderPriceDetailComponentKey = 'adjustment' | 'vat_deminimis' | 'duty_deminimis' | 'duties_item_price' | 'duties_freight' | 'duties_insurance' | 'vat_item_price' | 'vat_freight' | 'vat_insurance' | 'vat_duties_item_price' | 'vat_duties_freight' | 'vat_duties_insurance' | 'item_price' | 'item_discount' | 'rounding' | 'insurance' | 'shipping' | 'shipping_discount' | 'order_discount' | 'subtotal_percent_sales_margin' | 'subtotal_vat_percent_sales_margin' | 'subtotal_duty_percent_sales_margin' | 'vat_subsidy' | 'duty_subsidy' | 'remote_area_surcharge' | 'fuel_surcharge' | 'emergency_situation_surcharge' | 'peak_surcharge' | 'duties_taxes_paid_surcharge' | 'tip';
|
|
4316
|
+
type OrderPriceDetailKey = 'adjustment' | 'subtotal' | 'vat' | 'duty' | 'shipping' | 'insurance' | 'discount' | 'surcharges' | 'tip';
|
|
4317
|
+
}
|
|
4318
|
+
|
|
4319
|
+
declare namespace io.flow.order.price.v0.models {
|
|
4320
|
+
interface OrderPriceDetail {
|
|
4321
|
+
readonly 'key': io.flow.order.price.v0.enums.OrderPriceDetailKey;
|
|
4322
|
+
readonly 'currency': string;
|
|
4323
|
+
readonly 'amount': number;
|
|
4324
|
+
readonly 'label': string;
|
|
4325
|
+
readonly 'base': io.flow.common.v0.models.Price;
|
|
4326
|
+
readonly 'components': io.flow.order.price.v0.models.OrderPriceDetailComponent[];
|
|
4327
|
+
readonly 'name'?: string;
|
|
4328
|
+
readonly 'rate'?: number;
|
|
4329
|
+
readonly 'accuracy'?: io.flow.price.v0.enums.PriceAccuracy;
|
|
4330
|
+
readonly 'rate_label'?: string;
|
|
4331
|
+
}
|
|
4332
|
+
|
|
4333
|
+
interface OrderPriceDetailComponent {
|
|
4334
|
+
readonly 'key': io.flow.order.price.v0.enums.OrderPriceDetailComponentKey;
|
|
4335
|
+
readonly 'currency': string;
|
|
4336
|
+
readonly 'amount': number;
|
|
4337
|
+
readonly 'label': string;
|
|
4338
|
+
readonly 'base': io.flow.common.v0.models.Price;
|
|
4339
|
+
readonly 'name'?: string;
|
|
4340
|
+
}
|
|
4341
|
+
}
|
|
4342
|
+
|
|
4343
|
+
declare namespace io.flow.channel.internal.v0.enums {
|
|
4344
|
+
type ChannelOrderAcceptanceErrorAction = 'auto_reject' | 'auto_accept';
|
|
4345
|
+
type ChannelOrderAcceptanceFailureReasonCode = 'channel_order_mor_invalid' | 'channel_order_does_not_exist';
|
|
4346
|
+
type ChannelOrderAcceptanceNextActionFrom = 'cx_team' | 'core_team' | 'core_team_investigate' | 'mex_team' | 'payments_team' | 'tc_team' | 'logistics_team';
|
|
4347
|
+
type ChannelOrderAcceptanceRejectionReason = 'unsupported_origin_country' | 'unsupported_destination_country' | 'domestic_order' | 'order_contains_gift_card' | 'order_contains_restricted_goods' | 'missing_order_information' | 'missing_classification_information' | 'unsupported_payment_information' | 'unsupported_shop_currency' | 'unsupported_free_order' | 'extracting_distribution_info_failed' | 'shipping_estimation_failed' | 'payment_authorization_failed' | 'unsupported_subsidized_order' | 'unsupported_virtual_goods' | 'non_matching_currencies' | 'unsupported_order_edit' | 'order_missing';
|
|
4348
|
+
type ChannelOrderAcceptanceStatus = 'accepted' | 'rejected' | 'review' | 'edit_review' | 'edit_accepted';
|
|
4349
|
+
}
|
|
4350
|
+
|
|
4351
|
+
declare namespace io.flow.channel.internal.v0.models {
|
|
4352
|
+
interface ChannelCurrencyForm {
|
|
4353
|
+
readonly 'currency': string;
|
|
4354
|
+
readonly 'channel_id': string;
|
|
4355
|
+
readonly 'capabilities': io.flow.channel.v0.enums.ChannelCurrencyCapability[];
|
|
4356
|
+
}
|
|
4357
|
+
|
|
4358
|
+
interface ChannelForm {
|
|
4359
|
+
readonly 'name': string;
|
|
4360
|
+
readonly 'environment': io.flow.common.v0.enums.Environment;
|
|
4361
|
+
readonly 'organization_id_prefix'?: string;
|
|
4362
|
+
}
|
|
4363
|
+
|
|
4364
|
+
interface ChannelMembership {
|
|
4365
|
+
readonly 'id': string;
|
|
4366
|
+
readonly 'channel': io.flow.common.v0.models.ChannelReference;
|
|
4367
|
+
readonly 'user': io.flow.common.v0.unions.ExpandableUser;
|
|
4368
|
+
readonly 'role'?: io.flow.common.v0.enums.Role;
|
|
4369
|
+
}
|
|
4370
|
+
|
|
4371
|
+
interface ChannelMembershipForm {
|
|
4372
|
+
readonly 'channel_id': string;
|
|
4373
|
+
readonly 'user_id': string;
|
|
4374
|
+
readonly 'role'?: io.flow.common.v0.enums.Role;
|
|
4375
|
+
}
|
|
4376
|
+
|
|
4377
|
+
interface ChannelMembershipPutForm {
|
|
4378
|
+
readonly 'role'?: io.flow.common.v0.enums.Role;
|
|
4379
|
+
}
|
|
4380
|
+
|
|
4381
|
+
interface ChannelOrderAcceptance {
|
|
4382
|
+
readonly 'id': string;
|
|
4383
|
+
readonly 'organization_id': string;
|
|
4384
|
+
readonly 'order_number': string;
|
|
4385
|
+
readonly 'channel_id': string;
|
|
4386
|
+
readonly 'external_order_reference': string;
|
|
4387
|
+
readonly 'payment_request_id'?: string;
|
|
4388
|
+
readonly 'order_edit_payment_request_ids'?: string[];
|
|
4389
|
+
readonly 'status': io.flow.channel.internal.v0.enums.ChannelOrderAcceptanceStatus;
|
|
4390
|
+
readonly 'reasons': io.flow.channel.internal.v0.models.ChannelOrderAcceptanceReason[];
|
|
4391
|
+
readonly 'next_action_from'?: io.flow.channel.internal.v0.enums.ChannelOrderAcceptanceNextActionFrom;
|
|
4392
|
+
readonly 'order_created_at'?: string;
|
|
4393
|
+
readonly 'order_updated_at'?: string;
|
|
4394
|
+
readonly 'order_edit_summary'?: io.flow.channel.internal.v0.models.OrderEditSummary;
|
|
4395
|
+
}
|
|
4396
|
+
|
|
4397
|
+
interface ChannelOrderAcceptanceDetails {
|
|
4398
|
+
readonly 'order_acceptance': io.flow.channel.internal.v0.models.ChannelOrderAcceptance;
|
|
4399
|
+
readonly 'external_order': any/*object*/;
|
|
4400
|
+
}
|
|
4401
|
+
|
|
4402
|
+
interface ChannelOrderAcceptanceFailure {
|
|
4403
|
+
readonly 'id': string;
|
|
4404
|
+
readonly 'organization_id': string;
|
|
4405
|
+
readonly 'channel_id': string;
|
|
4406
|
+
readonly 'payment_request_id': string;
|
|
4407
|
+
readonly 'code': io.flow.channel.internal.v0.enums.ChannelOrderAcceptanceFailureReasonCode;
|
|
4408
|
+
readonly 'reason': string;
|
|
4409
|
+
}
|
|
4410
|
+
|
|
4411
|
+
interface ChannelOrderAcceptanceForm {
|
|
4412
|
+
readonly 'status': io.flow.channel.internal.v0.enums.ChannelOrderAcceptanceStatus;
|
|
4413
|
+
}
|
|
4414
|
+
|
|
4415
|
+
interface ChannelOrderAcceptanceReason {
|
|
4416
|
+
readonly 'description': string;
|
|
4417
|
+
readonly 'rejection_reason'?: io.flow.channel.internal.v0.enums.ChannelOrderAcceptanceRejectionReason;
|
|
4418
|
+
}
|
|
4419
|
+
|
|
4420
|
+
interface FlowChannelOrganization {
|
|
4421
|
+
readonly 'placeholder'?: string;
|
|
4422
|
+
}
|
|
4423
|
+
|
|
4424
|
+
interface OrderEditSummary {
|
|
4425
|
+
readonly 'edited_at': string;
|
|
4426
|
+
}
|
|
4427
|
+
}
|
|
4428
|
+
|
|
4429
|
+
declare namespace io.flow.product.v0.models {
|
|
4430
|
+
interface Product {
|
|
4431
|
+
readonly 'organization_id': string;
|
|
4432
|
+
readonly 'number': string;
|
|
4433
|
+
readonly 'taxonomy_category'?: io.flow.product.v0.models.ProductTaxonomyCategory;
|
|
4434
|
+
readonly 'taxonomy_data'?: io.flow.product.v0.models.ProductTaxonomyData[];
|
|
4435
|
+
readonly 'item_numbers': string[];
|
|
4436
|
+
readonly 'updated_at': string;
|
|
4437
|
+
readonly 'deleted_at'?: string;
|
|
4438
|
+
}
|
|
4439
|
+
|
|
4440
|
+
interface ProductTaxonomyCategory {
|
|
4441
|
+
readonly 'name': string;
|
|
4442
|
+
readonly 'full_name': string;
|
|
4443
|
+
}
|
|
4444
|
+
|
|
4445
|
+
interface ProductTaxonomyData {
|
|
4446
|
+
readonly 'key': string;
|
|
4447
|
+
readonly 'value': string[];
|
|
4448
|
+
}
|
|
4449
|
+
}
|
|
4450
|
+
|
|
4451
|
+
declare namespace io.flow.ben.test.internal.v0.models {
|
|
4452
|
+
interface GenerateLoadMultipleOrgs {
|
|
4453
|
+
readonly 'discriminator': 'generate_load_multiple_orgs';
|
|
4454
|
+
readonly 'organization_ids': string[];
|
|
4455
|
+
readonly 'num_events': number;
|
|
4456
|
+
}
|
|
4457
|
+
|
|
4458
|
+
interface GenerateLoadSingleOrg {
|
|
4459
|
+
readonly 'discriminator': 'generate_load_single_org';
|
|
4460
|
+
readonly 'organization_id': string;
|
|
4461
|
+
readonly 'num_events': number;
|
|
4462
|
+
}
|
|
4463
|
+
|
|
4464
|
+
interface Test {
|
|
4465
|
+
readonly 'id': string;
|
|
4466
|
+
readonly 'name': string;
|
|
4467
|
+
}
|
|
4468
|
+
|
|
4469
|
+
interface TestForm {
|
|
4470
|
+
readonly 'name': string;
|
|
4471
|
+
}
|
|
4472
|
+
}
|
|
4473
|
+
|
|
4474
|
+
declare namespace io.flow.ben.test.internal.v0.unions {
|
|
4475
|
+
type GenerateLoad = (io.flow.ben.test.internal.v0.models.GenerateLoadSingleOrg | io.flow.ben.test.internal.v0.models.GenerateLoadMultipleOrgs);
|
|
4476
|
+
}
|
|
4477
|
+
|
|
4190
4478
|
declare namespace io.flow.catalog.v0.enums {
|
|
4191
4479
|
type AdjustmentReasonKey = 'duty_deminimis' | 'vat_deminimis';
|
|
4192
4480
|
type AttributeIntent = 'brand' | 'color' | 'countries_of_origin' | 'product_id' | 'fulfillment_method' | 'hazardous' | 'price' | 'size' | 'sku' | 'taxability' | 'consumer_url' | 'gtin' | 'mpn' | 'facet' | 'eccn' | 'returnable' | 'searchable' | 'barcode' | 'min_days_to_ship' | 'max_days_to_ship' | 'commercial_invoice_item_number' | 'include_in_product_feeds';
|
|
@@ -4814,6 +5102,7 @@ declare namespace io.flow.v0.enums {
|
|
|
4814
5102
|
type CenterCapability = 'international' | 'domestic' | 'crossdock' | 'commercial_invoice';
|
|
4815
5103
|
type ChangeType = 'insert' | 'update' | 'delete';
|
|
4816
5104
|
type ChannelCurrencyCapability = 'payment_authorizations' | 'settlement_currency';
|
|
5105
|
+
type ChannelShopifyOrderStateReasonCode = 'placeholder_reason_code';
|
|
4817
5106
|
type ConsumerInvoiceCustomerType = 'business_eu_verified' | 'business_non_verified' | 'individual';
|
|
4818
5107
|
type ConsumerInvoiceDocumentType = 'pdf';
|
|
4819
5108
|
type ConsumerInvoiceStatus = 'pending' | 'available' | 'invalid';
|
|
@@ -4841,7 +5130,7 @@ declare namespace io.flow.v0.enums {
|
|
|
4841
5130
|
type EconomicTitleLocation = 'high_seas' | 'origination' | 'destination';
|
|
4842
5131
|
type EntityIdentifierType = 'ioss' | 'voec' | 'zaz';
|
|
4843
5132
|
type Environment = 'sandbox' | 'production';
|
|
4844
|
-
type EventType = 'test_upserted' | 'generate_load' | 'aldo_item_upserted' | 'aldo_item_deleted' | 'transaction_upserted' | 'organization_transaction_upserted' | 'organization_transaction_deleted' | 'statement_upserted' | 'statement_deleted' | 'channel_transaction_upserted' | 'channel_transaction_deleted' | 'channel_transaction_deleted_v2' | 'channel_statement_upserted' | 'channel_statement_deleted' | 'channel_payout_upserted' | 'channel_payout_deleted' | 'organization_payout_upserted' | 'organization_payout_deleted' | 'channel_pending_payout_transaction_upserted' | 'channel_pending_payout_transaction_deleted' | 'organization_pending_payout_transaction_upserted' | 'organization_pending_payout_transaction_deleted' | 'attribute_upserted' | 'attribute_deleted' | 'attribute_upserted_v2' | 'attribute_deleted_v2' | 'catalog_upserted' | 'catalog_deleted' | 'subcatalog_upserted' | 'subcatalog_deleted' | '
|
|
5133
|
+
type EventType = 'authorization_retry_upserted' | 'authorization_retry_deleted' | 'test_upserted' | 'generate_load' | 'aldo_item_upserted' | 'aldo_item_deleted' | 'ansh_item_upserted' | 'ansh_item_deleted' | 'transaction_upserted' | 'organization_transaction_upserted' | 'organization_transaction_deleted' | 'statement_upserted' | 'statement_deleted' | 'channel_transaction_upserted' | 'channel_transaction_deleted' | 'channel_transaction_deleted_v2' | 'channel_statement_upserted' | 'channel_statement_deleted' | 'channel_payout_upserted' | 'channel_payout_deleted' | 'organization_payout_upserted' | 'organization_payout_deleted' | 'channel_pending_payout_transaction_upserted' | 'channel_pending_payout_transaction_deleted' | 'organization_pending_payout_transaction_upserted' | 'organization_pending_payout_transaction_deleted' | 'attribute_upserted' | 'attribute_deleted' | 'attribute_upserted_v2' | 'attribute_deleted_v2' | 'catalog_upserted' | 'catalog_deleted' | 'subcatalog_upserted' | 'subcatalog_deleted' | 'subcatalog_item_upserted' | 'subcatalog_item_deleted' | 'catalog_statistics_upserted' | 'catalog_statistics_deleted' | 'item_inserted' | 'item_updated' | 'item_deleted' | 'channel_shopify_order_state_upserted' | 'channel_shopify_order_state_deleted' | 'channel_upserted' | 'channel_deleted' | 'channel_currency_upserted' | 'channel_currency_deleted' | 'channel_organization_upserted' | 'channel_organization_deleted' | 'b2b_invoice_upserted' | 'b2b_invoice_deleted' | 'b2b_credit_memo_upserted' | 'b2b_credit_memo_deleted' | 'consumer_invoice_upserted' | 'consumer_invoice_deleted' | 'credit_memo_upserted' | 'credit_memo_deleted' | 'crossdock_shipment_upserted' | 'rate_deleted' | 'rate_upserted' | 'rate_deleted_v3' | 'rate_upserted_v3' | 'customer_upserted' | 'customer_deleted' | 'customer_address_book_contact_upserted' | 'customer_address_book_contact_deleted' | 'available_promotions_upserted' | 'available_promotions_deleted' | 'available_promotions_upserted_v2' | 'available_promotions_deleted_v2' | 'allocation_deleted_v2' | 'allocation_upserted_v2' | 'currency_format_deleted' | 'currency_format_upserted' | 'experience_deleted' | 'experience_upserted' | 'experience_deleted_v2' | 'experience_upserted_v2' | 'country_status_upserted' | 'country_status_deleted' | 'experience_price_book_mapping_deleted' | 'experience_price_book_mapping_upserted' | 'experience_logistics_settings_upserted' | 'experience_logistics_settings_deleted' | 'item_margin_deleted_v2' | 'item_margin_upserted_v2' | 'item_sales_margin_deleted' | 'item_sales_margin_upserted' | 'label_format_deleted' | 'label_format_upserted' | 'order_deleted' | 'order_upserted' | 'order_deleted_v2' | 'order_upserted_v2' | 'order_identifier_deleted' | 'order_identifier_upserted' | 'order_identifier_deleted_v2' | 'order_identifier_upserted_v2' | 'order_identifier_upserted_v3' | 'order_replacement_upserted' | 'order_replacement_deleted' | 'pricing_deleted' | 'pricing_upserted' | 'order_service_change_request' | 'fraud_status_changed' | 'center_upserted' | 'center_deleted' | 'shipping_configuration_upserted' | 'shipping_configuration_deleted' | 'tier_upserted_v2' | 'tier_deleted_v2' | 'shipping_lane_upserted' | 'shipping_lane_deleted' | 'shipping_configuration_item_availability_upserted' | 'shipping_configuration_item_availability_deleted' | 'shipping_configuration_item_shipping_pricing_upserted' | 'shipping_configuration_item_shipping_pricing_deleted' | 'ge_item_inserted' | 'ge_item_updated' | 'ge_item_deleted' | 'ge_product_restriction_result_upserted' | 'ge_product_restriction_result_deleted' | 'hs6_code_upserted' | 'hs6_code_deleted' | 'hs10_code_upserted' | 'hs10_code_deleted' | 'item_origin_upserted' | 'item_origin_deleted' | 'harmonized_landed_cost_upserted' | 'fully_harmonized_item_upserted' | 'import_completed_v2' | 'import_failed_v2' | 'label_upserted' | 'label_deleted_v2' | 'label_upserted_v2' | 'notification_upserted_v2' | 'notification_deleted_v2' | 'manifested_label_upserted' | 'manifested_label_deleted' | 'label_processing_modification_upserted' | 'label_processing_modification_deleted' | 'merchant_application_upserted' | 'merchant_application_deleted' | 'checkout_optin_responses_upserted' | 'checkout_optin_responses_deleted' | 'browse_optin_responses_upserted' | 'browse_optin_responses_deleted' | 'order_placed' | 'order_placed_v2' | 'ready_to_fulfill' | 'ready_to_fulfill_v2' | 'membership_upserted_v2' | 'membership_deleted_v2' | 'organization_upserted' | 'organization_deleted' | 'organization_upserted_v2' | 'organization_deleted_v2' | 'organization_default_configurations_upserted' | 'organization_default_configurations_deleted' | 'ecommerce_platform_upserted' | 'ecommerce_platform_deleted' | 'organization_onboarding_state_upserted' | 'organization_onboarding_state_deleted' | 'authorization_deleted_v2' | 'authorization_status_changed' | 'card_authorization_upserted_v2' | 'card_authorization_deleted_v2' | 'online_authorization_upserted_v2' | 'online_authorization_deleted_v2' | 'capture_upserted_v2' | 'capture_deleted' | 'card_upserted_v2' | 'card_deleted' | 'payment_upserted' | 'payment_deleted' | 'refund_upserted_v2' | 'refund_deleted_v2' | 'refund_capture_upserted_v2' | 'reversal_upserted' | 'reversal_deleted' | 'capture_identifier_upserted' | 'capture_identifier_deleted' | 'refund_identifier_upserted' | 'refund_identifier_deleted' | 'virtual_card_capture_upserted' | 'virtual_card_capture_deleted' | 'virtual_card_refund_upserted' | 'virtual_card_refund_deleted' | 'payment_request_upserted' | 'payment_request_deleted' | 'price_book_upserted' | 'price_book_deleted' | 'price_book_item_upserted' | 'price_book_item_deleted' | 'product_inserted' | 'product_updated' | 'product_deleted' | 'organization_rates_published' | 'ratecard_lane_upserted' | 'ratecard_lane_deleted' | 'ratecard_upserted' | 'ratecard_deleted' | 'product_restriction_result_upserted' | 'product_restriction_result_deleted' | 'return_upserted' | 'return_deleted' | 'return_upserted_v2' | 'return_deleted_v2' | 'shopify_localization_setting_upserted' | 'shopify_localization_setting_deleted' | 'tracking_label_event_upserted';
|
|
4845
5134
|
type ExceptionType = 'open' | 'closed';
|
|
4846
5135
|
type ExclusionRuleState = 'current' | 'deleting' | 'updating';
|
|
4847
5136
|
type ExperienceCloneStatus = 'pending' | 'updating' | 'completed' | 'failed';
|
|
@@ -4898,6 +5187,7 @@ declare namespace io.flow.v0.enums {
|
|
|
4898
5187
|
type OrderChangeSource = 'consumer' | 'retailer' | 'fulfillment' | 'flow' | 'carrier';
|
|
4899
5188
|
type OrderErrorCode = 'generic_error' | 'order_item_not_available' | 'order_identifier_error' | 'authorization_invalid' | 'domestic_shipping_unavailable' | 'shipping_unavailable' | 'value_threshold_exceeded' | 'invalid_currency' | 'invalid_country' | 'invalid_region' | 'invalid_language' | 'item_out_of_stock' | 'gift_card_not_accepted' | 'total_changed';
|
|
4900
5189
|
type OrderMerchantOfRecord = 'flow' | 'organization' | 'mixed';
|
|
5190
|
+
type OrderPaymentSourceType = 'globale' | 'third_party';
|
|
4901
5191
|
type OrderPaymentType = 'card' | 'online' | 'credit' | 'external' | 'subsidized' | 'installment_plan' | 'cash_on_delivery';
|
|
4902
5192
|
type OrderPriceDetailComponentKey = 'adjustment' | 'vat_deminimis' | 'duty_deminimis' | 'duties_item_price' | 'duties_freight' | 'duties_insurance' | 'vat_item_price' | 'vat_freight' | 'vat_insurance' | 'vat_duties_item_price' | 'vat_duties_freight' | 'vat_duties_insurance' | 'item_price' | 'item_discount' | 'rounding' | 'insurance' | 'shipping' | 'shipping_discount' | 'order_discount' | 'subtotal_percent_sales_margin' | 'subtotal_vat_percent_sales_margin' | 'subtotal_duty_percent_sales_margin' | 'vat_subsidy' | 'duty_subsidy' | 'remote_area_surcharge' | 'fuel_surcharge' | 'emergency_situation_surcharge' | 'peak_surcharge' | 'duties_taxes_paid_surcharge' | 'tip';
|
|
4903
5193
|
type OrderPriceDetailKey = 'adjustment' | 'subtotal' | 'vat' | 'duty' | 'shipping' | 'insurance' | 'discount' | 'surcharges' | 'tip';
|
|
@@ -4970,10 +5260,8 @@ declare namespace io.flow.v0.enums {
|
|
|
4970
5260
|
type StoredMethodUsageStep = 'initial' | 'subsequent';
|
|
4971
5261
|
type Strategy = 'range' | 'from' | 'to';
|
|
4972
5262
|
type SubcatalogItemStatus = 'excluded' | 'included' | 'restricted';
|
|
5263
|
+
type SubstatusCode = 'Delivered_001' | 'Delivered_002' | 'Delivered_003' | 'Delivered_004' | 'AvailableForPickup_001' | 'Exception_001' | 'Exception_002' | 'Exception_003' | 'Exception_004' | 'Exception_005' | 'Exception_006' | 'Exception_007' | 'Exception_008' | 'Exception_009' | 'Exception_010' | 'Exception_011' | 'Exception_012' | 'Exception_013' | 'AttemptFail_001' | 'AttemptFail_002' | 'AttemptFail_003' | 'InTransit_001' | 'InTransit_002' | 'InTransit_003' | 'InTransit_004' | 'InTransit_005' | 'InTransit_006' | 'InTransit_007' | 'InTransit_008' | 'InTransit_009' | 'InfoReceived_001' | 'OutForDelivery_001' | 'OutForDelivery_003' | 'OutForDelivery_004' | 'Pending_001' | 'Pending_002' | 'Pending_003' | 'Pending_004' | 'Pending_005' | 'Pending_006' | 'Expired_001';
|
|
4973
5264
|
type SurchargeResponsibleParty = 'organization' | 'customer';
|
|
4974
|
-
type SyncRecordFailureReason = 'inventory' | 'address' | 'promotion' | 'other';
|
|
4975
|
-
type SyncStreamType = 'submitted_order' | 'placed_order';
|
|
4976
|
-
type SyncUnitOfTime = 'day' | 'hour' | 'minute' | 'second';
|
|
4977
5265
|
type TaxApplicability = 'none' | 'all';
|
|
4978
5266
|
type TaxReportType = 'consumer' | 'b2b';
|
|
4979
5267
|
type TaxVerificationResult = 'valid' | 'invalid' | 'unable_to_validate';
|
|
@@ -4986,10 +5274,10 @@ declare namespace io.flow.v0.enums {
|
|
|
4986
5274
|
type TierStrategy = 'fastest' | 'lowest_cost';
|
|
4987
5275
|
type TokenType = 'permanent' | 'one_time';
|
|
4988
5276
|
type TrackingNumberType = 'flow' | 'carrier';
|
|
4989
|
-
type TrackingStatus = 'label_created' | 'pending' | 'info_received' | 'picked_up' | 'in_transit' | 'out_for_delivery' | 'attempt_fail' | 'delivered' | 'exception' | 'returned' | 'expired';
|
|
5277
|
+
type TrackingStatus = 'label_created' | 'pending' | 'info_received' | 'picked_up' | 'in_transit' | 'out_for_delivery' | 'attempt_fail' | 'delivered' | 'exception' | 'returned' | 'expired' | 'unknown' | 'unmapped';
|
|
4990
5278
|
type TradeAgreementName = 'USMCA' | 'T-MEC' | 'CUSMA' | 'TCA';
|
|
4991
5279
|
type TradeAgreementStatus = 'supported' | 'not_supported';
|
|
4992
|
-
type TransactionSource = 'capture' | 'refund' | 'dispute' | 'adjustment' | 'reversal' | 'shipping_label' | 'shipping_label_service' | 'shipping_label_revenue_share' | 'trueup' | 'trueup_base' | 'trueup_surcharge' | 'carrier_charge' | 'carrier_charge_revenue_share' | 'platform_fee' | 'tax' | 'duty' | 'withholding' | 'other_adjustment' | 'tax_adjustment' | 'channel' | 'channel_billed' | 'order_service' | 'virtual_card_capture' | 'virtual_card_refund' | 'failed_payout' | 'tax_refund';
|
|
5280
|
+
type TransactionSource = 'capture' | 'refund' | 'dispute' | 'adjustment' | 'reversal' | 'shipping_label' | 'shipping_label_service' | 'shipping_label_revenue_share' | 'trueup' | 'trueup_base' | 'trueup_surcharge' | 'carrier_charge' | 'carrier_charge_revenue_share' | 'platform_fee' | 'tax' | 'duty' | 'withholding' | 'other_adjustment' | 'tax_adjustment' | 'channel' | 'channel_billed' | 'order_service' | 'virtual_card_capture' | 'virtual_card_refund' | 'failed_payout' | 'tax_refund' | 'non_l4l_tax_duty_fx' | 'ge_revenue_share' | 'tax_duty_delta';
|
|
4993
5281
|
type TrueupSource = 'flow' | 'channel' | 'dhl-parcel' | 'dhl' | 'ups';
|
|
4994
5282
|
type TrueupSurchargeType = 'fuel' | 'remote_area' | 'oversize' | 'duties_paid' | 'emergency' | 'peak' | 'address_correction' | 'security' | 'eei_filing' | 'fixed_ddp' | 'fixed_currency_conversion' | 'prohibited_item' | 'undeliverable_shipment' | 'signature_required' | 'direct_delivery' | 'saturday_stop' | 'residential_extended_area_pickup' | 'package_level_detail';
|
|
4995
5283
|
type UnitOfLength = 'millimeter' | 'centimeter' | 'inch' | 'foot' | 'meter';
|
|
@@ -5456,6 +5744,20 @@ declare namespace io.flow.v0.models {
|
|
|
5456
5744
|
readonly 'interval'?: io.flow.v0.enums.UnitOfTime;
|
|
5457
5745
|
}
|
|
5458
5746
|
|
|
5747
|
+
interface AnshItemDeleted {
|
|
5748
|
+
readonly 'discriminator': 'ansh_item_deleted';
|
|
5749
|
+
readonly 'event_id': string;
|
|
5750
|
+
readonly 'timestamp': string;
|
|
5751
|
+
readonly 'id': string;
|
|
5752
|
+
}
|
|
5753
|
+
|
|
5754
|
+
interface AnshItemUpserted {
|
|
5755
|
+
readonly 'discriminator': 'ansh_item_upserted';
|
|
5756
|
+
readonly 'event_id': string;
|
|
5757
|
+
readonly 'timestamp': string;
|
|
5758
|
+
readonly 'item': io.flow.tech.onboarding.playground.v0.models.AnshItem;
|
|
5759
|
+
}
|
|
5760
|
+
|
|
5459
5761
|
interface ApplePayMerchantValidationPayload {
|
|
5460
5762
|
readonly 'discriminator': 'apple_pay_merchant_validation_payload';
|
|
5461
5763
|
readonly 'validation_url': string;
|
|
@@ -5643,6 +5945,33 @@ declare namespace io.flow.v0.models {
|
|
|
5643
5945
|
readonly 'display': string;
|
|
5644
5946
|
}
|
|
5645
5947
|
|
|
5948
|
+
interface AuthorizationRetry {
|
|
5949
|
+
readonly 'id': string;
|
|
5950
|
+
readonly 'authorization_request_id': string;
|
|
5951
|
+
readonly 'authorization_id': string;
|
|
5952
|
+
readonly 'organization_id': string;
|
|
5953
|
+
readonly 'attempt': number;
|
|
5954
|
+
readonly 'last_failure_code': string;
|
|
5955
|
+
readonly 'created_at': string;
|
|
5956
|
+
readonly 'updated_at': string;
|
|
5957
|
+
}
|
|
5958
|
+
|
|
5959
|
+
interface AuthorizationRetryDeleted {
|
|
5960
|
+
readonly 'discriminator': 'authorization_retry_deleted';
|
|
5961
|
+
readonly 'event_id': string;
|
|
5962
|
+
readonly 'timestamp': string;
|
|
5963
|
+
readonly 'organization': string;
|
|
5964
|
+
readonly 'id': string;
|
|
5965
|
+
}
|
|
5966
|
+
|
|
5967
|
+
interface AuthorizationRetryUpserted {
|
|
5968
|
+
readonly 'discriminator': 'authorization_retry_upserted';
|
|
5969
|
+
readonly 'event_id': string;
|
|
5970
|
+
readonly 'timestamp': string;
|
|
5971
|
+
readonly 'organization': string;
|
|
5972
|
+
readonly 'authorization_retry': io.flow.v0.models.AuthorizationRetry;
|
|
5973
|
+
}
|
|
5974
|
+
|
|
5646
5975
|
interface AuthorizationStatusChanged {
|
|
5647
5976
|
readonly 'discriminator': 'authorization_status_changed';
|
|
5648
5977
|
readonly 'event_id': string;
|
|
@@ -6081,6 +6410,7 @@ declare namespace io.flow.v0.models {
|
|
|
6081
6410
|
readonly 'processor'?: io.flow.v0.unions.ExpandablePaymentProcessor;
|
|
6082
6411
|
readonly 'stored_method_usage_step'?: io.flow.v0.enums.StoredMethodUsageStep;
|
|
6083
6412
|
readonly 'authorized_at'?: string;
|
|
6413
|
+
readonly 'authorization_request_id'?: string;
|
|
6084
6414
|
}
|
|
6085
6415
|
|
|
6086
6416
|
interface CardAuthorizationDeletedV2 {
|
|
@@ -6238,6 +6568,11 @@ declare namespace io.flow.v0.models {
|
|
|
6238
6568
|
readonly 'id': string;
|
|
6239
6569
|
}
|
|
6240
6570
|
|
|
6571
|
+
interface CarrierRestrictions {
|
|
6572
|
+
readonly 'carrier': string;
|
|
6573
|
+
readonly 'regions': string[];
|
|
6574
|
+
}
|
|
6575
|
+
|
|
6241
6576
|
interface CarrierService {
|
|
6242
6577
|
readonly 'id': string;
|
|
6243
6578
|
readonly 'carrier': io.flow.v0.models.Carrier;
|
|
@@ -6259,22 +6594,6 @@ declare namespace io.flow.v0.models {
|
|
|
6259
6594
|
readonly 'organization': string;
|
|
6260
6595
|
}
|
|
6261
6596
|
|
|
6262
|
-
interface CatalogItemDeleted {
|
|
6263
|
-
readonly 'discriminator': 'catalog_item_deleted';
|
|
6264
|
-
readonly 'event_id': string;
|
|
6265
|
-
readonly 'timestamp': string;
|
|
6266
|
-
readonly 'organization': string;
|
|
6267
|
-
readonly 'number': string;
|
|
6268
|
-
}
|
|
6269
|
-
|
|
6270
|
-
interface CatalogItemDeletedV2 {
|
|
6271
|
-
readonly 'discriminator': 'catalog_item_deleted_v2';
|
|
6272
|
-
readonly 'event_id': string;
|
|
6273
|
-
readonly 'timestamp': string;
|
|
6274
|
-
readonly 'organization': string;
|
|
6275
|
-
readonly 'item': io.flow.v0.models.Item;
|
|
6276
|
-
}
|
|
6277
|
-
|
|
6278
6597
|
interface CatalogItemDocument {
|
|
6279
6598
|
readonly 'discriminator': 'catalog_item_document';
|
|
6280
6599
|
readonly 'number': string;
|
|
@@ -6307,31 +6626,6 @@ declare namespace io.flow.v0.models {
|
|
|
6307
6626
|
readonly 'attributes': Record<string, string>;
|
|
6308
6627
|
}
|
|
6309
6628
|
|
|
6310
|
-
interface CatalogItemUpserted {
|
|
6311
|
-
readonly 'discriminator': 'catalog_item_upserted';
|
|
6312
|
-
readonly 'event_id': string;
|
|
6313
|
-
readonly 'timestamp': string;
|
|
6314
|
-
readonly 'organization': string;
|
|
6315
|
-
readonly 'number': string;
|
|
6316
|
-
readonly 'locale': string;
|
|
6317
|
-
readonly 'name': string;
|
|
6318
|
-
readonly 'currency': string;
|
|
6319
|
-
readonly 'price': number;
|
|
6320
|
-
readonly 'categories': string[];
|
|
6321
|
-
readonly 'description'?: string;
|
|
6322
|
-
readonly 'attributes': Record<string, string>;
|
|
6323
|
-
readonly 'dimensions': any/*object*/;
|
|
6324
|
-
readonly 'images': any/*object*/[];
|
|
6325
|
-
}
|
|
6326
|
-
|
|
6327
|
-
interface CatalogItemUpsertedV2 {
|
|
6328
|
-
readonly 'discriminator': 'catalog_item_upserted_v2';
|
|
6329
|
-
readonly 'event_id': string;
|
|
6330
|
-
readonly 'timestamp': string;
|
|
6331
|
-
readonly 'organization': string;
|
|
6332
|
-
readonly 'item': io.flow.v0.models.Item;
|
|
6333
|
-
}
|
|
6334
|
-
|
|
6335
6629
|
interface CatalogPriceBookItemDocument {
|
|
6336
6630
|
readonly 'price_book_key': string;
|
|
6337
6631
|
readonly 'price_book_item_key': string;
|
|
@@ -6627,6 +6921,39 @@ declare namespace io.flow.v0.models {
|
|
|
6627
6921
|
readonly 'id': string;
|
|
6628
6922
|
}
|
|
6629
6923
|
|
|
6924
|
+
interface ChannelShopifyOrderState {
|
|
6925
|
+
readonly 'id': string;
|
|
6926
|
+
readonly 'shopify_order_summary': io.flow.v0.models.ChannelShopifyOrderSummary;
|
|
6927
|
+
readonly 'status': io.flow.channel.internal.v0.enums.ChannelOrderAcceptanceStatus;
|
|
6928
|
+
readonly 'reasons'?: io.flow.v0.models.ChannelShopifyOrderStateReason[];
|
|
6929
|
+
}
|
|
6930
|
+
|
|
6931
|
+
interface ChannelShopifyOrderStateDeleted {
|
|
6932
|
+
readonly 'discriminator': 'channel_shopify_order_state_deleted';
|
|
6933
|
+
readonly 'event_id': string;
|
|
6934
|
+
readonly 'timestamp': string;
|
|
6935
|
+
readonly 'organization': string;
|
|
6936
|
+
readonly 'id': string;
|
|
6937
|
+
}
|
|
6938
|
+
|
|
6939
|
+
interface ChannelShopifyOrderStateReason {
|
|
6940
|
+
readonly 'code': io.flow.v0.enums.ChannelShopifyOrderStateReasonCode;
|
|
6941
|
+
readonly 'message': string;
|
|
6942
|
+
}
|
|
6943
|
+
|
|
6944
|
+
interface ChannelShopifyOrderStateUpserted {
|
|
6945
|
+
readonly 'discriminator': 'channel_shopify_order_state_upserted';
|
|
6946
|
+
readonly 'event_id': string;
|
|
6947
|
+
readonly 'timestamp': string;
|
|
6948
|
+
readonly 'organization': string;
|
|
6949
|
+
readonly 'channel_shopify_order_state': io.flow.v0.models.ChannelShopifyOrderState;
|
|
6950
|
+
}
|
|
6951
|
+
|
|
6952
|
+
interface ChannelShopifyOrderSummary {
|
|
6953
|
+
readonly 'order_id': number;
|
|
6954
|
+
readonly 'shop_id': number;
|
|
6955
|
+
}
|
|
6956
|
+
|
|
6630
6957
|
interface ChannelStatement {
|
|
6631
6958
|
readonly 'id': string;
|
|
6632
6959
|
readonly 'account': io.flow.v0.models.AccountReference;
|
|
@@ -7624,12 +7951,14 @@ declare namespace io.flow.v0.models {
|
|
|
7624
7951
|
readonly 'q': string;
|
|
7625
7952
|
readonly 'dimensions': io.flow.v0.models.EstimatedDimensions;
|
|
7626
7953
|
readonly 'position': number;
|
|
7954
|
+
readonly 'block_bulk_update'?: boolean;
|
|
7627
7955
|
}
|
|
7628
7956
|
|
|
7629
7957
|
interface DimensionEstimateForm {
|
|
7630
7958
|
readonly 'q': string;
|
|
7631
7959
|
readonly 'dimensions': io.flow.v0.models.EstimatedDimensions;
|
|
7632
7960
|
readonly 'position'?: number;
|
|
7961
|
+
readonly 'block_bulk_update'?: boolean;
|
|
7633
7962
|
}
|
|
7634
7963
|
|
|
7635
7964
|
interface DimensionEstimateVersion {
|
|
@@ -8605,6 +8934,46 @@ declare namespace io.flow.v0.models {
|
|
|
8605
8934
|
readonly 'landed_costs': io.flow.v0.models.LaneLandedCost[];
|
|
8606
8935
|
}
|
|
8607
8936
|
|
|
8937
|
+
interface GeItemDeleted {
|
|
8938
|
+
readonly 'discriminator': 'ge_item_deleted';
|
|
8939
|
+
readonly 'event_id': string;
|
|
8940
|
+
readonly 'timestamp': string;
|
|
8941
|
+
readonly 'organization': string;
|
|
8942
|
+
readonly 'item': io.flow.v0.models.Item;
|
|
8943
|
+
}
|
|
8944
|
+
|
|
8945
|
+
interface GeItemInserted {
|
|
8946
|
+
readonly 'discriminator': 'ge_item_inserted';
|
|
8947
|
+
readonly 'event_id': string;
|
|
8948
|
+
readonly 'timestamp': string;
|
|
8949
|
+
readonly 'organization': string;
|
|
8950
|
+
readonly 'item': io.flow.v0.models.Item;
|
|
8951
|
+
}
|
|
8952
|
+
|
|
8953
|
+
interface GeItemUpdated {
|
|
8954
|
+
readonly 'discriminator': 'ge_item_updated';
|
|
8955
|
+
readonly 'event_id': string;
|
|
8956
|
+
readonly 'timestamp': string;
|
|
8957
|
+
readonly 'organization': string;
|
|
8958
|
+
readonly 'item': io.flow.v0.models.Item;
|
|
8959
|
+
}
|
|
8960
|
+
|
|
8961
|
+
interface GeProductRestrictionResultDeleted {
|
|
8962
|
+
readonly 'discriminator': 'ge_product_restriction_result_deleted';
|
|
8963
|
+
readonly 'event_id': string;
|
|
8964
|
+
readonly 'timestamp': string;
|
|
8965
|
+
readonly 'organization': string;
|
|
8966
|
+
readonly 'id': string;
|
|
8967
|
+
}
|
|
8968
|
+
|
|
8969
|
+
interface GeProductRestrictionResultUpserted {
|
|
8970
|
+
readonly 'discriminator': 'ge_product_restriction_result_upserted';
|
|
8971
|
+
readonly 'event_id': string;
|
|
8972
|
+
readonly 'timestamp': string;
|
|
8973
|
+
readonly 'organization': string;
|
|
8974
|
+
readonly 'ge_product_restriction_result': io.flow.v0.models.ProductRestrictionResult;
|
|
8975
|
+
}
|
|
8976
|
+
|
|
8608
8977
|
interface GenerateLoad {
|
|
8609
8978
|
readonly 'discriminator': 'generate_load';
|
|
8610
8979
|
readonly 'event_id': string;
|
|
@@ -9617,14 +9986,6 @@ declare namespace io.flow.v0.models {
|
|
|
9617
9986
|
readonly 'price': io.flow.v0.models.LocalizedItemPrice;
|
|
9618
9987
|
}
|
|
9619
9988
|
|
|
9620
|
-
interface LocalItemDeleted {
|
|
9621
|
-
readonly 'discriminator': 'local_item_deleted';
|
|
9622
|
-
readonly 'event_id': string;
|
|
9623
|
-
readonly 'timestamp': string;
|
|
9624
|
-
readonly 'organization': string;
|
|
9625
|
-
readonly 'local_item': io.flow.v0.models.LocalItem;
|
|
9626
|
-
}
|
|
9627
|
-
|
|
9628
9989
|
interface LocalItemPricing {
|
|
9629
9990
|
readonly 'price': io.flow.v0.models.LocalizedItemPrice;
|
|
9630
9991
|
readonly 'vat'?: io.flow.v0.models.LocalizedItemVat;
|
|
@@ -9634,14 +9995,6 @@ declare namespace io.flow.v0.models {
|
|
|
9634
9995
|
readonly 'price_attributes'?: Record<string, io.flow.v0.models.LocalItemAttributePricing>;
|
|
9635
9996
|
}
|
|
9636
9997
|
|
|
9637
|
-
interface LocalItemUpserted {
|
|
9638
|
-
readonly 'discriminator': 'local_item_upserted';
|
|
9639
|
-
readonly 'event_id': string;
|
|
9640
|
-
readonly 'timestamp': string;
|
|
9641
|
-
readonly 'organization': string;
|
|
9642
|
-
readonly 'local_item': io.flow.v0.models.LocalItem;
|
|
9643
|
-
}
|
|
9644
|
-
|
|
9645
9998
|
interface LocalPriceDetails {
|
|
9646
9999
|
readonly 'base': io.flow.v0.models.PriceDetails;
|
|
9647
10000
|
readonly 'local': io.flow.v0.models.PriceDetails;
|
|
@@ -10117,6 +10470,7 @@ declare namespace io.flow.v0.models {
|
|
|
10117
10470
|
readonly 'processor'?: io.flow.v0.unions.ExpandablePaymentProcessor;
|
|
10118
10471
|
readonly 'confirmation_details'?: io.flow.v0.unions.ConfirmationDetails;
|
|
10119
10472
|
readonly 'authorized_at'?: string;
|
|
10473
|
+
readonly 'authorization_request_id'?: string;
|
|
10120
10474
|
}
|
|
10121
10475
|
|
|
10122
10476
|
interface OnlineAuthorizationDeletedV2 {
|
|
@@ -10193,6 +10547,7 @@ declare namespace io.flow.v0.models {
|
|
|
10193
10547
|
readonly 'device_details'?: io.flow.v0.unions.DeviceDetails;
|
|
10194
10548
|
readonly 'destination_contact_details'?: io.flow.v0.models.DestinationContactDetail[];
|
|
10195
10549
|
readonly 'incoterm_summary'?: io.flow.v0.models.IncotermSummary;
|
|
10550
|
+
readonly 'payment_source'?: io.flow.v0.enums.OrderPaymentSourceType;
|
|
10196
10551
|
}
|
|
10197
10552
|
|
|
10198
10553
|
interface OrderAddress {
|
|
@@ -10336,6 +10691,7 @@ declare namespace io.flow.v0.models {
|
|
|
10336
10691
|
readonly 'authorization_keys'?: string[];
|
|
10337
10692
|
readonly 'options'?: io.flow.v0.models.OrderOptions;
|
|
10338
10693
|
readonly 'device_details'?: io.flow.v0.unions.DeviceDetails;
|
|
10694
|
+
readonly 'payment_source'?: io.flow.v0.enums.OrderPaymentSourceType;
|
|
10339
10695
|
}
|
|
10340
10696
|
|
|
10341
10697
|
interface OrderFraudStatus {
|
|
@@ -10555,6 +10911,7 @@ declare namespace io.flow.v0.models {
|
|
|
10555
10911
|
readonly 'authorization_keys'?: string[];
|
|
10556
10912
|
readonly 'options'?: io.flow.v0.models.OrderOptions;
|
|
10557
10913
|
readonly 'device_details'?: io.flow.v0.unions.DeviceDetails;
|
|
10914
|
+
readonly 'payment_source'?: io.flow.v0.enums.OrderPaymentSourceType;
|
|
10558
10915
|
}
|
|
10559
10916
|
|
|
10560
10917
|
interface OrderReference {
|
|
@@ -12109,10 +12466,6 @@ declare namespace io.flow.v0.models {
|
|
|
12109
12466
|
readonly 'id': string;
|
|
12110
12467
|
}
|
|
12111
12468
|
|
|
12112
|
-
interface PriceBookItemExportOptions {
|
|
12113
|
-
readonly 'available_identifiers': io.flow.v0.enums.ItemIdentifier[];
|
|
12114
|
-
}
|
|
12115
|
-
|
|
12116
12469
|
interface PriceBookItemExportType {
|
|
12117
12470
|
readonly 'discriminator': 'price_book_item_export_type';
|
|
12118
12471
|
readonly 'price_book_key'?: string;
|
|
@@ -12302,7 +12655,6 @@ declare namespace io.flow.v0.models {
|
|
|
12302
12655
|
}
|
|
12303
12656
|
|
|
12304
12657
|
interface Product {
|
|
12305
|
-
readonly 'id': string;
|
|
12306
12658
|
readonly 'organization_id': string;
|
|
12307
12659
|
readonly 'number': string;
|
|
12308
12660
|
readonly 'taxonomy_category'?: io.flow.v0.models.ProductTaxonomyCategory;
|
|
@@ -12312,6 +12664,22 @@ declare namespace io.flow.v0.models {
|
|
|
12312
12664
|
readonly 'deleted_at'?: string;
|
|
12313
12665
|
}
|
|
12314
12666
|
|
|
12667
|
+
interface ProductDeleted {
|
|
12668
|
+
readonly 'discriminator': 'product_deleted';
|
|
12669
|
+
readonly 'event_id': string;
|
|
12670
|
+
readonly 'timestamp': string;
|
|
12671
|
+
readonly 'organization': string;
|
|
12672
|
+
readonly 'product': io.flow.v0.models.Product;
|
|
12673
|
+
}
|
|
12674
|
+
|
|
12675
|
+
interface ProductInserted {
|
|
12676
|
+
readonly 'discriminator': 'product_inserted';
|
|
12677
|
+
readonly 'event_id': string;
|
|
12678
|
+
readonly 'timestamp': string;
|
|
12679
|
+
readonly 'organization': string;
|
|
12680
|
+
readonly 'product': io.flow.v0.models.Product;
|
|
12681
|
+
}
|
|
12682
|
+
|
|
12315
12683
|
interface ProductRestrictionResult {
|
|
12316
12684
|
readonly 'id': string;
|
|
12317
12685
|
readonly 'product_id': string;
|
|
@@ -12343,7 +12711,7 @@ declare namespace io.flow.v0.models {
|
|
|
12343
12711
|
|
|
12344
12712
|
interface ProductTaxonomyCategory {
|
|
12345
12713
|
readonly 'name': string;
|
|
12346
|
-
readonly '
|
|
12714
|
+
readonly 'full_name': string;
|
|
12347
12715
|
}
|
|
12348
12716
|
|
|
12349
12717
|
interface ProductTaxonomyData {
|
|
@@ -12351,6 +12719,14 @@ declare namespace io.flow.v0.models {
|
|
|
12351
12719
|
readonly 'value': string[];
|
|
12352
12720
|
}
|
|
12353
12721
|
|
|
12722
|
+
interface ProductUpdated {
|
|
12723
|
+
readonly 'discriminator': 'product_updated';
|
|
12724
|
+
readonly 'event_id': string;
|
|
12725
|
+
readonly 'timestamp': string;
|
|
12726
|
+
readonly 'organization': string;
|
|
12727
|
+
readonly 'product': io.flow.v0.models.Product;
|
|
12728
|
+
}
|
|
12729
|
+
|
|
12354
12730
|
interface PromotionTrigger {
|
|
12355
12731
|
readonly 'type': io.flow.v0.enums.PromotionTriggerType;
|
|
12356
12732
|
readonly 'min': io.flow.v0.models.Price;
|
|
@@ -14244,79 +14620,6 @@ declare namespace io.flow.v0.models {
|
|
|
14244
14620
|
readonly 'available': io.flow.v0.models.SurchargeResponsiblePartyDisplay[];
|
|
14245
14621
|
}
|
|
14246
14622
|
|
|
14247
|
-
interface SyncDuration {
|
|
14248
|
-
readonly 'unit': io.flow.v0.enums.SyncUnitOfTime;
|
|
14249
|
-
readonly 'value': number;
|
|
14250
|
-
}
|
|
14251
|
-
|
|
14252
|
-
interface SyncPendingRecord {
|
|
14253
|
-
readonly 'id': string;
|
|
14254
|
-
readonly 'stream': io.flow.v0.models.SyncStreamReference;
|
|
14255
|
-
readonly 'value': string;
|
|
14256
|
-
readonly 'system': string;
|
|
14257
|
-
}
|
|
14258
|
-
|
|
14259
|
-
interface SyncRecord {
|
|
14260
|
-
readonly 'id': string;
|
|
14261
|
-
readonly 'system': string;
|
|
14262
|
-
readonly 'value': string;
|
|
14263
|
-
readonly 'stream': io.flow.v0.models.SyncStreamReference;
|
|
14264
|
-
}
|
|
14265
|
-
|
|
14266
|
-
interface SyncRecordFailure {
|
|
14267
|
-
readonly 'id': string;
|
|
14268
|
-
readonly 'stream': io.flow.v0.models.SyncStreamReference;
|
|
14269
|
-
readonly 'value': string;
|
|
14270
|
-
readonly 'system': string;
|
|
14271
|
-
readonly 'reason': io.flow.v0.enums.SyncRecordFailureReason;
|
|
14272
|
-
readonly 'attributes'?: Record<string, string>;
|
|
14273
|
-
}
|
|
14274
|
-
|
|
14275
|
-
interface SyncRecordFailureForm {
|
|
14276
|
-
readonly 'stream_key': string;
|
|
14277
|
-
readonly 'value': string;
|
|
14278
|
-
readonly 'system': string;
|
|
14279
|
-
readonly 'reason': io.flow.v0.enums.SyncRecordFailureReason;
|
|
14280
|
-
readonly 'attributes'?: Record<string, string>;
|
|
14281
|
-
}
|
|
14282
|
-
|
|
14283
|
-
interface SyncRecordForm {
|
|
14284
|
-
readonly 'stream_key': string;
|
|
14285
|
-
readonly 'system': string;
|
|
14286
|
-
readonly 'value': string;
|
|
14287
|
-
}
|
|
14288
|
-
|
|
14289
|
-
interface SyncStream {
|
|
14290
|
-
readonly 'id': string;
|
|
14291
|
-
readonly 'key': string;
|
|
14292
|
-
readonly 'type': io.flow.v0.enums.SyncStreamType;
|
|
14293
|
-
readonly 'systems': string[];
|
|
14294
|
-
readonly 'settings': io.flow.v0.models.SyncStreamSettings;
|
|
14295
|
-
}
|
|
14296
|
-
|
|
14297
|
-
interface SyncStreamForm {
|
|
14298
|
-
readonly 'type': io.flow.v0.enums.SyncStreamType;
|
|
14299
|
-
readonly 'systems': string[];
|
|
14300
|
-
readonly 'settings'?: io.flow.v0.models.SyncStreamSettingsForm;
|
|
14301
|
-
}
|
|
14302
|
-
|
|
14303
|
-
interface SyncStreamReference {
|
|
14304
|
-
readonly 'id': string;
|
|
14305
|
-
readonly 'key': string;
|
|
14306
|
-
}
|
|
14307
|
-
|
|
14308
|
-
interface SyncStreamSettings {
|
|
14309
|
-
readonly 'pending_record_after': io.flow.v0.models.SyncDuration;
|
|
14310
|
-
readonly 'warn_after': io.flow.v0.models.SyncDuration;
|
|
14311
|
-
readonly 'error_after': io.flow.v0.models.SyncDuration;
|
|
14312
|
-
}
|
|
14313
|
-
|
|
14314
|
-
interface SyncStreamSettingsForm {
|
|
14315
|
-
readonly 'pending_record_after': io.flow.v0.models.SyncDuration;
|
|
14316
|
-
readonly 'warn_after': io.flow.v0.models.SyncDuration;
|
|
14317
|
-
readonly 'error_after': io.flow.v0.models.SyncDuration;
|
|
14318
|
-
}
|
|
14319
|
-
|
|
14320
14623
|
interface Tax {
|
|
14321
14624
|
readonly 'name': string;
|
|
14322
14625
|
readonly 'rate': number;
|
|
@@ -15145,7 +15448,7 @@ declare namespace io.flow.v0.unions {
|
|
|
15145
15448
|
type Document = (io.flow.v0.models.CatalogItemDocument | io.flow.v0.models.HarmonizationDocument);
|
|
15146
15449
|
type EmailNotificationData = (io.flow.v0.models.EmailNotificationDataRefund | io.flow.v0.models.EmailNotificationAbandonedOrder);
|
|
15147
15450
|
type Entity = (io.flow.v0.models.Company | io.flow.v0.models.Individual);
|
|
15148
|
-
type Event = (io.flow.v0.models.TestUpserted | io.flow.v0.models.GenerateLoad | io.flow.v0.models.AldoItemUpserted | io.flow.v0.models.AldoItemDeleted | io.flow.v0.models.TransactionUpserted | io.flow.v0.models.OrganizationTransactionUpserted | io.flow.v0.models.OrganizationTransactionDeleted | io.flow.v0.models.StatementUpserted | io.flow.v0.models.StatementDeleted | io.flow.v0.models.ChannelTransactionUpserted | io.flow.v0.models.ChannelTransactionDeleted | io.flow.v0.models.ChannelTransactionDeletedV2 | io.flow.v0.models.ChannelStatementUpserted | io.flow.v0.models.ChannelStatementDeleted | io.flow.v0.models.ChannelPayoutUpserted | io.flow.v0.models.ChannelPayoutDeleted | io.flow.v0.models.OrganizationPayoutUpserted | io.flow.v0.models.OrganizationPayoutDeleted | io.flow.v0.models.ChannelPendingPayoutTransactionUpserted | io.flow.v0.models.ChannelPendingPayoutTransactionDeleted | io.flow.v0.models.OrganizationPendingPayoutTransactionUpserted | io.flow.v0.models.OrganizationPendingPayoutTransactionDeleted | io.flow.v0.models.AttributeUpserted | io.flow.v0.models.AttributeDeleted | io.flow.v0.models.AttributeUpsertedV2 | io.flow.v0.models.AttributeDeletedV2 | io.flow.v0.models.CatalogUpserted | io.flow.v0.models.CatalogDeleted | io.flow.v0.models.SubcatalogUpserted | io.flow.v0.models.SubcatalogDeleted | io.flow.v0.models.
|
|
15451
|
+
type Event = (io.flow.v0.models.AuthorizationRetryUpserted | io.flow.v0.models.AuthorizationRetryDeleted | io.flow.v0.models.TestUpserted | io.flow.v0.models.GenerateLoad | io.flow.v0.models.AldoItemUpserted | io.flow.v0.models.AldoItemDeleted | io.flow.v0.models.AnshItemUpserted | io.flow.v0.models.AnshItemDeleted | io.flow.v0.models.TransactionUpserted | io.flow.v0.models.OrganizationTransactionUpserted | io.flow.v0.models.OrganizationTransactionDeleted | io.flow.v0.models.StatementUpserted | io.flow.v0.models.StatementDeleted | io.flow.v0.models.ChannelTransactionUpserted | io.flow.v0.models.ChannelTransactionDeleted | io.flow.v0.models.ChannelTransactionDeletedV2 | io.flow.v0.models.ChannelStatementUpserted | io.flow.v0.models.ChannelStatementDeleted | io.flow.v0.models.ChannelPayoutUpserted | io.flow.v0.models.ChannelPayoutDeleted | io.flow.v0.models.OrganizationPayoutUpserted | io.flow.v0.models.OrganizationPayoutDeleted | io.flow.v0.models.ChannelPendingPayoutTransactionUpserted | io.flow.v0.models.ChannelPendingPayoutTransactionDeleted | io.flow.v0.models.OrganizationPendingPayoutTransactionUpserted | io.flow.v0.models.OrganizationPendingPayoutTransactionDeleted | io.flow.v0.models.AttributeUpserted | io.flow.v0.models.AttributeDeleted | io.flow.v0.models.AttributeUpsertedV2 | io.flow.v0.models.AttributeDeletedV2 | io.flow.v0.models.CatalogUpserted | io.flow.v0.models.CatalogDeleted | io.flow.v0.models.SubcatalogUpserted | io.flow.v0.models.SubcatalogDeleted | io.flow.v0.models.SubcatalogItemUpserted | io.flow.v0.models.SubcatalogItemDeleted | io.flow.v0.models.CatalogStatisticsUpserted | io.flow.v0.models.CatalogStatisticsDeleted | io.flow.v0.models.ItemInserted | io.flow.v0.models.ItemUpdated | io.flow.v0.models.ItemDeleted | io.flow.v0.models.ChannelShopifyOrderStateUpserted | io.flow.v0.models.ChannelShopifyOrderStateDeleted | io.flow.v0.models.ChannelUpserted | io.flow.v0.models.ChannelDeleted | io.flow.v0.models.ChannelCurrencyUpserted | io.flow.v0.models.ChannelCurrencyDeleted | io.flow.v0.models.ChannelOrganizationUpserted | io.flow.v0.models.ChannelOrganizationDeleted | io.flow.v0.models.B2BInvoiceUpserted | io.flow.v0.models.B2BInvoiceDeleted | io.flow.v0.models.B2BCreditMemoUpserted | io.flow.v0.models.B2BCreditMemoDeleted | io.flow.v0.models.ConsumerInvoiceUpserted | io.flow.v0.models.ConsumerInvoiceDeleted | io.flow.v0.models.CreditMemoUpserted | io.flow.v0.models.CreditMemoDeleted | io.flow.v0.models.CrossdockShipmentUpserted | io.flow.v0.models.RateDeleted | io.flow.v0.models.RateUpserted | io.flow.v0.models.RateDeletedV3 | io.flow.v0.models.RateUpsertedV3 | io.flow.v0.models.CustomerUpserted | io.flow.v0.models.CustomerDeleted | io.flow.v0.models.CustomerAddressBookContactUpserted | io.flow.v0.models.CustomerAddressBookContactDeleted | io.flow.v0.models.AvailablePromotionsUpserted | io.flow.v0.models.AvailablePromotionsDeleted | io.flow.v0.models.AvailablePromotionsUpsertedV2 | io.flow.v0.models.AvailablePromotionsDeletedV2 | io.flow.v0.models.AllocationDeletedV2 | io.flow.v0.models.AllocationUpsertedV2 | io.flow.v0.models.CurrencyFormatDeleted | io.flow.v0.models.CurrencyFormatUpserted | io.flow.v0.models.ExperienceDeleted | io.flow.v0.models.ExperienceUpserted | io.flow.v0.models.ExperienceDeletedV2 | io.flow.v0.models.ExperienceUpsertedV2 | io.flow.v0.models.CountryStatusUpserted | io.flow.v0.models.CountryStatusDeleted | io.flow.v0.models.ExperiencePriceBookMappingDeleted | io.flow.v0.models.ExperiencePriceBookMappingUpserted | io.flow.v0.models.ExperienceLogisticsSettingsUpserted | io.flow.v0.models.ExperienceLogisticsSettingsDeleted | io.flow.v0.models.ItemMarginDeletedV2 | io.flow.v0.models.ItemMarginUpsertedV2 | io.flow.v0.models.ItemSalesMarginDeleted | io.flow.v0.models.ItemSalesMarginUpserted | io.flow.v0.models.LabelFormatDeleted | io.flow.v0.models.LabelFormatUpserted | io.flow.v0.models.OrderDeleted | io.flow.v0.models.OrderUpserted | io.flow.v0.models.OrderDeletedV2 | io.flow.v0.models.OrderUpsertedV2 | io.flow.v0.models.OrderIdentifierDeleted | io.flow.v0.models.OrderIdentifierUpserted | io.flow.v0.models.OrderIdentifierDeletedV2 | io.flow.v0.models.OrderIdentifierUpsertedV2 | io.flow.v0.models.OrderIdentifierUpsertedV3 | io.flow.v0.models.OrderReplacementUpserted | io.flow.v0.models.OrderReplacementDeleted | io.flow.v0.models.PricingDeleted | io.flow.v0.models.PricingUpserted | io.flow.v0.models.OrderServiceChangeRequest | io.flow.v0.models.FraudStatusChanged | io.flow.v0.models.CenterUpserted | io.flow.v0.models.CenterDeleted | io.flow.v0.models.ShippingConfigurationUpserted | io.flow.v0.models.ShippingConfigurationDeleted | io.flow.v0.models.TierUpsertedV2 | io.flow.v0.models.TierDeletedV2 | io.flow.v0.models.ShippingLaneUpserted | io.flow.v0.models.ShippingLaneDeleted | io.flow.v0.models.ShippingConfigurationItemAvailabilityUpserted | io.flow.v0.models.ShippingConfigurationItemAvailabilityDeleted | io.flow.v0.models.ShippingConfigurationItemShippingPricingUpserted | io.flow.v0.models.ShippingConfigurationItemShippingPricingDeleted | io.flow.v0.models.GeItemInserted | io.flow.v0.models.GeItemUpdated | io.flow.v0.models.GeItemDeleted | io.flow.v0.models.GeProductRestrictionResultUpserted | io.flow.v0.models.GeProductRestrictionResultDeleted | io.flow.v0.models.Hs6CodeUpserted | io.flow.v0.models.Hs6CodeDeleted | io.flow.v0.models.Hs10CodeUpserted | io.flow.v0.models.Hs10CodeDeleted | io.flow.v0.models.ItemOriginUpserted | io.flow.v0.models.ItemOriginDeleted | io.flow.v0.models.HarmonizedLandedCostUpserted | io.flow.v0.models.FullyHarmonizedItemUpserted | io.flow.v0.models.ImportCompletedV2 | io.flow.v0.models.ImportFailedV2 | io.flow.v0.models.LabelUpserted | io.flow.v0.models.LabelDeletedV2 | io.flow.v0.models.LabelUpsertedV2 | io.flow.v0.models.NotificationUpsertedV2 | io.flow.v0.models.NotificationDeletedV2 | io.flow.v0.models.ManifestedLabelUpserted | io.flow.v0.models.ManifestedLabelDeleted | io.flow.v0.models.LabelProcessingModificationUpserted | io.flow.v0.models.LabelProcessingModificationDeleted | io.flow.v0.models.MerchantApplicationUpserted | io.flow.v0.models.MerchantApplicationDeleted | io.flow.v0.models.CheckoutOptinResponsesUpserted | io.flow.v0.models.CheckoutOptinResponsesDeleted | io.flow.v0.models.BrowseOptinResponsesUpserted | io.flow.v0.models.BrowseOptinResponsesDeleted | io.flow.v0.models.OrderPlaced | io.flow.v0.models.OrderPlacedV2 | io.flow.v0.models.ReadyToFulfill | io.flow.v0.models.ReadyToFulfillV2 | io.flow.v0.models.MembershipUpsertedV2 | io.flow.v0.models.MembershipDeletedV2 | io.flow.v0.models.OrganizationUpserted | io.flow.v0.models.OrganizationDeleted | io.flow.v0.models.OrganizationUpsertedV2 | io.flow.v0.models.OrganizationDeletedV2 | io.flow.v0.models.OrganizationDefaultConfigurationsUpserted | io.flow.v0.models.OrganizationDefaultConfigurationsDeleted | io.flow.v0.models.EcommercePlatformUpserted | io.flow.v0.models.EcommercePlatformDeleted | io.flow.v0.models.OrganizationOnboardingStateUpserted | io.flow.v0.models.OrganizationOnboardingStateDeleted | io.flow.v0.models.AuthorizationDeletedV2 | io.flow.v0.models.AuthorizationStatusChanged | io.flow.v0.models.CardAuthorizationUpsertedV2 | io.flow.v0.models.CardAuthorizationDeletedV2 | io.flow.v0.models.OnlineAuthorizationUpsertedV2 | io.flow.v0.models.OnlineAuthorizationDeletedV2 | io.flow.v0.models.CaptureUpsertedV2 | io.flow.v0.models.CaptureDeleted | io.flow.v0.models.CardUpsertedV2 | io.flow.v0.models.CardDeleted | io.flow.v0.models.PaymentUpserted | io.flow.v0.models.PaymentDeleted | io.flow.v0.models.RefundUpsertedV2 | io.flow.v0.models.RefundDeletedV2 | io.flow.v0.models.RefundCaptureUpsertedV2 | io.flow.v0.models.ReversalUpserted | io.flow.v0.models.ReversalDeleted | io.flow.v0.models.CaptureIdentifierUpserted | io.flow.v0.models.CaptureIdentifierDeleted | io.flow.v0.models.RefundIdentifierUpserted | io.flow.v0.models.RefundIdentifierDeleted | io.flow.v0.models.VirtualCardCaptureUpserted | io.flow.v0.models.VirtualCardCaptureDeleted | io.flow.v0.models.VirtualCardRefundUpserted | io.flow.v0.models.VirtualCardRefundDeleted | io.flow.v0.models.PaymentRequestUpserted | io.flow.v0.models.PaymentRequestDeleted | io.flow.v0.models.PriceBookUpserted | io.flow.v0.models.PriceBookDeleted | io.flow.v0.models.PriceBookItemUpserted | io.flow.v0.models.PriceBookItemDeleted | io.flow.v0.models.ProductInserted | io.flow.v0.models.ProductUpdated | io.flow.v0.models.ProductDeleted | io.flow.v0.models.OrganizationRatesPublished | io.flow.v0.models.RatecardLaneUpserted | io.flow.v0.models.RatecardLaneDeleted | io.flow.v0.models.RatecardUpserted | io.flow.v0.models.RatecardDeleted | io.flow.v0.models.ProductRestrictionResultUpserted | io.flow.v0.models.ProductRestrictionResultDeleted | io.flow.v0.models.ReturnUpserted | io.flow.v0.models.ReturnDeleted | io.flow.v0.models.ReturnUpsertedV2 | io.flow.v0.models.ReturnDeletedV2 | io.flow.v0.models.ShopifyLocalizationSettingUpserted | io.flow.v0.models.ShopifyLocalizationSettingDeleted | io.flow.v0.models.TrackingLabelEventUpserted);
|
|
15149
15452
|
type ExpandableCard = (io.flow.v0.models.Card | io.flow.v0.models.CardReference | io.flow.v0.models.CardSummary);
|
|
15150
15453
|
type ExpandableCenter = (io.flow.v0.models.Center | io.flow.v0.models.CenterReference);
|
|
15151
15454
|
type ExpandableExperience = (io.flow.v0.models.Experience | io.flow.v0.models.ExperienceReference);
|
|
@@ -15262,6 +15565,7 @@ export const carrierChargeReason: PropTypes.Requireable<io.flow.v0.enums.Carrier
|
|
|
15262
15565
|
export const centerCapability: PropTypes.Requireable<io.flow.v0.enums.CenterCapability>;
|
|
15263
15566
|
export const changeType: PropTypes.Requireable<io.flow.v0.enums.ChangeType>;
|
|
15264
15567
|
export const channelCurrencyCapability: PropTypes.Requireable<io.flow.v0.enums.ChannelCurrencyCapability>;
|
|
15568
|
+
export const channelShopifyOrderStateReasonCode: PropTypes.Requireable<io.flow.v0.enums.ChannelShopifyOrderStateReasonCode>;
|
|
15265
15569
|
export const consumerInvoiceCustomerType: PropTypes.Requireable<io.flow.v0.enums.ConsumerInvoiceCustomerType>;
|
|
15266
15570
|
export const consumerInvoiceDocumentType: PropTypes.Requireable<io.flow.v0.enums.ConsumerInvoiceDocumentType>;
|
|
15267
15571
|
export const consumerInvoiceStatus: PropTypes.Requireable<io.flow.v0.enums.ConsumerInvoiceStatus>;
|
|
@@ -15346,6 +15650,7 @@ export const optinResponseType: PropTypes.Requireable<io.flow.v0.enums.OptinResp
|
|
|
15346
15650
|
export const orderChangeSource: PropTypes.Requireable<io.flow.v0.enums.OrderChangeSource>;
|
|
15347
15651
|
export const orderErrorCode: PropTypes.Requireable<io.flow.v0.enums.OrderErrorCode>;
|
|
15348
15652
|
export const orderMerchantOfRecord: PropTypes.Requireable<io.flow.v0.enums.OrderMerchantOfRecord>;
|
|
15653
|
+
export const orderPaymentSourceType: PropTypes.Requireable<io.flow.v0.enums.OrderPaymentSourceType>;
|
|
15349
15654
|
export const orderPaymentType: PropTypes.Requireable<io.flow.v0.enums.OrderPaymentType>;
|
|
15350
15655
|
export const orderPriceDetailComponentKey: PropTypes.Requireable<io.flow.v0.enums.OrderPriceDetailComponentKey>;
|
|
15351
15656
|
export const orderPriceDetailKey: PropTypes.Requireable<io.flow.v0.enums.OrderPriceDetailKey>;
|
|
@@ -15418,10 +15723,8 @@ export const statementAttachmentType: PropTypes.Requireable<io.flow.v0.enums.Sta
|
|
|
15418
15723
|
export const storedMethodUsageStep: PropTypes.Requireable<io.flow.v0.enums.StoredMethodUsageStep>;
|
|
15419
15724
|
export const strategy: PropTypes.Requireable<io.flow.v0.enums.Strategy>;
|
|
15420
15725
|
export const subcatalogItemStatus: PropTypes.Requireable<io.flow.v0.enums.SubcatalogItemStatus>;
|
|
15726
|
+
export const substatusCode: PropTypes.Requireable<io.flow.v0.enums.SubstatusCode>;
|
|
15421
15727
|
export const surchargeResponsibleParty: PropTypes.Requireable<io.flow.v0.enums.SurchargeResponsibleParty>;
|
|
15422
|
-
export const syncRecordFailureReason: PropTypes.Requireable<io.flow.v0.enums.SyncRecordFailureReason>;
|
|
15423
|
-
export const syncStreamType: PropTypes.Requireable<io.flow.v0.enums.SyncStreamType>;
|
|
15424
|
-
export const syncUnitOfTime: PropTypes.Requireable<io.flow.v0.enums.SyncUnitOfTime>;
|
|
15425
15728
|
export const taxApplicability: PropTypes.Requireable<io.flow.v0.enums.TaxApplicability>;
|
|
15426
15729
|
export const taxReportType: PropTypes.Requireable<io.flow.v0.enums.TaxReportType>;
|
|
15427
15730
|
export const taxVerificationResult: PropTypes.Requireable<io.flow.v0.enums.TaxVerificationResult>;
|
|
@@ -15512,6 +15815,8 @@ export const allocationV2: PropTypes.Requireable<io.flow.v0.models.AllocationV2>
|
|
|
15512
15815
|
export const amountMargin: PropTypes.Requireable<io.flow.v0.models.AmountMargin>;
|
|
15513
15816
|
export const amountMarginForm: PropTypes.Requireable<io.flow.v0.models.AmountMarginForm>;
|
|
15514
15817
|
export const analyticsExportType: PropTypes.Requireable<io.flow.v0.models.AnalyticsExportType>;
|
|
15818
|
+
export const anshItemDeleted: PropTypes.Requireable<io.flow.v0.models.AnshItemDeleted>;
|
|
15819
|
+
export const anshItemUpserted: PropTypes.Requireable<io.flow.v0.models.AnshItemUpserted>;
|
|
15515
15820
|
export const applePayMerchantValidationPayload: PropTypes.Requireable<io.flow.v0.models.ApplePayMerchantValidationPayload>;
|
|
15516
15821
|
export const applepaySdkCreateResultActionDetails: PropTypes.Requireable<io.flow.v0.models.ApplepaySdkCreateResultActionDetails>;
|
|
15517
15822
|
export const applepaySdkValidateResultActionDetails: PropTypes.Requireable<io.flow.v0.models.ApplepaySdkValidateResultActionDetails>;
|
|
@@ -15540,6 +15845,9 @@ export const authorizationResultActionNative: PropTypes.Requireable<io.flow.v0.m
|
|
|
15540
15845
|
export const authorizationResultActionPost: PropTypes.Requireable<io.flow.v0.models.AuthorizationResultActionPost>;
|
|
15541
15846
|
export const authorizationResultActionWait: PropTypes.Requireable<io.flow.v0.models.AuthorizationResultActionWait>;
|
|
15542
15847
|
export const authorizationResultDescription: PropTypes.Requireable<io.flow.v0.models.AuthorizationResultDescription>;
|
|
15848
|
+
export const authorizationRetry: PropTypes.Requireable<io.flow.v0.models.AuthorizationRetry>;
|
|
15849
|
+
export const authorizationRetryDeleted: PropTypes.Requireable<io.flow.v0.models.AuthorizationRetryDeleted>;
|
|
15850
|
+
export const authorizationRetryUpserted: PropTypes.Requireable<io.flow.v0.models.AuthorizationRetryUpserted>;
|
|
15543
15851
|
export const authorizationStatusChanged: PropTypes.Requireable<io.flow.v0.models.AuthorizationStatusChanged>;
|
|
15544
15852
|
export const authorizationVersion: PropTypes.Requireable<io.flow.v0.models.AuthorizationVersion>;
|
|
15545
15853
|
export const availableFilterStructured: PropTypes.Requireable<io.flow.v0.models.AvailableFilterStructured>;
|
|
@@ -15617,19 +15925,16 @@ export const cardUpsertedV2: PropTypes.Requireable<io.flow.v0.models.CardUpserte
|
|
|
15617
15925
|
export const cardVersion: PropTypes.Requireable<io.flow.v0.models.CardVersion>;
|
|
15618
15926
|
export const carrier: PropTypes.Requireable<io.flow.v0.models.Carrier>;
|
|
15619
15927
|
export const carrierReference: PropTypes.Requireable<io.flow.v0.models.CarrierReference>;
|
|
15928
|
+
export const carrierRestrictions: PropTypes.Requireable<io.flow.v0.models.CarrierRestrictions>;
|
|
15620
15929
|
export const carrierService: PropTypes.Requireable<io.flow.v0.models.CarrierService>;
|
|
15621
15930
|
export const cartReference: PropTypes.Requireable<io.flow.v0.models.CartReference>;
|
|
15622
15931
|
export const catalog: PropTypes.Requireable<io.flow.v0.models.Catalog>;
|
|
15623
15932
|
export const catalogDeleted: PropTypes.Requireable<io.flow.v0.models.CatalogDeleted>;
|
|
15624
|
-
export const catalogItemDeleted: PropTypes.Requireable<io.flow.v0.models.CatalogItemDeleted>;
|
|
15625
|
-
export const catalogItemDeletedV2: PropTypes.Requireable<io.flow.v0.models.CatalogItemDeletedV2>;
|
|
15626
15933
|
export const catalogItemDocument: PropTypes.Requireable<io.flow.v0.models.CatalogItemDocument>;
|
|
15627
15934
|
export const catalogItemDocumentImages: PropTypes.Requireable<io.flow.v0.models.CatalogItemDocumentImages>;
|
|
15628
15935
|
export const catalogItemExportType: PropTypes.Requireable<io.flow.v0.models.CatalogItemExportType>;
|
|
15629
15936
|
export const catalogItemReference: PropTypes.Requireable<io.flow.v0.models.CatalogItemReference>;
|
|
15630
15937
|
export const catalogItemSummary: PropTypes.Requireable<io.flow.v0.models.CatalogItemSummary>;
|
|
15631
|
-
export const catalogItemUpserted: PropTypes.Requireable<io.flow.v0.models.CatalogItemUpserted>;
|
|
15632
|
-
export const catalogItemUpsertedV2: PropTypes.Requireable<io.flow.v0.models.CatalogItemUpsertedV2>;
|
|
15633
15938
|
export const catalogPriceBookItemDocument: PropTypes.Requireable<io.flow.v0.models.CatalogPriceBookItemDocument>;
|
|
15634
15939
|
export const catalogReference: PropTypes.Requireable<io.flow.v0.models.CatalogReference>;
|
|
15635
15940
|
export const catalogStatistics: PropTypes.Requireable<io.flow.v0.models.CatalogStatistics>;
|
|
@@ -15672,6 +15977,11 @@ export const channelPendingPayoutTransactionDeleted: PropTypes.Requireable<io.fl
|
|
|
15672
15977
|
export const channelPendingPayoutTransactionUpserted: PropTypes.Requireable<io.flow.v0.models.ChannelPendingPayoutTransactionUpserted>;
|
|
15673
15978
|
export const channelRate: PropTypes.Requireable<io.flow.v0.models.ChannelRate>;
|
|
15674
15979
|
export const channelReference: PropTypes.Requireable<io.flow.v0.models.ChannelReference>;
|
|
15980
|
+
export const channelShopifyOrderState: PropTypes.Requireable<io.flow.v0.models.ChannelShopifyOrderState>;
|
|
15981
|
+
export const channelShopifyOrderStateDeleted: PropTypes.Requireable<io.flow.v0.models.ChannelShopifyOrderStateDeleted>;
|
|
15982
|
+
export const channelShopifyOrderStateReason: PropTypes.Requireable<io.flow.v0.models.ChannelShopifyOrderStateReason>;
|
|
15983
|
+
export const channelShopifyOrderStateUpserted: PropTypes.Requireable<io.flow.v0.models.ChannelShopifyOrderStateUpserted>;
|
|
15984
|
+
export const channelShopifyOrderSummary: PropTypes.Requireable<io.flow.v0.models.ChannelShopifyOrderSummary>;
|
|
15675
15985
|
export const channelStatement: PropTypes.Requireable<io.flow.v0.models.ChannelStatement>;
|
|
15676
15986
|
export const channelStatementDeleted: PropTypes.Requireable<io.flow.v0.models.ChannelStatementDeleted>;
|
|
15677
15987
|
export const channelStatementUpserted: PropTypes.Requireable<io.flow.v0.models.ChannelStatementUpserted>;
|
|
@@ -15957,6 +16267,11 @@ export const fulfillmentItemAllocationDetails: PropTypes.Requireable<io.flow.v0.
|
|
|
15957
16267
|
export const fulfillmentItemQuantity: PropTypes.Requireable<io.flow.v0.models.FulfillmentItemQuantity>;
|
|
15958
16268
|
export const fulfillmentLineCancelForm: PropTypes.Requireable<io.flow.v0.models.FulfillmentLineCancelForm>;
|
|
15959
16269
|
export const fullyHarmonizedItemUpserted: PropTypes.Requireable<io.flow.v0.models.FullyHarmonizedItemUpserted>;
|
|
16270
|
+
export const geItemDeleted: PropTypes.Requireable<io.flow.v0.models.GeItemDeleted>;
|
|
16271
|
+
export const geItemInserted: PropTypes.Requireable<io.flow.v0.models.GeItemInserted>;
|
|
16272
|
+
export const geItemUpdated: PropTypes.Requireable<io.flow.v0.models.GeItemUpdated>;
|
|
16273
|
+
export const geProductRestrictionResultDeleted: PropTypes.Requireable<io.flow.v0.models.GeProductRestrictionResultDeleted>;
|
|
16274
|
+
export const geProductRestrictionResultUpserted: PropTypes.Requireable<io.flow.v0.models.GeProductRestrictionResultUpserted>;
|
|
15960
16275
|
export const generateLoad: PropTypes.Requireable<io.flow.v0.models.GenerateLoad>;
|
|
15961
16276
|
export const genericError: PropTypes.Requireable<io.flow.v0.models.GenericError>;
|
|
15962
16277
|
export const geoForm: PropTypes.Requireable<io.flow.v0.models.GeoForm>;
|
|
@@ -16093,9 +16408,7 @@ export const link: PropTypes.Requireable<io.flow.v0.models.Link>;
|
|
|
16093
16408
|
export const local: PropTypes.Requireable<io.flow.v0.models.Local>;
|
|
16094
16409
|
export const localItem: PropTypes.Requireable<io.flow.v0.models.LocalItem>;
|
|
16095
16410
|
export const localItemAttributePricing: PropTypes.Requireable<io.flow.v0.models.LocalItemAttributePricing>;
|
|
16096
|
-
export const localItemDeleted: PropTypes.Requireable<io.flow.v0.models.LocalItemDeleted>;
|
|
16097
16411
|
export const localItemPricing: PropTypes.Requireable<io.flow.v0.models.LocalItemPricing>;
|
|
16098
|
-
export const localItemUpserted: PropTypes.Requireable<io.flow.v0.models.LocalItemUpserted>;
|
|
16099
16412
|
export const localPriceDetails: PropTypes.Requireable<io.flow.v0.models.LocalPriceDetails>;
|
|
16100
16413
|
export const localSession: PropTypes.Requireable<io.flow.v0.models.LocalSession>;
|
|
16101
16414
|
export const locale: PropTypes.Requireable<io.flow.v0.models.Locale>;
|
|
@@ -16444,7 +16757,6 @@ export const priceBookDeleted: PropTypes.Requireable<io.flow.v0.models.PriceBook
|
|
|
16444
16757
|
export const priceBookForm: PropTypes.Requireable<io.flow.v0.models.PriceBookForm>;
|
|
16445
16758
|
export const priceBookItem: PropTypes.Requireable<io.flow.v0.models.PriceBookItem>;
|
|
16446
16759
|
export const priceBookItemDeleted: PropTypes.Requireable<io.flow.v0.models.PriceBookItemDeleted>;
|
|
16447
|
-
export const priceBookItemExportOptions: PropTypes.Requireable<io.flow.v0.models.PriceBookItemExportOptions>;
|
|
16448
16760
|
export const priceBookItemExportType: PropTypes.Requireable<io.flow.v0.models.PriceBookItemExportType>;
|
|
16449
16761
|
export const priceBookItemForm: PropTypes.Requireable<io.flow.v0.models.PriceBookItemForm>;
|
|
16450
16762
|
export const priceBookItemQueryForm: PropTypes.Requireable<io.flow.v0.models.PriceBookItemQueryForm>;
|
|
@@ -16471,11 +16783,14 @@ export const pricingUpserted: PropTypes.Requireable<io.flow.v0.models.PricingUps
|
|
|
16471
16783
|
export const pricingVersion: PropTypes.Requireable<io.flow.v0.models.PricingVersion>;
|
|
16472
16784
|
export const processingEstimate: PropTypes.Requireable<io.flow.v0.models.ProcessingEstimate>;
|
|
16473
16785
|
export const product: PropTypes.Requireable<io.flow.v0.models.Product>;
|
|
16786
|
+
export const productDeleted: PropTypes.Requireable<io.flow.v0.models.ProductDeleted>;
|
|
16787
|
+
export const productInserted: PropTypes.Requireable<io.flow.v0.models.ProductInserted>;
|
|
16474
16788
|
export const productRestrictionResult: PropTypes.Requireable<io.flow.v0.models.ProductRestrictionResult>;
|
|
16475
16789
|
export const productRestrictionResultDeleted: PropTypes.Requireable<io.flow.v0.models.ProductRestrictionResultDeleted>;
|
|
16476
16790
|
export const productRestrictionResultUpserted: PropTypes.Requireable<io.flow.v0.models.ProductRestrictionResultUpserted>;
|
|
16477
16791
|
export const productTaxonomyCategory: PropTypes.Requireable<io.flow.v0.models.ProductTaxonomyCategory>;
|
|
16478
16792
|
export const productTaxonomyData: PropTypes.Requireable<io.flow.v0.models.ProductTaxonomyData>;
|
|
16793
|
+
export const productUpdated: PropTypes.Requireable<io.flow.v0.models.ProductUpdated>;
|
|
16479
16794
|
export const promotionTrigger: PropTypes.Requireable<io.flow.v0.models.PromotionTrigger>;
|
|
16480
16795
|
export const promotionTriggerForm: PropTypes.Requireable<io.flow.v0.models.PromotionTriggerForm>;
|
|
16481
16796
|
export const promotions: PropTypes.Requireable<io.flow.v0.models.Promotions>;
|
|
@@ -16726,17 +17041,6 @@ export const summaryShippingNotificationForm: PropTypes.Requireable<io.flow.v0.m
|
|
|
16726
17041
|
export const surchargeResponsiblePartyDisplay: PropTypes.Requireable<io.flow.v0.models.SurchargeResponsiblePartyDisplay>;
|
|
16727
17042
|
export const surchargeSetting: PropTypes.Requireable<io.flow.v0.models.SurchargeSetting>;
|
|
16728
17043
|
export const surchargeSettingDisplay: PropTypes.Requireable<io.flow.v0.models.SurchargeSettingDisplay>;
|
|
16729
|
-
export const syncDuration: PropTypes.Requireable<io.flow.v0.models.SyncDuration>;
|
|
16730
|
-
export const syncPendingRecord: PropTypes.Requireable<io.flow.v0.models.SyncPendingRecord>;
|
|
16731
|
-
export const syncRecord: PropTypes.Requireable<io.flow.v0.models.SyncRecord>;
|
|
16732
|
-
export const syncRecordFailure: PropTypes.Requireable<io.flow.v0.models.SyncRecordFailure>;
|
|
16733
|
-
export const syncRecordFailureForm: PropTypes.Requireable<io.flow.v0.models.SyncRecordFailureForm>;
|
|
16734
|
-
export const syncRecordForm: PropTypes.Requireable<io.flow.v0.models.SyncRecordForm>;
|
|
16735
|
-
export const syncStream: PropTypes.Requireable<io.flow.v0.models.SyncStream>;
|
|
16736
|
-
export const syncStreamForm: PropTypes.Requireable<io.flow.v0.models.SyncStreamForm>;
|
|
16737
|
-
export const syncStreamReference: PropTypes.Requireable<io.flow.v0.models.SyncStreamReference>;
|
|
16738
|
-
export const syncStreamSettings: PropTypes.Requireable<io.flow.v0.models.SyncStreamSettings>;
|
|
16739
|
-
export const syncStreamSettingsForm: PropTypes.Requireable<io.flow.v0.models.SyncStreamSettingsForm>;
|
|
16740
17044
|
export const tax: PropTypes.Requireable<io.flow.v0.models.Tax>;
|
|
16741
17045
|
export const taxRegistration: PropTypes.Requireable<io.flow.v0.models.TaxRegistration>;
|
|
16742
17046
|
export const taxRegistrationForm: PropTypes.Requireable<io.flow.v0.models.TaxRegistrationForm>;
|