@hpcc-js/comms 2.87.0 → 2.88.1
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 +18 -5
- package/dist/index.es6.js.map +1 -1
- package/dist/index.js +17 -4
- 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 +17 -4
- 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 +2 -2
- package/lib-es6/ecl/workunit.js.map +1 -1
- package/lib-es6/services/fileSpray.js +13 -0
- package/lib-es6/services/fileSpray.js.map +1 -1
- package/package.json +2 -2
- package/src/__package__.ts +2 -2
- package/src/ecl/workunit.ts +13 -13
- package/src/services/fileSpray.ts +13 -0
- package/types/__package__.d.ts +2 -2
- package/types/ecl/workunit.d.ts +15 -1
- package/types/ecl/workunit.d.ts.map +1 -1
- package/types/services/fileSpray.d.ts +12 -0
- package/types/services/fileSpray.d.ts.map +1 -1
- package/types-3.4/__package__.d.ts +2 -2
- package/types-3.4/ecl/workunit.d.ts +15 -1
- package/types-3.4/services/fileSpray.d.ts +12 -0
package/dist/index.js
CHANGED
|
@@ -648,8 +648,8 @@
|
|
|
648
648
|
}
|
|
649
649
|
|
|
650
650
|
var PKG_NAME = "@hpcc-js/comms";
|
|
651
|
-
var PKG_VERSION = "2.
|
|
652
|
-
var BUILD_VERSION = "2.104.
|
|
651
|
+
var PKG_VERSION = "2.88.1";
|
|
652
|
+
var BUILD_VERSION = "2.104.38";
|
|
653
653
|
|
|
654
654
|
/******************************************************************************
|
|
655
655
|
Copyright (c) Microsoft Corporation.
|
|
@@ -1251,6 +1251,19 @@
|
|
|
1251
1251
|
return FileSprayServiceBase;
|
|
1252
1252
|
}(Service));
|
|
1253
1253
|
|
|
1254
|
+
exports.FileSprayStates = void 0;
|
|
1255
|
+
(function (FileSprayStates) {
|
|
1256
|
+
FileSprayStates[FileSprayStates["unknown"] = 0] = "unknown";
|
|
1257
|
+
FileSprayStates[FileSprayStates["scheduled"] = 1] = "scheduled";
|
|
1258
|
+
FileSprayStates[FileSprayStates["queued"] = 2] = "queued";
|
|
1259
|
+
FileSprayStates[FileSprayStates["started"] = 3] = "started";
|
|
1260
|
+
FileSprayStates[FileSprayStates["aborted"] = 4] = "aborted";
|
|
1261
|
+
FileSprayStates[FileSprayStates["failed"] = 5] = "failed";
|
|
1262
|
+
FileSprayStates[FileSprayStates["finished"] = 6] = "finished";
|
|
1263
|
+
FileSprayStates[FileSprayStates["monitoring"] = 7] = "monitoring";
|
|
1264
|
+
FileSprayStates[FileSprayStates["aborting"] = 8] = "aborting";
|
|
1265
|
+
FileSprayStates[FileSprayStates["notfound"] = 999] = "notfound";
|
|
1266
|
+
})(exports.FileSprayStates || (exports.FileSprayStates = {}));
|
|
1254
1267
|
var FileSprayService = /** @class */ (function (_super) {
|
|
1255
1268
|
__extends(FileSprayService, _super);
|
|
1256
1269
|
function FileSprayService() {
|
|
@@ -5759,8 +5772,8 @@
|
|
|
5759
5772
|
return retVal;
|
|
5760
5773
|
}
|
|
5761
5774
|
function formatValue(item, key) {
|
|
5762
|
-
var _a, _b
|
|
5763
|
-
return (
|
|
5775
|
+
var _a, _b;
|
|
5776
|
+
return (_b = (_a = item.__formattedProps) === null || _a === void 0 ? void 0 : _a[key]) !== null && _b !== void 0 ? _b : item[key];
|
|
5764
5777
|
}
|
|
5765
5778
|
function formatValues(item, key, dedup) {
|
|
5766
5779
|
var keyParts = splitLabel(key);
|