@xoxno/types 1.0.51 → 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,11 +36,15 @@ export declare class CollectionMintProfileDoc {
36
36
  _ts?: number;
37
37
  constructor(props?: Partial<CollectionMintProfileDoc>);
38
38
  }
39
- export type CollectionMintProfileDocHydrated = Pick<CollectionMintProfileDoc, 'contractAddress' | 'collectionTag' | 'nftTransferLimited' | 'hasBotProtection' | 'kycRequired' | 'collectionSize' | 'cid' | 'mediaType' | 'globalWalletLimit'> & {
40
- collection: string;
39
+ export declare class CollectionMintProfileDocHydrated extends CollectionMintProfileDoc {
41
40
  collectionInfo: Partial<CollectionProfileDoc>;
42
41
  creatorInfo: Partial<CreatorProfileDoc>;
42
+ }
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
+ collection: string;
43
46
  isExcludedFromMint: boolean;
44
47
  userMintsGlobal: number;
45
48
  mintStages: CollectionMintStageDoc[];
46
- };
49
+ }
50
+ export {};
@@ -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.CollectionMintProfileDoc = void 0;
12
+ exports.CollectionMintProfileDocWithStages = exports.CollectionMintProfileDocHydrated = 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,3 +239,23 @@ __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;
245
+ class CollectionMintProfileDocWithStages extends (0, swagger_1.PickType)(CollectionMintProfileDocHydrated, [
246
+ 'contractAddress',
247
+ 'collectionTag',
248
+ 'nftTransferLimited',
249
+ 'hasBotProtection',
250
+ 'kycRequired',
251
+ 'collectionSize',
252
+ 'cid',
253
+ 'mediaType',
254
+ 'globalWalletLimit',
255
+ 'totalNftMinted',
256
+ 'hasAttributes',
257
+ 'collectionInfo',
258
+ 'creatorInfo',
259
+ ]) {
260
+ }
261
+ exports.CollectionMintProfileDocWithStages = CollectionMintProfileDocWithStages;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xoxno/types",
3
- "version": "1.0.51",
3
+ "version": "1.0.53",
4
4
  "description": "Shared types and utilities for XOXNO API.",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",