mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 01:56:46 +00:00
feat: AI Workflow Builder agent (no-changelog) (#17423)
Co-authored-by: cubic-dev-ai[bot] <191113872+cubic-dev-ai[bot]@users.noreply.github.com>
This commit is contained in:
@@ -2207,6 +2207,24 @@ export interface IRunExecutionData {
|
||||
'partialExecutionVersion' | 'dirtyNodeNames' | 'triggerToStartFrom' | 'userId'
|
||||
>;
|
||||
}
|
||||
export type SchemaType =
|
||||
| 'string'
|
||||
| 'number'
|
||||
| 'boolean'
|
||||
| 'bigint'
|
||||
| 'symbol'
|
||||
| 'array'
|
||||
| 'object'
|
||||
| 'function'
|
||||
| 'null'
|
||||
| 'undefined';
|
||||
|
||||
export type Schema = { type: SchemaType; key?: string; value: string | Schema[]; path: string };
|
||||
|
||||
export interface NodeExecutionSchema {
|
||||
nodeName: string;
|
||||
schema: Schema;
|
||||
}
|
||||
|
||||
export interface IRunData {
|
||||
// node-name: result-data
|
||||
|
||||
Reference in New Issue
Block a user