@xoxno/types 1.0.79 → 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.
package/dist/index.d.ts
CHANGED
|
@@ -1463,6 +1463,10 @@ declare class CreatorProfileDoc {
|
|
|
1463
1463
|
declare type CollectionInfoDto_base = Pick<CollectionProfileDoc, "description" | "name" | "profile" | "followCount" | "holdersCount" | "isVisible" | "isVerified" | "socials" | "banner" | "owner" | "collectionSize">;
|
|
1464
1464
|
declare type CollectionInfoDto = CollectionInfoDto_base & {
|
|
1465
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;
|
|
1466
1470
|
}
|
|
1467
1471
|
|
|
1468
1472
|
declare class MintStageDto {
|
|
@@ -1493,6 +1497,7 @@ declare class CreatorInfoDto {
|
|
|
1493
1497
|
banner: string;
|
|
1494
1498
|
joinedDate: number;
|
|
1495
1499
|
creatorTag: string;
|
|
1500
|
+
socials?: SocialsDto;
|
|
1496
1501
|
}
|
|
1497
1502
|
declare class DropInfoDto {
|
|
1498
1503
|
collection: string;
|
|
@@ -1555,6 +1560,13 @@ declare type CollectionMintProfileDocWithStages = CollectionMintProfileDocWithSt
|
|
|
1555
1560
|
isExcludedFromMint: boolean;
|
|
1556
1561
|
userMintsGlobal: number;
|
|
1557
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[];
|
|
1558
1570
|
}
|
|
1559
1571
|
|
|
1560
1572
|
declare class TradingDataSummary {
|
|
@@ -2071,7 +2083,10 @@ declare class LendingEModeCategoryProfileDoc {
|
|
|
2071
2083
|
constructor(init?: Partial<LendingEModeCategoryProfileDoc>);
|
|
2072
2084
|
}
|
|
2073
2085
|
declare type ShortLendingTokenEModeProfileDoc_base = Pick<LendingTokenEModeProfileDoc, "token" | "canBeCollateral" | "canBeBorrowed" | "eModeCategory">;
|
|
2074
|
-
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
|
+
}
|
|
2075
2090
|
declare class LendingEModeCategoryProfile extends LendingEModeCategoryProfileDoc {
|
|
2076
2091
|
eModeTokenProfiles: Pick<LendingTokenEModeProfileDoc, 'token' | 'canBeBorrowed' | 'canBeCollateral' | 'eModeCategory'>[];
|
|
2077
2092
|
}
|
|
@@ -2553,6 +2568,11 @@ declare type TicketProfileSummary_base = Pick<EventTicketProfileDoc, "descriptio
|
|
|
2553
2568
|
declare type TicketProfileSummary = TicketProfileSummary_base & {
|
|
2554
2569
|
ticketId?: string;
|
|
2555
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;
|
|
2556
2576
|
}
|
|
2557
2577
|
|
|
2558
2578
|
declare class EventGuestCheckIn {
|
|
@@ -2685,7 +2705,10 @@ declare class EventGuestAnswerDoc {
|
|
|
2685
2705
|
static create(data: Omit<EventGuestAnswerDoc, 'id' | 'dataType' | 'createdAt' | 'pk'>): EventGuestAnswerDoc;
|
|
2686
2706
|
}
|
|
2687
2707
|
declare type EventQuestionAnswerDto_base = Pick<EventGuestAnswerDoc, "questionId" | "answer">;
|
|
2688
|
-
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
|
+
}
|
|
2689
2712
|
declare class AnsweredQuestionWithDetails {
|
|
2690
2713
|
answer?: EventGuestAnswerDoc;
|
|
2691
2714
|
question?: EventQuestionDoc;
|
|
@@ -3205,7 +3228,10 @@ declare class EventReferralConfigCreateDto {
|
|
|
3205
3228
|
}
|
|
3206
3229
|
|
|
3207
3230
|
declare type EventReferralConfigEditDto_base = Partial<EventReferralConfigCreateDto>;
|
|
3208
|
-
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
|
+
}
|
|
3209
3235
|
|
|
3210
3236
|
declare class EventReferralConfigFilterCriteriaDto {
|
|
3211
3237
|
searchText?: string;
|
|
@@ -3340,6 +3366,12 @@ declare type EventStageProfileEditDto = EventStageProfileEditDto_base & {
|
|
|
3340
3366
|
name: string;
|
|
3341
3367
|
startTime: number;
|
|
3342
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;
|
|
3343
3375
|
}
|
|
3344
3376
|
|
|
3345
3377
|
declare class EventStageProfileDoc {
|
|
@@ -3375,6 +3407,11 @@ declare type EventTicketProfileEditDto_base = Pick<EventTicketProfileCreateDto,
|
|
|
3375
3407
|
declare type EventTicketProfileEditDto = EventTicketProfileEditDto_base & {
|
|
3376
3408
|
name: string;
|
|
3377
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>;
|
|
3378
3415
|
}
|
|
3379
3416
|
|
|
3380
3417
|
declare class EventUserRoleCreateDto {
|
|
@@ -3398,6 +3435,19 @@ declare type EventVoucherCreateDto = EventVoucherCreateDto_base & {
|
|
|
3398
3435
|
startDate?: number;
|
|
3399
3436
|
endDate?: number;
|
|
3400
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;
|
|
3401
3451
|
}
|
|
3402
3452
|
|
|
3403
3453
|
declare type EventVoucherEditDto_base = Partial<Omit<EventVoucherCreateDto, "eventId" | "code">>;
|
|
@@ -3405,6 +3455,12 @@ declare type EventVoucherEditDto = EventVoucherEditDto_base & {
|
|
|
3405
3455
|
isActive?: boolean;
|
|
3406
3456
|
startDate?: number;
|
|
3407
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;
|
|
3408
3464
|
}
|
|
3409
3465
|
|
|
3410
3466
|
declare class EventVoucherFilterCriteriaDto {
|
|
@@ -4306,7 +4362,10 @@ declare enum StakingStatus {
|
|
|
4306
4362
|
}
|
|
4307
4363
|
|
|
4308
4364
|
declare type StakingPostDTO_base = Pick<StakingSummary, "description" | "name">;
|
|
4309
|
-
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
|
+
}
|
|
4310
4369
|
|
|
4311
4370
|
declare class UserStakingSummaryDto {
|
|
4312
4371
|
collection: string;
|
|
@@ -4482,7 +4541,10 @@ declare class TransactionSendResult {
|
|
|
4482
4541
|
txHash: string;
|
|
4483
4542
|
}
|
|
4484
4543
|
declare type BatchTransactionResponse_base = Pick<TransactionSendResult, "txHash" | "status">;
|
|
4485
|
-
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
|
+
}
|
|
4486
4548
|
|
|
4487
4549
|
declare enum LinkedAccountType {
|
|
4488
4550
|
WALLET = "wallet",
|
|
@@ -4900,7 +4962,10 @@ declare class CollectionStatsDto extends CollectionStatsDoc {
|
|
|
4900
4962
|
}
|
|
4901
4963
|
|
|
4902
4964
|
declare type CollectionProfileUpdateDto_base = Pick<CollectionProfileDoc, "description" | "profile" | "socials">;
|
|
4903
|
-
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
|
+
}
|
|
4904
4969
|
|
|
4905
4970
|
declare class MintingListingDto extends CollectionMintProfileDoc {
|
|
4906
4971
|
collectionInfo: CollectionInfoDto;
|
|
@@ -5330,7 +5395,10 @@ declare class CreatorProfileDto extends CreatorProfileDoc {
|
|
|
5330
5395
|
followCount: number;
|
|
5331
5396
|
}
|
|
5332
5397
|
declare type CreatorUpdateProfileDTO_base = Pick<CreatorProfileDto, "description" | "profile" | "socials">;
|
|
5333
|
-
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
|
+
}
|
|
5334
5402
|
|
|
5335
5403
|
declare class EditUserCreatorProfileDto {
|
|
5336
5404
|
description?: string;
|
|
@@ -5374,7 +5442,10 @@ declare class UserProfileDto extends UserProfileDoc {
|
|
|
5374
5442
|
userSettings: UserSettingsDto;
|
|
5375
5443
|
}
|
|
5376
5444
|
declare type UserUpdateDTO_base = Pick<UserProfileDto, "description" | "profile" | "socials">;
|
|
5377
|
-
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
|
+
}
|
|
5378
5449
|
|
|
5379
5450
|
declare class SetEmailDto {
|
|
5380
5451
|
readonly enabled: boolean;
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { CollectionInfoDto } from './collection-info.dto';
|
|
2
2
|
import { EgldOrEsdtTokenPayment } from '../../common/tokenPayent';
|
|
3
|
+
import { SocialsDto } from '../../common/socials';
|
|
3
4
|
export declare class MintStageDto {
|
|
4
5
|
dataType: string;
|
|
5
6
|
collection: string;
|
|
@@ -28,6 +29,7 @@ export declare class CreatorInfoDto {
|
|
|
28
29
|
banner: string;
|
|
29
30
|
joinedDate: number;
|
|
30
31
|
creatorTag: string;
|
|
32
|
+
socials?: SocialsDto;
|
|
31
33
|
}
|
|
32
34
|
export declare class DropInfoDto {
|
|
33
35
|
collection: string;
|
|
@@ -14,6 +14,7 @@ exports.DropInfoDto = exports.CreatorInfoDto = exports.MintStageDto = void 0;
|
|
|
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
|
}
|
|
19
20
|
exports.MintStageDto = MintStageDto;
|
|
@@ -128,6 +129,10 @@ __decorate([
|
|
|
128
129
|
(0, swagger_1.ApiProperty)({ example: 'MiceCityClub' }),
|
|
129
130
|
__metadata("design:type", String)
|
|
130
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);
|
|
131
136
|
class DropInfoDto {
|
|
132
137
|
}
|
|
133
138
|
exports.DropInfoDto = DropInfoDto;
|