@revxui/api-clients-ts 1.1.413 → 1.1.415
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/customerReportingController.service.d.ts +14 -0
- package/api/strategyController.service.d.ts +4 -3
- package/esm2020/api/customerReportingController.service.mjs +45 -2
- package/esm2020/api/strategyController.service.mjs +5 -2
- package/fesm2015/revxui-api-clients-ts.mjs +46 -1
- package/fesm2015/revxui-api-clients-ts.mjs.map +1 -1
- package/fesm2020/revxui-api-clients-ts.mjs +46 -1
- package/fesm2020/revxui-api-clients-ts.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -5335,6 +5335,48 @@ class CustomerReportingControllerService {
|
|
|
5335
5335
|
reportProgress: reportProgress
|
|
5336
5336
|
});
|
|
5337
5337
|
}
|
|
5338
|
+
singularReportUsingGET(end_date, start_date, adv_ids, reqId, token, observe = 'body', reportProgress = false) {
|
|
5339
|
+
if (end_date === null || end_date === undefined) {
|
|
5340
|
+
throw new Error('Required parameter end_date was null or undefined when calling singularReportUsingGET.');
|
|
5341
|
+
}
|
|
5342
|
+
if (start_date === null || start_date === undefined) {
|
|
5343
|
+
throw new Error('Required parameter start_date was null or undefined when calling singularReportUsingGET.');
|
|
5344
|
+
}
|
|
5345
|
+
let queryParameters = new HttpParams({ encoder: new CustomHttpUrlEncodingCodec() });
|
|
5346
|
+
if (adv_ids !== undefined && adv_ids !== null) {
|
|
5347
|
+
queryParameters = queryParameters.set('adv_ids', adv_ids);
|
|
5348
|
+
}
|
|
5349
|
+
if (end_date !== undefined && end_date !== null) {
|
|
5350
|
+
queryParameters = queryParameters.set('end_date', end_date);
|
|
5351
|
+
}
|
|
5352
|
+
if (start_date !== undefined && start_date !== null) {
|
|
5353
|
+
queryParameters = queryParameters.set('start_date', start_date);
|
|
5354
|
+
}
|
|
5355
|
+
let headers = this.defaultHeaders;
|
|
5356
|
+
if (reqId !== undefined && reqId !== null) {
|
|
5357
|
+
headers = headers.set('reqId', String(reqId));
|
|
5358
|
+
}
|
|
5359
|
+
if (token !== undefined && token !== null) {
|
|
5360
|
+
headers = headers.set('token', String(token));
|
|
5361
|
+
}
|
|
5362
|
+
// to determine the Accept header
|
|
5363
|
+
let httpHeaderAccepts = [
|
|
5364
|
+
'application/json'
|
|
5365
|
+
];
|
|
5366
|
+
const httpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
|
|
5367
|
+
if (httpHeaderAcceptSelected != undefined) {
|
|
5368
|
+
headers = headers.set('Accept', httpHeaderAcceptSelected);
|
|
5369
|
+
}
|
|
5370
|
+
// to determine the Content-Type header
|
|
5371
|
+
const consumes = [];
|
|
5372
|
+
return this.httpClient.get(`${this.basePath}/v2/api/creport/singular`, {
|
|
5373
|
+
params: queryParameters,
|
|
5374
|
+
withCredentials: this.configuration.withCredentials,
|
|
5375
|
+
headers: headers,
|
|
5376
|
+
observe: observe,
|
|
5377
|
+
reportProgress: reportProgress
|
|
5378
|
+
});
|
|
5379
|
+
}
|
|
5338
5380
|
}
|
|
5339
5381
|
CustomerReportingControllerService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: CustomerReportingControllerService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
5340
5382
|
CustomerReportingControllerService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: CustomerReportingControllerService });
|
|
@@ -8871,11 +8913,14 @@ class StrategyControllerService {
|
|
|
8871
8913
|
reportProgress: reportProgress
|
|
8872
8914
|
});
|
|
8873
8915
|
}
|
|
8874
|
-
getStrategyByIdUsingGET(id, refresh, reqId, token, observe = 'body', reportProgress = false) {
|
|
8916
|
+
getStrategyByIdUsingGET(id, fetchAllTargeting, refresh, reqId, token, observe = 'body', reportProgress = false) {
|
|
8875
8917
|
if (id === null || id === undefined) {
|
|
8876
8918
|
throw new Error('Required parameter id was null or undefined when calling getStrategyByIdUsingGET.');
|
|
8877
8919
|
}
|
|
8878
8920
|
let queryParameters = new HttpParams({ encoder: new CustomHttpUrlEncodingCodec() });
|
|
8921
|
+
if (fetchAllTargeting !== undefined && fetchAllTargeting !== null) {
|
|
8922
|
+
queryParameters = queryParameters.set('fetchAllTargeting', fetchAllTargeting);
|
|
8923
|
+
}
|
|
8879
8924
|
if (refresh !== undefined && refresh !== null) {
|
|
8880
8925
|
queryParameters = queryParameters.set('refresh', refresh);
|
|
8881
8926
|
}
|