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

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