@trii/types 2.10.499 → 2.10.501
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -151,6 +151,8 @@ export interface INodeProperty {
|
|
|
151
151
|
additionalParams?: boolean;
|
|
152
152
|
hidden?: boolean;
|
|
153
153
|
acceptVariable?: boolean;
|
|
154
|
+
acceptEmojis?: boolean;
|
|
155
|
+
allowMaximizeInput?: boolean;
|
|
154
156
|
acceptNodeOutputAsVariable?: boolean;
|
|
155
157
|
fileType?: string;
|
|
156
158
|
loadMethod?: string;
|
|
@@ -171,7 +173,7 @@ export interface INodeProperty {
|
|
|
171
173
|
numberMin?: number;
|
|
172
174
|
numberMax?: number;
|
|
173
175
|
}
|
|
174
|
-
export type NodeParamsType = 'asyncOptions' | 'asyncMultiOptions' | 'options' | 'multiOptions' | 'datagrid' | 'string' | 'number' | 'boolean' | 'password' | 'json' | 'code' | 'date' | 'file' | 'folder' | 'tabs';
|
|
176
|
+
export type NodeParamsType = 'asyncOptions' | 'asyncMultiOptions' | 'options' | 'multiOptions' | 'datagrid' | 'string' | 'number' | 'boolean' | 'password' | 'json' | 'code' | 'date' | 'file' | 'folder' | 'tabs' | 'title';
|
|
175
177
|
export type CommonType = string | number | boolean | undefined | null;
|
|
176
178
|
export interface ICommonObject {
|
|
177
179
|
[key: string]: any | CommonType | ICommonObject | CommonType[] | ICommonObject[];
|