@xoxno/types 1.0.80 → 1.0.81

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
@@ -1487,6 +1487,7 @@ declare class MintStageDto {
1487
1487
  _ts: number;
1488
1488
  walletLimitReached: boolean;
1489
1489
  maxBuyable: number | null;
1490
+ constructor(props?: Partial<MintStageDto>);
1490
1491
  }
1491
1492
  declare class CreatorInfoDto {
1492
1493
  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.81",
4
4
  "description": "Shared types and utilities for XOXNO API.",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",