@xoxno/types 1.0.77 → 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.
- package/dist/cosmos-db/documents/collection/mintProfile.d.ts +3 -3
- package/dist/cosmos-db/documents/ticketing/event-stage-profile-edit.dto.d.ts +1 -1
- package/dist/index.d.ts +68 -92
- package/dist/index.js +0 -1
- package/dist/requests/collection/creator-drop-info.d.ts +3 -3
- package/dist/requests/collection/creator-drop-info.js +7 -1
- package/package.json +1 -1
- package/dist/cosmos-db/documents/collection/mintStage.d.ts +0 -19
- package/dist/cosmos-db/documents/collection/mintStage.js +0 -13
|
@@ -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 {
|
|
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" | "
|
|
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:
|
|
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, "
|
|
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
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
|
|
1
2
|
declare enum ActivityChain {
|
|
2
3
|
MVX = "MVX",
|
|
3
4
|
SUI = "SUI"
|
|
@@ -1459,8 +1460,13 @@ declare class CreatorProfileDoc {
|
|
|
1459
1460
|
constructor(props?: Partial<CreatorProfileDoc>);
|
|
1460
1461
|
}
|
|
1461
1462
|
|
|
1462
|
-
declare
|
|
1463
|
-
|
|
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;
|
|
1464
1470
|
collection: string;
|
|
1465
1471
|
contractAddress: string;
|
|
1466
1472
|
collectionTag: string;
|
|
@@ -1474,7 +1480,36 @@ declare class CollectionMintStageDoc {
|
|
|
1474
1480
|
walletLimit: number;
|
|
1475
1481
|
prices: EgldOrEsdtTokenPayment[];
|
|
1476
1482
|
id: string;
|
|
1477
|
-
|
|
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;
|
|
1478
1513
|
}
|
|
1479
1514
|
|
|
1480
1515
|
declare class CollectionMintProfileDoc {
|
|
@@ -1514,12 +1549,12 @@ declare class CollectionMintProfileDocHydrated extends CollectionMintProfileDoc
|
|
|
1514
1549
|
collectionInfo: Partial<CollectionProfileDoc>;
|
|
1515
1550
|
creatorInfo: Partial<CreatorProfileDoc>;
|
|
1516
1551
|
}
|
|
1517
|
-
declare
|
|
1518
|
-
declare
|
|
1552
|
+
declare type CollectionMintProfileDocWithStages_base = Pick<CollectionMintProfileDocHydrated, "collectionSize" | "collectionInfo" | "contractAddress" | "collectionTag" | "nftTransferLimited" | "hasBotProtection" | "kycRequired" | "totalNftMinted" | "cid" | "mediaType" | "globalWalletLimit" | "creatorInfo" | "hasAttributes">;
|
|
1553
|
+
declare type CollectionMintProfileDocWithStages = CollectionMintProfileDocWithStages_base & {
|
|
1519
1554
|
collection: string;
|
|
1520
1555
|
isExcludedFromMint: boolean;
|
|
1521
1556
|
userMintsGlobal: number;
|
|
1522
|
-
mintStages:
|
|
1557
|
+
mintStages: MintStageDto[];
|
|
1523
1558
|
}
|
|
1524
1559
|
|
|
1525
1560
|
declare class TradingDataSummary {
|
|
@@ -2035,9 +2070,8 @@ declare class LendingEModeCategoryProfileDoc {
|
|
|
2035
2070
|
_ts?: number;
|
|
2036
2071
|
constructor(init?: Partial<LendingEModeCategoryProfileDoc>);
|
|
2037
2072
|
}
|
|
2038
|
-
declare
|
|
2039
|
-
declare
|
|
2040
|
-
}
|
|
2073
|
+
declare type ShortLendingTokenEModeProfileDoc_base = Pick<LendingTokenEModeProfileDoc, "token" | "canBeCollateral" | "canBeBorrowed" | "eModeCategory">;
|
|
2074
|
+
declare type ShortLendingTokenEModeProfileDoc = ShortLendingTokenEModeProfileDoc_base
|
|
2041
2075
|
declare class LendingEModeCategoryProfile extends LendingEModeCategoryProfileDoc {
|
|
2042
2076
|
eModeTokenProfiles: Pick<LendingTokenEModeProfileDoc, 'token' | 'canBeBorrowed' | 'canBeCollateral' | 'eModeCategory'>[];
|
|
2043
2077
|
}
|
|
@@ -2515,8 +2549,8 @@ declare class EventTicketProfileDoc {
|
|
|
2515
2549
|
_ts: number;
|
|
2516
2550
|
constructor(props?: Partial<EventTicketProfileDoc>);
|
|
2517
2551
|
}
|
|
2518
|
-
declare
|
|
2519
|
-
declare
|
|
2552
|
+
declare type TicketProfileSummary_base = Pick<EventTicketProfileDoc, "description" | "name" | "profile" | "badgeColor" | "characteristics">;
|
|
2553
|
+
declare type TicketProfileSummary = TicketProfileSummary_base & {
|
|
2520
2554
|
ticketId?: string;
|
|
2521
2555
|
quantity?: number;
|
|
2522
2556
|
}
|
|
@@ -2650,9 +2684,8 @@ declare class EventGuestAnswerDoc {
|
|
|
2650
2684
|
constructor(partial: Partial<EventGuestAnswerDoc>);
|
|
2651
2685
|
static create(data: Omit<EventGuestAnswerDoc, 'id' | 'dataType' | 'createdAt' | 'pk'>): EventGuestAnswerDoc;
|
|
2652
2686
|
}
|
|
2653
|
-
declare
|
|
2654
|
-
declare
|
|
2655
|
-
}
|
|
2687
|
+
declare type EventQuestionAnswerDto_base = Pick<EventGuestAnswerDoc, "questionId" | "answer">;
|
|
2688
|
+
declare type EventQuestionAnswerDto = EventQuestionAnswerDto_base
|
|
2656
2689
|
declare class AnsweredQuestionWithDetails {
|
|
2657
2690
|
answer?: EventGuestAnswerDoc;
|
|
2658
2691
|
question?: EventQuestionDoc;
|
|
@@ -3171,9 +3204,8 @@ declare class EventReferralConfigCreateDto {
|
|
|
3171
3204
|
isActive: boolean;
|
|
3172
3205
|
}
|
|
3173
3206
|
|
|
3174
|
-
declare
|
|
3175
|
-
declare
|
|
3176
|
-
}
|
|
3207
|
+
declare type EventReferralConfigEditDto_base = Partial<EventReferralConfigCreateDto>;
|
|
3208
|
+
declare type EventReferralConfigEditDto = EventReferralConfigEditDto_base
|
|
3177
3209
|
|
|
3178
3210
|
declare class EventReferralConfigFilterCriteriaDto {
|
|
3179
3211
|
searchText?: string;
|
|
@@ -3303,8 +3335,8 @@ declare class EventStageProfileCreateDto {
|
|
|
3303
3335
|
prices: EgldOrEsdtTokenPayment[];
|
|
3304
3336
|
}
|
|
3305
3337
|
|
|
3306
|
-
declare
|
|
3307
|
-
declare
|
|
3338
|
+
declare type EventStageProfileEditDto_base = Pick<EventStageProfileCreateDto, "isWhitelist" | "prices" | "maxLimit" | "userLimit" | "isEnabled" | "requiredApproval">;
|
|
3339
|
+
declare type EventStageProfileEditDto = EventStageProfileEditDto_base & {
|
|
3308
3340
|
name: string;
|
|
3309
3341
|
startTime: number;
|
|
3310
3342
|
endTime: number;
|
|
@@ -3339,8 +3371,8 @@ declare class EventTicketProfileCreateDto {
|
|
|
3339
3371
|
userLimit: number;
|
|
3340
3372
|
}
|
|
3341
3373
|
|
|
3342
|
-
declare
|
|
3343
|
-
declare
|
|
3374
|
+
declare type EventTicketProfileEditDto_base = Pick<EventTicketProfileCreateDto, "description" | "royalties" | "badgeColor" | "maxLimit" | "userLimit">;
|
|
3375
|
+
declare type EventTicketProfileEditDto = EventTicketProfileEditDto_base & {
|
|
3344
3376
|
name: string;
|
|
3345
3377
|
characteristics: Record<string, string | number>;
|
|
3346
3378
|
}
|
|
@@ -3354,8 +3386,8 @@ declare class EventUserRoleCreateDto {
|
|
|
3354
3386
|
endTime: number;
|
|
3355
3387
|
}
|
|
3356
3388
|
|
|
3357
|
-
declare
|
|
3358
|
-
declare
|
|
3389
|
+
declare type EventVoucherCreateDto_base = Partial<Omit<EventVoucherDoc, "id" | "dataType" | "createdAt" | "usedCount" | "createdBy">>;
|
|
3390
|
+
declare type EventVoucherCreateDto = EventVoucherCreateDto_base & {
|
|
3359
3391
|
code?: string;
|
|
3360
3392
|
type: VoucherType;
|
|
3361
3393
|
amount: number;
|
|
@@ -3368,8 +3400,8 @@ declare class EventVoucherCreateDto extends EventVoucherCreateDto_base {
|
|
|
3368
3400
|
isActive?: boolean;
|
|
3369
3401
|
}
|
|
3370
3402
|
|
|
3371
|
-
declare
|
|
3372
|
-
declare
|
|
3403
|
+
declare type EventVoucherEditDto_base = Partial<Omit<EventVoucherCreateDto, "eventId" | "code">>;
|
|
3404
|
+
declare type EventVoucherEditDto = EventVoucherEditDto_base & {
|
|
3373
3405
|
isActive?: boolean;
|
|
3374
3406
|
startDate?: number;
|
|
3375
3407
|
endDate?: number;
|
|
@@ -4273,9 +4305,8 @@ declare enum StakingStatus {
|
|
|
4273
4305
|
Available = "available"
|
|
4274
4306
|
}
|
|
4275
4307
|
|
|
4276
|
-
declare
|
|
4277
|
-
declare
|
|
4278
|
-
}
|
|
4308
|
+
declare type StakingPostDTO_base = Pick<StakingSummary, "description" | "name">;
|
|
4309
|
+
declare type StakingPostDTO = StakingPostDTO_base
|
|
4279
4310
|
|
|
4280
4311
|
declare class UserStakingSummaryDto {
|
|
4281
4312
|
collection: string;
|
|
@@ -4450,9 +4481,8 @@ declare class TransactionSendResult {
|
|
|
4450
4481
|
status: TransactionStatus;
|
|
4451
4482
|
txHash: string;
|
|
4452
4483
|
}
|
|
4453
|
-
declare
|
|
4454
|
-
declare
|
|
4455
|
-
}
|
|
4484
|
+
declare type BatchTransactionResponse_base = Pick<TransactionSendResult, "txHash" | "status">;
|
|
4485
|
+
declare type BatchTransactionResponse = BatchTransactionResponse_base
|
|
4456
4486
|
|
|
4457
4487
|
declare enum LinkedAccountType {
|
|
4458
4488
|
WALLET = "wallet",
|
|
@@ -4777,11 +4807,6 @@ interface HolderDetails {
|
|
|
4777
4807
|
type: string;
|
|
4778
4808
|
}
|
|
4779
4809
|
|
|
4780
|
-
declare const CollectionInfoDto_base: Pick<CollectionProfileDoc, "description" | "name" | "profile" | "followCount" | "holdersCount" | "isVisible" | "isVerified" | "socials" | "banner" | "owner" | "collectionSize">;
|
|
4781
|
-
declare class CollectionInfoDto extends CollectionInfoDto_base {
|
|
4782
|
-
volume: number;
|
|
4783
|
-
}
|
|
4784
|
-
|
|
4785
4810
|
declare class CollectionMintProfileFilter extends CosmosDbGenericFilter<CollectionMintProfileDoc> {
|
|
4786
4811
|
filters: {
|
|
4787
4812
|
dataType?: CollectionDataType;
|
|
@@ -4874,9 +4899,8 @@ declare class CollectionStatsFilter extends CosmosDbGenericFilter<CollectionStat
|
|
|
4874
4899
|
declare class CollectionStatsDto extends CollectionStatsDoc {
|
|
4875
4900
|
}
|
|
4876
4901
|
|
|
4877
|
-
declare
|
|
4878
|
-
declare
|
|
4879
|
-
}
|
|
4902
|
+
declare type CollectionProfileUpdateDto_base = Pick<CollectionProfileDoc, "description" | "profile" | "socials">;
|
|
4903
|
+
declare type CollectionProfileUpdateDto = CollectionProfileUpdateDto_base
|
|
4880
4904
|
|
|
4881
4905
|
declare class MintingListingDto extends CollectionMintProfileDoc {
|
|
4882
4906
|
collectionInfo: CollectionInfoDto;
|
|
@@ -4886,52 +4910,6 @@ declare class CreatorDetailsDto extends CreatorProfileDoc {
|
|
|
4886
4910
|
events?: EventProfileDoc[] | EventProfile[];
|
|
4887
4911
|
}
|
|
4888
4912
|
|
|
4889
|
-
declare class MintStageDto {
|
|
4890
|
-
dataType: string;
|
|
4891
|
-
collection: string;
|
|
4892
|
-
contractAddress: string;
|
|
4893
|
-
collectionTag: string;
|
|
4894
|
-
name: string;
|
|
4895
|
-
startTime: number;
|
|
4896
|
-
endTime: number;
|
|
4897
|
-
mintCount: number;
|
|
4898
|
-
mintLimit: number;
|
|
4899
|
-
mintEnabled: boolean;
|
|
4900
|
-
isWhitelist: boolean;
|
|
4901
|
-
walletLimit: number;
|
|
4902
|
-
prices: EgldOrEsdtTokenPayment[];
|
|
4903
|
-
id: string;
|
|
4904
|
-
_ts: number;
|
|
4905
|
-
walletLimitReached: boolean;
|
|
4906
|
-
maxBuyable: number | null;
|
|
4907
|
-
}
|
|
4908
|
-
declare class CreatorInfoDto {
|
|
4909
|
-
name: string;
|
|
4910
|
-
contractAddress: string;
|
|
4911
|
-
address: string;
|
|
4912
|
-
profile: string;
|
|
4913
|
-
banner: string;
|
|
4914
|
-
joinedDate: number;
|
|
4915
|
-
creatorTag: string;
|
|
4916
|
-
}
|
|
4917
|
-
declare class DropInfoDto {
|
|
4918
|
-
collection: string;
|
|
4919
|
-
contractAddress: string;
|
|
4920
|
-
collectionTag: string;
|
|
4921
|
-
nftTransferLimited: boolean;
|
|
4922
|
-
hasBotProtection: boolean;
|
|
4923
|
-
kycRequired: boolean;
|
|
4924
|
-
totalNftMinted: number;
|
|
4925
|
-
collectionSize: number;
|
|
4926
|
-
cid: string;
|
|
4927
|
-
mediaType: string;
|
|
4928
|
-
userMintsGlobal: number;
|
|
4929
|
-
globalWalletLimit: number;
|
|
4930
|
-
mintStages: MintStageDto[];
|
|
4931
|
-
collectionInfo: CollectionInfoDto;
|
|
4932
|
-
creatorInfo: CreatorInfoDto;
|
|
4933
|
-
}
|
|
4934
|
-
|
|
4935
4913
|
declare class FloorPriceDto {
|
|
4936
4914
|
collection: string;
|
|
4937
4915
|
price: number;
|
|
@@ -5351,9 +5329,8 @@ declare class SignWithdrawDto {
|
|
|
5351
5329
|
declare class CreatorProfileDto extends CreatorProfileDoc {
|
|
5352
5330
|
followCount: number;
|
|
5353
5331
|
}
|
|
5354
|
-
declare
|
|
5355
|
-
declare
|
|
5356
|
-
}
|
|
5332
|
+
declare type CreatorUpdateProfileDTO_base = Pick<CreatorProfileDto, "description" | "profile" | "socials">;
|
|
5333
|
+
declare type CreatorUpdateProfileDTO = CreatorUpdateProfileDTO_base
|
|
5357
5334
|
|
|
5358
5335
|
declare class EditUserCreatorProfileDto {
|
|
5359
5336
|
description?: string;
|
|
@@ -5396,9 +5373,8 @@ declare class UserSettingsDto {
|
|
|
5396
5373
|
declare class UserProfileDto extends UserProfileDoc {
|
|
5397
5374
|
userSettings: UserSettingsDto;
|
|
5398
5375
|
}
|
|
5399
|
-
declare
|
|
5400
|
-
declare
|
|
5401
|
-
}
|
|
5376
|
+
declare type UserUpdateDTO_base = Pick<UserProfileDto, "description" | "profile" | "socials">;
|
|
5377
|
+
declare type UserUpdateDTO = UserUpdateDTO_base
|
|
5402
5378
|
|
|
5403
5379
|
declare class SetEmailDto {
|
|
5404
5380
|
readonly enabled: boolean;
|
|
@@ -5492,5 +5468,5 @@ type DropsOrderBy = IOrderBy<CollectionMintProfileDoc, 'startTime'>;
|
|
|
5492
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'>;
|
|
5493
5469
|
type GlobalOfferOrderBy = IOrderBy<GlobalOfferDoc, 'priceShort' | 'offerId' | 'timestamp'>;
|
|
5494
5470
|
|
|
5495
|
-
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,
|
|
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 };
|
|
5496
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,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;
|