dify/packages/contracts/generated/api/console/app-dsl-version/orpc.gen.ts
非法操作 04f5555580
chore: split to single app_dsl_version API (#36864)
Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
2026-05-31 12:13:44 +00:00

31 lines
689 B
TypeScript

// This file is auto-generated by @hey-api/openapi-ts
import { oc } from '@orpc/contract'
import { zGetAppDslVersionResponse } from './zod.gen'
/**
* Get current app DSL version for workflow clipboard compatibility
*
* Get current app DSL version
*/
export const get = oc
.route({
description: 'Get current app DSL version',
inputStructure: 'detailed',
method: 'GET',
operationId: 'getAppDslVersion',
path: '/app-dsl-version',
summary: 'Get current app DSL version for workflow clipboard compatibility',
tags: ['console'],
})
.output(zGetAppDslVersionResponse)
export const appDslVersion = {
get,
}
export const contract = {
appDslVersion,
}