@hpcc-js/comms 3.15.7 → 3.16.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hpcc-js/comms",
3
- "version": "3.15.7",
3
+ "version": "3.16.0",
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.5.6",
79
+ "@hpcc-js/util": "^3.5.8",
80
80
  "@xmldom/xmldom": "0.9.10",
81
81
  "undici": "7.25.0"
82
82
  },
83
83
  "devDependencies": {
84
- "@hpcc-js/ddl-shim": "^3.3.6",
85
- "@hpcc-js/esbuild-plugins": "^1.8.8",
84
+ "@hpcc-js/ddl-shim": "^3.3.8",
85
+ "@hpcc-js/esbuild-plugins": "^1.8.10",
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",
@@ -92,7 +92,7 @@
92
92
  "d3-format": "^1",
93
93
  "d3-time-format": "^2",
94
94
  "data-uri-to-buffer": "6.0.2",
95
- "soap": "1.9.1",
95
+ "soap": "1.9.2",
96
96
  "typescript-formatter": "^7.2.2"
97
97
  },
98
98
  "repository": {
@@ -112,5 +112,5 @@
112
112
  "esp",
113
113
  "HPCC-Platform"
114
114
  ],
115
- "gitHead": "630e839917f1cc38f6e3324db5a9ac991234599a"
115
+ "gitHead": "83d7d72530df75074464a3b746abfa800c62b555"
116
116
  }
@@ -80,6 +80,7 @@ export class DFUWorkunit extends StateObject<UDFUWorkunitState, IDFUWorkunitStat
80
80
  get TimeStarted(): string { return this.get("TimeStarted"); }
81
81
  get TimeStopped(): string { return this.get("TimeStopped"); }
82
82
  get StateMessage(): string { return this.get("StateMessage"); }
83
+ get StateReason(): string { return this.get("StateReason"); }
83
84
  get MonitorEventName(): string { return this.get("MonitorEventName"); }
84
85
  get MonitorSub(): boolean { return this.get("MonitorSub"); }
85
86
  get MonitorShotLimit(): number { return this.get("MonitorShotLimit"); }
@@ -309,6 +309,7 @@ export class Workunit extends StateObject<UWorkunitState, IWorkunitState> implem
309
309
  get Scope(): string { return this.get("Scope"); }
310
310
  get AbortBy(): string { return this.get("AbortBy"); }
311
311
  get AbortTime(): string { return this.get("AbortTime"); }
312
+ get AbortReason(): string { return this.get("AbortReason"); }
312
313
  get Workflows(): WsWorkunits.Workflows { return this.get("Workflows"); }
313
314
  get TimingData(): WsWorkunits.TimingData { return this.get("TimingData"); }
314
315
  get HelpersDesc(): string { return this.get("HelpersDesc"); }
@@ -328,6 +329,7 @@ export class Workunit extends StateObject<UWorkunitState, IWorkunitState> implem
328
329
  get ECLWUProcessList(): WsWorkunits.ECLWUProcessList { return this.get("ECLWUProcessList"); }
329
330
  get CostSavingPotential(): number { return this.get("CostSavingPotential"); }
330
331
  get FailureDesc(): string { return this.get("FailureDesc"); }
332
+ get FileSummaries(): WsWorkunits.FileSummaries { return this.get("FileSummaries"); }
331
333
 
332
334
  // Factories ---
333
335
  static create(optsConnection: IOptions | IConnection): Promise<Workunit> {
@@ -1,5 +1,5 @@
1
1
  import { deepMixin, xml2json, XMLNode } from "@hpcc-js/util";
2
- import { WsWorkunits, WorkunitsServiceBase } from "./wsdl/WsWorkunits/v2.08/WsWorkunits.ts";
2
+ import { WsWorkunits, WorkunitsServiceBase } from "./wsdl/WsWorkunits/v2.10/WsWorkunits.ts";
3
3
  import { IConnection, IOptions } from "../connection.ts";
4
4
 
5
5
  export {
@@ -139,6 +139,7 @@ export namespace FileSpray {
139
139
  TimeStarted?: string;
140
140
  TimeStopped?: string;
141
141
  StateMessage?: string;
142
+ StateReason?: string;
142
143
  MonitorEventName?: string;
143
144
  MonitorSub?: boolean;
144
145
  MonitorShotLimit?: int;
@@ -501,6 +502,7 @@ export namespace FileSpray {
501
502
  TimeStarted?: string;
502
503
  TimeStopped?: string;
503
504
  StateMessage?: string;
505
+ StateReason?: string;
504
506
  MonitorEventName?: string;
505
507
  MonitorSub?: boolean;
506
508
  MonitorShotLimit?: int;
@@ -776,6 +778,7 @@ export namespace FileSpray {
776
778
  TimeStarted?: string;
777
779
  TimeStopped?: string;
778
780
  StateMessage?: string;
781
+ StateReason?: string;
779
782
  MonitorEventName?: string;
780
783
  MonitorSub?: boolean;
781
784
  MonitorShotLimit?: int;