@revxui/api-clients-ts 1.1.459 → 1.1.460
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 +12 -16
- package/esm2020/api/dCOVideoSettingsController.service.mjs +18 -70
- package/esm2020/model/dcoVideoAssetUploadResponse.mjs +1 -1
- package/esm2020/model/dcoVideoUploadedAssetDTO.mjs +13 -0
- package/esm2020/model/models.mjs +2 -1
- package/fesm2015/revxui-api-clients-ts.mjs +17 -69
- package/fesm2015/revxui-api-clients-ts.mjs.map +1 -1
- package/fesm2020/revxui-api-clients-ts.mjs +29 -69
- package/fesm2020/revxui-api-clients-ts.mjs.map +1 -1
- package/model/dcoVideoAssetUploadResponse.d.ts +2 -2
- package/model/dcoVideoUploadedAssetDTO.d.ts +15 -0
- package/model/models.d.ts +1 -0
- package/package.json +1 -1
|
@@ -5533,7 +5533,7 @@ class DCOVideoSettingsControllerService {
|
|
|
5533
5533
|
reportProgress: reportProgress
|
|
5534
5534
|
});
|
|
5535
5535
|
}
|
|
5536
|
-
createSettingsUsingPOST(request,
|
|
5536
|
+
createSettingsUsingPOST(request, reqId, token, observe = 'body', reportProgress = false) {
|
|
5537
5537
|
if (request === null || request === undefined) {
|
|
5538
5538
|
throw new Error('Required parameter request was null or undefined when calling createSettingsUsingPOST.');
|
|
5539
5539
|
}
|
|
@@ -5554,40 +5554,13 @@ class DCOVideoSettingsControllerService {
|
|
|
5554
5554
|
}
|
|
5555
5555
|
// to determine the Content-Type header
|
|
5556
5556
|
const consumes = [
|
|
5557
|
-
'
|
|
5557
|
+
'application/json'
|
|
5558
5558
|
];
|
|
5559
|
-
const
|
|
5560
|
-
|
|
5561
|
-
|
|
5562
|
-
let convertFormParamsToString = false;
|
|
5563
|
-
// use FormData to transmit files using content-type "multipart/form-data"
|
|
5564
|
-
// see https://stackoverflow.com/questions/4007969/application-x-www-form-urlencoded-or-multipart-form-data
|
|
5565
|
-
useForm = canConsumeForm;
|
|
5566
|
-
// use FormData to transmit files using content-type "multipart/form-data"
|
|
5567
|
-
// see https://stackoverflow.com/questions/4007969/application-x-www-form-urlencoded-or-multipart-form-data
|
|
5568
|
-
useForm = canConsumeForm;
|
|
5569
|
-
// use FormData to transmit files using content-type "multipart/form-data"
|
|
5570
|
-
// see https://stackoverflow.com/questions/4007969/application-x-www-form-urlencoded-or-multipart-form-data
|
|
5571
|
-
useForm = canConsumeForm;
|
|
5572
|
-
if (useForm) {
|
|
5573
|
-
formParams = new FormData();
|
|
5574
|
-
}
|
|
5575
|
-
else {
|
|
5576
|
-
formParams = new HttpParams({ encoder: new CustomHttpUrlEncodingCodec() });
|
|
5577
|
-
}
|
|
5578
|
-
if (file_BACKGROUND_IMAGE !== undefined) {
|
|
5579
|
-
formParams = formParams.append('file_BACKGROUND_IMAGE', file_BACKGROUND_IMAGE) || formParams;
|
|
5580
|
-
}
|
|
5581
|
-
if (file_PROMO_BANNER !== undefined) {
|
|
5582
|
-
formParams = formParams.append('file_PROMO_BANNER', file_PROMO_BANNER) || formParams;
|
|
5583
|
-
}
|
|
5584
|
-
if (file_PROMO_VIDEO !== undefined) {
|
|
5585
|
-
formParams = formParams.append('file_PROMO_VIDEO', file_PROMO_VIDEO) || formParams;
|
|
5586
|
-
}
|
|
5587
|
-
if (request !== undefined) {
|
|
5588
|
-
formParams = formParams.append('request', request) || formParams;
|
|
5559
|
+
const httpContentTypeSelected = this.configuration.selectHeaderContentType(consumes);
|
|
5560
|
+
if (httpContentTypeSelected != undefined) {
|
|
5561
|
+
headers = headers.set('Content-Type', httpContentTypeSelected);
|
|
5589
5562
|
}
|
|
5590
|
-
return this.httpClient.post(`${this.basePath}/v2/api/dcovideo/settings`,
|
|
5563
|
+
return this.httpClient.post(`${this.basePath}/v2/api/dcovideo/settings`, request, {
|
|
5591
5564
|
withCredentials: this.configuration.withCredentials,
|
|
5592
5565
|
headers: headers,
|
|
5593
5566
|
observe: observe,
|
|
@@ -5825,13 +5798,17 @@ class DCOVideoSettingsControllerService {
|
|
|
5825
5798
|
reportProgress: reportProgress
|
|
5826
5799
|
});
|
|
5827
5800
|
}
|
|
5828
|
-
updateSettingsUsingPOST(id, request,
|
|
5801
|
+
updateSettingsUsingPOST(id, request, regenerateSample, reqId, token, observe = 'body', reportProgress = false) {
|
|
5829
5802
|
if (id === null || id === undefined) {
|
|
5830
5803
|
throw new Error('Required parameter id was null or undefined when calling updateSettingsUsingPOST.');
|
|
5831
5804
|
}
|
|
5832
5805
|
if (request === null || request === undefined) {
|
|
5833
5806
|
throw new Error('Required parameter request was null or undefined when calling updateSettingsUsingPOST.');
|
|
5834
5807
|
}
|
|
5808
|
+
let queryParameters = new HttpParams({ encoder: new CustomHttpUrlEncodingCodec() });
|
|
5809
|
+
if (regenerateSample !== undefined && regenerateSample !== null) {
|
|
5810
|
+
queryParameters = queryParameters.set('regenerateSample', regenerateSample);
|
|
5811
|
+
}
|
|
5835
5812
|
let headers = this.defaultHeaders;
|
|
5836
5813
|
if (reqId !== undefined && reqId !== null) {
|
|
5837
5814
|
headers = headers.set('reqId', String(reqId));
|
|
@@ -5849,43 +5826,14 @@ class DCOVideoSettingsControllerService {
|
|
|
5849
5826
|
}
|
|
5850
5827
|
// to determine the Content-Type header
|
|
5851
5828
|
const consumes = [
|
|
5852
|
-
'
|
|
5829
|
+
'application/json'
|
|
5853
5830
|
];
|
|
5854
|
-
const
|
|
5855
|
-
|
|
5856
|
-
|
|
5857
|
-
let convertFormParamsToString = false;
|
|
5858
|
-
// use FormData to transmit files using content-type "multipart/form-data"
|
|
5859
|
-
// see https://stackoverflow.com/questions/4007969/application-x-www-form-urlencoded-or-multipart-form-data
|
|
5860
|
-
useForm = canConsumeForm;
|
|
5861
|
-
// use FormData to transmit files using content-type "multipart/form-data"
|
|
5862
|
-
// see https://stackoverflow.com/questions/4007969/application-x-www-form-urlencoded-or-multipart-form-data
|
|
5863
|
-
useForm = canConsumeForm;
|
|
5864
|
-
// use FormData to transmit files using content-type "multipart/form-data"
|
|
5865
|
-
// see https://stackoverflow.com/questions/4007969/application-x-www-form-urlencoded-or-multipart-form-data
|
|
5866
|
-
useForm = canConsumeForm;
|
|
5867
|
-
if (useForm) {
|
|
5868
|
-
formParams = new FormData();
|
|
5869
|
-
}
|
|
5870
|
-
else {
|
|
5871
|
-
formParams = new HttpParams({ encoder: new CustomHttpUrlEncodingCodec() });
|
|
5872
|
-
}
|
|
5873
|
-
if (file_BACKGROUND_IMAGE !== undefined) {
|
|
5874
|
-
formParams = formParams.append('file_BACKGROUND_IMAGE', file_BACKGROUND_IMAGE) || formParams;
|
|
5875
|
-
}
|
|
5876
|
-
if (file_PROMO_BANNER !== undefined) {
|
|
5877
|
-
formParams = formParams.append('file_PROMO_BANNER', file_PROMO_BANNER) || formParams;
|
|
5878
|
-
}
|
|
5879
|
-
if (file_PROMO_VIDEO !== undefined) {
|
|
5880
|
-
formParams = formParams.append('file_PROMO_VIDEO', file_PROMO_VIDEO) || formParams;
|
|
5881
|
-
}
|
|
5882
|
-
if (regenerateSample !== undefined) {
|
|
5883
|
-
formParams = formParams.append('regenerateSample', regenerateSample) || formParams;
|
|
5884
|
-
}
|
|
5885
|
-
if (request !== undefined) {
|
|
5886
|
-
formParams = formParams.append('request', request) || formParams;
|
|
5831
|
+
const httpContentTypeSelected = this.configuration.selectHeaderContentType(consumes);
|
|
5832
|
+
if (httpContentTypeSelected != undefined) {
|
|
5833
|
+
headers = headers.set('Content-Type', httpContentTypeSelected);
|
|
5887
5834
|
}
|
|
5888
|
-
return this.httpClient.post(`${this.basePath}/v2/api/dcovideo/settings/${encodeURIComponent(String(id))}`,
|
|
5835
|
+
return this.httpClient.post(`${this.basePath}/v2/api/dcovideo/settings/${encodeURIComponent(String(id))}`, request, {
|
|
5836
|
+
params: queryParameters,
|
|
5889
5837
|
withCredentials: this.configuration.withCredentials,
|
|
5890
5838
|
headers: headers,
|
|
5891
5839
|
observe: observe,
|
|
@@ -12404,6 +12352,18 @@ var DcoVideoAssetDTO;
|
|
|
12404
12352
|
* Do not edit the class manually.
|
|
12405
12353
|
*/
|
|
12406
12354
|
|
|
12355
|
+
/**
|
|
12356
|
+
* Api Documentation
|
|
12357
|
+
* Api Documentation
|
|
12358
|
+
*
|
|
12359
|
+
* OpenAPI spec version: 1.0
|
|
12360
|
+
*
|
|
12361
|
+
*
|
|
12362
|
+
* NOTE: This class is auto generated by the swagger code generator program.
|
|
12363
|
+
* https://github.com/swagger-api/swagger-codegen.git
|
|
12364
|
+
* Do not edit the class manually.
|
|
12365
|
+
*/
|
|
12366
|
+
|
|
12407
12367
|
/**
|
|
12408
12368
|
* Api Documentation
|
|
12409
12369
|
* Api Documentation
|