@revxui/api-clients-ts 1.1.467 → 1.1.469

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.
@@ -5567,9 +5567,9 @@ class DCOVideoSettingsControllerService {
5567
5567
  reportProgress: reportProgress
5568
5568
  });
5569
5569
  }
5570
- deleteSettingsUsingDELETE(id, reqId, token, observe = 'body', reportProgress = false) {
5570
+ deleteSettingsUsingPOST(id, reqId, token, observe = 'body', reportProgress = false) {
5571
5571
  if (id === null || id === undefined) {
5572
- throw new Error('Required parameter id was null or undefined when calling deleteSettingsUsingDELETE.');
5572
+ throw new Error('Required parameter id was null or undefined when calling deleteSettingsUsingPOST.');
5573
5573
  }
5574
5574
  let headers = this.defaultHeaders;
5575
5575
  if (reqId !== undefined && reqId !== null) {
@@ -5587,8 +5587,10 @@ class DCOVideoSettingsControllerService {
5587
5587
  headers = headers.set('Accept', httpHeaderAcceptSelected);
5588
5588
  }
5589
5589
  // to determine the Content-Type header
5590
- const consumes = [];
5591
- return this.httpClient.delete(`${this.basePath}/v2/api/dcovideo/settings/${encodeURIComponent(String(id))}`, {
5590
+ const consumes = [
5591
+ 'application/json'
5592
+ ];
5593
+ return this.httpClient.post(`${this.basePath}/v2/api/dcovideo/settings/${encodeURIComponent(String(id))}/archive`, null, {
5592
5594
  withCredentials: this.configuration.withCredentials,
5593
5595
  headers: headers,
5594
5596
  observe: observe,