@leavittsoftware/lg-core-typescript 4.176.0 → 4.177.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/lg.net.automation.js +17 -0
- package/lg.net.automation.js.map +1 -0
- package/lg.net.automation.ts +31 -0
- package/package.json +4 -1
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
// ----------------------
|
|
2
|
+
// <auto-generated>
|
|
3
|
+
// generated using a custom program
|
|
4
|
+
// </auto-generated>
|
|
5
|
+
// ----------------------
|
|
6
|
+
export var LogEntryLevel;
|
|
7
|
+
(function (LogEntryLevel) {
|
|
8
|
+
LogEntryLevel[LogEntryLevel["Info"] = 0] = "Info";
|
|
9
|
+
LogEntryLevel[LogEntryLevel["Warn"] = 1] = "Warn";
|
|
10
|
+
LogEntryLevel[LogEntryLevel["Error"] = 2] = "Error";
|
|
11
|
+
})(LogEntryLevel || (LogEntryLevel = {}));
|
|
12
|
+
export var LogEntryType;
|
|
13
|
+
(function (LogEntryType) {
|
|
14
|
+
LogEntryType[LogEntryType["Feedback"] = 0] = "Feedback";
|
|
15
|
+
LogEntryType[LogEntryType["Summary"] = 1] = "Summary";
|
|
16
|
+
})(LogEntryType || (LogEntryType = {}));
|
|
17
|
+
//# sourceMappingURL=lg.net.automation.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"lg.net.automation.js","sourceRoot":"","sources":["lg.net.automation.ts"],"names":[],"mappings":"AAAA,yBAAyB;AACzB,mBAAmB;AACnB,uCAAuC;AACvC,oBAAoB;AACpB,yBAAyB;AAYzB,MAAM,CAAN,IAAY,aAIX;AAJD,WAAY,aAAa;IACrB,iDAAQ,CAAA;IACR,iDAAQ,CAAA;IACR,mDAAS,CAAA;AACb,CAAC,EAJW,aAAa,KAAb,aAAa,QAIxB;AAID,MAAM,CAAN,IAAY,YAGX;AAHD,WAAY,YAAY;IACpB,uDAAY,CAAA;IACZ,qDAAW,CAAA;AACf,CAAC,EAHW,YAAY,KAAZ,YAAY,QAGvB"}
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
// ----------------------
|
|
2
|
+
// <auto-generated>
|
|
3
|
+
// generated using a custom program
|
|
4
|
+
// </auto-generated>
|
|
5
|
+
// ----------------------
|
|
6
|
+
|
|
7
|
+
export interface EsLogEntryItem {
|
|
8
|
+
AutomatedApplicationId: number;
|
|
9
|
+
DateTime: string;
|
|
10
|
+
Instance: string | null;
|
|
11
|
+
Level: LogEntryLevelString;
|
|
12
|
+
Message: string | null;
|
|
13
|
+
Source: string | null;
|
|
14
|
+
Type: LogEntryTypeString;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
export enum LogEntryLevel {
|
|
18
|
+
Info = 0,
|
|
19
|
+
Warn = 1,
|
|
20
|
+
Error = 2
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
export type LogEntryLevelString = keyof typeof LogEntryLevel;
|
|
24
|
+
|
|
25
|
+
export enum LogEntryType {
|
|
26
|
+
Feedback = 0,
|
|
27
|
+
Summary = 1
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
export type LogEntryTypeString = keyof typeof LogEntryType;
|
|
31
|
+
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@leavittsoftware/lg-core-typescript",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.177.0",
|
|
4
4
|
"description": "Typescript of lg core",
|
|
5
5
|
"main": "lg.typescript.js",
|
|
6
6
|
"files": [
|
|
@@ -32,6 +32,9 @@
|
|
|
32
32
|
"lg.net.system.js.map",
|
|
33
33
|
"lg.net.system.js",
|
|
34
34
|
"lg.net.system.ts",
|
|
35
|
+
"lg.net.automation.js.map",
|
|
36
|
+
"lg.net.automation.js",
|
|
37
|
+
"lg.net.automation.ts",
|
|
35
38
|
"lg.net.core.js.map",
|
|
36
39
|
"lg.net.core.js",
|
|
37
40
|
"lg.net.core.ts",
|