mirror of
https://github.com/langgenius/dify.git
synced 2026-04-20 02:37:20 +08:00
21 lines
608 B
TypeScript
21 lines
608 B
TypeScript
// This file is auto-generated by @hey-api/openapi-ts
|
|
|
|
import { z } from 'zod'
|
|
|
|
import { zGetChatAppMetaResponse } from '../../zod/api/meta'
|
|
import { base } from '../common'
|
|
|
|
/**
|
|
* Get Application Meta Information
|
|
*
|
|
* Used to get icons of tools in this application.
|
|
*/
|
|
export const getChatAppMetaContract = base.route({
|
|
path: '/meta',
|
|
method: 'GET',
|
|
operationId: 'getChatAppMeta',
|
|
summary: 'Get Application Meta Information',
|
|
description: 'Used to get icons of tools in this application.',
|
|
tags: ['Application'],
|
|
}).output(z.object({ body: zGetChatAppMetaResponse, status: z.literal(200) }))
|