@revxui/api-clients-ts 0.10.278 → 0.10.279
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/campaignController.service.d.ts +14 -0
- package/api/dashboardController.service.d.ts +4 -3
- package/bundles/revxui-api-clients-ts.umd.js +36 -0
- 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/campaignController.service.js +35 -1
- package/esm2015/api/dashboardController.service.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/incrementalityReportDTO.js +12 -0
- package/esm2015/model/incrementalityReportResponse.js +12 -0
- package/esm2015/model/incrementalityResponse.js +1 -0
- package/esm2015/model/models.js +1 -1
- package/esm5/api/campaignController.service.js +37 -1
- package/esm5/api/dashboardController.service.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/incrementalityReportDTO.js +12 -0
- package/esm5/model/incrementalityReportResponse.js +12 -0
- package/esm5/model/incrementalityResponse.js +1 -0
- package/esm5/model/models.js +1 -1
- package/fesm2015/revxui-api-clients-ts.js +34 -0
- package/fesm2015/revxui-api-clients-ts.js.map +1 -1
- package/fesm5/revxui-api-clients-ts.js +36 -0
- 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 +2 -0
- package/model/creativeDTO.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/incrementalityReportDTO.d.ts +17 -0
- package/model/incrementalityReportResponse.d.ts +24 -0
- package/model/incrementalityResponse.d.ts +17 -0
- package/model/models.d.ts +3 -0
- package/package.json +1 -1
- package/revxui-api-clients-ts.metadata.json +1 -1
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
## @revxui/api-clients-ts@0.10.
|
|
1
|
+
## @revxui/api-clients-ts@0.10.279
|
|
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.279 --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
|
*
|
|
@@ -20,6 +20,7 @@ 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';
|
|
23
24
|
import { ApiResponseObjectMenuCrubResponse } from '../model/apiResponseObjectMenuCrubResponse';
|
|
24
25
|
import { ApiResponseObjectParentBasedObject } from '../model/apiResponseObjectParentBasedObject';
|
|
25
26
|
import { DashboardRequest } from '../model/dashboardRequest';
|
|
@@ -236,7 +237,7 @@ export declare class DashboardControllerService {
|
|
|
236
237
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
237
238
|
* @param reportProgress flag to report request and response progress.
|
|
238
239
|
*/
|
|
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<
|
|
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<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?: 'response', reportProgress?: boolean): Observable<HttpResponse<ApiResponseObjectMapintResponseMessage>>;
|
|
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<ApiResponseObjectMapintResponseMessage>>;
|
|
242
243
|
}
|
|
@@ -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; }
|