@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 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
 
@@ -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;
@@ -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;