@flowio/api-internal-prop-types 9.24.106 → 9.24.108
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 +179 -325
- package/lib/api-internal.js +1 -1
- package/package.json +2 -2
- package/src/api-internal.d.ts +179 -325
- package/src/api-internal.js +265 -344
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';
|
|
@@ -3231,6 +2933,13 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
3231
2933
|
readonly 'transfer_group'?: string;
|
|
3232
2934
|
}
|
|
3233
2935
|
|
|
2936
|
+
interface PaymentIntents {
|
|
2937
|
+
readonly 'object': string;
|
|
2938
|
+
readonly 'data': io.flow.stripe.v0.models.PaymentIntent[];
|
|
2939
|
+
readonly 'has_more': boolean;
|
|
2940
|
+
readonly 'url'?: string;
|
|
2941
|
+
}
|
|
2942
|
+
|
|
3234
2943
|
interface PaymentMethod {
|
|
3235
2944
|
readonly 'id': string;
|
|
3236
2945
|
readonly 'object': string;
|
|
@@ -4184,6 +3893,9 @@ declare namespace io.flow.external.paypal.v1.enums {
|
|
|
4184
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';
|
|
4185
3894
|
type ProductReceived = 'YES' | 'NO' | 'RETURNED';
|
|
4186
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';
|
|
4187
3899
|
type ReturnAcknowledgementType = 'ITEM_RECEIVED' | 'ITEM_NOT_RECEIVED' | 'DAMAGED' | 'EMPTY_PACKAGE_OR_DIFFERENT' | 'MISSING_ITEMS';
|
|
4188
3900
|
type ReturnMode = 'SHIPPED' | 'IN_PERSON';
|
|
4189
3901
|
type SaleState = 'pending' | 'completed' | 'denied' | 'partially_refunded' | 'refunded';
|
|
@@ -4580,6 +4292,31 @@ declare namespace io.flow.external.paypal.v1.models {
|
|
|
4580
4292
|
readonly 'invoice_number': string;
|
|
4581
4293
|
}
|
|
4582
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
|
+
|
|
4583
4320
|
interface ReturnDetails {
|
|
4584
4321
|
readonly 'return_time'?: string;
|
|
4585
4322
|
readonly 'mode'?: io.flow.external.paypal.v1.enums.ReturnMode;
|
|
@@ -5270,6 +5007,7 @@ declare namespace io.flow.adyen.v0.enums {
|
|
|
5270
5007
|
type LifecycleStage = 'INQUIRY' | 'CHARGEBACK';
|
|
5271
5008
|
type Operation = 'cancel' | 'capture' | 'refund';
|
|
5272
5009
|
type PaymentMethod = 'ach' | 'alipay' | 'alipay_hk' | 'alipay_wap' | 'amex' | 'bankTransfer_IBAN' | 'bcmc' | 'bcmc_mobile' | 'blik' | 'cartebancaire' | 'cup' | 'diners' | 'directEbanking' | 'discover' | 'dotpay' | 'dragonpay_ebanking' | 'dragonpay_gcash' | 'dragonpay_otc_banking' | 'ebanking_FI' | 'gcash' | 'giropay' | 'grabpay_MY' | 'grabpay_PH' | 'grabpay_SG' | 'ideal' | 'interac' | 'jcb' | 'kakaopay' | 'kcp_banktransfer' | 'kcp_creditcard' | 'kcp_payco' | 'maestro' | 'mbway' | 'mc' | 'mobilepay' | 'molpay_points' | 'multibanco' | 'onlineBanking_PL' | 'paywithgoogle' | 'qiwiwallet' | 'sepadirectdebit' | 'trustly' | 'trustpay' | 'twint' | 'unionpay' | 'vipps' | 'visa' | 'wechatpay' | 'unknowncard';
|
|
5010
|
+
type PaymentRecordType = 'Authorised' | 'AuthorisedPending' | 'Cancelled' | 'CaptureFailed' | 'Chargeback' | 'SecondChargeback' | 'ChargebackExternally' | 'ChargebackExternallyWithInfo' | 'ChargebackReversed' | 'ChargebackReversedExternallyWithInfo' | 'Error' | 'Expired' | 'PaidOut' | 'PaidOutExternally' | 'PaidOutExternallyWithInfo' | 'PaidOutReversed' | 'PayoutAuthorised' | 'PayoutError' | 'PayoutFailed' | 'Received' | 'ReceivedPayout' | 'RefundAuthorised' | 'Refunded' | 'RefundedBulk' | 'RefundedExternally' | 'RefundedExternallyWithInfo' | 'RefundFailed' | 'RefundedInInstallments' | 'RefundedInstallment' | 'RefundedReversed' | 'RefundNotProcessed' | 'Refused' | 'RefusedPayout' | 'Retried' | 'SentForPayout' | 'SentForRefund' | 'SentForSettle' | 'Settled' | 'SettledBulk' | 'SettledExternally' | 'SettledExternallyWithInfo' | 'SettledInInstallments' | 'SettledInstallment' | 'SettledReversed' | 'SuspendInstallment' | 'AdvancedInstallment' | 'AdvancedInstallmentCancelled' | 'OpenInstallment' | 'CloseInstallment';
|
|
5273
5011
|
type RecurringProcessingModel = 'Subscription' | 'CardOnFile' | 'UnscheduledCardOnFile';
|
|
5274
5012
|
type ResultCode = 'Authorised' | 'Cancelled' | 'Error' | 'Refused' | 'Received' | 'RedirectShopper' | 'Pending' | 'ChallengeShopper' | 'IdentifyShopper';
|
|
5275
5013
|
type ShopperInteraction = 'Ecommerce' | 'ContAuth' | 'POS' | 'Moto';
|
|
@@ -5420,9 +5158,9 @@ declare namespace io.flow.adyen.v0.models {
|
|
|
5420
5158
|
}
|
|
5421
5159
|
|
|
5422
5160
|
interface ChargebackNotificationAdditionalData {
|
|
5423
|
-
readonly 'chargebackReasonCode'
|
|
5161
|
+
readonly 'chargebackReasonCode'?: string;
|
|
5424
5162
|
readonly 'modificationMerchantReferences': string;
|
|
5425
|
-
readonly 'chargebackSchemeCode'
|
|
5163
|
+
readonly 'chargebackSchemeCode'?: string;
|
|
5426
5164
|
readonly 'defensePeriodEndsAt'?: string;
|
|
5427
5165
|
readonly 'disputeStatus'?: io.flow.adyen.v0.enums.DisputeStatus;
|
|
5428
5166
|
readonly 'defendable'?: string;
|
|
@@ -10779,6 +10517,7 @@ declare namespace io.flow.tracking.v0.models {
|
|
|
10779
10517
|
readonly 'timestamp': string;
|
|
10780
10518
|
readonly 'description'?: string;
|
|
10781
10519
|
readonly 'aggregator_status_code'?: string;
|
|
10520
|
+
readonly 'created_at'?: string;
|
|
10782
10521
|
}
|
|
10783
10522
|
|
|
10784
10523
|
interface TrackingEventForm {
|
|
@@ -13774,6 +13513,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
13774
13513
|
type AddressConfigurationSettingProvinceCode = 'iso_3166_2' | 'name';
|
|
13775
13514
|
type AdjustmentTransactionType = 'adjustment' | 'reversal';
|
|
13776
13515
|
type AdyenIntegrationType = 'hosted_payment_page' | 'checkout_payments_api' | 'classic_authorise_api';
|
|
13516
|
+
type AldoItemType = 'physical' | 'digital';
|
|
13777
13517
|
type AnyDangerousGoods = 'yes' | 'no' | 'i_dont_know';
|
|
13778
13518
|
type ApiCallReferenceId = 'duty_rates_data_event' | 'integration_test' | 'unit_test';
|
|
13779
13519
|
type AutoRestrictRule = 'prr-3ce7d556f2464314ab0a3e8eee33e0ce' | 'prr-599c6246a1a24752aeb85e8f79030781' | 'prr-79e41878ea564f9c81cc432a0e84703f' | 'prr-f29c26dc09e04536bc77f9c32786ed70' | 'prr-b186129720f0446eb452a68518437c95';
|
|
@@ -13816,7 +13556,6 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
13816
13556
|
type ClassificationPlatform = 'GlobalE' | 'Flow' | 'Borderfree';
|
|
13817
13557
|
type ClassificationType = 'None' | 'Manual' | 'ML';
|
|
13818
13558
|
type ClothingAgeClassification = 'None' | 'AgeKidsGeneral' | 'Age0_10' | 'Age10_13' | 'Age13_14';
|
|
13819
|
-
type ColmItemType = 'physical' | 'digital';
|
|
13820
13559
|
type Company = 'globale' | 'flow';
|
|
13821
13560
|
type ComplianceType = 'weee';
|
|
13822
13561
|
type ContentElementType = 'markdown' | 'html' | 'plain_text' | 'href';
|
|
@@ -13849,7 +13588,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
13849
13588
|
type DutyTransactionType = 'adjustment' | 'reversal' | 'duty';
|
|
13850
13589
|
type EmptyAttribute = 'irrelevant';
|
|
13851
13590
|
type ErpFileType = 'vendor';
|
|
13852
|
-
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' | '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';
|
|
13591
|
+
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' | 'aldo_item_upserted' | 'aldo_item_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';
|
|
13853
13592
|
type ExperienceImportType = 'experience_with_settings';
|
|
13854
13593
|
type ExperienceOrderAction = 'submit' | 'refund_gift_cards';
|
|
13855
13594
|
type ExperienceOrderActionTrigger = 'zero_balance' | 'unsubmitted_order';
|
|
@@ -14710,6 +14449,41 @@ declare namespace io.flow.internal.v0.models {
|
|
|
14710
14449
|
readonly 'afterpay_refund': io.flow.internal.v0.models.AfterpayRefund;
|
|
14711
14450
|
}
|
|
14712
14451
|
|
|
14452
|
+
interface AftershipWebhook {
|
|
14453
|
+
readonly 'placeholder'?: boolean;
|
|
14454
|
+
}
|
|
14455
|
+
|
|
14456
|
+
interface AldoItem {
|
|
14457
|
+
readonly 'id': string;
|
|
14458
|
+
readonly 'number': string;
|
|
14459
|
+
readonly 'amount': io.flow.common.v0.models.Price;
|
|
14460
|
+
readonly 'description'?: string;
|
|
14461
|
+
readonly 'type': io.flow.internal.v0.enums.AldoItemType;
|
|
14462
|
+
readonly 'added_on': string;
|
|
14463
|
+
}
|
|
14464
|
+
|
|
14465
|
+
interface AldoItemDeleted {
|
|
14466
|
+
readonly 'discriminator': 'aldo_item_deleted';
|
|
14467
|
+
readonly 'event_id': string;
|
|
14468
|
+
readonly 'timestamp': string;
|
|
14469
|
+
readonly 'id': string;
|
|
14470
|
+
}
|
|
14471
|
+
|
|
14472
|
+
interface AldoItemForm {
|
|
14473
|
+
readonly 'number': string;
|
|
14474
|
+
readonly 'amount': io.flow.common.v0.models.Price;
|
|
14475
|
+
readonly 'description'?: string;
|
|
14476
|
+
readonly 'type': io.flow.internal.v0.enums.AldoItemType;
|
|
14477
|
+
readonly 'added_on': string;
|
|
14478
|
+
}
|
|
14479
|
+
|
|
14480
|
+
interface AldoItemUpserted {
|
|
14481
|
+
readonly 'discriminator': 'aldo_item_upserted';
|
|
14482
|
+
readonly 'event_id': string;
|
|
14483
|
+
readonly 'timestamp': string;
|
|
14484
|
+
readonly 'item': io.flow.internal.v0.models.AldoItem;
|
|
14485
|
+
}
|
|
14486
|
+
|
|
14713
14487
|
interface AlertErrorSummary {
|
|
14714
14488
|
readonly 'event_id': number;
|
|
14715
14489
|
readonly 'error': string;
|
|
@@ -16566,23 +16340,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
16566
16340
|
readonly 'task': string;
|
|
16567
16341
|
}
|
|
16568
16342
|
|
|
16569
|
-
interface ColmItem {
|
|
16570
|
-
readonly 'id': string;
|
|
16571
|
-
readonly 'number': string;
|
|
16572
|
-
readonly 'amount': io.flow.common.v0.models.Price;
|
|
16573
|
-
readonly 'description'?: string;
|
|
16574
|
-
readonly 'type': io.flow.internal.v0.enums.ColmItemType;
|
|
16575
|
-
readonly 'added_on': string;
|
|
16576
|
-
}
|
|
16577
|
-
|
|
16578
|
-
interface ColmItemForm {
|
|
16579
|
-
readonly 'number': string;
|
|
16580
|
-
readonly 'amount': io.flow.common.v0.models.Price;
|
|
16581
|
-
readonly 'description'?: string;
|
|
16582
|
-
readonly 'type': io.flow.internal.v0.enums.ColmItemType;
|
|
16583
|
-
readonly 'added_on': string;
|
|
16584
|
-
}
|
|
16585
|
-
|
|
16586
16343
|
interface CommercialInvoiceComparison {
|
|
16587
16344
|
readonly 'urls': string[];
|
|
16588
16345
|
}
|
|
@@ -16968,6 +16725,12 @@ declare namespace io.flow.internal.v0.models {
|
|
|
16968
16725
|
readonly 'transaction_id': string;
|
|
16969
16726
|
}
|
|
16970
16727
|
|
|
16728
|
+
interface DebugAdjustment {
|
|
16729
|
+
readonly 'transaction_id': string;
|
|
16730
|
+
readonly 'original_transaction': io.flow.internal.v0.models.DebugOriginalTransactionSummary;
|
|
16731
|
+
readonly 'description': string;
|
|
16732
|
+
}
|
|
16733
|
+
|
|
16971
16734
|
interface DebugBankingDetails {
|
|
16972
16735
|
readonly 'merchant': io.flow.internal.v0.models.MerchantDetails;
|
|
16973
16736
|
readonly 'account': io.flow.internal.v0.models.BankAccount;
|
|
@@ -16978,6 +16741,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
16978
16741
|
readonly 'captures': io.flow.internal.v0.models.DebugPaymentTransactionSummary[];
|
|
16979
16742
|
readonly 'refunds': io.flow.internal.v0.models.DebugPaymentTransactionSummary[];
|
|
16980
16743
|
readonly 'allocation': io.flow.experience.v0.models.AllocationV2;
|
|
16744
|
+
readonly 'adjustments': io.flow.internal.v0.models.DebugAdjustment[];
|
|
16981
16745
|
}
|
|
16982
16746
|
|
|
16983
16747
|
interface DebugFulfillmentDelta {
|
|
@@ -16992,6 +16756,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
16992
16756
|
readonly 'carrier_tracking_number': string;
|
|
16993
16757
|
readonly 'label_tracking_summary_id'?: string;
|
|
16994
16758
|
readonly 'label_id'?: string;
|
|
16759
|
+
readonly 'cost_estimate'?: io.flow.label.v0.models.ShippingLabelHopSummary;
|
|
16995
16760
|
readonly 'transactions'?: io.flow.internal.v0.models.DebugLabelTransactionSummary[];
|
|
16996
16761
|
}
|
|
16997
16762
|
|
|
@@ -17012,11 +16777,16 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17012
16777
|
interface DebugOrderTransaction {
|
|
17013
16778
|
readonly 'order': io.flow.internal.v0.models.DebugOrder;
|
|
17014
16779
|
readonly 'debug': io.flow.internal.v0.models.DebugDetails;
|
|
17015
|
-
readonly 'transactions': io.flow.
|
|
16780
|
+
readonly 'transactions': io.flow.internal.v0.models.DebugOrderTransactionDetails[];
|
|
17016
16781
|
readonly 'reporting': io.flow.internal.v0.models.ReportingDetails;
|
|
17017
16782
|
readonly 'banking': io.flow.internal.v0.models.DebugBankingDetails;
|
|
17018
16783
|
}
|
|
17019
16784
|
|
|
16785
|
+
interface DebugOrderTransactionDetails {
|
|
16786
|
+
readonly 'transaction': io.flow.billing.v0.models.Transaction;
|
|
16787
|
+
readonly 'payout_details'?: io.flow.billing.v0.unions.PayoutStatus;
|
|
16788
|
+
}
|
|
16789
|
+
|
|
17020
16790
|
interface DebugOrderTransactionForm {
|
|
17021
16791
|
readonly 'order_id'?: string;
|
|
17022
16792
|
readonly 'organization_id'?: string;
|
|
@@ -17038,6 +16808,11 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17038
16808
|
readonly 'value'?: string;
|
|
17039
16809
|
}
|
|
17040
16810
|
|
|
16811
|
+
interface DebugOriginalTransactionSummary {
|
|
16812
|
+
readonly 'id': string;
|
|
16813
|
+
readonly 'source': io.flow.billing.v0.enums.TransactionSource;
|
|
16814
|
+
}
|
|
16815
|
+
|
|
17041
16816
|
interface DebugPaymentTransactionSummary {
|
|
17042
16817
|
readonly 'id': string;
|
|
17043
16818
|
readonly 'type': string;
|
|
@@ -17319,6 +17094,8 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17319
17094
|
readonly 'reporting_category'?: io.flow.internal.v0.enums.DisputeReportingCategory;
|
|
17320
17095
|
readonly 'category'?: io.flow.internal.v0.enums.DisputeCategory;
|
|
17321
17096
|
readonly 'status'?: io.flow.internal.v0.enums.DisputeStatus;
|
|
17097
|
+
readonly 'defense_outcome'?: io.flow.internal.v0.enums.DisputeDefenseOutcome;
|
|
17098
|
+
readonly 'defended_at'?: string;
|
|
17322
17099
|
}
|
|
17323
17100
|
|
|
17324
17101
|
interface DisputeRecord {
|
|
@@ -18013,6 +17790,29 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18013
17790
|
readonly 'negative_balance'?: io.flow.internal.v0.models.Fee;
|
|
18014
17791
|
}
|
|
18015
17792
|
|
|
17793
|
+
interface FinalEstimate {
|
|
17794
|
+
readonly 'id': string;
|
|
17795
|
+
readonly 'organization_id': string;
|
|
17796
|
+
readonly 'label_id': string;
|
|
17797
|
+
readonly 'estimate': io.flow.label.v0.models.ShippingLabelHopSummary;
|
|
17798
|
+
}
|
|
17799
|
+
|
|
17800
|
+
interface FinalEstimateDeleted {
|
|
17801
|
+
readonly 'discriminator': 'final_estimate_deleted';
|
|
17802
|
+
readonly 'event_id': string;
|
|
17803
|
+
readonly 'timestamp': string;
|
|
17804
|
+
readonly 'organization': string;
|
|
17805
|
+
readonly 'id': string;
|
|
17806
|
+
}
|
|
17807
|
+
|
|
17808
|
+
interface FinalEstimateUpserted {
|
|
17809
|
+
readonly 'discriminator': 'final_estimate_upserted';
|
|
17810
|
+
readonly 'event_id': string;
|
|
17811
|
+
readonly 'timestamp': string;
|
|
17812
|
+
readonly 'organization': string;
|
|
17813
|
+
readonly 'final_estimate': io.flow.internal.v0.models.FinalEstimate;
|
|
17814
|
+
}
|
|
17815
|
+
|
|
18016
17816
|
interface FinanceBankAccount {
|
|
18017
17817
|
readonly 'id': string;
|
|
18018
17818
|
readonly 'accounts': io.flow.internal.v0.models.AccountSummary[];
|
|
@@ -18149,6 +17949,10 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18149
17949
|
readonly 'organization_capability'?: io.flow.internal.v0.enums.OrganizationCapability;
|
|
18150
17950
|
}
|
|
18151
17951
|
|
|
17952
|
+
interface FlexeWebhook {
|
|
17953
|
+
readonly 'placeholder'?: boolean;
|
|
17954
|
+
}
|
|
17955
|
+
|
|
18152
17956
|
interface FlowAccount {
|
|
18153
17957
|
readonly 'source': io.flow.internal.v0.models.AccountSource;
|
|
18154
17958
|
readonly 'id': string;
|
|
@@ -22532,12 +22336,18 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22532
22336
|
|
|
22533
22337
|
interface PspRoutingDistributionRevision {
|
|
22534
22338
|
readonly 'id': string;
|
|
22535
|
-
readonly 'description'
|
|
22339
|
+
readonly 'description'?: string;
|
|
22536
22340
|
readonly 'psp_routing_distributions': io.flow.internal.v0.models.PspRoutingDistribution[];
|
|
22537
22341
|
readonly 'created_at': string;
|
|
22538
22342
|
readonly 'updated_at': string;
|
|
22539
22343
|
}
|
|
22540
22344
|
|
|
22345
|
+
interface PspRoutingDistributionRevisionForm {
|
|
22346
|
+
readonly 'previous_revision'?: string;
|
|
22347
|
+
readonly 'description'?: string;
|
|
22348
|
+
readonly 'psp_routing_distributions': io.flow.internal.v0.models.PspRoutingDistribution[];
|
|
22349
|
+
}
|
|
22350
|
+
|
|
22541
22351
|
interface PublicHub {
|
|
22542
22352
|
readonly 'id': string;
|
|
22543
22353
|
readonly 'code': string;
|
|
@@ -24761,6 +24571,26 @@ declare namespace io.flow.internal.v0.models {
|
|
|
24761
24571
|
readonly 'spot_rate': io.flow.internal.v0.models.SpotRate;
|
|
24762
24572
|
}
|
|
24763
24573
|
|
|
24574
|
+
interface SppTrackerUpdateRequest {
|
|
24575
|
+
readonly 'id': string;
|
|
24576
|
+
readonly 'tracking_subscription': io.flow.internal.v0.models.TrackingSubscription;
|
|
24577
|
+
readonly 'created_at': string;
|
|
24578
|
+
}
|
|
24579
|
+
|
|
24580
|
+
interface SppTrackerUpdateRequestDeleted {
|
|
24581
|
+
readonly 'discriminator': 'spp_tracker_update_request_deleted';
|
|
24582
|
+
readonly 'event_id': string;
|
|
24583
|
+
readonly 'timestamp': string;
|
|
24584
|
+
readonly 'id': string;
|
|
24585
|
+
}
|
|
24586
|
+
|
|
24587
|
+
interface SppTrackerUpdateRequestUpserted {
|
|
24588
|
+
readonly 'discriminator': 'spp_tracker_update_request_upserted';
|
|
24589
|
+
readonly 'event_id': string;
|
|
24590
|
+
readonly 'timestamp': string;
|
|
24591
|
+
readonly 'spp_tracker_update_request': io.flow.internal.v0.models.SppTrackerUpdateRequest;
|
|
24592
|
+
}
|
|
24593
|
+
|
|
24764
24594
|
interface StandaloneAttachment {
|
|
24765
24595
|
readonly 'id': string;
|
|
24766
24596
|
readonly 'statement': io.flow.internal.v0.models.BillingStatementReference;
|
|
@@ -25582,6 +25412,10 @@ declare namespace io.flow.internal.v0.models {
|
|
|
25582
25412
|
readonly 'tracking_events': io.flow.internal.v0.models.TrackingEvent[];
|
|
25583
25413
|
}
|
|
25584
25414
|
|
|
25415
|
+
interface TrackingResync {
|
|
25416
|
+
readonly 'placeholder'?: boolean;
|
|
25417
|
+
}
|
|
25418
|
+
|
|
25585
25419
|
interface TrackingSubscription {
|
|
25586
25420
|
readonly 'id': string;
|
|
25587
25421
|
readonly 'organization_id': string;
|
|
@@ -25618,6 +25452,10 @@ declare namespace io.flow.internal.v0.models {
|
|
|
25618
25452
|
readonly 'tracking': io.flow.tracking.v0.models.Tracking;
|
|
25619
25453
|
}
|
|
25620
25454
|
|
|
25455
|
+
interface TrackingWebhook {
|
|
25456
|
+
readonly 'placeholder'?: boolean;
|
|
25457
|
+
}
|
|
25458
|
+
|
|
25621
25459
|
interface TransactionAdjustment {
|
|
25622
25460
|
readonly 'id': string;
|
|
25623
25461
|
readonly 'original_transaction': io.flow.internal.v0.models.TransactionReference;
|
|
@@ -25950,7 +25788,7 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
25950
25788
|
type DiscountRequestOfferForm = (io.flow.internal.v0.models.DiscountRequestOfferFixedAmountForm);
|
|
25951
25789
|
type DisputeDetails = (io.flow.internal.v0.models.DisputeDetailsAdyen | io.flow.internal.v0.models.DisputeDetailsPaypal | io.flow.internal.v0.models.DisputeDetailsStripe);
|
|
25952
25790
|
type DutyExpression = (io.flow.internal.v0.models.DutyCompoundExpression | io.flow.internal.v0.models.DutySimpleExpression);
|
|
25953
|
-
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.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);
|
|
25791
|
+
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.AldoItemUpserted | io.flow.internal.v0.models.AldoItemDeleted | 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);
|
|
25954
25792
|
type ExplicitStatementForm = (io.flow.internal.v0.models.ExplicitStatementFormTransactionIds | io.flow.internal.v0.models.ExplicitStatementFormAllPendingPostedTransactions);
|
|
25955
25793
|
type ExportSchedule = (io.flow.internal.v0.models.ExportScheduleDaily | io.flow.internal.v0.models.ExportScheduleRepeated);
|
|
25956
25794
|
type FeatureDefaultValue = (io.flow.internal.v0.models.BooleanFeatureDefaultValue | io.flow.internal.v0.models.StringFeatureDefaultValue);
|
|
@@ -26017,6 +25855,7 @@ export const accountType: PropTypes.Requireable<io.flow.internal.v0.enums.Accoun
|
|
|
26017
25855
|
export const addressConfigurationSettingProvinceCode: PropTypes.Requireable<io.flow.internal.v0.enums.AddressConfigurationSettingProvinceCode>;
|
|
26018
25856
|
export const adjustmentTransactionType: PropTypes.Requireable<io.flow.internal.v0.enums.AdjustmentTransactionType>;
|
|
26019
25857
|
export const adyenIntegrationType: PropTypes.Requireable<io.flow.internal.v0.enums.AdyenIntegrationType>;
|
|
25858
|
+
export const aldoItemType: PropTypes.Requireable<io.flow.internal.v0.enums.AldoItemType>;
|
|
26020
25859
|
export const anyDangerousGoods: PropTypes.Requireable<io.flow.internal.v0.enums.AnyDangerousGoods>;
|
|
26021
25860
|
export const apiCallReferenceId: PropTypes.Requireable<io.flow.internal.v0.enums.ApiCallReferenceId>;
|
|
26022
25861
|
export const autoRestrictRule: PropTypes.Requireable<io.flow.internal.v0.enums.AutoRestrictRule>;
|
|
@@ -26059,7 +25898,6 @@ export const classificationErrorCode: PropTypes.Requireable<io.flow.internal.v0.
|
|
|
26059
25898
|
export const classificationPlatform: PropTypes.Requireable<io.flow.internal.v0.enums.ClassificationPlatform>;
|
|
26060
25899
|
export const classificationType: PropTypes.Requireable<io.flow.internal.v0.enums.ClassificationType>;
|
|
26061
25900
|
export const clothingAgeClassification: PropTypes.Requireable<io.flow.internal.v0.enums.ClothingAgeClassification>;
|
|
26062
|
-
export const colmItemType: PropTypes.Requireable<io.flow.internal.v0.enums.ColmItemType>;
|
|
26063
25901
|
export const company: PropTypes.Requireable<io.flow.internal.v0.enums.Company>;
|
|
26064
25902
|
export const complianceType: PropTypes.Requireable<io.flow.internal.v0.enums.ComplianceType>;
|
|
26065
25903
|
export const contentElementType: PropTypes.Requireable<io.flow.internal.v0.enums.ContentElementType>;
|
|
@@ -26326,6 +26164,11 @@ export const afterpayCaptureUpserted: PropTypes.Requireable<io.flow.internal.v0.
|
|
|
26326
26164
|
export const afterpayRefund: PropTypes.Requireable<io.flow.internal.v0.models.AfterpayRefund>;
|
|
26327
26165
|
export const afterpayRefundDeleted: PropTypes.Requireable<io.flow.internal.v0.models.AfterpayRefundDeleted>;
|
|
26328
26166
|
export const afterpayRefundUpserted: PropTypes.Requireable<io.flow.internal.v0.models.AfterpayRefundUpserted>;
|
|
26167
|
+
export const aftershipWebhook: PropTypes.Requireable<io.flow.internal.v0.models.AftershipWebhook>;
|
|
26168
|
+
export const aldoItem: PropTypes.Requireable<io.flow.internal.v0.models.AldoItem>;
|
|
26169
|
+
export const aldoItemDeleted: PropTypes.Requireable<io.flow.internal.v0.models.AldoItemDeleted>;
|
|
26170
|
+
export const aldoItemForm: PropTypes.Requireable<io.flow.internal.v0.models.AldoItemForm>;
|
|
26171
|
+
export const aldoItemUpserted: PropTypes.Requireable<io.flow.internal.v0.models.AldoItemUpserted>;
|
|
26329
26172
|
export const alertErrorSummary: PropTypes.Requireable<io.flow.internal.v0.models.AlertErrorSummary>;
|
|
26330
26173
|
export const alertFailureSummary: PropTypes.Requireable<io.flow.internal.v0.models.AlertFailureSummary>;
|
|
26331
26174
|
export const alertFailureSummaryDetail: PropTypes.Requireable<io.flow.internal.v0.models.AlertFailureSummaryDetail>;
|
|
@@ -26579,8 +26422,6 @@ export const classifiedProduct: PropTypes.Requireable<io.flow.internal.v0.models
|
|
|
26579
26422
|
export const classifiedProductDetail: PropTypes.Requireable<io.flow.internal.v0.models.ClassifiedProductDetail>;
|
|
26580
26423
|
export const cliLogEntry: PropTypes.Requireable<io.flow.internal.v0.models.CliLogEntry>;
|
|
26581
26424
|
export const cliLogEntryForm: PropTypes.Requireable<io.flow.internal.v0.models.CliLogEntryForm>;
|
|
26582
|
-
export const colmItem: PropTypes.Requireable<io.flow.internal.v0.models.ColmItem>;
|
|
26583
|
-
export const colmItemForm: PropTypes.Requireable<io.flow.internal.v0.models.ColmItemForm>;
|
|
26584
26425
|
export const commercialInvoiceComparison: PropTypes.Requireable<io.flow.internal.v0.models.CommercialInvoiceComparison>;
|
|
26585
26426
|
export const commercialInvoiceInternal: PropTypes.Requireable<io.flow.internal.v0.models.CommercialInvoiceInternal>;
|
|
26586
26427
|
export const commercialInvoiceInternalDeleted: PropTypes.Requireable<io.flow.internal.v0.models.CommercialInvoiceInternalDeleted>;
|
|
@@ -26628,6 +26469,7 @@ export const dailyValue: PropTypes.Requireable<io.flow.internal.v0.models.DailyV
|
|
|
26628
26469
|
export const dailyValueDeleted: PropTypes.Requireable<io.flow.internal.v0.models.DailyValueDeleted>;
|
|
26629
26470
|
export const dailyValueUpserted: PropTypes.Requireable<io.flow.internal.v0.models.DailyValueUpserted>;
|
|
26630
26471
|
export const debugAccountingTransaction: PropTypes.Requireable<io.flow.internal.v0.models.DebugAccountingTransaction>;
|
|
26472
|
+
export const debugAdjustment: PropTypes.Requireable<io.flow.internal.v0.models.DebugAdjustment>;
|
|
26631
26473
|
export const debugBankingDetails: PropTypes.Requireable<io.flow.internal.v0.models.DebugBankingDetails>;
|
|
26632
26474
|
export const debugDetails: PropTypes.Requireable<io.flow.internal.v0.models.DebugDetails>;
|
|
26633
26475
|
export const debugFulfillmentDelta: PropTypes.Requireable<io.flow.internal.v0.models.DebugFulfillmentDelta>;
|
|
@@ -26635,8 +26477,10 @@ export const debugLabel: PropTypes.Requireable<io.flow.internal.v0.models.DebugL
|
|
|
26635
26477
|
export const debugLabelTransactionSummary: PropTypes.Requireable<io.flow.internal.v0.models.DebugLabelTransactionSummary>;
|
|
26636
26478
|
export const debugOrder: PropTypes.Requireable<io.flow.internal.v0.models.DebugOrder>;
|
|
26637
26479
|
export const debugOrderTransaction: PropTypes.Requireable<io.flow.internal.v0.models.DebugOrderTransaction>;
|
|
26480
|
+
export const debugOrderTransactionDetails: PropTypes.Requireable<io.flow.internal.v0.models.DebugOrderTransactionDetails>;
|
|
26638
26481
|
export const debugOrderTransactionForm: PropTypes.Requireable<io.flow.internal.v0.models.DebugOrderTransactionForm>;
|
|
26639
26482
|
export const debugOrderTransactionFormOrderIdentifier: PropTypes.Requireable<io.flow.internal.v0.models.DebugOrderTransactionFormOrderIdentifier>;
|
|
26483
|
+
export const debugOriginalTransactionSummary: PropTypes.Requireable<io.flow.internal.v0.models.DebugOriginalTransactionSummary>;
|
|
26640
26484
|
export const debugPaymentTransactionSummary: PropTypes.Requireable<io.flow.internal.v0.models.DebugPaymentTransactionSummary>;
|
|
26641
26485
|
export const debugTransactionDetails: PropTypes.Requireable<io.flow.internal.v0.models.DebugTransactionDetails>;
|
|
26642
26486
|
export const debugTransactionDetailsStatus: PropTypes.Requireable<io.flow.internal.v0.models.DebugTransactionDetailsStatus>;
|
|
@@ -26760,6 +26604,9 @@ export const feedDeleted: PropTypes.Requireable<io.flow.internal.v0.models.FeedD
|
|
|
26760
26604
|
export const feedUpserted: PropTypes.Requireable<io.flow.internal.v0.models.FeedUpserted>;
|
|
26761
26605
|
export const feedsExport: PropTypes.Requireable<io.flow.internal.v0.models.FeedsExport>;
|
|
26762
26606
|
export const fees: PropTypes.Requireable<io.flow.internal.v0.models.Fees>;
|
|
26607
|
+
export const finalEstimate: PropTypes.Requireable<io.flow.internal.v0.models.FinalEstimate>;
|
|
26608
|
+
export const finalEstimateDeleted: PropTypes.Requireable<io.flow.internal.v0.models.FinalEstimateDeleted>;
|
|
26609
|
+
export const finalEstimateUpserted: PropTypes.Requireable<io.flow.internal.v0.models.FinalEstimateUpserted>;
|
|
26763
26610
|
export const financeBankAccount: PropTypes.Requireable<io.flow.internal.v0.models.FinanceBankAccount>;
|
|
26764
26611
|
export const financeBankAccountOwner: PropTypes.Requireable<io.flow.internal.v0.models.FinanceBankAccountOwner>;
|
|
26765
26612
|
export const financeBankPayment: PropTypes.Requireable<io.flow.internal.v0.models.FinanceBankPayment>;
|
|
@@ -26775,6 +26622,7 @@ export const fiservAuthenticationForm: PropTypes.Requireable<io.flow.internal.v0
|
|
|
26775
26622
|
export const fiservMerchant: PropTypes.Requireable<io.flow.internal.v0.models.FiservMerchant>;
|
|
26776
26623
|
export const fiservMerchantModificationForm: PropTypes.Requireable<io.flow.internal.v0.models.FiservMerchantModificationForm>;
|
|
26777
26624
|
export const fiservMerchantPutForm: PropTypes.Requireable<io.flow.internal.v0.models.FiservMerchantPutForm>;
|
|
26625
|
+
export const flexeWebhook: PropTypes.Requireable<io.flow.internal.v0.models.FlexeWebhook>;
|
|
26778
26626
|
export const flowAccount: PropTypes.Requireable<io.flow.internal.v0.models.FlowAccount>;
|
|
26779
26627
|
export const flowBillingStatement: PropTypes.Requireable<io.flow.internal.v0.models.FlowBillingStatement>;
|
|
26780
26628
|
export const flowChannelOrganization: PropTypes.Requireable<io.flow.internal.v0.models.FlowChannelOrganization>;
|
|
@@ -27346,6 +27194,7 @@ export const proofOfPostingTimeElapsed: PropTypes.Requireable<io.flow.internal.v
|
|
|
27346
27194
|
export const pspDistribution: PropTypes.Requireable<io.flow.internal.v0.models.PspDistribution>;
|
|
27347
27195
|
export const pspRoutingDistribution: PropTypes.Requireable<io.flow.internal.v0.models.PspRoutingDistribution>;
|
|
27348
27196
|
export const pspRoutingDistributionRevision: PropTypes.Requireable<io.flow.internal.v0.models.PspRoutingDistributionRevision>;
|
|
27197
|
+
export const pspRoutingDistributionRevisionForm: PropTypes.Requireable<io.flow.internal.v0.models.PspRoutingDistributionRevisionForm>;
|
|
27349
27198
|
export const publicHub: PropTypes.Requireable<io.flow.internal.v0.models.PublicHub>;
|
|
27350
27199
|
export const publicHubForm: PropTypes.Requireable<io.flow.internal.v0.models.PublicHubForm>;
|
|
27351
27200
|
export const quote: PropTypes.Requireable<io.flow.internal.v0.models.Quote>;
|
|
@@ -27658,6 +27507,9 @@ export const spotRateMetadataIdentity: PropTypes.Requireable<io.flow.internal.v0
|
|
|
27658
27507
|
export const spotRateMetadataRate: PropTypes.Requireable<io.flow.internal.v0.models.SpotRateMetadataRate>;
|
|
27659
27508
|
export const spotRateUpserted: PropTypes.Requireable<io.flow.internal.v0.models.SpotRateUpserted>;
|
|
27660
27509
|
export const spotRateVersion: PropTypes.Requireable<io.flow.internal.v0.models.SpotRateVersion>;
|
|
27510
|
+
export const sppTrackerUpdateRequest: PropTypes.Requireable<io.flow.internal.v0.models.SppTrackerUpdateRequest>;
|
|
27511
|
+
export const sppTrackerUpdateRequestDeleted: PropTypes.Requireable<io.flow.internal.v0.models.SppTrackerUpdateRequestDeleted>;
|
|
27512
|
+
export const sppTrackerUpdateRequestUpserted: PropTypes.Requireable<io.flow.internal.v0.models.SppTrackerUpdateRequestUpserted>;
|
|
27661
27513
|
export const standaloneAttachment: PropTypes.Requireable<io.flow.internal.v0.models.StandaloneAttachment>;
|
|
27662
27514
|
export const standaloneAttachmentDeleted: PropTypes.Requireable<io.flow.internal.v0.models.StandaloneAttachmentDeleted>;
|
|
27663
27515
|
export const standaloneAttachmentUpserted: PropTypes.Requireable<io.flow.internal.v0.models.StandaloneAttachmentUpserted>;
|
|
@@ -27761,10 +27613,12 @@ export const trackingProcessingErrorDeleted: PropTypes.Requireable<io.flow.inter
|
|
|
27761
27613
|
export const trackingProcessingErrorUpserted: PropTypes.Requireable<io.flow.internal.v0.models.TrackingProcessingErrorUpserted>;
|
|
27762
27614
|
export const trackingRequest: PropTypes.Requireable<io.flow.internal.v0.models.TrackingRequest>;
|
|
27763
27615
|
export const trackingResponse: PropTypes.Requireable<io.flow.internal.v0.models.TrackingResponse>;
|
|
27616
|
+
export const trackingResync: PropTypes.Requireable<io.flow.internal.v0.models.TrackingResync>;
|
|
27764
27617
|
export const trackingSubscription: PropTypes.Requireable<io.flow.internal.v0.models.TrackingSubscription>;
|
|
27765
27618
|
export const trackingSubscriptionDeleted: PropTypes.Requireable<io.flow.internal.v0.models.TrackingSubscriptionDeleted>;
|
|
27766
27619
|
export const trackingSubscriptionUpserted: PropTypes.Requireable<io.flow.internal.v0.models.TrackingSubscriptionUpserted>;
|
|
27767
27620
|
export const trackingUpserted: PropTypes.Requireable<io.flow.internal.v0.models.TrackingUpserted>;
|
|
27621
|
+
export const trackingWebhook: PropTypes.Requireable<io.flow.internal.v0.models.TrackingWebhook>;
|
|
27768
27622
|
export const transactionAdjustment: PropTypes.Requireable<io.flow.internal.v0.models.TransactionAdjustment>;
|
|
27769
27623
|
export const transactionAdjustmentForm: PropTypes.Requireable<io.flow.internal.v0.models.TransactionAdjustmentForm>;
|
|
27770
27624
|
export const transactionReference: PropTypes.Requireable<io.flow.internal.v0.models.TransactionReference>;
|