@hpcc-js/comms 2.99.3 → 2.99.5
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 -4
- package/dist/index.es6.js.map +1 -1
- package/dist/index.js +8 -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 +8 -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 +6 -2
- 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 +6 -2
- package/types/__package__.d.ts +2 -2
- package/types/ecl/workunit.d.ts.map +1 -1
- package/types-3.4/__package__.d.ts +2 -2
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.99.
|
|
652
|
-
var BUILD_VERSION = "2.107.
|
|
651
|
+
var PKG_VERSION = "2.99.5";
|
|
652
|
+
var BUILD_VERSION = "2.107.7";
|
|
653
653
|
|
|
654
654
|
/******************************************************************************
|
|
655
655
|
Copyright (c) Microsoft Corporation.
|
|
@@ -6797,9 +6797,13 @@
|
|
|
6797
6797
|
case "cost":
|
|
6798
6798
|
props[scopeProperty.Name] = +scopeProperty.RawValue / 1000000;
|
|
6799
6799
|
break;
|
|
6800
|
-
case "cpu":
|
|
6801
|
-
case "skw":
|
|
6802
6800
|
case "node":
|
|
6801
|
+
props[scopeProperty.Name] = +scopeProperty.RawValue;
|
|
6802
|
+
break;
|
|
6803
|
+
case "skw":
|
|
6804
|
+
props[scopeProperty.Name] = +scopeProperty.RawValue;
|
|
6805
|
+
break;
|
|
6806
|
+
case "cpu":
|
|
6803
6807
|
case "ppm":
|
|
6804
6808
|
case "ip":
|
|
6805
6809
|
case "cy":
|