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