zephyr-enterprise-tools 1.2.4 → 1.2.5
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "zephyr-enterprise-tools",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.5",
|
|
4
4
|
"description": "Comprehensive Zephyr Enterprise Tools - Release Readiness, Project Health, Test Analytics & More",
|
|
5
5
|
"main": "zephyr-enterprise-tools.js",
|
|
6
6
|
"types": "zephyr-enterprise-tools.d.ts",
|
|
@@ -1293,9 +1293,10 @@ export class QualityGates {
|
|
|
1293
1293
|
|
|
1294
1294
|
// Fetch all executions for the release
|
|
1295
1295
|
const executionData = await this.GET('/execution', {
|
|
1296
|
-
|
|
1297
|
-
|
|
1298
|
-
|
|
1296
|
+
releaseid: releaseId,
|
|
1297
|
+
offset: 0,
|
|
1298
|
+
pagesize: 10000,
|
|
1299
|
+
includeanyoneuser: true,
|
|
1299
1300
|
});
|
|
1300
1301
|
const executions = executionData.results || executionData || [];
|
|
1301
1302
|
const total = executions.length;
|