@revxui/api-clients-ts 0.10.366 → 0.10.367
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 +0 -43
- package/bundles/revxui-api-clients-ts.umd.js +24 -129
- 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 +2 -101
- package/esm2015/api/uILoggerController.service.js +2 -2
- package/esm2015/api/userPreferenceController.service.js +2 -2
- package/esm2015/model/models.js +1 -6
- package/fesm2015/revxui-api-clients-ts.js +24 -147
- package/fesm2015/revxui-api-clients-ts.js.map +1 -1
- package/model/models.d.ts +0 -5
- package/package.json +1 -1
- package/revxui-api-clients-ts.metadata.json +1 -1
- package/esm2015/model/apiListResponseStrategyTargettingPerformanceData.js +0 -2
- package/esm2015/model/apiResponseObjectStrategyOptimizationDataResponse.js +0 -2
- package/esm2015/model/strategyOptBlockTargetingReq.js +0 -13
- package/esm2015/model/strategyOptimizationDataResponse.js +0 -2
- package/esm2015/model/strategyTargettingPerformanceData.js +0 -13
- package/model/apiListResponseStrategyTargettingPerformanceData.d.ts +0 -16
- package/model/apiResponseObjectStrategyOptimizationDataResponse.d.ts +0 -17
- package/model/strategyOptBlockTargetingReq.d.ts +0 -15
- package/model/strategyOptimizationDataResponse.d.ts +0 -17
- package/model/strategyTargettingPerformanceData.d.ts +0 -24
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
## @revxui/api-clients-ts@0.10.
|
|
1
|
+
## @revxui/api-clients-ts@0.10.367
|
|
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.367 --save
|
|
23
23
|
```
|
|
24
24
|
|
|
25
25
|
_without publishing (not recommended):_
|
|
@@ -13,15 +13,12 @@ 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';
|
|
17
16
|
import { ApiResponseObjectABTestDTO } from '../model/apiResponseObjectABTestDTO';
|
|
18
17
|
import { ApiResponseObjectGeoListDTO } from '../model/apiResponseObjectGeoListDTO';
|
|
19
18
|
import { ApiResponseObjectMaplongResponseMessage } from '../model/apiResponseObjectMaplongResponseMessage';
|
|
20
|
-
import { ApiResponseObjectResponseMessage } from '../model/apiResponseObjectResponseMessage';
|
|
21
19
|
import { ApiResponseObjectSiteListDTO } from '../model/apiResponseObjectSiteListDTO';
|
|
22
20
|
import { ApiResponseObjectStrategyCreativeAssociationResponseDTO } from '../model/apiResponseObjectStrategyCreativeAssociationResponseDTO';
|
|
23
21
|
import { ApiResponseObjectStrategyDTO } from '../model/apiResponseObjectStrategyDTO';
|
|
24
|
-
import { ApiResponseObjectStrategyOptimizationDataResponse } from '../model/apiResponseObjectStrategyOptimizationDataResponse';
|
|
25
22
|
import { ApiResponseObjectStrategyQuickEditDTO } from '../model/apiResponseObjectStrategyQuickEditDTO';
|
|
26
23
|
import { ApiResponseObjectlong } from '../model/apiResponseObjectlong';
|
|
27
24
|
import { ApiResponseObjectstring } from '../model/apiResponseObjectstring';
|
|
@@ -31,7 +28,6 @@ import { SiteListRequest } from '../model/siteListRequest';
|
|
|
31
28
|
import { StrategyCreativeAssociationRequestDTO } from '../model/strategyCreativeAssociationRequestDTO';
|
|
32
29
|
import { StrategyDTO } from '../model/strategyDTO';
|
|
33
30
|
import { StrategyInlineDTO } from '../model/strategyInlineDTO';
|
|
34
|
-
import { StrategyOptBlockTargetingReq } from '../model/strategyOptBlockTargetingReq';
|
|
35
31
|
import { StrategyQuickEditDTO } from '../model/strategyQuickEditDTO';
|
|
36
32
|
import { Configuration } from '../configuration';
|
|
37
33
|
export declare class StrategyControllerService {
|
|
@@ -131,19 +127,6 @@ export declare class StrategyControllerService {
|
|
|
131
127
|
duplicateStrategyUsingPOST(dto: DuplicateStrategyRequestDTO, id: number, reqId?: string, token?: string, observe?: 'body', reportProgress?: boolean): Observable<ApiResponseObjectStrategyDTO>;
|
|
132
128
|
duplicateStrategyUsingPOST(dto: DuplicateStrategyRequestDTO, id: number, reqId?: string, token?: string, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<ApiResponseObjectStrategyDTO>>;
|
|
133
129
|
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', 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', 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', reqId?: string, token?: string, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<ApiResponseObjectStrategyOptimizationDataResponse>>;
|
|
147
130
|
/**
|
|
148
131
|
* API to get an AB Test experiment details
|
|
149
132
|
*
|
|
@@ -192,19 +175,6 @@ export declare class StrategyControllerService {
|
|
|
192
175
|
getStrategyQuickEditDetailsUsingGET(id: number, reqId?: string, token?: string, observe?: 'body', reportProgress?: boolean): Observable<ApiResponseObjectStrategyQuickEditDTO>;
|
|
193
176
|
getStrategyQuickEditDetailsUsingGET(id: number, reqId?: string, token?: string, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<ApiResponseObjectStrategyQuickEditDTO>>;
|
|
194
177
|
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', 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', 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', reqId?: string, token?: string, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<ApiListResponseStrategyTargettingPerformanceData>>;
|
|
208
178
|
/**
|
|
209
179
|
* Api for strategy in-line edit
|
|
210
180
|
*
|
|
@@ -244,19 +214,6 @@ export declare class StrategyControllerService {
|
|
|
244
214
|
saveStrategyQuickEditDetailsUsingPOST(id: number, strategyQuickEditDTO: StrategyQuickEditDTO, reqId?: string, token?: string, observe?: 'body', reportProgress?: boolean): Observable<ApiResponseObjectStrategyDTO>;
|
|
245
215
|
saveStrategyQuickEditDetailsUsingPOST(id: number, strategyQuickEditDTO: StrategyQuickEditDTO, reqId?: string, token?: string, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<ApiResponseObjectStrategyDTO>>;
|
|
246
216
|
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>>;
|
|
260
217
|
/**
|
|
261
218
|
* API to update AB Test experiment
|
|
262
219
|
*
|
|
@@ -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://apiv2stage1.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://apiv2stage1.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://apiv2stage1.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://apiv2stage1.atomex.net';
|
|
1266
1266
|
this.defaultHeaders = new http.HttpHeaders();
|
|
1267
1267
|
this.configuration = new Configuration();
|
|
1268
1268
|
if (basePath) {
|
|
@@ -2048,7 +2048,7 @@
|
|
|
2048
2048
|
var AuditControllerService = /** @class */ (function () {
|
|
2049
2049
|
function AuditControllerService(httpClient, basePath, configuration) {
|
|
2050
2050
|
this.httpClient = httpClient;
|
|
2051
|
-
this.basePath = 'https://
|
|
2051
|
+
this.basePath = 'https://apiv2stage1.atomex.net';
|
|
2052
2052
|
this.defaultHeaders = new http.HttpHeaders();
|
|
2053
2053
|
this.configuration = new Configuration();
|
|
2054
2054
|
if (basePath) {
|
|
@@ -2235,7 +2235,7 @@
|
|
|
2235
2235
|
var BulkStrategyControllerService = /** @class */ (function () {
|
|
2236
2236
|
function BulkStrategyControllerService(httpClient, basePath, configuration) {
|
|
2237
2237
|
this.httpClient = httpClient;
|
|
2238
|
-
this.basePath = 'https://
|
|
2238
|
+
this.basePath = 'https://apiv2stage1.atomex.net';
|
|
2239
2239
|
this.defaultHeaders = new http.HttpHeaders();
|
|
2240
2240
|
this.configuration = new Configuration();
|
|
2241
2241
|
if (basePath) {
|
|
@@ -2466,7 +2466,7 @@
|
|
|
2466
2466
|
var CSSThemeController_Service = /** @class */ (function () {
|
|
2467
2467
|
function CSSThemeController_Service(httpClient, basePath, configuration) {
|
|
2468
2468
|
this.httpClient = httpClient;
|
|
2469
|
-
this.basePath = 'https://
|
|
2469
|
+
this.basePath = 'https://apiv2stage1.atomex.net';
|
|
2470
2470
|
this.defaultHeaders = new http.HttpHeaders();
|
|
2471
2471
|
this.configuration = new Configuration();
|
|
2472
2472
|
if (basePath) {
|
|
@@ -2575,7 +2575,7 @@
|
|
|
2575
2575
|
var CampaignControllerService = /** @class */ (function () {
|
|
2576
2576
|
function CampaignControllerService(httpClient, basePath, configuration) {
|
|
2577
2577
|
this.httpClient = httpClient;
|
|
2578
|
-
this.basePath = 'https://
|
|
2578
|
+
this.basePath = 'https://apiv2stage1.atomex.net';
|
|
2579
2579
|
this.defaultHeaders = new http.HttpHeaders();
|
|
2580
2580
|
this.configuration = new Configuration();
|
|
2581
2581
|
if (basePath) {
|
|
@@ -2885,7 +2885,7 @@
|
|
|
2885
2885
|
var CatalogControllerService = /** @class */ (function () {
|
|
2886
2886
|
function CatalogControllerService(httpClient, basePath, configuration) {
|
|
2887
2887
|
this.httpClient = httpClient;
|
|
2888
|
-
this.basePath = 'https://
|
|
2888
|
+
this.basePath = 'https://apiv2stage1.atomex.net';
|
|
2889
2889
|
this.defaultHeaders = new http.HttpHeaders();
|
|
2890
2890
|
this.configuration = new Configuration();
|
|
2891
2891
|
if (basePath) {
|
|
@@ -3131,7 +3131,7 @@
|
|
|
3131
3131
|
var ClickDestinationControllerService = /** @class */ (function () {
|
|
3132
3132
|
function ClickDestinationControllerService(httpClient, basePath, configuration) {
|
|
3133
3133
|
this.httpClient = httpClient;
|
|
3134
|
-
this.basePath = 'https://
|
|
3134
|
+
this.basePath = 'https://apiv2stage1.atomex.net';
|
|
3135
3135
|
this.defaultHeaders = new http.HttpHeaders();
|
|
3136
3136
|
this.configuration = new Configuration();
|
|
3137
3137
|
if (basePath) {
|
|
@@ -3369,7 +3369,7 @@
|
|
|
3369
3369
|
var CreativeControllerService = /** @class */ (function () {
|
|
3370
3370
|
function CreativeControllerService(httpClient, basePath, configuration) {
|
|
3371
3371
|
this.httpClient = httpClient;
|
|
3372
|
-
this.basePath = 'https://
|
|
3372
|
+
this.basePath = 'https://apiv2stage1.atomex.net';
|
|
3373
3373
|
this.defaultHeaders = new http.HttpHeaders();
|
|
3374
3374
|
this.configuration = new Configuration();
|
|
3375
3375
|
if (basePath) {
|
|
@@ -3870,7 +3870,7 @@
|
|
|
3870
3870
|
var CreativeSetsControllerService = /** @class */ (function () {
|
|
3871
3871
|
function CreativeSetsControllerService(httpClient, basePath, configuration) {
|
|
3872
3872
|
this.httpClient = httpClient;
|
|
3873
|
-
this.basePath = 'https://
|
|
3873
|
+
this.basePath = 'https://apiv2stage1.atomex.net';
|
|
3874
3874
|
this.defaultHeaders = new http.HttpHeaders();
|
|
3875
3875
|
this.configuration = new Configuration();
|
|
3876
3876
|
if (basePath) {
|
|
@@ -4389,7 +4389,7 @@
|
|
|
4389
4389
|
var CreativeTemplateThemesControllerService = /** @class */ (function () {
|
|
4390
4390
|
function CreativeTemplateThemesControllerService(httpClient, basePath, configuration) {
|
|
4391
4391
|
this.httpClient = httpClient;
|
|
4392
|
-
this.basePath = 'https://
|
|
4392
|
+
this.basePath = 'https://apiv2stage1.atomex.net';
|
|
4393
4393
|
this.defaultHeaders = new http.HttpHeaders();
|
|
4394
4394
|
this.configuration = new Configuration();
|
|
4395
4395
|
if (basePath) {
|
|
@@ -4578,7 +4578,7 @@
|
|
|
4578
4578
|
var CreativeTemplateVariablesControllerService = /** @class */ (function () {
|
|
4579
4579
|
function CreativeTemplateVariablesControllerService(httpClient, basePath, configuration) {
|
|
4580
4580
|
this.httpClient = httpClient;
|
|
4581
|
-
this.basePath = 'https://
|
|
4581
|
+
this.basePath = 'https://apiv2stage1.atomex.net';
|
|
4582
4582
|
this.defaultHeaders = new http.HttpHeaders();
|
|
4583
4583
|
this.configuration = new Configuration();
|
|
4584
4584
|
if (basePath) {
|
|
@@ -4654,7 +4654,7 @@
|
|
|
4654
4654
|
var CreativeTemplatesControllerService = /** @class */ (function () {
|
|
4655
4655
|
function CreativeTemplatesControllerService(httpClient, basePath, configuration) {
|
|
4656
4656
|
this.httpClient = httpClient;
|
|
4657
|
-
this.basePath = 'https://
|
|
4657
|
+
this.basePath = 'https://apiv2stage1.atomex.net';
|
|
4658
4658
|
this.defaultHeaders = new http.HttpHeaders();
|
|
4659
4659
|
this.configuration = new Configuration();
|
|
4660
4660
|
if (basePath) {
|
|
@@ -4821,7 +4821,7 @@
|
|
|
4821
4821
|
var CustomerReportingControllerService = /** @class */ (function () {
|
|
4822
4822
|
function CustomerReportingControllerService(httpClient, basePath, configuration) {
|
|
4823
4823
|
this.httpClient = httpClient;
|
|
4824
|
-
this.basePath = 'https://
|
|
4824
|
+
this.basePath = 'https://apiv2stage1.atomex.net';
|
|
4825
4825
|
this.defaultHeaders = new http.HttpHeaders();
|
|
4826
4826
|
this.configuration = new Configuration();
|
|
4827
4827
|
if (basePath) {
|
|
@@ -4906,7 +4906,7 @@
|
|
|
4906
4906
|
var DashboardControllerService = /** @class */ (function () {
|
|
4907
4907
|
function DashboardControllerService(httpClient, basePath, configuration) {
|
|
4908
4908
|
this.httpClient = httpClient;
|
|
4909
|
-
this.basePath = 'https://
|
|
4909
|
+
this.basePath = 'https://apiv2stage1.atomex.net';
|
|
4910
4910
|
this.defaultHeaders = new http.HttpHeaders();
|
|
4911
4911
|
this.configuration = new Configuration();
|
|
4912
4912
|
if (basePath) {
|
|
@@ -5551,7 +5551,7 @@
|
|
|
5551
5551
|
var NotificationsControllerService = /** @class */ (function () {
|
|
5552
5552
|
function NotificationsControllerService(httpClient, basePath, configuration) {
|
|
5553
5553
|
this.httpClient = httpClient;
|
|
5554
|
-
this.basePath = 'https://
|
|
5554
|
+
this.basePath = 'https://apiv2stage1.atomex.net';
|
|
5555
5555
|
this.defaultHeaders = new http.HttpHeaders();
|
|
5556
5556
|
this.configuration = new Configuration();
|
|
5557
5557
|
if (basePath) {
|
|
@@ -5738,7 +5738,7 @@
|
|
|
5738
5738
|
var PixelControllerService = /** @class */ (function () {
|
|
5739
5739
|
function PixelControllerService(httpClient, basePath, configuration) {
|
|
5740
5740
|
this.httpClient = httpClient;
|
|
5741
|
-
this.basePath = 'https://
|
|
5741
|
+
this.basePath = 'https://apiv2stage1.atomex.net';
|
|
5742
5742
|
this.defaultHeaders = new http.HttpHeaders();
|
|
5743
5743
|
this.configuration = new Configuration();
|
|
5744
5744
|
if (basePath) {
|
|
@@ -6055,7 +6055,7 @@
|
|
|
6055
6055
|
var ReportingControllerService = /** @class */ (function () {
|
|
6056
6056
|
function ReportingControllerService(httpClient, basePath, configuration) {
|
|
6057
6057
|
this.httpClient = httpClient;
|
|
6058
|
-
this.basePath = 'https://
|
|
6058
|
+
this.basePath = 'https://apiv2stage1.atomex.net';
|
|
6059
6059
|
this.defaultHeaders = new http.HttpHeaders();
|
|
6060
6060
|
this.configuration = new Configuration();
|
|
6061
6061
|
if (basePath) {
|
|
@@ -6227,7 +6227,7 @@
|
|
|
6227
6227
|
var SliceXControllerService = /** @class */ (function () {
|
|
6228
6228
|
function SliceXControllerService(httpClient, basePath, configuration) {
|
|
6229
6229
|
this.httpClient = httpClient;
|
|
6230
|
-
this.basePath = 'https://
|
|
6230
|
+
this.basePath = 'https://apiv2stage1.atomex.net';
|
|
6231
6231
|
this.defaultHeaders = new http.HttpHeaders();
|
|
6232
6232
|
this.configuration = new Configuration();
|
|
6233
6233
|
if (basePath) {
|
|
@@ -6483,7 +6483,7 @@
|
|
|
6483
6483
|
var StrategyControllerService = /** @class */ (function () {
|
|
6484
6484
|
function StrategyControllerService(httpClient, basePath, configuration) {
|
|
6485
6485
|
this.httpClient = httpClient;
|
|
6486
|
-
this.basePath = 'https://
|
|
6486
|
+
this.basePath = 'https://apiv2stage1.atomex.net';
|
|
6487
6487
|
this.defaultHeaders = new http.HttpHeaders();
|
|
6488
6488
|
this.configuration = new Configuration();
|
|
6489
6489
|
if (basePath) {
|
|
@@ -6778,39 +6778,6 @@
|
|
|
6778
6778
|
reportProgress: reportProgress
|
|
6779
6779
|
});
|
|
6780
6780
|
};
|
|
6781
|
-
StrategyControllerService.prototype.fetchStrategyTargetingUsingGET = function (id, tableEntity, reqId, token, observe, reportProgress) {
|
|
6782
|
-
if (observe === void 0) { observe = 'body'; }
|
|
6783
|
-
if (reportProgress === void 0) { reportProgress = false; }
|
|
6784
|
-
if (id === null || id === undefined) {
|
|
6785
|
-
throw new Error('Required parameter id was null or undefined when calling fetchStrategyTargetingUsingGET.');
|
|
6786
|
-
}
|
|
6787
|
-
if (tableEntity === null || tableEntity === undefined) {
|
|
6788
|
-
throw new Error('Required parameter tableEntity was null or undefined when calling fetchStrategyTargetingUsingGET.');
|
|
6789
|
-
}
|
|
6790
|
-
var headers = this.defaultHeaders;
|
|
6791
|
-
if (reqId !== undefined && reqId !== null) {
|
|
6792
|
-
headers = headers.set('reqId', String(reqId));
|
|
6793
|
-
}
|
|
6794
|
-
if (token !== undefined && token !== null) {
|
|
6795
|
-
headers = headers.set('token', String(token));
|
|
6796
|
-
}
|
|
6797
|
-
// to determine the Accept header
|
|
6798
|
-
var httpHeaderAccepts = [
|
|
6799
|
-
'*/*'
|
|
6800
|
-
];
|
|
6801
|
-
var httpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
|
|
6802
|
-
if (httpHeaderAcceptSelected != undefined) {
|
|
6803
|
-
headers = headers.set('Accept', httpHeaderAcceptSelected);
|
|
6804
|
-
}
|
|
6805
|
-
// to determine the Content-Type header
|
|
6806
|
-
var consumes = [];
|
|
6807
|
-
return this.httpClient.get(this.basePath + "/v2/api/strategies/" + encodeURIComponent(String(id)) + "/fetch/" + encodeURIComponent(String(tableEntity)), {
|
|
6808
|
-
withCredentials: this.configuration.withCredentials,
|
|
6809
|
-
headers: headers,
|
|
6810
|
-
observe: observe,
|
|
6811
|
-
reportProgress: reportProgress
|
|
6812
|
-
});
|
|
6813
|
-
};
|
|
6814
6781
|
StrategyControllerService.prototype.getABTestExperimentUsingGET = function (id, reqId, token, observe, reportProgress) {
|
|
6815
6782
|
if (observe === void 0) { observe = 'body'; }
|
|
6816
6783
|
if (reportProgress === void 0) { reportProgress = false; }
|
|
@@ -6933,39 +6900,6 @@
|
|
|
6933
6900
|
reportProgress: reportProgress
|
|
6934
6901
|
});
|
|
6935
6902
|
};
|
|
6936
|
-
StrategyControllerService.prototype.getStrategyTargetingRecommendationUsingGET = function (id, tableEntity, reqId, token, observe, reportProgress) {
|
|
6937
|
-
if (observe === void 0) { observe = 'body'; }
|
|
6938
|
-
if (reportProgress === void 0) { reportProgress = false; }
|
|
6939
|
-
if (id === null || id === undefined) {
|
|
6940
|
-
throw new Error('Required parameter id was null or undefined when calling getStrategyTargetingRecommendationUsingGET.');
|
|
6941
|
-
}
|
|
6942
|
-
if (tableEntity === null || tableEntity === undefined) {
|
|
6943
|
-
throw new Error('Required parameter tableEntity was null or undefined when calling getStrategyTargetingRecommendationUsingGET.');
|
|
6944
|
-
}
|
|
6945
|
-
var headers = this.defaultHeaders;
|
|
6946
|
-
if (reqId !== undefined && reqId !== null) {
|
|
6947
|
-
headers = headers.set('reqId', String(reqId));
|
|
6948
|
-
}
|
|
6949
|
-
if (token !== undefined && token !== null) {
|
|
6950
|
-
headers = headers.set('token', String(token));
|
|
6951
|
-
}
|
|
6952
|
-
// to determine the Accept header
|
|
6953
|
-
var httpHeaderAccepts = [
|
|
6954
|
-
'*/*'
|
|
6955
|
-
];
|
|
6956
|
-
var httpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
|
|
6957
|
-
if (httpHeaderAcceptSelected != undefined) {
|
|
6958
|
-
headers = headers.set('Accept', httpHeaderAcceptSelected);
|
|
6959
|
-
}
|
|
6960
|
-
// to determine the Content-Type header
|
|
6961
|
-
var consumes = [];
|
|
6962
|
-
return this.httpClient.get(this.basePath + "/v2/api/strategies/" + encodeURIComponent(String(id)) + "/recommendation/" + encodeURIComponent(String(tableEntity)), {
|
|
6963
|
-
withCredentials: this.configuration.withCredentials,
|
|
6964
|
-
headers: headers,
|
|
6965
|
-
observe: observe,
|
|
6966
|
-
reportProgress: reportProgress
|
|
6967
|
-
});
|
|
6968
|
-
};
|
|
6969
6903
|
StrategyControllerService.prototype.inlineEditStrategyUsingPOST = function (id, strategyInlineDTO, reqId, token, observe, reportProgress) {
|
|
6970
6904
|
if (observe === void 0) { observe = 'body'; }
|
|
6971
6905
|
if (reportProgress === void 0) { reportProgress = false; }
|
|
@@ -7077,45 +7011,6 @@
|
|
|
7077
7011
|
reportProgress: reportProgress
|
|
7078
7012
|
});
|
|
7079
7013
|
};
|
|
7080
|
-
StrategyControllerService.prototype.strategyOptimizationUsingPOST = function (id, req, reqId, token, observe, reportProgress) {
|
|
7081
|
-
if (observe === void 0) { observe = 'body'; }
|
|
7082
|
-
if (reportProgress === void 0) { reportProgress = false; }
|
|
7083
|
-
if (id === null || id === undefined) {
|
|
7084
|
-
throw new Error('Required parameter id was null or undefined when calling strategyOptimizationUsingPOST.');
|
|
7085
|
-
}
|
|
7086
|
-
if (req === null || req === undefined) {
|
|
7087
|
-
throw new Error('Required parameter req was null or undefined when calling strategyOptimizationUsingPOST.');
|
|
7088
|
-
}
|
|
7089
|
-
var headers = this.defaultHeaders;
|
|
7090
|
-
if (reqId !== undefined && reqId !== null) {
|
|
7091
|
-
headers = headers.set('reqId', String(reqId));
|
|
7092
|
-
}
|
|
7093
|
-
if (token !== undefined && token !== null) {
|
|
7094
|
-
headers = headers.set('token', String(token));
|
|
7095
|
-
}
|
|
7096
|
-
// to determine the Accept header
|
|
7097
|
-
var httpHeaderAccepts = [
|
|
7098
|
-
'application/json'
|
|
7099
|
-
];
|
|
7100
|
-
var httpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
|
|
7101
|
-
if (httpHeaderAcceptSelected != undefined) {
|
|
7102
|
-
headers = headers.set('Accept', httpHeaderAcceptSelected);
|
|
7103
|
-
}
|
|
7104
|
-
// to determine the Content-Type header
|
|
7105
|
-
var consumes = [
|
|
7106
|
-
'application/json'
|
|
7107
|
-
];
|
|
7108
|
-
var httpContentTypeSelected = this.configuration.selectHeaderContentType(consumes);
|
|
7109
|
-
if (httpContentTypeSelected != undefined) {
|
|
7110
|
-
headers = headers.set('Content-Type', httpContentTypeSelected);
|
|
7111
|
-
}
|
|
7112
|
-
return this.httpClient.post(this.basePath + "/v2/api/strategies/optimization/" + encodeURIComponent(String(id)), req, {
|
|
7113
|
-
withCredentials: this.configuration.withCredentials,
|
|
7114
|
-
headers: headers,
|
|
7115
|
-
observe: observe,
|
|
7116
|
-
reportProgress: reportProgress
|
|
7117
|
-
});
|
|
7118
|
-
};
|
|
7119
7014
|
StrategyControllerService.prototype.updateABTestExperimentStatusUsingPOST = function (id, status, reqId, token, observe, reportProgress) {
|
|
7120
7015
|
if (observe === void 0) { observe = 'body'; }
|
|
7121
7016
|
if (reportProgress === void 0) { reportProgress = false; }
|
|
@@ -7315,7 +7210,7 @@
|
|
|
7315
7210
|
var UILoggerControllerService = /** @class */ (function () {
|
|
7316
7211
|
function UILoggerControllerService(httpClient, basePath, configuration) {
|
|
7317
7212
|
this.httpClient = httpClient;
|
|
7318
|
-
this.basePath = 'https://
|
|
7213
|
+
this.basePath = 'https://apiv2stage1.atomex.net';
|
|
7319
7214
|
this.defaultHeaders = new http.HttpHeaders();
|
|
7320
7215
|
this.configuration = new Configuration();
|
|
7321
7216
|
if (basePath) {
|
|
@@ -7405,7 +7300,7 @@
|
|
|
7405
7300
|
var UserPreferenceControllerService = /** @class */ (function () {
|
|
7406
7301
|
function UserPreferenceControllerService(httpClient, basePath, configuration) {
|
|
7407
7302
|
this.httpClient = httpClient;
|
|
7408
|
-
this.basePath = 'https://
|
|
7303
|
+
this.basePath = 'https://apiv2stage1.atomex.net';
|
|
7409
7304
|
this.defaultHeaders = new http.HttpHeaders();
|
|
7410
7305
|
this.configuration = new Configuration();
|
|
7411
7306
|
if (basePath) {
|