@hpcc-js/comms 2.87.0 → 2.88.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 +16 -3
- package/dist/index.es6.js.map +1 -1
- package/dist/index.js +15 -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 +15 -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/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/services/fileSpray.ts +13 -0
- package/types/__package__.d.ts +2 -2
- 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/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.0";
|
|
652
|
+
var BUILD_VERSION = "2.104.37";
|
|
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() {
|