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