@xoxno/types 1.0.47 → 1.0.49

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.
@@ -2,6 +2,7 @@ import { EgldOrEsdtTokenPayment } from '../../../common/tokenPayent';
2
2
  import { CollectionDataType } from './dataTypes';
3
3
  import { CollectionProfileDoc } from './profile';
4
4
  import { CreatorProfileDoc } from '../user/user-creator-profile.doc';
5
+ import { CollectionMintStageDoc } from './mintStage';
5
6
  export declare class CollectionMintProfileDoc {
6
7
  dataType: CollectionDataType;
7
8
  collection: string;
@@ -38,4 +39,7 @@ export declare class CollectionMintProfileDoc {
38
39
  export declare class CollectionMintProfileDocHydrated extends CollectionMintProfileDoc {
39
40
  collectionInfo: Partial<CollectionProfileDoc>;
40
41
  creatorInfo: Partial<CreatorProfileDoc>;
42
+ isExcludedFromMint: boolean;
43
+ userMintsGlobal: number;
44
+ mintStages: CollectionMintStageDoc[];
41
45
  }
@@ -2,7 +2,7 @@ import { EventGuestProfile } from './event-guest.doc';
2
2
  import { EventInvitation } from './event-invitation.doc';
3
3
  import { EventScanStatus, EventScanMessage } from './event-scan-status.enum';
4
4
  import { TicketProfileSummary } from './event-ticket-profile.doc';
5
- import { NftDoc } from '../token/nft-details.doc';
5
+ import { NftProps } from '../token/nft-details.doc';
6
6
  export declare enum EventTicketQrType {
7
7
  BADGE = "badge",
8
8
  OFFLINE = "offline",
@@ -21,7 +21,7 @@ export declare class TicketValidationResult {
21
21
  message: EventScanMessage;
22
22
  guest?: EventGuestProfile;
23
23
  invitation?: EventInvitation;
24
- nfts?: NftDoc[];
24
+ nfts?: NftProps[];
25
25
  availableTickets?: TicketSelection[];
26
26
  }
27
27
  export declare class QRBody {
@@ -105,7 +105,7 @@ __decorate([
105
105
  __decorate([
106
106
  (0, swagger_1.ApiProperty)({
107
107
  description: 'NFTs used for check in, if any',
108
- type: [nft_details_doc_1.NftDoc],
108
+ type: [nft_details_doc_1.NftProps],
109
109
  required: false,
110
110
  }),
111
111
  __metadata("design:type", Array)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xoxno/types",
3
- "version": "1.0.47",
3
+ "version": "1.0.49",
4
4
  "description": "Shared types and utilities for XOXNO API.",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",