From 87163d0a21035a6e9888898bb36ba6a34f58a526 Mon Sep 17 00:00:00 2001 From: VoltPrime Date: Mon, 17 Nov 2025 04:45:48 -0500 Subject: [PATCH] Resolve errors --- src/controllers/api/inventoryController.ts | 2 +- src/types/requestTypes.ts | 5 +++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/src/controllers/api/inventoryController.ts b/src/controllers/api/inventoryController.ts index 1e5bcdaa..6cfddc31 100644 --- a/src/controllers/api/inventoryController.ts +++ b/src/controllers/api/inventoryController.ts @@ -6,7 +6,7 @@ import { config } from "../../services/configService.ts"; import allDialogue from "../../../static/fixed_responses/allDialogue.json" with { type: "json" }; import allPopups from "../../../static/fixed_responses/allPopups.json" with { type: "json" }; import type { ILoadoutDatabase } from "../../types/saveLoadoutTypes.ts"; -import type { IInventoryClient, IShipInventory } from "../../types/inventoryTypes/inventoryTypes.ts"; +import type { IInventoryClient, IShipInventory, IUpgradeClient } from "../../types/inventoryTypes/inventoryTypes.ts"; import { equipmentKeys } from "../../types/inventoryTypes/inventoryTypes.ts"; import type { IPolarity } from "../../types/inventoryTypes/commonInventoryTypes.ts"; import { ArtifactPolarity } from "../../types/inventoryTypes/commonInventoryTypes.ts"; diff --git a/src/types/requestTypes.ts b/src/types/requestTypes.ts index 9e057592..c5f71f32 100644 --- a/src/types/requestTypes.ts +++ b/src/types/requestTypes.ts @@ -1,4 +1,4 @@ -import type { IOid, ITypeCount } from "./commonTypes.ts"; +import type { IOid, IOidWithLegacySupport, ITypeCount } from "./commonTypes.ts"; import type { ArtifactPolarity, IPolarity } from "./inventoryTypes/commonInventoryTypes.ts"; import type { IBooster, @@ -21,7 +21,8 @@ import type { IInvasionProgressClient, IWeaponSkinClient, IKubrowPetEggClient, - INemesisClient + INemesisClient, + IUpgradeClient } from "./inventoryTypes/inventoryTypes.ts"; import type { IGroup } from "./loginTypes.ts"; import type { ILoadOutPresets } from "./saveLoadoutTypes.ts";