From 12743046478b220c1390c4598fea1d9064eaf8e9 Mon Sep 17 00:00:00 2001 From: Sainan Date: Sun, 23 Feb 2025 14:10:10 +0100 Subject: [PATCH] chore: fix type not matching reality --- src/types/inventoryTypes/inventoryTypes.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/types/inventoryTypes/inventoryTypes.ts b/src/types/inventoryTypes/inventoryTypes.ts index e9375863..80795418 100644 --- a/src/types/inventoryTypes/inventoryTypes.ts +++ b/src/types/inventoryTypes/inventoryTypes.ts @@ -62,7 +62,7 @@ export interface IInventoryDatabase InfestedFoundry?: IInfestedFoundryDatabase; DialogueHistory?: IDialogueHistoryDatabase; KubrowPetEggs?: IKubrowPetEggDatabase[]; - PendingCoupon: IPendingCouponDatabase; + PendingCoupon?: IPendingCouponDatabase; } export interface IQuestKeyDatabase { @@ -320,7 +320,7 @@ export interface IInventoryClient extends IDailyAffiliations, InventoryClientEqu CollectibleSeries: ICollectibleSery[]; LibraryAvailableDailyTaskInfo: ILibraryAvailableDailyTaskInfo; HasResetAccount: boolean; - PendingCoupon: IPendingCouponClient; + PendingCoupon?: IPendingCouponClient; Harvestable: boolean; DeathSquadable: boolean; EndlessXP?: IEndlessXpProgress[];