mirror of
https://github.com/langgenius/dify.git
synced 2026-05-13 08:57:28 +08:00
21 lines
553 B
TypeScript
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>
|