@xoxno/types 1.0.31 → 1.0.32

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.
@@ -38,7 +38,10 @@ export declare class CollectionStatsDoc {
38
38
  chain: ActivityChain;
39
39
  _ts: number;
40
40
  id: string;
41
- collectionInfo?: Partial<CollectionProfileDoc>;
42
41
  constructor(props?: Partial<CollectionStatsDoc>);
43
42
  }
43
+ export declare class CollectionStatsDocHydrated extends CollectionStatsDoc {
44
+ collectionInfo: Partial<CollectionProfileDoc>;
45
+ constructor(props: Partial<CollectionStatsDocHydrated>);
46
+ }
44
47
  export {};
@@ -9,7 +9,7 @@ var __metadata = (this && this.__metadata) || function (k, v) {
9
9
  if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
10
10
  };
11
11
  Object.defineProperty(exports, "__esModule", { value: true });
12
- exports.CollectionStatsDoc = exports.TradingStatistics = exports.AllTimeHigh = void 0;
12
+ exports.CollectionStatsDocHydrated = exports.CollectionStatsDoc = exports.TradingStatistics = exports.AllTimeHigh = void 0;
13
13
  const swagger_1 = require("@nestjs/swagger");
14
14
  const enums_1 = require("../../../common/enums");
15
15
  const dataTypes_1 = require("./dataTypes");
@@ -276,6 +276,12 @@ __decorate([
276
276
  }),
277
277
  __metadata("design:type", String)
278
278
  ], CollectionStatsDoc.prototype, "id", void 0);
279
+ class CollectionStatsDocHydrated extends CollectionStatsDoc {
280
+ constructor(props) {
281
+ super(props);
282
+ }
283
+ }
284
+ exports.CollectionStatsDocHydrated = CollectionStatsDocHydrated;
279
285
  __decorate([
280
286
  (0, swagger_1.ApiProperty)({
281
287
  description: 'Collection profile information',
@@ -283,4 +289,4 @@ __decorate([
283
289
  type: (0, swagger_1.PartialType)(profile_1.CollectionProfileDoc),
284
290
  }),
285
291
  __metadata("design:type", Object)
286
- ], CollectionStatsDoc.prototype, "collectionInfo", void 0);
292
+ ], CollectionStatsDocHydrated.prototype, "collectionInfo", void 0);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xoxno/types",
3
- "version": "1.0.31",
3
+ "version": "1.0.32",
4
4
  "description": "Shared types and utilities for XOXNO API.",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",