-
Notifications
You must be signed in to change notification settings - Fork 45
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
76329d4
commit 789d4f3
Showing
47 changed files
with
221 additions
and
131 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
import { IncomingMessage, ServerResponse } from "node:http"; | ||
export declare class Serializer { | ||
serialize(sessionID: string, req: IncomingMessage, resp: ServerResponse, body: any): void; | ||
serialize(sessionID: string, req: IncomingMessage, resp: ServerResponse, body: any): Promise<void>; | ||
canHandle(something: string): boolean; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
export interface ISendSurveyOpinionRequest { | ||
surveyId: number; | ||
answers: ISurveyOpinionAnswer[]; | ||
} | ||
export interface ISurveyOpinionAnswer { | ||
questionId: number; | ||
answerType: string; | ||
answers: any; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
export interface ISurveyResponseData { | ||
locale: Record<string, Record<string, string>>; | ||
survey: ISurvey; | ||
} | ||
export interface ISurvey { | ||
id: number; | ||
welcomePageData: IWelcomePageData; | ||
farewellPageData: IFarewellPageData; | ||
pages: number[][]; | ||
questions: ISurveyQuestion[]; | ||
isNew: boolean; | ||
} | ||
export interface IWelcomePageData { | ||
titleLocaleKey: string; | ||
timeLocaleKey: string; | ||
descriptionLocaleKey: string; | ||
} | ||
export interface IFarewellPageData { | ||
textLocaleKey: string; | ||
} | ||
export interface ISurveyQuestion { | ||
id: number; | ||
sortIndex: number; | ||
titleLocaleKey: string; | ||
hintLocaleKey: string; | ||
answerLimit: number; | ||
answerType: string; | ||
answers: ISurveyAnswer[]; | ||
} | ||
export interface ISurveyAnswer { | ||
id: number; | ||
questionId: number; | ||
sortIndex: number; | ||
localeKey: string; | ||
} |
5 changes: 0 additions & 5 deletions
5
types/models/eft/hideout/HideoutUpgradeCompleteRequestData.d.ts
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,3 @@ | ||
import { IPostRaidPmcData } from "@spt/models/eft/common/IPmcData"; | ||
export interface IScavSaveRequestData { | ||
profile: IPostRaidPmcData; | ||
export interface IScavSaveRequestData extends IPostRaidPmcData { | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,8 @@ | ||
export declare enum ExitStatus { | ||
SURVIVED = 0, | ||
KILLED = 1, | ||
LEFT = 2, | ||
RUNNER = 3, | ||
MISSINGINACTION = 4 | ||
SURVIVED = "Survived", | ||
KILLED = "Killed", | ||
LEFT = "Left", | ||
RUNNER = "Runner", | ||
MISSINGINACTION = "MissingInAction", | ||
TRANSIT = "Transit" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.