verteilen-core 1.4.48 → 1.4.49
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.
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
*/
|
|
5
5
|
import * as ws from 'ws';
|
|
6
6
|
import { Job } from "./base";
|
|
7
|
-
import { ServiceMode, TaskLogicType } from "./enum";
|
|
7
|
+
import { ExecuteState, ServiceMode, TaskLogicType } from "./enum";
|
|
8
8
|
import { Plugin } from "./plugin";
|
|
9
9
|
/**
|
|
10
10
|
* The websocket instance with extra information
|
|
@@ -236,6 +236,10 @@ export interface TaskLogicUnit {
|
|
|
236
236
|
* **Attach Job Container (Runtime)**
|
|
237
237
|
*/
|
|
238
238
|
job?: Job;
|
|
239
|
+
/**
|
|
240
|
+
* Job state
|
|
241
|
+
*/
|
|
242
|
+
state?: ExecuteState;
|
|
239
243
|
/**
|
|
240
244
|
* **Common Logic Group**
|
|
241
245
|
*/
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "verteilen-core",
|
|
3
|
-
"version": "1.4.
|
|
3
|
+
"version": "1.4.49",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"homepage": "https://verteilen.github.io/wiki/",
|
|
6
6
|
"author": "Elly",
|
|
@@ -44,6 +44,7 @@
|
|
|
44
44
|
"tcp-port-used": "^1.0.2",
|
|
45
45
|
"tree-kill": "^1.2.2",
|
|
46
46
|
"uuid": "^11.0.5",
|
|
47
|
+
"verteilen-core": "^1.4.48",
|
|
47
48
|
"vue-i18n": "^11.1.12",
|
|
48
49
|
"ws": "^8.18.0"
|
|
49
50
|
}
|