mirror of
https://github.com/langgenius/dify.git
synced 2026-03-23 15:27:53 +08:00
21 lines
646 B
TypeScript
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) }))
|