mirror of
https://gitea.toothfairyai.com/ToothFairyAI/tf_code.git
synced 2026-03-30 05:43:55 +00:00
chore: generate
This commit is contained in:
parent
cec16dfe95
commit
fcd733e3d6
File diff suppressed because it is too large
Load Diff
@ -2051,6 +2051,7 @@ export type ProjectListData = {
|
||||
path?: never
|
||||
query?: {
|
||||
directory?: string
|
||||
workspace?: string
|
||||
}
|
||||
url: "/project"
|
||||
}
|
||||
@ -2069,6 +2070,7 @@ export type ProjectCurrentData = {
|
||||
path?: never
|
||||
query?: {
|
||||
directory?: string
|
||||
workspace?: string
|
||||
}
|
||||
url: "/project/current"
|
||||
}
|
||||
@ -2102,6 +2104,7 @@ export type ProjectUpdateData = {
|
||||
}
|
||||
query?: {
|
||||
directory?: string
|
||||
workspace?: string
|
||||
}
|
||||
url: "/project/{projectID}"
|
||||
}
|
||||
@ -2133,6 +2136,7 @@ export type PtyListData = {
|
||||
path?: never
|
||||
query?: {
|
||||
directory?: string
|
||||
workspace?: string
|
||||
}
|
||||
url: "/pty"
|
||||
}
|
||||
@ -2159,6 +2163,7 @@ export type PtyCreateData = {
|
||||
path?: never
|
||||
query?: {
|
||||
directory?: string
|
||||
workspace?: string
|
||||
}
|
||||
url: "/pty"
|
||||
}
|
||||
@ -2188,6 +2193,7 @@ export type PtyRemoveData = {
|
||||
}
|
||||
query?: {
|
||||
directory?: string
|
||||
workspace?: string
|
||||
}
|
||||
url: "/pty/{ptyID}"
|
||||
}
|
||||
@ -2217,6 +2223,7 @@ export type PtyGetData = {
|
||||
}
|
||||
query?: {
|
||||
directory?: string
|
||||
workspace?: string
|
||||
}
|
||||
url: "/pty/{ptyID}"
|
||||
}
|
||||
@ -2252,6 +2259,7 @@ export type PtyUpdateData = {
|
||||
}
|
||||
query?: {
|
||||
directory?: string
|
||||
workspace?: string
|
||||
}
|
||||
url: "/pty/{ptyID}"
|
||||
}
|
||||
@ -2281,6 +2289,7 @@ export type PtyConnectData = {
|
||||
}
|
||||
query?: {
|
||||
directory?: string
|
||||
workspace?: string
|
||||
}
|
||||
url: "/pty/{ptyID}/connect"
|
||||
}
|
||||
@ -2308,6 +2317,7 @@ export type ConfigGetData = {
|
||||
path?: never
|
||||
query?: {
|
||||
directory?: string
|
||||
workspace?: string
|
||||
}
|
||||
url: "/config"
|
||||
}
|
||||
@ -2326,6 +2336,7 @@ export type ConfigUpdateData = {
|
||||
path?: never
|
||||
query?: {
|
||||
directory?: string
|
||||
workspace?: string
|
||||
}
|
||||
url: "/config"
|
||||
}
|
||||
@ -2353,6 +2364,7 @@ export type ConfigProvidersData = {
|
||||
path?: never
|
||||
query?: {
|
||||
directory?: string
|
||||
workspace?: string
|
||||
}
|
||||
url: "/config/providers"
|
||||
}
|
||||
@ -2376,6 +2388,7 @@ export type ToolIdsData = {
|
||||
path?: never
|
||||
query?: {
|
||||
directory?: string
|
||||
workspace?: string
|
||||
}
|
||||
url: "/experimental/tool/ids"
|
||||
}
|
||||
@ -2403,6 +2416,7 @@ export type ToolListData = {
|
||||
path?: never
|
||||
query: {
|
||||
directory?: string
|
||||
workspace?: string
|
||||
provider: string
|
||||
model: string
|
||||
}
|
||||
@ -2432,6 +2446,7 @@ export type WorktreeRemoveData = {
|
||||
path?: never
|
||||
query?: {
|
||||
directory?: string
|
||||
workspace?: string
|
||||
}
|
||||
url: "/experimental/worktree"
|
||||
}
|
||||
@ -2459,6 +2474,7 @@ export type WorktreeListData = {
|
||||
path?: never
|
||||
query?: {
|
||||
directory?: string
|
||||
workspace?: string
|
||||
}
|
||||
url: "/experimental/worktree"
|
||||
}
|
||||
@ -2477,6 +2493,7 @@ export type WorktreeCreateData = {
|
||||
path?: never
|
||||
query?: {
|
||||
directory?: string
|
||||
workspace?: string
|
||||
}
|
||||
url: "/experimental/worktree"
|
||||
}
|
||||
@ -2506,6 +2523,7 @@ export type ExperimentalWorkspaceRemoveData = {
|
||||
}
|
||||
query?: {
|
||||
directory?: string
|
||||
workspace?: string
|
||||
}
|
||||
url: "/experimental/workspace/{id}"
|
||||
}
|
||||
@ -2543,6 +2561,7 @@ export type ExperimentalWorkspaceCreateData = {
|
||||
}
|
||||
query?: {
|
||||
directory?: string
|
||||
workspace?: string
|
||||
}
|
||||
url: "/experimental/workspace/{id}"
|
||||
}
|
||||
@ -2572,6 +2591,7 @@ export type ExperimentalWorkspaceListData = {
|
||||
path?: never
|
||||
query?: {
|
||||
directory?: string
|
||||
workspace?: string
|
||||
}
|
||||
url: "/experimental/workspace"
|
||||
}
|
||||
@ -2591,6 +2611,7 @@ export type WorktreeResetData = {
|
||||
path?: never
|
||||
query?: {
|
||||
directory?: string
|
||||
workspace?: string
|
||||
}
|
||||
url: "/experimental/worktree/reset"
|
||||
}
|
||||
@ -2621,6 +2642,7 @@ export type ExperimentalSessionListData = {
|
||||
* Filter sessions by project directory
|
||||
*/
|
||||
directory?: string
|
||||
workspace?: string
|
||||
/**
|
||||
* Only return root sessions (no parentID)
|
||||
*/
|
||||
@ -2663,6 +2685,7 @@ export type ExperimentalResourceListData = {
|
||||
path?: never
|
||||
query?: {
|
||||
directory?: string
|
||||
workspace?: string
|
||||
}
|
||||
url: "/experimental/resource"
|
||||
}
|
||||
@ -2687,6 +2710,7 @@ export type SessionListData = {
|
||||
* Filter sessions by project directory
|
||||
*/
|
||||
directory?: string
|
||||
workspace?: string
|
||||
/**
|
||||
* Only return root sessions (no parentID)
|
||||
*/
|
||||
@ -2725,6 +2749,7 @@ export type SessionCreateData = {
|
||||
path?: never
|
||||
query?: {
|
||||
directory?: string
|
||||
workspace?: string
|
||||
}
|
||||
url: "/session"
|
||||
}
|
||||
@ -2752,6 +2777,7 @@ export type SessionStatusData = {
|
||||
path?: never
|
||||
query?: {
|
||||
directory?: string
|
||||
workspace?: string
|
||||
}
|
||||
url: "/session/status"
|
||||
}
|
||||
@ -2783,6 +2809,7 @@ export type SessionDeleteData = {
|
||||
}
|
||||
query?: {
|
||||
directory?: string
|
||||
workspace?: string
|
||||
}
|
||||
url: "/session/{sessionID}"
|
||||
}
|
||||
@ -2816,6 +2843,7 @@ export type SessionGetData = {
|
||||
}
|
||||
query?: {
|
||||
directory?: string
|
||||
workspace?: string
|
||||
}
|
||||
url: "/session/{sessionID}"
|
||||
}
|
||||
@ -2854,6 +2882,7 @@ export type SessionUpdateData = {
|
||||
}
|
||||
query?: {
|
||||
directory?: string
|
||||
workspace?: string
|
||||
}
|
||||
url: "/session/{sessionID}"
|
||||
}
|
||||
@ -2887,6 +2916,7 @@ export type SessionChildrenData = {
|
||||
}
|
||||
query?: {
|
||||
directory?: string
|
||||
workspace?: string
|
||||
}
|
||||
url: "/session/{sessionID}/children"
|
||||
}
|
||||
@ -2923,6 +2953,7 @@ export type SessionTodoData = {
|
||||
}
|
||||
query?: {
|
||||
directory?: string
|
||||
workspace?: string
|
||||
}
|
||||
url: "/session/{sessionID}/todo"
|
||||
}
|
||||
@ -2963,6 +2994,7 @@ export type SessionInitData = {
|
||||
}
|
||||
query?: {
|
||||
directory?: string
|
||||
workspace?: string
|
||||
}
|
||||
url: "/session/{sessionID}/init"
|
||||
}
|
||||
@ -2998,6 +3030,7 @@ export type SessionForkData = {
|
||||
}
|
||||
query?: {
|
||||
directory?: string
|
||||
workspace?: string
|
||||
}
|
||||
url: "/session/{sessionID}/fork"
|
||||
}
|
||||
@ -3018,6 +3051,7 @@ export type SessionAbortData = {
|
||||
}
|
||||
query?: {
|
||||
directory?: string
|
||||
workspace?: string
|
||||
}
|
||||
url: "/session/{sessionID}/abort"
|
||||
}
|
||||
@ -3051,6 +3085,7 @@ export type SessionUnshareData = {
|
||||
}
|
||||
query?: {
|
||||
directory?: string
|
||||
workspace?: string
|
||||
}
|
||||
url: "/session/{sessionID}/share"
|
||||
}
|
||||
@ -3084,6 +3119,7 @@ export type SessionShareData = {
|
||||
}
|
||||
query?: {
|
||||
directory?: string
|
||||
workspace?: string
|
||||
}
|
||||
url: "/session/{sessionID}/share"
|
||||
}
|
||||
@ -3117,6 +3153,7 @@ export type SessionDiffData = {
|
||||
}
|
||||
query?: {
|
||||
directory?: string
|
||||
workspace?: string
|
||||
messageID?: string
|
||||
}
|
||||
url: "/session/{sessionID}/diff"
|
||||
@ -3145,6 +3182,7 @@ export type SessionSummarizeData = {
|
||||
}
|
||||
query?: {
|
||||
directory?: string
|
||||
workspace?: string
|
||||
}
|
||||
url: "/session/{sessionID}/summarize"
|
||||
}
|
||||
@ -3181,6 +3219,7 @@ export type SessionMessagesData = {
|
||||
}
|
||||
query?: {
|
||||
directory?: string
|
||||
workspace?: string
|
||||
limit?: number
|
||||
}
|
||||
url: "/session/{sessionID}/message"
|
||||
@ -3239,6 +3278,7 @@ export type SessionPromptData = {
|
||||
}
|
||||
query?: {
|
||||
directory?: string
|
||||
workspace?: string
|
||||
}
|
||||
url: "/session/{sessionID}/message"
|
||||
}
|
||||
@ -3282,6 +3322,7 @@ export type SessionDeleteMessageData = {
|
||||
}
|
||||
query?: {
|
||||
directory?: string
|
||||
workspace?: string
|
||||
}
|
||||
url: "/session/{sessionID}/message/{messageID}"
|
||||
}
|
||||
@ -3322,6 +3363,7 @@ export type SessionMessageData = {
|
||||
}
|
||||
query?: {
|
||||
directory?: string
|
||||
workspace?: string
|
||||
}
|
||||
url: "/session/{sessionID}/message/{messageID}"
|
||||
}
|
||||
@ -3369,6 +3411,7 @@ export type PartDeleteData = {
|
||||
}
|
||||
query?: {
|
||||
directory?: string
|
||||
workspace?: string
|
||||
}
|
||||
url: "/session/{sessionID}/message/{messageID}/part/{partID}"
|
||||
}
|
||||
@ -3413,6 +3456,7 @@ export type PartUpdateData = {
|
||||
}
|
||||
query?: {
|
||||
directory?: string
|
||||
workspace?: string
|
||||
}
|
||||
url: "/session/{sessionID}/message/{messageID}/part/{partID}"
|
||||
}
|
||||
@ -3467,6 +3511,7 @@ export type SessionPromptAsyncData = {
|
||||
}
|
||||
query?: {
|
||||
directory?: string
|
||||
workspace?: string
|
||||
}
|
||||
url: "/session/{sessionID}/prompt_async"
|
||||
}
|
||||
@ -3518,6 +3563,7 @@ export type SessionCommandData = {
|
||||
}
|
||||
query?: {
|
||||
directory?: string
|
||||
workspace?: string
|
||||
}
|
||||
url: "/session/{sessionID}/command"
|
||||
}
|
||||
@ -3564,6 +3610,7 @@ export type SessionShellData = {
|
||||
}
|
||||
query?: {
|
||||
directory?: string
|
||||
workspace?: string
|
||||
}
|
||||
url: "/session/{sessionID}/shell"
|
||||
}
|
||||
@ -3600,6 +3647,7 @@ export type SessionRevertData = {
|
||||
}
|
||||
query?: {
|
||||
directory?: string
|
||||
workspace?: string
|
||||
}
|
||||
url: "/session/{sessionID}/revert"
|
||||
}
|
||||
@ -3633,6 +3681,7 @@ export type SessionUnrevertData = {
|
||||
}
|
||||
query?: {
|
||||
directory?: string
|
||||
workspace?: string
|
||||
}
|
||||
url: "/session/{sessionID}/unrevert"
|
||||
}
|
||||
@ -3669,6 +3718,7 @@ export type PermissionRespondData = {
|
||||
}
|
||||
query?: {
|
||||
directory?: string
|
||||
workspace?: string
|
||||
}
|
||||
url: "/session/{sessionID}/permissions/{permissionID}"
|
||||
}
|
||||
@ -3705,6 +3755,7 @@ export type PermissionReplyData = {
|
||||
}
|
||||
query?: {
|
||||
directory?: string
|
||||
workspace?: string
|
||||
}
|
||||
url: "/permission/{requestID}/reply"
|
||||
}
|
||||
@ -3736,6 +3787,7 @@ export type PermissionListData = {
|
||||
path?: never
|
||||
query?: {
|
||||
directory?: string
|
||||
workspace?: string
|
||||
}
|
||||
url: "/permission"
|
||||
}
|
||||
@ -3754,6 +3806,7 @@ export type QuestionListData = {
|
||||
path?: never
|
||||
query?: {
|
||||
directory?: string
|
||||
workspace?: string
|
||||
}
|
||||
url: "/question"
|
||||
}
|
||||
@ -3779,6 +3832,7 @@ export type QuestionReplyData = {
|
||||
}
|
||||
query?: {
|
||||
directory?: string
|
||||
workspace?: string
|
||||
}
|
||||
url: "/question/{requestID}/reply"
|
||||
}
|
||||
@ -3812,6 +3866,7 @@ export type QuestionRejectData = {
|
||||
}
|
||||
query?: {
|
||||
directory?: string
|
||||
workspace?: string
|
||||
}
|
||||
url: "/question/{requestID}/reject"
|
||||
}
|
||||
@ -3843,6 +3898,7 @@ export type ProviderListData = {
|
||||
path?: never
|
||||
query?: {
|
||||
directory?: string
|
||||
workspace?: string
|
||||
}
|
||||
url: "/provider"
|
||||
}
|
||||
@ -3928,6 +3984,7 @@ export type ProviderAuthData = {
|
||||
path?: never
|
||||
query?: {
|
||||
directory?: string
|
||||
workspace?: string
|
||||
}
|
||||
url: "/provider/auth"
|
||||
}
|
||||
@ -3958,6 +4015,7 @@ export type ProviderOauthAuthorizeData = {
|
||||
}
|
||||
query?: {
|
||||
directory?: string
|
||||
workspace?: string
|
||||
}
|
||||
url: "/provider/{providerID}/oauth/authorize"
|
||||
}
|
||||
@ -3999,6 +4057,7 @@ export type ProviderOauthCallbackData = {
|
||||
}
|
||||
query?: {
|
||||
directory?: string
|
||||
workspace?: string
|
||||
}
|
||||
url: "/provider/{providerID}/oauth/callback"
|
||||
}
|
||||
@ -4026,6 +4085,7 @@ export type FindTextData = {
|
||||
path?: never
|
||||
query: {
|
||||
directory?: string
|
||||
workspace?: string
|
||||
pattern: string
|
||||
}
|
||||
url: "/find"
|
||||
@ -4061,6 +4121,7 @@ export type FindFilesData = {
|
||||
path?: never
|
||||
query: {
|
||||
directory?: string
|
||||
workspace?: string
|
||||
query: string
|
||||
dirs?: "true" | "false"
|
||||
type?: "file" | "directory"
|
||||
@ -4083,6 +4144,7 @@ export type FindSymbolsData = {
|
||||
path?: never
|
||||
query: {
|
||||
directory?: string
|
||||
workspace?: string
|
||||
query: string
|
||||
}
|
||||
url: "/find/symbol"
|
||||
@ -4102,6 +4164,7 @@ export type FileListData = {
|
||||
path?: never
|
||||
query: {
|
||||
directory?: string
|
||||
workspace?: string
|
||||
path: string
|
||||
}
|
||||
url: "/file"
|
||||
@ -4121,6 +4184,7 @@ export type FileReadData = {
|
||||
path?: never
|
||||
query: {
|
||||
directory?: string
|
||||
workspace?: string
|
||||
path: string
|
||||
}
|
||||
url: "/file/content"
|
||||
@ -4140,6 +4204,7 @@ export type FileStatusData = {
|
||||
path?: never
|
||||
query?: {
|
||||
directory?: string
|
||||
workspace?: string
|
||||
}
|
||||
url: "/file/status"
|
||||
}
|
||||
@ -4158,6 +4223,7 @@ export type McpStatusData = {
|
||||
path?: never
|
||||
query?: {
|
||||
directory?: string
|
||||
workspace?: string
|
||||
}
|
||||
url: "/mcp"
|
||||
}
|
||||
@ -4181,6 +4247,7 @@ export type McpAddData = {
|
||||
path?: never
|
||||
query?: {
|
||||
directory?: string
|
||||
workspace?: string
|
||||
}
|
||||
url: "/mcp"
|
||||
}
|
||||
@ -4212,6 +4279,7 @@ export type McpAuthRemoveData = {
|
||||
}
|
||||
query?: {
|
||||
directory?: string
|
||||
workspace?: string
|
||||
}
|
||||
url: "/mcp/{name}/auth"
|
||||
}
|
||||
@ -4243,6 +4311,7 @@ export type McpAuthStartData = {
|
||||
}
|
||||
query?: {
|
||||
directory?: string
|
||||
workspace?: string
|
||||
}
|
||||
url: "/mcp/{name}/auth"
|
||||
}
|
||||
@ -4286,6 +4355,7 @@ export type McpAuthCallbackData = {
|
||||
}
|
||||
query?: {
|
||||
directory?: string
|
||||
workspace?: string
|
||||
}
|
||||
url: "/mcp/{name}/auth/callback"
|
||||
}
|
||||
@ -4319,6 +4389,7 @@ export type McpAuthAuthenticateData = {
|
||||
}
|
||||
query?: {
|
||||
directory?: string
|
||||
workspace?: string
|
||||
}
|
||||
url: "/mcp/{name}/auth/authenticate"
|
||||
}
|
||||
@ -4352,6 +4423,7 @@ export type McpConnectData = {
|
||||
}
|
||||
query?: {
|
||||
directory?: string
|
||||
workspace?: string
|
||||
}
|
||||
url: "/mcp/{name}/connect"
|
||||
}
|
||||
@ -4372,6 +4444,7 @@ export type McpDisconnectData = {
|
||||
}
|
||||
query?: {
|
||||
directory?: string
|
||||
workspace?: string
|
||||
}
|
||||
url: "/mcp/{name}/disconnect"
|
||||
}
|
||||
@ -4392,6 +4465,7 @@ export type TuiAppendPromptData = {
|
||||
path?: never
|
||||
query?: {
|
||||
directory?: string
|
||||
workspace?: string
|
||||
}
|
||||
url: "/tui/append-prompt"
|
||||
}
|
||||
@ -4419,6 +4493,7 @@ export type TuiOpenHelpData = {
|
||||
path?: never
|
||||
query?: {
|
||||
directory?: string
|
||||
workspace?: string
|
||||
}
|
||||
url: "/tui/open-help"
|
||||
}
|
||||
@ -4437,6 +4512,7 @@ export type TuiOpenSessionsData = {
|
||||
path?: never
|
||||
query?: {
|
||||
directory?: string
|
||||
workspace?: string
|
||||
}
|
||||
url: "/tui/open-sessions"
|
||||
}
|
||||
@ -4455,6 +4531,7 @@ export type TuiOpenThemesData = {
|
||||
path?: never
|
||||
query?: {
|
||||
directory?: string
|
||||
workspace?: string
|
||||
}
|
||||
url: "/tui/open-themes"
|
||||
}
|
||||
@ -4473,6 +4550,7 @@ export type TuiOpenModelsData = {
|
||||
path?: never
|
||||
query?: {
|
||||
directory?: string
|
||||
workspace?: string
|
||||
}
|
||||
url: "/tui/open-models"
|
||||
}
|
||||
@ -4491,6 +4569,7 @@ export type TuiSubmitPromptData = {
|
||||
path?: never
|
||||
query?: {
|
||||
directory?: string
|
||||
workspace?: string
|
||||
}
|
||||
url: "/tui/submit-prompt"
|
||||
}
|
||||
@ -4509,6 +4588,7 @@ export type TuiClearPromptData = {
|
||||
path?: never
|
||||
query?: {
|
||||
directory?: string
|
||||
workspace?: string
|
||||
}
|
||||
url: "/tui/clear-prompt"
|
||||
}
|
||||
@ -4529,6 +4609,7 @@ export type TuiExecuteCommandData = {
|
||||
path?: never
|
||||
query?: {
|
||||
directory?: string
|
||||
workspace?: string
|
||||
}
|
||||
url: "/tui/execute-command"
|
||||
}
|
||||
@ -4564,6 +4645,7 @@ export type TuiShowToastData = {
|
||||
path?: never
|
||||
query?: {
|
||||
directory?: string
|
||||
workspace?: string
|
||||
}
|
||||
url: "/tui/show-toast"
|
||||
}
|
||||
@ -4582,6 +4664,7 @@ export type TuiPublishData = {
|
||||
path?: never
|
||||
query?: {
|
||||
directory?: string
|
||||
workspace?: string
|
||||
}
|
||||
url: "/tui/publish"
|
||||
}
|
||||
@ -4614,6 +4697,7 @@ export type TuiSelectSessionData = {
|
||||
path?: never
|
||||
query?: {
|
||||
directory?: string
|
||||
workspace?: string
|
||||
}
|
||||
url: "/tui/select-session"
|
||||
}
|
||||
@ -4645,6 +4729,7 @@ export type TuiControlNextData = {
|
||||
path?: never
|
||||
query?: {
|
||||
directory?: string
|
||||
workspace?: string
|
||||
}
|
||||
url: "/tui/control/next"
|
||||
}
|
||||
@ -4666,6 +4751,7 @@ export type TuiControlResponseData = {
|
||||
path?: never
|
||||
query?: {
|
||||
directory?: string
|
||||
workspace?: string
|
||||
}
|
||||
url: "/tui/control/response"
|
||||
}
|
||||
@ -4684,6 +4770,7 @@ export type InstanceDisposeData = {
|
||||
path?: never
|
||||
query?: {
|
||||
directory?: string
|
||||
workspace?: string
|
||||
}
|
||||
url: "/instance/dispose"
|
||||
}
|
||||
@ -4702,6 +4789,7 @@ export type PathGetData = {
|
||||
path?: never
|
||||
query?: {
|
||||
directory?: string
|
||||
workspace?: string
|
||||
}
|
||||
url: "/path"
|
||||
}
|
||||
@ -4720,6 +4808,7 @@ export type VcsGetData = {
|
||||
path?: never
|
||||
query?: {
|
||||
directory?: string
|
||||
workspace?: string
|
||||
}
|
||||
url: "/vcs"
|
||||
}
|
||||
@ -4738,6 +4827,7 @@ export type CommandListData = {
|
||||
path?: never
|
||||
query?: {
|
||||
directory?: string
|
||||
workspace?: string
|
||||
}
|
||||
url: "/command"
|
||||
}
|
||||
@ -4775,6 +4865,7 @@ export type AppLogData = {
|
||||
path?: never
|
||||
query?: {
|
||||
directory?: string
|
||||
workspace?: string
|
||||
}
|
||||
url: "/log"
|
||||
}
|
||||
@ -4802,6 +4893,7 @@ export type AppAgentsData = {
|
||||
path?: never
|
||||
query?: {
|
||||
directory?: string
|
||||
workspace?: string
|
||||
}
|
||||
url: "/agent"
|
||||
}
|
||||
@ -4820,6 +4912,7 @@ export type AppSkillsData = {
|
||||
path?: never
|
||||
query?: {
|
||||
directory?: string
|
||||
workspace?: string
|
||||
}
|
||||
url: "/skill"
|
||||
}
|
||||
@ -4843,6 +4936,7 @@ export type LspStatusData = {
|
||||
path?: never
|
||||
query?: {
|
||||
directory?: string
|
||||
workspace?: string
|
||||
}
|
||||
url: "/lsp"
|
||||
}
|
||||
@ -4861,6 +4955,7 @@ export type FormatterStatusData = {
|
||||
path?: never
|
||||
query?: {
|
||||
directory?: string
|
||||
workspace?: string
|
||||
}
|
||||
url: "/formatter"
|
||||
}
|
||||
@ -4879,6 +4974,7 @@ export type EventSubscribeData = {
|
||||
path?: never
|
||||
query?: {
|
||||
directory?: string
|
||||
workspace?: string
|
||||
}
|
||||
url: "/event"
|
||||
}
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
Loading…
x
Reference in New Issue
Block a user