@revxui/api-clients-ts 1.1.69 → 1.1.70
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 +0 -28
- package/bundles/revxui-api-clients-ts.umd.js +49 -107
- 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 -68
- 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 -2
- package/esm2015/api/strategyTemplateController.service.js +2 -2
- package/esm2015/api/uILoggerController.service.js +2 -2
- package/esm2015/api/userPreferenceController.service.js +2 -2
- package/esm2015/model/baseModelWithCreativeSetType.js +3 -2
- package/esm2015/model/creativeCompactDTO.js +3 -2
- package/esm2015/model/creativeDTO.js +3 -2
- package/esm2015/model/creativeDetails.js +3 -2
- package/esm2015/model/creativeFileForSet.js +3 -2
- package/esm2015/model/creativeFiles.js +3 -2
- package/esm2015/model/creativeHtmlFileForSet.js +3 -2
- package/esm2015/model/creativeSetDashboardMetric.js +3 -2
- package/esm2015/model/creativeSetDetails.js +3 -2
- package/esm2015/model/creativeSetRequest.js +3 -2
- package/esm2015/model/creativeSetResponse.js +3 -2
- package/esm2015/model/duplicateCreativeSetResponse.js +3 -2
- package/fesm2015/revxui-api-clients-ts.js +49 -103
- package/fesm2015/revxui-api-clients-ts.js.map +1 -1
- package/model/baseModelWithCreativeSetType.d.ts +2 -1
- package/model/creativeCompactDTO.d.ts +2 -1
- package/model/creativeDTO.d.ts +2 -1
- package/model/creativeDetails.d.ts +2 -1
- package/model/creativeFileForSet.d.ts +2 -1
- package/model/creativeFiles.d.ts +2 -1
- package/model/creativeHtmlFileForSet.d.ts +2 -1
- package/model/creativeSetDashboardMetric.d.ts +2 -1
- package/model/creativeSetDetails.d.ts +2 -1
- package/model/creativeSetRequest.d.ts +2 -1
- package/model/creativeSetResponse.d.ts +2 -1
- package/model/duplicateCreativeSetResponse.d.ts +2 -1
- 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.70
|
|
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.70 --save
|
|
23
23
|
```
|
|
24
24
|
|
|
25
25
|
_without publishing (not recommended):_
|
|
@@ -11,8 +11,6 @@
|
|
|
11
11
|
*/
|
|
12
12
|
import { HttpClient, HttpHeaders, HttpResponse, HttpEvent } from '@angular/common/http';
|
|
13
13
|
import { Observable } from 'rxjs';
|
|
14
|
-
import { ApiResponseObjectBidToConversionDTO } from '../model/apiResponseObjectBidToConversionDTO';
|
|
15
|
-
import { ApiResponseObjectBidToConversionFilterMap } from '../model/apiResponseObjectBidToConversionFilterMap';
|
|
16
14
|
import { ApiResponseObjectCampaignDTO } from '../model/apiResponseObjectCampaignDTO';
|
|
17
15
|
import { ApiResponseObjectListCampaignDTO } from '../model/apiResponseObjectListCampaignDTO';
|
|
18
16
|
import { ApiResponseObjectMapintResponseMessage } from '../model/apiResponseObjectMapintResponseMessage';
|
|
@@ -81,32 +79,6 @@ export declare class CampaignControllerService {
|
|
|
81
79
|
getAllCampaignUsingGET(advertiser_id: number, refresh?: boolean, reqId?: string, search?: string, token?: string, observe?: 'body', reportProgress?: boolean): Observable<ApiResponseObjectListCampaignDTO>;
|
|
82
80
|
getAllCampaignUsingGET(advertiser_id: number, refresh?: boolean, reqId?: string, search?: string, token?: string, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<ApiResponseObjectListCampaignDTO>>;
|
|
83
81
|
getAllCampaignUsingGET(advertiser_id: number, refresh?: boolean, reqId?: string, search?: string, token?: string, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<ApiResponseObjectListCampaignDTO>>;
|
|
84
|
-
/**
|
|
85
|
-
* API to get bid to conversion funnel details
|
|
86
|
-
*
|
|
87
|
-
* @param id id
|
|
88
|
-
* @param date date
|
|
89
|
-
* @param reqId request id
|
|
90
|
-
* @param token Auth Token
|
|
91
|
-
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
92
|
-
* @param reportProgress flag to report request and response progress.
|
|
93
|
-
*/
|
|
94
|
-
getBidToConversionDetailsForCampaignUsingGET(id: number, date?: string, reqId?: string, token?: string, observe?: 'body', reportProgress?: boolean): Observable<ApiResponseObjectBidToConversionDTO>;
|
|
95
|
-
getBidToConversionDetailsForCampaignUsingGET(id: number, date?: string, reqId?: string, token?: string, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<ApiResponseObjectBidToConversionDTO>>;
|
|
96
|
-
getBidToConversionDetailsForCampaignUsingGET(id: number, date?: string, reqId?: string, token?: string, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<ApiResponseObjectBidToConversionDTO>>;
|
|
97
|
-
/**
|
|
98
|
-
* API to get bid to conversion filter details
|
|
99
|
-
*
|
|
100
|
-
* @param id id
|
|
101
|
-
* @param date date
|
|
102
|
-
* @param reqId request id
|
|
103
|
-
* @param token Auth Token
|
|
104
|
-
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
105
|
-
* @param reportProgress flag to report request and response progress.
|
|
106
|
-
*/
|
|
107
|
-
getBidToConversionFilterDetailsForCampaignUsingGET(id: number, date?: string, reqId?: string, token?: string, observe?: 'body', reportProgress?: boolean): Observable<ApiResponseObjectBidToConversionFilterMap>;
|
|
108
|
-
getBidToConversionFilterDetailsForCampaignUsingGET(id: number, date?: string, reqId?: string, token?: string, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<ApiResponseObjectBidToConversionFilterMap>>;
|
|
109
|
-
getBidToConversionFilterDetailsForCampaignUsingGET(id: number, date?: string, reqId?: string, token?: string, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<ApiResponseObjectBidToConversionFilterMap>>;
|
|
110
82
|
/**
|
|
111
83
|
* Api to get Campaign by Id
|
|
112
84
|
*
|
|
@@ -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://apiv2stage3.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://apiv2stage3.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://apiv2stage3.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://apiv2stage3.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://apiv2stage3.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://apiv2stage3.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://apiv2stage3.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://apiv2stage3.atomex.net';
|
|
2651
2651
|
this.defaultHeaders = new http.HttpHeaders();
|
|
2652
2652
|
this.configuration = new Configuration();
|
|
2653
2653
|
if (basePath) {
|
|
@@ -2833,76 +2833,6 @@
|
|
|
2833
2833
|
reportProgress: reportProgress
|
|
2834
2834
|
});
|
|
2835
2835
|
};
|
|
2836
|
-
CampaignControllerService.prototype.getBidToConversionDetailsForCampaignUsingGET = function (id, date, reqId, token, observe, reportProgress) {
|
|
2837
|
-
if (observe === void 0) { observe = 'body'; }
|
|
2838
|
-
if (reportProgress === void 0) { reportProgress = false; }
|
|
2839
|
-
if (id === null || id === undefined) {
|
|
2840
|
-
throw new Error('Required parameter id was null or undefined when calling getBidToConversionDetailsForCampaignUsingGET.');
|
|
2841
|
-
}
|
|
2842
|
-
var queryParameters = new http.HttpParams({ encoder: new CustomHttpUrlEncodingCodec() });
|
|
2843
|
-
if (date !== undefined && date !== null) {
|
|
2844
|
-
queryParameters = queryParameters.set('date', date);
|
|
2845
|
-
}
|
|
2846
|
-
var headers = this.defaultHeaders;
|
|
2847
|
-
if (reqId !== undefined && reqId !== null) {
|
|
2848
|
-
headers = headers.set('reqId', String(reqId));
|
|
2849
|
-
}
|
|
2850
|
-
if (token !== undefined && token !== null) {
|
|
2851
|
-
headers = headers.set('token', String(token));
|
|
2852
|
-
}
|
|
2853
|
-
// to determine the Accept header
|
|
2854
|
-
var httpHeaderAccepts = [
|
|
2855
|
-
'application/json'
|
|
2856
|
-
];
|
|
2857
|
-
var httpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
|
|
2858
|
-
if (httpHeaderAcceptSelected != undefined) {
|
|
2859
|
-
headers = headers.set('Accept', httpHeaderAcceptSelected);
|
|
2860
|
-
}
|
|
2861
|
-
// to determine the Content-Type header
|
|
2862
|
-
var consumes = [];
|
|
2863
|
-
return this.httpClient.get(this.basePath + "/v2/api/campaigns/b2c/" + encodeURIComponent(String(id)), {
|
|
2864
|
-
params: queryParameters,
|
|
2865
|
-
withCredentials: this.configuration.withCredentials,
|
|
2866
|
-
headers: headers,
|
|
2867
|
-
observe: observe,
|
|
2868
|
-
reportProgress: reportProgress
|
|
2869
|
-
});
|
|
2870
|
-
};
|
|
2871
|
-
CampaignControllerService.prototype.getBidToConversionFilterDetailsForCampaignUsingGET = function (id, date, reqId, token, observe, reportProgress) {
|
|
2872
|
-
if (observe === void 0) { observe = 'body'; }
|
|
2873
|
-
if (reportProgress === void 0) { reportProgress = false; }
|
|
2874
|
-
if (id === null || id === undefined) {
|
|
2875
|
-
throw new Error('Required parameter id was null or undefined when calling getBidToConversionFilterDetailsForCampaignUsingGET.');
|
|
2876
|
-
}
|
|
2877
|
-
var queryParameters = new http.HttpParams({ encoder: new CustomHttpUrlEncodingCodec() });
|
|
2878
|
-
if (date !== undefined && date !== null) {
|
|
2879
|
-
queryParameters = queryParameters.set('date', date);
|
|
2880
|
-
}
|
|
2881
|
-
var headers = this.defaultHeaders;
|
|
2882
|
-
if (reqId !== undefined && reqId !== null) {
|
|
2883
|
-
headers = headers.set('reqId', String(reqId));
|
|
2884
|
-
}
|
|
2885
|
-
if (token !== undefined && token !== null) {
|
|
2886
|
-
headers = headers.set('token', String(token));
|
|
2887
|
-
}
|
|
2888
|
-
// to determine the Accept header
|
|
2889
|
-
var httpHeaderAccepts = [
|
|
2890
|
-
'application/json'
|
|
2891
|
-
];
|
|
2892
|
-
var httpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
|
|
2893
|
-
if (httpHeaderAcceptSelected != undefined) {
|
|
2894
|
-
headers = headers.set('Accept', httpHeaderAcceptSelected);
|
|
2895
|
-
}
|
|
2896
|
-
// to determine the Content-Type header
|
|
2897
|
-
var consumes = [];
|
|
2898
|
-
return this.httpClient.get(this.basePath + "/v2/api/campaigns/b2c/" + encodeURIComponent(String(id)) + "/filters", {
|
|
2899
|
-
params: queryParameters,
|
|
2900
|
-
withCredentials: this.configuration.withCredentials,
|
|
2901
|
-
headers: headers,
|
|
2902
|
-
observe: observe,
|
|
2903
|
-
reportProgress: reportProgress
|
|
2904
|
-
});
|
|
2905
|
-
};
|
|
2906
2836
|
CampaignControllerService.prototype.getCampaignByIdUsingGET = function (id, refresh, reqId, token, observe, reportProgress) {
|
|
2907
2837
|
if (observe === void 0) { observe = 'body'; }
|
|
2908
2838
|
if (reportProgress === void 0) { reportProgress = false; }
|
|
@@ -3027,7 +2957,7 @@
|
|
|
3027
2957
|
var CatalogControllerService = /** @class */ (function () {
|
|
3028
2958
|
function CatalogControllerService(httpClient, basePath, configuration) {
|
|
3029
2959
|
this.httpClient = httpClient;
|
|
3030
|
-
this.basePath = 'https://
|
|
2960
|
+
this.basePath = 'https://apiv2stage3.atomex.net';
|
|
3031
2961
|
this.defaultHeaders = new http.HttpHeaders();
|
|
3032
2962
|
this.configuration = new Configuration();
|
|
3033
2963
|
if (basePath) {
|
|
@@ -3273,7 +3203,7 @@
|
|
|
3273
3203
|
var ClickDestinationControllerService = /** @class */ (function () {
|
|
3274
3204
|
function ClickDestinationControllerService(httpClient, basePath, configuration) {
|
|
3275
3205
|
this.httpClient = httpClient;
|
|
3276
|
-
this.basePath = 'https://
|
|
3206
|
+
this.basePath = 'https://apiv2stage3.atomex.net';
|
|
3277
3207
|
this.defaultHeaders = new http.HttpHeaders();
|
|
3278
3208
|
this.configuration = new Configuration();
|
|
3279
3209
|
if (basePath) {
|
|
@@ -3511,7 +3441,7 @@
|
|
|
3511
3441
|
var CreativeControllerService = /** @class */ (function () {
|
|
3512
3442
|
function CreativeControllerService(httpClient, basePath, configuration) {
|
|
3513
3443
|
this.httpClient = httpClient;
|
|
3514
|
-
this.basePath = 'https://
|
|
3444
|
+
this.basePath = 'https://apiv2stage3.atomex.net';
|
|
3515
3445
|
this.defaultHeaders = new http.HttpHeaders();
|
|
3516
3446
|
this.configuration = new Configuration();
|
|
3517
3447
|
if (basePath) {
|
|
@@ -4012,7 +3942,7 @@
|
|
|
4012
3942
|
var CreativeSetsControllerService = /** @class */ (function () {
|
|
4013
3943
|
function CreativeSetsControllerService(httpClient, basePath, configuration) {
|
|
4014
3944
|
this.httpClient = httpClient;
|
|
4015
|
-
this.basePath = 'https://
|
|
3945
|
+
this.basePath = 'https://apiv2stage3.atomex.net';
|
|
4016
3946
|
this.defaultHeaders = new http.HttpHeaders();
|
|
4017
3947
|
this.configuration = new Configuration();
|
|
4018
3948
|
if (basePath) {
|
|
@@ -4531,7 +4461,7 @@
|
|
|
4531
4461
|
var CreativeTemplateThemesControllerService = /** @class */ (function () {
|
|
4532
4462
|
function CreativeTemplateThemesControllerService(httpClient, basePath, configuration) {
|
|
4533
4463
|
this.httpClient = httpClient;
|
|
4534
|
-
this.basePath = 'https://
|
|
4464
|
+
this.basePath = 'https://apiv2stage3.atomex.net';
|
|
4535
4465
|
this.defaultHeaders = new http.HttpHeaders();
|
|
4536
4466
|
this.configuration = new Configuration();
|
|
4537
4467
|
if (basePath) {
|
|
@@ -4720,7 +4650,7 @@
|
|
|
4720
4650
|
var CreativeTemplateVariablesControllerService = /** @class */ (function () {
|
|
4721
4651
|
function CreativeTemplateVariablesControllerService(httpClient, basePath, configuration) {
|
|
4722
4652
|
this.httpClient = httpClient;
|
|
4723
|
-
this.basePath = 'https://
|
|
4653
|
+
this.basePath = 'https://apiv2stage3.atomex.net';
|
|
4724
4654
|
this.defaultHeaders = new http.HttpHeaders();
|
|
4725
4655
|
this.configuration = new Configuration();
|
|
4726
4656
|
if (basePath) {
|
|
@@ -4796,7 +4726,7 @@
|
|
|
4796
4726
|
var CreativeTemplatesControllerService = /** @class */ (function () {
|
|
4797
4727
|
function CreativeTemplatesControllerService(httpClient, basePath, configuration) {
|
|
4798
4728
|
this.httpClient = httpClient;
|
|
4799
|
-
this.basePath = 'https://
|
|
4729
|
+
this.basePath = 'https://apiv2stage3.atomex.net';
|
|
4800
4730
|
this.defaultHeaders = new http.HttpHeaders();
|
|
4801
4731
|
this.configuration = new Configuration();
|
|
4802
4732
|
if (basePath) {
|
|
@@ -4963,7 +4893,7 @@
|
|
|
4963
4893
|
var CustomerReportingControllerService = /** @class */ (function () {
|
|
4964
4894
|
function CustomerReportingControllerService(httpClient, basePath, configuration) {
|
|
4965
4895
|
this.httpClient = httpClient;
|
|
4966
|
-
this.basePath = 'https://
|
|
4896
|
+
this.basePath = 'https://apiv2stage3.atomex.net';
|
|
4967
4897
|
this.defaultHeaders = new http.HttpHeaders();
|
|
4968
4898
|
this.configuration = new Configuration();
|
|
4969
4899
|
if (basePath) {
|
|
@@ -5048,7 +4978,7 @@
|
|
|
5048
4978
|
var DashboardControllerService = /** @class */ (function () {
|
|
5049
4979
|
function DashboardControllerService(httpClient, basePath, configuration) {
|
|
5050
4980
|
this.httpClient = httpClient;
|
|
5051
|
-
this.basePath = 'https://
|
|
4981
|
+
this.basePath = 'https://apiv2stage3.atomex.net';
|
|
5052
4982
|
this.defaultHeaders = new http.HttpHeaders();
|
|
5053
4983
|
this.configuration = new Configuration();
|
|
5054
4984
|
if (basePath) {
|
|
@@ -5693,7 +5623,7 @@
|
|
|
5693
5623
|
var NotificationsControllerService = /** @class */ (function () {
|
|
5694
5624
|
function NotificationsControllerService(httpClient, basePath, configuration) {
|
|
5695
5625
|
this.httpClient = httpClient;
|
|
5696
|
-
this.basePath = 'https://
|
|
5626
|
+
this.basePath = 'https://apiv2stage3.atomex.net';
|
|
5697
5627
|
this.defaultHeaders = new http.HttpHeaders();
|
|
5698
5628
|
this.configuration = new Configuration();
|
|
5699
5629
|
if (basePath) {
|
|
@@ -5912,7 +5842,7 @@
|
|
|
5912
5842
|
var PixelControllerService = /** @class */ (function () {
|
|
5913
5843
|
function PixelControllerService(httpClient, basePath, configuration) {
|
|
5914
5844
|
this.httpClient = httpClient;
|
|
5915
|
-
this.basePath = 'https://
|
|
5845
|
+
this.basePath = 'https://apiv2stage3.atomex.net';
|
|
5916
5846
|
this.defaultHeaders = new http.HttpHeaders();
|
|
5917
5847
|
this.configuration = new Configuration();
|
|
5918
5848
|
if (basePath) {
|
|
@@ -6229,7 +6159,7 @@
|
|
|
6229
6159
|
var ReportingControllerService = /** @class */ (function () {
|
|
6230
6160
|
function ReportingControllerService(httpClient, basePath, configuration) {
|
|
6231
6161
|
this.httpClient = httpClient;
|
|
6232
|
-
this.basePath = 'https://
|
|
6162
|
+
this.basePath = 'https://apiv2stage3.atomex.net';
|
|
6233
6163
|
this.defaultHeaders = new http.HttpHeaders();
|
|
6234
6164
|
this.configuration = new Configuration();
|
|
6235
6165
|
if (basePath) {
|
|
@@ -6401,7 +6331,7 @@
|
|
|
6401
6331
|
var SliceXControllerService = /** @class */ (function () {
|
|
6402
6332
|
function SliceXControllerService(httpClient, basePath, configuration) {
|
|
6403
6333
|
this.httpClient = httpClient;
|
|
6404
|
-
this.basePath = 'https://
|
|
6334
|
+
this.basePath = 'https://apiv2stage3.atomex.net';
|
|
6405
6335
|
this.defaultHeaders = new http.HttpHeaders();
|
|
6406
6336
|
this.configuration = new Configuration();
|
|
6407
6337
|
if (basePath) {
|
|
@@ -6657,7 +6587,7 @@
|
|
|
6657
6587
|
var StrategyControllerService = /** @class */ (function () {
|
|
6658
6588
|
function StrategyControllerService(httpClient, basePath, configuration) {
|
|
6659
6589
|
this.httpClient = httpClient;
|
|
6660
|
-
this.basePath = 'https://
|
|
6590
|
+
this.basePath = 'https://apiv2stage3.atomex.net';
|
|
6661
6591
|
this.defaultHeaders = new http.HttpHeaders();
|
|
6662
6592
|
this.configuration = new Configuration();
|
|
6663
6593
|
if (basePath) {
|
|
@@ -7559,7 +7489,7 @@
|
|
|
7559
7489
|
var StrategyTemplateControllerService = /** @class */ (function () {
|
|
7560
7490
|
function StrategyTemplateControllerService(httpClient, basePath, configuration) {
|
|
7561
7491
|
this.httpClient = httpClient;
|
|
7562
|
-
this.basePath = 'https://
|
|
7492
|
+
this.basePath = 'https://apiv2stage3.atomex.net';
|
|
7563
7493
|
this.defaultHeaders = new http.HttpHeaders();
|
|
7564
7494
|
this.configuration = new Configuration();
|
|
7565
7495
|
if (basePath) {
|
|
@@ -7681,7 +7611,7 @@
|
|
|
7681
7611
|
var UILoggerControllerService = /** @class */ (function () {
|
|
7682
7612
|
function UILoggerControllerService(httpClient, basePath, configuration) {
|
|
7683
7613
|
this.httpClient = httpClient;
|
|
7684
|
-
this.basePath = 'https://
|
|
7614
|
+
this.basePath = 'https://apiv2stage3.atomex.net';
|
|
7685
7615
|
this.defaultHeaders = new http.HttpHeaders();
|
|
7686
7616
|
this.configuration = new Configuration();
|
|
7687
7617
|
if (basePath) {
|
|
@@ -7771,7 +7701,7 @@
|
|
|
7771
7701
|
var UserPreferenceControllerService = /** @class */ (function () {
|
|
7772
7702
|
function UserPreferenceControllerService(httpClient, basePath, configuration) {
|
|
7773
7703
|
this.httpClient = httpClient;
|
|
7774
|
-
this.basePath = 'https://
|
|
7704
|
+
this.basePath = 'https://apiv2stage3.atomex.net';
|
|
7775
7705
|
this.defaultHeaders = new http.HttpHeaders();
|
|
7776
7706
|
this.configuration = new Configuration();
|
|
7777
7707
|
if (basePath) {
|
|
@@ -8142,7 +8072,8 @@
|
|
|
8142
8072
|
DYNAMICVIDEO: 'DYNAMIC_VIDEO',
|
|
8143
8073
|
HYBRIDSTATICAD: 'HYBRID_STATIC_AD',
|
|
8144
8074
|
HYBRIDDYNAMICAD: 'HYBRID_DYNAMIC_AD',
|
|
8145
|
-
THIRDPARTYVIDEOADTAGS: 'THIRD_PARTY_VIDEO_AD_TAGS'
|
|
8075
|
+
THIRDPARTYVIDEOADTAGS: 'THIRD_PARTY_VIDEO_AD_TAGS',
|
|
8076
|
+
ICON: 'ICON'
|
|
8146
8077
|
};
|
|
8147
8078
|
})(exports.BaseModelWithCreativeSetType || (exports.BaseModelWithCreativeSetType = {}));
|
|
8148
8079
|
|
|
@@ -8175,7 +8106,8 @@
|
|
|
8175
8106
|
FbAppInstall: 'fbAppInstall',
|
|
8176
8107
|
FbAppEngagement: 'fbAppEngagement',
|
|
8177
8108
|
ClickTracker: 'clickTracker',
|
|
8178
|
-
FbxImageNewsFeed: 'fbxImageNewsFeed'
|
|
8109
|
+
FbxImageNewsFeed: 'fbxImageNewsFeed',
|
|
8110
|
+
NativeIcon: 'nativeIcon'
|
|
8179
8111
|
};
|
|
8180
8112
|
})(exports.CreativeCompactDTO || (exports.CreativeCompactDTO = {}));
|
|
8181
8113
|
|
|
@@ -8213,7 +8145,8 @@
|
|
|
8213
8145
|
FbAppInstall: 'fbAppInstall',
|
|
8214
8146
|
FbAppEngagement: 'fbAppEngagement',
|
|
8215
8147
|
ClickTracker: 'clickTracker',
|
|
8216
|
-
FbxImageNewsFeed: 'fbxImageNewsFeed'
|
|
8148
|
+
FbxImageNewsFeed: 'fbxImageNewsFeed',
|
|
8149
|
+
NativeIcon: 'nativeIcon'
|
|
8217
8150
|
};
|
|
8218
8151
|
CreativeDTO.VideoUploadTypeEnum = {
|
|
8219
8152
|
VIDEO: 'VIDEO',
|
|
@@ -8236,7 +8169,8 @@
|
|
|
8236
8169
|
DYNAMICVIDEO: 'DYNAMIC_VIDEO',
|
|
8237
8170
|
HYBRIDSTATICAD: 'HYBRID_STATIC_AD',
|
|
8238
8171
|
HYBRIDDYNAMICAD: 'HYBRID_DYNAMIC_AD',
|
|
8239
|
-
THIRDPARTYVIDEOADTAGS: 'THIRD_PARTY_VIDEO_AD_TAGS'
|
|
8172
|
+
THIRDPARTYVIDEOADTAGS: 'THIRD_PARTY_VIDEO_AD_TAGS',
|
|
8173
|
+
ICON: 'ICON'
|
|
8240
8174
|
};
|
|
8241
8175
|
})(exports.CreativeDetails || (exports.CreativeDetails = {}));
|
|
8242
8176
|
|
|
@@ -8256,7 +8190,8 @@
|
|
|
8256
8190
|
FbAppInstall: 'fbAppInstall',
|
|
8257
8191
|
FbAppEngagement: 'fbAppEngagement',
|
|
8258
8192
|
ClickTracker: 'clickTracker',
|
|
8259
|
-
FbxImageNewsFeed: 'fbxImageNewsFeed'
|
|
8193
|
+
FbxImageNewsFeed: 'fbxImageNewsFeed',
|
|
8194
|
+
NativeIcon: 'nativeIcon'
|
|
8260
8195
|
};
|
|
8261
8196
|
})(exports.CreativeFileForSet || (exports.CreativeFileForSet = {}));
|
|
8262
8197
|
|
|
@@ -8276,7 +8211,8 @@
|
|
|
8276
8211
|
FbAppInstall: 'fbAppInstall',
|
|
8277
8212
|
FbAppEngagement: 'fbAppEngagement',
|
|
8278
8213
|
ClickTracker: 'clickTracker',
|
|
8279
|
-
FbxImageNewsFeed: 'fbxImageNewsFeed'
|
|
8214
|
+
FbxImageNewsFeed: 'fbxImageNewsFeed',
|
|
8215
|
+
NativeIcon: 'nativeIcon'
|
|
8280
8216
|
};
|
|
8281
8217
|
})(exports.CreativeFiles || (exports.CreativeFiles = {}));
|
|
8282
8218
|
|
|
@@ -8301,7 +8237,8 @@
|
|
|
8301
8237
|
FbAppInstall: 'fbAppInstall',
|
|
8302
8238
|
FbAppEngagement: 'fbAppEngagement',
|
|
8303
8239
|
ClickTracker: 'clickTracker',
|
|
8304
|
-
FbxImageNewsFeed: 'fbxImageNewsFeed'
|
|
8240
|
+
FbxImageNewsFeed: 'fbxImageNewsFeed',
|
|
8241
|
+
NativeIcon: 'nativeIcon'
|
|
8305
8242
|
};
|
|
8306
8243
|
})(exports.CreativeHtmlFileForSet || (exports.CreativeHtmlFileForSet = {}));
|
|
8307
8244
|
|
|
@@ -8320,7 +8257,8 @@
|
|
|
8320
8257
|
DYNAMICVIDEO: 'DYNAMIC_VIDEO',
|
|
8321
8258
|
HYBRIDSTATICAD: 'HYBRID_STATIC_AD',
|
|
8322
8259
|
HYBRIDDYNAMICAD: 'HYBRID_DYNAMIC_AD',
|
|
8323
|
-
THIRDPARTYVIDEOADTAGS: 'THIRD_PARTY_VIDEO_AD_TAGS'
|
|
8260
|
+
THIRDPARTYVIDEOADTAGS: 'THIRD_PARTY_VIDEO_AD_TAGS',
|
|
8261
|
+
ICON: 'ICON'
|
|
8324
8262
|
};
|
|
8325
8263
|
})(exports.CreativeSetDashboardMetric || (exports.CreativeSetDashboardMetric = {}));
|
|
8326
8264
|
|
|
@@ -8339,7 +8277,8 @@
|
|
|
8339
8277
|
DYNAMICVIDEO: 'DYNAMIC_VIDEO',
|
|
8340
8278
|
HYBRIDSTATICAD: 'HYBRID_STATIC_AD',
|
|
8341
8279
|
HYBRIDDYNAMICAD: 'HYBRID_DYNAMIC_AD',
|
|
8342
|
-
THIRDPARTYVIDEOADTAGS: 'THIRD_PARTY_VIDEO_AD_TAGS'
|
|
8280
|
+
THIRDPARTYVIDEOADTAGS: 'THIRD_PARTY_VIDEO_AD_TAGS',
|
|
8281
|
+
ICON: 'ICON'
|
|
8343
8282
|
};
|
|
8344
8283
|
})(exports.CreativeSetDetails || (exports.CreativeSetDetails = {}));
|
|
8345
8284
|
|
|
@@ -8358,7 +8297,8 @@
|
|
|
8358
8297
|
DYNAMICVIDEO: 'DYNAMIC_VIDEO',
|
|
8359
8298
|
HYBRIDSTATICAD: 'HYBRID_STATIC_AD',
|
|
8360
8299
|
HYBRIDDYNAMICAD: 'HYBRID_DYNAMIC_AD',
|
|
8361
|
-
THIRDPARTYVIDEOADTAGS: 'THIRD_PARTY_VIDEO_AD_TAGS'
|
|
8300
|
+
THIRDPARTYVIDEOADTAGS: 'THIRD_PARTY_VIDEO_AD_TAGS',
|
|
8301
|
+
ICON: 'ICON'
|
|
8362
8302
|
};
|
|
8363
8303
|
})(exports.CreativeSetRequest || (exports.CreativeSetRequest = {}));
|
|
8364
8304
|
|
|
@@ -8388,7 +8328,8 @@
|
|
|
8388
8328
|
DYNAMICVIDEO: 'DYNAMIC_VIDEO',
|
|
8389
8329
|
HYBRIDSTATICAD: 'HYBRID_STATIC_AD',
|
|
8390
8330
|
HYBRIDDYNAMICAD: 'HYBRID_DYNAMIC_AD',
|
|
8391
|
-
THIRDPARTYVIDEOADTAGS: 'THIRD_PARTY_VIDEO_AD_TAGS'
|
|
8331
|
+
THIRDPARTYVIDEOADTAGS: 'THIRD_PARTY_VIDEO_AD_TAGS',
|
|
8332
|
+
ICON: 'ICON'
|
|
8392
8333
|
};
|
|
8393
8334
|
})(exports.CreativeSetResponse || (exports.CreativeSetResponse = {}));
|
|
8394
8335
|
|
|
@@ -8438,7 +8379,8 @@
|
|
|
8438
8379
|
DYNAMICVIDEO: 'DYNAMIC_VIDEO',
|
|
8439
8380
|
HYBRIDSTATICAD: 'HYBRID_STATIC_AD',
|
|
8440
8381
|
HYBRIDDYNAMICAD: 'HYBRID_DYNAMIC_AD',
|
|
8441
|
-
THIRDPARTYVIDEOADTAGS: 'THIRD_PARTY_VIDEO_AD_TAGS'
|
|
8382
|
+
THIRDPARTYVIDEOADTAGS: 'THIRD_PARTY_VIDEO_AD_TAGS',
|
|
8383
|
+
ICON: 'ICON'
|
|
8442
8384
|
};
|
|
8443
8385
|
})(exports.DuplicateCreativeSetResponse || (exports.DuplicateCreativeSetResponse = {}));
|
|
8444
8386
|
|