@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,22 +10,22 @@ export declare namespace WsPackageProcess {
|
|
|
10
10
|
GlobalScope?: boolean;
|
|
11
11
|
}
|
|
12
12
|
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
|
interface Exceptions {
|
|
19
|
-
Source
|
|
20
|
-
Exception
|
|
19
|
+
Source?: string;
|
|
20
|
+
Exception?: Exception[];
|
|
21
21
|
}
|
|
22
22
|
interface status {
|
|
23
|
-
Code
|
|
24
|
-
Description
|
|
23
|
+
Code?: int;
|
|
24
|
+
Description?: string;
|
|
25
25
|
}
|
|
26
26
|
interface ActivatePackageResponse {
|
|
27
|
-
Exceptions
|
|
28
|
-
status
|
|
27
|
+
Exceptions?: Exceptions;
|
|
28
|
+
status?: status;
|
|
29
29
|
}
|
|
30
30
|
interface AddPackageRequest {
|
|
31
31
|
Info?: string;
|
|
@@ -52,16 +52,17 @@ export declare namespace WsPackageProcess {
|
|
|
52
52
|
DfuPublisherWuid?: string;
|
|
53
53
|
RemoteStorage?: string;
|
|
54
54
|
KeyCompression?: string;
|
|
55
|
+
DfuTargetPlane?: string;
|
|
55
56
|
}
|
|
56
57
|
interface FilesNotFound {
|
|
57
|
-
File
|
|
58
|
+
File?: string[];
|
|
58
59
|
}
|
|
59
60
|
interface AddPackageResponse {
|
|
60
|
-
Exceptions
|
|
61
|
-
status
|
|
62
|
-
FilesNotFound
|
|
63
|
-
DfuPublisherWuid
|
|
64
|
-
DfuPublisherState
|
|
61
|
+
Exceptions?: Exceptions;
|
|
62
|
+
status?: status;
|
|
63
|
+
FilesNotFound?: FilesNotFound;
|
|
64
|
+
DfuPublisherWuid?: string;
|
|
65
|
+
DfuPublisherState?: string;
|
|
65
66
|
}
|
|
66
67
|
interface AddPartToPackageMapRequest {
|
|
67
68
|
Target?: string;
|
|
@@ -87,13 +88,14 @@ export declare namespace WsPackageProcess {
|
|
|
87
88
|
DfuPublisherWuid?: string;
|
|
88
89
|
RemoteStorage?: string;
|
|
89
90
|
KeyCompression?: string;
|
|
91
|
+
DfuTargetPlane?: string;
|
|
90
92
|
}
|
|
91
93
|
interface AddPartToPackageMapResponse {
|
|
92
|
-
Exceptions
|
|
93
|
-
status
|
|
94
|
-
FilesNotFound
|
|
95
|
-
DfuPublisherWuid
|
|
96
|
-
DfuPublisherState
|
|
94
|
+
Exceptions?: Exceptions;
|
|
95
|
+
status?: status;
|
|
96
|
+
FilesNotFound?: FilesNotFound;
|
|
97
|
+
DfuPublisherWuid?: string;
|
|
98
|
+
DfuPublisherState?: string;
|
|
97
99
|
}
|
|
98
100
|
interface CopyPackageMapRequest {
|
|
99
101
|
SourcePath?: string;
|
|
@@ -120,13 +122,14 @@ export declare namespace WsPackageProcess {
|
|
|
120
122
|
DfuPublisherWuid?: string;
|
|
121
123
|
RemoteStorage?: string;
|
|
122
124
|
KeyCompression?: string;
|
|
125
|
+
DfuTargetPlane?: string;
|
|
123
126
|
}
|
|
124
127
|
interface CopyPackageMapResponse {
|
|
125
|
-
Exceptions
|
|
126
|
-
status
|
|
127
|
-
FilesNotFound
|
|
128
|
-
DfuPublisherWuid
|
|
129
|
-
DfuPublisherState
|
|
128
|
+
Exceptions?: Exceptions;
|
|
129
|
+
status?: status;
|
|
130
|
+
FilesNotFound?: FilesNotFound;
|
|
131
|
+
DfuPublisherWuid?: string;
|
|
132
|
+
DfuPublisherState?: string;
|
|
130
133
|
}
|
|
131
134
|
interface DeActivatePackageRequest {
|
|
132
135
|
Target?: string;
|
|
@@ -135,16 +138,16 @@ export declare namespace WsPackageProcess {
|
|
|
135
138
|
GlobalScope?: boolean;
|
|
136
139
|
}
|
|
137
140
|
interface DeActivatePackageResponse {
|
|
138
|
-
Exceptions
|
|
139
|
-
status
|
|
141
|
+
Exceptions?: Exceptions;
|
|
142
|
+
status?: status;
|
|
140
143
|
}
|
|
141
144
|
interface PackageMap {
|
|
142
|
-
Id
|
|
143
|
-
Target
|
|
144
|
-
Process
|
|
145
|
+
Id?: string;
|
|
146
|
+
Target?: string;
|
|
147
|
+
Process?: string;
|
|
145
148
|
}
|
|
146
149
|
interface PackageMaps {
|
|
147
|
-
PackageMap
|
|
150
|
+
PackageMap?: PackageMap[];
|
|
148
151
|
}
|
|
149
152
|
interface DeletePackageRequest {
|
|
150
153
|
Target?: string;
|
|
@@ -154,31 +157,31 @@ export declare namespace WsPackageProcess {
|
|
|
154
157
|
PackageMaps?: PackageMaps;
|
|
155
158
|
}
|
|
156
159
|
interface DeletePackageResponse {
|
|
157
|
-
Exceptions
|
|
158
|
-
status
|
|
160
|
+
Exceptions?: Exceptions;
|
|
161
|
+
status?: status;
|
|
159
162
|
}
|
|
160
163
|
interface EchoRequest {
|
|
161
164
|
Request?: string;
|
|
162
165
|
}
|
|
163
166
|
interface EchoResponse {
|
|
164
|
-
Response
|
|
167
|
+
Response?: string;
|
|
165
168
|
}
|
|
166
169
|
interface GetPackageRequest {
|
|
167
170
|
Target?: string;
|
|
168
171
|
Process?: string;
|
|
169
172
|
}
|
|
170
173
|
interface GetPackageResponse {
|
|
171
|
-
Exceptions
|
|
172
|
-
status
|
|
173
|
-
Info
|
|
174
|
+
Exceptions?: Exceptions;
|
|
175
|
+
status?: status;
|
|
176
|
+
Info?: string;
|
|
174
177
|
}
|
|
175
178
|
interface GetPackageMapByIdRequest {
|
|
176
179
|
PackageMapId?: string;
|
|
177
180
|
}
|
|
178
181
|
interface GetPackageMapByIdResponse {
|
|
179
|
-
Exceptions
|
|
180
|
-
status
|
|
181
|
-
Info
|
|
182
|
+
Exceptions?: Exceptions;
|
|
183
|
+
status?: status;
|
|
184
|
+
Info?: string;
|
|
182
185
|
}
|
|
183
186
|
interface GetPackageMapSelectOptionsRequest {
|
|
184
187
|
IncludeTargets?: boolean;
|
|
@@ -186,24 +189,24 @@ export declare namespace WsPackageProcess {
|
|
|
186
189
|
IncludeProcessFilters?: boolean;
|
|
187
190
|
}
|
|
188
191
|
interface Processes {
|
|
189
|
-
Item
|
|
192
|
+
Item?: string[];
|
|
190
193
|
}
|
|
191
194
|
interface TargetData {
|
|
192
|
-
Name
|
|
193
|
-
Type
|
|
194
|
-
Processes
|
|
195
|
+
Name?: string;
|
|
196
|
+
Type?: string;
|
|
197
|
+
Processes?: Processes;
|
|
195
198
|
}
|
|
196
199
|
interface Targets {
|
|
197
|
-
TargetData
|
|
200
|
+
TargetData?: TargetData[];
|
|
198
201
|
}
|
|
199
202
|
interface ProcessFilters {
|
|
200
|
-
Item
|
|
203
|
+
Item?: string[];
|
|
201
204
|
}
|
|
202
205
|
interface GetPackageMapSelectOptionsResponse {
|
|
203
|
-
Exceptions
|
|
204
|
-
status
|
|
205
|
-
Targets
|
|
206
|
-
ProcessFilters
|
|
206
|
+
Exceptions?: Exceptions;
|
|
207
|
+
status?: status;
|
|
208
|
+
Targets?: Targets;
|
|
209
|
+
ProcessFilters?: ProcessFilters;
|
|
207
210
|
}
|
|
208
211
|
interface GetPartFromPackageMapRequest {
|
|
209
212
|
Target?: string;
|
|
@@ -212,9 +215,9 @@ export declare namespace WsPackageProcess {
|
|
|
212
215
|
PartName?: string;
|
|
213
216
|
}
|
|
214
217
|
interface GetPartFromPackageMapResponse {
|
|
215
|
-
Exceptions
|
|
216
|
-
status
|
|
217
|
-
Content
|
|
218
|
+
Exceptions?: Exceptions;
|
|
219
|
+
status?: status;
|
|
220
|
+
Content?: string;
|
|
218
221
|
}
|
|
219
222
|
interface GetQueryFileMappingRequest {
|
|
220
223
|
Target?: string;
|
|
@@ -223,49 +226,49 @@ export declare namespace WsPackageProcess {
|
|
|
223
226
|
GlobalScope?: boolean;
|
|
224
227
|
}
|
|
225
228
|
interface UnmappedFiles {
|
|
226
|
-
File
|
|
229
|
+
File?: string[];
|
|
227
230
|
}
|
|
228
231
|
interface SubFiles {
|
|
229
|
-
File
|
|
232
|
+
File?: string[];
|
|
230
233
|
}
|
|
231
234
|
interface SuperFile {
|
|
232
|
-
Name
|
|
233
|
-
SubFiles
|
|
235
|
+
Name?: string;
|
|
236
|
+
SubFiles?: SubFiles;
|
|
234
237
|
}
|
|
235
238
|
interface SuperFiles {
|
|
236
|
-
SuperFile
|
|
239
|
+
SuperFile?: SuperFile[];
|
|
237
240
|
}
|
|
238
241
|
interface GetQueryFileMappingResponse {
|
|
239
|
-
Exceptions
|
|
240
|
-
UnmappedFiles
|
|
241
|
-
SuperFiles
|
|
242
|
+
Exceptions?: Exceptions;
|
|
243
|
+
UnmappedFiles?: UnmappedFiles;
|
|
244
|
+
SuperFiles?: SuperFiles;
|
|
242
245
|
}
|
|
243
246
|
interface ListPackageRequest {
|
|
244
247
|
Target?: string;
|
|
245
248
|
Process?: string;
|
|
246
249
|
}
|
|
247
250
|
interface PackageListData {
|
|
248
|
-
Id
|
|
249
|
-
Queries
|
|
251
|
+
Id?: string;
|
|
252
|
+
Queries?: string;
|
|
250
253
|
}
|
|
251
254
|
interface PkgListData {
|
|
252
|
-
PackageListData
|
|
255
|
+
PackageListData?: PackageListData[];
|
|
253
256
|
}
|
|
254
257
|
interface PackageListMapData {
|
|
255
|
-
Id
|
|
256
|
-
Target
|
|
257
|
-
Process
|
|
258
|
-
PkgListData
|
|
259
|
-
Active
|
|
260
|
-
Description
|
|
258
|
+
Id?: string;
|
|
259
|
+
Target?: string;
|
|
260
|
+
Process?: string;
|
|
261
|
+
PkgListData?: PkgListData;
|
|
262
|
+
Active?: boolean;
|
|
263
|
+
Description?: string;
|
|
261
264
|
}
|
|
262
265
|
interface PkgListMapData {
|
|
263
|
-
PackageListMapData
|
|
266
|
+
PackageListMapData?: PackageListMapData[];
|
|
264
267
|
}
|
|
265
268
|
interface ListPackageResponse {
|
|
266
|
-
Exceptions
|
|
267
|
-
status
|
|
268
|
-
PkgListMapData
|
|
269
|
+
Exceptions?: Exceptions;
|
|
270
|
+
status?: status;
|
|
271
|
+
PkgListMapData?: PkgListMapData;
|
|
269
272
|
}
|
|
270
273
|
interface ListPackagesRequest {
|
|
271
274
|
Target?: string;
|
|
@@ -273,12 +276,12 @@ export declare namespace WsPackageProcess {
|
|
|
273
276
|
ProcessFilter?: string;
|
|
274
277
|
}
|
|
275
278
|
interface PackageMapList {
|
|
276
|
-
PackageListMapData
|
|
279
|
+
PackageListMapData?: PackageListMapData[];
|
|
277
280
|
}
|
|
278
281
|
interface ListPackagesResponse {
|
|
279
|
-
Exceptions
|
|
280
|
-
status
|
|
281
|
-
PackageMapList
|
|
282
|
+
Exceptions?: Exceptions;
|
|
283
|
+
status?: status;
|
|
284
|
+
PackageMapList?: PackageMapList;
|
|
282
285
|
}
|
|
283
286
|
interface WsPackageProcessPingRequest {
|
|
284
287
|
}
|
|
@@ -291,14 +294,14 @@ export declare namespace WsPackageProcess {
|
|
|
291
294
|
PartName?: string;
|
|
292
295
|
}
|
|
293
296
|
interface RemovePartFromPackageMapResponse {
|
|
294
|
-
Exceptions
|
|
295
|
-
status
|
|
297
|
+
Exceptions?: Exceptions;
|
|
298
|
+
status?: status;
|
|
296
299
|
}
|
|
297
300
|
interface QueriesToVerify {
|
|
298
|
-
Item
|
|
301
|
+
Item?: string[];
|
|
299
302
|
}
|
|
300
303
|
interface QueriesToIgnore {
|
|
301
|
-
Item
|
|
304
|
+
Item?: string[];
|
|
302
305
|
}
|
|
303
306
|
interface ValidatePackageRequest {
|
|
304
307
|
Info?: string;
|
|
@@ -315,61 +318,61 @@ export declare namespace WsPackageProcess {
|
|
|
315
318
|
IgnoreOptionalFiles?: boolean;
|
|
316
319
|
}
|
|
317
320
|
interface Warnings {
|
|
318
|
-
Item
|
|
321
|
+
Item?: string[];
|
|
319
322
|
}
|
|
320
323
|
interface Errors {
|
|
321
|
-
Item
|
|
324
|
+
Item?: string[];
|
|
322
325
|
}
|
|
323
326
|
interface Unmatched {
|
|
324
|
-
Item
|
|
327
|
+
Item?: string[];
|
|
325
328
|
}
|
|
326
329
|
interface packages {
|
|
327
|
-
Unmatched
|
|
330
|
+
Unmatched?: Unmatched;
|
|
328
331
|
}
|
|
329
332
|
interface queries {
|
|
330
|
-
Unmatched
|
|
333
|
+
Unmatched?: Unmatched;
|
|
331
334
|
}
|
|
332
335
|
interface NotInDFS {
|
|
333
|
-
File
|
|
336
|
+
File?: string[];
|
|
334
337
|
}
|
|
335
338
|
interface files {
|
|
336
|
-
Unmatched
|
|
337
|
-
NotInDFS
|
|
339
|
+
Unmatched?: Unmatched;
|
|
340
|
+
NotInDFS?: NotInDFS;
|
|
338
341
|
}
|
|
339
342
|
interface Result {
|
|
340
|
-
Target
|
|
341
|
-
PMID
|
|
342
|
-
Warnings
|
|
343
|
-
Errors
|
|
344
|
-
packages
|
|
345
|
-
queries
|
|
346
|
-
files
|
|
343
|
+
Target?: string;
|
|
344
|
+
PMID?: string;
|
|
345
|
+
Warnings?: Warnings;
|
|
346
|
+
Errors?: Errors;
|
|
347
|
+
packages?: packages;
|
|
348
|
+
queries?: queries;
|
|
349
|
+
files?: files;
|
|
347
350
|
}
|
|
348
351
|
interface Results {
|
|
349
|
-
Result
|
|
352
|
+
Result?: Result[];
|
|
350
353
|
}
|
|
351
354
|
interface ValidatePackageResponse {
|
|
352
|
-
Exceptions
|
|
353
|
-
Results
|
|
355
|
+
Exceptions?: Exceptions;
|
|
356
|
+
Results?: Results;
|
|
354
357
|
}
|
|
355
358
|
}
|
|
356
359
|
export declare class PackageProcessServiceBase extends Service {
|
|
357
360
|
constructor(optsConnection: IOptions | IConnection);
|
|
358
|
-
ActivatePackage(request:
|
|
359
|
-
AddPackage(request:
|
|
360
|
-
AddPartToPackageMap(request:
|
|
361
|
-
CopyPackageMap(request:
|
|
362
|
-
DeActivatePackage(request:
|
|
363
|
-
DeletePackage(request:
|
|
364
|
-
Echo(request:
|
|
365
|
-
GetPackage(request:
|
|
366
|
-
GetPackageMapById(request:
|
|
367
|
-
GetPackageMapSelectOptions(request:
|
|
368
|
-
GetPartFromPackageMap(request:
|
|
369
|
-
GetQueryFileMapping(request:
|
|
370
|
-
ListPackage(request:
|
|
371
|
-
ListPackages(request:
|
|
372
|
-
Ping(request:
|
|
373
|
-
RemovePartFromPackageMap(request:
|
|
374
|
-
ValidatePackage(request:
|
|
361
|
+
ActivatePackage(request: WsPackageProcess.ActivatePackageRequest, abortSignal?: AbortSignal): Promise<WsPackageProcess.ActivatePackageResponse>;
|
|
362
|
+
AddPackage(request: WsPackageProcess.AddPackageRequest, abortSignal?: AbortSignal): Promise<WsPackageProcess.AddPackageResponse>;
|
|
363
|
+
AddPartToPackageMap(request: WsPackageProcess.AddPartToPackageMapRequest, abortSignal?: AbortSignal): Promise<WsPackageProcess.AddPartToPackageMapResponse>;
|
|
364
|
+
CopyPackageMap(request: WsPackageProcess.CopyPackageMapRequest, abortSignal?: AbortSignal): Promise<WsPackageProcess.CopyPackageMapResponse>;
|
|
365
|
+
DeActivatePackage(request: WsPackageProcess.DeActivatePackageRequest, abortSignal?: AbortSignal): Promise<WsPackageProcess.DeActivatePackageResponse>;
|
|
366
|
+
DeletePackage(request: WsPackageProcess.DeletePackageRequest, abortSignal?: AbortSignal): Promise<WsPackageProcess.DeletePackageResponse>;
|
|
367
|
+
Echo(request: WsPackageProcess.EchoRequest, abortSignal?: AbortSignal): Promise<WsPackageProcess.EchoResponse>;
|
|
368
|
+
GetPackage(request: WsPackageProcess.GetPackageRequest, abortSignal?: AbortSignal): Promise<WsPackageProcess.GetPackageResponse>;
|
|
369
|
+
GetPackageMapById(request: WsPackageProcess.GetPackageMapByIdRequest, abortSignal?: AbortSignal): Promise<WsPackageProcess.GetPackageMapByIdResponse>;
|
|
370
|
+
GetPackageMapSelectOptions(request: WsPackageProcess.GetPackageMapSelectOptionsRequest, abortSignal?: AbortSignal): Promise<WsPackageProcess.GetPackageMapSelectOptionsResponse>;
|
|
371
|
+
GetPartFromPackageMap(request: WsPackageProcess.GetPartFromPackageMapRequest, abortSignal?: AbortSignal): Promise<WsPackageProcess.GetPartFromPackageMapResponse>;
|
|
372
|
+
GetQueryFileMapping(request: WsPackageProcess.GetQueryFileMappingRequest, abortSignal?: AbortSignal): Promise<WsPackageProcess.GetQueryFileMappingResponse>;
|
|
373
|
+
ListPackage(request: WsPackageProcess.ListPackageRequest, abortSignal?: AbortSignal): Promise<WsPackageProcess.ListPackageResponse>;
|
|
374
|
+
ListPackages(request: WsPackageProcess.ListPackagesRequest, abortSignal?: AbortSignal): Promise<WsPackageProcess.ListPackagesResponse>;
|
|
375
|
+
Ping(request: WsPackageProcess.WsPackageProcessPingRequest, abortSignal?: AbortSignal): Promise<WsPackageProcess.WsPackageProcessPingResponse>;
|
|
376
|
+
RemovePartFromPackageMap(request: WsPackageProcess.RemovePartFromPackageMapRequest, abortSignal?: AbortSignal): Promise<WsPackageProcess.RemovePartFromPackageMapResponse>;
|
|
377
|
+
ValidatePackage(request: WsPackageProcess.ValidatePackageRequest, abortSignal?: AbortSignal): Promise<WsPackageProcess.ValidatePackageResponse>;
|
|
375
378
|
}
|
|
@@ -12,18 +12,18 @@ export declare namespace WsSasha {
|
|
|
12
12
|
DeleteOnSuccess?: boolean;
|
|
13
13
|
}
|
|
14
14
|
interface Exception {
|
|
15
|
-
Code
|
|
16
|
-
Audience
|
|
17
|
-
Source
|
|
18
|
-
Message
|
|
15
|
+
Code?: string;
|
|
16
|
+
Audience?: string;
|
|
17
|
+
Source?: string;
|
|
18
|
+
Message?: string;
|
|
19
19
|
}
|
|
20
20
|
interface Exceptions {
|
|
21
|
-
Source
|
|
22
|
-
Exception
|
|
21
|
+
Source?: string;
|
|
22
|
+
Exception?: Exception[];
|
|
23
23
|
}
|
|
24
24
|
interface ResultResponse {
|
|
25
|
-
Exceptions
|
|
26
|
-
Result
|
|
25
|
+
Exceptions?: Exceptions;
|
|
26
|
+
Result?: string;
|
|
27
27
|
}
|
|
28
28
|
interface GetVersionRequest {
|
|
29
29
|
}
|
|
@@ -56,9 +56,9 @@ export declare namespace WsSasha {
|
|
|
56
56
|
}
|
|
57
57
|
export declare class SashaServiceBase extends Service {
|
|
58
58
|
constructor(optsConnection: IOptions | IConnection);
|
|
59
|
-
ArchiveWU(request: Partial<WsSasha.ArchiveWURequest
|
|
60
|
-
GetVersion(request: Partial<WsSasha.GetVersionRequest
|
|
61
|
-
ListWU(request: Partial<WsSasha.ListWURequest
|
|
62
|
-
Ping(request: Partial<WsSasha.WSSashaPingRequest
|
|
63
|
-
RestoreWU(request: Partial<WsSasha.RestoreWURequest
|
|
59
|
+
ArchiveWU(request: Partial<WsSasha.ArchiveWURequest>, abortSignal?: AbortSignal): Promise<WsSasha.ResultResponse>;
|
|
60
|
+
GetVersion(request: Partial<WsSasha.GetVersionRequest>, abortSignal?: AbortSignal): Promise<WsSasha.ResultResponse>;
|
|
61
|
+
ListWU(request: Partial<WsSasha.ListWURequest>, abortSignal?: AbortSignal): Promise<WsSasha.ResultResponse>;
|
|
62
|
+
Ping(request: Partial<WsSasha.WSSashaPingRequest>, abortSignal?: AbortSignal): Promise<WsSasha.WSSashaPingResponse>;
|
|
63
|
+
RestoreWU(request: Partial<WsSasha.RestoreWURequest>, abortSignal?: AbortSignal): Promise<WsSasha.ResultResponse>;
|
|
64
64
|
}
|