@revxui/api-clients-ts 1.1.460 → 1.1.462
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 +15 -2
- package/esm2020/api/dCOVideoSettingsController.service.mjs +29 -1
- package/esm2020/model/apiResponseObjectDcoVideoDeleteResponse.mjs +2 -0
- package/esm2020/model/dcoVideoDeleteResponse.mjs +13 -0
- package/esm2020/model/models.mjs +3 -1
- package/fesm2015/revxui-api-clients-ts.mjs +28 -0
- package/fesm2015/revxui-api-clients-ts.mjs.map +1 -1
- package/fesm2020/revxui-api-clients-ts.mjs +40 -0
- package/fesm2020/revxui-api-clients-ts.mjs.map +1 -1
- package/model/apiResponseObjectDcoVideoDeleteResponse.d.ts +17 -0
- package/model/dcoVideoDeleteResponse.d.ts +17 -0
- package/model/models.d.ts +2 -0
- package/package.json +1 -1
|
@@ -5567,6 +5567,34 @@ class DCOVideoSettingsControllerService {
|
|
|
5567
5567
|
reportProgress: reportProgress
|
|
5568
5568
|
});
|
|
5569
5569
|
}
|
|
5570
|
+
deleteSettingsUsingDELETE(id, reqId, token, observe = 'body', reportProgress = false) {
|
|
5571
|
+
if (id === null || id === undefined) {
|
|
5572
|
+
throw new Error('Required parameter id was null or undefined when calling deleteSettingsUsingDELETE.');
|
|
5573
|
+
}
|
|
5574
|
+
let headers = this.defaultHeaders;
|
|
5575
|
+
if (reqId !== undefined && reqId !== null) {
|
|
5576
|
+
headers = headers.set('reqId', String(reqId));
|
|
5577
|
+
}
|
|
5578
|
+
if (token !== undefined && token !== null) {
|
|
5579
|
+
headers = headers.set('token', String(token));
|
|
5580
|
+
}
|
|
5581
|
+
// to determine the Accept header
|
|
5582
|
+
let httpHeaderAccepts = [
|
|
5583
|
+
'application/json'
|
|
5584
|
+
];
|
|
5585
|
+
const httpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
|
|
5586
|
+
if (httpHeaderAcceptSelected != undefined) {
|
|
5587
|
+
headers = headers.set('Accept', httpHeaderAcceptSelected);
|
|
5588
|
+
}
|
|
5589
|
+
// to determine the Content-Type header
|
|
5590
|
+
const consumes = [];
|
|
5591
|
+
return this.httpClient.delete(`${this.basePath}/v2/api/dcovideo/settings/${encodeURIComponent(String(id))}`, {
|
|
5592
|
+
withCredentials: this.configuration.withCredentials,
|
|
5593
|
+
headers: headers,
|
|
5594
|
+
observe: observe,
|
|
5595
|
+
reportProgress: reportProgress
|
|
5596
|
+
});
|
|
5597
|
+
}
|
|
5570
5598
|
generateSampleUsingPOST(request, reqId, token, observe = 'body', reportProgress = false) {
|
|
5571
5599
|
if (request === null || request === undefined) {
|
|
5572
5600
|
throw new Error('Required parameter request was null or undefined when calling generateSampleUsingPOST.');
|
|
@@ -12364,6 +12392,18 @@ var DcoVideoAssetDTO;
|
|
|
12364
12392
|
* Do not edit the class manually.
|
|
12365
12393
|
*/
|
|
12366
12394
|
|
|
12395
|
+
/**
|
|
12396
|
+
* Api Documentation
|
|
12397
|
+
* Api Documentation
|
|
12398
|
+
*
|
|
12399
|
+
* OpenAPI spec version: 1.0
|
|
12400
|
+
*
|
|
12401
|
+
*
|
|
12402
|
+
* NOTE: This class is auto generated by the swagger code generator program.
|
|
12403
|
+
* https://github.com/swagger-api/swagger-codegen.git
|
|
12404
|
+
* Do not edit the class manually.
|
|
12405
|
+
*/
|
|
12406
|
+
|
|
12367
12407
|
/**
|
|
12368
12408
|
* Api Documentation
|
|
12369
12409
|
* Api Documentation
|