@revxui/api-clients-ts 0.10.288 → 0.10.289
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/creativeSetsController.service.d.ts +3 -4
- package/bundles/revxui-api-clients-ts.umd.js +2 -5
- package/bundles/revxui-api-clients-ts.umd.js.map +1 -1
- package/bundles/revxui-api-clients-ts.umd.min.js +1 -1
- package/bundles/revxui-api-clients-ts.umd.min.js.map +1 -1
- package/esm2015/api/creativeSetsController.service.js +3 -6
- package/esm2015/model/bulkEditCreativeSetsListDTO.js +1 -1
- package/esm2015/model/bulkEditCreativeSetsResponse.js +1 -1
- package/esm2015/model/creative.js +1 -1
- package/esm2015/model/failedDTO.js +12 -0
- package/esm2015/model/models.js +1 -1
- package/esm5/api/creativeSetsController.service.js +3 -6
- package/esm5/model/bulkEditCreativeSetsListDTO.js +1 -1
- package/esm5/model/bulkEditCreativeSetsResponse.js +1 -1
- package/esm5/model/creative.js +1 -1
- package/esm5/model/failedDTO.js +12 -0
- package/esm5/model/models.js +1 -1
- package/fesm2015/revxui-api-clients-ts.js +2 -5
- package/fesm2015/revxui-api-clients-ts.js.map +1 -1
- package/fesm5/revxui-api-clients-ts.js +2 -5
- package/fesm5/revxui-api-clients-ts.js.map +1 -1
- package/model/bulkEditCreativeSetsListDTO.d.ts +2 -3
- package/model/bulkEditCreativeSetsResponse.d.ts +2 -1
- package/model/creative.d.ts +1 -0
- package/model/failedDTO.d.ts +16 -0
- package/model/models.d.ts +1 -0
- package/package.json +1 -1
- package/revxui-api-clients-ts.metadata.json +1 -1
|
@@ -3773,15 +3773,12 @@ var CreativeSetsControllerService = /** @class */ (function () {
|
|
|
3773
3773
|
reportProgress: reportProgress
|
|
3774
3774
|
});
|
|
3775
3775
|
};
|
|
3776
|
-
CreativeSetsControllerService.prototype.getCreativesPerformanceUsingPOST = function (dashboardRequest,
|
|
3776
|
+
CreativeSetsControllerService.prototype.getCreativesPerformanceUsingPOST = function (dashboardRequest, refresh, reqId, token, observe, reportProgress) {
|
|
3777
3777
|
if (observe === void 0) { observe = 'body'; }
|
|
3778
3778
|
if (reportProgress === void 0) { reportProgress = false; }
|
|
3779
3779
|
if (dashboardRequest === null || dashboardRequest === undefined) {
|
|
3780
3780
|
throw new Error('Required parameter dashboardRequest was null or undefined when calling getCreativesPerformanceUsingPOST.');
|
|
3781
3781
|
}
|
|
3782
|
-
if (id === null || id === undefined) {
|
|
3783
|
-
throw new Error('Required parameter id was null or undefined when calling getCreativesPerformanceUsingPOST.');
|
|
3784
|
-
}
|
|
3785
3782
|
var queryParameters = new HttpParams({ encoder: new CustomHttpUrlEncodingCodec() });
|
|
3786
3783
|
if (refresh !== undefined && refresh !== null) {
|
|
3787
3784
|
queryParameters = queryParameters.set('refresh', refresh);
|
|
@@ -3809,7 +3806,7 @@ var CreativeSetsControllerService = /** @class */ (function () {
|
|
|
3809
3806
|
if (httpContentTypeSelected != undefined) {
|
|
3810
3807
|
headers = headers.set('Content-Type', httpContentTypeSelected);
|
|
3811
3808
|
}
|
|
3812
|
-
return this.httpClient.post(this.basePath + "/v2/api/creativesets/creatives/performance/"
|
|
3809
|
+
return this.httpClient.post(this.basePath + "/v2/api/creativesets/creatives/performance/", dashboardRequest, {
|
|
3813
3810
|
params: queryParameters,
|
|
3814
3811
|
withCredentials: this.configuration.withCredentials,
|
|
3815
3812
|
headers: headers,
|