@revxui/api-clients-ts 1.1.0 → 1.1.2
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/strategyController.service.d.ts +43 -0
- package/bundles/revxui-api-clients-ts.umd.js +129 -24
- package/bundles/revxui-api-clients-ts.umd.js.map +1 -1
- package/esm2015/api/adminController.service.js +2 -2
- package/esm2015/api/advertiserController.service.js +2 -2
- package/esm2015/api/appSettingsController.service.js +2 -2
- package/esm2015/api/audienceController.service.js +2 -2
- package/esm2015/api/auditController.service.js +2 -2
- package/esm2015/api/bulkStrategyController.service.js +2 -2
- package/esm2015/api/cSSThemeController_.service.js +2 -2
- package/esm2015/api/campaignController.service.js +2 -2
- package/esm2015/api/catalogController.service.js +2 -2
- package/esm2015/api/clickDestinationController.service.js +2 -2
- package/esm2015/api/creativeController.service.js +2 -2
- package/esm2015/api/creativeSetsController.service.js +2 -2
- package/esm2015/api/creativeTemplateThemesController.service.js +2 -2
- package/esm2015/api/creativeTemplateVariablesController.service.js +2 -2
- package/esm2015/api/creativeTemplatesController.service.js +2 -2
- package/esm2015/api/customerReportingController.service.js +2 -2
- package/esm2015/api/dashboardController.service.js +2 -2
- package/esm2015/api/notificationsController.service.js +2 -2
- package/esm2015/api/pixelController.service.js +2 -2
- package/esm2015/api/reportingController.service.js +2 -2
- package/esm2015/api/sliceXController.service.js +2 -2
- package/esm2015/api/strategyController.service.js +101 -2
- package/esm2015/api/uILoggerController.service.js +2 -2
- package/esm2015/api/userPreferenceController.service.js +2 -2
- package/esm2015/model/apiListResponseStrategyTargettingPerformanceData.js +2 -0
- package/esm2015/model/apiResponseObjectStrategyOptimizationDataResponse.js +2 -0
- package/esm2015/model/models.js +6 -1
- package/esm2015/model/strategyOptBlockTargetingReq.js +13 -0
- package/esm2015/model/strategyOptimizationDataResponse.js +2 -0
- package/esm2015/model/strategyTargettingPerformanceData.js +13 -0
- package/fesm2015/revxui-api-clients-ts.js +147 -24
- package/fesm2015/revxui-api-clients-ts.js.map +1 -1
- package/model/apiListResponseStrategyTargettingPerformanceData.d.ts +16 -0
- package/model/apiResponseObjectStrategyOptimizationDataResponse.d.ts +17 -0
- package/model/models.d.ts +5 -0
- package/model/strategyOptBlockTargetingReq.d.ts +15 -0
- package/model/strategyOptimizationDataResponse.d.ts +17 -0
- package/model/strategyTargettingPerformanceData.d.ts +24 -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@1.1.
|
|
1
|
+
## @revxui/api-clients-ts@1.1.2
|
|
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@1.1.
|
|
22
|
+
npm install @revxui/api-clients-ts@1.1.2 --save
|
|
23
23
|
```
|
|
24
24
|
|
|
25
25
|
_without publishing (not recommended):_
|
|
@@ -13,12 +13,15 @@ import { HttpClient, HttpHeaders, HttpResponse, HttpEvent } from '@angular/commo
|
|
|
13
13
|
import { Observable } from 'rxjs';
|
|
14
14
|
import { ABTestDTO } from '../model/aBTestDTO';
|
|
15
15
|
import { ApiListResponseABTestDTO } from '../model/apiListResponseABTestDTO';
|
|
16
|
+
import { ApiListResponseStrategyTargettingPerformanceData } from '../model/apiListResponseStrategyTargettingPerformanceData';
|
|
16
17
|
import { ApiResponseObjectABTestDTO } from '../model/apiResponseObjectABTestDTO';
|
|
17
18
|
import { ApiResponseObjectGeoListDTO } from '../model/apiResponseObjectGeoListDTO';
|
|
18
19
|
import { ApiResponseObjectMaplongResponseMessage } from '../model/apiResponseObjectMaplongResponseMessage';
|
|
20
|
+
import { ApiResponseObjectResponseMessage } from '../model/apiResponseObjectResponseMessage';
|
|
19
21
|
import { ApiResponseObjectSiteListDTO } from '../model/apiResponseObjectSiteListDTO';
|
|
20
22
|
import { ApiResponseObjectStrategyCreativeAssociationResponseDTO } from '../model/apiResponseObjectStrategyCreativeAssociationResponseDTO';
|
|
21
23
|
import { ApiResponseObjectStrategyDTO } from '../model/apiResponseObjectStrategyDTO';
|
|
24
|
+
import { ApiResponseObjectStrategyOptimizationDataResponse } from '../model/apiResponseObjectStrategyOptimizationDataResponse';
|
|
22
25
|
import { ApiResponseObjectStrategyQuickEditDTO } from '../model/apiResponseObjectStrategyQuickEditDTO';
|
|
23
26
|
import { ApiResponseObjectlong } from '../model/apiResponseObjectlong';
|
|
24
27
|
import { ApiResponseObjectstring } from '../model/apiResponseObjectstring';
|
|
@@ -28,6 +31,7 @@ import { SiteListRequest } from '../model/siteListRequest';
|
|
|
28
31
|
import { StrategyCreativeAssociationRequestDTO } from '../model/strategyCreativeAssociationRequestDTO';
|
|
29
32
|
import { StrategyDTO } from '../model/strategyDTO';
|
|
30
33
|
import { StrategyInlineDTO } from '../model/strategyInlineDTO';
|
|
34
|
+
import { StrategyOptBlockTargetingReq } from '../model/strategyOptBlockTargetingReq';
|
|
31
35
|
import { StrategyQuickEditDTO } from '../model/strategyQuickEditDTO';
|
|
32
36
|
import { Configuration } from '../configuration';
|
|
33
37
|
export declare class StrategyControllerService {
|
|
@@ -127,6 +131,19 @@ export declare class StrategyControllerService {
|
|
|
127
131
|
duplicateStrategyUsingPOST(dto: DuplicateStrategyRequestDTO, id: number, reqId?: string, token?: string, observe?: 'body', reportProgress?: boolean): Observable<ApiResponseObjectStrategyDTO>;
|
|
128
132
|
duplicateStrategyUsingPOST(dto: DuplicateStrategyRequestDTO, id: number, reqId?: string, token?: string, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<ApiResponseObjectStrategyDTO>>;
|
|
129
133
|
duplicateStrategyUsingPOST(dto: DuplicateStrategyRequestDTO, id: number, reqId?: string, token?: string, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<ApiResponseObjectStrategyDTO>>;
|
|
134
|
+
/**
|
|
135
|
+
* Api to get Startegy Optimization data by Id
|
|
136
|
+
*
|
|
137
|
+
* @param id id
|
|
138
|
+
* @param tableEntity tableEntity
|
|
139
|
+
* @param reqId request id
|
|
140
|
+
* @param token Auth Token
|
|
141
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
142
|
+
* @param reportProgress flag to report request and response progress.
|
|
143
|
+
*/
|
|
144
|
+
fetchStrategyTargetingUsingGET(id: 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' | 'AUDIENCE_UU_COUNT', reqId?: string, token?: string, observe?: 'body', reportProgress?: boolean): Observable<ApiResponseObjectStrategyOptimizationDataResponse>;
|
|
145
|
+
fetchStrategyTargetingUsingGET(id: 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' | 'AUDIENCE_UU_COUNT', reqId?: string, token?: string, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<ApiResponseObjectStrategyOptimizationDataResponse>>;
|
|
146
|
+
fetchStrategyTargetingUsingGET(id: 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' | 'AUDIENCE_UU_COUNT', reqId?: string, token?: string, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<ApiResponseObjectStrategyOptimizationDataResponse>>;
|
|
130
147
|
/**
|
|
131
148
|
* API to get an AB Test experiment details
|
|
132
149
|
*
|
|
@@ -175,6 +192,19 @@ export declare class StrategyControllerService {
|
|
|
175
192
|
getStrategyQuickEditDetailsUsingGET(id: number, reqId?: string, token?: string, observe?: 'body', reportProgress?: boolean): Observable<ApiResponseObjectStrategyQuickEditDTO>;
|
|
176
193
|
getStrategyQuickEditDetailsUsingGET(id: number, reqId?: string, token?: string, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<ApiResponseObjectStrategyQuickEditDTO>>;
|
|
177
194
|
getStrategyQuickEditDetailsUsingGET(id: number, reqId?: string, token?: string, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<ApiResponseObjectStrategyQuickEditDTO>>;
|
|
195
|
+
/**
|
|
196
|
+
* Api to get Startegy Optimization data by Id
|
|
197
|
+
*
|
|
198
|
+
* @param id id
|
|
199
|
+
* @param tableEntity tableEntity
|
|
200
|
+
* @param reqId request id
|
|
201
|
+
* @param token Auth Token
|
|
202
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
203
|
+
* @param reportProgress flag to report request and response progress.
|
|
204
|
+
*/
|
|
205
|
+
getStrategyTargetingRecommendationUsingGET(id: 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' | 'AUDIENCE_UU_COUNT', reqId?: string, token?: string, observe?: 'body', reportProgress?: boolean): Observable<ApiListResponseStrategyTargettingPerformanceData>;
|
|
206
|
+
getStrategyTargetingRecommendationUsingGET(id: 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' | 'AUDIENCE_UU_COUNT', reqId?: string, token?: string, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<ApiListResponseStrategyTargettingPerformanceData>>;
|
|
207
|
+
getStrategyTargetingRecommendationUsingGET(id: 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' | 'AUDIENCE_UU_COUNT', reqId?: string, token?: string, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<ApiListResponseStrategyTargettingPerformanceData>>;
|
|
178
208
|
/**
|
|
179
209
|
* Api for strategy in-line edit
|
|
180
210
|
*
|
|
@@ -214,6 +244,19 @@ export declare class StrategyControllerService {
|
|
|
214
244
|
saveStrategyQuickEditDetailsUsingPOST(id: number, strategyQuickEditDTO: StrategyQuickEditDTO, reqId?: string, token?: string, observe?: 'body', reportProgress?: boolean): Observable<ApiResponseObjectStrategyDTO>;
|
|
215
245
|
saveStrategyQuickEditDetailsUsingPOST(id: number, strategyQuickEditDTO: StrategyQuickEditDTO, reqId?: string, token?: string, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<ApiResponseObjectStrategyDTO>>;
|
|
216
246
|
saveStrategyQuickEditDetailsUsingPOST(id: number, strategyQuickEditDTO: StrategyQuickEditDTO, reqId?: string, token?: string, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<ApiResponseObjectStrategyDTO>>;
|
|
247
|
+
/**
|
|
248
|
+
* API to do strategy optimization
|
|
249
|
+
*
|
|
250
|
+
* @param id id
|
|
251
|
+
* @param req req
|
|
252
|
+
* @param reqId request id
|
|
253
|
+
* @param token Auth Token
|
|
254
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
255
|
+
* @param reportProgress flag to report request and response progress.
|
|
256
|
+
*/
|
|
257
|
+
strategyOptimizationUsingPOST(id: number, req: StrategyOptBlockTargetingReq, reqId?: string, token?: string, observe?: 'body', reportProgress?: boolean): Observable<ApiResponseObjectResponseMessage>;
|
|
258
|
+
strategyOptimizationUsingPOST(id: number, req: StrategyOptBlockTargetingReq, reqId?: string, token?: string, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<ApiResponseObjectResponseMessage>>;
|
|
259
|
+
strategyOptimizationUsingPOST(id: number, req: StrategyOptBlockTargetingReq, reqId?: string, token?: string, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<ApiResponseObjectResponseMessage>>;
|
|
217
260
|
/**
|
|
218
261
|
* API to update AB Test experiment
|
|
219
262
|
*
|
|
@@ -370,7 +370,7 @@
|
|
|
370
370
|
var AdminControllerService = /** @class */ (function () {
|
|
371
371
|
function AdminControllerService(httpClient, basePath, configuration) {
|
|
372
372
|
this.httpClient = httpClient;
|
|
373
|
-
this.basePath = 'https://
|
|
373
|
+
this.basePath = 'https://apiv2stage2.atomex.net';
|
|
374
374
|
this.defaultHeaders = new http.HttpHeaders();
|
|
375
375
|
this.configuration = new Configuration();
|
|
376
376
|
if (basePath) {
|
|
@@ -575,7 +575,7 @@
|
|
|
575
575
|
var AdvertiserControllerService = /** @class */ (function () {
|
|
576
576
|
function AdvertiserControllerService(httpClient, basePath, configuration) {
|
|
577
577
|
this.httpClient = httpClient;
|
|
578
|
-
this.basePath = 'https://
|
|
578
|
+
this.basePath = 'https://apiv2stage2.atomex.net';
|
|
579
579
|
this.defaultHeaders = new http.HttpHeaders();
|
|
580
580
|
this.configuration = new Configuration();
|
|
581
581
|
if (basePath) {
|
|
@@ -1009,7 +1009,7 @@
|
|
|
1009
1009
|
var AppSettingsControllerService = /** @class */ (function () {
|
|
1010
1010
|
function AppSettingsControllerService(httpClient, basePath, configuration) {
|
|
1011
1011
|
this.httpClient = httpClient;
|
|
1012
|
-
this.basePath = 'https://
|
|
1012
|
+
this.basePath = 'https://apiv2stage2.atomex.net';
|
|
1013
1013
|
this.defaultHeaders = new http.HttpHeaders();
|
|
1014
1014
|
this.configuration = new Configuration();
|
|
1015
1015
|
if (basePath) {
|
|
@@ -1262,7 +1262,7 @@
|
|
|
1262
1262
|
var AudienceControllerService = /** @class */ (function () {
|
|
1263
1263
|
function AudienceControllerService(httpClient, basePath, configuration) {
|
|
1264
1264
|
this.httpClient = httpClient;
|
|
1265
|
-
this.basePath = 'https://
|
|
1265
|
+
this.basePath = 'https://apiv2stage2.atomex.net';
|
|
1266
1266
|
this.defaultHeaders = new http.HttpHeaders();
|
|
1267
1267
|
this.configuration = new Configuration();
|
|
1268
1268
|
if (basePath) {
|
|
@@ -2120,7 +2120,7 @@
|
|
|
2120
2120
|
var AuditControllerService = /** @class */ (function () {
|
|
2121
2121
|
function AuditControllerService(httpClient, basePath, configuration) {
|
|
2122
2122
|
this.httpClient = httpClient;
|
|
2123
|
-
this.basePath = 'https://
|
|
2123
|
+
this.basePath = 'https://apiv2stage2.atomex.net';
|
|
2124
2124
|
this.defaultHeaders = new http.HttpHeaders();
|
|
2125
2125
|
this.configuration = new Configuration();
|
|
2126
2126
|
if (basePath) {
|
|
@@ -2307,7 +2307,7 @@
|
|
|
2307
2307
|
var BulkStrategyControllerService = /** @class */ (function () {
|
|
2308
2308
|
function BulkStrategyControllerService(httpClient, basePath, configuration) {
|
|
2309
2309
|
this.httpClient = httpClient;
|
|
2310
|
-
this.basePath = 'https://
|
|
2310
|
+
this.basePath = 'https://apiv2stage2.atomex.net';
|
|
2311
2311
|
this.defaultHeaders = new http.HttpHeaders();
|
|
2312
2312
|
this.configuration = new Configuration();
|
|
2313
2313
|
if (basePath) {
|
|
@@ -2538,7 +2538,7 @@
|
|
|
2538
2538
|
var CSSThemeController_Service = /** @class */ (function () {
|
|
2539
2539
|
function CSSThemeController_Service(httpClient, basePath, configuration) {
|
|
2540
2540
|
this.httpClient = httpClient;
|
|
2541
|
-
this.basePath = 'https://
|
|
2541
|
+
this.basePath = 'https://apiv2stage2.atomex.net';
|
|
2542
2542
|
this.defaultHeaders = new http.HttpHeaders();
|
|
2543
2543
|
this.configuration = new Configuration();
|
|
2544
2544
|
if (basePath) {
|
|
@@ -2647,7 +2647,7 @@
|
|
|
2647
2647
|
var CampaignControllerService = /** @class */ (function () {
|
|
2648
2648
|
function CampaignControllerService(httpClient, basePath, configuration) {
|
|
2649
2649
|
this.httpClient = httpClient;
|
|
2650
|
-
this.basePath = 'https://
|
|
2650
|
+
this.basePath = 'https://apiv2stage2.atomex.net';
|
|
2651
2651
|
this.defaultHeaders = new http.HttpHeaders();
|
|
2652
2652
|
this.configuration = new Configuration();
|
|
2653
2653
|
if (basePath) {
|
|
@@ -2957,7 +2957,7 @@
|
|
|
2957
2957
|
var CatalogControllerService = /** @class */ (function () {
|
|
2958
2958
|
function CatalogControllerService(httpClient, basePath, configuration) {
|
|
2959
2959
|
this.httpClient = httpClient;
|
|
2960
|
-
this.basePath = 'https://
|
|
2960
|
+
this.basePath = 'https://apiv2stage2.atomex.net';
|
|
2961
2961
|
this.defaultHeaders = new http.HttpHeaders();
|
|
2962
2962
|
this.configuration = new Configuration();
|
|
2963
2963
|
if (basePath) {
|
|
@@ -3203,7 +3203,7 @@
|
|
|
3203
3203
|
var ClickDestinationControllerService = /** @class */ (function () {
|
|
3204
3204
|
function ClickDestinationControllerService(httpClient, basePath, configuration) {
|
|
3205
3205
|
this.httpClient = httpClient;
|
|
3206
|
-
this.basePath = 'https://
|
|
3206
|
+
this.basePath = 'https://apiv2stage2.atomex.net';
|
|
3207
3207
|
this.defaultHeaders = new http.HttpHeaders();
|
|
3208
3208
|
this.configuration = new Configuration();
|
|
3209
3209
|
if (basePath) {
|
|
@@ -3441,7 +3441,7 @@
|
|
|
3441
3441
|
var CreativeControllerService = /** @class */ (function () {
|
|
3442
3442
|
function CreativeControllerService(httpClient, basePath, configuration) {
|
|
3443
3443
|
this.httpClient = httpClient;
|
|
3444
|
-
this.basePath = 'https://
|
|
3444
|
+
this.basePath = 'https://apiv2stage2.atomex.net';
|
|
3445
3445
|
this.defaultHeaders = new http.HttpHeaders();
|
|
3446
3446
|
this.configuration = new Configuration();
|
|
3447
3447
|
if (basePath) {
|
|
@@ -3942,7 +3942,7 @@
|
|
|
3942
3942
|
var CreativeSetsControllerService = /** @class */ (function () {
|
|
3943
3943
|
function CreativeSetsControllerService(httpClient, basePath, configuration) {
|
|
3944
3944
|
this.httpClient = httpClient;
|
|
3945
|
-
this.basePath = 'https://
|
|
3945
|
+
this.basePath = 'https://apiv2stage2.atomex.net';
|
|
3946
3946
|
this.defaultHeaders = new http.HttpHeaders();
|
|
3947
3947
|
this.configuration = new Configuration();
|
|
3948
3948
|
if (basePath) {
|
|
@@ -4461,7 +4461,7 @@
|
|
|
4461
4461
|
var CreativeTemplateThemesControllerService = /** @class */ (function () {
|
|
4462
4462
|
function CreativeTemplateThemesControllerService(httpClient, basePath, configuration) {
|
|
4463
4463
|
this.httpClient = httpClient;
|
|
4464
|
-
this.basePath = 'https://
|
|
4464
|
+
this.basePath = 'https://apiv2stage2.atomex.net';
|
|
4465
4465
|
this.defaultHeaders = new http.HttpHeaders();
|
|
4466
4466
|
this.configuration = new Configuration();
|
|
4467
4467
|
if (basePath) {
|
|
@@ -4650,7 +4650,7 @@
|
|
|
4650
4650
|
var CreativeTemplateVariablesControllerService = /** @class */ (function () {
|
|
4651
4651
|
function CreativeTemplateVariablesControllerService(httpClient, basePath, configuration) {
|
|
4652
4652
|
this.httpClient = httpClient;
|
|
4653
|
-
this.basePath = 'https://
|
|
4653
|
+
this.basePath = 'https://apiv2stage2.atomex.net';
|
|
4654
4654
|
this.defaultHeaders = new http.HttpHeaders();
|
|
4655
4655
|
this.configuration = new Configuration();
|
|
4656
4656
|
if (basePath) {
|
|
@@ -4726,7 +4726,7 @@
|
|
|
4726
4726
|
var CreativeTemplatesControllerService = /** @class */ (function () {
|
|
4727
4727
|
function CreativeTemplatesControllerService(httpClient, basePath, configuration) {
|
|
4728
4728
|
this.httpClient = httpClient;
|
|
4729
|
-
this.basePath = 'https://
|
|
4729
|
+
this.basePath = 'https://apiv2stage2.atomex.net';
|
|
4730
4730
|
this.defaultHeaders = new http.HttpHeaders();
|
|
4731
4731
|
this.configuration = new Configuration();
|
|
4732
4732
|
if (basePath) {
|
|
@@ -4893,7 +4893,7 @@
|
|
|
4893
4893
|
var CustomerReportingControllerService = /** @class */ (function () {
|
|
4894
4894
|
function CustomerReportingControllerService(httpClient, basePath, configuration) {
|
|
4895
4895
|
this.httpClient = httpClient;
|
|
4896
|
-
this.basePath = 'https://
|
|
4896
|
+
this.basePath = 'https://apiv2stage2.atomex.net';
|
|
4897
4897
|
this.defaultHeaders = new http.HttpHeaders();
|
|
4898
4898
|
this.configuration = new Configuration();
|
|
4899
4899
|
if (basePath) {
|
|
@@ -4978,7 +4978,7 @@
|
|
|
4978
4978
|
var DashboardControllerService = /** @class */ (function () {
|
|
4979
4979
|
function DashboardControllerService(httpClient, basePath, configuration) {
|
|
4980
4980
|
this.httpClient = httpClient;
|
|
4981
|
-
this.basePath = 'https://
|
|
4981
|
+
this.basePath = 'https://apiv2stage2.atomex.net';
|
|
4982
4982
|
this.defaultHeaders = new http.HttpHeaders();
|
|
4983
4983
|
this.configuration = new Configuration();
|
|
4984
4984
|
if (basePath) {
|
|
@@ -5623,7 +5623,7 @@
|
|
|
5623
5623
|
var NotificationsControllerService = /** @class */ (function () {
|
|
5624
5624
|
function NotificationsControllerService(httpClient, basePath, configuration) {
|
|
5625
5625
|
this.httpClient = httpClient;
|
|
5626
|
-
this.basePath = 'https://
|
|
5626
|
+
this.basePath = 'https://apiv2stage2.atomex.net';
|
|
5627
5627
|
this.defaultHeaders = new http.HttpHeaders();
|
|
5628
5628
|
this.configuration = new Configuration();
|
|
5629
5629
|
if (basePath) {
|
|
@@ -5810,7 +5810,7 @@
|
|
|
5810
5810
|
var PixelControllerService = /** @class */ (function () {
|
|
5811
5811
|
function PixelControllerService(httpClient, basePath, configuration) {
|
|
5812
5812
|
this.httpClient = httpClient;
|
|
5813
|
-
this.basePath = 'https://
|
|
5813
|
+
this.basePath = 'https://apiv2stage2.atomex.net';
|
|
5814
5814
|
this.defaultHeaders = new http.HttpHeaders();
|
|
5815
5815
|
this.configuration = new Configuration();
|
|
5816
5816
|
if (basePath) {
|
|
@@ -6127,7 +6127,7 @@
|
|
|
6127
6127
|
var ReportingControllerService = /** @class */ (function () {
|
|
6128
6128
|
function ReportingControllerService(httpClient, basePath, configuration) {
|
|
6129
6129
|
this.httpClient = httpClient;
|
|
6130
|
-
this.basePath = 'https://
|
|
6130
|
+
this.basePath = 'https://apiv2stage2.atomex.net';
|
|
6131
6131
|
this.defaultHeaders = new http.HttpHeaders();
|
|
6132
6132
|
this.configuration = new Configuration();
|
|
6133
6133
|
if (basePath) {
|
|
@@ -6299,7 +6299,7 @@
|
|
|
6299
6299
|
var SliceXControllerService = /** @class */ (function () {
|
|
6300
6300
|
function SliceXControllerService(httpClient, basePath, configuration) {
|
|
6301
6301
|
this.httpClient = httpClient;
|
|
6302
|
-
this.basePath = 'https://
|
|
6302
|
+
this.basePath = 'https://apiv2stage2.atomex.net';
|
|
6303
6303
|
this.defaultHeaders = new http.HttpHeaders();
|
|
6304
6304
|
this.configuration = new Configuration();
|
|
6305
6305
|
if (basePath) {
|
|
@@ -6555,7 +6555,7 @@
|
|
|
6555
6555
|
var StrategyControllerService = /** @class */ (function () {
|
|
6556
6556
|
function StrategyControllerService(httpClient, basePath, configuration) {
|
|
6557
6557
|
this.httpClient = httpClient;
|
|
6558
|
-
this.basePath = 'https://
|
|
6558
|
+
this.basePath = 'https://apiv2stage2.atomex.net';
|
|
6559
6559
|
this.defaultHeaders = new http.HttpHeaders();
|
|
6560
6560
|
this.configuration = new Configuration();
|
|
6561
6561
|
if (basePath) {
|
|
@@ -6850,6 +6850,39 @@
|
|
|
6850
6850
|
reportProgress: reportProgress
|
|
6851
6851
|
});
|
|
6852
6852
|
};
|
|
6853
|
+
StrategyControllerService.prototype.fetchStrategyTargetingUsingGET = function (id, tableEntity, reqId, token, observe, reportProgress) {
|
|
6854
|
+
if (observe === void 0) { observe = 'body'; }
|
|
6855
|
+
if (reportProgress === void 0) { reportProgress = false; }
|
|
6856
|
+
if (id === null || id === undefined) {
|
|
6857
|
+
throw new Error('Required parameter id was null or undefined when calling fetchStrategyTargetingUsingGET.');
|
|
6858
|
+
}
|
|
6859
|
+
if (tableEntity === null || tableEntity === undefined) {
|
|
6860
|
+
throw new Error('Required parameter tableEntity was null or undefined when calling fetchStrategyTargetingUsingGET.');
|
|
6861
|
+
}
|
|
6862
|
+
var headers = this.defaultHeaders;
|
|
6863
|
+
if (reqId !== undefined && reqId !== null) {
|
|
6864
|
+
headers = headers.set('reqId', String(reqId));
|
|
6865
|
+
}
|
|
6866
|
+
if (token !== undefined && token !== null) {
|
|
6867
|
+
headers = headers.set('token', String(token));
|
|
6868
|
+
}
|
|
6869
|
+
// to determine the Accept header
|
|
6870
|
+
var httpHeaderAccepts = [
|
|
6871
|
+
'*/*'
|
|
6872
|
+
];
|
|
6873
|
+
var httpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
|
|
6874
|
+
if (httpHeaderAcceptSelected != undefined) {
|
|
6875
|
+
headers = headers.set('Accept', httpHeaderAcceptSelected);
|
|
6876
|
+
}
|
|
6877
|
+
// to determine the Content-Type header
|
|
6878
|
+
var consumes = [];
|
|
6879
|
+
return this.httpClient.get(this.basePath + "/v2/api/strategies/" + encodeURIComponent(String(id)) + "/fetch/" + encodeURIComponent(String(tableEntity)), {
|
|
6880
|
+
withCredentials: this.configuration.withCredentials,
|
|
6881
|
+
headers: headers,
|
|
6882
|
+
observe: observe,
|
|
6883
|
+
reportProgress: reportProgress
|
|
6884
|
+
});
|
|
6885
|
+
};
|
|
6853
6886
|
StrategyControllerService.prototype.getABTestExperimentUsingGET = function (id, reqId, token, observe, reportProgress) {
|
|
6854
6887
|
if (observe === void 0) { observe = 'body'; }
|
|
6855
6888
|
if (reportProgress === void 0) { reportProgress = false; }
|
|
@@ -6972,6 +7005,39 @@
|
|
|
6972
7005
|
reportProgress: reportProgress
|
|
6973
7006
|
});
|
|
6974
7007
|
};
|
|
7008
|
+
StrategyControllerService.prototype.getStrategyTargetingRecommendationUsingGET = function (id, tableEntity, reqId, token, observe, reportProgress) {
|
|
7009
|
+
if (observe === void 0) { observe = 'body'; }
|
|
7010
|
+
if (reportProgress === void 0) { reportProgress = false; }
|
|
7011
|
+
if (id === null || id === undefined) {
|
|
7012
|
+
throw new Error('Required parameter id was null or undefined when calling getStrategyTargetingRecommendationUsingGET.');
|
|
7013
|
+
}
|
|
7014
|
+
if (tableEntity === null || tableEntity === undefined) {
|
|
7015
|
+
throw new Error('Required parameter tableEntity was null or undefined when calling getStrategyTargetingRecommendationUsingGET.');
|
|
7016
|
+
}
|
|
7017
|
+
var headers = this.defaultHeaders;
|
|
7018
|
+
if (reqId !== undefined && reqId !== null) {
|
|
7019
|
+
headers = headers.set('reqId', String(reqId));
|
|
7020
|
+
}
|
|
7021
|
+
if (token !== undefined && token !== null) {
|
|
7022
|
+
headers = headers.set('token', String(token));
|
|
7023
|
+
}
|
|
7024
|
+
// to determine the Accept header
|
|
7025
|
+
var httpHeaderAccepts = [
|
|
7026
|
+
'*/*'
|
|
7027
|
+
];
|
|
7028
|
+
var httpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
|
|
7029
|
+
if (httpHeaderAcceptSelected != undefined) {
|
|
7030
|
+
headers = headers.set('Accept', httpHeaderAcceptSelected);
|
|
7031
|
+
}
|
|
7032
|
+
// to determine the Content-Type header
|
|
7033
|
+
var consumes = [];
|
|
7034
|
+
return this.httpClient.get(this.basePath + "/v2/api/strategies/" + encodeURIComponent(String(id)) + "/recommendation/" + encodeURIComponent(String(tableEntity)), {
|
|
7035
|
+
withCredentials: this.configuration.withCredentials,
|
|
7036
|
+
headers: headers,
|
|
7037
|
+
observe: observe,
|
|
7038
|
+
reportProgress: reportProgress
|
|
7039
|
+
});
|
|
7040
|
+
};
|
|
6975
7041
|
StrategyControllerService.prototype.inlineEditStrategyUsingPOST = function (id, strategyInlineDTO, reqId, token, observe, reportProgress) {
|
|
6976
7042
|
if (observe === void 0) { observe = 'body'; }
|
|
6977
7043
|
if (reportProgress === void 0) { reportProgress = false; }
|
|
@@ -7083,6 +7149,45 @@
|
|
|
7083
7149
|
reportProgress: reportProgress
|
|
7084
7150
|
});
|
|
7085
7151
|
};
|
|
7152
|
+
StrategyControllerService.prototype.strategyOptimizationUsingPOST = function (id, req, reqId, token, observe, reportProgress) {
|
|
7153
|
+
if (observe === void 0) { observe = 'body'; }
|
|
7154
|
+
if (reportProgress === void 0) { reportProgress = false; }
|
|
7155
|
+
if (id === null || id === undefined) {
|
|
7156
|
+
throw new Error('Required parameter id was null or undefined when calling strategyOptimizationUsingPOST.');
|
|
7157
|
+
}
|
|
7158
|
+
if (req === null || req === undefined) {
|
|
7159
|
+
throw new Error('Required parameter req was null or undefined when calling strategyOptimizationUsingPOST.');
|
|
7160
|
+
}
|
|
7161
|
+
var headers = this.defaultHeaders;
|
|
7162
|
+
if (reqId !== undefined && reqId !== null) {
|
|
7163
|
+
headers = headers.set('reqId', String(reqId));
|
|
7164
|
+
}
|
|
7165
|
+
if (token !== undefined && token !== null) {
|
|
7166
|
+
headers = headers.set('token', String(token));
|
|
7167
|
+
}
|
|
7168
|
+
// to determine the Accept header
|
|
7169
|
+
var httpHeaderAccepts = [
|
|
7170
|
+
'application/json'
|
|
7171
|
+
];
|
|
7172
|
+
var httpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
|
|
7173
|
+
if (httpHeaderAcceptSelected != undefined) {
|
|
7174
|
+
headers = headers.set('Accept', httpHeaderAcceptSelected);
|
|
7175
|
+
}
|
|
7176
|
+
// to determine the Content-Type header
|
|
7177
|
+
var consumes = [
|
|
7178
|
+
'application/json'
|
|
7179
|
+
];
|
|
7180
|
+
var httpContentTypeSelected = this.configuration.selectHeaderContentType(consumes);
|
|
7181
|
+
if (httpContentTypeSelected != undefined) {
|
|
7182
|
+
headers = headers.set('Content-Type', httpContentTypeSelected);
|
|
7183
|
+
}
|
|
7184
|
+
return this.httpClient.post(this.basePath + "/v2/api/strategies/optimization/" + encodeURIComponent(String(id)), req, {
|
|
7185
|
+
withCredentials: this.configuration.withCredentials,
|
|
7186
|
+
headers: headers,
|
|
7187
|
+
observe: observe,
|
|
7188
|
+
reportProgress: reportProgress
|
|
7189
|
+
});
|
|
7190
|
+
};
|
|
7086
7191
|
StrategyControllerService.prototype.updateABTestExperimentStatusUsingPOST = function (id, status, reqId, token, observe, reportProgress) {
|
|
7087
7192
|
if (observe === void 0) { observe = 'body'; }
|
|
7088
7193
|
if (reportProgress === void 0) { reportProgress = false; }
|
|
@@ -7282,7 +7387,7 @@
|
|
|
7282
7387
|
var UILoggerControllerService = /** @class */ (function () {
|
|
7283
7388
|
function UILoggerControllerService(httpClient, basePath, configuration) {
|
|
7284
7389
|
this.httpClient = httpClient;
|
|
7285
|
-
this.basePath = 'https://
|
|
7390
|
+
this.basePath = 'https://apiv2stage2.atomex.net';
|
|
7286
7391
|
this.defaultHeaders = new http.HttpHeaders();
|
|
7287
7392
|
this.configuration = new Configuration();
|
|
7288
7393
|
if (basePath) {
|
|
@@ -7372,7 +7477,7 @@
|
|
|
7372
7477
|
var UserPreferenceControllerService = /** @class */ (function () {
|
|
7373
7478
|
function UserPreferenceControllerService(httpClient, basePath, configuration) {
|
|
7374
7479
|
this.httpClient = httpClient;
|
|
7375
|
-
this.basePath = 'https://
|
|
7480
|
+
this.basePath = 'https://apiv2stage2.atomex.net';
|
|
7376
7481
|
this.defaultHeaders = new http.HttpHeaders();
|
|
7377
7482
|
this.configuration = new Configuration();
|
|
7378
7483
|
if (basePath) {
|