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

23 lines
713 B
TypeScript

// This file is auto-generated by @hey-api/openapi-ts
import { z } from 'zod'
import { zChatAppParametersResponse } from '../models/chat'
export const zGetChatAppParametersData = z.object({
body: z.never().optional(),
path: z.never().optional(),
query: z.object({
user: z.string().describe('User identifier, defined by the developer\'s rules, must be unique within the application.'),
}),
})
export type GetChatAppParametersDataZodType = z.infer<typeof zGetChatAppParametersData>
/**
* Application parameters information.
*/
export const zGetChatAppParametersResponse = zChatAppParametersResponse
export type GetChatAppParametersResponseZodType = z.infer<typeof zGetChatAppParametersResponse>