mirror of
https://github.com/langgenius/dify.git
synced 2026-06-07 16:32:01 +08:00
73 lines
1.4 KiB
TypeScript
73 lines
1.4 KiB
TypeScript
// This file is auto-generated by @hey-api/openapi-ts
|
|
|
|
import { oc } from '@orpc/contract'
|
|
import * as z from 'zod'
|
|
|
|
import {
|
|
zGetNotionPagesByPageIdByPageTypePreviewPath,
|
|
zGetNotionPagesByPageIdByPageTypePreviewQuery,
|
|
zGetNotionPagesByPageIdByPageTypePreviewResponse,
|
|
zGetNotionPreImportPagesQuery,
|
|
zGetNotionPreImportPagesResponse,
|
|
} from './zod.gen'
|
|
|
|
export const get = oc
|
|
.route({
|
|
inputStructure: 'detailed',
|
|
method: 'GET',
|
|
operationId: 'getNotionPagesByPageIdByPageTypePreview',
|
|
path: '/notion/pages/{page_id}/{page_type}/preview',
|
|
tags: ['console'],
|
|
})
|
|
.input(
|
|
z.object({
|
|
params: zGetNotionPagesByPageIdByPageTypePreviewPath,
|
|
query: zGetNotionPagesByPageIdByPageTypePreviewQuery,
|
|
}),
|
|
)
|
|
.output(zGetNotionPagesByPageIdByPageTypePreviewResponse)
|
|
|
|
export const preview = {
|
|
get,
|
|
}
|
|
|
|
export const byPageType = {
|
|
preview,
|
|
}
|
|
|
|
export const byPageId = {
|
|
byPageType,
|
|
}
|
|
|
|
export const pages = {
|
|
byPageId,
|
|
}
|
|
|
|
export const get2 = oc
|
|
.route({
|
|
inputStructure: 'detailed',
|
|
method: 'GET',
|
|
operationId: 'getNotionPreImportPages',
|
|
path: '/notion/pre-import/pages',
|
|
tags: ['console'],
|
|
})
|
|
.input(z.object({ query: zGetNotionPreImportPagesQuery }))
|
|
.output(zGetNotionPreImportPagesResponse)
|
|
|
|
export const pages2 = {
|
|
get: get2,
|
|
}
|
|
|
|
export const preImport = {
|
|
pages: pages2,
|
|
}
|
|
|
|
export const notion = {
|
|
pages,
|
|
preImport,
|
|
}
|
|
|
|
export const contract = {
|
|
notion,
|
|
}
|