@hpcc-js/comms 3.15.8 → 3.16.1
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 +6323 -2
- package/dist/browser/index.js.map +1 -1
- package/dist/browser/index.umd.cjs +7 -2
- package/dist/browser/index.umd.cjs.map +1 -1
- package/dist/node/index.cjs +9 -9
- package/dist/node/index.cjs.map +4 -4
- package/dist/node/index.js +9 -9
- package/dist/node/index.js.map +4 -4
- package/package.json +9 -9
- package/src/ecl/dfuWorkunit.ts +1 -0
- package/src/ecl/workunit.ts +2 -0
- package/src/services/wsWorkunits.ts +1 -1
- package/src/services/wsdl/FileSpray/v1.29/FileSpray.ts +3 -0
- package/src/services/wsdl/WsWorkunits/v2.06/WsWorkunits.ts +3237 -0
- package/src/services/wsdl/WsWorkunits/v2.07/WsWorkunits.ts +3238 -0
- package/src/services/wsdl/WsWorkunits/v2.08/WsWorkunits.ts +61 -0
- package/src/services/wsdl/WsWorkunits/v2.09/WsWorkunits.ts +3255 -0
- package/src/services/wsdl/WsWorkunits/v2.10/WsWorkunits.ts +3259 -0
- package/types/ecl/dfuWorkunit.d.ts +1 -0
- package/types/ecl/workunit.d.ts +2 -0
- package/types/services/wsWorkunits.d.ts +1 -1
- package/types/services/wsdl/FileSpray/v1.29/FileSpray.d.ts +3 -0
- package/types/services/wsdl/WsWorkunits/{v2.08 → v2.10}/WsWorkunits.d.ts +69 -0
|
@@ -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
|
}
|