@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 CHANGED
@@ -1,5 +1,11 @@
1
1
  # @digital-ai/devops-page-object-release
2
2
 
3
+ ## 0.0.43
4
+
5
+ ### Patch Changes
6
+
7
+ - 0681b13: fixes a problem when deleting all global variables and running with workers
8
+
3
9
  ## 0.0.42
4
10
 
5
11
  ### Patch Changes
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.deleteGlobalVariables();
9530
+ for (const globalVariableId of this.globalVariableIds)await this.deleteGlobalVariable(globalVariableId);
9528
9531
  this.globalVariableIds = [];
9529
9532
  this.folderIds = [];
9530
9533
  this.releaseIds = [];