mirror of
https://github.com/langgenius/dify.git
synced 2026-05-06 21:01:18 -04:00
21 lines
404 B
TypeScript
21 lines
404 B
TypeScript
// This file is auto-generated by @hey-api/openapi-ts
|
|
|
|
import * as z from 'zod'
|
|
|
|
/**
|
|
* CodeBasedExtensionResponse
|
|
*/
|
|
export const zCodeBasedExtensionResponse = z.object({
|
|
data: z.unknown(),
|
|
module: z.string(),
|
|
})
|
|
|
|
export const zGetCodeBasedExtensionQuery = z.object({
|
|
module: z.string().optional(),
|
|
})
|
|
|
|
/**
|
|
* Success
|
|
*/
|
|
export const zGetCodeBasedExtensionResponse = zCodeBasedExtensionResponse
|