@hpcc-js/comms 3.17.7 → 3.17.8

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hpcc-js/comms",
3
- "version": "3.17.7",
3
+ "version": "3.17.8",
4
4
  "description": "hpcc-js - Communications",
5
5
  "type": "module",
6
6
  "main": "./dist/node/index.cjs",
@@ -76,13 +76,13 @@
76
76
  "wsdl-all": "npm-run-all --aggregate-output -c --serial build --parallel wsdl-*"
77
77
  },
78
78
  "dependencies": {
79
- "@hpcc-js/util": "^3.6.7",
79
+ "@hpcc-js/util": "^3.6.8",
80
80
  "@xmldom/xmldom": "0.9.10",
81
81
  "undici": "8.10.0"
82
82
  },
83
83
  "devDependencies": {
84
- "@hpcc-js/ddl-shim": "^3.4.7",
85
- "@hpcc-js/esbuild-plugins": "^1.9.7",
84
+ "@hpcc-js/ddl-shim": "^3.4.8",
85
+ "@hpcc-js/esbuild-plugins": "^1.10.0",
86
86
  "@kubernetes/client-node": "1.4.0",
87
87
  "@types/d3-request": "1.0.9",
88
88
  "@types/d3-time-format": "2.3.4",
@@ -112,5 +112,5 @@
112
112
  "esp",
113
113
  "HPCC-Platform"
114
114
  ],
115
- "gitHead": "262e02ffb2077fe44d8c21368d880614a194ce20"
115
+ "gitHead": "ac7ae6ce5cb17eb6d4dff831fa1aeeeca75cf77f"
116
116
  }
@@ -126,7 +126,7 @@ export class LogicalFile extends StateObject<FileDetailEx, FileDetailEx> impleme
126
126
  for (const part of poc?.DFUFileParts?.DFUPart || []) {
127
127
  const row = { ...poc, ...part };
128
128
  delete row.DFUFileParts;
129
- retVal.push(row);
129
+ retVal.push(row as DFUPartEx);
130
130
  }
131
131
  }
132
132
  return retVal;
@@ -179,7 +179,7 @@ export class LogicalFile extends StateObject<FileDetailEx, FileDetailEx> impleme
179
179
  }
180
180
 
181
181
  fetchAllLogicalFiles(): Promise<string[]> {
182
- return this.connection.recursiveFetchLogicalFiles([this]);
182
+ return this.connection.recursiveFetchLogicalFiles([this as any]);
183
183
  }
184
184
 
185
185
  fetchListHistory(): Promise<WsDfu.Origin[]> {
@@ -1,4 +1,4 @@
1
- import { DfuServiceBase, WsDfu } from "./wsdl/WsDfu/v1.67/WsDfu.ts";
1
+ import { DfuServiceBase, WsDfu } from "./wsdl/WsDfu/v1.68/WsDfu.ts";
2
2
 
3
3
  export { WsDfu };
4
4
 
@@ -15,7 +15,7 @@ export class DFUService extends DfuServiceBase {
15
15
  return this._connection.send("DFUDefFile", request, "text");
16
16
  }
17
17
 
18
- async recursiveFetchLogicalFiles(superFiles: { NodeGroup: string, Name: string }[]): Promise<string[]> {
18
+ async recursiveFetchLogicalFiles(superFiles: { NodeGroup?: string, Name?: string }[]): Promise<string[]> {
19
19
  const childSuperFiles: WsDfu.DFULogicalFile[] = [];
20
20
  const logicalFiles: string[] = [];
21
21
  await Promise.all(superFiles.map(superFile => {
@@ -1,4 +1,4 @@
1
- import { DfuServiceBase, WsDfu } from "./wsdl/WsDfu/v1.67/WsDfu.ts";
1
+ import { DfuServiceBase, WsDfu } from "./wsdl/WsDfu/v1.68/WsDfu.ts";
2
2
  export { WsDfu };
3
3
  export declare const DFUArrayActions: typeof WsDfu.DFUArrayActions;
4
4
  export declare const DFUDefFileFormat: typeof WsDfu.DFUDefFileFormat;
@@ -8,7 +8,7 @@ export type base64Binary = WsDfu.base64Binary;
8
8
  export declare class DFUService extends DfuServiceBase {
9
9
  DFUFile(request: WsDfu.DFUDefFileRequest): Promise<string>;
10
10
  recursiveFetchLogicalFiles(superFiles: {
11
- NodeGroup: string;
12
- Name: string;
11
+ NodeGroup?: string;
12
+ Name?: string;
13
13
  }[]): Promise<string[]>;
14
14
  }