Files
dify/web/gen/orpc/api/parameters.ts
Stephen Zhou 3f7d76d4e2 sort
2026-01-25 20:37:32 +08:00

21 lines
878 B
TypeScript

// This file is auto-generated by @hey-api/openapi-ts
import { z } from 'zod'
import { zGetChatAppParametersData, zGetChatAppParametersResponse } from '../../zod/api/parameters'
import { base } from '../common'
/**
* Get Application Parameters Information
*
* Used at the start of entering the page to obtain information such as features, input parameter names, types, and default values.
*/
export const getChatAppParametersContract = base.route({
method: 'GET',
path: '/parameters',
operationId: 'getChatAppParameters',
summary: 'Get Application Parameters Information',
description: 'Used at the start of entering the page to obtain information such as features, input parameter names, types, and default values.',
tags: ['Application'],
}).input(zGetChatAppParametersData).output(z.object({ body: zGetChatAppParametersResponse, status: z.literal(200) }))