mirror of
https://github.com/langgenius/dify.git
synced 2026-05-28 04:43:33 +08:00
fix
This commit is contained in:
@ -142,7 +142,7 @@ class ParserReadme(BaseModel):
|
||||
class PluginDebuggingKeyResponse(ResponseModel):
|
||||
key: str
|
||||
host: str
|
||||
port: int | str
|
||||
port: int
|
||||
|
||||
|
||||
register_schema_models(
|
||||
|
||||
@ -228,7 +228,7 @@ export type WorkspacePermissionResponse = {
|
||||
export type PluginDebuggingKeyResponse = {
|
||||
host: string
|
||||
key: string
|
||||
port: unknown
|
||||
port: number
|
||||
}
|
||||
|
||||
export type ParserGithubInstall = {
|
||||
|
||||
@ -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(),
|
||||
})
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user