mirror of
https://github.com/langgenius/dify.git
synced 2026-03-23 15:27:53 +08:00
21 lines
622 B
TypeScript
21 lines
622 B
TypeScript
// This file is auto-generated by @hey-api/openapi-ts
|
|
|
|
import { z } from 'zod'
|
|
|
|
import { zGetChatAppInfoResponse } from '../../zod/api/info'
|
|
import { base } from '../common'
|
|
|
|
/**
|
|
* Get Application Basic Information
|
|
*
|
|
* Used to get basic information about this application.
|
|
*/
|
|
export const getChatAppInfoContract = base.route({
|
|
path: '/info',
|
|
method: 'GET',
|
|
operationId: 'getChatAppInfo',
|
|
summary: 'Get Application Basic Information',
|
|
description: 'Used to get basic information about this application.',
|
|
tags: ['Application'],
|
|
}).output(z.object({ body: zGetChatAppInfoResponse, status: z.literal(200) }))
|