@flowio/api-internal-prop-types 9.24.107 → 9.24.109
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/api-internal.d.ts +432 -321
- package/lib/api-internal.js +1 -1
- package/package.json +2 -2
- package/src/api-internal.d.ts +432 -321
- package/src/api-internal.js +579 -381
package/lib/api-internal.d.ts
CHANGED
|
@@ -1282,304 +1282,6 @@ declare namespace io.flow.RESERVED_WORD_export.v0.unions {
|
|
|
1282
1282
|
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);
|
|
1283
1283
|
}
|
|
1284
1284
|
|
|
1285
|
-
declare namespace io.flow.flexe.v0.enums {
|
|
1286
|
-
type FlexeAttachmentType = 'shipping_label' | 'packing_slip' | 'packing_slip_letter';
|
|
1287
|
-
type FlexeNotification = 'receipt' | 'shipment';
|
|
1288
|
-
type FlexeShipmentType = 'fulfillment_order' | 'retail_fulfillment_order' | 'carton_pick_delivery' | 'delivery' | 'container_delivery';
|
|
1289
|
-
type FlexeStatus = 'in_transit' | 'completed';
|
|
1290
|
-
}
|
|
1291
|
-
|
|
1292
|
-
declare namespace io.flow.flexe.v0.models {
|
|
1293
|
-
interface BillOfLading {
|
|
1294
|
-
readonly 'type': string;
|
|
1295
|
-
readonly 'gs1us'?: io.flow.flexe.v0.models.Gs1Us;
|
|
1296
|
-
}
|
|
1297
|
-
|
|
1298
|
-
interface BillTo {
|
|
1299
|
-
readonly 'name': string;
|
|
1300
|
-
readonly 'address_1': string;
|
|
1301
|
-
readonly 'locality': string;
|
|
1302
|
-
readonly 'region': string;
|
|
1303
|
-
readonly 'postal_code': string;
|
|
1304
|
-
readonly 'country': string;
|
|
1305
|
-
readonly 'address_2'?: string;
|
|
1306
|
-
readonly 'address_3'?: string;
|
|
1307
|
-
}
|
|
1308
|
-
|
|
1309
|
-
interface CartonPickDeliveryDetails {
|
|
1310
|
-
readonly 'shipment_uuid'?: string;
|
|
1311
|
-
readonly 'carrier'?: string;
|
|
1312
|
-
readonly 'carrier_id'?: string;
|
|
1313
|
-
}
|
|
1314
|
-
|
|
1315
|
-
interface ContainerDeliveryDetails {
|
|
1316
|
-
readonly 'purchase_order': string;
|
|
1317
|
-
readonly 'container_number'?: string;
|
|
1318
|
-
readonly 'seal_number'?: string;
|
|
1319
|
-
readonly 'vendor'?: string;
|
|
1320
|
-
readonly 'expected_inventory': io.flow.flexe.v0.models.InventoryDetails[];
|
|
1321
|
-
readonly 'received_inventory': io.flow.flexe.v0.models.InventoryDetails[];
|
|
1322
|
-
readonly 'damaged_inventory': io.flow.flexe.v0.models.InventoryDetails[];
|
|
1323
|
-
readonly 'quantities_by_inventory': Record<string, io.flow.flexe.v0.models.QuantityByInventory>;
|
|
1324
|
-
}
|
|
1325
|
-
|
|
1326
|
-
interface DeliveryDetails {
|
|
1327
|
-
readonly 'shipment_uuid'?: string;
|
|
1328
|
-
readonly 'trailer_number'?: string;
|
|
1329
|
-
readonly 'pallets': io.flow.flexe.v0.models.Pallet[];
|
|
1330
|
-
readonly 'quantities_by_inventory': Record<string, io.flow.flexe.v0.models.QuantityByInventory>;
|
|
1331
|
-
}
|
|
1332
|
-
|
|
1333
|
-
interface Error {
|
|
1334
|
-
readonly 'url': string;
|
|
1335
|
-
readonly 'client_request_id': string;
|
|
1336
|
-
readonly 'generated_at': string;
|
|
1337
|
-
readonly 'error': string;
|
|
1338
|
-
}
|
|
1339
|
-
|
|
1340
|
-
interface FlexeAttachment {
|
|
1341
|
-
readonly 'type': io.flow.flexe.v0.enums.FlexeAttachmentType;
|
|
1342
|
-
readonly 'display_name': string;
|
|
1343
|
-
readonly 'url': string;
|
|
1344
|
-
}
|
|
1345
|
-
|
|
1346
|
-
interface FlexeEcommerceFulfillment {
|
|
1347
|
-
readonly 'url': string;
|
|
1348
|
-
readonly 'client_request_id': string;
|
|
1349
|
-
readonly 'generated_at': string;
|
|
1350
|
-
readonly 'data': io.flow.flexe.v0.models.FlexeEcommerceFulfillmentData;
|
|
1351
|
-
readonly 'errors': io.flow.flexe.v0.models.FlexeEcommerceFulfillmentErrors[];
|
|
1352
|
-
}
|
|
1353
|
-
|
|
1354
|
-
interface FlexeEcommerceFulfillmentData {
|
|
1355
|
-
readonly 'import_id': string;
|
|
1356
|
-
readonly 'succeeded_uuids': string[];
|
|
1357
|
-
readonly 'failed_uuids': string[];
|
|
1358
|
-
readonly 'errors': string[];
|
|
1359
|
-
}
|
|
1360
|
-
|
|
1361
|
-
interface FlexeEcommerceFulfillmentErrors {
|
|
1362
|
-
readonly 'status': string;
|
|
1363
|
-
readonly 'title': string;
|
|
1364
|
-
readonly 'detail': string;
|
|
1365
|
-
readonly 'source'?: string;
|
|
1366
|
-
}
|
|
1367
|
-
|
|
1368
|
-
interface FlexeEcommerceFulfillmentForm {
|
|
1369
|
-
readonly 'reservation_id': number;
|
|
1370
|
-
readonly 'client_request_id': string;
|
|
1371
|
-
readonly 'request': io.flow.flexe.v0.models.Orders;
|
|
1372
|
-
}
|
|
1373
|
-
|
|
1374
|
-
interface FlexeInventoryData {
|
|
1375
|
-
readonly 'sku': string;
|
|
1376
|
-
readonly 'quantity': string;
|
|
1377
|
-
readonly 'unit': string;
|
|
1378
|
-
}
|
|
1379
|
-
|
|
1380
|
-
interface FlexeRetailAttachment {
|
|
1381
|
-
readonly 'display_name': string;
|
|
1382
|
-
readonly 'url': string;
|
|
1383
|
-
}
|
|
1384
|
-
|
|
1385
|
-
interface FlexeRetailFulfillment {
|
|
1386
|
-
readonly 'url': string;
|
|
1387
|
-
readonly 'client_request_id': string;
|
|
1388
|
-
readonly 'generated_at': string;
|
|
1389
|
-
readonly 'data': io.flow.flexe.v0.models.FlexeRetailFulfillmentData;
|
|
1390
|
-
readonly 'errors'?: io.flow.flexe.v0.models.FlexeRetailFulfillmentErrors[];
|
|
1391
|
-
}
|
|
1392
|
-
|
|
1393
|
-
interface FlexeRetailFulfillmentData {
|
|
1394
|
-
readonly 'id': string;
|
|
1395
|
-
readonly 'purchase_order_uuid': string;
|
|
1396
|
-
readonly 'status': string;
|
|
1397
|
-
}
|
|
1398
|
-
|
|
1399
|
-
interface FlexeRetailFulfillmentErrors {
|
|
1400
|
-
readonly 'type': string;
|
|
1401
|
-
readonly 'message': string;
|
|
1402
|
-
}
|
|
1403
|
-
|
|
1404
|
-
interface FlexeRetailFulfillmentForm {
|
|
1405
|
-
readonly 'reservation_id': number;
|
|
1406
|
-
readonly 'client_request_id'?: string;
|
|
1407
|
-
readonly 'request': io.flow.flexe.v0.models.RetailOrder;
|
|
1408
|
-
}
|
|
1409
|
-
|
|
1410
|
-
interface FulfillmentOrderDetails {
|
|
1411
|
-
readonly 'shipment_uuid': string;
|
|
1412
|
-
readonly 'carrier'?: string;
|
|
1413
|
-
readonly 'carrier_id'?: string;
|
|
1414
|
-
}
|
|
1415
|
-
|
|
1416
|
-
interface Gs1Us {
|
|
1417
|
-
readonly 'number': string;
|
|
1418
|
-
readonly 'ship_to'?: io.flow.flexe.v0.models.Gs1UsShipTo;
|
|
1419
|
-
readonly 'bill_to'?: io.flow.flexe.v0.models.BillTo;
|
|
1420
|
-
}
|
|
1421
|
-
|
|
1422
|
-
interface Gs1UsShipTo {
|
|
1423
|
-
readonly 'cid_number'?: string;
|
|
1424
|
-
readonly 'location_number'?: string;
|
|
1425
|
-
readonly 'free_on_board'?: boolean;
|
|
1426
|
-
}
|
|
1427
|
-
|
|
1428
|
-
interface Inventory {
|
|
1429
|
-
readonly 'url': string;
|
|
1430
|
-
readonly 'client_request_id': string;
|
|
1431
|
-
readonly 'generated_at': string;
|
|
1432
|
-
readonly 'data': Record<string, io.flow.flexe.v0.models.InventoryDetails>;
|
|
1433
|
-
}
|
|
1434
|
-
|
|
1435
|
-
interface InventoryCount {
|
|
1436
|
-
readonly 'amount': number;
|
|
1437
|
-
readonly 'unit': string;
|
|
1438
|
-
}
|
|
1439
|
-
|
|
1440
|
-
interface InventoryData {
|
|
1441
|
-
readonly 'pallet': io.flow.flexe.v0.models.InventoryCount;
|
|
1442
|
-
readonly 'carton'?: io.flow.flexe.v0.models.InventoryCount;
|
|
1443
|
-
readonly 'each'?: io.flow.flexe.v0.models.InventoryCount;
|
|
1444
|
-
}
|
|
1445
|
-
|
|
1446
|
-
interface InventoryDetails {
|
|
1447
|
-
readonly 'key': Record<string, io.flow.flexe.v0.models.Sku>;
|
|
1448
|
-
}
|
|
1449
|
-
|
|
1450
|
-
interface LadingQuantity {
|
|
1451
|
-
readonly 'num_pallets': number;
|
|
1452
|
-
}
|
|
1453
|
-
|
|
1454
|
-
interface Order {
|
|
1455
|
-
readonly 'shipment_uuid': string;
|
|
1456
|
-
readonly 'purchase_order': string;
|
|
1457
|
-
readonly 'carrier': string;
|
|
1458
|
-
readonly 'service_type': string;
|
|
1459
|
-
readonly 'carrier_assigned_id': string;
|
|
1460
|
-
readonly 'name': string;
|
|
1461
|
-
readonly 'address_1': string;
|
|
1462
|
-
readonly 'address_2'?: string;
|
|
1463
|
-
readonly 'address_3'?: string;
|
|
1464
|
-
readonly 'city': string;
|
|
1465
|
-
readonly 'state': string;
|
|
1466
|
-
readonly 'postal_code': string;
|
|
1467
|
-
readonly 'phone'?: string;
|
|
1468
|
-
readonly 'instructions'?: string;
|
|
1469
|
-
readonly 'inventory_data': io.flow.flexe.v0.models.FlexeInventoryData[];
|
|
1470
|
-
readonly 'attachments': io.flow.flexe.v0.models.FlexeAttachment[];
|
|
1471
|
-
}
|
|
1472
|
-
|
|
1473
|
-
interface Orders {
|
|
1474
|
-
readonly 'orders': io.flow.flexe.v0.models.Order[];
|
|
1475
|
-
}
|
|
1476
|
-
|
|
1477
|
-
interface Pallet {
|
|
1478
|
-
readonly 'pallet_id': string;
|
|
1479
|
-
readonly 'sku': string;
|
|
1480
|
-
readonly 'quantity': number;
|
|
1481
|
-
readonly 'packaging': string;
|
|
1482
|
-
}
|
|
1483
|
-
|
|
1484
|
-
interface PurchaseOrder {
|
|
1485
|
-
readonly 'retail_fulfillment_order_id': string;
|
|
1486
|
-
readonly 'bill_of_lading_number': string;
|
|
1487
|
-
readonly 'purchase_order_uuid': string;
|
|
1488
|
-
readonly 'pickup_window_start': string;
|
|
1489
|
-
readonly 'pickup_window_end': string;
|
|
1490
|
-
readonly 'tags': string[];
|
|
1491
|
-
}
|
|
1492
|
-
|
|
1493
|
-
interface QuantityByInventory {
|
|
1494
|
-
readonly 'received': io.flow.flexe.v0.models.InventoryData;
|
|
1495
|
-
readonly 'expected'?: io.flow.flexe.v0.models.InventoryData;
|
|
1496
|
-
readonly 'damaged'?: io.flow.flexe.v0.models.InventoryData;
|
|
1497
|
-
}
|
|
1498
|
-
|
|
1499
|
-
interface ReceiptNotification {
|
|
1500
|
-
readonly 'shipment_id': string;
|
|
1501
|
-
readonly 'shipment_type': io.flow.flexe.v0.enums.FlexeShipmentType;
|
|
1502
|
-
readonly 'reservation_id': string;
|
|
1503
|
-
readonly 'status': io.flow.flexe.v0.enums.FlexeStatus;
|
|
1504
|
-
readonly 'delivery_details'?: io.flow.flexe.v0.models.DeliveryDetails;
|
|
1505
|
-
readonly 'container_delivery_details'?: io.flow.flexe.v0.models.ContainerDeliveryDetails;
|
|
1506
|
-
}
|
|
1507
|
-
|
|
1508
|
-
interface RetailFulfillmentOrderDetails {
|
|
1509
|
-
readonly 'master_bill_of_lading_number': string;
|
|
1510
|
-
readonly 'scac': string;
|
|
1511
|
-
readonly 'pro_number': string;
|
|
1512
|
-
readonly 'purchase_orders': io.flow.flexe.v0.models.PurchaseOrder[];
|
|
1513
|
-
readonly 'lading_quantity': io.flow.flexe.v0.models.LadingQuantity;
|
|
1514
|
-
}
|
|
1515
|
-
|
|
1516
|
-
interface RetailInventoryData {
|
|
1517
|
-
readonly 'sku': string;
|
|
1518
|
-
readonly 'quantity': number;
|
|
1519
|
-
readonly 'unit': string;
|
|
1520
|
-
readonly 'attachments'?: io.flow.flexe.v0.models.FlexeRetailAttachment[];
|
|
1521
|
-
}
|
|
1522
|
-
|
|
1523
|
-
interface RetailOrder {
|
|
1524
|
-
readonly 'order': io.flow.flexe.v0.models.RetailOrderData;
|
|
1525
|
-
}
|
|
1526
|
-
|
|
1527
|
-
interface RetailOrderData {
|
|
1528
|
-
readonly 'purchase_order_uuid': string;
|
|
1529
|
-
readonly 'bill_of_lading': io.flow.flexe.v0.models.BillOfLading;
|
|
1530
|
-
readonly 'inventory_data': io.flow.flexe.v0.models.RetailInventoryData[];
|
|
1531
|
-
readonly 'ship_within': io.flow.flexe.v0.models.ShipWithin;
|
|
1532
|
-
readonly 'ship_to': io.flow.flexe.v0.models.ShipTo;
|
|
1533
|
-
readonly 'build_by'?: string;
|
|
1534
|
-
readonly 'instrunctions'?: string;
|
|
1535
|
-
readonly 'routing_details_id'?: string;
|
|
1536
|
-
readonly 'destination_type'?: string;
|
|
1537
|
-
}
|
|
1538
|
-
|
|
1539
|
-
interface ShipTo {
|
|
1540
|
-
readonly 'name': string;
|
|
1541
|
-
readonly 'address_1': string;
|
|
1542
|
-
readonly 'locality': string;
|
|
1543
|
-
readonly 'region': string;
|
|
1544
|
-
readonly 'postal_code': string;
|
|
1545
|
-
readonly 'country': string;
|
|
1546
|
-
readonly 'address_2'?: string;
|
|
1547
|
-
readonly 'address_3'?: string;
|
|
1548
|
-
}
|
|
1549
|
-
|
|
1550
|
-
interface ShipWithin {
|
|
1551
|
-
readonly 'start': string;
|
|
1552
|
-
readonly 'end': string;
|
|
1553
|
-
}
|
|
1554
|
-
|
|
1555
|
-
interface ShipmentDeliveryDetails {
|
|
1556
|
-
readonly 'shipment_uuid'?: string;
|
|
1557
|
-
}
|
|
1558
|
-
|
|
1559
|
-
interface ShipmentNotification {
|
|
1560
|
-
readonly 'shipment_id': string;
|
|
1561
|
-
readonly 'shipment_type': io.flow.flexe.v0.enums.FlexeShipmentType;
|
|
1562
|
-
readonly 'reservation_id': string;
|
|
1563
|
-
readonly 'status': io.flow.flexe.v0.enums.FlexeStatus;
|
|
1564
|
-
readonly 'fulfillment_order_details'?: io.flow.flexe.v0.models.FulfillmentOrderDetails;
|
|
1565
|
-
readonly 'retail_fulfillment_order_details'?: io.flow.flexe.v0.models.RetailFulfillmentOrderDetails;
|
|
1566
|
-
readonly 'delivery_details'?: io.flow.flexe.v0.models.ShipmentDeliveryDetails;
|
|
1567
|
-
readonly 'carton_pick_delivery_details'?: io.flow.flexe.v0.models.CartonPickDeliveryDetails;
|
|
1568
|
-
}
|
|
1569
|
-
|
|
1570
|
-
interface Sku {
|
|
1571
|
-
readonly 'sku': string;
|
|
1572
|
-
readonly 'description': string;
|
|
1573
|
-
readonly 'summary': Record<string, io.flow.flexe.v0.models.SkuSummary>;
|
|
1574
|
-
}
|
|
1575
|
-
|
|
1576
|
-
interface SkuSummary {
|
|
1577
|
-
readonly 'key': string;
|
|
1578
|
-
readonly 'quantity': number;
|
|
1579
|
-
readonly 'unit': string;
|
|
1580
|
-
}
|
|
1581
|
-
}
|
|
1582
|
-
|
|
1583
1285
|
declare namespace io.flow.payment.v0.enums {
|
|
1584
1286
|
type AddressVerificationResultFieldCode = 'matched' | 'not_available' | 'not_checked' | 'not_matched';
|
|
1585
1287
|
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';
|
|
@@ -4191,6 +3893,9 @@ declare namespace io.flow.external.paypal.v1.enums {
|
|
|
4191
3893
|
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';
|
|
4192
3894
|
type ProductReceived = 'YES' | 'NO' | 'RETURNED';
|
|
4193
3895
|
type RefundState = 'pending' | 'completed' | 'cancelled' | 'failed';
|
|
3896
|
+
type ReportingBalanceAffectingRecordsOnly = 'Y' | 'N';
|
|
3897
|
+
type ReportingTransactionField = 'transaction_info' | 'payer_info' | 'shipping_info' | 'auction_info' | 'cart_info' | 'incentive_info' | 'store_info';
|
|
3898
|
+
type ReportingTransactionStatus = 'D' | 'P' | 'S' | 'V';
|
|
4194
3899
|
type ReturnAcknowledgementType = 'ITEM_RECEIVED' | 'ITEM_NOT_RECEIVED' | 'DAMAGED' | 'EMPTY_PACKAGE_OR_DIFFERENT' | 'MISSING_ITEMS';
|
|
4195
3900
|
type ReturnMode = 'SHIPPED' | 'IN_PERSON';
|
|
4196
3901
|
type SaleState = 'pending' | 'completed' | 'denied' | 'partially_refunded' | 'refunded';
|
|
@@ -4587,6 +4292,31 @@ declare namespace io.flow.external.paypal.v1.models {
|
|
|
4587
4292
|
readonly 'invoice_number': string;
|
|
4588
4293
|
}
|
|
4589
4294
|
|
|
4295
|
+
interface ReportingTransaction {
|
|
4296
|
+
readonly 'transaction_details': io.flow.external.paypal.v1.models.ReportingTransactionDetails[];
|
|
4297
|
+
readonly 'links': io.flow.external.paypal.v1.models.Link[];
|
|
4298
|
+
}
|
|
4299
|
+
|
|
4300
|
+
interface ReportingTransactionDetails {
|
|
4301
|
+
readonly 'transaction_info': io.flow.external.paypal.v1.models.ReportingTransactionInfo;
|
|
4302
|
+
}
|
|
4303
|
+
|
|
4304
|
+
interface ReportingTransactionInfo {
|
|
4305
|
+
readonly 'paypal_account_id'?: string;
|
|
4306
|
+
readonly 'transaction_id'?: string;
|
|
4307
|
+
readonly 'paypal_reference_id'?: string;
|
|
4308
|
+
readonly 'paypal_reference_id_type'?: string;
|
|
4309
|
+
readonly 'transaction_event_code': string;
|
|
4310
|
+
readonly 'transaction_initiation_date': string;
|
|
4311
|
+
readonly 'transaction_updated_date': string;
|
|
4312
|
+
readonly 'transaction_status': io.flow.external.paypal.v1.enums.ReportingTransactionStatus;
|
|
4313
|
+
readonly 'transaction_subject'?: string;
|
|
4314
|
+
readonly 'invoice_id': string;
|
|
4315
|
+
readonly 'custom_field'?: string;
|
|
4316
|
+
readonly 'protection_eligibility'?: string;
|
|
4317
|
+
readonly 'instrument_type'?: string;
|
|
4318
|
+
}
|
|
4319
|
+
|
|
4590
4320
|
interface ReturnDetails {
|
|
4591
4321
|
readonly 'return_time'?: string;
|
|
4592
4322
|
readonly 'mode'?: io.flow.external.paypal.v1.enums.ReturnMode;
|
|
@@ -5024,7 +4754,7 @@ declare namespace io.flow.shopify.markets.internal.v0.enums {
|
|
|
5024
4754
|
type AnyDangerousGoods = 'yes' | 'no' | 'i_dont_know';
|
|
5025
4755
|
type ApiCallReferenceId = 'duty_rates_data_event' | 'integration_test' | 'unit_test';
|
|
5026
4756
|
type ChannelOrderFulfillmentStatusCode = 'unfulfilled' | 'fulfilled' | 'partial' | 'cancelled';
|
|
5027
|
-
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';
|
|
4757
|
+
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';
|
|
5028
4758
|
type ProductStatus = 'active' | 'archived' | 'draft';
|
|
5029
4759
|
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';
|
|
5030
4760
|
type ShopifyMarketsHtsNumberAvailable = 'yes' | 'no' | 'i_dont_know';
|
|
@@ -5801,6 +5531,11 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
5801
5531
|
readonly 'weight'?: io.flow.shopify.external.v0.models.GraphqlWeight;
|
|
5802
5532
|
}
|
|
5803
5533
|
|
|
5534
|
+
interface GraphqlMetafield {
|
|
5535
|
+
readonly 'key': string;
|
|
5536
|
+
readonly 'value': string;
|
|
5537
|
+
}
|
|
5538
|
+
|
|
5804
5539
|
interface GraphqlOption {
|
|
5805
5540
|
readonly 'id': string;
|
|
5806
5541
|
readonly 'values': string[];
|
|
@@ -5826,6 +5561,8 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
5826
5561
|
readonly 'createdAt': string;
|
|
5827
5562
|
readonly 'updatedAt': string;
|
|
5828
5563
|
readonly 'hasVariantsThatRequiresComponents'?: boolean;
|
|
5564
|
+
readonly 'category'?: io.flow.shopify.external.v0.models.GraphqlTaxonomyCategory;
|
|
5565
|
+
readonly 'metafields'?: io.flow.shopify.external.v0.models.GraphqlMetafield[];
|
|
5829
5566
|
}
|
|
5830
5567
|
|
|
5831
5568
|
interface GraphqlProductImage {
|
|
@@ -5849,6 +5586,11 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
5849
5586
|
readonly 'inventoryItem': io.flow.shopify.external.v0.models.GraphqlInventoryItem;
|
|
5850
5587
|
}
|
|
5851
5588
|
|
|
5589
|
+
interface GraphqlTaxonomyCategory {
|
|
5590
|
+
readonly 'name': string;
|
|
5591
|
+
readonly 'fullName': string;
|
|
5592
|
+
}
|
|
5593
|
+
|
|
5852
5594
|
interface GraphqlVariantImage {
|
|
5853
5595
|
readonly 'id': string;
|
|
5854
5596
|
}
|
|
@@ -5966,6 +5708,7 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
5966
5708
|
readonly 'created_at': string;
|
|
5967
5709
|
readonly 'updated_at': string;
|
|
5968
5710
|
readonly 'has_variants_that_requires_components'?: boolean;
|
|
5711
|
+
readonly 'category'?: io.flow.product.v0.models.ProductTaxonomyCategory;
|
|
5969
5712
|
}
|
|
5970
5713
|
|
|
5971
5714
|
interface ProductDelete {
|
|
@@ -9632,12 +9375,14 @@ declare namespace io.flow.ratecard.v0.models {
|
|
|
9632
9375
|
readonly 'q': string;
|
|
9633
9376
|
readonly 'dimensions': io.flow.ratecard.v0.models.EstimatedDimensions;
|
|
9634
9377
|
readonly 'position': number;
|
|
9378
|
+
readonly 'block_bulk_update'?: boolean;
|
|
9635
9379
|
}
|
|
9636
9380
|
|
|
9637
9381
|
interface DimensionEstimateForm {
|
|
9638
9382
|
readonly 'q': string;
|
|
9639
9383
|
readonly 'dimensions': io.flow.ratecard.v0.models.EstimatedDimensions;
|
|
9640
9384
|
readonly 'position'?: number;
|
|
9385
|
+
readonly 'block_bulk_update'?: boolean;
|
|
9641
9386
|
}
|
|
9642
9387
|
|
|
9643
9388
|
interface DimensionEstimateVersion {
|
|
@@ -10740,7 +10485,30 @@ declare namespace io.flow.reference.v0.models {
|
|
|
10740
10485
|
}
|
|
10741
10486
|
}
|
|
10742
10487
|
|
|
10488
|
+
declare namespace io.flow.product.v0.models {
|
|
10489
|
+
interface Product {
|
|
10490
|
+
readonly 'organization_id': string;
|
|
10491
|
+
readonly 'number': string;
|
|
10492
|
+
readonly 'taxonomy_category'?: io.flow.product.v0.models.ProductTaxonomyCategory;
|
|
10493
|
+
readonly 'taxonomy_data'?: io.flow.product.v0.models.ProductTaxonomyData[];
|
|
10494
|
+
readonly 'item_numbers': string[];
|
|
10495
|
+
readonly 'updated_at': string;
|
|
10496
|
+
readonly 'deleted_at'?: string;
|
|
10497
|
+
}
|
|
10498
|
+
|
|
10499
|
+
interface ProductTaxonomyCategory {
|
|
10500
|
+
readonly 'name': string;
|
|
10501
|
+
readonly 'full_name': string;
|
|
10502
|
+
}
|
|
10503
|
+
|
|
10504
|
+
interface ProductTaxonomyData {
|
|
10505
|
+
readonly 'key': string;
|
|
10506
|
+
readonly 'value': string[];
|
|
10507
|
+
}
|
|
10508
|
+
}
|
|
10509
|
+
|
|
10743
10510
|
declare namespace io.flow.tracking.v0.enums {
|
|
10511
|
+
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';
|
|
10744
10512
|
type TrackingStatus = 'label_created' | 'pending' | 'info_received' | 'picked_up' | 'in_transit' | 'out_for_delivery' | 'attempt_fail' | 'delivered' | 'exception' | 'returned' | 'expired';
|
|
10745
10513
|
}
|
|
10746
10514
|
|
|
@@ -11682,7 +11450,7 @@ declare namespace io.flow.billing.v0.enums {
|
|
|
11682
11450
|
type PayoutStatusFailureCode = 'invalid_account_number' | 'account_closed' | 'could_not_process';
|
|
11683
11451
|
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';
|
|
11684
11452
|
type StatementAttachmentType = 'csv';
|
|
11685
|
-
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';
|
|
11453
|
+
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';
|
|
11686
11454
|
type TrueupSource = 'flow' | 'channel' | 'dhl-parcel' | 'dhl' | 'ups';
|
|
11687
11455
|
type WithholdingDeductionType = 'tax' | 'duty' | 'freight' | 'insurance';
|
|
11688
11456
|
}
|
|
@@ -13480,6 +13248,40 @@ declare namespace io.flow.fraud.v0.unions {
|
|
|
13480
13248
|
type FraudOrderReference = (io.flow.fraud.v0.models.FraudFlowOrderReference | io.flow.fraud.v0.models.FraudPaymentRequestReference);
|
|
13481
13249
|
}
|
|
13482
13250
|
|
|
13251
|
+
declare namespace io.flow.sellability.v0.enums {
|
|
13252
|
+
type RuleEffectType = 'market' | 'dhl' | 'dhl_ecommerce' | 'ups';
|
|
13253
|
+
}
|
|
13254
|
+
|
|
13255
|
+
declare namespace io.flow.sellability.v0.models {
|
|
13256
|
+
interface ProductSellability {
|
|
13257
|
+
readonly 'organization_id': string;
|
|
13258
|
+
readonly 'product_id'?: string;
|
|
13259
|
+
readonly 'product_correlation_id': string;
|
|
13260
|
+
readonly 'restricted_regions': io.flow.sellability.v0.models.SellablilityRegionResult[];
|
|
13261
|
+
readonly 'in_review_regions': io.flow.sellability.v0.models.SellablilityRegionResult[];
|
|
13262
|
+
}
|
|
13263
|
+
|
|
13264
|
+
interface ProductSellabilityForm {
|
|
13265
|
+
readonly 'organization_id': string;
|
|
13266
|
+
readonly 'product_id'?: string;
|
|
13267
|
+
readonly 'product_correlation_id': string;
|
|
13268
|
+
readonly 'name': string;
|
|
13269
|
+
readonly 'price': io.flow.sellability.v0.models.ProductSellabilityPrice;
|
|
13270
|
+
readonly 'description': string;
|
|
13271
|
+
readonly 'taxonomy_category': io.flow.product.v0.models.ProductTaxonomyCategory;
|
|
13272
|
+
}
|
|
13273
|
+
|
|
13274
|
+
interface ProductSellabilityPrice {
|
|
13275
|
+
readonly 'currency': string;
|
|
13276
|
+
readonly 'amount': number;
|
|
13277
|
+
}
|
|
13278
|
+
|
|
13279
|
+
interface SellablilityRegionResult {
|
|
13280
|
+
readonly 'type': io.flow.sellability.v0.enums.RuleEffectType;
|
|
13281
|
+
readonly 'regions': string[];
|
|
13282
|
+
}
|
|
13283
|
+
}
|
|
13284
|
+
|
|
13483
13285
|
declare namespace io.flow.currency.v0.models {
|
|
13484
13286
|
interface Rate {
|
|
13485
13287
|
readonly 'id': string;
|
|
@@ -13784,6 +13586,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
13784
13586
|
type AdjustmentTransactionType = 'adjustment' | 'reversal';
|
|
13785
13587
|
type AdyenIntegrationType = 'hosted_payment_page' | 'checkout_payments_api' | 'classic_authorise_api';
|
|
13786
13588
|
type AldoItemType = 'physical' | 'digital';
|
|
13589
|
+
type AnshItemType = 'physical' | 'digital';
|
|
13787
13590
|
type AnyDangerousGoods = 'yes' | 'no' | 'i_dont_know';
|
|
13788
13591
|
type ApiCallReferenceId = 'duty_rates_data_event' | 'integration_test' | 'unit_test';
|
|
13789
13592
|
type AutoRestrictRule = 'prr-3ce7d556f2464314ab0a3e8eee33e0ce' | 'prr-599c6246a1a24752aeb85e8f79030781' | 'prr-79e41878ea564f9c81cc432a0e84703f' | 'prr-f29c26dc09e04536bc77f9c32786ed70' | 'prr-b186129720f0446eb452a68518437c95';
|
|
@@ -13794,7 +13597,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
13794
13597
|
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';
|
|
13795
13598
|
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';
|
|
13796
13599
|
type BillingTransactionStatus = 'pending_proof' | 'posted';
|
|
13797
|
-
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';
|
|
13600
|
+
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';
|
|
13798
13601
|
type BrowserBundleErrorCode = 'generic_error' | 'country_invalid';
|
|
13799
13602
|
type CalculatorEngine = 'dtce_with_deminimis' | 'dtce_with_inclusive_pricing' | 'dtce_and_us_tax';
|
|
13800
13603
|
type CarrierChargeTransactionType = 'adjustment' | 'reversal' | 'charge' | 'revenue_share';
|
|
@@ -13812,7 +13615,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
13812
13615
|
type ChannelOrderFulfillmentStatusCode = 'unfulfilled' | 'fulfilled' | 'partial' | 'cancelled';
|
|
13813
13616
|
type ChannelTransactionType = 'adjustment' | 'reversal' | 'processing';
|
|
13814
13617
|
type ChargeEstimateSource = 'global-e' | 'shopify';
|
|
13815
|
-
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';
|
|
13618
|
+
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';
|
|
13816
13619
|
type ChargebackPaymentStatus = 'captured' | 'refunded';
|
|
13817
13620
|
type ChargebackProcessStatus = 'inquiry' | 'open' | 'closed';
|
|
13818
13621
|
type CheckoutAssetType = 'stylesheet' | 'javascript';
|
|
@@ -13858,7 +13661,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
13858
13661
|
type DutyTransactionType = 'adjustment' | 'reversal' | 'duty';
|
|
13859
13662
|
type EmptyAttribute = 'irrelevant';
|
|
13860
13663
|
type ErpFileType = 'vendor';
|
|
13861
|
-
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';
|
|
13664
|
+
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';
|
|
13862
13665
|
type ExperienceImportType = 'experience_with_settings';
|
|
13863
13666
|
type ExperienceOrderAction = 'submit' | 'refund_gift_cards';
|
|
13864
13667
|
type ExperienceOrderActionTrigger = 'zero_balance' | 'unsubmitted_order';
|
|
@@ -13876,7 +13679,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
13876
13679
|
type FtpIntent = 'orders_from_flow' | 'pricebooks_from_flow' | 'pricebooks_to_flow' | 'catalog_to_flow' | 'inventory_to_flow';
|
|
13877
13680
|
type FtpProtocol = 'sftp' | 'ftp';
|
|
13878
13681
|
type GoogleAnalyticsPlugin = 'ec';
|
|
13879
|
-
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';
|
|
13682
|
+
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';
|
|
13880
13683
|
type HarmonizationDecisionSource = 'human' | 'legacy_model' | 'enterprise_model';
|
|
13881
13684
|
type HttpMethod = 'get' | 'post';
|
|
13882
13685
|
type ItemClassificationAction = 'ACCEPT' | 'MANUAL' | 'REJECT';
|
|
@@ -13888,6 +13691,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
13888
13691
|
type LabelBillingStrategy = 'quote' | 'carrier';
|
|
13889
13692
|
type LabelCancellationErrorCode = 'already_used' | 'carrier_unsupported';
|
|
13890
13693
|
type LabelCreationStatus = 'success' | 'error' | 'pending' | 'cancelled';
|
|
13694
|
+
type LabelEventSource = 'aftership' | 'carrier' | 'flow';
|
|
13891
13695
|
type LabelRequestErrorHandlingResponsibility = 'merchant' | 'merchant_integration' | 'shopify_integration' | 'globale_cx' | 'globale_address_repair' | 'merchant_operations' | 'globale_system';
|
|
13892
13696
|
type LabelRequestResultOrganizationType = 'all' | 'legacy_production' | 'managed_markets_production' | 'sandbox';
|
|
13893
13697
|
type LabelRequestResultState = 'success' | 'failure';
|
|
@@ -13980,7 +13784,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
13980
13784
|
type ShopifyPromotionOfferAllocationMethod = 'each' | 'across';
|
|
13981
13785
|
type ShopifyPromotionOrderEntitlementComponent = 'subtotal' | 'shipping' | 'vat' | 'duty';
|
|
13982
13786
|
type ShopifyPromotionStatus = 'active' | 'inactive';
|
|
13983
|
-
type ShopifyService = 'payment' | 'duty_tax_calculator';
|
|
13787
|
+
type ShopifyService = 'payment' | 'duty_tax_calculator' | 'sellability';
|
|
13984
13788
|
type SimpleRoundingStrategy = 'no_rounding' | 'currency_precision';
|
|
13985
13789
|
type SnoozeNextActionWith = 'customer_service' | 'engineering';
|
|
13986
13790
|
type SnoozeSourceType = 'task' | 'invariant';
|
|
@@ -14719,6 +14523,10 @@ declare namespace io.flow.internal.v0.models {
|
|
|
14719
14523
|
readonly 'afterpay_refund': io.flow.internal.v0.models.AfterpayRefund;
|
|
14720
14524
|
}
|
|
14721
14525
|
|
|
14526
|
+
interface AftershipWebhook {
|
|
14527
|
+
readonly 'placeholder'?: boolean;
|
|
14528
|
+
}
|
|
14529
|
+
|
|
14722
14530
|
interface AldoItem {
|
|
14723
14531
|
readonly 'id': string;
|
|
14724
14532
|
readonly 'number': string;
|
|
@@ -14786,6 +14594,23 @@ declare namespace io.flow.internal.v0.models {
|
|
|
14786
14594
|
readonly 'labels': Record<string, string[]>;
|
|
14787
14595
|
}
|
|
14788
14596
|
|
|
14597
|
+
interface AnshItem {
|
|
14598
|
+
readonly 'id': string;
|
|
14599
|
+
readonly 'number': string;
|
|
14600
|
+
readonly 'amount': io.flow.common.v0.models.Price;
|
|
14601
|
+
readonly 'description'?: string;
|
|
14602
|
+
readonly 'type': io.flow.internal.v0.enums.AnshItemType;
|
|
14603
|
+
readonly 'added_on': string;
|
|
14604
|
+
}
|
|
14605
|
+
|
|
14606
|
+
interface AnshItemForm {
|
|
14607
|
+
readonly 'number': string;
|
|
14608
|
+
readonly 'amount': io.flow.common.v0.models.Price;
|
|
14609
|
+
readonly 'description'?: string;
|
|
14610
|
+
readonly 'type': io.flow.internal.v0.enums.AnshItemType;
|
|
14611
|
+
readonly 'added_on': string;
|
|
14612
|
+
}
|
|
14613
|
+
|
|
14789
14614
|
interface ApmContent {
|
|
14790
14615
|
readonly 'processor_description': io.flow.internal.v0.unions.ContentItem;
|
|
14791
14616
|
}
|
|
@@ -17200,10 +17025,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17200
17025
|
readonly 'pickup_name': string;
|
|
17201
17026
|
}
|
|
17202
17027
|
|
|
17203
|
-
interface DhlEcommerceWebhook {
|
|
17204
|
-
readonly 'placeholder'?: boolean;
|
|
17205
|
-
}
|
|
17206
|
-
|
|
17207
17028
|
interface Dict {
|
|
17208
17029
|
readonly 'discriminator': 'dict';
|
|
17209
17030
|
readonly 'label': io.flow.internal.v0.models.ContentLabel;
|
|
@@ -17350,6 +17171,8 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17350
17171
|
readonly 'reporting_category'?: io.flow.internal.v0.enums.DisputeReportingCategory;
|
|
17351
17172
|
readonly 'category'?: io.flow.internal.v0.enums.DisputeCategory;
|
|
17352
17173
|
readonly 'status'?: io.flow.internal.v0.enums.DisputeStatus;
|
|
17174
|
+
readonly 'defense_outcome'?: io.flow.internal.v0.enums.DisputeDefenseOutcome;
|
|
17175
|
+
readonly 'defended_at'?: string;
|
|
17353
17176
|
}
|
|
17354
17177
|
|
|
17355
17178
|
interface DisputeRecord {
|
|
@@ -18044,6 +17867,29 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18044
17867
|
readonly 'negative_balance'?: io.flow.internal.v0.models.Fee;
|
|
18045
17868
|
}
|
|
18046
17869
|
|
|
17870
|
+
interface FinalEstimate {
|
|
17871
|
+
readonly 'id': string;
|
|
17872
|
+
readonly 'organization_id': string;
|
|
17873
|
+
readonly 'label_id': string;
|
|
17874
|
+
readonly 'estimate': io.flow.label.v0.models.ShippingLabelHopSummary;
|
|
17875
|
+
}
|
|
17876
|
+
|
|
17877
|
+
interface FinalEstimateDeleted {
|
|
17878
|
+
readonly 'discriminator': 'final_estimate_deleted';
|
|
17879
|
+
readonly 'event_id': string;
|
|
17880
|
+
readonly 'timestamp': string;
|
|
17881
|
+
readonly 'organization': string;
|
|
17882
|
+
readonly 'id': string;
|
|
17883
|
+
}
|
|
17884
|
+
|
|
17885
|
+
interface FinalEstimateUpserted {
|
|
17886
|
+
readonly 'discriminator': 'final_estimate_upserted';
|
|
17887
|
+
readonly 'event_id': string;
|
|
17888
|
+
readonly 'timestamp': string;
|
|
17889
|
+
readonly 'organization': string;
|
|
17890
|
+
readonly 'final_estimate': io.flow.internal.v0.models.FinalEstimate;
|
|
17891
|
+
}
|
|
17892
|
+
|
|
18047
17893
|
interface FinanceBankAccount {
|
|
18048
17894
|
readonly 'id': string;
|
|
18049
17895
|
readonly 'accounts': io.flow.internal.v0.models.AccountSummary[];
|
|
@@ -18180,6 +18026,10 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18180
18026
|
readonly 'organization_capability'?: io.flow.internal.v0.enums.OrganizationCapability;
|
|
18181
18027
|
}
|
|
18182
18028
|
|
|
18029
|
+
interface FlexeWebhook {
|
|
18030
|
+
readonly 'placeholder'?: boolean;
|
|
18031
|
+
}
|
|
18032
|
+
|
|
18183
18033
|
interface FlowAccount {
|
|
18184
18034
|
readonly 'source': io.flow.internal.v0.models.AccountSource;
|
|
18185
18035
|
readonly 'id': string;
|
|
@@ -18788,6 +18638,20 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18788
18638
|
readonly 'transaction_created_at': string;
|
|
18789
18639
|
}
|
|
18790
18640
|
|
|
18641
|
+
interface GeRevenueShareTransaction {
|
|
18642
|
+
readonly 'discriminator': 'ge_revenue_share_transaction';
|
|
18643
|
+
readonly 'order': io.flow.internal.v0.models.BillingOrderTransactionOrderReference;
|
|
18644
|
+
readonly 'ge_revenue_share': io.flow.internal.v0.models.Fee;
|
|
18645
|
+
readonly 'id': string;
|
|
18646
|
+
readonly 'type': io.flow.internal.v0.enums.BillingTransactionType;
|
|
18647
|
+
readonly 'status': io.flow.internal.v0.enums.BillingTransactionStatus;
|
|
18648
|
+
readonly 'posted_at'?: string;
|
|
18649
|
+
readonly 'value': io.flow.common.v0.models.Price;
|
|
18650
|
+
readonly 'description': string;
|
|
18651
|
+
readonly 'statement'?: io.flow.internal.v0.models.BillingStatementReference;
|
|
18652
|
+
readonly 'created_at': string;
|
|
18653
|
+
}
|
|
18654
|
+
|
|
18791
18655
|
interface GenerateLoadMultipleOrgs {
|
|
18792
18656
|
readonly 'discriminator': 'generate_load_multiple_orgs';
|
|
18793
18657
|
readonly 'organization_ids': string[];
|
|
@@ -20145,6 +20009,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20145
20009
|
readonly 'type': io.flow.internal.v0.enums.BillingTransactionType;
|
|
20146
20010
|
readonly 'value': io.flow.common.v0.models.Price;
|
|
20147
20011
|
readonly 'status': io.flow.internal.v0.enums.BillingTransactionStatus;
|
|
20012
|
+
readonly 'paid_at'?: string;
|
|
20148
20013
|
readonly 'posted_at'?: string;
|
|
20149
20014
|
readonly 'statement'?: io.flow.internal.v0.models.BillingStatementReference;
|
|
20150
20015
|
readonly 'created_at': string;
|
|
@@ -20974,6 +20839,20 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20974
20839
|
readonly 'center'?: io.flow.fulfillment.v0.models.CenterSummary;
|
|
20975
20840
|
}
|
|
20976
20841
|
|
|
20842
|
+
interface OrderFxTransaction {
|
|
20843
|
+
readonly 'discriminator': 'order_fx_transaction';
|
|
20844
|
+
readonly 'order': io.flow.internal.v0.models.BillingOrderTransactionOrderReference;
|
|
20845
|
+
readonly 'fx': io.flow.internal.v0.models.Fee;
|
|
20846
|
+
readonly 'id': string;
|
|
20847
|
+
readonly 'type': io.flow.internal.v0.enums.BillingTransactionType;
|
|
20848
|
+
readonly 'status': io.flow.internal.v0.enums.BillingTransactionStatus;
|
|
20849
|
+
readonly 'posted_at'?: string;
|
|
20850
|
+
readonly 'value': io.flow.common.v0.models.Price;
|
|
20851
|
+
readonly 'description': string;
|
|
20852
|
+
readonly 'statement'?: io.flow.internal.v0.models.BillingStatementReference;
|
|
20853
|
+
readonly 'created_at': string;
|
|
20854
|
+
}
|
|
20855
|
+
|
|
20977
20856
|
interface OrderNote {
|
|
20978
20857
|
readonly 'id': string;
|
|
20979
20858
|
readonly 'note': string;
|
|
@@ -23571,6 +23450,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23571
23450
|
readonly 'negative_keywords': string[];
|
|
23572
23451
|
readonly 'value_threshold_usd'?: number;
|
|
23573
23452
|
readonly 'auto_review_criteria'?: io.flow.internal.v0.models.AutoReviewCriteria[];
|
|
23453
|
+
readonly 'effects'?: string[];
|
|
23574
23454
|
}
|
|
23575
23455
|
|
|
23576
23456
|
interface RestrictionRuleDecisionForm {
|
|
@@ -23579,6 +23459,40 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23579
23459
|
readonly 'product_id': string;
|
|
23580
23460
|
}
|
|
23581
23461
|
|
|
23462
|
+
interface RestrictionRuleDeleted {
|
|
23463
|
+
readonly 'discriminator': 'restriction_rule_deleted';
|
|
23464
|
+
readonly 'event_id': string;
|
|
23465
|
+
readonly 'timestamp': string;
|
|
23466
|
+
readonly 'id': string;
|
|
23467
|
+
}
|
|
23468
|
+
|
|
23469
|
+
interface RestrictionRuleEffect {
|
|
23470
|
+
readonly 'id': string;
|
|
23471
|
+
readonly 'effect': io.flow.sellability.v0.enums.RuleEffectType;
|
|
23472
|
+
readonly 'regions': string[];
|
|
23473
|
+
readonly 'description'?: string;
|
|
23474
|
+
}
|
|
23475
|
+
|
|
23476
|
+
interface RestrictionRuleEffectDeleted {
|
|
23477
|
+
readonly 'discriminator': 'restriction_rule_effect_deleted';
|
|
23478
|
+
readonly 'event_id': string;
|
|
23479
|
+
readonly 'timestamp': string;
|
|
23480
|
+
readonly 'id': string;
|
|
23481
|
+
}
|
|
23482
|
+
|
|
23483
|
+
interface RestrictionRuleEffectForm {
|
|
23484
|
+
readonly 'effect': io.flow.sellability.v0.enums.RuleEffectType;
|
|
23485
|
+
readonly 'regions': string[];
|
|
23486
|
+
readonly 'description'?: string;
|
|
23487
|
+
}
|
|
23488
|
+
|
|
23489
|
+
interface RestrictionRuleEffectUpserted {
|
|
23490
|
+
readonly 'discriminator': 'restriction_rule_effect_upserted';
|
|
23491
|
+
readonly 'event_id': string;
|
|
23492
|
+
readonly 'timestamp': string;
|
|
23493
|
+
readonly 'restriction_rule_effect': io.flow.internal.v0.models.RestrictionRuleEffect;
|
|
23494
|
+
}
|
|
23495
|
+
|
|
23582
23496
|
interface RestrictionRuleForm {
|
|
23583
23497
|
readonly 'name': string;
|
|
23584
23498
|
readonly 'description': string;
|
|
@@ -23588,6 +23502,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23588
23502
|
readonly 'negative_keywords': string[];
|
|
23589
23503
|
readonly 'value_threshold_usd'?: number;
|
|
23590
23504
|
readonly 'auto_review_criteria'?: io.flow.internal.v0.models.AutoReviewCriteria[];
|
|
23505
|
+
readonly 'effects'?: string[];
|
|
23591
23506
|
}
|
|
23592
23507
|
|
|
23593
23508
|
interface RestrictionRuleMetadata {
|
|
@@ -23609,6 +23524,13 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23609
23524
|
readonly 'description': string;
|
|
23610
23525
|
}
|
|
23611
23526
|
|
|
23527
|
+
interface RestrictionRuleUpserted {
|
|
23528
|
+
readonly 'discriminator': 'restriction_rule_upserted';
|
|
23529
|
+
readonly 'event_id': string;
|
|
23530
|
+
readonly 'timestamp': string;
|
|
23531
|
+
readonly 'restriction_rule': io.flow.internal.v0.models.RestrictionRule;
|
|
23532
|
+
}
|
|
23533
|
+
|
|
23612
23534
|
interface RestrictionStatusMetadata {
|
|
23613
23535
|
readonly 'status': io.flow.internal.v0.enums.RestrictionStatus;
|
|
23614
23536
|
readonly 'count': number;
|
|
@@ -23938,6 +23860,13 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23938
23860
|
readonly 'customer_id': string;
|
|
23939
23861
|
}
|
|
23940
23862
|
|
|
23863
|
+
interface ShawnRoundtableWorkshopRate {
|
|
23864
|
+
readonly 'origin_country': string;
|
|
23865
|
+
readonly 'destination_country': string;
|
|
23866
|
+
readonly 'weight': number;
|
|
23867
|
+
readonly 'amount': number;
|
|
23868
|
+
}
|
|
23869
|
+
|
|
23941
23870
|
interface ShippedItemValue {
|
|
23942
23871
|
readonly 'item': io.flow.common.v0.models.CatalogItemReference;
|
|
23943
23872
|
readonly 'taxes': io.flow.common.v0.models.PriceWithBase;
|
|
@@ -24085,6 +24014,69 @@ declare namespace io.flow.internal.v0.models {
|
|
|
24085
24014
|
readonly 'data': io.flow.internal.v0.models.ShopifyIncotermSummaryErrorData;
|
|
24086
24015
|
}
|
|
24087
24016
|
|
|
24017
|
+
interface ShopifyInventoryItemCreateDeleted {
|
|
24018
|
+
readonly 'discriminator': 'shopify_inventory_item_create_deleted';
|
|
24019
|
+
readonly 'event_id': string;
|
|
24020
|
+
readonly 'timestamp': string;
|
|
24021
|
+
readonly 'organization': string;
|
|
24022
|
+
readonly 'id': string;
|
|
24023
|
+
}
|
|
24024
|
+
|
|
24025
|
+
interface ShopifyInventoryItemCreateUpserted {
|
|
24026
|
+
readonly 'discriminator': 'shopify_inventory_item_create_upserted';
|
|
24027
|
+
readonly 'event_id': string;
|
|
24028
|
+
readonly 'timestamp': string;
|
|
24029
|
+
readonly 'organization': string;
|
|
24030
|
+
readonly 'shopify_inventory_item_create': io.flow.internal.v0.models.ShopifyInventoryItemCreateWebhookEvent;
|
|
24031
|
+
}
|
|
24032
|
+
|
|
24033
|
+
interface ShopifyInventoryItemCreateWebhookEvent {
|
|
24034
|
+
readonly 'id': string;
|
|
24035
|
+
readonly 'inventory_item': io.flow.shopify.markets.v0.models.ShopifyInventoryItem;
|
|
24036
|
+
}
|
|
24037
|
+
|
|
24038
|
+
interface ShopifyInventoryItemDeleteDeleted {
|
|
24039
|
+
readonly 'discriminator': 'shopify_inventory_item_delete_deleted';
|
|
24040
|
+
readonly 'event_id': string;
|
|
24041
|
+
readonly 'timestamp': string;
|
|
24042
|
+
readonly 'organization': string;
|
|
24043
|
+
readonly 'id': string;
|
|
24044
|
+
}
|
|
24045
|
+
|
|
24046
|
+
interface ShopifyInventoryItemDeleteUpserted {
|
|
24047
|
+
readonly 'discriminator': 'shopify_inventory_item_delete_upserted';
|
|
24048
|
+
readonly 'event_id': string;
|
|
24049
|
+
readonly 'timestamp': string;
|
|
24050
|
+
readonly 'organization': string;
|
|
24051
|
+
readonly 'shopify_inventory_item_delete': io.flow.internal.v0.models.ShopifyInventoryItemDeleteWebhookEvent;
|
|
24052
|
+
}
|
|
24053
|
+
|
|
24054
|
+
interface ShopifyInventoryItemDeleteWebhookEvent {
|
|
24055
|
+
readonly 'id': string;
|
|
24056
|
+
readonly 'inventory_item_delete': io.flow.shopify.external.v0.models.ShopifyInventoryItemDelete;
|
|
24057
|
+
}
|
|
24058
|
+
|
|
24059
|
+
interface ShopifyInventoryItemUpdateDeleted {
|
|
24060
|
+
readonly 'discriminator': 'shopify_inventory_item_update_deleted';
|
|
24061
|
+
readonly 'event_id': string;
|
|
24062
|
+
readonly 'timestamp': string;
|
|
24063
|
+
readonly 'organization': string;
|
|
24064
|
+
readonly 'id': string;
|
|
24065
|
+
}
|
|
24066
|
+
|
|
24067
|
+
interface ShopifyInventoryItemUpdateUpserted {
|
|
24068
|
+
readonly 'discriminator': 'shopify_inventory_item_update_upserted';
|
|
24069
|
+
readonly 'event_id': string;
|
|
24070
|
+
readonly 'timestamp': string;
|
|
24071
|
+
readonly 'organization': string;
|
|
24072
|
+
readonly 'shopify_inventory_item_update': io.flow.internal.v0.models.ShopifyInventoryItemUpdateWebhookEvent;
|
|
24073
|
+
}
|
|
24074
|
+
|
|
24075
|
+
interface ShopifyInventoryItemUpdateWebhookEvent {
|
|
24076
|
+
readonly 'id': string;
|
|
24077
|
+
readonly 'inventory_item': io.flow.shopify.markets.v0.models.ShopifyInventoryItem;
|
|
24078
|
+
}
|
|
24079
|
+
|
|
24088
24080
|
interface ShopifyMarketsBestSellingProduct {
|
|
24089
24081
|
readonly 'id': string;
|
|
24090
24082
|
}
|
|
@@ -24489,6 +24481,69 @@ declare namespace io.flow.internal.v0.models {
|
|
|
24489
24481
|
readonly 'shopify_product_bundle': io.flow.internal.v0.models.ShopifyProductBundle;
|
|
24490
24482
|
}
|
|
24491
24483
|
|
|
24484
|
+
interface ShopifyProductCreateDeleted {
|
|
24485
|
+
readonly 'discriminator': 'shopify_product_create_deleted';
|
|
24486
|
+
readonly 'event_id': string;
|
|
24487
|
+
readonly 'timestamp': string;
|
|
24488
|
+
readonly 'organization': string;
|
|
24489
|
+
readonly 'id': string;
|
|
24490
|
+
}
|
|
24491
|
+
|
|
24492
|
+
interface ShopifyProductCreateUpserted {
|
|
24493
|
+
readonly 'discriminator': 'shopify_product_create_upserted';
|
|
24494
|
+
readonly 'event_id': string;
|
|
24495
|
+
readonly 'timestamp': string;
|
|
24496
|
+
readonly 'organization': string;
|
|
24497
|
+
readonly 'shopify_product_create': io.flow.internal.v0.models.ShopifyProductCreateWebhookEvent;
|
|
24498
|
+
}
|
|
24499
|
+
|
|
24500
|
+
interface ShopifyProductCreateWebhookEvent {
|
|
24501
|
+
readonly 'id': string;
|
|
24502
|
+
readonly 'product': io.flow.shopify.external.v0.models.Product;
|
|
24503
|
+
}
|
|
24504
|
+
|
|
24505
|
+
interface ShopifyProductDeleteDeleted {
|
|
24506
|
+
readonly 'discriminator': 'shopify_product_delete_deleted';
|
|
24507
|
+
readonly 'event_id': string;
|
|
24508
|
+
readonly 'timestamp': string;
|
|
24509
|
+
readonly 'organization': string;
|
|
24510
|
+
readonly 'id': string;
|
|
24511
|
+
}
|
|
24512
|
+
|
|
24513
|
+
interface ShopifyProductDeleteUpserted {
|
|
24514
|
+
readonly 'discriminator': 'shopify_product_delete_upserted';
|
|
24515
|
+
readonly 'event_id': string;
|
|
24516
|
+
readonly 'timestamp': string;
|
|
24517
|
+
readonly 'organization': string;
|
|
24518
|
+
readonly 'shopify_product_delete': io.flow.internal.v0.models.ShopifyProductDeleteWebhookEvent;
|
|
24519
|
+
}
|
|
24520
|
+
|
|
24521
|
+
interface ShopifyProductDeleteWebhookEvent {
|
|
24522
|
+
readonly 'id': string;
|
|
24523
|
+
readonly 'product_delete': io.flow.shopify.external.v0.models.ProductDelete;
|
|
24524
|
+
}
|
|
24525
|
+
|
|
24526
|
+
interface ShopifyProductUpdateDeleted {
|
|
24527
|
+
readonly 'discriminator': 'shopify_product_update_deleted';
|
|
24528
|
+
readonly 'event_id': string;
|
|
24529
|
+
readonly 'timestamp': string;
|
|
24530
|
+
readonly 'organization': string;
|
|
24531
|
+
readonly 'id': string;
|
|
24532
|
+
}
|
|
24533
|
+
|
|
24534
|
+
interface ShopifyProductUpdateUpserted {
|
|
24535
|
+
readonly 'discriminator': 'shopify_product_update_upserted';
|
|
24536
|
+
readonly 'event_id': string;
|
|
24537
|
+
readonly 'timestamp': string;
|
|
24538
|
+
readonly 'organization': string;
|
|
24539
|
+
readonly 'shopify_product_update': io.flow.internal.v0.models.ShopifyProductUpdateWebhookEvent;
|
|
24540
|
+
}
|
|
24541
|
+
|
|
24542
|
+
interface ShopifyProductUpdateWebhookEvent {
|
|
24543
|
+
readonly 'id': string;
|
|
24544
|
+
readonly 'product': io.flow.shopify.external.v0.models.Product;
|
|
24545
|
+
}
|
|
24546
|
+
|
|
24492
24547
|
interface ShopifyProductWrapper {
|
|
24493
24548
|
readonly 'shopify_product': io.flow.shopify.external.v0.models.Product;
|
|
24494
24549
|
readonly 'deleted_at'?: string;
|
|
@@ -24611,6 +24666,11 @@ declare namespace io.flow.internal.v0.models {
|
|
|
24611
24666
|
readonly 'shop_id': string;
|
|
24612
24667
|
}
|
|
24613
24668
|
|
|
24669
|
+
interface ShopifyStripeEvent {
|
|
24670
|
+
readonly 'id': string;
|
|
24671
|
+
readonly 'request'?: any/*object*/;
|
|
24672
|
+
}
|
|
24673
|
+
|
|
24614
24674
|
interface ShopifyWebhook {
|
|
24615
24675
|
readonly 'id': string;
|
|
24616
24676
|
readonly 'shop_id': string;
|
|
@@ -25161,14 +25221,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
25161
25221
|
readonly 'duties': Record<string, io.flow.internal.v0.models.Duties>;
|
|
25162
25222
|
}
|
|
25163
25223
|
|
|
25164
|
-
interface TariffCodesExport {
|
|
25165
|
-
readonly 'discriminator': 'tariff_codes_export';
|
|
25166
|
-
readonly 'event_id': string;
|
|
25167
|
-
readonly 'timestamp': string;
|
|
25168
|
-
readonly 'organization': string;
|
|
25169
|
-
readonly 'export_id': string;
|
|
25170
|
-
}
|
|
25171
|
-
|
|
25172
25224
|
interface TariffEligibility {
|
|
25173
25225
|
readonly 'id': string;
|
|
25174
25226
|
readonly 'data': io.flow.internal.v0.unions.TariffEligibilityData;
|
|
@@ -25267,6 +25319,19 @@ declare namespace io.flow.internal.v0.models {
|
|
|
25267
25319
|
readonly 'category_code'?: string;
|
|
25268
25320
|
}
|
|
25269
25321
|
|
|
25322
|
+
interface TaxDutyDeltaTransaction {
|
|
25323
|
+
readonly 'discriminator': 'tax_duty_delta_transaction';
|
|
25324
|
+
readonly 'order': io.flow.internal.v0.models.BillingOrderTransactionOrderReference;
|
|
25325
|
+
readonly 'id': string;
|
|
25326
|
+
readonly 'type': io.flow.internal.v0.enums.BillingTransactionType;
|
|
25327
|
+
readonly 'status': io.flow.internal.v0.enums.BillingTransactionStatus;
|
|
25328
|
+
readonly 'posted_at'?: string;
|
|
25329
|
+
readonly 'value': io.flow.common.v0.models.Price;
|
|
25330
|
+
readonly 'description': string;
|
|
25331
|
+
readonly 'statement'?: io.flow.internal.v0.models.BillingStatementReference;
|
|
25332
|
+
readonly 'created_at': string;
|
|
25333
|
+
}
|
|
25334
|
+
|
|
25270
25335
|
interface TaxRemittanceTransaction {
|
|
25271
25336
|
readonly 'discriminator': 'tax_remittance_transaction';
|
|
25272
25337
|
readonly 'order': io.flow.internal.v0.models.BillingOrderSummary;
|
|
@@ -25639,6 +25704,10 @@ declare namespace io.flow.internal.v0.models {
|
|
|
25639
25704
|
readonly 'tracking_events': io.flow.internal.v0.models.TrackingEvent[];
|
|
25640
25705
|
}
|
|
25641
25706
|
|
|
25707
|
+
interface TrackingResync {
|
|
25708
|
+
readonly 'placeholder'?: boolean;
|
|
25709
|
+
}
|
|
25710
|
+
|
|
25642
25711
|
interface TrackingSubscription {
|
|
25643
25712
|
readonly 'id': string;
|
|
25644
25713
|
readonly 'organization_id': string;
|
|
@@ -25675,6 +25744,10 @@ declare namespace io.flow.internal.v0.models {
|
|
|
25675
25744
|
readonly 'tracking': io.flow.tracking.v0.models.Tracking;
|
|
25676
25745
|
}
|
|
25677
25746
|
|
|
25747
|
+
interface TrackingWebhook {
|
|
25748
|
+
readonly 'placeholder'?: boolean;
|
|
25749
|
+
}
|
|
25750
|
+
|
|
25678
25751
|
interface TransactionAdjustment {
|
|
25679
25752
|
readonly 'id': string;
|
|
25680
25753
|
readonly 'original_transaction': io.flow.internal.v0.models.TransactionReference;
|
|
@@ -26007,7 +26080,7 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
26007
26080
|
type DiscountRequestOfferForm = (io.flow.internal.v0.models.DiscountRequestOfferFixedAmountForm);
|
|
26008
26081
|
type DisputeDetails = (io.flow.internal.v0.models.DisputeDetailsAdyen | io.flow.internal.v0.models.DisputeDetailsPaypal | io.flow.internal.v0.models.DisputeDetailsStripe);
|
|
26009
26082
|
type DutyExpression = (io.flow.internal.v0.models.DutyCompoundExpression | io.flow.internal.v0.models.DutySimpleExpression);
|
|
26010
|
-
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);
|
|
26083
|
+
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);
|
|
26011
26084
|
type ExplicitStatementForm = (io.flow.internal.v0.models.ExplicitStatementFormTransactionIds | io.flow.internal.v0.models.ExplicitStatementFormAllPendingPostedTransactions);
|
|
26012
26085
|
type ExportSchedule = (io.flow.internal.v0.models.ExportScheduleDaily | io.flow.internal.v0.models.ExportScheduleRepeated);
|
|
26013
26086
|
type FeatureDefaultValue = (io.flow.internal.v0.models.BooleanFeatureDefaultValue | io.flow.internal.v0.models.StringFeatureDefaultValue);
|
|
@@ -26063,7 +26136,7 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
26063
26136
|
type TaskMetadata = (io.flow.internal.v0.models.StatementCreationMetadata | io.flow.internal.v0.models.AccountingPendingOrderMetadata);
|
|
26064
26137
|
type TaxAmount = (io.flow.internal.v0.models.CalculatedTaxAmount | io.flow.internal.v0.models.NoCalculatedTaxAmount);
|
|
26065
26138
|
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);
|
|
26066
|
-
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);
|
|
26139
|
+
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);
|
|
26067
26140
|
type TransactionSummary = (io.flow.internal.v0.models.PaymentSummaryV2 | io.flow.internal.v0.models.FraudSummary);
|
|
26068
26141
|
type ValidationRule = (io.flow.internal.v0.models.ValidationCharacterLength);
|
|
26069
26142
|
}
|
|
@@ -26075,6 +26148,7 @@ export const addressConfigurationSettingProvinceCode: PropTypes.Requireable<io.f
|
|
|
26075
26148
|
export const adjustmentTransactionType: PropTypes.Requireable<io.flow.internal.v0.enums.AdjustmentTransactionType>;
|
|
26076
26149
|
export const adyenIntegrationType: PropTypes.Requireable<io.flow.internal.v0.enums.AdyenIntegrationType>;
|
|
26077
26150
|
export const aldoItemType: PropTypes.Requireable<io.flow.internal.v0.enums.AldoItemType>;
|
|
26151
|
+
export const anshItemType: PropTypes.Requireable<io.flow.internal.v0.enums.AnshItemType>;
|
|
26078
26152
|
export const anyDangerousGoods: PropTypes.Requireable<io.flow.internal.v0.enums.AnyDangerousGoods>;
|
|
26079
26153
|
export const apiCallReferenceId: PropTypes.Requireable<io.flow.internal.v0.enums.ApiCallReferenceId>;
|
|
26080
26154
|
export const autoRestrictRule: PropTypes.Requireable<io.flow.internal.v0.enums.AutoRestrictRule>;
|
|
@@ -26179,6 +26253,7 @@ export const keywordType: PropTypes.Requireable<io.flow.internal.v0.enums.Keywor
|
|
|
26179
26253
|
export const labelBillingStrategy: PropTypes.Requireable<io.flow.internal.v0.enums.LabelBillingStrategy>;
|
|
26180
26254
|
export const labelCancellationErrorCode: PropTypes.Requireable<io.flow.internal.v0.enums.LabelCancellationErrorCode>;
|
|
26181
26255
|
export const labelCreationStatus: PropTypes.Requireable<io.flow.internal.v0.enums.LabelCreationStatus>;
|
|
26256
|
+
export const labelEventSource: PropTypes.Requireable<io.flow.internal.v0.enums.LabelEventSource>;
|
|
26182
26257
|
export const labelRequestErrorHandlingResponsibility: PropTypes.Requireable<io.flow.internal.v0.enums.LabelRequestErrorHandlingResponsibility>;
|
|
26183
26258
|
export const labelRequestResultOrganizationType: PropTypes.Requireable<io.flow.internal.v0.enums.LabelRequestResultOrganizationType>;
|
|
26184
26259
|
export const labelRequestResultState: PropTypes.Requireable<io.flow.internal.v0.enums.LabelRequestResultState>;
|
|
@@ -26383,6 +26458,7 @@ export const afterpayCaptureUpserted: PropTypes.Requireable<io.flow.internal.v0.
|
|
|
26383
26458
|
export const afterpayRefund: PropTypes.Requireable<io.flow.internal.v0.models.AfterpayRefund>;
|
|
26384
26459
|
export const afterpayRefundDeleted: PropTypes.Requireable<io.flow.internal.v0.models.AfterpayRefundDeleted>;
|
|
26385
26460
|
export const afterpayRefundUpserted: PropTypes.Requireable<io.flow.internal.v0.models.AfterpayRefundUpserted>;
|
|
26461
|
+
export const aftershipWebhook: PropTypes.Requireable<io.flow.internal.v0.models.AftershipWebhook>;
|
|
26386
26462
|
export const aldoItem: PropTypes.Requireable<io.flow.internal.v0.models.AldoItem>;
|
|
26387
26463
|
export const aldoItemForm: PropTypes.Requireable<io.flow.internal.v0.models.AldoItemForm>;
|
|
26388
26464
|
export const alertErrorSummary: PropTypes.Requireable<io.flow.internal.v0.models.AlertErrorSummary>;
|
|
@@ -26394,6 +26470,8 @@ export const allItemsExport: PropTypes.Requireable<io.flow.internal.v0.models.Al
|
|
|
26394
26470
|
export const allOrganizationsMembership: PropTypes.Requireable<io.flow.internal.v0.models.AllOrganizationsMembership>;
|
|
26395
26471
|
export const allocationItemReference: PropTypes.Requireable<io.flow.internal.v0.models.AllocationItemReference>;
|
|
26396
26472
|
export const allowedLabels: PropTypes.Requireable<io.flow.internal.v0.models.AllowedLabels>;
|
|
26473
|
+
export const anshItem: PropTypes.Requireable<io.flow.internal.v0.models.AnshItem>;
|
|
26474
|
+
export const anshItemForm: PropTypes.Requireable<io.flow.internal.v0.models.AnshItemForm>;
|
|
26397
26475
|
export const apmContent: PropTypes.Requireable<io.flow.internal.v0.models.ApmContent>;
|
|
26398
26476
|
export const applePayAuthorizationPayload: PropTypes.Requireable<io.flow.internal.v0.models.ApplePayAuthorizationPayload>;
|
|
26399
26477
|
export const applyAtValueForm: PropTypes.Requireable<io.flow.internal.v0.models.ApplyAtValueForm>;
|
|
@@ -26719,7 +26797,6 @@ export const deliveredDutyPreferenceForm: PropTypes.Requireable<io.flow.internal
|
|
|
26719
26797
|
export const destinationError: PropTypes.Requireable<io.flow.internal.v0.models.DestinationError>;
|
|
26720
26798
|
export const dhl: PropTypes.Requireable<io.flow.internal.v0.models.Dhl>;
|
|
26721
26799
|
export const dhlEcommerce: PropTypes.Requireable<io.flow.internal.v0.models.DhlEcommerce>;
|
|
26722
|
-
export const dhlEcommerceWebhook: PropTypes.Requireable<io.flow.internal.v0.models.DhlEcommerceWebhook>;
|
|
26723
26800
|
export const dict: PropTypes.Requireable<io.flow.internal.v0.models.Dict>;
|
|
26724
26801
|
export const dimensionEstimateOpsInput: PropTypes.Requireable<io.flow.internal.v0.models.DimensionEstimateOpsInput>;
|
|
26725
26802
|
export const discount: PropTypes.Requireable<io.flow.internal.v0.models.Discount>;
|
|
@@ -26821,6 +26898,9 @@ export const feedDeleted: PropTypes.Requireable<io.flow.internal.v0.models.FeedD
|
|
|
26821
26898
|
export const feedUpserted: PropTypes.Requireable<io.flow.internal.v0.models.FeedUpserted>;
|
|
26822
26899
|
export const feedsExport: PropTypes.Requireable<io.flow.internal.v0.models.FeedsExport>;
|
|
26823
26900
|
export const fees: PropTypes.Requireable<io.flow.internal.v0.models.Fees>;
|
|
26901
|
+
export const finalEstimate: PropTypes.Requireable<io.flow.internal.v0.models.FinalEstimate>;
|
|
26902
|
+
export const finalEstimateDeleted: PropTypes.Requireable<io.flow.internal.v0.models.FinalEstimateDeleted>;
|
|
26903
|
+
export const finalEstimateUpserted: PropTypes.Requireable<io.flow.internal.v0.models.FinalEstimateUpserted>;
|
|
26824
26904
|
export const financeBankAccount: PropTypes.Requireable<io.flow.internal.v0.models.FinanceBankAccount>;
|
|
26825
26905
|
export const financeBankAccountOwner: PropTypes.Requireable<io.flow.internal.v0.models.FinanceBankAccountOwner>;
|
|
26826
26906
|
export const financeBankPayment: PropTypes.Requireable<io.flow.internal.v0.models.FinanceBankPayment>;
|
|
@@ -26836,6 +26916,7 @@ export const fiservAuthenticationForm: PropTypes.Requireable<io.flow.internal.v0
|
|
|
26836
26916
|
export const fiservMerchant: PropTypes.Requireable<io.flow.internal.v0.models.FiservMerchant>;
|
|
26837
26917
|
export const fiservMerchantModificationForm: PropTypes.Requireable<io.flow.internal.v0.models.FiservMerchantModificationForm>;
|
|
26838
26918
|
export const fiservMerchantPutForm: PropTypes.Requireable<io.flow.internal.v0.models.FiservMerchantPutForm>;
|
|
26919
|
+
export const flexeWebhook: PropTypes.Requireable<io.flow.internal.v0.models.FlexeWebhook>;
|
|
26839
26920
|
export const flowAccount: PropTypes.Requireable<io.flow.internal.v0.models.FlowAccount>;
|
|
26840
26921
|
export const flowBillingStatement: PropTypes.Requireable<io.flow.internal.v0.models.FlowBillingStatement>;
|
|
26841
26922
|
export const flowChannelOrganization: PropTypes.Requireable<io.flow.internal.v0.models.FlowChannelOrganization>;
|
|
@@ -26912,6 +26993,7 @@ export const fxRevenueRecognitionOrder: PropTypes.Requireable<io.flow.internal.v
|
|
|
26912
26993
|
export const fxRevenueRecognitionOrganization: PropTypes.Requireable<io.flow.internal.v0.models.FxRevenueRecognitionOrganization>;
|
|
26913
26994
|
export const fxRevenueRecognitionRate: PropTypes.Requireable<io.flow.internal.v0.models.FxRevenueRecognitionRate>;
|
|
26914
26995
|
export const fxRevenueRecognitionSource: PropTypes.Requireable<io.flow.internal.v0.models.FxRevenueRecognitionSource>;
|
|
26996
|
+
export const geRevenueShareTransaction: PropTypes.Requireable<io.flow.internal.v0.models.GeRevenueShareTransaction>;
|
|
26915
26997
|
export const generateLoadMultipleOrgs: PropTypes.Requireable<io.flow.internal.v0.models.GenerateLoadMultipleOrgs>;
|
|
26916
26998
|
export const generateLoadSingleOrg: PropTypes.Requireable<io.flow.internal.v0.models.GenerateLoadSingleOrg>;
|
|
26917
26999
|
export const genericValidationError: PropTypes.Requireable<io.flow.internal.v0.models.GenericValidationError>;
|
|
@@ -27205,6 +27287,7 @@ export const orderDetail: PropTypes.Requireable<io.flow.internal.v0.models.Order
|
|
|
27205
27287
|
export const orderEditSummary: PropTypes.Requireable<io.flow.internal.v0.models.OrderEditSummary>;
|
|
27206
27288
|
export const orderFulfillmentDeleted: PropTypes.Requireable<io.flow.internal.v0.models.OrderFulfillmentDeleted>;
|
|
27207
27289
|
export const orderFulfillmentUpserted: PropTypes.Requireable<io.flow.internal.v0.models.OrderFulfillmentUpserted>;
|
|
27290
|
+
export const orderFxTransaction: PropTypes.Requireable<io.flow.internal.v0.models.OrderFxTransaction>;
|
|
27208
27291
|
export const orderNote: PropTypes.Requireable<io.flow.internal.v0.models.OrderNote>;
|
|
27209
27292
|
export const orderNoteForm: PropTypes.Requireable<io.flow.internal.v0.models.OrderNoteForm>;
|
|
27210
27293
|
export const orderParameters: PropTypes.Requireable<io.flow.internal.v0.models.OrderParameters>;
|
|
@@ -27542,10 +27625,16 @@ export const restrictionProductRequestForm: PropTypes.Requireable<io.flow.intern
|
|
|
27542
27625
|
export const restrictionProductSummary: PropTypes.Requireable<io.flow.internal.v0.models.RestrictionProductSummary>;
|
|
27543
27626
|
export const restrictionRule: PropTypes.Requireable<io.flow.internal.v0.models.RestrictionRule>;
|
|
27544
27627
|
export const restrictionRuleDecisionForm: PropTypes.Requireable<io.flow.internal.v0.models.RestrictionRuleDecisionForm>;
|
|
27628
|
+
export const restrictionRuleDeleted: PropTypes.Requireable<io.flow.internal.v0.models.RestrictionRuleDeleted>;
|
|
27629
|
+
export const restrictionRuleEffect: PropTypes.Requireable<io.flow.internal.v0.models.RestrictionRuleEffect>;
|
|
27630
|
+
export const restrictionRuleEffectDeleted: PropTypes.Requireable<io.flow.internal.v0.models.RestrictionRuleEffectDeleted>;
|
|
27631
|
+
export const restrictionRuleEffectForm: PropTypes.Requireable<io.flow.internal.v0.models.RestrictionRuleEffectForm>;
|
|
27632
|
+
export const restrictionRuleEffectUpserted: PropTypes.Requireable<io.flow.internal.v0.models.RestrictionRuleEffectUpserted>;
|
|
27545
27633
|
export const restrictionRuleForm: PropTypes.Requireable<io.flow.internal.v0.models.RestrictionRuleForm>;
|
|
27546
27634
|
export const restrictionRuleMetadata: PropTypes.Requireable<io.flow.internal.v0.models.RestrictionRuleMetadata>;
|
|
27547
27635
|
export const restrictionRuleOverride: PropTypes.Requireable<io.flow.internal.v0.models.RestrictionRuleOverride>;
|
|
27548
27636
|
export const restrictionRuleSummary: PropTypes.Requireable<io.flow.internal.v0.models.RestrictionRuleSummary>;
|
|
27637
|
+
export const restrictionRuleUpserted: PropTypes.Requireable<io.flow.internal.v0.models.RestrictionRuleUpserted>;
|
|
27549
27638
|
export const restrictionStatusMetadata: PropTypes.Requireable<io.flow.internal.v0.models.RestrictionStatusMetadata>;
|
|
27550
27639
|
export const restrictionsDailyops: PropTypes.Requireable<io.flow.internal.v0.models.RestrictionsDailyops>;
|
|
27551
27640
|
export const restrictionsDailyopsDeleted: PropTypes.Requireable<io.flow.internal.v0.models.RestrictionsDailyopsDeleted>;
|
|
@@ -27592,6 +27681,7 @@ export const sessionRollout: PropTypes.Requireable<io.flow.internal.v0.models.Se
|
|
|
27592
27681
|
export const sessionRolloutForm: PropTypes.Requireable<io.flow.internal.v0.models.SessionRolloutForm>;
|
|
27593
27682
|
export const setupBlockPutForm: PropTypes.Requireable<io.flow.internal.v0.models.SetupBlockPutForm>;
|
|
27594
27683
|
export const sfExpress: PropTypes.Requireable<io.flow.internal.v0.models.SfExpress>;
|
|
27684
|
+
export const shawnRoundtableWorkshopRate: PropTypes.Requireable<io.flow.internal.v0.models.ShawnRoundtableWorkshopRate>;
|
|
27595
27685
|
export const shippedItemValue: PropTypes.Requireable<io.flow.internal.v0.models.ShippedItemValue>;
|
|
27596
27686
|
export const shippingLane: PropTypes.Requireable<io.flow.internal.v0.models.ShippingLane>;
|
|
27597
27687
|
export const shippingMethodReference: PropTypes.Requireable<io.flow.internal.v0.models.ShippingMethodReference>;
|
|
@@ -27616,6 +27706,15 @@ export const shopifyGrantsCheck: PropTypes.Requireable<io.flow.internal.v0.model
|
|
|
27616
27706
|
export const shopifyIncotermIncludes: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyIncotermIncludes>;
|
|
27617
27707
|
export const shopifyIncotermSummaryErrorData: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyIncotermSummaryErrorData>;
|
|
27618
27708
|
export const shopifyIncotermSummaryErrorPublished: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyIncotermSummaryErrorPublished>;
|
|
27709
|
+
export const shopifyInventoryItemCreateDeleted: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyInventoryItemCreateDeleted>;
|
|
27710
|
+
export const shopifyInventoryItemCreateUpserted: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyInventoryItemCreateUpserted>;
|
|
27711
|
+
export const shopifyInventoryItemCreateWebhookEvent: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyInventoryItemCreateWebhookEvent>;
|
|
27712
|
+
export const shopifyInventoryItemDeleteDeleted: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyInventoryItemDeleteDeleted>;
|
|
27713
|
+
export const shopifyInventoryItemDeleteUpserted: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyInventoryItemDeleteUpserted>;
|
|
27714
|
+
export const shopifyInventoryItemDeleteWebhookEvent: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyInventoryItemDeleteWebhookEvent>;
|
|
27715
|
+
export const shopifyInventoryItemUpdateDeleted: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyInventoryItemUpdateDeleted>;
|
|
27716
|
+
export const shopifyInventoryItemUpdateUpserted: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyInventoryItemUpdateUpserted>;
|
|
27717
|
+
export const shopifyInventoryItemUpdateWebhookEvent: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyInventoryItemUpdateWebhookEvent>;
|
|
27619
27718
|
export const shopifyMarketsBestSellingProduct: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMarketsBestSellingProduct>;
|
|
27620
27719
|
export const shopifyMarketsBestSellingProductDeleted: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMarketsBestSellingProductDeleted>;
|
|
27621
27720
|
export const shopifyMarketsBestSellingProductUpserted: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMarketsBestSellingProductUpserted>;
|
|
@@ -27676,6 +27775,15 @@ export const shopifyProductBundle: PropTypes.Requireable<io.flow.internal.v0.mod
|
|
|
27676
27775
|
export const shopifyProductBundleDeleted: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyProductBundleDeleted>;
|
|
27677
27776
|
export const shopifyProductBundleUnderlying: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyProductBundleUnderlying>;
|
|
27678
27777
|
export const shopifyProductBundleUpserted: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyProductBundleUpserted>;
|
|
27778
|
+
export const shopifyProductCreateDeleted: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyProductCreateDeleted>;
|
|
27779
|
+
export const shopifyProductCreateUpserted: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyProductCreateUpserted>;
|
|
27780
|
+
export const shopifyProductCreateWebhookEvent: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyProductCreateWebhookEvent>;
|
|
27781
|
+
export const shopifyProductDeleteDeleted: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyProductDeleteDeleted>;
|
|
27782
|
+
export const shopifyProductDeleteUpserted: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyProductDeleteUpserted>;
|
|
27783
|
+
export const shopifyProductDeleteWebhookEvent: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyProductDeleteWebhookEvent>;
|
|
27784
|
+
export const shopifyProductUpdateDeleted: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyProductUpdateDeleted>;
|
|
27785
|
+
export const shopifyProductUpdateUpserted: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyProductUpdateUpserted>;
|
|
27786
|
+
export const shopifyProductUpdateWebhookEvent: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyProductUpdateWebhookEvent>;
|
|
27679
27787
|
export const shopifyProductWrapper: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyProductWrapper>;
|
|
27680
27788
|
export const shopifyPromoForm: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyPromoForm>;
|
|
27681
27789
|
export const shopifyPromotion: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyPromotion>;
|
|
@@ -27695,6 +27803,7 @@ export const shopifyShopDeleted: PropTypes.Requireable<io.flow.internal.v0.model
|
|
|
27695
27803
|
export const shopifyShopStatistics: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyShopStatistics>;
|
|
27696
27804
|
export const shopifyShopUpserted: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyShopUpserted>;
|
|
27697
27805
|
export const shopifyStoreDetail: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyStoreDetail>;
|
|
27806
|
+
export const shopifyStripeEvent: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyStripeEvent>;
|
|
27698
27807
|
export const shopifyWebhook: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyWebhook>;
|
|
27699
27808
|
export const shopifyWebhookEvent: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyWebhookEvent>;
|
|
27700
27809
|
export const shopifyWebhookForm: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyWebhookForm>;
|
|
@@ -27764,7 +27873,6 @@ export const subscription: PropTypes.Requireable<io.flow.internal.v0.models.Subs
|
|
|
27764
27873
|
export const subscriptionTransaction: PropTypes.Requireable<io.flow.internal.v0.models.SubscriptionTransaction>;
|
|
27765
27874
|
export const supportedLabels: PropTypes.Requireable<io.flow.internal.v0.models.SupportedLabels>;
|
|
27766
27875
|
export const tariffCodeDuty: PropTypes.Requireable<io.flow.internal.v0.models.TariffCodeDuty>;
|
|
27767
|
-
export const tariffCodesExport: PropTypes.Requireable<io.flow.internal.v0.models.TariffCodesExport>;
|
|
27768
27876
|
export const tariffEligibility: PropTypes.Requireable<io.flow.internal.v0.models.TariffEligibility>;
|
|
27769
27877
|
export const task: PropTypes.Requireable<io.flow.internal.v0.models.Task>;
|
|
27770
27878
|
export const taskCount: PropTypes.Requireable<io.flow.internal.v0.models.TaskCount>;
|
|
@@ -27777,6 +27885,7 @@ export const taxCalculationError: PropTypes.Requireable<io.flow.internal.v0.mode
|
|
|
27777
27885
|
export const taxCalculationForm: PropTypes.Requireable<io.flow.internal.v0.models.TaxCalculationForm>;
|
|
27778
27886
|
export const taxCalculationLineItem: PropTypes.Requireable<io.flow.internal.v0.models.TaxCalculationLineItem>;
|
|
27779
27887
|
export const taxCalculationLineItemForm: PropTypes.Requireable<io.flow.internal.v0.models.TaxCalculationLineItemForm>;
|
|
27888
|
+
export const taxDutyDeltaTransaction: PropTypes.Requireable<io.flow.internal.v0.models.TaxDutyDeltaTransaction>;
|
|
27780
27889
|
export const taxRemittanceTransaction: PropTypes.Requireable<io.flow.internal.v0.models.TaxRemittanceTransaction>;
|
|
27781
27890
|
export const taxRemittanceTransactionDeleted: PropTypes.Requireable<io.flow.internal.v0.models.TaxRemittanceTransactionDeleted>;
|
|
27782
27891
|
export const taxRemittanceTransactionUpserted: PropTypes.Requireable<io.flow.internal.v0.models.TaxRemittanceTransactionUpserted>;
|
|
@@ -27826,10 +27935,12 @@ export const trackingProcessingErrorDeleted: PropTypes.Requireable<io.flow.inter
|
|
|
27826
27935
|
export const trackingProcessingErrorUpserted: PropTypes.Requireable<io.flow.internal.v0.models.TrackingProcessingErrorUpserted>;
|
|
27827
27936
|
export const trackingRequest: PropTypes.Requireable<io.flow.internal.v0.models.TrackingRequest>;
|
|
27828
27937
|
export const trackingResponse: PropTypes.Requireable<io.flow.internal.v0.models.TrackingResponse>;
|
|
27938
|
+
export const trackingResync: PropTypes.Requireable<io.flow.internal.v0.models.TrackingResync>;
|
|
27829
27939
|
export const trackingSubscription: PropTypes.Requireable<io.flow.internal.v0.models.TrackingSubscription>;
|
|
27830
27940
|
export const trackingSubscriptionDeleted: PropTypes.Requireable<io.flow.internal.v0.models.TrackingSubscriptionDeleted>;
|
|
27831
27941
|
export const trackingSubscriptionUpserted: PropTypes.Requireable<io.flow.internal.v0.models.TrackingSubscriptionUpserted>;
|
|
27832
27942
|
export const trackingUpserted: PropTypes.Requireable<io.flow.internal.v0.models.TrackingUpserted>;
|
|
27943
|
+
export const trackingWebhook: PropTypes.Requireable<io.flow.internal.v0.models.TrackingWebhook>;
|
|
27833
27944
|
export const transactionAdjustment: PropTypes.Requireable<io.flow.internal.v0.models.TransactionAdjustment>;
|
|
27834
27945
|
export const transactionAdjustmentForm: PropTypes.Requireable<io.flow.internal.v0.models.TransactionAdjustmentForm>;
|
|
27835
27946
|
export const transactionReference: PropTypes.Requireable<io.flow.internal.v0.models.TransactionReference>;
|