dify/web/gen/zod/api/info.ts
Stephen Zhou 4061c83b26
no sufix
2026-01-25 16:19:07 +08:00

21 lines
538 B
TypeScript

// This file is auto-generated by @hey-api/openapi-ts
import { z } from 'zod'
import { zAppInfoResponse } from '../models/app'
export const zGetChatAppInfoData = z.object({
body: z.never().optional(),
path: z.never().optional(),
query: z.never().optional(),
})
export type GetChatAppInfoDataZodType = z.infer<typeof zGetChatAppInfoData>
/**
* Basic information of the application.
*/
export const zGetChatAppInfoResponse = zAppInfoResponse
export type GetChatAppInfoResponseZodType = z.infer<typeof zGetChatAppInfoResponse>