@revxui/api-clients-ts 1.1.472 → 1.1.473
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 +17 -1
- package/esm2020/api/dCOVideoSettingsController.service.mjs +40 -1
- package/esm2020/model/apiResponseObjectDcoVideoSamplesResponse.mjs +2 -0
- package/esm2020/model/dcoVideoErrorDTO.mjs +13 -0
- package/esm2020/model/dcoVideoPaginationDTO.mjs +13 -0
- package/esm2020/model/dcoVideoSampleDTO.mjs +2 -0
- package/esm2020/model/dcoVideoSamplesResponse.mjs +2 -0
- package/esm2020/model/models.mjs +6 -1
- package/fesm2015/revxui-api-clients-ts.mjs +39 -0
- package/fesm2015/revxui-api-clients-ts.mjs.map +1 -1
- package/fesm2020/revxui-api-clients-ts.mjs +63 -0
- package/fesm2020/revxui-api-clients-ts.mjs.map +1 -1
- package/model/apiResponseObjectDcoVideoSamplesResponse.d.ts +17 -0
- package/model/dcoVideoErrorDTO.d.ts +15 -0
- package/model/dcoVideoPaginationDTO.d.ts +19 -0
- package/model/dcoVideoSampleDTO.d.ts +27 -0
- package/model/dcoVideoSamplesResponse.d.ts +18 -0
- package/model/models.d.ts +5 -0
- package/package.json +1 -1
|
@@ -5778,6 +5778,45 @@ class DCOVideoSettingsControllerService {
|
|
|
5778
5778
|
reportProgress: reportProgress
|
|
5779
5779
|
});
|
|
5780
5780
|
}
|
|
5781
|
+
getGeneratedVideosUsingGET(id, page, reqId, size, status, token, observe = 'body', reportProgress = false) {
|
|
5782
|
+
if (id === null || id === undefined) {
|
|
5783
|
+
throw new Error('Required parameter id was null or undefined when calling getGeneratedVideosUsingGET.');
|
|
5784
|
+
}
|
|
5785
|
+
let queryParameters = new HttpParams({ encoder: new CustomHttpUrlEncodingCodec() });
|
|
5786
|
+
if (page !== undefined && page !== null) {
|
|
5787
|
+
queryParameters = queryParameters.set('page', page);
|
|
5788
|
+
}
|
|
5789
|
+
if (size !== undefined && size !== null) {
|
|
5790
|
+
queryParameters = queryParameters.set('size', size);
|
|
5791
|
+
}
|
|
5792
|
+
if (status !== undefined && status !== null) {
|
|
5793
|
+
queryParameters = queryParameters.set('status', status);
|
|
5794
|
+
}
|
|
5795
|
+
let headers = this.defaultHeaders;
|
|
5796
|
+
if (reqId !== undefined && reqId !== null) {
|
|
5797
|
+
headers = headers.set('reqId', String(reqId));
|
|
5798
|
+
}
|
|
5799
|
+
if (token !== undefined && token !== null) {
|
|
5800
|
+
headers = headers.set('token', String(token));
|
|
5801
|
+
}
|
|
5802
|
+
// to determine the Accept header
|
|
5803
|
+
let httpHeaderAccepts = [
|
|
5804
|
+
'application/json'
|
|
5805
|
+
];
|
|
5806
|
+
const httpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
|
|
5807
|
+
if (httpHeaderAcceptSelected != undefined) {
|
|
5808
|
+
headers = headers.set('Accept', httpHeaderAcceptSelected);
|
|
5809
|
+
}
|
|
5810
|
+
// to determine the Content-Type header
|
|
5811
|
+
const consumes = [];
|
|
5812
|
+
return this.httpClient.get(`${this.basePath}/v2/api/dcovideo/settings/${encodeURIComponent(String(id))}/generated-videos`, {
|
|
5813
|
+
params: queryParameters,
|
|
5814
|
+
withCredentials: this.configuration.withCredentials,
|
|
5815
|
+
headers: headers,
|
|
5816
|
+
observe: observe,
|
|
5817
|
+
reportProgress: reportProgress
|
|
5818
|
+
});
|
|
5819
|
+
}
|
|
5781
5820
|
getSettingsUsingGET(advertiserId, includeInactive, reqId, token, observe = 'body', reportProgress = false) {
|
|
5782
5821
|
if (advertiserId === null || advertiserId === undefined) {
|
|
5783
5822
|
throw new Error('Required parameter advertiserId was null or undefined when calling getSettingsUsingGET.');
|
|
@@ -12479,6 +12518,30 @@ var DcoVideoAssetDTO;
|
|
|
12479
12518
|
* Do not edit the class manually.
|
|
12480
12519
|
*/
|
|
12481
12520
|
|
|
12521
|
+
/**
|
|
12522
|
+
* Api Documentation
|
|
12523
|
+
* Api Documentation
|
|
12524
|
+
*
|
|
12525
|
+
* OpenAPI spec version: 1.0
|
|
12526
|
+
*
|
|
12527
|
+
*
|
|
12528
|
+
* NOTE: This class is auto generated by the swagger code generator program.
|
|
12529
|
+
* https://github.com/swagger-api/swagger-codegen.git
|
|
12530
|
+
* Do not edit the class manually.
|
|
12531
|
+
*/
|
|
12532
|
+
|
|
12533
|
+
/**
|
|
12534
|
+
* Api Documentation
|
|
12535
|
+
* Api Documentation
|
|
12536
|
+
*
|
|
12537
|
+
* OpenAPI spec version: 1.0
|
|
12538
|
+
*
|
|
12539
|
+
*
|
|
12540
|
+
* NOTE: This class is auto generated by the swagger code generator program.
|
|
12541
|
+
* https://github.com/swagger-api/swagger-codegen.git
|
|
12542
|
+
* Do not edit the class manually.
|
|
12543
|
+
*/
|
|
12544
|
+
|
|
12482
12545
|
/**
|
|
12483
12546
|
* Api Documentation
|
|
12484
12547
|
* Api Documentation
|