mirror of
https://github.com/langgenius/dify.git
synced 2026-04-23 12:16:11 +08:00
21 lines
642 B
TypeScript
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({
|
|
path: '/site',
|
|
method: 'GET',
|
|
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) }))
|