feat: flow data type check

This commit is contained in:
archer
2023-07-28 09:00:10 +08:00
parent aebe789e9f
commit 36b234c4fd
9 changed files with 73 additions and 39 deletions

View File

@@ -1,5 +0,0 @@
import { CSSProperties } from 'react';
export const nodeDefaultStyle: CSSProperties = {
border: '1px solid #DEE0E2'
};

View File

@@ -41,8 +41,8 @@ export enum FlowValueTypeEnum {
'string' = 'string',
'number' = 'number',
'boolean' = 'boolean',
'chatHistory' = 'chatHistory',
'kbQuote' = 'kbQuote',
'chatHistory' = 'chat_history',
'kbQuote' = 'kb_quote',
'other' = 'other'
}