@xoxno/types 1.0.80 → 1.0.82

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
@@ -1,3 +1,4 @@
1
+ import * as _nestjs_common from '@nestjs/common';
1
2
 
2
3
  declare enum ActivityChain {
3
4
  MVX = "MVX",
@@ -1487,6 +1488,7 @@ declare class MintStageDto {
1487
1488
  _ts: number;
1488
1489
  walletLimitReached: boolean;
1489
1490
  maxBuyable: number | null;
1491
+ constructor(props?: Partial<MintStageDto>);
1490
1492
  }
1491
1493
  declare class CreatorInfoDto {
1492
1494
  name: string;
@@ -19,6 +19,7 @@ export declare class MintStageDto {
19
19
  _ts: number;
20
20
  walletLimitReached: boolean;
21
21
  maxBuyable: number | null;
22
+ constructor(props?: Partial<MintStageDto>);
22
23
  }
23
24
  export declare class CreatorInfoDto {
24
25
  name: string;
@@ -16,6 +16,9 @@ const collection_info_dto_1 = require("./collection-info.dto");
16
16
  const tokenPayent_1 = require("../../common/tokenPayent");
17
17
  const socials_1 = require("../../common/socials");
18
18
  class MintStageDto {
19
+ constructor(props) {
20
+ Object.assign(this, props);
21
+ }
19
22
  }
20
23
  exports.MintStageDto = MintStageDto;
21
24
  __decorate([
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xoxno/types",
3
- "version": "1.0.80",
3
+ "version": "1.0.82",
4
4
  "description": "Shared types and utilities for XOXNO API.",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",