@hpcc-js/comms 2.85.0 → 2.86.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/index.es6.js +8 -2
- package/dist/index.es6.js.map +1 -1
- package/dist/index.js +8 -2
- package/dist/index.js.map +1 -1
- package/dist/index.min.js +1 -1
- package/dist/index.min.js.map +1 -1
- package/dist/index.node.js +8 -2
- package/dist/index.node.js.map +1 -1
- package/dist/index.node.min.js +1 -1
- package/dist/index.node.min.js.map +1 -1
- package/lib-es6/__package__.js +2 -2
- package/lib-es6/ecl/workunit.js +6 -0
- package/lib-es6/ecl/workunit.js.map +1 -1
- package/package.json +2 -2
- package/src/__package__.ts +2 -2
- package/src/ecl/workunit.ts +8 -0
- package/src/services/wsWorkunits.ts +1 -1
- package/types/__package__.d.ts +2 -2
- package/types/ecl/workunit.d.ts +2 -0
- package/types/ecl/workunit.d.ts.map +1 -1
- package/types/services/wsWorkunits.d.ts +1 -1
- package/types/services/wsWorkunits.d.ts.map +1 -1
- package/types-3.4/__package__.d.ts +2 -2
- package/types-3.4/ecl/workunit.d.ts +2 -0
- package/types-3.4/services/wsWorkunits.d.ts +1 -1
package/dist/index.js
CHANGED
|
@@ -647,8 +647,8 @@
|
|
|
647
647
|
}
|
|
648
648
|
|
|
649
649
|
var PKG_NAME = "@hpcc-js/comms";
|
|
650
|
-
var PKG_VERSION = "2.
|
|
651
|
-
var BUILD_VERSION = "2.104.
|
|
650
|
+
var PKG_VERSION = "2.86.0";
|
|
651
|
+
var BUILD_VERSION = "2.104.34";
|
|
652
652
|
|
|
653
653
|
/******************************************************************************
|
|
654
654
|
Copyright (c) Microsoft Corporation.
|
|
@@ -6295,6 +6295,12 @@
|
|
|
6295
6295
|
Workunit.prototype.abort = function () {
|
|
6296
6296
|
return this.WUAction("Abort");
|
|
6297
6297
|
};
|
|
6298
|
+
Workunit.prototype.protect = function () {
|
|
6299
|
+
return this.WUAction("Protect");
|
|
6300
|
+
};
|
|
6301
|
+
Workunit.prototype.unprotect = function () {
|
|
6302
|
+
return this.WUAction("Unprotect");
|
|
6303
|
+
};
|
|
6298
6304
|
Workunit.prototype.delete = function () {
|
|
6299
6305
|
return this.WUAction("Delete");
|
|
6300
6306
|
};
|