@hpcc-js/comms 3.7.5 → 3.7.6
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/browser/index.js +9 -5
- package/dist/browser/index.js.map +1 -1
- package/dist/browser/index.umd.cjs +2 -2
- package/dist/browser/index.umd.cjs.map +1 -1
- package/dist/node/index.cjs +2 -2
- package/dist/node/index.cjs.map +2 -2
- package/dist/node/index.js +2 -2
- package/dist/node/index.js.map +2 -2
- package/package.json +2 -2
- package/src/__package__.ts +2 -2
- package/src/ecl/logicalFile.ts +2 -1
- package/types/__package__.d.ts +2 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hpcc-js/comms",
|
|
3
|
-
"version": "3.7.
|
|
3
|
+
"version": "3.7.6",
|
|
4
4
|
"description": "hpcc-js - Communications",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/node/index.cjs",
|
|
@@ -112,5 +112,5 @@
|
|
|
112
112
|
"esp",
|
|
113
113
|
"HPCC-Platform"
|
|
114
114
|
],
|
|
115
|
-
"gitHead": "
|
|
115
|
+
"gitHead": "b9d780528833411369cabaca067703d94a3d6b3a"
|
|
116
116
|
}
|
package/src/__package__.ts
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
export const PKG_NAME = "@hpcc-js/comms";
|
|
2
|
-
export const PKG_VERSION = "3.7.
|
|
3
|
-
export const BUILD_VERSION = "3.8.
|
|
2
|
+
export const PKG_VERSION = "3.7.6";
|
|
3
|
+
export const BUILD_VERSION = "3.8.6";
|
package/src/ecl/logicalFile.ts
CHANGED
|
@@ -151,7 +151,8 @@ export class LogicalFile extends StateObject<FileDetailEx, FileDetailEx> impleme
|
|
|
151
151
|
return this.connection.DFUInfo({ Cluster: this.Cluster, Name: this.Name }).then(response => {
|
|
152
152
|
this.set({
|
|
153
153
|
Cluster: this.Cluster,
|
|
154
|
-
...response.FileDetail
|
|
154
|
+
...response.FileDetail,
|
|
155
|
+
ProtectList: response?.FileDetail?.ProtectList ?? { DFUFileProtect: [] }
|
|
155
156
|
});
|
|
156
157
|
return response.FileDetail;
|
|
157
158
|
}).catch((e: ESPExceptions) => {
|
package/types/__package__.d.ts
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
export declare const PKG_NAME = "@hpcc-js/comms";
|
|
2
|
-
export declare const PKG_VERSION = "3.7.
|
|
3
|
-
export declare const BUILD_VERSION = "3.8.
|
|
2
|
+
export declare const PKG_VERSION = "3.7.5";
|
|
3
|
+
export declare const BUILD_VERSION = "3.8.5";
|