@hpcc-js/comms 2.101.0 → 2.101.2

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.
@@ -1,4 +1,4 @@
1
1
  export var PKG_NAME = "@hpcc-js/comms";
2
- export var PKG_VERSION = "2.101.0";
3
- export var BUILD_VERSION = "2.108.0";
2
+ export var PKG_VERSION = "2.101.2";
3
+ export var BUILD_VERSION = "2.108.3";
4
4
  //# sourceMappingURL=__package__.js.map
@@ -1,6 +1,6 @@
1
1
  import { __awaiter, __extends, __generator, __spreadArray } from "tslib";
2
2
  import { scopedLogger } from "@hpcc-js/util";
3
- import { LogaccessServiceBase, WsLogaccess } from "./wsdl/ws_logaccess/v1.05/ws_logaccess";
3
+ import { LogaccessServiceBase, WsLogaccess } from "./wsdl/ws_logaccess/v1.08/ws_logaccess";
4
4
  var logger = scopedLogger("@hpcc-js/comms/services/wsLogaccess.ts");
5
5
  export { WsLogaccess };
6
6
  var LogaccessService = /** @class */ (function (_super) {
@@ -0,0 +1,104 @@
1
+ import { __extends } from "tslib";
2
+ import { Service } from "../../../../espConnection";
3
+ export var WsLogaccess;
4
+ (function (WsLogaccess) {
5
+ var LogColumnType;
6
+ (function (LogColumnType) {
7
+ LogColumnType["global"] = "global";
8
+ LogColumnType["workunits"] = "workunits";
9
+ LogColumnType["components"] = "components";
10
+ LogColumnType["audience"] = "audience";
11
+ LogColumnType["class"] = "class";
12
+ LogColumnType["instance"] = "instance";
13
+ LogColumnType["node"] = "node";
14
+ LogColumnType["message"] = "message";
15
+ LogColumnType["logid"] = "logid";
16
+ LogColumnType["processid"] = "processid";
17
+ LogColumnType["threadid"] = "threadid";
18
+ LogColumnType["timestamp"] = "timestamp";
19
+ LogColumnType["pod"] = "pod";
20
+ LogColumnType["traceid"] = "traceid";
21
+ LogColumnType["spanid"] = "spanid";
22
+ })(LogColumnType = WsLogaccess.LogColumnType || (WsLogaccess.LogColumnType = {}));
23
+ var LogColumnValueType;
24
+ (function (LogColumnValueType) {
25
+ LogColumnValueType["string"] = "string";
26
+ LogColumnValueType["numeric"] = "numeric";
27
+ LogColumnValueType["datetime"] = "datetime";
28
+ LogColumnValueType["enum"] = "enum";
29
+ LogColumnValueType["epoch"] = "epoch";
30
+ })(LogColumnValueType = WsLogaccess.LogColumnValueType || (WsLogaccess.LogColumnValueType = {}));
31
+ var LogAccessType;
32
+ (function (LogAccessType) {
33
+ LogAccessType[LogAccessType["All"] = 0] = "All";
34
+ LogAccessType[LogAccessType["ByJobID"] = 1] = "ByJobID";
35
+ LogAccessType[LogAccessType["ByComponent"] = 2] = "ByComponent";
36
+ LogAccessType[LogAccessType["ByLogType"] = 3] = "ByLogType";
37
+ LogAccessType[LogAccessType["ByTargetAudience"] = 4] = "ByTargetAudience";
38
+ LogAccessType[LogAccessType["BySourceInstance"] = 5] = "BySourceInstance";
39
+ LogAccessType[LogAccessType["BySourceNode"] = 6] = "BySourceNode";
40
+ LogAccessType[LogAccessType["ByFieldName"] = 7] = "ByFieldName";
41
+ LogAccessType[LogAccessType["ByPod"] = 8] = "ByPod";
42
+ LogAccessType[LogAccessType["ByTraceID"] = 9] = "ByTraceID";
43
+ LogAccessType[LogAccessType["BySpanID"] = 10] = "BySpanID";
44
+ })(LogAccessType = WsLogaccess.LogAccessType || (WsLogaccess.LogAccessType = {}));
45
+ var LogAccessStatusCode;
46
+ (function (LogAccessStatusCode) {
47
+ LogAccessStatusCode[LogAccessStatusCode["Success"] = 0] = "Success";
48
+ LogAccessStatusCode[LogAccessStatusCode["Warning"] = 1] = "Warning";
49
+ LogAccessStatusCode[LogAccessStatusCode["Fail"] = 2] = "Fail";
50
+ })(LogAccessStatusCode = WsLogaccess.LogAccessStatusCode || (WsLogaccess.LogAccessStatusCode = {}));
51
+ var LogAccessFilterOperator;
52
+ (function (LogAccessFilterOperator) {
53
+ LogAccessFilterOperator[LogAccessFilterOperator["NONE"] = 0] = "NONE";
54
+ LogAccessFilterOperator[LogAccessFilterOperator["AND"] = 1] = "AND";
55
+ LogAccessFilterOperator[LogAccessFilterOperator["OR"] = 2] = "OR";
56
+ })(LogAccessFilterOperator = WsLogaccess.LogAccessFilterOperator || (WsLogaccess.LogAccessFilterOperator = {}));
57
+ var LogSelectColumnMode;
58
+ (function (LogSelectColumnMode) {
59
+ LogSelectColumnMode[LogSelectColumnMode["MIN"] = 0] = "MIN";
60
+ LogSelectColumnMode[LogSelectColumnMode["DEFAULT"] = 1] = "DEFAULT";
61
+ LogSelectColumnMode[LogSelectColumnMode["ALL"] = 2] = "ALL";
62
+ LogSelectColumnMode[LogSelectColumnMode["CUSTOM"] = 3] = "CUSTOM";
63
+ })(LogSelectColumnMode = WsLogaccess.LogSelectColumnMode || (WsLogaccess.LogSelectColumnMode = {}));
64
+ var SortColumType;
65
+ (function (SortColumType) {
66
+ SortColumType[SortColumType["ByDate"] = 0] = "ByDate";
67
+ SortColumType[SortColumType["ByJobID"] = 1] = "ByJobID";
68
+ SortColumType[SortColumType["ByComponent"] = 2] = "ByComponent";
69
+ SortColumType[SortColumType["ByLogType"] = 3] = "ByLogType";
70
+ SortColumType[SortColumType["ByTargetAudience"] = 4] = "ByTargetAudience";
71
+ SortColumType[SortColumType["BySourceInstance"] = 5] = "BySourceInstance";
72
+ SortColumType[SortColumType["BySourceNode"] = 6] = "BySourceNode";
73
+ SortColumType[SortColumType["ByFieldName"] = 7] = "ByFieldName";
74
+ SortColumType[SortColumType["ByPod"] = 8] = "ByPod";
75
+ SortColumType[SortColumType["ByTraceID"] = 9] = "ByTraceID";
76
+ SortColumType[SortColumType["BySpanID"] = 10] = "BySpanID";
77
+ })(SortColumType = WsLogaccess.SortColumType || (WsLogaccess.SortColumType = {}));
78
+ var SortDirection;
79
+ (function (SortDirection) {
80
+ SortDirection[SortDirection["ASC"] = 0] = "ASC";
81
+ SortDirection[SortDirection["DSC"] = 1] = "DSC";
82
+ })(SortDirection = WsLogaccess.SortDirection || (WsLogaccess.SortDirection = {}));
83
+ })(WsLogaccess || (WsLogaccess = {}));
84
+ var LogaccessServiceBase = /** @class */ (function (_super) {
85
+ __extends(LogaccessServiceBase, _super);
86
+ function LogaccessServiceBase(optsConnection) {
87
+ return _super.call(this, optsConnection, "ws_logaccess", "1.08") || this;
88
+ }
89
+ LogaccessServiceBase.prototype.GetHealthReport = function (request) {
90
+ return this._connection.send("GetHealthReport", request, "json", false, undefined, "GetHealthReportResponse");
91
+ };
92
+ LogaccessServiceBase.prototype.GetLogAccessInfo = function (request) {
93
+ return this._connection.send("GetLogAccessInfo", request, "json", false, undefined, "GetLogAccessInfoResponse");
94
+ };
95
+ LogaccessServiceBase.prototype.GetLogs = function (request) {
96
+ return this._connection.send("GetLogs", request, "json", false, undefined, "GetLogsResponse");
97
+ };
98
+ LogaccessServiceBase.prototype.Ping = function (request) {
99
+ return this._connection.send("Ping", request, "json", false, undefined, "ws_logaccessPingResponse");
100
+ };
101
+ return LogaccessServiceBase;
102
+ }(Service));
103
+ export { LogaccessServiceBase };
104
+ //# sourceMappingURL=ws_logaccess.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ws_logaccess.js","sourceRoot":"","sources":["../../../../../src/services/wsdl/ws_logaccess/v1.08/ws_logaccess.ts"],"names":[],"mappings":"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"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hpcc-js/comms",
3
- "version": "2.101.0",
3
+ "version": "2.101.2",
4
4
  "description": "hpcc-js - Communications",
5
5
  "main": "dist/index.node.js",
6
6
  "module": "dist/index.es6",
@@ -63,7 +63,7 @@
63
63
  },
64
64
  "dependencies": {
65
65
  "@hpcc-js/ddl-shim": "^2.22.0",
66
- "@hpcc-js/util": "^2.53.0",
66
+ "@hpcc-js/util": "^2.53.1",
67
67
  "@xmldom/xmldom": "0.9.8",
68
68
  "abort-controller": "3.0.0",
69
69
  "node-fetch": "2.7.0",
@@ -96,5 +96,5 @@
96
96
  "url": "https://github.com/hpcc-systems/Visualization/issues"
97
97
  },
98
98
  "homepage": "https://github.com/hpcc-systems/Visualization",
99
- "gitHead": "4055a0f25f6314a91ba3ef5c1f785f34c97e0502"
99
+ "gitHead": "22e4f57ba3965b21f4b03eadccde749b7f706e6d"
100
100
  }
@@ -1,3 +1,3 @@
1
1
  export const PKG_NAME = "@hpcc-js/comms";
2
- export const PKG_VERSION = "2.101.0";
3
- export const BUILD_VERSION = "2.108.0";
2
+ export const PKG_VERSION = "2.101.2";
3
+ export const BUILD_VERSION = "2.108.3";
@@ -1,5 +1,5 @@
1
1
  import { scopedLogger } from "@hpcc-js/util";
2
- import { LogaccessServiceBase, WsLogaccess } from "./wsdl/ws_logaccess/v1.05/ws_logaccess";
2
+ import { LogaccessServiceBase, WsLogaccess } from "./wsdl/ws_logaccess/v1.08/ws_logaccess";
3
3
 
4
4
  const logger = scopedLogger("@hpcc-js/comms/services/wsLogaccess.ts");
5
5
 
@@ -0,0 +1,267 @@
1
+ import { IConnection, IOptions } from "../../../../connection";
2
+ import { Service } from "../../../../espConnection";
3
+
4
+ export namespace WsLogaccess {
5
+
6
+ export type dateTime = string;
7
+ export type unsignedInt = number;
8
+ export type long = number;
9
+
10
+ export enum LogColumnType {
11
+ global = "global",
12
+ workunits = "workunits",
13
+ components = "components",
14
+ audience = "audience",
15
+ class = "class",
16
+ instance = "instance",
17
+ node = "node",
18
+ message = "message",
19
+ logid = "logid",
20
+ processid = "processid",
21
+ threadid = "threadid",
22
+ timestamp = "timestamp",
23
+ pod = "pod",
24
+ traceid = "traceid",
25
+ spanid = "spanid"
26
+ }
27
+
28
+ export enum LogColumnValueType {
29
+ string = "string",
30
+ numeric = "numeric",
31
+ datetime = "datetime",
32
+ enum = "enum",
33
+ epoch = "epoch"
34
+ }
35
+
36
+ export enum LogAccessType {
37
+ All = 0,
38
+ ByJobID = 1,
39
+ ByComponent = 2,
40
+ ByLogType = 3,
41
+ ByTargetAudience = 4,
42
+ BySourceInstance = 5,
43
+ BySourceNode = 6,
44
+ ByFieldName = 7,
45
+ ByPod = 8,
46
+ ByTraceID = 9,
47
+ BySpanID = 10
48
+ }
49
+
50
+ export enum LogAccessStatusCode {
51
+ Success = 0,
52
+ Warning = 1,
53
+ Fail = 2
54
+ }
55
+
56
+ export enum LogAccessFilterOperator {
57
+ NONE = 0,
58
+ AND = 1,
59
+ OR = 2
60
+ }
61
+
62
+ export enum LogSelectColumnMode {
63
+ MIN = 0,
64
+ DEFAULT = 1,
65
+ ALL = 2,
66
+ CUSTOM = 3
67
+ }
68
+
69
+ export enum SortColumType {
70
+ ByDate = 0,
71
+ ByJobID = 1,
72
+ ByComponent = 2,
73
+ ByLogType = 3,
74
+ ByTargetAudience = 4,
75
+ BySourceInstance = 5,
76
+ BySourceNode = 6,
77
+ ByFieldName = 7,
78
+ ByPod = 8,
79
+ ByTraceID = 9,
80
+ BySpanID = 10
81
+ }
82
+
83
+ export enum SortDirection {
84
+ ASC = 0,
85
+ DSC = 1
86
+ }
87
+
88
+ export interface GetHealthReportRequest {
89
+ IncludeConfiguration?: boolean;
90
+ IncludeDebugReport?: boolean;
91
+ IncludeSampleQuery?: boolean;
92
+ }
93
+
94
+ export interface Exception {
95
+ Code: string;
96
+ Audience: string;
97
+ Source: string;
98
+ Message: string;
99
+ }
100
+
101
+ export interface Exceptions {
102
+ Source: string;
103
+ Exception: Exception[];
104
+ }
105
+
106
+ export interface MessageArray {
107
+ Item: string[];
108
+ }
109
+
110
+ export interface Status {
111
+ Code: LogAccessStatusCode;
112
+ MessageArray: MessageArray;
113
+ }
114
+
115
+ export interface DebugReport {
116
+ SampleQueryReport: string;
117
+ PluginDebugReport: string;
118
+ ServerDebugReport: string;
119
+ }
120
+
121
+ export interface GetHealthReportResponse {
122
+ Exceptions: Exceptions;
123
+ Status: Status;
124
+ DebugReport: DebugReport;
125
+ Configuration: string;
126
+ }
127
+
128
+ export interface GetLogAccessInfoRequest {
129
+
130
+ }
131
+
132
+ export interface EnumeratedValues {
133
+ Item: string[];
134
+ }
135
+
136
+ export interface Column {
137
+ Name: string;
138
+ LogType: LogColumnType;
139
+ EnumeratedValues: EnumeratedValues;
140
+ ColumnMode: LogSelectColumnMode;
141
+ ColumnType: LogColumnValueType;
142
+ }
143
+
144
+ export interface Columns {
145
+ Column: Column[];
146
+ }
147
+
148
+ export interface GetLogAccessInfoResponse {
149
+ Exceptions: Exceptions;
150
+ Columns: Columns;
151
+ RemoteLogManagerType: string;
152
+ RemoteLogManagerConnectionString: string;
153
+ SupportsResultPaging: boolean;
154
+ }
155
+
156
+ export interface leftFilter {
157
+ LogCategory: LogAccessType;
158
+ SearchByValue: string;
159
+ SearchField: string;
160
+ }
161
+
162
+ export interface rightFilter {
163
+ LogCategory: LogAccessType;
164
+ SearchByValue: string;
165
+ SearchField: string;
166
+ }
167
+
168
+ export interface rightBinaryFilter {
169
+ BinaryLogFilter: BinaryLogFilter[];
170
+ }
171
+
172
+ export interface BinaryLogFilter {
173
+ leftFilter: leftFilter;
174
+ leftBinaryFilter: leftBinaryFilter;
175
+ Operator: LogAccessFilterOperator;
176
+ rightFilter: {
177
+ LogCategory: LogAccessType;
178
+ SearchByValue: string;
179
+ SearchField: string;
180
+ };
181
+ rightBinaryFilter: {
182
+ BinaryLogFilter: BinaryLogFilter[];
183
+ };
184
+ }
185
+
186
+ export interface leftBinaryFilter {
187
+ BinaryLogFilter: BinaryLogFilter[];
188
+ }
189
+
190
+ export interface Filter {
191
+ leftFilter?: leftFilter;
192
+ leftBinaryFilter?: leftBinaryFilter;
193
+ Operator?: LogAccessFilterOperator;
194
+ rightFilter?: rightFilter;
195
+ rightBinaryFilter?: rightBinaryFilter;
196
+ }
197
+
198
+ export interface Range {
199
+ StartDate?: dateTime;
200
+ EndDate?: dateTime;
201
+ }
202
+
203
+ export interface Columns2 {
204
+ Item: string[];
205
+ }
206
+
207
+ export interface SortCondition {
208
+ BySortType: SortColumType;
209
+ ColumnName: string;
210
+ Direction: SortDirection;
211
+ }
212
+
213
+ export interface SortBy {
214
+ SortCondition: SortCondition[];
215
+ }
216
+
217
+ export interface GetLogsRequest {
218
+ Filter?: Filter;
219
+ Range?: Range;
220
+ LogLineLimit?: unsignedInt;
221
+ LogLineStartFrom?: long;
222
+ SelectColumnMode?: LogSelectColumnMode;
223
+ Columns?: Columns2;
224
+ Format?: string;
225
+ SortBy?: SortBy;
226
+ }
227
+
228
+ export interface GetLogsResponse {
229
+ Exceptions: Exceptions;
230
+ LogLines: string;
231
+ LogLineCount: unsignedInt;
232
+ TotalLogLinesAvailable: unsignedInt;
233
+ }
234
+
235
+ export interface ws_logaccessPingRequest {
236
+
237
+ }
238
+
239
+ export interface ws_logaccessPingResponse {
240
+
241
+ }
242
+
243
+ }
244
+
245
+ export class LogaccessServiceBase extends Service {
246
+
247
+ constructor(optsConnection: IOptions | IConnection) {
248
+ super(optsConnection, "ws_logaccess", "1.08");
249
+ }
250
+
251
+ GetHealthReport(request: Partial<WsLogaccess.GetHealthReportRequest>): Promise<WsLogaccess.GetHealthReportResponse> {
252
+ return this._connection.send("GetHealthReport", request, "json", false, undefined, "GetHealthReportResponse");
253
+ }
254
+
255
+ GetLogAccessInfo(request: Partial<WsLogaccess.GetLogAccessInfoRequest>): Promise<WsLogaccess.GetLogAccessInfoResponse> {
256
+ return this._connection.send("GetLogAccessInfo", request, "json", false, undefined, "GetLogAccessInfoResponse");
257
+ }
258
+
259
+ GetLogs(request: Partial<WsLogaccess.GetLogsRequest>): Promise<WsLogaccess.GetLogsResponse> {
260
+ return this._connection.send("GetLogs", request, "json", false, undefined, "GetLogsResponse");
261
+ }
262
+
263
+ Ping(request: Partial<WsLogaccess.ws_logaccessPingRequest>): Promise<WsLogaccess.ws_logaccessPingResponse> {
264
+ return this._connection.send("Ping", request, "json", false, undefined, "ws_logaccessPingResponse");
265
+ }
266
+
267
+ }
@@ -1,4 +1,4 @@
1
1
  export declare const PKG_NAME = "@hpcc-js/comms";
2
- export declare const PKG_VERSION = "2.101.0";
3
- export declare const BUILD_VERSION = "2.108.0";
2
+ export declare const PKG_VERSION = "2.101.2";
3
+ export declare const BUILD_VERSION = "2.108.3";
4
4
  //# sourceMappingURL=__package__.d.ts.map
@@ -1,4 +1,4 @@
1
- import { LogaccessServiceBase, WsLogaccess } from "./wsdl/ws_logaccess/v1.05/ws_logaccess";
1
+ import { LogaccessServiceBase, WsLogaccess } from "./wsdl/ws_logaccess/v1.08/ws_logaccess";
2
2
  export { WsLogaccess };
3
3
  export interface GetLogsExRequest {
4
4
  audience?: string;
@@ -0,0 +1,211 @@
1
+ import { IConnection, IOptions } from "../../../../connection";
2
+ import { Service } from "../../../../espConnection";
3
+ export declare namespace WsLogaccess {
4
+ type dateTime = string;
5
+ type unsignedInt = number;
6
+ type long = number;
7
+ enum LogColumnType {
8
+ global = "global",
9
+ workunits = "workunits",
10
+ components = "components",
11
+ audience = "audience",
12
+ class = "class",
13
+ instance = "instance",
14
+ node = "node",
15
+ message = "message",
16
+ logid = "logid",
17
+ processid = "processid",
18
+ threadid = "threadid",
19
+ timestamp = "timestamp",
20
+ pod = "pod",
21
+ traceid = "traceid",
22
+ spanid = "spanid"
23
+ }
24
+ enum LogColumnValueType {
25
+ string = "string",
26
+ numeric = "numeric",
27
+ datetime = "datetime",
28
+ enum = "enum",
29
+ epoch = "epoch"
30
+ }
31
+ enum LogAccessType {
32
+ All = 0,
33
+ ByJobID = 1,
34
+ ByComponent = 2,
35
+ ByLogType = 3,
36
+ ByTargetAudience = 4,
37
+ BySourceInstance = 5,
38
+ BySourceNode = 6,
39
+ ByFieldName = 7,
40
+ ByPod = 8,
41
+ ByTraceID = 9,
42
+ BySpanID = 10
43
+ }
44
+ enum LogAccessStatusCode {
45
+ Success = 0,
46
+ Warning = 1,
47
+ Fail = 2
48
+ }
49
+ enum LogAccessFilterOperator {
50
+ NONE = 0,
51
+ AND = 1,
52
+ OR = 2
53
+ }
54
+ enum LogSelectColumnMode {
55
+ MIN = 0,
56
+ DEFAULT = 1,
57
+ ALL = 2,
58
+ CUSTOM = 3
59
+ }
60
+ enum SortColumType {
61
+ ByDate = 0,
62
+ ByJobID = 1,
63
+ ByComponent = 2,
64
+ ByLogType = 3,
65
+ ByTargetAudience = 4,
66
+ BySourceInstance = 5,
67
+ BySourceNode = 6,
68
+ ByFieldName = 7,
69
+ ByPod = 8,
70
+ ByTraceID = 9,
71
+ BySpanID = 10
72
+ }
73
+ enum SortDirection {
74
+ ASC = 0,
75
+ DSC = 1
76
+ }
77
+ interface GetHealthReportRequest {
78
+ IncludeConfiguration?: boolean;
79
+ IncludeDebugReport?: boolean;
80
+ IncludeSampleQuery?: boolean;
81
+ }
82
+ interface Exception {
83
+ Code: string;
84
+ Audience: string;
85
+ Source: string;
86
+ Message: string;
87
+ }
88
+ interface Exceptions {
89
+ Source: string;
90
+ Exception: Exception[];
91
+ }
92
+ interface MessageArray {
93
+ Item: string[];
94
+ }
95
+ interface Status {
96
+ Code: LogAccessStatusCode;
97
+ MessageArray: MessageArray;
98
+ }
99
+ interface DebugReport {
100
+ SampleQueryReport: string;
101
+ PluginDebugReport: string;
102
+ ServerDebugReport: string;
103
+ }
104
+ interface GetHealthReportResponse {
105
+ Exceptions: Exceptions;
106
+ Status: Status;
107
+ DebugReport: DebugReport;
108
+ Configuration: string;
109
+ }
110
+ interface GetLogAccessInfoRequest {
111
+ }
112
+ interface EnumeratedValues {
113
+ Item: string[];
114
+ }
115
+ interface Column {
116
+ Name: string;
117
+ LogType: LogColumnType;
118
+ EnumeratedValues: EnumeratedValues;
119
+ ColumnMode: LogSelectColumnMode;
120
+ ColumnType: LogColumnValueType;
121
+ }
122
+ interface Columns {
123
+ Column: Column[];
124
+ }
125
+ interface GetLogAccessInfoResponse {
126
+ Exceptions: Exceptions;
127
+ Columns: Columns;
128
+ RemoteLogManagerType: string;
129
+ RemoteLogManagerConnectionString: string;
130
+ SupportsResultPaging: boolean;
131
+ }
132
+ interface leftFilter {
133
+ LogCategory: LogAccessType;
134
+ SearchByValue: string;
135
+ SearchField: string;
136
+ }
137
+ interface rightFilter {
138
+ LogCategory: LogAccessType;
139
+ SearchByValue: string;
140
+ SearchField: string;
141
+ }
142
+ interface rightBinaryFilter {
143
+ BinaryLogFilter: BinaryLogFilter[];
144
+ }
145
+ interface BinaryLogFilter {
146
+ leftFilter: leftFilter;
147
+ leftBinaryFilter: leftBinaryFilter;
148
+ Operator: LogAccessFilterOperator;
149
+ rightFilter: {
150
+ LogCategory: LogAccessType;
151
+ SearchByValue: string;
152
+ SearchField: string;
153
+ };
154
+ rightBinaryFilter: {
155
+ BinaryLogFilter: BinaryLogFilter[];
156
+ };
157
+ }
158
+ interface leftBinaryFilter {
159
+ BinaryLogFilter: BinaryLogFilter[];
160
+ }
161
+ interface Filter {
162
+ leftFilter?: leftFilter;
163
+ leftBinaryFilter?: leftBinaryFilter;
164
+ Operator?: LogAccessFilterOperator;
165
+ rightFilter?: rightFilter;
166
+ rightBinaryFilter?: rightBinaryFilter;
167
+ }
168
+ interface Range {
169
+ StartDate?: dateTime;
170
+ EndDate?: dateTime;
171
+ }
172
+ interface Columns2 {
173
+ Item: string[];
174
+ }
175
+ interface SortCondition {
176
+ BySortType: SortColumType;
177
+ ColumnName: string;
178
+ Direction: SortDirection;
179
+ }
180
+ interface SortBy {
181
+ SortCondition: SortCondition[];
182
+ }
183
+ interface GetLogsRequest {
184
+ Filter?: Filter;
185
+ Range?: Range;
186
+ LogLineLimit?: unsignedInt;
187
+ LogLineStartFrom?: long;
188
+ SelectColumnMode?: LogSelectColumnMode;
189
+ Columns?: Columns2;
190
+ Format?: string;
191
+ SortBy?: SortBy;
192
+ }
193
+ interface GetLogsResponse {
194
+ Exceptions: Exceptions;
195
+ LogLines: string;
196
+ LogLineCount: unsignedInt;
197
+ TotalLogLinesAvailable: unsignedInt;
198
+ }
199
+ interface ws_logaccessPingRequest {
200
+ }
201
+ interface ws_logaccessPingResponse {
202
+ }
203
+ }
204
+ export declare class LogaccessServiceBase extends Service {
205
+ constructor(optsConnection: IOptions | IConnection);
206
+ GetHealthReport(request: Partial<WsLogaccess.GetHealthReportRequest>): Promise<WsLogaccess.GetHealthReportResponse>;
207
+ GetLogAccessInfo(request: Partial<WsLogaccess.GetLogAccessInfoRequest>): Promise<WsLogaccess.GetLogAccessInfoResponse>;
208
+ GetLogs(request: Partial<WsLogaccess.GetLogsRequest>): Promise<WsLogaccess.GetLogsResponse>;
209
+ Ping(request: Partial<WsLogaccess.ws_logaccessPingRequest>): Promise<WsLogaccess.ws_logaccessPingResponse>;
210
+ }
211
+ //# sourceMappingURL=ws_logaccess.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ws_logaccess.d.ts","sourceRoot":"","sources":["../../../../../src/services/wsdl/ws_logaccess/v1.08/ws_logaccess.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.101.0";
3
- export declare const BUILD_VERSION = "2.108.0";
2
+ export declare const PKG_VERSION = "2.101.2";
3
+ export declare const BUILD_VERSION = "2.108.3";
4
4
  //# sourceMappingURL=__package__.d.ts.map