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

24 lines
792 B
TypeScript

// This file is auto-generated by @hey-api/openapi-ts
import { z } from 'zod'
import { zAppFeedbacksResponse } from '../models/app'
export const zGetChatAppFeedbacksData = z.object({
body: z.never().optional(),
path: z.never().optional(),
query: z.object({
page: z.number().int().describe('(optional) Pagination page number. Default: 1').optional().default(1),
limit: z.number().int().describe('(optional) Records per page. Default: 20').optional().default(20),
}).optional(),
})
export type GetChatAppFeedbacksDataZodType = z.infer<typeof zGetChatAppFeedbacksData>
/**
* A list of application feedbacks.
*/
export const zGetChatAppFeedbacksResponse = zAppFeedbacksResponse
export type GetChatAppFeedbacksResponseZodType = z.infer<typeof zGetChatAppFeedbacksResponse>