@crypticdot/defituna-api 1.10.4 → 1.10.6
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/index.d.mts +94 -28
- package/dist/index.d.ts +94 -28
- package/dist/index.js +457 -447
- package/dist/index.mjs +437 -427
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -40,6 +40,7 @@ declare const LimitOrderStateSchema: z.ZodEnum<{
|
|
|
40
40
|
}>;
|
|
41
41
|
declare const LimitOrder$1: z.ZodObject<{
|
|
42
42
|
address: z.ZodString;
|
|
43
|
+
orderMint: z.ZodString;
|
|
43
44
|
mintA: z.ZodObject<{
|
|
44
45
|
mint: z.ZodString;
|
|
45
46
|
symbol: z.ZodString;
|
|
@@ -973,6 +974,21 @@ declare const PoolPriceUpdate$1: z$1.ZodObject<{
|
|
|
973
974
|
sqrtPrice: z$1.ZodCoercedBigInt<unknown>;
|
|
974
975
|
time: z$1.ZodCoercedDate<unknown>;
|
|
975
976
|
}, z$1.core.$strip>;
|
|
977
|
+
declare const OrderBookWrapper: z$1.ZodObject<{
|
|
978
|
+
priceStep: z$1.ZodNumber;
|
|
979
|
+
entries: z$1.ZodArray<z$1.ZodObject<{
|
|
980
|
+
concentratedAmount: z$1.ZodCoercedBigInt<unknown>;
|
|
981
|
+
concentratedAmountQuote: z$1.ZodCoercedBigInt<unknown>;
|
|
982
|
+
concentratedTotal: z$1.ZodCoercedBigInt<unknown>;
|
|
983
|
+
concentratedTotalQuote: z$1.ZodCoercedBigInt<unknown>;
|
|
984
|
+
limitAmount: z$1.ZodCoercedBigInt<unknown>;
|
|
985
|
+
limitAmountQuote: z$1.ZodCoercedBigInt<unknown>;
|
|
986
|
+
limitTotal: z$1.ZodCoercedBigInt<unknown>;
|
|
987
|
+
limitTotalQuote: z$1.ZodCoercedBigInt<unknown>;
|
|
988
|
+
price: z$1.ZodNumber;
|
|
989
|
+
askSide: z$1.ZodBoolean;
|
|
990
|
+
}, z$1.core.$strip>>;
|
|
991
|
+
}, z$1.core.$strip>;
|
|
976
992
|
declare const StateSnapshot$1: z$1.ZodObject<{
|
|
977
993
|
slot: z$1.ZodCoercedBigInt<unknown>;
|
|
978
994
|
blockTime: z$1.ZodCoercedDate<unknown>;
|
|
@@ -1177,6 +1193,7 @@ declare const StateSnapshot$1: z$1.ZodObject<{
|
|
|
1177
1193
|
}, z$1.core.$strip>>>;
|
|
1178
1194
|
fusionLimitOrders: z$1.ZodOptional<z$1.ZodArray<z$1.ZodObject<{
|
|
1179
1195
|
address: z$1.ZodString;
|
|
1196
|
+
orderMint: z$1.ZodString;
|
|
1180
1197
|
mintA: z$1.ZodObject<{
|
|
1181
1198
|
mint: z$1.ZodString;
|
|
1182
1199
|
symbol: z$1.ZodString;
|
|
@@ -1219,6 +1236,21 @@ declare const StateSnapshot$1: z$1.ZodObject<{
|
|
|
1219
1236
|
openedAt: z$1.ZodCoercedDate<unknown>;
|
|
1220
1237
|
closedAt: z$1.ZodNullable<z$1.ZodCoercedDate<unknown>>;
|
|
1221
1238
|
}, z$1.core.$strip>>>;
|
|
1239
|
+
orderBooks: z$1.ZodOptional<z$1.ZodRecord<z$1.ZodString, z$1.ZodObject<{
|
|
1240
|
+
priceStep: z$1.ZodNumber;
|
|
1241
|
+
entries: z$1.ZodArray<z$1.ZodObject<{
|
|
1242
|
+
concentratedAmount: z$1.ZodCoercedBigInt<unknown>;
|
|
1243
|
+
concentratedAmountQuote: z$1.ZodCoercedBigInt<unknown>;
|
|
1244
|
+
concentratedTotal: z$1.ZodCoercedBigInt<unknown>;
|
|
1245
|
+
concentratedTotalQuote: z$1.ZodCoercedBigInt<unknown>;
|
|
1246
|
+
limitAmount: z$1.ZodCoercedBigInt<unknown>;
|
|
1247
|
+
limitAmountQuote: z$1.ZodCoercedBigInt<unknown>;
|
|
1248
|
+
limitTotal: z$1.ZodCoercedBigInt<unknown>;
|
|
1249
|
+
limitTotalQuote: z$1.ZodCoercedBigInt<unknown>;
|
|
1250
|
+
price: z$1.ZodNumber;
|
|
1251
|
+
askSide: z$1.ZodBoolean;
|
|
1252
|
+
}, z$1.core.$strip>>;
|
|
1253
|
+
}, z$1.core.$strip>>>;
|
|
1222
1254
|
}, z$1.core.$strip>;
|
|
1223
1255
|
|
|
1224
1256
|
declare const Mint$1: z.ZodObject<{
|
|
@@ -1229,6 +1261,34 @@ declare const Mint$1: z.ZodObject<{
|
|
|
1229
1261
|
decimals: z.ZodNumber;
|
|
1230
1262
|
}, z.core.$strip>;
|
|
1231
1263
|
|
|
1264
|
+
declare const OrderBookEntry$1: z$1.ZodObject<{
|
|
1265
|
+
concentratedAmount: z$1.ZodCoercedBigInt<unknown>;
|
|
1266
|
+
concentratedAmountQuote: z$1.ZodCoercedBigInt<unknown>;
|
|
1267
|
+
concentratedTotal: z$1.ZodCoercedBigInt<unknown>;
|
|
1268
|
+
concentratedTotalQuote: z$1.ZodCoercedBigInt<unknown>;
|
|
1269
|
+
limitAmount: z$1.ZodCoercedBigInt<unknown>;
|
|
1270
|
+
limitAmountQuote: z$1.ZodCoercedBigInt<unknown>;
|
|
1271
|
+
limitTotal: z$1.ZodCoercedBigInt<unknown>;
|
|
1272
|
+
limitTotalQuote: z$1.ZodCoercedBigInt<unknown>;
|
|
1273
|
+
price: z$1.ZodNumber;
|
|
1274
|
+
askSide: z$1.ZodBoolean;
|
|
1275
|
+
}, z$1.core.$strip>;
|
|
1276
|
+
declare const OrderBook$1: z$1.ZodObject<{
|
|
1277
|
+
entries: z$1.ZodArray<z$1.ZodObject<{
|
|
1278
|
+
concentratedAmount: z$1.ZodCoercedBigInt<unknown>;
|
|
1279
|
+
concentratedAmountQuote: z$1.ZodCoercedBigInt<unknown>;
|
|
1280
|
+
concentratedTotal: z$1.ZodCoercedBigInt<unknown>;
|
|
1281
|
+
concentratedTotalQuote: z$1.ZodCoercedBigInt<unknown>;
|
|
1282
|
+
limitAmount: z$1.ZodCoercedBigInt<unknown>;
|
|
1283
|
+
limitAmountQuote: z$1.ZodCoercedBigInt<unknown>;
|
|
1284
|
+
limitTotal: z$1.ZodCoercedBigInt<unknown>;
|
|
1285
|
+
limitTotalQuote: z$1.ZodCoercedBigInt<unknown>;
|
|
1286
|
+
price: z$1.ZodNumber;
|
|
1287
|
+
askSide: z$1.ZodBoolean;
|
|
1288
|
+
}, z$1.core.$strip>>;
|
|
1289
|
+
poolPrice: z$1.ZodNumber;
|
|
1290
|
+
}, z$1.core.$strip>;
|
|
1291
|
+
|
|
1232
1292
|
declare const NotificationEntity: {
|
|
1233
1293
|
readonly POOL_SWAP: "pool_swap";
|
|
1234
1294
|
readonly POOL_PRICE: "pool_price";
|
|
@@ -1554,33 +1614,6 @@ declare const PoolSwap$1: z.ZodObject<{
|
|
|
1554
1614
|
pool: z.ZodString;
|
|
1555
1615
|
time: z.ZodCoercedDate<unknown>;
|
|
1556
1616
|
}, z.core.$strip>;
|
|
1557
|
-
declare const OrderBookEntry$1: z.ZodObject<{
|
|
1558
|
-
concentratedAmount: z.ZodCoercedBigInt<unknown>;
|
|
1559
|
-
concentratedAmountQuote: z.ZodCoercedBigInt<unknown>;
|
|
1560
|
-
concentratedTotal: z.ZodCoercedBigInt<unknown>;
|
|
1561
|
-
concentratedTotalQuote: z.ZodCoercedBigInt<unknown>;
|
|
1562
|
-
limitAmount: z.ZodCoercedBigInt<unknown>;
|
|
1563
|
-
limitAmountQuote: z.ZodCoercedBigInt<unknown>;
|
|
1564
|
-
limitTotal: z.ZodCoercedBigInt<unknown>;
|
|
1565
|
-
limitTotalQuote: z.ZodCoercedBigInt<unknown>;
|
|
1566
|
-
price: z.ZodNumber;
|
|
1567
|
-
askSide: z.ZodBoolean;
|
|
1568
|
-
}, z.core.$strip>;
|
|
1569
|
-
declare const OrderBook$1: z.ZodObject<{
|
|
1570
|
-
entries: z.ZodArray<z.ZodObject<{
|
|
1571
|
-
concentratedAmount: z.ZodCoercedBigInt<unknown>;
|
|
1572
|
-
concentratedAmountQuote: z.ZodCoercedBigInt<unknown>;
|
|
1573
|
-
concentratedTotal: z.ZodCoercedBigInt<unknown>;
|
|
1574
|
-
concentratedTotalQuote: z.ZodCoercedBigInt<unknown>;
|
|
1575
|
-
limitAmount: z.ZodCoercedBigInt<unknown>;
|
|
1576
|
-
limitAmountQuote: z.ZodCoercedBigInt<unknown>;
|
|
1577
|
-
limitTotal: z.ZodCoercedBigInt<unknown>;
|
|
1578
|
-
limitTotalQuote: z.ZodCoercedBigInt<unknown>;
|
|
1579
|
-
price: z.ZodNumber;
|
|
1580
|
-
askSide: z.ZodBoolean;
|
|
1581
|
-
}, z.core.$strip>>;
|
|
1582
|
-
poolPrice: z.ZodNumber;
|
|
1583
|
-
}, z.core.$strip>;
|
|
1584
1617
|
declare const TradeHistoryEntry$1: z.ZodObject<{
|
|
1585
1618
|
id: z.ZodString;
|
|
1586
1619
|
pool: z.ZodString;
|
|
@@ -2670,6 +2703,7 @@ declare const StateSnapshotNotification: z.ZodObject<{
|
|
|
2670
2703
|
}, z.core.$strip>>>;
|
|
2671
2704
|
fusionLimitOrders: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2672
2705
|
address: z.ZodString;
|
|
2706
|
+
orderMint: z.ZodString;
|
|
2673
2707
|
mintA: z.ZodObject<{
|
|
2674
2708
|
mint: z.ZodString;
|
|
2675
2709
|
symbol: z.ZodString;
|
|
@@ -2712,6 +2746,21 @@ declare const StateSnapshotNotification: z.ZodObject<{
|
|
|
2712
2746
|
openedAt: z.ZodCoercedDate<unknown>;
|
|
2713
2747
|
closedAt: z.ZodNullable<z.ZodCoercedDate<unknown>>;
|
|
2714
2748
|
}, z.core.$strip>>>;
|
|
2749
|
+
orderBooks: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
2750
|
+
priceStep: z.ZodNumber;
|
|
2751
|
+
entries: z.ZodArray<z.ZodObject<{
|
|
2752
|
+
concentratedAmount: z.ZodCoercedBigInt<unknown>;
|
|
2753
|
+
concentratedAmountQuote: z.ZodCoercedBigInt<unknown>;
|
|
2754
|
+
concentratedTotal: z.ZodCoercedBigInt<unknown>;
|
|
2755
|
+
concentratedTotalQuote: z.ZodCoercedBigInt<unknown>;
|
|
2756
|
+
limitAmount: z.ZodCoercedBigInt<unknown>;
|
|
2757
|
+
limitAmountQuote: z.ZodCoercedBigInt<unknown>;
|
|
2758
|
+
limitTotal: z.ZodCoercedBigInt<unknown>;
|
|
2759
|
+
limitTotalQuote: z.ZodCoercedBigInt<unknown>;
|
|
2760
|
+
price: z.ZodNumber;
|
|
2761
|
+
askSide: z.ZodBoolean;
|
|
2762
|
+
}, z.core.$strip>>;
|
|
2763
|
+
}, z.core.$strip>>>;
|
|
2715
2764
|
}, z.core.$strip>;
|
|
2716
2765
|
id: z.ZodString;
|
|
2717
2766
|
authority: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -2938,6 +2987,7 @@ declare const StateSnapshotNotification: z.ZodObject<{
|
|
|
2938
2987
|
}, z.core.$strip>>>;
|
|
2939
2988
|
fusionLimitOrders: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2940
2989
|
address: z.ZodString;
|
|
2990
|
+
orderMint: z.ZodString;
|
|
2941
2991
|
mintA: z.ZodObject<{
|
|
2942
2992
|
mint: z.ZodString;
|
|
2943
2993
|
symbol: z.ZodString;
|
|
@@ -2980,6 +3030,21 @@ declare const StateSnapshotNotification: z.ZodObject<{
|
|
|
2980
3030
|
openedAt: z.ZodCoercedDate<unknown>;
|
|
2981
3031
|
closedAt: z.ZodNullable<z.ZodCoercedDate<unknown>>;
|
|
2982
3032
|
}, z.core.$strip>>>;
|
|
3033
|
+
orderBooks: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
3034
|
+
priceStep: z.ZodNumber;
|
|
3035
|
+
entries: z.ZodArray<z.ZodObject<{
|
|
3036
|
+
concentratedAmount: z.ZodCoercedBigInt<unknown>;
|
|
3037
|
+
concentratedAmountQuote: z.ZodCoercedBigInt<unknown>;
|
|
3038
|
+
concentratedTotal: z.ZodCoercedBigInt<unknown>;
|
|
3039
|
+
concentratedTotalQuote: z.ZodCoercedBigInt<unknown>;
|
|
3040
|
+
limitAmount: z.ZodCoercedBigInt<unknown>;
|
|
3041
|
+
limitAmountQuote: z.ZodCoercedBigInt<unknown>;
|
|
3042
|
+
limitTotal: z.ZodCoercedBigInt<unknown>;
|
|
3043
|
+
limitTotalQuote: z.ZodCoercedBigInt<unknown>;
|
|
3044
|
+
price: z.ZodNumber;
|
|
3045
|
+
askSide: z.ZodBoolean;
|
|
3046
|
+
}, z.core.$strip>>;
|
|
3047
|
+
}, z.core.$strip>>>;
|
|
2983
3048
|
}, z.core.$strip>;
|
|
2984
3049
|
id: z.ZodString;
|
|
2985
3050
|
authority: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -3003,6 +3068,7 @@ declare const schemas_NotificationActionSchema: typeof NotificationActionSchema;
|
|
|
3003
3068
|
declare const schemas_NotificationEntity: typeof NotificationEntity;
|
|
3004
3069
|
declare const schemas_NotificationEntitySchema: typeof NotificationEntitySchema;
|
|
3005
3070
|
declare const schemas_OrderBookNotification: typeof OrderBookNotification;
|
|
3071
|
+
declare const schemas_OrderBookWrapper: typeof OrderBookWrapper;
|
|
3006
3072
|
declare const schemas_OrderHistoryEntryNotification: typeof OrderHistoryEntryNotification;
|
|
3007
3073
|
declare const schemas_OrderHistoryOrderType: typeof OrderHistoryOrderType;
|
|
3008
3074
|
declare const schemas_OrderHistoryOrderTypeSchema: typeof OrderHistoryOrderTypeSchema;
|
|
@@ -3056,7 +3122,7 @@ declare const schemas_UsdPnlSchema: typeof UsdPnlSchema;
|
|
|
3056
3122
|
declare const schemas_WalletSubscriptionTopic: typeof WalletSubscriptionTopic;
|
|
3057
3123
|
declare const schemas_WalletSubscriptionTopicSchema: typeof WalletSubscriptionTopicSchema;
|
|
3058
3124
|
declare namespace schemas {
|
|
3059
|
-
export { schemas_AmountWithUsdSchema as AmountWithUsdSchema, schemas_AmountWithoutUsdSchema as AmountWithoutUsdSchema, CloseSpotPositionQuote$1 as CloseSpotPositionQuote, DecreaseSpotPositionQuote$1 as DecreaseSpotPositionQuote, FeesStatsGroup$1 as FeesStatsGroup, IncreaseSpotPositionQuote$1 as IncreaseSpotPositionQuote, LendingPosition$1 as LendingPosition, schemas_LendingPositionNotification as LendingPositionNotification, LimitOrder$1 as LimitOrder, LimitOrderQuoteByInput$1 as LimitOrderQuoteByInput, LimitOrderQuoteByOutput$1 as LimitOrderQuoteByOutput, schemas_LimitOrderState as LimitOrderState, schemas_LimitOrderStateSchema as LimitOrderStateSchema, schemas_LpPositionAutoCompound as LpPositionAutoCompound, schemas_LpPositionAutoCompoundSchema as LpPositionAutoCompoundSchema, schemas_LpPositionLimitOrderSwap as LpPositionLimitOrderSwap, schemas_LpPositionLimitOrderSwapSchema as LpPositionLimitOrderSwapSchema, schemas_LpPositionRebalance as LpPositionRebalance, schemas_LpPositionRebalanceSchema as LpPositionRebalanceSchema, schemas_LpPositionsActionType as LpPositionsActionType, schemas_LpPositionsActionTypeSchema as LpPositionsActionTypeSchema, Market$1 as Market, Mint$1 as Mint, schemas_NotificationAction as NotificationAction, schemas_NotificationActionSchema as NotificationActionSchema, schemas_NotificationEntity as NotificationEntity, schemas_NotificationEntitySchema as NotificationEntitySchema, OrderBook$1 as OrderBook, OrderBookEntry$1 as OrderBookEntry, schemas_OrderBookNotification as OrderBookNotification, OrderBookNotificationMeta$1 as OrderBookNotificationMeta, OrderHistoryEntry$1 as OrderHistoryEntry, schemas_OrderHistoryEntryNotification as OrderHistoryEntryNotification, schemas_OrderHistoryOrderType as OrderHistoryOrderType, schemas_OrderHistoryOrderTypeSchema as OrderHistoryOrderTypeSchema, schemas_OrderHistoryStatus as OrderHistoryStatus, schemas_OrderHistoryStatusSchema as OrderHistoryStatusSchema, schemas_OrderHistoryUIDirection as OrderHistoryUIDirection, schemas_OrderHistoryUIDirectionSchema as OrderHistoryUIDirectionSchema, PaginationMeta$1 as PaginationMeta, Pool$1 as Pool, PoolPriceCandle$1 as PoolPriceCandle, PoolPriceUpdate$1 as PoolPriceUpdate, schemas_PoolProvider as PoolProvider, schemas_PoolProviderSchema as PoolProviderSchema, schemas_PoolSubscriptionTopic as PoolSubscriptionTopic, schemas_PoolSubscriptionTopicSchema as PoolSubscriptionTopicSchema, PoolSwap$1 as PoolSwap, schemas_PoolSwapNotification as PoolSwapNotification, PoolTicks$1 as PoolTicks, StakingLeaderboardPage$1 as StakingLeaderboardPage, StakingLeaderboardPosition$1 as StakingLeaderboardPosition, StakingPosition$1 as StakingPosition, StakingPositionHistoryAction$1 as StakingPositionHistoryAction, StakingPositionHistoryActionType$1 as StakingPositionHistoryActionType, schemas_StakingPositionHistoryActionTypeSchema as StakingPositionHistoryActionTypeSchema, schemas_StakingPositionNotification as StakingPositionNotification, StakingRevenueStatsGroup$1 as StakingRevenueStatsGroup, StakingTreasury$1 as StakingTreasury, StateSnapshot$1 as StateSnapshot, schemas_StateSnapshotNotification as StateSnapshotNotification, SwapQuoteByInput$1 as SwapQuoteByInput, SwapQuoteByOutput$1 as SwapQuoteByOutput, Tick$1 as Tick, TokenOraclePrice$1 as TokenOraclePrice, schemas_TokensPnlSchema as TokensPnlSchema, TradableAmount$1 as TradableAmount, schemas_TradeHistoryAction as TradeHistoryAction, schemas_TradeHistoryActionSchema as TradeHistoryActionSchema, TradeHistoryEntry$1 as TradeHistoryEntry, schemas_TradeHistoryEntryNotification as TradeHistoryEntryNotification, schemas_TradeHistoryUIDirection as TradeHistoryUIDirection, schemas_TradeHistoryUIDirectionSchema as TradeHistoryUIDirectionSchema, TunaLpPositionAction$1 as TunaLpPositionAction, schemas_TunaLpPositionActionClose as TunaLpPositionActionClose, schemas_TunaLpPositionActionCollectAndCompoundFees as TunaLpPositionActionCollectAndCompoundFees, schemas_TunaLpPositionActionCollectFees as TunaLpPositionActionCollectFees, schemas_TunaLpPositionActionDecreaseLiquidity as TunaLpPositionActionDecreaseLiquidity, schemas_TunaLpPositionActionIncreaseLiquidity as TunaLpPositionActionIncreaseLiquidity, schemas_TunaLpPositionActionLiquidate as TunaLpPositionActionLiquidate, schemas_TunaLpPositionActionOpen as TunaLpPositionActionOpen, schemas_TunaLpPositionActionParametersUpdate as TunaLpPositionActionParametersUpdate, schemas_TunaLpPositionActionRepayDebt as TunaLpPositionActionRepayDebt, schemas_TunaLpPositionAutoCompounding as TunaLpPositionAutoCompounding, schemas_TunaLpPositionAutoCompoundingSchema as TunaLpPositionAutoCompoundingSchema, schemas_TunaLpPositionDtoSchema as TunaLpPositionDtoSchema, schemas_TunaLpPositionFlagsSchema as TunaLpPositionFlagsSchema, schemas_TunaLpPositionHistorical as TunaLpPositionHistorical, schemas_TunaLpPositionParameters as TunaLpPositionParameters, schemas_TunaLpPositionTokenPrices as TunaLpPositionTokenPrices, schemas_TunaLpPositionTransfer as TunaLpPositionTransfer, schemas_TunaLpPositionValue as TunaLpPositionValue, schemas_TunaPositionLegacy as TunaPositionLegacy, schemas_TunaPositionPoolSchema as TunaPositionPoolSchema, schemas_TunaPositionPoolToken as TunaPositionPoolToken, schemas_TunaPositionPoolTokenSchema as TunaPositionPoolTokenSchema, schemas_TunaPositionState as TunaPositionState, schemas_TunaPositionStateSchema as TunaPositionStateSchema, schemas_TunaPositionTokenPnlSchema as TunaPositionTokenPnlSchema, TunaSpotPosition$1 as TunaSpotPosition, schemas_TunaSpotPositionState as TunaSpotPositionState, schemas_TunaSpotPositionStateSchema as TunaSpotPositionStateSchema, schemas_UpdateStreamSubscriptionResult as UpdateStreamSubscriptionResult, schemas_UsdPnlSchema as UsdPnlSchema, Vault$1 as Vault, VaultHistoricalStats$1 as VaultHistoricalStats, schemas_WalletSubscriptionTopic as WalletSubscriptionTopic, schemas_WalletSubscriptionTopicSchema as WalletSubscriptionTopicSchema };
|
|
3125
|
+
export { schemas_AmountWithUsdSchema as AmountWithUsdSchema, schemas_AmountWithoutUsdSchema as AmountWithoutUsdSchema, CloseSpotPositionQuote$1 as CloseSpotPositionQuote, DecreaseSpotPositionQuote$1 as DecreaseSpotPositionQuote, FeesStatsGroup$1 as FeesStatsGroup, IncreaseSpotPositionQuote$1 as IncreaseSpotPositionQuote, LendingPosition$1 as LendingPosition, schemas_LendingPositionNotification as LendingPositionNotification, LimitOrder$1 as LimitOrder, LimitOrderQuoteByInput$1 as LimitOrderQuoteByInput, LimitOrderQuoteByOutput$1 as LimitOrderQuoteByOutput, schemas_LimitOrderState as LimitOrderState, schemas_LimitOrderStateSchema as LimitOrderStateSchema, schemas_LpPositionAutoCompound as LpPositionAutoCompound, schemas_LpPositionAutoCompoundSchema as LpPositionAutoCompoundSchema, schemas_LpPositionLimitOrderSwap as LpPositionLimitOrderSwap, schemas_LpPositionLimitOrderSwapSchema as LpPositionLimitOrderSwapSchema, schemas_LpPositionRebalance as LpPositionRebalance, schemas_LpPositionRebalanceSchema as LpPositionRebalanceSchema, schemas_LpPositionsActionType as LpPositionsActionType, schemas_LpPositionsActionTypeSchema as LpPositionsActionTypeSchema, Market$1 as Market, Mint$1 as Mint, schemas_NotificationAction as NotificationAction, schemas_NotificationActionSchema as NotificationActionSchema, schemas_NotificationEntity as NotificationEntity, schemas_NotificationEntitySchema as NotificationEntitySchema, OrderBook$1 as OrderBook, OrderBookEntry$1 as OrderBookEntry, schemas_OrderBookNotification as OrderBookNotification, OrderBookNotificationMeta$1 as OrderBookNotificationMeta, schemas_OrderBookWrapper as OrderBookWrapper, OrderHistoryEntry$1 as OrderHistoryEntry, schemas_OrderHistoryEntryNotification as OrderHistoryEntryNotification, schemas_OrderHistoryOrderType as OrderHistoryOrderType, schemas_OrderHistoryOrderTypeSchema as OrderHistoryOrderTypeSchema, schemas_OrderHistoryStatus as OrderHistoryStatus, schemas_OrderHistoryStatusSchema as OrderHistoryStatusSchema, schemas_OrderHistoryUIDirection as OrderHistoryUIDirection, schemas_OrderHistoryUIDirectionSchema as OrderHistoryUIDirectionSchema, PaginationMeta$1 as PaginationMeta, Pool$1 as Pool, PoolPriceCandle$1 as PoolPriceCandle, PoolPriceUpdate$1 as PoolPriceUpdate, schemas_PoolProvider as PoolProvider, schemas_PoolProviderSchema as PoolProviderSchema, schemas_PoolSubscriptionTopic as PoolSubscriptionTopic, schemas_PoolSubscriptionTopicSchema as PoolSubscriptionTopicSchema, PoolSwap$1 as PoolSwap, schemas_PoolSwapNotification as PoolSwapNotification, PoolTicks$1 as PoolTicks, StakingLeaderboardPage$1 as StakingLeaderboardPage, StakingLeaderboardPosition$1 as StakingLeaderboardPosition, StakingPosition$1 as StakingPosition, StakingPositionHistoryAction$1 as StakingPositionHistoryAction, StakingPositionHistoryActionType$1 as StakingPositionHistoryActionType, schemas_StakingPositionHistoryActionTypeSchema as StakingPositionHistoryActionTypeSchema, schemas_StakingPositionNotification as StakingPositionNotification, StakingRevenueStatsGroup$1 as StakingRevenueStatsGroup, StakingTreasury$1 as StakingTreasury, StateSnapshot$1 as StateSnapshot, schemas_StateSnapshotNotification as StateSnapshotNotification, SwapQuoteByInput$1 as SwapQuoteByInput, SwapQuoteByOutput$1 as SwapQuoteByOutput, Tick$1 as Tick, TokenOraclePrice$1 as TokenOraclePrice, schemas_TokensPnlSchema as TokensPnlSchema, TradableAmount$1 as TradableAmount, schemas_TradeHistoryAction as TradeHistoryAction, schemas_TradeHistoryActionSchema as TradeHistoryActionSchema, TradeHistoryEntry$1 as TradeHistoryEntry, schemas_TradeHistoryEntryNotification as TradeHistoryEntryNotification, schemas_TradeHistoryUIDirection as TradeHistoryUIDirection, schemas_TradeHistoryUIDirectionSchema as TradeHistoryUIDirectionSchema, TunaLpPositionAction$1 as TunaLpPositionAction, schemas_TunaLpPositionActionClose as TunaLpPositionActionClose, schemas_TunaLpPositionActionCollectAndCompoundFees as TunaLpPositionActionCollectAndCompoundFees, schemas_TunaLpPositionActionCollectFees as TunaLpPositionActionCollectFees, schemas_TunaLpPositionActionDecreaseLiquidity as TunaLpPositionActionDecreaseLiquidity, schemas_TunaLpPositionActionIncreaseLiquidity as TunaLpPositionActionIncreaseLiquidity, schemas_TunaLpPositionActionLiquidate as TunaLpPositionActionLiquidate, schemas_TunaLpPositionActionOpen as TunaLpPositionActionOpen, schemas_TunaLpPositionActionParametersUpdate as TunaLpPositionActionParametersUpdate, schemas_TunaLpPositionActionRepayDebt as TunaLpPositionActionRepayDebt, schemas_TunaLpPositionAutoCompounding as TunaLpPositionAutoCompounding, schemas_TunaLpPositionAutoCompoundingSchema as TunaLpPositionAutoCompoundingSchema, schemas_TunaLpPositionDtoSchema as TunaLpPositionDtoSchema, schemas_TunaLpPositionFlagsSchema as TunaLpPositionFlagsSchema, schemas_TunaLpPositionHistorical as TunaLpPositionHistorical, schemas_TunaLpPositionParameters as TunaLpPositionParameters, schemas_TunaLpPositionTokenPrices as TunaLpPositionTokenPrices, schemas_TunaLpPositionTransfer as TunaLpPositionTransfer, schemas_TunaLpPositionValue as TunaLpPositionValue, schemas_TunaPositionLegacy as TunaPositionLegacy, schemas_TunaPositionPoolSchema as TunaPositionPoolSchema, schemas_TunaPositionPoolToken as TunaPositionPoolToken, schemas_TunaPositionPoolTokenSchema as TunaPositionPoolTokenSchema, schemas_TunaPositionState as TunaPositionState, schemas_TunaPositionStateSchema as TunaPositionStateSchema, schemas_TunaPositionTokenPnlSchema as TunaPositionTokenPnlSchema, TunaSpotPosition$1 as TunaSpotPosition, schemas_TunaSpotPositionState as TunaSpotPositionState, schemas_TunaSpotPositionStateSchema as TunaSpotPositionStateSchema, schemas_UpdateStreamSubscriptionResult as UpdateStreamSubscriptionResult, schemas_UsdPnlSchema as UsdPnlSchema, Vault$1 as Vault, VaultHistoricalStats$1 as VaultHistoricalStats, schemas_WalletSubscriptionTopic as WalletSubscriptionTopic, schemas_WalletSubscriptionTopicSchema as WalletSubscriptionTopicSchema };
|
|
3060
3126
|
}
|
|
3061
3127
|
|
|
3062
3128
|
type NotificationEntityType = z.infer<typeof NotificationEntitySchema>;
|
package/dist/index.d.ts
CHANGED
|
@@ -40,6 +40,7 @@ declare const LimitOrderStateSchema: z.ZodEnum<{
|
|
|
40
40
|
}>;
|
|
41
41
|
declare const LimitOrder$1: z.ZodObject<{
|
|
42
42
|
address: z.ZodString;
|
|
43
|
+
orderMint: z.ZodString;
|
|
43
44
|
mintA: z.ZodObject<{
|
|
44
45
|
mint: z.ZodString;
|
|
45
46
|
symbol: z.ZodString;
|
|
@@ -973,6 +974,21 @@ declare const PoolPriceUpdate$1: z$1.ZodObject<{
|
|
|
973
974
|
sqrtPrice: z$1.ZodCoercedBigInt<unknown>;
|
|
974
975
|
time: z$1.ZodCoercedDate<unknown>;
|
|
975
976
|
}, z$1.core.$strip>;
|
|
977
|
+
declare const OrderBookWrapper: z$1.ZodObject<{
|
|
978
|
+
priceStep: z$1.ZodNumber;
|
|
979
|
+
entries: z$1.ZodArray<z$1.ZodObject<{
|
|
980
|
+
concentratedAmount: z$1.ZodCoercedBigInt<unknown>;
|
|
981
|
+
concentratedAmountQuote: z$1.ZodCoercedBigInt<unknown>;
|
|
982
|
+
concentratedTotal: z$1.ZodCoercedBigInt<unknown>;
|
|
983
|
+
concentratedTotalQuote: z$1.ZodCoercedBigInt<unknown>;
|
|
984
|
+
limitAmount: z$1.ZodCoercedBigInt<unknown>;
|
|
985
|
+
limitAmountQuote: z$1.ZodCoercedBigInt<unknown>;
|
|
986
|
+
limitTotal: z$1.ZodCoercedBigInt<unknown>;
|
|
987
|
+
limitTotalQuote: z$1.ZodCoercedBigInt<unknown>;
|
|
988
|
+
price: z$1.ZodNumber;
|
|
989
|
+
askSide: z$1.ZodBoolean;
|
|
990
|
+
}, z$1.core.$strip>>;
|
|
991
|
+
}, z$1.core.$strip>;
|
|
976
992
|
declare const StateSnapshot$1: z$1.ZodObject<{
|
|
977
993
|
slot: z$1.ZodCoercedBigInt<unknown>;
|
|
978
994
|
blockTime: z$1.ZodCoercedDate<unknown>;
|
|
@@ -1177,6 +1193,7 @@ declare const StateSnapshot$1: z$1.ZodObject<{
|
|
|
1177
1193
|
}, z$1.core.$strip>>>;
|
|
1178
1194
|
fusionLimitOrders: z$1.ZodOptional<z$1.ZodArray<z$1.ZodObject<{
|
|
1179
1195
|
address: z$1.ZodString;
|
|
1196
|
+
orderMint: z$1.ZodString;
|
|
1180
1197
|
mintA: z$1.ZodObject<{
|
|
1181
1198
|
mint: z$1.ZodString;
|
|
1182
1199
|
symbol: z$1.ZodString;
|
|
@@ -1219,6 +1236,21 @@ declare const StateSnapshot$1: z$1.ZodObject<{
|
|
|
1219
1236
|
openedAt: z$1.ZodCoercedDate<unknown>;
|
|
1220
1237
|
closedAt: z$1.ZodNullable<z$1.ZodCoercedDate<unknown>>;
|
|
1221
1238
|
}, z$1.core.$strip>>>;
|
|
1239
|
+
orderBooks: z$1.ZodOptional<z$1.ZodRecord<z$1.ZodString, z$1.ZodObject<{
|
|
1240
|
+
priceStep: z$1.ZodNumber;
|
|
1241
|
+
entries: z$1.ZodArray<z$1.ZodObject<{
|
|
1242
|
+
concentratedAmount: z$1.ZodCoercedBigInt<unknown>;
|
|
1243
|
+
concentratedAmountQuote: z$1.ZodCoercedBigInt<unknown>;
|
|
1244
|
+
concentratedTotal: z$1.ZodCoercedBigInt<unknown>;
|
|
1245
|
+
concentratedTotalQuote: z$1.ZodCoercedBigInt<unknown>;
|
|
1246
|
+
limitAmount: z$1.ZodCoercedBigInt<unknown>;
|
|
1247
|
+
limitAmountQuote: z$1.ZodCoercedBigInt<unknown>;
|
|
1248
|
+
limitTotal: z$1.ZodCoercedBigInt<unknown>;
|
|
1249
|
+
limitTotalQuote: z$1.ZodCoercedBigInt<unknown>;
|
|
1250
|
+
price: z$1.ZodNumber;
|
|
1251
|
+
askSide: z$1.ZodBoolean;
|
|
1252
|
+
}, z$1.core.$strip>>;
|
|
1253
|
+
}, z$1.core.$strip>>>;
|
|
1222
1254
|
}, z$1.core.$strip>;
|
|
1223
1255
|
|
|
1224
1256
|
declare const Mint$1: z.ZodObject<{
|
|
@@ -1229,6 +1261,34 @@ declare const Mint$1: z.ZodObject<{
|
|
|
1229
1261
|
decimals: z.ZodNumber;
|
|
1230
1262
|
}, z.core.$strip>;
|
|
1231
1263
|
|
|
1264
|
+
declare const OrderBookEntry$1: z$1.ZodObject<{
|
|
1265
|
+
concentratedAmount: z$1.ZodCoercedBigInt<unknown>;
|
|
1266
|
+
concentratedAmountQuote: z$1.ZodCoercedBigInt<unknown>;
|
|
1267
|
+
concentratedTotal: z$1.ZodCoercedBigInt<unknown>;
|
|
1268
|
+
concentratedTotalQuote: z$1.ZodCoercedBigInt<unknown>;
|
|
1269
|
+
limitAmount: z$1.ZodCoercedBigInt<unknown>;
|
|
1270
|
+
limitAmountQuote: z$1.ZodCoercedBigInt<unknown>;
|
|
1271
|
+
limitTotal: z$1.ZodCoercedBigInt<unknown>;
|
|
1272
|
+
limitTotalQuote: z$1.ZodCoercedBigInt<unknown>;
|
|
1273
|
+
price: z$1.ZodNumber;
|
|
1274
|
+
askSide: z$1.ZodBoolean;
|
|
1275
|
+
}, z$1.core.$strip>;
|
|
1276
|
+
declare const OrderBook$1: z$1.ZodObject<{
|
|
1277
|
+
entries: z$1.ZodArray<z$1.ZodObject<{
|
|
1278
|
+
concentratedAmount: z$1.ZodCoercedBigInt<unknown>;
|
|
1279
|
+
concentratedAmountQuote: z$1.ZodCoercedBigInt<unknown>;
|
|
1280
|
+
concentratedTotal: z$1.ZodCoercedBigInt<unknown>;
|
|
1281
|
+
concentratedTotalQuote: z$1.ZodCoercedBigInt<unknown>;
|
|
1282
|
+
limitAmount: z$1.ZodCoercedBigInt<unknown>;
|
|
1283
|
+
limitAmountQuote: z$1.ZodCoercedBigInt<unknown>;
|
|
1284
|
+
limitTotal: z$1.ZodCoercedBigInt<unknown>;
|
|
1285
|
+
limitTotalQuote: z$1.ZodCoercedBigInt<unknown>;
|
|
1286
|
+
price: z$1.ZodNumber;
|
|
1287
|
+
askSide: z$1.ZodBoolean;
|
|
1288
|
+
}, z$1.core.$strip>>;
|
|
1289
|
+
poolPrice: z$1.ZodNumber;
|
|
1290
|
+
}, z$1.core.$strip>;
|
|
1291
|
+
|
|
1232
1292
|
declare const NotificationEntity: {
|
|
1233
1293
|
readonly POOL_SWAP: "pool_swap";
|
|
1234
1294
|
readonly POOL_PRICE: "pool_price";
|
|
@@ -1554,33 +1614,6 @@ declare const PoolSwap$1: z.ZodObject<{
|
|
|
1554
1614
|
pool: z.ZodString;
|
|
1555
1615
|
time: z.ZodCoercedDate<unknown>;
|
|
1556
1616
|
}, z.core.$strip>;
|
|
1557
|
-
declare const OrderBookEntry$1: z.ZodObject<{
|
|
1558
|
-
concentratedAmount: z.ZodCoercedBigInt<unknown>;
|
|
1559
|
-
concentratedAmountQuote: z.ZodCoercedBigInt<unknown>;
|
|
1560
|
-
concentratedTotal: z.ZodCoercedBigInt<unknown>;
|
|
1561
|
-
concentratedTotalQuote: z.ZodCoercedBigInt<unknown>;
|
|
1562
|
-
limitAmount: z.ZodCoercedBigInt<unknown>;
|
|
1563
|
-
limitAmountQuote: z.ZodCoercedBigInt<unknown>;
|
|
1564
|
-
limitTotal: z.ZodCoercedBigInt<unknown>;
|
|
1565
|
-
limitTotalQuote: z.ZodCoercedBigInt<unknown>;
|
|
1566
|
-
price: z.ZodNumber;
|
|
1567
|
-
askSide: z.ZodBoolean;
|
|
1568
|
-
}, z.core.$strip>;
|
|
1569
|
-
declare const OrderBook$1: z.ZodObject<{
|
|
1570
|
-
entries: z.ZodArray<z.ZodObject<{
|
|
1571
|
-
concentratedAmount: z.ZodCoercedBigInt<unknown>;
|
|
1572
|
-
concentratedAmountQuote: z.ZodCoercedBigInt<unknown>;
|
|
1573
|
-
concentratedTotal: z.ZodCoercedBigInt<unknown>;
|
|
1574
|
-
concentratedTotalQuote: z.ZodCoercedBigInt<unknown>;
|
|
1575
|
-
limitAmount: z.ZodCoercedBigInt<unknown>;
|
|
1576
|
-
limitAmountQuote: z.ZodCoercedBigInt<unknown>;
|
|
1577
|
-
limitTotal: z.ZodCoercedBigInt<unknown>;
|
|
1578
|
-
limitTotalQuote: z.ZodCoercedBigInt<unknown>;
|
|
1579
|
-
price: z.ZodNumber;
|
|
1580
|
-
askSide: z.ZodBoolean;
|
|
1581
|
-
}, z.core.$strip>>;
|
|
1582
|
-
poolPrice: z.ZodNumber;
|
|
1583
|
-
}, z.core.$strip>;
|
|
1584
1617
|
declare const TradeHistoryEntry$1: z.ZodObject<{
|
|
1585
1618
|
id: z.ZodString;
|
|
1586
1619
|
pool: z.ZodString;
|
|
@@ -2670,6 +2703,7 @@ declare const StateSnapshotNotification: z.ZodObject<{
|
|
|
2670
2703
|
}, z.core.$strip>>>;
|
|
2671
2704
|
fusionLimitOrders: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2672
2705
|
address: z.ZodString;
|
|
2706
|
+
orderMint: z.ZodString;
|
|
2673
2707
|
mintA: z.ZodObject<{
|
|
2674
2708
|
mint: z.ZodString;
|
|
2675
2709
|
symbol: z.ZodString;
|
|
@@ -2712,6 +2746,21 @@ declare const StateSnapshotNotification: z.ZodObject<{
|
|
|
2712
2746
|
openedAt: z.ZodCoercedDate<unknown>;
|
|
2713
2747
|
closedAt: z.ZodNullable<z.ZodCoercedDate<unknown>>;
|
|
2714
2748
|
}, z.core.$strip>>>;
|
|
2749
|
+
orderBooks: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
2750
|
+
priceStep: z.ZodNumber;
|
|
2751
|
+
entries: z.ZodArray<z.ZodObject<{
|
|
2752
|
+
concentratedAmount: z.ZodCoercedBigInt<unknown>;
|
|
2753
|
+
concentratedAmountQuote: z.ZodCoercedBigInt<unknown>;
|
|
2754
|
+
concentratedTotal: z.ZodCoercedBigInt<unknown>;
|
|
2755
|
+
concentratedTotalQuote: z.ZodCoercedBigInt<unknown>;
|
|
2756
|
+
limitAmount: z.ZodCoercedBigInt<unknown>;
|
|
2757
|
+
limitAmountQuote: z.ZodCoercedBigInt<unknown>;
|
|
2758
|
+
limitTotal: z.ZodCoercedBigInt<unknown>;
|
|
2759
|
+
limitTotalQuote: z.ZodCoercedBigInt<unknown>;
|
|
2760
|
+
price: z.ZodNumber;
|
|
2761
|
+
askSide: z.ZodBoolean;
|
|
2762
|
+
}, z.core.$strip>>;
|
|
2763
|
+
}, z.core.$strip>>>;
|
|
2715
2764
|
}, z.core.$strip>;
|
|
2716
2765
|
id: z.ZodString;
|
|
2717
2766
|
authority: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -2938,6 +2987,7 @@ declare const StateSnapshotNotification: z.ZodObject<{
|
|
|
2938
2987
|
}, z.core.$strip>>>;
|
|
2939
2988
|
fusionLimitOrders: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2940
2989
|
address: z.ZodString;
|
|
2990
|
+
orderMint: z.ZodString;
|
|
2941
2991
|
mintA: z.ZodObject<{
|
|
2942
2992
|
mint: z.ZodString;
|
|
2943
2993
|
symbol: z.ZodString;
|
|
@@ -2980,6 +3030,21 @@ declare const StateSnapshotNotification: z.ZodObject<{
|
|
|
2980
3030
|
openedAt: z.ZodCoercedDate<unknown>;
|
|
2981
3031
|
closedAt: z.ZodNullable<z.ZodCoercedDate<unknown>>;
|
|
2982
3032
|
}, z.core.$strip>>>;
|
|
3033
|
+
orderBooks: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
3034
|
+
priceStep: z.ZodNumber;
|
|
3035
|
+
entries: z.ZodArray<z.ZodObject<{
|
|
3036
|
+
concentratedAmount: z.ZodCoercedBigInt<unknown>;
|
|
3037
|
+
concentratedAmountQuote: z.ZodCoercedBigInt<unknown>;
|
|
3038
|
+
concentratedTotal: z.ZodCoercedBigInt<unknown>;
|
|
3039
|
+
concentratedTotalQuote: z.ZodCoercedBigInt<unknown>;
|
|
3040
|
+
limitAmount: z.ZodCoercedBigInt<unknown>;
|
|
3041
|
+
limitAmountQuote: z.ZodCoercedBigInt<unknown>;
|
|
3042
|
+
limitTotal: z.ZodCoercedBigInt<unknown>;
|
|
3043
|
+
limitTotalQuote: z.ZodCoercedBigInt<unknown>;
|
|
3044
|
+
price: z.ZodNumber;
|
|
3045
|
+
askSide: z.ZodBoolean;
|
|
3046
|
+
}, z.core.$strip>>;
|
|
3047
|
+
}, z.core.$strip>>>;
|
|
2983
3048
|
}, z.core.$strip>;
|
|
2984
3049
|
id: z.ZodString;
|
|
2985
3050
|
authority: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -3003,6 +3068,7 @@ declare const schemas_NotificationActionSchema: typeof NotificationActionSchema;
|
|
|
3003
3068
|
declare const schemas_NotificationEntity: typeof NotificationEntity;
|
|
3004
3069
|
declare const schemas_NotificationEntitySchema: typeof NotificationEntitySchema;
|
|
3005
3070
|
declare const schemas_OrderBookNotification: typeof OrderBookNotification;
|
|
3071
|
+
declare const schemas_OrderBookWrapper: typeof OrderBookWrapper;
|
|
3006
3072
|
declare const schemas_OrderHistoryEntryNotification: typeof OrderHistoryEntryNotification;
|
|
3007
3073
|
declare const schemas_OrderHistoryOrderType: typeof OrderHistoryOrderType;
|
|
3008
3074
|
declare const schemas_OrderHistoryOrderTypeSchema: typeof OrderHistoryOrderTypeSchema;
|
|
@@ -3056,7 +3122,7 @@ declare const schemas_UsdPnlSchema: typeof UsdPnlSchema;
|
|
|
3056
3122
|
declare const schemas_WalletSubscriptionTopic: typeof WalletSubscriptionTopic;
|
|
3057
3123
|
declare const schemas_WalletSubscriptionTopicSchema: typeof WalletSubscriptionTopicSchema;
|
|
3058
3124
|
declare namespace schemas {
|
|
3059
|
-
export { schemas_AmountWithUsdSchema as AmountWithUsdSchema, schemas_AmountWithoutUsdSchema as AmountWithoutUsdSchema, CloseSpotPositionQuote$1 as CloseSpotPositionQuote, DecreaseSpotPositionQuote$1 as DecreaseSpotPositionQuote, FeesStatsGroup$1 as FeesStatsGroup, IncreaseSpotPositionQuote$1 as IncreaseSpotPositionQuote, LendingPosition$1 as LendingPosition, schemas_LendingPositionNotification as LendingPositionNotification, LimitOrder$1 as LimitOrder, LimitOrderQuoteByInput$1 as LimitOrderQuoteByInput, LimitOrderQuoteByOutput$1 as LimitOrderQuoteByOutput, schemas_LimitOrderState as LimitOrderState, schemas_LimitOrderStateSchema as LimitOrderStateSchema, schemas_LpPositionAutoCompound as LpPositionAutoCompound, schemas_LpPositionAutoCompoundSchema as LpPositionAutoCompoundSchema, schemas_LpPositionLimitOrderSwap as LpPositionLimitOrderSwap, schemas_LpPositionLimitOrderSwapSchema as LpPositionLimitOrderSwapSchema, schemas_LpPositionRebalance as LpPositionRebalance, schemas_LpPositionRebalanceSchema as LpPositionRebalanceSchema, schemas_LpPositionsActionType as LpPositionsActionType, schemas_LpPositionsActionTypeSchema as LpPositionsActionTypeSchema, Market$1 as Market, Mint$1 as Mint, schemas_NotificationAction as NotificationAction, schemas_NotificationActionSchema as NotificationActionSchema, schemas_NotificationEntity as NotificationEntity, schemas_NotificationEntitySchema as NotificationEntitySchema, OrderBook$1 as OrderBook, OrderBookEntry$1 as OrderBookEntry, schemas_OrderBookNotification as OrderBookNotification, OrderBookNotificationMeta$1 as OrderBookNotificationMeta, OrderHistoryEntry$1 as OrderHistoryEntry, schemas_OrderHistoryEntryNotification as OrderHistoryEntryNotification, schemas_OrderHistoryOrderType as OrderHistoryOrderType, schemas_OrderHistoryOrderTypeSchema as OrderHistoryOrderTypeSchema, schemas_OrderHistoryStatus as OrderHistoryStatus, schemas_OrderHistoryStatusSchema as OrderHistoryStatusSchema, schemas_OrderHistoryUIDirection as OrderHistoryUIDirection, schemas_OrderHistoryUIDirectionSchema as OrderHistoryUIDirectionSchema, PaginationMeta$1 as PaginationMeta, Pool$1 as Pool, PoolPriceCandle$1 as PoolPriceCandle, PoolPriceUpdate$1 as PoolPriceUpdate, schemas_PoolProvider as PoolProvider, schemas_PoolProviderSchema as PoolProviderSchema, schemas_PoolSubscriptionTopic as PoolSubscriptionTopic, schemas_PoolSubscriptionTopicSchema as PoolSubscriptionTopicSchema, PoolSwap$1 as PoolSwap, schemas_PoolSwapNotification as PoolSwapNotification, PoolTicks$1 as PoolTicks, StakingLeaderboardPage$1 as StakingLeaderboardPage, StakingLeaderboardPosition$1 as StakingLeaderboardPosition, StakingPosition$1 as StakingPosition, StakingPositionHistoryAction$1 as StakingPositionHistoryAction, StakingPositionHistoryActionType$1 as StakingPositionHistoryActionType, schemas_StakingPositionHistoryActionTypeSchema as StakingPositionHistoryActionTypeSchema, schemas_StakingPositionNotification as StakingPositionNotification, StakingRevenueStatsGroup$1 as StakingRevenueStatsGroup, StakingTreasury$1 as StakingTreasury, StateSnapshot$1 as StateSnapshot, schemas_StateSnapshotNotification as StateSnapshotNotification, SwapQuoteByInput$1 as SwapQuoteByInput, SwapQuoteByOutput$1 as SwapQuoteByOutput, Tick$1 as Tick, TokenOraclePrice$1 as TokenOraclePrice, schemas_TokensPnlSchema as TokensPnlSchema, TradableAmount$1 as TradableAmount, schemas_TradeHistoryAction as TradeHistoryAction, schemas_TradeHistoryActionSchema as TradeHistoryActionSchema, TradeHistoryEntry$1 as TradeHistoryEntry, schemas_TradeHistoryEntryNotification as TradeHistoryEntryNotification, schemas_TradeHistoryUIDirection as TradeHistoryUIDirection, schemas_TradeHistoryUIDirectionSchema as TradeHistoryUIDirectionSchema, TunaLpPositionAction$1 as TunaLpPositionAction, schemas_TunaLpPositionActionClose as TunaLpPositionActionClose, schemas_TunaLpPositionActionCollectAndCompoundFees as TunaLpPositionActionCollectAndCompoundFees, schemas_TunaLpPositionActionCollectFees as TunaLpPositionActionCollectFees, schemas_TunaLpPositionActionDecreaseLiquidity as TunaLpPositionActionDecreaseLiquidity, schemas_TunaLpPositionActionIncreaseLiquidity as TunaLpPositionActionIncreaseLiquidity, schemas_TunaLpPositionActionLiquidate as TunaLpPositionActionLiquidate, schemas_TunaLpPositionActionOpen as TunaLpPositionActionOpen, schemas_TunaLpPositionActionParametersUpdate as TunaLpPositionActionParametersUpdate, schemas_TunaLpPositionActionRepayDebt as TunaLpPositionActionRepayDebt, schemas_TunaLpPositionAutoCompounding as TunaLpPositionAutoCompounding, schemas_TunaLpPositionAutoCompoundingSchema as TunaLpPositionAutoCompoundingSchema, schemas_TunaLpPositionDtoSchema as TunaLpPositionDtoSchema, schemas_TunaLpPositionFlagsSchema as TunaLpPositionFlagsSchema, schemas_TunaLpPositionHistorical as TunaLpPositionHistorical, schemas_TunaLpPositionParameters as TunaLpPositionParameters, schemas_TunaLpPositionTokenPrices as TunaLpPositionTokenPrices, schemas_TunaLpPositionTransfer as TunaLpPositionTransfer, schemas_TunaLpPositionValue as TunaLpPositionValue, schemas_TunaPositionLegacy as TunaPositionLegacy, schemas_TunaPositionPoolSchema as TunaPositionPoolSchema, schemas_TunaPositionPoolToken as TunaPositionPoolToken, schemas_TunaPositionPoolTokenSchema as TunaPositionPoolTokenSchema, schemas_TunaPositionState as TunaPositionState, schemas_TunaPositionStateSchema as TunaPositionStateSchema, schemas_TunaPositionTokenPnlSchema as TunaPositionTokenPnlSchema, TunaSpotPosition$1 as TunaSpotPosition, schemas_TunaSpotPositionState as TunaSpotPositionState, schemas_TunaSpotPositionStateSchema as TunaSpotPositionStateSchema, schemas_UpdateStreamSubscriptionResult as UpdateStreamSubscriptionResult, schemas_UsdPnlSchema as UsdPnlSchema, Vault$1 as Vault, VaultHistoricalStats$1 as VaultHistoricalStats, schemas_WalletSubscriptionTopic as WalletSubscriptionTopic, schemas_WalletSubscriptionTopicSchema as WalletSubscriptionTopicSchema };
|
|
3125
|
+
export { schemas_AmountWithUsdSchema as AmountWithUsdSchema, schemas_AmountWithoutUsdSchema as AmountWithoutUsdSchema, CloseSpotPositionQuote$1 as CloseSpotPositionQuote, DecreaseSpotPositionQuote$1 as DecreaseSpotPositionQuote, FeesStatsGroup$1 as FeesStatsGroup, IncreaseSpotPositionQuote$1 as IncreaseSpotPositionQuote, LendingPosition$1 as LendingPosition, schemas_LendingPositionNotification as LendingPositionNotification, LimitOrder$1 as LimitOrder, LimitOrderQuoteByInput$1 as LimitOrderQuoteByInput, LimitOrderQuoteByOutput$1 as LimitOrderQuoteByOutput, schemas_LimitOrderState as LimitOrderState, schemas_LimitOrderStateSchema as LimitOrderStateSchema, schemas_LpPositionAutoCompound as LpPositionAutoCompound, schemas_LpPositionAutoCompoundSchema as LpPositionAutoCompoundSchema, schemas_LpPositionLimitOrderSwap as LpPositionLimitOrderSwap, schemas_LpPositionLimitOrderSwapSchema as LpPositionLimitOrderSwapSchema, schemas_LpPositionRebalance as LpPositionRebalance, schemas_LpPositionRebalanceSchema as LpPositionRebalanceSchema, schemas_LpPositionsActionType as LpPositionsActionType, schemas_LpPositionsActionTypeSchema as LpPositionsActionTypeSchema, Market$1 as Market, Mint$1 as Mint, schemas_NotificationAction as NotificationAction, schemas_NotificationActionSchema as NotificationActionSchema, schemas_NotificationEntity as NotificationEntity, schemas_NotificationEntitySchema as NotificationEntitySchema, OrderBook$1 as OrderBook, OrderBookEntry$1 as OrderBookEntry, schemas_OrderBookNotification as OrderBookNotification, OrderBookNotificationMeta$1 as OrderBookNotificationMeta, schemas_OrderBookWrapper as OrderBookWrapper, OrderHistoryEntry$1 as OrderHistoryEntry, schemas_OrderHistoryEntryNotification as OrderHistoryEntryNotification, schemas_OrderHistoryOrderType as OrderHistoryOrderType, schemas_OrderHistoryOrderTypeSchema as OrderHistoryOrderTypeSchema, schemas_OrderHistoryStatus as OrderHistoryStatus, schemas_OrderHistoryStatusSchema as OrderHistoryStatusSchema, schemas_OrderHistoryUIDirection as OrderHistoryUIDirection, schemas_OrderHistoryUIDirectionSchema as OrderHistoryUIDirectionSchema, PaginationMeta$1 as PaginationMeta, Pool$1 as Pool, PoolPriceCandle$1 as PoolPriceCandle, PoolPriceUpdate$1 as PoolPriceUpdate, schemas_PoolProvider as PoolProvider, schemas_PoolProviderSchema as PoolProviderSchema, schemas_PoolSubscriptionTopic as PoolSubscriptionTopic, schemas_PoolSubscriptionTopicSchema as PoolSubscriptionTopicSchema, PoolSwap$1 as PoolSwap, schemas_PoolSwapNotification as PoolSwapNotification, PoolTicks$1 as PoolTicks, StakingLeaderboardPage$1 as StakingLeaderboardPage, StakingLeaderboardPosition$1 as StakingLeaderboardPosition, StakingPosition$1 as StakingPosition, StakingPositionHistoryAction$1 as StakingPositionHistoryAction, StakingPositionHistoryActionType$1 as StakingPositionHistoryActionType, schemas_StakingPositionHistoryActionTypeSchema as StakingPositionHistoryActionTypeSchema, schemas_StakingPositionNotification as StakingPositionNotification, StakingRevenueStatsGroup$1 as StakingRevenueStatsGroup, StakingTreasury$1 as StakingTreasury, StateSnapshot$1 as StateSnapshot, schemas_StateSnapshotNotification as StateSnapshotNotification, SwapQuoteByInput$1 as SwapQuoteByInput, SwapQuoteByOutput$1 as SwapQuoteByOutput, Tick$1 as Tick, TokenOraclePrice$1 as TokenOraclePrice, schemas_TokensPnlSchema as TokensPnlSchema, TradableAmount$1 as TradableAmount, schemas_TradeHistoryAction as TradeHistoryAction, schemas_TradeHistoryActionSchema as TradeHistoryActionSchema, TradeHistoryEntry$1 as TradeHistoryEntry, schemas_TradeHistoryEntryNotification as TradeHistoryEntryNotification, schemas_TradeHistoryUIDirection as TradeHistoryUIDirection, schemas_TradeHistoryUIDirectionSchema as TradeHistoryUIDirectionSchema, TunaLpPositionAction$1 as TunaLpPositionAction, schemas_TunaLpPositionActionClose as TunaLpPositionActionClose, schemas_TunaLpPositionActionCollectAndCompoundFees as TunaLpPositionActionCollectAndCompoundFees, schemas_TunaLpPositionActionCollectFees as TunaLpPositionActionCollectFees, schemas_TunaLpPositionActionDecreaseLiquidity as TunaLpPositionActionDecreaseLiquidity, schemas_TunaLpPositionActionIncreaseLiquidity as TunaLpPositionActionIncreaseLiquidity, schemas_TunaLpPositionActionLiquidate as TunaLpPositionActionLiquidate, schemas_TunaLpPositionActionOpen as TunaLpPositionActionOpen, schemas_TunaLpPositionActionParametersUpdate as TunaLpPositionActionParametersUpdate, schemas_TunaLpPositionActionRepayDebt as TunaLpPositionActionRepayDebt, schemas_TunaLpPositionAutoCompounding as TunaLpPositionAutoCompounding, schemas_TunaLpPositionAutoCompoundingSchema as TunaLpPositionAutoCompoundingSchema, schemas_TunaLpPositionDtoSchema as TunaLpPositionDtoSchema, schemas_TunaLpPositionFlagsSchema as TunaLpPositionFlagsSchema, schemas_TunaLpPositionHistorical as TunaLpPositionHistorical, schemas_TunaLpPositionParameters as TunaLpPositionParameters, schemas_TunaLpPositionTokenPrices as TunaLpPositionTokenPrices, schemas_TunaLpPositionTransfer as TunaLpPositionTransfer, schemas_TunaLpPositionValue as TunaLpPositionValue, schemas_TunaPositionLegacy as TunaPositionLegacy, schemas_TunaPositionPoolSchema as TunaPositionPoolSchema, schemas_TunaPositionPoolToken as TunaPositionPoolToken, schemas_TunaPositionPoolTokenSchema as TunaPositionPoolTokenSchema, schemas_TunaPositionState as TunaPositionState, schemas_TunaPositionStateSchema as TunaPositionStateSchema, schemas_TunaPositionTokenPnlSchema as TunaPositionTokenPnlSchema, TunaSpotPosition$1 as TunaSpotPosition, schemas_TunaSpotPositionState as TunaSpotPositionState, schemas_TunaSpotPositionStateSchema as TunaSpotPositionStateSchema, schemas_UpdateStreamSubscriptionResult as UpdateStreamSubscriptionResult, schemas_UsdPnlSchema as UsdPnlSchema, Vault$1 as Vault, VaultHistoricalStats$1 as VaultHistoricalStats, schemas_WalletSubscriptionTopic as WalletSubscriptionTopic, schemas_WalletSubscriptionTopicSchema as WalletSubscriptionTopicSchema };
|
|
3060
3126
|
}
|
|
3061
3127
|
|
|
3062
3128
|
type NotificationEntityType = z.infer<typeof NotificationEntitySchema>;
|