dify/web/gen/orpc/api/site.ts
Stephen Zhou 3f7d76d4e2
sort
2026-01-25 20:37:32 +08:00

21 lines
642 B
TypeScript

// This file is auto-generated by @hey-api/openapi-ts
import { z } from 'zod'
import { zGetChatWebAppSettingsResponse } from '../../zod/api/site'
import { base } from '../common'
/**
* Get Application WebApp Settings
*
* Used to get the WebApp settings of the application.
*/
export const getChatWebAppSettingsContract = base.route({
method: 'GET',
path: '/site',
operationId: 'getChatWebAppSettings',
summary: 'Get Application WebApp Settings',
description: 'Used to get the WebApp settings of the application.',
tags: ['Application'],
}).output(z.object({ body: zGetChatWebAppSettingsResponse, status: z.literal(200) }))