Files
dify/web/gen/orpc/api/meta.ts
Stephen Zhou 3f7d76d4e2 sort
2026-01-25 20:37:32 +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({
method: 'GET',
path: '/meta',
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) }))