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

21 lines
646 B
TypeScript

// This file is auto-generated by @hey-api/openapi-ts
import { z } from 'zod'
import { zGetChatAppFeedbacksData, zGetChatAppFeedbacksResponse } from '../../zod/api/app'
import { base } from '../common'
/**
* Get feedbacks of application
*
* Get application's feedbacks.
*/
export const getChatAppFeedbacksContract = base.route({
path: '/app/feedbacks',
method: 'GET',
operationId: 'getChatAppFeedbacks',
summary: 'Get feedbacks of application',
description: 'Get application\'s feedbacks.',
tags: ['Feedback'],
}).input(zGetChatAppFeedbacksData).output(z.object({ body: zGetChatAppFeedbacksResponse, status: z.literal(200) }))