@ibm/ibmi-eventf-parser 1.0.1 → 2.0.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/README.md +52 -2
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/src/ISequentialFileReader.d.ts +27 -1
- package/dist/src/MapTable.d.ts +2 -2
- package/dist/src/Parser.d.ts +2 -10
- package/dist/src/ProcessorBlock.d.ts +2 -2
- package/dist/src/index.d.ts +2 -0
- package/dist/src/record/ErrorInformationRecord.d.ts +18 -34
- package/dist/src/record/ExpansionRecord.d.ts +9 -55
- package/dist/src/record/FeedbackCodeRecord.d.ts +5 -14
- package/dist/src/record/FileEndRecord.d.ts +5 -27
- package/dist/src/record/FileIDRecord.d.ts +11 -15
- package/dist/src/record/IRecord.d.ts +10 -0
- package/dist/src/record/MapDefineRecord.d.ts +6 -40
- package/dist/src/record/MapEndRecord.d.ts +6 -34
- package/dist/src/record/MapStartRecord.d.ts +5 -27
- package/dist/src/record/ProcessorRecord.d.ts +5 -27
- package/dist/src/record/ProgramRecord.d.ts +4 -20
- package/dist/src/record/TimestampRecord.d.ts +3 -19
- package/dist/webpack.config.d.ts +4 -1
- package/package.json +7 -4
|
@@ -6,30 +6,14 @@ import { IRecordT } from "./IRecordT";
|
|
|
6
6
|
export declare class ProgramRecord implements IRecord {
|
|
7
7
|
private version;
|
|
8
8
|
private line;
|
|
9
|
-
constructor(version:
|
|
9
|
+
constructor(version: number, line: number);
|
|
10
10
|
getRecordType(): IRecordT;
|
|
11
|
-
|
|
12
|
-
* Get the version.
|
|
13
|
-
*
|
|
14
|
-
* @return The version.
|
|
15
|
-
*/
|
|
16
|
-
getVersion(): string;
|
|
17
|
-
/**
|
|
18
|
-
* Set the version.
|
|
19
|
-
*
|
|
20
|
-
* @param version The version.
|
|
21
|
-
*/
|
|
22
|
-
setVersion(version: string): void;
|
|
11
|
+
getVersion(): number;
|
|
23
12
|
/**
|
|
24
13
|
* Get the line.
|
|
25
14
|
*
|
|
26
15
|
* @return The line.
|
|
27
16
|
*/
|
|
28
|
-
getLine():
|
|
29
|
-
|
|
30
|
-
* Set the line.
|
|
31
|
-
*
|
|
32
|
-
* @param line The line.
|
|
33
|
-
*/
|
|
34
|
-
setLine(line: string): void;
|
|
17
|
+
getLine(): number;
|
|
18
|
+
toString(): string;
|
|
35
19
|
}
|
|
@@ -6,30 +6,14 @@ import { IRecord } from './IRecord';
|
|
|
6
6
|
export declare class TimestampRecord implements IRecord {
|
|
7
7
|
private version;
|
|
8
8
|
private timestamp;
|
|
9
|
-
constructor(version:
|
|
9
|
+
constructor(version: number, timestamp: string);
|
|
10
10
|
getRecordType(): IRecordT;
|
|
11
|
-
|
|
12
|
-
* Get the version.
|
|
13
|
-
*
|
|
14
|
-
* @return The version.
|
|
15
|
-
*/
|
|
16
|
-
getVersion(): string;
|
|
17
|
-
/**
|
|
18
|
-
* Set the version.
|
|
19
|
-
*
|
|
20
|
-
* @param version The version.
|
|
21
|
-
*/
|
|
22
|
-
setVersion(version: string): void;
|
|
11
|
+
getVersion(): number;
|
|
23
12
|
/**
|
|
24
13
|
* Get the timestamp.
|
|
25
14
|
*
|
|
26
15
|
* @return The timestamp.
|
|
27
16
|
*/
|
|
28
17
|
getTimestamp(): string;
|
|
29
|
-
|
|
30
|
-
* Set the timestamp.
|
|
31
|
-
*
|
|
32
|
-
* @param timestamp The timestamp.
|
|
33
|
-
*/
|
|
34
|
-
setTimestamp(timestamp: string): void;
|
|
18
|
+
toString(): string;
|
|
35
19
|
}
|
package/dist/webpack.config.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ibm/ibmi-eventf-parser",
|
|
3
3
|
"description": "Parse event files that are generated by IBM i compilers",
|
|
4
|
-
"version": "
|
|
4
|
+
"version": "2.0.0",
|
|
5
5
|
"publisher": "IBM",
|
|
6
6
|
"author": "IBM",
|
|
7
7
|
"license": "Apache-2.0",
|
|
@@ -27,11 +27,14 @@
|
|
|
27
27
|
"test:dev": "npx vitest",
|
|
28
28
|
"coverage": "npx vitest run --coverage"
|
|
29
29
|
},
|
|
30
|
+
"dependencies": {
|
|
31
|
+
"path-normalize": "^6.0.13"
|
|
32
|
+
},
|
|
30
33
|
"devDependencies": {
|
|
31
|
-
"@vitest/coverage-v8": "^0.
|
|
34
|
+
"@vitest/coverage-v8": "^1.0.2",
|
|
32
35
|
"ts-loader": "^9.4.4",
|
|
33
|
-
"vitest": "^0.
|
|
36
|
+
"vitest": "^1.0.2",
|
|
34
37
|
"webpack": "^5.88.2",
|
|
35
38
|
"webpack-cli": "^5.1.4"
|
|
36
39
|
}
|
|
37
|
-
}
|
|
40
|
+
}
|