n8n-workflow
Advanced tools
Comparing version 0.80.0 to 0.81.0
@@ -18,2 +18,3 @@ /// <reference types="node" /> | ||
fileExtension?: string; | ||
id?: string; | ||
} | ||
@@ -384,5 +385,7 @@ export interface IOAuth2Options { | ||
export declare type NodePropertyTypes = 'boolean' | 'collection' | 'color' | 'dateTime' | 'fixedCollection' | 'hidden' | 'json' | 'notice' | 'multiOptions' | 'number' | 'options' | 'string'; | ||
export declare type EditorTypes = 'code'; | ||
export declare type CodeAutocompleteTypes = 'function' | 'functionItem'; | ||
export declare type EditorTypes = 'code' | 'json'; | ||
export interface INodePropertyTypeOptions { | ||
alwaysOpenEditWindow?: boolean; | ||
codeAutocomplete?: CodeAutocompleteTypes; | ||
editor?: EditorTypes; | ||
@@ -396,3 +399,2 @@ loadOptionsDependsOn?: string[]; | ||
numberPrecision?: number; | ||
numberStepSize?: number; | ||
password?: boolean; | ||
@@ -576,2 +578,3 @@ rows?: number; | ||
export interface IWorkflowDataProxyData { | ||
[key: string]: any; | ||
$binary: any; | ||
@@ -578,0 +581,0 @@ $data: any; |
@@ -29,2 +29,8 @@ "use strict"; | ||
}, | ||
getOwnPropertyDescriptor(k) { | ||
return { | ||
enumerable: true, | ||
configurable: true, | ||
}; | ||
}, | ||
get(target, name, receiver) { | ||
@@ -59,2 +65,8 @@ name = name.toString(); | ||
}, | ||
getOwnPropertyDescriptor(k) { | ||
return { | ||
enumerable: true, | ||
configurable: true, | ||
}; | ||
}, | ||
get(target, name, receiver) { | ||
@@ -186,2 +198,11 @@ name = name.toString(); | ||
return new Proxy({}, { | ||
ownKeys(target) { | ||
return allowedValues; | ||
}, | ||
getOwnPropertyDescriptor(k) { | ||
return { | ||
enumerable: true, | ||
configurable: true, | ||
}; | ||
}, | ||
get(target, name, receiver) { | ||
@@ -188,0 +209,0 @@ if (!allowedValues.includes(name.toString())) { |
{ | ||
"name": "n8n-workflow", | ||
"version": "0.80.0", | ||
"version": "0.81.0", | ||
"description": "Workflow base code of n8n", | ||
@@ -5,0 +5,0 @@ "license": "SEE LICENSE IN LICENSE.md", |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
476196
7502