@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/dist/sdk/swagger.d.ts
CHANGED
|
@@ -376,7 +376,9 @@ export declare const endpoints: {
|
|
|
376
376
|
readonly output: LendingAccountProfile[];
|
|
377
377
|
};
|
|
378
378
|
readonly "/lending/market/indexes": {
|
|
379
|
-
readonly input: {
|
|
379
|
+
readonly input: {
|
|
380
|
+
chain?: ActivityChain[];
|
|
381
|
+
};
|
|
380
382
|
readonly output: Record<string, LendingIndexesDto>;
|
|
381
383
|
};
|
|
382
384
|
readonly "/user/lending/position/:identifier": {
|
|
@@ -1135,6 +1137,16 @@ export declare const endpoints: {
|
|
|
1135
1137
|
};
|
|
1136
1138
|
readonly output: AnalyticsVolumeDto[];
|
|
1137
1139
|
};
|
|
1140
|
+
readonly "/collections/analytics/volume": {
|
|
1141
|
+
readonly input: {
|
|
1142
|
+
collections: string;
|
|
1143
|
+
startTime?: string;
|
|
1144
|
+
endTime?: string;
|
|
1145
|
+
bin?: string;
|
|
1146
|
+
chain: ActivityChain[];
|
|
1147
|
+
};
|
|
1148
|
+
readonly output: Record<string, AnalyticsVolumeDto[]>;
|
|
1149
|
+
};
|
|
1138
1150
|
readonly "/user/:address/analytics/volume": {
|
|
1139
1151
|
readonly input: {};
|
|
1140
1152
|
readonly output: UserAnalyticsDto;
|