fix: add ActiveQuest

This commit is contained in:
Master 2024-06-23 20:25:55 +08:00
parent eb96ee5168
commit 8070c2b55c
2 changed files with 4 additions and 1 deletions

View File

@ -931,7 +931,9 @@ const inventorySchema = new Schema<IInventoryDatabase, InventoryDocumentProps>(
//Zanuka //Zanuka
Harvestable: Boolean, Harvestable: Boolean,
//Grustag three //Grustag three
DeathSquadable: Boolean DeathSquadable: Boolean,
//ActiveQuest
ActiveQuest: String
}, },
{ timestamps: { createdAt: "Created" } } { timestamps: { createdAt: "Created" } }
); );

View File

@ -268,6 +268,7 @@ export interface IInventoryResponse {
PendingCoupon: IPendingCoupon; PendingCoupon: IPendingCoupon;
Harvestable: boolean; Harvestable: boolean;
DeathSquadable: boolean; DeathSquadable: boolean;
ActiveQuest: string;
} }
export interface IAffiliation { export interface IAffiliation {