2023-05-19 15:22:48 -03:00
|
|
|
import express from "express";
|
2024-06-30 13:13:26 +02:00
|
|
|
|
2025-08-25 13:37:14 -07:00
|
|
|
import { tunablesController } from "../controllers/custom/tunablesController.ts";
|
|
|
|
|
import { getItemListsController } from "../controllers/custom/getItemListsController.ts";
|
|
|
|
|
import { pushArchonCrystalUpgradeController } from "../controllers/custom/pushArchonCrystalUpgradeController.ts";
|
|
|
|
|
import { popArchonCrystalUpgradeController } from "../controllers/custom/popArchonCrystalUpgradeController.ts";
|
|
|
|
|
import { deleteAccountController } from "../controllers/custom/deleteAccountController.ts";
|
|
|
|
|
import { getNameController } from "../controllers/custom/getNameController.ts";
|
|
|
|
|
import { getAccountInfoController } from "../controllers/custom/getAccountInfoController.ts";
|
2025-09-09 23:55:10 -07:00
|
|
|
import { getGuildController } from "../controllers/custom/getGuildController.ts";
|
|
|
|
|
import { getAllianceController } from "../controllers/custom/getAllianceController.ts";
|
2025-08-25 13:37:14 -07:00
|
|
|
import { renameAccountController } from "../controllers/custom/renameAccountController.ts";
|
|
|
|
|
import { ircDroppedController } from "../controllers/custom/ircDroppedController.ts";
|
|
|
|
|
import { unlockAllIntrinsicsController } from "../controllers/custom/unlockAllIntrinsicsController.ts";
|
|
|
|
|
import { addMissingMaxRankModsController } from "../controllers/custom/addMissingMaxRankModsController.ts";
|
|
|
|
|
import { webuiFileChangeDetectedController } from "../controllers/custom/webuiFileChangeDetectedController.ts";
|
|
|
|
|
import { completeAllMissionsController } from "../controllers/custom/completeAllMissionsController.ts";
|
|
|
|
|
import { addMissingHelminthBlueprintsController } from "../controllers/custom/addMissingHelminthBlueprintsController.ts";
|
2025-08-29 17:36:31 -07:00
|
|
|
import { unlockAllProfitTakerStagesController } from "../controllers/custom/unlockAllProfitTakerStagesController.ts";
|
2025-08-30 19:34:55 -07:00
|
|
|
import { unlockAllSimarisResearchEntriesController } from "../controllers/custom/unlockAllSimarisResearchEntriesController.ts";
|
2025-09-02 20:22:47 -07:00
|
|
|
import { unlockAllScansController } from "../controllers/custom/unlockAllScansController.ts";
|
|
|
|
|
import { unlockAllShipFeaturesController } from "../controllers/custom/unlockAllShipFeaturesController.ts";
|
|
|
|
|
import { unlockAllCapturaScenesController } from "../controllers/custom/unlockAllCapturaScenesController.ts";
|
2025-09-14 23:31:43 -07:00
|
|
|
import { removeCustomizationController } from "../controllers/custom/removeCustomizationController.ts";
|
2024-06-30 13:13:26 +02:00
|
|
|
|
2025-08-25 13:37:14 -07:00
|
|
|
import { abilityOverrideController } from "../controllers/custom/abilityOverrideController.ts";
|
|
|
|
|
import { createAccountController } from "../controllers/custom/createAccountController.ts";
|
|
|
|
|
import { createMessageController } from "../controllers/custom/createMessageController.ts";
|
|
|
|
|
import { addCurrencyController } from "../controllers/custom/addCurrencyController.ts";
|
|
|
|
|
import { addItemsController } from "../controllers/custom/addItemsController.ts";
|
2025-09-09 23:55:10 -07:00
|
|
|
import {
|
|
|
|
|
addTechProjectController,
|
|
|
|
|
completeTechProjectsController,
|
|
|
|
|
fundTechProjectController,
|
|
|
|
|
removeTechProjectController
|
|
|
|
|
} from "../controllers/custom/techProjectController.ts";
|
|
|
|
|
import { addVaultDecoRecipeController } from "../controllers/custom/addVaultDecoRecipeController.ts";
|
2025-08-25 13:37:14 -07:00
|
|
|
import { addXpController } from "../controllers/custom/addXpController.ts";
|
|
|
|
|
import { importController } from "../controllers/custom/importController.ts";
|
|
|
|
|
import { manageQuestsController } from "../controllers/custom/manageQuestsController.ts";
|
|
|
|
|
import { setEvolutionProgressController } from "../controllers/custom/setEvolutionProgressController.ts";
|
|
|
|
|
import { setBoosterController } from "../controllers/custom/setBoosterController.ts";
|
|
|
|
|
import { updateFingerprintController } from "../controllers/custom/updateFingerprintController.ts";
|
2025-09-21 02:53:16 -07:00
|
|
|
import { unlockLevelCapController } from "../controllers/custom/unlockLevelCapController.ts";
|
2025-08-25 13:37:14 -07:00
|
|
|
import { changeModularPartsController } from "../controllers/custom/changeModularPartsController.ts";
|
2025-09-24 02:04:54 +02:00
|
|
|
import { setInvigorationController } from "../controllers/custom/setInvigorationController.ts";
|
2025-08-25 13:37:14 -07:00
|
|
|
import { setAccountCheatController } from "../controllers/custom/setAccountCheatController.ts";
|
2025-09-09 23:55:10 -07:00
|
|
|
import { setGuildCheatController } from "../controllers/custom/setGuildCheatController.ts";
|
2024-06-30 13:13:26 +02:00
|
|
|
|
2025-08-25 13:37:14 -07:00
|
|
|
import { getConfigController, setConfigController } from "../controllers/custom/configController.ts";
|
2023-05-19 15:22:48 -03:00
|
|
|
|
|
|
|
|
const customRouter = express.Router();
|
|
|
|
|
|
2024-10-12 00:26:19 +02:00
|
|
|
customRouter.get("/tunables.json", tunablesController);
|
2024-05-04 14:44:23 +02:00
|
|
|
customRouter.get("/getItemLists", getItemListsController);
|
2024-06-30 13:13:26 +02:00
|
|
|
customRouter.get("/pushArchonCrystalUpgrade", pushArchonCrystalUpgradeController);
|
|
|
|
|
customRouter.get("/popArchonCrystalUpgrade", popArchonCrystalUpgradeController);
|
2024-12-23 03:34:14 +01:00
|
|
|
customRouter.get("/deleteAccount", deleteAccountController);
|
2025-03-08 04:34:14 -08:00
|
|
|
customRouter.get("/getName", getNameController);
|
2025-03-23 13:17:14 -07:00
|
|
|
customRouter.get("/getAccountInfo", getAccountInfoController);
|
2025-09-09 23:55:10 -07:00
|
|
|
customRouter.get("/getGuild", getGuildController);
|
|
|
|
|
customRouter.get("/getAlliance", getAllianceController);
|
2024-12-23 14:37:07 +01:00
|
|
|
customRouter.get("/renameAccount", renameAccountController);
|
2025-03-09 07:40:37 -07:00
|
|
|
customRouter.get("/ircDropped", ircDroppedController);
|
2025-03-20 05:36:29 -07:00
|
|
|
customRouter.get("/unlockAllIntrinsics", unlockAllIntrinsicsController);
|
2025-04-26 11:56:16 -07:00
|
|
|
customRouter.get("/addMissingMaxRankMods", addMissingMaxRankModsController);
|
2025-06-20 18:30:52 -07:00
|
|
|
customRouter.get("/webuiFileChangeDetected", webuiFileChangeDetectedController);
|
2025-06-22 06:37:17 -07:00
|
|
|
customRouter.get("/completeAllMissions", completeAllMissionsController);
|
2025-06-25 20:24:29 -07:00
|
|
|
customRouter.get("/addMissingHelminthBlueprints", addMissingHelminthBlueprintsController);
|
2025-08-29 17:36:31 -07:00
|
|
|
customRouter.get("/unlockAllProfitTakerStages", unlockAllProfitTakerStagesController);
|
2025-08-30 19:34:55 -07:00
|
|
|
customRouter.get("/unlockAllSimarisResearchEntries", unlockAllSimarisResearchEntriesController);
|
2025-09-02 20:22:47 -07:00
|
|
|
customRouter.get("/unlockAllScans", unlockAllScansController);
|
|
|
|
|
customRouter.get("/unlockAllShipFeatures", unlockAllShipFeaturesController);
|
|
|
|
|
customRouter.get("/unlockAllCapturaScenes", unlockAllCapturaScenesController);
|
2025-09-14 23:31:43 -07:00
|
|
|
customRouter.get("/removeCustomization", removeCustomizationController);
|
2024-05-04 14:44:23 +02:00
|
|
|
|
2025-07-29 00:31:29 -07:00
|
|
|
customRouter.post("/abilityOverride", abilityOverrideController);
|
2023-05-19 15:22:48 -03:00
|
|
|
customRouter.post("/createAccount", createAccountController);
|
2025-01-31 14:15:36 +01:00
|
|
|
customRouter.post("/createMessage", createMessageController);
|
2025-02-09 07:17:42 -08:00
|
|
|
customRouter.post("/addCurrency", addCurrencyController);
|
2025-01-15 05:20:17 +01:00
|
|
|
customRouter.post("/addItems", addItemsController);
|
2025-09-09 23:55:10 -07:00
|
|
|
customRouter.post("/addTechProject", addTechProjectController);
|
|
|
|
|
customRouter.post("/removeTechProject", removeTechProjectController);
|
|
|
|
|
customRouter.post("/addVaultDecoRecipe", addVaultDecoRecipeController);
|
|
|
|
|
customRouter.post("/fundTechProject", fundTechProjectController);
|
|
|
|
|
customRouter.post("/completeTechProject", completeTechProjectsController);
|
2025-01-24 15:44:34 +01:00
|
|
|
customRouter.post("/addXp", addXpController);
|
2025-01-20 12:19:32 +01:00
|
|
|
customRouter.post("/import", importController);
|
2025-02-18 17:14:42 -08:00
|
|
|
customRouter.post("/manageQuests", manageQuestsController);
|
2025-04-25 12:00:38 -07:00
|
|
|
customRouter.post("/setEvolutionProgress", setEvolutionProgressController);
|
2025-06-12 04:54:17 -07:00
|
|
|
customRouter.post("/setBooster", setBoosterController);
|
2025-06-29 09:28:28 -07:00
|
|
|
customRouter.post("/updateFingerprint", updateFingerprintController);
|
2025-09-21 02:53:16 -07:00
|
|
|
customRouter.post("/unlockLevelCap", unlockLevelCapController);
|
2025-07-11 21:15:16 -07:00
|
|
|
customRouter.post("/changeModularParts", changeModularPartsController);
|
2025-09-24 02:04:54 +02:00
|
|
|
customRouter.post("/setInvigoration", setInvigorationController);
|
2025-08-14 07:58:41 -07:00
|
|
|
customRouter.post("/setAccountCheat", setAccountCheatController);
|
2025-09-09 23:55:10 -07:00
|
|
|
customRouter.post("/setGuildCheat", setGuildCheatController);
|
2023-05-19 15:22:48 -03:00
|
|
|
|
2025-06-26 19:32:53 -07:00
|
|
|
customRouter.post("/getConfig", getConfigController);
|
|
|
|
|
customRouter.post("/setConfig", setConfigController);
|
2024-06-15 00:38:12 +02:00
|
|
|
|
2024-06-14 22:38:33 +00:00
|
|
|
export { customRouter };
|