mirror of
https://github.com/farcasclaudiu/Flowise.git
synced 2026-06-22 05:01:07 +03:00
84 lines
1.7 KiB
TypeScript
84 lines
1.7 KiB
TypeScript
/**
|
|
* Types
|
|
*/
|
|
|
|
export type NodeParamsType =
|
|
| 'asyncOptions'
|
|
| 'options'
|
|
| 'string'
|
|
| 'number'
|
|
| 'boolean'
|
|
| 'password'
|
|
| 'json'
|
|
| 'code'
|
|
| 'date'
|
|
| 'file'
|
|
| 'folder'
|
|
|
|
export type CommonType = string | number | boolean | undefined | null
|
|
|
|
/**
|
|
* Others
|
|
*/
|
|
|
|
export interface ICommonObject {
|
|
[key: string]: any | CommonType | ICommonObject | CommonType[] | ICommonObject[]
|
|
}
|
|
|
|
export interface IAttachment {
|
|
content: string
|
|
contentType: string
|
|
size?: number
|
|
filename?: string
|
|
}
|
|
|
|
export interface INodeOptionsValue {
|
|
label: string
|
|
name: string
|
|
description?: string
|
|
}
|
|
|
|
export interface INodeParams {
|
|
label: string
|
|
name: string
|
|
type: NodeParamsType | string
|
|
default?: CommonType | ICommonObject | ICommonObject[]
|
|
description?: string
|
|
options?: Array<INodeOptionsValue>
|
|
optional?: boolean | INodeDisplay
|
|
rows?: number
|
|
list?: boolean
|
|
placeholder?: string
|
|
}
|
|
|
|
export interface INodeExecutionData {
|
|
[key: string]: CommonType | CommonType[] | ICommonObject | ICommonObject[]
|
|
}
|
|
|
|
export interface INodeDisplay {
|
|
[key: string]: string[] | string
|
|
}
|
|
|
|
export interface INodeProperties {
|
|
label: string
|
|
name: string
|
|
type: string
|
|
icon: string
|
|
category: string
|
|
baseClasses: string[]
|
|
description?: string
|
|
filePath?: string
|
|
}
|
|
|
|
export interface INode extends INodeProperties {
|
|
inputs?: INodeParams[]
|
|
getBaseClasses?(): Promise<string[]>
|
|
getInstance?(nodeData: INodeData): Promise<string>
|
|
run?(nodeData: INodeData, input: string): Promise<string>
|
|
}
|
|
|
|
export interface INodeData extends INodeProperties {
|
|
inputs?: ICommonObject
|
|
instance?: any
|
|
}
|