4.8.11 test (#2843)

* feat: app version test

* update doc

* fix: paging num error

* fix: doc api domain

* rename variable

* perf: memment node min size
This commit is contained in:
Archer
2024-09-30 17:28:03 +08:00
committed by GitHub
parent 7c829febec
commit 7c38d1da9a
39 changed files with 427 additions and 179 deletions

View File

@@ -1,28 +0,0 @@
import { WorkflowIOValueTypeEnum } from '@fastgpt/global/core/workflow/constants';
export const fnValueTypeSelect = [
{
label: WorkflowIOValueTypeEnum.string,
value: WorkflowIOValueTypeEnum.string
},
{
label: WorkflowIOValueTypeEnum.number,
value: WorkflowIOValueTypeEnum.number
},
{
label: WorkflowIOValueTypeEnum.boolean,
value: WorkflowIOValueTypeEnum.boolean
},
{
label: 'array<string>',
value: WorkflowIOValueTypeEnum.arrayString
},
{
label: 'array<number>',
value: WorkflowIOValueTypeEnum.arrayNumber
},
{
label: 'array<boolean>',
value: WorkflowIOValueTypeEnum.arrayBoolean
}
];