@hpcc-js/comms 2.78.2 → 2.79.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 (45) hide show
  1. package/dist/index.es6.js +450 -46
  2. package/dist/index.es6.js.map +1 -1
  3. package/dist/index.js +448 -43
  4. package/dist/index.js.map +1 -1
  5. package/dist/index.min.js +1 -1
  6. package/dist/index.min.js.map +1 -1
  7. package/dist/index.node.js +450 -45
  8. package/dist/index.node.js.map +1 -1
  9. package/dist/index.node.min.js +1 -1
  10. package/dist/index.node.min.js.map +1 -1
  11. package/lib-es6/__package__.js +2 -2
  12. package/lib-es6/ecl/result.js +11 -10
  13. package/lib-es6/ecl/result.js.map +1 -1
  14. package/lib-es6/services/wsLogaccess.js +71 -27
  15. package/lib-es6/services/wsLogaccess.js.map +1 -1
  16. package/lib-es6/services/wsWorkunits.js +9 -0
  17. package/lib-es6/services/wsWorkunits.js.map +1 -1
  18. package/lib-es6/services/wsdl/WsWorkunits/v1.94/WsWorkunits.js +354 -0
  19. package/lib-es6/services/wsdl/WsWorkunits/v1.94/WsWorkunits.js.map +1 -0
  20. package/lib-es6/services/wsdl/ws_logaccess/v1.03/ws_logaccess.js +63 -0
  21. package/lib-es6/services/wsdl/ws_logaccess/v1.03/ws_logaccess.js.map +1 -0
  22. package/package.json +2 -2
  23. package/src/__package__.ts +2 -2
  24. package/src/ecl/result.ts +11 -10
  25. package/src/services/wsLogaccess.ts +91 -30
  26. package/src/services/wsWorkunits.ts +4 -0
  27. package/src/services/wsdl/WsWorkunits/v1.94/WsWorkunits.ts +3072 -0
  28. package/src/services/wsdl/ws_logaccess/v1.03/ws_logaccess.ts +190 -0
  29. package/types/__package__.d.ts +2 -2
  30. package/types/ecl/result.d.ts +2 -1
  31. package/types/ecl/result.d.ts.map +1 -1
  32. package/types/services/wsLogaccess.d.ts +17 -13
  33. package/types/services/wsLogaccess.d.ts.map +1 -1
  34. package/types/services/wsWorkunits.d.ts +3 -0
  35. package/types/services/wsWorkunits.d.ts.map +1 -1
  36. package/types/services/wsdl/WsWorkunits/v1.94/WsWorkunits.d.ts +2520 -0
  37. package/types/services/wsdl/WsWorkunits/v1.94/WsWorkunits.d.ts.map +1 -0
  38. package/types/services/wsdl/ws_logaccess/v1.03/ws_logaccess.d.ts +150 -0
  39. package/types/services/wsdl/ws_logaccess/v1.03/ws_logaccess.d.ts.map +1 -0
  40. package/types-3.4/__package__.d.ts +2 -2
  41. package/types-3.4/ecl/result.d.ts +2 -1
  42. package/types-3.4/services/wsLogaccess.d.ts +17 -13
  43. package/types-3.4/services/wsWorkunits.d.ts +3 -0
  44. package/types-3.4/services/wsdl/WsWorkunits/v1.94/WsWorkunits.d.ts +2520 -0
  45. package/types-3.4/services/wsdl/ws_logaccess/v1.03/ws_logaccess.d.ts +150 -0
@@ -0,0 +1,150 @@
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 LogAccessType {
8
+ All = 0,
9
+ ByJobID = 1,
10
+ ByComponent = 2,
11
+ ByLogType = 3,
12
+ ByTargetAudience = 4,
13
+ BySourceInstance = 5,
14
+ BySourceNode = 6,
15
+ ByFieldName = 7
16
+ }
17
+ enum LogAccessFilterOperator {
18
+ NONE = 0,
19
+ AND = 1,
20
+ OR = 2
21
+ }
22
+ enum LogSelectColumnMode {
23
+ MIN = 0,
24
+ DEFAULT = 1,
25
+ ALL = 2,
26
+ CUSTOM = 3
27
+ }
28
+ enum SortColumType {
29
+ ByDate = 0,
30
+ ByJobID = 1,
31
+ ByComponent = 2,
32
+ ByLogType = 3,
33
+ ByTargetAudience = 4,
34
+ BySourceInstance = 5,
35
+ BySourceNode = 6,
36
+ ByFieldName = 7
37
+ }
38
+ enum SortDirection {
39
+ ASC = 0,
40
+ DSC = 1
41
+ }
42
+ interface GetLogAccessInfoRequest {
43
+ }
44
+ interface GetLogAccessInfoResponse {
45
+ RemoteLogManagerType: string;
46
+ RemoteLogManagerConnectionString: string;
47
+ }
48
+ interface leftFilter {
49
+ LogCategory: LogAccessType;
50
+ SearchByValue: string;
51
+ SearchField: string;
52
+ }
53
+ interface rightFilter {
54
+ LogCategory: LogAccessType;
55
+ SearchByValue: string;
56
+ SearchField: string;
57
+ }
58
+ interface rightBinaryFilter {
59
+ BinaryLogFilter: BinaryLogFilter[];
60
+ }
61
+ interface BinaryLogFilter {
62
+ leftFilter: leftFilter;
63
+ leftBinaryFilter: leftBinaryFilter;
64
+ Operator: LogAccessFilterOperator;
65
+ rightFilter: {
66
+ LogCategory: LogAccessType;
67
+ SearchByValue: string;
68
+ SearchField: string;
69
+ };
70
+ rightBinaryFilter: {
71
+ BinaryLogFilter: BinaryLogFilter[];
72
+ };
73
+ }
74
+ interface leftBinaryFilter {
75
+ BinaryLogFilter: BinaryLogFilter[];
76
+ }
77
+ interface Filter {
78
+ leftFilter: {
79
+ LogCategory: LogAccessType;
80
+ SearchByValue: string;
81
+ SearchField: string;
82
+ };
83
+ leftBinaryFilter: {
84
+ BinaryLogFilter: BinaryLogFilter[];
85
+ };
86
+ Operator: LogAccessFilterOperator;
87
+ rightFilter: rightFilter;
88
+ rightBinaryFilter: rightBinaryFilter;
89
+ }
90
+ interface Range {
91
+ StartDate: dateTime;
92
+ EndDate: dateTime;
93
+ }
94
+ interface Columns {
95
+ Item: string[];
96
+ }
97
+ interface SortCondition {
98
+ BySortType: SortColumType;
99
+ ColumnName: string;
100
+ Direction: SortDirection;
101
+ }
102
+ interface SortBy {
103
+ SortCondition: SortCondition[];
104
+ }
105
+ interface GetLogsRequest {
106
+ Filter?: {
107
+ leftFilter?: {
108
+ LogCategory?: LogAccessType;
109
+ SearchByValue?: string;
110
+ SearchField?: string;
111
+ };
112
+ leftBinaryFilter?: {
113
+ BinaryLogFilter?: BinaryLogFilter[];
114
+ };
115
+ Operator?: LogAccessFilterOperator;
116
+ rightFilter?: rightFilter;
117
+ rightBinaryFilter?: rightBinaryFilter;
118
+ };
119
+ Range?: {
120
+ StartDate?: dateTime;
121
+ EndDate?: dateTime;
122
+ };
123
+ LogLineLimit?: unsignedInt;
124
+ LogLineStartFrom?: long;
125
+ SelectColumnMode?: LogSelectColumnMode;
126
+ Columns?: {
127
+ Item?: string[];
128
+ };
129
+ Format?: string;
130
+ SortBy?: {
131
+ SortCondition?: SortCondition[];
132
+ };
133
+ }
134
+ interface GetLogsResponse {
135
+ LogLines: string;
136
+ LogLineCount: unsignedInt;
137
+ TotalLogLinesAvailable: unsignedInt;
138
+ }
139
+ interface ws_logaccessPingRequest {
140
+ }
141
+ interface ws_logaccessPingResponse {
142
+ }
143
+ }
144
+ export declare class LogaccessServiceBase extends Service {
145
+ constructor(optsConnection: IOptions | IConnection);
146
+ GetLogAccessInfo(request: WsLogaccess.GetLogAccessInfoRequest): Promise<WsLogaccess.GetLogAccessInfoResponse>;
147
+ GetLogs(request: WsLogaccess.GetLogsRequest): Promise<WsLogaccess.GetLogsResponse>;
148
+ Ping(request: WsLogaccess.ws_logaccessPingRequest): Promise<WsLogaccess.ws_logaccessPingResponse>;
149
+ }
150
+ //# sourceMappingURL=ws_logaccess.d.ts.map