@xoxno/sdk-js 1.0.125 → 1.0.126
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 +3 -0
- package/dist/index.bundled.d.cts +13 -1
- package/dist/index.bundled.d.ts +13 -1
- package/dist/index.cjs +1 -1
- package/dist/index.esm.js +1 -1
- package/dist/sdk/swagger.d.ts +13 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -290,6 +290,9 @@ sdk.collection.drops.search(...); // CollectionMintProfilePaginated
|
|
|
290
290
|
// GET /collection/:collection/analytics/volume
|
|
291
291
|
sdk.collection.collection("...").analytics.volume(...); // AnalyticsVolumeDto[]
|
|
292
292
|
|
|
293
|
+
// GET /collections/analytics/volume
|
|
294
|
+
sdk.collections.analytics.volume(...); // Record<string, AnalyticsVolumeDto[]>
|
|
295
|
+
|
|
293
296
|
// GET /countries
|
|
294
297
|
sdk.countries(...); // string[]
|
|
295
298
|
|
package/dist/index.bundled.d.cts
CHANGED
|
@@ -418,7 +418,9 @@ declare const endpoints: {
|
|
|
418
418
|
readonly output: LendingAccountProfile[];
|
|
419
419
|
};
|
|
420
420
|
readonly "/lending/market/indexes": {
|
|
421
|
-
readonly input: {
|
|
421
|
+
readonly input: {
|
|
422
|
+
chain?: ActivityChain[];
|
|
423
|
+
};
|
|
422
424
|
readonly output: Record<string, LendingIndexesDto>;
|
|
423
425
|
};
|
|
424
426
|
readonly "/user/lending/position/:identifier": {
|
|
@@ -1177,6 +1179,16 @@ declare const endpoints: {
|
|
|
1177
1179
|
};
|
|
1178
1180
|
readonly output: AnalyticsVolumeDto[];
|
|
1179
1181
|
};
|
|
1182
|
+
readonly "/collections/analytics/volume": {
|
|
1183
|
+
readonly input: {
|
|
1184
|
+
collections: string;
|
|
1185
|
+
startTime?: string;
|
|
1186
|
+
endTime?: string;
|
|
1187
|
+
bin?: string;
|
|
1188
|
+
chain: ActivityChain[];
|
|
1189
|
+
};
|
|
1190
|
+
readonly output: Record<string, AnalyticsVolumeDto[]>;
|
|
1191
|
+
};
|
|
1180
1192
|
readonly "/user/:address/analytics/volume": {
|
|
1181
1193
|
readonly input: {};
|
|
1182
1194
|
readonly output: UserAnalyticsDto;
|
package/dist/index.bundled.d.ts
CHANGED
|
@@ -418,7 +418,9 @@ declare const endpoints: {
|
|
|
418
418
|
readonly output: LendingAccountProfile[];
|
|
419
419
|
};
|
|
420
420
|
readonly "/lending/market/indexes": {
|
|
421
|
-
readonly input: {
|
|
421
|
+
readonly input: {
|
|
422
|
+
chain?: ActivityChain[];
|
|
423
|
+
};
|
|
422
424
|
readonly output: Record<string, LendingIndexesDto>;
|
|
423
425
|
};
|
|
424
426
|
readonly "/user/lending/position/:identifier": {
|
|
@@ -1177,6 +1179,16 @@ declare const endpoints: {
|
|
|
1177
1179
|
};
|
|
1178
1180
|
readonly output: AnalyticsVolumeDto[];
|
|
1179
1181
|
};
|
|
1182
|
+
readonly "/collections/analytics/volume": {
|
|
1183
|
+
readonly input: {
|
|
1184
|
+
collections: string;
|
|
1185
|
+
startTime?: string;
|
|
1186
|
+
endTime?: string;
|
|
1187
|
+
bin?: string;
|
|
1188
|
+
chain: ActivityChain[];
|
|
1189
|
+
};
|
|
1190
|
+
readonly output: Record<string, AnalyticsVolumeDto[]>;
|
|
1191
|
+
};
|
|
1180
1192
|
readonly "/user/:address/analytics/volume": {
|
|
1181
1193
|
readonly input: {};
|
|
1182
1194
|
readonly output: UserAnalyticsDto;
|