mirror of
https://github.com/langgenius/dify.git
synced 2026-05-12 15:58:19 +08:00
12 lines
295 B
TypeScript
12 lines
295 B
TypeScript
// This file is auto-generated by @hey-api/openapi-ts
|
|
|
|
import { z } from 'zod'
|
|
|
|
export const zErrorResponse = z.object({
|
|
status: z.number().int().optional(),
|
|
code: z.string().optional(),
|
|
message: z.string().optional(),
|
|
})
|
|
|
|
export type ErrorResponseZodType = z.infer<typeof zErrorResponse>
|