@hpcc-js/comms 3.15.5 → 3.15.7
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 +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 +13 -11
- package/src/ecl/scope.ts +1 -2
- package/src/ecl/workunit.ts +1 -0
- package/src/services/fileSpray.ts +1 -26
- package/src/services/wsPackageProcess.ts +1 -1
- package/src/services/wsWorkunits.ts +1 -1
- package/src/services/wsdl/FileSpray/v1.27/FileSpray.ts +538 -538
- package/src/services/wsdl/FileSpray/v1.29/FileSpray.ts +946 -0
- package/src/services/wsdl/WsCloud/v1.02/WsCloud.ts +21 -21
- package/src/services/wsdl/WsDFUXRef/v1.04/WsDFUXRef.ts +70 -69
- package/src/services/wsdl/WsDali/v1.07/WsDali.ts +72 -72
- package/src/services/wsdl/WsDfu/v1.68/WsDfu.ts +1301 -0
- package/src/services/wsdl/WsESDLConfig/v1.5/WsESDLConfig.ts +366 -0
- package/src/services/wsdl/WsFileIO/v1.01/WsFileIO.ts +32 -32
- package/src/services/wsdl/WsPackageProcess/v1.08/WsPackageProcess.ts +503 -0
- package/src/services/wsdl/WsSasha/v1.01/WsSasha.ts +18 -18
- package/src/services/wsdl/WsTopology/v1.33/WsTopology.ts +383 -383
- package/src/services/wsdl/WsWorkunits/v2.05/WsWorkunits.ts +3177 -0
- package/src/services/wsdl/WsWorkunits/v2.08/WsWorkunits.ts +3179 -0
- package/src/services/wsdl/ws_access/v1.17/ws_access.ts +319 -319
- package/src/services/wsdl/ws_account/v1.07/ws_account.ts +39 -39
- package/src/services/wsdl/ws_codesign/v1.1/ws_codesign.ts +26 -26
- package/src/services/wsdl/ws_elk/v1/ws_elk.ts +14 -14
- package/src/services/wsdl/ws_machine/v1.19/ws_machine.ts +215 -215
- package/src/services/wsdl/wsstore/v1.02/wsstore.ts +72 -72
- package/types/ecl/workunit.d.ts +1 -0
- package/types/services/fileSpray.d.ts +1 -14
- package/types/services/wsPackageProcess.d.ts +1 -1
- package/types/services/wsWorkunits.d.ts +1 -1
- package/types/services/wsdl/FileSpray/v1.29/FileSpray.d.ts +751 -0
- package/types/services/wsdl/WsCloud/v1.02/WsCloud.d.ts +18 -18
- package/types/services/wsdl/WsDFUXRef/v1.04/WsDFUXRef.d.ts +58 -57
- package/types/services/wsdl/WsDali/v1.07/WsDali.d.ts +42 -42
- package/types/services/wsdl/WsPackageProcess/{v1.07 → v1.08}/WsPackageProcess.d.ts +121 -118
- package/types/services/wsdl/WsSasha/v1.01/WsSasha.d.ts +13 -13
- package/types/services/wsdl/WsTopology/v1.33/WsTopology.d.ts +360 -360
- package/types/services/wsdl/WsWorkunits/v2.08/WsWorkunits.d.ts +2573 -0
- package/types/services/wsdl/ws_access/v1.17/ws_access.d.ts +268 -268
- package/types/services/wsdl/ws_account/v1.07/ws_account.d.ts +34 -34
- package/types/services/wsdl/ws_codesign/v1.1/ws_codesign.d.ts +22 -22
- package/types/services/wsdl/ws_elk/v1/ws_elk.d.ts +12 -12
- package/types/services/wsdl/ws_machine/v1.19/ws_machine.d.ts +205 -205
- package/types/services/wsdl/wsstore/v1.02/wsstore.d.ts +61 -61
- package/types/services/wsdl/FileSpray/v1.27/FileSpray.d.ts +0 -736
- package/types/services/wsdl/WsWorkunits/v2.04/WsWorkunits.d.ts +0 -2565
|
@@ -10,37 +10,37 @@ export namespace WsAccount {
|
|
|
10
10
|
}
|
|
11
11
|
|
|
12
12
|
export interface Exception {
|
|
13
|
-
Code
|
|
14
|
-
Audience
|
|
15
|
-
Source
|
|
16
|
-
Message
|
|
13
|
+
Code?: string;
|
|
14
|
+
Audience?: string;
|
|
15
|
+
Source?: string;
|
|
16
|
+
Message?: string;
|
|
17
17
|
}
|
|
18
18
|
|
|
19
19
|
export interface Exceptions {
|
|
20
|
-
Source
|
|
21
|
-
Exception
|
|
20
|
+
Source?: string;
|
|
21
|
+
Exception?: Exception[];
|
|
22
22
|
}
|
|
23
23
|
|
|
24
24
|
export interface Groups {
|
|
25
|
-
Group
|
|
25
|
+
Group?: string[];
|
|
26
26
|
}
|
|
27
27
|
|
|
28
28
|
export interface MyAccountResponse {
|
|
29
|
-
Exceptions
|
|
30
|
-
username
|
|
31
|
-
firstName
|
|
32
|
-
lastName
|
|
33
|
-
passwordExpiration
|
|
34
|
-
passwordDaysRemaining
|
|
35
|
-
passwordExpirationWarningDays
|
|
36
|
-
employeeID
|
|
37
|
-
distinguishedName
|
|
38
|
-
accountType
|
|
39
|
-
passwordNeverExpires
|
|
40
|
-
passwordIsExpired
|
|
41
|
-
CanUpdatePassword
|
|
42
|
-
accountStatus
|
|
43
|
-
Groups
|
|
29
|
+
Exceptions?: Exceptions;
|
|
30
|
+
username?: string;
|
|
31
|
+
firstName?: string;
|
|
32
|
+
lastName?: string;
|
|
33
|
+
passwordExpiration?: string;
|
|
34
|
+
passwordDaysRemaining?: int;
|
|
35
|
+
passwordExpirationWarningDays?: int;
|
|
36
|
+
employeeID?: string;
|
|
37
|
+
distinguishedName?: string;
|
|
38
|
+
accountType?: string;
|
|
39
|
+
passwordNeverExpires?: boolean;
|
|
40
|
+
passwordIsExpired?: boolean;
|
|
41
|
+
CanUpdatePassword?: boolean;
|
|
42
|
+
accountStatus?: int;
|
|
43
|
+
Groups?: Groups;
|
|
44
44
|
}
|
|
45
45
|
|
|
46
46
|
export interface ws_accountPingRequest {
|
|
@@ -59,9 +59,9 @@ export namespace WsAccount {
|
|
|
59
59
|
}
|
|
60
60
|
|
|
61
61
|
export interface UpdateUserResponse {
|
|
62
|
-
Exceptions
|
|
63
|
-
retcode
|
|
64
|
-
message
|
|
62
|
+
Exceptions?: Exceptions;
|
|
63
|
+
retcode?: int;
|
|
64
|
+
message?: string;
|
|
65
65
|
}
|
|
66
66
|
|
|
67
67
|
export interface UpdateUserInputRequest {
|
|
@@ -69,8 +69,8 @@ export namespace WsAccount {
|
|
|
69
69
|
}
|
|
70
70
|
|
|
71
71
|
export interface UpdateUserInputResponse {
|
|
72
|
-
Exceptions
|
|
73
|
-
username
|
|
72
|
+
Exceptions?: Exceptions;
|
|
73
|
+
username?: string;
|
|
74
74
|
}
|
|
75
75
|
|
|
76
76
|
export interface VerifyUserRequest {
|
|
@@ -79,8 +79,8 @@ export namespace WsAccount {
|
|
|
79
79
|
}
|
|
80
80
|
|
|
81
81
|
export interface VerifyUserResponse {
|
|
82
|
-
Exceptions
|
|
83
|
-
retcode
|
|
82
|
+
Exceptions?: Exceptions;
|
|
83
|
+
retcode?: int;
|
|
84
84
|
}
|
|
85
85
|
|
|
86
86
|
}
|
|
@@ -91,24 +91,24 @@ export class AccountServiceBase extends Service {
|
|
|
91
91
|
super(optsConnection, "ws_account", "1.07");
|
|
92
92
|
}
|
|
93
93
|
|
|
94
|
-
MyAccount(request:
|
|
95
|
-
return this._connection.send("MyAccount", request, "json", false,
|
|
94
|
+
MyAccount(request: WsAccount.MyAccountRequest, abortSignal?: AbortSignal): Promise<WsAccount.MyAccountResponse> {
|
|
95
|
+
return this._connection.send("MyAccount", request, "json", false, abortSignal, "MyAccountResponse");
|
|
96
96
|
}
|
|
97
97
|
|
|
98
|
-
Ping(request:
|
|
99
|
-
return this._connection.send("Ping", request, "json", false,
|
|
98
|
+
Ping(request: WsAccount.ws_accountPingRequest, abortSignal?: AbortSignal): Promise<WsAccount.ws_accountPingResponse> {
|
|
99
|
+
return this._connection.send("Ping", request, "json", false, abortSignal, "ws_accountPingResponse");
|
|
100
100
|
}
|
|
101
101
|
|
|
102
|
-
UpdateUser(request:
|
|
103
|
-
return this._connection.send("UpdateUser", request, "json", false,
|
|
102
|
+
UpdateUser(request: WsAccount.UpdateUserRequest, abortSignal?: AbortSignal): Promise<WsAccount.UpdateUserResponse> {
|
|
103
|
+
return this._connection.send("UpdateUser", request, "json", false, abortSignal, "UpdateUserResponse");
|
|
104
104
|
}
|
|
105
105
|
|
|
106
|
-
UpdateUserInput(request:
|
|
107
|
-
return this._connection.send("UpdateUserInput", request, "json", false,
|
|
106
|
+
UpdateUserInput(request: WsAccount.UpdateUserInputRequest, abortSignal?: AbortSignal): Promise<WsAccount.UpdateUserInputResponse> {
|
|
107
|
+
return this._connection.send("UpdateUserInput", request, "json", false, abortSignal, "UpdateUserInputResponse");
|
|
108
108
|
}
|
|
109
109
|
|
|
110
|
-
VerifyUser(request:
|
|
111
|
-
return this._connection.send("VerifyUser", request, "json", false,
|
|
110
|
+
VerifyUser(request: WsAccount.VerifyUserRequest, abortSignal?: AbortSignal): Promise<WsAccount.VerifyUserResponse> {
|
|
111
|
+
return this._connection.send("VerifyUser", request, "json", false, abortSignal, "VerifyUserResponse");
|
|
112
112
|
}
|
|
113
113
|
|
|
114
114
|
}
|
|
@@ -14,24 +14,24 @@ export namespace WsCodesign {
|
|
|
14
14
|
}
|
|
15
15
|
|
|
16
16
|
export interface Exception {
|
|
17
|
-
Code
|
|
18
|
-
Audience
|
|
19
|
-
Source
|
|
20
|
-
Message
|
|
17
|
+
Code?: string;
|
|
18
|
+
Audience?: string;
|
|
19
|
+
Source?: string;
|
|
20
|
+
Message?: string;
|
|
21
21
|
}
|
|
22
22
|
|
|
23
23
|
export interface Exceptions {
|
|
24
|
-
Source
|
|
25
|
-
Exception
|
|
24
|
+
Source?: string;
|
|
25
|
+
Exception?: Exception[];
|
|
26
26
|
}
|
|
27
27
|
|
|
28
28
|
export interface UserIDs {
|
|
29
|
-
Item
|
|
29
|
+
Item?: string[];
|
|
30
30
|
}
|
|
31
31
|
|
|
32
32
|
export interface ListUserIDsResponse {
|
|
33
|
-
Exceptions
|
|
34
|
-
UserIDs
|
|
33
|
+
Exceptions?: Exceptions;
|
|
34
|
+
UserIDs?: UserIDs;
|
|
35
35
|
}
|
|
36
36
|
|
|
37
37
|
export interface ws_codesignPingRequest {
|
|
@@ -50,10 +50,10 @@ export namespace WsCodesign {
|
|
|
50
50
|
}
|
|
51
51
|
|
|
52
52
|
export interface SignResponse {
|
|
53
|
-
Exceptions
|
|
54
|
-
RetCode
|
|
55
|
-
ErrMsg
|
|
56
|
-
SignedText
|
|
53
|
+
Exceptions?: Exceptions;
|
|
54
|
+
RetCode?: int;
|
|
55
|
+
ErrMsg?: string;
|
|
56
|
+
SignedText?: string;
|
|
57
57
|
}
|
|
58
58
|
|
|
59
59
|
export interface VerifyRequest {
|
|
@@ -61,11 +61,11 @@ export namespace WsCodesign {
|
|
|
61
61
|
}
|
|
62
62
|
|
|
63
63
|
export interface VerifyResponse {
|
|
64
|
-
Exceptions
|
|
65
|
-
RetCode
|
|
66
|
-
ErrMsg
|
|
67
|
-
IsVerified
|
|
68
|
-
SignedBy
|
|
64
|
+
Exceptions?: Exceptions;
|
|
65
|
+
RetCode?: int;
|
|
66
|
+
ErrMsg?: string;
|
|
67
|
+
IsVerified?: boolean;
|
|
68
|
+
SignedBy?: string;
|
|
69
69
|
}
|
|
70
70
|
|
|
71
71
|
}
|
|
@@ -76,20 +76,20 @@ export class CodesignServiceBase extends Service {
|
|
|
76
76
|
super(optsConnection, "ws_codesign", "1.1");
|
|
77
77
|
}
|
|
78
78
|
|
|
79
|
-
ListUserIDs(request:
|
|
80
|
-
return this._connection.send("ListUserIDs", request, "json", false,
|
|
79
|
+
ListUserIDs(request: WsCodesign.ListUserIDsRequest, abortSignal?: AbortSignal): Promise<WsCodesign.ListUserIDsResponse> {
|
|
80
|
+
return this._connection.send("ListUserIDs", request, "json", false, abortSignal, "ListUserIDsResponse");
|
|
81
81
|
}
|
|
82
82
|
|
|
83
|
-
Ping(request:
|
|
84
|
-
return this._connection.send("Ping", request, "json", false,
|
|
83
|
+
Ping(request: WsCodesign.ws_codesignPingRequest, abortSignal?: AbortSignal): Promise<WsCodesign.ws_codesignPingResponse> {
|
|
84
|
+
return this._connection.send("Ping", request, "json", false, abortSignal, "ws_codesignPingResponse");
|
|
85
85
|
}
|
|
86
86
|
|
|
87
|
-
Sign(request:
|
|
88
|
-
return this._connection.send("Sign", request, "json", false,
|
|
87
|
+
Sign(request: WsCodesign.SignRequest, abortSignal?: AbortSignal): Promise<WsCodesign.SignResponse> {
|
|
88
|
+
return this._connection.send("Sign", request, "json", false, abortSignal, "SignResponse");
|
|
89
89
|
}
|
|
90
90
|
|
|
91
|
-
Verify(request:
|
|
92
|
-
return this._connection.send("Verify", request, "json", false,
|
|
91
|
+
Verify(request: WsCodesign.VerifyRequest, abortSignal?: AbortSignal): Promise<WsCodesign.VerifyResponse> {
|
|
92
|
+
return this._connection.send("Verify", request, "json", false, abortSignal, "VerifyResponse");
|
|
93
93
|
}
|
|
94
94
|
|
|
95
95
|
}
|
|
@@ -8,16 +8,16 @@ export namespace WsElk {
|
|
|
8
8
|
}
|
|
9
9
|
|
|
10
10
|
export interface GetConfigDetailsResponse {
|
|
11
|
-
IntegrateKibana
|
|
12
|
-
KibanaAddress
|
|
13
|
-
KibanaPort
|
|
14
|
-
KibanaEntryPointURI
|
|
15
|
-
ReportElasticSearchHealth
|
|
16
|
-
ElasticSearchAddresses
|
|
17
|
-
ElasticSearchPort
|
|
18
|
-
ReportLogStashHealth
|
|
19
|
-
LogStashAddress
|
|
20
|
-
LogStashPort
|
|
11
|
+
IntegrateKibana?: boolean;
|
|
12
|
+
KibanaAddress?: string;
|
|
13
|
+
KibanaPort?: string;
|
|
14
|
+
KibanaEntryPointURI?: string;
|
|
15
|
+
ReportElasticSearchHealth?: boolean;
|
|
16
|
+
ElasticSearchAddresses?: string;
|
|
17
|
+
ElasticSearchPort?: string;
|
|
18
|
+
ReportLogStashHealth?: boolean;
|
|
19
|
+
LogStashAddress?: string;
|
|
20
|
+
LogStashPort?: string;
|
|
21
21
|
}
|
|
22
22
|
|
|
23
23
|
export interface ws_elkPingRequest {
|
|
@@ -36,12 +36,12 @@ export class ElkServiceBase extends Service {
|
|
|
36
36
|
super(optsConnection, "ws_elk", "1");
|
|
37
37
|
}
|
|
38
38
|
|
|
39
|
-
GetConfigDetails(request:
|
|
40
|
-
return this._connection.send("GetConfigDetails", request, "json", false,
|
|
39
|
+
GetConfigDetails(request: WsElk.GetConfigDetailsRequest, abortSignal?: AbortSignal): Promise<WsElk.GetConfigDetailsResponse> {
|
|
40
|
+
return this._connection.send("GetConfigDetails", request, "json", false, abortSignal, "GetConfigDetailsResponse");
|
|
41
41
|
}
|
|
42
42
|
|
|
43
|
-
Ping(request:
|
|
44
|
-
return this._connection.send("Ping", request, "json", false,
|
|
43
|
+
Ping(request: WsElk.ws_elkPingRequest, abortSignal?: AbortSignal): Promise<WsElk.ws_elkPingResponse> {
|
|
44
|
+
return this._connection.send("Ping", request, "json", false, abortSignal, "ws_elkPingResponse");
|
|
45
45
|
}
|
|
46
46
|
|
|
47
47
|
}
|