@xoxno/types 1.0.77 → 1.0.78
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 +31 -38
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
|
|
1
2
|
declare enum ActivityChain {
|
|
2
3
|
MVX = "MVX",
|
|
3
4
|
SUI = "SUI"
|
|
@@ -1514,8 +1515,8 @@ declare class CollectionMintProfileDocHydrated extends CollectionMintProfileDoc
|
|
|
1514
1515
|
collectionInfo: Partial<CollectionProfileDoc>;
|
|
1515
1516
|
creatorInfo: Partial<CreatorProfileDoc>;
|
|
1516
1517
|
}
|
|
1517
|
-
declare
|
|
1518
|
-
declare
|
|
1518
|
+
declare type CollectionMintProfileDocWithStages_base = Pick<CollectionMintProfileDocHydrated, "collectionSize" | "collectionInfo" | "contractAddress" | "collectionTag" | "cid" | "mediaType" | "hasAttributes" | "totalNftMinted" | "globalWalletLimit" | "nftTransferLimited" | "kycRequired" | "hasBotProtection" | "creatorInfo">;
|
|
1519
|
+
declare type CollectionMintProfileDocWithStages = CollectionMintProfileDocWithStages_base & {
|
|
1519
1520
|
collection: string;
|
|
1520
1521
|
isExcludedFromMint: boolean;
|
|
1521
1522
|
userMintsGlobal: number;
|
|
@@ -2035,9 +2036,8 @@ declare class LendingEModeCategoryProfileDoc {
|
|
|
2035
2036
|
_ts?: number;
|
|
2036
2037
|
constructor(init?: Partial<LendingEModeCategoryProfileDoc>);
|
|
2037
2038
|
}
|
|
2038
|
-
declare
|
|
2039
|
-
declare
|
|
2040
|
-
}
|
|
2039
|
+
declare type ShortLendingTokenEModeProfileDoc_base = Pick<LendingTokenEModeProfileDoc, "token" | "canBeCollateral" | "canBeBorrowed" | "eModeCategory">;
|
|
2040
|
+
declare type ShortLendingTokenEModeProfileDoc = ShortLendingTokenEModeProfileDoc_base
|
|
2041
2041
|
declare class LendingEModeCategoryProfile extends LendingEModeCategoryProfileDoc {
|
|
2042
2042
|
eModeTokenProfiles: Pick<LendingTokenEModeProfileDoc, 'token' | 'canBeBorrowed' | 'canBeCollateral' | 'eModeCategory'>[];
|
|
2043
2043
|
}
|
|
@@ -2515,8 +2515,8 @@ declare class EventTicketProfileDoc {
|
|
|
2515
2515
|
_ts: number;
|
|
2516
2516
|
constructor(props?: Partial<EventTicketProfileDoc>);
|
|
2517
2517
|
}
|
|
2518
|
-
declare
|
|
2519
|
-
declare
|
|
2518
|
+
declare type TicketProfileSummary_base = Pick<EventTicketProfileDoc, "description" | "name" | "profile" | "badgeColor" | "characteristics">;
|
|
2519
|
+
declare type TicketProfileSummary = TicketProfileSummary_base & {
|
|
2520
2520
|
ticketId?: string;
|
|
2521
2521
|
quantity?: number;
|
|
2522
2522
|
}
|
|
@@ -2650,9 +2650,8 @@ declare class EventGuestAnswerDoc {
|
|
|
2650
2650
|
constructor(partial: Partial<EventGuestAnswerDoc>);
|
|
2651
2651
|
static create(data: Omit<EventGuestAnswerDoc, 'id' | 'dataType' | 'createdAt' | 'pk'>): EventGuestAnswerDoc;
|
|
2652
2652
|
}
|
|
2653
|
-
declare
|
|
2654
|
-
declare
|
|
2655
|
-
}
|
|
2653
|
+
declare type EventQuestionAnswerDto_base = Pick<EventGuestAnswerDoc, "questionId" | "answer">;
|
|
2654
|
+
declare type EventQuestionAnswerDto = EventQuestionAnswerDto_base
|
|
2656
2655
|
declare class AnsweredQuestionWithDetails {
|
|
2657
2656
|
answer?: EventGuestAnswerDoc;
|
|
2658
2657
|
question?: EventQuestionDoc;
|
|
@@ -3171,9 +3170,8 @@ declare class EventReferralConfigCreateDto {
|
|
|
3171
3170
|
isActive: boolean;
|
|
3172
3171
|
}
|
|
3173
3172
|
|
|
3174
|
-
declare
|
|
3175
|
-
declare
|
|
3176
|
-
}
|
|
3173
|
+
declare type EventReferralConfigEditDto_base = Partial<EventReferralConfigCreateDto>;
|
|
3174
|
+
declare type EventReferralConfigEditDto = EventReferralConfigEditDto_base
|
|
3177
3175
|
|
|
3178
3176
|
declare class EventReferralConfigFilterCriteriaDto {
|
|
3179
3177
|
searchText?: string;
|
|
@@ -3303,8 +3301,8 @@ declare class EventStageProfileCreateDto {
|
|
|
3303
3301
|
prices: EgldOrEsdtTokenPayment[];
|
|
3304
3302
|
}
|
|
3305
3303
|
|
|
3306
|
-
declare
|
|
3307
|
-
declare
|
|
3304
|
+
declare type EventStageProfileEditDto_base = Pick<EventStageProfileCreateDto, "prices" | "maxLimit" | "userLimit" | "isEnabled" | "isWhitelist" | "requiredApproval">;
|
|
3305
|
+
declare type EventStageProfileEditDto = EventStageProfileEditDto_base & {
|
|
3308
3306
|
name: string;
|
|
3309
3307
|
startTime: number;
|
|
3310
3308
|
endTime: number;
|
|
@@ -3339,8 +3337,8 @@ declare class EventTicketProfileCreateDto {
|
|
|
3339
3337
|
userLimit: number;
|
|
3340
3338
|
}
|
|
3341
3339
|
|
|
3342
|
-
declare
|
|
3343
|
-
declare
|
|
3340
|
+
declare type EventTicketProfileEditDto_base = Pick<EventTicketProfileCreateDto, "description" | "royalties" | "badgeColor" | "maxLimit" | "userLimit">;
|
|
3341
|
+
declare type EventTicketProfileEditDto = EventTicketProfileEditDto_base & {
|
|
3344
3342
|
name: string;
|
|
3345
3343
|
characteristics: Record<string, string | number>;
|
|
3346
3344
|
}
|
|
@@ -3354,8 +3352,8 @@ declare class EventUserRoleCreateDto {
|
|
|
3354
3352
|
endTime: number;
|
|
3355
3353
|
}
|
|
3356
3354
|
|
|
3357
|
-
declare
|
|
3358
|
-
declare
|
|
3355
|
+
declare type EventVoucherCreateDto_base = Partial<Omit<EventVoucherDoc, "id" | "dataType" | "createdAt" | "usedCount" | "createdBy">>;
|
|
3356
|
+
declare type EventVoucherCreateDto = EventVoucherCreateDto_base & {
|
|
3359
3357
|
code?: string;
|
|
3360
3358
|
type: VoucherType;
|
|
3361
3359
|
amount: number;
|
|
@@ -3368,8 +3366,8 @@ declare class EventVoucherCreateDto extends EventVoucherCreateDto_base {
|
|
|
3368
3366
|
isActive?: boolean;
|
|
3369
3367
|
}
|
|
3370
3368
|
|
|
3371
|
-
declare
|
|
3372
|
-
declare
|
|
3369
|
+
declare type EventVoucherEditDto_base = Partial<Omit<EventVoucherCreateDto, "eventId" | "code">>;
|
|
3370
|
+
declare type EventVoucherEditDto = EventVoucherEditDto_base & {
|
|
3373
3371
|
isActive?: boolean;
|
|
3374
3372
|
startDate?: number;
|
|
3375
3373
|
endDate?: number;
|
|
@@ -4273,9 +4271,8 @@ declare enum StakingStatus {
|
|
|
4273
4271
|
Available = "available"
|
|
4274
4272
|
}
|
|
4275
4273
|
|
|
4276
|
-
declare
|
|
4277
|
-
declare
|
|
4278
|
-
}
|
|
4274
|
+
declare type StakingPostDTO_base = Pick<StakingSummary, "description" | "name">;
|
|
4275
|
+
declare type StakingPostDTO = StakingPostDTO_base
|
|
4279
4276
|
|
|
4280
4277
|
declare class UserStakingSummaryDto {
|
|
4281
4278
|
collection: string;
|
|
@@ -4450,9 +4447,8 @@ declare class TransactionSendResult {
|
|
|
4450
4447
|
status: TransactionStatus;
|
|
4451
4448
|
txHash: string;
|
|
4452
4449
|
}
|
|
4453
|
-
declare
|
|
4454
|
-
declare
|
|
4455
|
-
}
|
|
4450
|
+
declare type BatchTransactionResponse_base = Pick<TransactionSendResult, "txHash" | "status">;
|
|
4451
|
+
declare type BatchTransactionResponse = BatchTransactionResponse_base
|
|
4456
4452
|
|
|
4457
4453
|
declare enum LinkedAccountType {
|
|
4458
4454
|
WALLET = "wallet",
|
|
@@ -4777,8 +4773,8 @@ interface HolderDetails {
|
|
|
4777
4773
|
type: string;
|
|
4778
4774
|
}
|
|
4779
4775
|
|
|
4780
|
-
declare
|
|
4781
|
-
declare
|
|
4776
|
+
declare type CollectionInfoDto_base = Pick<CollectionProfileDoc, "description" | "name" | "profile" | "followCount" | "holdersCount" | "isVisible" | "isVerified" | "socials" | "banner" | "owner" | "collectionSize">;
|
|
4777
|
+
declare type CollectionInfoDto = CollectionInfoDto_base & {
|
|
4782
4778
|
volume: number;
|
|
4783
4779
|
}
|
|
4784
4780
|
|
|
@@ -4874,9 +4870,8 @@ declare class CollectionStatsFilter extends CosmosDbGenericFilter<CollectionStat
|
|
|
4874
4870
|
declare class CollectionStatsDto extends CollectionStatsDoc {
|
|
4875
4871
|
}
|
|
4876
4872
|
|
|
4877
|
-
declare
|
|
4878
|
-
declare
|
|
4879
|
-
}
|
|
4873
|
+
declare type CollectionProfileUpdateDto_base = Pick<CollectionProfileDoc, "description" | "profile" | "socials">;
|
|
4874
|
+
declare type CollectionProfileUpdateDto = CollectionProfileUpdateDto_base
|
|
4880
4875
|
|
|
4881
4876
|
declare class MintingListingDto extends CollectionMintProfileDoc {
|
|
4882
4877
|
collectionInfo: CollectionInfoDto;
|
|
@@ -5351,9 +5346,8 @@ declare class SignWithdrawDto {
|
|
|
5351
5346
|
declare class CreatorProfileDto extends CreatorProfileDoc {
|
|
5352
5347
|
followCount: number;
|
|
5353
5348
|
}
|
|
5354
|
-
declare
|
|
5355
|
-
declare
|
|
5356
|
-
}
|
|
5349
|
+
declare type CreatorUpdateProfileDTO_base = Pick<CreatorProfileDto, "description" | "profile" | "socials">;
|
|
5350
|
+
declare type CreatorUpdateProfileDTO = CreatorUpdateProfileDTO_base
|
|
5357
5351
|
|
|
5358
5352
|
declare class EditUserCreatorProfileDto {
|
|
5359
5353
|
description?: string;
|
|
@@ -5396,9 +5390,8 @@ declare class UserSettingsDto {
|
|
|
5396
5390
|
declare class UserProfileDto extends UserProfileDoc {
|
|
5397
5391
|
userSettings: UserSettingsDto;
|
|
5398
5392
|
}
|
|
5399
|
-
declare
|
|
5400
|
-
declare
|
|
5401
|
-
}
|
|
5393
|
+
declare type UserUpdateDTO_base = Pick<UserProfileDto, "description" | "profile" | "socials">;
|
|
5394
|
+
declare type UserUpdateDTO = UserUpdateDTO_base
|
|
5402
5395
|
|
|
5403
5396
|
declare class SetEmailDto {
|
|
5404
5397
|
readonly enabled: boolean;
|