@revxui/api-clients-ts 0.10.283 → 0.10.285
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/audienceController.service.d.ts +0 -13
- package/api/campaignController.service.d.ts +14 -0
- package/api/creativeSetsController.service.d.ts +3 -4
- package/api/dashboardController.service.d.ts +7 -7
- package/api/sliceXController.service.d.ts +34 -6
- package/bundles/revxui-api-clients-ts.umd.js +121 -41
- package/bundles/revxui-api-clients-ts.umd.js.map +1 -1
- package/bundles/revxui-api-clients-ts.umd.min.js +1 -1
- package/bundles/revxui-api-clients-ts.umd.min.js.map +1 -1
- package/esm2015/api/audienceController.service.js +1 -35
- package/esm2015/api/campaignController.service.js +35 -1
- package/esm2015/api/creativeSetsController.service.js +3 -6
- package/esm2015/api/dashboardController.service.js +1 -1
- package/esm2015/api/sliceXController.service.js +80 -1
- package/esm2015/model/campaignDTO.js +1 -1
- package/esm2015/model/campaignESDTO.js +1 -1
- package/esm2015/model/clickDestination.js +1 -1
- package/esm2015/model/creative.js +1 -1
- package/esm2015/model/creativeDTO.js +1 -1
- package/esm2015/model/creativeFileForSet.js +1 -1
- package/esm2015/model/creativeFiles.js +1 -1
- package/esm2015/model/creativeSetDashboardMetric.js +1 -1
- package/esm2015/model/creativeSetDetails.js +1 -1
- package/esm2015/model/creativeSetRequest.js +1 -1
- package/esm2015/model/{audienceAnalysisRequest.js → incrementalityReportDTO.js} +1 -1
- package/esm2015/model/incrementalityReportResponse.js +12 -0
- package/esm2015/model/incrementalityResponse.js +1 -0
- package/esm2015/model/models.js +1 -1
- package/esm2015/model/searchRequest.js +1 -1
- package/esm2015/model/slicexRequestExtended.js +1 -0
- package/esm5/api/audienceController.service.js +1 -37
- package/esm5/api/campaignController.service.js +37 -1
- package/esm5/api/creativeSetsController.service.js +3 -6
- package/esm5/api/dashboardController.service.js +1 -1
- package/esm5/api/sliceXController.service.js +84 -1
- package/esm5/model/campaignDTO.js +1 -1
- package/esm5/model/campaignESDTO.js +1 -1
- package/esm5/model/clickDestination.js +1 -1
- package/esm5/model/creative.js +1 -1
- package/esm5/model/creativeDTO.js +1 -1
- package/esm5/model/creativeFileForSet.js +1 -1
- package/esm5/model/creativeFiles.js +1 -1
- package/esm5/model/creativeSetDashboardMetric.js +1 -1
- package/esm5/model/creativeSetDetails.js +1 -1
- package/esm5/model/creativeSetRequest.js +1 -1
- package/esm5/model/{audienceAnalysisRequest.js → incrementalityReportDTO.js} +1 -1
- package/esm5/model/incrementalityReportResponse.js +12 -0
- package/esm5/model/incrementalityResponse.js +1 -0
- package/esm5/model/models.js +1 -1
- package/esm5/model/searchRequest.js +1 -1
- package/esm5/model/slicexRequestExtended.js +1 -0
- package/fesm2015/revxui-api-clients-ts.js +115 -39
- package/fesm2015/revxui-api-clients-ts.js.map +1 -1
- package/fesm5/revxui-api-clients-ts.js +121 -41
- package/fesm5/revxui-api-clients-ts.js.map +1 -1
- package/model/campaignDTO.d.ts +4 -0
- package/model/campaignESDTO.d.ts +2 -0
- package/model/clickDestination.d.ts +1 -0
- package/model/creative.d.ts +3 -0
- package/model/creativeDTO.d.ts +2 -0
- package/model/creativeFileForSet.d.ts +2 -0
- package/model/creativeFiles.d.ts +2 -0
- package/model/creativeSetDashboardMetric.d.ts +1 -0
- package/model/creativeSetDetails.d.ts +1 -0
- package/model/creativeSetRequest.d.ts +1 -0
- package/model/{audienceAnalysisRequest.d.ts → incrementalityReportDTO.d.ts} +5 -5
- package/model/incrementalityReportResponse.d.ts +24 -0
- package/model/incrementalityResponse.d.ts +17 -0
- package/model/models.d.ts +4 -2
- package/model/searchRequest.d.ts +0 -1
- package/model/slicexRequestExtended.d.ts +20 -0
- package/package.json +1 -1
- package/revxui-api-clients-ts.metadata.json +1 -1
- package/esm2015/model/apiResponseObjectListMapintResponseMessage.js +0 -1
- package/esm5/model/apiResponseObjectListMapintResponseMessage.js +0 -1
- package/model/apiResponseObjectListMapintResponseMessage.d.ts +0 -17
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
## @revxui/api-clients-ts@0.10.
|
|
1
|
+
## @revxui/api-clients-ts@0.10.285
|
|
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.
|
|
22
|
+
npm install @revxui/api-clients-ts@0.10.285 --save
|
|
23
23
|
```
|
|
24
24
|
|
|
25
25
|
_without publishing (not recommended):_
|
|
@@ -23,7 +23,6 @@ import { ApiResponseObjectMapintResponseMessage } from '../model/apiResponseObje
|
|
|
23
23
|
import { ApiResponseObjectMaplongResponseMessage } from '../model/apiResponseObjectMaplongResponseMessage';
|
|
24
24
|
import { ApiResponseObjectMetaRulesDto } from '../model/apiResponseObjectMetaRulesDto';
|
|
25
25
|
import { ApiResponseObjectstring } from '../model/apiResponseObjectstring';
|
|
26
|
-
import { AudienceAnalysisRequest } from '../model/audienceAnalysisRequest';
|
|
27
26
|
import { AudienceDTO } from '../model/audienceDTO';
|
|
28
27
|
import { DashboardRequest } from '../model/dashboardRequest';
|
|
29
28
|
import { EligibleUsersRequest } from '../model/eligibleUsersRequest';
|
|
@@ -156,18 +155,6 @@ export declare class AudienceControllerService {
|
|
|
156
155
|
getAllDmpAudienceUsingGET(advertiser_id: number, limit?: number, reqId?: string, start?: number, stype?: number, token?: string, observe?: 'body', reportProgress?: boolean): Observable<ApiResponseObjectDmpAudienceDTO>;
|
|
157
156
|
getAllDmpAudienceUsingGET(advertiser_id: number, limit?: number, reqId?: string, start?: number, stype?: number, token?: string, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<ApiResponseObjectDmpAudienceDTO>>;
|
|
158
157
|
getAllDmpAudienceUsingGET(advertiser_id: number, limit?: number, reqId?: string, start?: number, stype?: number, token?: string, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<ApiResponseObjectDmpAudienceDTO>>;
|
|
159
|
-
/**
|
|
160
|
-
* APi to get audience analysis count
|
|
161
|
-
*
|
|
162
|
-
* @param audienceAnalysisRequest audienceAnalysisRequest
|
|
163
|
-
* @param reqId request id
|
|
164
|
-
* @param token Auth Token
|
|
165
|
-
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
166
|
-
* @param reportProgress flag to report request and response progress.
|
|
167
|
-
*/
|
|
168
|
-
getAnalysisAudienceCountUsingPOST(audienceAnalysisRequest: AudienceAnalysisRequest, reqId?: string, token?: string, observe?: 'body', reportProgress?: boolean): Observable<ApiResponseObjectEligibleUsersResponse>;
|
|
169
|
-
getAnalysisAudienceCountUsingPOST(audienceAnalysisRequest: AudienceAnalysisRequest, reqId?: string, token?: string, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<ApiResponseObjectEligibleUsersResponse>>;
|
|
170
|
-
getAnalysisAudienceCountUsingPOST(audienceAnalysisRequest: AudienceAnalysisRequest, reqId?: string, token?: string, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<ApiResponseObjectEligibleUsersResponse>>;
|
|
171
158
|
/**
|
|
172
159
|
* Api to get Audience
|
|
173
160
|
*
|
|
@@ -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
|
*
|
|
@@ -100,16 +100,15 @@ export declare class CreativeSetsControllerService {
|
|
|
100
100
|
* Api to get individual creative performance
|
|
101
101
|
*
|
|
102
102
|
* @param dashboardRequest dashboardRequest
|
|
103
|
-
* @param id id
|
|
104
103
|
* @param refresh refresh
|
|
105
104
|
* @param reqId request id
|
|
106
105
|
* @param token Auth Token
|
|
107
106
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
108
107
|
* @param reportProgress flag to report request and response progress.
|
|
109
108
|
*/
|
|
110
|
-
getCreativesPerformanceUsingPOST(dashboardRequest: DashboardRequest,
|
|
111
|
-
getCreativesPerformanceUsingPOST(dashboardRequest: DashboardRequest,
|
|
112
|
-
getCreativesPerformanceUsingPOST(dashboardRequest: DashboardRequest,
|
|
109
|
+
getCreativesPerformanceUsingPOST(dashboardRequest: DashboardRequest, refresh?: boolean, reqId?: string, token?: string, observe?: 'body', reportProgress?: boolean): Observable<ApiResponseObjectDashboardResponse>;
|
|
110
|
+
getCreativesPerformanceUsingPOST(dashboardRequest: DashboardRequest, refresh?: boolean, reqId?: string, token?: string, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<ApiResponseObjectDashboardResponse>>;
|
|
111
|
+
getCreativesPerformanceUsingPOST(dashboardRequest: DashboardRequest, refresh?: boolean, reqId?: string, token?: string, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<ApiResponseObjectDashboardResponse>>;
|
|
113
112
|
/**
|
|
114
113
|
* Api to get individual creative set performance
|
|
115
114
|
*
|
|
@@ -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<
|
|
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<
|
|
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<
|
|
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<
|
|
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<
|
|
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<
|
|
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
|
}
|
|
@@ -15,6 +15,7 @@ import { ApiResponseObjectSlicexChartResponse } from '../model/apiResponseObject
|
|
|
15
15
|
import { ApiResponseObjectSlicexListResponse } from '../model/apiResponseObjectSlicexListResponse';
|
|
16
16
|
import { FileDownloadResponse } from '../model/fileDownloadResponse';
|
|
17
17
|
import { SlicexRequest } from '../model/slicexRequest';
|
|
18
|
+
import { SlicexRequestExtended } from '../model/slicexRequestExtended';
|
|
18
19
|
import { Configuration } from '../configuration';
|
|
19
20
|
export declare class SliceXControllerService {
|
|
20
21
|
protected httpClient: HttpClient;
|
|
@@ -50,9 +51,36 @@ export declare class SliceXControllerService {
|
|
|
50
51
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
51
52
|
* @param reportProgress flag to report request and response progress.
|
|
52
53
|
*/
|
|
53
|
-
getSlicexDataListUsingPOST(entity: 'licensee' | 'advertiser' | 'campaign' | 'strategy' | 'creativeSize' | 'aggregator' | 'app' | 'os' | 'creative' | 'country' | 'pricing' | 'pixel' | 'campaignObjective' | 'advregions' | 'creativeSets' | 'creativeSetsType' | 'videoPlacement', slicexRequest: SlicexRequest, reqId?: string, sort?: string, token?: string, observe?: 'body', reportProgress?: boolean): Observable<ApiResponseObjectSlicexListResponse>;
|
|
54
|
-
getSlicexDataListUsingPOST(entity: 'licensee' | 'advertiser' | 'campaign' | 'strategy' | 'creativeSize' | 'aggregator' | 'app' | 'os' | 'creative' | 'country' | 'pricing' | 'pixel' | 'campaignObjective' | 'advregions' | 'creativeSets' | 'creativeSetsType' | 'videoPlacement', slicexRequest: SlicexRequest, reqId?: string, sort?: string, token?: string, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<ApiResponseObjectSlicexListResponse>>;
|
|
55
|
-
getSlicexDataListUsingPOST(entity: 'licensee' | 'advertiser' | 'campaign' | 'strategy' | 'creativeSize' | 'aggregator' | 'app' | 'os' | 'creative' | 'country' | 'pricing' | 'pixel' | 'campaignObjective' | 'advregions' | 'creativeSets' | 'creativeSetsType' | 'videoPlacement', slicexRequest: SlicexRequest, reqId?: string, sort?: string, token?: string, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<ApiResponseObjectSlicexListResponse>>;
|
|
54
|
+
getSlicexDataListUsingPOST(entity: 'licensee' | 'advertiser' | 'campaign' | 'strategy' | 'creativeSize' | 'aggregator' | 'app' | 'os' | 'creative' | 'country' | 'city' | 'pricing' | 'pixel' | 'campaignObjective' | 'advregions' | 'creativeSets' | 'creativeSetsType' | 'videoPlacement', slicexRequest: SlicexRequest, reqId?: string, sort?: string, token?: string, observe?: 'body', reportProgress?: boolean): Observable<ApiResponseObjectSlicexListResponse>;
|
|
55
|
+
getSlicexDataListUsingPOST(entity: 'licensee' | 'advertiser' | 'campaign' | 'strategy' | 'creativeSize' | 'aggregator' | 'app' | 'os' | 'creative' | 'country' | 'city' | 'pricing' | 'pixel' | 'campaignObjective' | 'advregions' | 'creativeSets' | 'creativeSetsType' | 'videoPlacement', slicexRequest: SlicexRequest, reqId?: string, sort?: string, token?: string, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<ApiResponseObjectSlicexListResponse>>;
|
|
56
|
+
getSlicexDataListUsingPOST(entity: 'licensee' | 'advertiser' | 'campaign' | 'strategy' | 'creativeSize' | 'aggregator' | 'app' | 'os' | 'creative' | 'country' | 'city' | 'pricing' | 'pixel' | 'campaignObjective' | 'advregions' | 'creativeSets' | 'creativeSetsType' | 'videoPlacement', slicexRequest: SlicexRequest, reqId?: string, sort?: string, token?: string, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<ApiResponseObjectSlicexListResponse>>;
|
|
57
|
+
/**
|
|
58
|
+
* Slicex API for grid with compare.
|
|
59
|
+
*
|
|
60
|
+
* @param entity entity
|
|
61
|
+
* @param slicexRequest slicexRequest
|
|
62
|
+
* @param reqId request id
|
|
63
|
+
* @param sort sort
|
|
64
|
+
* @param token Auth Token
|
|
65
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
66
|
+
* @param reportProgress flag to report request and response progress.
|
|
67
|
+
*/
|
|
68
|
+
getSlicexDataListWithCompareUsingPOST(entity: 'licensee' | 'advertiser' | 'campaign' | 'strategy' | 'creativeSize' | 'aggregator' | 'app' | 'os' | 'creative' | 'country' | 'city' | 'pricing' | 'pixel' | 'campaignObjective' | 'advregions' | 'creativeSets' | 'creativeSetsType' | 'videoPlacement', slicexRequest: SlicexRequest, reqId?: string, sort?: string, token?: string, observe?: 'body', reportProgress?: boolean): Observable<ApiResponseObjectSlicexListResponse>;
|
|
69
|
+
getSlicexDataListWithCompareUsingPOST(entity: 'licensee' | 'advertiser' | 'campaign' | 'strategy' | 'creativeSize' | 'aggregator' | 'app' | 'os' | 'creative' | 'country' | 'city' | 'pricing' | 'pixel' | 'campaignObjective' | 'advregions' | 'creativeSets' | 'creativeSetsType' | 'videoPlacement', slicexRequest: SlicexRequest, reqId?: string, sort?: string, token?: string, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<ApiResponseObjectSlicexListResponse>>;
|
|
70
|
+
getSlicexDataListWithCompareUsingPOST(entity: 'licensee' | 'advertiser' | 'campaign' | 'strategy' | 'creativeSize' | 'aggregator' | 'app' | 'os' | 'creative' | 'country' | 'city' | 'pricing' | 'pixel' | 'campaignObjective' | 'advregions' | 'creativeSets' | 'creativeSetsType' | 'videoPlacement', slicexRequest: SlicexRequest, reqId?: string, sort?: string, token?: string, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<ApiResponseObjectSlicexListResponse>>;
|
|
71
|
+
/**
|
|
72
|
+
* Slicex API for grid details.
|
|
73
|
+
*
|
|
74
|
+
* @param entity entity
|
|
75
|
+
* @param slicexRequestExt slicexRequestExt
|
|
76
|
+
* @param reqId request id
|
|
77
|
+
* @param token Auth Token
|
|
78
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
79
|
+
* @param reportProgress flag to report request and response progress.
|
|
80
|
+
*/
|
|
81
|
+
getSlicexGridDetailsUsingPOST(entity: 'licensee' | 'advertiser' | 'campaign' | 'strategy' | 'creativeSize' | 'aggregator' | 'app' | 'os' | 'creative' | 'country' | 'city' | 'pricing' | 'pixel' | 'campaignObjective' | 'advregions' | 'creativeSets' | 'creativeSetsType' | 'videoPlacement', slicexRequestExt: SlicexRequestExtended, reqId?: string, token?: string, observe?: 'body', reportProgress?: boolean): Observable<ApiResponseObjectSlicexListResponse>;
|
|
82
|
+
getSlicexGridDetailsUsingPOST(entity: 'licensee' | 'advertiser' | 'campaign' | 'strategy' | 'creativeSize' | 'aggregator' | 'app' | 'os' | 'creative' | 'country' | 'city' | 'pricing' | 'pixel' | 'campaignObjective' | 'advregions' | 'creativeSets' | 'creativeSetsType' | 'videoPlacement', slicexRequestExt: SlicexRequestExtended, reqId?: string, token?: string, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<ApiResponseObjectSlicexListResponse>>;
|
|
83
|
+
getSlicexGridDetailsUsingPOST(entity: 'licensee' | 'advertiser' | 'campaign' | 'strategy' | 'creativeSize' | 'aggregator' | 'app' | 'os' | 'creative' | 'country' | 'city' | 'pricing' | 'pixel' | 'campaignObjective' | 'advregions' | 'creativeSets' | 'creativeSetsType' | 'videoPlacement', slicexRequestExt: SlicexRequestExtended, reqId?: string, token?: string, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<ApiResponseObjectSlicexListResponse>>;
|
|
56
84
|
/**
|
|
57
85
|
* Slicex API for List Export.
|
|
58
86
|
*
|
|
@@ -64,7 +92,7 @@ export declare class SliceXControllerService {
|
|
|
64
92
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
65
93
|
* @param reportProgress flag to report request and response progress.
|
|
66
94
|
*/
|
|
67
|
-
getSlicexListDataForExportUsingPOST(entity: 'licensee' | 'advertiser' | 'campaign' | 'strategy' | 'creativeSize' | 'aggregator' | 'app' | 'os' | 'creative' | 'country' | 'pricing' | 'pixel' | 'campaignObjective' | 'advregions' | 'creativeSets' | 'creativeSetsType' | 'videoPlacement', slicexRequest: SlicexRequest, reqId?: string, sort?: string, token?: string, observe?: 'body', reportProgress?: boolean): Observable<FileDownloadResponse>;
|
|
68
|
-
getSlicexListDataForExportUsingPOST(entity: 'licensee' | 'advertiser' | 'campaign' | 'strategy' | 'creativeSize' | 'aggregator' | 'app' | 'os' | 'creative' | 'country' | 'pricing' | 'pixel' | 'campaignObjective' | 'advregions' | 'creativeSets' | 'creativeSetsType' | 'videoPlacement', slicexRequest: SlicexRequest, reqId?: string, sort?: string, token?: string, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<FileDownloadResponse>>;
|
|
69
|
-
getSlicexListDataForExportUsingPOST(entity: 'licensee' | 'advertiser' | 'campaign' | 'strategy' | 'creativeSize' | 'aggregator' | 'app' | 'os' | 'creative' | 'country' | 'pricing' | 'pixel' | 'campaignObjective' | 'advregions' | 'creativeSets' | 'creativeSetsType' | 'videoPlacement', slicexRequest: SlicexRequest, reqId?: string, sort?: string, token?: string, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<FileDownloadResponse>>;
|
|
95
|
+
getSlicexListDataForExportUsingPOST(entity: 'licensee' | 'advertiser' | 'campaign' | 'strategy' | 'creativeSize' | 'aggregator' | 'app' | 'os' | 'creative' | 'country' | 'city' | 'pricing' | 'pixel' | 'campaignObjective' | 'advregions' | 'creativeSets' | 'creativeSetsType' | 'videoPlacement', slicexRequest: SlicexRequest, reqId?: string, sort?: string, token?: string, observe?: 'body', reportProgress?: boolean): Observable<FileDownloadResponse>;
|
|
96
|
+
getSlicexListDataForExportUsingPOST(entity: 'licensee' | 'advertiser' | 'campaign' | 'strategy' | 'creativeSize' | 'aggregator' | 'app' | 'os' | 'creative' | 'country' | 'city' | 'pricing' | 'pixel' | 'campaignObjective' | 'advregions' | 'creativeSets' | 'creativeSetsType' | 'videoPlacement', slicexRequest: SlicexRequest, reqId?: string, sort?: string, token?: string, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<FileDownloadResponse>>;
|
|
97
|
+
getSlicexListDataForExportUsingPOST(entity: 'licensee' | 'advertiser' | 'campaign' | 'strategy' | 'creativeSize' | 'aggregator' | 'app' | 'os' | 'creative' | 'country' | 'city' | 'pricing' | 'pixel' | 'campaignObjective' | 'advregions' | 'creativeSets' | 'creativeSetsType' | 'videoPlacement', slicexRequest: SlicexRequest, reqId?: string, sort?: string, token?: string, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<FileDownloadResponse>>;
|
|
70
98
|
}
|
|
@@ -1506,42 +1506,6 @@
|
|
|
1506
1506
|
reportProgress: reportProgress
|
|
1507
1507
|
});
|
|
1508
1508
|
};
|
|
1509
|
-
AudienceControllerService.prototype.getAnalysisAudienceCountUsingPOST = function (audienceAnalysisRequest, reqId, token, observe, reportProgress) {
|
|
1510
|
-
if (observe === void 0) { observe = 'body'; }
|
|
1511
|
-
if (reportProgress === void 0) { reportProgress = false; }
|
|
1512
|
-
if (audienceAnalysisRequest === null || audienceAnalysisRequest === undefined) {
|
|
1513
|
-
throw new Error('Required parameter audienceAnalysisRequest was null or undefined when calling getAnalysisAudienceCountUsingPOST.');
|
|
1514
|
-
}
|
|
1515
|
-
var headers = this.defaultHeaders;
|
|
1516
|
-
if (reqId !== undefined && reqId !== null) {
|
|
1517
|
-
headers = headers.set('reqId', String(reqId));
|
|
1518
|
-
}
|
|
1519
|
-
if (token !== undefined && token !== null) {
|
|
1520
|
-
headers = headers.set('token', String(token));
|
|
1521
|
-
}
|
|
1522
|
-
// to determine the Accept header
|
|
1523
|
-
var httpHeaderAccepts = [
|
|
1524
|
-
'*/*'
|
|
1525
|
-
];
|
|
1526
|
-
var httpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
|
|
1527
|
-
if (httpHeaderAcceptSelected != undefined) {
|
|
1528
|
-
headers = headers.set('Accept', httpHeaderAcceptSelected);
|
|
1529
|
-
}
|
|
1530
|
-
// to determine the Content-Type header
|
|
1531
|
-
var consumes = [
|
|
1532
|
-
'application/json'
|
|
1533
|
-
];
|
|
1534
|
-
var httpContentTypeSelected = this.configuration.selectHeaderContentType(consumes);
|
|
1535
|
-
if (httpContentTypeSelected != undefined) {
|
|
1536
|
-
headers = headers.set('Content-Type', httpContentTypeSelected);
|
|
1537
|
-
}
|
|
1538
|
-
return this.httpClient.post(this.basePath + "/v2/api/audience/audienceanalysis", audienceAnalysisRequest, {
|
|
1539
|
-
withCredentials: this.configuration.withCredentials,
|
|
1540
|
-
headers: headers,
|
|
1541
|
-
observe: observe,
|
|
1542
|
-
reportProgress: reportProgress
|
|
1543
|
-
});
|
|
1544
|
-
};
|
|
1545
1509
|
AudienceControllerService.prototype.getByIdUsingGET1 = function (id, refresh, reqId, token, observe, reportProgress) {
|
|
1546
1510
|
if (observe === void 0) { observe = 'body'; }
|
|
1547
1511
|
if (reportProgress === void 0) { reportProgress = false; }
|
|
@@ -2684,6 +2648,42 @@
|
|
|
2684
2648
|
reportProgress: reportProgress
|
|
2685
2649
|
});
|
|
2686
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
|
+
};
|
|
2687
2687
|
CampaignControllerService.prototype.updateCampaignUsingPOST = function (campaign, id, reqId, token, observe, reportProgress) {
|
|
2688
2688
|
if (observe === void 0) { observe = 'body'; }
|
|
2689
2689
|
if (reportProgress === void 0) { reportProgress = false; }
|
|
@@ -3920,15 +3920,12 @@
|
|
|
3920
3920
|
reportProgress: reportProgress
|
|
3921
3921
|
});
|
|
3922
3922
|
};
|
|
3923
|
-
CreativeSetsControllerService.prototype.getCreativesPerformanceUsingPOST = function (dashboardRequest,
|
|
3923
|
+
CreativeSetsControllerService.prototype.getCreativesPerformanceUsingPOST = function (dashboardRequest, refresh, reqId, token, observe, reportProgress) {
|
|
3924
3924
|
if (observe === void 0) { observe = 'body'; }
|
|
3925
3925
|
if (reportProgress === void 0) { reportProgress = false; }
|
|
3926
3926
|
if (dashboardRequest === null || dashboardRequest === undefined) {
|
|
3927
3927
|
throw new Error('Required parameter dashboardRequest was null or undefined when calling getCreativesPerformanceUsingPOST.');
|
|
3928
3928
|
}
|
|
3929
|
-
if (id === null || id === undefined) {
|
|
3930
|
-
throw new Error('Required parameter id was null or undefined when calling getCreativesPerformanceUsingPOST.');
|
|
3931
|
-
}
|
|
3932
3929
|
var queryParameters = new http.HttpParams({ encoder: new CustomHttpUrlEncodingCodec() });
|
|
3933
3930
|
if (refresh !== undefined && refresh !== null) {
|
|
3934
3931
|
queryParameters = queryParameters.set('refresh', refresh);
|
|
@@ -3956,7 +3953,7 @@
|
|
|
3956
3953
|
if (httpContentTypeSelected != undefined) {
|
|
3957
3954
|
headers = headers.set('Content-Type', httpContentTypeSelected);
|
|
3958
3955
|
}
|
|
3959
|
-
return this.httpClient.post(this.basePath + "/v2/api/creativesets/creatives/performance/"
|
|
3956
|
+
return this.httpClient.post(this.basePath + "/v2/api/creativesets/creatives/performance/", dashboardRequest, {
|
|
3960
3957
|
params: queryParameters,
|
|
3961
3958
|
withCredentials: this.configuration.withCredentials,
|
|
3962
3959
|
headers: headers,
|
|
@@ -6025,6 +6022,89 @@
|
|
|
6025
6022
|
reportProgress: reportProgress
|
|
6026
6023
|
});
|
|
6027
6024
|
};
|
|
6025
|
+
SliceXControllerService.prototype.getSlicexDataListWithCompareUsingPOST = function (entity, slicexRequest, reqId, sort, token, observe, reportProgress) {
|
|
6026
|
+
if (observe === void 0) { observe = 'body'; }
|
|
6027
|
+
if (reportProgress === void 0) { reportProgress = false; }
|
|
6028
|
+
if (entity === null || entity === undefined) {
|
|
6029
|
+
throw new Error('Required parameter entity was null or undefined when calling getSlicexDataListWithCompareUsingPOST.');
|
|
6030
|
+
}
|
|
6031
|
+
if (slicexRequest === null || slicexRequest === undefined) {
|
|
6032
|
+
throw new Error('Required parameter slicexRequest was null or undefined when calling getSlicexDataListWithCompareUsingPOST.');
|
|
6033
|
+
}
|
|
6034
|
+
var queryParameters = new http.HttpParams({ encoder: new CustomHttpUrlEncodingCodec() });
|
|
6035
|
+
if (sort !== undefined && sort !== null) {
|
|
6036
|
+
queryParameters = queryParameters.set('sort', sort);
|
|
6037
|
+
}
|
|
6038
|
+
var headers = this.defaultHeaders;
|
|
6039
|
+
if (reqId !== undefined && reqId !== null) {
|
|
6040
|
+
headers = headers.set('reqId', String(reqId));
|
|
6041
|
+
}
|
|
6042
|
+
if (token !== undefined && token !== null) {
|
|
6043
|
+
headers = headers.set('token', String(token));
|
|
6044
|
+
}
|
|
6045
|
+
// to determine the Accept header
|
|
6046
|
+
var httpHeaderAccepts = [
|
|
6047
|
+
'application/json'
|
|
6048
|
+
];
|
|
6049
|
+
var httpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
|
|
6050
|
+
if (httpHeaderAcceptSelected != undefined) {
|
|
6051
|
+
headers = headers.set('Accept', httpHeaderAcceptSelected);
|
|
6052
|
+
}
|
|
6053
|
+
// to determine the Content-Type header
|
|
6054
|
+
var consumes = [
|
|
6055
|
+
'application/json'
|
|
6056
|
+
];
|
|
6057
|
+
var httpContentTypeSelected = this.configuration.selectHeaderContentType(consumes);
|
|
6058
|
+
if (httpContentTypeSelected != undefined) {
|
|
6059
|
+
headers = headers.set('Content-Type', httpContentTypeSelected);
|
|
6060
|
+
}
|
|
6061
|
+
return this.httpClient.post(this.basePath + "/v2/api/slicex/list/compare/" + encodeURIComponent(String(entity)), slicexRequest, {
|
|
6062
|
+
params: queryParameters,
|
|
6063
|
+
withCredentials: this.configuration.withCredentials,
|
|
6064
|
+
headers: headers,
|
|
6065
|
+
observe: observe,
|
|
6066
|
+
reportProgress: reportProgress
|
|
6067
|
+
});
|
|
6068
|
+
};
|
|
6069
|
+
SliceXControllerService.prototype.getSlicexGridDetailsUsingPOST = function (entity, slicexRequestExt, reqId, token, observe, reportProgress) {
|
|
6070
|
+
if (observe === void 0) { observe = 'body'; }
|
|
6071
|
+
if (reportProgress === void 0) { reportProgress = false; }
|
|
6072
|
+
if (entity === null || entity === undefined) {
|
|
6073
|
+
throw new Error('Required parameter entity was null or undefined when calling getSlicexGridDetailsUsingPOST.');
|
|
6074
|
+
}
|
|
6075
|
+
if (slicexRequestExt === null || slicexRequestExt === undefined) {
|
|
6076
|
+
throw new Error('Required parameter slicexRequestExt was null or undefined when calling getSlicexGridDetailsUsingPOST.');
|
|
6077
|
+
}
|
|
6078
|
+
var headers = this.defaultHeaders;
|
|
6079
|
+
if (reqId !== undefined && reqId !== null) {
|
|
6080
|
+
headers = headers.set('reqId', String(reqId));
|
|
6081
|
+
}
|
|
6082
|
+
if (token !== undefined && token !== null) {
|
|
6083
|
+
headers = headers.set('token', String(token));
|
|
6084
|
+
}
|
|
6085
|
+
// to determine the Accept header
|
|
6086
|
+
var httpHeaderAccepts = [
|
|
6087
|
+
'application/json'
|
|
6088
|
+
];
|
|
6089
|
+
var httpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
|
|
6090
|
+
if (httpHeaderAcceptSelected != undefined) {
|
|
6091
|
+
headers = headers.set('Accept', httpHeaderAcceptSelected);
|
|
6092
|
+
}
|
|
6093
|
+
// to determine the Content-Type header
|
|
6094
|
+
var consumes = [
|
|
6095
|
+
'application/json'
|
|
6096
|
+
];
|
|
6097
|
+
var httpContentTypeSelected = this.configuration.selectHeaderContentType(consumes);
|
|
6098
|
+
if (httpContentTypeSelected != undefined) {
|
|
6099
|
+
headers = headers.set('Content-Type', httpContentTypeSelected);
|
|
6100
|
+
}
|
|
6101
|
+
return this.httpClient.post(this.basePath + "/v2/api/slicex/list/details/" + encodeURIComponent(String(entity)), slicexRequestExt, {
|
|
6102
|
+
withCredentials: this.configuration.withCredentials,
|
|
6103
|
+
headers: headers,
|
|
6104
|
+
observe: observe,
|
|
6105
|
+
reportProgress: reportProgress
|
|
6106
|
+
});
|
|
6107
|
+
};
|
|
6028
6108
|
SliceXControllerService.prototype.getSlicexListDataForExportUsingPOST = function (entity, slicexRequest, reqId, sort, token, observe, reportProgress) {
|
|
6029
6109
|
if (observe === void 0) { observe = 'body'; }
|
|
6030
6110
|
if (reportProgress === void 0) { reportProgress = false; }
|