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

21 lines
553 B
TypeScript

// This file is auto-generated by @hey-api/openapi-ts
import { z } from 'zod'
import { zAppMetaResponse } from '../models/app'
export const zGetChatAppMetaData = z.object({
body: z.never().optional(),
path: z.never().optional(),
query: z.never().optional(),
})
export type GetChatAppMetaDataZodType = z.infer<typeof zGetChatAppMetaData>
/**
* Successfully retrieved application meta information.
*/
export const zGetChatAppMetaResponse = zAppMetaResponse
export type GetChatAppMetaResponseZodType = z.infer<typeof zGetChatAppMetaResponse>