@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;
|
|
@@ -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([
|