confirm publish

This commit is contained in:
zxhlyh
2025-06-06 14:21:23 +08:00
parent 5193fa2118
commit 3db864561e
7 changed files with 113 additions and 33 deletions

View File

@ -30,7 +30,7 @@ export const COMMON_OUTPUT = [
},
]
export const FILE_OUTPUT = [
export const LOCAL_FILE_OUTPUT = [
{
name: 'file',
type: VarType.file,
@ -80,7 +80,7 @@ export const FILE_OUTPUT = [
},
]
export const WEBSITE_OUTPUT = [
export const WEBSITE_CRAWL_OUTPUT = [
{
name: 'source_url',
type: VarType.string,
@ -102,3 +102,21 @@ export const WEBSITE_OUTPUT = [
description: 'The description of the crawled website',
},
]
export const ONLINE_DOCUMENT_OUTPUT = [
{
name: 'workspace_id',
type: VarType.string,
description: 'The ID of the workspace where the document is stored',
},
{
name: 'page_id',
type: VarType.string,
description: 'The ID of the page in the document',
},
{
name: 'content',
type: VarType.string,
description: 'The content of the online document',
},
]