mirror of
https://github.com/langgenius/dify.git
synced 2026-05-06 21:01:18 -04:00
34 lines
776 B
TypeScript
34 lines
776 B
TypeScript
// This file is auto-generated by @hey-api/openapi-ts
|
|
|
|
import * as z from 'zod'
|
|
|
|
/**
|
|
* ApiKeyAuthBindingPayload
|
|
*/
|
|
export const zApiKeyAuthBindingPayload = z.object({
|
|
category: z.string(),
|
|
credentials: z.record(z.string(), z.unknown()),
|
|
provider: z.string(),
|
|
})
|
|
|
|
/**
|
|
* Success
|
|
*/
|
|
export const zGetApiKeyAuthDataSourceResponse = z.record(z.string(), z.unknown())
|
|
|
|
export const zPostApiKeyAuthDataSourceBindingBody = zApiKeyAuthBindingPayload
|
|
|
|
/**
|
|
* Success
|
|
*/
|
|
export const zPostApiKeyAuthDataSourceBindingResponse = z.record(z.string(), z.unknown())
|
|
|
|
export const zDeleteApiKeyAuthDataSourceByBindingIdPath = z.object({
|
|
binding_id: z.string(),
|
|
})
|
|
|
|
/**
|
|
* Success
|
|
*/
|
|
export const zDeleteApiKeyAuthDataSourceByBindingIdResponse = z.record(z.string(), z.unknown())
|