@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.
Files changed (43) hide show
  1. package/dist/browser/index.js +1 -1
  2. package/dist/browser/index.js.map +1 -1
  3. package/dist/browser/index.umd.cjs +1 -1
  4. package/dist/browser/index.umd.cjs.map +1 -1
  5. package/dist/node/index.cjs +10 -10
  6. package/dist/node/index.cjs.map +4 -4
  7. package/dist/node/index.js +9 -9
  8. package/dist/node/index.js.map +4 -4
  9. package/package.json +4 -4
  10. package/src/services/wsPackageProcess.ts +1 -1
  11. package/src/services/wsWorkunits.ts +1 -1
  12. package/src/services/wsdl/FileSpray/v1.27/FileSpray.ts +538 -538
  13. package/src/services/wsdl/WsCloud/v1.02/WsCloud.ts +21 -21
  14. package/src/services/wsdl/WsDFUXRef/v1.04/WsDFUXRef.ts +70 -69
  15. package/src/services/wsdl/WsDali/v1.07/WsDali.ts +72 -72
  16. package/src/services/wsdl/WsDfu/v1.68/WsDfu.ts +1301 -0
  17. package/src/services/wsdl/WsESDLConfig/v1.5/WsESDLConfig.ts +366 -0
  18. package/src/services/wsdl/WsFileIO/v1.01/WsFileIO.ts +32 -32
  19. package/src/services/wsdl/WsPackageProcess/v1.08/WsPackageProcess.ts +503 -0
  20. package/src/services/wsdl/WsSasha/v1.01/WsSasha.ts +18 -18
  21. package/src/services/wsdl/WsTopology/v1.33/WsTopology.ts +383 -383
  22. package/src/services/wsdl/WsWorkunits/v2.05/WsWorkunits.ts +3177 -0
  23. package/src/services/wsdl/ws_access/v1.17/ws_access.ts +319 -319
  24. package/src/services/wsdl/ws_account/v1.07/ws_account.ts +39 -39
  25. package/src/services/wsdl/ws_codesign/v1.1/ws_codesign.ts +26 -26
  26. package/src/services/wsdl/ws_elk/v1/ws_elk.ts +14 -14
  27. package/src/services/wsdl/wsstore/v1.02/wsstore.ts +72 -72
  28. package/types/services/wsPackageProcess.d.ts +1 -1
  29. package/types/services/wsWorkunits.d.ts +1 -1
  30. package/types/services/wsdl/FileSpray/v1.27/FileSpray.d.ts +506 -506
  31. package/types/services/wsdl/WsCloud/v1.02/WsCloud.d.ts +18 -18
  32. package/types/services/wsdl/WsDFUXRef/v1.04/WsDFUXRef.d.ts +58 -57
  33. package/types/services/wsdl/WsDali/v1.07/WsDali.d.ts +42 -42
  34. package/types/services/wsdl/WsPackageProcess/{v1.07 → v1.08}/WsPackageProcess.d.ts +121 -118
  35. package/types/services/wsdl/WsSasha/v1.01/WsSasha.d.ts +13 -13
  36. package/types/services/wsdl/WsTopology/v1.33/WsTopology.d.ts +360 -360
  37. package/types/services/wsdl/WsWorkunits/v2.05/WsWorkunits.d.ts +2571 -0
  38. package/types/services/wsdl/ws_access/v1.17/ws_access.d.ts +268 -268
  39. package/types/services/wsdl/ws_account/v1.07/ws_account.d.ts +34 -34
  40. package/types/services/wsdl/ws_codesign/v1.1/ws_codesign.d.ts +22 -22
  41. package/types/services/wsdl/ws_elk/v1/ws_elk.d.ts +12 -12
  42. package/types/services/wsdl/wsstore/v1.02/wsstore.d.ts +61 -61
  43. package/types/services/wsdl/WsWorkunits/v2.04/WsWorkunits.d.ts +0 -2565
@@ -10,32 +10,32 @@ export namespace WsCloud {
10
10
  }
11
11
 
12
12
  export interface Port {
13
- ContainerPort: int;
14
- Name: string;
15
- Protocol: string;
13
+ ContainerPort?: int;
14
+ Name?: string;
15
+ Protocol?: string;
16
16
  }
17
17
 
18
18
  export interface Ports {
19
- Port: Port[];
19
+ Port?: Port[];
20
20
  }
21
21
 
22
22
  export interface Pod {
23
- Name: string;
24
- Status: string;
25
- CreationTimestamp: string;
26
- ContainerName: string;
27
- ContainerCount: int;
28
- ContainerReadyCount: int;
29
- ContainerRestartCount: int;
30
- Ports: Ports;
23
+ Name?: string;
24
+ Status?: string;
25
+ CreationTimestamp?: string;
26
+ ContainerName?: string;
27
+ ContainerCount?: int;
28
+ ContainerReadyCount?: int;
29
+ ContainerRestartCount?: int;
30
+ Ports?: Ports;
31
31
  }
32
32
 
33
33
  export interface Pods {
34
- Pod: Pod[];
34
+ Pod?: Pod[];
35
35
  }
36
36
 
37
37
  export interface GetPODsResponse {
38
- Pods: Pods;
38
+ Pods?: Pods;
39
39
  }
40
40
 
41
41
  export interface GetServicesRequest {
@@ -43,7 +43,7 @@ export namespace WsCloud {
43
43
  }
44
44
 
45
45
  export interface GetServicesResponse {
46
- Result: string;
46
+ Result?: string;
47
47
  }
48
48
 
49
49
  export interface WsCloudPingRequest {
@@ -62,16 +62,16 @@ export class CloudServiceBase extends Service {
62
62
  super(optsConnection, "WsCloud", "1.02");
63
63
  }
64
64
 
65
- GetPODs(request: Partial<WsCloud.GetPODsRequest>): Promise<WsCloud.GetPODsResponse> {
66
- return this._connection.send("GetPODs", request, "json", false, undefined, "GetPODsResponse");
65
+ GetPODs(request: WsCloud.GetPODsRequest, abortSignal?: AbortSignal): Promise<WsCloud.GetPODsResponse> {
66
+ return this._connection.send("GetPODs", request, "json", false, abortSignal, "GetPODsResponse");
67
67
  }
68
68
 
69
- GetServices(request: Partial<WsCloud.GetServicesRequest>): Promise<WsCloud.GetServicesResponse> {
70
- return this._connection.send("GetServices", request, "json", false, undefined, "GetServicesResponse");
69
+ GetServices(request: WsCloud.GetServicesRequest, abortSignal?: AbortSignal): Promise<WsCloud.GetServicesResponse> {
70
+ return this._connection.send("GetServices", request, "json", false, abortSignal, "GetServicesResponse");
71
71
  }
72
72
 
73
- Ping(request: Partial<WsCloud.WsCloudPingRequest>): Promise<WsCloud.WsCloudPingResponse> {
74
- return this._connection.send("Ping", request, "json", false, undefined, "WsCloudPingResponse");
73
+ Ping(request: WsCloud.WsCloudPingRequest, abortSignal?: AbortSignal): Promise<WsCloud.WsCloudPingResponse> {
74
+ return this._connection.send("Ping", request, "json", false, abortSignal, "WsCloudPingResponse");
75
75
  }
76
76
 
77
77
  }
@@ -7,7 +7,7 @@ export namespace WsDFUXRef {
7
7
  export type long = number;
8
8
 
9
9
  export interface XRefFiles {
10
- Item: string[];
10
+ Item?: string[];
11
11
  }
12
12
 
13
13
  export interface DFUXRefArrayActionRequest {
@@ -19,15 +19,16 @@ export namespace WsDFUXRef {
19
19
  }
20
20
 
21
21
  export interface DFUXRefArrayActionResponse {
22
- DFUXRefArrayActionResult: string;
22
+ DFUXRefArrayActionResult?: string;
23
23
  }
24
24
 
25
25
  export interface DFUXRefBuildRequest {
26
26
  Cluster?: string;
27
+ FilterScopes?: string;
27
28
  }
28
29
 
29
30
  export interface DFUXRefBuildResponse {
30
- DFUXRefActionResult: string;
31
+ DFUXRefActionResult?: string;
31
32
  }
32
33
 
33
34
  export interface DFUXRefBuildCancelRequest {
@@ -35,7 +36,7 @@ export namespace WsDFUXRef {
35
36
  }
36
37
 
37
38
  export interface DFUXRefBuildCancelResponse {
38
- DFUXRefBuildCancelResult: string;
39
+ DFUXRefBuildCancelResult?: string;
39
40
  }
40
41
 
41
42
  export interface DFUXRefCleanDirectoriesRequest {
@@ -43,19 +44,19 @@ export namespace WsDFUXRef {
43
44
  }
44
45
 
45
46
  export interface Exception {
46
- Code: string;
47
- Audience: string;
48
- Source: string;
49
- Message: string;
47
+ Code?: string;
48
+ Audience?: string;
49
+ Source?: string;
50
+ Message?: string;
50
51
  }
51
52
 
52
53
  export interface Exceptions {
53
- Source: string;
54
- Exception: Exception[];
54
+ Source?: string;
55
+ Exception?: Exception[];
55
56
  }
56
57
 
57
58
  export interface DFUXRefCleanDirectoriesResponse {
58
- Exceptions: Exceptions;
59
+ Exceptions?: Exceptions;
59
60
  }
60
61
 
61
62
  export interface DFUXRefDirectoriesQueryRequest {
@@ -63,7 +64,7 @@ export namespace WsDFUXRef {
63
64
  }
64
65
 
65
66
  export interface DFUXRefDirectoriesQueryResponse {
66
- DFUXRefDirectoriesQueryResult: string;
67
+ DFUXRefDirectoriesQueryResult?: string;
67
68
  }
68
69
 
69
70
  export interface DFUXRefFoundFilesQueryRequest {
@@ -71,7 +72,7 @@ export namespace WsDFUXRef {
71
72
  }
72
73
 
73
74
  export interface DFUXRefFoundFilesQueryResponse {
74
- DFUXRefFoundFilesQueryResult: string;
75
+ DFUXRefFoundFilesQueryResult?: string;
75
76
  }
76
77
 
77
78
  export interface DFUXRefListRequest {
@@ -79,7 +80,7 @@ export namespace WsDFUXRef {
79
80
  }
80
81
 
81
82
  export interface DFUXRefListResponse {
82
- DFUXRefListResult: string;
83
+ DFUXRefListResult?: string;
83
84
  }
84
85
 
85
86
  export interface DFUXRefLostFilesQueryRequest {
@@ -87,7 +88,7 @@ export namespace WsDFUXRef {
87
88
  }
88
89
 
89
90
  export interface DFUXRefLostFilesQueryResponse {
90
- DFUXRefLostFilesQueryResult: string;
91
+ DFUXRefLostFilesQueryResult?: string;
91
92
  }
92
93
 
93
94
  export interface DFUXRefMessagesQueryRequest {
@@ -95,7 +96,7 @@ export namespace WsDFUXRef {
95
96
  }
96
97
 
97
98
  export interface DFUXRefMessagesQueryResponse {
98
- DFUXRefMessagesQueryResult: string;
99
+ DFUXRefMessagesQueryResult?: string;
99
100
  }
100
101
 
101
102
  export interface DFUXRefOrphanFilesQueryRequest {
@@ -103,15 +104,15 @@ export namespace WsDFUXRef {
103
104
  }
104
105
 
105
106
  export interface DFUXRefOrphanFilesQueryResponse {
106
- DFUXRefOrphanFilesQueryResult: string;
107
+ DFUXRefOrphanFilesQueryResult?: string;
107
108
  }
108
109
 
109
110
  export interface ProcessClusterList {
110
- Item: string[];
111
+ Item?: string[];
111
112
  }
112
113
 
113
114
  export interface CheckPlanes {
114
- Item: string[];
115
+ Item?: string[];
115
116
  }
116
117
 
117
118
  export interface DFUXRefUnusedFilesRequest {
@@ -123,41 +124,41 @@ export namespace WsDFUXRef {
123
124
  }
124
125
 
125
126
  export interface UnusedFiles {
126
- File: string[];
127
+ File?: string[];
127
128
  }
128
129
 
129
130
  export interface DFULogicalFile {
130
- Prefix: string;
131
- ClusterName: string;
132
- Directory: string;
133
- Description: string;
134
- Parts: string;
135
- Name: string;
136
- Owner: string;
137
- Totalsize: string;
138
- RecordCount: string;
139
- Modified: string;
140
- LongSize: string;
141
- LongRecordCount: string;
142
- isSuperfile: boolean;
143
- isZipfile: boolean;
144
- isDirectory: boolean;
145
- Replicate: boolean;
146
- IntSize: long;
147
- IntRecordCount: long;
148
- FromRoxieCluster: boolean;
149
- BrowseData: boolean;
131
+ Prefix?: string;
132
+ ClusterName?: string;
133
+ Directory?: string;
134
+ Description?: string;
135
+ Parts?: string;
136
+ Name?: string;
137
+ Owner?: string;
138
+ Totalsize?: string;
139
+ RecordCount?: string;
140
+ Modified?: string;
141
+ LongSize?: string;
142
+ LongRecordCount?: string;
143
+ isSuperfile?: boolean;
144
+ isZipfile?: boolean;
145
+ isDirectory?: boolean;
146
+ Replicate?: boolean;
147
+ IntSize?: long;
148
+ IntRecordCount?: long;
149
+ FromRoxieCluster?: boolean;
150
+ BrowseData?: boolean;
150
151
  }
151
152
 
152
153
  export interface UnusedFilesWithDetails {
153
- DFULogicalFile: DFULogicalFile[];
154
+ DFULogicalFile?: DFULogicalFile[];
154
155
  }
155
156
 
156
157
  export interface DFUXRefUnusedFilesResponse {
157
- Exceptions: Exceptions;
158
- UnusedFileCount: unsignedInt;
159
- UnusedFiles: UnusedFiles;
160
- UnusedFilesWithDetails: UnusedFilesWithDetails;
158
+ Exceptions?: Exceptions;
159
+ UnusedFileCount?: unsignedInt;
160
+ UnusedFiles?: UnusedFiles;
161
+ UnusedFilesWithDetails?: UnusedFilesWithDetails;
161
162
  }
162
163
 
163
164
  export interface WsDFUXRefPingRequest {
@@ -176,52 +177,52 @@ export class DFUXRefServiceBase extends Service {
176
177
  super(optsConnection, "WsDFUXRef", "1.04");
177
178
  }
178
179
 
179
- DFUXRefArrayAction(request: Partial<WsDFUXRef.DFUXRefArrayActionRequest>): Promise<WsDFUXRef.DFUXRefArrayActionResponse> {
180
- return this._connection.send("DFUXRefArrayAction", request, "json", false, undefined, "DFUXRefArrayActionResponse");
180
+ DFUXRefArrayAction(request: WsDFUXRef.DFUXRefArrayActionRequest, abortSignal?: AbortSignal): Promise<WsDFUXRef.DFUXRefArrayActionResponse> {
181
+ return this._connection.send("DFUXRefArrayAction", request, "json", false, abortSignal, "DFUXRefArrayActionResponse");
181
182
  }
182
183
 
183
- DFUXRefBuild(request: Partial<WsDFUXRef.DFUXRefBuildRequest>): Promise<WsDFUXRef.DFUXRefBuildResponse> {
184
- return this._connection.send("DFUXRefBuild", request, "json", false, undefined, "DFUXRefBuildResponse");
184
+ DFUXRefBuild(request: WsDFUXRef.DFUXRefBuildRequest, abortSignal?: AbortSignal): Promise<WsDFUXRef.DFUXRefBuildResponse> {
185
+ return this._connection.send("DFUXRefBuild", request, "json", false, abortSignal, "DFUXRefBuildResponse");
185
186
  }
186
187
 
187
- DFUXRefBuildCancel(request: Partial<WsDFUXRef.DFUXRefBuildCancelRequest>): Promise<WsDFUXRef.DFUXRefBuildCancelResponse> {
188
- return this._connection.send("DFUXRefBuildCancel", request, "json", false, undefined, "DFUXRefBuildCancelResponse");
188
+ DFUXRefBuildCancel(request: WsDFUXRef.DFUXRefBuildCancelRequest, abortSignal?: AbortSignal): Promise<WsDFUXRef.DFUXRefBuildCancelResponse> {
189
+ return this._connection.send("DFUXRefBuildCancel", request, "json", false, abortSignal, "DFUXRefBuildCancelResponse");
189
190
  }
190
191
 
191
- DFUXRefCleanDirectories(request: Partial<WsDFUXRef.DFUXRefCleanDirectoriesRequest>): Promise<WsDFUXRef.DFUXRefCleanDirectoriesResponse> {
192
- return this._connection.send("DFUXRefCleanDirectories", request, "json", false, undefined, "DFUXRefCleanDirectoriesResponse");
192
+ DFUXRefCleanDirectories(request: WsDFUXRef.DFUXRefCleanDirectoriesRequest, abortSignal?: AbortSignal): Promise<WsDFUXRef.DFUXRefCleanDirectoriesResponse> {
193
+ return this._connection.send("DFUXRefCleanDirectories", request, "json", false, abortSignal, "DFUXRefCleanDirectoriesResponse");
193
194
  }
194
195
 
195
- DFUXRefDirectories(request: Partial<WsDFUXRef.DFUXRefDirectoriesQueryRequest>): Promise<WsDFUXRef.DFUXRefDirectoriesQueryResponse> {
196
- return this._connection.send("DFUXRefDirectories", request, "json", false, undefined, "DFUXRefDirectoriesQueryResponse");
196
+ DFUXRefDirectories(request: WsDFUXRef.DFUXRefDirectoriesQueryRequest, abortSignal?: AbortSignal): Promise<WsDFUXRef.DFUXRefDirectoriesQueryResponse> {
197
+ return this._connection.send("DFUXRefDirectories", request, "json", false, abortSignal, "DFUXRefDirectoriesQueryResponse");
197
198
  }
198
199
 
199
- DFUXRefFoundFiles(request: Partial<WsDFUXRef.DFUXRefFoundFilesQueryRequest>): Promise<WsDFUXRef.DFUXRefFoundFilesQueryResponse> {
200
- return this._connection.send("DFUXRefFoundFiles", request, "json", false, undefined, "DFUXRefFoundFilesQueryResponse");
200
+ DFUXRefFoundFiles(request: WsDFUXRef.DFUXRefFoundFilesQueryRequest, abortSignal?: AbortSignal): Promise<WsDFUXRef.DFUXRefFoundFilesQueryResponse> {
201
+ return this._connection.send("DFUXRefFoundFiles", request, "json", false, abortSignal, "DFUXRefFoundFilesQueryResponse");
201
202
  }
202
203
 
203
- DFUXRefList(request: Partial<WsDFUXRef.DFUXRefListRequest>): Promise<WsDFUXRef.DFUXRefListResponse> {
204
- return this._connection.send("DFUXRefList", request, "json", false, undefined, "DFUXRefListResponse");
204
+ DFUXRefList(request: WsDFUXRef.DFUXRefListRequest, abortSignal?: AbortSignal): Promise<WsDFUXRef.DFUXRefListResponse> {
205
+ return this._connection.send("DFUXRefList", request, "json", false, abortSignal, "DFUXRefListResponse");
205
206
  }
206
207
 
207
- DFUXRefLostFiles(request: Partial<WsDFUXRef.DFUXRefLostFilesQueryRequest>): Promise<WsDFUXRef.DFUXRefLostFilesQueryResponse> {
208
- return this._connection.send("DFUXRefLostFiles", request, "json", false, undefined, "DFUXRefLostFilesQueryResponse");
208
+ DFUXRefLostFiles(request: WsDFUXRef.DFUXRefLostFilesQueryRequest, abortSignal?: AbortSignal): Promise<WsDFUXRef.DFUXRefLostFilesQueryResponse> {
209
+ return this._connection.send("DFUXRefLostFiles", request, "json", false, abortSignal, "DFUXRefLostFilesQueryResponse");
209
210
  }
210
211
 
211
- DFUXRefMessages(request: Partial<WsDFUXRef.DFUXRefMessagesQueryRequest>): Promise<WsDFUXRef.DFUXRefMessagesQueryResponse> {
212
- return this._connection.send("DFUXRefMessages", request, "json", false, undefined, "DFUXRefMessagesQueryResponse");
212
+ DFUXRefMessages(request: WsDFUXRef.DFUXRefMessagesQueryRequest, abortSignal?: AbortSignal): Promise<WsDFUXRef.DFUXRefMessagesQueryResponse> {
213
+ return this._connection.send("DFUXRefMessages", request, "json", false, abortSignal, "DFUXRefMessagesQueryResponse");
213
214
  }
214
215
 
215
- DFUXRefOrphanFiles(request: Partial<WsDFUXRef.DFUXRefOrphanFilesQueryRequest>): Promise<WsDFUXRef.DFUXRefOrphanFilesQueryResponse> {
216
- return this._connection.send("DFUXRefOrphanFiles", request, "json", false, undefined, "DFUXRefOrphanFilesQueryResponse");
216
+ DFUXRefOrphanFiles(request: WsDFUXRef.DFUXRefOrphanFilesQueryRequest, abortSignal?: AbortSignal): Promise<WsDFUXRef.DFUXRefOrphanFilesQueryResponse> {
217
+ return this._connection.send("DFUXRefOrphanFiles", request, "json", false, abortSignal, "DFUXRefOrphanFilesQueryResponse");
217
218
  }
218
219
 
219
- DFUXRefUnusedFiles(request: Partial<WsDFUXRef.DFUXRefUnusedFilesRequest>): Promise<WsDFUXRef.DFUXRefUnusedFilesResponse> {
220
- return this._connection.send("DFUXRefUnusedFiles", request, "json", false, undefined, "DFUXRefUnusedFilesResponse");
220
+ DFUXRefUnusedFiles(request: WsDFUXRef.DFUXRefUnusedFilesRequest, abortSignal?: AbortSignal): Promise<WsDFUXRef.DFUXRefUnusedFilesResponse> {
221
+ return this._connection.send("DFUXRefUnusedFiles", request, "json", false, abortSignal, "DFUXRefUnusedFilesResponse");
221
222
  }
222
223
 
223
- Ping(request: Partial<WsDFUXRef.WsDFUXRefPingRequest>): Promise<WsDFUXRef.WsDFUXRefPingResponse> {
224
- return this._connection.send("Ping", request, "json", false, undefined, "WsDFUXRefPingResponse");
224
+ Ping(request: WsDFUXRef.WsDFUXRefPingRequest, abortSignal?: AbortSignal): Promise<WsDFUXRef.WsDFUXRefPingResponse> {
225
+ return this._connection.send("Ping", request, "json", false, abortSignal, "WsDFUXRefPingResponse");
225
226
  }
226
227
 
227
228
  }
@@ -11,20 +11,20 @@ export namespace WsDali {
11
11
  }
12
12
 
13
13
  export interface Exception {
14
- Code: string;
15
- Audience: string;
16
- Source: string;
17
- Message: string;
14
+ Code?: string;
15
+ Audience?: string;
16
+ Source?: string;
17
+ Message?: string;
18
18
  }
19
19
 
20
20
  export interface Exceptions {
21
- Source: string;
22
- Exception: Exception[];
21
+ Source?: string;
22
+ Exception?: Exception[];
23
23
  }
24
24
 
25
25
  export interface ResultResponse {
26
- Exceptions: Exceptions;
27
- Result: string;
26
+ Exceptions?: Exceptions;
27
+ Result?: string;
28
28
  }
29
29
 
30
30
  export interface ClearTraceTransactionsRequest {
@@ -36,8 +36,8 @@ export namespace WsDali {
36
36
  }
37
37
 
38
38
  export interface CountResponse {
39
- Exceptions: Exceptions;
40
- Result: unsignedInt;
39
+ Exceptions?: Exceptions;
40
+ Result?: unsignedInt;
41
41
  }
42
42
 
43
43
  export interface DFSCheckRequest {
@@ -49,8 +49,8 @@ export namespace WsDali {
49
49
  }
50
50
 
51
51
  export interface BooleanResponse {
52
- Exceptions: Exceptions;
53
- Result: boolean;
52
+ Exceptions?: Exceptions;
53
+ Result?: boolean;
54
54
  }
55
55
 
56
56
  export interface DFSLSRequest {
@@ -179,124 +179,124 @@ export class DaliServiceBase extends Service {
179
179
  super(optsConnection, "WSDali", "1.07");
180
180
  }
181
181
 
182
- Add(request: Partial<WsDali.AddRequest>): Promise<WsDali.ResultResponse> {
183
- return this._connection.send("Add", request, "json", false, undefined, "ResultResponse");
182
+ Add(request: WsDali.AddRequest, abortSignal?: AbortSignal): Promise<WsDali.ResultResponse> {
183
+ return this._connection.send("Add", request, "json", false, abortSignal, "ResultResponse");
184
184
  }
185
185
 
186
- ClearTraceTransactions(request: Partial<WsDali.ClearTraceTransactionsRequest>): Promise<WsDali.ResultResponse> {
187
- return this._connection.send("ClearTraceTransactions", request, "json", false, undefined, "ResultResponse");
186
+ ClearTraceTransactions(request: WsDali.ClearTraceTransactionsRequest, abortSignal?: AbortSignal): Promise<WsDali.ResultResponse> {
187
+ return this._connection.send("ClearTraceTransactions", request, "json", false, abortSignal, "ResultResponse");
188
188
  }
189
189
 
190
- Count(request: Partial<WsDali.CountRequest>): Promise<WsDali.CountResponse> {
191
- return this._connection.send("Count", request, "json", false, undefined, "CountResponse");
190
+ Count(request: WsDali.CountRequest, abortSignal?: AbortSignal): Promise<WsDali.CountResponse> {
191
+ return this._connection.send("Count", request, "json", false, abortSignal, "CountResponse");
192
192
  }
193
193
 
194
- DFSCheck(request: Partial<WsDali.DFSCheckRequest>): Promise<WsDali.ResultResponse> {
195
- return this._connection.send("DFSCheck", request, "json", false, undefined, "ResultResponse");
194
+ DFSCheck(request: WsDali.DFSCheckRequest, abortSignal?: AbortSignal): Promise<WsDali.ResultResponse> {
195
+ return this._connection.send("DFSCheck", request, "json", false, abortSignal, "ResultResponse");
196
196
  }
197
197
 
198
- DFSExists(request: Partial<WsDali.DFSExistsRequest>): Promise<WsDali.BooleanResponse> {
199
- return this._connection.send("DFSExists", request, "json", false, undefined, "BooleanResponse");
198
+ DFSExists(request: WsDali.DFSExistsRequest, abortSignal?: AbortSignal): Promise<WsDali.BooleanResponse> {
199
+ return this._connection.send("DFSExists", request, "json", false, abortSignal, "BooleanResponse");
200
200
  }
201
201
 
202
- DFSLS(request: Partial<WsDali.DFSLSRequest>): Promise<WsDali.ResultResponse> {
203
- return this._connection.send("DFSLS", request, "json", false, undefined, "ResultResponse");
202
+ DFSLS(request: WsDali.DFSLSRequest, abortSignal?: AbortSignal): Promise<WsDali.ResultResponse> {
203
+ return this._connection.send("DFSLS", request, "json", false, abortSignal, "ResultResponse");
204
204
  }
205
205
 
206
- Delete(request: Partial<WsDali.DeleteRequest>): Promise<WsDali.ResultResponse> {
207
- return this._connection.send("Delete", request, "json", false, undefined, "ResultResponse");
206
+ Delete(request: WsDali.DeleteRequest, abortSignal?: AbortSignal): Promise<WsDali.ResultResponse> {
207
+ return this._connection.send("Delete", request, "json", false, abortSignal, "ResultResponse");
208
208
  }
209
209
 
210
- DisconnectClientConnection(request: Partial<WsDali.DisconnectClientConnectionRequest>): Promise<WsDali.ResultResponse> {
211
- return this._connection.send("DisconnectClientConnection", request, "json", false, undefined, "ResultResponse");
210
+ DisconnectClientConnection(request: WsDali.DisconnectClientConnectionRequest, abortSignal?: AbortSignal): Promise<WsDali.ResultResponse> {
211
+ return this._connection.send("DisconnectClientConnection", request, "json", false, abortSignal, "ResultResponse");
212
212
  }
213
213
 
214
- GetClients(request: Partial<WsDali.GetClientsRequest>): Promise<WsDali.ResultResponse> {
215
- return this._connection.send("GetClients", request, "json", false, undefined, "ResultResponse");
214
+ GetClients(request: WsDali.GetClientsRequest, abortSignal?: AbortSignal): Promise<WsDali.ResultResponse> {
215
+ return this._connection.send("GetClients", request, "json", false, abortSignal, "ResultResponse");
216
216
  }
217
217
 
218
- GetConnections(request: Partial<WsDali.GetConnectionsRequest>): Promise<WsDali.ResultResponse> {
219
- return this._connection.send("GetConnections", request, "json", false, undefined, "ResultResponse");
218
+ GetConnections(request: WsDali.GetConnectionsRequest, abortSignal?: AbortSignal): Promise<WsDali.ResultResponse> {
219
+ return this._connection.send("GetConnections", request, "json", false, abortSignal, "ResultResponse");
220
220
  }
221
221
 
222
- GetDFSCSV(request: Partial<WsDali.GetDFSCSVRequest>): Promise<WsDali.ResultResponse> {
223
- return this._connection.send("GetDFSCSV", request, "json", false, undefined, "ResultResponse");
222
+ GetDFSCSV(request: WsDali.GetDFSCSVRequest, abortSignal?: AbortSignal): Promise<WsDali.ResultResponse> {
223
+ return this._connection.send("GetDFSCSV", request, "json", false, abortSignal, "ResultResponse");
224
224
  }
225
225
 
226
- GetDFSMap(request: Partial<WsDali.GetDFSMapRequest>): Promise<WsDali.ResultResponse> {
227
- return this._connection.send("GetDFSMap", request, "json", false, undefined, "ResultResponse");
226
+ GetDFSMap(request: WsDali.GetDFSMapRequest, abortSignal?: AbortSignal): Promise<WsDali.ResultResponse> {
227
+ return this._connection.send("GetDFSMap", request, "json", false, abortSignal, "ResultResponse");
228
228
  }
229
229
 
230
- GetDFSParents(request: Partial<WsDali.GetDFSParentsRequest>): Promise<WsDali.ResultResponse> {
231
- return this._connection.send("GetDFSParents", request, "json", false, undefined, "ResultResponse");
230
+ GetDFSParents(request: WsDali.GetDFSParentsRequest, abortSignal?: AbortSignal): Promise<WsDali.ResultResponse> {
231
+ return this._connection.send("GetDFSParents", request, "json", false, abortSignal, "ResultResponse");
232
232
  }
233
233
 
234
- GetLogicalFile(request: Partial<WsDali.GetLogicalFileRequest>): Promise<WsDali.ResultResponse> {
235
- return this._connection.send("GetLogicalFile", request, "json", false, undefined, "ResultResponse");
234
+ GetLogicalFile(request: WsDali.GetLogicalFileRequest, abortSignal?: AbortSignal): Promise<WsDali.ResultResponse> {
235
+ return this._connection.send("GetLogicalFile", request, "json", false, abortSignal, "ResultResponse");
236
236
  }
237
237
 
238
- GetLogicalFilePart(request: Partial<WsDali.GetLogicalFilePartRequest>): Promise<WsDali.ResultResponse> {
239
- return this._connection.send("GetLogicalFilePart", request, "json", false, undefined, "ResultResponse");
238
+ GetLogicalFilePart(request: WsDali.GetLogicalFilePartRequest, abortSignal?: AbortSignal): Promise<WsDali.ResultResponse> {
239
+ return this._connection.send("GetLogicalFilePart", request, "json", false, abortSignal, "ResultResponse");
240
240
  }
241
241
 
242
- GetProtectedList(request: Partial<WsDali.GetProtectedListRequest>): Promise<WsDali.ResultResponse> {
243
- return this._connection.send("GetProtectedList", request, "json", false, undefined, "ResultResponse");
242
+ GetProtectedList(request: WsDali.GetProtectedListRequest, abortSignal?: AbortSignal): Promise<WsDali.ResultResponse> {
243
+ return this._connection.send("GetProtectedList", request, "json", false, abortSignal, "ResultResponse");
244
244
  }
245
245
 
246
- GetSDSStats(request: Partial<WsDali.GetSDSStatsRequest>): Promise<WsDali.ResultResponse> {
247
- return this._connection.send("GetSDSStats", request, "json", false, undefined, "ResultResponse");
246
+ GetSDSStats(request: WsDali.GetSDSStatsRequest, abortSignal?: AbortSignal): Promise<WsDali.ResultResponse> {
247
+ return this._connection.send("GetSDSStats", request, "json", false, abortSignal, "ResultResponse");
248
248
  }
249
249
 
250
- GetSDSSubscribers(request: Partial<WsDali.GetSDSSubscribersRequest>): Promise<WsDali.ResultResponse> {
251
- return this._connection.send("GetSDSSubscribers", request, "json", false, undefined, "ResultResponse");
250
+ GetSDSSubscribers(request: WsDali.GetSDSSubscribersRequest, abortSignal?: AbortSignal): Promise<WsDali.ResultResponse> {
251
+ return this._connection.send("GetSDSSubscribers", request, "json", false, abortSignal, "ResultResponse");
252
252
  }
253
253
 
254
- GetValue(request: Partial<WsDali.GetValueRequest>): Promise<WsDali.ResultResponse> {
255
- return this._connection.send("GetValue", request, "json", false, undefined, "ResultResponse");
254
+ GetValue(request: WsDali.GetValueRequest, abortSignal?: AbortSignal): Promise<WsDali.ResultResponse> {
255
+ return this._connection.send("GetValue", request, "json", false, abortSignal, "ResultResponse");
256
256
  }
257
257
 
258
- Import(request: Partial<WsDali.ImportRequest>): Promise<WsDali.ResultResponse> {
259
- return this._connection.send("Import", request, "json", false, undefined, "ResultResponse");
258
+ Import(request: WsDali.ImportRequest, abortSignal?: AbortSignal): Promise<WsDali.ResultResponse> {
259
+ return this._connection.send("Import", request, "json", false, abortSignal, "ResultResponse");
260
260
  }
261
261
 
262
- ListSDSLocks(request: Partial<WsDali.ListSDSLocksRequest>): Promise<WsDali.ResultResponse> {
263
- return this._connection.send("ListSDSLocks", request, "json", false, undefined, "ResultResponse");
262
+ ListSDSLocks(request: WsDali.ListSDSLocksRequest, abortSignal?: AbortSignal): Promise<WsDali.ResultResponse> {
263
+ return this._connection.send("ListSDSLocks", request, "json", false, abortSignal, "ResultResponse");
264
264
  }
265
265
 
266
- Ping(request: Partial<WsDali.WSDaliPingRequest>): Promise<WsDali.WSDaliPingResponse> {
267
- return this._connection.send("Ping", request, "json", false, undefined, "WSDaliPingResponse");
266
+ Ping(request: WsDali.WSDaliPingRequest, abortSignal?: AbortSignal): Promise<WsDali.WSDaliPingResponse> {
267
+ return this._connection.send("Ping", request, "json", false, abortSignal, "WSDaliPingResponse");
268
268
  }
269
269
 
270
- SaveSDSStore(request: Partial<WsDali.SaveSDSStoreRequest>): Promise<WsDali.ResultResponse> {
271
- return this._connection.send("SaveSDSStore", request, "json", false, undefined, "ResultResponse");
270
+ SaveSDSStore(request: WsDali.SaveSDSStoreRequest, abortSignal?: AbortSignal): Promise<WsDali.ResultResponse> {
271
+ return this._connection.send("SaveSDSStore", request, "json", false, abortSignal, "ResultResponse");
272
272
  }
273
273
 
274
- SetLogicalFilePartAttr(request: Partial<WsDali.SetLogicalFilePartAttrRequest>): Promise<WsDali.ResultResponse> {
275
- return this._connection.send("SetLogicalFilePartAttr", request, "json", false, undefined, "ResultResponse");
274
+ SetLogicalFilePartAttr(request: WsDali.SetLogicalFilePartAttrRequest, abortSignal?: AbortSignal): Promise<WsDali.ResultResponse> {
275
+ return this._connection.send("SetLogicalFilePartAttr", request, "json", false, abortSignal, "ResultResponse");
276
276
  }
277
277
 
278
- SetProtected(request: Partial<WsDali.SetProtectedRequest>): Promise<WsDali.ResultResponse> {
279
- return this._connection.send("SetProtected", request, "json", false, undefined, "ResultResponse");
278
+ SetProtected(request: WsDali.SetProtectedRequest, abortSignal?: AbortSignal): Promise<WsDali.ResultResponse> {
279
+ return this._connection.send("SetProtected", request, "json", false, abortSignal, "ResultResponse");
280
280
  }
281
281
 
282
- SetTraceSlowTransactions(request: Partial<WsDali.SetTraceSlowTransactionsRequest>): Promise<WsDali.ResultResponse> {
283
- return this._connection.send("SetTraceSlowTransactions", request, "json", false, undefined, "ResultResponse");
282
+ SetTraceSlowTransactions(request: WsDali.SetTraceSlowTransactionsRequest, abortSignal?: AbortSignal): Promise<WsDali.ResultResponse> {
283
+ return this._connection.send("SetTraceSlowTransactions", request, "json", false, abortSignal, "ResultResponse");
284
284
  }
285
285
 
286
- SetTraceTransactions(request: Partial<WsDali.SetTraceTransactionsRequest>): Promise<WsDali.ResultResponse> {
287
- return this._connection.send("SetTraceTransactions", request, "json", false, undefined, "ResultResponse");
286
+ SetTraceTransactions(request: WsDali.SetTraceTransactionsRequest, abortSignal?: AbortSignal): Promise<WsDali.ResultResponse> {
287
+ return this._connection.send("SetTraceTransactions", request, "json", false, abortSignal, "ResultResponse");
288
288
  }
289
289
 
290
- SetUnprotected(request: Partial<WsDali.SetUnprotectedRequest>): Promise<WsDali.ResultResponse> {
291
- return this._connection.send("SetUnprotected", request, "json", false, undefined, "ResultResponse");
290
+ SetUnprotected(request: WsDali.SetUnprotectedRequest, abortSignal?: AbortSignal): Promise<WsDali.ResultResponse> {
291
+ return this._connection.send("SetUnprotected", request, "json", false, abortSignal, "ResultResponse");
292
292
  }
293
293
 
294
- SetValue(request: Partial<WsDali.SetValueRequest>): Promise<WsDali.ResultResponse> {
295
- return this._connection.send("SetValue", request, "json", false, undefined, "ResultResponse");
294
+ SetValue(request: WsDali.SetValueRequest, abortSignal?: AbortSignal): Promise<WsDali.ResultResponse> {
295
+ return this._connection.send("SetValue", request, "json", false, abortSignal, "ResultResponse");
296
296
  }
297
297
 
298
- UnlockSDSLock(request: Partial<WsDali.UnlockSDSLockRequest>): Promise<WsDali.ResultResponse> {
299
- return this._connection.send("UnlockSDSLock", request, "json", false, undefined, "ResultResponse");
298
+ UnlockSDSLock(request: WsDali.UnlockSDSLockRequest, abortSignal?: AbortSignal): Promise<WsDali.ResultResponse> {
299
+ return this._connection.send("UnlockSDSLock", request, "json", false, abortSignal, "ResultResponse");
300
300
  }
301
301
 
302
302
  }