@flowio/types 11.24.108 → 11.24.110
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/dist/api-internal.d.ts +381 -277
- package/dist/api.d.ts +496 -92
- package/package.json +2 -2
- package/src/api-internal.ts +555 -336
- package/src/api.ts +807 -235
package/dist/api-internal.d.ts
CHANGED
|
@@ -1093,262 +1093,6 @@ declare namespace io.flow.RESERVED_WORD_export.v0.unions {
|
|
|
1093
1093
|
type ExportDelivery = io.flow.RESERVED_WORD_export.v0.models.ExportDeliveryEmail;
|
|
1094
1094
|
type ExportType = io.flow.RESERVED_WORD_export.v0.models.AccountTransactionsExportType | io.flow.RESERVED_WORD_export.v0.models.AccountOrdersExportType | io.flow.RESERVED_WORD_export.v0.models.AnalyticsExportType | io.flow.RESERVED_WORD_export.v0.models.CatalogItemExportType | io.flow.RESERVED_WORD_export.v0.models.ExperienceExportType | io.flow.RESERVED_WORD_export.v0.models.HarmonizationOverviewExportType | io.flow.RESERVED_WORD_export.v0.models.HarmonizationHs6ExportType | io.flow.RESERVED_WORD_export.v0.models.HarmonizationHs10ExportType | io.flow.RESERVED_WORD_export.v0.models.HarmonizationTariffCodesExportType | io.flow.RESERVED_WORD_export.v0.models.UnharmonizedItemExportType | io.flow.RESERVED_WORD_export.v0.models.OrderExportType | io.flow.RESERVED_WORD_export.v0.models.PriceBookItemExportType | io.flow.RESERVED_WORD_export.v0.models.SolidusProductExportType | io.flow.RESERVED_WORD_export.v0.models.SolidusVariantExportType | io.flow.RESERVED_WORD_export.v0.models.LocalizedItemPricesExportType | io.flow.RESERVED_WORD_export.v0.models.MarketingFeedsExportType | io.flow.RESERVED_WORD_export.v0.models.ExclusionRulesExportType;
|
|
1095
1095
|
}
|
|
1096
|
-
declare namespace io.flow.flexe.v0.enums {
|
|
1097
|
-
type FlexeAttachmentType = 'shipping_label' | 'packing_slip' | 'packing_slip_letter';
|
|
1098
|
-
type FlexeNotification = 'receipt' | 'shipment';
|
|
1099
|
-
type FlexeShipmentType = 'fulfillment_order' | 'retail_fulfillment_order' | 'carton_pick_delivery' | 'delivery' | 'container_delivery';
|
|
1100
|
-
type FlexeStatus = 'in_transit' | 'completed';
|
|
1101
|
-
}
|
|
1102
|
-
declare namespace io.flow.flexe.v0.models {
|
|
1103
|
-
interface BillOfLading {
|
|
1104
|
-
readonly type: string;
|
|
1105
|
-
readonly gs1us?: io.flow.flexe.v0.models.Gs1Us;
|
|
1106
|
-
}
|
|
1107
|
-
interface BillTo {
|
|
1108
|
-
readonly name: string;
|
|
1109
|
-
readonly address_1: string;
|
|
1110
|
-
readonly locality: string;
|
|
1111
|
-
readonly region: string;
|
|
1112
|
-
readonly postal_code: string;
|
|
1113
|
-
readonly country: string;
|
|
1114
|
-
readonly address_2?: string;
|
|
1115
|
-
readonly address_3?: string;
|
|
1116
|
-
}
|
|
1117
|
-
interface CartonPickDeliveryDetails {
|
|
1118
|
-
readonly shipment_uuid?: string;
|
|
1119
|
-
readonly carrier?: string;
|
|
1120
|
-
readonly carrier_id?: string;
|
|
1121
|
-
}
|
|
1122
|
-
interface ContainerDeliveryDetails {
|
|
1123
|
-
readonly purchase_order: string;
|
|
1124
|
-
readonly container_number?: string;
|
|
1125
|
-
readonly seal_number?: string;
|
|
1126
|
-
readonly vendor?: string;
|
|
1127
|
-
readonly expected_inventory: io.flow.flexe.v0.models.InventoryDetails[];
|
|
1128
|
-
readonly received_inventory: io.flow.flexe.v0.models.InventoryDetails[];
|
|
1129
|
-
readonly damaged_inventory: io.flow.flexe.v0.models.InventoryDetails[];
|
|
1130
|
-
readonly quantities_by_inventory: Record<string, io.flow.flexe.v0.models.QuantityByInventory>;
|
|
1131
|
-
}
|
|
1132
|
-
interface DeliveryDetails {
|
|
1133
|
-
readonly shipment_uuid?: string;
|
|
1134
|
-
readonly trailer_number?: string;
|
|
1135
|
-
readonly pallets: io.flow.flexe.v0.models.Pallet[];
|
|
1136
|
-
readonly quantities_by_inventory: Record<string, io.flow.flexe.v0.models.QuantityByInventory>;
|
|
1137
|
-
}
|
|
1138
|
-
interface Error {
|
|
1139
|
-
readonly url: string;
|
|
1140
|
-
readonly client_request_id: string;
|
|
1141
|
-
readonly generated_at: string;
|
|
1142
|
-
readonly error: string;
|
|
1143
|
-
}
|
|
1144
|
-
interface FlexeAttachment {
|
|
1145
|
-
readonly type: io.flow.flexe.v0.enums.FlexeAttachmentType;
|
|
1146
|
-
readonly display_name: string;
|
|
1147
|
-
readonly url: string;
|
|
1148
|
-
}
|
|
1149
|
-
interface FlexeEcommerceFulfillment {
|
|
1150
|
-
readonly url: string;
|
|
1151
|
-
readonly client_request_id: string;
|
|
1152
|
-
readonly generated_at: string;
|
|
1153
|
-
readonly data: io.flow.flexe.v0.models.FlexeEcommerceFulfillmentData;
|
|
1154
|
-
readonly errors: io.flow.flexe.v0.models.FlexeEcommerceFulfillmentErrors[];
|
|
1155
|
-
}
|
|
1156
|
-
interface FlexeEcommerceFulfillmentData {
|
|
1157
|
-
readonly import_id: string;
|
|
1158
|
-
readonly succeeded_uuids: string[];
|
|
1159
|
-
readonly failed_uuids: string[];
|
|
1160
|
-
readonly errors: string[];
|
|
1161
|
-
}
|
|
1162
|
-
interface FlexeEcommerceFulfillmentErrors {
|
|
1163
|
-
readonly status: string;
|
|
1164
|
-
readonly title: string;
|
|
1165
|
-
readonly detail: string;
|
|
1166
|
-
readonly source?: string;
|
|
1167
|
-
}
|
|
1168
|
-
interface FlexeEcommerceFulfillmentForm {
|
|
1169
|
-
readonly reservation_id: number;
|
|
1170
|
-
readonly client_request_id: string;
|
|
1171
|
-
readonly request: io.flow.flexe.v0.models.Orders;
|
|
1172
|
-
}
|
|
1173
|
-
interface FlexeInventoryData {
|
|
1174
|
-
readonly sku: string;
|
|
1175
|
-
readonly quantity: string;
|
|
1176
|
-
readonly unit: string;
|
|
1177
|
-
}
|
|
1178
|
-
interface FlexeRetailAttachment {
|
|
1179
|
-
readonly display_name: string;
|
|
1180
|
-
readonly url: string;
|
|
1181
|
-
}
|
|
1182
|
-
interface FlexeRetailFulfillment {
|
|
1183
|
-
readonly url: string;
|
|
1184
|
-
readonly client_request_id: string;
|
|
1185
|
-
readonly generated_at: string;
|
|
1186
|
-
readonly data: io.flow.flexe.v0.models.FlexeRetailFulfillmentData;
|
|
1187
|
-
readonly errors?: io.flow.flexe.v0.models.FlexeRetailFulfillmentErrors[];
|
|
1188
|
-
}
|
|
1189
|
-
interface FlexeRetailFulfillmentData {
|
|
1190
|
-
readonly id: string;
|
|
1191
|
-
readonly purchase_order_uuid: string;
|
|
1192
|
-
readonly status: string;
|
|
1193
|
-
}
|
|
1194
|
-
interface FlexeRetailFulfillmentErrors {
|
|
1195
|
-
readonly type: string;
|
|
1196
|
-
readonly message: string;
|
|
1197
|
-
}
|
|
1198
|
-
interface FlexeRetailFulfillmentForm {
|
|
1199
|
-
readonly reservation_id: number;
|
|
1200
|
-
readonly client_request_id?: string;
|
|
1201
|
-
readonly request: io.flow.flexe.v0.models.RetailOrder;
|
|
1202
|
-
}
|
|
1203
|
-
interface FulfillmentOrderDetails {
|
|
1204
|
-
readonly shipment_uuid: string;
|
|
1205
|
-
readonly carrier?: string;
|
|
1206
|
-
readonly carrier_id?: string;
|
|
1207
|
-
}
|
|
1208
|
-
interface Gs1Us {
|
|
1209
|
-
readonly number: string;
|
|
1210
|
-
readonly ship_to?: io.flow.flexe.v0.models.Gs1UsShipTo;
|
|
1211
|
-
readonly bill_to?: io.flow.flexe.v0.models.BillTo;
|
|
1212
|
-
}
|
|
1213
|
-
interface Gs1UsShipTo {
|
|
1214
|
-
readonly cid_number?: string;
|
|
1215
|
-
readonly location_number?: string;
|
|
1216
|
-
readonly free_on_board?: boolean;
|
|
1217
|
-
}
|
|
1218
|
-
interface Inventory {
|
|
1219
|
-
readonly url: string;
|
|
1220
|
-
readonly client_request_id: string;
|
|
1221
|
-
readonly generated_at: string;
|
|
1222
|
-
readonly data: Record<string, io.flow.flexe.v0.models.InventoryDetails>;
|
|
1223
|
-
}
|
|
1224
|
-
interface InventoryCount {
|
|
1225
|
-
readonly amount: number;
|
|
1226
|
-
readonly unit: string;
|
|
1227
|
-
}
|
|
1228
|
-
interface InventoryData {
|
|
1229
|
-
readonly pallet: io.flow.flexe.v0.models.InventoryCount;
|
|
1230
|
-
readonly carton?: io.flow.flexe.v0.models.InventoryCount;
|
|
1231
|
-
readonly each?: io.flow.flexe.v0.models.InventoryCount;
|
|
1232
|
-
}
|
|
1233
|
-
interface InventoryDetails {
|
|
1234
|
-
readonly key: Record<string, io.flow.flexe.v0.models.Sku>;
|
|
1235
|
-
}
|
|
1236
|
-
interface LadingQuantity {
|
|
1237
|
-
readonly num_pallets: number;
|
|
1238
|
-
}
|
|
1239
|
-
interface Order {
|
|
1240
|
-
readonly shipment_uuid: string;
|
|
1241
|
-
readonly purchase_order: string;
|
|
1242
|
-
readonly carrier: string;
|
|
1243
|
-
readonly service_type: string;
|
|
1244
|
-
readonly carrier_assigned_id: string;
|
|
1245
|
-
readonly name: string;
|
|
1246
|
-
readonly address_1: string;
|
|
1247
|
-
readonly address_2?: string;
|
|
1248
|
-
readonly address_3?: string;
|
|
1249
|
-
readonly city: string;
|
|
1250
|
-
readonly state: string;
|
|
1251
|
-
readonly postal_code: string;
|
|
1252
|
-
readonly phone?: string;
|
|
1253
|
-
readonly instructions?: string;
|
|
1254
|
-
readonly inventory_data: io.flow.flexe.v0.models.FlexeInventoryData[];
|
|
1255
|
-
readonly attachments: io.flow.flexe.v0.models.FlexeAttachment[];
|
|
1256
|
-
}
|
|
1257
|
-
interface Orders {
|
|
1258
|
-
readonly orders: io.flow.flexe.v0.models.Order[];
|
|
1259
|
-
}
|
|
1260
|
-
interface Pallet {
|
|
1261
|
-
readonly pallet_id: string;
|
|
1262
|
-
readonly sku: string;
|
|
1263
|
-
readonly quantity: number;
|
|
1264
|
-
readonly packaging: string;
|
|
1265
|
-
}
|
|
1266
|
-
interface PurchaseOrder {
|
|
1267
|
-
readonly retail_fulfillment_order_id: string;
|
|
1268
|
-
readonly bill_of_lading_number: string;
|
|
1269
|
-
readonly purchase_order_uuid: string;
|
|
1270
|
-
readonly pickup_window_start: string;
|
|
1271
|
-
readonly pickup_window_end: string;
|
|
1272
|
-
readonly tags: string[];
|
|
1273
|
-
}
|
|
1274
|
-
interface QuantityByInventory {
|
|
1275
|
-
readonly received: io.flow.flexe.v0.models.InventoryData;
|
|
1276
|
-
readonly expected?: io.flow.flexe.v0.models.InventoryData;
|
|
1277
|
-
readonly damaged?: io.flow.flexe.v0.models.InventoryData;
|
|
1278
|
-
}
|
|
1279
|
-
interface ReceiptNotification {
|
|
1280
|
-
readonly shipment_id: string;
|
|
1281
|
-
readonly shipment_type: io.flow.flexe.v0.enums.FlexeShipmentType;
|
|
1282
|
-
readonly reservation_id: string;
|
|
1283
|
-
readonly status: io.flow.flexe.v0.enums.FlexeStatus;
|
|
1284
|
-
readonly delivery_details?: io.flow.flexe.v0.models.DeliveryDetails;
|
|
1285
|
-
readonly container_delivery_details?: io.flow.flexe.v0.models.ContainerDeliveryDetails;
|
|
1286
|
-
}
|
|
1287
|
-
interface RetailFulfillmentOrderDetails {
|
|
1288
|
-
readonly master_bill_of_lading_number: string;
|
|
1289
|
-
readonly scac: string;
|
|
1290
|
-
readonly pro_number: string;
|
|
1291
|
-
readonly purchase_orders: io.flow.flexe.v0.models.PurchaseOrder[];
|
|
1292
|
-
readonly lading_quantity: io.flow.flexe.v0.models.LadingQuantity;
|
|
1293
|
-
}
|
|
1294
|
-
interface RetailInventoryData {
|
|
1295
|
-
readonly sku: string;
|
|
1296
|
-
readonly quantity: number;
|
|
1297
|
-
readonly unit: string;
|
|
1298
|
-
readonly attachments?: io.flow.flexe.v0.models.FlexeRetailAttachment[];
|
|
1299
|
-
}
|
|
1300
|
-
interface RetailOrder {
|
|
1301
|
-
readonly order: io.flow.flexe.v0.models.RetailOrderData;
|
|
1302
|
-
}
|
|
1303
|
-
interface RetailOrderData {
|
|
1304
|
-
readonly purchase_order_uuid: string;
|
|
1305
|
-
readonly bill_of_lading: io.flow.flexe.v0.models.BillOfLading;
|
|
1306
|
-
readonly inventory_data: io.flow.flexe.v0.models.RetailInventoryData[];
|
|
1307
|
-
readonly ship_within: io.flow.flexe.v0.models.ShipWithin;
|
|
1308
|
-
readonly ship_to: io.flow.flexe.v0.models.ShipTo;
|
|
1309
|
-
readonly build_by?: string;
|
|
1310
|
-
readonly instrunctions?: string;
|
|
1311
|
-
readonly routing_details_id?: string;
|
|
1312
|
-
readonly destination_type?: string;
|
|
1313
|
-
}
|
|
1314
|
-
interface ShipTo {
|
|
1315
|
-
readonly name: string;
|
|
1316
|
-
readonly address_1: string;
|
|
1317
|
-
readonly locality: string;
|
|
1318
|
-
readonly region: string;
|
|
1319
|
-
readonly postal_code: string;
|
|
1320
|
-
readonly country: string;
|
|
1321
|
-
readonly address_2?: string;
|
|
1322
|
-
readonly address_3?: string;
|
|
1323
|
-
}
|
|
1324
|
-
interface ShipWithin {
|
|
1325
|
-
readonly start: string;
|
|
1326
|
-
readonly end: string;
|
|
1327
|
-
}
|
|
1328
|
-
interface ShipmentDeliveryDetails {
|
|
1329
|
-
readonly shipment_uuid?: string;
|
|
1330
|
-
}
|
|
1331
|
-
interface ShipmentNotification {
|
|
1332
|
-
readonly shipment_id: string;
|
|
1333
|
-
readonly shipment_type: io.flow.flexe.v0.enums.FlexeShipmentType;
|
|
1334
|
-
readonly reservation_id: string;
|
|
1335
|
-
readonly status: io.flow.flexe.v0.enums.FlexeStatus;
|
|
1336
|
-
readonly fulfillment_order_details?: io.flow.flexe.v0.models.FulfillmentOrderDetails;
|
|
1337
|
-
readonly retail_fulfillment_order_details?: io.flow.flexe.v0.models.RetailFulfillmentOrderDetails;
|
|
1338
|
-
readonly delivery_details?: io.flow.flexe.v0.models.ShipmentDeliveryDetails;
|
|
1339
|
-
readonly carton_pick_delivery_details?: io.flow.flexe.v0.models.CartonPickDeliveryDetails;
|
|
1340
|
-
}
|
|
1341
|
-
interface Sku {
|
|
1342
|
-
readonly sku: string;
|
|
1343
|
-
readonly description: string;
|
|
1344
|
-
readonly summary: Record<string, io.flow.flexe.v0.models.SkuSummary>;
|
|
1345
|
-
}
|
|
1346
|
-
interface SkuSummary {
|
|
1347
|
-
readonly key: string;
|
|
1348
|
-
readonly quantity: number;
|
|
1349
|
-
readonly unit: string;
|
|
1350
|
-
}
|
|
1351
|
-
}
|
|
1352
1096
|
declare namespace io.flow.payment.v0.enums {
|
|
1353
1097
|
type AddressVerificationResultFieldCode = 'matched' | 'not_available' | 'not_checked' | 'not_matched';
|
|
1354
1098
|
type AuthorizationDeclineCode = 'expired' | 'invalid_name' | 'invalid_number' | 'invalid_expiration' | 'invalid_address' | 'invalid_token_type' | 'invalid_token' | 'no_account' | 'avs' | 'cvv' | 'fraud' | 'duplicate' | 'not_supported' | 'unknown' | 'online_payment_error';
|
|
@@ -3663,6 +3407,9 @@ declare namespace io.flow.external.paypal.v1.enums {
|
|
|
3663
3407
|
type PaymentPattern = 'CUSTOMER_PRESENT_ONETIME_PURCHASE' | 'CUSTOMER_NOT_PRESENT_RECURRING' | 'CUSTOMER_PRESENT_RECURRING_FIRST' | 'CUSTOMER_PRESENT_ONETIME_PURCHASE_VAULTED' | 'CUSTOMER_NOT_PRESENT_ONETIME_PURCHASE_VAULTED';
|
|
3664
3408
|
type ProductReceived = 'YES' | 'NO' | 'RETURNED';
|
|
3665
3409
|
type RefundState = 'pending' | 'completed' | 'cancelled' | 'failed';
|
|
3410
|
+
type ReportingBalanceAffectingRecordsOnly = 'Y' | 'N';
|
|
3411
|
+
type ReportingTransactionField = 'transaction_info' | 'payer_info' | 'shipping_info' | 'auction_info' | 'cart_info' | 'incentive_info' | 'store_info';
|
|
3412
|
+
type ReportingTransactionStatus = 'D' | 'P' | 'S' | 'V';
|
|
3666
3413
|
type ReturnAcknowledgementType = 'ITEM_RECEIVED' | 'ITEM_NOT_RECEIVED' | 'DAMAGED' | 'EMPTY_PACKAGE_OR_DIFFERENT' | 'MISSING_ITEMS';
|
|
3667
3414
|
type ReturnMode = 'SHIPPED' | 'IN_PERSON';
|
|
3668
3415
|
type SaleState = 'pending' | 'completed' | 'denied' | 'partially_refunded' | 'refunded';
|
|
@@ -4006,6 +3753,28 @@ declare namespace io.flow.external.paypal.v1.models {
|
|
|
4006
3753
|
readonly amount: io.flow.external.paypal.v1.models.SimpleAmount;
|
|
4007
3754
|
readonly invoice_number: string;
|
|
4008
3755
|
}
|
|
3756
|
+
interface ReportingTransaction {
|
|
3757
|
+
readonly transaction_details: io.flow.external.paypal.v1.models.ReportingTransactionDetails[];
|
|
3758
|
+
readonly links: io.flow.external.paypal.v1.models.Link[];
|
|
3759
|
+
}
|
|
3760
|
+
interface ReportingTransactionDetails {
|
|
3761
|
+
readonly transaction_info: io.flow.external.paypal.v1.models.ReportingTransactionInfo;
|
|
3762
|
+
}
|
|
3763
|
+
interface ReportingTransactionInfo {
|
|
3764
|
+
readonly paypal_account_id?: string;
|
|
3765
|
+
readonly transaction_id?: string;
|
|
3766
|
+
readonly paypal_reference_id?: string;
|
|
3767
|
+
readonly paypal_reference_id_type?: string;
|
|
3768
|
+
readonly transaction_event_code: string;
|
|
3769
|
+
readonly transaction_initiation_date: string;
|
|
3770
|
+
readonly transaction_updated_date: string;
|
|
3771
|
+
readonly transaction_status: io.flow.external.paypal.v1.enums.ReportingTransactionStatus;
|
|
3772
|
+
readonly transaction_subject?: string;
|
|
3773
|
+
readonly invoice_id: string;
|
|
3774
|
+
readonly custom_field?: string;
|
|
3775
|
+
readonly protection_eligibility?: string;
|
|
3776
|
+
readonly instrument_type?: string;
|
|
3777
|
+
}
|
|
4009
3778
|
interface ReturnDetails {
|
|
4010
3779
|
readonly return_time?: string;
|
|
4011
3780
|
readonly mode?: io.flow.external.paypal.v1.enums.ReturnMode;
|
|
@@ -4394,7 +4163,7 @@ declare namespace io.flow.shopify.markets.internal.v0.enums {
|
|
|
4394
4163
|
type AnyDangerousGoods = 'yes' | 'no' | 'i_dont_know';
|
|
4395
4164
|
type ApiCallReferenceId = 'duty_rates_data_event' | 'integration_test' | 'unit_test';
|
|
4396
4165
|
type ChannelOrderFulfillmentStatusCode = 'unfulfilled' | 'fulfilled' | 'partial' | 'cancelled';
|
|
4397
|
-
type GraphqlServiceTypes = 'order_update_mutation' | 'shipping_address_validation' | 'bulk_publication_status' | 'country_catalog_sync' | 'inventory_item' | 'product_bundle' | 'shopify_location' | 'shopify_order' | 'sync_product_catalog';
|
|
4166
|
+
type GraphqlServiceTypes = 'order_update_mutation' | 'shipping_address_validation' | 'bulk_publication_status' | 'country_catalog_sync' | 'inventory_item' | 'product_bundle' | 'shopify_location' | 'shopify_order' | 'sync_product_catalog' | 'shopify_webhook';
|
|
4398
4167
|
type ProductStatus = 'active' | 'archived' | 'draft';
|
|
4399
4168
|
type ShopifyMarketsDangerousGoods = 'aerosols' | 'air_bag_inflators_or_seat_belt_pretensioners' | 'alcoholic_beverages_containing_more_than_24_percent_alcohol_by_volume' | 'batteries' | 'carbon_dioxide_or_dry_ice' | 'corrosives' | 'cannabidiol_products' | 'cologne_or_perfume' | 'currency_or_gift_cards_or_monetary_instruments' | 'exotic_leather_goods' | 'environmental_waste' | 'explosives_or_ammunition' | 'flammable_liquids' | 'gases' | 'hazardous_or_combustible_materials' | 'infectious_or_biological_substances' | 'knives' | 'matches_or_lighter_or_lighter_refills' | 'nail_polish' | 'oxidizing_materials_or_organic_peroxides' | 'pornography' | 'prohibited_carriage' | 'pesticides_or_toxic_herbicides_or_insecticides_or_poisonous_toxic_substances';
|
|
4400
4169
|
type ShopifyMarketsHtsNumberAvailable = 'yes' | 'no' | 'i_dont_know';
|
|
@@ -5071,6 +4840,10 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
5071
4840
|
interface GraphqlMeasurement {
|
|
5072
4841
|
readonly weight?: io.flow.shopify.external.v0.models.GraphqlWeight;
|
|
5073
4842
|
}
|
|
4843
|
+
interface GraphqlMetafield {
|
|
4844
|
+
readonly key: string;
|
|
4845
|
+
readonly value: string;
|
|
4846
|
+
}
|
|
5074
4847
|
interface GraphqlOption {
|
|
5075
4848
|
readonly id: string;
|
|
5076
4849
|
readonly values: string[];
|
|
@@ -5095,6 +4868,8 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
5095
4868
|
readonly createdAt: string;
|
|
5096
4869
|
readonly updatedAt: string;
|
|
5097
4870
|
readonly hasVariantsThatRequiresComponents?: boolean;
|
|
4871
|
+
readonly category?: io.flow.shopify.external.v0.models.GraphqlTaxonomyCategory;
|
|
4872
|
+
readonly metafields?: io.flow.shopify.external.v0.models.GraphqlMetafield[];
|
|
5098
4873
|
}
|
|
5099
4874
|
interface GraphqlProductImage {
|
|
5100
4875
|
readonly id: string;
|
|
@@ -5115,6 +4890,10 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
5115
4890
|
readonly image?: io.flow.shopify.external.v0.models.GraphqlVariantImage;
|
|
5116
4891
|
readonly inventoryItem: io.flow.shopify.external.v0.models.GraphqlInventoryItem;
|
|
5117
4892
|
}
|
|
4893
|
+
interface GraphqlTaxonomyCategory {
|
|
4894
|
+
readonly name: string;
|
|
4895
|
+
readonly fullName: string;
|
|
4896
|
+
}
|
|
5118
4897
|
interface GraphqlVariantImage {
|
|
5119
4898
|
readonly id: string;
|
|
5120
4899
|
}
|
|
@@ -5220,6 +4999,7 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
5220
4999
|
readonly created_at: string;
|
|
5221
5000
|
readonly updated_at: string;
|
|
5222
5001
|
readonly has_variants_that_requires_components?: boolean;
|
|
5002
|
+
readonly category?: io.flow.product.v0.models.ProductTaxonomyCategory;
|
|
5223
5003
|
}
|
|
5224
5004
|
interface ProductDelete {
|
|
5225
5005
|
readonly id: number;
|
|
@@ -8411,11 +8191,13 @@ declare namespace io.flow.ratecard.v0.models {
|
|
|
8411
8191
|
readonly q: string;
|
|
8412
8192
|
readonly dimensions: io.flow.ratecard.v0.models.EstimatedDimensions;
|
|
8413
8193
|
readonly position: number;
|
|
8194
|
+
readonly block_bulk_update?: boolean;
|
|
8414
8195
|
}
|
|
8415
8196
|
interface DimensionEstimateForm {
|
|
8416
8197
|
readonly q: string;
|
|
8417
8198
|
readonly dimensions: io.flow.ratecard.v0.models.EstimatedDimensions;
|
|
8418
8199
|
readonly position?: number;
|
|
8200
|
+
readonly block_bulk_update?: boolean;
|
|
8419
8201
|
}
|
|
8420
8202
|
interface DimensionEstimateVersion {
|
|
8421
8203
|
readonly id: string;
|
|
@@ -9366,7 +9148,27 @@ declare namespace io.flow.reference.v0.models {
|
|
|
9366
9148
|
readonly offset: number;
|
|
9367
9149
|
}
|
|
9368
9150
|
}
|
|
9151
|
+
declare namespace io.flow.product.v0.models {
|
|
9152
|
+
interface Product {
|
|
9153
|
+
readonly organization_id: string;
|
|
9154
|
+
readonly number: string;
|
|
9155
|
+
readonly taxonomy_category?: io.flow.product.v0.models.ProductTaxonomyCategory;
|
|
9156
|
+
readonly taxonomy_data?: io.flow.product.v0.models.ProductTaxonomyData[];
|
|
9157
|
+
readonly item_numbers: string[];
|
|
9158
|
+
readonly updated_at: string;
|
|
9159
|
+
readonly deleted_at?: string;
|
|
9160
|
+
}
|
|
9161
|
+
interface ProductTaxonomyCategory {
|
|
9162
|
+
readonly name: string;
|
|
9163
|
+
readonly full_name: string;
|
|
9164
|
+
}
|
|
9165
|
+
interface ProductTaxonomyData {
|
|
9166
|
+
readonly key: string;
|
|
9167
|
+
readonly value: string[];
|
|
9168
|
+
}
|
|
9169
|
+
}
|
|
9369
9170
|
declare namespace io.flow.tracking.v0.enums {
|
|
9171
|
+
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';
|
|
9370
9172
|
type TrackingStatus = 'label_created' | 'pending' | 'info_received' | 'picked_up' | 'in_transit' | 'out_for_delivery' | 'attempt_fail' | 'delivered' | 'exception' | 'returned' | 'expired';
|
|
9371
9173
|
}
|
|
9372
9174
|
declare namespace io.flow.tracking.v0.models {
|
|
@@ -10178,7 +9980,7 @@ declare namespace io.flow.billing.v0.enums {
|
|
|
10178
9980
|
type PayoutStatusFailureCode = 'invalid_account_number' | 'account_closed' | 'could_not_process';
|
|
10179
9981
|
type PendingPayoutTransactionReasonCode = 'waiting_for_full_refund' | 'waiting_for_fulfillment' | 'waiting_for_in_transit' | 'waiting_for_next_payout_date' | 'waiting_for_tracking_info' | 'waiting_for_positive_account_balance' | 'unfulfilled_amount_greater_than_negative_balance' | 'account_payment_hold';
|
|
10180
9982
|
type StatementAttachmentType = 'csv';
|
|
10181
|
-
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';
|
|
9983
|
+
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' | 'order_fx' | 'ge_revenue_share' | 'tax_duty_delta';
|
|
10182
9984
|
type TrueupSource = 'flow' | 'channel' | 'dhl-parcel' | 'dhl' | 'ups';
|
|
10183
9985
|
type WithholdingDeductionType = 'tax' | 'duty' | 'freight' | 'insurance';
|
|
10184
9986
|
}
|
|
@@ -11722,6 +11524,35 @@ declare namespace io.flow.fraud.v0.models {
|
|
|
11722
11524
|
declare namespace io.flow.fraud.v0.unions {
|
|
11723
11525
|
type FraudOrderReference = io.flow.fraud.v0.models.FraudFlowOrderReference | io.flow.fraud.v0.models.FraudPaymentRequestReference;
|
|
11724
11526
|
}
|
|
11527
|
+
declare namespace io.flow.sellability.v0.enums {
|
|
11528
|
+
type RuleEffectType = 'market' | 'dhl' | 'dhl_ecommerce' | 'ups';
|
|
11529
|
+
}
|
|
11530
|
+
declare namespace io.flow.sellability.v0.models {
|
|
11531
|
+
interface ProductSellability {
|
|
11532
|
+
readonly organization_id: string;
|
|
11533
|
+
readonly product_id?: string;
|
|
11534
|
+
readonly product_correlation_id: string;
|
|
11535
|
+
readonly restricted_regions: io.flow.sellability.v0.models.SellablilityRegionResult[];
|
|
11536
|
+
readonly in_review_regions: io.flow.sellability.v0.models.SellablilityRegionResult[];
|
|
11537
|
+
}
|
|
11538
|
+
interface ProductSellabilityForm {
|
|
11539
|
+
readonly organization_id: string;
|
|
11540
|
+
readonly product_id?: string;
|
|
11541
|
+
readonly product_correlation_id: string;
|
|
11542
|
+
readonly name: string;
|
|
11543
|
+
readonly price: io.flow.sellability.v0.models.ProductSellabilityPrice;
|
|
11544
|
+
readonly description: string;
|
|
11545
|
+
readonly taxonomy_category: io.flow.product.v0.models.ProductTaxonomyCategory;
|
|
11546
|
+
}
|
|
11547
|
+
interface ProductSellabilityPrice {
|
|
11548
|
+
readonly currency: string;
|
|
11549
|
+
readonly amount: number;
|
|
11550
|
+
}
|
|
11551
|
+
interface SellablilityRegionResult {
|
|
11552
|
+
readonly type: io.flow.sellability.v0.enums.RuleEffectType;
|
|
11553
|
+
readonly regions: string[];
|
|
11554
|
+
}
|
|
11555
|
+
}
|
|
11725
11556
|
declare namespace io.flow.currency.v0.models {
|
|
11726
11557
|
interface Rate {
|
|
11727
11558
|
readonly id: string;
|
|
@@ -11980,6 +11811,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
11980
11811
|
type AdjustmentTransactionType = 'adjustment' | 'reversal';
|
|
11981
11812
|
type AdyenIntegrationType = 'hosted_payment_page' | 'checkout_payments_api' | 'classic_authorise_api';
|
|
11982
11813
|
type AldoItemType = 'physical' | 'digital';
|
|
11814
|
+
type AnshItemType = 'physical' | 'digital';
|
|
11983
11815
|
type AnyDangerousGoods = 'yes' | 'no' | 'i_dont_know';
|
|
11984
11816
|
type ApiCallReferenceId = 'duty_rates_data_event' | 'integration_test' | 'unit_test';
|
|
11985
11817
|
type AutoRestrictRule = 'prr-3ce7d556f2464314ab0a3e8eee33e0ce' | 'prr-599c6246a1a24752aeb85e8f79030781' | 'prr-79e41878ea564f9c81cc432a0e84703f' | 'prr-f29c26dc09e04536bc77f9c32786ed70' | 'prr-b186129720f0446eb452a68518437c95';
|
|
@@ -11990,7 +11822,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
11990
11822
|
type BillingMetricKey = 'adjustment_transactions_count' | 'adjustment_transactions_total' | 'capture_transactions_count' | 'capture_transactions_reconcile_payments_count' | 'capture_transactions_ignored_fraud_count' | 'capture_transactions_ignored_fully_refunded_count' | 'capture_transactions_ignored_other_count' | 'capture_transactions_ignored_previously_processed_count' | 'capture_transactions_succeeded_then_failed_count' | 'capture_transactions_succeeded_then_failed_total' | 'capture_transactions_succeeded_then_failed_same_day_count' | 'capture_transactions_succeeded_then_failed_same_day_total' | 'capture_queued_count' | 'capture_transactions_total' | 'carrier_charge_transactions_count' | 'carrier_charge_transactions_total' | 'channel_transactions_processing_count' | 'channel_transactions_processing_total' | 'channel_transactions_adjustment_count' | 'channel_transactions_adjustment_total' | 'channel_transactions_reversal_count' | 'channel_transactions_reversal_total' | 'channel_billed_transactions_count' | 'channel_billed_transactions_total' | 'credit_payment_transactions_count' | 'credit_payment_transactions_total' | 'duty_to_labels_ratio' | 'duty_transactions_count' | 'duty_transactions_total' | 'fully_subsidized_order_transactions_count' | 'fully_subsidized_order_transactions_total' | 'billable_label_transactions_count' | 'billable_label_transactions_count_for_unique_orders' | 'billable_label_transactions_count_with_revenue_share' | 'billable_label_transactions_count_without_revenue_share' | 'billable_label_transactions_total' | 'revenue_share_label_transactions_count' | 'revenue_share_label_transactions_count_for_unique_orders' | 'revenue_share_label_transactions_total' | 'manual_transactions_count' | 'manual_transactions_total' | 'order_transactions_count' | 'order_transactions_total' | 'refund_transactions_count' | 'refund_transactions_reconcile_payments_count' | 'refund_transactions_ignored_fraud_count' | 'refund_transactions_ignored_fully_refunded_count' | 'refund_transactions_ignored_other_count' | 'refund_transactions_ignored_previously_processed_count' | 'refund_queued_count' | 'refund_transactions_total' | 'refund_transactions_succeeded_then_failed_count' | 'refund_transactions_succeeded_then_failed_total' | 'refund_transactions_succeeded_then_failed_same_day_count' | 'refund_transactions_succeeded_then_failed_same_day_total' | 'reversal_order_cancellations_transactions_count' | 'reversal_order_cancellations_transactions_total' | 'reversal_external_fulfillment_transactions_count' | 'reversal_external_fulfillment_transactions_total' | 'reversal_other_transactions_count' | 'reversal_other_transactions_total' | 'reversal_all_transactions_count' | 'reversal_all_transactions_total' | 'tax_to_labels_ratio' | 'tax_transactions_count' | 'tax_transactions_total' | 'transfer_transactions_count' | 'transfer_transactions_total' | 'trueup_transactions_count' | 'trueup_transactions_total' | 'fulfillments_count' | 'fulfilled_via_replacement_order_count' | 'percentage_orders_with_fulfillment_proof_2_weeks' | 'percentage_orders_with_fulfillment_proof_4_weeks' | 'percentage_orders_with_fulfillment_proof_6_weeks' | 'percentage_orders_with_fulfillment_proof_all' | 'pending_payouts_max_age_in_millis' | 'shipping_notifications_count' | 'queued_capture_unprocessed_count' | 'queued_refund_unprocessed_count' | 'queued_label_invoice_request_unprocessed_count' | 'queued_other_unprocessed_count' | 'task_snooze_count' | 'task_snooze_ending_in_48_hours_count' | 'payouts_scheduled_count' | 'payouts_scheduled_total' | 'payouts_sent_count' | 'payouts_sent_total' | 'payouts_failed_count' | 'payouts_failed_total' | 'average_payout_amount' | 'capture_transaction_with_zero_fees_and_no_channel_transaction_count' | 'percentage_billable_label_transactions_with_carrier_charge_10_days' | 'percentage_billable_label_transactions_with_carrier_charge_20_days' | 'percentage_billable_label_transactions_with_carrier_charge_30_days' | 'percentage_billable_label_transactions_with_carrier_charge_60_days' | 'percentage_billable_label_transactions_with_carrier_charge_90_days' | 'percentage_bank_account_inserts' | 'percentage_bank_account_updates' | 'percentage_bank_account_unique_updates' | 'percentage_bank_account_deletes' | 'negative_balance_number_accounts' | 'negative_balance_number_accounts_with_order_in_past_30_days' | 'negative_balance_number_accounts_without_order_in_past_30_days' | 'negative_balance_number_offboarded_accounts' | 'negative_balance_number_active_accounts_with_balance_over_1000' | 'negative_balance_total' | 'negative_balance_total_with_order_in_past_30_days' | 'negative_balance_total_without_order_in_past_30_days' | 'negative_balance_total_offboarded_accounts' | 'negative_balance_single_account_max' | 'negative_balance_single_active_account_max' | 'negative_balance_fee_total' | 'accounts_with_payment_holds_count' | 'accounts_with_payment_holds_pending_payment_promise_count' | 'accounts_with_payment_holds_pending_payment_promise_total' | 'edited_order_tax_amount_exceeding_transaction' | 'edited_order_duty_amount_exceeding_transaction' | 'negative_balance_scheduled_count' | 'negative_balance_scheduled_total' | 'negative_balance_sent_count' | 'negative_balance_sent_total' | 'negative_balance_failed_count' | 'negative_balance_failed_total' | 'negative_debit_success_rate' | 'current_attempt_merchant_count' | 'current_attempt_amount_total' | 'current_attempt_failed_merchant_count' | 'current_attempt_failed_amount_total' | 'current_attempt_success_ratio' | 'first_attempt_merchant_count' | 'first_attempt_amount_total' | 'first_attempt_failed_merchant_count' | 'first_attempt_failed_amount_total' | 'first_attempt_success_ratio' | 'second_attempt_merchant_count' | 'second_attempt_amount_total' | 'second_attempt_failed_merchant_count' | 'second_attempt_failed_amount_total' | 'second_attempt_success_ratio' | 'third_attempt_merchant_count' | 'third_attempt_amount_total' | 'third_attempt_failed_merchant_count' | 'third_attempt_failed_amount_total' | 'third_attempt_success_ratio' | 'fourth_plus_attempt_merchant_count' | 'fourth_plus_attempt_amount_total' | 'fourth_plus_attempt_failed_merchant_count' | 'fourth_plus_attempt_failed_amount_total' | 'fourth_plus_attempt_success_ratio';
|
|
11991
11823
|
type BillingStatementAttachmentKey = 'invoice' | 'statement' | 'consumer_invoice' | 'credit_memo' | 'channel_billed' | 'transactions' | 'virtual_card' | 'tax_remittance' | 'manual' | 'orders' | 'label' | 'order_service' | 'tax' | 'duty' | 'trueup' | 'carrier_charge' | 'all';
|
|
11992
11824
|
type BillingTransactionStatus = 'pending_proof' | 'posted';
|
|
11993
|
-
type BillingTransactionType = 'manual' | 'subscription' | 'invoice' | 'transfer' | 'adjustment' | 'reversal' | 'capture' | 'refund' | 'virtual_card_capture' | 'virtual_card_refund' | 'tax_remittance' | 'fully_subsidized_order' | 'credit_payment' | 'dispute' | 'channel' | 'label' | 'order' | 'channel_billed' | 'tax' | 'duty' | 'trueup' | 'carrier_charge' | 'tax_refund' | 'duty_refund';
|
|
11825
|
+
type BillingTransactionType = 'manual' | 'subscription' | 'invoice' | 'transfer' | 'adjustment' | 'reversal' | 'capture' | 'refund' | 'virtual_card_capture' | 'virtual_card_refund' | 'tax_remittance' | 'fully_subsidized_order' | 'credit_payment' | 'dispute' | 'channel' | 'label' | 'order' | 'channel_billed' | 'tax' | 'duty' | 'trueup' | 'carrier_charge' | 'order_fx' | 'tax_refund' | 'duty_refund' | 'ge_revenue_share' | 'tax_duty_delta';
|
|
11994
11826
|
type BrowserBundleErrorCode = 'generic_error' | 'country_invalid';
|
|
11995
11827
|
type CalculatorEngine = 'dtce_with_deminimis' | 'dtce_with_inclusive_pricing' | 'dtce_and_us_tax';
|
|
11996
11828
|
type CarrierChargeTransactionType = 'adjustment' | 'reversal' | 'charge' | 'revenue_share';
|
|
@@ -12008,7 +11840,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
12008
11840
|
type ChannelOrderFulfillmentStatusCode = 'unfulfilled' | 'fulfilled' | 'partial' | 'cancelled';
|
|
12009
11841
|
type ChannelTransactionType = 'adjustment' | 'reversal' | 'processing';
|
|
12010
11842
|
type ChargeEstimateSource = 'global-e' | 'shopify';
|
|
12011
|
-
type ChargeInputType = 'fuelsc' | 'incoterm_ddp' | 'delivery_confirmation' | 'base_charge' | 'package_pickup' | 'insurance' | 'usps_first_mile' | 'oversize_piece' | 'incoterm_dap' | 'emergency_situation' | 'remote_area_delivery' | 'customs_clearance_surcharge' | 'security_surcharge' | 'duties_fx_surcharge' | 'electronic_export_information_surcharge' | 'additional_handling' | 'large_package_surcharge';
|
|
11843
|
+
type ChargeInputType = 'fuelsc' | 'incoterm_ddp' | 'delivery_confirmation' | 'base_charge' | 'package_pickup' | 'insurance' | 'usps_first_mile' | 'oversize_piece' | 'incoterm_dap' | 'emergency_situation' | 'remote_area_delivery' | 'customs_clearance_surcharge' | 'security_surcharge' | 'duties_fx_surcharge' | 'electronic_export_information_surcharge' | 'additional_handling' | 'large_package_surcharge' | 'peak_surcharge';
|
|
12012
11844
|
type ChargebackPaymentStatus = 'captured' | 'refunded';
|
|
12013
11845
|
type ChargebackProcessStatus = 'inquiry' | 'open' | 'closed';
|
|
12014
11846
|
type CheckoutAssetType = 'stylesheet' | 'javascript';
|
|
@@ -12054,7 +11886,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
12054
11886
|
type DutyTransactionType = 'adjustment' | 'reversal' | 'duty';
|
|
12055
11887
|
type EmptyAttribute = 'irrelevant';
|
|
12056
11888
|
type ErpFileType = 'vendor';
|
|
12057
|
-
type EventType = 'adjusted_estimates_upserted' | 'adjusted_estimates_deleted' | 'adyen_authorization_deleted' | 'adyen_authorization_upserted' | 'adyen_cancel_deleted' | 'adyen_cancel_upserted' | 'adyen_capture_deleted' | 'adyen_capture_upserted' | 'adyen_refund_deleted' | 'adyen_refund_upserted' | 'adyen_dispute_upserted' | 'adyen_dispute_deleted' | 'fulfillment_upserted' | 'fulfillment_deleted' | 'merchant_upserted' | 'merchant_deleted' | 'account_upserted' | 'account_upserted_v2' | 'account_deleted_v2' | 'account_contact_upserted' | 'account_contact_deleted' | 'billing_statement_upserted' | 'billing_statement_deleted' | 'tax_remittance_transaction_upserted' | 'tax_remittance_transaction_deleted' | 'channel_account_upserted_v2' | 'channel_account_deleted' | 'organization_account_upserted_v2' | 'organization_account_deleted' | 'account_transactions_export_request' | 'account_orders_export_request' | 'main_transaction_upserted' | 'main_transaction_deleted' | 'main_transaction_upserted_v2' | 'main_transaction_deleted_v2' | 'transfer_transaction_upserted' | 'transfer_transaction_deleted' | 'transfer_transaction_upserted_v2' | 'transfer_transaction_deleted_v2' | 'processing_transaction_upserted' | 'processing_transaction_deleted' | 'bank_payment_upserted' | 'bank_payment_upserted_v2' | 'bank_payment_deleted_v2' | 'channel_transaction_upserted' | 'channel_transaction_deleted' | 'order_transaction_upserted' | 'order_transaction_deleted' | 'label_transaction_upserted' | 'label_transaction_deleted' | 'channel_billed_transaction_upserted' | 'channel_billed_transaction_deleted' | 'tax_transaction_upserted' | 'tax_transaction_deleted' | 'duty_transaction_upserted' | 'duty_transaction_deleted' | 'transaction_statement_upserted' | 'transaction_statement_deleted' | 'daily_value_upserted' | 'daily_value_deleted' | 'revenue_record_upserted' | 'revenue_record_deleted' | 'other_record_upserted' | 'other_record_deleted' | 'calculator_organization_settings_upserted' | 'calculator_organization_settings_deleted' | 'carrier_account_upserted_v2' | 'carrier_account_deleted' | 'label_generation_settings_upserted' | 'label_generation_settings_deleted' | 'catalog_import_request' | 'exclusion_rule_upserted' | 'exclusion_rule_deleted' | 'exclusion_rule_export_request' | 'catalog_item_region_availabilities_published' | 'return_policy_upserted' | 'return_policy_deleted' | 'return_policy_item_result_upserted' | 'return_policy_item_result_deleted' | 'catalog_settings_upserted' | 'catalog_settings_deleted' | 'channel_order_acceptance_upserted' | 'channel_order_acceptance_deleted' | 'channel_order_acceptance_failed' | 'checkout_configuration_upserted' | 'checkout_configuration_deleted' | 'commercial_invoice_internal_upserted' | 'commercial_invoice_internal_deleted' | 'localized_content_upserted' | 'localization_upserted' | 'internal_channel_rate_deleted' | 'internal_channel_rate_upserted' | 'rate_deleted' | 'rate_upserted' | 'spot_rate_deleted' | 'spot_rate_upserted' | 'usd_spot_rate_deleted' | 'usd_spot_rate_upserted' | 'rate_deleted_v2' | 'rate_upserted_v2' | 'organization_currency_setting_upserted' | 'organization_currency_setting_deleted' | 'channel_currency_setting_upserted' | 'channel_currency_setting_deleted' | 'customer_purge_upserted' | 'customs_description_import' | 'customs_description_tariffs_import' | 'dispute_upserted' | 'dispute_deleted' | 'duty_rates_published_v2' | 'item_sales_margin_deleted' | 'item_sales_margin_upserted' | 'order_attribute_deleted' | 'order_attribute_upserted' | 'experience_export_request' | 'experience_import_request' | 'submitted_order_upserted' | 'levy_rate_summary_upserted' | 'export_completed' | 'export_failed' | 'feature_upserted' | 'feature_deleted' | 'organization_boolean_value_upserted' | 'organization_boolean_value_deleted' | 'account_settings_upserted' | 'account_settings_deleted' | 'account_processing_rates_upserted' | 'account_processing_rates_deleted' | 'billing_organization_processing_rates_upserted' | 'billing_organization_processing_rates_deleted' | 'billing_organization_settings_upserted' | 'billing_organization_settings_deleted' | 'standalone_attachment_upserted' | 'standalone_attachment_deleted' | 'platform_fee_change_upserted' | 'platform_fee_change_deleted' | 'organization_bank_account_upserted' | 'organization_bank_account_deleted' | 'billing_csv_transaction_upserted' | 'billing_csv_transaction_deleted' | 'label_invoice_request_upserted' | 'label_invoice_request_deleted' | 'carrier_charge_upserted' | 'carrier_charge_deleted' | 'bank_payment_order_upserted' | 'bank_payment_order_deleted' | 'fraud_review_upserted' | 'fraud_review_deleted' | 'fraud_pending_review_upserted' | 'fraud_pending_review_deleted' | 'fraud_review_decision_upserted' | 'fraud_review_decision_deleted' | 'fraud_review_authorization_upserted' | 'fraud_review_authorization_deleted' | 'fraud_pending_review_authorization_upserted' | 'fraud_pending_review_authorization_deleted' | 'fraud_review_authorization_decision_upserted' | 'fraud_review_authorization_decision_deleted' | 'fraud_provider_configuration_upserted' | 'fraud_provider_configuration_deleted' | 'manual_review_rule_upserted' | 'manual_review_rule_deleted' | 'ftp_file_upserted' | 'ftp_file_deleted' | 'ftp_file_to_process_uploaded' | 'center_defaults_upserted' | 'center_defaults_deleted' | 'fulfillment_fallbacks_upserted' | 'fulfillment_fallbacks_deleted' | 'pregenerated_request_event' | 'quote_upserted' | 'quote_deleted' | 'all_items_export' | 'harmonized_items_hs6_export' | 'unharmonized_items_export' | 'dutied_items_export' | 'tariff_codes_export' | 'harmonization_phrase_suggestion_request_import' | 'harmonization_codes_import' | 'item_classification_created' | 'harmonize_fully_request_v2' | 'import_completed' | 'import_failed' | 'time_to_classify_upserted' | 'time_to_classify_deleted' | 'time_to_classify_aggregated_upserted' | 'time_to_classify_aggregated_deleted' | 'rate_source_summary_upserted' | 'rate_source_summary_deleted' | 'rate_freshness_summary_upserted' | 'rate_freshness_summary_deleted' | 'item_harmonization_upserted' | 'item_harmonization_deleted' | 'harmonization_item_classification_upserted' | 'harmonization_item_classification_deleted' | 'harmonization_classification_statistics_published' | 'issuer_upserted' | 'issuer_deleted' | 'item_form_import_request' | 'label_request_error_upserted' | 'label_request_error_deleted' | 'order_validation_failure_upserted' | 'order_validation_failure_deleted' | 'order_validation_upserted' | 'order_validation_deleted' | 'label_tracking_summary_upserted' | 'label_tracking_summary_deleted' | 'localized_item_upserted_v2' | 'localized_item_deleted' | 'localized_item_deleted_v2' | 'localized_item_snapshot' | 'localized_price_book_item_upserted' | 'localized_price_book_item_deleted' | 'logistics_capabilities_upserted' | 'logistics_capabilities_deleted' | 'feed_upserted' | 'feed_deleted' | 'feeds_export' | 'localized_item_prices_export_request' | 'optin_prompt_upserted' | 'optin_prompt_deleted' | 'order_combined_shipment_upserted' | 'order_combined_shipment_deleted' | 'order_fulfillment_deleted' | 'order_fulfillment_upserted' | 'order_placed' | 'ready_to_fulfill' | 'fulfillment_cancel' | 'order_shipped' | 'items_shipped' | 'organization_business_entity_deleted' | 'organization_business_entity_upserted' | 'organization_status_change_upserted' | 'organization_status_change_deleted' | 'organization_deactivation_upserted' | 'organization_deactivation_deleted' | 'merchant_guid_assignment_upserted' | 'merchant_guid_assignment_deleted' | 'organization_metadata_upserted' | 'organization_metadata_deleted' | 'partner_organization_settings_upserted' | 'partner_organization_settings_deleted' | 'unassigned_merchant_guid_upserted' | 'unassigned_merchant_guid_deleted' | 'partner_tracking_subscription_upserted' | 'partner_tracking_subscription_deleted' | 'spp_tracker_update_request_upserted' | 'spp_tracker_update_request_deleted' | 'internal_authorization_upserted' | 'internal_authorization_deleted' | 'afterpay_authorization_upserted' | 'afterpay_authorization_deleted' | 'afterpay_capture_upserted' | 'afterpay_capture_deleted' | 'afterpay_refund_upserted' | 'afterpay_refund_deleted' | 'adyen_merchant_account_upserted' | 'adyen_merchant_account_deleted' | 'chargeback_upserted' | 'chargeback_deleted' | 'payment_processor_account_upserted' | 'payment_processor_account_deleted' | 'payment_processor_merchant_upserted' | 'payment_processor_merchant_deleted' | 'authorization_bundle_upserted' | 'authorization_bundle_deleted' | 'organization_payment_setting_upserted' | 'organization_payment_setting_deleted' | 'paypal_payment_deleted' | 'paypal_payment_upserted' | 'paypal_execution_deleted' | 'paypal_execution_upserted' | 'paypal_refund_deleted' | 'paypal_refund_upserted' | 'paypal_dispute_upserted' | 'paypal_dispute_deleted' | 'product_restriction_rule_decision_upserted' | 'product_restriction_rule_decision_deleted' | 'order_rates_published_v3' | 'ratecard_dimension_estimate_upserted' | 'ratecard_dimension_estimate_deleted' | 'ratecard_lanes_import_request' | 'ratecard_standard_configuration_upserted' | 'ratecard_standard_configuration_deleted' | 'ratecard_service_fee_upserted' | 'ratecard_service_fee_deleted' | 'ratecard_lane_aggregate_upserted' | 'ratecard_lane_aggregate_deleted' | 'ratecard_rate_level_upserted' | 'ratecard_rate_level_deleted' | 'ratecard_rate_level_ratecard_upserted' | 'ratecard_rate_level_ratecard_deleted' | 'ratecard_rate_level_organization_upserted' | 'ratecard_rate_level_organization_deleted' | 'restriction_organization_status_upserted' | 'restriction_organization_status_deleted' | 'organization_restriction_status_upserted' | 'organization_restriction_status_deleted' | 'screening_status_change_upserted' | 'screening_status_change_deleted' | 'restrictions_dailyops_upserted' | 'restrictions_dailyops_deleted' | 'shopify_shop_upserted' | 'shopify_shop_deleted' | 'shopify_experience_short_id_upserted' | 'shopify_experience_short_id_deleted' | 'shopify_markets_order_upserted' | 'shopify_markets_order_deleted' | 'shopify_markets_shop_upserted' | 'shopify_markets_shop_deleted' | 'shopify_markets_webhook_registration_upserted' | 'shopify_markets_webhook_registration_deleted' | 'shopify_markets_shop_statistics_upserted' | 'shopify_markets_shop_statistics_deleted' | 'shopify_markets_metrics_upserted' | 'shopify_markets_metrics_deleted' | 'channel_order_summary_upserted' | 'channel_order_summary_deleted' | 'channel_organization_identifier_upserted' | 'channel_organization_identifier_deleted' | 'order_tax_and_duty_inclusivity_setting_upserted' | 'order_tax_and_duty_inclusivity_setting_deleted' | 'shopify_product_bundle_upserted' | 'shopify_product_bundle_deleted' | 'shopify_incoterm_summary_error_published' | 'shopify_markets_best_selling_product_upserted' | 'shopify_markets_best_selling_product_deleted' | 'shopify_monitoring_order_monitor_event_upserted' | 'shopify_monitoring_order_monitor_event_deleted' | 'shopify_order_fulfillments_snapshot_upserted' | 'shopify_order_fulfillments_snapshot_deleted' | 'stripe_authorization_deleted' | 'stripe_authorization_upserted' | 'stripe_reversal_deleted' | 'stripe_reversal_upserted' | 'stripe_capture_deleted' | 'stripe_capture_upserted' | 'stripe_refund_deleted' | 'stripe_refund_upserted' | 'stripe_dispute_upserted' | 'stripe_dispute_deleted' | 'liability_remittance_plan_upserted' | 'liability_remittance_plan_deleted' | 'tracking_processing_error_upserted' | 'tracking_processing_error_deleted' | 'tracking_label_event_upserted_v2' | 'tracking_label_event_deleted_v2' | 'tracking_label_upserted' | 'tracking_label_deleted' | 'tracking_upserted' | 'tracking_deleted' | 'tracking_assurance_analysis_upserted' | 'tracking_assurance_analysis_deleted' | 'tracking_assurance_job_upserted' | 'tracking_assurance_job_deleted' | 'tracking_subscription_upserted' | 'tracking_subscription_deleted' | 'tracking_carrier_return_label_upserted' | 'tracking_carrier_return_label_deleted' | 'tracking_label_dimensions_upserted' | 'tracking_label_dimensions_deleted' | 'user_upserted_v2' | 'user_deleted_v2';
|
|
11889
|
+
type EventType = 'adjusted_estimates_upserted' | 'adjusted_estimates_deleted' | 'final_estimate_upserted' | 'final_estimate_deleted' | 'adyen_authorization_deleted' | 'adyen_authorization_upserted' | 'adyen_cancel_deleted' | 'adyen_cancel_upserted' | 'adyen_capture_deleted' | 'adyen_capture_upserted' | 'adyen_refund_deleted' | 'adyen_refund_upserted' | 'adyen_dispute_upserted' | 'adyen_dispute_deleted' | 'fulfillment_upserted' | 'fulfillment_deleted' | 'merchant_upserted' | 'merchant_deleted' | 'account_upserted' | 'account_upserted_v2' | 'account_deleted_v2' | 'account_contact_upserted' | 'account_contact_deleted' | 'billing_statement_upserted' | 'billing_statement_deleted' | 'tax_remittance_transaction_upserted' | 'tax_remittance_transaction_deleted' | 'channel_account_upserted_v2' | 'channel_account_deleted' | 'organization_account_upserted_v2' | 'organization_account_deleted' | 'account_transactions_export_request' | 'account_orders_export_request' | 'main_transaction_upserted' | 'main_transaction_deleted' | 'main_transaction_upserted_v2' | 'main_transaction_deleted_v2' | 'transfer_transaction_upserted' | 'transfer_transaction_deleted' | 'transfer_transaction_upserted_v2' | 'transfer_transaction_deleted_v2' | 'processing_transaction_upserted' | 'processing_transaction_deleted' | 'bank_payment_upserted' | 'bank_payment_upserted_v2' | 'bank_payment_deleted_v2' | 'channel_transaction_upserted' | 'channel_transaction_deleted' | 'order_transaction_upserted' | 'order_transaction_deleted' | 'label_transaction_upserted' | 'label_transaction_deleted' | 'channel_billed_transaction_upserted' | 'channel_billed_transaction_deleted' | 'tax_transaction_upserted' | 'tax_transaction_deleted' | 'duty_transaction_upserted' | 'duty_transaction_deleted' | 'transaction_statement_upserted' | 'transaction_statement_deleted' | 'daily_value_upserted' | 'daily_value_deleted' | 'revenue_record_upserted' | 'revenue_record_deleted' | 'other_record_upserted' | 'other_record_deleted' | 'calculator_organization_settings_upserted' | 'calculator_organization_settings_deleted' | 'carrier_account_upserted_v2' | 'carrier_account_deleted' | 'label_generation_settings_upserted' | 'label_generation_settings_deleted' | 'catalog_import_request' | 'exclusion_rule_upserted' | 'exclusion_rule_deleted' | 'exclusion_rule_export_request' | 'catalog_item_region_availabilities_published' | 'return_policy_upserted' | 'return_policy_deleted' | 'return_policy_item_result_upserted' | 'return_policy_item_result_deleted' | 'catalog_settings_upserted' | 'catalog_settings_deleted' | 'channel_order_acceptance_upserted' | 'channel_order_acceptance_deleted' | 'channel_order_acceptance_failed' | 'checkout_configuration_upserted' | 'checkout_configuration_deleted' | 'commercial_invoice_internal_upserted' | 'commercial_invoice_internal_deleted' | 'localized_content_upserted' | 'localization_upserted' | 'internal_channel_rate_deleted' | 'internal_channel_rate_upserted' | 'rate_deleted' | 'rate_upserted' | 'spot_rate_deleted' | 'spot_rate_upserted' | 'usd_spot_rate_deleted' | 'usd_spot_rate_upserted' | 'rate_deleted_v2' | 'rate_upserted_v2' | 'organization_currency_setting_upserted' | 'organization_currency_setting_deleted' | 'channel_currency_setting_upserted' | 'channel_currency_setting_deleted' | 'customer_purge_upserted' | 'customs_description_import' | 'customs_description_tariffs_import' | 'dispute_upserted' | 'dispute_deleted' | 'duty_rates_published_v2' | 'item_sales_margin_deleted' | 'item_sales_margin_upserted' | 'order_attribute_deleted' | 'order_attribute_upserted' | 'experience_export_request' | 'experience_import_request' | 'submitted_order_upserted' | 'levy_rate_summary_upserted' | 'export_completed' | 'export_failed' | 'feature_upserted' | 'feature_deleted' | 'organization_boolean_value_upserted' | 'organization_boolean_value_deleted' | 'account_settings_upserted' | 'account_settings_deleted' | 'account_processing_rates_upserted' | 'account_processing_rates_deleted' | 'billing_organization_processing_rates_upserted' | 'billing_organization_processing_rates_deleted' | 'billing_organization_settings_upserted' | 'billing_organization_settings_deleted' | 'standalone_attachment_upserted' | 'standalone_attachment_deleted' | 'platform_fee_change_upserted' | 'platform_fee_change_deleted' | 'organization_bank_account_upserted' | 'organization_bank_account_deleted' | 'billing_csv_transaction_upserted' | 'billing_csv_transaction_deleted' | 'label_invoice_request_upserted' | 'label_invoice_request_deleted' | 'carrier_charge_upserted' | 'carrier_charge_deleted' | 'bank_payment_order_upserted' | 'bank_payment_order_deleted' | 'fraud_review_upserted' | 'fraud_review_deleted' | 'fraud_pending_review_upserted' | 'fraud_pending_review_deleted' | 'fraud_review_decision_upserted' | 'fraud_review_decision_deleted' | 'fraud_review_authorization_upserted' | 'fraud_review_authorization_deleted' | 'fraud_pending_review_authorization_upserted' | 'fraud_pending_review_authorization_deleted' | 'fraud_review_authorization_decision_upserted' | 'fraud_review_authorization_decision_deleted' | 'fraud_provider_configuration_upserted' | 'fraud_provider_configuration_deleted' | 'manual_review_rule_upserted' | 'manual_review_rule_deleted' | 'ftp_file_upserted' | 'ftp_file_deleted' | 'ftp_file_to_process_uploaded' | 'center_defaults_upserted' | 'center_defaults_deleted' | 'fulfillment_fallbacks_upserted' | 'fulfillment_fallbacks_deleted' | 'pregenerated_request_event' | 'quote_upserted' | 'quote_deleted' | 'all_items_export' | 'harmonized_items_hs6_export' | 'unharmonized_items_export' | 'dutied_items_export' | 'harmonization_phrase_suggestion_request_import' | 'harmonization_codes_import' | 'item_classification_created' | 'harmonize_fully_request_v2' | 'import_completed' | 'import_failed' | 'time_to_classify_upserted' | 'time_to_classify_deleted' | 'time_to_classify_aggregated_upserted' | 'time_to_classify_aggregated_deleted' | 'rate_source_summary_upserted' | 'rate_source_summary_deleted' | 'rate_freshness_summary_upserted' | 'rate_freshness_summary_deleted' | 'item_harmonization_upserted' | 'item_harmonization_deleted' | 'harmonization_item_classification_upserted' | 'harmonization_item_classification_deleted' | 'harmonization_classification_statistics_published' | 'issuer_upserted' | 'issuer_deleted' | 'item_form_import_request' | 'label_request_error_upserted' | 'label_request_error_deleted' | 'order_validation_failure_upserted' | 'order_validation_failure_deleted' | 'order_validation_upserted' | 'order_validation_deleted' | 'label_tracking_summary_upserted' | 'label_tracking_summary_deleted' | 'localized_item_upserted_v2' | 'localized_item_deleted' | 'localized_item_deleted_v2' | 'localized_item_snapshot' | 'localized_price_book_item_upserted' | 'localized_price_book_item_deleted' | 'logistics_capabilities_upserted' | 'logistics_capabilities_deleted' | 'feed_upserted' | 'feed_deleted' | 'feeds_export' | 'localized_item_prices_export_request' | 'optin_prompt_upserted' | 'optin_prompt_deleted' | 'order_combined_shipment_upserted' | 'order_combined_shipment_deleted' | 'order_fulfillment_deleted' | 'order_fulfillment_upserted' | 'order_placed' | 'ready_to_fulfill' | 'fulfillment_cancel' | 'order_shipped' | 'items_shipped' | 'organization_business_entity_deleted' | 'organization_business_entity_upserted' | 'organization_status_change_upserted' | 'organization_status_change_deleted' | 'organization_deactivation_upserted' | 'organization_deactivation_deleted' | 'merchant_guid_assignment_upserted' | 'merchant_guid_assignment_deleted' | 'organization_metadata_upserted' | 'organization_metadata_deleted' | 'partner_organization_settings_upserted' | 'partner_organization_settings_deleted' | 'unassigned_merchant_guid_upserted' | 'unassigned_merchant_guid_deleted' | 'partner_tracking_subscription_upserted' | 'partner_tracking_subscription_deleted' | 'spp_tracker_update_request_upserted' | 'spp_tracker_update_request_deleted' | 'internal_authorization_upserted' | 'internal_authorization_deleted' | 'afterpay_authorization_upserted' | 'afterpay_authorization_deleted' | 'afterpay_capture_upserted' | 'afterpay_capture_deleted' | 'afterpay_refund_upserted' | 'afterpay_refund_deleted' | 'adyen_merchant_account_upserted' | 'adyen_merchant_account_deleted' | 'chargeback_upserted' | 'chargeback_deleted' | 'payment_processor_account_upserted' | 'payment_processor_account_deleted' | 'payment_processor_merchant_upserted' | 'payment_processor_merchant_deleted' | 'authorization_bundle_upserted' | 'authorization_bundle_deleted' | 'organization_payment_setting_upserted' | 'organization_payment_setting_deleted' | 'paypal_payment_deleted' | 'paypal_payment_upserted' | 'paypal_execution_deleted' | 'paypal_execution_upserted' | 'paypal_refund_deleted' | 'paypal_refund_upserted' | 'paypal_dispute_upserted' | 'paypal_dispute_deleted' | 'product_restriction_rule_decision_upserted' | 'product_restriction_rule_decision_deleted' | 'order_rates_published_v3' | 'ratecard_dimension_estimate_upserted' | 'ratecard_dimension_estimate_deleted' | 'ratecard_lanes_import_request' | 'ratecard_standard_configuration_upserted' | 'ratecard_standard_configuration_deleted' | 'ratecard_service_fee_upserted' | 'ratecard_service_fee_deleted' | 'ratecard_lane_aggregate_upserted' | 'ratecard_lane_aggregate_deleted' | 'ratecard_rate_level_upserted' | 'ratecard_rate_level_deleted' | 'ratecard_rate_level_ratecard_upserted' | 'ratecard_rate_level_ratecard_deleted' | 'ratecard_rate_level_organization_upserted' | 'ratecard_rate_level_organization_deleted' | 'restriction_organization_status_upserted' | 'restriction_organization_status_deleted' | 'organization_restriction_status_upserted' | 'organization_restriction_status_deleted' | 'screening_status_change_upserted' | 'screening_status_change_deleted' | 'restrictions_dailyops_upserted' | 'restrictions_dailyops_deleted' | 'restriction_rule_upserted' | 'restriction_rule_deleted' | 'restriction_rule_effect_upserted' | 'restriction_rule_effect_deleted' | 'shopify_shop_upserted' | 'shopify_shop_deleted' | 'shopify_experience_short_id_upserted' | 'shopify_experience_short_id_deleted' | 'shopify_markets_order_upserted' | 'shopify_markets_order_deleted' | 'shopify_markets_shop_upserted' | 'shopify_markets_shop_deleted' | 'shopify_markets_webhook_registration_upserted' | 'shopify_markets_webhook_registration_deleted' | 'shopify_markets_shop_statistics_upserted' | 'shopify_markets_shop_statistics_deleted' | 'shopify_markets_metrics_upserted' | 'shopify_markets_metrics_deleted' | 'channel_order_summary_upserted' | 'channel_order_summary_deleted' | 'channel_organization_identifier_upserted' | 'channel_organization_identifier_deleted' | 'order_tax_and_duty_inclusivity_setting_upserted' | 'order_tax_and_duty_inclusivity_setting_deleted' | 'shopify_product_bundle_upserted' | 'shopify_product_bundle_deleted' | 'shopify_incoterm_summary_error_published' | 'shopify_markets_best_selling_product_upserted' | 'shopify_markets_best_selling_product_deleted' | 'shopify_product_create_upserted' | 'shopify_product_create_deleted' | 'shopify_product_update_upserted' | 'shopify_product_update_deleted' | 'shopify_product_delete_upserted' | 'shopify_product_delete_deleted' | 'shopify_inventory_item_create_upserted' | 'shopify_inventory_item_create_deleted' | 'shopify_inventory_item_update_upserted' | 'shopify_inventory_item_update_deleted' | 'shopify_inventory_item_delete_upserted' | 'shopify_inventory_item_delete_deleted' | 'shopify_monitoring_order_monitor_event_upserted' | 'shopify_monitoring_order_monitor_event_deleted' | 'shopify_order_fulfillments_snapshot_upserted' | 'shopify_order_fulfillments_snapshot_deleted' | 'stripe_authorization_deleted' | 'stripe_authorization_upserted' | 'stripe_reversal_deleted' | 'stripe_reversal_upserted' | 'stripe_capture_deleted' | 'stripe_capture_upserted' | 'stripe_refund_deleted' | 'stripe_refund_upserted' | 'stripe_dispute_upserted' | 'stripe_dispute_deleted' | 'liability_remittance_plan_upserted' | 'liability_remittance_plan_deleted' | 'tracking_processing_error_upserted' | 'tracking_processing_error_deleted' | 'tracking_label_event_upserted_v2' | 'tracking_label_event_deleted_v2' | 'tracking_label_upserted' | 'tracking_label_deleted' | 'tracking_upserted' | 'tracking_deleted' | 'tracking_assurance_analysis_upserted' | 'tracking_assurance_analysis_deleted' | 'tracking_assurance_job_upserted' | 'tracking_assurance_job_deleted' | 'tracking_subscription_upserted' | 'tracking_subscription_deleted' | 'tracking_carrier_return_label_upserted' | 'tracking_carrier_return_label_deleted' | 'tracking_label_dimensions_upserted' | 'tracking_label_dimensions_deleted' | 'user_upserted_v2' | 'user_deleted_v2';
|
|
12058
11890
|
type ExperienceImportType = 'experience_with_settings';
|
|
12059
11891
|
type ExperienceOrderAction = 'submit' | 'refund_gift_cards';
|
|
12060
11892
|
type ExperienceOrderActionTrigger = 'zero_balance' | 'unsubmitted_order';
|
|
@@ -12072,7 +11904,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
12072
11904
|
type FtpIntent = 'orders_from_flow' | 'pricebooks_from_flow' | 'pricebooks_to_flow' | 'catalog_to_flow' | 'inventory_to_flow';
|
|
12073
11905
|
type FtpProtocol = 'sftp' | 'ftp';
|
|
12074
11906
|
type GoogleAnalyticsPlugin = 'ec';
|
|
12075
|
-
type GraphqlServiceTypes = 'order_update_mutation' | 'shipping_address_validation' | 'bulk_publication_status' | 'country_catalog_sync' | 'inventory_item' | 'product_bundle' | 'shopify_location' | 'shopify_order' | 'sync_product_catalog';
|
|
11907
|
+
type GraphqlServiceTypes = 'order_update_mutation' | 'shipping_address_validation' | 'bulk_publication_status' | 'country_catalog_sync' | 'inventory_item' | 'product_bundle' | 'shopify_location' | 'shopify_order' | 'sync_product_catalog' | 'shopify_webhook';
|
|
12076
11908
|
type HarmonizationDecisionSource = 'human' | 'legacy_model' | 'enterprise_model';
|
|
12077
11909
|
type HttpMethod = 'get' | 'post';
|
|
12078
11910
|
type ItemClassificationAction = 'ACCEPT' | 'MANUAL' | 'REJECT';
|
|
@@ -12084,6 +11916,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
12084
11916
|
type LabelBillingStrategy = 'quote' | 'carrier';
|
|
12085
11917
|
type LabelCancellationErrorCode = 'already_used' | 'carrier_unsupported';
|
|
12086
11918
|
type LabelCreationStatus = 'success' | 'error' | 'pending' | 'cancelled';
|
|
11919
|
+
type LabelEventSource = 'aftership' | 'carrier' | 'flow';
|
|
12087
11920
|
type LabelRequestErrorHandlingResponsibility = 'merchant' | 'merchant_integration' | 'shopify_integration' | 'globale_cx' | 'globale_address_repair' | 'merchant_operations' | 'globale_system';
|
|
12088
11921
|
type LabelRequestResultOrganizationType = 'all' | 'legacy_production' | 'managed_markets_production' | 'sandbox';
|
|
12089
11922
|
type LabelRequestResultState = 'success' | 'failure';
|
|
@@ -12176,7 +12009,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
12176
12009
|
type ShopifyPromotionOfferAllocationMethod = 'each' | 'across';
|
|
12177
12010
|
type ShopifyPromotionOrderEntitlementComponent = 'subtotal' | 'shipping' | 'vat' | 'duty';
|
|
12178
12011
|
type ShopifyPromotionStatus = 'active' | 'inactive';
|
|
12179
|
-
type ShopifyService = 'payment' | 'duty_tax_calculator';
|
|
12012
|
+
type ShopifyService = 'payment' | 'duty_tax_calculator' | 'sellability';
|
|
12180
12013
|
type SimpleRoundingStrategy = 'no_rounding' | 'currency_precision';
|
|
12181
12014
|
type SnoozeNextActionWith = 'customer_service' | 'engineering';
|
|
12182
12015
|
type SnoozeSourceType = 'task' | 'invariant';
|
|
@@ -12825,6 +12658,9 @@ declare namespace io.flow.internal.v0.models {
|
|
|
12825
12658
|
readonly timestamp: string;
|
|
12826
12659
|
readonly afterpay_refund: io.flow.internal.v0.models.AfterpayRefund;
|
|
12827
12660
|
}
|
|
12661
|
+
interface AftershipWebhook {
|
|
12662
|
+
readonly placeholder?: boolean;
|
|
12663
|
+
}
|
|
12828
12664
|
interface AldoItem {
|
|
12829
12665
|
readonly id: string;
|
|
12830
12666
|
readonly number: string;
|
|
@@ -12881,6 +12717,21 @@ declare namespace io.flow.internal.v0.models {
|
|
|
12881
12717
|
readonly name: string;
|
|
12882
12718
|
readonly labels: Record<string, string[]>;
|
|
12883
12719
|
}
|
|
12720
|
+
interface AnshItem {
|
|
12721
|
+
readonly id: string;
|
|
12722
|
+
readonly number: string;
|
|
12723
|
+
readonly amount: io.flow.common.v0.models.Price;
|
|
12724
|
+
readonly description?: string;
|
|
12725
|
+
readonly type: io.flow.internal.v0.enums.AnshItemType;
|
|
12726
|
+
readonly added_on: string;
|
|
12727
|
+
}
|
|
12728
|
+
interface AnshItemForm {
|
|
12729
|
+
readonly number: string;
|
|
12730
|
+
readonly amount: io.flow.common.v0.models.Price;
|
|
12731
|
+
readonly description?: string;
|
|
12732
|
+
readonly type: io.flow.internal.v0.enums.AnshItemType;
|
|
12733
|
+
readonly added_on: string;
|
|
12734
|
+
}
|
|
12884
12735
|
interface ApmContent {
|
|
12885
12736
|
readonly processor_description: io.flow.internal.v0.unions.ContentItem;
|
|
12886
12737
|
}
|
|
@@ -14970,9 +14821,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
14970
14821
|
readonly pickup_account_number: string;
|
|
14971
14822
|
readonly pickup_name: string;
|
|
14972
14823
|
}
|
|
14973
|
-
interface DhlEcommerceWebhook {
|
|
14974
|
-
readonly placeholder?: boolean;
|
|
14975
|
-
}
|
|
14976
14824
|
interface Dict {
|
|
14977
14825
|
readonly discriminator: 'dict';
|
|
14978
14826
|
readonly label: io.flow.internal.v0.models.ContentLabel;
|
|
@@ -15098,6 +14946,8 @@ declare namespace io.flow.internal.v0.models {
|
|
|
15098
14946
|
readonly reporting_category?: io.flow.internal.v0.enums.DisputeReportingCategory;
|
|
15099
14947
|
readonly category?: io.flow.internal.v0.enums.DisputeCategory;
|
|
15100
14948
|
readonly status?: io.flow.internal.v0.enums.DisputeStatus;
|
|
14949
|
+
readonly defense_outcome?: io.flow.internal.v0.enums.DisputeDefenseOutcome;
|
|
14950
|
+
readonly defended_at?: string;
|
|
15101
14951
|
}
|
|
15102
14952
|
interface DisputeRecord {
|
|
15103
14953
|
readonly id: string;
|
|
@@ -15712,6 +15562,26 @@ declare namespace io.flow.internal.v0.models {
|
|
|
15712
15562
|
readonly transfer?: io.flow.internal.v0.models.Fee;
|
|
15713
15563
|
readonly negative_balance?: io.flow.internal.v0.models.Fee;
|
|
15714
15564
|
}
|
|
15565
|
+
interface FinalEstimate {
|
|
15566
|
+
readonly id: string;
|
|
15567
|
+
readonly organization_id: string;
|
|
15568
|
+
readonly label_id: string;
|
|
15569
|
+
readonly estimate: io.flow.label.v0.models.ShippingLabelHopSummary;
|
|
15570
|
+
}
|
|
15571
|
+
interface FinalEstimateDeleted {
|
|
15572
|
+
readonly discriminator: 'final_estimate_deleted';
|
|
15573
|
+
readonly event_id: string;
|
|
15574
|
+
readonly timestamp: string;
|
|
15575
|
+
readonly organization: string;
|
|
15576
|
+
readonly id: string;
|
|
15577
|
+
}
|
|
15578
|
+
interface FinalEstimateUpserted {
|
|
15579
|
+
readonly discriminator: 'final_estimate_upserted';
|
|
15580
|
+
readonly event_id: string;
|
|
15581
|
+
readonly timestamp: string;
|
|
15582
|
+
readonly organization: string;
|
|
15583
|
+
readonly final_estimate: io.flow.internal.v0.models.FinalEstimate;
|
|
15584
|
+
}
|
|
15715
15585
|
interface FinanceBankAccount {
|
|
15716
15586
|
readonly id: string;
|
|
15717
15587
|
readonly accounts: io.flow.internal.v0.models.AccountSummary[];
|
|
@@ -15833,6 +15703,9 @@ declare namespace io.flow.internal.v0.models {
|
|
|
15833
15703
|
readonly status?: io.flow.internal.v0.enums.ProcessorEntityStatus;
|
|
15834
15704
|
readonly organization_capability?: io.flow.internal.v0.enums.OrganizationCapability;
|
|
15835
15705
|
}
|
|
15706
|
+
interface FlexeWebhook {
|
|
15707
|
+
readonly placeholder?: boolean;
|
|
15708
|
+
}
|
|
15836
15709
|
interface FlowAccount {
|
|
15837
15710
|
readonly source: io.flow.internal.v0.models.AccountSource;
|
|
15838
15711
|
readonly id: string;
|
|
@@ -16365,6 +16238,19 @@ declare namespace io.flow.internal.v0.models {
|
|
|
16365
16238
|
readonly local: io.flow.common.v0.models.Money;
|
|
16366
16239
|
readonly transaction_created_at: string;
|
|
16367
16240
|
}
|
|
16241
|
+
interface GeRevenueShareTransaction {
|
|
16242
|
+
readonly discriminator: 'ge_revenue_share_transaction';
|
|
16243
|
+
readonly order: io.flow.internal.v0.models.BillingOrderTransactionOrderReference;
|
|
16244
|
+
readonly ge_revenue_share: io.flow.internal.v0.models.Fee;
|
|
16245
|
+
readonly id: string;
|
|
16246
|
+
readonly type: io.flow.internal.v0.enums.BillingTransactionType;
|
|
16247
|
+
readonly status: io.flow.internal.v0.enums.BillingTransactionStatus;
|
|
16248
|
+
readonly posted_at?: string;
|
|
16249
|
+
readonly value: io.flow.common.v0.models.Price;
|
|
16250
|
+
readonly description: string;
|
|
16251
|
+
readonly statement?: io.flow.internal.v0.models.BillingStatementReference;
|
|
16252
|
+
readonly created_at: string;
|
|
16253
|
+
}
|
|
16368
16254
|
interface GenerateLoadMultipleOrgs {
|
|
16369
16255
|
readonly discriminator: 'generate_load_multiple_orgs';
|
|
16370
16256
|
readonly organization_ids: string[];
|
|
@@ -17544,6 +17430,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17544
17430
|
readonly type: io.flow.internal.v0.enums.BillingTransactionType;
|
|
17545
17431
|
readonly value: io.flow.common.v0.models.Price;
|
|
17546
17432
|
readonly status: io.flow.internal.v0.enums.BillingTransactionStatus;
|
|
17433
|
+
readonly paid_at?: string;
|
|
17547
17434
|
readonly posted_at?: string;
|
|
17548
17435
|
readonly statement?: io.flow.internal.v0.models.BillingStatementReference;
|
|
17549
17436
|
readonly created_at: string;
|
|
@@ -18258,6 +18145,19 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18258
18145
|
readonly items: io.flow.order.management.v0.models.FulfillmentItem[];
|
|
18259
18146
|
readonly center?: io.flow.fulfillment.v0.models.CenterSummary;
|
|
18260
18147
|
}
|
|
18148
|
+
interface OrderFxTransaction {
|
|
18149
|
+
readonly discriminator: 'order_fx_transaction';
|
|
18150
|
+
readonly order: io.flow.internal.v0.models.BillingOrderTransactionOrderReference;
|
|
18151
|
+
readonly fx: io.flow.internal.v0.models.Fee;
|
|
18152
|
+
readonly id: string;
|
|
18153
|
+
readonly type: io.flow.internal.v0.enums.BillingTransactionType;
|
|
18154
|
+
readonly status: io.flow.internal.v0.enums.BillingTransactionStatus;
|
|
18155
|
+
readonly posted_at?: string;
|
|
18156
|
+
readonly value: io.flow.common.v0.models.Price;
|
|
18157
|
+
readonly description: string;
|
|
18158
|
+
readonly statement?: io.flow.internal.v0.models.BillingStatementReference;
|
|
18159
|
+
readonly created_at: string;
|
|
18160
|
+
}
|
|
18261
18161
|
interface OrderNote {
|
|
18262
18162
|
readonly id: string;
|
|
18263
18163
|
readonly note: string;
|
|
@@ -20520,12 +20420,42 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20520
20420
|
readonly negative_keywords: string[];
|
|
20521
20421
|
readonly value_threshold_usd?: number;
|
|
20522
20422
|
readonly auto_review_criteria?: io.flow.internal.v0.models.AutoReviewCriteria[];
|
|
20423
|
+
readonly effects?: string[];
|
|
20523
20424
|
}
|
|
20524
20425
|
interface RestrictionRuleDecisionForm {
|
|
20525
20426
|
readonly rule_id: string;
|
|
20526
20427
|
readonly decision: io.flow.internal.v0.enums.RestrictionDecision;
|
|
20527
20428
|
readonly product_id: string;
|
|
20528
20429
|
}
|
|
20430
|
+
interface RestrictionRuleDeleted {
|
|
20431
|
+
readonly discriminator: 'restriction_rule_deleted';
|
|
20432
|
+
readonly event_id: string;
|
|
20433
|
+
readonly timestamp: string;
|
|
20434
|
+
readonly id: string;
|
|
20435
|
+
}
|
|
20436
|
+
interface RestrictionRuleEffect {
|
|
20437
|
+
readonly id: string;
|
|
20438
|
+
readonly effect: io.flow.sellability.v0.enums.RuleEffectType;
|
|
20439
|
+
readonly regions: string[];
|
|
20440
|
+
readonly description?: string;
|
|
20441
|
+
}
|
|
20442
|
+
interface RestrictionRuleEffectDeleted {
|
|
20443
|
+
readonly discriminator: 'restriction_rule_effect_deleted';
|
|
20444
|
+
readonly event_id: string;
|
|
20445
|
+
readonly timestamp: string;
|
|
20446
|
+
readonly id: string;
|
|
20447
|
+
}
|
|
20448
|
+
interface RestrictionRuleEffectForm {
|
|
20449
|
+
readonly effect: io.flow.sellability.v0.enums.RuleEffectType;
|
|
20450
|
+
readonly regions: string[];
|
|
20451
|
+
readonly description?: string;
|
|
20452
|
+
}
|
|
20453
|
+
interface RestrictionRuleEffectUpserted {
|
|
20454
|
+
readonly discriminator: 'restriction_rule_effect_upserted';
|
|
20455
|
+
readonly event_id: string;
|
|
20456
|
+
readonly timestamp: string;
|
|
20457
|
+
readonly restriction_rule_effect: io.flow.internal.v0.models.RestrictionRuleEffect;
|
|
20458
|
+
}
|
|
20529
20459
|
interface RestrictionRuleForm {
|
|
20530
20460
|
readonly name: string;
|
|
20531
20461
|
readonly description: string;
|
|
@@ -20535,6 +20465,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20535
20465
|
readonly negative_keywords: string[];
|
|
20536
20466
|
readonly value_threshold_usd?: number;
|
|
20537
20467
|
readonly auto_review_criteria?: io.flow.internal.v0.models.AutoReviewCriteria[];
|
|
20468
|
+
readonly effects?: string[];
|
|
20538
20469
|
}
|
|
20539
20470
|
interface RestrictionRuleMetadata {
|
|
20540
20471
|
readonly rule: io.flow.internal.v0.models.RestrictionRuleSummary;
|
|
@@ -20552,6 +20483,12 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20552
20483
|
readonly name: string;
|
|
20553
20484
|
readonly description: string;
|
|
20554
20485
|
}
|
|
20486
|
+
interface RestrictionRuleUpserted {
|
|
20487
|
+
readonly discriminator: 'restriction_rule_upserted';
|
|
20488
|
+
readonly event_id: string;
|
|
20489
|
+
readonly timestamp: string;
|
|
20490
|
+
readonly restriction_rule: io.flow.internal.v0.models.RestrictionRule;
|
|
20491
|
+
}
|
|
20555
20492
|
interface RestrictionStatusMetadata {
|
|
20556
20493
|
readonly status: io.flow.internal.v0.enums.RestrictionStatus;
|
|
20557
20494
|
readonly count: number;
|
|
@@ -20835,6 +20772,12 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20835
20772
|
readonly product_code: string;
|
|
20836
20773
|
readonly customer_id: string;
|
|
20837
20774
|
}
|
|
20775
|
+
interface ShawnRoundtableWorkshopRate {
|
|
20776
|
+
readonly origin_country: string;
|
|
20777
|
+
readonly destination_country: string;
|
|
20778
|
+
readonly weight: number;
|
|
20779
|
+
readonly amount: number;
|
|
20780
|
+
}
|
|
20838
20781
|
interface ShippedItemValue {
|
|
20839
20782
|
readonly item: io.flow.common.v0.models.CatalogItemReference;
|
|
20840
20783
|
readonly taxes: io.flow.common.v0.models.PriceWithBase;
|
|
@@ -20958,6 +20901,60 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20958
20901
|
readonly organization: string;
|
|
20959
20902
|
readonly data: io.flow.internal.v0.models.ShopifyIncotermSummaryErrorData;
|
|
20960
20903
|
}
|
|
20904
|
+
interface ShopifyInventoryItemCreateDeleted {
|
|
20905
|
+
readonly discriminator: 'shopify_inventory_item_create_deleted';
|
|
20906
|
+
readonly event_id: string;
|
|
20907
|
+
readonly timestamp: string;
|
|
20908
|
+
readonly organization: string;
|
|
20909
|
+
readonly id: string;
|
|
20910
|
+
}
|
|
20911
|
+
interface ShopifyInventoryItemCreateUpserted {
|
|
20912
|
+
readonly discriminator: 'shopify_inventory_item_create_upserted';
|
|
20913
|
+
readonly event_id: string;
|
|
20914
|
+
readonly timestamp: string;
|
|
20915
|
+
readonly organization: string;
|
|
20916
|
+
readonly shopify_inventory_item_create: io.flow.internal.v0.models.ShopifyInventoryItemCreateWebhookEvent;
|
|
20917
|
+
}
|
|
20918
|
+
interface ShopifyInventoryItemCreateWebhookEvent {
|
|
20919
|
+
readonly id: string;
|
|
20920
|
+
readonly inventory_item: io.flow.shopify.markets.v0.models.ShopifyInventoryItem;
|
|
20921
|
+
}
|
|
20922
|
+
interface ShopifyInventoryItemDeleteDeleted {
|
|
20923
|
+
readonly discriminator: 'shopify_inventory_item_delete_deleted';
|
|
20924
|
+
readonly event_id: string;
|
|
20925
|
+
readonly timestamp: string;
|
|
20926
|
+
readonly organization: string;
|
|
20927
|
+
readonly id: string;
|
|
20928
|
+
}
|
|
20929
|
+
interface ShopifyInventoryItemDeleteUpserted {
|
|
20930
|
+
readonly discriminator: 'shopify_inventory_item_delete_upserted';
|
|
20931
|
+
readonly event_id: string;
|
|
20932
|
+
readonly timestamp: string;
|
|
20933
|
+
readonly organization: string;
|
|
20934
|
+
readonly shopify_inventory_item_delete: io.flow.internal.v0.models.ShopifyInventoryItemDeleteWebhookEvent;
|
|
20935
|
+
}
|
|
20936
|
+
interface ShopifyInventoryItemDeleteWebhookEvent {
|
|
20937
|
+
readonly id: string;
|
|
20938
|
+
readonly inventory_item_delete: io.flow.shopify.external.v0.models.ShopifyInventoryItemDelete;
|
|
20939
|
+
}
|
|
20940
|
+
interface ShopifyInventoryItemUpdateDeleted {
|
|
20941
|
+
readonly discriminator: 'shopify_inventory_item_update_deleted';
|
|
20942
|
+
readonly event_id: string;
|
|
20943
|
+
readonly timestamp: string;
|
|
20944
|
+
readonly organization: string;
|
|
20945
|
+
readonly id: string;
|
|
20946
|
+
}
|
|
20947
|
+
interface ShopifyInventoryItemUpdateUpserted {
|
|
20948
|
+
readonly discriminator: 'shopify_inventory_item_update_upserted';
|
|
20949
|
+
readonly event_id: string;
|
|
20950
|
+
readonly timestamp: string;
|
|
20951
|
+
readonly organization: string;
|
|
20952
|
+
readonly shopify_inventory_item_update: io.flow.internal.v0.models.ShopifyInventoryItemUpdateWebhookEvent;
|
|
20953
|
+
}
|
|
20954
|
+
interface ShopifyInventoryItemUpdateWebhookEvent {
|
|
20955
|
+
readonly id: string;
|
|
20956
|
+
readonly inventory_item: io.flow.shopify.markets.v0.models.ShopifyInventoryItem;
|
|
20957
|
+
}
|
|
20961
20958
|
interface ShopifyMarketsBestSellingProduct {
|
|
20962
20959
|
readonly id: string;
|
|
20963
20960
|
}
|
|
@@ -21302,6 +21299,60 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21302
21299
|
readonly organization: string;
|
|
21303
21300
|
readonly shopify_product_bundle: io.flow.internal.v0.models.ShopifyProductBundle;
|
|
21304
21301
|
}
|
|
21302
|
+
interface ShopifyProductCreateDeleted {
|
|
21303
|
+
readonly discriminator: 'shopify_product_create_deleted';
|
|
21304
|
+
readonly event_id: string;
|
|
21305
|
+
readonly timestamp: string;
|
|
21306
|
+
readonly organization: string;
|
|
21307
|
+
readonly id: string;
|
|
21308
|
+
}
|
|
21309
|
+
interface ShopifyProductCreateUpserted {
|
|
21310
|
+
readonly discriminator: 'shopify_product_create_upserted';
|
|
21311
|
+
readonly event_id: string;
|
|
21312
|
+
readonly timestamp: string;
|
|
21313
|
+
readonly organization: string;
|
|
21314
|
+
readonly shopify_product_create: io.flow.internal.v0.models.ShopifyProductCreateWebhookEvent;
|
|
21315
|
+
}
|
|
21316
|
+
interface ShopifyProductCreateWebhookEvent {
|
|
21317
|
+
readonly id: string;
|
|
21318
|
+
readonly product: io.flow.shopify.external.v0.models.Product;
|
|
21319
|
+
}
|
|
21320
|
+
interface ShopifyProductDeleteDeleted {
|
|
21321
|
+
readonly discriminator: 'shopify_product_delete_deleted';
|
|
21322
|
+
readonly event_id: string;
|
|
21323
|
+
readonly timestamp: string;
|
|
21324
|
+
readonly organization: string;
|
|
21325
|
+
readonly id: string;
|
|
21326
|
+
}
|
|
21327
|
+
interface ShopifyProductDeleteUpserted {
|
|
21328
|
+
readonly discriminator: 'shopify_product_delete_upserted';
|
|
21329
|
+
readonly event_id: string;
|
|
21330
|
+
readonly timestamp: string;
|
|
21331
|
+
readonly organization: string;
|
|
21332
|
+
readonly shopify_product_delete: io.flow.internal.v0.models.ShopifyProductDeleteWebhookEvent;
|
|
21333
|
+
}
|
|
21334
|
+
interface ShopifyProductDeleteWebhookEvent {
|
|
21335
|
+
readonly id: string;
|
|
21336
|
+
readonly product_delete: io.flow.shopify.external.v0.models.ProductDelete;
|
|
21337
|
+
}
|
|
21338
|
+
interface ShopifyProductUpdateDeleted {
|
|
21339
|
+
readonly discriminator: 'shopify_product_update_deleted';
|
|
21340
|
+
readonly event_id: string;
|
|
21341
|
+
readonly timestamp: string;
|
|
21342
|
+
readonly organization: string;
|
|
21343
|
+
readonly id: string;
|
|
21344
|
+
}
|
|
21345
|
+
interface ShopifyProductUpdateUpserted {
|
|
21346
|
+
readonly discriminator: 'shopify_product_update_upserted';
|
|
21347
|
+
readonly event_id: string;
|
|
21348
|
+
readonly timestamp: string;
|
|
21349
|
+
readonly organization: string;
|
|
21350
|
+
readonly shopify_product_update: io.flow.internal.v0.models.ShopifyProductUpdateWebhookEvent;
|
|
21351
|
+
}
|
|
21352
|
+
interface ShopifyProductUpdateWebhookEvent {
|
|
21353
|
+
readonly id: string;
|
|
21354
|
+
readonly product: io.flow.shopify.external.v0.models.Product;
|
|
21355
|
+
}
|
|
21305
21356
|
interface ShopifyProductWrapper {
|
|
21306
21357
|
readonly shopify_product: io.flow.shopify.external.v0.models.Product;
|
|
21307
21358
|
readonly deleted_at?: string;
|
|
@@ -21405,6 +21456,10 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21405
21456
|
readonly shopify_domain: string;
|
|
21406
21457
|
readonly shop_id: string;
|
|
21407
21458
|
}
|
|
21459
|
+
interface ShopifyStripeEvent {
|
|
21460
|
+
readonly id: string;
|
|
21461
|
+
readonly request?: any;
|
|
21462
|
+
}
|
|
21408
21463
|
interface ShopifyWebhook {
|
|
21409
21464
|
readonly id: string;
|
|
21410
21465
|
readonly shop_id: string;
|
|
@@ -21886,13 +21941,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21886
21941
|
readonly tariff_code: string;
|
|
21887
21942
|
readonly duties: Record<string, io.flow.internal.v0.models.Duties>;
|
|
21888
21943
|
}
|
|
21889
|
-
interface TariffCodesExport {
|
|
21890
|
-
readonly discriminator: 'tariff_codes_export';
|
|
21891
|
-
readonly event_id: string;
|
|
21892
|
-
readonly timestamp: string;
|
|
21893
|
-
readonly organization: string;
|
|
21894
|
-
readonly export_id: string;
|
|
21895
|
-
}
|
|
21896
21944
|
interface TariffEligibility {
|
|
21897
21945
|
readonly id: string;
|
|
21898
21946
|
readonly data: io.flow.internal.v0.unions.TariffEligibilityData;
|
|
@@ -21979,6 +22027,18 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21979
22027
|
readonly description?: string;
|
|
21980
22028
|
readonly category_code?: string;
|
|
21981
22029
|
}
|
|
22030
|
+
interface TaxDutyDeltaTransaction {
|
|
22031
|
+
readonly discriminator: 'tax_duty_delta_transaction';
|
|
22032
|
+
readonly order: io.flow.internal.v0.models.BillingOrderTransactionOrderReference;
|
|
22033
|
+
readonly id: string;
|
|
22034
|
+
readonly type: io.flow.internal.v0.enums.BillingTransactionType;
|
|
22035
|
+
readonly status: io.flow.internal.v0.enums.BillingTransactionStatus;
|
|
22036
|
+
readonly posted_at?: string;
|
|
22037
|
+
readonly value: io.flow.common.v0.models.Price;
|
|
22038
|
+
readonly description: string;
|
|
22039
|
+
readonly statement?: io.flow.internal.v0.models.BillingStatementReference;
|
|
22040
|
+
readonly created_at: string;
|
|
22041
|
+
}
|
|
21982
22042
|
interface TaxRemittanceTransaction {
|
|
21983
22043
|
readonly discriminator: 'tax_remittance_transaction';
|
|
21984
22044
|
readonly order: io.flow.internal.v0.models.BillingOrderSummary;
|
|
@@ -22302,6 +22362,9 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22302
22362
|
readonly flow_tracking_number: string;
|
|
22303
22363
|
readonly tracking_events: io.flow.internal.v0.models.TrackingEvent[];
|
|
22304
22364
|
}
|
|
22365
|
+
interface TrackingResync {
|
|
22366
|
+
readonly placeholder?: boolean;
|
|
22367
|
+
}
|
|
22305
22368
|
interface TrackingSubscription {
|
|
22306
22369
|
readonly id: string;
|
|
22307
22370
|
readonly organization_id: string;
|
|
@@ -22334,6 +22397,9 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22334
22397
|
readonly organization: string;
|
|
22335
22398
|
readonly tracking: io.flow.tracking.v0.models.Tracking;
|
|
22336
22399
|
}
|
|
22400
|
+
interface TrackingWebhook {
|
|
22401
|
+
readonly placeholder?: boolean;
|
|
22402
|
+
}
|
|
22337
22403
|
interface TransactionAdjustment {
|
|
22338
22404
|
readonly id: string;
|
|
22339
22405
|
readonly original_transaction: io.flow.internal.v0.models.TransactionReference;
|
|
@@ -22622,7 +22688,7 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
22622
22688
|
type DiscountRequestOfferForm = io.flow.internal.v0.models.DiscountRequestOfferFixedAmountForm;
|
|
22623
22689
|
type DisputeDetails = io.flow.internal.v0.models.DisputeDetailsAdyen | io.flow.internal.v0.models.DisputeDetailsPaypal | io.flow.internal.v0.models.DisputeDetailsStripe;
|
|
22624
22690
|
type DutyExpression = io.flow.internal.v0.models.DutyCompoundExpression | io.flow.internal.v0.models.DutySimpleExpression;
|
|
22625
|
-
type Event = io.flow.internal.v0.models.AdjustedEstimatesUpserted | io.flow.internal.v0.models.AdjustedEstimatesDeleted | io.flow.internal.v0.models.AdyenAuthorizationDeleted | io.flow.internal.v0.models.AdyenAuthorizationUpserted | io.flow.internal.v0.models.AdyenCancelDeleted | io.flow.internal.v0.models.AdyenCancelUpserted | io.flow.internal.v0.models.AdyenCaptureDeleted | io.flow.internal.v0.models.AdyenCaptureUpserted | io.flow.internal.v0.models.AdyenRefundDeleted | io.flow.internal.v0.models.AdyenRefundUpserted | io.flow.internal.v0.models.AdyenDisputeUpserted | io.flow.internal.v0.models.AdyenDisputeDeleted | io.flow.internal.v0.models.FulfillmentUpserted | io.flow.internal.v0.models.FulfillmentDeleted | io.flow.internal.v0.models.MerchantUpserted | io.flow.internal.v0.models.MerchantDeleted | io.flow.internal.v0.models.AccountUpserted | io.flow.internal.v0.models.AccountUpsertedV2 | io.flow.internal.v0.models.AccountDeletedV2 | io.flow.internal.v0.models.AccountContactUpserted | io.flow.internal.v0.models.AccountContactDeleted | io.flow.internal.v0.models.BillingStatementUpserted | io.flow.internal.v0.models.BillingStatementDeleted | io.flow.internal.v0.models.TaxRemittanceTransactionUpserted | io.flow.internal.v0.models.TaxRemittanceTransactionDeleted | io.flow.internal.v0.models.ChannelAccountUpsertedV2 | io.flow.internal.v0.models.ChannelAccountDeleted | io.flow.internal.v0.models.OrganizationAccountUpsertedV2 | io.flow.internal.v0.models.OrganizationAccountDeleted | io.flow.internal.v0.models.AccountTransactionsExportRequest | io.flow.internal.v0.models.AccountOrdersExportRequest | io.flow.internal.v0.models.MainTransactionUpserted | io.flow.internal.v0.models.MainTransactionDeleted | io.flow.internal.v0.models.MainTransactionUpsertedV2 | io.flow.internal.v0.models.MainTransactionDeletedV2 | io.flow.internal.v0.models.TransferTransactionUpserted | io.flow.internal.v0.models.TransferTransactionDeleted | io.flow.internal.v0.models.TransferTransactionUpsertedV2 | io.flow.internal.v0.models.TransferTransactionDeletedV2 | io.flow.internal.v0.models.ProcessingTransactionUpserted | io.flow.internal.v0.models.ProcessingTransactionDeleted | io.flow.internal.v0.models.BankPaymentUpserted | io.flow.internal.v0.models.BankPaymentUpsertedV2 | io.flow.internal.v0.models.BankPaymentDeletedV2 | io.flow.internal.v0.models.ChannelTransactionUpserted | io.flow.internal.v0.models.ChannelTransactionDeleted | io.flow.internal.v0.models.OrderTransactionUpserted | io.flow.internal.v0.models.OrderTransactionDeleted | io.flow.internal.v0.models.LabelTransactionUpserted | io.flow.internal.v0.models.LabelTransactionDeleted | io.flow.internal.v0.models.ChannelBilledTransactionUpserted | io.flow.internal.v0.models.ChannelBilledTransactionDeleted | io.flow.internal.v0.models.TaxTransactionUpserted | io.flow.internal.v0.models.TaxTransactionDeleted | io.flow.internal.v0.models.DutyTransactionUpserted | io.flow.internal.v0.models.DutyTransactionDeleted | io.flow.internal.v0.models.TransactionStatementUpserted | io.flow.internal.v0.models.TransactionStatementDeleted | io.flow.internal.v0.models.DailyValueUpserted | io.flow.internal.v0.models.DailyValueDeleted | io.flow.internal.v0.models.RevenueRecordUpserted | io.flow.internal.v0.models.RevenueRecordDeleted | io.flow.internal.v0.models.OtherRecordUpserted | io.flow.internal.v0.models.OtherRecordDeleted | io.flow.internal.v0.models.CalculatorOrganizationSettingsUpserted | io.flow.internal.v0.models.CalculatorOrganizationSettingsDeleted | io.flow.internal.v0.models.CarrierAccountUpsertedV2 | io.flow.internal.v0.models.CarrierAccountDeleted | io.flow.internal.v0.models.LabelGenerationSettingsUpserted | io.flow.internal.v0.models.LabelGenerationSettingsDeleted | io.flow.internal.v0.models.CatalogImportRequest | io.flow.internal.v0.models.ExclusionRuleUpserted | io.flow.internal.v0.models.ExclusionRuleDeleted | io.flow.internal.v0.models.ExclusionRuleExportRequest | io.flow.internal.v0.models.CatalogItemRegionAvailabilitiesPublished | io.flow.internal.v0.models.ReturnPolicyUpserted | io.flow.internal.v0.models.ReturnPolicyDeleted | io.flow.internal.v0.models.ReturnPolicyItemResultUpserted | io.flow.internal.v0.models.ReturnPolicyItemResultDeleted | io.flow.internal.v0.models.CatalogSettingsUpserted | io.flow.internal.v0.models.CatalogSettingsDeleted | io.flow.internal.v0.models.ChannelOrderAcceptanceUpserted | io.flow.internal.v0.models.ChannelOrderAcceptanceDeleted | io.flow.internal.v0.models.ChannelOrderAcceptanceFailed | io.flow.internal.v0.models.CheckoutConfigurationUpserted | io.flow.internal.v0.models.CheckoutConfigurationDeleted | io.flow.internal.v0.models.CommercialInvoiceInternalUpserted | io.flow.internal.v0.models.CommercialInvoiceInternalDeleted | io.flow.internal.v0.models.LocalizedContentUpserted | io.flow.internal.v0.models.LocalizationUpserted | io.flow.internal.v0.models.InternalChannelRateDeleted | io.flow.internal.v0.models.InternalChannelRateUpserted | io.flow.internal.v0.models.RateDeleted | io.flow.internal.v0.models.RateUpserted | io.flow.internal.v0.models.SpotRateDeleted | io.flow.internal.v0.models.SpotRateUpserted | io.flow.internal.v0.models.UsdSpotRateDeleted | io.flow.internal.v0.models.UsdSpotRateUpserted | io.flow.internal.v0.models.RateDeletedV2 | io.flow.internal.v0.models.RateUpsertedV2 | io.flow.internal.v0.models.OrganizationCurrencySettingUpserted | io.flow.internal.v0.models.OrganizationCurrencySettingDeleted | io.flow.internal.v0.models.ChannelCurrencySettingUpserted | io.flow.internal.v0.models.ChannelCurrencySettingDeleted | io.flow.internal.v0.models.CustomerPurgeUpserted | io.flow.internal.v0.models.CustomsDescriptionImport | io.flow.internal.v0.models.CustomsDescriptionTariffsImport | io.flow.internal.v0.models.DisputeUpserted | io.flow.internal.v0.models.DisputeDeleted | io.flow.internal.v0.models.DutyRatesPublishedV2 | io.flow.internal.v0.models.ItemSalesMarginDeleted | io.flow.internal.v0.models.ItemSalesMarginUpserted | io.flow.internal.v0.models.OrderAttributeDeleted | io.flow.internal.v0.models.OrderAttributeUpserted | io.flow.internal.v0.models.ExperienceExportRequest | io.flow.internal.v0.models.ExperienceImportRequest | io.flow.internal.v0.models.SubmittedOrderUpserted | io.flow.internal.v0.models.LevyRateSummaryUpserted | io.flow.internal.v0.models.ExportCompleted | io.flow.internal.v0.models.ExportFailed | io.flow.internal.v0.models.FeatureUpserted | io.flow.internal.v0.models.FeatureDeleted | io.flow.internal.v0.models.OrganizationBooleanValueUpserted | io.flow.internal.v0.models.OrganizationBooleanValueDeleted | io.flow.internal.v0.models.AccountSettingsUpserted | io.flow.internal.v0.models.AccountSettingsDeleted | io.flow.internal.v0.models.AccountProcessingRatesUpserted | io.flow.internal.v0.models.AccountProcessingRatesDeleted | io.flow.internal.v0.models.BillingOrganizationProcessingRatesUpserted | io.flow.internal.v0.models.BillingOrganizationProcessingRatesDeleted | io.flow.internal.v0.models.BillingOrganizationSettingsUpserted | io.flow.internal.v0.models.BillingOrganizationSettingsDeleted | io.flow.internal.v0.models.StandaloneAttachmentUpserted | io.flow.internal.v0.models.StandaloneAttachmentDeleted | io.flow.internal.v0.models.PlatformFeeChangeUpserted | io.flow.internal.v0.models.PlatformFeeChangeDeleted | io.flow.internal.v0.models.OrganizationBankAccountUpserted | io.flow.internal.v0.models.OrganizationBankAccountDeleted | io.flow.internal.v0.models.BillingCsvTransactionUpserted | io.flow.internal.v0.models.BillingCsvTransactionDeleted | io.flow.internal.v0.models.LabelInvoiceRequestUpserted | io.flow.internal.v0.models.LabelInvoiceRequestDeleted | io.flow.internal.v0.models.CarrierChargeUpserted | io.flow.internal.v0.models.CarrierChargeDeleted | io.flow.internal.v0.models.BankPaymentOrderUpserted | io.flow.internal.v0.models.BankPaymentOrderDeleted | io.flow.internal.v0.models.FraudReviewUpserted | io.flow.internal.v0.models.FraudReviewDeleted | io.flow.internal.v0.models.FraudPendingReviewUpserted | io.flow.internal.v0.models.FraudPendingReviewDeleted | io.flow.internal.v0.models.FraudReviewDecisionUpserted | io.flow.internal.v0.models.FraudReviewDecisionDeleted | io.flow.internal.v0.models.FraudReviewAuthorizationUpserted | io.flow.internal.v0.models.FraudReviewAuthorizationDeleted | io.flow.internal.v0.models.FraudPendingReviewAuthorizationUpserted | io.flow.internal.v0.models.FraudPendingReviewAuthorizationDeleted | io.flow.internal.v0.models.FraudReviewAuthorizationDecisionUpserted | io.flow.internal.v0.models.FraudReviewAuthorizationDecisionDeleted | io.flow.internal.v0.models.FraudProviderConfigurationUpserted | io.flow.internal.v0.models.FraudProviderConfigurationDeleted | io.flow.internal.v0.models.ManualReviewRuleUpserted | io.flow.internal.v0.models.ManualReviewRuleDeleted | io.flow.internal.v0.models.FtpFileUpserted | io.flow.internal.v0.models.FtpFileDeleted | io.flow.internal.v0.models.FtpFileToProcessUploaded | io.flow.internal.v0.models.CenterDefaultsUpserted | io.flow.internal.v0.models.CenterDefaultsDeleted | io.flow.internal.v0.models.FulfillmentFallbacksUpserted | io.flow.internal.v0.models.FulfillmentFallbacksDeleted | io.flow.internal.v0.models.PregeneratedRequestEvent | io.flow.internal.v0.models.QuoteUpserted | io.flow.internal.v0.models.QuoteDeleted | io.flow.internal.v0.models.AllItemsExport | io.flow.internal.v0.models.HarmonizedItemsHs6Export | io.flow.internal.v0.models.UnharmonizedItemsExport | io.flow.internal.v0.models.DutiedItemsExport | io.flow.internal.v0.models.TariffCodesExport | io.flow.internal.v0.models.HarmonizationPhraseSuggestionRequestImport | io.flow.internal.v0.models.HarmonizationCodesImport | io.flow.internal.v0.models.ItemClassificationCreated | io.flow.internal.v0.models.HarmonizeFullyRequestV2 | io.flow.internal.v0.models.ImportCompleted | io.flow.internal.v0.models.ImportFailed | io.flow.internal.v0.models.TimeToClassifyUpserted | io.flow.internal.v0.models.TimeToClassifyDeleted | io.flow.internal.v0.models.TimeToClassifyAggregatedUpserted | io.flow.internal.v0.models.TimeToClassifyAggregatedDeleted | io.flow.internal.v0.models.RateSourceSummaryUpserted | io.flow.internal.v0.models.RateSourceSummaryDeleted | io.flow.internal.v0.models.RateFreshnessSummaryUpserted | io.flow.internal.v0.models.RateFreshnessSummaryDeleted | io.flow.internal.v0.models.ItemHarmonizationUpserted | io.flow.internal.v0.models.ItemHarmonizationDeleted | io.flow.internal.v0.models.HarmonizationItemClassificationUpserted | io.flow.internal.v0.models.HarmonizationItemClassificationDeleted | io.flow.internal.v0.models.HarmonizationClassificationStatisticsPublished | io.flow.internal.v0.models.IssuerUpserted | io.flow.internal.v0.models.IssuerDeleted | io.flow.internal.v0.models.ItemFormImportRequest | io.flow.internal.v0.models.LabelRequestErrorUpserted | io.flow.internal.v0.models.LabelRequestErrorDeleted | io.flow.internal.v0.models.OrderValidationFailureUpserted | io.flow.internal.v0.models.OrderValidationFailureDeleted | io.flow.internal.v0.models.OrderValidationUpserted | io.flow.internal.v0.models.OrderValidationDeleted | io.flow.internal.v0.models.LabelTrackingSummaryUpserted | io.flow.internal.v0.models.LabelTrackingSummaryDeleted | io.flow.internal.v0.models.LocalizedItemUpsertedV2 | io.flow.internal.v0.models.LocalizedItemDeleted | io.flow.internal.v0.models.LocalizedItemDeletedV2 | io.flow.internal.v0.models.LocalizedItemSnapshot | io.flow.internal.v0.models.LocalizedPriceBookItemUpserted | io.flow.internal.v0.models.LocalizedPriceBookItemDeleted | io.flow.internal.v0.models.LogisticsCapabilitiesUpserted | io.flow.internal.v0.models.LogisticsCapabilitiesDeleted | io.flow.internal.v0.models.FeedUpserted | io.flow.internal.v0.models.FeedDeleted | io.flow.internal.v0.models.FeedsExport | io.flow.internal.v0.models.LocalizedItemPricesExportRequest | io.flow.internal.v0.models.OptinPromptUpserted | io.flow.internal.v0.models.OptinPromptDeleted | io.flow.internal.v0.models.OrderCombinedShipmentUpserted | io.flow.internal.v0.models.OrderCombinedShipmentDeleted | io.flow.internal.v0.models.OrderFulfillmentDeleted | io.flow.internal.v0.models.OrderFulfillmentUpserted | io.flow.internal.v0.models.OrderPlaced | io.flow.internal.v0.models.ReadyToFulfill | io.flow.internal.v0.models.FulfillmentCancel | io.flow.internal.v0.models.OrderShipped | io.flow.internal.v0.models.ItemsShipped | io.flow.internal.v0.models.OrganizationBusinessEntityDeleted | io.flow.internal.v0.models.OrganizationBusinessEntityUpserted | io.flow.internal.v0.models.OrganizationStatusChangeUpserted | io.flow.internal.v0.models.OrganizationStatusChangeDeleted | io.flow.internal.v0.models.OrganizationDeactivationUpserted | io.flow.internal.v0.models.OrganizationDeactivationDeleted | io.flow.internal.v0.models.MerchantGuidAssignmentUpserted | io.flow.internal.v0.models.MerchantGuidAssignmentDeleted | io.flow.internal.v0.models.OrganizationMetadataUpserted | io.flow.internal.v0.models.OrganizationMetadataDeleted | io.flow.internal.v0.models.PartnerOrganizationSettingsUpserted | io.flow.internal.v0.models.PartnerOrganizationSettingsDeleted | io.flow.internal.v0.models.UnassignedMerchantGuidUpserted | io.flow.internal.v0.models.UnassignedMerchantGuidDeleted | io.flow.internal.v0.models.PartnerTrackingSubscriptionUpserted | io.flow.internal.v0.models.PartnerTrackingSubscriptionDeleted | io.flow.internal.v0.models.SppTrackerUpdateRequestUpserted | io.flow.internal.v0.models.SppTrackerUpdateRequestDeleted | io.flow.internal.v0.models.InternalAuthorizationUpserted | io.flow.internal.v0.models.InternalAuthorizationDeleted | io.flow.internal.v0.models.AfterpayAuthorizationUpserted | io.flow.internal.v0.models.AfterpayAuthorizationDeleted | io.flow.internal.v0.models.AfterpayCaptureUpserted | io.flow.internal.v0.models.AfterpayCaptureDeleted | io.flow.internal.v0.models.AfterpayRefundUpserted | io.flow.internal.v0.models.AfterpayRefundDeleted | io.flow.internal.v0.models.AdyenMerchantAccountUpserted | io.flow.internal.v0.models.AdyenMerchantAccountDeleted | io.flow.internal.v0.models.ChargebackUpserted | io.flow.internal.v0.models.ChargebackDeleted | io.flow.internal.v0.models.PaymentProcessorAccountUpserted | io.flow.internal.v0.models.PaymentProcessorAccountDeleted | io.flow.internal.v0.models.PaymentProcessorMerchantUpserted | io.flow.internal.v0.models.PaymentProcessorMerchantDeleted | io.flow.internal.v0.models.AuthorizationBundleUpserted | io.flow.internal.v0.models.AuthorizationBundleDeleted | io.flow.internal.v0.models.OrganizationPaymentSettingUpserted | io.flow.internal.v0.models.OrganizationPaymentSettingDeleted | io.flow.internal.v0.models.PaypalPaymentDeleted | io.flow.internal.v0.models.PaypalPaymentUpserted | io.flow.internal.v0.models.PaypalExecutionDeleted | io.flow.internal.v0.models.PaypalExecutionUpserted | io.flow.internal.v0.models.PaypalRefundDeleted | io.flow.internal.v0.models.PaypalRefundUpserted | io.flow.internal.v0.models.PaypalDisputeUpserted | io.flow.internal.v0.models.PaypalDisputeDeleted | io.flow.internal.v0.models.ProductRestrictionRuleDecisionUpserted | io.flow.internal.v0.models.ProductRestrictionRuleDecisionDeleted | io.flow.internal.v0.models.OrderRatesPublishedV3 | io.flow.internal.v0.models.RatecardDimensionEstimateUpserted | io.flow.internal.v0.models.RatecardDimensionEstimateDeleted | io.flow.internal.v0.models.RatecardLanesImportRequest | io.flow.internal.v0.models.RatecardStandardConfigurationUpserted | io.flow.internal.v0.models.RatecardStandardConfigurationDeleted | io.flow.internal.v0.models.RatecardServiceFeeUpserted | io.flow.internal.v0.models.RatecardServiceFeeDeleted | io.flow.internal.v0.models.RatecardLaneAggregateUpserted | io.flow.internal.v0.models.RatecardLaneAggregateDeleted | io.flow.internal.v0.models.RatecardRateLevelUpserted | io.flow.internal.v0.models.RatecardRateLevelDeleted | io.flow.internal.v0.models.RatecardRateLevelRatecardUpserted | io.flow.internal.v0.models.RatecardRateLevelRatecardDeleted | io.flow.internal.v0.models.RatecardRateLevelOrganizationUpserted | io.flow.internal.v0.models.RatecardRateLevelOrganizationDeleted | io.flow.internal.v0.models.RestrictionOrganizationStatusUpserted | io.flow.internal.v0.models.RestrictionOrganizationStatusDeleted | io.flow.internal.v0.models.OrganizationRestrictionStatusUpserted | io.flow.internal.v0.models.OrganizationRestrictionStatusDeleted | io.flow.internal.v0.models.ScreeningStatusChangeUpserted | io.flow.internal.v0.models.ScreeningStatusChangeDeleted | io.flow.internal.v0.models.RestrictionsDailyopsUpserted | io.flow.internal.v0.models.RestrictionsDailyopsDeleted | io.flow.internal.v0.models.ShopifyShopUpserted | io.flow.internal.v0.models.ShopifyShopDeleted | io.flow.internal.v0.models.ShopifyExperienceShortIdUpserted | io.flow.internal.v0.models.ShopifyExperienceShortIdDeleted | io.flow.internal.v0.models.ShopifyMarketsOrderUpserted | io.flow.internal.v0.models.ShopifyMarketsOrderDeleted | io.flow.internal.v0.models.ShopifyMarketsShopUpserted | io.flow.internal.v0.models.ShopifyMarketsShopDeleted | io.flow.internal.v0.models.ShopifyMarketsWebhookRegistrationUpserted | io.flow.internal.v0.models.ShopifyMarketsWebhookRegistrationDeleted | io.flow.internal.v0.models.ShopifyMarketsShopStatisticsUpserted | io.flow.internal.v0.models.ShopifyMarketsShopStatisticsDeleted | io.flow.internal.v0.models.ShopifyMarketsMetricsUpserted | io.flow.internal.v0.models.ShopifyMarketsMetricsDeleted | io.flow.internal.v0.models.ChannelOrderSummaryUpserted | io.flow.internal.v0.models.ChannelOrderSummaryDeleted | io.flow.internal.v0.models.ChannelOrganizationIdentifierUpserted | io.flow.internal.v0.models.ChannelOrganizationIdentifierDeleted | io.flow.internal.v0.models.OrderTaxAndDutyInclusivitySettingUpserted | io.flow.internal.v0.models.OrderTaxAndDutyInclusivitySettingDeleted | io.flow.internal.v0.models.ShopifyProductBundleUpserted | io.flow.internal.v0.models.ShopifyProductBundleDeleted | io.flow.internal.v0.models.ShopifyIncotermSummaryErrorPublished | io.flow.internal.v0.models.ShopifyMarketsBestSellingProductUpserted | io.flow.internal.v0.models.ShopifyMarketsBestSellingProductDeleted | io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventUpserted | io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventDeleted | io.flow.internal.v0.models.ShopifyOrderFulfillmentsSnapshotUpserted | io.flow.internal.v0.models.ShopifyOrderFulfillmentsSnapshotDeleted | io.flow.internal.v0.models.StripeAuthorizationDeleted | io.flow.internal.v0.models.StripeAuthorizationUpserted | io.flow.internal.v0.models.StripeReversalDeleted | io.flow.internal.v0.models.StripeReversalUpserted | io.flow.internal.v0.models.StripeCaptureDeleted | io.flow.internal.v0.models.StripeCaptureUpserted | io.flow.internal.v0.models.StripeRefundDeleted | io.flow.internal.v0.models.StripeRefundUpserted | io.flow.internal.v0.models.StripeDisputeUpserted | io.flow.internal.v0.models.StripeDisputeDeleted | io.flow.internal.v0.models.LiabilityRemittancePlanUpserted | io.flow.internal.v0.models.LiabilityRemittancePlanDeleted | io.flow.internal.v0.models.TrackingProcessingErrorUpserted | io.flow.internal.v0.models.TrackingProcessingErrorDeleted | io.flow.internal.v0.models.TrackingLabelEventUpsertedV2 | io.flow.internal.v0.models.TrackingLabelEventDeletedV2 | io.flow.internal.v0.models.TrackingLabelUpserted | io.flow.internal.v0.models.TrackingLabelDeleted | io.flow.internal.v0.models.TrackingUpserted | io.flow.internal.v0.models.TrackingDeleted | io.flow.internal.v0.models.TrackingAssuranceAnalysisUpserted | io.flow.internal.v0.models.TrackingAssuranceAnalysisDeleted | io.flow.internal.v0.models.TrackingAssuranceJobUpserted | io.flow.internal.v0.models.TrackingAssuranceJobDeleted | io.flow.internal.v0.models.TrackingSubscriptionUpserted | io.flow.internal.v0.models.TrackingSubscriptionDeleted | io.flow.internal.v0.models.TrackingCarrierReturnLabelUpserted | io.flow.internal.v0.models.TrackingCarrierReturnLabelDeleted | io.flow.internal.v0.models.TrackingLabelDimensionsUpserted | io.flow.internal.v0.models.TrackingLabelDimensionsDeleted | io.flow.internal.v0.models.UserUpsertedV2 | io.flow.internal.v0.models.UserDeletedV2;
|
|
22691
|
+
type Event = io.flow.internal.v0.models.AdjustedEstimatesUpserted | io.flow.internal.v0.models.AdjustedEstimatesDeleted | io.flow.internal.v0.models.FinalEstimateUpserted | io.flow.internal.v0.models.FinalEstimateDeleted | io.flow.internal.v0.models.AdyenAuthorizationDeleted | io.flow.internal.v0.models.AdyenAuthorizationUpserted | io.flow.internal.v0.models.AdyenCancelDeleted | io.flow.internal.v0.models.AdyenCancelUpserted | io.flow.internal.v0.models.AdyenCaptureDeleted | io.flow.internal.v0.models.AdyenCaptureUpserted | io.flow.internal.v0.models.AdyenRefundDeleted | io.flow.internal.v0.models.AdyenRefundUpserted | io.flow.internal.v0.models.AdyenDisputeUpserted | io.flow.internal.v0.models.AdyenDisputeDeleted | io.flow.internal.v0.models.FulfillmentUpserted | io.flow.internal.v0.models.FulfillmentDeleted | io.flow.internal.v0.models.MerchantUpserted | io.flow.internal.v0.models.MerchantDeleted | io.flow.internal.v0.models.AccountUpserted | io.flow.internal.v0.models.AccountUpsertedV2 | io.flow.internal.v0.models.AccountDeletedV2 | io.flow.internal.v0.models.AccountContactUpserted | io.flow.internal.v0.models.AccountContactDeleted | io.flow.internal.v0.models.BillingStatementUpserted | io.flow.internal.v0.models.BillingStatementDeleted | io.flow.internal.v0.models.TaxRemittanceTransactionUpserted | io.flow.internal.v0.models.TaxRemittanceTransactionDeleted | io.flow.internal.v0.models.ChannelAccountUpsertedV2 | io.flow.internal.v0.models.ChannelAccountDeleted | io.flow.internal.v0.models.OrganizationAccountUpsertedV2 | io.flow.internal.v0.models.OrganizationAccountDeleted | io.flow.internal.v0.models.AccountTransactionsExportRequest | io.flow.internal.v0.models.AccountOrdersExportRequest | io.flow.internal.v0.models.MainTransactionUpserted | io.flow.internal.v0.models.MainTransactionDeleted | io.flow.internal.v0.models.MainTransactionUpsertedV2 | io.flow.internal.v0.models.MainTransactionDeletedV2 | io.flow.internal.v0.models.TransferTransactionUpserted | io.flow.internal.v0.models.TransferTransactionDeleted | io.flow.internal.v0.models.TransferTransactionUpsertedV2 | io.flow.internal.v0.models.TransferTransactionDeletedV2 | io.flow.internal.v0.models.ProcessingTransactionUpserted | io.flow.internal.v0.models.ProcessingTransactionDeleted | io.flow.internal.v0.models.BankPaymentUpserted | io.flow.internal.v0.models.BankPaymentUpsertedV2 | io.flow.internal.v0.models.BankPaymentDeletedV2 | io.flow.internal.v0.models.ChannelTransactionUpserted | io.flow.internal.v0.models.ChannelTransactionDeleted | io.flow.internal.v0.models.OrderTransactionUpserted | io.flow.internal.v0.models.OrderTransactionDeleted | io.flow.internal.v0.models.LabelTransactionUpserted | io.flow.internal.v0.models.LabelTransactionDeleted | io.flow.internal.v0.models.ChannelBilledTransactionUpserted | io.flow.internal.v0.models.ChannelBilledTransactionDeleted | io.flow.internal.v0.models.TaxTransactionUpserted | io.flow.internal.v0.models.TaxTransactionDeleted | io.flow.internal.v0.models.DutyTransactionUpserted | io.flow.internal.v0.models.DutyTransactionDeleted | io.flow.internal.v0.models.TransactionStatementUpserted | io.flow.internal.v0.models.TransactionStatementDeleted | io.flow.internal.v0.models.DailyValueUpserted | io.flow.internal.v0.models.DailyValueDeleted | io.flow.internal.v0.models.RevenueRecordUpserted | io.flow.internal.v0.models.RevenueRecordDeleted | io.flow.internal.v0.models.OtherRecordUpserted | io.flow.internal.v0.models.OtherRecordDeleted | io.flow.internal.v0.models.CalculatorOrganizationSettingsUpserted | io.flow.internal.v0.models.CalculatorOrganizationSettingsDeleted | io.flow.internal.v0.models.CarrierAccountUpsertedV2 | io.flow.internal.v0.models.CarrierAccountDeleted | io.flow.internal.v0.models.LabelGenerationSettingsUpserted | io.flow.internal.v0.models.LabelGenerationSettingsDeleted | io.flow.internal.v0.models.CatalogImportRequest | io.flow.internal.v0.models.ExclusionRuleUpserted | io.flow.internal.v0.models.ExclusionRuleDeleted | io.flow.internal.v0.models.ExclusionRuleExportRequest | io.flow.internal.v0.models.CatalogItemRegionAvailabilitiesPublished | io.flow.internal.v0.models.ReturnPolicyUpserted | io.flow.internal.v0.models.ReturnPolicyDeleted | io.flow.internal.v0.models.ReturnPolicyItemResultUpserted | io.flow.internal.v0.models.ReturnPolicyItemResultDeleted | io.flow.internal.v0.models.CatalogSettingsUpserted | io.flow.internal.v0.models.CatalogSettingsDeleted | io.flow.internal.v0.models.ChannelOrderAcceptanceUpserted | io.flow.internal.v0.models.ChannelOrderAcceptanceDeleted | io.flow.internal.v0.models.ChannelOrderAcceptanceFailed | io.flow.internal.v0.models.CheckoutConfigurationUpserted | io.flow.internal.v0.models.CheckoutConfigurationDeleted | io.flow.internal.v0.models.CommercialInvoiceInternalUpserted | io.flow.internal.v0.models.CommercialInvoiceInternalDeleted | io.flow.internal.v0.models.LocalizedContentUpserted | io.flow.internal.v0.models.LocalizationUpserted | io.flow.internal.v0.models.InternalChannelRateDeleted | io.flow.internal.v0.models.InternalChannelRateUpserted | io.flow.internal.v0.models.RateDeleted | io.flow.internal.v0.models.RateUpserted | io.flow.internal.v0.models.SpotRateDeleted | io.flow.internal.v0.models.SpotRateUpserted | io.flow.internal.v0.models.UsdSpotRateDeleted | io.flow.internal.v0.models.UsdSpotRateUpserted | io.flow.internal.v0.models.RateDeletedV2 | io.flow.internal.v0.models.RateUpsertedV2 | io.flow.internal.v0.models.OrganizationCurrencySettingUpserted | io.flow.internal.v0.models.OrganizationCurrencySettingDeleted | io.flow.internal.v0.models.ChannelCurrencySettingUpserted | io.flow.internal.v0.models.ChannelCurrencySettingDeleted | io.flow.internal.v0.models.CustomerPurgeUpserted | io.flow.internal.v0.models.CustomsDescriptionImport | io.flow.internal.v0.models.CustomsDescriptionTariffsImport | io.flow.internal.v0.models.DisputeUpserted | io.flow.internal.v0.models.DisputeDeleted | io.flow.internal.v0.models.DutyRatesPublishedV2 | io.flow.internal.v0.models.ItemSalesMarginDeleted | io.flow.internal.v0.models.ItemSalesMarginUpserted | io.flow.internal.v0.models.OrderAttributeDeleted | io.flow.internal.v0.models.OrderAttributeUpserted | io.flow.internal.v0.models.ExperienceExportRequest | io.flow.internal.v0.models.ExperienceImportRequest | io.flow.internal.v0.models.SubmittedOrderUpserted | io.flow.internal.v0.models.LevyRateSummaryUpserted | io.flow.internal.v0.models.ExportCompleted | io.flow.internal.v0.models.ExportFailed | io.flow.internal.v0.models.FeatureUpserted | io.flow.internal.v0.models.FeatureDeleted | io.flow.internal.v0.models.OrganizationBooleanValueUpserted | io.flow.internal.v0.models.OrganizationBooleanValueDeleted | io.flow.internal.v0.models.AccountSettingsUpserted | io.flow.internal.v0.models.AccountSettingsDeleted | io.flow.internal.v0.models.AccountProcessingRatesUpserted | io.flow.internal.v0.models.AccountProcessingRatesDeleted | io.flow.internal.v0.models.BillingOrganizationProcessingRatesUpserted | io.flow.internal.v0.models.BillingOrganizationProcessingRatesDeleted | io.flow.internal.v0.models.BillingOrganizationSettingsUpserted | io.flow.internal.v0.models.BillingOrganizationSettingsDeleted | io.flow.internal.v0.models.StandaloneAttachmentUpserted | io.flow.internal.v0.models.StandaloneAttachmentDeleted | io.flow.internal.v0.models.PlatformFeeChangeUpserted | io.flow.internal.v0.models.PlatformFeeChangeDeleted | io.flow.internal.v0.models.OrganizationBankAccountUpserted | io.flow.internal.v0.models.OrganizationBankAccountDeleted | io.flow.internal.v0.models.BillingCsvTransactionUpserted | io.flow.internal.v0.models.BillingCsvTransactionDeleted | io.flow.internal.v0.models.LabelInvoiceRequestUpserted | io.flow.internal.v0.models.LabelInvoiceRequestDeleted | io.flow.internal.v0.models.CarrierChargeUpserted | io.flow.internal.v0.models.CarrierChargeDeleted | io.flow.internal.v0.models.BankPaymentOrderUpserted | io.flow.internal.v0.models.BankPaymentOrderDeleted | io.flow.internal.v0.models.FraudReviewUpserted | io.flow.internal.v0.models.FraudReviewDeleted | io.flow.internal.v0.models.FraudPendingReviewUpserted | io.flow.internal.v0.models.FraudPendingReviewDeleted | io.flow.internal.v0.models.FraudReviewDecisionUpserted | io.flow.internal.v0.models.FraudReviewDecisionDeleted | io.flow.internal.v0.models.FraudReviewAuthorizationUpserted | io.flow.internal.v0.models.FraudReviewAuthorizationDeleted | io.flow.internal.v0.models.FraudPendingReviewAuthorizationUpserted | io.flow.internal.v0.models.FraudPendingReviewAuthorizationDeleted | io.flow.internal.v0.models.FraudReviewAuthorizationDecisionUpserted | io.flow.internal.v0.models.FraudReviewAuthorizationDecisionDeleted | io.flow.internal.v0.models.FraudProviderConfigurationUpserted | io.flow.internal.v0.models.FraudProviderConfigurationDeleted | io.flow.internal.v0.models.ManualReviewRuleUpserted | io.flow.internal.v0.models.ManualReviewRuleDeleted | io.flow.internal.v0.models.FtpFileUpserted | io.flow.internal.v0.models.FtpFileDeleted | io.flow.internal.v0.models.FtpFileToProcessUploaded | io.flow.internal.v0.models.CenterDefaultsUpserted | io.flow.internal.v0.models.CenterDefaultsDeleted | io.flow.internal.v0.models.FulfillmentFallbacksUpserted | io.flow.internal.v0.models.FulfillmentFallbacksDeleted | io.flow.internal.v0.models.PregeneratedRequestEvent | io.flow.internal.v0.models.QuoteUpserted | io.flow.internal.v0.models.QuoteDeleted | io.flow.internal.v0.models.AllItemsExport | io.flow.internal.v0.models.HarmonizedItemsHs6Export | io.flow.internal.v0.models.UnharmonizedItemsExport | io.flow.internal.v0.models.DutiedItemsExport | io.flow.internal.v0.models.HarmonizationPhraseSuggestionRequestImport | io.flow.internal.v0.models.HarmonizationCodesImport | io.flow.internal.v0.models.ItemClassificationCreated | io.flow.internal.v0.models.HarmonizeFullyRequestV2 | io.flow.internal.v0.models.ImportCompleted | io.flow.internal.v0.models.ImportFailed | io.flow.internal.v0.models.TimeToClassifyUpserted | io.flow.internal.v0.models.TimeToClassifyDeleted | io.flow.internal.v0.models.TimeToClassifyAggregatedUpserted | io.flow.internal.v0.models.TimeToClassifyAggregatedDeleted | io.flow.internal.v0.models.RateSourceSummaryUpserted | io.flow.internal.v0.models.RateSourceSummaryDeleted | io.flow.internal.v0.models.RateFreshnessSummaryUpserted | io.flow.internal.v0.models.RateFreshnessSummaryDeleted | io.flow.internal.v0.models.ItemHarmonizationUpserted | io.flow.internal.v0.models.ItemHarmonizationDeleted | io.flow.internal.v0.models.HarmonizationItemClassificationUpserted | io.flow.internal.v0.models.HarmonizationItemClassificationDeleted | io.flow.internal.v0.models.HarmonizationClassificationStatisticsPublished | io.flow.internal.v0.models.IssuerUpserted | io.flow.internal.v0.models.IssuerDeleted | io.flow.internal.v0.models.ItemFormImportRequest | io.flow.internal.v0.models.LabelRequestErrorUpserted | io.flow.internal.v0.models.LabelRequestErrorDeleted | io.flow.internal.v0.models.OrderValidationFailureUpserted | io.flow.internal.v0.models.OrderValidationFailureDeleted | io.flow.internal.v0.models.OrderValidationUpserted | io.flow.internal.v0.models.OrderValidationDeleted | io.flow.internal.v0.models.LabelTrackingSummaryUpserted | io.flow.internal.v0.models.LabelTrackingSummaryDeleted | io.flow.internal.v0.models.LocalizedItemUpsertedV2 | io.flow.internal.v0.models.LocalizedItemDeleted | io.flow.internal.v0.models.LocalizedItemDeletedV2 | io.flow.internal.v0.models.LocalizedItemSnapshot | io.flow.internal.v0.models.LocalizedPriceBookItemUpserted | io.flow.internal.v0.models.LocalizedPriceBookItemDeleted | io.flow.internal.v0.models.LogisticsCapabilitiesUpserted | io.flow.internal.v0.models.LogisticsCapabilitiesDeleted | io.flow.internal.v0.models.FeedUpserted | io.flow.internal.v0.models.FeedDeleted | io.flow.internal.v0.models.FeedsExport | io.flow.internal.v0.models.LocalizedItemPricesExportRequest | io.flow.internal.v0.models.OptinPromptUpserted | io.flow.internal.v0.models.OptinPromptDeleted | io.flow.internal.v0.models.OrderCombinedShipmentUpserted | io.flow.internal.v0.models.OrderCombinedShipmentDeleted | io.flow.internal.v0.models.OrderFulfillmentDeleted | io.flow.internal.v0.models.OrderFulfillmentUpserted | io.flow.internal.v0.models.OrderPlaced | io.flow.internal.v0.models.ReadyToFulfill | io.flow.internal.v0.models.FulfillmentCancel | io.flow.internal.v0.models.OrderShipped | io.flow.internal.v0.models.ItemsShipped | io.flow.internal.v0.models.OrganizationBusinessEntityDeleted | io.flow.internal.v0.models.OrganizationBusinessEntityUpserted | io.flow.internal.v0.models.OrganizationStatusChangeUpserted | io.flow.internal.v0.models.OrganizationStatusChangeDeleted | io.flow.internal.v0.models.OrganizationDeactivationUpserted | io.flow.internal.v0.models.OrganizationDeactivationDeleted | io.flow.internal.v0.models.MerchantGuidAssignmentUpserted | io.flow.internal.v0.models.MerchantGuidAssignmentDeleted | io.flow.internal.v0.models.OrganizationMetadataUpserted | io.flow.internal.v0.models.OrganizationMetadataDeleted | io.flow.internal.v0.models.PartnerOrganizationSettingsUpserted | io.flow.internal.v0.models.PartnerOrganizationSettingsDeleted | io.flow.internal.v0.models.UnassignedMerchantGuidUpserted | io.flow.internal.v0.models.UnassignedMerchantGuidDeleted | io.flow.internal.v0.models.PartnerTrackingSubscriptionUpserted | io.flow.internal.v0.models.PartnerTrackingSubscriptionDeleted | io.flow.internal.v0.models.SppTrackerUpdateRequestUpserted | io.flow.internal.v0.models.SppTrackerUpdateRequestDeleted | io.flow.internal.v0.models.InternalAuthorizationUpserted | io.flow.internal.v0.models.InternalAuthorizationDeleted | io.flow.internal.v0.models.AfterpayAuthorizationUpserted | io.flow.internal.v0.models.AfterpayAuthorizationDeleted | io.flow.internal.v0.models.AfterpayCaptureUpserted | io.flow.internal.v0.models.AfterpayCaptureDeleted | io.flow.internal.v0.models.AfterpayRefundUpserted | io.flow.internal.v0.models.AfterpayRefundDeleted | io.flow.internal.v0.models.AdyenMerchantAccountUpserted | io.flow.internal.v0.models.AdyenMerchantAccountDeleted | io.flow.internal.v0.models.ChargebackUpserted | io.flow.internal.v0.models.ChargebackDeleted | io.flow.internal.v0.models.PaymentProcessorAccountUpserted | io.flow.internal.v0.models.PaymentProcessorAccountDeleted | io.flow.internal.v0.models.PaymentProcessorMerchantUpserted | io.flow.internal.v0.models.PaymentProcessorMerchantDeleted | io.flow.internal.v0.models.AuthorizationBundleUpserted | io.flow.internal.v0.models.AuthorizationBundleDeleted | io.flow.internal.v0.models.OrganizationPaymentSettingUpserted | io.flow.internal.v0.models.OrganizationPaymentSettingDeleted | io.flow.internal.v0.models.PaypalPaymentDeleted | io.flow.internal.v0.models.PaypalPaymentUpserted | io.flow.internal.v0.models.PaypalExecutionDeleted | io.flow.internal.v0.models.PaypalExecutionUpserted | io.flow.internal.v0.models.PaypalRefundDeleted | io.flow.internal.v0.models.PaypalRefundUpserted | io.flow.internal.v0.models.PaypalDisputeUpserted | io.flow.internal.v0.models.PaypalDisputeDeleted | io.flow.internal.v0.models.ProductRestrictionRuleDecisionUpserted | io.flow.internal.v0.models.ProductRestrictionRuleDecisionDeleted | io.flow.internal.v0.models.OrderRatesPublishedV3 | io.flow.internal.v0.models.RatecardDimensionEstimateUpserted | io.flow.internal.v0.models.RatecardDimensionEstimateDeleted | io.flow.internal.v0.models.RatecardLanesImportRequest | io.flow.internal.v0.models.RatecardStandardConfigurationUpserted | io.flow.internal.v0.models.RatecardStandardConfigurationDeleted | io.flow.internal.v0.models.RatecardServiceFeeUpserted | io.flow.internal.v0.models.RatecardServiceFeeDeleted | io.flow.internal.v0.models.RatecardLaneAggregateUpserted | io.flow.internal.v0.models.RatecardLaneAggregateDeleted | io.flow.internal.v0.models.RatecardRateLevelUpserted | io.flow.internal.v0.models.RatecardRateLevelDeleted | io.flow.internal.v0.models.RatecardRateLevelRatecardUpserted | io.flow.internal.v0.models.RatecardRateLevelRatecardDeleted | io.flow.internal.v0.models.RatecardRateLevelOrganizationUpserted | io.flow.internal.v0.models.RatecardRateLevelOrganizationDeleted | io.flow.internal.v0.models.RestrictionOrganizationStatusUpserted | io.flow.internal.v0.models.RestrictionOrganizationStatusDeleted | io.flow.internal.v0.models.OrganizationRestrictionStatusUpserted | io.flow.internal.v0.models.OrganizationRestrictionStatusDeleted | io.flow.internal.v0.models.ScreeningStatusChangeUpserted | io.flow.internal.v0.models.ScreeningStatusChangeDeleted | io.flow.internal.v0.models.RestrictionsDailyopsUpserted | io.flow.internal.v0.models.RestrictionsDailyopsDeleted | io.flow.internal.v0.models.RestrictionRuleUpserted | io.flow.internal.v0.models.RestrictionRuleDeleted | io.flow.internal.v0.models.RestrictionRuleEffectUpserted | io.flow.internal.v0.models.RestrictionRuleEffectDeleted | io.flow.internal.v0.models.ShopifyShopUpserted | io.flow.internal.v0.models.ShopifyShopDeleted | io.flow.internal.v0.models.ShopifyExperienceShortIdUpserted | io.flow.internal.v0.models.ShopifyExperienceShortIdDeleted | io.flow.internal.v0.models.ShopifyMarketsOrderUpserted | io.flow.internal.v0.models.ShopifyMarketsOrderDeleted | io.flow.internal.v0.models.ShopifyMarketsShopUpserted | io.flow.internal.v0.models.ShopifyMarketsShopDeleted | io.flow.internal.v0.models.ShopifyMarketsWebhookRegistrationUpserted | io.flow.internal.v0.models.ShopifyMarketsWebhookRegistrationDeleted | io.flow.internal.v0.models.ShopifyMarketsShopStatisticsUpserted | io.flow.internal.v0.models.ShopifyMarketsShopStatisticsDeleted | io.flow.internal.v0.models.ShopifyMarketsMetricsUpserted | io.flow.internal.v0.models.ShopifyMarketsMetricsDeleted | io.flow.internal.v0.models.ChannelOrderSummaryUpserted | io.flow.internal.v0.models.ChannelOrderSummaryDeleted | io.flow.internal.v0.models.ChannelOrganizationIdentifierUpserted | io.flow.internal.v0.models.ChannelOrganizationIdentifierDeleted | io.flow.internal.v0.models.OrderTaxAndDutyInclusivitySettingUpserted | io.flow.internal.v0.models.OrderTaxAndDutyInclusivitySettingDeleted | io.flow.internal.v0.models.ShopifyProductBundleUpserted | io.flow.internal.v0.models.ShopifyProductBundleDeleted | io.flow.internal.v0.models.ShopifyIncotermSummaryErrorPublished | io.flow.internal.v0.models.ShopifyMarketsBestSellingProductUpserted | io.flow.internal.v0.models.ShopifyMarketsBestSellingProductDeleted | io.flow.internal.v0.models.ShopifyProductCreateUpserted | io.flow.internal.v0.models.ShopifyProductCreateDeleted | io.flow.internal.v0.models.ShopifyProductUpdateUpserted | io.flow.internal.v0.models.ShopifyProductUpdateDeleted | io.flow.internal.v0.models.ShopifyProductDeleteUpserted | io.flow.internal.v0.models.ShopifyProductDeleteDeleted | io.flow.internal.v0.models.ShopifyInventoryItemCreateUpserted | io.flow.internal.v0.models.ShopifyInventoryItemCreateDeleted | io.flow.internal.v0.models.ShopifyInventoryItemUpdateUpserted | io.flow.internal.v0.models.ShopifyInventoryItemUpdateDeleted | io.flow.internal.v0.models.ShopifyInventoryItemDeleteUpserted | io.flow.internal.v0.models.ShopifyInventoryItemDeleteDeleted | io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventUpserted | io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventDeleted | io.flow.internal.v0.models.ShopifyOrderFulfillmentsSnapshotUpserted | io.flow.internal.v0.models.ShopifyOrderFulfillmentsSnapshotDeleted | io.flow.internal.v0.models.StripeAuthorizationDeleted | io.flow.internal.v0.models.StripeAuthorizationUpserted | io.flow.internal.v0.models.StripeReversalDeleted | io.flow.internal.v0.models.StripeReversalUpserted | io.flow.internal.v0.models.StripeCaptureDeleted | io.flow.internal.v0.models.StripeCaptureUpserted | io.flow.internal.v0.models.StripeRefundDeleted | io.flow.internal.v0.models.StripeRefundUpserted | io.flow.internal.v0.models.StripeDisputeUpserted | io.flow.internal.v0.models.StripeDisputeDeleted | io.flow.internal.v0.models.LiabilityRemittancePlanUpserted | io.flow.internal.v0.models.LiabilityRemittancePlanDeleted | io.flow.internal.v0.models.TrackingProcessingErrorUpserted | io.flow.internal.v0.models.TrackingProcessingErrorDeleted | io.flow.internal.v0.models.TrackingLabelEventUpsertedV2 | io.flow.internal.v0.models.TrackingLabelEventDeletedV2 | io.flow.internal.v0.models.TrackingLabelUpserted | io.flow.internal.v0.models.TrackingLabelDeleted | io.flow.internal.v0.models.TrackingUpserted | io.flow.internal.v0.models.TrackingDeleted | io.flow.internal.v0.models.TrackingAssuranceAnalysisUpserted | io.flow.internal.v0.models.TrackingAssuranceAnalysisDeleted | io.flow.internal.v0.models.TrackingAssuranceJobUpserted | io.flow.internal.v0.models.TrackingAssuranceJobDeleted | io.flow.internal.v0.models.TrackingSubscriptionUpserted | io.flow.internal.v0.models.TrackingSubscriptionDeleted | io.flow.internal.v0.models.TrackingCarrierReturnLabelUpserted | io.flow.internal.v0.models.TrackingCarrierReturnLabelDeleted | io.flow.internal.v0.models.TrackingLabelDimensionsUpserted | io.flow.internal.v0.models.TrackingLabelDimensionsDeleted | io.flow.internal.v0.models.UserUpsertedV2 | io.flow.internal.v0.models.UserDeletedV2;
|
|
22626
22692
|
type ExplicitStatementForm = io.flow.internal.v0.models.ExplicitStatementFormTransactionIds | io.flow.internal.v0.models.ExplicitStatementFormAllPendingPostedTransactions;
|
|
22627
22693
|
type ExportSchedule = io.flow.internal.v0.models.ExportScheduleDaily | io.flow.internal.v0.models.ExportScheduleRepeated;
|
|
22628
22694
|
type FeatureDefaultValue = io.flow.internal.v0.models.BooleanFeatureDefaultValue | io.flow.internal.v0.models.StringFeatureDefaultValue;
|
|
@@ -22678,7 +22744,7 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
22678
22744
|
type TaskMetadata = io.flow.internal.v0.models.StatementCreationMetadata | io.flow.internal.v0.models.AccountingPendingOrderMetadata;
|
|
22679
22745
|
type TaxAmount = io.flow.internal.v0.models.CalculatedTaxAmount | io.flow.internal.v0.models.NoCalculatedTaxAmount;
|
|
22680
22746
|
type Tracker = io.flow.internal.v0.models.GoogleAnalytics | io.flow.internal.v0.models.GoogleGlobalSiteTag | io.flow.internal.v0.models.GoogleTagManager | io.flow.internal.v0.models.FacebookPixel | io.flow.internal.v0.models.SnapchatPixel;
|
|
22681
|
-
type Transaction = io.flow.internal.v0.models.InvoiceTransaction | io.flow.internal.v0.models.ManualTransaction | io.flow.internal.v0.models.ProcessingTransaction | io.flow.internal.v0.models.SubscriptionTransaction | io.flow.internal.v0.models.TaxRemittanceTransaction | io.flow.internal.v0.models.TransferTransaction | io.flow.internal.v0.models.VirtualCardTransaction | io.flow.internal.v0.models.DisputeTransaction | io.flow.internal.v0.models.ChannelTransaction | io.flow.internal.v0.models.LabelTransaction | io.flow.internal.v0.models.OrderTransaction | io.flow.internal.v0.models.ChannelBilledTransaction | io.flow.internal.v0.models.TaxTransaction | io.flow.internal.v0.models.DutyTransaction | io.flow.internal.v0.models.TrueupTransaction | io.flow.internal.v0.models.CarrierChargeTransaction;
|
|
22747
|
+
type Transaction = io.flow.internal.v0.models.InvoiceTransaction | io.flow.internal.v0.models.ManualTransaction | io.flow.internal.v0.models.ProcessingTransaction | io.flow.internal.v0.models.SubscriptionTransaction | io.flow.internal.v0.models.TaxRemittanceTransaction | io.flow.internal.v0.models.TransferTransaction | io.flow.internal.v0.models.VirtualCardTransaction | io.flow.internal.v0.models.DisputeTransaction | io.flow.internal.v0.models.ChannelTransaction | io.flow.internal.v0.models.LabelTransaction | io.flow.internal.v0.models.OrderTransaction | io.flow.internal.v0.models.ChannelBilledTransaction | io.flow.internal.v0.models.TaxTransaction | io.flow.internal.v0.models.DutyTransaction | io.flow.internal.v0.models.TrueupTransaction | io.flow.internal.v0.models.CarrierChargeTransaction | io.flow.internal.v0.models.OrderFxTransaction | io.flow.internal.v0.models.GeRevenueShareTransaction | io.flow.internal.v0.models.TaxDutyDeltaTransaction;
|
|
22682
22748
|
type TransactionSummary = io.flow.internal.v0.models.PaymentSummaryV2 | io.flow.internal.v0.models.FraudSummary;
|
|
22683
22749
|
type ValidationRule = io.flow.internal.v0.models.ValidationCharacterLength;
|
|
22684
22750
|
}
|
|
@@ -22779,6 +22845,7 @@ export declare type AfterpayCaptureUpserted = io.flow.internal.v0.models.Afterpa
|
|
|
22779
22845
|
export declare type AfterpayRefund = io.flow.internal.v0.models.AfterpayRefund;
|
|
22780
22846
|
export declare type AfterpayRefundDeleted = io.flow.internal.v0.models.AfterpayRefundDeleted;
|
|
22781
22847
|
export declare type AfterpayRefundUpserted = io.flow.internal.v0.models.AfterpayRefundUpserted;
|
|
22848
|
+
export declare type AftershipWebhook = io.flow.internal.v0.models.AftershipWebhook;
|
|
22782
22849
|
export declare type AldoItem = io.flow.internal.v0.models.AldoItem;
|
|
22783
22850
|
export declare type AldoItemForm = io.flow.internal.v0.models.AldoItemForm;
|
|
22784
22851
|
export declare type AldoItemType = io.flow.internal.v0.enums.AldoItemType;
|
|
@@ -22791,6 +22858,9 @@ export declare type AllItemsExport = io.flow.internal.v0.models.AllItemsExport;
|
|
|
22791
22858
|
export declare type AllOrganizationsMembership = io.flow.internal.v0.models.AllOrganizationsMembership;
|
|
22792
22859
|
export declare type AllocationItemReference = io.flow.internal.v0.models.AllocationItemReference;
|
|
22793
22860
|
export declare type AllowedLabels = io.flow.internal.v0.models.AllowedLabels;
|
|
22861
|
+
export declare type AnshItem = io.flow.internal.v0.models.AnshItem;
|
|
22862
|
+
export declare type AnshItemForm = io.flow.internal.v0.models.AnshItemForm;
|
|
22863
|
+
export declare type AnshItemType = io.flow.internal.v0.enums.AnshItemType;
|
|
22794
22864
|
export declare type AnyDangerousGoods = io.flow.internal.v0.enums.AnyDangerousGoods;
|
|
22795
22865
|
export declare type ApiCallReferenceId = io.flow.internal.v0.enums.ApiCallReferenceId;
|
|
22796
22866
|
export declare type ApmContent = io.flow.internal.v0.models.ApmContent;
|
|
@@ -23189,7 +23259,6 @@ export declare type DeminimisAdjustmentType = io.flow.internal.v0.enums.Deminimi
|
|
|
23189
23259
|
export declare type DestinationError = io.flow.internal.v0.models.DestinationError;
|
|
23190
23260
|
export declare type Dhl = io.flow.internal.v0.models.Dhl;
|
|
23191
23261
|
export declare type DhlEcommerce = io.flow.internal.v0.models.DhlEcommerce;
|
|
23192
|
-
export declare type DhlEcommerceWebhook = io.flow.internal.v0.models.DhlEcommerceWebhook;
|
|
23193
23262
|
export declare type Dict = io.flow.internal.v0.models.Dict;
|
|
23194
23263
|
export declare type DimensionEstimateOpsInput = io.flow.internal.v0.models.DimensionEstimateOpsInput;
|
|
23195
23264
|
export declare type Discount = io.flow.internal.v0.models.Discount;
|
|
@@ -23333,6 +23402,9 @@ export declare type FeedUpserted = io.flow.internal.v0.models.FeedUpserted;
|
|
|
23333
23402
|
export declare type FeedsExport = io.flow.internal.v0.models.FeedsExport;
|
|
23334
23403
|
export declare type Fees = io.flow.internal.v0.models.Fees;
|
|
23335
23404
|
export declare type FeesSource = io.flow.internal.v0.enums.FeesSource;
|
|
23405
|
+
export declare type FinalEstimate = io.flow.internal.v0.models.FinalEstimate;
|
|
23406
|
+
export declare type FinalEstimateDeleted = io.flow.internal.v0.models.FinalEstimateDeleted;
|
|
23407
|
+
export declare type FinalEstimateUpserted = io.flow.internal.v0.models.FinalEstimateUpserted;
|
|
23336
23408
|
export declare type FinanceBankAccount = io.flow.internal.v0.models.FinanceBankAccount;
|
|
23337
23409
|
export declare type FinanceBankAccountOwner = io.flow.internal.v0.models.FinanceBankAccountOwner;
|
|
23338
23410
|
export declare type FinanceBankPayment = io.flow.internal.v0.models.FinanceBankPayment;
|
|
@@ -23349,6 +23421,7 @@ export declare type FiservAuthenticationForm = io.flow.internal.v0.models.Fiserv
|
|
|
23349
23421
|
export declare type FiservMerchant = io.flow.internal.v0.models.FiservMerchant;
|
|
23350
23422
|
export declare type FiservMerchantModificationForm = io.flow.internal.v0.models.FiservMerchantModificationForm;
|
|
23351
23423
|
export declare type FiservMerchantPutForm = io.flow.internal.v0.models.FiservMerchantPutForm;
|
|
23424
|
+
export declare type FlexeWebhook = io.flow.internal.v0.models.FlexeWebhook;
|
|
23352
23425
|
export declare type FlowAccount = io.flow.internal.v0.models.FlowAccount;
|
|
23353
23426
|
export declare type FlowApp = io.flow.internal.v0.enums.FlowApp;
|
|
23354
23427
|
export declare type FlowBillingStatement = io.flow.internal.v0.models.FlowBillingStatement;
|
|
@@ -23437,6 +23510,7 @@ export declare type FxRevenueRecognitionOrder = io.flow.internal.v0.models.FxRev
|
|
|
23437
23510
|
export declare type FxRevenueRecognitionOrganization = io.flow.internal.v0.models.FxRevenueRecognitionOrganization;
|
|
23438
23511
|
export declare type FxRevenueRecognitionRate = io.flow.internal.v0.models.FxRevenueRecognitionRate;
|
|
23439
23512
|
export declare type FxRevenueRecognitionSource = io.flow.internal.v0.models.FxRevenueRecognitionSource;
|
|
23513
|
+
export declare type GeRevenueShareTransaction = io.flow.internal.v0.models.GeRevenueShareTransaction;
|
|
23440
23514
|
export declare type GenerateLoad = io.flow.internal.v0.unions.GenerateLoad;
|
|
23441
23515
|
export declare type GenerateLoadMultipleOrgs = io.flow.internal.v0.models.GenerateLoadMultipleOrgs;
|
|
23442
23516
|
export declare type GenerateLoadSingleOrg = io.flow.internal.v0.models.GenerateLoadSingleOrg;
|
|
@@ -23565,6 +23639,7 @@ export declare type LabelCreationJobSummary = io.flow.internal.v0.models.LabelCr
|
|
|
23565
23639
|
export declare type LabelCreationRequestForm = io.flow.internal.v0.models.LabelCreationRequestForm;
|
|
23566
23640
|
export declare type LabelCreationStatus = io.flow.internal.v0.enums.LabelCreationStatus;
|
|
23567
23641
|
export declare type LabelDestination = io.flow.internal.v0.models.LabelDestination;
|
|
23642
|
+
export declare type LabelEventSource = io.flow.internal.v0.enums.LabelEventSource;
|
|
23568
23643
|
export declare type LabelGenerationSettings = io.flow.internal.v0.models.LabelGenerationSettings;
|
|
23569
23644
|
export declare type LabelGenerationSettingsDeleted = io.flow.internal.v0.models.LabelGenerationSettingsDeleted;
|
|
23570
23645
|
export declare type LabelGenerationSettingsForm = io.flow.internal.v0.models.LabelGenerationSettingsForm;
|
|
@@ -23793,6 +23868,7 @@ export declare type OrderDetail = io.flow.internal.v0.models.OrderDetail;
|
|
|
23793
23868
|
export declare type OrderEditSummary = io.flow.internal.v0.models.OrderEditSummary;
|
|
23794
23869
|
export declare type OrderFulfillmentDeleted = io.flow.internal.v0.models.OrderFulfillmentDeleted;
|
|
23795
23870
|
export declare type OrderFulfillmentUpserted = io.flow.internal.v0.models.OrderFulfillmentUpserted;
|
|
23871
|
+
export declare type OrderFxTransaction = io.flow.internal.v0.models.OrderFxTransaction;
|
|
23796
23872
|
export declare type OrderLifecycleEvent = io.flow.internal.v0.enums.OrderLifecycleEvent;
|
|
23797
23873
|
export declare type OrderNote = io.flow.internal.v0.models.OrderNote;
|
|
23798
23874
|
export declare type OrderNoteForm = io.flow.internal.v0.models.OrderNoteForm;
|
|
@@ -24182,10 +24258,16 @@ export declare type RestrictionProductRequestForm = io.flow.internal.v0.models.R
|
|
|
24182
24258
|
export declare type RestrictionProductSummary = io.flow.internal.v0.models.RestrictionProductSummary;
|
|
24183
24259
|
export declare type RestrictionRule = io.flow.internal.v0.models.RestrictionRule;
|
|
24184
24260
|
export declare type RestrictionRuleDecisionForm = io.flow.internal.v0.models.RestrictionRuleDecisionForm;
|
|
24261
|
+
export declare type RestrictionRuleDeleted = io.flow.internal.v0.models.RestrictionRuleDeleted;
|
|
24262
|
+
export declare type RestrictionRuleEffect = io.flow.internal.v0.models.RestrictionRuleEffect;
|
|
24263
|
+
export declare type RestrictionRuleEffectDeleted = io.flow.internal.v0.models.RestrictionRuleEffectDeleted;
|
|
24264
|
+
export declare type RestrictionRuleEffectForm = io.flow.internal.v0.models.RestrictionRuleEffectForm;
|
|
24265
|
+
export declare type RestrictionRuleEffectUpserted = io.flow.internal.v0.models.RestrictionRuleEffectUpserted;
|
|
24185
24266
|
export declare type RestrictionRuleForm = io.flow.internal.v0.models.RestrictionRuleForm;
|
|
24186
24267
|
export declare type RestrictionRuleMetadata = io.flow.internal.v0.models.RestrictionRuleMetadata;
|
|
24187
24268
|
export declare type RestrictionRuleOverride = io.flow.internal.v0.models.RestrictionRuleOverride;
|
|
24188
24269
|
export declare type RestrictionRuleSummary = io.flow.internal.v0.models.RestrictionRuleSummary;
|
|
24270
|
+
export declare type RestrictionRuleUpserted = io.flow.internal.v0.models.RestrictionRuleUpserted;
|
|
24189
24271
|
export declare type RestrictionStatus = io.flow.internal.v0.enums.RestrictionStatus;
|
|
24190
24272
|
export declare type RestrictionStatusMetadata = io.flow.internal.v0.models.RestrictionStatusMetadata;
|
|
24191
24273
|
export declare type RestrictionsDailyops = io.flow.internal.v0.models.RestrictionsDailyops;
|
|
@@ -24239,6 +24321,7 @@ export declare type SessionRollout = io.flow.internal.v0.models.SessionRollout;
|
|
|
24239
24321
|
export declare type SessionRolloutForm = io.flow.internal.v0.models.SessionRolloutForm;
|
|
24240
24322
|
export declare type SetupBlockPutForm = io.flow.internal.v0.models.SetupBlockPutForm;
|
|
24241
24323
|
export declare type SfExpress = io.flow.internal.v0.models.SfExpress;
|
|
24324
|
+
export declare type ShawnRoundtableWorkshopRate = io.flow.internal.v0.models.ShawnRoundtableWorkshopRate;
|
|
24242
24325
|
export declare type ShippedItemValue = io.flow.internal.v0.models.ShippedItemValue;
|
|
24243
24326
|
export declare type ShippingLane = io.flow.internal.v0.models.ShippingLane;
|
|
24244
24327
|
export declare type ShippingMethodReference = io.flow.internal.v0.models.ShippingMethodReference;
|
|
@@ -24266,6 +24349,15 @@ export declare type ShopifyIncotermConfiguration = io.flow.internal.v0.enums.Sho
|
|
|
24266
24349
|
export declare type ShopifyIncotermIncludes = io.flow.internal.v0.models.ShopifyIncotermIncludes;
|
|
24267
24350
|
export declare type ShopifyIncotermSummaryErrorData = io.flow.internal.v0.models.ShopifyIncotermSummaryErrorData;
|
|
24268
24351
|
export declare type ShopifyIncotermSummaryErrorPublished = io.flow.internal.v0.models.ShopifyIncotermSummaryErrorPublished;
|
|
24352
|
+
export declare type ShopifyInventoryItemCreateDeleted = io.flow.internal.v0.models.ShopifyInventoryItemCreateDeleted;
|
|
24353
|
+
export declare type ShopifyInventoryItemCreateUpserted = io.flow.internal.v0.models.ShopifyInventoryItemCreateUpserted;
|
|
24354
|
+
export declare type ShopifyInventoryItemCreateWebhookEvent = io.flow.internal.v0.models.ShopifyInventoryItemCreateWebhookEvent;
|
|
24355
|
+
export declare type ShopifyInventoryItemDeleteDeleted = io.flow.internal.v0.models.ShopifyInventoryItemDeleteDeleted;
|
|
24356
|
+
export declare type ShopifyInventoryItemDeleteUpserted = io.flow.internal.v0.models.ShopifyInventoryItemDeleteUpserted;
|
|
24357
|
+
export declare type ShopifyInventoryItemDeleteWebhookEvent = io.flow.internal.v0.models.ShopifyInventoryItemDeleteWebhookEvent;
|
|
24358
|
+
export declare type ShopifyInventoryItemUpdateDeleted = io.flow.internal.v0.models.ShopifyInventoryItemUpdateDeleted;
|
|
24359
|
+
export declare type ShopifyInventoryItemUpdateUpserted = io.flow.internal.v0.models.ShopifyInventoryItemUpdateUpserted;
|
|
24360
|
+
export declare type ShopifyInventoryItemUpdateWebhookEvent = io.flow.internal.v0.models.ShopifyInventoryItemUpdateWebhookEvent;
|
|
24269
24361
|
export declare type ShopifyMarketsBestSellingProduct = io.flow.internal.v0.models.ShopifyMarketsBestSellingProduct;
|
|
24270
24362
|
export declare type ShopifyMarketsBestSellingProductDeleted = io.flow.internal.v0.models.ShopifyMarketsBestSellingProductDeleted;
|
|
24271
24363
|
export declare type ShopifyMarketsBestSellingProductUpserted = io.flow.internal.v0.models.ShopifyMarketsBestSellingProductUpserted;
|
|
@@ -24333,6 +24425,15 @@ export declare type ShopifyProductBundle = io.flow.internal.v0.models.ShopifyPro
|
|
|
24333
24425
|
export declare type ShopifyProductBundleDeleted = io.flow.internal.v0.models.ShopifyProductBundleDeleted;
|
|
24334
24426
|
export declare type ShopifyProductBundleUnderlying = io.flow.internal.v0.models.ShopifyProductBundleUnderlying;
|
|
24335
24427
|
export declare type ShopifyProductBundleUpserted = io.flow.internal.v0.models.ShopifyProductBundleUpserted;
|
|
24428
|
+
export declare type ShopifyProductCreateDeleted = io.flow.internal.v0.models.ShopifyProductCreateDeleted;
|
|
24429
|
+
export declare type ShopifyProductCreateUpserted = io.flow.internal.v0.models.ShopifyProductCreateUpserted;
|
|
24430
|
+
export declare type ShopifyProductCreateWebhookEvent = io.flow.internal.v0.models.ShopifyProductCreateWebhookEvent;
|
|
24431
|
+
export declare type ShopifyProductDeleteDeleted = io.flow.internal.v0.models.ShopifyProductDeleteDeleted;
|
|
24432
|
+
export declare type ShopifyProductDeleteUpserted = io.flow.internal.v0.models.ShopifyProductDeleteUpserted;
|
|
24433
|
+
export declare type ShopifyProductDeleteWebhookEvent = io.flow.internal.v0.models.ShopifyProductDeleteWebhookEvent;
|
|
24434
|
+
export declare type ShopifyProductUpdateDeleted = io.flow.internal.v0.models.ShopifyProductUpdateDeleted;
|
|
24435
|
+
export declare type ShopifyProductUpdateUpserted = io.flow.internal.v0.models.ShopifyProductUpdateUpserted;
|
|
24436
|
+
export declare type ShopifyProductUpdateWebhookEvent = io.flow.internal.v0.models.ShopifyProductUpdateWebhookEvent;
|
|
24336
24437
|
export declare type ShopifyProductWrapper = io.flow.internal.v0.models.ShopifyProductWrapper;
|
|
24337
24438
|
export declare type ShopifyPromoForm = io.flow.internal.v0.models.ShopifyPromoForm;
|
|
24338
24439
|
export declare type ShopifyPromotion = io.flow.internal.v0.models.ShopifyPromotion;
|
|
@@ -24361,6 +24462,7 @@ export declare type ShopifyShopDeleted = io.flow.internal.v0.models.ShopifyShopD
|
|
|
24361
24462
|
export declare type ShopifyShopStatistics = io.flow.internal.v0.models.ShopifyShopStatistics;
|
|
24362
24463
|
export declare type ShopifyShopUpserted = io.flow.internal.v0.models.ShopifyShopUpserted;
|
|
24363
24464
|
export declare type ShopifyStoreDetail = io.flow.internal.v0.models.ShopifyStoreDetail;
|
|
24465
|
+
export declare type ShopifyStripeEvent = io.flow.internal.v0.models.ShopifyStripeEvent;
|
|
24364
24466
|
export declare type ShopifyWebhook = io.flow.internal.v0.models.ShopifyWebhook;
|
|
24365
24467
|
export declare type ShopifyWebhookEvent = io.flow.internal.v0.models.ShopifyWebhookEvent;
|
|
24366
24468
|
export declare type ShopifyWebhookForm = io.flow.internal.v0.models.ShopifyWebhookForm;
|
|
@@ -24441,7 +24543,6 @@ export declare type SubscriptionTransaction = io.flow.internal.v0.models.Subscri
|
|
|
24441
24543
|
export declare type SuggestionAction = io.flow.internal.v0.enums.SuggestionAction;
|
|
24442
24544
|
export declare type SupportedLabels = io.flow.internal.v0.models.SupportedLabels;
|
|
24443
24545
|
export declare type TariffCodeDuty = io.flow.internal.v0.models.TariffCodeDuty;
|
|
24444
|
-
export declare type TariffCodesExport = io.flow.internal.v0.models.TariffCodesExport;
|
|
24445
24546
|
export declare type TariffEligibility = io.flow.internal.v0.models.TariffEligibility;
|
|
24446
24547
|
export declare type TariffEligibilityData = io.flow.internal.v0.unions.TariffEligibilityData;
|
|
24447
24548
|
export declare type TariffEligibilityForm = io.flow.internal.v0.unions.TariffEligibilityForm;
|
|
@@ -24463,6 +24564,7 @@ export declare type TaxCalculationErrorCode = io.flow.internal.v0.enums.TaxCalcu
|
|
|
24463
24564
|
export declare type TaxCalculationForm = io.flow.internal.v0.models.TaxCalculationForm;
|
|
24464
24565
|
export declare type TaxCalculationLineItem = io.flow.internal.v0.models.TaxCalculationLineItem;
|
|
24465
24566
|
export declare type TaxCalculationLineItemForm = io.flow.internal.v0.models.TaxCalculationLineItemForm;
|
|
24567
|
+
export declare type TaxDutyDeltaTransaction = io.flow.internal.v0.models.TaxDutyDeltaTransaction;
|
|
24466
24568
|
export declare type TaxParty = io.flow.internal.v0.enums.TaxParty;
|
|
24467
24569
|
export declare type TaxRemittanceTransaction = io.flow.internal.v0.models.TaxRemittanceTransaction;
|
|
24468
24570
|
export declare type TaxRemittanceTransactionDeleted = io.flow.internal.v0.models.TaxRemittanceTransactionDeleted;
|
|
@@ -24518,10 +24620,12 @@ export declare type TrackingProcessingErrorUpserted = io.flow.internal.v0.models
|
|
|
24518
24620
|
export declare type TrackingProcessingFailureClassification = io.flow.internal.v0.enums.TrackingProcessingFailureClassification;
|
|
24519
24621
|
export declare type TrackingRequest = io.flow.internal.v0.models.TrackingRequest;
|
|
24520
24622
|
export declare type TrackingResponse = io.flow.internal.v0.models.TrackingResponse;
|
|
24623
|
+
export declare type TrackingResync = io.flow.internal.v0.models.TrackingResync;
|
|
24521
24624
|
export declare type TrackingSubscription = io.flow.internal.v0.models.TrackingSubscription;
|
|
24522
24625
|
export declare type TrackingSubscriptionDeleted = io.flow.internal.v0.models.TrackingSubscriptionDeleted;
|
|
24523
24626
|
export declare type TrackingSubscriptionUpserted = io.flow.internal.v0.models.TrackingSubscriptionUpserted;
|
|
24524
24627
|
export declare type TrackingUpserted = io.flow.internal.v0.models.TrackingUpserted;
|
|
24628
|
+
export declare type TrackingWebhook = io.flow.internal.v0.models.TrackingWebhook;
|
|
24525
24629
|
export declare type Transaction = io.flow.internal.v0.unions.Transaction;
|
|
24526
24630
|
export declare type TransactionAdjustment = io.flow.internal.v0.models.TransactionAdjustment;
|
|
24527
24631
|
export declare type TransactionAdjustmentForm = io.flow.internal.v0.models.TransactionAdjustmentForm;
|