@hpcc-js/comms 3.14.2 → 3.15.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/dist/browser/index.js +1 -1
- package/dist/browser/index.js.map +1 -1
- package/dist/browser/index.umd.cjs +1 -1
- package/dist/browser/index.umd.cjs.map +1 -1
- package/dist/node/index.cjs +8 -8
- package/dist/node/index.cjs.map +4 -4
- package/dist/node/index.js +7 -7
- package/dist/node/index.js.map +4 -4
- package/package.json +7 -7
- package/src/services/fileSpray.ts +25 -0
- package/src/services/wsLogaccess.ts +5 -1
- package/src/services/wsWorkunits.ts +1 -1
- package/src/services/wsdl/WsWorkunits/v2.04/WsWorkunits.ts +3171 -0
- package/types/services/fileSpray.d.ts +13 -0
- package/types/services/wsWorkunits.d.ts +1 -1
- package/types/services/wsdl/WsWorkunits/{v2.03 → v2.04}/WsWorkunits.d.ts +9 -3
|
@@ -14,6 +14,19 @@ export declare enum FileSprayStates {
|
|
|
14
14
|
aborting = 8,
|
|
15
15
|
notfound = 999
|
|
16
16
|
}
|
|
17
|
+
export declare enum DFUWUTypes {
|
|
18
|
+
Copy = "copy",
|
|
19
|
+
Remove = "remove",
|
|
20
|
+
Move = "move",
|
|
21
|
+
Rename = "rename",
|
|
22
|
+
Replicate = "replicate",
|
|
23
|
+
Import = "import",
|
|
24
|
+
Export = "export",
|
|
25
|
+
Monitor = "monitor",
|
|
26
|
+
Copymerge = "copymerge",
|
|
27
|
+
Supercopy = "supercopy",
|
|
28
|
+
Publish = "publish"
|
|
29
|
+
}
|
|
17
30
|
export interface UpdateDFUWorkunitEx extends UpdateDFUWorkunitMinusWU {
|
|
18
31
|
wu?: Partial<UpdateDFUWorkunitWU>;
|
|
19
32
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { XMLNode } from "@hpcc-js/util";
|
|
2
|
-
import { WsWorkunits, WorkunitsServiceBase } from "./wsdl/WsWorkunits/v2.
|
|
2
|
+
import { WsWorkunits, WorkunitsServiceBase } from "./wsdl/WsWorkunits/v2.04/WsWorkunits.ts";
|
|
3
3
|
import { IConnection, IOptions } from "../connection.ts";
|
|
4
4
|
export { WsWorkunits };
|
|
5
5
|
export declare enum WUStateID {
|
|
@@ -614,11 +614,17 @@ export declare namespace WsWorkunits {
|
|
|
614
614
|
interface ServiceNames {
|
|
615
615
|
Item: string[];
|
|
616
616
|
}
|
|
617
|
+
interface Graphs2 {
|
|
618
|
+
Graph: string[];
|
|
619
|
+
}
|
|
617
620
|
interface ECLWUProcess {
|
|
618
621
|
Name: string;
|
|
619
622
|
Type: string;
|
|
620
623
|
PodName: string;
|
|
624
|
+
ContainerName: string;
|
|
625
|
+
Graphs: Graphs2;
|
|
621
626
|
InstanceNumber: int;
|
|
627
|
+
Sequence: string;
|
|
622
628
|
Log: string;
|
|
623
629
|
PID: string;
|
|
624
630
|
Pattern: string;
|
|
@@ -1085,12 +1091,12 @@ export declare namespace WsWorkunits {
|
|
|
1085
1091
|
Complete: boolean;
|
|
1086
1092
|
Failed: boolean;
|
|
1087
1093
|
}
|
|
1088
|
-
interface
|
|
1094
|
+
interface Graphs3 {
|
|
1089
1095
|
ECLGraphEx: ECLGraphEx[];
|
|
1090
1096
|
}
|
|
1091
1097
|
interface WUGetGraphResponse {
|
|
1092
1098
|
Exceptions: Exceptions;
|
|
1093
|
-
Graphs:
|
|
1099
|
+
Graphs: Graphs3;
|
|
1094
1100
|
}
|
|
1095
1101
|
interface WUGetGraphNameAndTypes {
|
|
1096
1102
|
Wuid: string;
|
|
@@ -1913,7 +1919,7 @@ export declare namespace WsWorkunits {
|
|
|
1913
1919
|
}
|
|
1914
1920
|
interface WUQueryGetGraphResponse {
|
|
1915
1921
|
Exceptions: Exceptions;
|
|
1916
|
-
Graphs:
|
|
1922
|
+
Graphs: Graphs3;
|
|
1917
1923
|
}
|
|
1918
1924
|
interface WUQueryGetSummaryStats {
|
|
1919
1925
|
Target: string;
|