mirror of
https://github.com/langgenius/dify.git
synced 2026-05-23 02:18:23 +08:00
Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com> Co-authored-by: Asuka Minato <i@asukaminato.eu.org>
41 lines
866 B
TypeScript
41 lines
866 B
TypeScript
// This file is auto-generated by @hey-api/openapi-ts
|
|
|
|
import * as z from 'zod'
|
|
|
|
/**
|
|
* SimpleResultResponse
|
|
*/
|
|
export const zSimpleResultResponse = z.object({
|
|
result: z.string(),
|
|
})
|
|
|
|
/**
|
|
* Success
|
|
*/
|
|
export const zGetDataSourceIntegratesResponse = z.record(z.string(), z.unknown())
|
|
|
|
/**
|
|
* Success
|
|
*/
|
|
export const zPatchDataSourceIntegratesResponse = zSimpleResultResponse
|
|
|
|
export const zGetDataSourceIntegratesByBindingIdByActionPath = z.object({
|
|
action: z.string(),
|
|
binding_id: z.string(),
|
|
})
|
|
|
|
/**
|
|
* Success
|
|
*/
|
|
export const zGetDataSourceIntegratesByBindingIdByActionResponse = z.record(z.string(), z.unknown())
|
|
|
|
export const zPatchDataSourceIntegratesByBindingIdByActionPath = z.object({
|
|
action: z.string(),
|
|
binding_id: z.string(),
|
|
})
|
|
|
|
/**
|
|
* Success
|
|
*/
|
|
export const zPatchDataSourceIntegratesByBindingIdByActionResponse = zSimpleResultResponse
|