@crypticdot/defituna-api 4.3.0 → 4.3.1

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.cjs CHANGED
@@ -265,7 +265,6 @@ __export(index_exports, {
265
265
  zTokenPairPriceResponseDto: () => zTokenPairPriceResponseDto,
266
266
  zTokenPriceDto: () => zTokenPriceDto,
267
267
  zTokenSearchItemDto: () => zTokenSearchItemDto,
268
- zTokenSearchResponseDto: () => zTokenSearchResponseDto,
269
268
  zTokenStatsWindowDto: () => zTokenStatsWindowDto,
270
269
  zTokensError400BadRequest: () => zTokensError400BadRequest,
271
270
  zTokensError400Error: () => zTokensError400Error,
@@ -9496,9 +9495,6 @@ var zTokenSearchItemDto = object({
9496
9495
  _null3()
9497
9496
  ]))
9498
9497
  });
9499
- var zTokenSearchResponseDto = object({
9500
- items: array(zTokenSearchItemDto)
9501
- });
9502
9498
  var zTokensError400BadRequest = object({
9503
9499
  code: _enum(["bad_request"])
9504
9500
  });
@@ -10905,11 +10901,11 @@ var zSearchTokensData = object({
10905
10901
  body: optional(never()),
10906
10902
  path: optional(never()),
10907
10903
  query: object({
10908
- q: string2()
10904
+ q: string2().min(2).max(44)
10909
10905
  })
10910
10906
  });
10911
10907
  var zSearchTokensResponse = object({
10912
- data: zTokenSearchResponseDto
10908
+ data: array(zTokenSearchItemDto)
10913
10909
  });
10914
10910
  var zGetLendingPositionsData = object({
10915
10911
  body: optional(never()),
@@ -12241,7 +12237,6 @@ async function unwrap(promise2) {
12241
12237
  zTokenPairPriceResponseDto,
12242
12238
  zTokenPriceDto,
12243
12239
  zTokenSearchItemDto,
12244
- zTokenSearchResponseDto,
12245
12240
  zTokenStatsWindowDto,
12246
12241
  zTokensError400BadRequest,
12247
12242
  zTokensError400Error,
package/dist/index.d.cts CHANGED
@@ -1247,9 +1247,6 @@ type TokenSearchItemDto = {
1247
1247
  updatedAt?: string | null;
1248
1248
  usdPrice?: number | null;
1249
1249
  };
1250
- type TokenSearchResponseDto = {
1251
- items: Array<TokenSearchItemDto>;
1252
- };
1253
1250
  type TokenStatsWindowDto = {
1254
1251
  buyOrganicVolume?: number | null;
1255
1252
  buyVolume?: number | null;
@@ -2536,7 +2533,7 @@ type SearchTokensErrors = {
2536
2533
  type SearchTokensError = SearchTokensErrors[keyof SearchTokensErrors];
2537
2534
  type SearchTokensResponses = {
2538
2535
  200: {
2539
- data: TokenSearchResponseDto;
2536
+ data: Array<TokenSearchItemDto>;
2540
2537
  };
2541
2538
  };
2542
2539
  type SearchTokensResponse = SearchTokensResponses[keyof SearchTokensResponses];
@@ -4066,94 +4063,6 @@ declare const zTokenSearchItemDto: z.ZodObject<{
4066
4063
  updatedAt: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
4067
4064
  usdPrice: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
4068
4065
  }, z.core.$strip>;
4069
- declare const zTokenSearchResponseDto: z.ZodObject<{
4070
- items: z.ZodArray<z.ZodObject<{
4071
- audit: z.ZodOptional<z.ZodUnion<readonly [z.ZodNull, z.ZodObject<{
4072
- freezeAuthorityDisabled: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodNull]>>;
4073
- mintAuthorityDisabled: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodNull]>>;
4074
- topHoldersPercentage: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
4075
- }, z.core.$strip>]>>;
4076
- circSupply: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
4077
- decimals: z.ZodInt;
4078
- fdv: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
4079
- firstPool: z.ZodOptional<z.ZodUnion<readonly [z.ZodNull, z.ZodObject<{
4080
- createdAt: z.ZodString;
4081
- id: z.ZodString;
4082
- }, z.core.$strip>]>>;
4083
- holderCount: z.ZodOptional<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodNull]>>;
4084
- iconUrl: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
4085
- isVerified: z.ZodBoolean;
4086
- liquidity: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
4087
- mcap: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
4088
- mint: z.ZodString;
4089
- name: z.ZodString;
4090
- organicScore: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
4091
- organicScoreLabel: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
4092
- priceBlockId: z.ZodOptional<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodNull]>>;
4093
- stats1h: z.ZodOptional<z.ZodUnion<readonly [z.ZodNull, z.ZodObject<{
4094
- buyOrganicVolume: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
4095
- buyVolume: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
4096
- liquidityChange: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
4097
- numBuys: z.ZodOptional<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodNull]>>;
4098
- numNetBuyers: z.ZodOptional<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodNull]>>;
4099
- numOrganicBuyers: z.ZodOptional<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodNull]>>;
4100
- numSells: z.ZodOptional<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodNull]>>;
4101
- numTraders: z.ZodOptional<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodNull]>>;
4102
- priceChange: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
4103
- sellOrganicVolume: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
4104
- sellVolume: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
4105
- volumeChange: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
4106
- }, z.core.$strip>]>>;
4107
- stats24h: z.ZodOptional<z.ZodUnion<readonly [z.ZodNull, z.ZodObject<{
4108
- buyOrganicVolume: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
4109
- buyVolume: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
4110
- liquidityChange: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
4111
- numBuys: z.ZodOptional<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodNull]>>;
4112
- numNetBuyers: z.ZodOptional<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodNull]>>;
4113
- numOrganicBuyers: z.ZodOptional<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodNull]>>;
4114
- numSells: z.ZodOptional<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodNull]>>;
4115
- numTraders: z.ZodOptional<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodNull]>>;
4116
- priceChange: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
4117
- sellOrganicVolume: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
4118
- sellVolume: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
4119
- volumeChange: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
4120
- }, z.core.$strip>]>>;
4121
- stats5m: z.ZodOptional<z.ZodUnion<readonly [z.ZodNull, z.ZodObject<{
4122
- buyOrganicVolume: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
4123
- buyVolume: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
4124
- liquidityChange: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
4125
- numBuys: z.ZodOptional<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodNull]>>;
4126
- numNetBuyers: z.ZodOptional<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodNull]>>;
4127
- numOrganicBuyers: z.ZodOptional<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodNull]>>;
4128
- numSells: z.ZodOptional<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodNull]>>;
4129
- numTraders: z.ZodOptional<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodNull]>>;
4130
- priceChange: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
4131
- sellOrganicVolume: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
4132
- sellVolume: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
4133
- volumeChange: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
4134
- }, z.core.$strip>]>>;
4135
- stats6h: z.ZodOptional<z.ZodUnion<readonly [z.ZodNull, z.ZodObject<{
4136
- buyOrganicVolume: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
4137
- buyVolume: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
4138
- liquidityChange: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
4139
- numBuys: z.ZodOptional<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodNull]>>;
4140
- numNetBuyers: z.ZodOptional<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodNull]>>;
4141
- numOrganicBuyers: z.ZodOptional<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodNull]>>;
4142
- numSells: z.ZodOptional<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodNull]>>;
4143
- numTraders: z.ZodOptional<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodNull]>>;
4144
- priceChange: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
4145
- sellOrganicVolume: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
4146
- sellVolume: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
4147
- volumeChange: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
4148
- }, z.core.$strip>]>>;
4149
- symbol: z.ZodString;
4150
- tags: z.ZodArray<z.ZodString>;
4151
- tokenProgram: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
4152
- totalSupply: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
4153
- updatedAt: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
4154
- usdPrice: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
4155
- }, z.core.$strip>>;
4156
- }, z.core.$strip>;
4157
4066
  declare const zTokensError400BadRequest: z.ZodObject<{
4158
4067
  code: z.ZodEnum<{
4159
4068
  bad_request: "bad_request";
@@ -12513,94 +12422,92 @@ declare const zSearchTokensData: z.ZodObject<{
12513
12422
  }, z.core.$strip>;
12514
12423
  }, z.core.$strip>;
12515
12424
  declare const zSearchTokensResponse: z.ZodObject<{
12516
- data: z.ZodObject<{
12517
- items: z.ZodArray<z.ZodObject<{
12518
- audit: z.ZodOptional<z.ZodUnion<readonly [z.ZodNull, z.ZodObject<{
12519
- freezeAuthorityDisabled: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodNull]>>;
12520
- mintAuthorityDisabled: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodNull]>>;
12521
- topHoldersPercentage: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
12522
- }, z.core.$strip>]>>;
12523
- circSupply: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
12524
- decimals: z.ZodInt;
12525
- fdv: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
12526
- firstPool: z.ZodOptional<z.ZodUnion<readonly [z.ZodNull, z.ZodObject<{
12527
- createdAt: z.ZodString;
12528
- id: z.ZodString;
12529
- }, z.core.$strip>]>>;
12530
- holderCount: z.ZodOptional<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodNull]>>;
12531
- iconUrl: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
12532
- isVerified: z.ZodBoolean;
12533
- liquidity: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
12534
- mcap: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
12535
- mint: z.ZodString;
12536
- name: z.ZodString;
12537
- organicScore: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
12538
- organicScoreLabel: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
12539
- priceBlockId: z.ZodOptional<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodNull]>>;
12540
- stats1h: z.ZodOptional<z.ZodUnion<readonly [z.ZodNull, z.ZodObject<{
12541
- buyOrganicVolume: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
12542
- buyVolume: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
12543
- liquidityChange: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
12544
- numBuys: z.ZodOptional<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodNull]>>;
12545
- numNetBuyers: z.ZodOptional<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodNull]>>;
12546
- numOrganicBuyers: z.ZodOptional<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodNull]>>;
12547
- numSells: z.ZodOptional<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodNull]>>;
12548
- numTraders: z.ZodOptional<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodNull]>>;
12549
- priceChange: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
12550
- sellOrganicVolume: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
12551
- sellVolume: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
12552
- volumeChange: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
12553
- }, z.core.$strip>]>>;
12554
- stats24h: z.ZodOptional<z.ZodUnion<readonly [z.ZodNull, z.ZodObject<{
12555
- buyOrganicVolume: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
12556
- buyVolume: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
12557
- liquidityChange: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
12558
- numBuys: z.ZodOptional<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodNull]>>;
12559
- numNetBuyers: z.ZodOptional<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodNull]>>;
12560
- numOrganicBuyers: z.ZodOptional<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodNull]>>;
12561
- numSells: z.ZodOptional<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodNull]>>;
12562
- numTraders: z.ZodOptional<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodNull]>>;
12563
- priceChange: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
12564
- sellOrganicVolume: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
12565
- sellVolume: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
12566
- volumeChange: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
12567
- }, z.core.$strip>]>>;
12568
- stats5m: z.ZodOptional<z.ZodUnion<readonly [z.ZodNull, z.ZodObject<{
12569
- buyOrganicVolume: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
12570
- buyVolume: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
12571
- liquidityChange: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
12572
- numBuys: z.ZodOptional<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodNull]>>;
12573
- numNetBuyers: z.ZodOptional<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodNull]>>;
12574
- numOrganicBuyers: z.ZodOptional<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodNull]>>;
12575
- numSells: z.ZodOptional<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodNull]>>;
12576
- numTraders: z.ZodOptional<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodNull]>>;
12577
- priceChange: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
12578
- sellOrganicVolume: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
12579
- sellVolume: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
12580
- volumeChange: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
12581
- }, z.core.$strip>]>>;
12582
- stats6h: z.ZodOptional<z.ZodUnion<readonly [z.ZodNull, z.ZodObject<{
12583
- buyOrganicVolume: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
12584
- buyVolume: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
12585
- liquidityChange: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
12586
- numBuys: z.ZodOptional<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodNull]>>;
12587
- numNetBuyers: z.ZodOptional<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodNull]>>;
12588
- numOrganicBuyers: z.ZodOptional<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodNull]>>;
12589
- numSells: z.ZodOptional<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodNull]>>;
12590
- numTraders: z.ZodOptional<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodNull]>>;
12591
- priceChange: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
12592
- sellOrganicVolume: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
12593
- sellVolume: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
12594
- volumeChange: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
12595
- }, z.core.$strip>]>>;
12596
- symbol: z.ZodString;
12597
- tags: z.ZodArray<z.ZodString>;
12598
- tokenProgram: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
12599
- totalSupply: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
12600
- updatedAt: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
12601
- usdPrice: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
12602
- }, z.core.$strip>>;
12603
- }, z.core.$strip>;
12425
+ data: z.ZodArray<z.ZodObject<{
12426
+ audit: z.ZodOptional<z.ZodUnion<readonly [z.ZodNull, z.ZodObject<{
12427
+ freezeAuthorityDisabled: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodNull]>>;
12428
+ mintAuthorityDisabled: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodNull]>>;
12429
+ topHoldersPercentage: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
12430
+ }, z.core.$strip>]>>;
12431
+ circSupply: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
12432
+ decimals: z.ZodInt;
12433
+ fdv: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
12434
+ firstPool: z.ZodOptional<z.ZodUnion<readonly [z.ZodNull, z.ZodObject<{
12435
+ createdAt: z.ZodString;
12436
+ id: z.ZodString;
12437
+ }, z.core.$strip>]>>;
12438
+ holderCount: z.ZodOptional<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodNull]>>;
12439
+ iconUrl: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
12440
+ isVerified: z.ZodBoolean;
12441
+ liquidity: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
12442
+ mcap: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
12443
+ mint: z.ZodString;
12444
+ name: z.ZodString;
12445
+ organicScore: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
12446
+ organicScoreLabel: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
12447
+ priceBlockId: z.ZodOptional<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodNull]>>;
12448
+ stats1h: z.ZodOptional<z.ZodUnion<readonly [z.ZodNull, z.ZodObject<{
12449
+ buyOrganicVolume: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
12450
+ buyVolume: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
12451
+ liquidityChange: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
12452
+ numBuys: z.ZodOptional<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodNull]>>;
12453
+ numNetBuyers: z.ZodOptional<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodNull]>>;
12454
+ numOrganicBuyers: z.ZodOptional<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodNull]>>;
12455
+ numSells: z.ZodOptional<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodNull]>>;
12456
+ numTraders: z.ZodOptional<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodNull]>>;
12457
+ priceChange: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
12458
+ sellOrganicVolume: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
12459
+ sellVolume: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
12460
+ volumeChange: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
12461
+ }, z.core.$strip>]>>;
12462
+ stats24h: z.ZodOptional<z.ZodUnion<readonly [z.ZodNull, z.ZodObject<{
12463
+ buyOrganicVolume: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
12464
+ buyVolume: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
12465
+ liquidityChange: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
12466
+ numBuys: z.ZodOptional<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodNull]>>;
12467
+ numNetBuyers: z.ZodOptional<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodNull]>>;
12468
+ numOrganicBuyers: z.ZodOptional<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodNull]>>;
12469
+ numSells: z.ZodOptional<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodNull]>>;
12470
+ numTraders: z.ZodOptional<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodNull]>>;
12471
+ priceChange: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
12472
+ sellOrganicVolume: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
12473
+ sellVolume: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
12474
+ volumeChange: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
12475
+ }, z.core.$strip>]>>;
12476
+ stats5m: z.ZodOptional<z.ZodUnion<readonly [z.ZodNull, z.ZodObject<{
12477
+ buyOrganicVolume: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
12478
+ buyVolume: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
12479
+ liquidityChange: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
12480
+ numBuys: z.ZodOptional<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodNull]>>;
12481
+ numNetBuyers: z.ZodOptional<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodNull]>>;
12482
+ numOrganicBuyers: z.ZodOptional<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodNull]>>;
12483
+ numSells: z.ZodOptional<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodNull]>>;
12484
+ numTraders: z.ZodOptional<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodNull]>>;
12485
+ priceChange: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
12486
+ sellOrganicVolume: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
12487
+ sellVolume: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
12488
+ volumeChange: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
12489
+ }, z.core.$strip>]>>;
12490
+ stats6h: z.ZodOptional<z.ZodUnion<readonly [z.ZodNull, z.ZodObject<{
12491
+ buyOrganicVolume: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
12492
+ buyVolume: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
12493
+ liquidityChange: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
12494
+ numBuys: z.ZodOptional<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodNull]>>;
12495
+ numNetBuyers: z.ZodOptional<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodNull]>>;
12496
+ numOrganicBuyers: z.ZodOptional<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodNull]>>;
12497
+ numSells: z.ZodOptional<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodNull]>>;
12498
+ numTraders: z.ZodOptional<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodNull]>>;
12499
+ priceChange: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
12500
+ sellOrganicVolume: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
12501
+ sellVolume: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
12502
+ volumeChange: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
12503
+ }, z.core.$strip>]>>;
12504
+ symbol: z.ZodString;
12505
+ tags: z.ZodArray<z.ZodString>;
12506
+ tokenProgram: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
12507
+ totalSupply: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
12508
+ updatedAt: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
12509
+ usdPrice: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
12510
+ }, z.core.$strip>>;
12604
12511
  }, z.core.$strip>;
12605
12512
  type SearchTokensResponseZodType = z.infer<typeof zSearchTokensResponse>;
12606
12513
  declare const zGetLendingPositionsData: z.ZodObject<{
@@ -14699,4 +14606,4 @@ declare class TunaBackendSdkError<TCause = unknown> extends Error {
14699
14606
  declare const tunaSdkErrorInterceptor: (error: unknown, response?: Response) => TunaBackendSdkError<unknown>;
14700
14607
  declare const isTunaSdkError: <TCause = unknown>(error: unknown) => error is TunaBackendSdkError<TCause>;
14701
14608
 
14702
- export { type BadRequestErrorCodeErrorBody, type ClientOptions, type CloseSpotPositionQuoteDto, type DecreaseSpotPositionQuoteDto, type FeeAmountWithUsd, type FeesStatsGroupDto, type FieldError, type FusionFeesStatsGroupDto, type GetCloseSpotPositionQuoteData, type GetCloseSpotPositionQuoteError, type GetCloseSpotPositionQuoteErrors, type GetCloseSpotPositionQuoteResponse, type GetCloseSpotPositionQuoteResponseZodType, type GetCloseSpotPositionQuoteResponses, type GetDecreaseSpotPositionQuoteData, type GetDecreaseSpotPositionQuoteError, type GetDecreaseSpotPositionQuoteErrors, type GetDecreaseSpotPositionQuoteResponse, type GetDecreaseSpotPositionQuoteResponseZodType, type GetDecreaseSpotPositionQuoteResponses, type GetFeesStatsData, type GetFeesStatsError, type GetFeesStatsErrors, type GetFeesStatsResponse, type GetFeesStatsResponseZodType, type GetFeesStatsResponses, type GetFusionFeesStatsData, type GetFusionFeesStatsError, type GetFusionFeesStatsErrors, type GetFusionFeesStatsResponse, type GetFusionFeesStatsResponseZodType, type GetFusionFeesStatsResponses, type GetIncreaseSpotPositionQuoteData, type GetIncreaseSpotPositionQuoteError, type GetIncreaseSpotPositionQuoteErrors, type GetIncreaseSpotPositionQuoteResponse, type GetIncreaseSpotPositionQuoteResponseZodType, type GetIncreaseSpotPositionQuoteResponses, type GetLendingPositionData, type GetLendingPositionError, type GetLendingPositionErrors, type GetLendingPositionResponse, type GetLendingPositionResponseZodType, type GetLendingPositionResponses, type GetLendingPositionsData, type GetLendingPositionsError, type GetLendingPositionsErrors, type GetLendingPositionsResponse, type GetLendingPositionsResponseZodType, type GetLendingPositionsResponses, type GetLimitOrderData, type GetLimitOrderError, type GetLimitOrderError404Error, type GetLimitOrderError500Error, type GetLimitOrderErrors, type GetLimitOrderQuoteByInputData, type GetLimitOrderQuoteByInputError, type GetLimitOrderQuoteByInputErrors, type GetLimitOrderQuoteByInputResponse, type GetLimitOrderQuoteByInputResponseZodType, type GetLimitOrderQuoteByInputResponses, type GetLimitOrderQuoteByOutputData, type GetLimitOrderQuoteByOutputError, type GetLimitOrderQuoteByOutputErrors, type GetLimitOrderQuoteByOutputResponse, type GetLimitOrderQuoteByOutputResponseZodType, type GetLimitOrderQuoteByOutputResponses, type GetLimitOrderResponse, type GetLimitOrderResponseZodType, type GetLimitOrderResponses, type GetLimitOrdersData, type GetLimitOrdersError, type GetLimitOrdersErrors, type GetLimitOrdersResponse, type GetLimitOrdersResponseZodType, type GetLimitOrdersResponses, type GetLpPositionActionsData, type GetLpPositionActionsError, type GetLpPositionActionsErrors, type GetLpPositionActionsResponse, type GetLpPositionActionsResponseZodType, type GetLpPositionActionsResponses, type GetLpPositionsData, type GetLpPositionsError, type GetLpPositionsErrors, type GetLpPositionsResponse, type GetLpPositionsResponseZodType, type GetLpPositionsResponses, type GetLpSpotLeaderboardData, type GetLpSpotLeaderboardError, type GetLpSpotLeaderboardErrors, type GetLpSpotLeaderboardResponse, type GetLpSpotLeaderboardResponseZodType, type GetLpSpotLeaderboardResponses, type GetMarketData, type GetMarketError, type GetMarketErrors, type GetMarketResponse, type GetMarketResponseZodType, type GetMarketResponses, type GetMarketsData, type GetMarketsError, type GetMarketsErrors, type GetMarketsResponse, type GetMarketsResponseZodType, type GetMarketsResponses, type GetMintData, type GetMintError, type GetMintErrors, type GetMintResponse, type GetMintResponseZodType, type GetMintResponses, type GetMintsData, type GetMintsError, type GetMintsErrors, type GetMintsResponse, type GetMintsResponseZodType, type GetMintsResponses, type GetOraclePriceData, type GetOraclePriceError, type GetOraclePriceErrors, type GetOraclePriceResponse, type GetOraclePriceResponseZodType, type GetOraclePriceResponses, type GetOraclePricesData, type GetOraclePricesError, type GetOraclePricesErrors, type GetOraclePricesResponse, type GetOraclePricesResponseZodType, type GetOraclePricesResponses, type GetOrderHistoryData, type GetOrderHistoryError, type GetOrderHistoryErrors, type GetOrderHistoryResponse, type GetOrderHistoryResponseZodType, type GetOrderHistoryResponses, type GetPairPriceData, type GetPairPriceError, type GetPairPriceErrors, type GetPairPriceResponse, type GetPairPriceResponseZodType, type GetPairPriceResponses, type GetPoolCandlesData, type GetPoolCandlesError, type GetPoolCandlesErrors, type GetPoolCandlesResponse, type GetPoolCandlesResponseZodType, type GetPoolCandlesResponses, type GetPoolData, type GetPoolError, type GetPoolErrors, type GetPoolOrderBookData, type GetPoolOrderBookError, type GetPoolOrderBookErrors, type GetPoolOrderBookResponse, type GetPoolOrderBookResponseZodType, type GetPoolOrderBookResponses, type GetPoolResponse, type GetPoolResponseZodType, type GetPoolResponses, type GetPoolSwapsData, type GetPoolSwapsError, type GetPoolSwapsErrors, type GetPoolSwapsResponse, type GetPoolSwapsResponseZodType, type GetPoolSwapsResponses, type GetPoolTicksData, type GetPoolTicksError, type GetPoolTicksErrors, type GetPoolTicksResponse, type GetPoolTicksResponseZodType, type GetPoolTicksResponses, type GetPoolsData, type GetPoolsError, type GetPoolsErrors, type GetPoolsResponse, type GetPoolsResponseZodType, type GetPoolsResponses, type GetPositionsStatsData, type GetPositionsStatsError, type GetPositionsStatsErrors, type GetPositionsStatsResponse, type GetPositionsStatsResponseZodType, type GetPositionsStatsResponses, type GetPositionsTotalData, type GetPositionsTotalError, type GetPositionsTotalErrors, type GetPositionsTotalResponse, type GetPositionsTotalResponseZodType, type GetPositionsTotalResponses, type GetSpotPositionData, type GetSpotPositionError, type GetSpotPositionErrors, type GetSpotPositionResponse, type GetSpotPositionResponseZodType, type GetSpotPositionResponses, type GetSpotPositionsData, type GetSpotPositionsError, type GetSpotPositionsErrors, type GetSpotPositionsResponse, type GetSpotPositionsResponseZodType, type GetSpotPositionsResponses, type GetStakingLeaderboardData, type GetStakingLeaderboardError, type GetStakingLeaderboardErrors, type GetStakingLeaderboardResponse, type GetStakingLeaderboardResponseZodType, type GetStakingLeaderboardResponses, type GetStakingRevenueStatsData, type GetStakingRevenueStatsError, type GetStakingRevenueStatsErrors, type GetStakingRevenueStatsResponse, type GetStakingRevenueStatsResponseZodType, type GetStakingRevenueStatsResponses, type GetStakingTreasuryData, type GetStakingTreasuryError, type GetStakingTreasuryErrors, type GetStakingTreasuryResponse, type GetStakingTreasuryResponseZodType, type GetStakingTreasuryResponses, type GetSwapQuoteByInputData, type GetSwapQuoteByInputError, type GetSwapQuoteByInputErrors, type GetSwapQuoteByInputResponse, type GetSwapQuoteByInputResponseZodType, type GetSwapQuoteByInputResponses, type GetSwapQuoteByOutputData, type GetSwapQuoteByOutputError, type GetSwapQuoteByOutputErrors, type GetSwapQuoteByOutputResponse, type GetSwapQuoteByOutputResponseZodType, type GetSwapQuoteByOutputResponses, type GetTradableAmountData, type GetTradableAmountError, type GetTradableAmountErrors, type GetTradableAmountResponse, type GetTradableAmountResponseZodType, type GetTradableAmountResponses, type GetTradeHistoryData, type GetTradeHistoryError, type GetTradeHistoryErrors, type GetTradeHistoryResponse, type GetTradeHistoryResponseZodType, type GetTradeHistoryResponses, type GetTunaPositionData, type GetTunaPositionError, type GetTunaPositionErrors, type GetTunaPositionResponse, type GetTunaPositionResponseZodType, type GetTunaPositionResponses, type GetTunaPositionsData, type GetTunaPositionsError, type GetTunaPositionsErrors, type GetTunaPositionsResponse, type GetTunaPositionsResponseZodType, type GetTunaPositionsResponses, type GetUserStakingPositionData, type GetUserStakingPositionError, type GetUserStakingPositionErrors, type GetUserStakingPositionHistoryData, type GetUserStakingPositionHistoryError, type GetUserStakingPositionHistoryErrors, type GetUserStakingPositionHistoryResponse, type GetUserStakingPositionHistoryResponseZodType, type GetUserStakingPositionHistoryResponses, type GetUserStakingPositionResponse, type GetUserStakingPositionResponseZodType, type GetUserStakingPositionResponses, type GetVaultData, type GetVaultError, type GetVaultErrors, type GetVaultHistoryData, type GetVaultHistoryError, type GetVaultHistoryErrors, type GetVaultHistoryResponse, type GetVaultHistoryResponseZodType, type GetVaultHistoryResponses, type GetVaultResponse, type GetVaultResponseZodType, type GetVaultResponses, type GetVaultsData, type GetVaultsError, type GetVaultsErrors, type GetVaultsResponse, type GetVaultsResponseZodType, type GetVaultsResponses, type HttpStatusData, type I128Dto, type I64Dto, type IncreaseSpotPositionQuoteDto, type InternalErrorCodeErrorBody, type LeaderboardError400BadRequest, type LeaderboardError400Error, type LeaderboardError500Error, type LeaderboardItemDto, LeaderboardPeriod, LeaderboardSortBy, type LendingPositionDto, type LendingPositionError404Error, type LendingPositionError500Error, type LendingPositionResponse, type LendingPositionsListResponse, type LimitOrderDto, type LimitOrderQuoteByInputDto, type LimitOrderQuoteByOutputDto, type LimitOrderResponse, LimitOrderStatus, type LimitOrdersListResponse, type LpPositionResponse, type LpPositionsError400BadRequest, type LpPositionsError400Error, type LpPositionsError500Error, type LpPositionsHistoryListResponse, type LpPositionsListResponse, type MarketDto, type MarketError404Error, type MarketError500Error, type MarketResponse, type MarketsListResponse, type MintDto, type MintError404Error, type MintError500Error, NotificationAction, NotificationEntity, type Options, type OraclePriceDto, type OraclePriceError404Error, type OraclePriceError500Error, type OrderBookDto, type OrderBookEntryDto, type OrderBookWrapper, type OrderHistoryEntryDto, type OrderHistoryListResponse, type OrderHistoryNotificationResponse, OrderHistoryStatus, OrderHistoryType, OrderHistoryUiDirection, type PaginationMeta, type PoolDto, type PoolPriceCandleDto, PoolProvider, type PoolStatsDto, type PoolStatsGroupDto, type PoolStatsGroupEntryDto, type PoolSubscription, PoolSubscriptionTopic, type PoolSwapDto, type PoolTicksDto, type PoolsError400BadRequest, type PoolsError400Error, type PoolsError404Error, type PoolsError500Error, type PubkeyDto, RateLimitSource, type RetryAfterHint, type SearchTokensData, type SearchTokensError, type SearchTokensErrors, type SearchTokensResponse, type SearchTokensResponseZodType, type SearchTokensResponses, type ServerSentEventsOptions, type ServerSentEventsResult, type Snapshot, type SnapshotContainer, type SpotPositionError404Error, type SpotPositionError500Error, type SpotPositionResponse, type SpotPositionsListResponse, type SseData, type SseErrors, type SseResponse, type SseResponse2, type SseResponseInitialMessage, type SseResponseLendingPosition, type SseResponseLendingPositionPayload, type SseResponseOrderHistoryEntry, type SseResponseOrderHistoryEntryPayload, type SseResponsePoolSwap, type SseResponsePoolSwapPayload, type SseResponseSnapshot, type SseResponseStakingPosition, type SseResponseStakingPositionPayload, type SseResponseTradeHistoryEntry, type SseResponseTradeHistoryEntryPayload, type SseResponseZodType, type SseResponses, type StakingDepositsStatsDto, type StakingError400BadRequest, type StakingError400Error, type StakingError500Error, type StakingLeaderboardPositionDto, type StakingPositionActionDto, StakingPositionActionType, type StakingPositionDto, type StatsError400BadRequest, type StatsError400Error, type StatsError500Error, type StreamEvent, type StreamInitalMessage, type SubscriptionOptions, type SwapQuoteByInputDto, type SwapQuoteByOutputDto, type TickDto, type TokenAmountWithUsd, type TokenAuditDto, type TokenFirstPoolDto, type TokenPairPriceResponseDto, type TokenPriceDto, type TokenSearchItemDto, type TokenSearchResponseDto, type TokenStatsWindowDto, type TokensError400BadRequest, type TokensError400Error, type TokensError404Error, type TokensError429Error, type TokensError429TooManyRequests, type TokensError429UpstreamRateLimited, type TokensError500Error, type TokensError502Error, type TradableAmountDto, TradeHistoryAction, type TradeHistoryEntryDto, type TradeHistoryEntryPnlUsd, type TradeHistoryListResponse, type TradeHistoryNotificationResponse, TradeHistoryUiDirection, type TreasuryDto, TunaBackendSdk, TunaBackendSdkError, type TunaLpPositionActionComposite, type TunaLpPositionActionDto, TunaLpPositionAutoCompound, TunaLpPositionAutoCompounding, type TunaLpPositionDto, type TunaLpPositionFlags, type TunaLpPositionInnerSwaps, TunaLpPositionLimitOrderSwap, type TunaLpPositionParameters, TunaLpPositionRebalance, type TunaLpPositionTokenPrices, type TunaLpPositionTransfer, type TunaLpPositionTriggerOrder, TunaLpPositionTriggerOrderType, type TunaLpPositionValue, TunaLpPositionsActionType, type TunaLpPositionsStats, type TunaPositionDto, TunaPositionDtoState, TunaPositionMarketMaker, TunaPositionPoolToken, type TunaPositionTokenDepositedCollateral, type TunaPositionTokenPnl, type TunaPositionUsdPnl, type TunaSpotPositionDto, TunaSpotPositionDtoState, type U128Dto, type U64Dto, type UpdateStreamSubscriptionData, type UpdateStreamSubscriptionError, type UpdateStreamSubscriptionError404Error, type UpdateStreamSubscriptionError500Error, type UpdateStreamSubscriptionErrors, type UpdateStreamSubscriptionResponse, type UpdateStreamSubscriptionResponseZodType, type UpdateStreamSubscriptionResponses, type ValidationErrorCodeErrorBody, type ValidationErrorCodeValidationDetailsErrorBody, type VaultDto, type VaultError400BadRequest, type VaultError400Error, type VaultError404Error, type VaultError500Error, type VaultResponse, type VaultStatsDto, type VaultsListResponse, type VestingDto, type WalletSubscription, WalletSubscriptionTopic, createClient, createSseClient, isTunaSdkError, tunaSdkErrorInterceptor, unwrap, zBadRequestErrorCodeErrorBody, zCloseSpotPositionQuoteDto, zDecreaseSpotPositionQuoteDto, zFeeAmountWithUsd, zFeesStatsGroupDto, zFieldError, zFusionFeesStatsGroupDto, zGetCloseSpotPositionQuoteData, zGetCloseSpotPositionQuoteResponse, zGetDecreaseSpotPositionQuoteData, zGetDecreaseSpotPositionQuoteResponse, zGetFeesStatsData, zGetFeesStatsResponse, zGetFusionFeesStatsData, zGetFusionFeesStatsResponse, zGetIncreaseSpotPositionQuoteData, zGetIncreaseSpotPositionQuoteResponse, zGetLendingPositionData, zGetLendingPositionResponse, zGetLendingPositionsData, zGetLendingPositionsResponse, zGetLimitOrderData, zGetLimitOrderError404Error, zGetLimitOrderError500Error, zGetLimitOrderQuoteByInputData, zGetLimitOrderQuoteByInputResponse, zGetLimitOrderQuoteByOutputData, zGetLimitOrderQuoteByOutputResponse, zGetLimitOrderResponse, zGetLimitOrdersData, zGetLimitOrdersResponse, zGetLpPositionActionsData, zGetLpPositionActionsResponse, zGetLpPositionsData, zGetLpPositionsResponse, zGetLpSpotLeaderboardData, zGetLpSpotLeaderboardResponse, zGetMarketData, zGetMarketResponse, zGetMarketsData, zGetMarketsResponse, zGetMintData, zGetMintResponse, zGetMintsData, zGetMintsResponse, zGetOraclePriceData, zGetOraclePriceResponse, zGetOraclePricesData, zGetOraclePricesResponse, zGetOrderHistoryData, zGetOrderHistoryResponse, zGetPairPriceData, zGetPairPriceResponse, zGetPoolCandlesData, zGetPoolCandlesResponse, zGetPoolData, zGetPoolOrderBookData, zGetPoolOrderBookResponse, zGetPoolResponse, zGetPoolSwapsData, zGetPoolSwapsResponse, zGetPoolTicksData, zGetPoolTicksResponse, zGetPoolsData, zGetPoolsResponse, zGetPositionsStatsData, zGetPositionsStatsResponse, zGetPositionsTotalData, zGetPositionsTotalResponse, zGetSpotPositionData, zGetSpotPositionResponse, zGetSpotPositionsData, zGetSpotPositionsResponse, zGetStakingLeaderboardData, zGetStakingLeaderboardResponse, zGetStakingRevenueStatsData, zGetStakingRevenueStatsResponse, zGetStakingTreasuryData, zGetStakingTreasuryResponse, zGetSwapQuoteByInputData, zGetSwapQuoteByInputResponse, zGetSwapQuoteByOutputData, zGetSwapQuoteByOutputResponse, zGetTradableAmountData, zGetTradableAmountResponse, zGetTradeHistoryData, zGetTradeHistoryResponse, zGetTunaPositionData, zGetTunaPositionResponse, zGetTunaPositionsData, zGetTunaPositionsResponse, zGetUserStakingPositionData, zGetUserStakingPositionHistoryData, zGetUserStakingPositionHistoryResponse, zGetUserStakingPositionResponse, zGetVaultData, zGetVaultHistoryData, zGetVaultHistoryResponse, zGetVaultResponse, zGetVaultsData, zGetVaultsResponse, zHttpStatusData, zI128Dto, zI64Dto, zIncreaseSpotPositionQuoteDto, zInternalErrorCodeErrorBody, zLeaderboardError400BadRequest, zLeaderboardError400Error, zLeaderboardError500Error, zLeaderboardItemDto, zLeaderboardPeriod, zLeaderboardSortBy, zLendingPositionDto, zLendingPositionError404Error, zLendingPositionError500Error, zLendingPositionResponse, zLendingPositionsListResponse, zLimitOrderDto, zLimitOrderQuoteByInputDto, zLimitOrderQuoteByOutputDto, zLimitOrderResponse, zLimitOrderStatus, zLimitOrdersListResponse, zLpPositionResponse, zLpPositionsError400BadRequest, zLpPositionsError400Error, zLpPositionsError500Error, zLpPositionsHistoryListResponse, zLpPositionsListResponse, zMarketDto, zMarketError404Error, zMarketError500Error, zMarketResponse, zMarketsListResponse, zMintDto, zMintError404Error, zMintError500Error, zNotificationAction, zNotificationEntity, zOraclePriceDto, zOraclePriceError404Error, zOraclePriceError500Error, zOrderBookDto, zOrderBookEntryDto, zOrderBookWrapper, zOrderHistoryEntryDto, zOrderHistoryListResponse, zOrderHistoryNotificationResponse, zOrderHistoryStatus, zOrderHistoryType, zOrderHistoryUiDirection, zPaginationMeta, zPoolDto, zPoolPriceCandleDto, zPoolProvider, zPoolStatsDto, zPoolStatsGroupDto, zPoolStatsGroupEntryDto, zPoolSubscription, zPoolSubscriptionTopic, zPoolSwapDto, zPoolTicksDto, zPoolsError400BadRequest, zPoolsError400Error, zPoolsError404Error, zPoolsError500Error, zPubkeyDto, zRateLimitSource, zRetryAfterHint, zSearchTokensData, zSearchTokensResponse, zSnapshot, zSnapshotContainer, zSpotPositionError404Error, zSpotPositionError500Error, zSpotPositionResponse, zSpotPositionsListResponse, zSseData, zSseResponse, zSseResponse2, zSseResponseInitialMessage, zSseResponseLendingPosition, zSseResponseLendingPositionPayload, zSseResponseOrderHistoryEntry, zSseResponseOrderHistoryEntryPayload, zSseResponsePoolSwap, zSseResponsePoolSwapPayload, zSseResponseSnapshot, zSseResponseStakingPosition, zSseResponseStakingPositionPayload, zSseResponseTradeHistoryEntry, zSseResponseTradeHistoryEntryPayload, zStakingDepositsStatsDto, zStakingError400BadRequest, zStakingError400Error, zStakingError500Error, zStakingLeaderboardPositionDto, zStakingPositionActionDto, zStakingPositionActionType, zStakingPositionDto, zStatsError400BadRequest, zStatsError400Error, zStatsError500Error, zStreamInitalMessage, zSubscriptionOptions, zSwapQuoteByInputDto, zSwapQuoteByOutputDto, zTickDto, zTokenAmountWithUsd, zTokenAuditDto, zTokenFirstPoolDto, zTokenPairPriceResponseDto, zTokenPriceDto, zTokenSearchItemDto, zTokenSearchResponseDto, zTokenStatsWindowDto, zTokensError400BadRequest, zTokensError400Error, zTokensError404Error, zTokensError429Error, zTokensError429TooManyRequests, zTokensError429UpstreamRateLimited, zTokensError500Error, zTokensError502Error, zTradableAmountDto, zTradeHistoryAction, zTradeHistoryEntryDto, zTradeHistoryEntryPnlUsd, zTradeHistoryListResponse, zTradeHistoryNotificationResponse, zTradeHistoryUiDirection, zTreasuryDto, zTunaLpPositionActionComposite, zTunaLpPositionActionDto, zTunaLpPositionAutoCompound, zTunaLpPositionAutoCompounding, zTunaLpPositionDto, zTunaLpPositionFlags, zTunaLpPositionInnerSwaps, zTunaLpPositionLimitOrderSwap, zTunaLpPositionParameters, zTunaLpPositionRebalance, zTunaLpPositionTokenPrices, zTunaLpPositionTransfer, zTunaLpPositionTriggerOrder, zTunaLpPositionTriggerOrderType, zTunaLpPositionValue, zTunaLpPositionsActionType, zTunaLpPositionsStats, zTunaPositionDto, zTunaPositionDtoState, zTunaPositionMarketMaker, zTunaPositionPoolToken, zTunaPositionTokenDepositedCollateral, zTunaPositionTokenPnl, zTunaPositionUsdPnl, zTunaSpotPositionDto, zTunaSpotPositionDtoState, zU128Dto, zU64Dto, zUpdateStreamSubscriptionData, zUpdateStreamSubscriptionError404Error, zUpdateStreamSubscriptionError500Error, zUpdateStreamSubscriptionResponse, zValidationErrorCodeErrorBody, zValidationErrorCodeValidationDetailsErrorBody, zVaultDto, zVaultError400BadRequest, zVaultError400Error, zVaultError404Error, zVaultError500Error, zVaultResponse, zVaultStatsDto, zVaultsListResponse, zVestingDto, zWalletSubscription, zWalletSubscriptionTopic };
14609
+ export { type BadRequestErrorCodeErrorBody, type ClientOptions, type CloseSpotPositionQuoteDto, type DecreaseSpotPositionQuoteDto, type FeeAmountWithUsd, type FeesStatsGroupDto, type FieldError, type FusionFeesStatsGroupDto, type GetCloseSpotPositionQuoteData, type GetCloseSpotPositionQuoteError, type GetCloseSpotPositionQuoteErrors, type GetCloseSpotPositionQuoteResponse, type GetCloseSpotPositionQuoteResponseZodType, type GetCloseSpotPositionQuoteResponses, type GetDecreaseSpotPositionQuoteData, type GetDecreaseSpotPositionQuoteError, type GetDecreaseSpotPositionQuoteErrors, type GetDecreaseSpotPositionQuoteResponse, type GetDecreaseSpotPositionQuoteResponseZodType, type GetDecreaseSpotPositionQuoteResponses, type GetFeesStatsData, type GetFeesStatsError, type GetFeesStatsErrors, type GetFeesStatsResponse, type GetFeesStatsResponseZodType, type GetFeesStatsResponses, type GetFusionFeesStatsData, type GetFusionFeesStatsError, type GetFusionFeesStatsErrors, type GetFusionFeesStatsResponse, type GetFusionFeesStatsResponseZodType, type GetFusionFeesStatsResponses, type GetIncreaseSpotPositionQuoteData, type GetIncreaseSpotPositionQuoteError, type GetIncreaseSpotPositionQuoteErrors, type GetIncreaseSpotPositionQuoteResponse, type GetIncreaseSpotPositionQuoteResponseZodType, type GetIncreaseSpotPositionQuoteResponses, type GetLendingPositionData, type GetLendingPositionError, type GetLendingPositionErrors, type GetLendingPositionResponse, type GetLendingPositionResponseZodType, type GetLendingPositionResponses, type GetLendingPositionsData, type GetLendingPositionsError, type GetLendingPositionsErrors, type GetLendingPositionsResponse, type GetLendingPositionsResponseZodType, type GetLendingPositionsResponses, type GetLimitOrderData, type GetLimitOrderError, type GetLimitOrderError404Error, type GetLimitOrderError500Error, type GetLimitOrderErrors, type GetLimitOrderQuoteByInputData, type GetLimitOrderQuoteByInputError, type GetLimitOrderQuoteByInputErrors, type GetLimitOrderQuoteByInputResponse, type GetLimitOrderQuoteByInputResponseZodType, type GetLimitOrderQuoteByInputResponses, type GetLimitOrderQuoteByOutputData, type GetLimitOrderQuoteByOutputError, type GetLimitOrderQuoteByOutputErrors, type GetLimitOrderQuoteByOutputResponse, type GetLimitOrderQuoteByOutputResponseZodType, type GetLimitOrderQuoteByOutputResponses, type GetLimitOrderResponse, type GetLimitOrderResponseZodType, type GetLimitOrderResponses, type GetLimitOrdersData, type GetLimitOrdersError, type GetLimitOrdersErrors, type GetLimitOrdersResponse, type GetLimitOrdersResponseZodType, type GetLimitOrdersResponses, type GetLpPositionActionsData, type GetLpPositionActionsError, type GetLpPositionActionsErrors, type GetLpPositionActionsResponse, type GetLpPositionActionsResponseZodType, type GetLpPositionActionsResponses, type GetLpPositionsData, type GetLpPositionsError, type GetLpPositionsErrors, type GetLpPositionsResponse, type GetLpPositionsResponseZodType, type GetLpPositionsResponses, type GetLpSpotLeaderboardData, type GetLpSpotLeaderboardError, type GetLpSpotLeaderboardErrors, type GetLpSpotLeaderboardResponse, type GetLpSpotLeaderboardResponseZodType, type GetLpSpotLeaderboardResponses, type GetMarketData, type GetMarketError, type GetMarketErrors, type GetMarketResponse, type GetMarketResponseZodType, type GetMarketResponses, type GetMarketsData, type GetMarketsError, type GetMarketsErrors, type GetMarketsResponse, type GetMarketsResponseZodType, type GetMarketsResponses, type GetMintData, type GetMintError, type GetMintErrors, type GetMintResponse, type GetMintResponseZodType, type GetMintResponses, type GetMintsData, type GetMintsError, type GetMintsErrors, type GetMintsResponse, type GetMintsResponseZodType, type GetMintsResponses, type GetOraclePriceData, type GetOraclePriceError, type GetOraclePriceErrors, type GetOraclePriceResponse, type GetOraclePriceResponseZodType, type GetOraclePriceResponses, type GetOraclePricesData, type GetOraclePricesError, type GetOraclePricesErrors, type GetOraclePricesResponse, type GetOraclePricesResponseZodType, type GetOraclePricesResponses, type GetOrderHistoryData, type GetOrderHistoryError, type GetOrderHistoryErrors, type GetOrderHistoryResponse, type GetOrderHistoryResponseZodType, type GetOrderHistoryResponses, type GetPairPriceData, type GetPairPriceError, type GetPairPriceErrors, type GetPairPriceResponse, type GetPairPriceResponseZodType, type GetPairPriceResponses, type GetPoolCandlesData, type GetPoolCandlesError, type GetPoolCandlesErrors, type GetPoolCandlesResponse, type GetPoolCandlesResponseZodType, type GetPoolCandlesResponses, type GetPoolData, type GetPoolError, type GetPoolErrors, type GetPoolOrderBookData, type GetPoolOrderBookError, type GetPoolOrderBookErrors, type GetPoolOrderBookResponse, type GetPoolOrderBookResponseZodType, type GetPoolOrderBookResponses, type GetPoolResponse, type GetPoolResponseZodType, type GetPoolResponses, type GetPoolSwapsData, type GetPoolSwapsError, type GetPoolSwapsErrors, type GetPoolSwapsResponse, type GetPoolSwapsResponseZodType, type GetPoolSwapsResponses, type GetPoolTicksData, type GetPoolTicksError, type GetPoolTicksErrors, type GetPoolTicksResponse, type GetPoolTicksResponseZodType, type GetPoolTicksResponses, type GetPoolsData, type GetPoolsError, type GetPoolsErrors, type GetPoolsResponse, type GetPoolsResponseZodType, type GetPoolsResponses, type GetPositionsStatsData, type GetPositionsStatsError, type GetPositionsStatsErrors, type GetPositionsStatsResponse, type GetPositionsStatsResponseZodType, type GetPositionsStatsResponses, type GetPositionsTotalData, type GetPositionsTotalError, type GetPositionsTotalErrors, type GetPositionsTotalResponse, type GetPositionsTotalResponseZodType, type GetPositionsTotalResponses, type GetSpotPositionData, type GetSpotPositionError, type GetSpotPositionErrors, type GetSpotPositionResponse, type GetSpotPositionResponseZodType, type GetSpotPositionResponses, type GetSpotPositionsData, type GetSpotPositionsError, type GetSpotPositionsErrors, type GetSpotPositionsResponse, type GetSpotPositionsResponseZodType, type GetSpotPositionsResponses, type GetStakingLeaderboardData, type GetStakingLeaderboardError, type GetStakingLeaderboardErrors, type GetStakingLeaderboardResponse, type GetStakingLeaderboardResponseZodType, type GetStakingLeaderboardResponses, type GetStakingRevenueStatsData, type GetStakingRevenueStatsError, type GetStakingRevenueStatsErrors, type GetStakingRevenueStatsResponse, type GetStakingRevenueStatsResponseZodType, type GetStakingRevenueStatsResponses, type GetStakingTreasuryData, type GetStakingTreasuryError, type GetStakingTreasuryErrors, type GetStakingTreasuryResponse, type GetStakingTreasuryResponseZodType, type GetStakingTreasuryResponses, type GetSwapQuoteByInputData, type GetSwapQuoteByInputError, type GetSwapQuoteByInputErrors, type GetSwapQuoteByInputResponse, type GetSwapQuoteByInputResponseZodType, type GetSwapQuoteByInputResponses, type GetSwapQuoteByOutputData, type GetSwapQuoteByOutputError, type GetSwapQuoteByOutputErrors, type GetSwapQuoteByOutputResponse, type GetSwapQuoteByOutputResponseZodType, type GetSwapQuoteByOutputResponses, type GetTradableAmountData, type GetTradableAmountError, type GetTradableAmountErrors, type GetTradableAmountResponse, type GetTradableAmountResponseZodType, type GetTradableAmountResponses, type GetTradeHistoryData, type GetTradeHistoryError, type GetTradeHistoryErrors, type GetTradeHistoryResponse, type GetTradeHistoryResponseZodType, type GetTradeHistoryResponses, type GetTunaPositionData, type GetTunaPositionError, type GetTunaPositionErrors, type GetTunaPositionResponse, type GetTunaPositionResponseZodType, type GetTunaPositionResponses, type GetTunaPositionsData, type GetTunaPositionsError, type GetTunaPositionsErrors, type GetTunaPositionsResponse, type GetTunaPositionsResponseZodType, type GetTunaPositionsResponses, type GetUserStakingPositionData, type GetUserStakingPositionError, type GetUserStakingPositionErrors, type GetUserStakingPositionHistoryData, type GetUserStakingPositionHistoryError, type GetUserStakingPositionHistoryErrors, type GetUserStakingPositionHistoryResponse, type GetUserStakingPositionHistoryResponseZodType, type GetUserStakingPositionHistoryResponses, type GetUserStakingPositionResponse, type GetUserStakingPositionResponseZodType, type GetUserStakingPositionResponses, type GetVaultData, type GetVaultError, type GetVaultErrors, type GetVaultHistoryData, type GetVaultHistoryError, type GetVaultHistoryErrors, type GetVaultHistoryResponse, type GetVaultHistoryResponseZodType, type GetVaultHistoryResponses, type GetVaultResponse, type GetVaultResponseZodType, type GetVaultResponses, type GetVaultsData, type GetVaultsError, type GetVaultsErrors, type GetVaultsResponse, type GetVaultsResponseZodType, type GetVaultsResponses, type HttpStatusData, type I128Dto, type I64Dto, type IncreaseSpotPositionQuoteDto, type InternalErrorCodeErrorBody, type LeaderboardError400BadRequest, type LeaderboardError400Error, type LeaderboardError500Error, type LeaderboardItemDto, LeaderboardPeriod, LeaderboardSortBy, type LendingPositionDto, type LendingPositionError404Error, type LendingPositionError500Error, type LendingPositionResponse, type LendingPositionsListResponse, type LimitOrderDto, type LimitOrderQuoteByInputDto, type LimitOrderQuoteByOutputDto, type LimitOrderResponse, LimitOrderStatus, type LimitOrdersListResponse, type LpPositionResponse, type LpPositionsError400BadRequest, type LpPositionsError400Error, type LpPositionsError500Error, type LpPositionsHistoryListResponse, type LpPositionsListResponse, type MarketDto, type MarketError404Error, type MarketError500Error, type MarketResponse, type MarketsListResponse, type MintDto, type MintError404Error, type MintError500Error, NotificationAction, NotificationEntity, type Options, type OraclePriceDto, type OraclePriceError404Error, type OraclePriceError500Error, type OrderBookDto, type OrderBookEntryDto, type OrderBookWrapper, type OrderHistoryEntryDto, type OrderHistoryListResponse, type OrderHistoryNotificationResponse, OrderHistoryStatus, OrderHistoryType, OrderHistoryUiDirection, type PaginationMeta, type PoolDto, type PoolPriceCandleDto, PoolProvider, type PoolStatsDto, type PoolStatsGroupDto, type PoolStatsGroupEntryDto, type PoolSubscription, PoolSubscriptionTopic, type PoolSwapDto, type PoolTicksDto, type PoolsError400BadRequest, type PoolsError400Error, type PoolsError404Error, type PoolsError500Error, type PubkeyDto, RateLimitSource, type RetryAfterHint, type SearchTokensData, type SearchTokensError, type SearchTokensErrors, type SearchTokensResponse, type SearchTokensResponseZodType, type SearchTokensResponses, type ServerSentEventsOptions, type ServerSentEventsResult, type Snapshot, type SnapshotContainer, type SpotPositionError404Error, type SpotPositionError500Error, type SpotPositionResponse, type SpotPositionsListResponse, type SseData, type SseErrors, type SseResponse, type SseResponse2, type SseResponseInitialMessage, type SseResponseLendingPosition, type SseResponseLendingPositionPayload, type SseResponseOrderHistoryEntry, type SseResponseOrderHistoryEntryPayload, type SseResponsePoolSwap, type SseResponsePoolSwapPayload, type SseResponseSnapshot, type SseResponseStakingPosition, type SseResponseStakingPositionPayload, type SseResponseTradeHistoryEntry, type SseResponseTradeHistoryEntryPayload, type SseResponseZodType, type SseResponses, type StakingDepositsStatsDto, type StakingError400BadRequest, type StakingError400Error, type StakingError500Error, type StakingLeaderboardPositionDto, type StakingPositionActionDto, StakingPositionActionType, type StakingPositionDto, type StatsError400BadRequest, type StatsError400Error, type StatsError500Error, type StreamEvent, type StreamInitalMessage, type SubscriptionOptions, type SwapQuoteByInputDto, type SwapQuoteByOutputDto, type TickDto, type TokenAmountWithUsd, type TokenAuditDto, type TokenFirstPoolDto, type TokenPairPriceResponseDto, type TokenPriceDto, type TokenSearchItemDto, type TokenStatsWindowDto, type TokensError400BadRequest, type TokensError400Error, type TokensError404Error, type TokensError429Error, type TokensError429TooManyRequests, type TokensError429UpstreamRateLimited, type TokensError500Error, type TokensError502Error, type TradableAmountDto, TradeHistoryAction, type TradeHistoryEntryDto, type TradeHistoryEntryPnlUsd, type TradeHistoryListResponse, type TradeHistoryNotificationResponse, TradeHistoryUiDirection, type TreasuryDto, TunaBackendSdk, TunaBackendSdkError, type TunaLpPositionActionComposite, type TunaLpPositionActionDto, TunaLpPositionAutoCompound, TunaLpPositionAutoCompounding, type TunaLpPositionDto, type TunaLpPositionFlags, type TunaLpPositionInnerSwaps, TunaLpPositionLimitOrderSwap, type TunaLpPositionParameters, TunaLpPositionRebalance, type TunaLpPositionTokenPrices, type TunaLpPositionTransfer, type TunaLpPositionTriggerOrder, TunaLpPositionTriggerOrderType, type TunaLpPositionValue, TunaLpPositionsActionType, type TunaLpPositionsStats, type TunaPositionDto, TunaPositionDtoState, TunaPositionMarketMaker, TunaPositionPoolToken, type TunaPositionTokenDepositedCollateral, type TunaPositionTokenPnl, type TunaPositionUsdPnl, type TunaSpotPositionDto, TunaSpotPositionDtoState, type U128Dto, type U64Dto, type UpdateStreamSubscriptionData, type UpdateStreamSubscriptionError, type UpdateStreamSubscriptionError404Error, type UpdateStreamSubscriptionError500Error, type UpdateStreamSubscriptionErrors, type UpdateStreamSubscriptionResponse, type UpdateStreamSubscriptionResponseZodType, type UpdateStreamSubscriptionResponses, type ValidationErrorCodeErrorBody, type ValidationErrorCodeValidationDetailsErrorBody, type VaultDto, type VaultError400BadRequest, type VaultError400Error, type VaultError404Error, type VaultError500Error, type VaultResponse, type VaultStatsDto, type VaultsListResponse, type VestingDto, type WalletSubscription, WalletSubscriptionTopic, createClient, createSseClient, isTunaSdkError, tunaSdkErrorInterceptor, unwrap, zBadRequestErrorCodeErrorBody, zCloseSpotPositionQuoteDto, zDecreaseSpotPositionQuoteDto, zFeeAmountWithUsd, zFeesStatsGroupDto, zFieldError, zFusionFeesStatsGroupDto, zGetCloseSpotPositionQuoteData, zGetCloseSpotPositionQuoteResponse, zGetDecreaseSpotPositionQuoteData, zGetDecreaseSpotPositionQuoteResponse, zGetFeesStatsData, zGetFeesStatsResponse, zGetFusionFeesStatsData, zGetFusionFeesStatsResponse, zGetIncreaseSpotPositionQuoteData, zGetIncreaseSpotPositionQuoteResponse, zGetLendingPositionData, zGetLendingPositionResponse, zGetLendingPositionsData, zGetLendingPositionsResponse, zGetLimitOrderData, zGetLimitOrderError404Error, zGetLimitOrderError500Error, zGetLimitOrderQuoteByInputData, zGetLimitOrderQuoteByInputResponse, zGetLimitOrderQuoteByOutputData, zGetLimitOrderQuoteByOutputResponse, zGetLimitOrderResponse, zGetLimitOrdersData, zGetLimitOrdersResponse, zGetLpPositionActionsData, zGetLpPositionActionsResponse, zGetLpPositionsData, zGetLpPositionsResponse, zGetLpSpotLeaderboardData, zGetLpSpotLeaderboardResponse, zGetMarketData, zGetMarketResponse, zGetMarketsData, zGetMarketsResponse, zGetMintData, zGetMintResponse, zGetMintsData, zGetMintsResponse, zGetOraclePriceData, zGetOraclePriceResponse, zGetOraclePricesData, zGetOraclePricesResponse, zGetOrderHistoryData, zGetOrderHistoryResponse, zGetPairPriceData, zGetPairPriceResponse, zGetPoolCandlesData, zGetPoolCandlesResponse, zGetPoolData, zGetPoolOrderBookData, zGetPoolOrderBookResponse, zGetPoolResponse, zGetPoolSwapsData, zGetPoolSwapsResponse, zGetPoolTicksData, zGetPoolTicksResponse, zGetPoolsData, zGetPoolsResponse, zGetPositionsStatsData, zGetPositionsStatsResponse, zGetPositionsTotalData, zGetPositionsTotalResponse, zGetSpotPositionData, zGetSpotPositionResponse, zGetSpotPositionsData, zGetSpotPositionsResponse, zGetStakingLeaderboardData, zGetStakingLeaderboardResponse, zGetStakingRevenueStatsData, zGetStakingRevenueStatsResponse, zGetStakingTreasuryData, zGetStakingTreasuryResponse, zGetSwapQuoteByInputData, zGetSwapQuoteByInputResponse, zGetSwapQuoteByOutputData, zGetSwapQuoteByOutputResponse, zGetTradableAmountData, zGetTradableAmountResponse, zGetTradeHistoryData, zGetTradeHistoryResponse, zGetTunaPositionData, zGetTunaPositionResponse, zGetTunaPositionsData, zGetTunaPositionsResponse, zGetUserStakingPositionData, zGetUserStakingPositionHistoryData, zGetUserStakingPositionHistoryResponse, zGetUserStakingPositionResponse, zGetVaultData, zGetVaultHistoryData, zGetVaultHistoryResponse, zGetVaultResponse, zGetVaultsData, zGetVaultsResponse, zHttpStatusData, zI128Dto, zI64Dto, zIncreaseSpotPositionQuoteDto, zInternalErrorCodeErrorBody, zLeaderboardError400BadRequest, zLeaderboardError400Error, zLeaderboardError500Error, zLeaderboardItemDto, zLeaderboardPeriod, zLeaderboardSortBy, zLendingPositionDto, zLendingPositionError404Error, zLendingPositionError500Error, zLendingPositionResponse, zLendingPositionsListResponse, zLimitOrderDto, zLimitOrderQuoteByInputDto, zLimitOrderQuoteByOutputDto, zLimitOrderResponse, zLimitOrderStatus, zLimitOrdersListResponse, zLpPositionResponse, zLpPositionsError400BadRequest, zLpPositionsError400Error, zLpPositionsError500Error, zLpPositionsHistoryListResponse, zLpPositionsListResponse, zMarketDto, zMarketError404Error, zMarketError500Error, zMarketResponse, zMarketsListResponse, zMintDto, zMintError404Error, zMintError500Error, zNotificationAction, zNotificationEntity, zOraclePriceDto, zOraclePriceError404Error, zOraclePriceError500Error, zOrderBookDto, zOrderBookEntryDto, zOrderBookWrapper, zOrderHistoryEntryDto, zOrderHistoryListResponse, zOrderHistoryNotificationResponse, zOrderHistoryStatus, zOrderHistoryType, zOrderHistoryUiDirection, zPaginationMeta, zPoolDto, zPoolPriceCandleDto, zPoolProvider, zPoolStatsDto, zPoolStatsGroupDto, zPoolStatsGroupEntryDto, zPoolSubscription, zPoolSubscriptionTopic, zPoolSwapDto, zPoolTicksDto, zPoolsError400BadRequest, zPoolsError400Error, zPoolsError404Error, zPoolsError500Error, zPubkeyDto, zRateLimitSource, zRetryAfterHint, zSearchTokensData, zSearchTokensResponse, zSnapshot, zSnapshotContainer, zSpotPositionError404Error, zSpotPositionError500Error, zSpotPositionResponse, zSpotPositionsListResponse, zSseData, zSseResponse, zSseResponse2, zSseResponseInitialMessage, zSseResponseLendingPosition, zSseResponseLendingPositionPayload, zSseResponseOrderHistoryEntry, zSseResponseOrderHistoryEntryPayload, zSseResponsePoolSwap, zSseResponsePoolSwapPayload, zSseResponseSnapshot, zSseResponseStakingPosition, zSseResponseStakingPositionPayload, zSseResponseTradeHistoryEntry, zSseResponseTradeHistoryEntryPayload, zStakingDepositsStatsDto, zStakingError400BadRequest, zStakingError400Error, zStakingError500Error, zStakingLeaderboardPositionDto, zStakingPositionActionDto, zStakingPositionActionType, zStakingPositionDto, zStatsError400BadRequest, zStatsError400Error, zStatsError500Error, zStreamInitalMessage, zSubscriptionOptions, zSwapQuoteByInputDto, zSwapQuoteByOutputDto, zTickDto, zTokenAmountWithUsd, zTokenAuditDto, zTokenFirstPoolDto, zTokenPairPriceResponseDto, zTokenPriceDto, zTokenSearchItemDto, zTokenStatsWindowDto, zTokensError400BadRequest, zTokensError400Error, zTokensError404Error, zTokensError429Error, zTokensError429TooManyRequests, zTokensError429UpstreamRateLimited, zTokensError500Error, zTokensError502Error, zTradableAmountDto, zTradeHistoryAction, zTradeHistoryEntryDto, zTradeHistoryEntryPnlUsd, zTradeHistoryListResponse, zTradeHistoryNotificationResponse, zTradeHistoryUiDirection, zTreasuryDto, zTunaLpPositionActionComposite, zTunaLpPositionActionDto, zTunaLpPositionAutoCompound, zTunaLpPositionAutoCompounding, zTunaLpPositionDto, zTunaLpPositionFlags, zTunaLpPositionInnerSwaps, zTunaLpPositionLimitOrderSwap, zTunaLpPositionParameters, zTunaLpPositionRebalance, zTunaLpPositionTokenPrices, zTunaLpPositionTransfer, zTunaLpPositionTriggerOrder, zTunaLpPositionTriggerOrderType, zTunaLpPositionValue, zTunaLpPositionsActionType, zTunaLpPositionsStats, zTunaPositionDto, zTunaPositionDtoState, zTunaPositionMarketMaker, zTunaPositionPoolToken, zTunaPositionTokenDepositedCollateral, zTunaPositionTokenPnl, zTunaPositionUsdPnl, zTunaSpotPositionDto, zTunaSpotPositionDtoState, zU128Dto, zU64Dto, zUpdateStreamSubscriptionData, zUpdateStreamSubscriptionError404Error, zUpdateStreamSubscriptionError500Error, zUpdateStreamSubscriptionResponse, zValidationErrorCodeErrorBody, zValidationErrorCodeValidationDetailsErrorBody, zVaultDto, zVaultError400BadRequest, zVaultError400Error, zVaultError404Error, zVaultError500Error, zVaultResponse, zVaultStatsDto, zVaultsListResponse, zVestingDto, zWalletSubscription, zWalletSubscriptionTopic };
package/dist/index.d.ts CHANGED
@@ -1247,9 +1247,6 @@ type TokenSearchItemDto = {
1247
1247
  updatedAt?: string | null;
1248
1248
  usdPrice?: number | null;
1249
1249
  };
1250
- type TokenSearchResponseDto = {
1251
- items: Array<TokenSearchItemDto>;
1252
- };
1253
1250
  type TokenStatsWindowDto = {
1254
1251
  buyOrganicVolume?: number | null;
1255
1252
  buyVolume?: number | null;
@@ -2536,7 +2533,7 @@ type SearchTokensErrors = {
2536
2533
  type SearchTokensError = SearchTokensErrors[keyof SearchTokensErrors];
2537
2534
  type SearchTokensResponses = {
2538
2535
  200: {
2539
- data: TokenSearchResponseDto;
2536
+ data: Array<TokenSearchItemDto>;
2540
2537
  };
2541
2538
  };
2542
2539
  type SearchTokensResponse = SearchTokensResponses[keyof SearchTokensResponses];
@@ -4066,94 +4063,6 @@ declare const zTokenSearchItemDto: z.ZodObject<{
4066
4063
  updatedAt: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
4067
4064
  usdPrice: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
4068
4065
  }, z.core.$strip>;
4069
- declare const zTokenSearchResponseDto: z.ZodObject<{
4070
- items: z.ZodArray<z.ZodObject<{
4071
- audit: z.ZodOptional<z.ZodUnion<readonly [z.ZodNull, z.ZodObject<{
4072
- freezeAuthorityDisabled: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodNull]>>;
4073
- mintAuthorityDisabled: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodNull]>>;
4074
- topHoldersPercentage: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
4075
- }, z.core.$strip>]>>;
4076
- circSupply: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
4077
- decimals: z.ZodInt;
4078
- fdv: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
4079
- firstPool: z.ZodOptional<z.ZodUnion<readonly [z.ZodNull, z.ZodObject<{
4080
- createdAt: z.ZodString;
4081
- id: z.ZodString;
4082
- }, z.core.$strip>]>>;
4083
- holderCount: z.ZodOptional<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodNull]>>;
4084
- iconUrl: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
4085
- isVerified: z.ZodBoolean;
4086
- liquidity: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
4087
- mcap: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
4088
- mint: z.ZodString;
4089
- name: z.ZodString;
4090
- organicScore: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
4091
- organicScoreLabel: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
4092
- priceBlockId: z.ZodOptional<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodNull]>>;
4093
- stats1h: z.ZodOptional<z.ZodUnion<readonly [z.ZodNull, z.ZodObject<{
4094
- buyOrganicVolume: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
4095
- buyVolume: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
4096
- liquidityChange: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
4097
- numBuys: z.ZodOptional<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodNull]>>;
4098
- numNetBuyers: z.ZodOptional<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodNull]>>;
4099
- numOrganicBuyers: z.ZodOptional<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodNull]>>;
4100
- numSells: z.ZodOptional<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodNull]>>;
4101
- numTraders: z.ZodOptional<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodNull]>>;
4102
- priceChange: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
4103
- sellOrganicVolume: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
4104
- sellVolume: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
4105
- volumeChange: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
4106
- }, z.core.$strip>]>>;
4107
- stats24h: z.ZodOptional<z.ZodUnion<readonly [z.ZodNull, z.ZodObject<{
4108
- buyOrganicVolume: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
4109
- buyVolume: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
4110
- liquidityChange: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
4111
- numBuys: z.ZodOptional<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodNull]>>;
4112
- numNetBuyers: z.ZodOptional<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodNull]>>;
4113
- numOrganicBuyers: z.ZodOptional<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodNull]>>;
4114
- numSells: z.ZodOptional<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodNull]>>;
4115
- numTraders: z.ZodOptional<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodNull]>>;
4116
- priceChange: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
4117
- sellOrganicVolume: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
4118
- sellVolume: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
4119
- volumeChange: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
4120
- }, z.core.$strip>]>>;
4121
- stats5m: z.ZodOptional<z.ZodUnion<readonly [z.ZodNull, z.ZodObject<{
4122
- buyOrganicVolume: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
4123
- buyVolume: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
4124
- liquidityChange: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
4125
- numBuys: z.ZodOptional<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodNull]>>;
4126
- numNetBuyers: z.ZodOptional<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodNull]>>;
4127
- numOrganicBuyers: z.ZodOptional<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodNull]>>;
4128
- numSells: z.ZodOptional<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodNull]>>;
4129
- numTraders: z.ZodOptional<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodNull]>>;
4130
- priceChange: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
4131
- sellOrganicVolume: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
4132
- sellVolume: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
4133
- volumeChange: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
4134
- }, z.core.$strip>]>>;
4135
- stats6h: z.ZodOptional<z.ZodUnion<readonly [z.ZodNull, z.ZodObject<{
4136
- buyOrganicVolume: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
4137
- buyVolume: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
4138
- liquidityChange: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
4139
- numBuys: z.ZodOptional<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodNull]>>;
4140
- numNetBuyers: z.ZodOptional<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodNull]>>;
4141
- numOrganicBuyers: z.ZodOptional<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodNull]>>;
4142
- numSells: z.ZodOptional<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodNull]>>;
4143
- numTraders: z.ZodOptional<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodNull]>>;
4144
- priceChange: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
4145
- sellOrganicVolume: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
4146
- sellVolume: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
4147
- volumeChange: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
4148
- }, z.core.$strip>]>>;
4149
- symbol: z.ZodString;
4150
- tags: z.ZodArray<z.ZodString>;
4151
- tokenProgram: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
4152
- totalSupply: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
4153
- updatedAt: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
4154
- usdPrice: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
4155
- }, z.core.$strip>>;
4156
- }, z.core.$strip>;
4157
4066
  declare const zTokensError400BadRequest: z.ZodObject<{
4158
4067
  code: z.ZodEnum<{
4159
4068
  bad_request: "bad_request";
@@ -12513,94 +12422,92 @@ declare const zSearchTokensData: z.ZodObject<{
12513
12422
  }, z.core.$strip>;
12514
12423
  }, z.core.$strip>;
12515
12424
  declare const zSearchTokensResponse: z.ZodObject<{
12516
- data: z.ZodObject<{
12517
- items: z.ZodArray<z.ZodObject<{
12518
- audit: z.ZodOptional<z.ZodUnion<readonly [z.ZodNull, z.ZodObject<{
12519
- freezeAuthorityDisabled: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodNull]>>;
12520
- mintAuthorityDisabled: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodNull]>>;
12521
- topHoldersPercentage: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
12522
- }, z.core.$strip>]>>;
12523
- circSupply: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
12524
- decimals: z.ZodInt;
12525
- fdv: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
12526
- firstPool: z.ZodOptional<z.ZodUnion<readonly [z.ZodNull, z.ZodObject<{
12527
- createdAt: z.ZodString;
12528
- id: z.ZodString;
12529
- }, z.core.$strip>]>>;
12530
- holderCount: z.ZodOptional<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodNull]>>;
12531
- iconUrl: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
12532
- isVerified: z.ZodBoolean;
12533
- liquidity: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
12534
- mcap: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
12535
- mint: z.ZodString;
12536
- name: z.ZodString;
12537
- organicScore: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
12538
- organicScoreLabel: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
12539
- priceBlockId: z.ZodOptional<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodNull]>>;
12540
- stats1h: z.ZodOptional<z.ZodUnion<readonly [z.ZodNull, z.ZodObject<{
12541
- buyOrganicVolume: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
12542
- buyVolume: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
12543
- liquidityChange: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
12544
- numBuys: z.ZodOptional<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodNull]>>;
12545
- numNetBuyers: z.ZodOptional<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodNull]>>;
12546
- numOrganicBuyers: z.ZodOptional<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodNull]>>;
12547
- numSells: z.ZodOptional<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodNull]>>;
12548
- numTraders: z.ZodOptional<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodNull]>>;
12549
- priceChange: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
12550
- sellOrganicVolume: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
12551
- sellVolume: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
12552
- volumeChange: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
12553
- }, z.core.$strip>]>>;
12554
- stats24h: z.ZodOptional<z.ZodUnion<readonly [z.ZodNull, z.ZodObject<{
12555
- buyOrganicVolume: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
12556
- buyVolume: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
12557
- liquidityChange: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
12558
- numBuys: z.ZodOptional<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodNull]>>;
12559
- numNetBuyers: z.ZodOptional<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodNull]>>;
12560
- numOrganicBuyers: z.ZodOptional<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodNull]>>;
12561
- numSells: z.ZodOptional<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodNull]>>;
12562
- numTraders: z.ZodOptional<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodNull]>>;
12563
- priceChange: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
12564
- sellOrganicVolume: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
12565
- sellVolume: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
12566
- volumeChange: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
12567
- }, z.core.$strip>]>>;
12568
- stats5m: z.ZodOptional<z.ZodUnion<readonly [z.ZodNull, z.ZodObject<{
12569
- buyOrganicVolume: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
12570
- buyVolume: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
12571
- liquidityChange: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
12572
- numBuys: z.ZodOptional<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodNull]>>;
12573
- numNetBuyers: z.ZodOptional<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodNull]>>;
12574
- numOrganicBuyers: z.ZodOptional<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodNull]>>;
12575
- numSells: z.ZodOptional<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodNull]>>;
12576
- numTraders: z.ZodOptional<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodNull]>>;
12577
- priceChange: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
12578
- sellOrganicVolume: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
12579
- sellVolume: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
12580
- volumeChange: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
12581
- }, z.core.$strip>]>>;
12582
- stats6h: z.ZodOptional<z.ZodUnion<readonly [z.ZodNull, z.ZodObject<{
12583
- buyOrganicVolume: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
12584
- buyVolume: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
12585
- liquidityChange: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
12586
- numBuys: z.ZodOptional<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodNull]>>;
12587
- numNetBuyers: z.ZodOptional<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodNull]>>;
12588
- numOrganicBuyers: z.ZodOptional<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodNull]>>;
12589
- numSells: z.ZodOptional<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodNull]>>;
12590
- numTraders: z.ZodOptional<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodNull]>>;
12591
- priceChange: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
12592
- sellOrganicVolume: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
12593
- sellVolume: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
12594
- volumeChange: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
12595
- }, z.core.$strip>]>>;
12596
- symbol: z.ZodString;
12597
- tags: z.ZodArray<z.ZodString>;
12598
- tokenProgram: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
12599
- totalSupply: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
12600
- updatedAt: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
12601
- usdPrice: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
12602
- }, z.core.$strip>>;
12603
- }, z.core.$strip>;
12425
+ data: z.ZodArray<z.ZodObject<{
12426
+ audit: z.ZodOptional<z.ZodUnion<readonly [z.ZodNull, z.ZodObject<{
12427
+ freezeAuthorityDisabled: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodNull]>>;
12428
+ mintAuthorityDisabled: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodNull]>>;
12429
+ topHoldersPercentage: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
12430
+ }, z.core.$strip>]>>;
12431
+ circSupply: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
12432
+ decimals: z.ZodInt;
12433
+ fdv: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
12434
+ firstPool: z.ZodOptional<z.ZodUnion<readonly [z.ZodNull, z.ZodObject<{
12435
+ createdAt: z.ZodString;
12436
+ id: z.ZodString;
12437
+ }, z.core.$strip>]>>;
12438
+ holderCount: z.ZodOptional<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodNull]>>;
12439
+ iconUrl: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
12440
+ isVerified: z.ZodBoolean;
12441
+ liquidity: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
12442
+ mcap: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
12443
+ mint: z.ZodString;
12444
+ name: z.ZodString;
12445
+ organicScore: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
12446
+ organicScoreLabel: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
12447
+ priceBlockId: z.ZodOptional<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodNull]>>;
12448
+ stats1h: z.ZodOptional<z.ZodUnion<readonly [z.ZodNull, z.ZodObject<{
12449
+ buyOrganicVolume: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
12450
+ buyVolume: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
12451
+ liquidityChange: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
12452
+ numBuys: z.ZodOptional<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodNull]>>;
12453
+ numNetBuyers: z.ZodOptional<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodNull]>>;
12454
+ numOrganicBuyers: z.ZodOptional<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodNull]>>;
12455
+ numSells: z.ZodOptional<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodNull]>>;
12456
+ numTraders: z.ZodOptional<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodNull]>>;
12457
+ priceChange: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
12458
+ sellOrganicVolume: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
12459
+ sellVolume: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
12460
+ volumeChange: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
12461
+ }, z.core.$strip>]>>;
12462
+ stats24h: z.ZodOptional<z.ZodUnion<readonly [z.ZodNull, z.ZodObject<{
12463
+ buyOrganicVolume: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
12464
+ buyVolume: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
12465
+ liquidityChange: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
12466
+ numBuys: z.ZodOptional<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodNull]>>;
12467
+ numNetBuyers: z.ZodOptional<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodNull]>>;
12468
+ numOrganicBuyers: z.ZodOptional<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodNull]>>;
12469
+ numSells: z.ZodOptional<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodNull]>>;
12470
+ numTraders: z.ZodOptional<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodNull]>>;
12471
+ priceChange: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
12472
+ sellOrganicVolume: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
12473
+ sellVolume: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
12474
+ volumeChange: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
12475
+ }, z.core.$strip>]>>;
12476
+ stats5m: z.ZodOptional<z.ZodUnion<readonly [z.ZodNull, z.ZodObject<{
12477
+ buyOrganicVolume: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
12478
+ buyVolume: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
12479
+ liquidityChange: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
12480
+ numBuys: z.ZodOptional<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodNull]>>;
12481
+ numNetBuyers: z.ZodOptional<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodNull]>>;
12482
+ numOrganicBuyers: z.ZodOptional<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodNull]>>;
12483
+ numSells: z.ZodOptional<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodNull]>>;
12484
+ numTraders: z.ZodOptional<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodNull]>>;
12485
+ priceChange: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
12486
+ sellOrganicVolume: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
12487
+ sellVolume: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
12488
+ volumeChange: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
12489
+ }, z.core.$strip>]>>;
12490
+ stats6h: z.ZodOptional<z.ZodUnion<readonly [z.ZodNull, z.ZodObject<{
12491
+ buyOrganicVolume: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
12492
+ buyVolume: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
12493
+ liquidityChange: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
12494
+ numBuys: z.ZodOptional<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodNull]>>;
12495
+ numNetBuyers: z.ZodOptional<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodNull]>>;
12496
+ numOrganicBuyers: z.ZodOptional<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodNull]>>;
12497
+ numSells: z.ZodOptional<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodNull]>>;
12498
+ numTraders: z.ZodOptional<z.ZodUnion<readonly [z.ZodCoercedBigInt<unknown>, z.ZodNull]>>;
12499
+ priceChange: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
12500
+ sellOrganicVolume: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
12501
+ sellVolume: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
12502
+ volumeChange: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
12503
+ }, z.core.$strip>]>>;
12504
+ symbol: z.ZodString;
12505
+ tags: z.ZodArray<z.ZodString>;
12506
+ tokenProgram: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
12507
+ totalSupply: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
12508
+ updatedAt: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
12509
+ usdPrice: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
12510
+ }, z.core.$strip>>;
12604
12511
  }, z.core.$strip>;
12605
12512
  type SearchTokensResponseZodType = z.infer<typeof zSearchTokensResponse>;
12606
12513
  declare const zGetLendingPositionsData: z.ZodObject<{
@@ -14699,4 +14606,4 @@ declare class TunaBackendSdkError<TCause = unknown> extends Error {
14699
14606
  declare const tunaSdkErrorInterceptor: (error: unknown, response?: Response) => TunaBackendSdkError<unknown>;
14700
14607
  declare const isTunaSdkError: <TCause = unknown>(error: unknown) => error is TunaBackendSdkError<TCause>;
14701
14608
 
14702
- export { type BadRequestErrorCodeErrorBody, type ClientOptions, type CloseSpotPositionQuoteDto, type DecreaseSpotPositionQuoteDto, type FeeAmountWithUsd, type FeesStatsGroupDto, type FieldError, type FusionFeesStatsGroupDto, type GetCloseSpotPositionQuoteData, type GetCloseSpotPositionQuoteError, type GetCloseSpotPositionQuoteErrors, type GetCloseSpotPositionQuoteResponse, type GetCloseSpotPositionQuoteResponseZodType, type GetCloseSpotPositionQuoteResponses, type GetDecreaseSpotPositionQuoteData, type GetDecreaseSpotPositionQuoteError, type GetDecreaseSpotPositionQuoteErrors, type GetDecreaseSpotPositionQuoteResponse, type GetDecreaseSpotPositionQuoteResponseZodType, type GetDecreaseSpotPositionQuoteResponses, type GetFeesStatsData, type GetFeesStatsError, type GetFeesStatsErrors, type GetFeesStatsResponse, type GetFeesStatsResponseZodType, type GetFeesStatsResponses, type GetFusionFeesStatsData, type GetFusionFeesStatsError, type GetFusionFeesStatsErrors, type GetFusionFeesStatsResponse, type GetFusionFeesStatsResponseZodType, type GetFusionFeesStatsResponses, type GetIncreaseSpotPositionQuoteData, type GetIncreaseSpotPositionQuoteError, type GetIncreaseSpotPositionQuoteErrors, type GetIncreaseSpotPositionQuoteResponse, type GetIncreaseSpotPositionQuoteResponseZodType, type GetIncreaseSpotPositionQuoteResponses, type GetLendingPositionData, type GetLendingPositionError, type GetLendingPositionErrors, type GetLendingPositionResponse, type GetLendingPositionResponseZodType, type GetLendingPositionResponses, type GetLendingPositionsData, type GetLendingPositionsError, type GetLendingPositionsErrors, type GetLendingPositionsResponse, type GetLendingPositionsResponseZodType, type GetLendingPositionsResponses, type GetLimitOrderData, type GetLimitOrderError, type GetLimitOrderError404Error, type GetLimitOrderError500Error, type GetLimitOrderErrors, type GetLimitOrderQuoteByInputData, type GetLimitOrderQuoteByInputError, type GetLimitOrderQuoteByInputErrors, type GetLimitOrderQuoteByInputResponse, type GetLimitOrderQuoteByInputResponseZodType, type GetLimitOrderQuoteByInputResponses, type GetLimitOrderQuoteByOutputData, type GetLimitOrderQuoteByOutputError, type GetLimitOrderQuoteByOutputErrors, type GetLimitOrderQuoteByOutputResponse, type GetLimitOrderQuoteByOutputResponseZodType, type GetLimitOrderQuoteByOutputResponses, type GetLimitOrderResponse, type GetLimitOrderResponseZodType, type GetLimitOrderResponses, type GetLimitOrdersData, type GetLimitOrdersError, type GetLimitOrdersErrors, type GetLimitOrdersResponse, type GetLimitOrdersResponseZodType, type GetLimitOrdersResponses, type GetLpPositionActionsData, type GetLpPositionActionsError, type GetLpPositionActionsErrors, type GetLpPositionActionsResponse, type GetLpPositionActionsResponseZodType, type GetLpPositionActionsResponses, type GetLpPositionsData, type GetLpPositionsError, type GetLpPositionsErrors, type GetLpPositionsResponse, type GetLpPositionsResponseZodType, type GetLpPositionsResponses, type GetLpSpotLeaderboardData, type GetLpSpotLeaderboardError, type GetLpSpotLeaderboardErrors, type GetLpSpotLeaderboardResponse, type GetLpSpotLeaderboardResponseZodType, type GetLpSpotLeaderboardResponses, type GetMarketData, type GetMarketError, type GetMarketErrors, type GetMarketResponse, type GetMarketResponseZodType, type GetMarketResponses, type GetMarketsData, type GetMarketsError, type GetMarketsErrors, type GetMarketsResponse, type GetMarketsResponseZodType, type GetMarketsResponses, type GetMintData, type GetMintError, type GetMintErrors, type GetMintResponse, type GetMintResponseZodType, type GetMintResponses, type GetMintsData, type GetMintsError, type GetMintsErrors, type GetMintsResponse, type GetMintsResponseZodType, type GetMintsResponses, type GetOraclePriceData, type GetOraclePriceError, type GetOraclePriceErrors, type GetOraclePriceResponse, type GetOraclePriceResponseZodType, type GetOraclePriceResponses, type GetOraclePricesData, type GetOraclePricesError, type GetOraclePricesErrors, type GetOraclePricesResponse, type GetOraclePricesResponseZodType, type GetOraclePricesResponses, type GetOrderHistoryData, type GetOrderHistoryError, type GetOrderHistoryErrors, type GetOrderHistoryResponse, type GetOrderHistoryResponseZodType, type GetOrderHistoryResponses, type GetPairPriceData, type GetPairPriceError, type GetPairPriceErrors, type GetPairPriceResponse, type GetPairPriceResponseZodType, type GetPairPriceResponses, type GetPoolCandlesData, type GetPoolCandlesError, type GetPoolCandlesErrors, type GetPoolCandlesResponse, type GetPoolCandlesResponseZodType, type GetPoolCandlesResponses, type GetPoolData, type GetPoolError, type GetPoolErrors, type GetPoolOrderBookData, type GetPoolOrderBookError, type GetPoolOrderBookErrors, type GetPoolOrderBookResponse, type GetPoolOrderBookResponseZodType, type GetPoolOrderBookResponses, type GetPoolResponse, type GetPoolResponseZodType, type GetPoolResponses, type GetPoolSwapsData, type GetPoolSwapsError, type GetPoolSwapsErrors, type GetPoolSwapsResponse, type GetPoolSwapsResponseZodType, type GetPoolSwapsResponses, type GetPoolTicksData, type GetPoolTicksError, type GetPoolTicksErrors, type GetPoolTicksResponse, type GetPoolTicksResponseZodType, type GetPoolTicksResponses, type GetPoolsData, type GetPoolsError, type GetPoolsErrors, type GetPoolsResponse, type GetPoolsResponseZodType, type GetPoolsResponses, type GetPositionsStatsData, type GetPositionsStatsError, type GetPositionsStatsErrors, type GetPositionsStatsResponse, type GetPositionsStatsResponseZodType, type GetPositionsStatsResponses, type GetPositionsTotalData, type GetPositionsTotalError, type GetPositionsTotalErrors, type GetPositionsTotalResponse, type GetPositionsTotalResponseZodType, type GetPositionsTotalResponses, type GetSpotPositionData, type GetSpotPositionError, type GetSpotPositionErrors, type GetSpotPositionResponse, type GetSpotPositionResponseZodType, type GetSpotPositionResponses, type GetSpotPositionsData, type GetSpotPositionsError, type GetSpotPositionsErrors, type GetSpotPositionsResponse, type GetSpotPositionsResponseZodType, type GetSpotPositionsResponses, type GetStakingLeaderboardData, type GetStakingLeaderboardError, type GetStakingLeaderboardErrors, type GetStakingLeaderboardResponse, type GetStakingLeaderboardResponseZodType, type GetStakingLeaderboardResponses, type GetStakingRevenueStatsData, type GetStakingRevenueStatsError, type GetStakingRevenueStatsErrors, type GetStakingRevenueStatsResponse, type GetStakingRevenueStatsResponseZodType, type GetStakingRevenueStatsResponses, type GetStakingTreasuryData, type GetStakingTreasuryError, type GetStakingTreasuryErrors, type GetStakingTreasuryResponse, type GetStakingTreasuryResponseZodType, type GetStakingTreasuryResponses, type GetSwapQuoteByInputData, type GetSwapQuoteByInputError, type GetSwapQuoteByInputErrors, type GetSwapQuoteByInputResponse, type GetSwapQuoteByInputResponseZodType, type GetSwapQuoteByInputResponses, type GetSwapQuoteByOutputData, type GetSwapQuoteByOutputError, type GetSwapQuoteByOutputErrors, type GetSwapQuoteByOutputResponse, type GetSwapQuoteByOutputResponseZodType, type GetSwapQuoteByOutputResponses, type GetTradableAmountData, type GetTradableAmountError, type GetTradableAmountErrors, type GetTradableAmountResponse, type GetTradableAmountResponseZodType, type GetTradableAmountResponses, type GetTradeHistoryData, type GetTradeHistoryError, type GetTradeHistoryErrors, type GetTradeHistoryResponse, type GetTradeHistoryResponseZodType, type GetTradeHistoryResponses, type GetTunaPositionData, type GetTunaPositionError, type GetTunaPositionErrors, type GetTunaPositionResponse, type GetTunaPositionResponseZodType, type GetTunaPositionResponses, type GetTunaPositionsData, type GetTunaPositionsError, type GetTunaPositionsErrors, type GetTunaPositionsResponse, type GetTunaPositionsResponseZodType, type GetTunaPositionsResponses, type GetUserStakingPositionData, type GetUserStakingPositionError, type GetUserStakingPositionErrors, type GetUserStakingPositionHistoryData, type GetUserStakingPositionHistoryError, type GetUserStakingPositionHistoryErrors, type GetUserStakingPositionHistoryResponse, type GetUserStakingPositionHistoryResponseZodType, type GetUserStakingPositionHistoryResponses, type GetUserStakingPositionResponse, type GetUserStakingPositionResponseZodType, type GetUserStakingPositionResponses, type GetVaultData, type GetVaultError, type GetVaultErrors, type GetVaultHistoryData, type GetVaultHistoryError, type GetVaultHistoryErrors, type GetVaultHistoryResponse, type GetVaultHistoryResponseZodType, type GetVaultHistoryResponses, type GetVaultResponse, type GetVaultResponseZodType, type GetVaultResponses, type GetVaultsData, type GetVaultsError, type GetVaultsErrors, type GetVaultsResponse, type GetVaultsResponseZodType, type GetVaultsResponses, type HttpStatusData, type I128Dto, type I64Dto, type IncreaseSpotPositionQuoteDto, type InternalErrorCodeErrorBody, type LeaderboardError400BadRequest, type LeaderboardError400Error, type LeaderboardError500Error, type LeaderboardItemDto, LeaderboardPeriod, LeaderboardSortBy, type LendingPositionDto, type LendingPositionError404Error, type LendingPositionError500Error, type LendingPositionResponse, type LendingPositionsListResponse, type LimitOrderDto, type LimitOrderQuoteByInputDto, type LimitOrderQuoteByOutputDto, type LimitOrderResponse, LimitOrderStatus, type LimitOrdersListResponse, type LpPositionResponse, type LpPositionsError400BadRequest, type LpPositionsError400Error, type LpPositionsError500Error, type LpPositionsHistoryListResponse, type LpPositionsListResponse, type MarketDto, type MarketError404Error, type MarketError500Error, type MarketResponse, type MarketsListResponse, type MintDto, type MintError404Error, type MintError500Error, NotificationAction, NotificationEntity, type Options, type OraclePriceDto, type OraclePriceError404Error, type OraclePriceError500Error, type OrderBookDto, type OrderBookEntryDto, type OrderBookWrapper, type OrderHistoryEntryDto, type OrderHistoryListResponse, type OrderHistoryNotificationResponse, OrderHistoryStatus, OrderHistoryType, OrderHistoryUiDirection, type PaginationMeta, type PoolDto, type PoolPriceCandleDto, PoolProvider, type PoolStatsDto, type PoolStatsGroupDto, type PoolStatsGroupEntryDto, type PoolSubscription, PoolSubscriptionTopic, type PoolSwapDto, type PoolTicksDto, type PoolsError400BadRequest, type PoolsError400Error, type PoolsError404Error, type PoolsError500Error, type PubkeyDto, RateLimitSource, type RetryAfterHint, type SearchTokensData, type SearchTokensError, type SearchTokensErrors, type SearchTokensResponse, type SearchTokensResponseZodType, type SearchTokensResponses, type ServerSentEventsOptions, type ServerSentEventsResult, type Snapshot, type SnapshotContainer, type SpotPositionError404Error, type SpotPositionError500Error, type SpotPositionResponse, type SpotPositionsListResponse, type SseData, type SseErrors, type SseResponse, type SseResponse2, type SseResponseInitialMessage, type SseResponseLendingPosition, type SseResponseLendingPositionPayload, type SseResponseOrderHistoryEntry, type SseResponseOrderHistoryEntryPayload, type SseResponsePoolSwap, type SseResponsePoolSwapPayload, type SseResponseSnapshot, type SseResponseStakingPosition, type SseResponseStakingPositionPayload, type SseResponseTradeHistoryEntry, type SseResponseTradeHistoryEntryPayload, type SseResponseZodType, type SseResponses, type StakingDepositsStatsDto, type StakingError400BadRequest, type StakingError400Error, type StakingError500Error, type StakingLeaderboardPositionDto, type StakingPositionActionDto, StakingPositionActionType, type StakingPositionDto, type StatsError400BadRequest, type StatsError400Error, type StatsError500Error, type StreamEvent, type StreamInitalMessage, type SubscriptionOptions, type SwapQuoteByInputDto, type SwapQuoteByOutputDto, type TickDto, type TokenAmountWithUsd, type TokenAuditDto, type TokenFirstPoolDto, type TokenPairPriceResponseDto, type TokenPriceDto, type TokenSearchItemDto, type TokenSearchResponseDto, type TokenStatsWindowDto, type TokensError400BadRequest, type TokensError400Error, type TokensError404Error, type TokensError429Error, type TokensError429TooManyRequests, type TokensError429UpstreamRateLimited, type TokensError500Error, type TokensError502Error, type TradableAmountDto, TradeHistoryAction, type TradeHistoryEntryDto, type TradeHistoryEntryPnlUsd, type TradeHistoryListResponse, type TradeHistoryNotificationResponse, TradeHistoryUiDirection, type TreasuryDto, TunaBackendSdk, TunaBackendSdkError, type TunaLpPositionActionComposite, type TunaLpPositionActionDto, TunaLpPositionAutoCompound, TunaLpPositionAutoCompounding, type TunaLpPositionDto, type TunaLpPositionFlags, type TunaLpPositionInnerSwaps, TunaLpPositionLimitOrderSwap, type TunaLpPositionParameters, TunaLpPositionRebalance, type TunaLpPositionTokenPrices, type TunaLpPositionTransfer, type TunaLpPositionTriggerOrder, TunaLpPositionTriggerOrderType, type TunaLpPositionValue, TunaLpPositionsActionType, type TunaLpPositionsStats, type TunaPositionDto, TunaPositionDtoState, TunaPositionMarketMaker, TunaPositionPoolToken, type TunaPositionTokenDepositedCollateral, type TunaPositionTokenPnl, type TunaPositionUsdPnl, type TunaSpotPositionDto, TunaSpotPositionDtoState, type U128Dto, type U64Dto, type UpdateStreamSubscriptionData, type UpdateStreamSubscriptionError, type UpdateStreamSubscriptionError404Error, type UpdateStreamSubscriptionError500Error, type UpdateStreamSubscriptionErrors, type UpdateStreamSubscriptionResponse, type UpdateStreamSubscriptionResponseZodType, type UpdateStreamSubscriptionResponses, type ValidationErrorCodeErrorBody, type ValidationErrorCodeValidationDetailsErrorBody, type VaultDto, type VaultError400BadRequest, type VaultError400Error, type VaultError404Error, type VaultError500Error, type VaultResponse, type VaultStatsDto, type VaultsListResponse, type VestingDto, type WalletSubscription, WalletSubscriptionTopic, createClient, createSseClient, isTunaSdkError, tunaSdkErrorInterceptor, unwrap, zBadRequestErrorCodeErrorBody, zCloseSpotPositionQuoteDto, zDecreaseSpotPositionQuoteDto, zFeeAmountWithUsd, zFeesStatsGroupDto, zFieldError, zFusionFeesStatsGroupDto, zGetCloseSpotPositionQuoteData, zGetCloseSpotPositionQuoteResponse, zGetDecreaseSpotPositionQuoteData, zGetDecreaseSpotPositionQuoteResponse, zGetFeesStatsData, zGetFeesStatsResponse, zGetFusionFeesStatsData, zGetFusionFeesStatsResponse, zGetIncreaseSpotPositionQuoteData, zGetIncreaseSpotPositionQuoteResponse, zGetLendingPositionData, zGetLendingPositionResponse, zGetLendingPositionsData, zGetLendingPositionsResponse, zGetLimitOrderData, zGetLimitOrderError404Error, zGetLimitOrderError500Error, zGetLimitOrderQuoteByInputData, zGetLimitOrderQuoteByInputResponse, zGetLimitOrderQuoteByOutputData, zGetLimitOrderQuoteByOutputResponse, zGetLimitOrderResponse, zGetLimitOrdersData, zGetLimitOrdersResponse, zGetLpPositionActionsData, zGetLpPositionActionsResponse, zGetLpPositionsData, zGetLpPositionsResponse, zGetLpSpotLeaderboardData, zGetLpSpotLeaderboardResponse, zGetMarketData, zGetMarketResponse, zGetMarketsData, zGetMarketsResponse, zGetMintData, zGetMintResponse, zGetMintsData, zGetMintsResponse, zGetOraclePriceData, zGetOraclePriceResponse, zGetOraclePricesData, zGetOraclePricesResponse, zGetOrderHistoryData, zGetOrderHistoryResponse, zGetPairPriceData, zGetPairPriceResponse, zGetPoolCandlesData, zGetPoolCandlesResponse, zGetPoolData, zGetPoolOrderBookData, zGetPoolOrderBookResponse, zGetPoolResponse, zGetPoolSwapsData, zGetPoolSwapsResponse, zGetPoolTicksData, zGetPoolTicksResponse, zGetPoolsData, zGetPoolsResponse, zGetPositionsStatsData, zGetPositionsStatsResponse, zGetPositionsTotalData, zGetPositionsTotalResponse, zGetSpotPositionData, zGetSpotPositionResponse, zGetSpotPositionsData, zGetSpotPositionsResponse, zGetStakingLeaderboardData, zGetStakingLeaderboardResponse, zGetStakingRevenueStatsData, zGetStakingRevenueStatsResponse, zGetStakingTreasuryData, zGetStakingTreasuryResponse, zGetSwapQuoteByInputData, zGetSwapQuoteByInputResponse, zGetSwapQuoteByOutputData, zGetSwapQuoteByOutputResponse, zGetTradableAmountData, zGetTradableAmountResponse, zGetTradeHistoryData, zGetTradeHistoryResponse, zGetTunaPositionData, zGetTunaPositionResponse, zGetTunaPositionsData, zGetTunaPositionsResponse, zGetUserStakingPositionData, zGetUserStakingPositionHistoryData, zGetUserStakingPositionHistoryResponse, zGetUserStakingPositionResponse, zGetVaultData, zGetVaultHistoryData, zGetVaultHistoryResponse, zGetVaultResponse, zGetVaultsData, zGetVaultsResponse, zHttpStatusData, zI128Dto, zI64Dto, zIncreaseSpotPositionQuoteDto, zInternalErrorCodeErrorBody, zLeaderboardError400BadRequest, zLeaderboardError400Error, zLeaderboardError500Error, zLeaderboardItemDto, zLeaderboardPeriod, zLeaderboardSortBy, zLendingPositionDto, zLendingPositionError404Error, zLendingPositionError500Error, zLendingPositionResponse, zLendingPositionsListResponse, zLimitOrderDto, zLimitOrderQuoteByInputDto, zLimitOrderQuoteByOutputDto, zLimitOrderResponse, zLimitOrderStatus, zLimitOrdersListResponse, zLpPositionResponse, zLpPositionsError400BadRequest, zLpPositionsError400Error, zLpPositionsError500Error, zLpPositionsHistoryListResponse, zLpPositionsListResponse, zMarketDto, zMarketError404Error, zMarketError500Error, zMarketResponse, zMarketsListResponse, zMintDto, zMintError404Error, zMintError500Error, zNotificationAction, zNotificationEntity, zOraclePriceDto, zOraclePriceError404Error, zOraclePriceError500Error, zOrderBookDto, zOrderBookEntryDto, zOrderBookWrapper, zOrderHistoryEntryDto, zOrderHistoryListResponse, zOrderHistoryNotificationResponse, zOrderHistoryStatus, zOrderHistoryType, zOrderHistoryUiDirection, zPaginationMeta, zPoolDto, zPoolPriceCandleDto, zPoolProvider, zPoolStatsDto, zPoolStatsGroupDto, zPoolStatsGroupEntryDto, zPoolSubscription, zPoolSubscriptionTopic, zPoolSwapDto, zPoolTicksDto, zPoolsError400BadRequest, zPoolsError400Error, zPoolsError404Error, zPoolsError500Error, zPubkeyDto, zRateLimitSource, zRetryAfterHint, zSearchTokensData, zSearchTokensResponse, zSnapshot, zSnapshotContainer, zSpotPositionError404Error, zSpotPositionError500Error, zSpotPositionResponse, zSpotPositionsListResponse, zSseData, zSseResponse, zSseResponse2, zSseResponseInitialMessage, zSseResponseLendingPosition, zSseResponseLendingPositionPayload, zSseResponseOrderHistoryEntry, zSseResponseOrderHistoryEntryPayload, zSseResponsePoolSwap, zSseResponsePoolSwapPayload, zSseResponseSnapshot, zSseResponseStakingPosition, zSseResponseStakingPositionPayload, zSseResponseTradeHistoryEntry, zSseResponseTradeHistoryEntryPayload, zStakingDepositsStatsDto, zStakingError400BadRequest, zStakingError400Error, zStakingError500Error, zStakingLeaderboardPositionDto, zStakingPositionActionDto, zStakingPositionActionType, zStakingPositionDto, zStatsError400BadRequest, zStatsError400Error, zStatsError500Error, zStreamInitalMessage, zSubscriptionOptions, zSwapQuoteByInputDto, zSwapQuoteByOutputDto, zTickDto, zTokenAmountWithUsd, zTokenAuditDto, zTokenFirstPoolDto, zTokenPairPriceResponseDto, zTokenPriceDto, zTokenSearchItemDto, zTokenSearchResponseDto, zTokenStatsWindowDto, zTokensError400BadRequest, zTokensError400Error, zTokensError404Error, zTokensError429Error, zTokensError429TooManyRequests, zTokensError429UpstreamRateLimited, zTokensError500Error, zTokensError502Error, zTradableAmountDto, zTradeHistoryAction, zTradeHistoryEntryDto, zTradeHistoryEntryPnlUsd, zTradeHistoryListResponse, zTradeHistoryNotificationResponse, zTradeHistoryUiDirection, zTreasuryDto, zTunaLpPositionActionComposite, zTunaLpPositionActionDto, zTunaLpPositionAutoCompound, zTunaLpPositionAutoCompounding, zTunaLpPositionDto, zTunaLpPositionFlags, zTunaLpPositionInnerSwaps, zTunaLpPositionLimitOrderSwap, zTunaLpPositionParameters, zTunaLpPositionRebalance, zTunaLpPositionTokenPrices, zTunaLpPositionTransfer, zTunaLpPositionTriggerOrder, zTunaLpPositionTriggerOrderType, zTunaLpPositionValue, zTunaLpPositionsActionType, zTunaLpPositionsStats, zTunaPositionDto, zTunaPositionDtoState, zTunaPositionMarketMaker, zTunaPositionPoolToken, zTunaPositionTokenDepositedCollateral, zTunaPositionTokenPnl, zTunaPositionUsdPnl, zTunaSpotPositionDto, zTunaSpotPositionDtoState, zU128Dto, zU64Dto, zUpdateStreamSubscriptionData, zUpdateStreamSubscriptionError404Error, zUpdateStreamSubscriptionError500Error, zUpdateStreamSubscriptionResponse, zValidationErrorCodeErrorBody, zValidationErrorCodeValidationDetailsErrorBody, zVaultDto, zVaultError400BadRequest, zVaultError400Error, zVaultError404Error, zVaultError500Error, zVaultResponse, zVaultStatsDto, zVaultsListResponse, zVestingDto, zWalletSubscription, zWalletSubscriptionTopic };
14609
+ export { type BadRequestErrorCodeErrorBody, type ClientOptions, type CloseSpotPositionQuoteDto, type DecreaseSpotPositionQuoteDto, type FeeAmountWithUsd, type FeesStatsGroupDto, type FieldError, type FusionFeesStatsGroupDto, type GetCloseSpotPositionQuoteData, type GetCloseSpotPositionQuoteError, type GetCloseSpotPositionQuoteErrors, type GetCloseSpotPositionQuoteResponse, type GetCloseSpotPositionQuoteResponseZodType, type GetCloseSpotPositionQuoteResponses, type GetDecreaseSpotPositionQuoteData, type GetDecreaseSpotPositionQuoteError, type GetDecreaseSpotPositionQuoteErrors, type GetDecreaseSpotPositionQuoteResponse, type GetDecreaseSpotPositionQuoteResponseZodType, type GetDecreaseSpotPositionQuoteResponses, type GetFeesStatsData, type GetFeesStatsError, type GetFeesStatsErrors, type GetFeesStatsResponse, type GetFeesStatsResponseZodType, type GetFeesStatsResponses, type GetFusionFeesStatsData, type GetFusionFeesStatsError, type GetFusionFeesStatsErrors, type GetFusionFeesStatsResponse, type GetFusionFeesStatsResponseZodType, type GetFusionFeesStatsResponses, type GetIncreaseSpotPositionQuoteData, type GetIncreaseSpotPositionQuoteError, type GetIncreaseSpotPositionQuoteErrors, type GetIncreaseSpotPositionQuoteResponse, type GetIncreaseSpotPositionQuoteResponseZodType, type GetIncreaseSpotPositionQuoteResponses, type GetLendingPositionData, type GetLendingPositionError, type GetLendingPositionErrors, type GetLendingPositionResponse, type GetLendingPositionResponseZodType, type GetLendingPositionResponses, type GetLendingPositionsData, type GetLendingPositionsError, type GetLendingPositionsErrors, type GetLendingPositionsResponse, type GetLendingPositionsResponseZodType, type GetLendingPositionsResponses, type GetLimitOrderData, type GetLimitOrderError, type GetLimitOrderError404Error, type GetLimitOrderError500Error, type GetLimitOrderErrors, type GetLimitOrderQuoteByInputData, type GetLimitOrderQuoteByInputError, type GetLimitOrderQuoteByInputErrors, type GetLimitOrderQuoteByInputResponse, type GetLimitOrderQuoteByInputResponseZodType, type GetLimitOrderQuoteByInputResponses, type GetLimitOrderQuoteByOutputData, type GetLimitOrderQuoteByOutputError, type GetLimitOrderQuoteByOutputErrors, type GetLimitOrderQuoteByOutputResponse, type GetLimitOrderQuoteByOutputResponseZodType, type GetLimitOrderQuoteByOutputResponses, type GetLimitOrderResponse, type GetLimitOrderResponseZodType, type GetLimitOrderResponses, type GetLimitOrdersData, type GetLimitOrdersError, type GetLimitOrdersErrors, type GetLimitOrdersResponse, type GetLimitOrdersResponseZodType, type GetLimitOrdersResponses, type GetLpPositionActionsData, type GetLpPositionActionsError, type GetLpPositionActionsErrors, type GetLpPositionActionsResponse, type GetLpPositionActionsResponseZodType, type GetLpPositionActionsResponses, type GetLpPositionsData, type GetLpPositionsError, type GetLpPositionsErrors, type GetLpPositionsResponse, type GetLpPositionsResponseZodType, type GetLpPositionsResponses, type GetLpSpotLeaderboardData, type GetLpSpotLeaderboardError, type GetLpSpotLeaderboardErrors, type GetLpSpotLeaderboardResponse, type GetLpSpotLeaderboardResponseZodType, type GetLpSpotLeaderboardResponses, type GetMarketData, type GetMarketError, type GetMarketErrors, type GetMarketResponse, type GetMarketResponseZodType, type GetMarketResponses, type GetMarketsData, type GetMarketsError, type GetMarketsErrors, type GetMarketsResponse, type GetMarketsResponseZodType, type GetMarketsResponses, type GetMintData, type GetMintError, type GetMintErrors, type GetMintResponse, type GetMintResponseZodType, type GetMintResponses, type GetMintsData, type GetMintsError, type GetMintsErrors, type GetMintsResponse, type GetMintsResponseZodType, type GetMintsResponses, type GetOraclePriceData, type GetOraclePriceError, type GetOraclePriceErrors, type GetOraclePriceResponse, type GetOraclePriceResponseZodType, type GetOraclePriceResponses, type GetOraclePricesData, type GetOraclePricesError, type GetOraclePricesErrors, type GetOraclePricesResponse, type GetOraclePricesResponseZodType, type GetOraclePricesResponses, type GetOrderHistoryData, type GetOrderHistoryError, type GetOrderHistoryErrors, type GetOrderHistoryResponse, type GetOrderHistoryResponseZodType, type GetOrderHistoryResponses, type GetPairPriceData, type GetPairPriceError, type GetPairPriceErrors, type GetPairPriceResponse, type GetPairPriceResponseZodType, type GetPairPriceResponses, type GetPoolCandlesData, type GetPoolCandlesError, type GetPoolCandlesErrors, type GetPoolCandlesResponse, type GetPoolCandlesResponseZodType, type GetPoolCandlesResponses, type GetPoolData, type GetPoolError, type GetPoolErrors, type GetPoolOrderBookData, type GetPoolOrderBookError, type GetPoolOrderBookErrors, type GetPoolOrderBookResponse, type GetPoolOrderBookResponseZodType, type GetPoolOrderBookResponses, type GetPoolResponse, type GetPoolResponseZodType, type GetPoolResponses, type GetPoolSwapsData, type GetPoolSwapsError, type GetPoolSwapsErrors, type GetPoolSwapsResponse, type GetPoolSwapsResponseZodType, type GetPoolSwapsResponses, type GetPoolTicksData, type GetPoolTicksError, type GetPoolTicksErrors, type GetPoolTicksResponse, type GetPoolTicksResponseZodType, type GetPoolTicksResponses, type GetPoolsData, type GetPoolsError, type GetPoolsErrors, type GetPoolsResponse, type GetPoolsResponseZodType, type GetPoolsResponses, type GetPositionsStatsData, type GetPositionsStatsError, type GetPositionsStatsErrors, type GetPositionsStatsResponse, type GetPositionsStatsResponseZodType, type GetPositionsStatsResponses, type GetPositionsTotalData, type GetPositionsTotalError, type GetPositionsTotalErrors, type GetPositionsTotalResponse, type GetPositionsTotalResponseZodType, type GetPositionsTotalResponses, type GetSpotPositionData, type GetSpotPositionError, type GetSpotPositionErrors, type GetSpotPositionResponse, type GetSpotPositionResponseZodType, type GetSpotPositionResponses, type GetSpotPositionsData, type GetSpotPositionsError, type GetSpotPositionsErrors, type GetSpotPositionsResponse, type GetSpotPositionsResponseZodType, type GetSpotPositionsResponses, type GetStakingLeaderboardData, type GetStakingLeaderboardError, type GetStakingLeaderboardErrors, type GetStakingLeaderboardResponse, type GetStakingLeaderboardResponseZodType, type GetStakingLeaderboardResponses, type GetStakingRevenueStatsData, type GetStakingRevenueStatsError, type GetStakingRevenueStatsErrors, type GetStakingRevenueStatsResponse, type GetStakingRevenueStatsResponseZodType, type GetStakingRevenueStatsResponses, type GetStakingTreasuryData, type GetStakingTreasuryError, type GetStakingTreasuryErrors, type GetStakingTreasuryResponse, type GetStakingTreasuryResponseZodType, type GetStakingTreasuryResponses, type GetSwapQuoteByInputData, type GetSwapQuoteByInputError, type GetSwapQuoteByInputErrors, type GetSwapQuoteByInputResponse, type GetSwapQuoteByInputResponseZodType, type GetSwapQuoteByInputResponses, type GetSwapQuoteByOutputData, type GetSwapQuoteByOutputError, type GetSwapQuoteByOutputErrors, type GetSwapQuoteByOutputResponse, type GetSwapQuoteByOutputResponseZodType, type GetSwapQuoteByOutputResponses, type GetTradableAmountData, type GetTradableAmountError, type GetTradableAmountErrors, type GetTradableAmountResponse, type GetTradableAmountResponseZodType, type GetTradableAmountResponses, type GetTradeHistoryData, type GetTradeHistoryError, type GetTradeHistoryErrors, type GetTradeHistoryResponse, type GetTradeHistoryResponseZodType, type GetTradeHistoryResponses, type GetTunaPositionData, type GetTunaPositionError, type GetTunaPositionErrors, type GetTunaPositionResponse, type GetTunaPositionResponseZodType, type GetTunaPositionResponses, type GetTunaPositionsData, type GetTunaPositionsError, type GetTunaPositionsErrors, type GetTunaPositionsResponse, type GetTunaPositionsResponseZodType, type GetTunaPositionsResponses, type GetUserStakingPositionData, type GetUserStakingPositionError, type GetUserStakingPositionErrors, type GetUserStakingPositionHistoryData, type GetUserStakingPositionHistoryError, type GetUserStakingPositionHistoryErrors, type GetUserStakingPositionHistoryResponse, type GetUserStakingPositionHistoryResponseZodType, type GetUserStakingPositionHistoryResponses, type GetUserStakingPositionResponse, type GetUserStakingPositionResponseZodType, type GetUserStakingPositionResponses, type GetVaultData, type GetVaultError, type GetVaultErrors, type GetVaultHistoryData, type GetVaultHistoryError, type GetVaultHistoryErrors, type GetVaultHistoryResponse, type GetVaultHistoryResponseZodType, type GetVaultHistoryResponses, type GetVaultResponse, type GetVaultResponseZodType, type GetVaultResponses, type GetVaultsData, type GetVaultsError, type GetVaultsErrors, type GetVaultsResponse, type GetVaultsResponseZodType, type GetVaultsResponses, type HttpStatusData, type I128Dto, type I64Dto, type IncreaseSpotPositionQuoteDto, type InternalErrorCodeErrorBody, type LeaderboardError400BadRequest, type LeaderboardError400Error, type LeaderboardError500Error, type LeaderboardItemDto, LeaderboardPeriod, LeaderboardSortBy, type LendingPositionDto, type LendingPositionError404Error, type LendingPositionError500Error, type LendingPositionResponse, type LendingPositionsListResponse, type LimitOrderDto, type LimitOrderQuoteByInputDto, type LimitOrderQuoteByOutputDto, type LimitOrderResponse, LimitOrderStatus, type LimitOrdersListResponse, type LpPositionResponse, type LpPositionsError400BadRequest, type LpPositionsError400Error, type LpPositionsError500Error, type LpPositionsHistoryListResponse, type LpPositionsListResponse, type MarketDto, type MarketError404Error, type MarketError500Error, type MarketResponse, type MarketsListResponse, type MintDto, type MintError404Error, type MintError500Error, NotificationAction, NotificationEntity, type Options, type OraclePriceDto, type OraclePriceError404Error, type OraclePriceError500Error, type OrderBookDto, type OrderBookEntryDto, type OrderBookWrapper, type OrderHistoryEntryDto, type OrderHistoryListResponse, type OrderHistoryNotificationResponse, OrderHistoryStatus, OrderHistoryType, OrderHistoryUiDirection, type PaginationMeta, type PoolDto, type PoolPriceCandleDto, PoolProvider, type PoolStatsDto, type PoolStatsGroupDto, type PoolStatsGroupEntryDto, type PoolSubscription, PoolSubscriptionTopic, type PoolSwapDto, type PoolTicksDto, type PoolsError400BadRequest, type PoolsError400Error, type PoolsError404Error, type PoolsError500Error, type PubkeyDto, RateLimitSource, type RetryAfterHint, type SearchTokensData, type SearchTokensError, type SearchTokensErrors, type SearchTokensResponse, type SearchTokensResponseZodType, type SearchTokensResponses, type ServerSentEventsOptions, type ServerSentEventsResult, type Snapshot, type SnapshotContainer, type SpotPositionError404Error, type SpotPositionError500Error, type SpotPositionResponse, type SpotPositionsListResponse, type SseData, type SseErrors, type SseResponse, type SseResponse2, type SseResponseInitialMessage, type SseResponseLendingPosition, type SseResponseLendingPositionPayload, type SseResponseOrderHistoryEntry, type SseResponseOrderHistoryEntryPayload, type SseResponsePoolSwap, type SseResponsePoolSwapPayload, type SseResponseSnapshot, type SseResponseStakingPosition, type SseResponseStakingPositionPayload, type SseResponseTradeHistoryEntry, type SseResponseTradeHistoryEntryPayload, type SseResponseZodType, type SseResponses, type StakingDepositsStatsDto, type StakingError400BadRequest, type StakingError400Error, type StakingError500Error, type StakingLeaderboardPositionDto, type StakingPositionActionDto, StakingPositionActionType, type StakingPositionDto, type StatsError400BadRequest, type StatsError400Error, type StatsError500Error, type StreamEvent, type StreamInitalMessage, type SubscriptionOptions, type SwapQuoteByInputDto, type SwapQuoteByOutputDto, type TickDto, type TokenAmountWithUsd, type TokenAuditDto, type TokenFirstPoolDto, type TokenPairPriceResponseDto, type TokenPriceDto, type TokenSearchItemDto, type TokenStatsWindowDto, type TokensError400BadRequest, type TokensError400Error, type TokensError404Error, type TokensError429Error, type TokensError429TooManyRequests, type TokensError429UpstreamRateLimited, type TokensError500Error, type TokensError502Error, type TradableAmountDto, TradeHistoryAction, type TradeHistoryEntryDto, type TradeHistoryEntryPnlUsd, type TradeHistoryListResponse, type TradeHistoryNotificationResponse, TradeHistoryUiDirection, type TreasuryDto, TunaBackendSdk, TunaBackendSdkError, type TunaLpPositionActionComposite, type TunaLpPositionActionDto, TunaLpPositionAutoCompound, TunaLpPositionAutoCompounding, type TunaLpPositionDto, type TunaLpPositionFlags, type TunaLpPositionInnerSwaps, TunaLpPositionLimitOrderSwap, type TunaLpPositionParameters, TunaLpPositionRebalance, type TunaLpPositionTokenPrices, type TunaLpPositionTransfer, type TunaLpPositionTriggerOrder, TunaLpPositionTriggerOrderType, type TunaLpPositionValue, TunaLpPositionsActionType, type TunaLpPositionsStats, type TunaPositionDto, TunaPositionDtoState, TunaPositionMarketMaker, TunaPositionPoolToken, type TunaPositionTokenDepositedCollateral, type TunaPositionTokenPnl, type TunaPositionUsdPnl, type TunaSpotPositionDto, TunaSpotPositionDtoState, type U128Dto, type U64Dto, type UpdateStreamSubscriptionData, type UpdateStreamSubscriptionError, type UpdateStreamSubscriptionError404Error, type UpdateStreamSubscriptionError500Error, type UpdateStreamSubscriptionErrors, type UpdateStreamSubscriptionResponse, type UpdateStreamSubscriptionResponseZodType, type UpdateStreamSubscriptionResponses, type ValidationErrorCodeErrorBody, type ValidationErrorCodeValidationDetailsErrorBody, type VaultDto, type VaultError400BadRequest, type VaultError400Error, type VaultError404Error, type VaultError500Error, type VaultResponse, type VaultStatsDto, type VaultsListResponse, type VestingDto, type WalletSubscription, WalletSubscriptionTopic, createClient, createSseClient, isTunaSdkError, tunaSdkErrorInterceptor, unwrap, zBadRequestErrorCodeErrorBody, zCloseSpotPositionQuoteDto, zDecreaseSpotPositionQuoteDto, zFeeAmountWithUsd, zFeesStatsGroupDto, zFieldError, zFusionFeesStatsGroupDto, zGetCloseSpotPositionQuoteData, zGetCloseSpotPositionQuoteResponse, zGetDecreaseSpotPositionQuoteData, zGetDecreaseSpotPositionQuoteResponse, zGetFeesStatsData, zGetFeesStatsResponse, zGetFusionFeesStatsData, zGetFusionFeesStatsResponse, zGetIncreaseSpotPositionQuoteData, zGetIncreaseSpotPositionQuoteResponse, zGetLendingPositionData, zGetLendingPositionResponse, zGetLendingPositionsData, zGetLendingPositionsResponse, zGetLimitOrderData, zGetLimitOrderError404Error, zGetLimitOrderError500Error, zGetLimitOrderQuoteByInputData, zGetLimitOrderQuoteByInputResponse, zGetLimitOrderQuoteByOutputData, zGetLimitOrderQuoteByOutputResponse, zGetLimitOrderResponse, zGetLimitOrdersData, zGetLimitOrdersResponse, zGetLpPositionActionsData, zGetLpPositionActionsResponse, zGetLpPositionsData, zGetLpPositionsResponse, zGetLpSpotLeaderboardData, zGetLpSpotLeaderboardResponse, zGetMarketData, zGetMarketResponse, zGetMarketsData, zGetMarketsResponse, zGetMintData, zGetMintResponse, zGetMintsData, zGetMintsResponse, zGetOraclePriceData, zGetOraclePriceResponse, zGetOraclePricesData, zGetOraclePricesResponse, zGetOrderHistoryData, zGetOrderHistoryResponse, zGetPairPriceData, zGetPairPriceResponse, zGetPoolCandlesData, zGetPoolCandlesResponse, zGetPoolData, zGetPoolOrderBookData, zGetPoolOrderBookResponse, zGetPoolResponse, zGetPoolSwapsData, zGetPoolSwapsResponse, zGetPoolTicksData, zGetPoolTicksResponse, zGetPoolsData, zGetPoolsResponse, zGetPositionsStatsData, zGetPositionsStatsResponse, zGetPositionsTotalData, zGetPositionsTotalResponse, zGetSpotPositionData, zGetSpotPositionResponse, zGetSpotPositionsData, zGetSpotPositionsResponse, zGetStakingLeaderboardData, zGetStakingLeaderboardResponse, zGetStakingRevenueStatsData, zGetStakingRevenueStatsResponse, zGetStakingTreasuryData, zGetStakingTreasuryResponse, zGetSwapQuoteByInputData, zGetSwapQuoteByInputResponse, zGetSwapQuoteByOutputData, zGetSwapQuoteByOutputResponse, zGetTradableAmountData, zGetTradableAmountResponse, zGetTradeHistoryData, zGetTradeHistoryResponse, zGetTunaPositionData, zGetTunaPositionResponse, zGetTunaPositionsData, zGetTunaPositionsResponse, zGetUserStakingPositionData, zGetUserStakingPositionHistoryData, zGetUserStakingPositionHistoryResponse, zGetUserStakingPositionResponse, zGetVaultData, zGetVaultHistoryData, zGetVaultHistoryResponse, zGetVaultResponse, zGetVaultsData, zGetVaultsResponse, zHttpStatusData, zI128Dto, zI64Dto, zIncreaseSpotPositionQuoteDto, zInternalErrorCodeErrorBody, zLeaderboardError400BadRequest, zLeaderboardError400Error, zLeaderboardError500Error, zLeaderboardItemDto, zLeaderboardPeriod, zLeaderboardSortBy, zLendingPositionDto, zLendingPositionError404Error, zLendingPositionError500Error, zLendingPositionResponse, zLendingPositionsListResponse, zLimitOrderDto, zLimitOrderQuoteByInputDto, zLimitOrderQuoteByOutputDto, zLimitOrderResponse, zLimitOrderStatus, zLimitOrdersListResponse, zLpPositionResponse, zLpPositionsError400BadRequest, zLpPositionsError400Error, zLpPositionsError500Error, zLpPositionsHistoryListResponse, zLpPositionsListResponse, zMarketDto, zMarketError404Error, zMarketError500Error, zMarketResponse, zMarketsListResponse, zMintDto, zMintError404Error, zMintError500Error, zNotificationAction, zNotificationEntity, zOraclePriceDto, zOraclePriceError404Error, zOraclePriceError500Error, zOrderBookDto, zOrderBookEntryDto, zOrderBookWrapper, zOrderHistoryEntryDto, zOrderHistoryListResponse, zOrderHistoryNotificationResponse, zOrderHistoryStatus, zOrderHistoryType, zOrderHistoryUiDirection, zPaginationMeta, zPoolDto, zPoolPriceCandleDto, zPoolProvider, zPoolStatsDto, zPoolStatsGroupDto, zPoolStatsGroupEntryDto, zPoolSubscription, zPoolSubscriptionTopic, zPoolSwapDto, zPoolTicksDto, zPoolsError400BadRequest, zPoolsError400Error, zPoolsError404Error, zPoolsError500Error, zPubkeyDto, zRateLimitSource, zRetryAfterHint, zSearchTokensData, zSearchTokensResponse, zSnapshot, zSnapshotContainer, zSpotPositionError404Error, zSpotPositionError500Error, zSpotPositionResponse, zSpotPositionsListResponse, zSseData, zSseResponse, zSseResponse2, zSseResponseInitialMessage, zSseResponseLendingPosition, zSseResponseLendingPositionPayload, zSseResponseOrderHistoryEntry, zSseResponseOrderHistoryEntryPayload, zSseResponsePoolSwap, zSseResponsePoolSwapPayload, zSseResponseSnapshot, zSseResponseStakingPosition, zSseResponseStakingPositionPayload, zSseResponseTradeHistoryEntry, zSseResponseTradeHistoryEntryPayload, zStakingDepositsStatsDto, zStakingError400BadRequest, zStakingError400Error, zStakingError500Error, zStakingLeaderboardPositionDto, zStakingPositionActionDto, zStakingPositionActionType, zStakingPositionDto, zStatsError400BadRequest, zStatsError400Error, zStatsError500Error, zStreamInitalMessage, zSubscriptionOptions, zSwapQuoteByInputDto, zSwapQuoteByOutputDto, zTickDto, zTokenAmountWithUsd, zTokenAuditDto, zTokenFirstPoolDto, zTokenPairPriceResponseDto, zTokenPriceDto, zTokenSearchItemDto, zTokenStatsWindowDto, zTokensError400BadRequest, zTokensError400Error, zTokensError404Error, zTokensError429Error, zTokensError429TooManyRequests, zTokensError429UpstreamRateLimited, zTokensError500Error, zTokensError502Error, zTradableAmountDto, zTradeHistoryAction, zTradeHistoryEntryDto, zTradeHistoryEntryPnlUsd, zTradeHistoryListResponse, zTradeHistoryNotificationResponse, zTradeHistoryUiDirection, zTreasuryDto, zTunaLpPositionActionComposite, zTunaLpPositionActionDto, zTunaLpPositionAutoCompound, zTunaLpPositionAutoCompounding, zTunaLpPositionDto, zTunaLpPositionFlags, zTunaLpPositionInnerSwaps, zTunaLpPositionLimitOrderSwap, zTunaLpPositionParameters, zTunaLpPositionRebalance, zTunaLpPositionTokenPrices, zTunaLpPositionTransfer, zTunaLpPositionTriggerOrder, zTunaLpPositionTriggerOrderType, zTunaLpPositionValue, zTunaLpPositionsActionType, zTunaLpPositionsStats, zTunaPositionDto, zTunaPositionDtoState, zTunaPositionMarketMaker, zTunaPositionPoolToken, zTunaPositionTokenDepositedCollateral, zTunaPositionTokenPnl, zTunaPositionUsdPnl, zTunaSpotPositionDto, zTunaSpotPositionDtoState, zU128Dto, zU64Dto, zUpdateStreamSubscriptionData, zUpdateStreamSubscriptionError404Error, zUpdateStreamSubscriptionError500Error, zUpdateStreamSubscriptionResponse, zValidationErrorCodeErrorBody, zValidationErrorCodeValidationDetailsErrorBody, zVaultDto, zVaultError400BadRequest, zVaultError400Error, zVaultError404Error, zVaultError500Error, zVaultResponse, zVaultStatsDto, zVaultsListResponse, zVestingDto, zWalletSubscription, zWalletSubscriptionTopic };
package/dist/index.js CHANGED
@@ -9169,9 +9169,6 @@ var zTokenSearchItemDto = object({
9169
9169
  _null3()
9170
9170
  ]))
9171
9171
  });
9172
- var zTokenSearchResponseDto = object({
9173
- items: array(zTokenSearchItemDto)
9174
- });
9175
9172
  var zTokensError400BadRequest = object({
9176
9173
  code: _enum(["bad_request"])
9177
9174
  });
@@ -10578,11 +10575,11 @@ var zSearchTokensData = object({
10578
10575
  body: optional(never()),
10579
10576
  path: optional(never()),
10580
10577
  query: object({
10581
- q: string2()
10578
+ q: string2().min(2).max(44)
10582
10579
  })
10583
10580
  });
10584
10581
  var zSearchTokensResponse = object({
10585
- data: zTokenSearchResponseDto
10582
+ data: array(zTokenSearchItemDto)
10586
10583
  });
10587
10584
  var zGetLendingPositionsData = object({
10588
10585
  body: optional(never()),
@@ -11913,7 +11910,6 @@ export {
11913
11910
  zTokenPairPriceResponseDto,
11914
11911
  zTokenPriceDto,
11915
11912
  zTokenSearchItemDto,
11916
- zTokenSearchResponseDto,
11917
11913
  zTokenStatsWindowDto,
11918
11914
  zTokensError400BadRequest,
11919
11915
  zTokensError400Error,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@crypticdot/defituna-api",
3
- "version": "4.3.0",
3
+ "version": "4.3.1",
4
4
  "private": false,
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",