@allurereport/service 3.0.0-beta.26 → 3.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/dist/service.js +1 -1
- package/package.json +3 -3
package/dist/service.js
CHANGED
|
@@ -91,7 +91,7 @@ export class AllureServiceClient {
|
|
|
91
91
|
if (!this.currentProjectUuid) {
|
|
92
92
|
throw new Error("Project is not set");
|
|
93
93
|
}
|
|
94
|
-
const { history } = await __classPrivateFieldGet(this, _AllureServiceClient_client, "f").get(`/projects/${this.currentProjectUuid}/${branch}/history`);
|
|
94
|
+
const { history } = await __classPrivateFieldGet(this, _AllureServiceClient_client, "f").get(`/projects/${this.currentProjectUuid}/${encodeURIComponent(branch)}/history`);
|
|
95
95
|
return history;
|
|
96
96
|
}
|
|
97
97
|
async createReport(payload) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@allurereport/service",
|
|
3
|
-
"version": "3.0.0
|
|
3
|
+
"version": "3.0.0",
|
|
4
4
|
"description": "Allure Service API",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"allure",
|
|
@@ -30,8 +30,8 @@
|
|
|
30
30
|
"test": "rimraf ./out && vitest run"
|
|
31
31
|
},
|
|
32
32
|
"dependencies": {
|
|
33
|
-
"@allurereport/core-api": "3.0.0
|
|
34
|
-
"@allurereport/plugin-api": "3.0.0
|
|
33
|
+
"@allurereport/core-api": "3.0.0",
|
|
34
|
+
"@allurereport/plugin-api": "3.0.0",
|
|
35
35
|
"axios": "^1.13.1",
|
|
36
36
|
"open": "^10.1.0"
|
|
37
37
|
},
|