@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.
@@ -82,6 +82,28 @@ export namespace WsWorkunits {
82
82
  alert = "alert"
83
83
  }
84
84
 
85
+ export enum WUFileDownloadOption {
86
+ OriginalText = 0,
87
+ Attachment = 1,
88
+ ZIP = 2,
89
+ GZIP = 3
90
+ }
91
+
92
+ export enum WUFileType {
93
+ XML = "XML",
94
+ cpp = "cpp",
95
+ dll = "dll",
96
+ res = "res",
97
+ log = "log",
98
+ WUECL = "WUECL",
99
+ ThorLog = "ThorLog",
100
+ ThorSlaveLog = "ThorSlaveLog",
101
+ EclAgentLog = "EclAgentLog",
102
+ ArchiveQuery = "ArchiveQuery",
103
+ ComponentLog = "ComponentLog",
104
+ PostMortem = "PostMortem"
105
+ }
106
+
85
107
  export enum WUQueryFilterSuspendedType {
86
108
  Allqueries = "All queries",
87
109
  Notsuspended = "Not suspended",
@@ -521,6 +543,7 @@ export namespace WsWorkunits {
521
543
  RemoteStorage?: string;
522
544
  KeyCompression?: string;
523
545
  DfuTargetPlane?: string;
546
+ Activate?: WUQueryActivationMode;
524
547
  }
525
548
 
526
549
  export interface CopiedQueries {
@@ -1490,6 +1513,39 @@ export namespace WsWorkunits {
1490
1513
  Workunit?: Workunit;
1491
1514
  }
1492
1515
 
1516
+ export interface WUFileOption {
1517
+ FileType?: WUFileType;
1518
+ Name?: string;
1519
+ IPAddress?: string;
1520
+ Description?: string;
1521
+ Process?: string;
1522
+ LogDate?: string;
1523
+ ClusterGroup?: string;
1524
+ PlainText?: string;
1525
+ SlaveNumber?: int;
1526
+ SizeLimit?: long;
1527
+ MaxLogRecords?: unsignedInt;
1528
+ LogSelectColumnMode?: LogSelectColumnMode;
1529
+ LogFormat?: LogAccessLogFormat;
1530
+ LogSearchTimeBuffSecs?: unsignedInt;
1531
+ LogColumns?: LogColumns;
1532
+ }
1533
+
1534
+ export interface WUFileOptions {
1535
+ WUFileOption?: WUFileOption[];
1536
+ }
1537
+
1538
+ export interface WUHelperFileArchive {
1539
+ Wuid?: string;
1540
+ DownloadOption?: WUFileDownloadOption;
1541
+ WUFileOptions?: WUFileOptions;
1542
+ }
1543
+
1544
+ export interface WUHelperFileArchiveResponse {
1545
+ Exceptions?: Exceptions;
1546
+ thefile?: base64Binary;
1547
+ }
1548
+
1493
1549
  export interface WUInfo {
1494
1550
  Wuid?: string;
1495
1551
  TruncateEclTo64k?: boolean;
@@ -1931,6 +1987,7 @@ export namespace WsWorkunits {
1931
1987
  MinimumExecuteCost?: double;
1932
1988
  MinimumFileAccessCost?: double;
1933
1989
  MinimumCompileCost?: double;
1990
+ ErrorContents?: string;
1934
1991
  Sortby?: string;
1935
1992
  Descending?: boolean;
1936
1993
  CacheHint?: long;
@@ -3008,6 +3065,10 @@ export class WorkunitsServiceBase extends Service {
3008
3065
  return this._connection.send("WUGraphTiming", request, "json", false, abortSignal, "WUGraphTimingResponse");
3009
3066
  }
3010
3067
 
3068
+ WUHelperFileArchive(request: WsWorkunits.WUHelperFileArchive, abortSignal?: AbortSignal): Promise<WsWorkunits.WUHelperFileArchiveResponse> {
3069
+ return this._connection.send("WUHelperFileArchive", request, "json", false, abortSignal, "WUHelperFileArchiveResponse");
3070
+ }
3071
+
3011
3072
  WUInfo(request: WsWorkunits.WUInfo, abortSignal?: AbortSignal): Promise<WsWorkunits.WUInfoResponse> {
3012
3073
  return this._connection.send("WUInfo", request, "json", false, abortSignal, "WUInfoResponse");
3013
3074
  }