@revxui/api-clients-ts 1.1.415 → 1.1.416
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 +4 -4
- package/esm2020/api/strategyController.service.mjs +4 -4
- 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 -3
- package/fesm2015/revxui-api-clients-ts.mjs.map +1 -1
- package/fesm2020/revxui-api-clients-ts.mjs +3 -3
- package/fesm2020/revxui-api-clients-ts.mjs.map +1 -1
- package/model/audienceStrDeviceDTO.d.ts +2 -0
- package/model/targetObject.d.ts +2 -0
- package/model/targetingObject.d.ts +2 -0
- package/package.json +1 -1
|
@@ -8863,13 +8863,13 @@ class StrategyControllerService {
|
|
|
8863
8863
|
reportProgress: reportProgress
|
|
8864
8864
|
});
|
|
8865
8865
|
}
|
|
8866
|
-
getStrategyByIdUsingGET(id,
|
|
8866
|
+
getStrategyByIdUsingGET(id, expandTargeting, refresh, reqId, token, observe = 'body', reportProgress = false) {
|
|
8867
8867
|
if (id === null || id === undefined) {
|
|
8868
8868
|
throw new Error('Required parameter id was null or undefined when calling getStrategyByIdUsingGET.');
|
|
8869
8869
|
}
|
|
8870
8870
|
let queryParameters = new HttpParams({ encoder: new CustomHttpUrlEncodingCodec() });
|
|
8871
|
-
if (
|
|
8872
|
-
queryParameters = queryParameters.set('
|
|
8871
|
+
if (expandTargeting !== undefined && expandTargeting !== null) {
|
|
8872
|
+
queryParameters = queryParameters.set('expandTargeting', expandTargeting);
|
|
8873
8873
|
}
|
|
8874
8874
|
if (refresh !== undefined && refresh !== null) {
|
|
8875
8875
|
queryParameters = queryParameters.set('refresh', refresh);
|