mirror of
https://github.com/langgenius/dify.git
synced 2026-07-21 18:58:35 +08:00
23 lines
481 B
TypeScript
23 lines
481 B
TypeScript
// This file is auto-generated by @hey-api/openapi-ts
|
|
|
|
import * as z from 'zod'
|
|
|
|
/**
|
|
* SchemaDefinitionItemResponse
|
|
*/
|
|
export const zSchemaDefinitionItemResponse = z.object({
|
|
label: z.string(),
|
|
name: z.string(),
|
|
schema: z.record(z.string(), z.unknown()),
|
|
})
|
|
|
|
/**
|
|
* SchemaDefinitionsResponse
|
|
*/
|
|
export const zSchemaDefinitionsResponse = z.array(zSchemaDefinitionItemResponse)
|
|
|
|
/**
|
|
* Success
|
|
*/
|
|
export const zGetSpecSchemaDefinitionsResponse = zSchemaDefinitionsResponse
|