@hpcc-js/comms 3.8.1 → 3.9.0

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 (61) hide show
  1. package/dist/browser/index.js +175 -86
  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 +39 -42
  6. package/dist/node/index.cjs.map +4 -4
  7. package/dist/node/index.js +39 -42
  8. package/dist/node/index.js.map +4 -4
  9. package/package.json +4 -5
  10. package/src/__package__.ts +2 -2
  11. package/src/ecl/logicalFile.ts +1 -0
  12. package/src/ecl/store.ts +1 -1
  13. package/src/index.node.ts +1 -1
  14. package/src/services/fileSpray.ts +1 -1
  15. package/src/services/wsCodesign.ts +7 -83
  16. package/src/services/wsDFU.ts +1 -1
  17. package/src/services/wsDFUXRef.ts +3 -304
  18. package/src/services/wsMachine.ts +1 -1
  19. package/src/services/wsPackageProcess.ts +1 -1
  20. package/src/services/wsSMC.ts +1 -1
  21. package/src/services/wsStore.ts +7 -205
  22. package/src/services/wsTopology.ts +1 -1
  23. package/src/services/wsWorkunits.ts +0 -8
  24. package/src/services/wsdl/FileSpray/v1.27/FileSpray.ts +930 -0
  25. package/src/services/wsdl/WsDFUXRef/v1.04/WsDFUXRef.ts +227 -0
  26. package/src/services/wsdl/WsDfu/v1.66/WsDfu.ts +1267 -0
  27. package/src/services/wsdl/WsDfu/v1.67/WsDfu.ts +1268 -0
  28. package/src/services/wsdl/WsFileIO/v1.01/WsFileIO.ts +12 -15
  29. package/src/services/wsdl/WsPackageProcess/v1.07/WsPackageProcess.ts +500 -0
  30. package/src/services/wsdl/WsSMC/v1.27/WsSMC.ts +43 -122
  31. package/src/services/wsdl/WsSMC/v1.28/WsSMC.ts +645 -0
  32. package/src/services/wsdl/WsTopology/v1.32/WsTopology.ts +65 -164
  33. package/src/services/wsdl/WsTopology/v1.33/WsTopology.ts +835 -0
  34. package/src/services/wsdl/WsWorkunits/v2.02/WsWorkunits.ts +6 -1
  35. package/src/services/wsdl/ws_codesign/v1.1/ws_codesign.ts +15 -20
  36. package/src/services/wsdl/ws_elk/v1/ws_elk.ts +4 -4
  37. package/src/services/wsdl/ws_machine/v1.18/ws_machine.ts +497 -0
  38. package/src/services/wsdl/ws_machine/v1.19/ws_machine.ts +497 -0
  39. package/src/services/wsdl/wsstore/v1.02/wsstore.ts +29 -40
  40. package/types/__package__.d.ts +2 -2
  41. package/types/ecl/logicalFile.d.ts +1 -0
  42. package/types/services/fileSpray.d.ts +1 -1
  43. package/types/services/wsCodesign.d.ts +5 -55
  44. package/types/services/wsDFU.d.ts +1 -1
  45. package/types/services/wsDFUXRef.d.ts +3 -218
  46. package/types/services/wsMachine.d.ts +1 -1
  47. package/types/services/wsPackageProcess.d.ts +1 -1
  48. package/types/services/wsSMC.d.ts +1 -1
  49. package/types/services/wsStore.d.ts +5 -145
  50. package/types/services/wsTopology.d.ts +1 -1
  51. package/types/services/wsdl/FileSpray/{v1.26 → v1.27}/FileSpray.d.ts +1 -0
  52. package/types/services/wsdl/WsDFUXRef/v1.04/WsDFUXRef.d.ts +147 -0
  53. package/types/services/wsdl/WsDfu/{v1.65 → v1.67}/WsDfu.d.ts +16 -0
  54. package/types/services/wsdl/WsPackageProcess/{v1.04 → v1.07}/WsPackageProcess.d.ts +75 -95
  55. package/types/services/wsdl/WsSMC/{v1.27 → v1.28}/WsSMC.d.ts +84 -122
  56. package/types/services/wsdl/WsTopology/{v1.32 → v1.33}/WsTopology.d.ts +97 -164
  57. package/types/services/wsdl/WsWorkunits/v2.02/WsWorkunits.d.ts +6 -1
  58. package/types/services/wsdl/ws_codesign/v1.1/ws_codesign.d.ts +60 -0
  59. package/types/services/wsdl/ws_elk/v1/ws_elk.d.ts +2 -2
  60. package/types/services/wsdl/ws_machine/{v1.17 → v1.19}/ws_machine.d.ts +65 -138
  61. package/types/services/wsdl/wsstore/v1.02/wsstore.d.ts +166 -0
@@ -1,56 +1,6 @@
1
- import { IConnection, IOptions } from "../connection.ts";
2
- export declare namespace WsCodesign {
3
- interface ListUserIDsRequest {
4
- }
5
- interface WsCodesignPingRequest {
6
- }
7
- interface SignRequest {
8
- SigningMethod?: string;
9
- UserID: string;
10
- KeyPass: string;
11
- Text: string;
12
- }
13
- interface VerifyRequest {
14
- Text: string;
15
- }
16
- interface Exception {
17
- Code: string;
18
- Audience: string;
19
- Source: string;
20
- Message: string;
21
- }
22
- interface Exceptions {
23
- Source: string;
24
- Exception: Exception[];
25
- }
26
- interface UserIDs {
27
- Item: string[];
28
- }
29
- interface ListUserIDsResponse {
30
- Exceptions: Exceptions;
31
- UserIDs: UserIDs;
32
- }
33
- interface WsCodesignPingResponse {
34
- }
35
- interface SignResponse {
36
- Exceptions: Exceptions;
37
- RetCode: number;
38
- ErrMsg: string;
39
- SignedText: string;
40
- }
41
- interface VerifyResponse {
42
- Exceptions: Exceptions;
43
- RetCode: number;
44
- ErrMsg: string;
45
- IsVerified: boolean;
46
- SignedBy: string;
47
- }
48
- }
49
- export declare class CodesignService {
50
- private _connection;
51
- constructor(optsConnection: IOptions | IConnection);
52
- connectionOptions(): IOptions;
53
- ListUserIDs(request: WsCodesign.ListUserIDsRequest): Promise<string[]>;
54
- Sign(request: WsCodesign.SignRequest): Promise<WsCodesign.SignResponse>;
55
- Verify(request: WsCodesign.VerifyRequest): Promise<WsCodesign.VerifyResponse>;
1
+ import { CodesignServiceBase, WsCodesign } from "./wsdl/ws_codesign/v1.1/ws_codesign.ts";
2
+ export { WsCodesign };
3
+ export declare class CodesignService extends CodesignServiceBase {
4
+ ListUserIDsEx(request: Partial<WsCodesign.ListUserIDsRequest>): Promise<string[]>;
5
+ Sign(request: Partial<WsCodesign.SignRequest>): Promise<WsCodesign.SignResponse>;
56
6
  }
@@ -1,4 +1,4 @@
1
- import { DfuServiceBase, WsDfu } from "./wsdl/WsDfu/v1.65/WsDfu.ts";
1
+ import { DfuServiceBase, WsDfu } from "./wsdl/WsDfu/v1.67/WsDfu.ts";
2
2
  export { WsDfu };
3
3
  export declare const DFUArrayActions: typeof WsDfu.DFUArrayActions;
4
4
  export declare const DFUDefFileFormat: typeof WsDfu.DFUDefFileFormat;
@@ -1,219 +1,4 @@
1
- import { IConnection, IOptions } from "../connection.ts";
2
- import { Service } from "../espConnection.ts";
3
- export declare namespace WsDFUXRef {
4
- interface XRefFiles {
5
- Item: string[];
6
- }
7
- interface DFUXRefArrayActionRequest {
8
- Type: string;
9
- Cluster: string;
10
- Action: string;
11
- XRefFiles: XRefFiles;
12
- }
13
- interface DFUXRefBuildRequest {
14
- Cluster: string;
15
- }
16
- interface DFUXRefBuildCancelRequest {
17
- }
18
- interface DFUXRefCleanDirectoriesRequest {
19
- Cluster: string;
20
- }
21
- interface DFUXRefDirectoriesQueryRequest {
22
- Cluster: string;
23
- }
24
- interface DFUXRefFoundFilesQueryRequest {
25
- Cluster: string;
26
- }
27
- interface DFUXRefListRequest {
28
- }
29
- interface DFUXRefLostFilesQueryRequest {
30
- Cluster: string;
31
- }
32
- interface DFUXRefMessagesQueryRequest {
33
- Cluster: string;
34
- }
35
- interface DFUXRefOrphanFilesQueryRequest {
36
- Cluster: string;
37
- }
38
- interface DFUXRefUnusedFilesRequest {
39
- ProcessCluster: string;
40
- CheckPackageMaps: boolean;
41
- GetFileDetails: boolean;
42
- }
43
- interface WsDFUXRefPingRequest {
44
- }
45
- interface Request {
46
- DFUXRefArrayActionRequest: DFUXRefArrayActionRequest;
47
- DFUXRefBuildRequest: DFUXRefBuildRequest;
48
- DFUXRefBuildCancelRequest: DFUXRefBuildCancelRequest;
49
- DFUXRefCleanDirectoriesRequest: DFUXRefCleanDirectoriesRequest;
50
- DFUXRefDirectoriesQueryRequest: DFUXRefDirectoriesQueryRequest;
51
- DFUXRefFoundFilesQueryRequest: DFUXRefFoundFilesQueryRequest;
52
- DFUXRefListRequest: DFUXRefListRequest;
53
- DFUXRefLostFilesQueryRequest: DFUXRefLostFilesQueryRequest;
54
- DFUXRefMessagesQueryRequest: DFUXRefMessagesQueryRequest;
55
- DFUXRefOrphanFilesQueryRequest: DFUXRefOrphanFilesQueryRequest;
56
- DFUXRefUnusedFilesRequest: DFUXRefUnusedFilesRequest;
57
- WsDFUXRefPingRequest: WsDFUXRefPingRequest;
58
- }
59
- interface DFUXRefArrayActionResponse {
60
- DFUXRefArrayActionResult: string;
61
- }
62
- interface DFUXRefBuildResponse {
63
- DFUXRefActionResult: string;
64
- }
65
- interface DFUXRefBuildCancelResponse {
66
- DFUXRefBuildCancelResult: string;
67
- }
68
- interface Exception {
69
- Code: string;
70
- Audience: string;
71
- Source: string;
72
- Message: string;
73
- }
74
- interface Exceptions {
75
- Source: string;
76
- Exception: Exception[];
77
- }
78
- interface Directory {
79
- Num: string;
80
- Name: string;
81
- MaxSize: string;
82
- MaxIP: string;
83
- MinSize: string;
84
- MinIP: string;
85
- Size: string;
86
- PositiveSkew: string;
87
- }
88
- interface DFUXRefDirectoriesQueryResult {
89
- Directory: Directory[];
90
- Cluster: string;
91
- }
92
- interface DFUXRefDirectoriesQueryResponse {
93
- DFUXRefDirectoriesQueryResult: DFUXRefDirectoriesQueryResult;
94
- }
95
- interface Part {
96
- Num: string;
97
- Node: string;
98
- }
99
- interface File {
100
- Size: string;
101
- Partmask: string;
102
- Modified: Date;
103
- Numparts: string;
104
- Part: Part[];
105
- }
106
- interface DFUXRefFoundFilesQueryResult {
107
- File: File[];
108
- Cluster: string;
109
- }
110
- interface DFUXRefFoundFilesQueryResponse {
111
- DFUXRefFoundFilesQueryResult: DFUXRefFoundFilesQueryResult;
112
- }
113
- interface XRefNode {
114
- Name: string;
115
- Modified: string;
116
- Status: string;
117
- }
118
- interface DFUXRefListResult {
119
- XRefNode: XRefNode[];
120
- }
121
- interface DFUXRefListResponse {
122
- DFUXRefListResult: DFUXRefListResult;
123
- }
124
- interface File2 {
125
- Partslost: string;
126
- Name: string;
127
- Partmask: string;
128
- Modified: Date;
129
- Numparts: string;
130
- Part: any;
131
- Cluster: string;
132
- Size: string;
133
- Primarylost: string;
134
- Replicatedlost: string;
135
- }
136
- interface DFUXRefLostFilesQueryResult {
137
- File: File2[];
138
- Cluster: string;
139
- }
140
- interface DFUXRefLostFilesQueryResponse {
141
- DFUXRefLostFilesQueryResult: DFUXRefLostFilesQueryResult;
142
- }
143
- interface Warning {
144
- Text: string;
145
- File: string;
146
- }
147
- interface DFUXRefMessagesQueryResult {
148
- Warning: Warning[];
149
- Cluster: string;
150
- }
151
- interface DFUXRefMessagesQueryResponse {
152
- DFUXRefMessagesQueryResult: DFUXRefMessagesQueryResult;
153
- }
154
- interface DFUXRefOrphanFilesQueryResult {
155
- File: File[];
156
- Cluster: string;
157
- }
158
- interface DFUXRefOrphanFilesQueryResponse {
159
- DFUXRefOrphanFilesQueryResult: DFUXRefOrphanFilesQueryResult;
160
- }
161
- interface Exception2 {
162
- Code: string;
163
- Audience: string;
164
- Source: string;
165
- Message: string;
166
- }
167
- interface Exceptions2 {
168
- Source: string;
169
- Exception: Exception2[];
170
- }
171
- interface UnusedFiles {
172
- File: string[];
173
- }
174
- interface DFULogicalFile {
175
- Prefix: string;
176
- ClusterName: string;
177
- Directory: string;
178
- Description: string;
179
- Parts: string;
180
- Name: string;
181
- Owner: string;
182
- Totalsize: string;
183
- RecordCount: string;
184
- Modified: string;
185
- LongSize: string;
186
- LongRecordCount: string;
187
- isSuperfile: boolean;
188
- isZipfile: boolean;
189
- isDirectory: boolean;
190
- Replicate: boolean;
191
- IntSize: number;
192
- IntRecordCount: number;
193
- }
194
- interface UnusedFilesWithDetails {
195
- DFULogicalFile: DFULogicalFile[];
196
- }
197
- interface DFUXRefUnusedFilesResponse {
198
- Exceptions: Exceptions2;
199
- UnusedFileCount: number;
200
- UnusedFiles: UnusedFiles;
201
- UnusedFilesWithDetails: UnusedFilesWithDetails;
202
- }
203
- interface WsDFUXRefPingResponse {
204
- }
205
- }
206
- export declare class DFUXRefService extends Service {
207
- constructor(optsConnection: IOptions | IConnection);
208
- DFUXRefArrayAction(request: WsDFUXRef.DFUXRefArrayActionRequest): Promise<WsDFUXRef.DFUXRefArrayActionResponse>;
209
- DFUXRefBuild(request: WsDFUXRef.DFUXRefBuildRequest): Promise<WsDFUXRef.DFUXRefBuildResponse>;
210
- DFUXRefBuildCancel(request: WsDFUXRef.DFUXRefBuildCancelRequest): Promise<WsDFUXRef.DFUXRefBuildCancelResponse>;
211
- DFUXRefCleanDirectories(request: WsDFUXRef.DFUXRefCleanDirectoriesRequest): Promise<WsDFUXRef.DFUXRefDirectoriesQueryResponse>;
212
- DFUXRefDirectories(request: WsDFUXRef.DFUXRefDirectoriesQueryRequest): Promise<WsDFUXRef.DFUXRefDirectoriesQueryResponse>;
213
- DFUXRefFoundFiles(request: WsDFUXRef.DFUXRefFoundFilesQueryRequest): Promise<WsDFUXRef.DFUXRefFoundFilesQueryResponse>;
214
- DFUXRefList(request?: WsDFUXRef.DFUXRefListRequest): Promise<WsDFUXRef.DFUXRefListResponse>;
215
- DFUXRefLostFiles(request: WsDFUXRef.DFUXRefLostFilesQueryRequest): Promise<WsDFUXRef.DFUXRefLostFilesQueryResponse>;
216
- DFUXRefMessages(request: WsDFUXRef.DFUXRefMessagesQueryRequest): Promise<WsDFUXRef.DFUXRefMessagesQueryResponse>;
217
- DFUXRefOrphanFiles(request: WsDFUXRef.DFUXRefOrphanFilesQueryRequest): Promise<WsDFUXRef.DFUXRefOrphanFilesQueryResponse>;
218
- DFUXRefUnusedFiles(request: WsDFUXRef.DFUXRefUnusedFilesRequest): Promise<WsDFUXRef.DFUXRefUnusedFilesResponse>;
1
+ import { DFUXRefServiceBase, type WsDFUXRef } from "./wsdl/WsDFUXRef/v1.04/WsDFUXRef.ts";
2
+ export { type WsDFUXRef };
3
+ export declare class DFUXRefService extends DFUXRefServiceBase {
219
4
  }
@@ -1,4 +1,4 @@
1
- import { MachineServiceBase, WsMachine } from "./wsdl/ws_machine/v1.17/ws_machine.ts";
1
+ import { MachineServiceBase, WsMachine } from "./wsdl/ws_machine/v1.19/ws_machine.ts";
2
2
  export { type WsMachine };
3
3
  export declare namespace WsMachineEx {
4
4
  interface DiskUsage extends WsMachine.DiskUsage {
@@ -1,4 +1,4 @@
1
- import { PackageProcessServiceBase, WsPackageProcess } from "./wsdl/WsPackageProcess/v1.04/WsPackageProcess.ts";
1
+ import { PackageProcessServiceBase, WsPackageProcess } from "./wsdl/WsPackageProcess/v1.07/WsPackageProcess.ts";
2
2
  export { type WsPackageProcess };
3
3
  export declare class PackageProcessService extends PackageProcessServiceBase {
4
4
  }
@@ -1,4 +1,4 @@
1
- import { SMCServiceBase, WsSMC } from "./wsdl/WsSMC/v1.27/WsSMC.ts";
1
+ import { SMCServiceBase, WsSMC } from "./wsdl/WsSMC/v1.28/WsSMC.ts";
2
2
  import { IOptions } from "../connection.ts";
3
3
  export { WsSMC };
4
4
  export declare class SMCService extends SMCServiceBase {
@@ -1,146 +1,6 @@
1
- import { IConnection, IOptions } from "../connection.ts";
2
- import { Service } from "../espConnection.ts";
3
- export declare namespace WsStore {
4
- interface CreateStoreRequest {
5
- Name: string;
6
- Type: string;
7
- Description: string;
8
- UserSpecific: boolean;
9
- }
10
- interface DeleteRequest {
11
- StoreName: string;
12
- Namespace: string;
13
- Key: string;
14
- UserSpecific: boolean;
15
- TargetUser?: string;
16
- }
17
- interface DeleteNamespaceRequest {
18
- StoreName: string;
19
- Namespace: string;
20
- UserSpecific: boolean;
21
- TargetUser: string;
22
- }
23
- interface FetchRequest {
24
- StoreName: string;
25
- Namespace: string;
26
- Key: string;
27
- UserSpecific: boolean;
28
- }
29
- interface FetchAllRequest {
30
- StoreName: string;
31
- Namespace: string;
32
- UserSpecific: boolean;
33
- }
34
- interface FetchKeyMDRequest {
35
- StoreName: string;
36
- Namespace: string;
37
- Key: string;
38
- UserSpecific: boolean;
39
- }
40
- interface ListKeysRequest {
41
- StoreName: string;
42
- Namespace: string;
43
- UserSpecific: boolean;
44
- }
45
- interface ListNamespacesRequest {
46
- StoreName: string;
47
- UserSpecific: boolean;
48
- }
49
- interface SetRequest {
50
- StoreName: string;
51
- Namespace: string;
52
- Key: string;
53
- Value: string;
54
- UserSpecific: boolean;
55
- }
56
- interface Exception {
57
- Code: string;
58
- Audience: string;
59
- Source: string;
60
- Message: string;
61
- }
62
- interface Exceptions {
63
- Source: string;
64
- Exception: Exception[];
65
- }
66
- interface CreateStoreResponse {
67
- Exceptions: Exceptions;
68
- Name: string;
69
- Type: string;
70
- Description: string;
71
- Owner: string;
72
- }
73
- interface DeleteResponse {
74
- Exceptions: Exceptions;
75
- Success: boolean;
76
- }
77
- interface DeleteNamespaceResponse {
78
- Exceptions: Exceptions;
79
- Success: boolean;
80
- }
81
- interface FetchResponse {
82
- Exceptions: Exceptions;
83
- Value: string;
84
- }
85
- interface Pair {
86
- Key: string;
87
- Value: string;
88
- }
89
- interface Pairs {
90
- Pair: Pair[];
91
- }
92
- interface FetchAllResponse {
93
- Exceptions: Exceptions;
94
- Namespace: string;
95
- Pairs: Pairs;
96
- }
97
- interface Pair2 {
98
- Key: string;
99
- Value: string;
100
- }
101
- interface Pairs2 {
102
- Pair: Pair2[];
103
- }
104
- interface FetchKeyMDResponse {
105
- Exceptions: Exceptions;
106
- StoreName: string;
107
- Namespace: string;
108
- Key: string;
109
- Pairs: Pairs2;
110
- }
111
- interface KeySet {
112
- Key: string[];
113
- }
114
- interface ListKeysResponse {
115
- Exceptions: Exceptions;
116
- StoreName: string;
117
- Namespace: string;
118
- KeySet: KeySet;
119
- }
120
- interface Namespaces {
121
- Namespace: string[];
122
- }
123
- interface ListNamespacesResponse {
124
- Exceptions: Exceptions;
125
- StoreName: string;
126
- Namespaces: Namespaces;
127
- }
128
- interface WsstorePingResponse {
129
- }
130
- interface SetResponse {
131
- Exceptions: Exceptions;
132
- Success: boolean;
133
- }
134
- }
135
- export declare class StoreService extends Service {
136
- constructor(optsConnection: IOptions | IConnection);
137
- CreateStore(request: WsStore.CreateStoreRequest): Promise<WsStore.CreateStoreResponse>;
138
- Delete(request: WsStore.DeleteRequest): Promise<WsStore.DeleteResponse>;
139
- DeleteNamespace(request: WsStore.DeleteNamespaceRequest): Promise<WsStore.DeleteNamespaceResponse>;
140
- Fetch(request: WsStore.FetchRequest): Promise<WsStore.FetchResponse>;
141
- FetchAll(request: WsStore.FetchAllRequest): Promise<WsStore.FetchAllResponse>;
142
- FetchKeyMD(request: WsStore.FetchKeyMDRequest): Promise<WsStore.FetchKeyMDResponse>;
143
- ListKeys(request: WsStore.ListKeysRequest): Promise<WsStore.ListKeysResponse>;
144
- ListNamespaces(request: WsStore.ListNamespacesRequest): Promise<WsStore.ListNamespacesResponse>;
145
- Set(request: WsStore.SetRequest): Promise<WsStore.SetResponse>;
1
+ import { storeServiceBase as StoreServiceBase, Wsstore as WsStore } from "./wsdl/wsstore/v1.02/wsstore.ts";
2
+ export { type WsStore };
3
+ export declare class StoreService extends StoreServiceBase {
4
+ Delete(request: Partial<WsStore.DeleteRequest>): Promise<WsStore.DeleteResponse>;
5
+ Fetch(request: Partial<WsStore.FetchRequest>): Promise<WsStore.FetchResponse>;
146
6
  }
@@ -1,5 +1,5 @@
1
1
  import { IOptions } from "../connection.ts";
2
- import { TopologyServiceBase, WsTopology } from "./wsdl/WsTopology/v1.32/WsTopology.ts";
2
+ import { TopologyServiceBase, WsTopology } from "./wsdl/WsTopology/v1.33/WsTopology.ts";
3
3
  export { WsTopology };
4
4
  export declare class TopologyService extends TopologyServiceBase {
5
5
  connectionOptions(): IOptions;
@@ -62,6 +62,7 @@ export declare namespace FileSpray {
62
62
  preserveCompression: boolean;
63
63
  DFUServerQueue: string;
64
64
  ExpireDays: int;
65
+ KeyCompression: string;
65
66
  }
66
67
  interface CopyResponse {
67
68
  Exceptions: Exceptions;
@@ -0,0 +1,147 @@
1
+ import { IConnection, IOptions } from "../../../../connection.ts";
2
+ import { Service } from "../../../../espConnection.ts";
3
+ export declare namespace WsDFUXRef {
4
+ type unsignedInt = number;
5
+ type long = number;
6
+ interface XRefFiles {
7
+ Item: string[];
8
+ }
9
+ interface DFUXRefArrayActionRequest {
10
+ Type?: string;
11
+ Cluster?: string;
12
+ Action?: string;
13
+ XRefFiles?: XRefFiles;
14
+ RemoveFromSuperfiles?: boolean;
15
+ }
16
+ interface DFUXRefArrayActionResponse {
17
+ DFUXRefArrayActionResult: string;
18
+ }
19
+ interface DFUXRefBuildRequest {
20
+ Cluster?: string;
21
+ }
22
+ interface DFUXRefBuildResponse {
23
+ DFUXRefActionResult: string;
24
+ }
25
+ interface DFUXRefBuildCancelRequest {
26
+ }
27
+ interface DFUXRefBuildCancelResponse {
28
+ DFUXRefBuildCancelResult: string;
29
+ }
30
+ interface DFUXRefCleanDirectoriesRequest {
31
+ Cluster?: string;
32
+ }
33
+ interface Exception {
34
+ Code: string;
35
+ Audience: string;
36
+ Source: string;
37
+ Message: string;
38
+ }
39
+ interface Exceptions {
40
+ Source: string;
41
+ Exception: Exception[];
42
+ }
43
+ interface DFUXRefCleanDirectoriesResponse {
44
+ Exceptions: Exceptions;
45
+ }
46
+ interface DFUXRefDirectoriesQueryRequest {
47
+ Cluster?: string;
48
+ }
49
+ interface DFUXRefDirectoriesQueryResponse {
50
+ DFUXRefDirectoriesQueryResult: string;
51
+ }
52
+ interface DFUXRefFoundFilesQueryRequest {
53
+ Cluster?: string;
54
+ }
55
+ interface DFUXRefFoundFilesQueryResponse {
56
+ DFUXRefFoundFilesQueryResult: string;
57
+ }
58
+ interface DFUXRefListRequest {
59
+ }
60
+ interface DFUXRefListResponse {
61
+ DFUXRefListResult: string;
62
+ }
63
+ interface DFUXRefLostFilesQueryRequest {
64
+ Cluster?: string;
65
+ }
66
+ interface DFUXRefLostFilesQueryResponse {
67
+ DFUXRefLostFilesQueryResult: string;
68
+ }
69
+ interface DFUXRefMessagesQueryRequest {
70
+ Cluster?: string;
71
+ }
72
+ interface DFUXRefMessagesQueryResponse {
73
+ DFUXRefMessagesQueryResult: string;
74
+ }
75
+ interface DFUXRefOrphanFilesQueryRequest {
76
+ Cluster?: string;
77
+ }
78
+ interface DFUXRefOrphanFilesQueryResponse {
79
+ DFUXRefOrphanFilesQueryResult: string;
80
+ }
81
+ interface ProcessClusterList {
82
+ Item: string[];
83
+ }
84
+ interface CheckPlanes {
85
+ Item: string[];
86
+ }
87
+ interface DFUXRefUnusedFilesRequest {
88
+ ProcessCluster?: string;
89
+ CheckPackageMaps?: boolean;
90
+ GetFileDetails?: boolean;
91
+ ProcessClusterList?: ProcessClusterList;
92
+ CheckPlanes?: CheckPlanes;
93
+ }
94
+ interface UnusedFiles {
95
+ File: string[];
96
+ }
97
+ interface DFULogicalFile {
98
+ Prefix: string;
99
+ ClusterName: string;
100
+ Directory: string;
101
+ Description: string;
102
+ Parts: string;
103
+ Name: string;
104
+ Owner: string;
105
+ Totalsize: string;
106
+ RecordCount: string;
107
+ Modified: string;
108
+ LongSize: string;
109
+ LongRecordCount: string;
110
+ isSuperfile: boolean;
111
+ isZipfile: boolean;
112
+ isDirectory: boolean;
113
+ Replicate: boolean;
114
+ IntSize: long;
115
+ IntRecordCount: long;
116
+ FromRoxieCluster: boolean;
117
+ BrowseData: boolean;
118
+ }
119
+ interface UnusedFilesWithDetails {
120
+ DFULogicalFile: DFULogicalFile[];
121
+ }
122
+ interface DFUXRefUnusedFilesResponse {
123
+ Exceptions: Exceptions;
124
+ UnusedFileCount: unsignedInt;
125
+ UnusedFiles: UnusedFiles;
126
+ UnusedFilesWithDetails: UnusedFilesWithDetails;
127
+ }
128
+ interface WsDFUXRefPingRequest {
129
+ }
130
+ interface WsDFUXRefPingResponse {
131
+ }
132
+ }
133
+ export declare class DFUXRefServiceBase extends Service {
134
+ constructor(optsConnection: IOptions | IConnection);
135
+ DFUXRefArrayAction(request: Partial<WsDFUXRef.DFUXRefArrayActionRequest>): Promise<WsDFUXRef.DFUXRefArrayActionResponse>;
136
+ DFUXRefBuild(request: Partial<WsDFUXRef.DFUXRefBuildRequest>): Promise<WsDFUXRef.DFUXRefBuildResponse>;
137
+ DFUXRefBuildCancel(request: Partial<WsDFUXRef.DFUXRefBuildCancelRequest>): Promise<WsDFUXRef.DFUXRefBuildCancelResponse>;
138
+ DFUXRefCleanDirectories(request: Partial<WsDFUXRef.DFUXRefCleanDirectoriesRequest>): Promise<WsDFUXRef.DFUXRefCleanDirectoriesResponse>;
139
+ DFUXRefDirectories(request: Partial<WsDFUXRef.DFUXRefDirectoriesQueryRequest>): Promise<WsDFUXRef.DFUXRefDirectoriesQueryResponse>;
140
+ DFUXRefFoundFiles(request: Partial<WsDFUXRef.DFUXRefFoundFilesQueryRequest>): Promise<WsDFUXRef.DFUXRefFoundFilesQueryResponse>;
141
+ DFUXRefList(request: Partial<WsDFUXRef.DFUXRefListRequest>): Promise<WsDFUXRef.DFUXRefListResponse>;
142
+ DFUXRefLostFiles(request: Partial<WsDFUXRef.DFUXRefLostFilesQueryRequest>): Promise<WsDFUXRef.DFUXRefLostFilesQueryResponse>;
143
+ DFUXRefMessages(request: Partial<WsDFUXRef.DFUXRefMessagesQueryRequest>): Promise<WsDFUXRef.DFUXRefMessagesQueryResponse>;
144
+ DFUXRefOrphanFiles(request: Partial<WsDFUXRef.DFUXRefOrphanFilesQueryRequest>): Promise<WsDFUXRef.DFUXRefOrphanFilesQueryResponse>;
145
+ DFUXRefUnusedFiles(request: Partial<WsDFUXRef.DFUXRefUnusedFilesRequest>): Promise<WsDFUXRef.DFUXRefUnusedFilesResponse>;
146
+ Ping(request: Partial<WsDFUXRef.WsDFUXRefPingRequest>): Promise<WsDFUXRef.WsDFUXRefPingResponse>;
147
+ }
@@ -548,6 +548,19 @@ export declare namespace WsDfu {
548
548
  XmlXPathSchema: string;
549
549
  TotalResultRows: long;
550
550
  }
551
+ interface DFUMetaInquiryRequest {
552
+ }
553
+ interface DFUMetaFieldInfo {
554
+ Name: string;
555
+ Type: string;
556
+ }
557
+ interface Fields {
558
+ DFUMetaFieldInfo: DFUMetaFieldInfo[];
559
+ }
560
+ interface DFUMetaInquiryResponse {
561
+ Exceptions: Exceptions;
562
+ Fields: Fields;
563
+ }
551
564
  interface DFUInfoRequest {
552
565
  Name?: string;
553
566
  Cluster?: string;
@@ -692,6 +705,7 @@ export declare namespace WsDfu {
692
705
  AccessCost: double;
693
706
  ExpirationDate: string;
694
707
  ExtendedIndexInfo: ExtendedIndexInfo;
708
+ CompressionType: string;
695
709
  }
696
710
  interface DFUInfoResponse {
697
711
  Exceptions: Exceptions;
@@ -713,6 +727,7 @@ export declare namespace WsDfu {
713
727
  PageSize?: int;
714
728
  PageStartFrom?: int;
715
729
  Sortby?: string;
730
+ Fields?: string;
716
731
  Descending?: boolean;
717
732
  OneLevelDirFileReturn?: boolean;
718
733
  CacheHint?: long;
@@ -994,6 +1009,7 @@ export declare class DfuServiceBase extends Service {
994
1009
  DFUFileView(request: Partial<WsDfu.DFUFileViewRequest>): Promise<WsDfu.DFUFileViewResponse>;
995
1010
  DFUGetDataColumns(request: Partial<WsDfu.DFUGetDataColumnsRequest>): Promise<WsDfu.DFUGetDataColumnsResponse>;
996
1011
  DFUGetFileMetaData(request: Partial<WsDfu.DFUGetFileMetaDataRequest>): Promise<WsDfu.DFUGetFileMetaDataResponse>;
1012
+ DFUGetMetaInquiry(request: Partial<WsDfu.DFUMetaInquiryRequest>): Promise<WsDfu.DFUMetaInquiryResponse>;
997
1013
  DFUInfo(request: Partial<WsDfu.DFUInfoRequest>): Promise<WsDfu.DFUInfoResponse>;
998
1014
  DFUQuery(request: Partial<WsDfu.DFUQueryRequest>): Promise<WsDfu.DFUQueryResponse>;
999
1015
  DFURecordTypeInfo(request: Partial<WsDfu.DFURecordTypeInfoRequest>): Promise<WsDfu.DFURecordTypeInfoResponse>;