mirror of
https://github.com/langgenius/dify.git
synced 2026-08-31 04:53:19 +08:00
21 lines
351 B
TypeScript
21 lines
351 B
TypeScript
// This file is auto-generated by @hey-api/openapi-ts
|
|
|
|
import * as z from 'zod'
|
|
|
|
/**
|
|
* VersionResponse
|
|
*/
|
|
export const zVersionResponse = z.object({
|
|
release_notes: z.string(),
|
|
version: z.string(),
|
|
})
|
|
|
|
export const zGetVersionQuery = z.object({
|
|
current_version: z.string(),
|
|
})
|
|
|
|
/**
|
|
* OK
|
|
*/
|
|
export const zGetVersionResponse = zVersionResponse
|