@allurereport/reader-api 3.4.0 → 3.5.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/dist/model.d.ts +8 -2
- package/package.json +3 -3
package/dist/model.d.ts
CHANGED
|
@@ -8,6 +8,9 @@ export type RawError = {
|
|
|
8
8
|
expected?: string;
|
|
9
9
|
actual?: string;
|
|
10
10
|
};
|
|
11
|
+
export type RawGlobalError = RawError & {
|
|
12
|
+
environment?: string;
|
|
13
|
+
};
|
|
11
14
|
export interface RawFixtureResult {
|
|
12
15
|
uuid?: string;
|
|
13
16
|
testResults?: string[];
|
|
@@ -94,7 +97,10 @@ export interface RawTestAttachment {
|
|
|
94
97
|
duration?: number;
|
|
95
98
|
type: "attachment";
|
|
96
99
|
}
|
|
100
|
+
export interface RawGlobalAttachment extends RawTestAttachment {
|
|
101
|
+
environment?: string;
|
|
102
|
+
}
|
|
97
103
|
export interface RawGlobals {
|
|
98
|
-
attachments:
|
|
99
|
-
errors:
|
|
104
|
+
attachments: RawGlobalAttachment[];
|
|
105
|
+
errors: RawGlobalError[];
|
|
100
106
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@allurereport/reader-api",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.5.0",
|
|
4
4
|
"description": "Allure Reader API",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"allure",
|
|
@@ -27,8 +27,8 @@
|
|
|
27
27
|
"lint:fix": "oxlint --import-plugin --fix src test features stories"
|
|
28
28
|
},
|
|
29
29
|
"dependencies": {
|
|
30
|
-
"@allurereport/core-api": "3.
|
|
31
|
-
"@allurereport/plugin-api": "3.
|
|
30
|
+
"@allurereport/core-api": "3.5.0",
|
|
31
|
+
"@allurereport/plugin-api": "3.5.0",
|
|
32
32
|
"mime-types": "^2.1.35"
|
|
33
33
|
},
|
|
34
34
|
"devDependencies": {
|