@revxui/api-clients-ts 1.1.468 → 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.
- package/README.md +2 -2
- package/api/dCOVideoSettingsController.service.d.ts +4 -4
- package/esm2020/api/dCOVideoSettingsController.service.mjs +7 -5
- package/fesm2015/revxui-api-clients-ts.mjs +6 -4
- package/fesm2015/revxui-api-clients-ts.mjs.map +1 -1
- package/fesm2020/revxui-api-clients-ts.mjs +6 -4
- package/fesm2020/revxui-api-clients-ts.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -5567,9 +5567,9 @@ class DCOVideoSettingsControllerService {
|
|
|
5567
5567
|
reportProgress: reportProgress
|
|
5568
5568
|
});
|
|
5569
5569
|
}
|
|
5570
|
-
|
|
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
|
|
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
|
-
|
|
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,
|