@revxui/api-clients-ts 0.10.281 → 0.10.283
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 +13 -0
- package/api/campaignController.service.d.ts +0 -14
- package/api/creativeSetsController.service.d.ts +4 -3
- package/api/dashboardController.service.d.ts +3 -4
- package/api/sliceXController.service.d.ts +6 -20
- package/bundles/revxui-api-clients-ts.umd.js +41 -77
- 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 +35 -1
- package/esm2015/api/campaignController.service.js +1 -35
- package/esm2015/api/creativeSetsController.service.js +6 -3
- package/esm2015/api/dashboardController.service.js +1 -1
- package/esm2015/api/sliceXController.service.js +1 -38
- package/esm2015/model/{incrementalityReportDTO.js → audienceAnalysisRequest.js} +1 -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/creativeSetDashboardMetric.js +1 -1
- package/esm2015/model/creativeSetDetails.js +1 -1
- package/esm2015/model/creativeSetRequest.js +1 -1
- package/esm2015/model/models.js +1 -1
- package/esm2015/model/searchRequest.js +1 -1
- package/esm5/api/audienceController.service.js +37 -1
- package/esm5/api/campaignController.service.js +1 -37
- package/esm5/api/creativeSetsController.service.js +6 -3
- package/esm5/api/dashboardController.service.js +1 -1
- package/esm5/api/sliceXController.service.js +1 -40
- package/esm5/model/{incrementalityReportDTO.js → audienceAnalysisRequest.js} +1 -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/creativeSetDashboardMetric.js +1 -1
- package/esm5/model/creativeSetDetails.js +1 -1
- package/esm5/model/creativeSetRequest.js +1 -1
- package/esm5/model/models.js +1 -1
- package/esm5/model/searchRequest.js +1 -1
- package/fesm2015/revxui-api-clients-ts.js +39 -73
- package/fesm2015/revxui-api-clients-ts.js.map +1 -1
- package/fesm5/revxui-api-clients-ts.js +41 -77
- package/fesm5/revxui-api-clients-ts.js.map +1 -1
- package/model/{incrementalityReportDTO.d.ts → audienceAnalysisRequest.d.ts} +5 -5
- package/model/campaignDTO.d.ts +0 -4
- package/model/campaignESDTO.d.ts +0 -2
- package/model/clickDestination.d.ts +0 -1
- package/model/creative.d.ts +0 -2
- package/model/creativeDTO.d.ts +0 -2
- package/model/creativeSetDashboardMetric.d.ts +0 -1
- package/model/creativeSetDetails.d.ts +0 -1
- package/model/creativeSetRequest.d.ts +0 -1
- package/model/models.d.ts +1 -4
- package/model/searchRequest.d.ts +1 -0
- package/package.json +1 -1
- package/revxui-api-clients-ts.metadata.json +1 -1
- package/esm2015/model/incrementalityReportResponse.js +0 -12
- package/esm2015/model/incrementalityResponse.js +0 -1
- package/esm2015/model/slicexRequestExtended.js +0 -1
- package/esm5/model/incrementalityReportResponse.js +0 -12
- package/esm5/model/incrementalityResponse.js +0 -1
- package/esm5/model/slicexRequestExtended.js +0 -1
- package/model/incrementalityReportResponse.d.ts +0 -24
- package/model/incrementalityResponse.d.ts +0 -17
- package/model/slicexRequestExtended.d.ts +0 -20
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
## @revxui/api-clients-ts@0.10.
|
|
1
|
+
## @revxui/api-clients-ts@0.10.283
|
|
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.283 --save
|
|
23
23
|
```
|
|
24
24
|
|
|
25
25
|
_without publishing (not recommended):_
|
|
@@ -23,6 +23,7 @@ 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';
|
|
26
27
|
import { AudienceDTO } from '../model/audienceDTO';
|
|
27
28
|
import { DashboardRequest } from '../model/dashboardRequest';
|
|
28
29
|
import { EligibleUsersRequest } from '../model/eligibleUsersRequest';
|
|
@@ -155,6 +156,18 @@ export declare class AudienceControllerService {
|
|
|
155
156
|
getAllDmpAudienceUsingGET(advertiser_id: number, limit?: number, reqId?: string, start?: number, stype?: number, token?: string, observe?: 'body', reportProgress?: boolean): Observable<ApiResponseObjectDmpAudienceDTO>;
|
|
156
157
|
getAllDmpAudienceUsingGET(advertiser_id: number, limit?: number, reqId?: string, start?: number, stype?: number, token?: string, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<ApiResponseObjectDmpAudienceDTO>>;
|
|
157
158
|
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>>;
|
|
158
171
|
/**
|
|
159
172
|
* Api to get Audience
|
|
160
173
|
*
|
|
@@ -15,8 +15,6 @@ 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';
|
|
20
18
|
import { Configuration } from '../configuration';
|
|
21
19
|
export declare class CampaignControllerService {
|
|
22
20
|
protected httpClient: HttpClient;
|
|
@@ -92,18 +90,6 @@ export declare class CampaignControllerService {
|
|
|
92
90
|
getCampaignByIdUsingGET(id: number, refresh?: boolean, reqId?: string, token?: string, observe?: 'body', reportProgress?: boolean): Observable<ApiResponseObjectCampaignDTO>;
|
|
93
91
|
getCampaignByIdUsingGET(id: number, refresh?: boolean, reqId?: string, token?: string, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<ApiResponseObjectCampaignDTO>>;
|
|
94
92
|
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>>;
|
|
107
93
|
/**
|
|
108
94
|
* Api to update Campaign
|
|
109
95
|
*
|
|
@@ -100,15 +100,16 @@ export declare class CreativeSetsControllerService {
|
|
|
100
100
|
* Api to get individual creative performance
|
|
101
101
|
*
|
|
102
102
|
* @param dashboardRequest dashboardRequest
|
|
103
|
+
* @param id id
|
|
103
104
|
* @param refresh refresh
|
|
104
105
|
* @param reqId request id
|
|
105
106
|
* @param token Auth Token
|
|
106
107
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
107
108
|
* @param reportProgress flag to report request and response progress.
|
|
108
109
|
*/
|
|
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>>;
|
|
110
|
+
getCreativesPerformanceUsingPOST(dashboardRequest: DashboardRequest, id: number, refresh?: boolean, reqId?: string, token?: string, observe?: 'body', reportProgress?: boolean): Observable<ApiResponseObjectDashboardResponse>;
|
|
111
|
+
getCreativesPerformanceUsingPOST(dashboardRequest: DashboardRequest, id: number, refresh?: boolean, reqId?: string, token?: string, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<ApiResponseObjectDashboardResponse>>;
|
|
112
|
+
getCreativesPerformanceUsingPOST(dashboardRequest: DashboardRequest, id: number, refresh?: boolean, reqId?: string, token?: string, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<ApiResponseObjectDashboardResponse>>;
|
|
112
113
|
/**
|
|
113
114
|
* Api to get individual creative set performance
|
|
114
115
|
*
|
|
@@ -20,7 +20,6 @@ import { ApiResponseObjectFileDownloadResponse } from '../model/apiResponseObjec
|
|
|
20
20
|
import { ApiResponseObjectListBaseModel } from '../model/apiResponseObjectListBaseModel';
|
|
21
21
|
import { ApiResponseObjectListMapintResponseMessage } from '../model/apiResponseObjectListMapintResponseMessage';
|
|
22
22
|
import { ApiResponseObjectListMenuCrubResponse } from '../model/apiResponseObjectListMenuCrubResponse';
|
|
23
|
-
import { ApiResponseObjectMapintResponseMessage } from '../model/apiResponseObjectMapintResponseMessage';
|
|
24
23
|
import { ApiResponseObjectMenuCrubResponse } from '../model/apiResponseObjectMenuCrubResponse';
|
|
25
24
|
import { ApiResponseObjectParentBasedObject } from '../model/apiResponseObjectParentBasedObject';
|
|
26
25
|
import { DashboardRequest } from '../model/dashboardRequest';
|
|
@@ -237,7 +236,7 @@ export declare class DashboardControllerService {
|
|
|
237
236
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
238
237
|
* @param reportProgress flag to report request and response progress.
|
|
239
238
|
*/
|
|
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?: 'body', reportProgress?: boolean): Observable<
|
|
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?: 'response', reportProgress?: boolean): Observable<HttpResponse<
|
|
242
|
-
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<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>>;
|
|
243
242
|
}
|
|
@@ -15,7 +15,6 @@ 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';
|
|
19
18
|
import { Configuration } from '../configuration';
|
|
20
19
|
export declare class SliceXControllerService {
|
|
21
20
|
protected httpClient: HttpClient;
|
|
@@ -51,22 +50,9 @@ export declare class SliceXControllerService {
|
|
|
51
50
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
52
51
|
* @param reportProgress flag to report request and response progress.
|
|
53
52
|
*/
|
|
54
|
-
getSlicexDataListUsingPOST(entity: 'licensee' | 'advertiser' | 'campaign' | 'strategy' | 'creativeSize' | 'aggregator' | 'app' | 'os' | 'creative' | 'country' | '
|
|
55
|
-
getSlicexDataListUsingPOST(entity: 'licensee' | 'advertiser' | 'campaign' | 'strategy' | 'creativeSize' | 'aggregator' | 'app' | 'os' | 'creative' | 'country' | '
|
|
56
|
-
getSlicexDataListUsingPOST(entity: 'licensee' | 'advertiser' | 'campaign' | 'strategy' | 'creativeSize' | 'aggregator' | 'app' | 'os' | 'creative' | 'country' | '
|
|
57
|
-
/**
|
|
58
|
-
* Slicex API for grid details.
|
|
59
|
-
*
|
|
60
|
-
* @param entity entity
|
|
61
|
-
* @param slicexRequestExt slicexRequestExt
|
|
62
|
-
* @param reqId request id
|
|
63
|
-
* @param token Auth Token
|
|
64
|
-
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
65
|
-
* @param reportProgress flag to report request and response progress.
|
|
66
|
-
*/
|
|
67
|
-
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>;
|
|
68
|
-
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>>;
|
|
69
|
-
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>>;
|
|
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>>;
|
|
70
56
|
/**
|
|
71
57
|
* Slicex API for List Export.
|
|
72
58
|
*
|
|
@@ -78,7 +64,7 @@ export declare class SliceXControllerService {
|
|
|
78
64
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
79
65
|
* @param reportProgress flag to report request and response progress.
|
|
80
66
|
*/
|
|
81
|
-
getSlicexListDataForExportUsingPOST(entity: 'licensee' | 'advertiser' | 'campaign' | 'strategy' | 'creativeSize' | 'aggregator' | 'app' | 'os' | 'creative' | 'country' | '
|
|
82
|
-
getSlicexListDataForExportUsingPOST(entity: 'licensee' | 'advertiser' | 'campaign' | 'strategy' | 'creativeSize' | 'aggregator' | 'app' | 'os' | 'creative' | 'country' | '
|
|
83
|
-
getSlicexListDataForExportUsingPOST(entity: 'licensee' | 'advertiser' | 'campaign' | 'strategy' | 'creativeSize' | 'aggregator' | 'app' | 'os' | 'creative' | 'country' | '
|
|
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>>;
|
|
84
70
|
}
|
|
@@ -1506,6 +1506,42 @@
|
|
|
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
|
+
};
|
|
1509
1545
|
AudienceControllerService.prototype.getByIdUsingGET1 = function (id, refresh, reqId, token, observe, reportProgress) {
|
|
1510
1546
|
if (observe === void 0) { observe = 'body'; }
|
|
1511
1547
|
if (reportProgress === void 0) { reportProgress = false; }
|
|
@@ -2648,42 +2684,6 @@
|
|
|
2648
2684
|
reportProgress: reportProgress
|
|
2649
2685
|
});
|
|
2650
2686
|
};
|
|
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,12 +3920,15 @@
|
|
|
3920
3920
|
reportProgress: reportProgress
|
|
3921
3921
|
});
|
|
3922
3922
|
};
|
|
3923
|
-
CreativeSetsControllerService.prototype.getCreativesPerformanceUsingPOST = function (dashboardRequest, refresh, reqId, token, observe, reportProgress) {
|
|
3923
|
+
CreativeSetsControllerService.prototype.getCreativesPerformanceUsingPOST = function (dashboardRequest, id, 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
|
+
}
|
|
3929
3932
|
var queryParameters = new http.HttpParams({ encoder: new CustomHttpUrlEncodingCodec() });
|
|
3930
3933
|
if (refresh !== undefined && refresh !== null) {
|
|
3931
3934
|
queryParameters = queryParameters.set('refresh', refresh);
|
|
@@ -3953,7 +3956,7 @@
|
|
|
3953
3956
|
if (httpContentTypeSelected != undefined) {
|
|
3954
3957
|
headers = headers.set('Content-Type', httpContentTypeSelected);
|
|
3955
3958
|
}
|
|
3956
|
-
return this.httpClient.post(this.basePath + "/v2/api/creativesets/creatives/performance/", dashboardRequest, {
|
|
3959
|
+
return this.httpClient.post(this.basePath + "/v2/api/creativesets/creatives/performance/" + encodeURIComponent(String(id)), dashboardRequest, {
|
|
3957
3960
|
params: queryParameters,
|
|
3958
3961
|
withCredentials: this.configuration.withCredentials,
|
|
3959
3962
|
headers: headers,
|
|
@@ -6022,45 +6025,6 @@
|
|
|
6022
6025
|
reportProgress: reportProgress
|
|
6023
6026
|
});
|
|
6024
6027
|
};
|
|
6025
|
-
SliceXControllerService.prototype.getSlicexGridDetailsUsingPOST = function (entity, slicexRequestExt, reqId, 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 getSlicexGridDetailsUsingPOST.');
|
|
6030
|
-
}
|
|
6031
|
-
if (slicexRequestExt === null || slicexRequestExt === undefined) {
|
|
6032
|
-
throw new Error('Required parameter slicexRequestExt was null or undefined when calling getSlicexGridDetailsUsingPOST.');
|
|
6033
|
-
}
|
|
6034
|
-
var headers = this.defaultHeaders;
|
|
6035
|
-
if (reqId !== undefined && reqId !== null) {
|
|
6036
|
-
headers = headers.set('reqId', String(reqId));
|
|
6037
|
-
}
|
|
6038
|
-
if (token !== undefined && token !== null) {
|
|
6039
|
-
headers = headers.set('token', String(token));
|
|
6040
|
-
}
|
|
6041
|
-
// to determine the Accept header
|
|
6042
|
-
var httpHeaderAccepts = [
|
|
6043
|
-
'application/json'
|
|
6044
|
-
];
|
|
6045
|
-
var httpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
|
|
6046
|
-
if (httpHeaderAcceptSelected != undefined) {
|
|
6047
|
-
headers = headers.set('Accept', httpHeaderAcceptSelected);
|
|
6048
|
-
}
|
|
6049
|
-
// to determine the Content-Type header
|
|
6050
|
-
var consumes = [
|
|
6051
|
-
'application/json'
|
|
6052
|
-
];
|
|
6053
|
-
var httpContentTypeSelected = this.configuration.selectHeaderContentType(consumes);
|
|
6054
|
-
if (httpContentTypeSelected != undefined) {
|
|
6055
|
-
headers = headers.set('Content-Type', httpContentTypeSelected);
|
|
6056
|
-
}
|
|
6057
|
-
return this.httpClient.post(this.basePath + "/v2/api/slicex/list/details/" + encodeURIComponent(String(entity)), slicexRequestExt, {
|
|
6058
|
-
withCredentials: this.configuration.withCredentials,
|
|
6059
|
-
headers: headers,
|
|
6060
|
-
observe: observe,
|
|
6061
|
-
reportProgress: reportProgress
|
|
6062
|
-
});
|
|
6063
|
-
};
|
|
6064
6028
|
SliceXControllerService.prototype.getSlicexListDataForExportUsingPOST = function (entity, slicexRequest, reqId, sort, token, observe, reportProgress) {
|
|
6065
6029
|
if (observe === void 0) { observe = 'body'; }
|
|
6066
6030
|
if (reportProgress === void 0) { reportProgress = false; }
|