This commit is contained in:
Stephen Zhou
2026-05-18 17:31:04 +08:00
parent 7d2732e90c
commit d609b9d4ad
3 changed files with 3 additions and 3 deletions

View File

@ -142,7 +142,7 @@ class ParserReadme(BaseModel):
class PluginDebuggingKeyResponse(ResponseModel):
key: str
host: str
port: int | str
port: int
register_schema_models(

View File

@ -228,7 +228,7 @@ export type WorkspacePermissionResponse = {
export type PluginDebuggingKeyResponse = {
host: string
key: string
port: unknown
port: number
}
export type ParserGithubInstall = {

View File

@ -215,7 +215,7 @@ export const zWorkspacePermissionResponse = z.object({
export const zPluginDebuggingKeyResponse = z.object({
host: z.string(),
key: z.string(),
port: z.unknown(),
port: z.int(),
})
/**