@digital-ai/devops-page-object-release 0.0.42 → 0.0.43
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/CHANGELOG.md +6 -0
- package/dist/main.js +4 -1
- package/dist/main.js.map +1 -1
- package/dist/module.js +4 -1
- package/dist/module.js.map +1 -1
- package/dist/types.d.ts +1 -0
- package/dist/types.d.ts.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
package/dist/main.js
CHANGED
|
@@ -9473,6 +9473,9 @@ class $6998c6a53a9eb4fa$var$Fixtures {
|
|
|
9473
9473
|
deleteGlobalVariables() {
|
|
9474
9474
|
return this.doDelete("fixtures/globalVariables");
|
|
9475
9475
|
}
|
|
9476
|
+
deleteGlobalVariable(id) {
|
|
9477
|
+
return this.doDelete(`api/v1/config/${id}`);
|
|
9478
|
+
}
|
|
9476
9479
|
activityLogs(id, logs) {
|
|
9477
9480
|
return this.doPost(`fixtures/activityLogs/${id}`, logs);
|
|
9478
9481
|
}
|
|
@@ -9524,7 +9527,7 @@ class $6998c6a53a9eb4fa$var$Fixtures {
|
|
|
9524
9527
|
for (const releaseId of this.releaseIds.reverse())await this.deleteRelease(releaseId);
|
|
9525
9528
|
for (const confId of this.configurationIds)await this.deleteConfiguration(confId);
|
|
9526
9529
|
for (const folderId of this.folderIds.reverse())await this.deleteFolder(folderId);
|
|
9527
|
-
await this.
|
|
9530
|
+
for (const globalVariableId of this.globalVariableIds)await this.deleteGlobalVariable(globalVariableId);
|
|
9528
9531
|
this.globalVariableIds = [];
|
|
9529
9532
|
this.folderIds = [];
|
|
9530
9533
|
this.releaseIds = [];
|