mirror of
https://github.com/langgenius/dify.git
synced 2026-05-23 10:29:07 +08:00
Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com> Co-authored-by: QuantumGhost <obelisk.reg+git@gmail.com>
37 lines
791 B
TypeScript
37 lines
791 B
TypeScript
// This file is auto-generated by @hey-api/openapi-ts
|
|
|
|
import * as z from 'zod'
|
|
|
|
/**
|
|
* Success
|
|
*/
|
|
export const zGetDataSourceIntegratesResponse = z.record(z.string(), z.unknown())
|
|
|
|
/**
|
|
* Success
|
|
*/
|
|
export const zPatchDataSourceIntegratesResponse = z.record(z.string(), z.unknown())
|
|
|
|
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 = z.record(
|
|
z.string(),
|
|
z.unknown(),
|
|
)
|