@xoxno/types 1.0.78 → 1.0.80

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,7 +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
+ import { MintStageDto } from '../../../requests/collection/creator-drop-info';
6
6
  export declare class CollectionMintProfileDoc {
7
7
  dataType: CollectionDataType;
8
8
  collection: string;
@@ -40,11 +40,11 @@ export declare class CollectionMintProfileDocHydrated extends CollectionMintProf
40
40
  collectionInfo: Partial<CollectionProfileDoc>;
41
41
  creatorInfo: Partial<CreatorProfileDoc>;
42
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">>;
43
+ declare const CollectionMintProfileDocWithStages_base: import("@nestjs/common").Type<Pick<CollectionMintProfileDocHydrated, "collectionSize" | "collectionInfo" | "contractAddress" | "collectionTag" | "nftTransferLimited" | "hasBotProtection" | "kycRequired" | "totalNftMinted" | "cid" | "mediaType" | "globalWalletLimit" | "creatorInfo" | "hasAttributes">>;
44
44
  export declare class CollectionMintProfileDocWithStages extends CollectionMintProfileDocWithStages_base {
45
45
  collection: string;
46
46
  isExcludedFromMint: boolean;
47
47
  userMintsGlobal: number;
48
- mintStages: CollectionMintStageDoc[];
48
+ mintStages: MintStageDto[];
49
49
  }
50
50
  export {};
@@ -1,5 +1,5 @@
1
1
  import { EventStageProfileCreateDto } from './event-stage-profile-create.dto';
2
- declare const EventStageProfileEditDto_base: import("@nestjs/common").Type<Pick<EventStageProfileCreateDto, "prices" | "maxLimit" | "userLimit" | "isEnabled" | "isWhitelist" | "requiredApproval">>;
2
+ declare const EventStageProfileEditDto_base: import("@nestjs/common").Type<Pick<EventStageProfileCreateDto, "isWhitelist" | "prices" | "maxLimit" | "userLimit" | "isEnabled" | "requiredApproval">>;
3
3
  export declare class EventStageProfileEditDto extends EventStageProfileEditDto_base {
4
4
  name: string;
5
5
  startTime: number;
package/dist/index.d.ts CHANGED
@@ -1460,8 +1460,17 @@ declare class CreatorProfileDoc {
1460
1460
  constructor(props?: Partial<CreatorProfileDoc>);
1461
1461
  }
1462
1462
 
1463
- declare class CollectionMintStageDoc {
1464
- dataType: CollectionDataType;
1463
+ declare type CollectionInfoDto_base = Pick<CollectionProfileDoc, "description" | "name" | "profile" | "followCount" | "holdersCount" | "isVisible" | "isVerified" | "socials" | "banner" | "owner" | "collectionSize">;
1464
+ declare type CollectionInfoDto = CollectionInfoDto_base & {
1465
+ volume: number;
1466
+ };
1467
+ declare const CollectionInfoDtoNest_base: _nestjs_common.Type<Pick<CollectionProfileDoc, "description" | "name" | "profile" | "followCount" | "holdersCount" | "isVisible" | "isVerified" | "socials" | "banner" | "owner" | "collectionSize">>;
1468
+ export declare class CollectionInfoDtoNest extends CollectionInfoDtoNest_base {
1469
+ volume: number;
1470
+ }
1471
+
1472
+ declare class MintStageDto {
1473
+ dataType: string;
1465
1474
  collection: string;
1466
1475
  contractAddress: string;
1467
1476
  collectionTag: string;
@@ -1475,7 +1484,37 @@ declare class CollectionMintStageDoc {
1475
1484
  walletLimit: number;
1476
1485
  prices: EgldOrEsdtTokenPayment[];
1477
1486
  id: string;
1478
- constructor(props?: Partial<CollectionMintStageDoc>);
1487
+ _ts: number;
1488
+ walletLimitReached: boolean;
1489
+ maxBuyable: number | null;
1490
+ }
1491
+ declare class CreatorInfoDto {
1492
+ name: string;
1493
+ description: string;
1494
+ contractAddress: string;
1495
+ address: string;
1496
+ profile: string;
1497
+ banner: string;
1498
+ joinedDate: number;
1499
+ creatorTag: string;
1500
+ socials?: SocialsDto;
1501
+ }
1502
+ declare class DropInfoDto {
1503
+ collection: string;
1504
+ contractAddress: string;
1505
+ collectionTag: string;
1506
+ nftTransferLimited: boolean;
1507
+ hasBotProtection: boolean;
1508
+ kycRequired: boolean;
1509
+ totalNftMinted: number;
1510
+ collectionSize: number;
1511
+ cid: string;
1512
+ mediaType: string;
1513
+ userMintsGlobal: number;
1514
+ globalWalletLimit: number;
1515
+ mintStages: MintStageDto[];
1516
+ collectionInfo: CollectionInfoDto;
1517
+ creatorInfo: CreatorInfoDto;
1479
1518
  }
1480
1519
 
1481
1520
  declare class CollectionMintProfileDoc {
@@ -1515,12 +1554,19 @@ declare class CollectionMintProfileDocHydrated extends CollectionMintProfileDoc
1515
1554
  collectionInfo: Partial<CollectionProfileDoc>;
1516
1555
  creatorInfo: Partial<CreatorProfileDoc>;
1517
1556
  }
1518
- declare type CollectionMintProfileDocWithStages_base = Pick<CollectionMintProfileDocHydrated, "collectionSize" | "collectionInfo" | "contractAddress" | "collectionTag" | "cid" | "mediaType" | "hasAttributes" | "totalNftMinted" | "globalWalletLimit" | "nftTransferLimited" | "kycRequired" | "hasBotProtection" | "creatorInfo">;
1557
+ declare type CollectionMintProfileDocWithStages_base = Pick<CollectionMintProfileDocHydrated, "collectionSize" | "collectionInfo" | "contractAddress" | "collectionTag" | "nftTransferLimited" | "hasBotProtection" | "kycRequired" | "totalNftMinted" | "cid" | "mediaType" | "globalWalletLimit" | "creatorInfo" | "hasAttributes">;
1519
1558
  declare type CollectionMintProfileDocWithStages = CollectionMintProfileDocWithStages_base & {
1520
1559
  collection: string;
1521
1560
  isExcludedFromMint: boolean;
1522
1561
  userMintsGlobal: number;
1523
- mintStages: CollectionMintStageDoc[];
1562
+ mintStages: MintStageDto[];
1563
+ };
1564
+ declare const CollectionMintProfileDocWithStagesNest_base: _nestjs_common.Type<Pick<CollectionMintProfileDocHydrated, "collectionSize" | "collectionInfo" | "contractAddress" | "collectionTag" | "nftTransferLimited" | "hasBotProtection" | "kycRequired" | "totalNftMinted" | "cid" | "mediaType" | "globalWalletLimit" | "creatorInfo" | "hasAttributes">>;
1565
+ export declare class CollectionMintProfileDocWithStagesNest extends CollectionMintProfileDocWithStagesNest_base {
1566
+ collection: string;
1567
+ isExcludedFromMint: boolean;
1568
+ userMintsGlobal: number;
1569
+ mintStages: MintStageDto[];
1524
1570
  }
1525
1571
 
1526
1572
  declare class TradingDataSummary {
@@ -2037,7 +2083,10 @@ declare class LendingEModeCategoryProfileDoc {
2037
2083
  constructor(init?: Partial<LendingEModeCategoryProfileDoc>);
2038
2084
  }
2039
2085
  declare type ShortLendingTokenEModeProfileDoc_base = Pick<LendingTokenEModeProfileDoc, "token" | "canBeCollateral" | "canBeBorrowed" | "eModeCategory">;
2040
- declare type ShortLendingTokenEModeProfileDoc = ShortLendingTokenEModeProfileDoc_base
2086
+ declare type ShortLendingTokenEModeProfileDoc = ShortLendingTokenEModeProfileDoc_base ;
2087
+ declare const ShortLendingTokenEModeProfileDocNest_base: _nestjs_common.Type<Pick<LendingTokenEModeProfileDoc, "token" | "canBeCollateral" | "canBeBorrowed" | "eModeCategory">>;
2088
+ export declare class ShortLendingTokenEModeProfileDocNest extends ShortLendingTokenEModeProfileDocNest_base {
2089
+ }
2041
2090
  declare class LendingEModeCategoryProfile extends LendingEModeCategoryProfileDoc {
2042
2091
  eModeTokenProfiles: Pick<LendingTokenEModeProfileDoc, 'token' | 'canBeBorrowed' | 'canBeCollateral' | 'eModeCategory'>[];
2043
2092
  }
@@ -2519,6 +2568,11 @@ declare type TicketProfileSummary_base = Pick<EventTicketProfileDoc, "descriptio
2519
2568
  declare type TicketProfileSummary = TicketProfileSummary_base & {
2520
2569
  ticketId?: string;
2521
2570
  quantity?: number;
2571
+ };
2572
+ declare const TicketProfileSummaryNest_base: _nestjs_common.Type<Pick<EventTicketProfileDoc, "description" | "name" | "profile" | "badgeColor" | "characteristics">>;
2573
+ export declare class TicketProfileSummaryNest extends TicketProfileSummaryNest_base {
2574
+ ticketId?: string;
2575
+ quantity?: number;
2522
2576
  }
2523
2577
 
2524
2578
  declare class EventGuestCheckIn {
@@ -2651,7 +2705,10 @@ declare class EventGuestAnswerDoc {
2651
2705
  static create(data: Omit<EventGuestAnswerDoc, 'id' | 'dataType' | 'createdAt' | 'pk'>): EventGuestAnswerDoc;
2652
2706
  }
2653
2707
  declare type EventQuestionAnswerDto_base = Pick<EventGuestAnswerDoc, "questionId" | "answer">;
2654
- declare type EventQuestionAnswerDto = EventQuestionAnswerDto_base
2708
+ declare type EventQuestionAnswerDto = EventQuestionAnswerDto_base ;
2709
+ declare const EventQuestionAnswerDtoNest_base: _nestjs_common.Type<Pick<EventGuestAnswerDoc, "questionId" | "answer">>;
2710
+ export declare class EventQuestionAnswerDtoNest extends EventQuestionAnswerDtoNest_base {
2711
+ }
2655
2712
  declare class AnsweredQuestionWithDetails {
2656
2713
  answer?: EventGuestAnswerDoc;
2657
2714
  question?: EventQuestionDoc;
@@ -3171,7 +3228,10 @@ declare class EventReferralConfigCreateDto {
3171
3228
  }
3172
3229
 
3173
3230
  declare type EventReferralConfigEditDto_base = Partial<EventReferralConfigCreateDto>;
3174
- declare type EventReferralConfigEditDto = EventReferralConfigEditDto_base
3231
+ declare type EventReferralConfigEditDto = EventReferralConfigEditDto_base ;
3232
+ declare const EventReferralConfigEditDtoNest_base: _nestjs_common.Type<Partial<EventReferralConfigCreateDto>>;
3233
+ export declare class EventReferralConfigEditDtoNest extends EventReferralConfigEditDtoNest_base {
3234
+ }
3175
3235
 
3176
3236
  declare class EventReferralConfigFilterCriteriaDto {
3177
3237
  searchText?: string;
@@ -3301,11 +3361,17 @@ declare class EventStageProfileCreateDto {
3301
3361
  prices: EgldOrEsdtTokenPayment[];
3302
3362
  }
3303
3363
 
3304
- declare type EventStageProfileEditDto_base = Pick<EventStageProfileCreateDto, "prices" | "maxLimit" | "userLimit" | "isEnabled" | "isWhitelist" | "requiredApproval">;
3364
+ declare type EventStageProfileEditDto_base = Pick<EventStageProfileCreateDto, "isWhitelist" | "prices" | "maxLimit" | "userLimit" | "isEnabled" | "requiredApproval">;
3305
3365
  declare type EventStageProfileEditDto = EventStageProfileEditDto_base & {
3306
3366
  name: string;
3307
3367
  startTime: number;
3308
3368
  endTime: number;
3369
+ };
3370
+ declare const EventStageProfileEditDtoNest_base: _nestjs_common.Type<Pick<EventStageProfileCreateDto, "isWhitelist" | "prices" | "maxLimit" | "userLimit" | "isEnabled" | "requiredApproval">>;
3371
+ export declare class EventStageProfileEditDtoNest extends EventStageProfileEditDtoNest_base {
3372
+ name: string;
3373
+ startTime: number;
3374
+ endTime: number;
3309
3375
  }
3310
3376
 
3311
3377
  declare class EventStageProfileDoc {
@@ -3341,6 +3407,11 @@ declare type EventTicketProfileEditDto_base = Pick<EventTicketProfileCreateDto,
3341
3407
  declare type EventTicketProfileEditDto = EventTicketProfileEditDto_base & {
3342
3408
  name: string;
3343
3409
  characteristics: Record<string, string | number>;
3410
+ };
3411
+ declare const EventTicketProfileEditDtoNest_base: _nestjs_common.Type<Pick<EventTicketProfileCreateDto, "description" | "royalties" | "badgeColor" | "maxLimit" | "userLimit">>;
3412
+ export declare class EventTicketProfileEditDtoNest extends EventTicketProfileEditDtoNest_base {
3413
+ name: string;
3414
+ characteristics: Record<string, string | number>;
3344
3415
  }
3345
3416
 
3346
3417
  declare class EventUserRoleCreateDto {
@@ -3364,6 +3435,19 @@ declare type EventVoucherCreateDto = EventVoucherCreateDto_base & {
3364
3435
  startDate?: number;
3365
3436
  endDate?: number;
3366
3437
  isActive?: boolean;
3438
+ };
3439
+ declare const EventVoucherCreateDtoNest_base: _nestjs_common.Type<Partial<Omit<EventVoucherDoc, "id" | "dataType" | "createdAt" | "usedCount" | "createdBy">>>;
3440
+ export declare class EventVoucherCreateDtoNest extends EventVoucherCreateDtoNest_base {
3441
+ code?: string;
3442
+ type: VoucherType;
3443
+ amount: number;
3444
+ maxDiscountAmount?: number;
3445
+ maxUses: number;
3446
+ maxUsesPerUser: number;
3447
+ eventId: string;
3448
+ startDate?: number;
3449
+ endDate?: number;
3450
+ isActive?: boolean;
3367
3451
  }
3368
3452
 
3369
3453
  declare type EventVoucherEditDto_base = Partial<Omit<EventVoucherCreateDto, "eventId" | "code">>;
@@ -3371,6 +3455,12 @@ declare type EventVoucherEditDto = EventVoucherEditDto_base & {
3371
3455
  isActive?: boolean;
3372
3456
  startDate?: number;
3373
3457
  endDate?: number;
3458
+ };
3459
+ declare const EventVoucherEditDtoNest_base: _nestjs_common.Type<Partial<Omit<EventVoucherCreateDto, "eventId" | "code">>>;
3460
+ export declare class EventVoucherEditDtoNest extends EventVoucherEditDtoNest_base {
3461
+ isActive?: boolean;
3462
+ startDate?: number;
3463
+ endDate?: number;
3374
3464
  }
3375
3465
 
3376
3466
  declare class EventVoucherFilterCriteriaDto {
@@ -4272,7 +4362,10 @@ declare enum StakingStatus {
4272
4362
  }
4273
4363
 
4274
4364
  declare type StakingPostDTO_base = Pick<StakingSummary, "description" | "name">;
4275
- declare type StakingPostDTO = StakingPostDTO_base
4365
+ declare type StakingPostDTO = StakingPostDTO_base ;
4366
+ declare const StakingPostDTONest_base: _nestjs_common.Type<Pick<StakingSummary, "description" | "name">>;
4367
+ export declare class StakingPostDTONest extends StakingPostDTONest_base {
4368
+ }
4276
4369
 
4277
4370
  declare class UserStakingSummaryDto {
4278
4371
  collection: string;
@@ -4448,7 +4541,10 @@ declare class TransactionSendResult {
4448
4541
  txHash: string;
4449
4542
  }
4450
4543
  declare type BatchTransactionResponse_base = Pick<TransactionSendResult, "txHash" | "status">;
4451
- declare type BatchTransactionResponse = BatchTransactionResponse_base
4544
+ declare type BatchTransactionResponse = BatchTransactionResponse_base ;
4545
+ declare const BatchTransactionResponseNest_base: _nestjs_common.Type<Pick<TransactionSendResult, "txHash" | "status">>;
4546
+ export declare class BatchTransactionResponseNest extends BatchTransactionResponseNest_base {
4547
+ }
4452
4548
 
4453
4549
  declare enum LinkedAccountType {
4454
4550
  WALLET = "wallet",
@@ -4773,11 +4869,6 @@ interface HolderDetails {
4773
4869
  type: string;
4774
4870
  }
4775
4871
 
4776
- declare type CollectionInfoDto_base = Pick<CollectionProfileDoc, "description" | "name" | "profile" | "followCount" | "holdersCount" | "isVisible" | "isVerified" | "socials" | "banner" | "owner" | "collectionSize">;
4777
- declare type CollectionInfoDto = CollectionInfoDto_base & {
4778
- volume: number;
4779
- }
4780
-
4781
4872
  declare class CollectionMintProfileFilter extends CosmosDbGenericFilter<CollectionMintProfileDoc> {
4782
4873
  filters: {
4783
4874
  dataType?: CollectionDataType;
@@ -4871,7 +4962,10 @@ declare class CollectionStatsDto extends CollectionStatsDoc {
4871
4962
  }
4872
4963
 
4873
4964
  declare type CollectionProfileUpdateDto_base = Pick<CollectionProfileDoc, "description" | "profile" | "socials">;
4874
- declare type CollectionProfileUpdateDto = CollectionProfileUpdateDto_base
4965
+ declare type CollectionProfileUpdateDto = CollectionProfileUpdateDto_base ;
4966
+ declare const CollectionProfileUpdateDtoNest_base: _nestjs_common.Type<Pick<CollectionProfileDoc, "description" | "profile" | "socials">>;
4967
+ export declare class CollectionProfileUpdateDtoNest extends CollectionProfileUpdateDtoNest_base {
4968
+ }
4875
4969
 
4876
4970
  declare class MintingListingDto extends CollectionMintProfileDoc {
4877
4971
  collectionInfo: CollectionInfoDto;
@@ -4881,52 +4975,6 @@ declare class CreatorDetailsDto extends CreatorProfileDoc {
4881
4975
  events?: EventProfileDoc[] | EventProfile[];
4882
4976
  }
4883
4977
 
4884
- declare class MintStageDto {
4885
- dataType: string;
4886
- collection: string;
4887
- contractAddress: string;
4888
- collectionTag: string;
4889
- name: string;
4890
- startTime: number;
4891
- endTime: number;
4892
- mintCount: number;
4893
- mintLimit: number;
4894
- mintEnabled: boolean;
4895
- isWhitelist: boolean;
4896
- walletLimit: number;
4897
- prices: EgldOrEsdtTokenPayment[];
4898
- id: string;
4899
- _ts: number;
4900
- walletLimitReached: boolean;
4901
- maxBuyable: number | null;
4902
- }
4903
- declare class CreatorInfoDto {
4904
- name: string;
4905
- contractAddress: string;
4906
- address: string;
4907
- profile: string;
4908
- banner: string;
4909
- joinedDate: number;
4910
- creatorTag: string;
4911
- }
4912
- declare class DropInfoDto {
4913
- collection: string;
4914
- contractAddress: string;
4915
- collectionTag: string;
4916
- nftTransferLimited: boolean;
4917
- hasBotProtection: boolean;
4918
- kycRequired: boolean;
4919
- totalNftMinted: number;
4920
- collectionSize: number;
4921
- cid: string;
4922
- mediaType: string;
4923
- userMintsGlobal: number;
4924
- globalWalletLimit: number;
4925
- mintStages: MintStageDto[];
4926
- collectionInfo: CollectionInfoDto;
4927
- creatorInfo: CreatorInfoDto;
4928
- }
4929
-
4930
4978
  declare class FloorPriceDto {
4931
4979
  collection: string;
4932
4980
  price: number;
@@ -5347,7 +5395,10 @@ declare class CreatorProfileDto extends CreatorProfileDoc {
5347
5395
  followCount: number;
5348
5396
  }
5349
5397
  declare type CreatorUpdateProfileDTO_base = Pick<CreatorProfileDto, "description" | "profile" | "socials">;
5350
- declare type CreatorUpdateProfileDTO = CreatorUpdateProfileDTO_base
5398
+ declare type CreatorUpdateProfileDTO = CreatorUpdateProfileDTO_base ;
5399
+ declare const CreatorUpdateProfileDTONest_base: _nestjs_common.Type<Pick<CreatorProfileDto, "description" | "profile" | "socials">>;
5400
+ export declare class CreatorUpdateProfileDTONest extends CreatorUpdateProfileDTONest_base {
5401
+ }
5351
5402
 
5352
5403
  declare class EditUserCreatorProfileDto {
5353
5404
  description?: string;
@@ -5391,7 +5442,10 @@ declare class UserProfileDto extends UserProfileDoc {
5391
5442
  userSettings: UserSettingsDto;
5392
5443
  }
5393
5444
  declare type UserUpdateDTO_base = Pick<UserProfileDto, "description" | "profile" | "socials">;
5394
- declare type UserUpdateDTO = UserUpdateDTO_base
5445
+ declare type UserUpdateDTO = UserUpdateDTO_base ;
5446
+ declare const UserUpdateDTONest_base: _nestjs_common.Type<Pick<UserProfileDto, "description" | "profile" | "socials">>;
5447
+ export declare class UserUpdateDTONest extends UserUpdateDTONest_base {
5448
+ }
5395
5449
 
5396
5450
  declare class SetEmailDto {
5397
5451
  readonly enabled: boolean;
@@ -5485,5 +5539,5 @@ type DropsOrderBy = IOrderBy<CollectionMintProfileDoc, 'startTime'>;
5485
5539
  type CollectionsOrderBy = IOrderBy<CollectionProfileDoc, 'statistics.tradeData.weekEgldVolume' | 'statistics.tradeData.dayEgldVolume' | 'statistics.tradeData.totalEgldVolume' | 'statistics.tradeData.averageEgldPrice' | 'statistics.tradeData.athEgldPrice' | 'statistics.tradeData.totalTrades' | 'statistics.other.nftCount' | 'statistics.other.followCount'>;
5486
5540
  type GlobalOfferOrderBy = IOrderBy<GlobalOfferDoc, 'priceShort' | 'offerId' | 'timestamp'>;
5487
5541
 
5488
- export { ActivityChain, AirdropDto, AirdropDtoHydrated, AllTimeHigh, AnalyticsMarketplaceUniqueUsers, AnalyticsVolumeDto, AnalyticsVolumeResponseDto, AnsweredQuestionWithDetails, ArdaSwapResultDto, AttributesExamplesDto, AuctionTypes, AuthStrategy, AzureWsEventName, AzureWsHubName, BadgeDecryptedData, BageQRData, BatchTransactionResponse, BinanceBizStatus, BinanceBizType, BinanceGoodsCategory, BinanceGoodsType, BinanceTerminalType, BoberBattleActivity, BoberBattleGames, BoberBattleLeaderboardDto, BoberBattleUserDto, BoberBattleUserDtoHydrated, CallbackUrl, ChatDataType, ChatMessageContentDto, ChatMessageContentType, ChatMessageDoc, ChatMessageDocHydrated, ChatMessagePaginated, ChatMessageReplyDto, CheckLikeStatusResponseDto, CollectionDataType, CollectionHoldersDto, CollectionHoldersSummary, CollectionInfoDto, CollectionMintProfileDoc, CollectionMintProfileDocHydrated, CollectionMintProfileDocWithStages, CollectionMintProfileFilter, CollectionMintProfilePaginated, CollectionMintStageDoc, CollectionOffersFilter, CollectionOffersFilterCriteriaDto, CollectionOwnerDto, CollectionPinnedStatusDto, CollectionProfileDoc, CollectionProfileFilter, CollectionProfilePaginated, CollectionProfileUpdateDto, CollectionRanksDTO, CollectionStatsDoc, CollectionStatsDocHydrated, CollectionStatsDto, CollectionStatsFilter, CollectionStatsFilterCriteriaDto, CollectionStatsPaginated, CollectionVerificationDoc, ConferenceSubCategory, CosmosDbContainer, CosmosDbGenericFilter, CosmosPaginatedResponse, CosmosPaginatedSingleResponse, CreatorDetailsDto, CreatorMarketingNotificationDto, CreatorProfileDoc, CreatorProfileDto, CreatorUpdateProfileDTO, DeviceNotificationSettingsUpdateDto, DevicePlatform, DeviceTagStorageDoc, DiscountCodeValidationResponse, DropInfoDto, EditUserCreatorProfileDto, EditUserProfileDto, EgldOrEsdtTokenPayment, EntertainmentSubCategory, EsdtTokenSubType, EsdtTokenSummary, EsdtTokenType, EventCategory, EventCheckInQR, EventCountByLocation, EventCountGroupedByCountry, EventExtraProperties, EventGuestAnswerDoc, EventGuestApproveDto, EventGuestCheckIn, EventGuestDoc, EventGuestExport, EventGuestFilter, EventGuestFilterCriteriaDto, EventGuestProfile, EventGuestProfileQuery, EventGuestProfileSummary, EventGuestRegistrationDto, EventGuestStatus, EventGuestSummary, EventInvitation, EventInvitationCreateDto, EventInvitationDoc, EventInvitationFilter, EventInvitationFilterCriteriaDto, EventInvitationQuery, EventInvitationStatus, EventLocationCities, EventLocationDto, EventNotificationDto, EventProfile, EventProfileCreateDto, EventProfileDoc, EventProfileEditDto, EventProfileFilter, EventProfileFilterCriteriaDto, EventProfileQuery, EventQuestionAnswerDto, EventQuestionAnswerType, EventQuestionCreateDto, EventQuestionDoc, EventQuestionEditDto, EventQuestionValidator, EventReferralConfigCreateDto, EventReferralConfigDoc, EventReferralConfigEditDto, EventReferralConfigFilter, EventReferralConfigFilterCriteriaDto, EventReferralConfigPaginated, EventReferralCreateDto, EventReferralDoc, EventReferralEditDto, EventReferralFilter, EventReferralFilterCriteriaDto, EventReferralPaginated, EventReferralUsageDoc, EventRegistrationResponseDto, EventScanMessage, EventScanStatus, EventSeoDto, EventStageProfileCreateDto, EventStageProfileDoc, EventStageProfileEditDto, EventStartPrice, EventSubCategory, EventTicketProfileCreateDto, EventTicketProfileDoc, EventTicketProfileEditDto, EventTicketQrType, EventUserRole, EventUserRoleCreateDto, EventUserRoleDoc, EventUserRolePermission, EventUserRoles, EventVoucherCreateDto, EventVoucherDoc, EventVoucherEditDto, EventVoucherFilter, EventVoucherFilterCriteriaDto, EventVoucherQuery, ExternalPayment, ExternalPaymentInternalStatus, ExternalPaymentRequest, ExtraProperties, FestivalSubCategory, FetchSwapRoutesResponseDto, FiatTokens, FilterQueryDto, FloorPriceDto, FollowCollectionDto, FollowUserDto, GetMyEventsQuery, GlobalAnalyticsOverviewResponseDto, GlobalConversationSummaryDto, GlobalOfferDoc, GlobalOfferDocHydrated, GlobalOfferPaginated, GlobalSearchResourcesDto, GlobalSearchResourcesPaginated, GroupChatProfileDoc, IMetrics, InventorySummaryDto, InventorySummaryDtoHydrated, ItemType, KUSTO_DB, KUSTO_DB_XOXNO_TABLE, KustoOrderDirection, LaunchpadCustomData, LendingAccountProfile, LendingAccountProfileDoc, LendingDataType, LendingEModeCategoryProfile, LendingEModeCategoryProfileDoc, LendingIndexesDto, LendingMarketAnalyticsGraph, LendingMarketParticipants, LendingMarketProfile, LendingMarketProfileDoc, LendingMarketProfileExtraProperties, LendingMarketProfileFilter, LendingMarketProfileFilterCriteriaDto, LendingMarketProfileQuery, LendingNftAttributes, LendingOverallStats, LendingPositionOrderByColumn, LendingPositionStatus, LendingPositionType, LendingTokenEModeProfileDoc, LendingTokenPriceDto, LikeNftDto, LinkedAccountType, ListingsResponseDto, LoginAccessDto, LoginRequestDto, ManualCheckInDto, MarketExtraApy, MarketplaceActivity, MarketplaceCustomData, MarketplacesOnSaleNames, MeetupSubCategory, MessageDto, MetadataAttributesDto, MetadataDto, MobileDeviceDoc, MobileDeviceRegistrationDto, MyEvents, NFTEventData, NativeWalletDto, NetworkingSubCategory, NftActivityData, NftActivityDataHydrated, NftActivityDoc, NftActivityDocHydrated, NftActivityEventSource, NftActivityFilter, NftActivityFilterCriteriaDto, NftActivityPaginated, NftActivityType, NftDoc, NftDocFilter, NftDocFilterCriteriaDto, NftDocHydrated, NftExtraAttributesType, NftExtraMetadata, NftMedia, NftMetadata, NftMetadataAttributes, NftOfferDoc, NftOfferDocFilter, NftOfferDocFilterCriteria, NftOfferDocHydrated, NftOfferPaginated, NftPaginated, NftSaleInfo, NftSaleInfoHydrated, NotificationAction, NotificationAssetType, NotificationDataType, NotificationDoc, NotificationMetadata, NotificationPaginated, NotificationPreferenceType, NotificationPreferencesPostDto, NotificationSuccessResponseDto, NotificationTemplate, NotificationTemplateBuilder, OfferType, OwnedCollectionsDto, OwnedServicesDto, OwnerDto, PaymentProvider, PinnedCollectionDto, PositionMode, PremiumType, ProtocolAprType, ProviderDto, PurchaseType, PushNotificationCountResponse, PushNotificationDoc, PushNotificationResponse, PushNotificationStatus, PushNotificationType, QRBody, REDIS_KEYS, RangeFilter, RateType, ReferralConditionType, RegistrationDetailsDto, RegistrationType, RewardDetails, Role, RoleStatus, Rule, SaleInfoFilterDto, SearchIndexName, SendChatMessageDto, SetEmailDto, SetPhoneDto, SftOwnerDoc, ShortLendingTokenEModeProfileDoc, SignAcceptGlobalOfferDto, SignDataDto, SignMintDto, SignWithdrawDto, SocialsDto, StagePrice, StakingCreatorDoc, StakingDataType, StakingDelegatorDoc, StakingExploreDto, StakingExploreDtoHydrated, StakingIssuingTypeString, StakingPoolDoc, StakingPoolTypeString, StakingPostDTO, StakingStatus, StakingSummary, StakingUserPoolNfts, StatisticsDto, StatisticsMintDataDto, StatisticsOtherDto, StatisticsTradeDataDto, StorageContainerName, SuccessDto, SuccessWithMessageDto, SwitchWalletDto, TTLS, TagCategory, TagManager, TagPriority, TicketCalculationRequestDto, TicketInfo, TicketPricesResponse, TicketProfileSummary, TicketSelection, TicketSelectionDto, TicketValidationResult, TicketingDataType, TicketsType, TokenCategory, TokenDataDoc, TokenDataType, TokenDocDto, TradesilvaniaSignature, TradingStatistics, TraitInfo, TransactionCreate, TransactionProcessStatus, TransactionSendResult, TransactionStatus, TransferPolicy, TwispayCardTransactionMode, TwispayEventTicketCustomData, TwispayIntervalType, TwispayTransactionRefundReason, TwispayTransactionStatus, TwispayTransactionType, UserAnalyticsDto, UserBillingDetails, UserBlockDoc, UserBlockDocHydrated, UserBlockPaginated, UserConversationDoc, UserConversationDocHydrated, UserConversationPaginated, UserDataType, UserDeposit, UserEmailNotificationSettings, UserFavorite, UserFavoriteResponseDto, UserFavoriteType, UserNetworkInfoDto, UserNotificationPreferences, UserPhoneNotificationSettings, UserProfileDoc, UserProfileDto, UserSettingsDoc, UserStakingSummaryDto, UserStatsDto, UserStatsOrderByColumn, UserTokenInventoryResponseDto, UserTradingSummary, UserUpdateDTO, ValueFp, VerifyEmailDto, Visibility, VolumeGraph, VoucherType, WalletClientType, WalletDetailDto, WalletTradingStats, Web2UserAccount, Web2UserAccountDto, Web2UserDoc, Web2UserShardsDto, Web2UserWallet, Web2WalletDto, Web3SubCategory, WebSocketTokenDto, XoxnoAuctionType, XoxnoAuctionTypeString, XoxnoEgldLiquidScEventName, XoxnoEgldLsActivity, XoxnoInfo, XoxnoLiquidStatsDto, XoxnoLsActivity, XoxnoMarketplaceScCollectionConfig, XoxnoStakingIssuingReward, XoxnoStakingReward, XoxnoStakingRewardClaim, createCosmosPaginatedResponse, tickerFromIdentifier };
5542
+ export { ActivityChain, AirdropDto, AirdropDtoHydrated, AllTimeHigh, AnalyticsMarketplaceUniqueUsers, AnalyticsVolumeDto, AnalyticsVolumeResponseDto, AnsweredQuestionWithDetails, ArdaSwapResultDto, AttributesExamplesDto, AuctionTypes, AuthStrategy, AzureWsEventName, AzureWsHubName, BadgeDecryptedData, BageQRData, BatchTransactionResponse, BinanceBizStatus, BinanceBizType, BinanceGoodsCategory, BinanceGoodsType, BinanceTerminalType, BoberBattleActivity, BoberBattleGames, BoberBattleLeaderboardDto, BoberBattleUserDto, BoberBattleUserDtoHydrated, CallbackUrl, ChatDataType, ChatMessageContentDto, ChatMessageContentType, ChatMessageDoc, ChatMessageDocHydrated, ChatMessagePaginated, ChatMessageReplyDto, CheckLikeStatusResponseDto, CollectionDataType, CollectionHoldersDto, CollectionHoldersSummary, CollectionInfoDto, CollectionMintProfileDoc, CollectionMintProfileDocHydrated, CollectionMintProfileDocWithStages, CollectionMintProfileFilter, CollectionMintProfilePaginated, CollectionOffersFilter, CollectionOffersFilterCriteriaDto, CollectionOwnerDto, CollectionPinnedStatusDto, CollectionProfileDoc, CollectionProfileFilter, CollectionProfilePaginated, CollectionProfileUpdateDto, CollectionRanksDTO, CollectionStatsDoc, CollectionStatsDocHydrated, CollectionStatsDto, CollectionStatsFilter, CollectionStatsFilterCriteriaDto, CollectionStatsPaginated, CollectionVerificationDoc, ConferenceSubCategory, CosmosDbContainer, CosmosDbGenericFilter, CosmosPaginatedResponse, CosmosPaginatedSingleResponse, CreatorDetailsDto, CreatorInfoDto, CreatorMarketingNotificationDto, CreatorProfileDoc, CreatorProfileDto, CreatorUpdateProfileDTO, DeviceNotificationSettingsUpdateDto, DevicePlatform, DeviceTagStorageDoc, DiscountCodeValidationResponse, DropInfoDto, EditUserCreatorProfileDto, EditUserProfileDto, EgldOrEsdtTokenPayment, EntertainmentSubCategory, EsdtTokenSubType, EsdtTokenSummary, EsdtTokenType, EventCategory, EventCheckInQR, EventCountByLocation, EventCountGroupedByCountry, EventExtraProperties, EventGuestAnswerDoc, EventGuestApproveDto, EventGuestCheckIn, EventGuestDoc, EventGuestExport, EventGuestFilter, EventGuestFilterCriteriaDto, EventGuestProfile, EventGuestProfileQuery, EventGuestProfileSummary, EventGuestRegistrationDto, EventGuestStatus, EventGuestSummary, EventInvitation, EventInvitationCreateDto, EventInvitationDoc, EventInvitationFilter, EventInvitationFilterCriteriaDto, EventInvitationQuery, EventInvitationStatus, EventLocationCities, EventLocationDto, EventNotificationDto, EventProfile, EventProfileCreateDto, EventProfileDoc, EventProfileEditDto, EventProfileFilter, EventProfileFilterCriteriaDto, EventProfileQuery, EventQuestionAnswerDto, EventQuestionAnswerType, EventQuestionCreateDto, EventQuestionDoc, EventQuestionEditDto, EventQuestionValidator, EventReferralConfigCreateDto, EventReferralConfigDoc, EventReferralConfigEditDto, EventReferralConfigFilter, EventReferralConfigFilterCriteriaDto, EventReferralConfigPaginated, EventReferralCreateDto, EventReferralDoc, EventReferralEditDto, EventReferralFilter, EventReferralFilterCriteriaDto, EventReferralPaginated, EventReferralUsageDoc, EventRegistrationResponseDto, EventScanMessage, EventScanStatus, EventSeoDto, EventStageProfileCreateDto, EventStageProfileDoc, EventStageProfileEditDto, EventStartPrice, EventSubCategory, EventTicketProfileCreateDto, EventTicketProfileDoc, EventTicketProfileEditDto, EventTicketQrType, EventUserRole, EventUserRoleCreateDto, EventUserRoleDoc, EventUserRolePermission, EventUserRoles, EventVoucherCreateDto, EventVoucherDoc, EventVoucherEditDto, EventVoucherFilter, EventVoucherFilterCriteriaDto, EventVoucherQuery, ExternalPayment, ExternalPaymentInternalStatus, ExternalPaymentRequest, ExtraProperties, FestivalSubCategory, FetchSwapRoutesResponseDto, FiatTokens, FilterQueryDto, FloorPriceDto, FollowCollectionDto, FollowUserDto, GetMyEventsQuery, GlobalAnalyticsOverviewResponseDto, GlobalConversationSummaryDto, GlobalOfferDoc, GlobalOfferDocHydrated, GlobalOfferPaginated, GlobalSearchResourcesDto, GlobalSearchResourcesPaginated, GroupChatProfileDoc, IMetrics, InventorySummaryDto, InventorySummaryDtoHydrated, ItemType, KUSTO_DB, KUSTO_DB_XOXNO_TABLE, KustoOrderDirection, LaunchpadCustomData, LendingAccountProfile, LendingAccountProfileDoc, LendingDataType, LendingEModeCategoryProfile, LendingEModeCategoryProfileDoc, LendingIndexesDto, LendingMarketAnalyticsGraph, LendingMarketParticipants, LendingMarketProfile, LendingMarketProfileDoc, LendingMarketProfileExtraProperties, LendingMarketProfileFilter, LendingMarketProfileFilterCriteriaDto, LendingMarketProfileQuery, LendingNftAttributes, LendingOverallStats, LendingPositionOrderByColumn, LendingPositionStatus, LendingPositionType, LendingTokenEModeProfileDoc, LendingTokenPriceDto, LikeNftDto, LinkedAccountType, ListingsResponseDto, LoginAccessDto, LoginRequestDto, ManualCheckInDto, MarketExtraApy, MarketplaceActivity, MarketplaceCustomData, MarketplacesOnSaleNames, MeetupSubCategory, MessageDto, MetadataAttributesDto, MetadataDto, MintStageDto, MobileDeviceDoc, MobileDeviceRegistrationDto, MyEvents, NFTEventData, NativeWalletDto, NetworkingSubCategory, NftActivityData, NftActivityDataHydrated, NftActivityDoc, NftActivityDocHydrated, NftActivityEventSource, NftActivityFilter, NftActivityFilterCriteriaDto, NftActivityPaginated, NftActivityType, NftDoc, NftDocFilter, NftDocFilterCriteriaDto, NftDocHydrated, NftExtraAttributesType, NftExtraMetadata, NftMedia, NftMetadata, NftMetadataAttributes, NftOfferDoc, NftOfferDocFilter, NftOfferDocFilterCriteria, NftOfferDocHydrated, NftOfferPaginated, NftPaginated, NftSaleInfo, NftSaleInfoHydrated, NotificationAction, NotificationAssetType, NotificationDataType, NotificationDoc, NotificationMetadata, NotificationPaginated, NotificationPreferenceType, NotificationPreferencesPostDto, NotificationSuccessResponseDto, NotificationTemplate, NotificationTemplateBuilder, OfferType, OwnedCollectionsDto, OwnedServicesDto, OwnerDto, PaymentProvider, PinnedCollectionDto, PositionMode, PremiumType, ProtocolAprType, ProviderDto, PurchaseType, PushNotificationCountResponse, PushNotificationDoc, PushNotificationResponse, PushNotificationStatus, PushNotificationType, QRBody, REDIS_KEYS, RangeFilter, RateType, ReferralConditionType, RegistrationDetailsDto, RegistrationType, RewardDetails, Role, RoleStatus, Rule, SaleInfoFilterDto, SearchIndexName, SendChatMessageDto, SetEmailDto, SetPhoneDto, SftOwnerDoc, ShortLendingTokenEModeProfileDoc, SignAcceptGlobalOfferDto, SignDataDto, SignMintDto, SignWithdrawDto, SocialsDto, StagePrice, StakingCreatorDoc, StakingDataType, StakingDelegatorDoc, StakingExploreDto, StakingExploreDtoHydrated, StakingIssuingTypeString, StakingPoolDoc, StakingPoolTypeString, StakingPostDTO, StakingStatus, StakingSummary, StakingUserPoolNfts, StatisticsDto, StatisticsMintDataDto, StatisticsOtherDto, StatisticsTradeDataDto, StorageContainerName, SuccessDto, SuccessWithMessageDto, SwitchWalletDto, TTLS, TagCategory, TagManager, TagPriority, TicketCalculationRequestDto, TicketInfo, TicketPricesResponse, TicketProfileSummary, TicketSelection, TicketSelectionDto, TicketValidationResult, TicketingDataType, TicketsType, TokenCategory, TokenDataDoc, TokenDataType, TokenDocDto, TradesilvaniaSignature, TradingStatistics, TraitInfo, TransactionCreate, TransactionProcessStatus, TransactionSendResult, TransactionStatus, TransferPolicy, TwispayCardTransactionMode, TwispayEventTicketCustomData, TwispayIntervalType, TwispayTransactionRefundReason, TwispayTransactionStatus, TwispayTransactionType, UserAnalyticsDto, UserBillingDetails, UserBlockDoc, UserBlockDocHydrated, UserBlockPaginated, UserConversationDoc, UserConversationDocHydrated, UserConversationPaginated, UserDataType, UserDeposit, UserEmailNotificationSettings, UserFavorite, UserFavoriteResponseDto, UserFavoriteType, UserNetworkInfoDto, UserNotificationPreferences, UserPhoneNotificationSettings, UserProfileDoc, UserProfileDto, UserSettingsDoc, UserStakingSummaryDto, UserStatsDto, UserStatsOrderByColumn, UserTokenInventoryResponseDto, UserTradingSummary, UserUpdateDTO, ValueFp, VerifyEmailDto, Visibility, VolumeGraph, VoucherType, WalletClientType, WalletDetailDto, WalletTradingStats, Web2UserAccount, Web2UserAccountDto, Web2UserDoc, Web2UserShardsDto, Web2UserWallet, Web2WalletDto, Web3SubCategory, WebSocketTokenDto, XoxnoAuctionType, XoxnoAuctionTypeString, XoxnoEgldLiquidScEventName, XoxnoEgldLsActivity, XoxnoInfo, XoxnoLiquidStatsDto, XoxnoLsActivity, XoxnoMarketplaceScCollectionConfig, XoxnoStakingIssuingReward, XoxnoStakingReward, XoxnoStakingRewardClaim, createCosmosPaginatedResponse, tickerFromIdentifier };
5489
5543
  export type { Address, BillingDetails, BinanceNotificationData, BinanceRequestParameters, BoberBattleGame, BoberWheelGame, BoberWheelPlayer, BoberWheelPlayerStreamEvent, BoberWheelWinner, BoberWheelWinnerStreamEvent, Card, CategorySubcategoryMap, ChargeEventBody, ChatMessageContent, Checks, CollectionAttributesFp, CollectionDataSearchResult, CollectionExtraFeesConfig, CollectionStatsOrderBy, CollectionTraitMap, CollectionsOrderBy, DelegationDataOutput, DropsOrderBy, EventGuestDataSearchResult, EventInvitationDataSearchResult, ExtendedAuthorization, FraudDetails, GameConfigs, GlobalOfferOrderBy, HolderDetails, IOrderBy, IdentityInfo, LinkedAccount, NetworkToken, NftDataSearchResult, NftMvxBuiltIn, NotificationActivity, NotificationAsset, OrderByTradingActivity, Outcome, Overcapture, PaymentMethodDetails, PriceData, PrioritizedTag, ProviderData, ProviderLiquidStaking, PublicOnly, QueryPricesResponse, RedisKeys, SearchOrderBy, TokenValue, TradingSummaryActivityType, TraitCategory, TraitTypeFp, TransferData, TwispayCallBackData, TwispayCartItems, TwispayCustomerDetails, TwispayOrderDetails, UndelegateInfo, UserDataSearchResult, Wallet };
package/dist/index.js CHANGED
@@ -49,7 +49,6 @@ __exportStar(require("./cosmos-db/documents/collection/collectionConfig"), expor
49
49
  __exportStar(require("./cosmos-db/documents/collection/dataTypes"), exports);
50
50
  __exportStar(require("./cosmos-db/documents/collection/globalOffer"), exports);
51
51
  __exportStar(require("./cosmos-db/documents/collection/mintProfile"), exports);
52
- __exportStar(require("./cosmos-db/documents/collection/mintStage"), exports);
53
52
  __exportStar(require("./cosmos-db/documents/collection/profile"), exports);
54
53
  __exportStar(require("./cosmos-db/documents/collection/stats"), exports);
55
54
  __exportStar(require("./cosmos-db/documents/collection/verification"), exports);
@@ -1,6 +1,7 @@
1
1
  import { CollectionInfoDto } from './collection-info.dto';
2
2
  import { EgldOrEsdtTokenPayment } from '../../common/tokenPayent';
3
- declare class MintStageDto {
3
+ import { SocialsDto } from '../../common/socials';
4
+ export declare class MintStageDto {
4
5
  dataType: string;
5
6
  collection: string;
6
7
  contractAddress: string;
@@ -19,14 +20,16 @@ declare class MintStageDto {
19
20
  walletLimitReached: boolean;
20
21
  maxBuyable: number | null;
21
22
  }
22
- declare class CreatorInfoDto {
23
+ export declare class CreatorInfoDto {
23
24
  name: string;
25
+ description: string;
24
26
  contractAddress: string;
25
27
  address: string;
26
28
  profile: string;
27
29
  banner: string;
28
30
  joinedDate: number;
29
31
  creatorTag: string;
32
+ socials?: SocialsDto;
30
33
  }
31
34
  export declare class DropInfoDto {
32
35
  collection: string;
@@ -45,4 +48,3 @@ export declare class DropInfoDto {
45
48
  collectionInfo: CollectionInfoDto;
46
49
  creatorInfo: CreatorInfoDto;
47
50
  }
48
- export {};
@@ -9,13 +9,15 @@ 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.DropInfoDto = void 0;
12
+ exports.DropInfoDto = exports.CreatorInfoDto = exports.MintStageDto = void 0;
13
13
  // DTO Type
14
14
  const swagger_1 = require("@nestjs/swagger");
15
15
  const collection_info_dto_1 = require("./collection-info.dto");
16
16
  const tokenPayent_1 = require("../../common/tokenPayent");
17
+ const socials_1 = require("../../common/socials");
17
18
  class MintStageDto {
18
19
  }
20
+ exports.MintStageDto = MintStageDto;
19
21
  __decorate([
20
22
  (0, swagger_1.ApiProperty)({ example: 'mintStage' }),
21
23
  __metadata("design:type", String)
@@ -88,10 +90,15 @@ __decorate([
88
90
  ], MintStageDto.prototype, "maxBuyable", void 0);
89
91
  class CreatorInfoDto {
90
92
  }
93
+ exports.CreatorInfoDto = CreatorInfoDto;
91
94
  __decorate([
92
95
  (0, swagger_1.ApiProperty)({ example: 'MiceCityClub' }),
93
96
  __metadata("design:type", String)
94
97
  ], CreatorInfoDto.prototype, "name", void 0);
98
+ __decorate([
99
+ (0, swagger_1.ApiProperty)({ example: 'Welcome to the 1980s' }),
100
+ __metadata("design:type", String)
101
+ ], CreatorInfoDto.prototype, "description", void 0);
95
102
  __decorate([
96
103
  (0, swagger_1.ApiProperty)({
97
104
  example: 'erd1qqqqqqqqqqqqqpgq2t6ef4u9ts3j86504sx0zlvw0vujfq6yys5sqfg40f',
@@ -122,6 +129,10 @@ __decorate([
122
129
  (0, swagger_1.ApiProperty)({ example: 'MiceCityClub' }),
123
130
  __metadata("design:type", String)
124
131
  ], CreatorInfoDto.prototype, "creatorTag", void 0);
132
+ __decorate([
133
+ (0, swagger_1.ApiProperty)({ description: 'Creator social media links', required: false }),
134
+ __metadata("design:type", socials_1.SocialsDto)
135
+ ], CreatorInfoDto.prototype, "socials", void 0);
125
136
  class DropInfoDto {
126
137
  }
127
138
  exports.DropInfoDto = DropInfoDto;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xoxno/types",
3
- "version": "1.0.78",
3
+ "version": "1.0.80",
4
4
  "description": "Shared types and utilities for XOXNO API.",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -1,19 +0,0 @@
1
- import { EgldOrEsdtTokenPayment } from '../../../common/tokenPayent';
2
- import { CollectionDataType } from './dataTypes';
3
- export declare class CollectionMintStageDoc {
4
- dataType: CollectionDataType;
5
- collection: string;
6
- contractAddress: string;
7
- collectionTag: string;
8
- name: string;
9
- startTime: number;
10
- endTime: number;
11
- mintCount: number;
12
- mintLimit: number;
13
- mintEnabled: boolean;
14
- isWhitelist: boolean;
15
- walletLimit: number;
16
- prices: EgldOrEsdtTokenPayment[];
17
- id: string;
18
- constructor(props?: Partial<CollectionMintStageDoc>);
19
- }
@@ -1,13 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.CollectionMintStageDoc = void 0;
4
- const dataTypes_1 = require("./dataTypes");
5
- class CollectionMintStageDoc {
6
- constructor(props) {
7
- this.dataType = dataTypes_1.CollectionDataType.MintStage;
8
- this.prices = [];
9
- Object.assign(this, props);
10
- this.id = `${this.collection}-${this.name}-${this.dataType}`;
11
- }
12
- }
13
- exports.CollectionMintStageDoc = CollectionMintStageDoc;