Files
dify/web/gen/orpc/api/meta.ts
Stephen Zhou 4061c83b26 no sufix
2026-01-25 16:19:07 +08:00

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) }))