@hpcc-js/comms 2.73.5 → 2.74.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.
- package/dist/index.es6.js +7 -8
- package/dist/index.es6.js.map +1 -1
- package/dist/index.js +7 -7
- package/dist/index.js.map +1 -1
- package/dist/index.min.js +1 -1
- package/dist/index.min.js.map +1 -1
- package/dist/index.node.js +7 -8
- package/dist/index.node.js.map +1 -1
- package/dist/index.node.min.js +1 -1
- package/dist/index.node.min.js.map +1 -1
- package/lib-es6/__package__.js +2 -2
- package/lib-es6/__package__.js.map +1 -1
- package/lib-es6/__tests__/https.js +2 -2
- package/lib-es6/__tests__/https.js.map +1 -1
- package/lib-es6/__tests__/workunit.js +1 -1
- package/lib-es6/__tests__/workunit.js.map +1 -1
- package/lib-es6/clienttools/eclcc.js +0 -1
- package/lib-es6/clienttools/eclcc.js.map +1 -1
- package/lib-es6/ecl/graph.js +5 -5
- package/lib-es6/ecl/graph.js.map +1 -1
- package/lib-es6/services/wsDali.js +11 -0
- package/lib-es6/services/wsDali.js.map +1 -0
- package/lib-es6/services/wsdl/WsDali/v1.04/WsDali.js +68 -0
- package/lib-es6/services/wsdl/WsDali/v1.04/WsDali.js.map +1 -0
- package/package.json +6 -5
- package/src/__package__.ts +2 -2
- package/src/__tests__/https.ts +2 -2
- package/src/__tests__/workunit.ts +1 -1
- package/src/clienttools/eclcc.ts +0 -1
- package/src/ecl/graph.ts +5 -5
- package/src/services/wsDali.ts +8 -0
- package/src/services/wsdl/WsDali/v1.04/WsDali.ts +213 -0
- package/types/__package__.d.ts +2 -2
- package/types/__package__.d.ts.map +1 -1
- package/types/clienttools/eclcc.d.ts.map +1 -1
- package/types/services/wsDali.d.ts +5 -0
- package/types/services/wsDali.d.ts.map +1 -0
- package/types/services/wsdl/WsDali/v1.04/WsDali.d.ts +122 -0
- package/types/services/wsdl/WsDali/v1.04/WsDali.d.ts.map +1 -0
- package/types-3.4/__package__.d.ts +2 -2
- package/types-3.4/services/wsDali.d.ts +5 -0
- package/types-3.4/services/wsdl/WsDali/v1.04/WsDali.d.ts +122 -0
|
@@ -0,0 +1,213 @@
|
|
|
1
|
+
import { IConnection, IOptions } from "../../../../connection";
|
|
2
|
+
import { Service } from "../../../../espConnection";
|
|
3
|
+
|
|
4
|
+
type unsignedInt = number;
|
|
5
|
+
|
|
6
|
+
export namespace WsDali {
|
|
7
|
+
|
|
8
|
+
export interface AddRequest {
|
|
9
|
+
Path?: string;
|
|
10
|
+
Value?: string;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
export interface Exception {
|
|
14
|
+
Code: string;
|
|
15
|
+
Audience: string;
|
|
16
|
+
Source: string;
|
|
17
|
+
Message: string;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
export interface Exceptions {
|
|
21
|
+
Source: string;
|
|
22
|
+
Exception: Exception[];
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
export interface ResultResponse {
|
|
26
|
+
Exceptions: Exceptions;
|
|
27
|
+
Result: string;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
export interface CountRequest {
|
|
31
|
+
Path?: string;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
export interface CountResponse {
|
|
35
|
+
Exceptions: Exceptions;
|
|
36
|
+
Result: unsignedInt;
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
export interface DFSCheckRequest {
|
|
40
|
+
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
export interface DFSExistsRequest {
|
|
44
|
+
FileName?: string;
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
export interface BooleanResponse {
|
|
48
|
+
Exceptions: Exceptions;
|
|
49
|
+
Result: boolean;
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
export interface DFSLSRequest {
|
|
53
|
+
Name?: string;
|
|
54
|
+
PathAndNameOnly?: boolean;
|
|
55
|
+
IncludeSubFileInfo?: boolean;
|
|
56
|
+
Recursively?: boolean;
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
export interface DeleteRequest {
|
|
60
|
+
Path?: string;
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
export interface GetDFSCSVRequest {
|
|
64
|
+
LogicalNameMask?: string;
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
export interface GetDFSMapRequest {
|
|
68
|
+
FileName?: string;
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
export interface GetDFSParentsRequest {
|
|
72
|
+
FileName?: string;
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
export interface GetLogicalFileRequest {
|
|
76
|
+
FileName?: string;
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
export interface GetLogicalFilePartRequest {
|
|
80
|
+
FileName?: string;
|
|
81
|
+
PartNumber?: unsignedInt;
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
export interface GetProtectedListRequest {
|
|
85
|
+
FileName?: string;
|
|
86
|
+
CallerId?: string;
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
export interface GetValueRequest {
|
|
90
|
+
Path?: string;
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
export interface ImportRequest {
|
|
94
|
+
XML?: string;
|
|
95
|
+
Path?: string;
|
|
96
|
+
Add?: boolean;
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
export interface WsDaliPingRequest {
|
|
100
|
+
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
export interface WsDaliPingResponse {
|
|
104
|
+
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
export interface SetLogicalFilePartAttrRequest {
|
|
108
|
+
FileName?: string;
|
|
109
|
+
PartNumber?: unsignedInt;
|
|
110
|
+
Attr?: string;
|
|
111
|
+
Value?: string;
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
export interface SetProtectedRequest {
|
|
115
|
+
FileName?: string;
|
|
116
|
+
CallerId?: string;
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
export interface SetUnprotectedRequest {
|
|
120
|
+
FileName?: string;
|
|
121
|
+
CallerId?: string;
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
export interface SetValueRequest {
|
|
125
|
+
Path?: string;
|
|
126
|
+
Value?: string;
|
|
127
|
+
}
|
|
128
|
+
|
|
129
|
+
}
|
|
130
|
+
|
|
131
|
+
export class DaliServiceBase extends Service {
|
|
132
|
+
|
|
133
|
+
constructor(optsConnection: IOptions | IConnection) {
|
|
134
|
+
super(optsConnection, "WSDali", "1.04");
|
|
135
|
+
}
|
|
136
|
+
|
|
137
|
+
Add(request: WsDali.AddRequest): Promise<WsDali.ResultResponse> {
|
|
138
|
+
return this._connection.send("Add", request);
|
|
139
|
+
}
|
|
140
|
+
|
|
141
|
+
Count(request: WsDali.CountRequest): Promise<WsDali.CountResponse> {
|
|
142
|
+
return this._connection.send("Count", request);
|
|
143
|
+
}
|
|
144
|
+
|
|
145
|
+
DFSCheck(request: WsDali.DFSCheckRequest): Promise<WsDali.ResultResponse> {
|
|
146
|
+
return this._connection.send("DFSCheck", request);
|
|
147
|
+
}
|
|
148
|
+
|
|
149
|
+
DFSExists(request: WsDali.DFSExistsRequest): Promise<WsDali.BooleanResponse> {
|
|
150
|
+
return this._connection.send("DFSExists", request);
|
|
151
|
+
}
|
|
152
|
+
|
|
153
|
+
DFSLS(request: WsDali.DFSLSRequest): Promise<WsDali.ResultResponse> {
|
|
154
|
+
return this._connection.send("DFSLS", request);
|
|
155
|
+
}
|
|
156
|
+
|
|
157
|
+
Delete(request: WsDali.DeleteRequest): Promise<WsDali.ResultResponse> {
|
|
158
|
+
return this._connection.send("Delete", request);
|
|
159
|
+
}
|
|
160
|
+
|
|
161
|
+
GetDFSCSV(request: WsDali.GetDFSCSVRequest): Promise<WsDali.ResultResponse> {
|
|
162
|
+
return this._connection.send("GetDFSCSV", request);
|
|
163
|
+
}
|
|
164
|
+
|
|
165
|
+
GetDFSMap(request: WsDali.GetDFSMapRequest): Promise<WsDali.ResultResponse> {
|
|
166
|
+
return this._connection.send("GetDFSMap", request);
|
|
167
|
+
}
|
|
168
|
+
|
|
169
|
+
GetDFSParents(request: WsDali.GetDFSParentsRequest): Promise<WsDali.ResultResponse> {
|
|
170
|
+
return this._connection.send("GetDFSParents", request);
|
|
171
|
+
}
|
|
172
|
+
|
|
173
|
+
GetLogicalFile(request: WsDali.GetLogicalFileRequest): Promise<WsDali.ResultResponse> {
|
|
174
|
+
return this._connection.send("GetLogicalFile", request);
|
|
175
|
+
}
|
|
176
|
+
|
|
177
|
+
GetLogicalFilePart(request: WsDali.GetLogicalFilePartRequest): Promise<WsDali.ResultResponse> {
|
|
178
|
+
return this._connection.send("GetLogicalFilePart", request);
|
|
179
|
+
}
|
|
180
|
+
|
|
181
|
+
GetProtectedList(request: WsDali.GetProtectedListRequest): Promise<WsDali.ResultResponse> {
|
|
182
|
+
return this._connection.send("GetProtectedList", request);
|
|
183
|
+
}
|
|
184
|
+
|
|
185
|
+
GetValue(request: WsDali.GetValueRequest): Promise<WsDali.ResultResponse> {
|
|
186
|
+
return this._connection.send("GetValue", request);
|
|
187
|
+
}
|
|
188
|
+
|
|
189
|
+
Import(request: WsDali.ImportRequest): Promise<WsDali.ResultResponse> {
|
|
190
|
+
return this._connection.send("Import", request);
|
|
191
|
+
}
|
|
192
|
+
|
|
193
|
+
Ping(request: WsDali.WsDaliPingRequest): Promise<WsDali.WsDaliPingResponse> {
|
|
194
|
+
return this._connection.send("Ping", request);
|
|
195
|
+
}
|
|
196
|
+
|
|
197
|
+
SetLogicalFilePartAttr(request: WsDali.SetLogicalFilePartAttrRequest): Promise<WsDali.ResultResponse> {
|
|
198
|
+
return this._connection.send("SetLogicalFilePartAttr", request);
|
|
199
|
+
}
|
|
200
|
+
|
|
201
|
+
SetProtected(request: WsDali.SetProtectedRequest): Promise<WsDali.ResultResponse> {
|
|
202
|
+
return this._connection.send("SetProtected", request);
|
|
203
|
+
}
|
|
204
|
+
|
|
205
|
+
SetUnprotected(request: WsDali.SetUnprotectedRequest): Promise<WsDali.ResultResponse> {
|
|
206
|
+
return this._connection.send("SetUnprotected", request);
|
|
207
|
+
}
|
|
208
|
+
|
|
209
|
+
SetValue(request: WsDali.SetValueRequest): Promise<WsDali.ResultResponse> {
|
|
210
|
+
return this._connection.send("SetValue", request);
|
|
211
|
+
}
|
|
212
|
+
|
|
213
|
+
}
|
package/types/__package__.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
export declare const PKG_NAME = "@hpcc-js/comms";
|
|
2
|
-
export declare const PKG_VERSION = "2.
|
|
3
|
-
export declare const BUILD_VERSION = "2.102.
|
|
2
|
+
export declare const PKG_VERSION = "2.74.0";
|
|
3
|
+
export declare const BUILD_VERSION = "2.102.11";
|
|
4
4
|
//# sourceMappingURL=__package__.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"__package__.d.ts","sourceRoot":"","sources":["../src/__package__.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,QAAQ,mBAAmB,CAAC;AACzC,eAAO,MAAM,WAAW,WAAW,CAAC;AACpC,eAAO,MAAM,aAAa,
|
|
1
|
+
{"version":3,"file":"__package__.d.ts","sourceRoot":"","sources":["../src/__package__.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,QAAQ,mBAAmB,CAAC;AACzC,eAAO,MAAM,WAAW,WAAW,CAAC;AACpC,eAAO,MAAM,aAAa,aAAa,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"eclcc.d.ts","sourceRoot":"","sources":["../../src/clienttools/eclcc.ts"],"names":[],"mappings":"AAOA,OAAO,EAAmB,SAAS,EAAE,MAAM,WAAW,CAAC;AASvD,qBAAa,OAAO;IAChB,QAAQ,CAAC,MAAM,EAAE,MAAM,CAAM;IAC7B,QAAQ,CAAC,KAAK,EAAE,MAAM,CAAK;IAC3B,QAAQ,CAAC,KAAK,EAAE,MAAM,CAAK;IAC3B,QAAQ,CAAC,KAAK,EAAE,MAAM,CAAK;IAC3B,QAAQ,CAAC,OAAO,EAAE,MAAM,CAAM;gBAElB,KAAK,EAAE,MAAM;IAczB,KAAK,CAAC,KAAK,EAAE,MAAM;IAGnB,MAAM,IAAI,OAAO;IAIjB,OAAO,CAAC,KAAK,EAAE,OAAO,GAAG,MAAM;IAW/B,QAAQ,IAAI,MAAM;CAGrB;AAED,UAAU,SAAS;IACf,IAAI,EAAE,MAAM,CAAC;IACb,MAAM,EAAE,MAAM,CAAC;IACf,MAAM,EAAE,MAAM,CAAC;CAClB;AAED,MAAM,WAAW,gBAAgB;IAC7B,QAAQ,EAAE,MAAM,CAAC;IACjB,IAAI,EAAE,MAAM,CAAC;IACb,GAAG,EAAE,MAAM,CAAC;IACZ,GAAG,EAAE,MAAM,CAAC;IACZ,QAAQ,EAAE,MAAM,CAAC;CACpB;AAKD,qBAAa,MAAM;IACf,SAAS,CAAC,QAAQ,EAAE,MAAM,EAAE,CAAC;IAC7B,SAAS,CAAC,OAAO,EAAE,gBAAgB,EAAE,CAAM;IAC3C,SAAS,CAAC,QAAQ,EAAE,MAAM,EAAE,CAAM;gBAEtB,OAAO,EAAE,MAAM,EAAE;IAI7B,OAAO,IAAI,MAAM,EAAE;IAInB,GAAG,IAAI,gBAAgB,EAAE;IAIzB,MAAM,IAAI,gBAAgB,EAAE;IAI5B,QAAQ,IAAI,OAAO;IAInB,QAAQ,IAAI,gBAAgB,EAAE;IAI9B,UAAU,IAAI,OAAO;IAIrB,IAAI,IAAI,gBAAgB,EAAE;IAI1B,QAAQ,IAAI,OAAO;IAInB,OAAO,IAAI,MAAM,EAAE;IAInB,UAAU,IAAI,OAAO;CAGxB;AAED,qBAAa,WAAY,SAAQ,MAAM;gBAEvB,MAAM,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,EAAE;CA6BhD;AAED,qBAAa,YAAa,SAAQ,MAAM;IAEpC,OAAO,CAAC,MAAM,CAAW;gBAEb,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,EAAE;IAyB/D,MAAM,CAAC,IAAI,EAAE,MAAM,GAAG,CAAC,MAAM,EAAE,MAAM,CAAC;
|
|
1
|
+
{"version":3,"file":"eclcc.d.ts","sourceRoot":"","sources":["../../src/clienttools/eclcc.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"wsDali.d.ts","sourceRoot":"","sources":["../../src/services/wsDali.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,eAAe,EAAE,MAAM,EAAE,MAAM,4BAA4B,CAAC;AAErE,OAAO,EACH,MAAM,EACT,CAAC;AAEF,qBAAa,WAAY,SAAQ,eAAe;CAC/C"}
|
|
@@ -0,0 +1,122 @@
|
|
|
1
|
+
import { IConnection, IOptions } from "../../../../connection";
|
|
2
|
+
import { Service } from "../../../../espConnection";
|
|
3
|
+
declare type unsignedInt = number;
|
|
4
|
+
export declare namespace WsDali {
|
|
5
|
+
interface AddRequest {
|
|
6
|
+
Path?: string;
|
|
7
|
+
Value?: string;
|
|
8
|
+
}
|
|
9
|
+
interface Exception {
|
|
10
|
+
Code: string;
|
|
11
|
+
Audience: string;
|
|
12
|
+
Source: string;
|
|
13
|
+
Message: string;
|
|
14
|
+
}
|
|
15
|
+
interface Exceptions {
|
|
16
|
+
Source: string;
|
|
17
|
+
Exception: Exception[];
|
|
18
|
+
}
|
|
19
|
+
interface ResultResponse {
|
|
20
|
+
Exceptions: Exceptions;
|
|
21
|
+
Result: string;
|
|
22
|
+
}
|
|
23
|
+
interface CountRequest {
|
|
24
|
+
Path?: string;
|
|
25
|
+
}
|
|
26
|
+
interface CountResponse {
|
|
27
|
+
Exceptions: Exceptions;
|
|
28
|
+
Result: unsignedInt;
|
|
29
|
+
}
|
|
30
|
+
interface DFSCheckRequest {
|
|
31
|
+
}
|
|
32
|
+
interface DFSExistsRequest {
|
|
33
|
+
FileName?: string;
|
|
34
|
+
}
|
|
35
|
+
interface BooleanResponse {
|
|
36
|
+
Exceptions: Exceptions;
|
|
37
|
+
Result: boolean;
|
|
38
|
+
}
|
|
39
|
+
interface DFSLSRequest {
|
|
40
|
+
Name?: string;
|
|
41
|
+
PathAndNameOnly?: boolean;
|
|
42
|
+
IncludeSubFileInfo?: boolean;
|
|
43
|
+
Recursively?: boolean;
|
|
44
|
+
}
|
|
45
|
+
interface DeleteRequest {
|
|
46
|
+
Path?: string;
|
|
47
|
+
}
|
|
48
|
+
interface GetDFSCSVRequest {
|
|
49
|
+
LogicalNameMask?: string;
|
|
50
|
+
}
|
|
51
|
+
interface GetDFSMapRequest {
|
|
52
|
+
FileName?: string;
|
|
53
|
+
}
|
|
54
|
+
interface GetDFSParentsRequest {
|
|
55
|
+
FileName?: string;
|
|
56
|
+
}
|
|
57
|
+
interface GetLogicalFileRequest {
|
|
58
|
+
FileName?: string;
|
|
59
|
+
}
|
|
60
|
+
interface GetLogicalFilePartRequest {
|
|
61
|
+
FileName?: string;
|
|
62
|
+
PartNumber?: unsignedInt;
|
|
63
|
+
}
|
|
64
|
+
interface GetProtectedListRequest {
|
|
65
|
+
FileName?: string;
|
|
66
|
+
CallerId?: string;
|
|
67
|
+
}
|
|
68
|
+
interface GetValueRequest {
|
|
69
|
+
Path?: string;
|
|
70
|
+
}
|
|
71
|
+
interface ImportRequest {
|
|
72
|
+
XML?: string;
|
|
73
|
+
Path?: string;
|
|
74
|
+
Add?: boolean;
|
|
75
|
+
}
|
|
76
|
+
interface WsDaliPingRequest {
|
|
77
|
+
}
|
|
78
|
+
interface WsDaliPingResponse {
|
|
79
|
+
}
|
|
80
|
+
interface SetLogicalFilePartAttrRequest {
|
|
81
|
+
FileName?: string;
|
|
82
|
+
PartNumber?: unsignedInt;
|
|
83
|
+
Attr?: string;
|
|
84
|
+
Value?: string;
|
|
85
|
+
}
|
|
86
|
+
interface SetProtectedRequest {
|
|
87
|
+
FileName?: string;
|
|
88
|
+
CallerId?: string;
|
|
89
|
+
}
|
|
90
|
+
interface SetUnprotectedRequest {
|
|
91
|
+
FileName?: string;
|
|
92
|
+
CallerId?: string;
|
|
93
|
+
}
|
|
94
|
+
interface SetValueRequest {
|
|
95
|
+
Path?: string;
|
|
96
|
+
Value?: string;
|
|
97
|
+
}
|
|
98
|
+
}
|
|
99
|
+
export declare class DaliServiceBase extends Service {
|
|
100
|
+
constructor(optsConnection: IOptions | IConnection);
|
|
101
|
+
Add(request: WsDali.AddRequest): Promise<WsDali.ResultResponse>;
|
|
102
|
+
Count(request: WsDali.CountRequest): Promise<WsDali.CountResponse>;
|
|
103
|
+
DFSCheck(request: WsDali.DFSCheckRequest): Promise<WsDali.ResultResponse>;
|
|
104
|
+
DFSExists(request: WsDali.DFSExistsRequest): Promise<WsDali.BooleanResponse>;
|
|
105
|
+
DFSLS(request: WsDali.DFSLSRequest): Promise<WsDali.ResultResponse>;
|
|
106
|
+
Delete(request: WsDali.DeleteRequest): Promise<WsDali.ResultResponse>;
|
|
107
|
+
GetDFSCSV(request: WsDali.GetDFSCSVRequest): Promise<WsDali.ResultResponse>;
|
|
108
|
+
GetDFSMap(request: WsDali.GetDFSMapRequest): Promise<WsDali.ResultResponse>;
|
|
109
|
+
GetDFSParents(request: WsDali.GetDFSParentsRequest): Promise<WsDali.ResultResponse>;
|
|
110
|
+
GetLogicalFile(request: WsDali.GetLogicalFileRequest): Promise<WsDali.ResultResponse>;
|
|
111
|
+
GetLogicalFilePart(request: WsDali.GetLogicalFilePartRequest): Promise<WsDali.ResultResponse>;
|
|
112
|
+
GetProtectedList(request: WsDali.GetProtectedListRequest): Promise<WsDali.ResultResponse>;
|
|
113
|
+
GetValue(request: WsDali.GetValueRequest): Promise<WsDali.ResultResponse>;
|
|
114
|
+
Import(request: WsDali.ImportRequest): Promise<WsDali.ResultResponse>;
|
|
115
|
+
Ping(request: WsDali.WsDaliPingRequest): Promise<WsDali.WsDaliPingResponse>;
|
|
116
|
+
SetLogicalFilePartAttr(request: WsDali.SetLogicalFilePartAttrRequest): Promise<WsDali.ResultResponse>;
|
|
117
|
+
SetProtected(request: WsDali.SetProtectedRequest): Promise<WsDali.ResultResponse>;
|
|
118
|
+
SetUnprotected(request: WsDali.SetUnprotectedRequest): Promise<WsDali.ResultResponse>;
|
|
119
|
+
SetValue(request: WsDali.SetValueRequest): Promise<WsDali.ResultResponse>;
|
|
120
|
+
}
|
|
121
|
+
export {};
|
|
122
|
+
//# sourceMappingURL=WsDali.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"WsDali.d.ts","sourceRoot":"","sources":["../../../../../src/services/wsdl/WsDali/v1.04/WsDali.ts"],"names":[],"mappings":"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"}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
export declare const PKG_NAME = "@hpcc-js/comms";
|
|
2
|
-
export declare const PKG_VERSION = "2.
|
|
3
|
-
export declare const BUILD_VERSION = "2.102.
|
|
2
|
+
export declare const PKG_VERSION = "2.74.0";
|
|
3
|
+
export declare const BUILD_VERSION = "2.102.11";
|
|
4
4
|
//# sourceMappingURL=__package__.d.ts.map
|
|
@@ -0,0 +1,122 @@
|
|
|
1
|
+
import { IConnection, IOptions } from "../../../../connection";
|
|
2
|
+
import { Service } from "../../../../espConnection";
|
|
3
|
+
declare type unsignedInt = number;
|
|
4
|
+
export declare namespace WsDali {
|
|
5
|
+
interface AddRequest {
|
|
6
|
+
Path?: string;
|
|
7
|
+
Value?: string;
|
|
8
|
+
}
|
|
9
|
+
interface Exception {
|
|
10
|
+
Code: string;
|
|
11
|
+
Audience: string;
|
|
12
|
+
Source: string;
|
|
13
|
+
Message: string;
|
|
14
|
+
}
|
|
15
|
+
interface Exceptions {
|
|
16
|
+
Source: string;
|
|
17
|
+
Exception: Exception[];
|
|
18
|
+
}
|
|
19
|
+
interface ResultResponse {
|
|
20
|
+
Exceptions: Exceptions;
|
|
21
|
+
Result: string;
|
|
22
|
+
}
|
|
23
|
+
interface CountRequest {
|
|
24
|
+
Path?: string;
|
|
25
|
+
}
|
|
26
|
+
interface CountResponse {
|
|
27
|
+
Exceptions: Exceptions;
|
|
28
|
+
Result: unsignedInt;
|
|
29
|
+
}
|
|
30
|
+
interface DFSCheckRequest {
|
|
31
|
+
}
|
|
32
|
+
interface DFSExistsRequest {
|
|
33
|
+
FileName?: string;
|
|
34
|
+
}
|
|
35
|
+
interface BooleanResponse {
|
|
36
|
+
Exceptions: Exceptions;
|
|
37
|
+
Result: boolean;
|
|
38
|
+
}
|
|
39
|
+
interface DFSLSRequest {
|
|
40
|
+
Name?: string;
|
|
41
|
+
PathAndNameOnly?: boolean;
|
|
42
|
+
IncludeSubFileInfo?: boolean;
|
|
43
|
+
Recursively?: boolean;
|
|
44
|
+
}
|
|
45
|
+
interface DeleteRequest {
|
|
46
|
+
Path?: string;
|
|
47
|
+
}
|
|
48
|
+
interface GetDFSCSVRequest {
|
|
49
|
+
LogicalNameMask?: string;
|
|
50
|
+
}
|
|
51
|
+
interface GetDFSMapRequest {
|
|
52
|
+
FileName?: string;
|
|
53
|
+
}
|
|
54
|
+
interface GetDFSParentsRequest {
|
|
55
|
+
FileName?: string;
|
|
56
|
+
}
|
|
57
|
+
interface GetLogicalFileRequest {
|
|
58
|
+
FileName?: string;
|
|
59
|
+
}
|
|
60
|
+
interface GetLogicalFilePartRequest {
|
|
61
|
+
FileName?: string;
|
|
62
|
+
PartNumber?: unsignedInt;
|
|
63
|
+
}
|
|
64
|
+
interface GetProtectedListRequest {
|
|
65
|
+
FileName?: string;
|
|
66
|
+
CallerId?: string;
|
|
67
|
+
}
|
|
68
|
+
interface GetValueRequest {
|
|
69
|
+
Path?: string;
|
|
70
|
+
}
|
|
71
|
+
interface ImportRequest {
|
|
72
|
+
XML?: string;
|
|
73
|
+
Path?: string;
|
|
74
|
+
Add?: boolean;
|
|
75
|
+
}
|
|
76
|
+
interface WsDaliPingRequest {
|
|
77
|
+
}
|
|
78
|
+
interface WsDaliPingResponse {
|
|
79
|
+
}
|
|
80
|
+
interface SetLogicalFilePartAttrRequest {
|
|
81
|
+
FileName?: string;
|
|
82
|
+
PartNumber?: unsignedInt;
|
|
83
|
+
Attr?: string;
|
|
84
|
+
Value?: string;
|
|
85
|
+
}
|
|
86
|
+
interface SetProtectedRequest {
|
|
87
|
+
FileName?: string;
|
|
88
|
+
CallerId?: string;
|
|
89
|
+
}
|
|
90
|
+
interface SetUnprotectedRequest {
|
|
91
|
+
FileName?: string;
|
|
92
|
+
CallerId?: string;
|
|
93
|
+
}
|
|
94
|
+
interface SetValueRequest {
|
|
95
|
+
Path?: string;
|
|
96
|
+
Value?: string;
|
|
97
|
+
}
|
|
98
|
+
}
|
|
99
|
+
export declare class DaliServiceBase extends Service {
|
|
100
|
+
constructor(optsConnection: IOptions | IConnection);
|
|
101
|
+
Add(request: WsDali.AddRequest): Promise<WsDali.ResultResponse>;
|
|
102
|
+
Count(request: WsDali.CountRequest): Promise<WsDali.CountResponse>;
|
|
103
|
+
DFSCheck(request: WsDali.DFSCheckRequest): Promise<WsDali.ResultResponse>;
|
|
104
|
+
DFSExists(request: WsDali.DFSExistsRequest): Promise<WsDali.BooleanResponse>;
|
|
105
|
+
DFSLS(request: WsDali.DFSLSRequest): Promise<WsDali.ResultResponse>;
|
|
106
|
+
Delete(request: WsDali.DeleteRequest): Promise<WsDali.ResultResponse>;
|
|
107
|
+
GetDFSCSV(request: WsDali.GetDFSCSVRequest): Promise<WsDali.ResultResponse>;
|
|
108
|
+
GetDFSMap(request: WsDali.GetDFSMapRequest): Promise<WsDali.ResultResponse>;
|
|
109
|
+
GetDFSParents(request: WsDali.GetDFSParentsRequest): Promise<WsDali.ResultResponse>;
|
|
110
|
+
GetLogicalFile(request: WsDali.GetLogicalFileRequest): Promise<WsDali.ResultResponse>;
|
|
111
|
+
GetLogicalFilePart(request: WsDali.GetLogicalFilePartRequest): Promise<WsDali.ResultResponse>;
|
|
112
|
+
GetProtectedList(request: WsDali.GetProtectedListRequest): Promise<WsDali.ResultResponse>;
|
|
113
|
+
GetValue(request: WsDali.GetValueRequest): Promise<WsDali.ResultResponse>;
|
|
114
|
+
Import(request: WsDali.ImportRequest): Promise<WsDali.ResultResponse>;
|
|
115
|
+
Ping(request: WsDali.WsDaliPingRequest): Promise<WsDali.WsDaliPingResponse>;
|
|
116
|
+
SetLogicalFilePartAttr(request: WsDali.SetLogicalFilePartAttrRequest): Promise<WsDali.ResultResponse>;
|
|
117
|
+
SetProtected(request: WsDali.SetProtectedRequest): Promise<WsDali.ResultResponse>;
|
|
118
|
+
SetUnprotected(request: WsDali.SetUnprotectedRequest): Promise<WsDali.ResultResponse>;
|
|
119
|
+
SetValue(request: WsDali.SetValueRequest): Promise<WsDali.ResultResponse>;
|
|
120
|
+
}
|
|
121
|
+
export {};
|
|
122
|
+
//# sourceMappingURL=WsDali.d.ts.map
|