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";