@xoxno/types 1.0.50 → 1.0.51
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.
|
@@ -36,11 +36,11 @@ export declare class CollectionMintProfileDoc {
|
|
|
36
36
|
_ts?: number;
|
|
37
37
|
constructor(props?: Partial<CollectionMintProfileDoc>);
|
|
38
38
|
}
|
|
39
|
-
export
|
|
39
|
+
export type CollectionMintProfileDocHydrated = Pick<CollectionMintProfileDoc, 'contractAddress' | 'collectionTag' | 'nftTransferLimited' | 'hasBotProtection' | 'kycRequired' | 'collectionSize' | 'cid' | 'mediaType' | 'globalWalletLimit'> & {
|
|
40
40
|
collection: string;
|
|
41
41
|
collectionInfo: Partial<CollectionProfileDoc>;
|
|
42
42
|
creatorInfo: Partial<CreatorProfileDoc>;
|
|
43
43
|
isExcludedFromMint: boolean;
|
|
44
44
|
userMintsGlobal: number;
|
|
45
45
|
mintStages: CollectionMintStageDoc[];
|
|
46
|
-
}
|
|
46
|
+
};
|
|
@@ -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.
|
|
12
|
+
exports.CollectionMintProfileDoc = void 0;
|
|
13
13
|
const swagger_1 = require("@nestjs/swagger");
|
|
14
14
|
const tokenPayent_1 = require("../../../common/tokenPayent");
|
|
15
15
|
const dataTypes_1 = require("./dataTypes");
|
|
@@ -239,6 +239,3 @@ __decorate([
|
|
|
239
239
|
}),
|
|
240
240
|
__metadata("design:type", Number)
|
|
241
241
|
], CollectionMintProfileDoc.prototype, "_ts", void 0);
|
|
242
|
-
class CollectionMintProfileDocHydrated extends CollectionMintProfileDoc {
|
|
243
|
-
}
|
|
244
|
-
exports.CollectionMintProfileDocHydrated = CollectionMintProfileDocHydrated;
|