@xoxno/types 1.0.66 → 1.0.67

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/dist/index.d.ts CHANGED
@@ -200,6 +200,7 @@ export * from './requests/collection/holders.dto';
200
200
  export * from './requests/collection/listings';
201
201
  export * from './requests/collection/pinned-collections';
202
202
  export * from './requests/collection/ranks';
203
+ export * from './requests/lending/lending-indexes.dto';
203
204
  export * from './requests/lending/lending-market-profile.filter';
204
205
  export * from './requests/nft-activity-data/analytics-overview';
205
206
  export * from './requests/nft-activity-data/analytics-volume';
package/dist/index.js CHANGED
@@ -216,6 +216,7 @@ __exportStar(require("./requests/collection/holders.dto"), exports);
216
216
  __exportStar(require("./requests/collection/listings"), exports);
217
217
  __exportStar(require("./requests/collection/pinned-collections"), exports);
218
218
  __exportStar(require("./requests/collection/ranks"), exports);
219
+ __exportStar(require("./requests/lending/lending-indexes.dto"), exports);
219
220
  __exportStar(require("./requests/lending/lending-market-profile.filter"), exports);
220
221
  __exportStar(require("./requests/nft-activity-data/analytics-overview"), exports);
221
222
  __exportStar(require("./requests/nft-activity-data/analytics-volume"), exports);
@@ -0,0 +1,10 @@
1
+ export declare class LendingIndexesDto {
2
+ supplyIndex: string;
3
+ supplyIndexShort: number;
4
+ borrowIndex: string;
5
+ borrowIndexShort: number;
6
+ egldPrice: string;
7
+ egldPriceShort: number;
8
+ usdPrice: string;
9
+ usdPriceShort: number;
10
+ }
@@ -0,0 +1,6 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.LendingIndexesDto = void 0;
4
+ class LendingIndexesDto {
5
+ }
6
+ exports.LendingIndexesDto = LendingIndexesDto;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xoxno/types",
3
- "version": "1.0.66",
3
+ "version": "1.0.67",
4
4
  "description": "Shared types and utilities for XOXNO API.",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",