diff --git a/src/models/inventoryModels/inventoryModel.ts b/src/models/inventoryModels/inventoryModel.ts index bf2dffc5..bde97c3f 100644 --- a/src/models/inventoryModels/inventoryModel.ts +++ b/src/models/inventoryModels/inventoryModel.ts @@ -931,7 +931,9 @@ const inventorySchema = new Schema( //Zanuka Harvestable: Boolean, //Grustag three - DeathSquadable: Boolean + DeathSquadable: Boolean, + //ActiveQuest + ActiveQuest: String }, { timestamps: { createdAt: "Created" } } ); diff --git a/src/types/inventoryTypes/inventoryTypes.ts b/src/types/inventoryTypes/inventoryTypes.ts index 5e897f2a..76a9ceb6 100644 --- a/src/types/inventoryTypes/inventoryTypes.ts +++ b/src/types/inventoryTypes/inventoryTypes.ts @@ -268,6 +268,7 @@ export interface IInventoryResponse { PendingCoupon: IPendingCoupon; Harvestable: boolean; DeathSquadable: boolean; + ActiveQuest: string; } export interface IAffiliation {