@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 CHANGED
@@ -1,4 +1,4 @@
1
- ## @revxui/api-clients-ts@0.10.288
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.288 --save
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, id: number, refresh?: boolean, reqId?: string, token?: string, observe?: 'body', reportProgress?: boolean): Observable<ApiResponseObjectDashboardResponse>;
140
- getCreativesPerformanceUsingPOST(dashboardRequest: DashboardRequest, id: number, refresh?: boolean, reqId?: string, token?: string, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<ApiResponseObjectDashboardResponse>>;
141
- getCreativesPerformanceUsingPOST(dashboardRequest: DashboardRequest, id: number, refresh?: boolean, reqId?: string, token?: string, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<ApiResponseObjectDashboardResponse>>;
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, id, refresh, reqId, token, observe, reportProgress) {
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/" + encodeURIComponent(String(id)), dashboardRequest, {
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,