├── .eslintignore ├── .eslintrc.json ├── .gitignore ├── README.md ├── bepinex_dev ├── DrakiaXYZ-BigBrain.dll ├── SPTQuestingBots-CustomBotGenExample │ ├── LoggingController.cs │ ├── ParalyzeAction.cs │ ├── ParalyzeLayer.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── QuestingBotsCustomBotGenExamplePlugin.cs │ ├── SPTQuestingBots-CustomBotGenExample.csproj │ └── TestBotGenerator.cs ├── SPTQuestingBots-InteropTest │ ├── BotDecisionLoggingComponent.cs │ ├── BotsControllerSetSettingsPatch.cs │ ├── GameStartPatch.cs │ ├── LoggingController.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── QuestingBotsExternal.cs │ ├── QuestingBotsInterop.cs │ ├── QuestingBotsInteropTestPlugin.cs │ └── SPTQuestingBots-InteropTest.csproj └── SPTQuestingBots │ ├── BehaviorExtensions │ ├── CustomLayerDelayedUpdate.cs │ ├── CustomLayerForQuesting.cs │ ├── CustomLogicDelayedUpdate.cs │ ├── GoToPositionAbstractAction.cs │ └── MonoBehaviourDelayedUpdate.cs │ ├── BotLogic │ ├── BotMonitor │ │ ├── BotMonitorController.cs │ │ └── Monitors │ │ │ ├── AbstractBotMonitor.cs │ │ │ ├── BotCombatMonitor.cs │ │ │ ├── BotExtractMonitor.cs │ │ │ ├── BotHealthMonitor.cs │ │ │ ├── BotHearingMonitor.cs │ │ │ ├── BotLootingMonitor.cs │ │ │ ├── BotMountedGunMonitor.cs │ │ │ ├── BotQuestingDecisionMonitor.cs │ │ │ └── BotQuestingMonitor.cs │ ├── ExternalMods │ │ ├── ExternalModHandler.cs │ │ ├── Functions │ │ │ ├── AbstractBaseExternalFunction.cs │ │ │ ├── AbstractBaseExternalFunctionWithMonitor.cs │ │ │ ├── Extract │ │ │ │ ├── AbstractExtractFunction.cs │ │ │ │ ├── InternalExtractFunction.cs │ │ │ │ └── SAINExtractFunction.cs │ │ │ ├── Hearing │ │ │ │ ├── AbstractHearingFunction.cs │ │ │ │ ├── InternalHearingFunction.cs │ │ │ │ └── SAINHearingFunction.cs │ │ │ └── Loot │ │ │ │ ├── AbstractLootFunction.cs │ │ │ │ ├── InternalLootFunction.cs │ │ │ │ └── LootingBotsLootFunction.cs │ │ ├── Interop │ │ │ ├── LootingBotsInterop.cs │ │ │ └── SAINInterop.cs │ │ └── ModInfo │ │ │ ├── AbstractExternalModInfo.cs │ │ │ ├── DonutsModInfo.cs │ │ │ ├── LootingBotsModInfo.cs │ │ │ ├── PerformanceImprovementsModInfo.cs │ │ │ ├── PleaseJustFightModInfo.cs │ │ │ └── SAINModInfo.cs │ ├── Follow │ │ ├── BossRegroupAction.cs │ │ ├── BotFollowerLayer.cs │ │ ├── BotFollowerRegroupLayer.cs │ │ ├── FollowBossAction.cs │ │ └── FollowerRegroupAction.cs │ ├── HiveMind │ │ ├── BotHiveMindAbstractSensor.cs │ │ ├── BotHiveMindCanQuestSensor.cs │ │ ├── BotHiveMindCanSprintToObjectiveSensor.cs │ │ ├── BotHiveMindIsInCombatSensor.cs │ │ ├── BotHiveMindIsSuspiciousSensor.cs │ │ ├── BotHiveMindMonitor.cs │ │ └── BotHiveMindWantsToLootSensor.cs │ ├── LogicLayerMonitor.cs │ ├── Objective │ │ ├── AmbushAction.cs │ │ ├── BotObjectiveLayer.cs │ │ ├── CloseNearbyDoorsAction.cs │ │ ├── GoToObjectiveAction.cs │ │ ├── HoldAtObjectiveAction.cs │ │ ├── PlantItemAction.cs │ │ ├── SnipeAction.cs │ │ ├── ToggleSwitchAction.cs │ │ └── UnlockDoorAction.cs │ └── Sleep │ │ ├── SleepingAction.cs │ │ └── SleepingLayer.cs │ ├── Components │ ├── BotObjectiveManager.cs │ ├── BotQuestBuilder.cs │ ├── DebugData.cs │ ├── LightkeeperIslandMonitor.cs │ ├── LocationData.cs │ ├── PathRenderer.cs │ ├── QuestMinLevelFinder.cs │ ├── QuestPathFinder.cs │ ├── Spawning │ │ ├── BotGenerator.cs │ │ ├── PMCGenerator.cs │ │ └── PScavGenerator.cs │ └── TarkovData.cs │ ├── Configuration │ ├── AdjustPScavChanceConfig.cs │ ├── BotCapAdjustmentsConfig.cs │ ├── BotPathingConfig.cs │ ├── BotQuestingRequirementsConfig.cs │ ├── BotQuestsConfig.cs │ ├── BotSearchDistanceConfig.cs │ ├── BotSpawnTypeConfig.cs │ ├── BotSpawnsConfig.cs │ ├── BotTypeConfig.cs │ ├── BotTypeValueConfig.cs │ ├── BrainLayerPrioritiesConfig.cs │ ├── BrainLayerPrioritiesOptionsConfig.cs │ ├── BreakForLootingConfig.cs │ ├── DebugConfig.cs │ ├── DistanceAngleConfig.cs │ ├── EftNewSpawnSystemAdjustmentsConfig.cs │ ├── ExtractionRequirementsConfig.cs │ ├── HearingSensorConfig.cs │ ├── LightkeeperIslandQuestsConfig.cs │ ├── LimitInitialBossSpawnsConfig.cs │ ├── LoggingPath.cs │ ├── MaxFollowerDistanceConfig.cs │ ├── MinMaxConfig.cs │ ├── ModConfig.cs │ ├── PMCHostilityAdjustmentsConfig.cs │ ├── QuestDataConfig.cs │ ├── QuestGenerationConfig.cs │ ├── QuestSettingsConfig.cs │ ├── QuestingConfig.cs │ ├── ScavRaidSettingsConfig.cs │ ├── ScavRaidSettingsResponse.cs │ ├── SearchTimeAfterCombatConfig.cs │ ├── ServerResponseError.cs │ ├── SprintingLimitationsConfig.cs │ ├── StuckBotDetectionConfig.cs │ ├── StuckBotRemediesConfig.cs │ ├── USECChanceResponse.cs │ ├── UnlockingDoorsConfig.cs │ └── ZoneAndItemPositionInfoConfig.cs │ ├── ConfigurationManagerAttributes.cs │ ├── Controllers │ ├── BotJobAssignmentFactory.cs │ ├── BotObjectiveManagerFactory.cs │ ├── BotRegistrationManager.cs │ ├── ConfigController.cs │ └── LoggingController.cs │ ├── CoroutineExtensions │ ├── EnumeratorWithTimeLimit.cs │ └── MethodWithTimeLimit.cs │ ├── Helpers │ ├── BotBrainHelpers.cs │ ├── BotGroupHelpers.cs │ ├── BotPathingHelpers.cs │ ├── DebugHelpers.cs │ ├── GameCompatibilityCheckHelper.cs │ ├── InteractiveObjectHelpers.cs │ ├── ItemHelpers.cs │ ├── NavMeshHelpers.cs │ ├── QuestHelpers.cs │ ├── RaidHelpers.cs │ ├── RecodableComponentHelpers.cs │ └── TarkovTypeHelpers.cs │ ├── Models │ ├── BotBrainType.cs │ ├── BotSpawnInfo.cs │ ├── BotSprintingController.cs │ ├── Debug │ │ ├── AbstractBotPathMarkerGizmo.cs │ │ ├── AbstractDebugGizmo.cs │ │ ├── BotInfoGizmo.cs │ │ ├── BotObjectivePositionMarkerGizmo.cs │ │ ├── BotPathCurrentCornerMarkerGizmo.cs │ │ ├── BotPathTargetMarkerGizmo.cs │ │ ├── BotPathVisualizationGizmo.cs │ │ ├── DebugMarkerWithOverlay.cs │ │ ├── DebugOverlay.cs │ │ ├── JobAssignmentGizmo.cs │ │ └── PlayerCoordinatesGizmo.cs │ ├── EnumeratorCollection.cs │ ├── JSONObject.cs │ ├── Pathing │ │ ├── BotPathData.cs │ │ ├── PathVisualizationData.cs │ │ └── StaticPathData.cs │ ├── Questing │ │ ├── BotJobAssignment.cs │ │ ├── JobAssignment.cs │ │ ├── Quest.cs │ │ ├── QuestItemObjective.cs │ │ ├── QuestObjective.cs │ │ ├── QuestObjectiveStep.cs │ │ ├── QuestSpawnPointObjective.cs │ │ ├── QuestZoneObjective.cs │ │ └── StoredQuestLocation.cs │ └── SerializableVector3.cs │ ├── Patches │ ├── AirdropLandPatch.cs │ ├── BotOwnerBrainActivatePatch.cs │ ├── BotOwnerSprintPatch.cs │ ├── BotsControllerSetSettingsPatch.cs │ ├── BotsControllerStopPatch.cs │ ├── CheckLookEnemyPatch.cs │ ├── Debug │ │ ├── HandleFinishedTaskPatch.cs │ │ └── ProcessSourceOcclusionPatch.cs │ ├── IsFollowerSuitableForBossPatch.cs │ ├── Lighthouse │ │ ├── LighthouseTraderZoneAwakePatch.cs │ │ ├── LighthouseTraderZonePlayerAttackPatch.cs │ │ └── MineDirectionalShouldExplodePatch.cs │ ├── MenuShowPatch.cs │ ├── OnBeenKilledByAggressorPatch.cs │ ├── PScavProfilePatch.cs │ ├── ReturnToPoolPatch.cs │ ├── ServerRequestPatch.cs │ ├── Spawning │ │ ├── ActivateBossesByWavePatch.cs │ │ ├── AddEnemyPatch.cs │ │ ├── Advanced │ │ │ ├── BotDiedPatch.cs │ │ │ ├── ExceptAIPatch.cs │ │ │ ├── GetListByZonePatch.cs │ │ │ └── TryToSpawnInZoneAndDelayPatch.cs │ │ ├── BotsGroupIsPlayerEnemyPatch.cs │ │ ├── GameStartPatch.cs │ │ ├── GetAllBossPlayersPatch.cs │ │ ├── InitBossSpawnLocationPatch.cs │ │ ├── ScavLimits │ │ │ ├── BotsControllerStopPatch.cs │ │ │ ├── NonWavesSpawnScenarioCreatePatch.cs │ │ │ ├── SpawnPointIsValidPatch.cs │ │ │ └── TrySpawnFreeAndDelayPatch.cs │ │ ├── SetNewBossPatch.cs │ │ ├── TimeHasComeScreenClassChangeStatusPatch.cs │ │ └── TryLoadBotsProfilesOnStartPatch.cs │ └── TarkovInitPatch.cs │ ├── Properties │ └── AssemblyInfo.cs │ ├── QuestingBotsExternal.cs │ ├── QuestingBotsInterop.cs │ ├── QuestingBotsPlugin.cs │ ├── QuestingBotsPluginConfig.cs │ ├── SPTQuestingBots.csproj │ └── SPTQuestingBots.sln ├── config ├── config.json ├── eftQuestSettings.json └── zoneAndItemQuestPositions.json ├── dist ├── BepInEx │ └── plugins │ │ └── DanW-SPTQuestingBots │ │ ├── SPTQuestingBots.dll │ │ └── quests │ │ └── standard │ │ ├── bigmap.json │ │ ├── factory4_day.json │ │ ├── factory4_night.json │ │ ├── interchange.json │ │ ├── laboratory.json │ │ ├── lighthouse.json │ │ ├── rezervbase.json │ │ ├── sandbox.json │ │ ├── sandbox_high.json │ │ ├── shoreline.json │ │ ├── tarkovstreets.json │ │ └── woods.json ├── DanW-SPTQuestingBots.zip └── user │ └── mods │ └── DanW-SPTQuestingBots │ ├── README.md │ ├── config │ ├── config.json │ ├── eftQuestSettings.json │ └── zoneAndItemQuestPositions.json │ ├── package.json │ └── src │ ├── BotLocationUtil.ts │ ├── CommonUtils.ts │ ├── PMCConversionUtil.ts │ └── mod.ts ├── mod.code-workspace ├── package.json ├── packageBuild.ts ├── quests └── standard │ ├── bigmap.json │ ├── factory4_day.json │ ├── factory4_night.json │ ├── interchange.json │ ├── laboratory.json │ ├── lighthouse.json │ ├── rezervbase.json │ ├── sandbox.json │ ├── sandbox_high.json │ ├── shoreline.json │ ├── tarkovstreets.json │ └── woods.json ├── src ├── BotLocationUtil.ts ├── CommonUtils.ts ├── PMCConversionUtil.ts └── mod.ts ├── tsconfig.json └── types ├── ErrorHandler.d.ts ├── Program.d.ts ├── ProgramStatics.d.ts ├── callbacks ├── AchievementCallbacks.d.ts ├── BotCallbacks.d.ts ├── BuildsCallbacks.d.ts ├── BundleCallbacks.d.ts ├── ClientLogCallbacks.d.ts ├── CustomizationCallbacks.d.ts ├── DataCallbacks.d.ts ├── DialogueCallbacks.d.ts ├── GameCallbacks.d.ts ├── HandbookCallbacks.d.ts ├── HealthCallbacks.d.ts ├── HideoutCallbacks.d.ts ├── HttpCallbacks.d.ts ├── InraidCallbacks.d.ts ├── InsuranceCallbacks.d.ts ├── InventoryCallbacks.d.ts ├── ItemEventCallbacks.d.ts ├── LauncherCallbacks.d.ts ├── LocationCallbacks.d.ts ├── MatchCallbacks.d.ts ├── ModCallbacks.d.ts ├── NoteCallbacks.d.ts ├── NotifierCallbacks.d.ts ├── PresetCallbacks.d.ts ├── PrestigeCallbacks.d.ts ├── ProfileCallbacks.d.ts ├── QuestCallbacks.d.ts ├── RagfairCallbacks.d.ts ├── RepairCallbacks.d.ts ├── SaveCallbacks.d.ts ├── TradeCallbacks.d.ts ├── TraderCallbacks.d.ts ├── WeatherCallbacks.d.ts └── WishlistCallbacks.d.ts ├── context ├── ApplicationContext.d.ts ├── ContextVariable.d.ts └── ContextVariableType.d.ts ├── controllers ├── AchievementController.d.ts ├── BotController.d.ts ├── BuildController.d.ts ├── ClientLogController.d.ts ├── CustomizationController.d.ts ├── DialogueController.d.ts ├── GameController.d.ts ├── HandbookController.d.ts ├── HealthController.d.ts ├── HideoutController.d.ts ├── InraidController.d.ts ├── InsuranceController.d.ts ├── InventoryController.d.ts ├── LauncherController.d.ts ├── LocationController.d.ts ├── MatchController.d.ts ├── NoteController.d.ts ├── NotifierController.d.ts ├── PresetController.d.ts ├── PrestigeController.d.ts ├── ProfileController.d.ts ├── QuestController.d.ts ├── RagfairController.d.ts ├── RepairController.d.ts ├── RepeatableQuestController.d.ts ├── TradeController.d.ts ├── TraderController.d.ts ├── WeatherController.d.ts └── WishlistController.d.ts ├── di ├── Container.d.ts ├── OnLoad.d.ts ├── OnUpdate.d.ts ├── Router.d.ts └── Serializer.d.ts ├── entry └── run.d.ts ├── generators ├── BotEquipmentModGenerator.d.ts ├── BotGenerator.d.ts ├── BotInventoryGenerator.d.ts ├── BotLevelGenerator.d.ts ├── BotLootGenerator.d.ts ├── BotWeaponGenerator.d.ts ├── FenceBaseAssortGenerator.d.ts ├── LocationLootGenerator.d.ts ├── LootGenerator.d.ts ├── PMCLootGenerator.d.ts ├── PlayerScavGenerator.d.ts ├── PmcWaveGenerator.d.ts ├── RagfairAssortGenerator.d.ts ├── RagfairOfferGenerator.d.ts ├── RepeatableQuestGenerator.d.ts ├── RepeatableQuestRewardGenerator.d.ts ├── ScavCaseRewardGenerator.d.ts ├── WeatherGenerator.d.ts └── weapongen │ ├── IInventoryMagGen.d.ts │ ├── InventoryMagGen.d.ts │ └── implementations │ ├── BarrelInventoryMagGen.d.ts │ ├── ExternalInventoryMagGen.d.ts │ ├── InternalMagazineInventoryMagGen.d.ts │ └── UbglExternalMagGen.d.ts ├── helpers ├── AssortHelper.d.ts ├── BotDifficultyHelper.d.ts ├── BotGeneratorHelper.d.ts ├── BotHelper.d.ts ├── BotWeaponGeneratorHelper.d.ts ├── ContainerHelper.d.ts ├── Dialogue │ ├── AbstractDialogueChatBot.d.ts │ ├── Commando │ │ ├── IChatCommand.d.ts │ │ ├── SptCommandoCommands.d.ts │ │ └── SptCommands │ │ │ ├── GiveCommand │ │ │ ├── GiveSptCommand.d.ts │ │ │ └── SavedCommand.d.ts │ │ │ ├── ISptCommand.d.ts │ │ │ ├── ProfileCommand │ │ │ └── ProfileSptCommand.d.ts │ │ │ └── TraderCommand │ │ │ └── TraderSptCommand.d.ts │ ├── CommandoDialogueChatBot.d.ts │ ├── IDialogueChatBot.d.ts │ └── SptDialogueChatBot.d.ts ├── DialogueHelper.d.ts ├── DurabilityLimitsHelper.d.ts ├── GameEventHelper.d.ts ├── HandbookHelper.d.ts ├── HealthHelper.d.ts ├── HideoutHelper.d.ts ├── HttpServerHelper.d.ts ├── InRaidHelper.d.ts ├── InventoryHelper.d.ts ├── ItemHelper.d.ts ├── NotificationSendHelper.d.ts ├── NotifierHelper.d.ts ├── PaymentHelper.d.ts ├── PresetHelper.d.ts ├── PrestigeHelper.d.ts ├── ProbabilityHelper.d.ts ├── ProfileHelper.d.ts ├── QuestConditionHelper.d.ts ├── QuestHelper.d.ts ├── QuestRewardHelper.d.ts ├── RagfairHelper.d.ts ├── RagfairOfferHelper.d.ts ├── RagfairSellHelper.d.ts ├── RagfairServerHelper.d.ts ├── RagfairSortHelper.d.ts ├── RepairHelper.d.ts ├── RepeatableQuestHelper.d.ts ├── RewardHelper.d.ts ├── SecureContainerHelper.d.ts ├── TradeHelper.d.ts ├── TraderAssortHelper.d.ts ├── TraderHelper.d.ts ├── UtilityHelper.d.ts ├── WeatherHelper.d.ts └── WeightedRandomHelper.d.ts ├── loaders ├── BundleLoader.d.ts ├── ModLoadOrder.d.ts ├── ModTypeCheck.d.ts ├── PostDBModLoader.d.ts ├── PostSptModLoader.d.ts └── PreSptModLoader.d.ts ├── models ├── common │ └── MinMax.d.ts ├── eft │ ├── bot │ │ ├── IGenerateBotsRequestData.d.ts │ │ └── IRandomisedBotLevelResult.d.ts │ ├── builds │ │ └── ISetMagazineRequest.d.ts │ ├── common │ │ ├── IEmptyRequestData.d.ts │ │ ├── IGlobals.d.ts │ │ ├── ILocation.d.ts │ │ ├── ILocationBase.d.ts │ │ ├── ILocationsSourceDestinationBase.d.ts │ │ ├── ILooseLoot.d.ts │ │ ├── IMetricsTableData.d.ts │ │ ├── IPmcData.d.ts │ │ ├── Ixyz.d.ts │ │ ├── request │ │ │ ├── IBaseInteractionRequestData.d.ts │ │ │ └── IUIDRequestData.d.ts │ │ └── tables │ │ │ ├── IAchievement.d.ts │ │ │ ├── IBotBase.d.ts │ │ │ ├── IBotCore.d.ts │ │ │ ├── IBotType.d.ts │ │ │ ├── ICustomisationStorage.d.ts │ │ │ ├── ICustomizationItem.d.ts │ │ │ ├── IHandbookBase.d.ts │ │ │ ├── IItem.d.ts │ │ │ ├── ILocationServices.d.ts │ │ │ ├── ILocationsBase.d.ts │ │ │ ├── IMatch.d.ts │ │ │ ├── IPrestige.d.ts │ │ │ ├── IProfileTemplate.d.ts │ │ │ ├── IQuest.d.ts │ │ │ ├── IRepeatableQuests.d.ts │ │ │ ├── IReward.d.ts │ │ │ ├── ITemplateItem.d.ts │ │ │ └── ITrader.d.ts │ ├── customization │ │ ├── IBuyClothingRequestData.d.ts │ │ ├── ICustomizationSetRequest.d.ts │ │ └── IWearClothingRequestData.d.ts │ ├── dialog │ │ ├── IAcceptFriendRequestData.d.ts │ │ ├── IAddUserGroupMailRequest.d.ts │ │ ├── IChangeGroupMailOwnerRequest.d.ts │ │ ├── IChatServer.d.ts │ │ ├── IClearMailMessageRequest.d.ts │ │ ├── ICreateGroupMailRequest.d.ts │ │ ├── IDeleteFriendRequest.d.ts │ │ ├── IFriendRequestData.d.ts │ │ ├── IFriendRequestSendResponse.d.ts │ │ ├── IGetAllAttachmentsRequestData.d.ts │ │ ├── IGetAllAttachmentsResponse.d.ts │ │ ├── IGetChatServerListRequestData.d.ts │ │ ├── IGetFriendListDataResponse.d.ts │ │ ├── IGetMailDialogInfoRequestData.d.ts │ │ ├── IGetMailDialogListRequestData.d.ts │ │ ├── IGetMailDialogViewRequestData.d.ts │ │ ├── IGetMailDialogViewResponseData.d.ts │ │ ├── IPinDialogRequestData.d.ts │ │ ├── IRemoveDialogRequestData.d.ts │ │ ├── IRemoveMailMessageRequest.d.ts │ │ ├── IRemoveUserGroupMailRequest.d.ts │ │ ├── ISendMessageRequest.d.ts │ │ └── ISetDialogReadRequestData.d.ts │ ├── game │ │ ├── ICheckVersionResponse.d.ts │ │ ├── ICurrentGroupResponse.d.ts │ │ ├── IGameConfigResponse.d.ts │ │ ├── IGameEmptyCrcRequestData.d.ts │ │ ├── IGameKeepAliveResponse.d.ts │ │ ├── IGameLogoutResponseData.d.ts │ │ ├── IGameModeRequestData.d.ts │ │ ├── IGameModeResponse.d.ts │ │ ├── IGameStartResponse.d.ts │ │ ├── IGetItemPricesResponse.d.ts │ │ ├── IGetRaidTimeRequest.d.ts │ │ ├── IGetRaidTimeResponse.d.ts │ │ ├── ISendReportRequest.d.ts │ │ ├── ISendSurveyOpinionRequest.d.ts │ │ ├── IServerDetails.d.ts │ │ ├── ISurveyResponseData.d.ts │ │ └── IVersionValidateRequestData.d.ts │ ├── health │ │ ├── Effect.d.ts │ │ ├── IHealthTreatmentRequestData.d.ts │ │ ├── IOffraidEatRequestData.d.ts │ │ ├── IOffraidHealRequestData.d.ts │ │ ├── ISyncHealthRequestData.d.ts │ │ └── IWorkoutData.d.ts │ ├── hideout │ │ ├── IHandleQTEEventRequestData.d.ts │ │ ├── IHideoutArea.d.ts │ │ ├── IHideoutCancelProductionRequestData.d.ts │ │ ├── IHideoutCircleOfCultistProductionStartRequestData.d.ts │ │ ├── IHideoutContinuousProductionStartRequestData.d.ts │ │ ├── IHideoutCustomisation.d.ts │ │ ├── IHideoutCustomizationApplyRequestData.d.ts │ │ ├── IHideoutCustomizationSetMannequinPoseRequest.d.ts │ │ ├── IHideoutDeleteProductionRequestData.d.ts │ │ ├── IHideoutImproveAreaRequestData.d.ts │ │ ├── IHideoutProduction.d.ts │ │ ├── IHideoutPutItemInRequestData.d.ts │ │ ├── IHideoutScavCaseStartRequestData.d.ts │ │ ├── IHideoutSettingsBase.d.ts │ │ ├── IHideoutSingleProductionStartRequestData.d.ts │ │ ├── IHideoutTakeItemOutRequestData.d.ts │ │ ├── IHideoutTakeProductionRequestData.d.ts │ │ ├── IHideoutToggleAreaRequestData.d.ts │ │ ├── IHideoutUpgradeCompleteRequestData.d.ts │ │ ├── IHideoutUpgradeRequestData.d.ts │ │ ├── IQteData.d.ts │ │ └── IRecordShootingRangePoints.d.ts │ ├── httpResponse │ │ ├── IGetBodyResponseData.d.ts │ │ └── INullResponseData.d.ts │ ├── inRaid │ │ ├── IInsuredItemsData.d.ts │ │ ├── IItemDeliveryRequestData.d.ts │ │ ├── IRegisterPlayerRequestData.d.ts │ │ └── IScavSaveRequestData.d.ts │ ├── insurance │ │ ├── IGetInsuranceCostRequestData.d.ts │ │ ├── IGetInsuranceCostResponseData.d.ts │ │ └── IInsureRequestData.d.ts │ ├── inventory │ │ ├── IAddItemDirectRequest.d.ts │ │ ├── IAddItemRequestData.d.ts │ │ ├── IAddItemTempObject.d.ts │ │ ├── IAddItemsDirectRequest.d.ts │ │ ├── IInventoryAddRequestData.d.ts │ │ ├── IInventoryBaseActionRequestData.d.ts │ │ ├── IInventoryBindRequestData.d.ts │ │ ├── IInventoryCreateMarkerRequestData.d.ts │ │ ├── IInventoryDeleteMarkerRequestData.d.ts │ │ ├── IInventoryEditMarkerRequestData.d.ts │ │ ├── IInventoryExamineRequestData.d.ts │ │ ├── IInventoryFoldRequestData.d.ts │ │ ├── IInventoryMergeRequestData.d.ts │ │ ├── IInventoryMoveRequestData.d.ts │ │ ├── IInventoryReadEncyclopediaRequestData.d.ts │ │ ├── IInventoryRemoveRequestData.d.ts │ │ ├── IInventorySortRequestData.d.ts │ │ ├── IInventorySplitRequestData.d.ts │ │ ├── IInventorySwapRequestData.d.ts │ │ ├── IInventoryTagRequestData.d.ts │ │ ├── IInventoryToggleRequestData.d.ts │ │ ├── IInventoryTransferRequestData.d.ts │ │ ├── IInventoryUnbindRequestData.d.ts │ │ ├── IOpenRandomLootContainerRequestData.d.ts │ │ ├── IPinOrLockItemRequest.d.ts │ │ ├── IRedeemProfileRequestData.d.ts │ │ └── ISetFavoriteItems.d.ts │ ├── itemEvent │ │ ├── IEmptyItemEventRouterResponse.d.ts │ │ ├── IItemEventRouterBase.d.ts │ │ ├── IItemEventRouterRequest.d.ts │ │ └── IItemEventRouterResponse.d.ts │ ├── launcher │ │ ├── IChangeRequestData.d.ts │ │ ├── IGetMiniProfileRequestData.d.ts │ │ ├── ILoginRequestData.d.ts │ │ ├── IMiniProfile.d.ts │ │ ├── IRegisterData.d.ts │ │ └── IRemoveProfileData.d.ts │ ├── location │ │ ├── IAirdropLootResult.d.ts │ │ ├── IGetAirdropLootRequest.d.ts │ │ ├── IGetAirdropLootResponse.d.ts │ │ └── IGetLocationRequestData.d.ts │ ├── match │ │ ├── IEndLocalRaidRequestData.d.ts │ │ ├── IEndOfflineRaidRequestData.d.ts │ │ ├── IGetRaidConfigurationRequestData.d.ts │ │ ├── IGroupCharacter.d.ts │ │ ├── IMatchGroupCurrentResponse.d.ts │ │ ├── IMatchGroupInviteSendRequest.d.ts │ │ ├── IMatchGroupPlayerRemoveRequest.d.ts │ │ ├── IMatchGroupStartGameRequest.d.ts │ │ ├── IMatchGroupStatusRequest.d.ts │ │ ├── IMatchGroupStatusResponse.d.ts │ │ ├── IMatchGroupTransferRequest.d.ts │ │ ├── IProfileStatusRequest.d.ts │ │ ├── IProfileStatusResponse.d.ts │ │ ├── IPutMetricsRequestData.d.ts │ │ ├── IRaidSettings.d.ts │ │ ├── IRequestIdRequest.d.ts │ │ ├── IServer.d.ts │ │ ├── ISessionStatus.d.ts │ │ ├── IStartLocalRaidRequestData.d.ts │ │ ├── IStartLocalRaidResponseData.d.ts │ │ └── IUpdatePingRequestData.d.ts │ ├── notes │ │ └── INoteActionData.d.ts │ ├── notifier │ │ ├── INotifier.d.ts │ │ └── ISelectProfileResponse.d.ts │ ├── presetBuild │ │ ├── IPresetBuildActionRequestData.d.ts │ │ └── IRemoveBuildRequestData.d.ts │ ├── prestige │ │ ├── IGetPrestigeResponse.d.ts │ │ └── IObtainPrestigeRequest.d.ts │ ├── profile │ │ ├── GetProfileStatusResponseData.d.ts │ │ ├── ICompletedAchievementsResponse.d.ts │ │ ├── IConnectResponse.d.ts │ │ ├── ICreateProfileResponse.d.ts │ │ ├── IGetAchievementsResponse.d.ts │ │ ├── IGetOtherProfileRequest.d.ts │ │ ├── IGetOtherProfileResponse.d.ts │ │ ├── IGetProfileSettingsRequest.d.ts │ │ ├── IMessageContentRagfair.d.ts │ │ ├── IProfileChangeNicknameRequestData.d.ts │ │ ├── IProfileChangeVoiceRequestData.d.ts │ │ ├── IProfileCreateRequestData.d.ts │ │ ├── ISearchFriendRequestData.d.ts │ │ ├── ISearchFriendResponse.d.ts │ │ ├── ISptProfile.d.ts │ │ ├── ISystemData.d.ts │ │ ├── IUserDialogInfo.d.ts │ │ └── IValidateNicknameRequestData.d.ts │ ├── quests │ │ ├── IAcceptQuestRequestData.d.ts │ │ ├── ICompleteQuestRequestData.d.ts │ │ ├── IFailQuestRequestData.d.ts │ │ ├── IHandoverQuestRequestData.d.ts │ │ ├── IListQuestsRequestData.d.ts │ │ └── IRepeatableQuestChangeRequest.d.ts │ ├── ragfair │ │ ├── IAddOfferRequestData.d.ts │ │ ├── IExtendOfferRequestData.d.ts │ │ ├── IGetItemPriceResult.d.ts │ │ ├── IGetMarketPriceRequestData.d.ts │ │ ├── IGetOffersResult.d.ts │ │ ├── IGetRagfairOfferByIdRequest.d.ts │ │ ├── IRagfairOffer.d.ts │ │ ├── IRemoveOfferRequestData.d.ts │ │ ├── ISearchRequestData.d.ts │ │ ├── ISendRagfairReportRequestData.d.ts │ │ └── IStorePlayerOfferTaxAmountRequestData.d.ts │ ├── repair │ │ ├── IBaseRepairActionDataRequest.d.ts │ │ ├── IRepairActionDataRequest.d.ts │ │ └── ITraderRepairActionDataRequest.d.ts │ ├── trade │ │ ├── IProcessBaseTradeRequestData.d.ts │ │ ├── IProcessBuyTradeRequestData.d.ts │ │ ├── IProcessRagfairTradeRequestData.d.ts │ │ ├── IProcessSellTradeRequestData.d.ts │ │ └── ISellScavItemsToFenceRequestData.d.ts │ ├── weather │ │ └── IWeatherData.d.ts │ ├── wishlist │ │ ├── IAddToWishlistRequest.d.ts │ │ ├── IChangeWishlistItemCategoryRequest.d.ts │ │ └── IRemoveFromWishlistRequest.d.ts │ └── ws │ │ ├── IWsAid.d.ts │ │ ├── IWsAidNickname.d.ts │ │ ├── IWsChatMessageReceived.d.ts │ │ ├── IWsFriendsListAccept.d.ts │ │ ├── IWsGroupId.d.ts │ │ ├── IWsGroupMatchInviteAccept.d.ts │ │ ├── IWsGroupMatchInviteDecline.d.ts │ │ ├── IWsGroupMatchInviteSend.d.ts │ │ ├── IWsGroupMatchLeaderChanged.d.ts │ │ ├── IWsGroupMatchRaidReady.d.ts │ │ ├── IWsGroupMatchRaidSettings.d.ts │ │ ├── IWsNotificationEvent.d.ts │ │ ├── IWsPing.d.ts │ │ ├── IWsRagfairOfferSold.d.ts │ │ └── IWsUserConfirmed.d.ts ├── enums │ ├── AccountTypes.d.ts │ ├── AirdropType.d.ts │ ├── AmmoTypes.d.ts │ ├── BackendErrorCodes.d.ts │ ├── BaseClasses.d.ts │ ├── BonusSkillType.d.ts │ ├── BonusType.d.ts │ ├── ConfigTypes.d.ts │ ├── ContainerTypes.d.ts │ ├── DateTime.d.ts │ ├── DogtagExchangeSide.d.ts │ ├── ELocationName.d.ts │ ├── EntryType.d.ts │ ├── EquipmentBuildType.d.ts │ ├── EquipmentSlots.d.ts │ ├── ExitStatis.d.ts │ ├── FleaOfferType.d.ts │ ├── GameEditions.d.ts │ ├── GiftSenderType.d.ts │ ├── GiftSentResult.d.ts │ ├── HideoutAreas.d.ts │ ├── HideoutEventActions.d.ts │ ├── ItemAddedResult.d.ts │ ├── ItemEventActions.d.ts │ ├── ItemTpl.d.ts │ ├── MemberCategory.d.ts │ ├── MessageType.d.ts │ ├── ModSpawn.d.ts │ ├── Money.d.ts │ ├── NotificationEventType.d.ts │ ├── PlayerRaidEndState.d.ts │ ├── PlayersSpawnPlace.d.ts │ ├── ProfileStatus.d.ts │ ├── QuestStatus.d.ts │ ├── QuestTypeEnum.d.ts │ ├── RagfairSort.d.ts │ ├── RaidMode.d.ts │ ├── RaidSettings │ │ ├── BotAmount.d.ts │ │ ├── BotDifficulty.d.ts │ │ └── TimeAndWeather │ │ │ ├── CloudinessType.d.ts │ │ │ ├── FogType.d.ts │ │ │ ├── RainType.d.ts │ │ │ ├── TimeFlowType.d.ts │ │ │ └── WindSpeed.d.ts │ ├── RewardType.d.ts │ ├── Season.d.ts │ ├── SeasonalEventType.d.ts │ ├── SideType.d.ts │ ├── SkillTypes.d.ts │ ├── TraderServiceType.d.ts │ ├── Traders.d.ts │ ├── TransitionType.d.ts │ ├── WeaponSkillTypes.d.ts │ ├── Weapons.d.ts │ ├── WeatherType.d.ts │ ├── WildSpawnTypeNumber.d.ts │ ├── WindDirection.d.ts │ └── hideout │ │ ├── CircleRewardType.d.ts │ │ ├── QteActivityType.d.ts │ │ ├── QteEffectType.d.ts │ │ ├── QteResultType.d.ts │ │ ├── QteRewardType.d.ts │ │ ├── QteType.d.ts │ │ └── RequirementType.d.ts ├── external │ ├── HttpFramework.d.ts │ ├── IPostDBLoadMod.d.ts │ ├── IPostDBLoadModAsync.d.ts │ ├── IPostSptLoadMod.d.ts │ ├── IPostSptLoadModAsync.d.ts │ ├── IPreSptLoadMod.d.ts │ ├── IPreSptLoadModAsync.d.ts │ └── tsyringe.d.ts └── spt │ ├── bindings │ └── Route.d.ts │ ├── bots │ ├── BotGenerationDetails.d.ts │ ├── IBotLootCache.d.ts │ ├── IBots.d.ts │ ├── IChooseRandomCompatibleModResult.d.ts │ ├── IFilterPlateModsForSlotByLevelResult.d.ts │ ├── IGenerateEquipmentProperties.d.ts │ ├── IGenerateWeaponRequest.d.ts │ ├── IGenerateWeaponResult.d.ts │ ├── IItemSpawnLimitSettings.d.ts │ └── IModToSpawnRequest.d.ts │ ├── callbacks │ ├── IBotCallbacks.d.ts │ ├── IBundleCallbacks.d.ts │ ├── ICustomizationCallbacks.d.ts │ ├── IDialogueCallbacks.d.ts │ ├── IGameCallbacks.d.ts │ ├── IHandbookCallbacks.d.ts │ ├── IHealthCallbacks.d.ts │ ├── IHideoutCallbacks.d.ts │ ├── IHttpCallbacks.d.ts │ ├── IInsuranceCallbacks.d.ts │ ├── IInventoryCallbacks.d.ts │ ├── IItemEventCallbacks.d.ts │ ├── ILauncherCallbacks.d.ts │ ├── ILocationCallbacks.d.ts │ ├── IModCallbacks.d.ts │ ├── INoteCallbacks.d.ts │ ├── INotifierCallbacks.d.ts │ ├── IPresetBuildCallbacks.d.ts │ ├── IPresetCallbacks.d.ts │ ├── IProfileCallbacks.d.ts │ ├── IQuestCallbacks.d.ts │ ├── IRagfairCallbacks.d.ts │ ├── IRepairCallbacks.d.ts │ ├── ISaveCallbacks.d.ts │ ├── ITradeCallbacks.d.ts │ ├── ITraderCallbacks.d.ts │ └── IWeatherCallbacks.d.ts │ ├── config │ ├── IAirdropConfig.d.ts │ ├── IBackupConfig.d.ts │ ├── IBaseConfig.d.ts │ ├── IBotConfig.d.ts │ ├── IBotDurability.d.ts │ ├── ICoreConfig.d.ts │ ├── IGiftsConfig.d.ts │ ├── IHealthConfig.d.ts │ ├── IHideoutConfig.d.ts │ ├── IHttpConfig.d.ts │ ├── IInRaidConfig.d.ts │ ├── IInsuranceConfig.d.ts │ ├── IInventoryConfig.d.ts │ ├── IItemConfig.d.ts │ ├── ILocaleConfig.d.ts │ ├── ILocationConfig.d.ts │ ├── ILootConfig.d.ts │ ├── ILostOnDeathConfig.d.ts │ ├── IMatchConfig.d.ts │ ├── IPlayerScavConfig.d.ts │ ├── IPmChatResponse.d.ts │ ├── IPmcConfig.d.ts │ ├── IQuestConfig.d.ts │ ├── IRagfairConfig.d.ts │ ├── IRepairConfig.d.ts │ ├── IScavCaseConfig.d.ts │ ├── ISeasonalEventConfig.d.ts │ ├── ITraderConfig.d.ts │ └── IWeatherConfig.d.ts │ ├── controllers │ └── IBotController.d.ts │ ├── dialog │ └── ISendMessageDetails.d.ts │ ├── fence │ ├── ICreateFenceAssortsResult.d.ts │ └── IFenceAssortGenerationValues.d.ts │ ├── generators │ ├── IBotGenerator.d.ts │ ├── ILocationGenerator.d.ts │ ├── IPMCLootGenerator.d.ts │ ├── IRagfairAssortGenerator.d.ts │ └── IRagfairOfferGenerator.d.ts │ ├── hideout │ ├── ICircleCraftDetails.d.ts │ ├── IHideout.d.ts │ └── ScavCaseRewardCountsAndPrices.d.ts │ ├── inventory │ └── IOwnerInventoryItems.d.ts │ ├── location │ └── IRaidChanges.d.ts │ ├── logging │ ├── IClientLogRequest.d.ts │ ├── LogBackgroundColor.d.ts │ ├── LogLevel.d.ts │ ├── LogTextColor.d.ts │ └── SptLogger.d.ts │ ├── mod │ ├── IModLoader.d.ts │ ├── IPackageJsonData.d.ts │ └── NewItemDetails.d.ts │ ├── quests │ └── IGetRepeatableByIdResult.d.ts │ ├── ragfair │ ├── IRagfairServerPrices.d.ts │ └── ITplWithFleaPrice.d.ts │ ├── repeatable │ ├── IQuestRewardValues.d.ts │ └── IQuestTypePool.d.ts │ ├── server │ ├── ExhaustableArray.d.ts │ ├── IDatabaseTables.d.ts │ ├── ILocaleBase.d.ts │ ├── ILocations.d.ts │ ├── IServerBase.d.ts │ └── ISettingsBase.d.ts │ ├── services │ ├── IInsuranceEquipmentPkg.d.ts │ ├── ILootRequest.d.ts │ ├── ITraderServiceModel.d.ts │ └── LootItem.d.ts │ ├── templates │ └── ITemplates.d.ts │ ├── utils │ └── ILogger.d.ts │ └── weather │ └── IGetLocalWeatherResponseData.d.ts ├── routers ├── EventOutputHolder.d.ts ├── HttpRouter.d.ts ├── ImageRouter.d.ts ├── ItemEventRouter.d.ts ├── dynamic │ ├── BotDynamicRouter.d.ts │ ├── BundleDynamicRouter.d.ts │ ├── CustomizationDynamicRouter.d.ts │ ├── DataDynamicRouter.d.ts │ ├── HttpDynamicRouter.d.ts │ ├── InraidDynamicRouter.d.ts │ ├── LocationDynamicRouter.d.ts │ ├── NotifierDynamicRouter.d.ts │ └── TraderDynamicRouter.d.ts ├── item_events │ ├── CustomizationItemEventRouter.d.ts │ ├── HealthItemEventRouter.d.ts │ ├── HideoutItemEventRouter.d.ts │ ├── InsuranceItemEventRouter.d.ts │ ├── InventoryItemEventRouter.d.ts │ ├── NoteItemEventRouter.d.ts │ ├── QuestItemEventRouter.d.ts │ ├── RagfairItemEventRouter.d.ts │ ├── RepairItemEventRouter.d.ts │ ├── TradeItemEventRouter.d.ts │ └── WishlistItemEventRouter.d.ts ├── save_load │ ├── HealthSaveLoadRouter.d.ts │ ├── InraidSaveLoadRouter.d.ts │ ├── InsuranceSaveLoadRouter.d.ts │ └── ProfileSaveLoadRouter.d.ts ├── serializers │ ├── BundleSerializer.d.ts │ ├── ImageSerializer.d.ts │ └── NotifySerializer.d.ts └── static │ ├── AchievementStaticRouter.d.ts │ ├── BotStaticRouter.d.ts │ ├── BuildStaticRouter.d.ts │ ├── BundleStaticRouter.d.ts │ ├── ClientLogStaticRouter.d.ts │ ├── CustomizationStaticRouter.d.ts │ ├── DataStaticRouter.d.ts │ ├── DialogStaticRouter.d.ts │ ├── GameStaticRouter.d.ts │ ├── HealthStaticRouter.d.ts │ ├── InraidStaticRouter.d.ts │ ├── InsuranceStaticRouter.d.ts │ ├── ItemEventStaticRouter.d.ts │ ├── LauncherStaticRouter.d.ts │ ├── LocationStaticRouter.d.ts │ ├── MatchStaticRouter.d.ts │ ├── NotifierStaticRouter.d.ts │ ├── PrestigeStaticRouter.d.ts │ ├── ProfileStaticRouter.d.ts │ ├── QuestStaticRouter.d.ts │ ├── RagfairStaticRouter.d.ts │ ├── TraderStaticRouter.d.ts │ └── WeatherStaticRouter.d.ts ├── servers ├── ConfigServer.d.ts ├── DatabaseServer.d.ts ├── HttpServer.d.ts ├── RagfairServer.d.ts ├── SaveServer.d.ts ├── WebSocketServer.d.ts ├── http │ ├── HttpMethods.d.ts │ ├── IHttpListener.d.ts │ └── SptHttpListener.d.ts └── ws │ ├── IWebSocketConnectionHandler.d.ts │ ├── SPTWebsocket.d.ts │ ├── SptWebSocketConnectionHandler.d.ts │ └── message │ ├── DefaultSptWebSocketMessageHandler.d.ts │ └── ISptWebSocketMessageHandler.d.ts ├── services ├── AirdropService.d.ts ├── BackupService.d.ts ├── BotEquipmentFilterService.d.ts ├── BotEquipmentModPoolService.d.ts ├── BotGenerationCacheService.d.ts ├── BotLootCacheService.d.ts ├── BotNameService.d.ts ├── BotWeaponModLimitService.d.ts ├── CircleOfCultistService.d.ts ├── CreateProfileService.d.ts ├── CustomLocationWaveService.d.ts ├── DatabaseService.d.ts ├── FenceService.d.ts ├── GiftService.d.ts ├── InMemoryCacheService.d.ts ├── InsuranceService.d.ts ├── ItemBaseClassService.d.ts ├── ItemFilterService.d.ts ├── LegacyLocationLifecycleService.d.ts ├── LocaleService.d.ts ├── LocalisationService.d.ts ├── LocationLifecycleService.d.ts ├── MailSendService.d.ts ├── MapMarkerService.d.ts ├── MatchBotDetailsCacheService.d.ts ├── MatchLocationService.d.ts ├── ModCompilerService.d.ts ├── NotificationService.d.ts ├── OpenZoneService.d.ts ├── PaymentService.d.ts ├── PlayerService.d.ts ├── PmcChatResponseService.d.ts ├── PostDbLoadService.d.ts ├── ProfileActivityService.d.ts ├── ProfileFixerService.d.ts ├── RagfairCategoriesService.d.ts ├── RagfairLinkedItemService.d.ts ├── RagfairOfferService.d.ts ├── RagfairPriceService.d.ts ├── RagfairRequiredItemsService.d.ts ├── RagfairTaxService.d.ts ├── RaidTimeAdjustmentService.d.ts ├── RaidWeatherService.d.ts ├── RepairService.d.ts ├── SeasonalEventService.d.ts ├── TraderAssortService.d.ts ├── TraderPurchasePersisterService.d.ts ├── cache │ ├── BundleHashCacheService.d.ts │ └── ModHashCacheService.d.ts └── mod │ ├── CustomItemService.d.ts │ ├── dynamicRouter │ ├── DynamicRouterMod.d.ts │ └── DynamicRouterModService.d.ts │ ├── httpListener │ ├── HttpListenerMod.d.ts │ └── HttpListenerModService.d.ts │ ├── image │ └── imageRouteService.d.ts │ ├── onLoad │ ├── OnLoadMod.d.ts │ └── OnLoadModService.d.ts │ ├── onUpdate │ ├── OnUpdateMod.d.ts │ └── OnUpdateModService.d.ts │ └── staticRouter │ ├── StaticRouterMod.d.ts │ └── StaticRouterModService.d.ts ├── tools ├── ItemTplGenerator │ ├── ItemTplGenerator.d.ts │ ├── ItemTplGeneratorProgram.d.ts │ └── itemOverrides.d.ts └── ProductionQuestsGen │ ├── ProductionQuestsGen.d.ts │ └── ProductionQuestsGenProgram.d.ts └── utils ├── App.d.ts ├── CompareUtil.d.ts ├── DatabaseImporter.d.ts ├── EncodingUtil.d.ts ├── FileSystem.d.ts ├── FileSystemSync.d.ts ├── HashUtil.d.ts ├── HttpFileUtil.d.ts ├── HttpResponseUtil.d.ts ├── ImporterUtil.d.ts ├── JsonUtil.d.ts ├── MathUtil.d.ts ├── ObjectId.d.ts ├── ProgressWriter.d.ts ├── RagfairOfferHolder.d.ts ├── RandomUtil.d.ts ├── TimeUtil.d.ts ├── Timer.d.ts ├── Watermark.d.ts ├── cloners ├── ICloner.d.ts ├── JsonCloner.d.ts ├── RecursiveCloner.d.ts └── StructuredCloner.d.ts ├── collections └── lists │ ├── LinkedList.d.ts │ └── Nodes.d.ts └── logging ├── AbstractWinstonLogger.d.ts ├── WinstonMainLogger.d.ts └── WinstonRequestLogger.d.ts /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/README.md -------------------------------------------------------------------------------- /bepinex_dev/DrakiaXYZ-BigBrain.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/bepinex_dev/DrakiaXYZ-BigBrain.dll -------------------------------------------------------------------------------- /bepinex_dev/SPTQuestingBots-InteropTest/GameStartPatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/bepinex_dev/SPTQuestingBots-InteropTest/GameStartPatch.cs -------------------------------------------------------------------------------- /bepinex_dev/SPTQuestingBots-InteropTest/LoggingController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/bepinex_dev/SPTQuestingBots-InteropTest/LoggingController.cs -------------------------------------------------------------------------------- /bepinex_dev/SPTQuestingBots/BotLogic/LogicLayerMonitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/bepinex_dev/SPTQuestingBots/BotLogic/LogicLayerMonitor.cs -------------------------------------------------------------------------------- /bepinex_dev/SPTQuestingBots/BotLogic/Sleep/SleepingAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/bepinex_dev/SPTQuestingBots/BotLogic/Sleep/SleepingAction.cs -------------------------------------------------------------------------------- /bepinex_dev/SPTQuestingBots/BotLogic/Sleep/SleepingLayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/bepinex_dev/SPTQuestingBots/BotLogic/Sleep/SleepingLayer.cs -------------------------------------------------------------------------------- /bepinex_dev/SPTQuestingBots/Components/BotQuestBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/bepinex_dev/SPTQuestingBots/Components/BotQuestBuilder.cs -------------------------------------------------------------------------------- /bepinex_dev/SPTQuestingBots/Components/DebugData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/bepinex_dev/SPTQuestingBots/Components/DebugData.cs -------------------------------------------------------------------------------- /bepinex_dev/SPTQuestingBots/Components/LocationData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/bepinex_dev/SPTQuestingBots/Components/LocationData.cs -------------------------------------------------------------------------------- /bepinex_dev/SPTQuestingBots/Components/PathRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/bepinex_dev/SPTQuestingBots/Components/PathRenderer.cs -------------------------------------------------------------------------------- /bepinex_dev/SPTQuestingBots/Components/QuestPathFinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/bepinex_dev/SPTQuestingBots/Components/QuestPathFinder.cs -------------------------------------------------------------------------------- /bepinex_dev/SPTQuestingBots/Components/TarkovData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/bepinex_dev/SPTQuestingBots/Components/TarkovData.cs -------------------------------------------------------------------------------- /bepinex_dev/SPTQuestingBots/Configuration/BotQuestsConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/bepinex_dev/SPTQuestingBots/Configuration/BotQuestsConfig.cs -------------------------------------------------------------------------------- /bepinex_dev/SPTQuestingBots/Configuration/BotSpawnsConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/bepinex_dev/SPTQuestingBots/Configuration/BotSpawnsConfig.cs -------------------------------------------------------------------------------- /bepinex_dev/SPTQuestingBots/Configuration/BotTypeConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/bepinex_dev/SPTQuestingBots/Configuration/BotTypeConfig.cs -------------------------------------------------------------------------------- /bepinex_dev/SPTQuestingBots/Configuration/DebugConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/bepinex_dev/SPTQuestingBots/Configuration/DebugConfig.cs -------------------------------------------------------------------------------- /bepinex_dev/SPTQuestingBots/Configuration/LoggingPath.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/bepinex_dev/SPTQuestingBots/Configuration/LoggingPath.cs -------------------------------------------------------------------------------- /bepinex_dev/SPTQuestingBots/Configuration/MinMaxConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/bepinex_dev/SPTQuestingBots/Configuration/MinMaxConfig.cs -------------------------------------------------------------------------------- /bepinex_dev/SPTQuestingBots/Configuration/ModConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/bepinex_dev/SPTQuestingBots/Configuration/ModConfig.cs -------------------------------------------------------------------------------- /bepinex_dev/SPTQuestingBots/Configuration/QuestDataConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/bepinex_dev/SPTQuestingBots/Configuration/QuestDataConfig.cs -------------------------------------------------------------------------------- /bepinex_dev/SPTQuestingBots/Configuration/QuestingConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/bepinex_dev/SPTQuestingBots/Configuration/QuestingConfig.cs -------------------------------------------------------------------------------- /bepinex_dev/SPTQuestingBots/Controllers/ConfigController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/bepinex_dev/SPTQuestingBots/Controllers/ConfigController.cs -------------------------------------------------------------------------------- /bepinex_dev/SPTQuestingBots/Controllers/LoggingController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/bepinex_dev/SPTQuestingBots/Controllers/LoggingController.cs -------------------------------------------------------------------------------- /bepinex_dev/SPTQuestingBots/Helpers/BotBrainHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/bepinex_dev/SPTQuestingBots/Helpers/BotBrainHelpers.cs -------------------------------------------------------------------------------- /bepinex_dev/SPTQuestingBots/Helpers/BotGroupHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/bepinex_dev/SPTQuestingBots/Helpers/BotGroupHelpers.cs -------------------------------------------------------------------------------- /bepinex_dev/SPTQuestingBots/Helpers/BotPathingHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/bepinex_dev/SPTQuestingBots/Helpers/BotPathingHelpers.cs -------------------------------------------------------------------------------- /bepinex_dev/SPTQuestingBots/Helpers/DebugHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/bepinex_dev/SPTQuestingBots/Helpers/DebugHelpers.cs -------------------------------------------------------------------------------- /bepinex_dev/SPTQuestingBots/Helpers/ItemHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/bepinex_dev/SPTQuestingBots/Helpers/ItemHelpers.cs -------------------------------------------------------------------------------- /bepinex_dev/SPTQuestingBots/Helpers/NavMeshHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/bepinex_dev/SPTQuestingBots/Helpers/NavMeshHelpers.cs -------------------------------------------------------------------------------- /bepinex_dev/SPTQuestingBots/Helpers/QuestHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/bepinex_dev/SPTQuestingBots/Helpers/QuestHelpers.cs -------------------------------------------------------------------------------- /bepinex_dev/SPTQuestingBots/Helpers/RaidHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/bepinex_dev/SPTQuestingBots/Helpers/RaidHelpers.cs -------------------------------------------------------------------------------- /bepinex_dev/SPTQuestingBots/Helpers/TarkovTypeHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/bepinex_dev/SPTQuestingBots/Helpers/TarkovTypeHelpers.cs -------------------------------------------------------------------------------- /bepinex_dev/SPTQuestingBots/Models/BotBrainType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/bepinex_dev/SPTQuestingBots/Models/BotBrainType.cs -------------------------------------------------------------------------------- /bepinex_dev/SPTQuestingBots/Models/BotSpawnInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/bepinex_dev/SPTQuestingBots/Models/BotSpawnInfo.cs -------------------------------------------------------------------------------- /bepinex_dev/SPTQuestingBots/Models/BotSprintingController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/bepinex_dev/SPTQuestingBots/Models/BotSprintingController.cs -------------------------------------------------------------------------------- /bepinex_dev/SPTQuestingBots/Models/Debug/BotInfoGizmo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/bepinex_dev/SPTQuestingBots/Models/Debug/BotInfoGizmo.cs -------------------------------------------------------------------------------- /bepinex_dev/SPTQuestingBots/Models/Debug/DebugOverlay.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/bepinex_dev/SPTQuestingBots/Models/Debug/DebugOverlay.cs -------------------------------------------------------------------------------- /bepinex_dev/SPTQuestingBots/Models/EnumeratorCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/bepinex_dev/SPTQuestingBots/Models/EnumeratorCollection.cs -------------------------------------------------------------------------------- /bepinex_dev/SPTQuestingBots/Models/JSONObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/bepinex_dev/SPTQuestingBots/Models/JSONObject.cs -------------------------------------------------------------------------------- /bepinex_dev/SPTQuestingBots/Models/Pathing/BotPathData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/bepinex_dev/SPTQuestingBots/Models/Pathing/BotPathData.cs -------------------------------------------------------------------------------- /bepinex_dev/SPTQuestingBots/Models/Pathing/StaticPathData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/bepinex_dev/SPTQuestingBots/Models/Pathing/StaticPathData.cs -------------------------------------------------------------------------------- /bepinex_dev/SPTQuestingBots/Models/Questing/JobAssignment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/bepinex_dev/SPTQuestingBots/Models/Questing/JobAssignment.cs -------------------------------------------------------------------------------- /bepinex_dev/SPTQuestingBots/Models/Questing/Quest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/bepinex_dev/SPTQuestingBots/Models/Questing/Quest.cs -------------------------------------------------------------------------------- /bepinex_dev/SPTQuestingBots/Models/SerializableVector3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/bepinex_dev/SPTQuestingBots/Models/SerializableVector3.cs -------------------------------------------------------------------------------- /bepinex_dev/SPTQuestingBots/Patches/AirdropLandPatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/bepinex_dev/SPTQuestingBots/Patches/AirdropLandPatch.cs -------------------------------------------------------------------------------- /bepinex_dev/SPTQuestingBots/Patches/BotOwnerSprintPatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/bepinex_dev/SPTQuestingBots/Patches/BotOwnerSprintPatch.cs -------------------------------------------------------------------------------- /bepinex_dev/SPTQuestingBots/Patches/CheckLookEnemyPatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/bepinex_dev/SPTQuestingBots/Patches/CheckLookEnemyPatch.cs -------------------------------------------------------------------------------- /bepinex_dev/SPTQuestingBots/Patches/MenuShowPatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/bepinex_dev/SPTQuestingBots/Patches/MenuShowPatch.cs -------------------------------------------------------------------------------- /bepinex_dev/SPTQuestingBots/Patches/PScavProfilePatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/bepinex_dev/SPTQuestingBots/Patches/PScavProfilePatch.cs -------------------------------------------------------------------------------- /bepinex_dev/SPTQuestingBots/Patches/ReturnToPoolPatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/bepinex_dev/SPTQuestingBots/Patches/ReturnToPoolPatch.cs -------------------------------------------------------------------------------- /bepinex_dev/SPTQuestingBots/Patches/ServerRequestPatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/bepinex_dev/SPTQuestingBots/Patches/ServerRequestPatch.cs -------------------------------------------------------------------------------- /bepinex_dev/SPTQuestingBots/Patches/TarkovInitPatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/bepinex_dev/SPTQuestingBots/Patches/TarkovInitPatch.cs -------------------------------------------------------------------------------- /bepinex_dev/SPTQuestingBots/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/bepinex_dev/SPTQuestingBots/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /bepinex_dev/SPTQuestingBots/QuestingBotsExternal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/bepinex_dev/SPTQuestingBots/QuestingBotsExternal.cs -------------------------------------------------------------------------------- /bepinex_dev/SPTQuestingBots/QuestingBotsInterop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/bepinex_dev/SPTQuestingBots/QuestingBotsInterop.cs -------------------------------------------------------------------------------- /bepinex_dev/SPTQuestingBots/QuestingBotsPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/bepinex_dev/SPTQuestingBots/QuestingBotsPlugin.cs -------------------------------------------------------------------------------- /bepinex_dev/SPTQuestingBots/QuestingBotsPluginConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/bepinex_dev/SPTQuestingBots/QuestingBotsPluginConfig.cs -------------------------------------------------------------------------------- /bepinex_dev/SPTQuestingBots/SPTQuestingBots.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/bepinex_dev/SPTQuestingBots/SPTQuestingBots.csproj -------------------------------------------------------------------------------- /bepinex_dev/SPTQuestingBots/SPTQuestingBots.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/bepinex_dev/SPTQuestingBots/SPTQuestingBots.sln -------------------------------------------------------------------------------- /config/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/config/config.json -------------------------------------------------------------------------------- /config/eftQuestSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/config/eftQuestSettings.json -------------------------------------------------------------------------------- /config/zoneAndItemQuestPositions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/config/zoneAndItemQuestPositions.json -------------------------------------------------------------------------------- /dist/DanW-SPTQuestingBots.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/dist/DanW-SPTQuestingBots.zip -------------------------------------------------------------------------------- /dist/user/mods/DanW-SPTQuestingBots/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/dist/user/mods/DanW-SPTQuestingBots/README.md -------------------------------------------------------------------------------- /dist/user/mods/DanW-SPTQuestingBots/config/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/dist/user/mods/DanW-SPTQuestingBots/config/config.json -------------------------------------------------------------------------------- /dist/user/mods/DanW-SPTQuestingBots/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/dist/user/mods/DanW-SPTQuestingBots/package.json -------------------------------------------------------------------------------- /dist/user/mods/DanW-SPTQuestingBots/src/BotLocationUtil.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/dist/user/mods/DanW-SPTQuestingBots/src/BotLocationUtil.ts -------------------------------------------------------------------------------- /dist/user/mods/DanW-SPTQuestingBots/src/CommonUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/dist/user/mods/DanW-SPTQuestingBots/src/CommonUtils.ts -------------------------------------------------------------------------------- /dist/user/mods/DanW-SPTQuestingBots/src/PMCConversionUtil.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/dist/user/mods/DanW-SPTQuestingBots/src/PMCConversionUtil.ts -------------------------------------------------------------------------------- /dist/user/mods/DanW-SPTQuestingBots/src/mod.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/dist/user/mods/DanW-SPTQuestingBots/src/mod.ts -------------------------------------------------------------------------------- /mod.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/mod.code-workspace -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/package.json -------------------------------------------------------------------------------- /packageBuild.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/packageBuild.ts -------------------------------------------------------------------------------- /quests/standard/bigmap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/quests/standard/bigmap.json -------------------------------------------------------------------------------- /quests/standard/factory4_day.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/quests/standard/factory4_day.json -------------------------------------------------------------------------------- /quests/standard/factory4_night.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/quests/standard/factory4_night.json -------------------------------------------------------------------------------- /quests/standard/interchange.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/quests/standard/interchange.json -------------------------------------------------------------------------------- /quests/standard/laboratory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/quests/standard/laboratory.json -------------------------------------------------------------------------------- /quests/standard/lighthouse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/quests/standard/lighthouse.json -------------------------------------------------------------------------------- /quests/standard/rezervbase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/quests/standard/rezervbase.json -------------------------------------------------------------------------------- /quests/standard/sandbox.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/quests/standard/sandbox.json -------------------------------------------------------------------------------- /quests/standard/sandbox_high.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/quests/standard/sandbox_high.json -------------------------------------------------------------------------------- /quests/standard/shoreline.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/quests/standard/shoreline.json -------------------------------------------------------------------------------- /quests/standard/tarkovstreets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/quests/standard/tarkovstreets.json -------------------------------------------------------------------------------- /quests/standard/woods.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/quests/standard/woods.json -------------------------------------------------------------------------------- /src/BotLocationUtil.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/src/BotLocationUtil.ts -------------------------------------------------------------------------------- /src/CommonUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/src/CommonUtils.ts -------------------------------------------------------------------------------- /src/PMCConversionUtil.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/src/PMCConversionUtil.ts -------------------------------------------------------------------------------- /src/mod.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/src/mod.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/tsconfig.json -------------------------------------------------------------------------------- /types/ErrorHandler.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/ErrorHandler.d.ts -------------------------------------------------------------------------------- /types/Program.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/Program.d.ts -------------------------------------------------------------------------------- /types/ProgramStatics.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/ProgramStatics.d.ts -------------------------------------------------------------------------------- /types/callbacks/AchievementCallbacks.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/callbacks/AchievementCallbacks.d.ts -------------------------------------------------------------------------------- /types/callbacks/BotCallbacks.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/callbacks/BotCallbacks.d.ts -------------------------------------------------------------------------------- /types/callbacks/BuildsCallbacks.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/callbacks/BuildsCallbacks.d.ts -------------------------------------------------------------------------------- /types/callbacks/BundleCallbacks.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/callbacks/BundleCallbacks.d.ts -------------------------------------------------------------------------------- /types/callbacks/ClientLogCallbacks.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/callbacks/ClientLogCallbacks.d.ts -------------------------------------------------------------------------------- /types/callbacks/CustomizationCallbacks.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/callbacks/CustomizationCallbacks.d.ts -------------------------------------------------------------------------------- /types/callbacks/DataCallbacks.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/callbacks/DataCallbacks.d.ts -------------------------------------------------------------------------------- /types/callbacks/DialogueCallbacks.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/callbacks/DialogueCallbacks.d.ts -------------------------------------------------------------------------------- /types/callbacks/GameCallbacks.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/callbacks/GameCallbacks.d.ts -------------------------------------------------------------------------------- /types/callbacks/HandbookCallbacks.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/callbacks/HandbookCallbacks.d.ts -------------------------------------------------------------------------------- /types/callbacks/HealthCallbacks.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/callbacks/HealthCallbacks.d.ts -------------------------------------------------------------------------------- /types/callbacks/HideoutCallbacks.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/callbacks/HideoutCallbacks.d.ts -------------------------------------------------------------------------------- /types/callbacks/HttpCallbacks.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/callbacks/HttpCallbacks.d.ts -------------------------------------------------------------------------------- /types/callbacks/InraidCallbacks.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/callbacks/InraidCallbacks.d.ts -------------------------------------------------------------------------------- /types/callbacks/InsuranceCallbacks.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/callbacks/InsuranceCallbacks.d.ts -------------------------------------------------------------------------------- /types/callbacks/InventoryCallbacks.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/callbacks/InventoryCallbacks.d.ts -------------------------------------------------------------------------------- /types/callbacks/ItemEventCallbacks.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/callbacks/ItemEventCallbacks.d.ts -------------------------------------------------------------------------------- /types/callbacks/LauncherCallbacks.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/callbacks/LauncherCallbacks.d.ts -------------------------------------------------------------------------------- /types/callbacks/LocationCallbacks.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/callbacks/LocationCallbacks.d.ts -------------------------------------------------------------------------------- /types/callbacks/MatchCallbacks.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/callbacks/MatchCallbacks.d.ts -------------------------------------------------------------------------------- /types/callbacks/ModCallbacks.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/callbacks/ModCallbacks.d.ts -------------------------------------------------------------------------------- /types/callbacks/NoteCallbacks.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/callbacks/NoteCallbacks.d.ts -------------------------------------------------------------------------------- /types/callbacks/NotifierCallbacks.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/callbacks/NotifierCallbacks.d.ts -------------------------------------------------------------------------------- /types/callbacks/PresetCallbacks.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/callbacks/PresetCallbacks.d.ts -------------------------------------------------------------------------------- /types/callbacks/PrestigeCallbacks.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/callbacks/PrestigeCallbacks.d.ts -------------------------------------------------------------------------------- /types/callbacks/ProfileCallbacks.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/callbacks/ProfileCallbacks.d.ts -------------------------------------------------------------------------------- /types/callbacks/QuestCallbacks.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/callbacks/QuestCallbacks.d.ts -------------------------------------------------------------------------------- /types/callbacks/RagfairCallbacks.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/callbacks/RagfairCallbacks.d.ts -------------------------------------------------------------------------------- /types/callbacks/RepairCallbacks.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/callbacks/RepairCallbacks.d.ts -------------------------------------------------------------------------------- /types/callbacks/SaveCallbacks.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/callbacks/SaveCallbacks.d.ts -------------------------------------------------------------------------------- /types/callbacks/TradeCallbacks.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/callbacks/TradeCallbacks.d.ts -------------------------------------------------------------------------------- /types/callbacks/TraderCallbacks.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/callbacks/TraderCallbacks.d.ts -------------------------------------------------------------------------------- /types/callbacks/WeatherCallbacks.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/callbacks/WeatherCallbacks.d.ts -------------------------------------------------------------------------------- /types/callbacks/WishlistCallbacks.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/callbacks/WishlistCallbacks.d.ts -------------------------------------------------------------------------------- /types/context/ApplicationContext.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/context/ApplicationContext.d.ts -------------------------------------------------------------------------------- /types/context/ContextVariable.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/context/ContextVariable.d.ts -------------------------------------------------------------------------------- /types/context/ContextVariableType.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/context/ContextVariableType.d.ts -------------------------------------------------------------------------------- /types/controllers/AchievementController.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/controllers/AchievementController.d.ts -------------------------------------------------------------------------------- /types/controllers/BotController.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/controllers/BotController.d.ts -------------------------------------------------------------------------------- /types/controllers/BuildController.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/controllers/BuildController.d.ts -------------------------------------------------------------------------------- /types/controllers/ClientLogController.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/controllers/ClientLogController.d.ts -------------------------------------------------------------------------------- /types/controllers/CustomizationController.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/controllers/CustomizationController.d.ts -------------------------------------------------------------------------------- /types/controllers/DialogueController.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/controllers/DialogueController.d.ts -------------------------------------------------------------------------------- /types/controllers/GameController.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/controllers/GameController.d.ts -------------------------------------------------------------------------------- /types/controllers/HandbookController.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/controllers/HandbookController.d.ts -------------------------------------------------------------------------------- /types/controllers/HealthController.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/controllers/HealthController.d.ts -------------------------------------------------------------------------------- /types/controllers/HideoutController.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/controllers/HideoutController.d.ts -------------------------------------------------------------------------------- /types/controllers/InraidController.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/controllers/InraidController.d.ts -------------------------------------------------------------------------------- /types/controllers/InsuranceController.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/controllers/InsuranceController.d.ts -------------------------------------------------------------------------------- /types/controllers/InventoryController.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/controllers/InventoryController.d.ts -------------------------------------------------------------------------------- /types/controllers/LauncherController.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/controllers/LauncherController.d.ts -------------------------------------------------------------------------------- /types/controllers/LocationController.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/controllers/LocationController.d.ts -------------------------------------------------------------------------------- /types/controllers/MatchController.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/controllers/MatchController.d.ts -------------------------------------------------------------------------------- /types/controllers/NoteController.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/controllers/NoteController.d.ts -------------------------------------------------------------------------------- /types/controllers/NotifierController.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/controllers/NotifierController.d.ts -------------------------------------------------------------------------------- /types/controllers/PresetController.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/controllers/PresetController.d.ts -------------------------------------------------------------------------------- /types/controllers/PrestigeController.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/controllers/PrestigeController.d.ts -------------------------------------------------------------------------------- /types/controllers/ProfileController.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/controllers/ProfileController.d.ts -------------------------------------------------------------------------------- /types/controllers/QuestController.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/controllers/QuestController.d.ts -------------------------------------------------------------------------------- /types/controllers/RagfairController.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/controllers/RagfairController.d.ts -------------------------------------------------------------------------------- /types/controllers/RepairController.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/controllers/RepairController.d.ts -------------------------------------------------------------------------------- /types/controllers/RepeatableQuestController.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/controllers/RepeatableQuestController.d.ts -------------------------------------------------------------------------------- /types/controllers/TradeController.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/controllers/TradeController.d.ts -------------------------------------------------------------------------------- /types/controllers/TraderController.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/controllers/TraderController.d.ts -------------------------------------------------------------------------------- /types/controllers/WeatherController.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/controllers/WeatherController.d.ts -------------------------------------------------------------------------------- /types/controllers/WishlistController.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/controllers/WishlistController.d.ts -------------------------------------------------------------------------------- /types/di/Container.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/di/Container.d.ts -------------------------------------------------------------------------------- /types/di/OnLoad.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/di/OnLoad.d.ts -------------------------------------------------------------------------------- /types/di/OnUpdate.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/di/OnUpdate.d.ts -------------------------------------------------------------------------------- /types/di/Router.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/di/Router.d.ts -------------------------------------------------------------------------------- /types/di/Serializer.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/di/Serializer.d.ts -------------------------------------------------------------------------------- /types/entry/run.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/entry/run.d.ts -------------------------------------------------------------------------------- /types/generators/BotEquipmentModGenerator.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/generators/BotEquipmentModGenerator.d.ts -------------------------------------------------------------------------------- /types/generators/BotGenerator.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/generators/BotGenerator.d.ts -------------------------------------------------------------------------------- /types/generators/BotInventoryGenerator.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/generators/BotInventoryGenerator.d.ts -------------------------------------------------------------------------------- /types/generators/BotLevelGenerator.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/generators/BotLevelGenerator.d.ts -------------------------------------------------------------------------------- /types/generators/BotLootGenerator.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/generators/BotLootGenerator.d.ts -------------------------------------------------------------------------------- /types/generators/BotWeaponGenerator.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/generators/BotWeaponGenerator.d.ts -------------------------------------------------------------------------------- /types/generators/FenceBaseAssortGenerator.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/generators/FenceBaseAssortGenerator.d.ts -------------------------------------------------------------------------------- /types/generators/LocationLootGenerator.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/generators/LocationLootGenerator.d.ts -------------------------------------------------------------------------------- /types/generators/LootGenerator.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/generators/LootGenerator.d.ts -------------------------------------------------------------------------------- /types/generators/PMCLootGenerator.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/generators/PMCLootGenerator.d.ts -------------------------------------------------------------------------------- /types/generators/PlayerScavGenerator.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/generators/PlayerScavGenerator.d.ts -------------------------------------------------------------------------------- /types/generators/PmcWaveGenerator.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/generators/PmcWaveGenerator.d.ts -------------------------------------------------------------------------------- /types/generators/RagfairAssortGenerator.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/generators/RagfairAssortGenerator.d.ts -------------------------------------------------------------------------------- /types/generators/RagfairOfferGenerator.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/generators/RagfairOfferGenerator.d.ts -------------------------------------------------------------------------------- /types/generators/RepeatableQuestGenerator.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/generators/RepeatableQuestGenerator.d.ts -------------------------------------------------------------------------------- /types/generators/RepeatableQuestRewardGenerator.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/generators/RepeatableQuestRewardGenerator.d.ts -------------------------------------------------------------------------------- /types/generators/ScavCaseRewardGenerator.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/generators/ScavCaseRewardGenerator.d.ts -------------------------------------------------------------------------------- /types/generators/WeatherGenerator.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/generators/WeatherGenerator.d.ts -------------------------------------------------------------------------------- /types/generators/weapongen/IInventoryMagGen.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/generators/weapongen/IInventoryMagGen.d.ts -------------------------------------------------------------------------------- /types/generators/weapongen/InventoryMagGen.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/generators/weapongen/InventoryMagGen.d.ts -------------------------------------------------------------------------------- /types/helpers/AssortHelper.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/helpers/AssortHelper.d.ts -------------------------------------------------------------------------------- /types/helpers/BotDifficultyHelper.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/helpers/BotDifficultyHelper.d.ts -------------------------------------------------------------------------------- /types/helpers/BotGeneratorHelper.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/helpers/BotGeneratorHelper.d.ts -------------------------------------------------------------------------------- /types/helpers/BotHelper.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/helpers/BotHelper.d.ts -------------------------------------------------------------------------------- /types/helpers/BotWeaponGeneratorHelper.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/helpers/BotWeaponGeneratorHelper.d.ts -------------------------------------------------------------------------------- /types/helpers/ContainerHelper.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/helpers/ContainerHelper.d.ts -------------------------------------------------------------------------------- /types/helpers/Dialogue/AbstractDialogueChatBot.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/helpers/Dialogue/AbstractDialogueChatBot.d.ts -------------------------------------------------------------------------------- /types/helpers/Dialogue/Commando/IChatCommand.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/helpers/Dialogue/Commando/IChatCommand.d.ts -------------------------------------------------------------------------------- /types/helpers/Dialogue/Commando/SptCommandoCommands.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/helpers/Dialogue/Commando/SptCommandoCommands.d.ts -------------------------------------------------------------------------------- /types/helpers/Dialogue/Commando/SptCommands/ISptCommand.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/helpers/Dialogue/Commando/SptCommands/ISptCommand.d.ts -------------------------------------------------------------------------------- /types/helpers/Dialogue/CommandoDialogueChatBot.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/helpers/Dialogue/CommandoDialogueChatBot.d.ts -------------------------------------------------------------------------------- /types/helpers/Dialogue/IDialogueChatBot.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/helpers/Dialogue/IDialogueChatBot.d.ts -------------------------------------------------------------------------------- /types/helpers/Dialogue/SptDialogueChatBot.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/helpers/Dialogue/SptDialogueChatBot.d.ts -------------------------------------------------------------------------------- /types/helpers/DialogueHelper.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/helpers/DialogueHelper.d.ts -------------------------------------------------------------------------------- /types/helpers/DurabilityLimitsHelper.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/helpers/DurabilityLimitsHelper.d.ts -------------------------------------------------------------------------------- /types/helpers/GameEventHelper.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/helpers/GameEventHelper.d.ts -------------------------------------------------------------------------------- /types/helpers/HandbookHelper.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/helpers/HandbookHelper.d.ts -------------------------------------------------------------------------------- /types/helpers/HealthHelper.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/helpers/HealthHelper.d.ts -------------------------------------------------------------------------------- /types/helpers/HideoutHelper.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/helpers/HideoutHelper.d.ts -------------------------------------------------------------------------------- /types/helpers/HttpServerHelper.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/helpers/HttpServerHelper.d.ts -------------------------------------------------------------------------------- /types/helpers/InRaidHelper.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/helpers/InRaidHelper.d.ts -------------------------------------------------------------------------------- /types/helpers/InventoryHelper.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/helpers/InventoryHelper.d.ts -------------------------------------------------------------------------------- /types/helpers/ItemHelper.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/helpers/ItemHelper.d.ts -------------------------------------------------------------------------------- /types/helpers/NotificationSendHelper.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/helpers/NotificationSendHelper.d.ts -------------------------------------------------------------------------------- /types/helpers/NotifierHelper.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/helpers/NotifierHelper.d.ts -------------------------------------------------------------------------------- /types/helpers/PaymentHelper.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/helpers/PaymentHelper.d.ts -------------------------------------------------------------------------------- /types/helpers/PresetHelper.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/helpers/PresetHelper.d.ts -------------------------------------------------------------------------------- /types/helpers/PrestigeHelper.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/helpers/PrestigeHelper.d.ts -------------------------------------------------------------------------------- /types/helpers/ProbabilityHelper.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/helpers/ProbabilityHelper.d.ts -------------------------------------------------------------------------------- /types/helpers/ProfileHelper.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/helpers/ProfileHelper.d.ts -------------------------------------------------------------------------------- /types/helpers/QuestConditionHelper.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/helpers/QuestConditionHelper.d.ts -------------------------------------------------------------------------------- /types/helpers/QuestHelper.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/helpers/QuestHelper.d.ts -------------------------------------------------------------------------------- /types/helpers/QuestRewardHelper.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/helpers/QuestRewardHelper.d.ts -------------------------------------------------------------------------------- /types/helpers/RagfairHelper.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/helpers/RagfairHelper.d.ts -------------------------------------------------------------------------------- /types/helpers/RagfairOfferHelper.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/helpers/RagfairOfferHelper.d.ts -------------------------------------------------------------------------------- /types/helpers/RagfairSellHelper.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/helpers/RagfairSellHelper.d.ts -------------------------------------------------------------------------------- /types/helpers/RagfairServerHelper.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/helpers/RagfairServerHelper.d.ts -------------------------------------------------------------------------------- /types/helpers/RagfairSortHelper.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/helpers/RagfairSortHelper.d.ts -------------------------------------------------------------------------------- /types/helpers/RepairHelper.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/helpers/RepairHelper.d.ts -------------------------------------------------------------------------------- /types/helpers/RepeatableQuestHelper.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/helpers/RepeatableQuestHelper.d.ts -------------------------------------------------------------------------------- /types/helpers/RewardHelper.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/helpers/RewardHelper.d.ts -------------------------------------------------------------------------------- /types/helpers/SecureContainerHelper.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/helpers/SecureContainerHelper.d.ts -------------------------------------------------------------------------------- /types/helpers/TradeHelper.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/helpers/TradeHelper.d.ts -------------------------------------------------------------------------------- /types/helpers/TraderAssortHelper.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/helpers/TraderAssortHelper.d.ts -------------------------------------------------------------------------------- /types/helpers/TraderHelper.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/helpers/TraderHelper.d.ts -------------------------------------------------------------------------------- /types/helpers/UtilityHelper.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/helpers/UtilityHelper.d.ts -------------------------------------------------------------------------------- /types/helpers/WeatherHelper.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/helpers/WeatherHelper.d.ts -------------------------------------------------------------------------------- /types/helpers/WeightedRandomHelper.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/helpers/WeightedRandomHelper.d.ts -------------------------------------------------------------------------------- /types/loaders/BundleLoader.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/loaders/BundleLoader.d.ts -------------------------------------------------------------------------------- /types/loaders/ModLoadOrder.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/loaders/ModLoadOrder.d.ts -------------------------------------------------------------------------------- /types/loaders/ModTypeCheck.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/loaders/ModTypeCheck.d.ts -------------------------------------------------------------------------------- /types/loaders/PostDBModLoader.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/loaders/PostDBModLoader.d.ts -------------------------------------------------------------------------------- /types/loaders/PostSptModLoader.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/loaders/PostSptModLoader.d.ts -------------------------------------------------------------------------------- /types/loaders/PreSptModLoader.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/loaders/PreSptModLoader.d.ts -------------------------------------------------------------------------------- /types/models/common/MinMax.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/common/MinMax.d.ts -------------------------------------------------------------------------------- /types/models/eft/bot/IGenerateBotsRequestData.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/eft/bot/IGenerateBotsRequestData.d.ts -------------------------------------------------------------------------------- /types/models/eft/bot/IRandomisedBotLevelResult.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/eft/bot/IRandomisedBotLevelResult.d.ts -------------------------------------------------------------------------------- /types/models/eft/builds/ISetMagazineRequest.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/eft/builds/ISetMagazineRequest.d.ts -------------------------------------------------------------------------------- /types/models/eft/common/IEmptyRequestData.d.ts: -------------------------------------------------------------------------------- 1 | export type IEmptyRequestData = {}; 2 | -------------------------------------------------------------------------------- /types/models/eft/common/IGlobals.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/eft/common/IGlobals.d.ts -------------------------------------------------------------------------------- /types/models/eft/common/ILocation.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/eft/common/ILocation.d.ts -------------------------------------------------------------------------------- /types/models/eft/common/ILocationBase.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/eft/common/ILocationBase.d.ts -------------------------------------------------------------------------------- /types/models/eft/common/ILocationsSourceDestinationBase.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/eft/common/ILocationsSourceDestinationBase.d.ts -------------------------------------------------------------------------------- /types/models/eft/common/ILooseLoot.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/eft/common/ILooseLoot.d.ts -------------------------------------------------------------------------------- /types/models/eft/common/IMetricsTableData.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/eft/common/IMetricsTableData.d.ts -------------------------------------------------------------------------------- /types/models/eft/common/IPmcData.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/eft/common/IPmcData.d.ts -------------------------------------------------------------------------------- /types/models/eft/common/Ixyz.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/eft/common/Ixyz.d.ts -------------------------------------------------------------------------------- /types/models/eft/common/request/IUIDRequestData.d.ts: -------------------------------------------------------------------------------- 1 | export interface IUIDRequestData { 2 | uid: string; 3 | } 4 | -------------------------------------------------------------------------------- /types/models/eft/common/tables/IAchievement.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/eft/common/tables/IAchievement.d.ts -------------------------------------------------------------------------------- /types/models/eft/common/tables/IBotBase.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/eft/common/tables/IBotBase.d.ts -------------------------------------------------------------------------------- /types/models/eft/common/tables/IBotCore.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/eft/common/tables/IBotCore.d.ts -------------------------------------------------------------------------------- /types/models/eft/common/tables/IBotType.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/eft/common/tables/IBotType.d.ts -------------------------------------------------------------------------------- /types/models/eft/common/tables/ICustomisationStorage.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/eft/common/tables/ICustomisationStorage.d.ts -------------------------------------------------------------------------------- /types/models/eft/common/tables/ICustomizationItem.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/eft/common/tables/ICustomizationItem.d.ts -------------------------------------------------------------------------------- /types/models/eft/common/tables/IHandbookBase.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/eft/common/tables/IHandbookBase.d.ts -------------------------------------------------------------------------------- /types/models/eft/common/tables/IItem.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/eft/common/tables/IItem.d.ts -------------------------------------------------------------------------------- /types/models/eft/common/tables/ILocationServices.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/eft/common/tables/ILocationServices.d.ts -------------------------------------------------------------------------------- /types/models/eft/common/tables/ILocationsBase.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/eft/common/tables/ILocationsBase.d.ts -------------------------------------------------------------------------------- /types/models/eft/common/tables/IMatch.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/eft/common/tables/IMatch.d.ts -------------------------------------------------------------------------------- /types/models/eft/common/tables/IPrestige.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/eft/common/tables/IPrestige.d.ts -------------------------------------------------------------------------------- /types/models/eft/common/tables/IProfileTemplate.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/eft/common/tables/IProfileTemplate.d.ts -------------------------------------------------------------------------------- /types/models/eft/common/tables/IQuest.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/eft/common/tables/IQuest.d.ts -------------------------------------------------------------------------------- /types/models/eft/common/tables/IRepeatableQuests.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/eft/common/tables/IRepeatableQuests.d.ts -------------------------------------------------------------------------------- /types/models/eft/common/tables/IReward.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/eft/common/tables/IReward.d.ts -------------------------------------------------------------------------------- /types/models/eft/common/tables/ITemplateItem.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/eft/common/tables/ITemplateItem.d.ts -------------------------------------------------------------------------------- /types/models/eft/common/tables/ITrader.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/eft/common/tables/ITrader.d.ts -------------------------------------------------------------------------------- /types/models/eft/customization/IBuyClothingRequestData.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/eft/customization/IBuyClothingRequestData.d.ts -------------------------------------------------------------------------------- /types/models/eft/customization/ICustomizationSetRequest.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/eft/customization/ICustomizationSetRequest.d.ts -------------------------------------------------------------------------------- /types/models/eft/customization/IWearClothingRequestData.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/eft/customization/IWearClothingRequestData.d.ts -------------------------------------------------------------------------------- /types/models/eft/dialog/IAcceptFriendRequestData.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/eft/dialog/IAcceptFriendRequestData.d.ts -------------------------------------------------------------------------------- /types/models/eft/dialog/IAddUserGroupMailRequest.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/eft/dialog/IAddUserGroupMailRequest.d.ts -------------------------------------------------------------------------------- /types/models/eft/dialog/IChangeGroupMailOwnerRequest.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/eft/dialog/IChangeGroupMailOwnerRequest.d.ts -------------------------------------------------------------------------------- /types/models/eft/dialog/IChatServer.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/eft/dialog/IChatServer.d.ts -------------------------------------------------------------------------------- /types/models/eft/dialog/IClearMailMessageRequest.d.ts: -------------------------------------------------------------------------------- 1 | export interface IClearMailMessageRequest { 2 | dialogId: string; 3 | } 4 | -------------------------------------------------------------------------------- /types/models/eft/dialog/ICreateGroupMailRequest.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/eft/dialog/ICreateGroupMailRequest.d.ts -------------------------------------------------------------------------------- /types/models/eft/dialog/IDeleteFriendRequest.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/eft/dialog/IDeleteFriendRequest.d.ts -------------------------------------------------------------------------------- /types/models/eft/dialog/IFriendRequestData.d.ts: -------------------------------------------------------------------------------- 1 | export interface IFriendRequestData { 2 | to: string; 3 | } 4 | -------------------------------------------------------------------------------- /types/models/eft/dialog/IFriendRequestSendResponse.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/eft/dialog/IFriendRequestSendResponse.d.ts -------------------------------------------------------------------------------- /types/models/eft/dialog/IGetAllAttachmentsRequestData.d.ts: -------------------------------------------------------------------------------- 1 | export interface IGetAllAttachmentsRequestData { 2 | dialogId: string; 3 | } 4 | -------------------------------------------------------------------------------- /types/models/eft/dialog/IGetAllAttachmentsResponse.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/eft/dialog/IGetAllAttachmentsResponse.d.ts -------------------------------------------------------------------------------- /types/models/eft/dialog/IGetChatServerListRequestData.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/eft/dialog/IGetChatServerListRequestData.d.ts -------------------------------------------------------------------------------- /types/models/eft/dialog/IGetFriendListDataResponse.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/eft/dialog/IGetFriendListDataResponse.d.ts -------------------------------------------------------------------------------- /types/models/eft/dialog/IGetMailDialogInfoRequestData.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/eft/dialog/IGetMailDialogInfoRequestData.d.ts -------------------------------------------------------------------------------- /types/models/eft/dialog/IGetMailDialogListRequestData.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/eft/dialog/IGetMailDialogListRequestData.d.ts -------------------------------------------------------------------------------- /types/models/eft/dialog/IGetMailDialogViewRequestData.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/eft/dialog/IGetMailDialogViewRequestData.d.ts -------------------------------------------------------------------------------- /types/models/eft/dialog/IGetMailDialogViewResponseData.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/eft/dialog/IGetMailDialogViewResponseData.d.ts -------------------------------------------------------------------------------- /types/models/eft/dialog/IPinDialogRequestData.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/eft/dialog/IPinDialogRequestData.d.ts -------------------------------------------------------------------------------- /types/models/eft/dialog/IRemoveDialogRequestData.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/eft/dialog/IRemoveDialogRequestData.d.ts -------------------------------------------------------------------------------- /types/models/eft/dialog/IRemoveMailMessageRequest.d.ts: -------------------------------------------------------------------------------- 1 | export interface IRemoveMailMessageRequest { 2 | dialogId: string; 3 | } 4 | -------------------------------------------------------------------------------- /types/models/eft/dialog/IRemoveUserGroupMailRequest.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/eft/dialog/IRemoveUserGroupMailRequest.d.ts -------------------------------------------------------------------------------- /types/models/eft/dialog/ISendMessageRequest.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/eft/dialog/ISendMessageRequest.d.ts -------------------------------------------------------------------------------- /types/models/eft/dialog/ISetDialogReadRequestData.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/eft/dialog/ISetDialogReadRequestData.d.ts -------------------------------------------------------------------------------- /types/models/eft/game/ICheckVersionResponse.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/eft/game/ICheckVersionResponse.d.ts -------------------------------------------------------------------------------- /types/models/eft/game/ICurrentGroupResponse.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/eft/game/ICurrentGroupResponse.d.ts -------------------------------------------------------------------------------- /types/models/eft/game/IGameConfigResponse.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/eft/game/IGameConfigResponse.d.ts -------------------------------------------------------------------------------- /types/models/eft/game/IGameEmptyCrcRequestData.d.ts: -------------------------------------------------------------------------------- 1 | export interface IGameEmptyCrcRequestData { 2 | crc: number; 3 | } 4 | -------------------------------------------------------------------------------- /types/models/eft/game/IGameKeepAliveResponse.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/eft/game/IGameKeepAliveResponse.d.ts -------------------------------------------------------------------------------- /types/models/eft/game/IGameLogoutResponseData.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/eft/game/IGameLogoutResponseData.d.ts -------------------------------------------------------------------------------- /types/models/eft/game/IGameModeRequestData.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/eft/game/IGameModeRequestData.d.ts -------------------------------------------------------------------------------- /types/models/eft/game/IGameModeResponse.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/eft/game/IGameModeResponse.d.ts -------------------------------------------------------------------------------- /types/models/eft/game/IGameStartResponse.d.ts: -------------------------------------------------------------------------------- 1 | export interface IGameStartResponse { 2 | utc_time: number; 3 | } 4 | -------------------------------------------------------------------------------- /types/models/eft/game/IGetItemPricesResponse.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/eft/game/IGetItemPricesResponse.d.ts -------------------------------------------------------------------------------- /types/models/eft/game/IGetRaidTimeRequest.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/eft/game/IGetRaidTimeRequest.d.ts -------------------------------------------------------------------------------- /types/models/eft/game/IGetRaidTimeResponse.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/eft/game/IGetRaidTimeResponse.d.ts -------------------------------------------------------------------------------- /types/models/eft/game/ISendReportRequest.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/eft/game/ISendReportRequest.d.ts -------------------------------------------------------------------------------- /types/models/eft/game/ISendSurveyOpinionRequest.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/eft/game/ISendSurveyOpinionRequest.d.ts -------------------------------------------------------------------------------- /types/models/eft/game/IServerDetails.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/eft/game/IServerDetails.d.ts -------------------------------------------------------------------------------- /types/models/eft/game/ISurveyResponseData.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/eft/game/ISurveyResponseData.d.ts -------------------------------------------------------------------------------- /types/models/eft/game/IVersionValidateRequestData.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/eft/game/IVersionValidateRequestData.d.ts -------------------------------------------------------------------------------- /types/models/eft/health/Effect.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/eft/health/Effect.d.ts -------------------------------------------------------------------------------- /types/models/eft/health/IHealthTreatmentRequestData.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/eft/health/IHealthTreatmentRequestData.d.ts -------------------------------------------------------------------------------- /types/models/eft/health/IOffraidEatRequestData.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/eft/health/IOffraidEatRequestData.d.ts -------------------------------------------------------------------------------- /types/models/eft/health/IOffraidHealRequestData.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/eft/health/IOffraidHealRequestData.d.ts -------------------------------------------------------------------------------- /types/models/eft/health/ISyncHealthRequestData.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/eft/health/ISyncHealthRequestData.d.ts -------------------------------------------------------------------------------- /types/models/eft/health/IWorkoutData.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/eft/health/IWorkoutData.d.ts -------------------------------------------------------------------------------- /types/models/eft/hideout/IHandleQTEEventRequestData.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/eft/hideout/IHandleQTEEventRequestData.d.ts -------------------------------------------------------------------------------- /types/models/eft/hideout/IHideoutArea.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/eft/hideout/IHideoutArea.d.ts -------------------------------------------------------------------------------- /types/models/eft/hideout/IHideoutCustomisation.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/eft/hideout/IHideoutCustomisation.d.ts -------------------------------------------------------------------------------- /types/models/eft/hideout/IHideoutImproveAreaRequestData.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/eft/hideout/IHideoutImproveAreaRequestData.d.ts -------------------------------------------------------------------------------- /types/models/eft/hideout/IHideoutProduction.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/eft/hideout/IHideoutProduction.d.ts -------------------------------------------------------------------------------- /types/models/eft/hideout/IHideoutPutItemInRequestData.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/eft/hideout/IHideoutPutItemInRequestData.d.ts -------------------------------------------------------------------------------- /types/models/eft/hideout/IHideoutSettingsBase.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/eft/hideout/IHideoutSettingsBase.d.ts -------------------------------------------------------------------------------- /types/models/eft/hideout/IHideoutTakeItemOutRequestData.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/eft/hideout/IHideoutTakeItemOutRequestData.d.ts -------------------------------------------------------------------------------- /types/models/eft/hideout/IHideoutToggleAreaRequestData.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/eft/hideout/IHideoutToggleAreaRequestData.d.ts -------------------------------------------------------------------------------- /types/models/eft/hideout/IHideoutUpgradeRequestData.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/eft/hideout/IHideoutUpgradeRequestData.d.ts -------------------------------------------------------------------------------- /types/models/eft/hideout/IQteData.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/eft/hideout/IQteData.d.ts -------------------------------------------------------------------------------- /types/models/eft/hideout/IRecordShootingRangePoints.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/eft/hideout/IRecordShootingRangePoints.d.ts -------------------------------------------------------------------------------- /types/models/eft/httpResponse/IGetBodyResponseData.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/eft/httpResponse/IGetBodyResponseData.d.ts -------------------------------------------------------------------------------- /types/models/eft/httpResponse/INullResponseData.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/eft/httpResponse/INullResponseData.d.ts -------------------------------------------------------------------------------- /types/models/eft/inRaid/IInsuredItemsData.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/eft/inRaid/IInsuredItemsData.d.ts -------------------------------------------------------------------------------- /types/models/eft/inRaid/IItemDeliveryRequestData.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/eft/inRaid/IItemDeliveryRequestData.d.ts -------------------------------------------------------------------------------- /types/models/eft/inRaid/IRegisterPlayerRequestData.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/eft/inRaid/IRegisterPlayerRequestData.d.ts -------------------------------------------------------------------------------- /types/models/eft/inRaid/IScavSaveRequestData.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/eft/inRaid/IScavSaveRequestData.d.ts -------------------------------------------------------------------------------- /types/models/eft/insurance/IGetInsuranceCostRequestData.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/eft/insurance/IGetInsuranceCostRequestData.d.ts -------------------------------------------------------------------------------- /types/models/eft/insurance/IInsureRequestData.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/eft/insurance/IInsureRequestData.d.ts -------------------------------------------------------------------------------- /types/models/eft/inventory/IAddItemDirectRequest.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/eft/inventory/IAddItemDirectRequest.d.ts -------------------------------------------------------------------------------- /types/models/eft/inventory/IAddItemRequestData.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/eft/inventory/IAddItemRequestData.d.ts -------------------------------------------------------------------------------- /types/models/eft/inventory/IAddItemTempObject.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/eft/inventory/IAddItemTempObject.d.ts -------------------------------------------------------------------------------- /types/models/eft/inventory/IAddItemsDirectRequest.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/eft/inventory/IAddItemsDirectRequest.d.ts -------------------------------------------------------------------------------- /types/models/eft/inventory/IInventoryAddRequestData.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/eft/inventory/IInventoryAddRequestData.d.ts -------------------------------------------------------------------------------- /types/models/eft/inventory/IInventoryBindRequestData.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/eft/inventory/IInventoryBindRequestData.d.ts -------------------------------------------------------------------------------- /types/models/eft/inventory/IInventoryExamineRequestData.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/eft/inventory/IInventoryExamineRequestData.d.ts -------------------------------------------------------------------------------- /types/models/eft/inventory/IInventoryFoldRequestData.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/eft/inventory/IInventoryFoldRequestData.d.ts -------------------------------------------------------------------------------- /types/models/eft/inventory/IInventoryMoveRequestData.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/eft/inventory/IInventoryMoveRequestData.d.ts -------------------------------------------------------------------------------- /types/models/eft/inventory/IInventorySortRequestData.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/eft/inventory/IInventorySortRequestData.d.ts -------------------------------------------------------------------------------- /types/models/eft/inventory/IInventorySwapRequestData.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/eft/inventory/IInventorySwapRequestData.d.ts -------------------------------------------------------------------------------- /types/models/eft/inventory/IInventoryTagRequestData.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/eft/inventory/IInventoryTagRequestData.d.ts -------------------------------------------------------------------------------- /types/models/eft/inventory/IPinOrLockItemRequest.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/eft/inventory/IPinOrLockItemRequest.d.ts -------------------------------------------------------------------------------- /types/models/eft/inventory/IRedeemProfileRequestData.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/eft/inventory/IRedeemProfileRequestData.d.ts -------------------------------------------------------------------------------- /types/models/eft/inventory/ISetFavoriteItems.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/eft/inventory/ISetFavoriteItems.d.ts -------------------------------------------------------------------------------- /types/models/eft/itemEvent/IItemEventRouterBase.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/eft/itemEvent/IItemEventRouterBase.d.ts -------------------------------------------------------------------------------- /types/models/eft/itemEvent/IItemEventRouterRequest.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/eft/itemEvent/IItemEventRouterRequest.d.ts -------------------------------------------------------------------------------- /types/models/eft/itemEvent/IItemEventRouterResponse.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/eft/itemEvent/IItemEventRouterResponse.d.ts -------------------------------------------------------------------------------- /types/models/eft/launcher/IChangeRequestData.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/eft/launcher/IChangeRequestData.d.ts -------------------------------------------------------------------------------- /types/models/eft/launcher/IGetMiniProfileRequestData.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/eft/launcher/IGetMiniProfileRequestData.d.ts -------------------------------------------------------------------------------- /types/models/eft/launcher/ILoginRequestData.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/eft/launcher/ILoginRequestData.d.ts -------------------------------------------------------------------------------- /types/models/eft/launcher/IMiniProfile.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/eft/launcher/IMiniProfile.d.ts -------------------------------------------------------------------------------- /types/models/eft/launcher/IRegisterData.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/eft/launcher/IRegisterData.d.ts -------------------------------------------------------------------------------- /types/models/eft/launcher/IRemoveProfileData.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/eft/launcher/IRemoveProfileData.d.ts -------------------------------------------------------------------------------- /types/models/eft/location/IAirdropLootResult.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/eft/location/IAirdropLootResult.d.ts -------------------------------------------------------------------------------- /types/models/eft/location/IGetAirdropLootRequest.d.ts: -------------------------------------------------------------------------------- 1 | export interface IGetAirdropLootRequest { 2 | containerId: string; 3 | } 4 | -------------------------------------------------------------------------------- /types/models/eft/location/IGetAirdropLootResponse.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/eft/location/IGetAirdropLootResponse.d.ts -------------------------------------------------------------------------------- /types/models/eft/location/IGetLocationRequestData.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/eft/location/IGetLocationRequestData.d.ts -------------------------------------------------------------------------------- /types/models/eft/match/IEndLocalRaidRequestData.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/eft/match/IEndLocalRaidRequestData.d.ts -------------------------------------------------------------------------------- /types/models/eft/match/IEndOfflineRaidRequestData.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/eft/match/IEndOfflineRaidRequestData.d.ts -------------------------------------------------------------------------------- /types/models/eft/match/IGroupCharacter.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/eft/match/IGroupCharacter.d.ts -------------------------------------------------------------------------------- /types/models/eft/match/IMatchGroupCurrentResponse.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/eft/match/IMatchGroupCurrentResponse.d.ts -------------------------------------------------------------------------------- /types/models/eft/match/IMatchGroupInviteSendRequest.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/eft/match/IMatchGroupInviteSendRequest.d.ts -------------------------------------------------------------------------------- /types/models/eft/match/IMatchGroupPlayerRemoveRequest.d.ts: -------------------------------------------------------------------------------- 1 | export interface IMatchGroupPlayerRemoveRequest { 2 | aidToKick: string; 3 | } 4 | -------------------------------------------------------------------------------- /types/models/eft/match/IMatchGroupStartGameRequest.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/eft/match/IMatchGroupStartGameRequest.d.ts -------------------------------------------------------------------------------- /types/models/eft/match/IMatchGroupStatusRequest.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/eft/match/IMatchGroupStatusRequest.d.ts -------------------------------------------------------------------------------- /types/models/eft/match/IMatchGroupStatusResponse.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/eft/match/IMatchGroupStatusResponse.d.ts -------------------------------------------------------------------------------- /types/models/eft/match/IMatchGroupTransferRequest.d.ts: -------------------------------------------------------------------------------- 1 | export interface IMatchGroupTransferRequest { 2 | aidToChange: string; 3 | } 4 | -------------------------------------------------------------------------------- /types/models/eft/match/IProfileStatusRequest.d.ts: -------------------------------------------------------------------------------- 1 | export interface IProfileStatusRequest { 2 | groupId: number; 3 | } 4 | -------------------------------------------------------------------------------- /types/models/eft/match/IProfileStatusResponse.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/eft/match/IProfileStatusResponse.d.ts -------------------------------------------------------------------------------- /types/models/eft/match/IPutMetricsRequestData.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/eft/match/IPutMetricsRequestData.d.ts -------------------------------------------------------------------------------- /types/models/eft/match/IRaidSettings.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/eft/match/IRaidSettings.d.ts -------------------------------------------------------------------------------- /types/models/eft/match/IRequestIdRequest.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/eft/match/IRequestIdRequest.d.ts -------------------------------------------------------------------------------- /types/models/eft/match/IServer.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/eft/match/IServer.d.ts -------------------------------------------------------------------------------- /types/models/eft/match/ISessionStatus.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/eft/match/ISessionStatus.d.ts -------------------------------------------------------------------------------- /types/models/eft/match/IStartLocalRaidRequestData.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/eft/match/IStartLocalRaidRequestData.d.ts -------------------------------------------------------------------------------- /types/models/eft/match/IStartLocalRaidResponseData.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/eft/match/IStartLocalRaidResponseData.d.ts -------------------------------------------------------------------------------- /types/models/eft/match/IUpdatePingRequestData.d.ts: -------------------------------------------------------------------------------- 1 | export interface IUpdatePingRequestData { 2 | servers: any[]; 3 | } 4 | -------------------------------------------------------------------------------- /types/models/eft/notes/INoteActionData.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/eft/notes/INoteActionData.d.ts -------------------------------------------------------------------------------- /types/models/eft/notifier/INotifier.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/eft/notifier/INotifier.d.ts -------------------------------------------------------------------------------- /types/models/eft/notifier/ISelectProfileResponse.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/eft/notifier/ISelectProfileResponse.d.ts -------------------------------------------------------------------------------- /types/models/eft/presetBuild/IRemoveBuildRequestData.d.ts: -------------------------------------------------------------------------------- 1 | export interface IRemoveBuildRequestData { 2 | id: string; 3 | } 4 | -------------------------------------------------------------------------------- /types/models/eft/prestige/IGetPrestigeResponse.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/eft/prestige/IGetPrestigeResponse.d.ts -------------------------------------------------------------------------------- /types/models/eft/prestige/IObtainPrestigeRequest.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/eft/prestige/IObtainPrestigeRequest.d.ts -------------------------------------------------------------------------------- /types/models/eft/profile/IConnectResponse.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/eft/profile/IConnectResponse.d.ts -------------------------------------------------------------------------------- /types/models/eft/profile/ICreateProfileResponse.d.ts: -------------------------------------------------------------------------------- 1 | export interface ICreateProfileResponse { 2 | uid: string; 3 | } 4 | -------------------------------------------------------------------------------- /types/models/eft/profile/IGetAchievementsResponse.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/eft/profile/IGetAchievementsResponse.d.ts -------------------------------------------------------------------------------- /types/models/eft/profile/IGetOtherProfileRequest.d.ts: -------------------------------------------------------------------------------- 1 | export interface IGetOtherProfileRequest { 2 | accountId: string; 3 | } 4 | -------------------------------------------------------------------------------- /types/models/eft/profile/IGetOtherProfileResponse.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/eft/profile/IGetOtherProfileResponse.d.ts -------------------------------------------------------------------------------- /types/models/eft/profile/IGetProfileSettingsRequest.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/eft/profile/IGetProfileSettingsRequest.d.ts -------------------------------------------------------------------------------- /types/models/eft/profile/IMessageContentRagfair.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/eft/profile/IMessageContentRagfair.d.ts -------------------------------------------------------------------------------- /types/models/eft/profile/IProfileCreateRequestData.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/eft/profile/IProfileCreateRequestData.d.ts -------------------------------------------------------------------------------- /types/models/eft/profile/ISearchFriendRequestData.d.ts: -------------------------------------------------------------------------------- 1 | export interface ISearchFriendRequestData { 2 | nickname: string; 3 | } 4 | -------------------------------------------------------------------------------- /types/models/eft/profile/ISearchFriendResponse.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/eft/profile/ISearchFriendResponse.d.ts -------------------------------------------------------------------------------- /types/models/eft/profile/ISptProfile.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/eft/profile/ISptProfile.d.ts -------------------------------------------------------------------------------- /types/models/eft/profile/ISystemData.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/eft/profile/ISystemData.d.ts -------------------------------------------------------------------------------- /types/models/eft/profile/IUserDialogInfo.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/eft/profile/IUserDialogInfo.d.ts -------------------------------------------------------------------------------- /types/models/eft/quests/IAcceptQuestRequestData.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/eft/quests/IAcceptQuestRequestData.d.ts -------------------------------------------------------------------------------- /types/models/eft/quests/ICompleteQuestRequestData.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/eft/quests/ICompleteQuestRequestData.d.ts -------------------------------------------------------------------------------- /types/models/eft/quests/IFailQuestRequestData.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/eft/quests/IFailQuestRequestData.d.ts -------------------------------------------------------------------------------- /types/models/eft/quests/IHandoverQuestRequestData.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/eft/quests/IHandoverQuestRequestData.d.ts -------------------------------------------------------------------------------- /types/models/eft/quests/IListQuestsRequestData.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/eft/quests/IListQuestsRequestData.d.ts -------------------------------------------------------------------------------- /types/models/eft/ragfair/IAddOfferRequestData.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/eft/ragfair/IAddOfferRequestData.d.ts -------------------------------------------------------------------------------- /types/models/eft/ragfair/IExtendOfferRequestData.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/eft/ragfair/IExtendOfferRequestData.d.ts -------------------------------------------------------------------------------- /types/models/eft/ragfair/IGetItemPriceResult.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/eft/ragfair/IGetItemPriceResult.d.ts -------------------------------------------------------------------------------- /types/models/eft/ragfair/IGetMarketPriceRequestData.d.ts: -------------------------------------------------------------------------------- 1 | export interface IGetMarketPriceRequestData { 2 | templateId: string; 3 | } 4 | -------------------------------------------------------------------------------- /types/models/eft/ragfair/IGetOffersResult.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/eft/ragfair/IGetOffersResult.d.ts -------------------------------------------------------------------------------- /types/models/eft/ragfair/IGetRagfairOfferByIdRequest.d.ts: -------------------------------------------------------------------------------- 1 | export interface IGetRagfairOfferByIdRequest { 2 | id: number; 3 | } 4 | -------------------------------------------------------------------------------- /types/models/eft/ragfair/IRagfairOffer.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/eft/ragfair/IRagfairOffer.d.ts -------------------------------------------------------------------------------- /types/models/eft/ragfair/IRemoveOfferRequestData.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/eft/ragfair/IRemoveOfferRequestData.d.ts -------------------------------------------------------------------------------- /types/models/eft/ragfair/ISearchRequestData.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/eft/ragfair/ISearchRequestData.d.ts -------------------------------------------------------------------------------- /types/models/eft/repair/IBaseRepairActionDataRequest.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/eft/repair/IBaseRepairActionDataRequest.d.ts -------------------------------------------------------------------------------- /types/models/eft/repair/IRepairActionDataRequest.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/eft/repair/IRepairActionDataRequest.d.ts -------------------------------------------------------------------------------- /types/models/eft/trade/IProcessBaseTradeRequestData.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/eft/trade/IProcessBaseTradeRequestData.d.ts -------------------------------------------------------------------------------- /types/models/eft/trade/IProcessBuyTradeRequestData.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/eft/trade/IProcessBuyTradeRequestData.d.ts -------------------------------------------------------------------------------- /types/models/eft/trade/IProcessSellTradeRequestData.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/eft/trade/IProcessSellTradeRequestData.d.ts -------------------------------------------------------------------------------- /types/models/eft/weather/IWeatherData.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/eft/weather/IWeatherData.d.ts -------------------------------------------------------------------------------- /types/models/eft/wishlist/IAddToWishlistRequest.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/eft/wishlist/IAddToWishlistRequest.d.ts -------------------------------------------------------------------------------- /types/models/eft/wishlist/IRemoveFromWishlistRequest.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/eft/wishlist/IRemoveFromWishlistRequest.d.ts -------------------------------------------------------------------------------- /types/models/eft/ws/IWsAid.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/eft/ws/IWsAid.d.ts -------------------------------------------------------------------------------- /types/models/eft/ws/IWsAidNickname.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/eft/ws/IWsAidNickname.d.ts -------------------------------------------------------------------------------- /types/models/eft/ws/IWsChatMessageReceived.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/eft/ws/IWsChatMessageReceived.d.ts -------------------------------------------------------------------------------- /types/models/eft/ws/IWsFriendsListAccept.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/eft/ws/IWsFriendsListAccept.d.ts -------------------------------------------------------------------------------- /types/models/eft/ws/IWsGroupId.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/eft/ws/IWsGroupId.d.ts -------------------------------------------------------------------------------- /types/models/eft/ws/IWsGroupMatchInviteAccept.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/eft/ws/IWsGroupMatchInviteAccept.d.ts -------------------------------------------------------------------------------- /types/models/eft/ws/IWsGroupMatchInviteDecline.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/eft/ws/IWsGroupMatchInviteDecline.d.ts -------------------------------------------------------------------------------- /types/models/eft/ws/IWsGroupMatchInviteSend.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/eft/ws/IWsGroupMatchInviteSend.d.ts -------------------------------------------------------------------------------- /types/models/eft/ws/IWsGroupMatchLeaderChanged.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/eft/ws/IWsGroupMatchLeaderChanged.d.ts -------------------------------------------------------------------------------- /types/models/eft/ws/IWsGroupMatchRaidReady.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/eft/ws/IWsGroupMatchRaidReady.d.ts -------------------------------------------------------------------------------- /types/models/eft/ws/IWsGroupMatchRaidSettings.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/eft/ws/IWsGroupMatchRaidSettings.d.ts -------------------------------------------------------------------------------- /types/models/eft/ws/IWsNotificationEvent.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/eft/ws/IWsNotificationEvent.d.ts -------------------------------------------------------------------------------- /types/models/eft/ws/IWsPing.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/eft/ws/IWsPing.d.ts -------------------------------------------------------------------------------- /types/models/eft/ws/IWsRagfairOfferSold.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/eft/ws/IWsRagfairOfferSold.d.ts -------------------------------------------------------------------------------- /types/models/eft/ws/IWsUserConfirmed.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/eft/ws/IWsUserConfirmed.d.ts -------------------------------------------------------------------------------- /types/models/enums/AccountTypes.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/enums/AccountTypes.d.ts -------------------------------------------------------------------------------- /types/models/enums/AirdropType.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/enums/AirdropType.d.ts -------------------------------------------------------------------------------- /types/models/enums/AmmoTypes.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/enums/AmmoTypes.d.ts -------------------------------------------------------------------------------- /types/models/enums/BackendErrorCodes.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/enums/BackendErrorCodes.d.ts -------------------------------------------------------------------------------- /types/models/enums/BaseClasses.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/enums/BaseClasses.d.ts -------------------------------------------------------------------------------- /types/models/enums/BonusSkillType.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/enums/BonusSkillType.d.ts -------------------------------------------------------------------------------- /types/models/enums/BonusType.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/enums/BonusType.d.ts -------------------------------------------------------------------------------- /types/models/enums/ConfigTypes.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/enums/ConfigTypes.d.ts -------------------------------------------------------------------------------- /types/models/enums/ContainerTypes.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/enums/ContainerTypes.d.ts -------------------------------------------------------------------------------- /types/models/enums/DateTime.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/enums/DateTime.d.ts -------------------------------------------------------------------------------- /types/models/enums/DogtagExchangeSide.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/enums/DogtagExchangeSide.d.ts -------------------------------------------------------------------------------- /types/models/enums/ELocationName.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/enums/ELocationName.d.ts -------------------------------------------------------------------------------- /types/models/enums/EntryType.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/enums/EntryType.d.ts -------------------------------------------------------------------------------- /types/models/enums/EquipmentBuildType.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/enums/EquipmentBuildType.d.ts -------------------------------------------------------------------------------- /types/models/enums/EquipmentSlots.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/enums/EquipmentSlots.d.ts -------------------------------------------------------------------------------- /types/models/enums/ExitStatis.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/enums/ExitStatis.d.ts -------------------------------------------------------------------------------- /types/models/enums/FleaOfferType.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/enums/FleaOfferType.d.ts -------------------------------------------------------------------------------- /types/models/enums/GameEditions.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/enums/GameEditions.d.ts -------------------------------------------------------------------------------- /types/models/enums/GiftSenderType.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/enums/GiftSenderType.d.ts -------------------------------------------------------------------------------- /types/models/enums/GiftSentResult.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/enums/GiftSentResult.d.ts -------------------------------------------------------------------------------- /types/models/enums/HideoutAreas.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/enums/HideoutAreas.d.ts -------------------------------------------------------------------------------- /types/models/enums/HideoutEventActions.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/enums/HideoutEventActions.d.ts -------------------------------------------------------------------------------- /types/models/enums/ItemAddedResult.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/enums/ItemAddedResult.d.ts -------------------------------------------------------------------------------- /types/models/enums/ItemEventActions.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/enums/ItemEventActions.d.ts -------------------------------------------------------------------------------- /types/models/enums/ItemTpl.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/enums/ItemTpl.d.ts -------------------------------------------------------------------------------- /types/models/enums/MemberCategory.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/enums/MemberCategory.d.ts -------------------------------------------------------------------------------- /types/models/enums/MessageType.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/enums/MessageType.d.ts -------------------------------------------------------------------------------- /types/models/enums/ModSpawn.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/enums/ModSpawn.d.ts -------------------------------------------------------------------------------- /types/models/enums/Money.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/enums/Money.d.ts -------------------------------------------------------------------------------- /types/models/enums/NotificationEventType.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/enums/NotificationEventType.d.ts -------------------------------------------------------------------------------- /types/models/enums/PlayerRaidEndState.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/enums/PlayerRaidEndState.d.ts -------------------------------------------------------------------------------- /types/models/enums/PlayersSpawnPlace.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/enums/PlayersSpawnPlace.d.ts -------------------------------------------------------------------------------- /types/models/enums/ProfileStatus.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/enums/ProfileStatus.d.ts -------------------------------------------------------------------------------- /types/models/enums/QuestStatus.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/enums/QuestStatus.d.ts -------------------------------------------------------------------------------- /types/models/enums/QuestTypeEnum.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/enums/QuestTypeEnum.d.ts -------------------------------------------------------------------------------- /types/models/enums/RagfairSort.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/enums/RagfairSort.d.ts -------------------------------------------------------------------------------- /types/models/enums/RaidMode.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/enums/RaidMode.d.ts -------------------------------------------------------------------------------- /types/models/enums/RaidSettings/BotAmount.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/enums/RaidSettings/BotAmount.d.ts -------------------------------------------------------------------------------- /types/models/enums/RaidSettings/BotDifficulty.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/enums/RaidSettings/BotDifficulty.d.ts -------------------------------------------------------------------------------- /types/models/enums/RewardType.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/enums/RewardType.d.ts -------------------------------------------------------------------------------- /types/models/enums/Season.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/enums/Season.d.ts -------------------------------------------------------------------------------- /types/models/enums/SeasonalEventType.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/enums/SeasonalEventType.d.ts -------------------------------------------------------------------------------- /types/models/enums/SideType.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/enums/SideType.d.ts -------------------------------------------------------------------------------- /types/models/enums/SkillTypes.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/enums/SkillTypes.d.ts -------------------------------------------------------------------------------- /types/models/enums/TraderServiceType.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/enums/TraderServiceType.d.ts -------------------------------------------------------------------------------- /types/models/enums/Traders.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/enums/Traders.d.ts -------------------------------------------------------------------------------- /types/models/enums/TransitionType.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/enums/TransitionType.d.ts -------------------------------------------------------------------------------- /types/models/enums/WeaponSkillTypes.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/enums/WeaponSkillTypes.d.ts -------------------------------------------------------------------------------- /types/models/enums/Weapons.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/enums/Weapons.d.ts -------------------------------------------------------------------------------- /types/models/enums/WeatherType.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/enums/WeatherType.d.ts -------------------------------------------------------------------------------- /types/models/enums/WildSpawnTypeNumber.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/enums/WildSpawnTypeNumber.d.ts -------------------------------------------------------------------------------- /types/models/enums/WindDirection.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/enums/WindDirection.d.ts -------------------------------------------------------------------------------- /types/models/enums/hideout/CircleRewardType.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/enums/hideout/CircleRewardType.d.ts -------------------------------------------------------------------------------- /types/models/enums/hideout/QteActivityType.d.ts: -------------------------------------------------------------------------------- 1 | export declare enum QteActivityType { 2 | GYM = 0 3 | } 4 | -------------------------------------------------------------------------------- /types/models/enums/hideout/QteEffectType.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/enums/hideout/QteEffectType.d.ts -------------------------------------------------------------------------------- /types/models/enums/hideout/QteResultType.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/enums/hideout/QteResultType.d.ts -------------------------------------------------------------------------------- /types/models/enums/hideout/QteRewardType.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/enums/hideout/QteRewardType.d.ts -------------------------------------------------------------------------------- /types/models/enums/hideout/QteType.d.ts: -------------------------------------------------------------------------------- 1 | export declare enum QteType { 2 | SHRINKING_CIRCLE = 0 3 | } 4 | -------------------------------------------------------------------------------- /types/models/enums/hideout/RequirementType.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/enums/hideout/RequirementType.d.ts -------------------------------------------------------------------------------- /types/models/external/HttpFramework.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/external/HttpFramework.d.ts -------------------------------------------------------------------------------- /types/models/external/IPostDBLoadMod.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/external/IPostDBLoadMod.d.ts -------------------------------------------------------------------------------- /types/models/external/IPostDBLoadModAsync.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/external/IPostDBLoadModAsync.d.ts -------------------------------------------------------------------------------- /types/models/external/IPostSptLoadMod.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/external/IPostSptLoadMod.d.ts -------------------------------------------------------------------------------- /types/models/external/IPostSptLoadModAsync.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/external/IPostSptLoadModAsync.d.ts -------------------------------------------------------------------------------- /types/models/external/IPreSptLoadMod.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/external/IPreSptLoadMod.d.ts -------------------------------------------------------------------------------- /types/models/external/IPreSptLoadModAsync.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/external/IPreSptLoadModAsync.d.ts -------------------------------------------------------------------------------- /types/models/external/tsyringe.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/external/tsyringe.d.ts -------------------------------------------------------------------------------- /types/models/spt/bindings/Route.d.ts: -------------------------------------------------------------------------------- 1 | export interface IRoute { 2 | spt: any; 3 | } 4 | -------------------------------------------------------------------------------- /types/models/spt/bots/BotGenerationDetails.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/spt/bots/BotGenerationDetails.d.ts -------------------------------------------------------------------------------- /types/models/spt/bots/IBotLootCache.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/spt/bots/IBotLootCache.d.ts -------------------------------------------------------------------------------- /types/models/spt/bots/IBots.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/spt/bots/IBots.d.ts -------------------------------------------------------------------------------- /types/models/spt/bots/IGenerateEquipmentProperties.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/spt/bots/IGenerateEquipmentProperties.d.ts -------------------------------------------------------------------------------- /types/models/spt/bots/IGenerateWeaponRequest.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/spt/bots/IGenerateWeaponRequest.d.ts -------------------------------------------------------------------------------- /types/models/spt/bots/IGenerateWeaponResult.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/spt/bots/IGenerateWeaponResult.d.ts -------------------------------------------------------------------------------- /types/models/spt/bots/IItemSpawnLimitSettings.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/spt/bots/IItemSpawnLimitSettings.d.ts -------------------------------------------------------------------------------- /types/models/spt/bots/IModToSpawnRequest.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/spt/bots/IModToSpawnRequest.d.ts -------------------------------------------------------------------------------- /types/models/spt/callbacks/IBotCallbacks.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/spt/callbacks/IBotCallbacks.d.ts -------------------------------------------------------------------------------- /types/models/spt/callbacks/IBundleCallbacks.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/spt/callbacks/IBundleCallbacks.d.ts -------------------------------------------------------------------------------- /types/models/spt/callbacks/ICustomizationCallbacks.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/spt/callbacks/ICustomizationCallbacks.d.ts -------------------------------------------------------------------------------- /types/models/spt/callbacks/IDialogueCallbacks.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/spt/callbacks/IDialogueCallbacks.d.ts -------------------------------------------------------------------------------- /types/models/spt/callbacks/IGameCallbacks.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/spt/callbacks/IGameCallbacks.d.ts -------------------------------------------------------------------------------- /types/models/spt/callbacks/IHandbookCallbacks.d.ts: -------------------------------------------------------------------------------- 1 | export interface IHandbookCallbacks { 2 | load(): void; 3 | } 4 | -------------------------------------------------------------------------------- /types/models/spt/callbacks/IHealthCallbacks.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/spt/callbacks/IHealthCallbacks.d.ts -------------------------------------------------------------------------------- /types/models/spt/callbacks/IHideoutCallbacks.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/spt/callbacks/IHideoutCallbacks.d.ts -------------------------------------------------------------------------------- /types/models/spt/callbacks/IHttpCallbacks.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/spt/callbacks/IHttpCallbacks.d.ts -------------------------------------------------------------------------------- /types/models/spt/callbacks/IInsuranceCallbacks.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/spt/callbacks/IInsuranceCallbacks.d.ts -------------------------------------------------------------------------------- /types/models/spt/callbacks/IInventoryCallbacks.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/spt/callbacks/IInventoryCallbacks.d.ts -------------------------------------------------------------------------------- /types/models/spt/callbacks/IItemEventCallbacks.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/spt/callbacks/IItemEventCallbacks.d.ts -------------------------------------------------------------------------------- /types/models/spt/callbacks/ILauncherCallbacks.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/spt/callbacks/ILauncherCallbacks.d.ts -------------------------------------------------------------------------------- /types/models/spt/callbacks/ILocationCallbacks.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/spt/callbacks/ILocationCallbacks.d.ts -------------------------------------------------------------------------------- /types/models/spt/callbacks/IModCallbacks.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/spt/callbacks/IModCallbacks.d.ts -------------------------------------------------------------------------------- /types/models/spt/callbacks/INoteCallbacks.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/spt/callbacks/INoteCallbacks.d.ts -------------------------------------------------------------------------------- /types/models/spt/callbacks/INotifierCallbacks.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/spt/callbacks/INotifierCallbacks.d.ts -------------------------------------------------------------------------------- /types/models/spt/callbacks/IPresetBuildCallbacks.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/spt/callbacks/IPresetBuildCallbacks.d.ts -------------------------------------------------------------------------------- /types/models/spt/callbacks/IPresetCallbacks.d.ts: -------------------------------------------------------------------------------- 1 | export interface IPresetCallbacks { 2 | load(): void; 3 | } 4 | -------------------------------------------------------------------------------- /types/models/spt/callbacks/IProfileCallbacks.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/spt/callbacks/IProfileCallbacks.d.ts -------------------------------------------------------------------------------- /types/models/spt/callbacks/IQuestCallbacks.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/spt/callbacks/IQuestCallbacks.d.ts -------------------------------------------------------------------------------- /types/models/spt/callbacks/IRagfairCallbacks.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/spt/callbacks/IRagfairCallbacks.d.ts -------------------------------------------------------------------------------- /types/models/spt/callbacks/IRepairCallbacks.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/spt/callbacks/IRepairCallbacks.d.ts -------------------------------------------------------------------------------- /types/models/spt/callbacks/ISaveCallbacks.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/spt/callbacks/ISaveCallbacks.d.ts -------------------------------------------------------------------------------- /types/models/spt/callbacks/ITradeCallbacks.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/spt/callbacks/ITradeCallbacks.d.ts -------------------------------------------------------------------------------- /types/models/spt/callbacks/ITraderCallbacks.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/spt/callbacks/ITraderCallbacks.d.ts -------------------------------------------------------------------------------- /types/models/spt/callbacks/IWeatherCallbacks.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/spt/callbacks/IWeatherCallbacks.d.ts -------------------------------------------------------------------------------- /types/models/spt/config/IAirdropConfig.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/spt/config/IAirdropConfig.d.ts -------------------------------------------------------------------------------- /types/models/spt/config/IBackupConfig.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/spt/config/IBackupConfig.d.ts -------------------------------------------------------------------------------- /types/models/spt/config/IBaseConfig.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/spt/config/IBaseConfig.d.ts -------------------------------------------------------------------------------- /types/models/spt/config/IBotConfig.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/spt/config/IBotConfig.d.ts -------------------------------------------------------------------------------- /types/models/spt/config/IBotDurability.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/spt/config/IBotDurability.d.ts -------------------------------------------------------------------------------- /types/models/spt/config/ICoreConfig.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/spt/config/ICoreConfig.d.ts -------------------------------------------------------------------------------- /types/models/spt/config/IGiftsConfig.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/spt/config/IGiftsConfig.d.ts -------------------------------------------------------------------------------- /types/models/spt/config/IHealthConfig.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/spt/config/IHealthConfig.d.ts -------------------------------------------------------------------------------- /types/models/spt/config/IHideoutConfig.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/spt/config/IHideoutConfig.d.ts -------------------------------------------------------------------------------- /types/models/spt/config/IHttpConfig.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/spt/config/IHttpConfig.d.ts -------------------------------------------------------------------------------- /types/models/spt/config/IInRaidConfig.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/spt/config/IInRaidConfig.d.ts -------------------------------------------------------------------------------- /types/models/spt/config/IInsuranceConfig.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/spt/config/IInsuranceConfig.d.ts -------------------------------------------------------------------------------- /types/models/spt/config/IInventoryConfig.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/spt/config/IInventoryConfig.d.ts -------------------------------------------------------------------------------- /types/models/spt/config/IItemConfig.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/spt/config/IItemConfig.d.ts -------------------------------------------------------------------------------- /types/models/spt/config/ILocaleConfig.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/spt/config/ILocaleConfig.d.ts -------------------------------------------------------------------------------- /types/models/spt/config/ILocationConfig.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/spt/config/ILocationConfig.d.ts -------------------------------------------------------------------------------- /types/models/spt/config/ILootConfig.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/spt/config/ILootConfig.d.ts -------------------------------------------------------------------------------- /types/models/spt/config/ILostOnDeathConfig.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/spt/config/ILostOnDeathConfig.d.ts -------------------------------------------------------------------------------- /types/models/spt/config/IMatchConfig.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/spt/config/IMatchConfig.d.ts -------------------------------------------------------------------------------- /types/models/spt/config/IPlayerScavConfig.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/spt/config/IPlayerScavConfig.d.ts -------------------------------------------------------------------------------- /types/models/spt/config/IPmChatResponse.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/spt/config/IPmChatResponse.d.ts -------------------------------------------------------------------------------- /types/models/spt/config/IPmcConfig.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/spt/config/IPmcConfig.d.ts -------------------------------------------------------------------------------- /types/models/spt/config/IQuestConfig.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/spt/config/IQuestConfig.d.ts -------------------------------------------------------------------------------- /types/models/spt/config/IRagfairConfig.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/spt/config/IRagfairConfig.d.ts -------------------------------------------------------------------------------- /types/models/spt/config/IRepairConfig.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/spt/config/IRepairConfig.d.ts -------------------------------------------------------------------------------- /types/models/spt/config/IScavCaseConfig.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/spt/config/IScavCaseConfig.d.ts -------------------------------------------------------------------------------- /types/models/spt/config/ISeasonalEventConfig.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/spt/config/ISeasonalEventConfig.d.ts -------------------------------------------------------------------------------- /types/models/spt/config/ITraderConfig.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/spt/config/ITraderConfig.d.ts -------------------------------------------------------------------------------- /types/models/spt/config/IWeatherConfig.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/spt/config/IWeatherConfig.d.ts -------------------------------------------------------------------------------- /types/models/spt/controllers/IBotController.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/spt/controllers/IBotController.d.ts -------------------------------------------------------------------------------- /types/models/spt/dialog/ISendMessageDetails.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/spt/dialog/ISendMessageDetails.d.ts -------------------------------------------------------------------------------- /types/models/spt/fence/ICreateFenceAssortsResult.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/spt/fence/ICreateFenceAssortsResult.d.ts -------------------------------------------------------------------------------- /types/models/spt/fence/IFenceAssortGenerationValues.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/spt/fence/IFenceAssortGenerationValues.d.ts -------------------------------------------------------------------------------- /types/models/spt/generators/IBotGenerator.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/spt/generators/IBotGenerator.d.ts -------------------------------------------------------------------------------- /types/models/spt/generators/ILocationGenerator.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/spt/generators/ILocationGenerator.d.ts -------------------------------------------------------------------------------- /types/models/spt/generators/IPMCLootGenerator.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/spt/generators/IPMCLootGenerator.d.ts -------------------------------------------------------------------------------- /types/models/spt/generators/IRagfairAssortGenerator.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/spt/generators/IRagfairAssortGenerator.d.ts -------------------------------------------------------------------------------- /types/models/spt/generators/IRagfairOfferGenerator.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/spt/generators/IRagfairOfferGenerator.d.ts -------------------------------------------------------------------------------- /types/models/spt/hideout/ICircleCraftDetails.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/spt/hideout/ICircleCraftDetails.d.ts -------------------------------------------------------------------------------- /types/models/spt/hideout/IHideout.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/spt/hideout/IHideout.d.ts -------------------------------------------------------------------------------- /types/models/spt/inventory/IOwnerInventoryItems.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/spt/inventory/IOwnerInventoryItems.d.ts -------------------------------------------------------------------------------- /types/models/spt/location/IRaidChanges.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/spt/location/IRaidChanges.d.ts -------------------------------------------------------------------------------- /types/models/spt/logging/IClientLogRequest.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/spt/logging/IClientLogRequest.d.ts -------------------------------------------------------------------------------- /types/models/spt/logging/LogBackgroundColor.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/spt/logging/LogBackgroundColor.d.ts -------------------------------------------------------------------------------- /types/models/spt/logging/LogLevel.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/spt/logging/LogLevel.d.ts -------------------------------------------------------------------------------- /types/models/spt/logging/LogTextColor.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/spt/logging/LogTextColor.d.ts -------------------------------------------------------------------------------- /types/models/spt/logging/SptLogger.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/spt/logging/SptLogger.d.ts -------------------------------------------------------------------------------- /types/models/spt/mod/IModLoader.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/spt/mod/IModLoader.d.ts -------------------------------------------------------------------------------- /types/models/spt/mod/IPackageJsonData.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/spt/mod/IPackageJsonData.d.ts -------------------------------------------------------------------------------- /types/models/spt/mod/NewItemDetails.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/spt/mod/NewItemDetails.d.ts -------------------------------------------------------------------------------- /types/models/spt/quests/IGetRepeatableByIdResult.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/spt/quests/IGetRepeatableByIdResult.d.ts -------------------------------------------------------------------------------- /types/models/spt/ragfair/IRagfairServerPrices.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/spt/ragfair/IRagfairServerPrices.d.ts -------------------------------------------------------------------------------- /types/models/spt/ragfair/ITplWithFleaPrice.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/spt/ragfair/ITplWithFleaPrice.d.ts -------------------------------------------------------------------------------- /types/models/spt/repeatable/IQuestRewardValues.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/spt/repeatable/IQuestRewardValues.d.ts -------------------------------------------------------------------------------- /types/models/spt/repeatable/IQuestTypePool.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/spt/repeatable/IQuestTypePool.d.ts -------------------------------------------------------------------------------- /types/models/spt/server/ExhaustableArray.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/spt/server/ExhaustableArray.d.ts -------------------------------------------------------------------------------- /types/models/spt/server/IDatabaseTables.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/spt/server/IDatabaseTables.d.ts -------------------------------------------------------------------------------- /types/models/spt/server/ILocaleBase.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/spt/server/ILocaleBase.d.ts -------------------------------------------------------------------------------- /types/models/spt/server/ILocations.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/spt/server/ILocations.d.ts -------------------------------------------------------------------------------- /types/models/spt/server/IServerBase.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/spt/server/IServerBase.d.ts -------------------------------------------------------------------------------- /types/models/spt/server/ISettingsBase.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/spt/server/ISettingsBase.d.ts -------------------------------------------------------------------------------- /types/models/spt/services/IInsuranceEquipmentPkg.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/spt/services/IInsuranceEquipmentPkg.d.ts -------------------------------------------------------------------------------- /types/models/spt/services/ILootRequest.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/spt/services/ILootRequest.d.ts -------------------------------------------------------------------------------- /types/models/spt/services/ITraderServiceModel.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/spt/services/ITraderServiceModel.d.ts -------------------------------------------------------------------------------- /types/models/spt/services/LootItem.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/spt/services/LootItem.d.ts -------------------------------------------------------------------------------- /types/models/spt/templates/ITemplates.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/spt/templates/ITemplates.d.ts -------------------------------------------------------------------------------- /types/models/spt/utils/ILogger.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/models/spt/utils/ILogger.d.ts -------------------------------------------------------------------------------- /types/routers/EventOutputHolder.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/routers/EventOutputHolder.d.ts -------------------------------------------------------------------------------- /types/routers/HttpRouter.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/routers/HttpRouter.d.ts -------------------------------------------------------------------------------- /types/routers/ImageRouter.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/routers/ImageRouter.d.ts -------------------------------------------------------------------------------- /types/routers/ItemEventRouter.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/routers/ItemEventRouter.d.ts -------------------------------------------------------------------------------- /types/routers/dynamic/BotDynamicRouter.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/routers/dynamic/BotDynamicRouter.d.ts -------------------------------------------------------------------------------- /types/routers/dynamic/BundleDynamicRouter.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/routers/dynamic/BundleDynamicRouter.d.ts -------------------------------------------------------------------------------- /types/routers/dynamic/CustomizationDynamicRouter.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/routers/dynamic/CustomizationDynamicRouter.d.ts -------------------------------------------------------------------------------- /types/routers/dynamic/DataDynamicRouter.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/routers/dynamic/DataDynamicRouter.d.ts -------------------------------------------------------------------------------- /types/routers/dynamic/HttpDynamicRouter.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/routers/dynamic/HttpDynamicRouter.d.ts -------------------------------------------------------------------------------- /types/routers/dynamic/InraidDynamicRouter.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/routers/dynamic/InraidDynamicRouter.d.ts -------------------------------------------------------------------------------- /types/routers/dynamic/LocationDynamicRouter.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/routers/dynamic/LocationDynamicRouter.d.ts -------------------------------------------------------------------------------- /types/routers/dynamic/NotifierDynamicRouter.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/routers/dynamic/NotifierDynamicRouter.d.ts -------------------------------------------------------------------------------- /types/routers/dynamic/TraderDynamicRouter.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/routers/dynamic/TraderDynamicRouter.d.ts -------------------------------------------------------------------------------- /types/routers/item_events/HealthItemEventRouter.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/routers/item_events/HealthItemEventRouter.d.ts -------------------------------------------------------------------------------- /types/routers/item_events/HideoutItemEventRouter.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/routers/item_events/HideoutItemEventRouter.d.ts -------------------------------------------------------------------------------- /types/routers/item_events/InsuranceItemEventRouter.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/routers/item_events/InsuranceItemEventRouter.d.ts -------------------------------------------------------------------------------- /types/routers/item_events/InventoryItemEventRouter.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/routers/item_events/InventoryItemEventRouter.d.ts -------------------------------------------------------------------------------- /types/routers/item_events/NoteItemEventRouter.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/routers/item_events/NoteItemEventRouter.d.ts -------------------------------------------------------------------------------- /types/routers/item_events/QuestItemEventRouter.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/routers/item_events/QuestItemEventRouter.d.ts -------------------------------------------------------------------------------- /types/routers/item_events/RagfairItemEventRouter.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/routers/item_events/RagfairItemEventRouter.d.ts -------------------------------------------------------------------------------- /types/routers/item_events/RepairItemEventRouter.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/routers/item_events/RepairItemEventRouter.d.ts -------------------------------------------------------------------------------- /types/routers/item_events/TradeItemEventRouter.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/routers/item_events/TradeItemEventRouter.d.ts -------------------------------------------------------------------------------- /types/routers/item_events/WishlistItemEventRouter.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/routers/item_events/WishlistItemEventRouter.d.ts -------------------------------------------------------------------------------- /types/routers/save_load/HealthSaveLoadRouter.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/routers/save_load/HealthSaveLoadRouter.d.ts -------------------------------------------------------------------------------- /types/routers/save_load/InraidSaveLoadRouter.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/routers/save_load/InraidSaveLoadRouter.d.ts -------------------------------------------------------------------------------- /types/routers/save_load/InsuranceSaveLoadRouter.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/routers/save_load/InsuranceSaveLoadRouter.d.ts -------------------------------------------------------------------------------- /types/routers/save_load/ProfileSaveLoadRouter.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/routers/save_load/ProfileSaveLoadRouter.d.ts -------------------------------------------------------------------------------- /types/routers/serializers/BundleSerializer.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/routers/serializers/BundleSerializer.d.ts -------------------------------------------------------------------------------- /types/routers/serializers/ImageSerializer.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/routers/serializers/ImageSerializer.d.ts -------------------------------------------------------------------------------- /types/routers/serializers/NotifySerializer.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/routers/serializers/NotifySerializer.d.ts -------------------------------------------------------------------------------- /types/routers/static/AchievementStaticRouter.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/routers/static/AchievementStaticRouter.d.ts -------------------------------------------------------------------------------- /types/routers/static/BotStaticRouter.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/routers/static/BotStaticRouter.d.ts -------------------------------------------------------------------------------- /types/routers/static/BuildStaticRouter.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/routers/static/BuildStaticRouter.d.ts -------------------------------------------------------------------------------- /types/routers/static/BundleStaticRouter.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/routers/static/BundleStaticRouter.d.ts -------------------------------------------------------------------------------- /types/routers/static/ClientLogStaticRouter.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/routers/static/ClientLogStaticRouter.d.ts -------------------------------------------------------------------------------- /types/routers/static/CustomizationStaticRouter.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/routers/static/CustomizationStaticRouter.d.ts -------------------------------------------------------------------------------- /types/routers/static/DataStaticRouter.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/routers/static/DataStaticRouter.d.ts -------------------------------------------------------------------------------- /types/routers/static/DialogStaticRouter.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/routers/static/DialogStaticRouter.d.ts -------------------------------------------------------------------------------- /types/routers/static/GameStaticRouter.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/routers/static/GameStaticRouter.d.ts -------------------------------------------------------------------------------- /types/routers/static/HealthStaticRouter.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/routers/static/HealthStaticRouter.d.ts -------------------------------------------------------------------------------- /types/routers/static/InraidStaticRouter.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/routers/static/InraidStaticRouter.d.ts -------------------------------------------------------------------------------- /types/routers/static/InsuranceStaticRouter.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/routers/static/InsuranceStaticRouter.d.ts -------------------------------------------------------------------------------- /types/routers/static/ItemEventStaticRouter.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/routers/static/ItemEventStaticRouter.d.ts -------------------------------------------------------------------------------- /types/routers/static/LauncherStaticRouter.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/routers/static/LauncherStaticRouter.d.ts -------------------------------------------------------------------------------- /types/routers/static/LocationStaticRouter.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/routers/static/LocationStaticRouter.d.ts -------------------------------------------------------------------------------- /types/routers/static/MatchStaticRouter.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/routers/static/MatchStaticRouter.d.ts -------------------------------------------------------------------------------- /types/routers/static/NotifierStaticRouter.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/routers/static/NotifierStaticRouter.d.ts -------------------------------------------------------------------------------- /types/routers/static/PrestigeStaticRouter.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/routers/static/PrestigeStaticRouter.d.ts -------------------------------------------------------------------------------- /types/routers/static/ProfileStaticRouter.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/routers/static/ProfileStaticRouter.d.ts -------------------------------------------------------------------------------- /types/routers/static/QuestStaticRouter.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/routers/static/QuestStaticRouter.d.ts -------------------------------------------------------------------------------- /types/routers/static/RagfairStaticRouter.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/routers/static/RagfairStaticRouter.d.ts -------------------------------------------------------------------------------- /types/routers/static/TraderStaticRouter.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/routers/static/TraderStaticRouter.d.ts -------------------------------------------------------------------------------- /types/routers/static/WeatherStaticRouter.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/routers/static/WeatherStaticRouter.d.ts -------------------------------------------------------------------------------- /types/servers/ConfigServer.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/servers/ConfigServer.d.ts -------------------------------------------------------------------------------- /types/servers/DatabaseServer.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/servers/DatabaseServer.d.ts -------------------------------------------------------------------------------- /types/servers/HttpServer.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/servers/HttpServer.d.ts -------------------------------------------------------------------------------- /types/servers/RagfairServer.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/servers/RagfairServer.d.ts -------------------------------------------------------------------------------- /types/servers/SaveServer.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/servers/SaveServer.d.ts -------------------------------------------------------------------------------- /types/servers/WebSocketServer.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/servers/WebSocketServer.d.ts -------------------------------------------------------------------------------- /types/servers/http/HttpMethods.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/servers/http/HttpMethods.d.ts -------------------------------------------------------------------------------- /types/servers/http/IHttpListener.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/servers/http/IHttpListener.d.ts -------------------------------------------------------------------------------- /types/servers/http/SptHttpListener.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/servers/http/SptHttpListener.d.ts -------------------------------------------------------------------------------- /types/servers/ws/IWebSocketConnectionHandler.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/servers/ws/IWebSocketConnectionHandler.d.ts -------------------------------------------------------------------------------- /types/servers/ws/SPTWebsocket.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/servers/ws/SPTWebsocket.d.ts -------------------------------------------------------------------------------- /types/servers/ws/SptWebSocketConnectionHandler.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/servers/ws/SptWebSocketConnectionHandler.d.ts -------------------------------------------------------------------------------- /types/servers/ws/message/ISptWebSocketMessageHandler.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/servers/ws/message/ISptWebSocketMessageHandler.d.ts -------------------------------------------------------------------------------- /types/services/AirdropService.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/services/AirdropService.d.ts -------------------------------------------------------------------------------- /types/services/BackupService.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/services/BackupService.d.ts -------------------------------------------------------------------------------- /types/services/BotEquipmentFilterService.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/services/BotEquipmentFilterService.d.ts -------------------------------------------------------------------------------- /types/services/BotEquipmentModPoolService.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/services/BotEquipmentModPoolService.d.ts -------------------------------------------------------------------------------- /types/services/BotGenerationCacheService.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/services/BotGenerationCacheService.d.ts -------------------------------------------------------------------------------- /types/services/BotLootCacheService.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/services/BotLootCacheService.d.ts -------------------------------------------------------------------------------- /types/services/BotNameService.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/services/BotNameService.d.ts -------------------------------------------------------------------------------- /types/services/BotWeaponModLimitService.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/services/BotWeaponModLimitService.d.ts -------------------------------------------------------------------------------- /types/services/CircleOfCultistService.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/services/CircleOfCultistService.d.ts -------------------------------------------------------------------------------- /types/services/CreateProfileService.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/services/CreateProfileService.d.ts -------------------------------------------------------------------------------- /types/services/CustomLocationWaveService.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/services/CustomLocationWaveService.d.ts -------------------------------------------------------------------------------- /types/services/DatabaseService.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/services/DatabaseService.d.ts -------------------------------------------------------------------------------- /types/services/FenceService.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/services/FenceService.d.ts -------------------------------------------------------------------------------- /types/services/GiftService.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/services/GiftService.d.ts -------------------------------------------------------------------------------- /types/services/InMemoryCacheService.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/services/InMemoryCacheService.d.ts -------------------------------------------------------------------------------- /types/services/InsuranceService.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/services/InsuranceService.d.ts -------------------------------------------------------------------------------- /types/services/ItemBaseClassService.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/services/ItemBaseClassService.d.ts -------------------------------------------------------------------------------- /types/services/ItemFilterService.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/services/ItemFilterService.d.ts -------------------------------------------------------------------------------- /types/services/LegacyLocationLifecycleService.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/services/LegacyLocationLifecycleService.d.ts -------------------------------------------------------------------------------- /types/services/LocaleService.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/services/LocaleService.d.ts -------------------------------------------------------------------------------- /types/services/LocalisationService.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/services/LocalisationService.d.ts -------------------------------------------------------------------------------- /types/services/LocationLifecycleService.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/services/LocationLifecycleService.d.ts -------------------------------------------------------------------------------- /types/services/MailSendService.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/services/MailSendService.d.ts -------------------------------------------------------------------------------- /types/services/MapMarkerService.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/services/MapMarkerService.d.ts -------------------------------------------------------------------------------- /types/services/MatchBotDetailsCacheService.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/services/MatchBotDetailsCacheService.d.ts -------------------------------------------------------------------------------- /types/services/MatchLocationService.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/services/MatchLocationService.d.ts -------------------------------------------------------------------------------- /types/services/ModCompilerService.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/services/ModCompilerService.d.ts -------------------------------------------------------------------------------- /types/services/NotificationService.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/services/NotificationService.d.ts -------------------------------------------------------------------------------- /types/services/OpenZoneService.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/services/OpenZoneService.d.ts -------------------------------------------------------------------------------- /types/services/PaymentService.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/services/PaymentService.d.ts -------------------------------------------------------------------------------- /types/services/PlayerService.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/services/PlayerService.d.ts -------------------------------------------------------------------------------- /types/services/PmcChatResponseService.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/services/PmcChatResponseService.d.ts -------------------------------------------------------------------------------- /types/services/PostDbLoadService.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/services/PostDbLoadService.d.ts -------------------------------------------------------------------------------- /types/services/ProfileActivityService.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/services/ProfileActivityService.d.ts -------------------------------------------------------------------------------- /types/services/ProfileFixerService.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/services/ProfileFixerService.d.ts -------------------------------------------------------------------------------- /types/services/RagfairCategoriesService.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/services/RagfairCategoriesService.d.ts -------------------------------------------------------------------------------- /types/services/RagfairLinkedItemService.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/services/RagfairLinkedItemService.d.ts -------------------------------------------------------------------------------- /types/services/RagfairOfferService.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/services/RagfairOfferService.d.ts -------------------------------------------------------------------------------- /types/services/RagfairPriceService.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/services/RagfairPriceService.d.ts -------------------------------------------------------------------------------- /types/services/RagfairRequiredItemsService.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/services/RagfairRequiredItemsService.d.ts -------------------------------------------------------------------------------- /types/services/RagfairTaxService.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/services/RagfairTaxService.d.ts -------------------------------------------------------------------------------- /types/services/RaidTimeAdjustmentService.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/services/RaidTimeAdjustmentService.d.ts -------------------------------------------------------------------------------- /types/services/RaidWeatherService.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/services/RaidWeatherService.d.ts -------------------------------------------------------------------------------- /types/services/RepairService.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/services/RepairService.d.ts -------------------------------------------------------------------------------- /types/services/SeasonalEventService.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/services/SeasonalEventService.d.ts -------------------------------------------------------------------------------- /types/services/TraderAssortService.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/services/TraderAssortService.d.ts -------------------------------------------------------------------------------- /types/services/TraderPurchasePersisterService.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/services/TraderPurchasePersisterService.d.ts -------------------------------------------------------------------------------- /types/services/cache/BundleHashCacheService.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/services/cache/BundleHashCacheService.d.ts -------------------------------------------------------------------------------- /types/services/cache/ModHashCacheService.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/services/cache/ModHashCacheService.d.ts -------------------------------------------------------------------------------- /types/services/mod/CustomItemService.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/services/mod/CustomItemService.d.ts -------------------------------------------------------------------------------- /types/services/mod/dynamicRouter/DynamicRouterMod.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/services/mod/dynamicRouter/DynamicRouterMod.d.ts -------------------------------------------------------------------------------- /types/services/mod/httpListener/HttpListenerMod.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/services/mod/httpListener/HttpListenerMod.d.ts -------------------------------------------------------------------------------- /types/services/mod/image/imageRouteService.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/services/mod/image/imageRouteService.d.ts -------------------------------------------------------------------------------- /types/services/mod/onLoad/OnLoadMod.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/services/mod/onLoad/OnLoadMod.d.ts -------------------------------------------------------------------------------- /types/services/mod/onLoad/OnLoadModService.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/services/mod/onLoad/OnLoadModService.d.ts -------------------------------------------------------------------------------- /types/services/mod/onUpdate/OnUpdateMod.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/services/mod/onUpdate/OnUpdateMod.d.ts -------------------------------------------------------------------------------- /types/services/mod/onUpdate/OnUpdateModService.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/services/mod/onUpdate/OnUpdateModService.d.ts -------------------------------------------------------------------------------- /types/services/mod/staticRouter/StaticRouterMod.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/services/mod/staticRouter/StaticRouterMod.d.ts -------------------------------------------------------------------------------- /types/tools/ItemTplGenerator/ItemTplGenerator.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/tools/ItemTplGenerator/ItemTplGenerator.d.ts -------------------------------------------------------------------------------- /types/tools/ItemTplGenerator/ItemTplGeneratorProgram.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/tools/ItemTplGenerator/ItemTplGeneratorProgram.d.ts -------------------------------------------------------------------------------- /types/tools/ItemTplGenerator/itemOverrides.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/tools/ItemTplGenerator/itemOverrides.d.ts -------------------------------------------------------------------------------- /types/tools/ProductionQuestsGen/ProductionQuestsGen.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/tools/ProductionQuestsGen/ProductionQuestsGen.d.ts -------------------------------------------------------------------------------- /types/utils/App.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/utils/App.d.ts -------------------------------------------------------------------------------- /types/utils/CompareUtil.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/utils/CompareUtil.d.ts -------------------------------------------------------------------------------- /types/utils/DatabaseImporter.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/utils/DatabaseImporter.d.ts -------------------------------------------------------------------------------- /types/utils/EncodingUtil.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/utils/EncodingUtil.d.ts -------------------------------------------------------------------------------- /types/utils/FileSystem.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/utils/FileSystem.d.ts -------------------------------------------------------------------------------- /types/utils/FileSystemSync.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/utils/FileSystemSync.d.ts -------------------------------------------------------------------------------- /types/utils/HashUtil.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/utils/HashUtil.d.ts -------------------------------------------------------------------------------- /types/utils/HttpFileUtil.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/utils/HttpFileUtil.d.ts -------------------------------------------------------------------------------- /types/utils/HttpResponseUtil.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/utils/HttpResponseUtil.d.ts -------------------------------------------------------------------------------- /types/utils/ImporterUtil.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/utils/ImporterUtil.d.ts -------------------------------------------------------------------------------- /types/utils/JsonUtil.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/utils/JsonUtil.d.ts -------------------------------------------------------------------------------- /types/utils/MathUtil.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/utils/MathUtil.d.ts -------------------------------------------------------------------------------- /types/utils/ObjectId.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/utils/ObjectId.d.ts -------------------------------------------------------------------------------- /types/utils/ProgressWriter.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/utils/ProgressWriter.d.ts -------------------------------------------------------------------------------- /types/utils/RagfairOfferHolder.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/utils/RagfairOfferHolder.d.ts -------------------------------------------------------------------------------- /types/utils/RandomUtil.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/utils/RandomUtil.d.ts -------------------------------------------------------------------------------- /types/utils/TimeUtil.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/utils/TimeUtil.d.ts -------------------------------------------------------------------------------- /types/utils/Timer.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/utils/Timer.d.ts -------------------------------------------------------------------------------- /types/utils/Watermark.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/utils/Watermark.d.ts -------------------------------------------------------------------------------- /types/utils/cloners/ICloner.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/utils/cloners/ICloner.d.ts -------------------------------------------------------------------------------- /types/utils/cloners/JsonCloner.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/utils/cloners/JsonCloner.d.ts -------------------------------------------------------------------------------- /types/utils/cloners/RecursiveCloner.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/utils/cloners/RecursiveCloner.d.ts -------------------------------------------------------------------------------- /types/utils/cloners/StructuredCloner.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/utils/cloners/StructuredCloner.d.ts -------------------------------------------------------------------------------- /types/utils/collections/lists/LinkedList.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/utils/collections/lists/LinkedList.d.ts -------------------------------------------------------------------------------- /types/utils/collections/lists/Nodes.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/utils/collections/lists/Nodes.d.ts -------------------------------------------------------------------------------- /types/utils/logging/AbstractWinstonLogger.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/utils/logging/AbstractWinstonLogger.d.ts -------------------------------------------------------------------------------- /types/utils/logging/WinstonMainLogger.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/utils/logging/WinstonMainLogger.d.ts -------------------------------------------------------------------------------- /types/utils/logging/WinstonRequestLogger.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwesterwick/SPTQuestingBots/HEAD/types/utils/logging/WinstonRequestLogger.d.ts --------------------------------------------------------------------------------