mirror of
https://github.com/langgenius/dify.git
synced 2026-05-13 00:33:37 +08:00
23 lines
713 B
TypeScript
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>
|