@hpcc-js/comms 2.92.0 → 2.92.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 +13 -13
- package/dist/index.es6.js.map +1 -1
- package/dist/index.js +13 -13
- 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 +13 -13
- 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/workunit.js +3 -3
- package/lib-es6/ecl/workunit.js.map +1 -1
- package/lib-es6/services/wsdl/FileSpray/v1.26/FileSpray.js.map +1 -1
- package/lib-es6/services/wsdl/WsDfu/v1.65/WsDfu.js +3 -3
- package/lib-es6/services/wsdl/WsDfu/v1.65/WsDfu.js.map +1 -1
- package/lib-es6/services/wsdl/WsWorkunits/v2/WsWorkunits.js +5 -5
- package/lib-es6/services/wsdl/WsWorkunits/v2/WsWorkunits.js.map +1 -1
- package/package.json +2 -2
- package/src/__package__.ts +2 -2
- package/src/ecl/workunit.ts +3 -3
- package/src/services/wsdl/FileSpray/v1.26/FileSpray.ts +55 -187
- package/src/services/wsdl/WsDfu/v1.65/WsDfu.ts +100 -369
- package/src/services/wsdl/WsWorkunits/v2/WsWorkunits.ts +19 -31
- package/types/__package__.d.ts +2 -2
- package/types/services/wsdl/FileSpray/v1.26/FileSpray.d.ts +53 -187
- package/types/services/wsdl/FileSpray/v1.26/FileSpray.d.ts.map +1 -1
- package/types/services/wsdl/WsDfu/v1.65/WsDfu.d.ts +100 -369
- package/types/services/wsdl/WsDfu/v1.65/WsDfu.d.ts.map +1 -1
- package/types/services/wsdl/WsWorkunits/v2/WsWorkunits.d.ts +18 -27
- package/types/services/wsdl/WsWorkunits/v2/WsWorkunits.d.ts.map +1 -1
- package/types-3.4/__package__.d.ts +2 -2
- package/types-3.4/services/wsdl/FileSpray/v1.26/FileSpray.d.ts +53 -187
- package/types-3.4/services/wsdl/WsDfu/v1.65/WsDfu.d.ts +100 -369
- package/types-3.4/services/wsdl/WsWorkunits/v2/WsWorkunits.d.ts +18 -27
|
@@ -71,12 +71,12 @@ export declare namespace WsWorkunits {
|
|
|
71
71
|
alert = "alert"
|
|
72
72
|
}
|
|
73
73
|
enum WUQueryFilterSuspendedType {
|
|
74
|
-
Allqueries = "
|
|
75
|
-
Notsuspended = "
|
|
74
|
+
Allqueries = "All queries",
|
|
75
|
+
Notsuspended = "Not suspended",
|
|
76
76
|
Suspended = "Suspended",
|
|
77
|
-
Suspendedbyuser = "
|
|
78
|
-
Suspendedbyfirstnode = "
|
|
79
|
-
Suspendedbyanynode = "
|
|
77
|
+
Suspendedbyuser = "Suspended by user",
|
|
78
|
+
Suspendedbyfirstnode = "Suspended by first node",
|
|
79
|
+
Suspendedbyanynode = "Suspended by any node"
|
|
80
80
|
}
|
|
81
81
|
enum WUQuerySetFilterType {
|
|
82
82
|
All = "All",
|
|
@@ -818,15 +818,6 @@ export declare namespace WsWorkunits {
|
|
|
818
818
|
Exceptions: Exceptions;
|
|
819
819
|
Workunit: Workunit;
|
|
820
820
|
}
|
|
821
|
-
interface Scopes {
|
|
822
|
-
Scope: string[];
|
|
823
|
-
}
|
|
824
|
-
interface Ids {
|
|
825
|
-
id: string[];
|
|
826
|
-
}
|
|
827
|
-
interface ScopeTypes {
|
|
828
|
-
ScopeType: string[];
|
|
829
|
-
}
|
|
830
821
|
interface PropertyFilter {
|
|
831
822
|
Name: string;
|
|
832
823
|
ExactValue: string;
|
|
@@ -838,21 +829,18 @@ export declare namespace WsWorkunits {
|
|
|
838
829
|
}
|
|
839
830
|
interface ScopeFilter {
|
|
840
831
|
MaxDepth: integer;
|
|
841
|
-
Scopes:
|
|
842
|
-
Ids:
|
|
843
|
-
ScopeTypes:
|
|
832
|
+
Scopes: string[];
|
|
833
|
+
Ids: string[];
|
|
834
|
+
ScopeTypes: string[];
|
|
844
835
|
PropertyFilters: PropertyFilters;
|
|
845
836
|
}
|
|
846
837
|
interface NestedFilter {
|
|
847
838
|
Depth: unsignedInt;
|
|
848
|
-
ScopeTypes:
|
|
849
|
-
}
|
|
850
|
-
interface Properties2 {
|
|
851
|
-
Property: string[];
|
|
839
|
+
ScopeTypes: string[];
|
|
852
840
|
}
|
|
853
841
|
interface Extra {
|
|
854
842
|
scopeType: string;
|
|
855
|
-
Properties:
|
|
843
|
+
Properties: string[];
|
|
856
844
|
}
|
|
857
845
|
interface ExtraProperties {
|
|
858
846
|
Extra: Extra[];
|
|
@@ -866,7 +854,7 @@ export declare namespace WsWorkunits {
|
|
|
866
854
|
AllNotes: boolean;
|
|
867
855
|
MinVersion: uint64;
|
|
868
856
|
Measure: string;
|
|
869
|
-
Properties:
|
|
857
|
+
Properties: string[];
|
|
870
858
|
ExtraProperties: ExtraProperties;
|
|
871
859
|
}
|
|
872
860
|
interface ScopeOptions {
|
|
@@ -892,14 +880,14 @@ export declare namespace WsWorkunits {
|
|
|
892
880
|
Notes: Notes;
|
|
893
881
|
SinkActivity: string;
|
|
894
882
|
}
|
|
895
|
-
interface
|
|
883
|
+
interface Scopes {
|
|
896
884
|
Scope: Scope[];
|
|
897
885
|
}
|
|
898
886
|
interface WUDetailsResponse {
|
|
899
887
|
Exceptions: Exceptions;
|
|
900
888
|
MaxVersion: uint64;
|
|
901
889
|
WUID: string;
|
|
902
|
-
Scopes:
|
|
890
|
+
Scopes: Scopes;
|
|
903
891
|
}
|
|
904
892
|
interface WUDetailsMeta {
|
|
905
893
|
}
|
|
@@ -908,9 +896,12 @@ export declare namespace WsWorkunits {
|
|
|
908
896
|
ValueType: WUDetailsAttrValueType;
|
|
909
897
|
Description: string;
|
|
910
898
|
}
|
|
911
|
-
interface
|
|
899
|
+
interface Properties2 {
|
|
912
900
|
Property: Property2[];
|
|
913
901
|
}
|
|
902
|
+
interface ScopeTypes {
|
|
903
|
+
ScopeType: string[];
|
|
904
|
+
}
|
|
914
905
|
interface Measures {
|
|
915
906
|
Measure: string[];
|
|
916
907
|
}
|
|
@@ -925,7 +916,7 @@ export declare namespace WsWorkunits {
|
|
|
925
916
|
}
|
|
926
917
|
interface WUDetailsMetaResponse {
|
|
927
918
|
Exceptions: Exceptions;
|
|
928
|
-
Properties:
|
|
919
|
+
Properties: Properties2;
|
|
929
920
|
ScopeTypes: ScopeTypes;
|
|
930
921
|
Measures: Measures;
|
|
931
922
|
Activities: Activities2;
|