@chainstream-io/sdk 0.1.23 → 0.1.24

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.
@@ -197,6 +197,8 @@ __export(openapi_exports, {
197
197
  GetNewTokensSortByEnum: () => GetNewTokensSortByEnum,
198
198
  GetNewTokensSortDirectionEnum: () => GetNewTokensSortDirectionEnum,
199
199
  GetNewTokensTagEnum: () => GetNewTokensTagEnum,
200
+ GetPoolsSortByEnum: () => GetPoolsSortByEnum,
201
+ GetPoolsSortDirectionEnum: () => GetPoolsSortDirectionEnum,
200
202
  GetPricesDirectionEnum: () => GetPricesDirectionEnum,
201
203
  GetRedpacketsChainEnum: () => GetRedpacketsChainEnum,
202
204
  GetStocksTokensSortByEnum: () => GetStocksTokensSortByEnum,
@@ -8377,6 +8379,24 @@ var TokenApi = class extends BaseAPI {
8377
8379
  );
8378
8380
  }
8379
8381
  const queryParameters = {};
8382
+ if (requestParameters["sortBy"] != null) {
8383
+ queryParameters["sortBy"] = requestParameters["sortBy"];
8384
+ }
8385
+ if (requestParameters["sortDirection"] != null) {
8386
+ queryParameters["sortDirection"] = requestParameters["sortDirection"];
8387
+ }
8388
+ if (requestParameters["minTvlInSol"] != null) {
8389
+ queryParameters["minTvlInSol"] = requestParameters["minTvlInSol"];
8390
+ }
8391
+ if (requestParameters["maxTvlInSol"] != null) {
8392
+ queryParameters["maxTvlInSol"] = requestParameters["maxTvlInSol"];
8393
+ }
8394
+ if (requestParameters["minTvlInUsd"] != null) {
8395
+ queryParameters["minTvlInUsd"] = requestParameters["minTvlInUsd"];
8396
+ }
8397
+ if (requestParameters["maxTvlInUsd"] != null) {
8398
+ queryParameters["maxTvlInUsd"] = requestParameters["maxTvlInUsd"];
8399
+ }
8380
8400
  const headerParameters = {};
8381
8401
  if (this.configuration && this.configuration.accessToken) {
8382
8402
  const token = this.configuration.accessToken;
@@ -9344,6 +9364,14 @@ var GetMintAndBurnTypeEnum = {
9344
9364
  Mint: "mint",
9345
9365
  Burn: "burn"
9346
9366
  };
9367
+ var GetPoolsSortByEnum = {
9368
+ TvlInSol: "tvlInSol",
9369
+ TvlInUsd: "tvlInUsd"
9370
+ };
9371
+ var GetPoolsSortDirectionEnum = {
9372
+ Asc: "asc",
9373
+ Desc: "desc"
9374
+ };
9347
9375
  var GetPricesDirectionEnum = {
9348
9376
  Next: "next",
9349
9377
  Prev: "prev"
@@ -10397,6 +10425,8 @@ var WatchlistApi = class extends BaseAPI {
10397
10425
  GetNewTokensSortByEnum,
10398
10426
  GetNewTokensSortDirectionEnum,
10399
10427
  GetNewTokensTagEnum,
10428
+ GetPoolsSortByEnum,
10429
+ GetPoolsSortDirectionEnum,
10400
10430
  GetPricesDirectionEnum,
10401
10431
  GetRedpacketsChainEnum,
10402
10432
  GetStocksTokensSortByEnum,