@hpcc-js/comms 2.78.0 → 2.78.1
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 +51 -51
- package/dist/index.es6.js.map +1 -1
- package/dist/index.js +50 -50
- 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 +50 -50
- 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/services/wsLogaccess.js +7 -7
- package/lib-es6/services/wsLogaccess.js.map +1 -1
- package/lib-es6/services/wsdl/WsDali/v1.04/WsDali.js +19 -19
- package/lib-es6/services/wsdl/WsDali/v1.04/WsDali.js.map +1 -1
- package/lib-es6/services/wsdl/ws_logaccess/v1.02/ws_logaccess.js +27 -24
- package/lib-es6/services/wsdl/ws_logaccess/v1.02/ws_logaccess.js.map +1 -1
- package/package.json +3 -3
- package/src/__package__.ts +2 -2
- package/src/services/wsLogaccess.ts +7 -7
- package/src/services/wsdl/WsDali/v1.04/WsDali.ts +156 -156
- package/src/services/wsdl/ws_logaccess/v1.02/ws_logaccess.ts +26 -26
- package/types/__package__.d.ts +2 -2
- package/types/services/wsLogaccess.d.ts +2 -2
- package/types/services/wsLogaccess.d.ts.map +1 -1
- package/types/services/wsdl/WsDali/v1.04/WsDali.d.ts +27 -27
- package/types/services/wsdl/WsDali/v1.04/WsDali.d.ts.map +1 -1
- package/types/services/wsdl/ws_logaccess/v1.02/ws_logaccess.d.ts +39 -39
- package/types/services/wsdl/ws_logaccess/v1.02/ws_logaccess.d.ts.map +1 -1
- package/types-3.4/__package__.d.ts +2 -2
- package/types-3.4/services/wsLogaccess.d.ts +2 -2
- package/types-3.4/services/wsdl/WsDali/v1.04/WsDali.d.ts +27 -27
- package/types-3.4/services/wsdl/ws_logaccess/v1.02/ws_logaccess.d.ts +39 -39
|
@@ -1,216 +1,216 @@
|
|
|
1
1
|
import { IConnection, IOptions } from "../../../../connection";
|
|
2
2
|
import { Service } from "../../../../espConnection";
|
|
3
3
|
|
|
4
|
-
type unsignedInt = number;
|
|
5
|
-
|
|
6
4
|
export namespace WsDali {
|
|
7
5
|
|
|
8
|
-
|
|
9
|
-
Path?: string;
|
|
10
|
-
Value?: string;
|
|
11
|
-
}
|
|
6
|
+
type unsignedInt = number;
|
|
12
7
|
|
|
13
|
-
export interface
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
Message: string;
|
|
18
|
-
}
|
|
8
|
+
export interface AddRequest {
|
|
9
|
+
Path?: string;
|
|
10
|
+
Value?: string;
|
|
11
|
+
}
|
|
19
12
|
|
|
20
|
-
export interface
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
13
|
+
export interface Exception {
|
|
14
|
+
Code: string;
|
|
15
|
+
Audience: string;
|
|
16
|
+
Source: string;
|
|
17
|
+
Message: string;
|
|
18
|
+
}
|
|
24
19
|
|
|
25
|
-
export interface
|
|
26
|
-
Exceptions: {
|
|
20
|
+
export interface Exceptions {
|
|
27
21
|
Source: string;
|
|
28
22
|
Exception: Exception[];
|
|
29
|
-
}
|
|
30
|
-
|
|
31
|
-
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
export interface ResultResponse {
|
|
26
|
+
Exceptions: {
|
|
27
|
+
Source: string;
|
|
28
|
+
Exception: Exception[];
|
|
29
|
+
};
|
|
30
|
+
Result: string;
|
|
31
|
+
}
|
|
32
32
|
|
|
33
|
-
export interface CountRequest {
|
|
34
|
-
|
|
35
|
-
}
|
|
33
|
+
export interface CountRequest {
|
|
34
|
+
Path?: string;
|
|
35
|
+
}
|
|
36
36
|
|
|
37
|
-
export interface CountResponse {
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
}
|
|
37
|
+
export interface CountResponse {
|
|
38
|
+
Exceptions: Exceptions;
|
|
39
|
+
Result: unsignedInt;
|
|
40
|
+
}
|
|
41
41
|
|
|
42
|
-
export interface DFSCheckRequest {
|
|
42
|
+
export interface DFSCheckRequest {
|
|
43
43
|
|
|
44
|
-
}
|
|
44
|
+
}
|
|
45
45
|
|
|
46
|
-
export interface DFSExistsRequest {
|
|
47
|
-
|
|
48
|
-
}
|
|
46
|
+
export interface DFSExistsRequest {
|
|
47
|
+
FileName?: string;
|
|
48
|
+
}
|
|
49
49
|
|
|
50
|
-
export interface BooleanResponse {
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
}
|
|
50
|
+
export interface BooleanResponse {
|
|
51
|
+
Exceptions: Exceptions;
|
|
52
|
+
Result: boolean;
|
|
53
|
+
}
|
|
54
54
|
|
|
55
|
-
export interface DFSLSRequest {
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
}
|
|
55
|
+
export interface DFSLSRequest {
|
|
56
|
+
Name?: string;
|
|
57
|
+
PathAndNameOnly?: boolean;
|
|
58
|
+
IncludeSubFileInfo?: boolean;
|
|
59
|
+
Recursively?: boolean;
|
|
60
|
+
}
|
|
61
61
|
|
|
62
|
-
export interface DeleteRequest {
|
|
63
|
-
|
|
64
|
-
}
|
|
62
|
+
export interface DeleteRequest {
|
|
63
|
+
Path?: string;
|
|
64
|
+
}
|
|
65
65
|
|
|
66
|
-
export interface GetDFSCSVRequest {
|
|
67
|
-
|
|
68
|
-
}
|
|
66
|
+
export interface GetDFSCSVRequest {
|
|
67
|
+
LogicalNameMask?: string;
|
|
68
|
+
}
|
|
69
69
|
|
|
70
|
-
export interface GetDFSMapRequest {
|
|
71
|
-
|
|
72
|
-
}
|
|
70
|
+
export interface GetDFSMapRequest {
|
|
71
|
+
FileName?: string;
|
|
72
|
+
}
|
|
73
73
|
|
|
74
|
-
export interface GetDFSParentsRequest {
|
|
75
|
-
|
|
76
|
-
}
|
|
74
|
+
export interface GetDFSParentsRequest {
|
|
75
|
+
FileName?: string;
|
|
76
|
+
}
|
|
77
77
|
|
|
78
|
-
export interface GetLogicalFileRequest {
|
|
79
|
-
|
|
80
|
-
}
|
|
78
|
+
export interface GetLogicalFileRequest {
|
|
79
|
+
FileName?: string;
|
|
80
|
+
}
|
|
81
81
|
|
|
82
|
-
export interface GetLogicalFilePartRequest {
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
}
|
|
82
|
+
export interface GetLogicalFilePartRequest {
|
|
83
|
+
FileName?: string;
|
|
84
|
+
PartNumber?: unsignedInt;
|
|
85
|
+
}
|
|
86
86
|
|
|
87
|
-
export interface GetProtectedListRequest {
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
}
|
|
87
|
+
export interface GetProtectedListRequest {
|
|
88
|
+
FileName?: string;
|
|
89
|
+
CallerId?: string;
|
|
90
|
+
}
|
|
91
91
|
|
|
92
|
-
export interface GetValueRequest {
|
|
93
|
-
|
|
94
|
-
}
|
|
92
|
+
export interface GetValueRequest {
|
|
93
|
+
Path?: string;
|
|
94
|
+
}
|
|
95
95
|
|
|
96
|
-
export interface ImportRequest {
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
}
|
|
96
|
+
export interface ImportRequest {
|
|
97
|
+
XML?: string;
|
|
98
|
+
Path?: string;
|
|
99
|
+
Add?: boolean;
|
|
100
|
+
}
|
|
101
101
|
|
|
102
|
-
export interface WSDaliPingRequest {
|
|
102
|
+
export interface WSDaliPingRequest {
|
|
103
103
|
|
|
104
|
-
}
|
|
104
|
+
}
|
|
105
105
|
|
|
106
|
-
export interface WSDaliPingResponse {
|
|
106
|
+
export interface WSDaliPingResponse {
|
|
107
107
|
|
|
108
|
-
}
|
|
108
|
+
}
|
|
109
109
|
|
|
110
|
-
export interface SetLogicalFilePartAttrRequest {
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
}
|
|
110
|
+
export interface SetLogicalFilePartAttrRequest {
|
|
111
|
+
FileName?: string;
|
|
112
|
+
PartNumber?: unsignedInt;
|
|
113
|
+
Attr?: string;
|
|
114
|
+
Value?: string;
|
|
115
|
+
}
|
|
116
116
|
|
|
117
|
-
export interface SetProtectedRequest {
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
}
|
|
117
|
+
export interface SetProtectedRequest {
|
|
118
|
+
FileName?: string;
|
|
119
|
+
CallerId?: string;
|
|
120
|
+
}
|
|
121
121
|
|
|
122
|
-
export interface SetUnprotectedRequest {
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
}
|
|
122
|
+
export interface SetUnprotectedRequest {
|
|
123
|
+
FileName?: string;
|
|
124
|
+
CallerId?: string;
|
|
125
|
+
}
|
|
126
126
|
|
|
127
|
-
export interface SetValueRequest {
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
}
|
|
127
|
+
export interface SetValueRequest {
|
|
128
|
+
Path?: string;
|
|
129
|
+
Value?: string;
|
|
130
|
+
}
|
|
131
131
|
|
|
132
132
|
}
|
|
133
133
|
|
|
134
134
|
export class DaliServiceBase extends Service {
|
|
135
135
|
|
|
136
|
-
constructor(optsConnection: IOptions | IConnection) {
|
|
137
|
-
super(optsConnection, "WSDali", "1.04");
|
|
138
|
-
}
|
|
136
|
+
constructor(optsConnection: IOptions | IConnection) {
|
|
137
|
+
super(optsConnection, "WSDali", "1.04");
|
|
138
|
+
}
|
|
139
139
|
|
|
140
|
-
Add(request: WsDali.AddRequest): Promise<WsDali.ResultResponse> {
|
|
141
|
-
|
|
142
|
-
}
|
|
140
|
+
Add(request: WsDali.AddRequest): Promise<WsDali.ResultResponse> {
|
|
141
|
+
return this._connection.send("Add", request, "json", false, undefined, "ResultResponse");
|
|
142
|
+
}
|
|
143
143
|
|
|
144
|
-
Count(request: WsDali.CountRequest): Promise<WsDali.CountResponse> {
|
|
145
|
-
|
|
146
|
-
}
|
|
144
|
+
Count(request: WsDali.CountRequest): Promise<WsDali.CountResponse> {
|
|
145
|
+
return this._connection.send("Count", request, "json", false, undefined, "CountResponse");
|
|
146
|
+
}
|
|
147
147
|
|
|
148
|
-
DFSCheck(request: WsDali.DFSCheckRequest): Promise<WsDali.ResultResponse> {
|
|
149
|
-
|
|
150
|
-
}
|
|
148
|
+
DFSCheck(request: WsDali.DFSCheckRequest): Promise<WsDali.ResultResponse> {
|
|
149
|
+
return this._connection.send("DFSCheck", request, "json", false, undefined, "ResultResponse");
|
|
150
|
+
}
|
|
151
151
|
|
|
152
|
-
DFSExists(request: WsDali.DFSExistsRequest): Promise<WsDali.BooleanResponse> {
|
|
153
|
-
|
|
154
|
-
}
|
|
152
|
+
DFSExists(request: WsDali.DFSExistsRequest): Promise<WsDali.BooleanResponse> {
|
|
153
|
+
return this._connection.send("DFSExists", request, "json", false, undefined, "BooleanResponse");
|
|
154
|
+
}
|
|
155
155
|
|
|
156
|
-
DFSLS(request: WsDali.DFSLSRequest): Promise<WsDali.ResultResponse> {
|
|
157
|
-
|
|
158
|
-
}
|
|
156
|
+
DFSLS(request: WsDali.DFSLSRequest): Promise<WsDali.ResultResponse> {
|
|
157
|
+
return this._connection.send("DFSLS", request, "json", false, undefined, "ResultResponse");
|
|
158
|
+
}
|
|
159
159
|
|
|
160
|
-
Delete(request: WsDali.DeleteRequest): Promise<WsDali.ResultResponse> {
|
|
161
|
-
|
|
162
|
-
}
|
|
160
|
+
Delete(request: WsDali.DeleteRequest): Promise<WsDali.ResultResponse> {
|
|
161
|
+
return this._connection.send("Delete", request, "json", false, undefined, "ResultResponse");
|
|
162
|
+
}
|
|
163
163
|
|
|
164
|
-
GetDFSCSV(request: WsDali.GetDFSCSVRequest): Promise<WsDali.ResultResponse> {
|
|
165
|
-
|
|
166
|
-
}
|
|
164
|
+
GetDFSCSV(request: WsDali.GetDFSCSVRequest): Promise<WsDali.ResultResponse> {
|
|
165
|
+
return this._connection.send("GetDFSCSV", request, "json", false, undefined, "ResultResponse");
|
|
166
|
+
}
|
|
167
167
|
|
|
168
|
-
GetDFSMap(request: WsDali.GetDFSMapRequest): Promise<WsDali.ResultResponse> {
|
|
169
|
-
|
|
170
|
-
}
|
|
168
|
+
GetDFSMap(request: WsDali.GetDFSMapRequest): Promise<WsDali.ResultResponse> {
|
|
169
|
+
return this._connection.send("GetDFSMap", request, "json", false, undefined, "ResultResponse");
|
|
170
|
+
}
|
|
171
171
|
|
|
172
|
-
GetDFSParents(request: WsDali.GetDFSParentsRequest): Promise<WsDali.ResultResponse> {
|
|
173
|
-
|
|
174
|
-
}
|
|
172
|
+
GetDFSParents(request: WsDali.GetDFSParentsRequest): Promise<WsDali.ResultResponse> {
|
|
173
|
+
return this._connection.send("GetDFSParents", request, "json", false, undefined, "ResultResponse");
|
|
174
|
+
}
|
|
175
175
|
|
|
176
|
-
GetLogicalFile(request: WsDali.GetLogicalFileRequest): Promise<WsDali.ResultResponse> {
|
|
177
|
-
|
|
178
|
-
}
|
|
176
|
+
GetLogicalFile(request: WsDali.GetLogicalFileRequest): Promise<WsDali.ResultResponse> {
|
|
177
|
+
return this._connection.send("GetLogicalFile", request, "json", false, undefined, "ResultResponse");
|
|
178
|
+
}
|
|
179
179
|
|
|
180
|
-
GetLogicalFilePart(request: WsDali.GetLogicalFilePartRequest): Promise<WsDali.ResultResponse> {
|
|
181
|
-
|
|
182
|
-
}
|
|
180
|
+
GetLogicalFilePart(request: WsDali.GetLogicalFilePartRequest): Promise<WsDali.ResultResponse> {
|
|
181
|
+
return this._connection.send("GetLogicalFilePart", request, "json", false, undefined, "ResultResponse");
|
|
182
|
+
}
|
|
183
183
|
|
|
184
|
-
GetProtectedList(request: WsDali.GetProtectedListRequest): Promise<WsDali.ResultResponse> {
|
|
185
|
-
|
|
186
|
-
}
|
|
184
|
+
GetProtectedList(request: WsDali.GetProtectedListRequest): Promise<WsDali.ResultResponse> {
|
|
185
|
+
return this._connection.send("GetProtectedList", request, "json", false, undefined, "ResultResponse");
|
|
186
|
+
}
|
|
187
187
|
|
|
188
|
-
GetValue(request: WsDali.GetValueRequest): Promise<WsDali.ResultResponse> {
|
|
189
|
-
|
|
190
|
-
}
|
|
188
|
+
GetValue(request: WsDali.GetValueRequest): Promise<WsDali.ResultResponse> {
|
|
189
|
+
return this._connection.send("GetValue", request, "json", false, undefined, "ResultResponse");
|
|
190
|
+
}
|
|
191
191
|
|
|
192
|
-
Import(request: WsDali.ImportRequest): Promise<WsDali.ResultResponse> {
|
|
193
|
-
|
|
194
|
-
}
|
|
192
|
+
Import(request: WsDali.ImportRequest): Promise<WsDali.ResultResponse> {
|
|
193
|
+
return this._connection.send("Import", request, "json", false, undefined, "ResultResponse");
|
|
194
|
+
}
|
|
195
195
|
|
|
196
|
-
Ping(request: WsDali.WSDaliPingRequest): Promise<WsDali.WSDaliPingResponse> {
|
|
197
|
-
|
|
198
|
-
}
|
|
196
|
+
Ping(request: WsDali.WSDaliPingRequest): Promise<WsDali.WSDaliPingResponse> {
|
|
197
|
+
return this._connection.send("Ping", request, "json", false, undefined, "WSDaliPingResponse");
|
|
198
|
+
}
|
|
199
199
|
|
|
200
|
-
SetLogicalFilePartAttr(request: WsDali.SetLogicalFilePartAttrRequest): Promise<WsDali.ResultResponse> {
|
|
201
|
-
|
|
202
|
-
}
|
|
200
|
+
SetLogicalFilePartAttr(request: WsDali.SetLogicalFilePartAttrRequest): Promise<WsDali.ResultResponse> {
|
|
201
|
+
return this._connection.send("SetLogicalFilePartAttr", request, "json", false, undefined, "ResultResponse");
|
|
202
|
+
}
|
|
203
203
|
|
|
204
|
-
SetProtected(request: WsDali.SetProtectedRequest): Promise<WsDali.ResultResponse> {
|
|
205
|
-
|
|
206
|
-
}
|
|
204
|
+
SetProtected(request: WsDali.SetProtectedRequest): Promise<WsDali.ResultResponse> {
|
|
205
|
+
return this._connection.send("SetProtected", request, "json", false, undefined, "ResultResponse");
|
|
206
|
+
}
|
|
207
207
|
|
|
208
|
-
SetUnprotected(request: WsDali.SetUnprotectedRequest): Promise<WsDali.ResultResponse> {
|
|
209
|
-
|
|
210
|
-
}
|
|
208
|
+
SetUnprotected(request: WsDali.SetUnprotectedRequest): Promise<WsDali.ResultResponse> {
|
|
209
|
+
return this._connection.send("SetUnprotected", request, "json", false, undefined, "ResultResponse");
|
|
210
|
+
}
|
|
211
211
|
|
|
212
|
-
SetValue(request: WsDali.SetValueRequest): Promise<WsDali.ResultResponse> {
|
|
213
|
-
|
|
214
|
-
}
|
|
212
|
+
SetValue(request: WsDali.SetValueRequest): Promise<WsDali.ResultResponse> {
|
|
213
|
+
return this._connection.send("SetValue", request, "json", false, undefined, "ResultResponse");
|
|
214
|
+
}
|
|
215
215
|
|
|
216
216
|
}
|
|
@@ -1,35 +1,35 @@
|
|
|
1
1
|
import { IConnection, IOptions } from "../../../../connection";
|
|
2
2
|
import { Service } from "../../../../espConnection";
|
|
3
3
|
|
|
4
|
-
|
|
5
|
-
type unsignedInt = number;
|
|
6
|
-
type long = number;
|
|
7
|
-
|
|
8
|
-
export enum LogAccessType {
|
|
9
|
-
All = 0,
|
|
10
|
-
ByJobIdID = 1,
|
|
11
|
-
ByComponent = 2,
|
|
12
|
-
ByLogType = 3,
|
|
13
|
-
ByTargetAudience = 4,
|
|
14
|
-
BySourceInstance = 5,
|
|
15
|
-
BySourceNode = 6,
|
|
16
|
-
ByFieldName = 7
|
|
17
|
-
}
|
|
4
|
+
export namespace WsLogaccess {
|
|
18
5
|
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
OR = 2
|
|
23
|
-
}
|
|
6
|
+
type dateTime = string;
|
|
7
|
+
type unsignedInt = number;
|
|
8
|
+
type long = number;
|
|
24
9
|
|
|
25
|
-
export enum
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
10
|
+
export enum LogAccessType {
|
|
11
|
+
All = 0,
|
|
12
|
+
ByJobIdID = 1,
|
|
13
|
+
ByComponent = 2,
|
|
14
|
+
ByLogType = 3,
|
|
15
|
+
ByTargetAudience = 4,
|
|
16
|
+
BySourceInstance = 5,
|
|
17
|
+
BySourceNode = 6,
|
|
18
|
+
ByFieldName = 7
|
|
19
|
+
}
|
|
31
20
|
|
|
32
|
-
export
|
|
21
|
+
export enum LogAccessFilterOperator {
|
|
22
|
+
NONE = 0,
|
|
23
|
+
AND = 1,
|
|
24
|
+
OR = 2
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
export enum LogSelectColumnMode {
|
|
28
|
+
MIN = 0,
|
|
29
|
+
DEFAULT = 1,
|
|
30
|
+
ALL = 2,
|
|
31
|
+
CUSTOM = 3
|
|
32
|
+
}
|
|
33
33
|
|
|
34
34
|
export interface GetLogAccessInfoRequest {
|
|
35
35
|
|
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.78.
|
|
3
|
-
export declare const BUILD_VERSION = "2.103.
|
|
2
|
+
export declare const PKG_VERSION = "2.78.1";
|
|
3
|
+
export declare const BUILD_VERSION = "2.103.5";
|
|
4
4
|
//# sourceMappingURL=__package__.d.ts.map
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { LogaccessServiceBase, WsLogaccess
|
|
2
|
-
export { WsLogaccess
|
|
1
|
+
import { LogaccessServiceBase, WsLogaccess } from "./wsdl/ws_logaccess/v1.02/ws_logaccess";
|
|
2
|
+
export { WsLogaccess };
|
|
3
3
|
export declare enum KnownColumns {
|
|
4
4
|
audience = "hpcc.log.audience",
|
|
5
5
|
class = "hpcc.log.class",
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"wsLogaccess.d.ts","sourceRoot":"","sources":["../../src/services/wsLogaccess.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,oBAAoB,EAAE,WAAW,EAAE,
|
|
1
|
+
{"version":3,"file":"wsLogaccess.d.ts","sourceRoot":"","sources":["../../src/services/wsLogaccess.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,oBAAoB,EAAE,WAAW,EAAE,MAAM,wCAAwC,CAAC;AAI3F,OAAO,EACH,WAAW,EACd,CAAC;AAEF,oBAAY,YAAY;IACpB,QAAQ,sBAAsB;IAC9B,KAAK,mBAAmB;IACxB,KAAK,mBAAmB;IACxB,OAAO,qBAAqB;IAC5B,MAAM,oBAAoB;IAC1B,QAAQ,sBAAsB;IAC9B,QAAQ,sBAAsB;IAC9B,SAAS,uBAAuB;IAChC,aAAa,8BAA8B;CAC9C;AASD,MAAM,WAAW,gBAAgB;IAC7B,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB,SAAS,CAAC,EAAE,IAAI,CAAC;IACjB,OAAO,CAAC,EAAE,IAAI,CAAC;IACf,gBAAgB,EAAE,MAAM,CAAC;IACzB,YAAY,EAAE,MAAM,CAAA;CACvB;AAED,MAAM,WAAW,OAAO;IACpB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,aAAa,CAAC,EAAE,MAAM,CAAC;CAC1B;AAUD,MAAM,WAAW,iBAAiB;IAC9B,KAAK,EAAE,OAAO,EAAE,CAAC;IACjB,KAAK,EAAE,MAAM,CAAC;CACjB;AAED,qBAAa,gBAAiB,SAAQ,oBAAoB;IAEtD,gBAAgB,CAAC,OAAO,EAAE,WAAW,CAAC,uBAAuB,GAAG,OAAO,CAAC,WAAW,CAAC,wBAAwB,CAAC;IAI7G,OAAO,CAAC,OAAO,EAAE,WAAW,CAAC,cAAc,GAAG,OAAO,CAAC,WAAW,CAAC,eAAe,CAAC;IAIlF,SAAS,CAAC,OAAO,EAAE,gBAAgB,GAAG,OAAO,CAAC,iBAAiB,CAAC;CAsEnE"}
|
|
@@ -1,103 +1,104 @@
|
|
|
1
1
|
import { IConnection, IOptions } from "../../../../connection";
|
|
2
2
|
import { Service } from "../../../../espConnection";
|
|
3
|
-
declare type unsignedInt = number;
|
|
4
3
|
export declare namespace WsDali {
|
|
5
|
-
|
|
4
|
+
type unsignedInt = number;
|
|
5
|
+
export interface AddRequest {
|
|
6
6
|
Path?: string;
|
|
7
7
|
Value?: string;
|
|
8
8
|
}
|
|
9
|
-
interface Exception {
|
|
9
|
+
export interface Exception {
|
|
10
10
|
Code: string;
|
|
11
11
|
Audience: string;
|
|
12
12
|
Source: string;
|
|
13
13
|
Message: string;
|
|
14
14
|
}
|
|
15
|
-
interface Exceptions {
|
|
15
|
+
export interface Exceptions {
|
|
16
16
|
Source: string;
|
|
17
17
|
Exception: Exception[];
|
|
18
18
|
}
|
|
19
|
-
interface ResultResponse {
|
|
19
|
+
export interface ResultResponse {
|
|
20
20
|
Exceptions: {
|
|
21
21
|
Source: string;
|
|
22
22
|
Exception: Exception[];
|
|
23
23
|
};
|
|
24
24
|
Result: string;
|
|
25
25
|
}
|
|
26
|
-
interface CountRequest {
|
|
26
|
+
export interface CountRequest {
|
|
27
27
|
Path?: string;
|
|
28
28
|
}
|
|
29
|
-
interface CountResponse {
|
|
29
|
+
export interface CountResponse {
|
|
30
30
|
Exceptions: Exceptions;
|
|
31
31
|
Result: unsignedInt;
|
|
32
32
|
}
|
|
33
|
-
interface DFSCheckRequest {
|
|
33
|
+
export interface DFSCheckRequest {
|
|
34
34
|
}
|
|
35
|
-
interface DFSExistsRequest {
|
|
35
|
+
export interface DFSExistsRequest {
|
|
36
36
|
FileName?: string;
|
|
37
37
|
}
|
|
38
|
-
interface BooleanResponse {
|
|
38
|
+
export interface BooleanResponse {
|
|
39
39
|
Exceptions: Exceptions;
|
|
40
40
|
Result: boolean;
|
|
41
41
|
}
|
|
42
|
-
interface DFSLSRequest {
|
|
42
|
+
export interface DFSLSRequest {
|
|
43
43
|
Name?: string;
|
|
44
44
|
PathAndNameOnly?: boolean;
|
|
45
45
|
IncludeSubFileInfo?: boolean;
|
|
46
46
|
Recursively?: boolean;
|
|
47
47
|
}
|
|
48
|
-
interface DeleteRequest {
|
|
48
|
+
export interface DeleteRequest {
|
|
49
49
|
Path?: string;
|
|
50
50
|
}
|
|
51
|
-
interface GetDFSCSVRequest {
|
|
51
|
+
export interface GetDFSCSVRequest {
|
|
52
52
|
LogicalNameMask?: string;
|
|
53
53
|
}
|
|
54
|
-
interface GetDFSMapRequest {
|
|
54
|
+
export interface GetDFSMapRequest {
|
|
55
55
|
FileName?: string;
|
|
56
56
|
}
|
|
57
|
-
interface GetDFSParentsRequest {
|
|
57
|
+
export interface GetDFSParentsRequest {
|
|
58
58
|
FileName?: string;
|
|
59
59
|
}
|
|
60
|
-
interface GetLogicalFileRequest {
|
|
60
|
+
export interface GetLogicalFileRequest {
|
|
61
61
|
FileName?: string;
|
|
62
62
|
}
|
|
63
|
-
interface GetLogicalFilePartRequest {
|
|
63
|
+
export interface GetLogicalFilePartRequest {
|
|
64
64
|
FileName?: string;
|
|
65
65
|
PartNumber?: unsignedInt;
|
|
66
66
|
}
|
|
67
|
-
interface GetProtectedListRequest {
|
|
67
|
+
export interface GetProtectedListRequest {
|
|
68
68
|
FileName?: string;
|
|
69
69
|
CallerId?: string;
|
|
70
70
|
}
|
|
71
|
-
interface GetValueRequest {
|
|
71
|
+
export interface GetValueRequest {
|
|
72
72
|
Path?: string;
|
|
73
73
|
}
|
|
74
|
-
interface ImportRequest {
|
|
74
|
+
export interface ImportRequest {
|
|
75
75
|
XML?: string;
|
|
76
76
|
Path?: string;
|
|
77
77
|
Add?: boolean;
|
|
78
78
|
}
|
|
79
|
-
interface WSDaliPingRequest {
|
|
79
|
+
export interface WSDaliPingRequest {
|
|
80
80
|
}
|
|
81
|
-
interface WSDaliPingResponse {
|
|
81
|
+
export interface WSDaliPingResponse {
|
|
82
82
|
}
|
|
83
|
-
interface SetLogicalFilePartAttrRequest {
|
|
83
|
+
export interface SetLogicalFilePartAttrRequest {
|
|
84
84
|
FileName?: string;
|
|
85
85
|
PartNumber?: unsignedInt;
|
|
86
86
|
Attr?: string;
|
|
87
87
|
Value?: string;
|
|
88
88
|
}
|
|
89
|
-
interface SetProtectedRequest {
|
|
89
|
+
export interface SetProtectedRequest {
|
|
90
90
|
FileName?: string;
|
|
91
91
|
CallerId?: string;
|
|
92
92
|
}
|
|
93
|
-
interface SetUnprotectedRequest {
|
|
93
|
+
export interface SetUnprotectedRequest {
|
|
94
94
|
FileName?: string;
|
|
95
95
|
CallerId?: string;
|
|
96
96
|
}
|
|
97
|
-
interface SetValueRequest {
|
|
97
|
+
export interface SetValueRequest {
|
|
98
98
|
Path?: string;
|
|
99
99
|
Value?: string;
|
|
100
100
|
}
|
|
101
|
+
export {};
|
|
101
102
|
}
|
|
102
103
|
export declare class DaliServiceBase extends Service {
|
|
103
104
|
constructor(optsConnection: IOptions | IConnection);
|
|
@@ -121,5 +122,4 @@ export declare class DaliServiceBase extends Service {
|
|
|
121
122
|
SetUnprotected(request: WsDali.SetUnprotectedRequest): Promise<WsDali.ResultResponse>;
|
|
122
123
|
SetValue(request: WsDali.SetValueRequest): Promise<WsDali.ResultResponse>;
|
|
123
124
|
}
|
|
124
|
-
export {};
|
|
125
125
|
//# sourceMappingURL=WsDali.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"WsDali.d.ts","sourceRoot":"","sources":["../../../../../src/services/wsdl/WsDali/v1.04/WsDali.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,QAAQ,EAAE,MAAM,wBAAwB,CAAC;AAC/D,OAAO,EAAE,OAAO,EAAE,MAAM,2BAA2B,CAAC;AAEpD,
|
|
1
|
+
{"version":3,"file":"WsDali.d.ts","sourceRoot":"","sources":["../../../../../src/services/wsdl/WsDali/v1.04/WsDali.ts"],"names":[],"mappings":"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"}
|