@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.
- package/README.md +2 -2
- package/dist/{WatchlistApi-VmKx6Q1Q.d.cts → WatchlistApi-DtNbXNQ2.d.cts} +27 -5
- package/dist/{WatchlistApi-VmKx6Q1Q.d.ts → WatchlistApi-DtNbXNQ2.d.ts} +27 -5
- package/dist/{index-CjzuX57e.d.cts → index-BRgfeoOg.d.cts} +2 -2
- package/dist/{index-omaVsSSm.d.ts → index-Dv24PgY3.d.ts} +2 -2
- package/dist/index.cjs +19 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/index.mjs +19 -1
- package/dist/index.mjs.map +1 -1
- package/dist/openapi/index.cjs +30 -0
- package/dist/openapi/index.cjs.map +1 -1
- package/dist/openapi/index.d.cts +1 -1
- package/dist/openapi/index.d.ts +1 -1
- package/dist/openapi/index.mjs +28 -0
- package/dist/openapi/index.mjs.map +1 -1
- package/dist/stream/index.d.cts +2 -2
- package/dist/stream/index.d.ts +2 -2
- package/package.json +1 -1
package/dist/openapi/index.cjs
CHANGED
|
@@ -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,
|