@mablhq/mabl-cli 1.20.9 → 1.20.12

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.
@@ -147,7 +147,7 @@ class BasicApiClient {
147
147
  return this.retryWrappedRequest(`makeDeleteRequest('${path}')`, () => this.deleteRequest(path, this.getRetryableRequestConfig(retryConfig)), retryConfig);
148
148
  }
149
149
  async deleteRequest(path, config) {
150
- const response = await this.debugRequest('DELETE', path, () => this.deleteRequest(path, config));
150
+ const response = await this.debugRequest('DELETE', path, () => this.httpClient.delete(path, config));
151
151
  BasicApiClient.checkResponseStatusCode(response);
152
152
  return response.data;
153
153
  }