@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 +2 -2
- package/api/strategyController.service.d.ts +13 -0
- package/esm2020/api/strategyController.service.mjs +35 -1
- package/esm2020/model/adFormatCount.mjs +13 -0
- package/esm2020/model/apiResponseObjectMaplongAdFormatCount.mjs +2 -0
- package/esm2020/model/maplongAdFormatCount.mjs +2 -0
- package/esm2020/model/models.mjs +4 -1
- package/esm2020/model/strategy.mjs +1 -1
- package/esm2020/model/strategyDTO.mjs +1 -1
- package/fesm2015/revxui-api-clients-ts.mjs +34 -0
- package/fesm2015/revxui-api-clients-ts.mjs.map +1 -1
- package/fesm2020/revxui-api-clients-ts.mjs +46 -0
- package/fesm2020/revxui-api-clients-ts.mjs.map +1 -1
- package/model/adFormatCount.d.ts +16 -0
- package/model/apiResponseObjectMaplongAdFormatCount.d.ts +19 -0
- package/model/maplongAdFormatCount.d.ts +15 -0
- package/model/models.d.ts +3 -0
- package/model/strategy.d.ts +2 -0
- package/model/strategyDTO.d.ts +2 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
## @revxui/api-clients-ts@1.1.
|
|
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.
|
|
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't block apps
|
|
227
240
|
*
|