@liberfi.io/types 0.4.29 → 0.4.30

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.
@@ -321,10 +321,14 @@ interface GetTradesOptions extends CursorListOptions {
321
321
  }
322
322
  /**
323
323
  * Sort field for activity list (Phase 3).
324
- * - `timestamp` — order by activity time (default, descending)
324
+ * - `timestamp` — order by activity time
325
325
  * - `totalUsd` — order by USD amount (useful for finding whale trades)
326
326
  */
327
327
  type ActivitiesSortBy = "timestamp" | "totalUsd";
328
+ /**
329
+ * Sort direction for activity list (Phase 3).
330
+ */
331
+ type ActivitiesSortDirection = "asc" | "desc";
328
332
  /**
329
333
  * Options for getting activities.
330
334
  */
@@ -342,10 +346,15 @@ interface GetActivitiesOptions extends CursorListOptions {
342
346
  /** filter activities by pool address */
343
347
  poolAddress?: string;
344
348
  /**
345
- * Sort field (Phase 3). Defaults to `timestamp` on the server. When changing
346
- * `sortBy`, the caller must discard the previous cursor and restart from page 1.
349
+ * Sort field (Phase 3). Defaults to `timestamp` on the server.
347
350
  */
348
351
  sortBy?: ActivitiesSortBy;
352
+ /**
353
+ * Sort direction (Phase 3). Defaults to `desc` on the server. When changing
354
+ * `sortBy` or `sortDirection`, the caller must discard the previous cursor
355
+ * and restart from page 1.
356
+ */
357
+ sortDirection?: ActivitiesSortDirection;
349
358
  }
350
359
 
351
360
  /**
@@ -1690,7 +1699,7 @@ interface SearchTokenCursorList extends CursorList<Token> {
1690
1699
  * - `holdingUsd` — order by holding value in USD (default, descending)
1691
1700
  * - `lastActiveAt` — order by wallet's last activity time
1692
1701
  */
1693
- type TokenHoldersSortBy = "holdingUsd" | "lastActiveAt" | "realizedPnl" | "buyVolume" | "sellVolume";
1702
+ type TokenHoldersSortBy = "amountPercentage" | "holdingUsd" | "usdValue" | "totalPnl" | "lastActiveAt" | "realizedPnl" | "unrealizedPnl" | "buyVolume" | "sellVolume" | "netflowUsd" | "createdAt";
1694
1703
  /**
1695
1704
  * Options for getting token holders (Phase 3).
1696
1705
  */
@@ -1700,19 +1709,34 @@ interface GetTokenHoldersOptions extends CursorListOptions {
1700
1709
  * Switching `sortBy` requires discarding the old cursor and restarting from page 1.
1701
1710
  */
1702
1711
  sortBy?: TokenHoldersSortBy;
1712
+ /**
1713
+ * Sort direction. Defaults to `desc` on the server.
1714
+ * Switching `sortDirection` requires discarding the old cursor and restarting from page 1.
1715
+ */
1716
+ sortDirection?: "asc" | "desc";
1703
1717
  }
1704
1718
  /**
1705
1719
  * Sort field for token top-traders query.
1706
1720
  */
1707
- type TokenTopTradersSortBy = "profit" | "buyVolume" | "sellVolume" | "lastActiveAt" | "netflowUsd";
1721
+ type TokenTopTradersSortBy = "profit" | "totalPnl" | "realizedPnl" | "unrealizedPnl" | "buyVolume" | "sellVolume" | "lastActiveAt" | "netflowUsd" | "createdAt";
1722
+ /**
1723
+ * Sort direction for token top-traders query.
1724
+ */
1725
+ type TokenTopTradersSortDirection = "asc" | "desc";
1708
1726
  /**
1709
1727
  * Options for getting token top traders.
1710
1728
  */
1711
1729
  interface GetTokenTopTradersOptions extends CursorListOptions {
1712
1730
  /**
1713
- * Sort field. Defaults to `profit` on the server.
1731
+ * Sort field. Defaults to `totalPnl` on the server.
1732
+ *
1733
+ * `profit` is kept for backward compatibility and maps to `totalPnl`.
1714
1734
  */
1715
1735
  sortBy?: TokenTopTradersSortBy;
1736
+ /**
1737
+ * Sort direction. Defaults to `desc` on the server.
1738
+ */
1739
+ sortDirection?: TokenTopTradersSortDirection;
1716
1740
  /**
1717
1741
  * Filter by wallet tag.
1718
1742
  */
@@ -2153,4 +2177,4 @@ interface ISubscribeClient {
2153
2177
  subscribeStockTokens(chain: Chain, callback: (data: Array<TokenSubscribed>) => void): ISubscription;
2154
2178
  }
2155
2179
 
2156
- export { type ActivityToken as A, type ActivitiesSortBy, type Portfolio as B, type BlockchainLatestBlock, Chain as C, type CursorList, type CursorListOptions, type CursorPagination, type WalletPnl as D, type WalletPortfolioPnls as E, type WalletPortfolios as F, type GetActivitiesOptions, type GetTokenCandlesOptions, type GetTokenHoldersOptions, type GetTokenListOptions, type GetTokenTopTradersOptions, type GetTokensByCreatorOptions, type GetTradesOptions, type GetWalletLimitOrdersOptions, type GetWalletPortfolioPnlsOptions, type IClient, type ISubscribeClient, type ISubscription, type LimitOrderSide as L, type LatestBlockParams, type PoolDex as P, type PortfolioPnlSubscribed, type PortfolioSubscribed, type PositionState, SolanaTokenProtocol as S, type SearchTokenCursorList, type SearchTokensOptions, type SendTxParams, type SendTxResult, type SwapDex, SwapMode, type SwapParams, type SwapRoute, type SwapRoutePlan, type Trade as T, type TokenFieldOption, type TokenFilterOption, type TokenHoldersSortBy, type TokenSubscribed, type TokenTopTradersSortBy, type TrendingResolution, type WalletTag as W, type WalletPnlResolution, type WalletPnlSortBy, type WalletPnlSubscribed, type ActivityDex as a, type ActivityType as b, type Activity as c, ChainNamespace as d, type LimitOrderState as e, type LimitOrder as f, type PoolBalance as g, type Pool as h, type PoolSubscribed as i, type TokenProtocol as j, SOLANA_TOKEN_PROTOCOLS as k, type Token as l, type TokenCreator as m, type TokenLaunchedFrom as n, type TokenMigratedTo as o, type TokenSocialMedias as p, type TokenStats as q, type TokenStatsByResolution as r, type TokenMarketData as s, type TokenLiquidity as t, type TokenSecurity as u, type TokenResolution as v, type TokenCandle as w, type TokenHolder as x, type TokenTopTrader as y, type PortfolioPnl as z };
2180
+ export { type ActivityToken as A, type ActivitiesSortBy, type ActivitiesSortDirection, type Portfolio as B, type BlockchainLatestBlock, Chain as C, type CursorList, type CursorListOptions, type CursorPagination, type WalletPnl as D, type WalletPortfolioPnls as E, type WalletPortfolios as F, type GetActivitiesOptions, type GetTokenCandlesOptions, type GetTokenHoldersOptions, type GetTokenListOptions, type GetTokenTopTradersOptions, type GetTokensByCreatorOptions, type GetTradesOptions, type GetWalletLimitOrdersOptions, type GetWalletPortfolioPnlsOptions, type IClient, type ISubscribeClient, type ISubscription, type LimitOrderSide as L, type LatestBlockParams, type PoolDex as P, type PortfolioPnlSubscribed, type PortfolioSubscribed, type PositionState, SolanaTokenProtocol as S, type SearchTokenCursorList, type SearchTokensOptions, type SendTxParams, type SendTxResult, type SwapDex, SwapMode, type SwapParams, type SwapRoute, type SwapRoutePlan, type Trade as T, type TokenFieldOption, type TokenFilterOption, type TokenHoldersSortBy, type TokenSubscribed, type TokenTopTradersSortBy, type TokenTopTradersSortDirection, type TrendingResolution, type WalletTag as W, type WalletPnlResolution, type WalletPnlSortBy, type WalletPnlSubscribed, type ActivityDex as a, type ActivityType as b, type Activity as c, ChainNamespace as d, type LimitOrderState as e, type LimitOrder as f, type PoolBalance as g, type Pool as h, type PoolSubscribed as i, type TokenProtocol as j, SOLANA_TOKEN_PROTOCOLS as k, type Token as l, type TokenCreator as m, type TokenLaunchedFrom as n, type TokenMigratedTo as o, type TokenSocialMedias as p, type TokenStats as q, type TokenStatsByResolution as r, type TokenMarketData as s, type TokenLiquidity as t, type TokenSecurity as u, type TokenResolution as v, type TokenCandle as w, type TokenHolder as x, type TokenTopTrader as y, type PortfolioPnl as z };
@@ -321,10 +321,14 @@ interface GetTradesOptions extends CursorListOptions {
321
321
  }
322
322
  /**
323
323
  * Sort field for activity list (Phase 3).
324
- * - `timestamp` — order by activity time (default, descending)
324
+ * - `timestamp` — order by activity time
325
325
  * - `totalUsd` — order by USD amount (useful for finding whale trades)
326
326
  */
327
327
  type ActivitiesSortBy = "timestamp" | "totalUsd";
328
+ /**
329
+ * Sort direction for activity list (Phase 3).
330
+ */
331
+ type ActivitiesSortDirection = "asc" | "desc";
328
332
  /**
329
333
  * Options for getting activities.
330
334
  */
@@ -342,10 +346,15 @@ interface GetActivitiesOptions extends CursorListOptions {
342
346
  /** filter activities by pool address */
343
347
  poolAddress?: string;
344
348
  /**
345
- * Sort field (Phase 3). Defaults to `timestamp` on the server. When changing
346
- * `sortBy`, the caller must discard the previous cursor and restart from page 1.
349
+ * Sort field (Phase 3). Defaults to `timestamp` on the server.
347
350
  */
348
351
  sortBy?: ActivitiesSortBy;
352
+ /**
353
+ * Sort direction (Phase 3). Defaults to `desc` on the server. When changing
354
+ * `sortBy` or `sortDirection`, the caller must discard the previous cursor
355
+ * and restart from page 1.
356
+ */
357
+ sortDirection?: ActivitiesSortDirection;
349
358
  }
350
359
 
351
360
  /**
@@ -1690,7 +1699,7 @@ interface SearchTokenCursorList extends CursorList<Token> {
1690
1699
  * - `holdingUsd` — order by holding value in USD (default, descending)
1691
1700
  * - `lastActiveAt` — order by wallet's last activity time
1692
1701
  */
1693
- type TokenHoldersSortBy = "holdingUsd" | "lastActiveAt" | "realizedPnl" | "buyVolume" | "sellVolume";
1702
+ type TokenHoldersSortBy = "amountPercentage" | "holdingUsd" | "usdValue" | "totalPnl" | "lastActiveAt" | "realizedPnl" | "unrealizedPnl" | "buyVolume" | "sellVolume" | "netflowUsd" | "createdAt";
1694
1703
  /**
1695
1704
  * Options for getting token holders (Phase 3).
1696
1705
  */
@@ -1700,19 +1709,34 @@ interface GetTokenHoldersOptions extends CursorListOptions {
1700
1709
  * Switching `sortBy` requires discarding the old cursor and restarting from page 1.
1701
1710
  */
1702
1711
  sortBy?: TokenHoldersSortBy;
1712
+ /**
1713
+ * Sort direction. Defaults to `desc` on the server.
1714
+ * Switching `sortDirection` requires discarding the old cursor and restarting from page 1.
1715
+ */
1716
+ sortDirection?: "asc" | "desc";
1703
1717
  }
1704
1718
  /**
1705
1719
  * Sort field for token top-traders query.
1706
1720
  */
1707
- type TokenTopTradersSortBy = "profit" | "buyVolume" | "sellVolume" | "lastActiveAt" | "netflowUsd";
1721
+ type TokenTopTradersSortBy = "profit" | "totalPnl" | "realizedPnl" | "unrealizedPnl" | "buyVolume" | "sellVolume" | "lastActiveAt" | "netflowUsd" | "createdAt";
1722
+ /**
1723
+ * Sort direction for token top-traders query.
1724
+ */
1725
+ type TokenTopTradersSortDirection = "asc" | "desc";
1708
1726
  /**
1709
1727
  * Options for getting token top traders.
1710
1728
  */
1711
1729
  interface GetTokenTopTradersOptions extends CursorListOptions {
1712
1730
  /**
1713
- * Sort field. Defaults to `profit` on the server.
1731
+ * Sort field. Defaults to `totalPnl` on the server.
1732
+ *
1733
+ * `profit` is kept for backward compatibility and maps to `totalPnl`.
1714
1734
  */
1715
1735
  sortBy?: TokenTopTradersSortBy;
1736
+ /**
1737
+ * Sort direction. Defaults to `desc` on the server.
1738
+ */
1739
+ sortDirection?: TokenTopTradersSortDirection;
1716
1740
  /**
1717
1741
  * Filter by wallet tag.
1718
1742
  */
@@ -2153,4 +2177,4 @@ interface ISubscribeClient {
2153
2177
  subscribeStockTokens(chain: Chain, callback: (data: Array<TokenSubscribed>) => void): ISubscription;
2154
2178
  }
2155
2179
 
2156
- export { type ActivityToken as A, type ActivitiesSortBy, type Portfolio as B, type BlockchainLatestBlock, Chain as C, type CursorList, type CursorListOptions, type CursorPagination, type WalletPnl as D, type WalletPortfolioPnls as E, type WalletPortfolios as F, type GetActivitiesOptions, type GetTokenCandlesOptions, type GetTokenHoldersOptions, type GetTokenListOptions, type GetTokenTopTradersOptions, type GetTokensByCreatorOptions, type GetTradesOptions, type GetWalletLimitOrdersOptions, type GetWalletPortfolioPnlsOptions, type IClient, type ISubscribeClient, type ISubscription, type LimitOrderSide as L, type LatestBlockParams, type PoolDex as P, type PortfolioPnlSubscribed, type PortfolioSubscribed, type PositionState, SolanaTokenProtocol as S, type SearchTokenCursorList, type SearchTokensOptions, type SendTxParams, type SendTxResult, type SwapDex, SwapMode, type SwapParams, type SwapRoute, type SwapRoutePlan, type Trade as T, type TokenFieldOption, type TokenFilterOption, type TokenHoldersSortBy, type TokenSubscribed, type TokenTopTradersSortBy, type TrendingResolution, type WalletTag as W, type WalletPnlResolution, type WalletPnlSortBy, type WalletPnlSubscribed, type ActivityDex as a, type ActivityType as b, type Activity as c, ChainNamespace as d, type LimitOrderState as e, type LimitOrder as f, type PoolBalance as g, type Pool as h, type PoolSubscribed as i, type TokenProtocol as j, SOLANA_TOKEN_PROTOCOLS as k, type Token as l, type TokenCreator as m, type TokenLaunchedFrom as n, type TokenMigratedTo as o, type TokenSocialMedias as p, type TokenStats as q, type TokenStatsByResolution as r, type TokenMarketData as s, type TokenLiquidity as t, type TokenSecurity as u, type TokenResolution as v, type TokenCandle as w, type TokenHolder as x, type TokenTopTrader as y, type PortfolioPnl as z };
2180
+ export { type ActivityToken as A, type ActivitiesSortBy, type ActivitiesSortDirection, type Portfolio as B, type BlockchainLatestBlock, Chain as C, type CursorList, type CursorListOptions, type CursorPagination, type WalletPnl as D, type WalletPortfolioPnls as E, type WalletPortfolios as F, type GetActivitiesOptions, type GetTokenCandlesOptions, type GetTokenHoldersOptions, type GetTokenListOptions, type GetTokenTopTradersOptions, type GetTokensByCreatorOptions, type GetTradesOptions, type GetWalletLimitOrdersOptions, type GetWalletPortfolioPnlsOptions, type IClient, type ISubscribeClient, type ISubscription, type LimitOrderSide as L, type LatestBlockParams, type PoolDex as P, type PortfolioPnlSubscribed, type PortfolioSubscribed, type PositionState, SolanaTokenProtocol as S, type SearchTokenCursorList, type SearchTokensOptions, type SendTxParams, type SendTxResult, type SwapDex, SwapMode, type SwapParams, type SwapRoute, type SwapRoutePlan, type Trade as T, type TokenFieldOption, type TokenFilterOption, type TokenHoldersSortBy, type TokenSubscribed, type TokenTopTradersSortBy, type TokenTopTradersSortDirection, type TrendingResolution, type WalletTag as W, type WalletPnlResolution, type WalletPnlSortBy, type WalletPnlSubscribed, type ActivityDex as a, type ActivityType as b, type Activity as c, ChainNamespace as d, type LimitOrderState as e, type LimitOrder as f, type PoolBalance as g, type Pool as h, type PoolSubscribed as i, type TokenProtocol as j, SOLANA_TOKEN_PROTOCOLS as k, type Token as l, type TokenCreator as m, type TokenLaunchedFrom as n, type TokenMigratedTo as o, type TokenSocialMedias as p, type TokenStats as q, type TokenStatsByResolution as r, type TokenMarketData as s, type TokenLiquidity as t, type TokenSecurity as u, type TokenResolution as v, type TokenCandle as w, type TokenHolder as x, type TokenTopTrader as y, type PortfolioPnl as z };
package/dist/index.d.mts CHANGED
@@ -1 +1 @@
1
- export { ActivitiesSortBy, c as Activity, a as ActivityDex, A as ActivityToken, b as ActivityType, BlockchainLatestBlock, C as Chain, d as ChainNamespace, CursorList, CursorListOptions, CursorPagination, GetActivitiesOptions, GetTokenCandlesOptions, GetTokenHoldersOptions, GetTokenListOptions, GetTokenTopTradersOptions, GetTokensByCreatorOptions, GetTradesOptions, GetWalletLimitOrdersOptions, GetWalletPortfolioPnlsOptions, IClient, ISubscribeClient, ISubscription, LatestBlockParams, f as LimitOrder, L as LimitOrderSide, e as LimitOrderState, h as Pool, g as PoolBalance, P as PoolDex, i as PoolSubscribed, B as Portfolio, z as PortfolioPnl, PortfolioPnlSubscribed, PortfolioSubscribed, PositionState, k as SOLANA_TOKEN_PROTOCOLS, SearchTokenCursorList, SearchTokensOptions, SendTxParams, SendTxResult, S as SolanaTokenProtocol, SwapDex, SwapMode, SwapParams, SwapRoute, SwapRoutePlan, l as Token, w as TokenCandle, m as TokenCreator, TokenFieldOption, TokenFilterOption, x as TokenHolder, TokenHoldersSortBy, n as TokenLaunchedFrom, t as TokenLiquidity, s as TokenMarketData, o as TokenMigratedTo, j as TokenProtocol, v as TokenResolution, u as TokenSecurity, p as TokenSocialMedias, q as TokenStats, r as TokenStatsByResolution, TokenSubscribed, y as TokenTopTrader, TokenTopTradersSortBy, T as Trade, TrendingResolution, D as WalletPnl, WalletPnlResolution, WalletPnlSortBy, WalletPnlSubscribed, E as WalletPortfolioPnls, F as WalletPortfolios, W as WalletTag } from './api/index.mjs';
1
+ export { ActivitiesSortBy, ActivitiesSortDirection, c as Activity, a as ActivityDex, A as ActivityToken, b as ActivityType, BlockchainLatestBlock, C as Chain, d as ChainNamespace, CursorList, CursorListOptions, CursorPagination, GetActivitiesOptions, GetTokenCandlesOptions, GetTokenHoldersOptions, GetTokenListOptions, GetTokenTopTradersOptions, GetTokensByCreatorOptions, GetTradesOptions, GetWalletLimitOrdersOptions, GetWalletPortfolioPnlsOptions, IClient, ISubscribeClient, ISubscription, LatestBlockParams, f as LimitOrder, L as LimitOrderSide, e as LimitOrderState, h as Pool, g as PoolBalance, P as PoolDex, i as PoolSubscribed, B as Portfolio, z as PortfolioPnl, PortfolioPnlSubscribed, PortfolioSubscribed, PositionState, k as SOLANA_TOKEN_PROTOCOLS, SearchTokenCursorList, SearchTokensOptions, SendTxParams, SendTxResult, S as SolanaTokenProtocol, SwapDex, SwapMode, SwapParams, SwapRoute, SwapRoutePlan, l as Token, w as TokenCandle, m as TokenCreator, TokenFieldOption, TokenFilterOption, x as TokenHolder, TokenHoldersSortBy, n as TokenLaunchedFrom, t as TokenLiquidity, s as TokenMarketData, o as TokenMigratedTo, j as TokenProtocol, v as TokenResolution, u as TokenSecurity, p as TokenSocialMedias, q as TokenStats, r as TokenStatsByResolution, TokenSubscribed, y as TokenTopTrader, TokenTopTradersSortBy, TokenTopTradersSortDirection, T as Trade, TrendingResolution, D as WalletPnl, WalletPnlResolution, WalletPnlSortBy, WalletPnlSubscribed, E as WalletPortfolioPnls, F as WalletPortfolios, W as WalletTag } from './api/index.mjs';
package/dist/index.d.ts CHANGED
@@ -1 +1 @@
1
- export { ActivitiesSortBy, c as Activity, a as ActivityDex, A as ActivityToken, b as ActivityType, BlockchainLatestBlock, C as Chain, d as ChainNamespace, CursorList, CursorListOptions, CursorPagination, GetActivitiesOptions, GetTokenCandlesOptions, GetTokenHoldersOptions, GetTokenListOptions, GetTokenTopTradersOptions, GetTokensByCreatorOptions, GetTradesOptions, GetWalletLimitOrdersOptions, GetWalletPortfolioPnlsOptions, IClient, ISubscribeClient, ISubscription, LatestBlockParams, f as LimitOrder, L as LimitOrderSide, e as LimitOrderState, h as Pool, g as PoolBalance, P as PoolDex, i as PoolSubscribed, B as Portfolio, z as PortfolioPnl, PortfolioPnlSubscribed, PortfolioSubscribed, PositionState, k as SOLANA_TOKEN_PROTOCOLS, SearchTokenCursorList, SearchTokensOptions, SendTxParams, SendTxResult, S as SolanaTokenProtocol, SwapDex, SwapMode, SwapParams, SwapRoute, SwapRoutePlan, l as Token, w as TokenCandle, m as TokenCreator, TokenFieldOption, TokenFilterOption, x as TokenHolder, TokenHoldersSortBy, n as TokenLaunchedFrom, t as TokenLiquidity, s as TokenMarketData, o as TokenMigratedTo, j as TokenProtocol, v as TokenResolution, u as TokenSecurity, p as TokenSocialMedias, q as TokenStats, r as TokenStatsByResolution, TokenSubscribed, y as TokenTopTrader, TokenTopTradersSortBy, T as Trade, TrendingResolution, D as WalletPnl, WalletPnlResolution, WalletPnlSortBy, WalletPnlSubscribed, E as WalletPortfolioPnls, F as WalletPortfolios, W as WalletTag } from './api/index.js';
1
+ export { ActivitiesSortBy, ActivitiesSortDirection, c as Activity, a as ActivityDex, A as ActivityToken, b as ActivityType, BlockchainLatestBlock, C as Chain, d as ChainNamespace, CursorList, CursorListOptions, CursorPagination, GetActivitiesOptions, GetTokenCandlesOptions, GetTokenHoldersOptions, GetTokenListOptions, GetTokenTopTradersOptions, GetTokensByCreatorOptions, GetTradesOptions, GetWalletLimitOrdersOptions, GetWalletPortfolioPnlsOptions, IClient, ISubscribeClient, ISubscription, LatestBlockParams, f as LimitOrder, L as LimitOrderSide, e as LimitOrderState, h as Pool, g as PoolBalance, P as PoolDex, i as PoolSubscribed, B as Portfolio, z as PortfolioPnl, PortfolioPnlSubscribed, PortfolioSubscribed, PositionState, k as SOLANA_TOKEN_PROTOCOLS, SearchTokenCursorList, SearchTokensOptions, SendTxParams, SendTxResult, S as SolanaTokenProtocol, SwapDex, SwapMode, SwapParams, SwapRoute, SwapRoutePlan, l as Token, w as TokenCandle, m as TokenCreator, TokenFieldOption, TokenFilterOption, x as TokenHolder, TokenHoldersSortBy, n as TokenLaunchedFrom, t as TokenLiquidity, s as TokenMarketData, o as TokenMigratedTo, j as TokenProtocol, v as TokenResolution, u as TokenSecurity, p as TokenSocialMedias, q as TokenStats, r as TokenStatsByResolution, TokenSubscribed, y as TokenTopTrader, TokenTopTradersSortBy, TokenTopTradersSortDirection, T as Trade, TrendingResolution, D as WalletPnl, WalletPnlResolution, WalletPnlSortBy, WalletPnlSubscribed, E as WalletPortfolioPnls, F as WalletPortfolios, W as WalletTag } from './api/index.js';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@liberfi.io/types",
3
- "version": "0.4.29",
3
+ "version": "0.4.30",
4
4
  "description": "Liberfi React SDK types",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
@@ -24,7 +24,7 @@
24
24
  "devDependencies": {
25
25
  "tsup": "^8.5.0",
26
26
  "typedoc": "^0.28.12",
27
- "tsconfig": "0.1.212"
27
+ "tsconfig": "0.1.213"
28
28
  },
29
29
  "publishConfig": {
30
30
  "access": "public"