@revxui/api-clients-ts 0.10.278 → 0.10.280

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.
Files changed (61) hide show
  1. package/README.md +2 -2
  2. package/api/campaignController.service.d.ts +14 -0
  3. package/api/dashboardController.service.d.ts +7 -7
  4. package/bundles/revxui-api-clients-ts.umd.js +36 -0
  5. package/bundles/revxui-api-clients-ts.umd.js.map +1 -1
  6. package/bundles/revxui-api-clients-ts.umd.min.js +1 -1
  7. package/bundles/revxui-api-clients-ts.umd.min.js.map +1 -1
  8. package/esm2015/api/campaignController.service.js +35 -1
  9. package/esm2015/api/dashboardController.service.js +1 -1
  10. package/esm2015/model/campaignDTO.js +1 -1
  11. package/esm2015/model/campaignESDTO.js +1 -1
  12. package/esm2015/model/clickDestination.js +1 -1
  13. package/esm2015/model/creative.js +1 -1
  14. package/esm2015/model/creativeDTO.js +1 -1
  15. package/esm2015/model/creativeFileForSet.js +1 -1
  16. package/esm2015/model/creativeFiles.js +1 -1
  17. package/esm2015/model/creativeSetDashboardMetric.js +1 -1
  18. package/esm2015/model/creativeSetDetails.js +1 -1
  19. package/esm2015/model/creativeSetRequest.js +1 -1
  20. package/esm2015/model/incrementalityReportDTO.js +12 -0
  21. package/esm2015/model/incrementalityReportResponse.js +12 -0
  22. package/esm2015/model/incrementalityResponse.js +1 -0
  23. package/esm2015/model/models.js +1 -1
  24. package/esm5/api/campaignController.service.js +37 -1
  25. package/esm5/api/dashboardController.service.js +1 -1
  26. package/esm5/model/campaignDTO.js +1 -1
  27. package/esm5/model/campaignESDTO.js +1 -1
  28. package/esm5/model/clickDestination.js +1 -1
  29. package/esm5/model/creative.js +1 -1
  30. package/esm5/model/creativeDTO.js +1 -1
  31. package/esm5/model/creativeFileForSet.js +1 -1
  32. package/esm5/model/creativeFiles.js +1 -1
  33. package/esm5/model/creativeSetDashboardMetric.js +1 -1
  34. package/esm5/model/creativeSetDetails.js +1 -1
  35. package/esm5/model/creativeSetRequest.js +1 -1
  36. package/esm5/model/incrementalityReportDTO.js +12 -0
  37. package/esm5/model/incrementalityReportResponse.js +12 -0
  38. package/esm5/model/incrementalityResponse.js +1 -0
  39. package/esm5/model/models.js +1 -1
  40. package/fesm2015/revxui-api-clients-ts.js +34 -0
  41. package/fesm2015/revxui-api-clients-ts.js.map +1 -1
  42. package/fesm5/revxui-api-clients-ts.js +36 -0
  43. package/fesm5/revxui-api-clients-ts.js.map +1 -1
  44. package/model/campaignDTO.d.ts +4 -0
  45. package/model/campaignESDTO.d.ts +2 -0
  46. package/model/clickDestination.d.ts +1 -0
  47. package/model/creative.d.ts +2 -0
  48. package/model/creativeDTO.d.ts +2 -0
  49. package/model/creativeFileForSet.d.ts +2 -0
  50. package/model/creativeFiles.d.ts +2 -0
  51. package/model/creativeSetDashboardMetric.d.ts +1 -0
  52. package/model/creativeSetDetails.d.ts +1 -0
  53. package/model/creativeSetRequest.d.ts +1 -0
  54. package/model/{apiResponseObjectListMapintResponseMessage.d.ts → incrementalityReportDTO.d.ts} +5 -5
  55. package/model/incrementalityReportResponse.d.ts +24 -0
  56. package/model/incrementalityResponse.d.ts +17 -0
  57. package/model/models.d.ts +3 -1
  58. package/package.json +1 -1
  59. package/revxui-api-clients-ts.metadata.json +1 -1
  60. package/esm2015/model/apiResponseObjectListMapintResponseMessage.js +0 -1
  61. package/esm5/model/apiResponseObjectListMapintResponseMessage.js +0 -1
package/README.md CHANGED
@@ -1,4 +1,4 @@
1
- ## @revxui/api-clients-ts@0.10.278
1
+ ## @revxui/api-clients-ts@0.10.280
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@0.10.278 --save
22
+ npm install @revxui/api-clients-ts@0.10.280 --save
23
23
  ```
24
24
 
25
25
  _without publishing (not recommended):_
@@ -15,6 +15,8 @@ import { ApiResponseObjectCampaignDTO } from '../model/apiResponseObjectCampaign
15
15
  import { ApiResponseObjectListCampaignDTO } from '../model/apiResponseObjectListCampaignDTO';
16
16
  import { ApiResponseObjectMapintResponseMessage } from '../model/apiResponseObjectMapintResponseMessage';
17
17
  import { CampaignDTO } from '../model/campaignDTO';
18
+ import { IncrementalityReportDTO } from '../model/incrementalityReportDTO';
19
+ import { IncrementalityResponse } from '../model/incrementalityResponse';
18
20
  import { Configuration } from '../configuration';
19
21
  export declare class CampaignControllerService {
20
22
  protected httpClient: HttpClient;
@@ -90,6 +92,18 @@ export declare class CampaignControllerService {
90
92
  getCampaignByIdUsingGET(id: number, refresh?: boolean, reqId?: string, token?: string, observe?: 'body', reportProgress?: boolean): Observable<ApiResponseObjectCampaignDTO>;
91
93
  getCampaignByIdUsingGET(id: number, refresh?: boolean, reqId?: string, token?: string, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<ApiResponseObjectCampaignDTO>>;
92
94
  getCampaignByIdUsingGET(id: number, refresh?: boolean, reqId?: string, token?: string, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<ApiResponseObjectCampaignDTO>>;
95
+ /**
96
+ * Api to fetch incrementality report
97
+ *
98
+ * @param incrementalityReportDTO incrementalityReportDTO
99
+ * @param reqId request id
100
+ * @param token Auth Token
101
+ * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
102
+ * @param reportProgress flag to report request and response progress.
103
+ */
104
+ incrementalityReportUsingPOST(incrementalityReportDTO: IncrementalityReportDTO, reqId?: string, token?: string, observe?: 'body', reportProgress?: boolean): Observable<IncrementalityResponse>;
105
+ incrementalityReportUsingPOST(incrementalityReportDTO: IncrementalityReportDTO, reqId?: string, token?: string, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<IncrementalityResponse>>;
106
+ incrementalityReportUsingPOST(incrementalityReportDTO: IncrementalityReportDTO, reqId?: string, token?: string, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<IncrementalityResponse>>;
93
107
  /**
94
108
  * Api to update Campaign
95
109
  *
@@ -18,8 +18,8 @@ import { ApiResponseObjectDictionaryResponse } from '../model/apiResponseObjectD
18
18
  import { ApiResponseObjectEResponseobject } from '../model/apiResponseObjectEResponseobject';
19
19
  import { ApiResponseObjectFileDownloadResponse } from '../model/apiResponseObjectFileDownloadResponse';
20
20
  import { ApiResponseObjectListBaseModel } from '../model/apiResponseObjectListBaseModel';
21
- import { ApiResponseObjectListMapintResponseMessage } from '../model/apiResponseObjectListMapintResponseMessage';
22
21
  import { ApiResponseObjectListMenuCrubResponse } from '../model/apiResponseObjectListMenuCrubResponse';
22
+ import { ApiResponseObjectMapintResponseMessage } from '../model/apiResponseObjectMapintResponseMessage';
23
23
  import { ApiResponseObjectMenuCrubResponse } from '../model/apiResponseObjectMenuCrubResponse';
24
24
  import { ApiResponseObjectParentBasedObject } from '../model/apiResponseObjectParentBasedObject';
25
25
  import { DashboardRequest } from '../model/dashboardRequest';
@@ -46,9 +46,9 @@ export declare class DashboardControllerService {
46
46
  * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
47
47
  * @param reportProgress flag to report request and response progress.
48
48
  */
49
- archiveEntitiesUsingPOST(id: Array<number>, tableEntity: 'LICENSEE' | 'ADVERTISER' | 'CAMPAIGN' | 'STRATEGY' | 'CREATIVE' | 'AGGREGATOR' | 'AUDIENCE' | 'APP_AUDIENCE' | 'WEB_AUDIENCE' | 'DMP_AUDIENCE' | 'PIXEL' | 'SITE' | 'COUNTRY' | 'STATE' | 'CITY' | 'OS' | 'PRICING' | 'CURRENCY' | 'LANGUAGE' | 'TIMEZONE' | 'CATEGORY' | 'MMP' | 'CDTYPE' | 'CDSUBTYPE' | 'DEVICE' | 'DELIVERY_PRIORITY' | 'PACING_TYPE' | 'OS_VERSION' | 'DEVICE_MODEL' | 'DEVICE_BRAND' | 'SOURCE_TYPE' | 'PLATFORM' | 'APP_CATEGORY' | 'BROWSER' | 'CALL_TO_ACTION' | 'CREATIVE_SIZE' | 'DEAL_CATEGORY' | 'ADVERTISER_REGION' | 'CLICK_DESTINATION' | 'ADVERTISER_LOGO' | 'LOSS_REASON_CODES' | 'CREATIVE_SET' | 'USER_FREQUENCY_BUCKET_MAPPING' | 'CREATIVE_SET_TYPE', reqId?: string, token?: string, observe?: 'body', reportProgress?: boolean): Observable<ApiResponseObjectListMapintResponseMessage>;
50
- archiveEntitiesUsingPOST(id: Array<number>, tableEntity: 'LICENSEE' | 'ADVERTISER' | 'CAMPAIGN' | 'STRATEGY' | 'CREATIVE' | 'AGGREGATOR' | 'AUDIENCE' | 'APP_AUDIENCE' | 'WEB_AUDIENCE' | 'DMP_AUDIENCE' | 'PIXEL' | 'SITE' | 'COUNTRY' | 'STATE' | 'CITY' | 'OS' | 'PRICING' | 'CURRENCY' | 'LANGUAGE' | 'TIMEZONE' | 'CATEGORY' | 'MMP' | 'CDTYPE' | 'CDSUBTYPE' | 'DEVICE' | 'DELIVERY_PRIORITY' | 'PACING_TYPE' | 'OS_VERSION' | 'DEVICE_MODEL' | 'DEVICE_BRAND' | 'SOURCE_TYPE' | 'PLATFORM' | 'APP_CATEGORY' | 'BROWSER' | 'CALL_TO_ACTION' | 'CREATIVE_SIZE' | 'DEAL_CATEGORY' | 'ADVERTISER_REGION' | 'CLICK_DESTINATION' | 'ADVERTISER_LOGO' | 'LOSS_REASON_CODES' | 'CREATIVE_SET' | 'USER_FREQUENCY_BUCKET_MAPPING' | 'CREATIVE_SET_TYPE', reqId?: string, token?: string, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<ApiResponseObjectListMapintResponseMessage>>;
51
- archiveEntitiesUsingPOST(id: Array<number>, tableEntity: 'LICENSEE' | 'ADVERTISER' | 'CAMPAIGN' | 'STRATEGY' | 'CREATIVE' | 'AGGREGATOR' | 'AUDIENCE' | 'APP_AUDIENCE' | 'WEB_AUDIENCE' | 'DMP_AUDIENCE' | 'PIXEL' | 'SITE' | 'COUNTRY' | 'STATE' | 'CITY' | 'OS' | 'PRICING' | 'CURRENCY' | 'LANGUAGE' | 'TIMEZONE' | 'CATEGORY' | 'MMP' | 'CDTYPE' | 'CDSUBTYPE' | 'DEVICE' | 'DELIVERY_PRIORITY' | 'PACING_TYPE' | 'OS_VERSION' | 'DEVICE_MODEL' | 'DEVICE_BRAND' | 'SOURCE_TYPE' | 'PLATFORM' | 'APP_CATEGORY' | 'BROWSER' | 'CALL_TO_ACTION' | 'CREATIVE_SIZE' | 'DEAL_CATEGORY' | 'ADVERTISER_REGION' | 'CLICK_DESTINATION' | 'ADVERTISER_LOGO' | 'LOSS_REASON_CODES' | 'CREATIVE_SET' | 'USER_FREQUENCY_BUCKET_MAPPING' | 'CREATIVE_SET_TYPE', reqId?: string, token?: string, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<ApiResponseObjectListMapintResponseMessage>>;
49
+ archiveEntitiesUsingPOST(id: Array<number>, tableEntity: 'LICENSEE' | 'ADVERTISER' | 'CAMPAIGN' | 'STRATEGY' | 'CREATIVE' | 'AGGREGATOR' | 'AUDIENCE' | 'APP_AUDIENCE' | 'WEB_AUDIENCE' | 'DMP_AUDIENCE' | 'PIXEL' | 'SITE' | 'COUNTRY' | 'STATE' | 'CITY' | 'OS' | 'PRICING' | 'CURRENCY' | 'LANGUAGE' | 'TIMEZONE' | 'CATEGORY' | 'MMP' | 'CDTYPE' | 'CDSUBTYPE' | 'DEVICE' | 'DELIVERY_PRIORITY' | 'PACING_TYPE' | 'OS_VERSION' | 'DEVICE_MODEL' | 'DEVICE_BRAND' | 'SOURCE_TYPE' | 'PLATFORM' | 'APP_CATEGORY' | 'BROWSER' | 'CALL_TO_ACTION' | 'CREATIVE_SIZE' | 'DEAL_CATEGORY' | 'ADVERTISER_REGION' | 'CLICK_DESTINATION' | 'ADVERTISER_LOGO' | 'LOSS_REASON_CODES' | 'CREATIVE_SET' | 'USER_FREQUENCY_BUCKET_MAPPING' | 'CREATIVE_SET_TYPE', reqId?: string, token?: string, observe?: 'body', reportProgress?: boolean): Observable<ApiResponseObjectMapintResponseMessage>;
50
+ archiveEntitiesUsingPOST(id: Array<number>, tableEntity: 'LICENSEE' | 'ADVERTISER' | 'CAMPAIGN' | 'STRATEGY' | 'CREATIVE' | 'AGGREGATOR' | 'AUDIENCE' | 'APP_AUDIENCE' | 'WEB_AUDIENCE' | 'DMP_AUDIENCE' | 'PIXEL' | 'SITE' | 'COUNTRY' | 'STATE' | 'CITY' | 'OS' | 'PRICING' | 'CURRENCY' | 'LANGUAGE' | 'TIMEZONE' | 'CATEGORY' | 'MMP' | 'CDTYPE' | 'CDSUBTYPE' | 'DEVICE' | 'DELIVERY_PRIORITY' | 'PACING_TYPE' | 'OS_VERSION' | 'DEVICE_MODEL' | 'DEVICE_BRAND' | 'SOURCE_TYPE' | 'PLATFORM' | 'APP_CATEGORY' | 'BROWSER' | 'CALL_TO_ACTION' | 'CREATIVE_SIZE' | 'DEAL_CATEGORY' | 'ADVERTISER_REGION' | 'CLICK_DESTINATION' | 'ADVERTISER_LOGO' | 'LOSS_REASON_CODES' | 'CREATIVE_SET' | 'USER_FREQUENCY_BUCKET_MAPPING' | 'CREATIVE_SET_TYPE', reqId?: string, token?: string, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<ApiResponseObjectMapintResponseMessage>>;
51
+ archiveEntitiesUsingPOST(id: Array<number>, tableEntity: 'LICENSEE' | 'ADVERTISER' | 'CAMPAIGN' | 'STRATEGY' | 'CREATIVE' | 'AGGREGATOR' | 'AUDIENCE' | 'APP_AUDIENCE' | 'WEB_AUDIENCE' | 'DMP_AUDIENCE' | 'PIXEL' | 'SITE' | 'COUNTRY' | 'STATE' | 'CITY' | 'OS' | 'PRICING' | 'CURRENCY' | 'LANGUAGE' | 'TIMEZONE' | 'CATEGORY' | 'MMP' | 'CDTYPE' | 'CDSUBTYPE' | 'DEVICE' | 'DELIVERY_PRIORITY' | 'PACING_TYPE' | 'OS_VERSION' | 'DEVICE_MODEL' | 'DEVICE_BRAND' | 'SOURCE_TYPE' | 'PLATFORM' | 'APP_CATEGORY' | 'BROWSER' | 'CALL_TO_ACTION' | 'CREATIVE_SIZE' | 'DEAL_CATEGORY' | 'ADVERTISER_REGION' | 'CLICK_DESTINATION' | 'ADVERTISER_LOGO' | 'LOSS_REASON_CODES' | 'CREATIVE_SET' | 'USER_FREQUENCY_BUCKET_MAPPING' | 'CREATIVE_SET_TYPE', reqId?: string, token?: string, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<ApiResponseObjectMapintResponseMessage>>;
52
52
  /**
53
53
  * getById
54
54
  *
@@ -236,7 +236,7 @@ export declare class DashboardControllerService {
236
236
  * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
237
237
  * @param reportProgress flag to report request and response progress.
238
238
  */
239
- updateStatusUsingPOST(id: string, status: boolean, tableEntity: 'LICENSEE' | 'ADVERTISER' | 'CAMPAIGN' | 'STRATEGY' | 'CREATIVE' | 'AGGREGATOR' | 'AUDIENCE' | 'APP_AUDIENCE' | 'WEB_AUDIENCE' | 'DMP_AUDIENCE' | 'PIXEL' | 'SITE' | 'COUNTRY' | 'STATE' | 'CITY' | 'OS' | 'PRICING' | 'CURRENCY' | 'LANGUAGE' | 'TIMEZONE' | 'CATEGORY' | 'MMP' | 'CDTYPE' | 'CDSUBTYPE' | 'DEVICE' | 'DELIVERY_PRIORITY' | 'PACING_TYPE' | 'OS_VERSION' | 'DEVICE_MODEL' | 'DEVICE_BRAND' | 'SOURCE_TYPE' | 'PLATFORM' | 'APP_CATEGORY' | 'BROWSER' | 'CALL_TO_ACTION' | 'CREATIVE_SIZE' | 'DEAL_CATEGORY' | 'ADVERTISER_REGION' | 'CLICK_DESTINATION' | 'ADVERTISER_LOGO' | 'LOSS_REASON_CODES' | 'CREATIVE_SET' | 'USER_FREQUENCY_BUCKET_MAPPING' | 'CREATIVE_SET_TYPE', reqId?: string, token?: string, observe?: 'body', reportProgress?: boolean): Observable<ApiResponseObjectListMapintResponseMessage>;
240
- updateStatusUsingPOST(id: string, status: boolean, tableEntity: 'LICENSEE' | 'ADVERTISER' | 'CAMPAIGN' | 'STRATEGY' | 'CREATIVE' | 'AGGREGATOR' | 'AUDIENCE' | 'APP_AUDIENCE' | 'WEB_AUDIENCE' | 'DMP_AUDIENCE' | 'PIXEL' | 'SITE' | 'COUNTRY' | 'STATE' | 'CITY' | 'OS' | 'PRICING' | 'CURRENCY' | 'LANGUAGE' | 'TIMEZONE' | 'CATEGORY' | 'MMP' | 'CDTYPE' | 'CDSUBTYPE' | 'DEVICE' | 'DELIVERY_PRIORITY' | 'PACING_TYPE' | 'OS_VERSION' | 'DEVICE_MODEL' | 'DEVICE_BRAND' | 'SOURCE_TYPE' | 'PLATFORM' | 'APP_CATEGORY' | 'BROWSER' | 'CALL_TO_ACTION' | 'CREATIVE_SIZE' | 'DEAL_CATEGORY' | 'ADVERTISER_REGION' | 'CLICK_DESTINATION' | 'ADVERTISER_LOGO' | 'LOSS_REASON_CODES' | 'CREATIVE_SET' | 'USER_FREQUENCY_BUCKET_MAPPING' | 'CREATIVE_SET_TYPE', reqId?: string, token?: string, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<ApiResponseObjectListMapintResponseMessage>>;
241
- updateStatusUsingPOST(id: string, status: boolean, tableEntity: 'LICENSEE' | 'ADVERTISER' | 'CAMPAIGN' | 'STRATEGY' | 'CREATIVE' | 'AGGREGATOR' | 'AUDIENCE' | 'APP_AUDIENCE' | 'WEB_AUDIENCE' | 'DMP_AUDIENCE' | 'PIXEL' | 'SITE' | 'COUNTRY' | 'STATE' | 'CITY' | 'OS' | 'PRICING' | 'CURRENCY' | 'LANGUAGE' | 'TIMEZONE' | 'CATEGORY' | 'MMP' | 'CDTYPE' | 'CDSUBTYPE' | 'DEVICE' | 'DELIVERY_PRIORITY' | 'PACING_TYPE' | 'OS_VERSION' | 'DEVICE_MODEL' | 'DEVICE_BRAND' | 'SOURCE_TYPE' | 'PLATFORM' | 'APP_CATEGORY' | 'BROWSER' | 'CALL_TO_ACTION' | 'CREATIVE_SIZE' | 'DEAL_CATEGORY' | 'ADVERTISER_REGION' | 'CLICK_DESTINATION' | 'ADVERTISER_LOGO' | 'LOSS_REASON_CODES' | 'CREATIVE_SET' | 'USER_FREQUENCY_BUCKET_MAPPING' | 'CREATIVE_SET_TYPE', reqId?: string, token?: string, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<ApiResponseObjectListMapintResponseMessage>>;
239
+ updateStatusUsingPOST(id: string, status: boolean, tableEntity: 'LICENSEE' | 'ADVERTISER' | 'CAMPAIGN' | 'STRATEGY' | 'CREATIVE' | 'AGGREGATOR' | 'AUDIENCE' | 'APP_AUDIENCE' | 'WEB_AUDIENCE' | 'DMP_AUDIENCE' | 'PIXEL' | 'SITE' | 'COUNTRY' | 'STATE' | 'CITY' | 'OS' | 'PRICING' | 'CURRENCY' | 'LANGUAGE' | 'TIMEZONE' | 'CATEGORY' | 'MMP' | 'CDTYPE' | 'CDSUBTYPE' | 'DEVICE' | 'DELIVERY_PRIORITY' | 'PACING_TYPE' | 'OS_VERSION' | 'DEVICE_MODEL' | 'DEVICE_BRAND' | 'SOURCE_TYPE' | 'PLATFORM' | 'APP_CATEGORY' | 'BROWSER' | 'CALL_TO_ACTION' | 'CREATIVE_SIZE' | 'DEAL_CATEGORY' | 'ADVERTISER_REGION' | 'CLICK_DESTINATION' | 'ADVERTISER_LOGO' | 'LOSS_REASON_CODES' | 'CREATIVE_SET' | 'USER_FREQUENCY_BUCKET_MAPPING' | 'CREATIVE_SET_TYPE', reqId?: string, token?: string, observe?: 'body', reportProgress?: boolean): Observable<ApiResponseObjectMapintResponseMessage>;
240
+ updateStatusUsingPOST(id: string, status: boolean, tableEntity: 'LICENSEE' | 'ADVERTISER' | 'CAMPAIGN' | 'STRATEGY' | 'CREATIVE' | 'AGGREGATOR' | 'AUDIENCE' | 'APP_AUDIENCE' | 'WEB_AUDIENCE' | 'DMP_AUDIENCE' | 'PIXEL' | 'SITE' | 'COUNTRY' | 'STATE' | 'CITY' | 'OS' | 'PRICING' | 'CURRENCY' | 'LANGUAGE' | 'TIMEZONE' | 'CATEGORY' | 'MMP' | 'CDTYPE' | 'CDSUBTYPE' | 'DEVICE' | 'DELIVERY_PRIORITY' | 'PACING_TYPE' | 'OS_VERSION' | 'DEVICE_MODEL' | 'DEVICE_BRAND' | 'SOURCE_TYPE' | 'PLATFORM' | 'APP_CATEGORY' | 'BROWSER' | 'CALL_TO_ACTION' | 'CREATIVE_SIZE' | 'DEAL_CATEGORY' | 'ADVERTISER_REGION' | 'CLICK_DESTINATION' | 'ADVERTISER_LOGO' | 'LOSS_REASON_CODES' | 'CREATIVE_SET' | 'USER_FREQUENCY_BUCKET_MAPPING' | 'CREATIVE_SET_TYPE', reqId?: string, token?: string, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<ApiResponseObjectMapintResponseMessage>>;
241
+ updateStatusUsingPOST(id: string, status: boolean, tableEntity: 'LICENSEE' | 'ADVERTISER' | 'CAMPAIGN' | 'STRATEGY' | 'CREATIVE' | 'AGGREGATOR' | 'AUDIENCE' | 'APP_AUDIENCE' | 'WEB_AUDIENCE' | 'DMP_AUDIENCE' | 'PIXEL' | 'SITE' | 'COUNTRY' | 'STATE' | 'CITY' | 'OS' | 'PRICING' | 'CURRENCY' | 'LANGUAGE' | 'TIMEZONE' | 'CATEGORY' | 'MMP' | 'CDTYPE' | 'CDSUBTYPE' | 'DEVICE' | 'DELIVERY_PRIORITY' | 'PACING_TYPE' | 'OS_VERSION' | 'DEVICE_MODEL' | 'DEVICE_BRAND' | 'SOURCE_TYPE' | 'PLATFORM' | 'APP_CATEGORY' | 'BROWSER' | 'CALL_TO_ACTION' | 'CREATIVE_SIZE' | 'DEAL_CATEGORY' | 'ADVERTISER_REGION' | 'CLICK_DESTINATION' | 'ADVERTISER_LOGO' | 'LOSS_REASON_CODES' | 'CREATIVE_SET' | 'USER_FREQUENCY_BUCKET_MAPPING' | 'CREATIVE_SET_TYPE', reqId?: string, token?: string, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<ApiResponseObjectMapintResponseMessage>>;
242
242
  }
@@ -2648,6 +2648,42 @@
2648
2648
  reportProgress: reportProgress
2649
2649
  });
2650
2650
  };
2651
+ CampaignControllerService.prototype.incrementalityReportUsingPOST = function (incrementalityReportDTO, reqId, token, observe, reportProgress) {
2652
+ if (observe === void 0) { observe = 'body'; }
2653
+ if (reportProgress === void 0) { reportProgress = false; }
2654
+ if (incrementalityReportDTO === null || incrementalityReportDTO === undefined) {
2655
+ throw new Error('Required parameter incrementalityReportDTO was null or undefined when calling incrementalityReportUsingPOST.');
2656
+ }
2657
+ var headers = this.defaultHeaders;
2658
+ if (reqId !== undefined && reqId !== null) {
2659
+ headers = headers.set('reqId', String(reqId));
2660
+ }
2661
+ if (token !== undefined && token !== null) {
2662
+ headers = headers.set('token', String(token));
2663
+ }
2664
+ // to determine the Accept header
2665
+ var httpHeaderAccepts = [
2666
+ 'application/json'
2667
+ ];
2668
+ var httpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
2669
+ if (httpHeaderAcceptSelected != undefined) {
2670
+ headers = headers.set('Accept', httpHeaderAcceptSelected);
2671
+ }
2672
+ // to determine the Content-Type header
2673
+ var consumes = [
2674
+ 'application/json'
2675
+ ];
2676
+ var httpContentTypeSelected = this.configuration.selectHeaderContentType(consumes);
2677
+ if (httpContentTypeSelected != undefined) {
2678
+ headers = headers.set('Content-Type', httpContentTypeSelected);
2679
+ }
2680
+ return this.httpClient.post(this.basePath + "/v2/api/campaigns/incrementalityreport", incrementalityReportDTO, {
2681
+ withCredentials: this.configuration.withCredentials,
2682
+ headers: headers,
2683
+ observe: observe,
2684
+ reportProgress: reportProgress
2685
+ });
2686
+ };
2651
2687
  CampaignControllerService.prototype.updateCampaignUsingPOST = function (campaign, id, reqId, token, observe, reportProgress) {
2652
2688
  if (observe === void 0) { observe = 'body'; }
2653
2689
  if (reportProgress === void 0) { reportProgress = false; }