@hpcc-js/comms 2.81.1 → 2.82.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/index.es6.js +11 -3
- package/dist/index.es6.js.map +1 -1
- package/dist/index.js +11 -3
- package/dist/index.js.map +1 -1
- package/dist/index.min.js +1 -1
- package/dist/index.min.js.map +1 -1
- package/dist/index.node.js +11 -3
- package/dist/index.node.js.map +1 -1
- package/dist/index.node.min.js +1 -1
- package/dist/index.node.min.js.map +1 -1
- package/lib-es6/__package__.js +2 -2
- package/lib-es6/ecl/logicalFile.js +5 -0
- package/lib-es6/ecl/logicalFile.js.map +1 -1
- package/lib-es6/services/wsDFU.js +1 -1
- package/lib-es6/services/wsdl/WsDfu/v1.65/WsDfu.js +145 -0
- package/lib-es6/services/wsdl/WsDfu/v1.65/WsDfu.js.map +1 -0
- package/lib-es6/services/wsdl/WsWorkunits/v1.95/WsWorkunits.js +3 -0
- package/lib-es6/services/wsdl/WsWorkunits/v1.95/WsWorkunits.js.map +1 -1
- package/package.json +2 -2
- package/src/__package__.ts +2 -2
- package/src/ecl/logicalFile.ts +1 -0
- package/src/services/wsDFU.ts +1 -1
- package/src/services/wsdl/WsDfu/v1.65/WsDfu.ts +1513 -0
- package/src/services/wsdl/WsWorkunits/v1.95/WsWorkunits.ts +106 -60
- package/types/__package__.d.ts +2 -2
- package/types/ecl/logicalFile.d.ts +1 -0
- package/types/ecl/logicalFile.d.ts.map +1 -1
- package/types/services/wsDFU.d.ts +1 -1
- package/types/services/wsdl/WsDfu/v1.65/WsDfu.d.ts +1280 -0
- package/types/services/wsdl/WsDfu/v1.65/WsDfu.d.ts.map +1 -0
- package/types/services/wsdl/WsWorkunits/v1.95/WsWorkunits.d.ts +92 -54
- package/types/services/wsdl/WsWorkunits/v1.95/WsWorkunits.d.ts.map +1 -1
- package/types-3.4/__package__.d.ts +2 -2
- package/types-3.4/ecl/logicalFile.d.ts +1 -0
- package/types-3.4/services/wsDFU.d.ts +1 -1
- package/types-3.4/services/wsdl/WsDfu/v1.65/WsDfu.d.ts +1280 -0
- package/types-3.4/services/wsdl/WsWorkunits/v1.95/WsWorkunits.d.ts +92 -54
|
@@ -2,12 +2,12 @@ import { IConnection, IOptions } from "../../../../connection";
|
|
|
2
2
|
import { Service } from "../../../../espConnection";
|
|
3
3
|
export declare namespace WsWorkunits {
|
|
4
4
|
type int = number;
|
|
5
|
+
type double = number;
|
|
6
|
+
type long = number;
|
|
7
|
+
type nonNegativeInteger = number;
|
|
5
8
|
type unsignedInt = number;
|
|
6
9
|
type base64Binary = string;
|
|
7
|
-
type nonNegativeInteger = number;
|
|
8
10
|
type dateTime = string;
|
|
9
|
-
type long = number;
|
|
10
|
-
type double = number;
|
|
11
11
|
type integer = number;
|
|
12
12
|
enum ECLWUActions {
|
|
13
13
|
Abort = "Abort",
|
|
@@ -184,6 +184,89 @@ export declare namespace WsWorkunits {
|
|
|
184
184
|
Name: string;
|
|
185
185
|
Result: string;
|
|
186
186
|
}
|
|
187
|
+
interface PropertyOptions {
|
|
188
|
+
IncludeName: boolean;
|
|
189
|
+
IncludeRawValue: boolean;
|
|
190
|
+
IncludeFormatted: boolean;
|
|
191
|
+
IncludeMeasure: boolean;
|
|
192
|
+
IncludeCreator: boolean;
|
|
193
|
+
IncludeCreatorType: boolean;
|
|
194
|
+
}
|
|
195
|
+
interface WUAnalyseHotspot {
|
|
196
|
+
Wuid: string;
|
|
197
|
+
RootScope: string;
|
|
198
|
+
OptOnlyActive: boolean;
|
|
199
|
+
OnlyCriticalPath: boolean;
|
|
200
|
+
IncludeProperties: boolean;
|
|
201
|
+
IncludeStatistics: boolean;
|
|
202
|
+
ThresholdPercent: double;
|
|
203
|
+
PropertyOptions: {
|
|
204
|
+
IncludeName: boolean;
|
|
205
|
+
IncludeRawValue: boolean;
|
|
206
|
+
IncludeFormatted: boolean;
|
|
207
|
+
IncludeMeasure: boolean;
|
|
208
|
+
IncludeCreator: boolean;
|
|
209
|
+
IncludeCreatorType: boolean;
|
|
210
|
+
};
|
|
211
|
+
}
|
|
212
|
+
interface Property {
|
|
213
|
+
Name: string;
|
|
214
|
+
RawValue: string;
|
|
215
|
+
Formatted: string;
|
|
216
|
+
Measure: string;
|
|
217
|
+
Creator: string;
|
|
218
|
+
CreatorType: string;
|
|
219
|
+
}
|
|
220
|
+
interface Properties {
|
|
221
|
+
Property: Property[];
|
|
222
|
+
}
|
|
223
|
+
interface Note {
|
|
224
|
+
Source: string;
|
|
225
|
+
Message: string;
|
|
226
|
+
ErrorCode: nonNegativeInteger;
|
|
227
|
+
Severity: string;
|
|
228
|
+
Cost: nonNegativeInteger;
|
|
229
|
+
}
|
|
230
|
+
interface Notes {
|
|
231
|
+
Note: Note[];
|
|
232
|
+
}
|
|
233
|
+
interface Activity {
|
|
234
|
+
ScopeName: string;
|
|
235
|
+
Id: string;
|
|
236
|
+
ScopeType: string;
|
|
237
|
+
Properties: {
|
|
238
|
+
Property: Property[];
|
|
239
|
+
};
|
|
240
|
+
Notes: {
|
|
241
|
+
Note: Note[];
|
|
242
|
+
};
|
|
243
|
+
SinkActivity: string;
|
|
244
|
+
}
|
|
245
|
+
interface Activities {
|
|
246
|
+
Activity: Activity[];
|
|
247
|
+
}
|
|
248
|
+
interface Dependency {
|
|
249
|
+
ScopeName: string;
|
|
250
|
+
Id: string;
|
|
251
|
+
ScopeType: string;
|
|
252
|
+
Properties: Properties;
|
|
253
|
+
Notes: Notes;
|
|
254
|
+
SinkActivity: string;
|
|
255
|
+
}
|
|
256
|
+
interface Dependencies {
|
|
257
|
+
Dependency: Dependency[];
|
|
258
|
+
}
|
|
259
|
+
interface WUAnalyseHotspotResponse {
|
|
260
|
+
Exceptions: Exceptions;
|
|
261
|
+
RootScope: string;
|
|
262
|
+
RootTime: long;
|
|
263
|
+
Activities: {
|
|
264
|
+
Activity: Activity[];
|
|
265
|
+
};
|
|
266
|
+
Dependencies: {
|
|
267
|
+
Dependency: Dependency[];
|
|
268
|
+
};
|
|
269
|
+
}
|
|
187
270
|
interface WUCDebug {
|
|
188
271
|
Wuid: string;
|
|
189
272
|
Command: string;
|
|
@@ -276,26 +359,13 @@ export declare namespace WsWorkunits {
|
|
|
276
359
|
interface Errors {
|
|
277
360
|
ECLException: ECLException[];
|
|
278
361
|
}
|
|
279
|
-
interface ECLAttribute {
|
|
280
|
-
ModuleName: string;
|
|
281
|
-
AttributeName: string;
|
|
282
|
-
IsLocked: boolean;
|
|
283
|
-
IsCheckedOut: boolean;
|
|
284
|
-
IsSandbox: boolean;
|
|
285
|
-
IsOrphaned: boolean;
|
|
286
|
-
}
|
|
287
|
-
interface Dependencies {
|
|
288
|
-
ECLAttribute: ECLAttribute[];
|
|
289
|
-
}
|
|
290
362
|
interface WUCompileECLResponse {
|
|
291
363
|
Exceptions: Exceptions;
|
|
292
364
|
Complexity: string;
|
|
293
365
|
Errors: {
|
|
294
366
|
ECLException: ECLException[];
|
|
295
367
|
};
|
|
296
|
-
Dependencies:
|
|
297
|
-
ECLAttribute: ECLAttribute[];
|
|
298
|
-
};
|
|
368
|
+
Dependencies: Dependencies;
|
|
299
369
|
}
|
|
300
370
|
interface WUCopyLogicalFiles {
|
|
301
371
|
Wuid: string;
|
|
@@ -892,9 +962,6 @@ export declare namespace WsWorkunits {
|
|
|
892
962
|
Depth: unsignedInt;
|
|
893
963
|
ScopeTypes: ScopeTypes;
|
|
894
964
|
}
|
|
895
|
-
interface Properties {
|
|
896
|
-
Property: string[];
|
|
897
|
-
}
|
|
898
965
|
interface Extra {
|
|
899
966
|
scopeType: string;
|
|
900
967
|
Properties: Properties;
|
|
@@ -911,9 +978,7 @@ export declare namespace WsWorkunits {
|
|
|
911
978
|
AllNotes: boolean;
|
|
912
979
|
MinVersion: string;
|
|
913
980
|
Measure: string;
|
|
914
|
-
Properties:
|
|
915
|
-
Property: string[];
|
|
916
|
-
};
|
|
981
|
+
Properties: Properties;
|
|
917
982
|
ExtraProperties: {
|
|
918
983
|
Extra: Extra[];
|
|
919
984
|
};
|
|
@@ -924,14 +989,6 @@ export declare namespace WsWorkunits {
|
|
|
924
989
|
IncludeId: boolean;
|
|
925
990
|
IncludeScopeType: boolean;
|
|
926
991
|
}
|
|
927
|
-
interface PropertyOptions {
|
|
928
|
-
IncludeName: boolean;
|
|
929
|
-
IncludeRawValue: boolean;
|
|
930
|
-
IncludeFormatted: boolean;
|
|
931
|
-
IncludeMeasure: boolean;
|
|
932
|
-
IncludeCreator: boolean;
|
|
933
|
-
IncludeCreatorType: boolean;
|
|
934
|
-
}
|
|
935
992
|
interface WUDetails {
|
|
936
993
|
WUID: string;
|
|
937
994
|
ScopeFilter: {
|
|
@@ -962,9 +1019,7 @@ export declare namespace WsWorkunits {
|
|
|
962
1019
|
AllNotes: boolean;
|
|
963
1020
|
MinVersion: string;
|
|
964
1021
|
Measure: string;
|
|
965
|
-
Properties:
|
|
966
|
-
Property: string[];
|
|
967
|
-
};
|
|
1022
|
+
Properties: Properties;
|
|
968
1023
|
ExtraProperties: {
|
|
969
1024
|
Extra: Extra[];
|
|
970
1025
|
};
|
|
@@ -976,14 +1031,7 @@ export declare namespace WsWorkunits {
|
|
|
976
1031
|
IncludeId: boolean;
|
|
977
1032
|
IncludeScopeType: boolean;
|
|
978
1033
|
};
|
|
979
|
-
PropertyOptions:
|
|
980
|
-
IncludeName: boolean;
|
|
981
|
-
IncludeRawValue: boolean;
|
|
982
|
-
IncludeFormatted: boolean;
|
|
983
|
-
IncludeMeasure: boolean;
|
|
984
|
-
IncludeCreator: boolean;
|
|
985
|
-
IncludeCreatorType: boolean;
|
|
986
|
-
};
|
|
1034
|
+
PropertyOptions: PropertyOptions;
|
|
987
1035
|
}
|
|
988
1036
|
interface WUDetailsResponse {
|
|
989
1037
|
Exceptions: Exceptions;
|
|
@@ -996,15 +1044,6 @@ export declare namespace WsWorkunits {
|
|
|
996
1044
|
interface Measures {
|
|
997
1045
|
Measure: string[];
|
|
998
1046
|
}
|
|
999
|
-
interface Activity {
|
|
1000
|
-
Kind: unsignedInt;
|
|
1001
|
-
Name: string;
|
|
1002
|
-
IsSink: boolean;
|
|
1003
|
-
IsSource: boolean;
|
|
1004
|
-
}
|
|
1005
|
-
interface Activities {
|
|
1006
|
-
Activity: Activity[];
|
|
1007
|
-
}
|
|
1008
1047
|
interface WUDetailsMetaResponse {
|
|
1009
1048
|
Exceptions: Exceptions;
|
|
1010
1049
|
Properties: Properties;
|
|
@@ -1012,9 +1051,7 @@ export declare namespace WsWorkunits {
|
|
|
1012
1051
|
Measures: {
|
|
1013
1052
|
Measure: string[];
|
|
1014
1053
|
};
|
|
1015
|
-
Activities:
|
|
1016
|
-
Activity: Activity[];
|
|
1017
|
-
};
|
|
1054
|
+
Activities: Activities;
|
|
1018
1055
|
}
|
|
1019
1056
|
interface EclDefinitions {
|
|
1020
1057
|
Item: string[];
|
|
@@ -2404,6 +2441,7 @@ export declare class WorkunitsServiceBase extends Service {
|
|
|
2404
2441
|
WUAbort(request: WsWorkunits.WUAbort): Promise<WsWorkunits.WUAbortResponse>;
|
|
2405
2442
|
WUAction(request: WsWorkunits.WUAction): Promise<WsWorkunits.WUActionResponse>;
|
|
2406
2443
|
WUAddLocalFileToWorkunit(request: WsWorkunits.WUAddLocalFileToWorkunit): Promise<WsWorkunits.WUAddLocalFileToWorkunitResponse>;
|
|
2444
|
+
WUAnalyseHotspot(request: WsWorkunits.WUAnalyseHotspot): Promise<WsWorkunits.WUAnalyseHotspotResponse>;
|
|
2407
2445
|
WUCDebug(request: WsWorkunits.WUCDebug): Promise<WsWorkunits.WUDebugResponse>;
|
|
2408
2446
|
WUCheckFeatures(request: WsWorkunits.WUCheckFeatures): Promise<WsWorkunits.WUCheckFeaturesResponse>;
|
|
2409
2447
|
WUClusterJobQueueLOG(request: WsWorkunits.WUClusterJobQueueLOG): Promise<WsWorkunits.WUClusterJobQueueLOGResponse>;
|