app-v3-scripts-editor 1.19.1 → 1.20.0
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.
- package/dist/app-v3-scripts-editor.es.js +27713 -27478
- package/dist/app-v3-scripts-editor.umd.js +160 -160
- package/dist/src/lib/components/Shared/NodeActionButton/index.d.ts +6 -0
- package/dist/src/lib/components/Shared/NodeStatus/index.d.ts +6 -0
- package/dist/src/lib/constants/common.d.ts +5 -0
- package/dist/src/lib/styles/colors.d.ts +2 -0
- package/dist/src/lib/utils/common.d.ts +1 -1
- package/dist/src/services/types.d.ts +2 -0
- package/package.json +1 -1
|
@@ -41,7 +41,7 @@ export declare const formatFilterGroupsToForm: (object?: string, chartFilterGrou
|
|
|
41
41
|
groups: IFilterGroup[];
|
|
42
42
|
};
|
|
43
43
|
export declare function slugifyUnderscore(str: string): string;
|
|
44
|
-
export declare function buildOutPutTreeNodes(outputs
|
|
44
|
+
export declare function buildOutPutTreeNodes(outputs?: IOutput["outputs"]): (TreeDataNode & {
|
|
45
45
|
meta?: {
|
|
46
46
|
iconType?: DATA_TYPE_PROPERTY;
|
|
47
47
|
};
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { Dayjs } from 'dayjs';
|
|
2
2
|
import { AI_MODEL } from '../lib/constants/ai-model';
|
|
3
3
|
import { DATA_TYPE_PROPERTY, DATA_TYPE_PROPERTY_V2 } from '../lib/constants/common';
|
|
4
|
+
import { NODE_STATUS } from './../lib/constants/common';
|
|
4
5
|
export interface INodeBaseType {
|
|
5
6
|
output?: IOutput["outputs"];
|
|
6
7
|
variables?: {
|
|
@@ -9,6 +10,7 @@ export interface INodeBaseType {
|
|
|
9
10
|
}[];
|
|
10
11
|
input_data?: Record<string, any>;
|
|
11
12
|
output_data?: Record<string, any>;
|
|
13
|
+
status?: NODE_STATUS;
|
|
12
14
|
}
|
|
13
15
|
export interface IPaginationInputs {
|
|
14
16
|
pagination?: {
|