@revxui/api-clients-ts 1.1.418 → 1.1.420
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 +3 -4
- package/esm2020/api/strategyController.service.mjs +2 -5
- package/esm2020/model/aBTestingVariantDTO.mjs +3 -2
- package/esm2020/model/audienceStrDeviceDTO.mjs +1 -1
- package/esm2020/model/targetObject.mjs +1 -1
- package/esm2020/model/targetingObject.mjs +1 -1
- package/fesm2015/revxui-api-clients-ts.mjs +3 -5
- package/fesm2015/revxui-api-clients-ts.mjs.map +1 -1
- package/fesm2020/revxui-api-clients-ts.mjs +3 -5
- package/fesm2020/revxui-api-clients-ts.mjs.map +1 -1
- package/model/aBTestingVariantDTO.d.ts +2 -1
- package/model/audienceStrDeviceDTO.d.ts +0 -2
- package/model/targetObject.d.ts +0 -2
- package/model/targetingObject.d.ts +0 -2
- 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.420
|
|
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.420 --save
|
|
23
23
|
```
|
|
24
24
|
|
|
25
25
|
_without publishing (not recommended):_
|
|
@@ -261,16 +261,15 @@ export declare class StrategyControllerService {
|
|
|
261
261
|
* Api to get Startegy by Id
|
|
262
262
|
*
|
|
263
263
|
* @param id id
|
|
264
|
-
* @param expandTargeting expandTargeting
|
|
265
264
|
* @param refresh refresh
|
|
266
265
|
* @param reqId request id
|
|
267
266
|
* @param token Auth Token
|
|
268
267
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
269
268
|
* @param reportProgress flag to report request and response progress.
|
|
270
269
|
*/
|
|
271
|
-
getStrategyByIdUsingGET(id: number,
|
|
272
|
-
getStrategyByIdUsingGET(id: number,
|
|
273
|
-
getStrategyByIdUsingGET(id: number,
|
|
270
|
+
getStrategyByIdUsingGET(id: number, refresh?: boolean, reqId?: string, token?: string, observe?: 'body', reportProgress?: boolean): Observable<ApiResponseObjectStrategyDTO>;
|
|
271
|
+
getStrategyByIdUsingGET(id: number, refresh?: boolean, reqId?: string, token?: string, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<ApiResponseObjectStrategyDTO>>;
|
|
272
|
+
getStrategyByIdUsingGET(id: number, refresh?: boolean, reqId?: string, token?: string, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<ApiResponseObjectStrategyDTO>>;
|
|
274
273
|
/**
|
|
275
274
|
* Api to get Startegy Quick Edit Details by Id
|
|
276
275
|
*
|