@xoxno/types 1.0.78 → 1.0.79

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,13 @@ 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
+
1468
+ declare class MintStageDto {
1469
+ dataType: string;
1465
1470
  collection: string;
1466
1471
  contractAddress: string;
1467
1472
  collectionTag: string;
@@ -1475,7 +1480,36 @@ declare class CollectionMintStageDoc {
1475
1480
  walletLimit: number;
1476
1481
  prices: EgldOrEsdtTokenPayment[];
1477
1482
  id: string;
1478
- constructor(props?: Partial<CollectionMintStageDoc>);
1483
+ _ts: number;
1484
+ walletLimitReached: boolean;
1485
+ maxBuyable: number | null;
1486
+ }
1487
+ declare class CreatorInfoDto {
1488
+ name: string;
1489
+ description: string;
1490
+ contractAddress: string;
1491
+ address: string;
1492
+ profile: string;
1493
+ banner: string;
1494
+ joinedDate: number;
1495
+ creatorTag: string;
1496
+ }
1497
+ declare class DropInfoDto {
1498
+ collection: string;
1499
+ contractAddress: string;
1500
+ collectionTag: string;
1501
+ nftTransferLimited: boolean;
1502
+ hasBotProtection: boolean;
1503
+ kycRequired: boolean;
1504
+ totalNftMinted: number;
1505
+ collectionSize: number;
1506
+ cid: string;
1507
+ mediaType: string;
1508
+ userMintsGlobal: number;
1509
+ globalWalletLimit: number;
1510
+ mintStages: MintStageDto[];
1511
+ collectionInfo: CollectionInfoDto;
1512
+ creatorInfo: CreatorInfoDto;
1479
1513
  }
1480
1514
 
1481
1515
  declare class CollectionMintProfileDoc {
@@ -1515,12 +1549,12 @@ declare class CollectionMintProfileDocHydrated extends CollectionMintProfileDoc
1515
1549
  collectionInfo: Partial<CollectionProfileDoc>;
1516
1550
  creatorInfo: Partial<CreatorProfileDoc>;
1517
1551
  }
1518
- declare type CollectionMintProfileDocWithStages_base = Pick<CollectionMintProfileDocHydrated, "collectionSize" | "collectionInfo" | "contractAddress" | "collectionTag" | "cid" | "mediaType" | "hasAttributes" | "totalNftMinted" | "globalWalletLimit" | "nftTransferLimited" | "kycRequired" | "hasBotProtection" | "creatorInfo">;
1552
+ declare type CollectionMintProfileDocWithStages_base = Pick<CollectionMintProfileDocHydrated, "collectionSize" | "collectionInfo" | "contractAddress" | "collectionTag" | "nftTransferLimited" | "hasBotProtection" | "kycRequired" | "totalNftMinted" | "cid" | "mediaType" | "globalWalletLimit" | "creatorInfo" | "hasAttributes">;
1519
1553
  declare type CollectionMintProfileDocWithStages = CollectionMintProfileDocWithStages_base & {
1520
1554
  collection: string;
1521
1555
  isExcludedFromMint: boolean;
1522
1556
  userMintsGlobal: number;
1523
- mintStages: CollectionMintStageDoc[];
1557
+ mintStages: MintStageDto[];
1524
1558
  }
1525
1559
 
1526
1560
  declare class TradingDataSummary {
@@ -3301,7 +3335,7 @@ declare class EventStageProfileCreateDto {
3301
3335
  prices: EgldOrEsdtTokenPayment[];
3302
3336
  }
3303
3337
 
3304
- declare type EventStageProfileEditDto_base = Pick<EventStageProfileCreateDto, "prices" | "maxLimit" | "userLimit" | "isEnabled" | "isWhitelist" | "requiredApproval">;
3338
+ declare type EventStageProfileEditDto_base = Pick<EventStageProfileCreateDto, "isWhitelist" | "prices" | "maxLimit" | "userLimit" | "isEnabled" | "requiredApproval">;
3305
3339
  declare type EventStageProfileEditDto = EventStageProfileEditDto_base & {
3306
3340
  name: string;
3307
3341
  startTime: number;
@@ -4773,11 +4807,6 @@ interface HolderDetails {
4773
4807
  type: string;
4774
4808
  }
4775
4809
 
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
4810
  declare class CollectionMintProfileFilter extends CosmosDbGenericFilter<CollectionMintProfileDoc> {
4782
4811
  filters: {
4783
4812
  dataType?: CollectionDataType;
@@ -4881,52 +4910,6 @@ declare class CreatorDetailsDto extends CreatorProfileDoc {
4881
4910
  events?: EventProfileDoc[] | EventProfile[];
4882
4911
  }
4883
4912
 
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
4913
  declare class FloorPriceDto {
4931
4914
  collection: string;
4932
4915
  price: number;
@@ -5485,5 +5468,5 @@ type DropsOrderBy = IOrderBy<CollectionMintProfileDoc, 'startTime'>;
5485
5468
  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
5469
  type GlobalOfferOrderBy = IOrderBy<GlobalOfferDoc, 'priceShort' | 'offerId' | 'timestamp'>;
5487
5470
 
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 };
5471
+ 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
5472
  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,6 @@
1
1
  import { CollectionInfoDto } from './collection-info.dto';
2
2
  import { EgldOrEsdtTokenPayment } from '../../common/tokenPayent';
3
- declare class MintStageDto {
3
+ export declare class MintStageDto {
4
4
  dataType: string;
5
5
  collection: string;
6
6
  contractAddress: string;
@@ -19,8 +19,9 @@ declare class MintStageDto {
19
19
  walletLimitReached: boolean;
20
20
  maxBuyable: number | null;
21
21
  }
22
- declare class CreatorInfoDto {
22
+ export declare class CreatorInfoDto {
23
23
  name: string;
24
+ description: string;
24
25
  contractAddress: string;
25
26
  address: string;
26
27
  profile: string;
@@ -45,4 +46,3 @@ export declare class DropInfoDto {
45
46
  collectionInfo: CollectionInfoDto;
46
47
  creatorInfo: CreatorInfoDto;
47
48
  }
48
- export {};
@@ -9,13 +9,14 @@ 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
17
  class MintStageDto {
18
18
  }
19
+ exports.MintStageDto = MintStageDto;
19
20
  __decorate([
20
21
  (0, swagger_1.ApiProperty)({ example: 'mintStage' }),
21
22
  __metadata("design:type", String)
@@ -88,10 +89,15 @@ __decorate([
88
89
  ], MintStageDto.prototype, "maxBuyable", void 0);
89
90
  class CreatorInfoDto {
90
91
  }
92
+ exports.CreatorInfoDto = CreatorInfoDto;
91
93
  __decorate([
92
94
  (0, swagger_1.ApiProperty)({ example: 'MiceCityClub' }),
93
95
  __metadata("design:type", String)
94
96
  ], CreatorInfoDto.prototype, "name", void 0);
97
+ __decorate([
98
+ (0, swagger_1.ApiProperty)({ example: 'Welcome to the 1980s' }),
99
+ __metadata("design:type", String)
100
+ ], CreatorInfoDto.prototype, "description", void 0);
95
101
  __decorate([
96
102
  (0, swagger_1.ApiProperty)({
97
103
  example: 'erd1qqqqqqqqqqqqqpgq2t6ef4u9ts3j86504sx0zlvw0vujfq6yys5sqfg40f',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xoxno/types",
3
- "version": "1.0.78",
3
+ "version": "1.0.79",
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;