@flowio/types 11.24.108 → 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.
@@ -1460,318 +1460,6 @@ declare namespace io.flow.RESERVED_WORD_export.v0.unions {
1460
1460
  | io.flow.RESERVED_WORD_export.v0.models.ExclusionRulesExportType;
1461
1461
  }
1462
1462
 
1463
- declare namespace io.flow.flexe.v0.enums {
1464
- type FlexeAttachmentType =
1465
- | 'shipping_label'
1466
- | 'packing_slip'
1467
- | 'packing_slip_letter';
1468
- type FlexeNotification = 'receipt' | 'shipment';
1469
- type FlexeShipmentType =
1470
- | 'fulfillment_order'
1471
- | 'retail_fulfillment_order'
1472
- | 'carton_pick_delivery'
1473
- | 'delivery'
1474
- | 'container_delivery';
1475
- type FlexeStatus = 'in_transit' | 'completed';
1476
- }
1477
-
1478
- declare namespace io.flow.flexe.v0.models {
1479
- interface BillOfLading {
1480
- readonly type: string;
1481
- readonly gs1us?: io.flow.flexe.v0.models.Gs1Us;
1482
- }
1483
-
1484
- interface BillTo {
1485
- readonly name: string;
1486
- readonly address_1: string;
1487
- readonly locality: string;
1488
- readonly region: string;
1489
- readonly postal_code: string;
1490
- readonly country: string;
1491
- readonly address_2?: string;
1492
- readonly address_3?: string;
1493
- }
1494
-
1495
- interface CartonPickDeliveryDetails {
1496
- readonly shipment_uuid?: string;
1497
- readonly carrier?: string;
1498
- readonly carrier_id?: string;
1499
- }
1500
-
1501
- interface ContainerDeliveryDetails {
1502
- readonly purchase_order: string;
1503
- readonly container_number?: string;
1504
- readonly seal_number?: string;
1505
- readonly vendor?: string;
1506
- readonly expected_inventory: io.flow.flexe.v0.models.InventoryDetails[];
1507
- readonly received_inventory: io.flow.flexe.v0.models.InventoryDetails[];
1508
- readonly damaged_inventory: io.flow.flexe.v0.models.InventoryDetails[];
1509
- readonly quantities_by_inventory: Record<
1510
- string,
1511
- io.flow.flexe.v0.models.QuantityByInventory
1512
- >;
1513
- }
1514
-
1515
- interface DeliveryDetails {
1516
- readonly shipment_uuid?: string;
1517
- readonly trailer_number?: string;
1518
- readonly pallets: io.flow.flexe.v0.models.Pallet[];
1519
- readonly quantities_by_inventory: Record<
1520
- string,
1521
- io.flow.flexe.v0.models.QuantityByInventory
1522
- >;
1523
- }
1524
-
1525
- interface Error {
1526
- readonly url: string;
1527
- readonly client_request_id: string;
1528
- readonly generated_at: string;
1529
- readonly error: string;
1530
- }
1531
-
1532
- interface FlexeAttachment {
1533
- readonly type: io.flow.flexe.v0.enums.FlexeAttachmentType;
1534
- readonly display_name: string;
1535
- readonly url: string;
1536
- }
1537
-
1538
- interface FlexeEcommerceFulfillment {
1539
- readonly url: string;
1540
- readonly client_request_id: string;
1541
- readonly generated_at: string;
1542
- readonly data: io.flow.flexe.v0.models.FlexeEcommerceFulfillmentData;
1543
- readonly errors: io.flow.flexe.v0.models.FlexeEcommerceFulfillmentErrors[];
1544
- }
1545
-
1546
- interface FlexeEcommerceFulfillmentData {
1547
- readonly import_id: string;
1548
- readonly succeeded_uuids: string[];
1549
- readonly failed_uuids: string[];
1550
- readonly errors: string[];
1551
- }
1552
-
1553
- interface FlexeEcommerceFulfillmentErrors {
1554
- readonly status: string;
1555
- readonly title: string;
1556
- readonly detail: string;
1557
- readonly source?: string;
1558
- }
1559
-
1560
- interface FlexeEcommerceFulfillmentForm {
1561
- readonly reservation_id: number;
1562
- readonly client_request_id: string;
1563
- readonly request: io.flow.flexe.v0.models.Orders;
1564
- }
1565
-
1566
- interface FlexeInventoryData {
1567
- readonly sku: string;
1568
- readonly quantity: string;
1569
- readonly unit: string;
1570
- }
1571
-
1572
- interface FlexeRetailAttachment {
1573
- readonly display_name: string;
1574
- readonly url: string;
1575
- }
1576
-
1577
- interface FlexeRetailFulfillment {
1578
- readonly url: string;
1579
- readonly client_request_id: string;
1580
- readonly generated_at: string;
1581
- readonly data: io.flow.flexe.v0.models.FlexeRetailFulfillmentData;
1582
- readonly errors?: io.flow.flexe.v0.models.FlexeRetailFulfillmentErrors[];
1583
- }
1584
-
1585
- interface FlexeRetailFulfillmentData {
1586
- readonly id: string;
1587
- readonly purchase_order_uuid: string;
1588
- readonly status: string;
1589
- }
1590
-
1591
- interface FlexeRetailFulfillmentErrors {
1592
- readonly type: string;
1593
- readonly message: string;
1594
- }
1595
-
1596
- interface FlexeRetailFulfillmentForm {
1597
- readonly reservation_id: number;
1598
- readonly client_request_id?: string;
1599
- readonly request: io.flow.flexe.v0.models.RetailOrder;
1600
- }
1601
-
1602
- interface FulfillmentOrderDetails {
1603
- readonly shipment_uuid: string;
1604
- readonly carrier?: string;
1605
- readonly carrier_id?: string;
1606
- }
1607
-
1608
- interface Gs1Us {
1609
- readonly number: string;
1610
- readonly ship_to?: io.flow.flexe.v0.models.Gs1UsShipTo;
1611
- readonly bill_to?: io.flow.flexe.v0.models.BillTo;
1612
- }
1613
-
1614
- interface Gs1UsShipTo {
1615
- readonly cid_number?: string;
1616
- readonly location_number?: string;
1617
- readonly free_on_board?: boolean;
1618
- }
1619
-
1620
- interface Inventory {
1621
- readonly url: string;
1622
- readonly client_request_id: string;
1623
- readonly generated_at: string;
1624
- readonly data: Record<string, io.flow.flexe.v0.models.InventoryDetails>;
1625
- }
1626
-
1627
- interface InventoryCount {
1628
- readonly amount: number;
1629
- readonly unit: string;
1630
- }
1631
-
1632
- interface InventoryData {
1633
- readonly pallet: io.flow.flexe.v0.models.InventoryCount;
1634
- readonly carton?: io.flow.flexe.v0.models.InventoryCount;
1635
- readonly each?: io.flow.flexe.v0.models.InventoryCount;
1636
- }
1637
-
1638
- interface InventoryDetails {
1639
- readonly key: Record<string, io.flow.flexe.v0.models.Sku>;
1640
- }
1641
-
1642
- interface LadingQuantity {
1643
- readonly num_pallets: number;
1644
- }
1645
-
1646
- interface Order {
1647
- readonly shipment_uuid: string;
1648
- readonly purchase_order: string;
1649
- readonly carrier: string;
1650
- readonly service_type: string;
1651
- readonly carrier_assigned_id: string;
1652
- readonly name: string;
1653
- readonly address_1: string;
1654
- readonly address_2?: string;
1655
- readonly address_3?: string;
1656
- readonly city: string;
1657
- readonly state: string;
1658
- readonly postal_code: string;
1659
- readonly phone?: string;
1660
- readonly instructions?: string;
1661
- readonly inventory_data: io.flow.flexe.v0.models.FlexeInventoryData[];
1662
- readonly attachments: io.flow.flexe.v0.models.FlexeAttachment[];
1663
- }
1664
-
1665
- interface Orders {
1666
- readonly orders: io.flow.flexe.v0.models.Order[];
1667
- }
1668
-
1669
- interface Pallet {
1670
- readonly pallet_id: string;
1671
- readonly sku: string;
1672
- readonly quantity: number;
1673
- readonly packaging: string;
1674
- }
1675
-
1676
- interface PurchaseOrder {
1677
- readonly retail_fulfillment_order_id: string;
1678
- readonly bill_of_lading_number: string;
1679
- readonly purchase_order_uuid: string;
1680
- readonly pickup_window_start: string;
1681
- readonly pickup_window_end: string;
1682
- readonly tags: string[];
1683
- }
1684
-
1685
- interface QuantityByInventory {
1686
- readonly received: io.flow.flexe.v0.models.InventoryData;
1687
- readonly expected?: io.flow.flexe.v0.models.InventoryData;
1688
- readonly damaged?: io.flow.flexe.v0.models.InventoryData;
1689
- }
1690
-
1691
- interface ReceiptNotification {
1692
- readonly shipment_id: string;
1693
- readonly shipment_type: io.flow.flexe.v0.enums.FlexeShipmentType;
1694
- readonly reservation_id: string;
1695
- readonly status: io.flow.flexe.v0.enums.FlexeStatus;
1696
- readonly delivery_details?: io.flow.flexe.v0.models.DeliveryDetails;
1697
- readonly container_delivery_details?: io.flow.flexe.v0.models.ContainerDeliveryDetails;
1698
- }
1699
-
1700
- interface RetailFulfillmentOrderDetails {
1701
- readonly master_bill_of_lading_number: string;
1702
- readonly scac: string;
1703
- readonly pro_number: string;
1704
- readonly purchase_orders: io.flow.flexe.v0.models.PurchaseOrder[];
1705
- readonly lading_quantity: io.flow.flexe.v0.models.LadingQuantity;
1706
- }
1707
-
1708
- interface RetailInventoryData {
1709
- readonly sku: string;
1710
- readonly quantity: number;
1711
- readonly unit: string;
1712
- readonly attachments?: io.flow.flexe.v0.models.FlexeRetailAttachment[];
1713
- }
1714
-
1715
- interface RetailOrder {
1716
- readonly order: io.flow.flexe.v0.models.RetailOrderData;
1717
- }
1718
-
1719
- interface RetailOrderData {
1720
- readonly purchase_order_uuid: string;
1721
- readonly bill_of_lading: io.flow.flexe.v0.models.BillOfLading;
1722
- readonly inventory_data: io.flow.flexe.v0.models.RetailInventoryData[];
1723
- readonly ship_within: io.flow.flexe.v0.models.ShipWithin;
1724
- readonly ship_to: io.flow.flexe.v0.models.ShipTo;
1725
- readonly build_by?: string;
1726
- readonly instrunctions?: string;
1727
- readonly routing_details_id?: string;
1728
- readonly destination_type?: string;
1729
- }
1730
-
1731
- interface ShipTo {
1732
- readonly name: string;
1733
- readonly address_1: string;
1734
- readonly locality: string;
1735
- readonly region: string;
1736
- readonly postal_code: string;
1737
- readonly country: string;
1738
- readonly address_2?: string;
1739
- readonly address_3?: string;
1740
- }
1741
-
1742
- interface ShipWithin {
1743
- readonly start: string;
1744
- readonly end: string;
1745
- }
1746
-
1747
- interface ShipmentDeliveryDetails {
1748
- readonly shipment_uuid?: string;
1749
- }
1750
-
1751
- interface ShipmentNotification {
1752
- readonly shipment_id: string;
1753
- readonly shipment_type: io.flow.flexe.v0.enums.FlexeShipmentType;
1754
- readonly reservation_id: string;
1755
- readonly status: io.flow.flexe.v0.enums.FlexeStatus;
1756
- readonly fulfillment_order_details?: io.flow.flexe.v0.models.FulfillmentOrderDetails;
1757
- readonly retail_fulfillment_order_details?: io.flow.flexe.v0.models.RetailFulfillmentOrderDetails;
1758
- readonly delivery_details?: io.flow.flexe.v0.models.ShipmentDeliveryDetails;
1759
- readonly carton_pick_delivery_details?: io.flow.flexe.v0.models.CartonPickDeliveryDetails;
1760
- }
1761
-
1762
- interface Sku {
1763
- readonly sku: string;
1764
- readonly description: string;
1765
- readonly summary: Record<string, io.flow.flexe.v0.models.SkuSummary>;
1766
- }
1767
-
1768
- interface SkuSummary {
1769
- readonly key: string;
1770
- readonly quantity: number;
1771
- readonly unit: string;
1772
- }
1773
- }
1774
-
1775
1463
  declare namespace io.flow.payment.v0.enums {
1776
1464
  type AddressVerificationResultFieldCode =
1777
1465
  | 'matched'
@@ -5268,6 +4956,16 @@ declare namespace io.flow.external.paypal.v1.enums {
5268
4956
  | 'CUSTOMER_NOT_PRESENT_ONETIME_PURCHASE_VAULTED';
5269
4957
  type ProductReceived = 'YES' | 'NO' | 'RETURNED';
5270
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';
5271
4969
  type ReturnAcknowledgementType =
5272
4970
  | 'ITEM_RECEIVED'
5273
4971
  | 'ITEM_NOT_RECEIVED'
@@ -5690,6 +5388,31 @@ declare namespace io.flow.external.paypal.v1.models {
5690
5388
  readonly invoice_number: string;
5691
5389
  }
5692
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
+
5693
5416
  interface ReturnDetails {
5694
5417
  readonly return_time?: string;
5695
5418
  readonly mode?: io.flow.external.paypal.v1.enums.ReturnMode;
@@ -16498,6 +16221,8 @@ declare namespace io.flow.internal.v0.enums {
16498
16221
  type EventType =
16499
16222
  | 'adjusted_estimates_upserted'
16500
16223
  | 'adjusted_estimates_deleted'
16224
+ | 'final_estimate_upserted'
16225
+ | 'final_estimate_deleted'
16501
16226
  | 'adyen_authorization_deleted'
16502
16227
  | 'adyen_authorization_upserted'
16503
16228
  | 'adyen_cancel_deleted'
@@ -16508,6 +16233,8 @@ declare namespace io.flow.internal.v0.enums {
16508
16233
  | 'adyen_refund_upserted'
16509
16234
  | 'adyen_dispute_upserted'
16510
16235
  | 'adyen_dispute_deleted'
16236
+ | 'aldo_item_upserted'
16237
+ | 'aldo_item_deleted'
16511
16238
  | 'fulfillment_upserted'
16512
16239
  | 'fulfillment_deleted'
16513
16240
  | 'merchant_upserted'
@@ -18065,6 +17792,10 @@ declare namespace io.flow.internal.v0.models {
18065
17792
  readonly afterpay_refund: io.flow.internal.v0.models.AfterpayRefund;
18066
17793
  }
18067
17794
 
17795
+ interface AftershipWebhook {
17796
+ readonly placeholder?: boolean;
17797
+ }
17798
+
18068
17799
  interface AldoItem {
18069
17800
  readonly id: string;
18070
17801
  readonly number: string;
@@ -18074,6 +17805,13 @@ declare namespace io.flow.internal.v0.models {
18074
17805
  readonly added_on: string;
18075
17806
  }
18076
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
+
18077
17815
  interface AldoItemForm {
18078
17816
  readonly number: string;
18079
17817
  readonly amount: io.flow.common.v0.models.Price;
@@ -18082,6 +17820,13 @@ declare namespace io.flow.internal.v0.models {
18082
17820
  readonly added_on: string;
18083
17821
  }
18084
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
+
18085
17830
  interface AlertErrorSummary {
18086
17831
  readonly event_id: number;
18087
17832
  readonly error: string;
@@ -20558,10 +20303,6 @@ declare namespace io.flow.internal.v0.models {
20558
20303
  readonly pickup_name: string;
20559
20304
  }
20560
20305
 
20561
- interface DhlEcommerceWebhook {
20562
- readonly placeholder?: boolean;
20563
- }
20564
-
20565
20306
  interface Dict {
20566
20307
  readonly discriminator: 'dict';
20567
20308
  readonly label: io.flow.internal.v0.models.ContentLabel;
@@ -20708,6 +20449,8 @@ declare namespace io.flow.internal.v0.models {
20708
20449
  readonly reporting_category?: io.flow.internal.v0.enums.DisputeReportingCategory;
20709
20450
  readonly category?: io.flow.internal.v0.enums.DisputeCategory;
20710
20451
  readonly status?: io.flow.internal.v0.enums.DisputeStatus;
20452
+ readonly defense_outcome?: io.flow.internal.v0.enums.DisputeDefenseOutcome;
20453
+ readonly defended_at?: string;
20711
20454
  }
20712
20455
 
20713
20456
  interface DisputeRecord {
@@ -21402,6 +21145,29 @@ declare namespace io.flow.internal.v0.models {
21402
21145
  readonly negative_balance?: io.flow.internal.v0.models.Fee;
21403
21146
  }
21404
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
+
21405
21171
  interface FinanceBankAccount {
21406
21172
  readonly id: string;
21407
21173
  readonly accounts: io.flow.internal.v0.models.AccountSummary[];
@@ -21538,6 +21304,10 @@ declare namespace io.flow.internal.v0.models {
21538
21304
  readonly organization_capability?: io.flow.internal.v0.enums.OrganizationCapability;
21539
21305
  }
21540
21306
 
21307
+ interface FlexeWebhook {
21308
+ readonly placeholder?: boolean;
21309
+ }
21310
+
21541
21311
  interface FlowAccount {
21542
21312
  readonly source: io.flow.internal.v0.models.AccountSource;
21543
21313
  readonly id: string;
@@ -29006,6 +28776,10 @@ declare namespace io.flow.internal.v0.models {
29006
28776
  readonly tracking_events: io.flow.internal.v0.models.TrackingEvent[];
29007
28777
  }
29008
28778
 
28779
+ interface TrackingResync {
28780
+ readonly placeholder?: boolean;
28781
+ }
28782
+
29009
28783
  interface TrackingSubscription {
29010
28784
  readonly id: string;
29011
28785
  readonly organization_id: string;
@@ -29042,6 +28816,10 @@ declare namespace io.flow.internal.v0.models {
29042
28816
  readonly tracking: io.flow.tracking.v0.models.Tracking;
29043
28817
  }
29044
28818
 
28819
+ interface TrackingWebhook {
28820
+ readonly placeholder?: boolean;
28821
+ }
28822
+
29045
28823
  interface TransactionAdjustment {
29046
28824
  readonly id: string;
29047
28825
  readonly original_transaction: io.flow.internal.v0.models.TransactionReference;
@@ -29431,6 +29209,8 @@ declare namespace io.flow.internal.v0.unions {
29431
29209
  type Event =
29432
29210
  | io.flow.internal.v0.models.AdjustedEstimatesUpserted
29433
29211
  | io.flow.internal.v0.models.AdjustedEstimatesDeleted
29212
+ | io.flow.internal.v0.models.FinalEstimateUpserted
29213
+ | io.flow.internal.v0.models.FinalEstimateDeleted
29434
29214
  | io.flow.internal.v0.models.AdyenAuthorizationDeleted
29435
29215
  | io.flow.internal.v0.models.AdyenAuthorizationUpserted
29436
29216
  | io.flow.internal.v0.models.AdyenCancelDeleted
@@ -29441,6 +29221,8 @@ declare namespace io.flow.internal.v0.unions {
29441
29221
  | io.flow.internal.v0.models.AdyenRefundUpserted
29442
29222
  | io.flow.internal.v0.models.AdyenDisputeUpserted
29443
29223
  | io.flow.internal.v0.models.AdyenDisputeDeleted
29224
+ | io.flow.internal.v0.models.AldoItemUpserted
29225
+ | io.flow.internal.v0.models.AldoItemDeleted
29444
29226
  | io.flow.internal.v0.models.FulfillmentUpserted
29445
29227
  | io.flow.internal.v0.models.FulfillmentDeleted
29446
29228
  | io.flow.internal.v0.models.MerchantUpserted
@@ -30180,9 +29962,12 @@ export type AfterpayRefundDeleted =
30180
29962
  io.flow.internal.v0.models.AfterpayRefundDeleted;
30181
29963
  export type AfterpayRefundUpserted =
30182
29964
  io.flow.internal.v0.models.AfterpayRefundUpserted;
29965
+ export type AftershipWebhook = io.flow.internal.v0.models.AftershipWebhook;
30183
29966
  export type AldoItem = io.flow.internal.v0.models.AldoItem;
29967
+ export type AldoItemDeleted = io.flow.internal.v0.models.AldoItemDeleted;
30184
29968
  export type AldoItemForm = io.flow.internal.v0.models.AldoItemForm;
30185
29969
  export type AldoItemType = io.flow.internal.v0.enums.AldoItemType;
29970
+ export type AldoItemUpserted = io.flow.internal.v0.models.AldoItemUpserted;
30186
29971
  export type AlertErrorSummary = io.flow.internal.v0.models.AlertErrorSummary;
30187
29972
  export type AlertFailureSummary =
30188
29973
  io.flow.internal.v0.models.AlertFailureSummary;
@@ -30870,8 +30655,6 @@ export type DeminimisAdjustmentType =
30870
30655
  export type DestinationError = io.flow.internal.v0.models.DestinationError;
30871
30656
  export type Dhl = io.flow.internal.v0.models.Dhl;
30872
30657
  export type DhlEcommerce = io.flow.internal.v0.models.DhlEcommerce;
30873
- export type DhlEcommerceWebhook =
30874
- io.flow.internal.v0.models.DhlEcommerceWebhook;
30875
30658
  export type Dict = io.flow.internal.v0.models.Dict;
30876
30659
  export type DimensionEstimateOpsInput =
30877
30660
  io.flow.internal.v0.models.DimensionEstimateOpsInput;
@@ -31076,6 +30859,11 @@ export type FeedUpserted = io.flow.internal.v0.models.FeedUpserted;
31076
30859
  export type FeedsExport = io.flow.internal.v0.models.FeedsExport;
31077
30860
  export type Fees = io.flow.internal.v0.models.Fees;
31078
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;
31079
30867
  export type FinanceBankAccount = io.flow.internal.v0.models.FinanceBankAccount;
31080
30868
  export type FinanceBankAccountOwner =
31081
30869
  io.flow.internal.v0.models.FinanceBankAccountOwner;
@@ -31104,6 +30892,7 @@ export type FiservMerchantModificationForm =
31104
30892
  io.flow.internal.v0.models.FiservMerchantModificationForm;
31105
30893
  export type FiservMerchantPutForm =
31106
30894
  io.flow.internal.v0.models.FiservMerchantPutForm;
30895
+ export type FlexeWebhook = io.flow.internal.v0.models.FlexeWebhook;
31107
30896
  export type FlowAccount = io.flow.internal.v0.models.FlowAccount;
31108
30897
  export type FlowApp = io.flow.internal.v0.enums.FlowApp;
31109
30898
  export type FlowBillingStatement =
@@ -33074,6 +32863,7 @@ export type TrackingProcessingFailureClassification =
33074
32863
  io.flow.internal.v0.enums.TrackingProcessingFailureClassification;
33075
32864
  export type TrackingRequest = io.flow.internal.v0.models.TrackingRequest;
33076
32865
  export type TrackingResponse = io.flow.internal.v0.models.TrackingResponse;
32866
+ export type TrackingResync = io.flow.internal.v0.models.TrackingResync;
33077
32867
  export type TrackingSubscription =
33078
32868
  io.flow.internal.v0.models.TrackingSubscription;
33079
32869
  export type TrackingSubscriptionDeleted =
@@ -33081,6 +32871,7 @@ export type TrackingSubscriptionDeleted =
33081
32871
  export type TrackingSubscriptionUpserted =
33082
32872
  io.flow.internal.v0.models.TrackingSubscriptionUpserted;
33083
32873
  export type TrackingUpserted = io.flow.internal.v0.models.TrackingUpserted;
32874
+ export type TrackingWebhook = io.flow.internal.v0.models.TrackingWebhook;
33084
32875
  export type Transaction = io.flow.internal.v0.unions.Transaction;
33085
32876
  export type TransactionAdjustment =
33086
32877
  io.flow.internal.v0.models.TransactionAdjustment;