dify/packages/contracts/generated/api/console/spec/orpc.gen.ts
Stephen Zhou 5d77c0af08
refactor: fix OpenAPI contract generation schemas (#37387)
Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
2026-06-12 14:25:53 +00:00

35 lines
756 B
TypeScript

// This file is auto-generated by @hey-api/openapi-ts
import { oc } from '@orpc/contract'
import { zGetSpecSchemaDefinitionsResponse } from './zod.gen'
/**
* Get system JSON Schema definitions specification
*
* Used for frontend component type mapping
*/
export const get = oc
.route({
description: 'Used for frontend component type mapping',
inputStructure: 'detailed',
method: 'GET',
operationId: 'getSpecSchemaDefinitions',
path: '/spec/schema-definitions',
summary: 'Get system JSON Schema definitions specification',
tags: ['console'],
})
.output(zGetSpecSchemaDefinitionsResponse)
export const schemaDefinitions = {
get,
}
export const spec = {
schemaDefinitions,
}
export const contract = {
spec,
}