@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
|
@@ -5,34 +5,34 @@ export declare namespace WsAccount {
|
|
|
5
5
|
interface MyAccountRequest {
|
|
6
6
|
}
|
|
7
7
|
interface Exception {
|
|
8
|
-
Code
|
|
9
|
-
Audience
|
|
10
|
-
Source
|
|
11
|
-
Message
|
|
8
|
+
Code?: string;
|
|
9
|
+
Audience?: string;
|
|
10
|
+
Source?: string;
|
|
11
|
+
Message?: string;
|
|
12
12
|
}
|
|
13
13
|
interface Exceptions {
|
|
14
|
-
Source
|
|
15
|
-
Exception
|
|
14
|
+
Source?: string;
|
|
15
|
+
Exception?: Exception[];
|
|
16
16
|
}
|
|
17
17
|
interface Groups {
|
|
18
|
-
Group
|
|
18
|
+
Group?: string[];
|
|
19
19
|
}
|
|
20
20
|
interface MyAccountResponse {
|
|
21
|
-
Exceptions
|
|
22
|
-
username
|
|
23
|
-
firstName
|
|
24
|
-
lastName
|
|
25
|
-
passwordExpiration
|
|
26
|
-
passwordDaysRemaining
|
|
27
|
-
passwordExpirationWarningDays
|
|
28
|
-
employeeID
|
|
29
|
-
distinguishedName
|
|
30
|
-
accountType
|
|
31
|
-
passwordNeverExpires
|
|
32
|
-
passwordIsExpired
|
|
33
|
-
CanUpdatePassword
|
|
34
|
-
accountStatus
|
|
35
|
-
Groups
|
|
21
|
+
Exceptions?: Exceptions;
|
|
22
|
+
username?: string;
|
|
23
|
+
firstName?: string;
|
|
24
|
+
lastName?: string;
|
|
25
|
+
passwordExpiration?: string;
|
|
26
|
+
passwordDaysRemaining?: int;
|
|
27
|
+
passwordExpirationWarningDays?: int;
|
|
28
|
+
employeeID?: string;
|
|
29
|
+
distinguishedName?: string;
|
|
30
|
+
accountType?: string;
|
|
31
|
+
passwordNeverExpires?: boolean;
|
|
32
|
+
passwordIsExpired?: boolean;
|
|
33
|
+
CanUpdatePassword?: boolean;
|
|
34
|
+
accountStatus?: int;
|
|
35
|
+
Groups?: Groups;
|
|
36
36
|
}
|
|
37
37
|
interface ws_accountPingRequest {
|
|
38
38
|
}
|
|
@@ -45,30 +45,30 @@ export declare namespace WsAccount {
|
|
|
45
45
|
newpass2?: string;
|
|
46
46
|
}
|
|
47
47
|
interface UpdateUserResponse {
|
|
48
|
-
Exceptions
|
|
49
|
-
retcode
|
|
50
|
-
message
|
|
48
|
+
Exceptions?: Exceptions;
|
|
49
|
+
retcode?: int;
|
|
50
|
+
message?: string;
|
|
51
51
|
}
|
|
52
52
|
interface UpdateUserInputRequest {
|
|
53
53
|
}
|
|
54
54
|
interface UpdateUserInputResponse {
|
|
55
|
-
Exceptions
|
|
56
|
-
username
|
|
55
|
+
Exceptions?: Exceptions;
|
|
56
|
+
username?: string;
|
|
57
57
|
}
|
|
58
58
|
interface VerifyUserRequest {
|
|
59
59
|
application?: string;
|
|
60
60
|
version?: string;
|
|
61
61
|
}
|
|
62
62
|
interface VerifyUserResponse {
|
|
63
|
-
Exceptions
|
|
64
|
-
retcode
|
|
63
|
+
Exceptions?: Exceptions;
|
|
64
|
+
retcode?: int;
|
|
65
65
|
}
|
|
66
66
|
}
|
|
67
67
|
export declare class AccountServiceBase extends Service {
|
|
68
68
|
constructor(optsConnection: IOptions | IConnection);
|
|
69
|
-
MyAccount(request:
|
|
70
|
-
Ping(request:
|
|
71
|
-
UpdateUser(request:
|
|
72
|
-
UpdateUserInput(request:
|
|
73
|
-
VerifyUser(request:
|
|
69
|
+
MyAccount(request: WsAccount.MyAccountRequest, abortSignal?: AbortSignal): Promise<WsAccount.MyAccountResponse>;
|
|
70
|
+
Ping(request: WsAccount.ws_accountPingRequest, abortSignal?: AbortSignal): Promise<WsAccount.ws_accountPingResponse>;
|
|
71
|
+
UpdateUser(request: WsAccount.UpdateUserRequest, abortSignal?: AbortSignal): Promise<WsAccount.UpdateUserResponse>;
|
|
72
|
+
UpdateUserInput(request: WsAccount.UpdateUserInputRequest, abortSignal?: AbortSignal): Promise<WsAccount.UpdateUserInputResponse>;
|
|
73
|
+
VerifyUser(request: WsAccount.VerifyUserRequest, abortSignal?: AbortSignal): Promise<WsAccount.VerifyUserResponse>;
|
|
74
74
|
}
|
|
@@ -8,21 +8,21 @@ export declare namespace WsCodesign {
|
|
|
8
8
|
interface ListUserIDsRequest {
|
|
9
9
|
}
|
|
10
10
|
interface Exception {
|
|
11
|
-
Code
|
|
12
|
-
Audience
|
|
13
|
-
Source
|
|
14
|
-
Message
|
|
11
|
+
Code?: string;
|
|
12
|
+
Audience?: string;
|
|
13
|
+
Source?: string;
|
|
14
|
+
Message?: string;
|
|
15
15
|
}
|
|
16
16
|
interface Exceptions {
|
|
17
|
-
Source
|
|
18
|
-
Exception
|
|
17
|
+
Source?: string;
|
|
18
|
+
Exception?: Exception[];
|
|
19
19
|
}
|
|
20
20
|
interface UserIDs {
|
|
21
|
-
Item
|
|
21
|
+
Item?: string[];
|
|
22
22
|
}
|
|
23
23
|
interface ListUserIDsResponse {
|
|
24
|
-
Exceptions
|
|
25
|
-
UserIDs
|
|
24
|
+
Exceptions?: Exceptions;
|
|
25
|
+
UserIDs?: UserIDs;
|
|
26
26
|
}
|
|
27
27
|
interface ws_codesignPingRequest {
|
|
28
28
|
}
|
|
@@ -35,26 +35,26 @@ export declare namespace WsCodesign {
|
|
|
35
35
|
Text?: string;
|
|
36
36
|
}
|
|
37
37
|
interface SignResponse {
|
|
38
|
-
Exceptions
|
|
39
|
-
RetCode
|
|
40
|
-
ErrMsg
|
|
41
|
-
SignedText
|
|
38
|
+
Exceptions?: Exceptions;
|
|
39
|
+
RetCode?: int;
|
|
40
|
+
ErrMsg?: string;
|
|
41
|
+
SignedText?: string;
|
|
42
42
|
}
|
|
43
43
|
interface VerifyRequest {
|
|
44
44
|
Text?: string;
|
|
45
45
|
}
|
|
46
46
|
interface VerifyResponse {
|
|
47
|
-
Exceptions
|
|
48
|
-
RetCode
|
|
49
|
-
ErrMsg
|
|
50
|
-
IsVerified
|
|
51
|
-
SignedBy
|
|
47
|
+
Exceptions?: Exceptions;
|
|
48
|
+
RetCode?: int;
|
|
49
|
+
ErrMsg?: string;
|
|
50
|
+
IsVerified?: boolean;
|
|
51
|
+
SignedBy?: string;
|
|
52
52
|
}
|
|
53
53
|
}
|
|
54
54
|
export declare class CodesignServiceBase extends Service {
|
|
55
55
|
constructor(optsConnection: IOptions | IConnection);
|
|
56
|
-
ListUserIDs(request:
|
|
57
|
-
Ping(request:
|
|
58
|
-
Sign(request:
|
|
59
|
-
Verify(request:
|
|
56
|
+
ListUserIDs(request: WsCodesign.ListUserIDsRequest, abortSignal?: AbortSignal): Promise<WsCodesign.ListUserIDsResponse>;
|
|
57
|
+
Ping(request: WsCodesign.ws_codesignPingRequest, abortSignal?: AbortSignal): Promise<WsCodesign.ws_codesignPingResponse>;
|
|
58
|
+
Sign(request: WsCodesign.SignRequest, abortSignal?: AbortSignal): Promise<WsCodesign.SignResponse>;
|
|
59
|
+
Verify(request: WsCodesign.VerifyRequest, abortSignal?: AbortSignal): Promise<WsCodesign.VerifyResponse>;
|
|
60
60
|
}
|
|
@@ -4,16 +4,16 @@ export declare namespace WsElk {
|
|
|
4
4
|
interface GetConfigDetailsRequest {
|
|
5
5
|
}
|
|
6
6
|
interface GetConfigDetailsResponse {
|
|
7
|
-
IntegrateKibana
|
|
8
|
-
KibanaAddress
|
|
9
|
-
KibanaPort
|
|
10
|
-
KibanaEntryPointURI
|
|
11
|
-
ReportElasticSearchHealth
|
|
12
|
-
ElasticSearchAddresses
|
|
13
|
-
ElasticSearchPort
|
|
14
|
-
ReportLogStashHealth
|
|
15
|
-
LogStashAddress
|
|
16
|
-
LogStashPort
|
|
7
|
+
IntegrateKibana?: boolean;
|
|
8
|
+
KibanaAddress?: string;
|
|
9
|
+
KibanaPort?: string;
|
|
10
|
+
KibanaEntryPointURI?: string;
|
|
11
|
+
ReportElasticSearchHealth?: boolean;
|
|
12
|
+
ElasticSearchAddresses?: string;
|
|
13
|
+
ElasticSearchPort?: string;
|
|
14
|
+
ReportLogStashHealth?: boolean;
|
|
15
|
+
LogStashAddress?: string;
|
|
16
|
+
LogStashPort?: string;
|
|
17
17
|
}
|
|
18
18
|
interface ws_elkPingRequest {
|
|
19
19
|
}
|
|
@@ -22,6 +22,6 @@ export declare namespace WsElk {
|
|
|
22
22
|
}
|
|
23
23
|
export declare class ElkServiceBase extends Service {
|
|
24
24
|
constructor(optsConnection: IOptions | IConnection);
|
|
25
|
-
GetConfigDetails(request:
|
|
26
|
-
Ping(request:
|
|
25
|
+
GetConfigDetails(request: WsElk.GetConfigDetailsRequest, abortSignal?: AbortSignal): Promise<WsElk.GetConfigDetailsResponse>;
|
|
26
|
+
Ping(request: WsElk.ws_elkPingRequest, abortSignal?: AbortSignal): Promise<WsElk.ws_elkPingResponse>;
|
|
27
27
|
}
|
|
@@ -9,22 +9,22 @@ export declare namespace Wsstore {
|
|
|
9
9
|
MaxValueSize?: int;
|
|
10
10
|
}
|
|
11
11
|
interface Exception {
|
|
12
|
-
Code
|
|
13
|
-
Audience
|
|
14
|
-
Source
|
|
15
|
-
Message
|
|
12
|
+
Code?: string;
|
|
13
|
+
Audience?: string;
|
|
14
|
+
Source?: string;
|
|
15
|
+
Message?: string;
|
|
16
16
|
}
|
|
17
17
|
interface Exceptions {
|
|
18
|
-
Source
|
|
19
|
-
Exception
|
|
18
|
+
Source?: string;
|
|
19
|
+
Exception?: Exception[];
|
|
20
20
|
}
|
|
21
21
|
interface CreateStoreResponse {
|
|
22
|
-
Exceptions
|
|
23
|
-
Name
|
|
24
|
-
Type
|
|
25
|
-
Description
|
|
26
|
-
Owner
|
|
27
|
-
Success
|
|
22
|
+
Exceptions?: Exceptions;
|
|
23
|
+
Name?: string;
|
|
24
|
+
Type?: string;
|
|
25
|
+
Description?: string;
|
|
26
|
+
Owner?: string;
|
|
27
|
+
Success?: boolean;
|
|
28
28
|
}
|
|
29
29
|
interface DeleteRequest {
|
|
30
30
|
StoreName?: string;
|
|
@@ -34,8 +34,8 @@ export declare namespace Wsstore {
|
|
|
34
34
|
TargetUser?: string;
|
|
35
35
|
}
|
|
36
36
|
interface DeleteResponse {
|
|
37
|
-
Exceptions
|
|
38
|
-
Success
|
|
37
|
+
Exceptions?: Exceptions;
|
|
38
|
+
Success?: boolean;
|
|
39
39
|
}
|
|
40
40
|
interface DeleteNamespaceRequest {
|
|
41
41
|
StoreName?: string;
|
|
@@ -44,8 +44,8 @@ export declare namespace Wsstore {
|
|
|
44
44
|
TargetUser?: string;
|
|
45
45
|
}
|
|
46
46
|
interface DeleteNamespaceResponse {
|
|
47
|
-
Exceptions
|
|
48
|
-
Success
|
|
47
|
+
Exceptions?: Exceptions;
|
|
48
|
+
Success?: boolean;
|
|
49
49
|
}
|
|
50
50
|
interface FetchRequest {
|
|
51
51
|
StoreName?: string;
|
|
@@ -54,8 +54,8 @@ export declare namespace Wsstore {
|
|
|
54
54
|
UserSpecific?: boolean;
|
|
55
55
|
}
|
|
56
56
|
interface FetchResponse {
|
|
57
|
-
Exceptions
|
|
58
|
-
Value
|
|
57
|
+
Exceptions?: Exceptions;
|
|
58
|
+
Value?: string;
|
|
59
59
|
}
|
|
60
60
|
interface FetchAllRequest {
|
|
61
61
|
StoreName?: string;
|
|
@@ -63,16 +63,16 @@ export declare namespace Wsstore {
|
|
|
63
63
|
UserSpecific?: boolean;
|
|
64
64
|
}
|
|
65
65
|
interface Pair {
|
|
66
|
-
Key
|
|
67
|
-
Value
|
|
66
|
+
Key?: string;
|
|
67
|
+
Value?: string;
|
|
68
68
|
}
|
|
69
69
|
interface Pairs {
|
|
70
|
-
Pair
|
|
70
|
+
Pair?: Pair[];
|
|
71
71
|
}
|
|
72
72
|
interface FetchAllResponse {
|
|
73
|
-
Exceptions
|
|
74
|
-
Namespace
|
|
75
|
-
Pairs
|
|
73
|
+
Exceptions?: Exceptions;
|
|
74
|
+
Namespace?: string;
|
|
75
|
+
Pairs?: Pairs;
|
|
76
76
|
}
|
|
77
77
|
interface FetchKeyMDRequest {
|
|
78
78
|
StoreName?: string;
|
|
@@ -81,11 +81,11 @@ export declare namespace Wsstore {
|
|
|
81
81
|
UserSpecific?: boolean;
|
|
82
82
|
}
|
|
83
83
|
interface FetchKeyMDResponse {
|
|
84
|
-
Exceptions
|
|
85
|
-
StoreName
|
|
86
|
-
Namespace
|
|
87
|
-
Key
|
|
88
|
-
Pairs
|
|
84
|
+
Exceptions?: Exceptions;
|
|
85
|
+
StoreName?: string;
|
|
86
|
+
Namespace?: string;
|
|
87
|
+
Key?: string;
|
|
88
|
+
Pairs?: Pairs;
|
|
89
89
|
}
|
|
90
90
|
interface ListKeysRequest {
|
|
91
91
|
StoreName?: string;
|
|
@@ -93,25 +93,25 @@ export declare namespace Wsstore {
|
|
|
93
93
|
UserSpecific?: boolean;
|
|
94
94
|
}
|
|
95
95
|
interface KeySet {
|
|
96
|
-
Key
|
|
96
|
+
Key?: string[];
|
|
97
97
|
}
|
|
98
98
|
interface ListKeysResponse {
|
|
99
|
-
Exceptions
|
|
100
|
-
StoreName
|
|
101
|
-
Namespace
|
|
102
|
-
KeySet
|
|
99
|
+
Exceptions?: Exceptions;
|
|
100
|
+
StoreName?: string;
|
|
101
|
+
Namespace?: string;
|
|
102
|
+
KeySet?: KeySet;
|
|
103
103
|
}
|
|
104
104
|
interface ListNamespacesRequest {
|
|
105
105
|
StoreName?: string;
|
|
106
106
|
UserSpecific?: boolean;
|
|
107
107
|
}
|
|
108
108
|
interface Namespaces {
|
|
109
|
-
Namespace
|
|
109
|
+
Namespace?: string[];
|
|
110
110
|
}
|
|
111
111
|
interface ListNamespacesResponse {
|
|
112
|
-
Exceptions
|
|
113
|
-
StoreName
|
|
114
|
-
Namespaces
|
|
112
|
+
Exceptions?: Exceptions;
|
|
113
|
+
StoreName?: string;
|
|
114
|
+
Namespaces?: Namespaces;
|
|
115
115
|
}
|
|
116
116
|
interface ListStoresRequest {
|
|
117
117
|
NameFilter?: string;
|
|
@@ -119,20 +119,20 @@ export declare namespace Wsstore {
|
|
|
119
119
|
OwnerFilter?: string;
|
|
120
120
|
}
|
|
121
121
|
interface Store {
|
|
122
|
-
Name
|
|
123
|
-
Type
|
|
124
|
-
Description
|
|
125
|
-
Owner
|
|
126
|
-
CreateTime
|
|
127
|
-
MaxValSize
|
|
128
|
-
IsDefault
|
|
122
|
+
Name?: string;
|
|
123
|
+
Type?: string;
|
|
124
|
+
Description?: string;
|
|
125
|
+
Owner?: string;
|
|
126
|
+
CreateTime?: string;
|
|
127
|
+
MaxValSize?: string;
|
|
128
|
+
IsDefault?: boolean;
|
|
129
129
|
}
|
|
130
130
|
interface Stores {
|
|
131
|
-
Store
|
|
131
|
+
Store?: Store[];
|
|
132
132
|
}
|
|
133
133
|
interface ListStoresResponse {
|
|
134
|
-
Exceptions
|
|
135
|
-
Stores
|
|
134
|
+
Exceptions?: Exceptions;
|
|
135
|
+
Stores?: Stores;
|
|
136
136
|
}
|
|
137
137
|
interface wsstorePingRequest {
|
|
138
138
|
}
|
|
@@ -146,21 +146,21 @@ export declare namespace Wsstore {
|
|
|
146
146
|
UserSpecific?: boolean;
|
|
147
147
|
}
|
|
148
148
|
interface SetResponse {
|
|
149
|
-
Exceptions
|
|
150
|
-
Success
|
|
149
|
+
Exceptions?: Exceptions;
|
|
150
|
+
Success?: boolean;
|
|
151
151
|
}
|
|
152
152
|
}
|
|
153
153
|
export declare class storeServiceBase extends Service {
|
|
154
154
|
constructor(optsConnection: IOptions | IConnection);
|
|
155
|
-
CreateStore(request:
|
|
156
|
-
Delete(request:
|
|
157
|
-
DeleteNamespace(request:
|
|
158
|
-
Fetch(request:
|
|
159
|
-
FetchAll(request:
|
|
160
|
-
FetchKeyMetadata(request:
|
|
161
|
-
ListKeys(request:
|
|
162
|
-
ListNamespaces(request:
|
|
163
|
-
ListStores(request:
|
|
164
|
-
Ping(request:
|
|
165
|
-
Set(request:
|
|
155
|
+
CreateStore(request: Wsstore.CreateStoreRequest, abortSignal?: AbortSignal): Promise<Wsstore.CreateStoreResponse>;
|
|
156
|
+
Delete(request: Wsstore.DeleteRequest, abortSignal?: AbortSignal): Promise<Wsstore.DeleteResponse>;
|
|
157
|
+
DeleteNamespace(request: Wsstore.DeleteNamespaceRequest, abortSignal?: AbortSignal): Promise<Wsstore.DeleteNamespaceResponse>;
|
|
158
|
+
Fetch(request: Wsstore.FetchRequest, abortSignal?: AbortSignal): Promise<Wsstore.FetchResponse>;
|
|
159
|
+
FetchAll(request: Wsstore.FetchAllRequest, abortSignal?: AbortSignal): Promise<Wsstore.FetchAllResponse>;
|
|
160
|
+
FetchKeyMetadata(request: Wsstore.FetchKeyMDRequest, abortSignal?: AbortSignal): Promise<Wsstore.FetchKeyMDResponse>;
|
|
161
|
+
ListKeys(request: Wsstore.ListKeysRequest, abortSignal?: AbortSignal): Promise<Wsstore.ListKeysResponse>;
|
|
162
|
+
ListNamespaces(request: Wsstore.ListNamespacesRequest, abortSignal?: AbortSignal): Promise<Wsstore.ListNamespacesResponse>;
|
|
163
|
+
ListStores(request: Wsstore.ListStoresRequest, abortSignal?: AbortSignal): Promise<Wsstore.ListStoresResponse>;
|
|
164
|
+
Ping(request: Wsstore.wsstorePingRequest, abortSignal?: AbortSignal): Promise<Wsstore.wsstorePingResponse>;
|
|
165
|
+
Set(request: Wsstore.SetRequest, abortSignal?: AbortSignal): Promise<Wsstore.SetResponse>;
|
|
166
166
|
}
|