@flowio/types 11.24.107 → 11.24.109
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/api-internal.d.ts +219 -539
- package/dist/api.d.ts +186 -164
- package/package.json +2 -2
- package/src/api-internal.ts +325 -657
- package/src/api.ts +239 -230
package/src/api-internal.ts
CHANGED
|
@@ -1099,6 +1099,24 @@ declare namespace io.flow.payment.gateway.v0.unions {
|
|
|
1099
1099
|
| io.flow.payment.gateway.v0.models.AdyenV3ChallengeToken;
|
|
1100
1100
|
}
|
|
1101
1101
|
|
|
1102
|
+
declare namespace io.flow.channel.currency.v0.models {
|
|
1103
|
+
interface ChannelCurrencyPair {
|
|
1104
|
+
readonly id: string;
|
|
1105
|
+
readonly base: string;
|
|
1106
|
+
readonly target: string;
|
|
1107
|
+
readonly rate: io.flow.channel.currency.v0.models.ChannelCurrencyRate;
|
|
1108
|
+
}
|
|
1109
|
+
|
|
1110
|
+
interface ChannelCurrencyRate {
|
|
1111
|
+
readonly id: string;
|
|
1112
|
+
readonly value: number;
|
|
1113
|
+
}
|
|
1114
|
+
|
|
1115
|
+
interface ChannelRate {
|
|
1116
|
+
readonly placeholder?: string;
|
|
1117
|
+
}
|
|
1118
|
+
}
|
|
1119
|
+
|
|
1102
1120
|
declare namespace io.flow.error.v0.enums {
|
|
1103
1121
|
type GenericErrorCode = 'generic_error' | 'client_error' | 'server_error';
|
|
1104
1122
|
}
|
|
@@ -1442,318 +1460,6 @@ declare namespace io.flow.RESERVED_WORD_export.v0.unions {
|
|
|
1442
1460
|
| io.flow.RESERVED_WORD_export.v0.models.ExclusionRulesExportType;
|
|
1443
1461
|
}
|
|
1444
1462
|
|
|
1445
|
-
declare namespace io.flow.flexe.v0.enums {
|
|
1446
|
-
type FlexeAttachmentType =
|
|
1447
|
-
| 'shipping_label'
|
|
1448
|
-
| 'packing_slip'
|
|
1449
|
-
| 'packing_slip_letter';
|
|
1450
|
-
type FlexeNotification = 'receipt' | 'shipment';
|
|
1451
|
-
type FlexeShipmentType =
|
|
1452
|
-
| 'fulfillment_order'
|
|
1453
|
-
| 'retail_fulfillment_order'
|
|
1454
|
-
| 'carton_pick_delivery'
|
|
1455
|
-
| 'delivery'
|
|
1456
|
-
| 'container_delivery';
|
|
1457
|
-
type FlexeStatus = 'in_transit' | 'completed';
|
|
1458
|
-
}
|
|
1459
|
-
|
|
1460
|
-
declare namespace io.flow.flexe.v0.models {
|
|
1461
|
-
interface BillOfLading {
|
|
1462
|
-
readonly type: string;
|
|
1463
|
-
readonly gs1us?: io.flow.flexe.v0.models.Gs1Us;
|
|
1464
|
-
}
|
|
1465
|
-
|
|
1466
|
-
interface BillTo {
|
|
1467
|
-
readonly name: string;
|
|
1468
|
-
readonly address_1: string;
|
|
1469
|
-
readonly locality: string;
|
|
1470
|
-
readonly region: string;
|
|
1471
|
-
readonly postal_code: string;
|
|
1472
|
-
readonly country: string;
|
|
1473
|
-
readonly address_2?: string;
|
|
1474
|
-
readonly address_3?: string;
|
|
1475
|
-
}
|
|
1476
|
-
|
|
1477
|
-
interface CartonPickDeliveryDetails {
|
|
1478
|
-
readonly shipment_uuid?: string;
|
|
1479
|
-
readonly carrier?: string;
|
|
1480
|
-
readonly carrier_id?: string;
|
|
1481
|
-
}
|
|
1482
|
-
|
|
1483
|
-
interface ContainerDeliveryDetails {
|
|
1484
|
-
readonly purchase_order: string;
|
|
1485
|
-
readonly container_number?: string;
|
|
1486
|
-
readonly seal_number?: string;
|
|
1487
|
-
readonly vendor?: string;
|
|
1488
|
-
readonly expected_inventory: io.flow.flexe.v0.models.InventoryDetails[];
|
|
1489
|
-
readonly received_inventory: io.flow.flexe.v0.models.InventoryDetails[];
|
|
1490
|
-
readonly damaged_inventory: io.flow.flexe.v0.models.InventoryDetails[];
|
|
1491
|
-
readonly quantities_by_inventory: Record<
|
|
1492
|
-
string,
|
|
1493
|
-
io.flow.flexe.v0.models.QuantityByInventory
|
|
1494
|
-
>;
|
|
1495
|
-
}
|
|
1496
|
-
|
|
1497
|
-
interface DeliveryDetails {
|
|
1498
|
-
readonly shipment_uuid?: string;
|
|
1499
|
-
readonly trailer_number?: string;
|
|
1500
|
-
readonly pallets: io.flow.flexe.v0.models.Pallet[];
|
|
1501
|
-
readonly quantities_by_inventory: Record<
|
|
1502
|
-
string,
|
|
1503
|
-
io.flow.flexe.v0.models.QuantityByInventory
|
|
1504
|
-
>;
|
|
1505
|
-
}
|
|
1506
|
-
|
|
1507
|
-
interface Error {
|
|
1508
|
-
readonly url: string;
|
|
1509
|
-
readonly client_request_id: string;
|
|
1510
|
-
readonly generated_at: string;
|
|
1511
|
-
readonly error: string;
|
|
1512
|
-
}
|
|
1513
|
-
|
|
1514
|
-
interface FlexeAttachment {
|
|
1515
|
-
readonly type: io.flow.flexe.v0.enums.FlexeAttachmentType;
|
|
1516
|
-
readonly display_name: string;
|
|
1517
|
-
readonly url: string;
|
|
1518
|
-
}
|
|
1519
|
-
|
|
1520
|
-
interface FlexeEcommerceFulfillment {
|
|
1521
|
-
readonly url: string;
|
|
1522
|
-
readonly client_request_id: string;
|
|
1523
|
-
readonly generated_at: string;
|
|
1524
|
-
readonly data: io.flow.flexe.v0.models.FlexeEcommerceFulfillmentData;
|
|
1525
|
-
readonly errors: io.flow.flexe.v0.models.FlexeEcommerceFulfillmentErrors[];
|
|
1526
|
-
}
|
|
1527
|
-
|
|
1528
|
-
interface FlexeEcommerceFulfillmentData {
|
|
1529
|
-
readonly import_id: string;
|
|
1530
|
-
readonly succeeded_uuids: string[];
|
|
1531
|
-
readonly failed_uuids: string[];
|
|
1532
|
-
readonly errors: string[];
|
|
1533
|
-
}
|
|
1534
|
-
|
|
1535
|
-
interface FlexeEcommerceFulfillmentErrors {
|
|
1536
|
-
readonly status: string;
|
|
1537
|
-
readonly title: string;
|
|
1538
|
-
readonly detail: string;
|
|
1539
|
-
readonly source?: string;
|
|
1540
|
-
}
|
|
1541
|
-
|
|
1542
|
-
interface FlexeEcommerceFulfillmentForm {
|
|
1543
|
-
readonly reservation_id: number;
|
|
1544
|
-
readonly client_request_id: string;
|
|
1545
|
-
readonly request: io.flow.flexe.v0.models.Orders;
|
|
1546
|
-
}
|
|
1547
|
-
|
|
1548
|
-
interface FlexeInventoryData {
|
|
1549
|
-
readonly sku: string;
|
|
1550
|
-
readonly quantity: string;
|
|
1551
|
-
readonly unit: string;
|
|
1552
|
-
}
|
|
1553
|
-
|
|
1554
|
-
interface FlexeRetailAttachment {
|
|
1555
|
-
readonly display_name: string;
|
|
1556
|
-
readonly url: string;
|
|
1557
|
-
}
|
|
1558
|
-
|
|
1559
|
-
interface FlexeRetailFulfillment {
|
|
1560
|
-
readonly url: string;
|
|
1561
|
-
readonly client_request_id: string;
|
|
1562
|
-
readonly generated_at: string;
|
|
1563
|
-
readonly data: io.flow.flexe.v0.models.FlexeRetailFulfillmentData;
|
|
1564
|
-
readonly errors?: io.flow.flexe.v0.models.FlexeRetailFulfillmentErrors[];
|
|
1565
|
-
}
|
|
1566
|
-
|
|
1567
|
-
interface FlexeRetailFulfillmentData {
|
|
1568
|
-
readonly id: string;
|
|
1569
|
-
readonly purchase_order_uuid: string;
|
|
1570
|
-
readonly status: string;
|
|
1571
|
-
}
|
|
1572
|
-
|
|
1573
|
-
interface FlexeRetailFulfillmentErrors {
|
|
1574
|
-
readonly type: string;
|
|
1575
|
-
readonly message: string;
|
|
1576
|
-
}
|
|
1577
|
-
|
|
1578
|
-
interface FlexeRetailFulfillmentForm {
|
|
1579
|
-
readonly reservation_id: number;
|
|
1580
|
-
readonly client_request_id?: string;
|
|
1581
|
-
readonly request: io.flow.flexe.v0.models.RetailOrder;
|
|
1582
|
-
}
|
|
1583
|
-
|
|
1584
|
-
interface FulfillmentOrderDetails {
|
|
1585
|
-
readonly shipment_uuid: string;
|
|
1586
|
-
readonly carrier?: string;
|
|
1587
|
-
readonly carrier_id?: string;
|
|
1588
|
-
}
|
|
1589
|
-
|
|
1590
|
-
interface Gs1Us {
|
|
1591
|
-
readonly number: string;
|
|
1592
|
-
readonly ship_to?: io.flow.flexe.v0.models.Gs1UsShipTo;
|
|
1593
|
-
readonly bill_to?: io.flow.flexe.v0.models.BillTo;
|
|
1594
|
-
}
|
|
1595
|
-
|
|
1596
|
-
interface Gs1UsShipTo {
|
|
1597
|
-
readonly cid_number?: string;
|
|
1598
|
-
readonly location_number?: string;
|
|
1599
|
-
readonly free_on_board?: boolean;
|
|
1600
|
-
}
|
|
1601
|
-
|
|
1602
|
-
interface Inventory {
|
|
1603
|
-
readonly url: string;
|
|
1604
|
-
readonly client_request_id: string;
|
|
1605
|
-
readonly generated_at: string;
|
|
1606
|
-
readonly data: Record<string, io.flow.flexe.v0.models.InventoryDetails>;
|
|
1607
|
-
}
|
|
1608
|
-
|
|
1609
|
-
interface InventoryCount {
|
|
1610
|
-
readonly amount: number;
|
|
1611
|
-
readonly unit: string;
|
|
1612
|
-
}
|
|
1613
|
-
|
|
1614
|
-
interface InventoryData {
|
|
1615
|
-
readonly pallet: io.flow.flexe.v0.models.InventoryCount;
|
|
1616
|
-
readonly carton?: io.flow.flexe.v0.models.InventoryCount;
|
|
1617
|
-
readonly each?: io.flow.flexe.v0.models.InventoryCount;
|
|
1618
|
-
}
|
|
1619
|
-
|
|
1620
|
-
interface InventoryDetails {
|
|
1621
|
-
readonly key: Record<string, io.flow.flexe.v0.models.Sku>;
|
|
1622
|
-
}
|
|
1623
|
-
|
|
1624
|
-
interface LadingQuantity {
|
|
1625
|
-
readonly num_pallets: number;
|
|
1626
|
-
}
|
|
1627
|
-
|
|
1628
|
-
interface Order {
|
|
1629
|
-
readonly shipment_uuid: string;
|
|
1630
|
-
readonly purchase_order: string;
|
|
1631
|
-
readonly carrier: string;
|
|
1632
|
-
readonly service_type: string;
|
|
1633
|
-
readonly carrier_assigned_id: string;
|
|
1634
|
-
readonly name: string;
|
|
1635
|
-
readonly address_1: string;
|
|
1636
|
-
readonly address_2?: string;
|
|
1637
|
-
readonly address_3?: string;
|
|
1638
|
-
readonly city: string;
|
|
1639
|
-
readonly state: string;
|
|
1640
|
-
readonly postal_code: string;
|
|
1641
|
-
readonly phone?: string;
|
|
1642
|
-
readonly instructions?: string;
|
|
1643
|
-
readonly inventory_data: io.flow.flexe.v0.models.FlexeInventoryData[];
|
|
1644
|
-
readonly attachments: io.flow.flexe.v0.models.FlexeAttachment[];
|
|
1645
|
-
}
|
|
1646
|
-
|
|
1647
|
-
interface Orders {
|
|
1648
|
-
readonly orders: io.flow.flexe.v0.models.Order[];
|
|
1649
|
-
}
|
|
1650
|
-
|
|
1651
|
-
interface Pallet {
|
|
1652
|
-
readonly pallet_id: string;
|
|
1653
|
-
readonly sku: string;
|
|
1654
|
-
readonly quantity: number;
|
|
1655
|
-
readonly packaging: string;
|
|
1656
|
-
}
|
|
1657
|
-
|
|
1658
|
-
interface PurchaseOrder {
|
|
1659
|
-
readonly retail_fulfillment_order_id: string;
|
|
1660
|
-
readonly bill_of_lading_number: string;
|
|
1661
|
-
readonly purchase_order_uuid: string;
|
|
1662
|
-
readonly pickup_window_start: string;
|
|
1663
|
-
readonly pickup_window_end: string;
|
|
1664
|
-
readonly tags: string[];
|
|
1665
|
-
}
|
|
1666
|
-
|
|
1667
|
-
interface QuantityByInventory {
|
|
1668
|
-
readonly received: io.flow.flexe.v0.models.InventoryData;
|
|
1669
|
-
readonly expected?: io.flow.flexe.v0.models.InventoryData;
|
|
1670
|
-
readonly damaged?: io.flow.flexe.v0.models.InventoryData;
|
|
1671
|
-
}
|
|
1672
|
-
|
|
1673
|
-
interface ReceiptNotification {
|
|
1674
|
-
readonly shipment_id: string;
|
|
1675
|
-
readonly shipment_type: io.flow.flexe.v0.enums.FlexeShipmentType;
|
|
1676
|
-
readonly reservation_id: string;
|
|
1677
|
-
readonly status: io.flow.flexe.v0.enums.FlexeStatus;
|
|
1678
|
-
readonly delivery_details?: io.flow.flexe.v0.models.DeliveryDetails;
|
|
1679
|
-
readonly container_delivery_details?: io.flow.flexe.v0.models.ContainerDeliveryDetails;
|
|
1680
|
-
}
|
|
1681
|
-
|
|
1682
|
-
interface RetailFulfillmentOrderDetails {
|
|
1683
|
-
readonly master_bill_of_lading_number: string;
|
|
1684
|
-
readonly scac: string;
|
|
1685
|
-
readonly pro_number: string;
|
|
1686
|
-
readonly purchase_orders: io.flow.flexe.v0.models.PurchaseOrder[];
|
|
1687
|
-
readonly lading_quantity: io.flow.flexe.v0.models.LadingQuantity;
|
|
1688
|
-
}
|
|
1689
|
-
|
|
1690
|
-
interface RetailInventoryData {
|
|
1691
|
-
readonly sku: string;
|
|
1692
|
-
readonly quantity: number;
|
|
1693
|
-
readonly unit: string;
|
|
1694
|
-
readonly attachments?: io.flow.flexe.v0.models.FlexeRetailAttachment[];
|
|
1695
|
-
}
|
|
1696
|
-
|
|
1697
|
-
interface RetailOrder {
|
|
1698
|
-
readonly order: io.flow.flexe.v0.models.RetailOrderData;
|
|
1699
|
-
}
|
|
1700
|
-
|
|
1701
|
-
interface RetailOrderData {
|
|
1702
|
-
readonly purchase_order_uuid: string;
|
|
1703
|
-
readonly bill_of_lading: io.flow.flexe.v0.models.BillOfLading;
|
|
1704
|
-
readonly inventory_data: io.flow.flexe.v0.models.RetailInventoryData[];
|
|
1705
|
-
readonly ship_within: io.flow.flexe.v0.models.ShipWithin;
|
|
1706
|
-
readonly ship_to: io.flow.flexe.v0.models.ShipTo;
|
|
1707
|
-
readonly build_by?: string;
|
|
1708
|
-
readonly instrunctions?: string;
|
|
1709
|
-
readonly routing_details_id?: string;
|
|
1710
|
-
readonly destination_type?: string;
|
|
1711
|
-
}
|
|
1712
|
-
|
|
1713
|
-
interface ShipTo {
|
|
1714
|
-
readonly name: string;
|
|
1715
|
-
readonly address_1: string;
|
|
1716
|
-
readonly locality: string;
|
|
1717
|
-
readonly region: string;
|
|
1718
|
-
readonly postal_code: string;
|
|
1719
|
-
readonly country: string;
|
|
1720
|
-
readonly address_2?: string;
|
|
1721
|
-
readonly address_3?: string;
|
|
1722
|
-
}
|
|
1723
|
-
|
|
1724
|
-
interface ShipWithin {
|
|
1725
|
-
readonly start: string;
|
|
1726
|
-
readonly end: string;
|
|
1727
|
-
}
|
|
1728
|
-
|
|
1729
|
-
interface ShipmentDeliveryDetails {
|
|
1730
|
-
readonly shipment_uuid?: string;
|
|
1731
|
-
}
|
|
1732
|
-
|
|
1733
|
-
interface ShipmentNotification {
|
|
1734
|
-
readonly shipment_id: string;
|
|
1735
|
-
readonly shipment_type: io.flow.flexe.v0.enums.FlexeShipmentType;
|
|
1736
|
-
readonly reservation_id: string;
|
|
1737
|
-
readonly status: io.flow.flexe.v0.enums.FlexeStatus;
|
|
1738
|
-
readonly fulfillment_order_details?: io.flow.flexe.v0.models.FulfillmentOrderDetails;
|
|
1739
|
-
readonly retail_fulfillment_order_details?: io.flow.flexe.v0.models.RetailFulfillmentOrderDetails;
|
|
1740
|
-
readonly delivery_details?: io.flow.flexe.v0.models.ShipmentDeliveryDetails;
|
|
1741
|
-
readonly carton_pick_delivery_details?: io.flow.flexe.v0.models.CartonPickDeliveryDetails;
|
|
1742
|
-
}
|
|
1743
|
-
|
|
1744
|
-
interface Sku {
|
|
1745
|
-
readonly sku: string;
|
|
1746
|
-
readonly description: string;
|
|
1747
|
-
readonly summary: Record<string, io.flow.flexe.v0.models.SkuSummary>;
|
|
1748
|
-
}
|
|
1749
|
-
|
|
1750
|
-
interface SkuSummary {
|
|
1751
|
-
readonly key: string;
|
|
1752
|
-
readonly quantity: number;
|
|
1753
|
-
readonly unit: string;
|
|
1754
|
-
}
|
|
1755
|
-
}
|
|
1756
|
-
|
|
1757
1463
|
declare namespace io.flow.payment.v0.enums {
|
|
1758
1464
|
type AddressVerificationResultFieldCode =
|
|
1759
1465
|
| 'matched'
|
|
@@ -3957,6 +3663,13 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
3957
3663
|
readonly transfer_group?: string;
|
|
3958
3664
|
}
|
|
3959
3665
|
|
|
3666
|
+
interface PaymentIntents {
|
|
3667
|
+
readonly object: string;
|
|
3668
|
+
readonly data: io.flow.stripe.v0.models.PaymentIntent[];
|
|
3669
|
+
readonly has_more: boolean;
|
|
3670
|
+
readonly url?: string;
|
|
3671
|
+
}
|
|
3672
|
+
|
|
3960
3673
|
interface PaymentMethod {
|
|
3961
3674
|
readonly id: string;
|
|
3962
3675
|
readonly object: string;
|
|
@@ -5243,6 +4956,16 @@ declare namespace io.flow.external.paypal.v1.enums {
|
|
|
5243
4956
|
| 'CUSTOMER_NOT_PRESENT_ONETIME_PURCHASE_VAULTED';
|
|
5244
4957
|
type ProductReceived = 'YES' | 'NO' | 'RETURNED';
|
|
5245
4958
|
type RefundState = 'pending' | 'completed' | 'cancelled' | 'failed';
|
|
4959
|
+
type ReportingBalanceAffectingRecordsOnly = 'Y' | 'N';
|
|
4960
|
+
type ReportingTransactionField =
|
|
4961
|
+
| 'transaction_info'
|
|
4962
|
+
| 'payer_info'
|
|
4963
|
+
| 'shipping_info'
|
|
4964
|
+
| 'auction_info'
|
|
4965
|
+
| 'cart_info'
|
|
4966
|
+
| 'incentive_info'
|
|
4967
|
+
| 'store_info';
|
|
4968
|
+
type ReportingTransactionStatus = 'D' | 'P' | 'S' | 'V';
|
|
5246
4969
|
type ReturnAcknowledgementType =
|
|
5247
4970
|
| 'ITEM_RECEIVED'
|
|
5248
4971
|
| 'ITEM_NOT_RECEIVED'
|
|
@@ -5665,6 +5388,31 @@ declare namespace io.flow.external.paypal.v1.models {
|
|
|
5665
5388
|
readonly invoice_number: string;
|
|
5666
5389
|
}
|
|
5667
5390
|
|
|
5391
|
+
interface ReportingTransaction {
|
|
5392
|
+
readonly transaction_details: io.flow.external.paypal.v1.models.ReportingTransactionDetails[];
|
|
5393
|
+
readonly links: io.flow.external.paypal.v1.models.Link[];
|
|
5394
|
+
}
|
|
5395
|
+
|
|
5396
|
+
interface ReportingTransactionDetails {
|
|
5397
|
+
readonly transaction_info: io.flow.external.paypal.v1.models.ReportingTransactionInfo;
|
|
5398
|
+
}
|
|
5399
|
+
|
|
5400
|
+
interface ReportingTransactionInfo {
|
|
5401
|
+
readonly paypal_account_id?: string;
|
|
5402
|
+
readonly transaction_id?: string;
|
|
5403
|
+
readonly paypal_reference_id?: string;
|
|
5404
|
+
readonly paypal_reference_id_type?: string;
|
|
5405
|
+
readonly transaction_event_code: string;
|
|
5406
|
+
readonly transaction_initiation_date: string;
|
|
5407
|
+
readonly transaction_updated_date: string;
|
|
5408
|
+
readonly transaction_status: io.flow.external.paypal.v1.enums.ReportingTransactionStatus;
|
|
5409
|
+
readonly transaction_subject?: string;
|
|
5410
|
+
readonly invoice_id: string;
|
|
5411
|
+
readonly custom_field?: string;
|
|
5412
|
+
readonly protection_eligibility?: string;
|
|
5413
|
+
readonly instrument_type?: string;
|
|
5414
|
+
}
|
|
5415
|
+
|
|
5668
5416
|
interface ReturnDetails {
|
|
5669
5417
|
readonly return_time?: string;
|
|
5670
5418
|
readonly mode?: io.flow.external.paypal.v1.enums.ReturnMode;
|
|
@@ -6556,6 +6304,56 @@ declare namespace io.flow.adyen.v0.enums {
|
|
|
6556
6304
|
| 'visa'
|
|
6557
6305
|
| 'wechatpay'
|
|
6558
6306
|
| 'unknowncard';
|
|
6307
|
+
type PaymentRecordType =
|
|
6308
|
+
| 'Authorised'
|
|
6309
|
+
| 'AuthorisedPending'
|
|
6310
|
+
| 'Cancelled'
|
|
6311
|
+
| 'CaptureFailed'
|
|
6312
|
+
| 'Chargeback'
|
|
6313
|
+
| 'SecondChargeback'
|
|
6314
|
+
| 'ChargebackExternally'
|
|
6315
|
+
| 'ChargebackExternallyWithInfo'
|
|
6316
|
+
| 'ChargebackReversed'
|
|
6317
|
+
| 'ChargebackReversedExternallyWithInfo'
|
|
6318
|
+
| 'Error'
|
|
6319
|
+
| 'Expired'
|
|
6320
|
+
| 'PaidOut'
|
|
6321
|
+
| 'PaidOutExternally'
|
|
6322
|
+
| 'PaidOutExternallyWithInfo'
|
|
6323
|
+
| 'PaidOutReversed'
|
|
6324
|
+
| 'PayoutAuthorised'
|
|
6325
|
+
| 'PayoutError'
|
|
6326
|
+
| 'PayoutFailed'
|
|
6327
|
+
| 'Received'
|
|
6328
|
+
| 'ReceivedPayout'
|
|
6329
|
+
| 'RefundAuthorised'
|
|
6330
|
+
| 'Refunded'
|
|
6331
|
+
| 'RefundedBulk'
|
|
6332
|
+
| 'RefundedExternally'
|
|
6333
|
+
| 'RefundedExternallyWithInfo'
|
|
6334
|
+
| 'RefundFailed'
|
|
6335
|
+
| 'RefundedInInstallments'
|
|
6336
|
+
| 'RefundedInstallment'
|
|
6337
|
+
| 'RefundedReversed'
|
|
6338
|
+
| 'RefundNotProcessed'
|
|
6339
|
+
| 'Refused'
|
|
6340
|
+
| 'RefusedPayout'
|
|
6341
|
+
| 'Retried'
|
|
6342
|
+
| 'SentForPayout'
|
|
6343
|
+
| 'SentForRefund'
|
|
6344
|
+
| 'SentForSettle'
|
|
6345
|
+
| 'Settled'
|
|
6346
|
+
| 'SettledBulk'
|
|
6347
|
+
| 'SettledExternally'
|
|
6348
|
+
| 'SettledExternallyWithInfo'
|
|
6349
|
+
| 'SettledInInstallments'
|
|
6350
|
+
| 'SettledInstallment'
|
|
6351
|
+
| 'SettledReversed'
|
|
6352
|
+
| 'SuspendInstallment'
|
|
6353
|
+
| 'AdvancedInstallment'
|
|
6354
|
+
| 'AdvancedInstallmentCancelled'
|
|
6355
|
+
| 'OpenInstallment'
|
|
6356
|
+
| 'CloseInstallment';
|
|
6559
6357
|
type RecurringProcessingModel =
|
|
6560
6358
|
| 'Subscription'
|
|
6561
6359
|
| 'CardOnFile'
|
|
@@ -6718,9 +6516,9 @@ declare namespace io.flow.adyen.v0.models {
|
|
|
6718
6516
|
}
|
|
6719
6517
|
|
|
6720
6518
|
interface ChargebackNotificationAdditionalData {
|
|
6721
|
-
readonly chargebackReasonCode
|
|
6519
|
+
readonly chargebackReasonCode?: string;
|
|
6722
6520
|
readonly modificationMerchantReferences: string;
|
|
6723
|
-
readonly chargebackSchemeCode
|
|
6521
|
+
readonly chargebackSchemeCode?: string;
|
|
6724
6522
|
readonly defensePeriodEndsAt?: string;
|
|
6725
6523
|
readonly disputeStatus?: io.flow.adyen.v0.enums.DisputeStatus;
|
|
6726
6524
|
readonly defendable?: string;
|
|
@@ -9224,7 +9022,6 @@ declare namespace io.flow.channel.internal.v0.models {
|
|
|
9224
9022
|
}
|
|
9225
9023
|
|
|
9226
9024
|
interface OrderEditSummary {
|
|
9227
|
-
readonly external_order_edit_reference: string;
|
|
9228
9025
|
readonly edited_at: string;
|
|
9229
9026
|
}
|
|
9230
9027
|
}
|
|
@@ -10136,19 +9933,6 @@ declare namespace io.flow.shopify.markets.internal.event.v0.models {
|
|
|
10136
9933
|
readonly shopify_markets_order: io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsOrder;
|
|
10137
9934
|
}
|
|
10138
9935
|
|
|
10139
|
-
interface ShopifyMarketsOrderEditSummaryData {
|
|
10140
|
-
readonly channel_order_acceptance: io.flow.channel.internal.v0.models.ChannelOrderAcceptance;
|
|
10141
|
-
readonly edited_at: string;
|
|
10142
|
-
}
|
|
10143
|
-
|
|
10144
|
-
interface ShopifyMarketsOrderEditSummaryPublished {
|
|
10145
|
-
readonly discriminator: 'shopify_markets_order_edit_summary_published';
|
|
10146
|
-
readonly event_id: string;
|
|
10147
|
-
readonly timestamp: string;
|
|
10148
|
-
readonly organization: string;
|
|
10149
|
-
readonly data: io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsOrderEditSummaryData;
|
|
10150
|
-
}
|
|
10151
|
-
|
|
10152
9936
|
interface ShopifyMarketsOrderUpserted {
|
|
10153
9937
|
readonly discriminator: 'shopify_markets_order_upserted';
|
|
10154
9938
|
readonly event_id: string;
|
|
@@ -10242,7 +10026,6 @@ declare namespace io.flow.shopify.markets.internal.event.v0.unions {
|
|
|
10242
10026
|
| io.flow.shopify.markets.internal.event.v0.models.OrderTaxAndDutyInclusivitySettingDeleted
|
|
10243
10027
|
| io.flow.shopify.markets.internal.event.v0.models.ShopifyProductBundleUpserted
|
|
10244
10028
|
| io.flow.shopify.markets.internal.event.v0.models.ShopifyProductBundleDeleted
|
|
10245
|
-
| io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsOrderEditSummaryPublished
|
|
10246
10029
|
| io.flow.shopify.markets.internal.event.v0.models.ShopifyIncotermSummaryErrorPublished
|
|
10247
10030
|
| io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsBestSellingProductUpserted
|
|
10248
10031
|
| io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsBestSellingProductDeleted;
|
|
@@ -12113,30 +11896,6 @@ declare namespace io.flow.catalog.exclusion.v0.models {
|
|
|
12113
11896
|
}
|
|
12114
11897
|
}
|
|
12115
11898
|
|
|
12116
|
-
declare namespace io.flow.session.context.v0.models {
|
|
12117
|
-
interface Context {
|
|
12118
|
-
readonly id: string;
|
|
12119
|
-
readonly experiments: io.flow.session.context.v0.models.SessionContextExperiment[];
|
|
12120
|
-
}
|
|
12121
|
-
|
|
12122
|
-
interface ContextForm {
|
|
12123
|
-
readonly experiments: io.flow.session.context.v0.models.SessionContextExperiment[];
|
|
12124
|
-
}
|
|
12125
|
-
|
|
12126
|
-
interface ContextReference {
|
|
12127
|
-
readonly id: string;
|
|
12128
|
-
}
|
|
12129
|
-
|
|
12130
|
-
interface ExperimentVariant {
|
|
12131
|
-
readonly key: string;
|
|
12132
|
-
}
|
|
12133
|
-
|
|
12134
|
-
interface SessionContextExperiment {
|
|
12135
|
-
readonly key: string;
|
|
12136
|
-
readonly variant?: io.flow.session.context.v0.models.ExperimentVariant;
|
|
12137
|
-
}
|
|
12138
|
-
}
|
|
12139
|
-
|
|
12140
11899
|
declare namespace io.flow.crypto.v0.enums {
|
|
12141
11900
|
type ErrorType =
|
|
12142
11901
|
| 'authentication_error'
|
|
@@ -12759,6 +12518,7 @@ declare namespace io.flow.tracking.v0.models {
|
|
|
12759
12518
|
readonly timestamp: string;
|
|
12760
12519
|
readonly description?: string;
|
|
12761
12520
|
readonly aggregator_status_code?: string;
|
|
12521
|
+
readonly created_at?: string;
|
|
12762
12522
|
}
|
|
12763
12523
|
|
|
12764
12524
|
interface TrackingEventForm {
|
|
@@ -15911,7 +15671,6 @@ declare namespace io.flow.session.v0.models {
|
|
|
15911
15671
|
readonly language: io.flow.reference.v0.models.Language;
|
|
15912
15672
|
readonly locale: io.flow.reference.v0.models.Locale;
|
|
15913
15673
|
readonly experience: io.flow.experience.v0.models.ExperienceGeo;
|
|
15914
|
-
readonly experiment?: io.flow.session.v0.models.SessionExperiment;
|
|
15915
15674
|
}
|
|
15916
15675
|
|
|
15917
15676
|
interface OrganizationSession {
|
|
@@ -15927,8 +15686,6 @@ declare namespace io.flow.session.v0.models {
|
|
|
15927
15686
|
readonly geo?: io.flow.session.v0.models.SessionGeo;
|
|
15928
15687
|
readonly experience?: io.flow.experience.v0.models.ExperienceGeo;
|
|
15929
15688
|
readonly format?: io.flow.session.v0.models.SessionFormat;
|
|
15930
|
-
readonly experiment?: io.flow.session.v0.models.SessionExperiment;
|
|
15931
|
-
readonly context?: io.flow.session.context.v0.models.ContextReference;
|
|
15932
15689
|
}
|
|
15933
15690
|
|
|
15934
15691
|
interface OrganizationSessionAuthorization {
|
|
@@ -15946,25 +15703,6 @@ declare namespace io.flow.session.v0.models {
|
|
|
15946
15703
|
readonly label_formatters: io.flow.common.v0.enums.CurrencyLabelFormatter[];
|
|
15947
15704
|
}
|
|
15948
15705
|
|
|
15949
|
-
interface SessionExperiment {
|
|
15950
|
-
readonly key: string;
|
|
15951
|
-
readonly variant?: io.flow.session.v0.models.SessionExperimentVariant;
|
|
15952
|
-
}
|
|
15953
|
-
|
|
15954
|
-
interface SessionExperimentForm {
|
|
15955
|
-
readonly key: string;
|
|
15956
|
-
readonly variant?: io.flow.session.v0.models.SessionExperimentVariantForm;
|
|
15957
|
-
}
|
|
15958
|
-
|
|
15959
|
-
interface SessionExperimentVariant {
|
|
15960
|
-
readonly key: string;
|
|
15961
|
-
readonly name: string;
|
|
15962
|
-
}
|
|
15963
|
-
|
|
15964
|
-
interface SessionExperimentVariantForm {
|
|
15965
|
-
readonly key: string;
|
|
15966
|
-
}
|
|
15967
|
-
|
|
15968
15706
|
interface SessionExpirationConfig {
|
|
15969
15707
|
readonly unit: io.flow.common.v0.enums.UnitOfTime;
|
|
15970
15708
|
readonly value: number;
|
|
@@ -16058,207 +15796,6 @@ declare namespace io.flow.billing.bank.account.v0.unions {
|
|
|
16058
15796
|
| io.flow.billing.bank.account.v0.models.BankAccountInfoIta;
|
|
16059
15797
|
}
|
|
16060
15798
|
|
|
16061
|
-
declare namespace io.flow.experiment.internal.v0.enums {
|
|
16062
|
-
type ExperimentDiscriminatorKey = 'experience' | 'feature';
|
|
16063
|
-
type Scope = 'organization' | 'global';
|
|
16064
|
-
type SignificanceAction =
|
|
16065
|
-
| 'end_and_implement_winner'
|
|
16066
|
-
| 'end_and_revert'
|
|
16067
|
-
| 'do_nothing';
|
|
16068
|
-
type Status = 'draft' | 'scheduled' | 'live' | 'ended' | 'archived';
|
|
16069
|
-
type TimeseriesType = 'daily' | 'weekly' | 'monthly' | 'yearly';
|
|
16070
|
-
}
|
|
16071
|
-
|
|
16072
|
-
declare namespace io.flow.experiment.internal.v0.models {
|
|
16073
|
-
interface DailyExperimentResults {
|
|
16074
|
-
readonly id: string;
|
|
16075
|
-
readonly day: string;
|
|
16076
|
-
readonly experiment_key: string;
|
|
16077
|
-
readonly experiment_variant_key: string;
|
|
16078
|
-
readonly visitor_count: number;
|
|
16079
|
-
readonly visitors_with_transactions_count: number;
|
|
16080
|
-
readonly conversion_rate: number;
|
|
16081
|
-
readonly lower_bound: number;
|
|
16082
|
-
readonly upper_bound: number;
|
|
16083
|
-
readonly probability_of_being_best?: number;
|
|
16084
|
-
readonly currency?: string;
|
|
16085
|
-
readonly average_order_value?: number;
|
|
16086
|
-
readonly revenue_generated?: number;
|
|
16087
|
-
readonly total_order_count?: number;
|
|
16088
|
-
readonly conversion_rate_uplift?: number;
|
|
16089
|
-
readonly average_order_value_uplift?: number;
|
|
16090
|
-
readonly revenue_generated_uplift?: number;
|
|
16091
|
-
}
|
|
16092
|
-
|
|
16093
|
-
interface ExperienceExperiment {
|
|
16094
|
-
readonly discriminator: 'experience';
|
|
16095
|
-
readonly id: string;
|
|
16096
|
-
readonly key: string;
|
|
16097
|
-
readonly name: string;
|
|
16098
|
-
readonly description?: string;
|
|
16099
|
-
readonly status: io.flow.experiment.internal.v0.enums.Status;
|
|
16100
|
-
readonly emails: string[];
|
|
16101
|
-
readonly started_at?: string;
|
|
16102
|
-
readonly ended_at?: string;
|
|
16103
|
-
readonly variants: io.flow.experiment.internal.v0.models.ExperienceVariant[];
|
|
16104
|
-
readonly transitions?: io.flow.experiment.internal.v0.enums.Status[];
|
|
16105
|
-
readonly significance_action?: io.flow.experiment.internal.v0.enums.SignificanceAction;
|
|
16106
|
-
}
|
|
16107
|
-
|
|
16108
|
-
interface ExperienceVariant {
|
|
16109
|
-
readonly discriminator: 'experience_variant';
|
|
16110
|
-
readonly experience: io.flow.experiment.internal.v0.models.ExperienceVariantSummary;
|
|
16111
|
-
readonly traffic_percentage: number;
|
|
16112
|
-
readonly experiment_results?: io.flow.experiment.internal.v0.models.ExperimentResults;
|
|
16113
|
-
}
|
|
16114
|
-
|
|
16115
|
-
interface ExperienceVariantForm {
|
|
16116
|
-
readonly discriminator: 'experience';
|
|
16117
|
-
readonly key: string;
|
|
16118
|
-
readonly traffic_percentage: number;
|
|
16119
|
-
}
|
|
16120
|
-
|
|
16121
|
-
interface ExperienceVariantSummary {
|
|
16122
|
-
readonly key: string;
|
|
16123
|
-
readonly name?: string;
|
|
16124
|
-
}
|
|
16125
|
-
|
|
16126
|
-
interface ExperimentForm {
|
|
16127
|
-
readonly name: string;
|
|
16128
|
-
readonly description?: string;
|
|
16129
|
-
readonly emails: string[];
|
|
16130
|
-
readonly variants: io.flow.experiment.internal.v0.unions.VariantForm[];
|
|
16131
|
-
readonly significance_action?: io.flow.experiment.internal.v0.enums.SignificanceAction;
|
|
16132
|
-
readonly session_query?: string;
|
|
16133
|
-
}
|
|
16134
|
-
|
|
16135
|
-
interface ExperimentFormDefault {
|
|
16136
|
-
readonly discriminator: io.flow.experiment.internal.v0.models.ExperimentFormDefaultDiscriminator;
|
|
16137
|
-
readonly variants?: io.flow.experiment.internal.v0.models.ExperimentFormDefaultVariant[];
|
|
16138
|
-
}
|
|
16139
|
-
|
|
16140
|
-
interface ExperimentFormDefaultDiscriminator {
|
|
16141
|
-
readonly key: io.flow.experiment.internal.v0.enums.ExperimentDiscriminatorKey;
|
|
16142
|
-
readonly values: io.flow.experiment.internal.v0.models.ExperimentFormDefaultDiscriminatorValue[];
|
|
16143
|
-
}
|
|
16144
|
-
|
|
16145
|
-
interface ExperimentFormDefaultDiscriminatorValue {
|
|
16146
|
-
readonly key: string;
|
|
16147
|
-
readonly name: string;
|
|
16148
|
-
readonly scope: io.flow.experiment.internal.v0.enums.Scope;
|
|
16149
|
-
}
|
|
16150
|
-
|
|
16151
|
-
interface ExperimentFormDefaultVariant {
|
|
16152
|
-
readonly key: string;
|
|
16153
|
-
readonly name: string;
|
|
16154
|
-
readonly traffic_percentage?: number;
|
|
16155
|
-
}
|
|
16156
|
-
|
|
16157
|
-
interface ExperimentMilestone {
|
|
16158
|
-
readonly id: string;
|
|
16159
|
-
readonly experiment: io.flow.experiment.internal.v0.models.ExperimentReference;
|
|
16160
|
-
readonly timestamp: string;
|
|
16161
|
-
readonly description: string;
|
|
16162
|
-
}
|
|
16163
|
-
|
|
16164
|
-
interface ExperimentMilestoneForm {
|
|
16165
|
-
readonly timestamp?: string;
|
|
16166
|
-
readonly description: string;
|
|
16167
|
-
}
|
|
16168
|
-
|
|
16169
|
-
interface ExperimentReference {
|
|
16170
|
-
readonly key: string;
|
|
16171
|
-
}
|
|
16172
|
-
|
|
16173
|
-
interface ExperimentResults {
|
|
16174
|
-
readonly id: string;
|
|
16175
|
-
readonly experiment_key: string;
|
|
16176
|
-
readonly experiment_variant_key: string;
|
|
16177
|
-
readonly visitor_count: number;
|
|
16178
|
-
readonly visitors_with_transactions_count: number;
|
|
16179
|
-
readonly conversion_rate: number;
|
|
16180
|
-
readonly lower_bound: number;
|
|
16181
|
-
readonly upper_bound: number;
|
|
16182
|
-
readonly probability_of_being_best?: number;
|
|
16183
|
-
readonly currency?: string;
|
|
16184
|
-
readonly average_order_value?: number;
|
|
16185
|
-
readonly revenue_generated?: number;
|
|
16186
|
-
readonly total_order_count?: number;
|
|
16187
|
-
readonly conversion_rate_uplift?: number;
|
|
16188
|
-
readonly average_order_value_uplift?: number;
|
|
16189
|
-
readonly revenue_generated_uplift?: number;
|
|
16190
|
-
}
|
|
16191
|
-
|
|
16192
|
-
interface ExperimentResultsWithTimestamp {
|
|
16193
|
-
readonly timestamp: string;
|
|
16194
|
-
readonly results: io.flow.experiment.internal.v0.models.ExperimentResults[];
|
|
16195
|
-
}
|
|
16196
|
-
|
|
16197
|
-
interface ExperimentSessionQueryForm {
|
|
16198
|
-
readonly session_query?: string;
|
|
16199
|
-
}
|
|
16200
|
-
|
|
16201
|
-
interface ExperimentVersion {
|
|
16202
|
-
readonly id: string;
|
|
16203
|
-
readonly timestamp: string;
|
|
16204
|
-
readonly type: io.flow.common.v0.enums.ChangeType;
|
|
16205
|
-
readonly experiment: io.flow.experiment.internal.v0.unions.Experiment;
|
|
16206
|
-
}
|
|
16207
|
-
|
|
16208
|
-
interface FeatureExperiment {
|
|
16209
|
-
readonly discriminator: 'feature';
|
|
16210
|
-
readonly id: string;
|
|
16211
|
-
readonly key: string;
|
|
16212
|
-
readonly name: string;
|
|
16213
|
-
readonly description?: string;
|
|
16214
|
-
readonly status: io.flow.experiment.internal.v0.enums.Status;
|
|
16215
|
-
readonly emails: string[];
|
|
16216
|
-
readonly scope: io.flow.experiment.internal.v0.enums.Scope;
|
|
16217
|
-
readonly started_at?: string;
|
|
16218
|
-
readonly ended_at?: string;
|
|
16219
|
-
readonly variants: io.flow.experiment.internal.v0.models.FeatureVariant[];
|
|
16220
|
-
readonly transitions?: io.flow.experiment.internal.v0.enums.Status[];
|
|
16221
|
-
readonly significance_action?: io.flow.experiment.internal.v0.enums.SignificanceAction;
|
|
16222
|
-
readonly session_query?: string;
|
|
16223
|
-
}
|
|
16224
|
-
|
|
16225
|
-
interface FeatureValueReference {
|
|
16226
|
-
readonly feature_key: string;
|
|
16227
|
-
readonly value: string;
|
|
16228
|
-
}
|
|
16229
|
-
|
|
16230
|
-
interface FeatureVariant {
|
|
16231
|
-
readonly discriminator: 'feature_variant';
|
|
16232
|
-
readonly value: io.flow.experiment.internal.v0.models.FeatureVariantSummary;
|
|
16233
|
-
readonly traffic_percentage: number;
|
|
16234
|
-
readonly experiment_results?: io.flow.experiment.internal.v0.models.ExperimentResults;
|
|
16235
|
-
}
|
|
16236
|
-
|
|
16237
|
-
interface FeatureVariantForm {
|
|
16238
|
-
readonly discriminator: 'feature';
|
|
16239
|
-
readonly key: string;
|
|
16240
|
-
readonly traffic_percentage: number;
|
|
16241
|
-
}
|
|
16242
|
-
|
|
16243
|
-
interface FeatureVariantSummary {
|
|
16244
|
-
readonly key: string;
|
|
16245
|
-
readonly feature_value: io.flow.experiment.internal.v0.models.FeatureValueReference;
|
|
16246
|
-
readonly name?: string;
|
|
16247
|
-
}
|
|
16248
|
-
}
|
|
16249
|
-
|
|
16250
|
-
declare namespace io.flow.experiment.internal.v0.unions {
|
|
16251
|
-
type Experiment =
|
|
16252
|
-
| io.flow.experiment.internal.v0.models.ExperienceExperiment
|
|
16253
|
-
| io.flow.experiment.internal.v0.models.FeatureExperiment;
|
|
16254
|
-
type Variant =
|
|
16255
|
-
| io.flow.experiment.internal.v0.models.ExperienceVariant
|
|
16256
|
-
| io.flow.experiment.internal.v0.models.FeatureVariant;
|
|
16257
|
-
type VariantForm =
|
|
16258
|
-
| io.flow.experiment.internal.v0.models.ExperienceVariantForm
|
|
16259
|
-
| io.flow.experiment.internal.v0.models.FeatureVariantForm;
|
|
16260
|
-
}
|
|
16261
|
-
|
|
16262
15799
|
declare namespace io.flow.internal.v0.enums {
|
|
16263
15800
|
type AccountPaymentHoldReason =
|
|
16264
15801
|
| 'fraudulent'
|
|
@@ -16272,6 +15809,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16272
15809
|
| 'hosted_payment_page'
|
|
16273
15810
|
| 'checkout_payments_api'
|
|
16274
15811
|
| 'classic_authorise_api';
|
|
15812
|
+
type AldoItemType = 'physical' | 'digital';
|
|
16275
15813
|
type AnyDangerousGoods = 'yes' | 'no' | 'i_dont_know';
|
|
16276
15814
|
type ApiCallReferenceId =
|
|
16277
15815
|
| 'duty_rates_data_event'
|
|
@@ -16430,9 +15968,6 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16430
15968
|
| 'accounts_with_payment_holds_count'
|
|
16431
15969
|
| 'accounts_with_payment_holds_pending_payment_promise_count'
|
|
16432
15970
|
| 'accounts_with_payment_holds_pending_payment_promise_total'
|
|
16433
|
-
| 'accounts_with_final_statements_count'
|
|
16434
|
-
| 'accounts_with_final_statements_pending_transaction_count'
|
|
16435
|
-
| 'accounts_with_final_statements_pending_transaction_total'
|
|
16436
15971
|
| 'edited_order_tax_amount_exceeding_transaction'
|
|
16437
15972
|
| 'edited_order_duty_amount_exceeding_transaction'
|
|
16438
15973
|
| 'negative_balance_scheduled_count'
|
|
@@ -16629,7 +16164,6 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16629
16164
|
| 'Age0_10'
|
|
16630
16165
|
| 'Age10_13'
|
|
16631
16166
|
| 'Age13_14';
|
|
16632
|
-
type ColmItemType = 'physical' | 'digital';
|
|
16633
16167
|
type Company = 'globale' | 'flow';
|
|
16634
16168
|
type ComplianceType = 'weee';
|
|
16635
16169
|
type ContentElementType = 'markdown' | 'html' | 'plain_text' | 'href';
|
|
@@ -16687,6 +16221,8 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16687
16221
|
type EventType =
|
|
16688
16222
|
| 'adjusted_estimates_upserted'
|
|
16689
16223
|
| 'adjusted_estimates_deleted'
|
|
16224
|
+
| 'final_estimate_upserted'
|
|
16225
|
+
| 'final_estimate_deleted'
|
|
16690
16226
|
| 'adyen_authorization_deleted'
|
|
16691
16227
|
| 'adyen_authorization_upserted'
|
|
16692
16228
|
| 'adyen_cancel_deleted'
|
|
@@ -16697,6 +16233,8 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16697
16233
|
| 'adyen_refund_upserted'
|
|
16698
16234
|
| 'adyen_dispute_upserted'
|
|
16699
16235
|
| 'adyen_dispute_deleted'
|
|
16236
|
+
| 'aldo_item_upserted'
|
|
16237
|
+
| 'aldo_item_deleted'
|
|
16700
16238
|
| 'fulfillment_upserted'
|
|
16701
16239
|
| 'fulfillment_deleted'
|
|
16702
16240
|
| 'merchant_upserted'
|
|
@@ -16792,8 +16330,6 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16792
16330
|
| 'customer_purge_upserted'
|
|
16793
16331
|
| 'customs_description_import'
|
|
16794
16332
|
| 'customs_description_tariffs_import'
|
|
16795
|
-
| 'item_dimension_estimate_upserted_v2'
|
|
16796
|
-
| 'item_dimension_estimate_deleted_v2'
|
|
16797
16333
|
| 'dispute_upserted'
|
|
16798
16334
|
| 'dispute_deleted'
|
|
16799
16335
|
| 'duty_rates_published_v2'
|
|
@@ -16933,6 +16469,8 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16933
16469
|
| 'unassigned_merchant_guid_deleted'
|
|
16934
16470
|
| 'partner_tracking_subscription_upserted'
|
|
16935
16471
|
| 'partner_tracking_subscription_deleted'
|
|
16472
|
+
| 'spp_tracker_update_request_upserted'
|
|
16473
|
+
| 'spp_tracker_update_request_deleted'
|
|
16936
16474
|
| 'internal_authorization_upserted'
|
|
16937
16475
|
| 'internal_authorization_deleted'
|
|
16938
16476
|
| 'afterpay_authorization_upserted'
|
|
@@ -17009,7 +16547,6 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
17009
16547
|
| 'order_tax_and_duty_inclusivity_setting_deleted'
|
|
17010
16548
|
| 'shopify_product_bundle_upserted'
|
|
17011
16549
|
| 'shopify_product_bundle_deleted'
|
|
17012
|
-
| 'shopify_markets_order_edit_summary_published'
|
|
17013
16550
|
| 'shopify_incoterm_summary_error_published'
|
|
17014
16551
|
| 'shopify_markets_best_selling_product_upserted'
|
|
17015
16552
|
| 'shopify_markets_best_selling_product_deleted'
|
|
@@ -17487,6 +17024,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
17487
17024
|
type SimpleRoundingStrategy = 'no_rounding' | 'currency_precision';
|
|
17488
17025
|
type SnoozeNextActionWith = 'customer_service' | 'engineering';
|
|
17489
17026
|
type SnoozeSourceType = 'task' | 'invariant';
|
|
17027
|
+
type SourceTypeFilter = 'organization' | 'channel';
|
|
17490
17028
|
type StatementStatus =
|
|
17491
17029
|
| 'created'
|
|
17492
17030
|
| 'no_transactions'
|
|
@@ -18254,6 +17792,41 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18254
17792
|
readonly afterpay_refund: io.flow.internal.v0.models.AfterpayRefund;
|
|
18255
17793
|
}
|
|
18256
17794
|
|
|
17795
|
+
interface AftershipWebhook {
|
|
17796
|
+
readonly placeholder?: boolean;
|
|
17797
|
+
}
|
|
17798
|
+
|
|
17799
|
+
interface AldoItem {
|
|
17800
|
+
readonly id: string;
|
|
17801
|
+
readonly number: string;
|
|
17802
|
+
readonly amount: io.flow.common.v0.models.Price;
|
|
17803
|
+
readonly description?: string;
|
|
17804
|
+
readonly type: io.flow.internal.v0.enums.AldoItemType;
|
|
17805
|
+
readonly added_on: string;
|
|
17806
|
+
}
|
|
17807
|
+
|
|
17808
|
+
interface AldoItemDeleted {
|
|
17809
|
+
readonly discriminator: 'aldo_item_deleted';
|
|
17810
|
+
readonly event_id: string;
|
|
17811
|
+
readonly timestamp: string;
|
|
17812
|
+
readonly id: string;
|
|
17813
|
+
}
|
|
17814
|
+
|
|
17815
|
+
interface AldoItemForm {
|
|
17816
|
+
readonly number: string;
|
|
17817
|
+
readonly amount: io.flow.common.v0.models.Price;
|
|
17818
|
+
readonly description?: string;
|
|
17819
|
+
readonly type: io.flow.internal.v0.enums.AldoItemType;
|
|
17820
|
+
readonly added_on: string;
|
|
17821
|
+
}
|
|
17822
|
+
|
|
17823
|
+
interface AldoItemUpserted {
|
|
17824
|
+
readonly discriminator: 'aldo_item_upserted';
|
|
17825
|
+
readonly event_id: string;
|
|
17826
|
+
readonly timestamp: string;
|
|
17827
|
+
readonly item: io.flow.internal.v0.models.AldoItem;
|
|
17828
|
+
}
|
|
17829
|
+
|
|
18257
17830
|
interface AlertErrorSummary {
|
|
18258
17831
|
readonly event_id: number;
|
|
18259
17832
|
readonly error: string;
|
|
@@ -19339,6 +18912,10 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19339
18912
|
readonly capabilities: io.flow.channel.v0.enums.ChannelCurrencyCapability[];
|
|
19340
18913
|
}
|
|
19341
18914
|
|
|
18915
|
+
interface ChannelCurrencyPairInternal {
|
|
18916
|
+
readonly channel_currency_pair: io.flow.channel.currency.v0.models.ChannelCurrencyPair;
|
|
18917
|
+
}
|
|
18918
|
+
|
|
19342
18919
|
interface ChannelCurrencySetting {
|
|
19343
18920
|
readonly id: string;
|
|
19344
18921
|
readonly channel_id: string;
|
|
@@ -20106,23 +19683,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20106
19683
|
readonly task: string;
|
|
20107
19684
|
}
|
|
20108
19685
|
|
|
20109
|
-
interface ColmItem {
|
|
20110
|
-
readonly id: string;
|
|
20111
|
-
readonly number: string;
|
|
20112
|
-
readonly amount: io.flow.common.v0.models.Price;
|
|
20113
|
-
readonly description?: string;
|
|
20114
|
-
readonly type: io.flow.internal.v0.enums.ColmItemType;
|
|
20115
|
-
readonly added_on: string;
|
|
20116
|
-
}
|
|
20117
|
-
|
|
20118
|
-
interface ColmItemForm {
|
|
20119
|
-
readonly number: string;
|
|
20120
|
-
readonly amount: io.flow.common.v0.models.Price;
|
|
20121
|
-
readonly description?: string;
|
|
20122
|
-
readonly type: io.flow.internal.v0.enums.ColmItemType;
|
|
20123
|
-
readonly added_on: string;
|
|
20124
|
-
}
|
|
20125
|
-
|
|
20126
19686
|
interface CommercialInvoiceComparison {
|
|
20127
19687
|
readonly urls: string[];
|
|
20128
19688
|
}
|
|
@@ -20379,6 +19939,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20379
19939
|
readonly identifiers: io.flow.internal.v0.models.OtherRecordIdentifiers;
|
|
20380
19940
|
readonly created_at: string;
|
|
20381
19941
|
readonly updated_at: string;
|
|
19942
|
+
readonly posted_at?: string;
|
|
20382
19943
|
}
|
|
20383
19944
|
|
|
20384
19945
|
interface CurrencyInternalRate {
|
|
@@ -20519,6 +20080,12 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20519
20080
|
readonly transaction_id: string;
|
|
20520
20081
|
}
|
|
20521
20082
|
|
|
20083
|
+
interface DebugAdjustment {
|
|
20084
|
+
readonly transaction_id: string;
|
|
20085
|
+
readonly original_transaction: io.flow.internal.v0.models.DebugOriginalTransactionSummary;
|
|
20086
|
+
readonly description: string;
|
|
20087
|
+
}
|
|
20088
|
+
|
|
20522
20089
|
interface DebugBankingDetails {
|
|
20523
20090
|
readonly merchant: io.flow.internal.v0.models.MerchantDetails;
|
|
20524
20091
|
readonly account: io.flow.internal.v0.models.BankAccount;
|
|
@@ -20529,6 +20096,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20529
20096
|
readonly captures: io.flow.internal.v0.models.DebugPaymentTransactionSummary[];
|
|
20530
20097
|
readonly refunds: io.flow.internal.v0.models.DebugPaymentTransactionSummary[];
|
|
20531
20098
|
readonly allocation: io.flow.experience.v0.models.AllocationV2;
|
|
20099
|
+
readonly adjustments: io.flow.internal.v0.models.DebugAdjustment[];
|
|
20532
20100
|
}
|
|
20533
20101
|
|
|
20534
20102
|
interface DebugFulfillmentDelta {
|
|
@@ -20543,6 +20111,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20543
20111
|
readonly carrier_tracking_number: string;
|
|
20544
20112
|
readonly label_tracking_summary_id?: string;
|
|
20545
20113
|
readonly label_id?: string;
|
|
20114
|
+
readonly cost_estimate?: io.flow.label.v0.models.ShippingLabelHopSummary;
|
|
20546
20115
|
readonly transactions?: io.flow.internal.v0.models.DebugLabelTransactionSummary[];
|
|
20547
20116
|
}
|
|
20548
20117
|
|
|
@@ -20563,11 +20132,16 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20563
20132
|
interface DebugOrderTransaction {
|
|
20564
20133
|
readonly order: io.flow.internal.v0.models.DebugOrder;
|
|
20565
20134
|
readonly debug: io.flow.internal.v0.models.DebugDetails;
|
|
20566
|
-
readonly transactions: io.flow.
|
|
20135
|
+
readonly transactions: io.flow.internal.v0.models.DebugOrderTransactionDetails[];
|
|
20567
20136
|
readonly reporting: io.flow.internal.v0.models.ReportingDetails;
|
|
20568
20137
|
readonly banking: io.flow.internal.v0.models.DebugBankingDetails;
|
|
20569
20138
|
}
|
|
20570
20139
|
|
|
20140
|
+
interface DebugOrderTransactionDetails {
|
|
20141
|
+
readonly transaction: io.flow.billing.v0.models.Transaction;
|
|
20142
|
+
readonly payout_details?: io.flow.billing.v0.unions.PayoutStatus;
|
|
20143
|
+
}
|
|
20144
|
+
|
|
20571
20145
|
interface DebugOrderTransactionForm {
|
|
20572
20146
|
readonly order_id?: string;
|
|
20573
20147
|
readonly organization_id?: string;
|
|
@@ -20589,6 +20163,11 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20589
20163
|
readonly value?: string;
|
|
20590
20164
|
}
|
|
20591
20165
|
|
|
20166
|
+
interface DebugOriginalTransactionSummary {
|
|
20167
|
+
readonly id: string;
|
|
20168
|
+
readonly source: io.flow.billing.v0.enums.TransactionSource;
|
|
20169
|
+
}
|
|
20170
|
+
|
|
20592
20171
|
interface DebugPaymentTransactionSummary {
|
|
20593
20172
|
readonly id: string;
|
|
20594
20173
|
readonly type: string;
|
|
@@ -20870,6 +20449,8 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20870
20449
|
readonly reporting_category?: io.flow.internal.v0.enums.DisputeReportingCategory;
|
|
20871
20450
|
readonly category?: io.flow.internal.v0.enums.DisputeCategory;
|
|
20872
20451
|
readonly status?: io.flow.internal.v0.enums.DisputeStatus;
|
|
20452
|
+
readonly defense_outcome?: io.flow.internal.v0.enums.DisputeDefenseOutcome;
|
|
20453
|
+
readonly defended_at?: string;
|
|
20873
20454
|
}
|
|
20874
20455
|
|
|
20875
20456
|
interface DisputeRecord {
|
|
@@ -21564,6 +21145,29 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21564
21145
|
readonly negative_balance?: io.flow.internal.v0.models.Fee;
|
|
21565
21146
|
}
|
|
21566
21147
|
|
|
21148
|
+
interface FinalEstimate {
|
|
21149
|
+
readonly id: string;
|
|
21150
|
+
readonly organization_id: string;
|
|
21151
|
+
readonly label_id: string;
|
|
21152
|
+
readonly estimate: io.flow.label.v0.models.ShippingLabelHopSummary;
|
|
21153
|
+
}
|
|
21154
|
+
|
|
21155
|
+
interface FinalEstimateDeleted {
|
|
21156
|
+
readonly discriminator: 'final_estimate_deleted';
|
|
21157
|
+
readonly event_id: string;
|
|
21158
|
+
readonly timestamp: string;
|
|
21159
|
+
readonly organization: string;
|
|
21160
|
+
readonly id: string;
|
|
21161
|
+
}
|
|
21162
|
+
|
|
21163
|
+
interface FinalEstimateUpserted {
|
|
21164
|
+
readonly discriminator: 'final_estimate_upserted';
|
|
21165
|
+
readonly event_id: string;
|
|
21166
|
+
readonly timestamp: string;
|
|
21167
|
+
readonly organization: string;
|
|
21168
|
+
readonly final_estimate: io.flow.internal.v0.models.FinalEstimate;
|
|
21169
|
+
}
|
|
21170
|
+
|
|
21567
21171
|
interface FinanceBankAccount {
|
|
21568
21172
|
readonly id: string;
|
|
21569
21173
|
readonly accounts: io.flow.internal.v0.models.AccountSummary[];
|
|
@@ -21700,6 +21304,10 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21700
21304
|
readonly organization_capability?: io.flow.internal.v0.enums.OrganizationCapability;
|
|
21701
21305
|
}
|
|
21702
21306
|
|
|
21307
|
+
interface FlexeWebhook {
|
|
21308
|
+
readonly placeholder?: boolean;
|
|
21309
|
+
}
|
|
21310
|
+
|
|
21703
21311
|
interface FlowAccount {
|
|
21704
21312
|
readonly source: io.flow.internal.v0.models.AccountSource;
|
|
21705
21313
|
readonly id: string;
|
|
@@ -22819,22 +22427,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22819
22427
|
readonly dimensions: io.flow.ratecard.v0.models.EstimatedDimensions;
|
|
22820
22428
|
}
|
|
22821
22429
|
|
|
22822
|
-
interface ItemDimensionEstimateDeletedV2 {
|
|
22823
|
-
readonly discriminator: 'item_dimension_estimate_deleted_v2';
|
|
22824
|
-
readonly event_id: string;
|
|
22825
|
-
readonly timestamp: string;
|
|
22826
|
-
readonly organization: string;
|
|
22827
|
-
readonly id: string;
|
|
22828
|
-
}
|
|
22829
|
-
|
|
22830
|
-
interface ItemDimensionEstimateUpsertedV2 {
|
|
22831
|
-
readonly discriminator: 'item_dimension_estimate_upserted_v2';
|
|
22832
|
-
readonly event_id: string;
|
|
22833
|
-
readonly timestamp: string;
|
|
22834
|
-
readonly organization: string;
|
|
22835
|
-
readonly estimate: io.flow.internal.v0.models.ItemDimensionEstimate;
|
|
22836
|
-
}
|
|
22837
|
-
|
|
22838
22430
|
interface ItemFilterResponse {
|
|
22839
22431
|
readonly filter: string;
|
|
22840
22432
|
readonly responses: io.flow.internal.v0.models.ItemFilterValueResponse[];
|
|
@@ -23097,7 +22689,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23097
22689
|
|
|
23098
22690
|
interface LabelGenerationSettings {
|
|
23099
22691
|
readonly id: string;
|
|
23100
|
-
readonly item_identifier?: string;
|
|
23101
22692
|
readonly auto_generate_query?: string;
|
|
23102
22693
|
readonly commercial_invoice_only_query?: string;
|
|
23103
22694
|
}
|
|
@@ -24498,7 +24089,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
24498
24089
|
}
|
|
24499
24090
|
|
|
24500
24091
|
interface OrderEditSummary {
|
|
24501
|
-
readonly external_order_edit_reference: string;
|
|
24502
24092
|
readonly edited_at: string;
|
|
24503
24093
|
}
|
|
24504
24094
|
|
|
@@ -25159,6 +24749,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
25159
24749
|
readonly identifiers: io.flow.internal.v0.models.OtherRecordIdentifiers;
|
|
25160
24750
|
readonly created_at: string;
|
|
25161
24751
|
readonly updated_at: string;
|
|
24752
|
+
readonly posted_at?: string;
|
|
25162
24753
|
}
|
|
25163
24754
|
|
|
25164
24755
|
interface OtherRecordAccount {
|
|
@@ -25257,7 +24848,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
25257
24848
|
}
|
|
25258
24849
|
|
|
25259
24850
|
interface OtherRecordOrderSummary {
|
|
25260
|
-
readonly organization: io.flow.
|
|
24851
|
+
readonly organization: io.flow.internal.v0.models.OtherRecordOrganizationSummary;
|
|
25261
24852
|
readonly number: string;
|
|
25262
24853
|
readonly identifiers: io.flow.internal.v0.models.OtherRecordOrderSummaryIdentifiers;
|
|
25263
24854
|
}
|
|
@@ -25266,6 +24857,11 @@ declare namespace io.flow.internal.v0.models {
|
|
|
25266
24857
|
readonly shopify_order_id?: string;
|
|
25267
24858
|
}
|
|
25268
24859
|
|
|
24860
|
+
interface OtherRecordOrganizationSummary {
|
|
24861
|
+
readonly id: string;
|
|
24862
|
+
readonly status?: io.flow.common.v0.enums.OrganizationStatus;
|
|
24863
|
+
}
|
|
24864
|
+
|
|
25269
24865
|
interface OtherRecordUpserted {
|
|
25270
24866
|
readonly discriminator: 'other_record_upserted';
|
|
25271
24867
|
readonly event_id: string;
|
|
@@ -26084,6 +25680,38 @@ declare namespace io.flow.internal.v0.models {
|
|
|
26084
25680
|
readonly created_at: string;
|
|
26085
25681
|
}
|
|
26086
25682
|
|
|
25683
|
+
interface PspDistribution {
|
|
25684
|
+
readonly processor: io.flow.internal.v0.enums.Processor;
|
|
25685
|
+
readonly percentage: number;
|
|
25686
|
+
}
|
|
25687
|
+
|
|
25688
|
+
interface PspRoutingDistribution {
|
|
25689
|
+
readonly name: string;
|
|
25690
|
+
readonly environment?: io.flow.common.v0.enums.Environment;
|
|
25691
|
+
readonly payment_methods: string[];
|
|
25692
|
+
readonly countries: string[];
|
|
25693
|
+
readonly currencies: string[];
|
|
25694
|
+
readonly region?: string;
|
|
25695
|
+
readonly mcc?: string;
|
|
25696
|
+
readonly is_returning_card?: boolean;
|
|
25697
|
+
readonly priority: number;
|
|
25698
|
+
readonly distributions: io.flow.internal.v0.models.PspDistribution[];
|
|
25699
|
+
}
|
|
25700
|
+
|
|
25701
|
+
interface PspRoutingDistributionRevision {
|
|
25702
|
+
readonly id: string;
|
|
25703
|
+
readonly description?: string;
|
|
25704
|
+
readonly psp_routing_distributions: io.flow.internal.v0.models.PspRoutingDistribution[];
|
|
25705
|
+
readonly created_at: string;
|
|
25706
|
+
readonly updated_at: string;
|
|
25707
|
+
}
|
|
25708
|
+
|
|
25709
|
+
interface PspRoutingDistributionRevisionForm {
|
|
25710
|
+
readonly previous_revision?: string;
|
|
25711
|
+
readonly description?: string;
|
|
25712
|
+
readonly psp_routing_distributions: io.flow.internal.v0.models.PspRoutingDistribution[];
|
|
25713
|
+
}
|
|
25714
|
+
|
|
26087
25715
|
interface PublicHub {
|
|
26088
25716
|
readonly id: string;
|
|
26089
25717
|
readonly code: string;
|
|
@@ -26606,6 +26234,10 @@ declare namespace io.flow.internal.v0.models {
|
|
|
26606
26234
|
readonly account_number: string;
|
|
26607
26235
|
}
|
|
26608
26236
|
|
|
26237
|
+
interface ReportFilter {
|
|
26238
|
+
readonly source_type?: io.flow.internal.v0.enums.SourceTypeFilter;
|
|
26239
|
+
}
|
|
26240
|
+
|
|
26609
26241
|
interface ReportForm {
|
|
26610
26242
|
readonly type: io.flow.internal.v0.enums.ReportType;
|
|
26611
26243
|
readonly from?: string;
|
|
@@ -26614,6 +26246,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
26614
26246
|
readonly organizations?: io.flow.internal.v0.models.ReportOrganizationReference[];
|
|
26615
26247
|
readonly orders?: io.flow.internal.v0.models.ReportOrderReference[];
|
|
26616
26248
|
readonly recipients?: string[];
|
|
26249
|
+
readonly filter?: io.flow.internal.v0.models.ReportFilter;
|
|
26617
26250
|
}
|
|
26618
26251
|
|
|
26619
26252
|
interface ReportMerchant {
|
|
@@ -27374,13 +27007,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
27374
27007
|
readonly status: io.flow.experience.v0.enums.ExperienceStatus;
|
|
27375
27008
|
}
|
|
27376
27009
|
|
|
27377
|
-
interface SearchExperimentSummary {
|
|
27378
|
-
readonly discriminator: 'search_experiment_summary';
|
|
27379
|
-
readonly key: string;
|
|
27380
|
-
readonly name: string;
|
|
27381
|
-
readonly status: io.flow.experiment.internal.v0.enums.Status;
|
|
27382
|
-
}
|
|
27383
|
-
|
|
27384
27010
|
interface SearchItemSummary {
|
|
27385
27011
|
readonly discriminator: 'search_item_summary';
|
|
27386
27012
|
readonly number: string;
|
|
@@ -27664,19 +27290,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
27664
27290
|
readonly shopify_markets_order: io.flow.internal.v0.models.ShopifyMarketsOrder;
|
|
27665
27291
|
}
|
|
27666
27292
|
|
|
27667
|
-
interface ShopifyMarketsOrderEditSummaryData {
|
|
27668
|
-
readonly channel_order_acceptance: io.flow.internal.v0.models.ChannelOrderAcceptance;
|
|
27669
|
-
readonly edited_at: string;
|
|
27670
|
-
}
|
|
27671
|
-
|
|
27672
|
-
interface ShopifyMarketsOrderEditSummaryPublished {
|
|
27673
|
-
readonly discriminator: 'shopify_markets_order_edit_summary_published';
|
|
27674
|
-
readonly event_id: string;
|
|
27675
|
-
readonly timestamp: string;
|
|
27676
|
-
readonly organization: string;
|
|
27677
|
-
readonly data: io.flow.internal.v0.models.ShopifyMarketsOrderEditSummaryData;
|
|
27678
|
-
}
|
|
27679
|
-
|
|
27680
27293
|
interface ShopifyMarketsOrderUpserted {
|
|
27681
27294
|
readonly discriminator: 'shopify_markets_order_upserted';
|
|
27682
27295
|
readonly event_id: string;
|
|
@@ -28322,6 +27935,26 @@ declare namespace io.flow.internal.v0.models {
|
|
|
28322
27935
|
readonly spot_rate: io.flow.internal.v0.models.SpotRate;
|
|
28323
27936
|
}
|
|
28324
27937
|
|
|
27938
|
+
interface SppTrackerUpdateRequest {
|
|
27939
|
+
readonly id: string;
|
|
27940
|
+
readonly tracking_subscription: io.flow.internal.v0.models.TrackingSubscription;
|
|
27941
|
+
readonly created_at: string;
|
|
27942
|
+
}
|
|
27943
|
+
|
|
27944
|
+
interface SppTrackerUpdateRequestDeleted {
|
|
27945
|
+
readonly discriminator: 'spp_tracker_update_request_deleted';
|
|
27946
|
+
readonly event_id: string;
|
|
27947
|
+
readonly timestamp: string;
|
|
27948
|
+
readonly id: string;
|
|
27949
|
+
}
|
|
27950
|
+
|
|
27951
|
+
interface SppTrackerUpdateRequestUpserted {
|
|
27952
|
+
readonly discriminator: 'spp_tracker_update_request_upserted';
|
|
27953
|
+
readonly event_id: string;
|
|
27954
|
+
readonly timestamp: string;
|
|
27955
|
+
readonly spp_tracker_update_request: io.flow.internal.v0.models.SppTrackerUpdateRequest;
|
|
27956
|
+
}
|
|
27957
|
+
|
|
28325
27958
|
interface StandaloneAttachment {
|
|
28326
27959
|
readonly id: string;
|
|
28327
27960
|
readonly statement: io.flow.internal.v0.models.BillingStatementReference;
|
|
@@ -29143,6 +28776,10 @@ declare namespace io.flow.internal.v0.models {
|
|
|
29143
28776
|
readonly tracking_events: io.flow.internal.v0.models.TrackingEvent[];
|
|
29144
28777
|
}
|
|
29145
28778
|
|
|
28779
|
+
interface TrackingResync {
|
|
28780
|
+
readonly placeholder?: boolean;
|
|
28781
|
+
}
|
|
28782
|
+
|
|
29146
28783
|
interface TrackingSubscription {
|
|
29147
28784
|
readonly id: string;
|
|
29148
28785
|
readonly organization_id: string;
|
|
@@ -29179,6 +28816,10 @@ declare namespace io.flow.internal.v0.models {
|
|
|
29179
28816
|
readonly tracking: io.flow.tracking.v0.models.Tracking;
|
|
29180
28817
|
}
|
|
29181
28818
|
|
|
28819
|
+
interface TrackingWebhook {
|
|
28820
|
+
readonly placeholder?: boolean;
|
|
28821
|
+
}
|
|
28822
|
+
|
|
29182
28823
|
interface TransactionAdjustment {
|
|
29183
28824
|
readonly id: string;
|
|
29184
28825
|
readonly original_transaction: io.flow.internal.v0.models.TransactionReference;
|
|
@@ -29568,6 +29209,8 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
29568
29209
|
type Event =
|
|
29569
29210
|
| io.flow.internal.v0.models.AdjustedEstimatesUpserted
|
|
29570
29211
|
| io.flow.internal.v0.models.AdjustedEstimatesDeleted
|
|
29212
|
+
| io.flow.internal.v0.models.FinalEstimateUpserted
|
|
29213
|
+
| io.flow.internal.v0.models.FinalEstimateDeleted
|
|
29571
29214
|
| io.flow.internal.v0.models.AdyenAuthorizationDeleted
|
|
29572
29215
|
| io.flow.internal.v0.models.AdyenAuthorizationUpserted
|
|
29573
29216
|
| io.flow.internal.v0.models.AdyenCancelDeleted
|
|
@@ -29578,6 +29221,8 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
29578
29221
|
| io.flow.internal.v0.models.AdyenRefundUpserted
|
|
29579
29222
|
| io.flow.internal.v0.models.AdyenDisputeUpserted
|
|
29580
29223
|
| io.flow.internal.v0.models.AdyenDisputeDeleted
|
|
29224
|
+
| io.flow.internal.v0.models.AldoItemUpserted
|
|
29225
|
+
| io.flow.internal.v0.models.AldoItemDeleted
|
|
29581
29226
|
| io.flow.internal.v0.models.FulfillmentUpserted
|
|
29582
29227
|
| io.flow.internal.v0.models.FulfillmentDeleted
|
|
29583
29228
|
| io.flow.internal.v0.models.MerchantUpserted
|
|
@@ -29673,8 +29318,6 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
29673
29318
|
| io.flow.internal.v0.models.CustomerPurgeUpserted
|
|
29674
29319
|
| io.flow.internal.v0.models.CustomsDescriptionImport
|
|
29675
29320
|
| io.flow.internal.v0.models.CustomsDescriptionTariffsImport
|
|
29676
|
-
| io.flow.internal.v0.models.ItemDimensionEstimateUpsertedV2
|
|
29677
|
-
| io.flow.internal.v0.models.ItemDimensionEstimateDeletedV2
|
|
29678
29321
|
| io.flow.internal.v0.models.DisputeUpserted
|
|
29679
29322
|
| io.flow.internal.v0.models.DisputeDeleted
|
|
29680
29323
|
| io.flow.internal.v0.models.DutyRatesPublishedV2
|
|
@@ -29814,6 +29457,8 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
29814
29457
|
| io.flow.internal.v0.models.UnassignedMerchantGuidDeleted
|
|
29815
29458
|
| io.flow.internal.v0.models.PartnerTrackingSubscriptionUpserted
|
|
29816
29459
|
| io.flow.internal.v0.models.PartnerTrackingSubscriptionDeleted
|
|
29460
|
+
| io.flow.internal.v0.models.SppTrackerUpdateRequestUpserted
|
|
29461
|
+
| io.flow.internal.v0.models.SppTrackerUpdateRequestDeleted
|
|
29817
29462
|
| io.flow.internal.v0.models.InternalAuthorizationUpserted
|
|
29818
29463
|
| io.flow.internal.v0.models.InternalAuthorizationDeleted
|
|
29819
29464
|
| io.flow.internal.v0.models.AfterpayAuthorizationUpserted
|
|
@@ -29890,7 +29535,6 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
29890
29535
|
| io.flow.internal.v0.models.OrderTaxAndDutyInclusivitySettingDeleted
|
|
29891
29536
|
| io.flow.internal.v0.models.ShopifyProductBundleUpserted
|
|
29892
29537
|
| io.flow.internal.v0.models.ShopifyProductBundleDeleted
|
|
29893
|
-
| io.flow.internal.v0.models.ShopifyMarketsOrderEditSummaryPublished
|
|
29894
29538
|
| io.flow.internal.v0.models.ShopifyIncotermSummaryErrorPublished
|
|
29895
29539
|
| io.flow.internal.v0.models.ShopifyMarketsBestSellingProductUpserted
|
|
29896
29540
|
| io.flow.internal.v0.models.ShopifyMarketsBestSellingProductDeleted
|
|
@@ -29971,7 +29615,6 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
29971
29615
|
| io.flow.internal.v0.models.GenerateLoadMultipleOrgs;
|
|
29972
29616
|
type GlobalSearchResult =
|
|
29973
29617
|
| io.flow.internal.v0.models.SearchExperienceSummary
|
|
29974
|
-
| io.flow.internal.v0.models.SearchExperimentSummary
|
|
29975
29618
|
| io.flow.internal.v0.models.SearchOrderSummary
|
|
29976
29619
|
| io.flow.internal.v0.models.SearchItemSummary;
|
|
29977
29620
|
type IndexTaskType =
|
|
@@ -30319,6 +29962,12 @@ export type AfterpayRefundDeleted =
|
|
|
30319
29962
|
io.flow.internal.v0.models.AfterpayRefundDeleted;
|
|
30320
29963
|
export type AfterpayRefundUpserted =
|
|
30321
29964
|
io.flow.internal.v0.models.AfterpayRefundUpserted;
|
|
29965
|
+
export type AftershipWebhook = io.flow.internal.v0.models.AftershipWebhook;
|
|
29966
|
+
export type AldoItem = io.flow.internal.v0.models.AldoItem;
|
|
29967
|
+
export type AldoItemDeleted = io.flow.internal.v0.models.AldoItemDeleted;
|
|
29968
|
+
export type AldoItemForm = io.flow.internal.v0.models.AldoItemForm;
|
|
29969
|
+
export type AldoItemType = io.flow.internal.v0.enums.AldoItemType;
|
|
29970
|
+
export type AldoItemUpserted = io.flow.internal.v0.models.AldoItemUpserted;
|
|
30322
29971
|
export type AlertErrorSummary = io.flow.internal.v0.models.AlertErrorSummary;
|
|
30323
29972
|
export type AlertFailureSummary =
|
|
30324
29973
|
io.flow.internal.v0.models.AlertFailureSummary;
|
|
@@ -30614,6 +30263,8 @@ export type ChannelBillingStatement =
|
|
|
30614
30263
|
io.flow.internal.v0.models.ChannelBillingStatement;
|
|
30615
30264
|
export type ChannelCurrencyForm =
|
|
30616
30265
|
io.flow.internal.v0.models.ChannelCurrencyForm;
|
|
30266
|
+
export type ChannelCurrencyPairInternal =
|
|
30267
|
+
io.flow.internal.v0.models.ChannelCurrencyPairInternal;
|
|
30617
30268
|
export type ChannelCurrencySetting =
|
|
30618
30269
|
io.flow.internal.v0.models.ChannelCurrencySetting;
|
|
30619
30270
|
export type ChannelCurrencySettingDeleted =
|
|
@@ -30850,9 +30501,6 @@ export type CliLogEntry = io.flow.internal.v0.models.CliLogEntry;
|
|
|
30850
30501
|
export type CliLogEntryForm = io.flow.internal.v0.models.CliLogEntryForm;
|
|
30851
30502
|
export type ClothingAgeClassification =
|
|
30852
30503
|
io.flow.internal.v0.enums.ClothingAgeClassification;
|
|
30853
|
-
export type ColmItem = io.flow.internal.v0.models.ColmItem;
|
|
30854
|
-
export type ColmItemForm = io.flow.internal.v0.models.ColmItemForm;
|
|
30855
|
-
export type ColmItemType = io.flow.internal.v0.enums.ColmItemType;
|
|
30856
30504
|
export type CommercialInvoiceComparison =
|
|
30857
30505
|
io.flow.internal.v0.models.CommercialInvoiceComparison;
|
|
30858
30506
|
export type CommercialInvoiceInternal =
|
|
@@ -30947,6 +30595,7 @@ export type DebugAccountingTransaction =
|
|
|
30947
30595
|
io.flow.internal.v0.models.DebugAccountingTransaction;
|
|
30948
30596
|
export type DebugAccountingTransactionType =
|
|
30949
30597
|
io.flow.internal.v0.enums.DebugAccountingTransactionType;
|
|
30598
|
+
export type DebugAdjustment = io.flow.internal.v0.models.DebugAdjustment;
|
|
30950
30599
|
export type DebugBankingDetails =
|
|
30951
30600
|
io.flow.internal.v0.models.DebugBankingDetails;
|
|
30952
30601
|
export type DebugDetails = io.flow.internal.v0.models.DebugDetails;
|
|
@@ -30958,10 +30607,14 @@ export type DebugLabelTransactionSummary =
|
|
|
30958
30607
|
export type DebugOrder = io.flow.internal.v0.models.DebugOrder;
|
|
30959
30608
|
export type DebugOrderTransaction =
|
|
30960
30609
|
io.flow.internal.v0.models.DebugOrderTransaction;
|
|
30610
|
+
export type DebugOrderTransactionDetails =
|
|
30611
|
+
io.flow.internal.v0.models.DebugOrderTransactionDetails;
|
|
30961
30612
|
export type DebugOrderTransactionForm =
|
|
30962
30613
|
io.flow.internal.v0.models.DebugOrderTransactionForm;
|
|
30963
30614
|
export type DebugOrderTransactionFormOrderIdentifier =
|
|
30964
30615
|
io.flow.internal.v0.models.DebugOrderTransactionFormOrderIdentifier;
|
|
30616
|
+
export type DebugOriginalTransactionSummary =
|
|
30617
|
+
io.flow.internal.v0.models.DebugOriginalTransactionSummary;
|
|
30965
30618
|
export type DebugPaymentTransactionSummary =
|
|
30966
30619
|
io.flow.internal.v0.models.DebugPaymentTransactionSummary;
|
|
30967
30620
|
export type DebugTransactionDetails =
|
|
@@ -31206,6 +30859,11 @@ export type FeedUpserted = io.flow.internal.v0.models.FeedUpserted;
|
|
|
31206
30859
|
export type FeedsExport = io.flow.internal.v0.models.FeedsExport;
|
|
31207
30860
|
export type Fees = io.flow.internal.v0.models.Fees;
|
|
31208
30861
|
export type FeesSource = io.flow.internal.v0.enums.FeesSource;
|
|
30862
|
+
export type FinalEstimate = io.flow.internal.v0.models.FinalEstimate;
|
|
30863
|
+
export type FinalEstimateDeleted =
|
|
30864
|
+
io.flow.internal.v0.models.FinalEstimateDeleted;
|
|
30865
|
+
export type FinalEstimateUpserted =
|
|
30866
|
+
io.flow.internal.v0.models.FinalEstimateUpserted;
|
|
31209
30867
|
export type FinanceBankAccount = io.flow.internal.v0.models.FinanceBankAccount;
|
|
31210
30868
|
export type FinanceBankAccountOwner =
|
|
31211
30869
|
io.flow.internal.v0.models.FinanceBankAccountOwner;
|
|
@@ -31234,6 +30892,7 @@ export type FiservMerchantModificationForm =
|
|
|
31234
30892
|
io.flow.internal.v0.models.FiservMerchantModificationForm;
|
|
31235
30893
|
export type FiservMerchantPutForm =
|
|
31236
30894
|
io.flow.internal.v0.models.FiservMerchantPutForm;
|
|
30895
|
+
export type FlexeWebhook = io.flow.internal.v0.models.FlexeWebhook;
|
|
31237
30896
|
export type FlowAccount = io.flow.internal.v0.models.FlowAccount;
|
|
31238
30897
|
export type FlowApp = io.flow.internal.v0.enums.FlowApp;
|
|
31239
30898
|
export type FlowBillingStatement =
|
|
@@ -31521,10 +31180,6 @@ export type ItemClassificationV2 =
|
|
|
31521
31180
|
export type ItemCustomsDetails = io.flow.internal.v0.models.ItemCustomsDetails;
|
|
31522
31181
|
export type ItemDimensionEstimate =
|
|
31523
31182
|
io.flow.internal.v0.models.ItemDimensionEstimate;
|
|
31524
|
-
export type ItemDimensionEstimateDeletedV2 =
|
|
31525
|
-
io.flow.internal.v0.models.ItemDimensionEstimateDeletedV2;
|
|
31526
|
-
export type ItemDimensionEstimateUpsertedV2 =
|
|
31527
|
-
io.flow.internal.v0.models.ItemDimensionEstimateUpsertedV2;
|
|
31528
31183
|
export type ItemFilterResponse = io.flow.internal.v0.models.ItemFilterResponse;
|
|
31529
31184
|
export type ItemFilterValueResponse =
|
|
31530
31185
|
io.flow.internal.v0.models.ItemFilterValueResponse;
|
|
@@ -32182,6 +31837,8 @@ export type OtherRecordOrderSummary =
|
|
|
32182
31837
|
io.flow.internal.v0.models.OtherRecordOrderSummary;
|
|
32183
31838
|
export type OtherRecordOrderSummaryIdentifiers =
|
|
32184
31839
|
io.flow.internal.v0.models.OtherRecordOrderSummaryIdentifiers;
|
|
31840
|
+
export type OtherRecordOrganizationSummary =
|
|
31841
|
+
io.flow.internal.v0.models.OtherRecordOrganizationSummary;
|
|
32185
31842
|
export type OtherRecordUpserted =
|
|
32186
31843
|
io.flow.internal.v0.models.OtherRecordUpserted;
|
|
32187
31844
|
export type OtherRecordWithholdings =
|
|
@@ -32401,6 +32058,13 @@ export type ProofOfPostingShippingNotification =
|
|
|
32401
32058
|
io.flow.internal.v0.models.ProofOfPostingShippingNotification;
|
|
32402
32059
|
export type ProofOfPostingTimeElapsed =
|
|
32403
32060
|
io.flow.internal.v0.models.ProofOfPostingTimeElapsed;
|
|
32061
|
+
export type PspDistribution = io.flow.internal.v0.models.PspDistribution;
|
|
32062
|
+
export type PspRoutingDistribution =
|
|
32063
|
+
io.flow.internal.v0.models.PspRoutingDistribution;
|
|
32064
|
+
export type PspRoutingDistributionRevision =
|
|
32065
|
+
io.flow.internal.v0.models.PspRoutingDistributionRevision;
|
|
32066
|
+
export type PspRoutingDistributionRevisionForm =
|
|
32067
|
+
io.flow.internal.v0.models.PspRoutingDistributionRevisionForm;
|
|
32404
32068
|
export type PublicHub = io.flow.internal.v0.models.PublicHub;
|
|
32405
32069
|
export type PublicHubForm = io.flow.internal.v0.models.PublicHubForm;
|
|
32406
32070
|
export type Quote = io.flow.internal.v0.models.Quote;
|
|
@@ -32522,6 +32186,7 @@ export type ReportAccount = io.flow.internal.v0.models.ReportAccount;
|
|
|
32522
32186
|
export type ReportBankAccount = io.flow.internal.v0.models.ReportBankAccount;
|
|
32523
32187
|
export type ReportBankAccountCleartext =
|
|
32524
32188
|
io.flow.internal.v0.models.ReportBankAccountCleartext;
|
|
32189
|
+
export type ReportFilter = io.flow.internal.v0.models.ReportFilter;
|
|
32525
32190
|
export type ReportForm = io.flow.internal.v0.models.ReportForm;
|
|
32526
32191
|
export type ReportInterval = io.flow.internal.v0.enums.ReportInterval;
|
|
32527
32192
|
export type ReportMerchant = io.flow.internal.v0.models.ReportMerchant;
|
|
@@ -32702,8 +32367,6 @@ export type SearchCustomerSummary =
|
|
|
32702
32367
|
io.flow.internal.v0.models.SearchCustomerSummary;
|
|
32703
32368
|
export type SearchExperienceSummary =
|
|
32704
32369
|
io.flow.internal.v0.models.SearchExperienceSummary;
|
|
32705
|
-
export type SearchExperimentSummary =
|
|
32706
|
-
io.flow.internal.v0.models.SearchExperimentSummary;
|
|
32707
32370
|
export type SearchItemSummary = io.flow.internal.v0.models.SearchItemSummary;
|
|
32708
32371
|
export type SearchOrderSummary = io.flow.internal.v0.models.SearchOrderSummary;
|
|
32709
32372
|
export type SearchProviderExport =
|
|
@@ -32792,10 +32455,6 @@ export type ShopifyMarketsOrder =
|
|
|
32792
32455
|
io.flow.internal.v0.models.ShopifyMarketsOrder;
|
|
32793
32456
|
export type ShopifyMarketsOrderDeleted =
|
|
32794
32457
|
io.flow.internal.v0.models.ShopifyMarketsOrderDeleted;
|
|
32795
|
-
export type ShopifyMarketsOrderEditSummaryData =
|
|
32796
|
-
io.flow.internal.v0.models.ShopifyMarketsOrderEditSummaryData;
|
|
32797
|
-
export type ShopifyMarketsOrderEditSummaryPublished =
|
|
32798
|
-
io.flow.internal.v0.models.ShopifyMarketsOrderEditSummaryPublished;
|
|
32799
32458
|
export type ShopifyMarketsOrderUpserted =
|
|
32800
32459
|
io.flow.internal.v0.models.ShopifyMarketsOrderUpserted;
|
|
32801
32460
|
export type ShopifyMarketsOrderVersionWithShopId =
|
|
@@ -32984,6 +32643,7 @@ export type SnoozeNextActionWith =
|
|
|
32984
32643
|
io.flow.internal.v0.enums.SnoozeNextActionWith;
|
|
32985
32644
|
export type SnoozeSource = io.flow.internal.v0.models.SnoozeSource;
|
|
32986
32645
|
export type SnoozeSourceType = io.flow.internal.v0.enums.SnoozeSourceType;
|
|
32646
|
+
export type SourceTypeFilter = io.flow.internal.v0.enums.SourceTypeFilter;
|
|
32987
32647
|
export type SpotRate = io.flow.internal.v0.models.SpotRate;
|
|
32988
32648
|
export type SpotRateDeleted = io.flow.internal.v0.models.SpotRateDeleted;
|
|
32989
32649
|
export type SpotRateMetadata = io.flow.internal.v0.unions.SpotRateMetadata;
|
|
@@ -32993,6 +32653,12 @@ export type SpotRateMetadataRate =
|
|
|
32993
32653
|
io.flow.internal.v0.models.SpotRateMetadataRate;
|
|
32994
32654
|
export type SpotRateUpserted = io.flow.internal.v0.models.SpotRateUpserted;
|
|
32995
32655
|
export type SpotRateVersion = io.flow.internal.v0.models.SpotRateVersion;
|
|
32656
|
+
export type SppTrackerUpdateRequest =
|
|
32657
|
+
io.flow.internal.v0.models.SppTrackerUpdateRequest;
|
|
32658
|
+
export type SppTrackerUpdateRequestDeleted =
|
|
32659
|
+
io.flow.internal.v0.models.SppTrackerUpdateRequestDeleted;
|
|
32660
|
+
export type SppTrackerUpdateRequestUpserted =
|
|
32661
|
+
io.flow.internal.v0.models.SppTrackerUpdateRequestUpserted;
|
|
32996
32662
|
export type StandaloneAttachment =
|
|
32997
32663
|
io.flow.internal.v0.models.StandaloneAttachment;
|
|
32998
32664
|
export type StandaloneAttachmentDeleted =
|
|
@@ -33197,6 +32863,7 @@ export type TrackingProcessingFailureClassification =
|
|
|
33197
32863
|
io.flow.internal.v0.enums.TrackingProcessingFailureClassification;
|
|
33198
32864
|
export type TrackingRequest = io.flow.internal.v0.models.TrackingRequest;
|
|
33199
32865
|
export type TrackingResponse = io.flow.internal.v0.models.TrackingResponse;
|
|
32866
|
+
export type TrackingResync = io.flow.internal.v0.models.TrackingResync;
|
|
33200
32867
|
export type TrackingSubscription =
|
|
33201
32868
|
io.flow.internal.v0.models.TrackingSubscription;
|
|
33202
32869
|
export type TrackingSubscriptionDeleted =
|
|
@@ -33204,6 +32871,7 @@ export type TrackingSubscriptionDeleted =
|
|
|
33204
32871
|
export type TrackingSubscriptionUpserted =
|
|
33205
32872
|
io.flow.internal.v0.models.TrackingSubscriptionUpserted;
|
|
33206
32873
|
export type TrackingUpserted = io.flow.internal.v0.models.TrackingUpserted;
|
|
32874
|
+
export type TrackingWebhook = io.flow.internal.v0.models.TrackingWebhook;
|
|
33207
32875
|
export type Transaction = io.flow.internal.v0.unions.Transaction;
|
|
33208
32876
|
export type TransactionAdjustment =
|
|
33209
32877
|
io.flow.internal.v0.models.TransactionAdjustment;
|