@xoxno/types 1.0.52 → 1.0.53
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,12 +36,12 @@ export declare class CollectionMintProfileDoc {
|
|
|
36
36
|
_ts?: number;
|
|
37
37
|
constructor(props?: Partial<CollectionMintProfileDoc>);
|
|
38
38
|
}
|
|
39
|
-
declare
|
|
40
|
-
export declare class CollectionMintProfileDocHydrated extends CollectionMintProfileDocHydrated_base {
|
|
39
|
+
export declare class CollectionMintProfileDocHydrated extends CollectionMintProfileDoc {
|
|
41
40
|
collectionInfo: Partial<CollectionProfileDoc>;
|
|
42
41
|
creatorInfo: Partial<CreatorProfileDoc>;
|
|
43
42
|
}
|
|
44
|
-
|
|
43
|
+
declare const CollectionMintProfileDocWithStages_base: import("@nestjs/common").Type<Pick<CollectionMintProfileDocHydrated, "collectionSize" | "collectionInfo" | "contractAddress" | "collectionTag" | "cid" | "mediaType" | "hasAttributes" | "totalNftMinted" | "globalWalletLimit" | "nftTransferLimited" | "kycRequired" | "hasBotProtection" | "creatorInfo">>;
|
|
44
|
+
export declare class CollectionMintProfileDocWithStages extends CollectionMintProfileDocWithStages_base {
|
|
45
45
|
collection: string;
|
|
46
46
|
isExcludedFromMint: boolean;
|
|
47
47
|
userMintsGlobal: number;
|
|
@@ -239,7 +239,10 @@ __decorate([
|
|
|
239
239
|
}),
|
|
240
240
|
__metadata("design:type", Number)
|
|
241
241
|
], CollectionMintProfileDoc.prototype, "_ts", void 0);
|
|
242
|
-
class CollectionMintProfileDocHydrated extends
|
|
242
|
+
class CollectionMintProfileDocHydrated extends CollectionMintProfileDoc {
|
|
243
|
+
}
|
|
244
|
+
exports.CollectionMintProfileDocHydrated = CollectionMintProfileDocHydrated;
|
|
245
|
+
class CollectionMintProfileDocWithStages extends (0, swagger_1.PickType)(CollectionMintProfileDocHydrated, [
|
|
243
246
|
'contractAddress',
|
|
244
247
|
'collectionTag',
|
|
245
248
|
'nftTransferLimited',
|
|
@@ -251,9 +254,8 @@ class CollectionMintProfileDocHydrated extends (0, swagger_1.PickType)(Collectio
|
|
|
251
254
|
'globalWalletLimit',
|
|
252
255
|
'totalNftMinted',
|
|
253
256
|
'hasAttributes',
|
|
257
|
+
'collectionInfo',
|
|
258
|
+
'creatorInfo',
|
|
254
259
|
]) {
|
|
255
260
|
}
|
|
256
|
-
exports.CollectionMintProfileDocHydrated = CollectionMintProfileDocHydrated;
|
|
257
|
-
class CollectionMintProfileDocWithStages extends CollectionMintProfileDocHydrated {
|
|
258
|
-
}
|
|
259
261
|
exports.CollectionMintProfileDocWithStages = CollectionMintProfileDocWithStages;
|