@revxui/api-clients-ts 1.1.446 → 1.1.447

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@1.1.446
1
+ ## @revxui/api-clients-ts@1.1.447
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@1.1.446 --save
22
+ npm install @revxui/api-clients-ts@1.1.447 --save
23
23
  ```
24
24
 
25
25
  _without publishing (not recommended):_
@@ -8,6 +8,7 @@ import { ApiResponseObjectABTestDTO } from '../model/apiResponseObjectABTestDTO'
8
8
  import { ApiResponseObjectGeoListDTO } from '../model/apiResponseObjectGeoListDTO';
9
9
  import { ApiResponseObjectListStrategy } from '../model/apiResponseObjectListStrategy';
10
10
  import { ApiResponseObjectListStrategyCreativeSetsCloneDataResponse } from '../model/apiResponseObjectListStrategyCreativeSetsCloneDataResponse';
11
+ import { ApiResponseObjectMaplongAdFormatCount } from '../model/apiResponseObjectMaplongAdFormatCount';
11
12
  import { ApiResponseObjectMaplongResponseMessage } from '../model/apiResponseObjectMaplongResponseMessage';
12
13
  import { ApiResponseObjectOptimizationRuleResponse } from '../model/apiResponseObjectOptimizationRuleResponse';
13
14
  import { ApiResponseObjectResponseMessage } from '../model/apiResponseObjectResponseMessage';
@@ -222,6 +223,18 @@ export declare class StrategyControllerService {
222
223
  getABTestExperimentUsingGET(id: number, reqId?: string, token?: string, observe?: 'body', reportProgress?: boolean): Observable<ApiResponseObjectABTestDTO>;
223
224
  getABTestExperimentUsingGET(id: number, reqId?: string, token?: string, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<ApiResponseObjectABTestDTO>>;
224
225
  getABTestExperimentUsingGET(id: number, reqId?: string, token?: string, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<ApiResponseObjectABTestDTO>>;
226
+ /**
227
+ * Api to get ad format counts for strategies
228
+ *
229
+ * @param strategyIds strategyIds
230
+ * @param reqId request id
231
+ * @param token Auth Token
232
+ * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
233
+ * @param reportProgress flag to report request and response progress.
234
+ */
235
+ getAdFormatCountsUsingPOST(strategyIds: Array<number>, reqId?: string, token?: string, observe?: 'body', reportProgress?: boolean): Observable<ApiResponseObjectMaplongAdFormatCount>;
236
+ getAdFormatCountsUsingPOST(strategyIds: Array<number>, reqId?: string, token?: string, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<ApiResponseObjectMaplongAdFormatCount>>;
237
+ getAdFormatCountsUsingPOST(strategyIds: Array<number>, reqId?: string, token?: string, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<ApiResponseObjectMaplongAdFormatCount>>;
225
238
  /**
226
239
  * API to don&#39;t block apps
227
240
  *