@fnlb-project/shared 1.5.117 → 1.5.119
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/types/index.d.ts +11 -0
- package/package.json +1 -1
package/dist/types/index.d.ts
CHANGED
|
@@ -139,6 +139,17 @@ export interface IActionOutput {
|
|
|
139
139
|
description?: string;
|
|
140
140
|
required?: boolean;
|
|
141
141
|
}
|
|
142
|
+
export interface ISerializedActionControlFlow {
|
|
143
|
+
id: string;
|
|
144
|
+
config: {
|
|
145
|
+
name: string;
|
|
146
|
+
parent: string;
|
|
147
|
+
alias: string[];
|
|
148
|
+
description: string;
|
|
149
|
+
usage: ActionInput[];
|
|
150
|
+
outputs: IActionOutput[];
|
|
151
|
+
};
|
|
152
|
+
}
|
|
142
153
|
export interface ISerializedActionFunction {
|
|
143
154
|
id: string;
|
|
144
155
|
config: {
|