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