@hpcc-js/comms 3.15.5 → 3.15.6
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 +10 -10
- 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 +4 -4
- 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/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/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/wsstore/v1.02/wsstore.ts +72 -72
- package/types/services/wsPackageProcess.d.ts +1 -1
- package/types/services/wsWorkunits.d.ts +1 -1
- package/types/services/wsdl/FileSpray/v1.27/FileSpray.d.ts +506 -506
- 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.05/WsWorkunits.d.ts +2571 -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/wsstore/v1.02/wsstore.d.ts +61 -61
- 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
|
}
|
|
@@ -13,24 +13,24 @@ export namespace Wsstore {
|
|
|
13
13
|
}
|
|
14
14
|
|
|
15
15
|
export interface Exception {
|
|
16
|
-
Code
|
|
17
|
-
Audience
|
|
18
|
-
Source
|
|
19
|
-
Message
|
|
16
|
+
Code?: string;
|
|
17
|
+
Audience?: string;
|
|
18
|
+
Source?: string;
|
|
19
|
+
Message?: string;
|
|
20
20
|
}
|
|
21
21
|
|
|
22
22
|
export interface Exceptions {
|
|
23
|
-
Source
|
|
24
|
-
Exception
|
|
23
|
+
Source?: string;
|
|
24
|
+
Exception?: Exception[];
|
|
25
25
|
}
|
|
26
26
|
|
|
27
27
|
export interface CreateStoreResponse {
|
|
28
|
-
Exceptions
|
|
29
|
-
Name
|
|
30
|
-
Type
|
|
31
|
-
Description
|
|
32
|
-
Owner
|
|
33
|
-
Success
|
|
28
|
+
Exceptions?: Exceptions;
|
|
29
|
+
Name?: string;
|
|
30
|
+
Type?: string;
|
|
31
|
+
Description?: string;
|
|
32
|
+
Owner?: string;
|
|
33
|
+
Success?: boolean;
|
|
34
34
|
}
|
|
35
35
|
|
|
36
36
|
export interface DeleteRequest {
|
|
@@ -42,8 +42,8 @@ export namespace Wsstore {
|
|
|
42
42
|
}
|
|
43
43
|
|
|
44
44
|
export interface DeleteResponse {
|
|
45
|
-
Exceptions
|
|
46
|
-
Success
|
|
45
|
+
Exceptions?: Exceptions;
|
|
46
|
+
Success?: boolean;
|
|
47
47
|
}
|
|
48
48
|
|
|
49
49
|
export interface DeleteNamespaceRequest {
|
|
@@ -54,8 +54,8 @@ export namespace Wsstore {
|
|
|
54
54
|
}
|
|
55
55
|
|
|
56
56
|
export interface DeleteNamespaceResponse {
|
|
57
|
-
Exceptions
|
|
58
|
-
Success
|
|
57
|
+
Exceptions?: Exceptions;
|
|
58
|
+
Success?: boolean;
|
|
59
59
|
}
|
|
60
60
|
|
|
61
61
|
export interface FetchRequest {
|
|
@@ -66,8 +66,8 @@ export namespace Wsstore {
|
|
|
66
66
|
}
|
|
67
67
|
|
|
68
68
|
export interface FetchResponse {
|
|
69
|
-
Exceptions
|
|
70
|
-
Value
|
|
69
|
+
Exceptions?: Exceptions;
|
|
70
|
+
Value?: string;
|
|
71
71
|
}
|
|
72
72
|
|
|
73
73
|
export interface FetchAllRequest {
|
|
@@ -77,18 +77,18 @@ export namespace Wsstore {
|
|
|
77
77
|
}
|
|
78
78
|
|
|
79
79
|
export interface Pair {
|
|
80
|
-
Key
|
|
81
|
-
Value
|
|
80
|
+
Key?: string;
|
|
81
|
+
Value?: string;
|
|
82
82
|
}
|
|
83
83
|
|
|
84
84
|
export interface Pairs {
|
|
85
|
-
Pair
|
|
85
|
+
Pair?: Pair[];
|
|
86
86
|
}
|
|
87
87
|
|
|
88
88
|
export interface FetchAllResponse {
|
|
89
|
-
Exceptions
|
|
90
|
-
Namespace
|
|
91
|
-
Pairs
|
|
89
|
+
Exceptions?: Exceptions;
|
|
90
|
+
Namespace?: string;
|
|
91
|
+
Pairs?: Pairs;
|
|
92
92
|
}
|
|
93
93
|
|
|
94
94
|
export interface FetchKeyMDRequest {
|
|
@@ -99,11 +99,11 @@ export namespace Wsstore {
|
|
|
99
99
|
}
|
|
100
100
|
|
|
101
101
|
export interface FetchKeyMDResponse {
|
|
102
|
-
Exceptions
|
|
103
|
-
StoreName
|
|
104
|
-
Namespace
|
|
105
|
-
Key
|
|
106
|
-
Pairs
|
|
102
|
+
Exceptions?: Exceptions;
|
|
103
|
+
StoreName?: string;
|
|
104
|
+
Namespace?: string;
|
|
105
|
+
Key?: string;
|
|
106
|
+
Pairs?: Pairs;
|
|
107
107
|
}
|
|
108
108
|
|
|
109
109
|
export interface ListKeysRequest {
|
|
@@ -113,14 +113,14 @@ export namespace Wsstore {
|
|
|
113
113
|
}
|
|
114
114
|
|
|
115
115
|
export interface KeySet {
|
|
116
|
-
Key
|
|
116
|
+
Key?: string[];
|
|
117
117
|
}
|
|
118
118
|
|
|
119
119
|
export interface ListKeysResponse {
|
|
120
|
-
Exceptions
|
|
121
|
-
StoreName
|
|
122
|
-
Namespace
|
|
123
|
-
KeySet
|
|
120
|
+
Exceptions?: Exceptions;
|
|
121
|
+
StoreName?: string;
|
|
122
|
+
Namespace?: string;
|
|
123
|
+
KeySet?: KeySet;
|
|
124
124
|
}
|
|
125
125
|
|
|
126
126
|
export interface ListNamespacesRequest {
|
|
@@ -129,13 +129,13 @@ export namespace Wsstore {
|
|
|
129
129
|
}
|
|
130
130
|
|
|
131
131
|
export interface Namespaces {
|
|
132
|
-
Namespace
|
|
132
|
+
Namespace?: string[];
|
|
133
133
|
}
|
|
134
134
|
|
|
135
135
|
export interface ListNamespacesResponse {
|
|
136
|
-
Exceptions
|
|
137
|
-
StoreName
|
|
138
|
-
Namespaces
|
|
136
|
+
Exceptions?: Exceptions;
|
|
137
|
+
StoreName?: string;
|
|
138
|
+
Namespaces?: Namespaces;
|
|
139
139
|
}
|
|
140
140
|
|
|
141
141
|
export interface ListStoresRequest {
|
|
@@ -145,22 +145,22 @@ export namespace Wsstore {
|
|
|
145
145
|
}
|
|
146
146
|
|
|
147
147
|
export interface Store {
|
|
148
|
-
Name
|
|
149
|
-
Type
|
|
150
|
-
Description
|
|
151
|
-
Owner
|
|
152
|
-
CreateTime
|
|
153
|
-
MaxValSize
|
|
154
|
-
IsDefault
|
|
148
|
+
Name?: string;
|
|
149
|
+
Type?: string;
|
|
150
|
+
Description?: string;
|
|
151
|
+
Owner?: string;
|
|
152
|
+
CreateTime?: string;
|
|
153
|
+
MaxValSize?: string;
|
|
154
|
+
IsDefault?: boolean;
|
|
155
155
|
}
|
|
156
156
|
|
|
157
157
|
export interface Stores {
|
|
158
|
-
Store
|
|
158
|
+
Store?: Store[];
|
|
159
159
|
}
|
|
160
160
|
|
|
161
161
|
export interface ListStoresResponse {
|
|
162
|
-
Exceptions
|
|
163
|
-
Stores
|
|
162
|
+
Exceptions?: Exceptions;
|
|
163
|
+
Stores?: Stores;
|
|
164
164
|
}
|
|
165
165
|
|
|
166
166
|
export interface wsstorePingRequest {
|
|
@@ -180,8 +180,8 @@ export namespace Wsstore {
|
|
|
180
180
|
}
|
|
181
181
|
|
|
182
182
|
export interface SetResponse {
|
|
183
|
-
Exceptions
|
|
184
|
-
Success
|
|
183
|
+
Exceptions?: Exceptions;
|
|
184
|
+
Success?: boolean;
|
|
185
185
|
}
|
|
186
186
|
|
|
187
187
|
}
|
|
@@ -192,48 +192,48 @@ export class storeServiceBase extends Service {
|
|
|
192
192
|
super(optsConnection, "wsstore", "1.02");
|
|
193
193
|
}
|
|
194
194
|
|
|
195
|
-
CreateStore(request:
|
|
196
|
-
return this._connection.send("CreateStore", request, "json", false,
|
|
195
|
+
CreateStore(request: Wsstore.CreateStoreRequest, abortSignal?: AbortSignal): Promise<Wsstore.CreateStoreResponse> {
|
|
196
|
+
return this._connection.send("CreateStore", request, "json", false, abortSignal, "CreateStoreResponse");
|
|
197
197
|
}
|
|
198
198
|
|
|
199
|
-
Delete(request:
|
|
200
|
-
return this._connection.send("Delete", request, "json", false,
|
|
199
|
+
Delete(request: Wsstore.DeleteRequest, abortSignal?: AbortSignal): Promise<Wsstore.DeleteResponse> {
|
|
200
|
+
return this._connection.send("Delete", request, "json", false, abortSignal, "DeleteResponse");
|
|
201
201
|
}
|
|
202
202
|
|
|
203
|
-
DeleteNamespace(request:
|
|
204
|
-
return this._connection.send("DeleteNamespace", request, "json", false,
|
|
203
|
+
DeleteNamespace(request: Wsstore.DeleteNamespaceRequest, abortSignal?: AbortSignal): Promise<Wsstore.DeleteNamespaceResponse> {
|
|
204
|
+
return this._connection.send("DeleteNamespace", request, "json", false, abortSignal, "DeleteNamespaceResponse");
|
|
205
205
|
}
|
|
206
206
|
|
|
207
|
-
Fetch(request:
|
|
208
|
-
return this._connection.send("Fetch", request, "json", false,
|
|
207
|
+
Fetch(request: Wsstore.FetchRequest, abortSignal?: AbortSignal): Promise<Wsstore.FetchResponse> {
|
|
208
|
+
return this._connection.send("Fetch", request, "json", false, abortSignal, "FetchResponse");
|
|
209
209
|
}
|
|
210
210
|
|
|
211
|
-
FetchAll(request:
|
|
212
|
-
return this._connection.send("FetchAll", request, "json", false,
|
|
211
|
+
FetchAll(request: Wsstore.FetchAllRequest, abortSignal?: AbortSignal): Promise<Wsstore.FetchAllResponse> {
|
|
212
|
+
return this._connection.send("FetchAll", request, "json", false, abortSignal, "FetchAllResponse");
|
|
213
213
|
}
|
|
214
214
|
|
|
215
|
-
FetchKeyMetadata(request:
|
|
216
|
-
return this._connection.send("FetchKeyMetadata", request, "json", false,
|
|
215
|
+
FetchKeyMetadata(request: Wsstore.FetchKeyMDRequest, abortSignal?: AbortSignal): Promise<Wsstore.FetchKeyMDResponse> {
|
|
216
|
+
return this._connection.send("FetchKeyMetadata", request, "json", false, abortSignal, "FetchKeyMDResponse");
|
|
217
217
|
}
|
|
218
218
|
|
|
219
|
-
ListKeys(request:
|
|
220
|
-
return this._connection.send("ListKeys", request, "json", false,
|
|
219
|
+
ListKeys(request: Wsstore.ListKeysRequest, abortSignal?: AbortSignal): Promise<Wsstore.ListKeysResponse> {
|
|
220
|
+
return this._connection.send("ListKeys", request, "json", false, abortSignal, "ListKeysResponse");
|
|
221
221
|
}
|
|
222
222
|
|
|
223
|
-
ListNamespaces(request:
|
|
224
|
-
return this._connection.send("ListNamespaces", request, "json", false,
|
|
223
|
+
ListNamespaces(request: Wsstore.ListNamespacesRequest, abortSignal?: AbortSignal): Promise<Wsstore.ListNamespacesResponse> {
|
|
224
|
+
return this._connection.send("ListNamespaces", request, "json", false, abortSignal, "ListNamespacesResponse");
|
|
225
225
|
}
|
|
226
226
|
|
|
227
|
-
ListStores(request:
|
|
228
|
-
return this._connection.send("ListStores", request, "json", false,
|
|
227
|
+
ListStores(request: Wsstore.ListStoresRequest, abortSignal?: AbortSignal): Promise<Wsstore.ListStoresResponse> {
|
|
228
|
+
return this._connection.send("ListStores", request, "json", false, abortSignal, "ListStoresResponse");
|
|
229
229
|
}
|
|
230
230
|
|
|
231
|
-
Ping(request:
|
|
232
|
-
return this._connection.send("Ping", request, "json", false,
|
|
231
|
+
Ping(request: Wsstore.wsstorePingRequest, abortSignal?: AbortSignal): Promise<Wsstore.wsstorePingResponse> {
|
|
232
|
+
return this._connection.send("Ping", request, "json", false, abortSignal, "wsstorePingResponse");
|
|
233
233
|
}
|
|
234
234
|
|
|
235
|
-
Set(request:
|
|
236
|
-
return this._connection.send("Set", request, "json", false,
|
|
235
|
+
Set(request: Wsstore.SetRequest, abortSignal?: AbortSignal): Promise<Wsstore.SetResponse> {
|
|
236
|
+
return this._connection.send("Set", request, "json", false, abortSignal, "SetResponse");
|
|
237
237
|
}
|
|
238
238
|
|
|
239
239
|
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { PackageProcessServiceBase, WsPackageProcess } from "./wsdl/WsPackageProcess/v1.
|
|
1
|
+
import { PackageProcessServiceBase, WsPackageProcess } from "./wsdl/WsPackageProcess/v1.08/WsPackageProcess.ts";
|
|
2
2
|
export { type WsPackageProcess };
|
|
3
3
|
export declare class PackageProcessService extends PackageProcessServiceBase {
|
|
4
4
|
}
|
|
@@ -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.05/WsWorkunits.ts";
|
|
3
3
|
import { IConnection, IOptions } from "../connection.ts";
|
|
4
4
|
export { WsWorkunits };
|
|
5
5
|
export declare enum WUStateID {
|