@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
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
## @revxui/api-clients-ts@0.10.
|
|
1
|
+
## @revxui/api-clients-ts@0.10.289
|
|
2
2
|
|
|
3
3
|
### Building
|
|
4
4
|
|
|
@@ -19,7 +19,7 @@ Navigate to the folder of your consuming project and run one of next commands.
|
|
|
19
19
|
_published:_
|
|
20
20
|
|
|
21
21
|
```
|
|
22
|
-
npm install @revxui/api-clients-ts@0.10.
|
|
22
|
+
npm install @revxui/api-clients-ts@0.10.289 --save
|
|
23
23
|
```
|
|
24
24
|
|
|
25
25
|
_without publishing (not recommended):_
|
|
@@ -129,16 +129,15 @@ export declare class CreativeSetsControllerService {
|
|
|
129
129
|
* Api to get individual creative performance
|
|
130
130
|
*
|
|
131
131
|
* @param dashboardRequest dashboardRequest
|
|
132
|
-
* @param id id
|
|
133
132
|
* @param refresh refresh
|
|
134
133
|
* @param reqId request id
|
|
135
134
|
* @param token Auth Token
|
|
136
135
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
137
136
|
* @param reportProgress flag to report request and response progress.
|
|
138
137
|
*/
|
|
139
|
-
getCreativesPerformanceUsingPOST(dashboardRequest: DashboardRequest,
|
|
140
|
-
getCreativesPerformanceUsingPOST(dashboardRequest: DashboardRequest,
|
|
141
|
-
getCreativesPerformanceUsingPOST(dashboardRequest: DashboardRequest,
|
|
138
|
+
getCreativesPerformanceUsingPOST(dashboardRequest: DashboardRequest, refresh?: boolean, reqId?: string, token?: string, observe?: 'body', reportProgress?: boolean): Observable<ApiResponseObjectDashboardResponse>;
|
|
139
|
+
getCreativesPerformanceUsingPOST(dashboardRequest: DashboardRequest, refresh?: boolean, reqId?: string, token?: string, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<ApiResponseObjectDashboardResponse>>;
|
|
140
|
+
getCreativesPerformanceUsingPOST(dashboardRequest: DashboardRequest, refresh?: boolean, reqId?: string, token?: string, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<ApiResponseObjectDashboardResponse>>;
|
|
142
141
|
/**
|
|
143
142
|
* Api to get individual creative set performance
|
|
144
143
|
*
|
|
@@ -3994,15 +3994,12 @@
|
|
|
3994
3994
|
reportProgress: reportProgress
|
|
3995
3995
|
});
|
|
3996
3996
|
};
|
|
3997
|
-
CreativeSetsControllerService.prototype.getCreativesPerformanceUsingPOST = function (dashboardRequest,
|
|
3997
|
+
CreativeSetsControllerService.prototype.getCreativesPerformanceUsingPOST = function (dashboardRequest, refresh, reqId, token, observe, reportProgress) {
|
|
3998
3998
|
if (observe === void 0) { observe = 'body'; }
|
|
3999
3999
|
if (reportProgress === void 0) { reportProgress = false; }
|
|
4000
4000
|
if (dashboardRequest === null || dashboardRequest === undefined) {
|
|
4001
4001
|
throw new Error('Required parameter dashboardRequest was null or undefined when calling getCreativesPerformanceUsingPOST.');
|
|
4002
4002
|
}
|
|
4003
|
-
if (id === null || id === undefined) {
|
|
4004
|
-
throw new Error('Required parameter id was null or undefined when calling getCreativesPerformanceUsingPOST.');
|
|
4005
|
-
}
|
|
4006
4003
|
var queryParameters = new http.HttpParams({ encoder: new CustomHttpUrlEncodingCodec() });
|
|
4007
4004
|
if (refresh !== undefined && refresh !== null) {
|
|
4008
4005
|
queryParameters = queryParameters.set('refresh', refresh);
|
|
@@ -4030,7 +4027,7 @@
|
|
|
4030
4027
|
if (httpContentTypeSelected != undefined) {
|
|
4031
4028
|
headers = headers.set('Content-Type', httpContentTypeSelected);
|
|
4032
4029
|
}
|
|
4033
|
-
return this.httpClient.post(this.basePath + "/v2/api/creativesets/creatives/performance/"
|
|
4030
|
+
return this.httpClient.post(this.basePath + "/v2/api/creativesets/creatives/performance/", dashboardRequest, {
|
|
4034
4031
|
params: queryParameters,
|
|
4035
4032
|
withCredentials: this.configuration.withCredentials,
|
|
4036
4033
|
headers: headers,
|