@revxui/api-clients-ts 1.1.341 → 1.1.342
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -2
- package/api/audienceController.service.d.ts +12 -0
- package/api/bidFunnelController.service.d.ts +6 -6
- package/api/campaignController.service.d.ts +0 -14
- package/api/dashboardController.service.d.ts +24 -24
- package/api/strategyController.service.d.ts +9 -23
- package/esm2020/api/adminController.service.mjs +2 -2
- package/esm2020/api/advertiserController.service.mjs +2 -2
- package/esm2020/api/appSettingsController.service.mjs +2 -2
- package/esm2020/api/audienceController.service.mjs +32 -2
- package/esm2020/api/auditController.service.mjs +2 -2
- package/esm2020/api/bidFunnelController.service.mjs +2 -2
- package/esm2020/api/bulkStrategyController.service.mjs +2 -2
- package/esm2020/api/cSSThemeController_.service.mjs +2 -2
- package/esm2020/api/campaignController.service.mjs +2 -41
- package/esm2020/api/catalogController.service.mjs +2 -2
- package/esm2020/api/clickDestinationController.service.mjs +2 -2
- package/esm2020/api/creativeController.service.mjs +2 -2
- package/esm2020/api/creativeSetsController.service.mjs +2 -2
- package/esm2020/api/creativeTemplateThemesController.service.mjs +2 -2
- package/esm2020/api/creativeTemplateVariablesController.service.mjs +2 -2
- package/esm2020/api/creativeTemplatesController.service.mjs +2 -2
- package/esm2020/api/customerReportingController.service.mjs +2 -2
- package/esm2020/api/dashboardController.service.mjs +2 -2
- package/esm2020/api/experimentsController.service.mjs +2 -2
- package/esm2020/api/notificationsController.service.mjs +2 -2
- package/esm2020/api/pixelController.service.mjs +2 -2
- package/esm2020/api/reportController.service.mjs +2 -2
- package/esm2020/api/reportingController.service.mjs +2 -2
- package/esm2020/api/reportingSchedulerController.service.mjs +2 -2
- package/esm2020/api/sliceXController.service.mjs +2 -2
- package/esm2020/api/strategyController.service.mjs +2 -36
- package/esm2020/api/strategyTemplateController.service.mjs +2 -2
- package/esm2020/api/uILoggerController.service.mjs +2 -2
- package/esm2020/api/userPreferenceController.service.mjs +2 -2
- package/esm2020/model/audienceDTO.mjs +1 -1
- package/esm2020/model/audienceESDTO.mjs +1 -1
- package/esm2020/model/audienceStrEditField.mjs +1 -1
- package/esm2020/model/campaignDTO.mjs +1 -1
- package/esm2020/model/campaignESDTO.mjs +1 -1
- package/esm2020/model/lookAlikeAudienceConfigDTO.mjs +9 -0
- package/esm2020/model/models.mjs +2 -6
- package/esm2020/model/strategy.mjs +1 -1
- package/esm2020/model/strategyDTO.mjs +1 -1
- package/fesm2015/revxui-api-clients-ts.mjs +69 -103
- package/fesm2015/revxui-api-clients-ts.mjs.map +1 -1
- package/fesm2020/revxui-api-clients-ts.mjs +69 -115
- package/fesm2020/revxui-api-clients-ts.mjs.map +1 -1
- package/model/audienceDTO.d.ts +2 -0
- package/model/audienceESDTO.d.ts +1 -0
- package/model/audienceStrEditField.d.ts +1 -0
- package/model/campaignDTO.d.ts +0 -1
- package/model/campaignESDTO.d.ts +0 -1
- package/model/lookAlikeAudienceConfigDTO.d.ts +28 -0
- package/model/models.d.ts +1 -5
- package/model/strategy.d.ts +0 -1
- package/model/strategyDTO.d.ts +1 -1
- package/package.json +1 -1
- package/esm2020/model/apiResponseObjectCampaignDTOList.mjs +0 -2
- package/esm2020/model/apiResponseObjectListStrategy.mjs +0 -2
- package/esm2020/model/budgetCapStrategyDTO.mjs +0 -2
- package/esm2020/model/budgetCheckStrategy.mjs +0 -13
- package/esm2020/model/campaignDTOList.mjs +0 -2
- package/model/apiResponseObjectCampaignDTOList.d.ts +0 -17
- package/model/apiResponseObjectListStrategy.d.ts +0 -17
- package/model/budgetCapStrategyDTO.d.ts +0 -20
- package/model/budgetCheckStrategy.d.ts +0 -17
- package/model/campaignDTOList.d.ts +0 -15
|
@@ -85,7 +85,7 @@ class Configuration {
|
|
|
85
85
|
class AdminControllerService {
|
|
86
86
|
constructor(httpClient, basePath, configuration) {
|
|
87
87
|
this.httpClient = httpClient;
|
|
88
|
-
this.basePath = 'https://
|
|
88
|
+
this.basePath = 'https://apiv2stage3.atomex.net';
|
|
89
89
|
this.defaultHeaders = new HttpHeaders();
|
|
90
90
|
this.configuration = new Configuration();
|
|
91
91
|
if (basePath) {
|
|
@@ -279,7 +279,7 @@ class CustomHttpUrlEncodingCodec extends HttpUrlEncodingCodec {
|
|
|
279
279
|
class AdvertiserControllerService {
|
|
280
280
|
constructor(httpClient, basePath, configuration) {
|
|
281
281
|
this.httpClient = httpClient;
|
|
282
|
-
this.basePath = 'https://
|
|
282
|
+
this.basePath = 'https://apiv2stage3.atomex.net';
|
|
283
283
|
this.defaultHeaders = new HttpHeaders();
|
|
284
284
|
this.configuration = new Configuration();
|
|
285
285
|
if (basePath) {
|
|
@@ -829,7 +829,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
829
829
|
class AppSettingsControllerService {
|
|
830
830
|
constructor(httpClient, basePath, configuration) {
|
|
831
831
|
this.httpClient = httpClient;
|
|
832
|
-
this.basePath = 'https://
|
|
832
|
+
this.basePath = 'https://apiv2stage3.atomex.net';
|
|
833
833
|
this.defaultHeaders = new HttpHeaders();
|
|
834
834
|
this.configuration = new Configuration();
|
|
835
835
|
if (basePath) {
|
|
@@ -1074,7 +1074,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
1074
1074
|
class AudienceControllerService {
|
|
1075
1075
|
constructor(httpClient, basePath, configuration) {
|
|
1076
1076
|
this.httpClient = httpClient;
|
|
1077
|
-
this.basePath = 'https://
|
|
1077
|
+
this.basePath = 'https://apiv2stage3.atomex.net';
|
|
1078
1078
|
this.defaultHeaders = new HttpHeaders();
|
|
1079
1079
|
this.configuration = new Configuration();
|
|
1080
1080
|
if (basePath) {
|
|
@@ -1725,6 +1725,36 @@ class AudienceControllerService {
|
|
|
1725
1725
|
reportProgress: reportProgress
|
|
1726
1726
|
});
|
|
1727
1727
|
}
|
|
1728
|
+
refreshLookalikeAudienceUsingPOST(id, reqId, token, observe = 'body', reportProgress = false) {
|
|
1729
|
+
if (id === null || id === undefined) {
|
|
1730
|
+
throw new Error('Required parameter id was null or undefined when calling refreshLookalikeAudienceUsingPOST.');
|
|
1731
|
+
}
|
|
1732
|
+
let headers = this.defaultHeaders;
|
|
1733
|
+
if (reqId !== undefined && reqId !== null) {
|
|
1734
|
+
headers = headers.set('reqId', String(reqId));
|
|
1735
|
+
}
|
|
1736
|
+
if (token !== undefined && token !== null) {
|
|
1737
|
+
headers = headers.set('token', String(token));
|
|
1738
|
+
}
|
|
1739
|
+
// to determine the Accept header
|
|
1740
|
+
let httpHeaderAccepts = [
|
|
1741
|
+
'*/*'
|
|
1742
|
+
];
|
|
1743
|
+
const httpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
|
|
1744
|
+
if (httpHeaderAcceptSelected != undefined) {
|
|
1745
|
+
headers = headers.set('Accept', httpHeaderAcceptSelected);
|
|
1746
|
+
}
|
|
1747
|
+
// to determine the Content-Type header
|
|
1748
|
+
const consumes = [
|
|
1749
|
+
'application/json'
|
|
1750
|
+
];
|
|
1751
|
+
return this.httpClient.post(`${this.basePath}/v2/api/audience/lookalike/refresh/${encodeURIComponent(String(id))}`, null, {
|
|
1752
|
+
withCredentials: this.configuration.withCredentials,
|
|
1753
|
+
headers: headers,
|
|
1754
|
+
observe: observe,
|
|
1755
|
+
reportProgress: reportProgress
|
|
1756
|
+
});
|
|
1757
|
+
}
|
|
1728
1758
|
retrySchedulerForAdvertisersUsingGET(advIds, reqId, token, observe = 'body', reportProgress = false) {
|
|
1729
1759
|
if (advIds === null || advIds === undefined) {
|
|
1730
1760
|
throw new Error('Required parameter advIds was null or undefined when calling retrySchedulerForAdvertisersUsingGET.');
|
|
@@ -1920,7 +1950,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
1920
1950
|
class AuditControllerService {
|
|
1921
1951
|
constructor(httpClient, basePath, configuration) {
|
|
1922
1952
|
this.httpClient = httpClient;
|
|
1923
|
-
this.basePath = 'https://
|
|
1953
|
+
this.basePath = 'https://apiv2stage3.atomex.net';
|
|
1924
1954
|
this.defaultHeaders = new HttpHeaders();
|
|
1925
1955
|
this.configuration = new Configuration();
|
|
1926
1956
|
if (basePath) {
|
|
@@ -2105,7 +2135,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
2105
2135
|
class BidFunnelControllerService {
|
|
2106
2136
|
constructor(httpClient, basePath, configuration) {
|
|
2107
2137
|
this.httpClient = httpClient;
|
|
2108
|
-
this.basePath = 'https://
|
|
2138
|
+
this.basePath = 'https://apiv2stage3.atomex.net';
|
|
2109
2139
|
this.defaultHeaders = new HttpHeaders();
|
|
2110
2140
|
this.configuration = new Configuration();
|
|
2111
2141
|
if (basePath) {
|
|
@@ -2254,7 +2284,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
2254
2284
|
class BulkStrategyControllerService {
|
|
2255
2285
|
constructor(httpClient, basePath, configuration) {
|
|
2256
2286
|
this.httpClient = httpClient;
|
|
2257
|
-
this.basePath = 'https://
|
|
2287
|
+
this.basePath = 'https://apiv2stage3.atomex.net';
|
|
2258
2288
|
this.defaultHeaders = new HttpHeaders();
|
|
2259
2289
|
this.configuration = new Configuration();
|
|
2260
2290
|
if (basePath) {
|
|
@@ -2479,7 +2509,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
2479
2509
|
class CSSThemeController_Service {
|
|
2480
2510
|
constructor(httpClient, basePath, configuration) {
|
|
2481
2511
|
this.httpClient = httpClient;
|
|
2482
|
-
this.basePath = 'https://
|
|
2512
|
+
this.basePath = 'https://apiv2stage3.atomex.net';
|
|
2483
2513
|
this.defaultHeaders = new HttpHeaders();
|
|
2484
2514
|
this.configuration = new Configuration();
|
|
2485
2515
|
if (basePath) {
|
|
@@ -2588,7 +2618,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
2588
2618
|
class CampaignControllerService {
|
|
2589
2619
|
constructor(httpClient, basePath, configuration) {
|
|
2590
2620
|
this.httpClient = httpClient;
|
|
2591
|
-
this.basePath = 'https://
|
|
2621
|
+
this.basePath = 'https://apiv2stage3.atomex.net';
|
|
2592
2622
|
this.defaultHeaders = new HttpHeaders();
|
|
2593
2623
|
this.configuration = new Configuration();
|
|
2594
2624
|
if (basePath) {
|
|
@@ -2825,45 +2855,6 @@ class CampaignControllerService {
|
|
|
2825
2855
|
reportProgress: reportProgress
|
|
2826
2856
|
});
|
|
2827
2857
|
}
|
|
2828
|
-
getCampaignsByIdsUsingPOST(campaignIds, refresh, reqId, token, observe = 'body', reportProgress = false) {
|
|
2829
|
-
if (campaignIds === null || campaignIds === undefined) {
|
|
2830
|
-
throw new Error('Required parameter campaignIds was null or undefined when calling getCampaignsByIdsUsingPOST.');
|
|
2831
|
-
}
|
|
2832
|
-
let queryParameters = new HttpParams({ encoder: new CustomHttpUrlEncodingCodec() });
|
|
2833
|
-
if (refresh !== undefined && refresh !== null) {
|
|
2834
|
-
queryParameters = queryParameters.set('refresh', refresh);
|
|
2835
|
-
}
|
|
2836
|
-
let headers = this.defaultHeaders;
|
|
2837
|
-
if (reqId !== undefined && reqId !== null) {
|
|
2838
|
-
headers = headers.set('reqId', String(reqId));
|
|
2839
|
-
}
|
|
2840
|
-
if (token !== undefined && token !== null) {
|
|
2841
|
-
headers = headers.set('token', String(token));
|
|
2842
|
-
}
|
|
2843
|
-
// to determine the Accept header
|
|
2844
|
-
let httpHeaderAccepts = [
|
|
2845
|
-
'application/json'
|
|
2846
|
-
];
|
|
2847
|
-
const httpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
|
|
2848
|
-
if (httpHeaderAcceptSelected != undefined) {
|
|
2849
|
-
headers = headers.set('Accept', httpHeaderAcceptSelected);
|
|
2850
|
-
}
|
|
2851
|
-
// to determine the Content-Type header
|
|
2852
|
-
const consumes = [
|
|
2853
|
-
'application/json'
|
|
2854
|
-
];
|
|
2855
|
-
const httpContentTypeSelected = this.configuration.selectHeaderContentType(consumes);
|
|
2856
|
-
if (httpContentTypeSelected != undefined) {
|
|
2857
|
-
headers = headers.set('Content-Type', httpContentTypeSelected);
|
|
2858
|
-
}
|
|
2859
|
-
return this.httpClient.post(`${this.basePath}/v2/api/campaigns/ids/`, campaignIds, {
|
|
2860
|
-
params: queryParameters,
|
|
2861
|
-
withCredentials: this.configuration.withCredentials,
|
|
2862
|
-
headers: headers,
|
|
2863
|
-
observe: observe,
|
|
2864
|
-
reportProgress: reportProgress
|
|
2865
|
-
});
|
|
2866
|
-
}
|
|
2867
2858
|
incrementalityReportUsingPOST(incrementalityReportDTO, reqId, token, observe = 'body', reportProgress = false) {
|
|
2868
2859
|
if (incrementalityReportDTO === null || incrementalityReportDTO === undefined) {
|
|
2869
2860
|
throw new Error('Required parameter incrementalityReportDTO was null or undefined when calling incrementalityReportUsingPOST.');
|
|
@@ -3001,7 +2992,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
3001
2992
|
class CatalogControllerService {
|
|
3002
2993
|
constructor(httpClient, basePath, configuration) {
|
|
3003
2994
|
this.httpClient = httpClient;
|
|
3004
|
-
this.basePath = 'https://
|
|
2995
|
+
this.basePath = 'https://apiv2stage3.atomex.net';
|
|
3005
2996
|
this.defaultHeaders = new HttpHeaders();
|
|
3006
2997
|
this.configuration = new Configuration();
|
|
3007
2998
|
if (basePath) {
|
|
@@ -3241,7 +3232,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
3241
3232
|
class ClickDestinationControllerService {
|
|
3242
3233
|
constructor(httpClient, basePath, configuration) {
|
|
3243
3234
|
this.httpClient = httpClient;
|
|
3244
|
-
this.basePath = 'https://
|
|
3235
|
+
this.basePath = 'https://apiv2stage3.atomex.net';
|
|
3245
3236
|
this.defaultHeaders = new HttpHeaders();
|
|
3246
3237
|
this.configuration = new Configuration();
|
|
3247
3238
|
if (basePath) {
|
|
@@ -3473,7 +3464,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
3473
3464
|
class CreativeControllerService {
|
|
3474
3465
|
constructor(httpClient, basePath, configuration) {
|
|
3475
3466
|
this.httpClient = httpClient;
|
|
3476
|
-
this.basePath = 'https://
|
|
3467
|
+
this.basePath = 'https://apiv2stage3.atomex.net';
|
|
3477
3468
|
this.defaultHeaders = new HttpHeaders();
|
|
3478
3469
|
this.configuration = new Configuration();
|
|
3479
3470
|
if (basePath) {
|
|
@@ -3988,7 +3979,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
3988
3979
|
class CreativeSetsControllerService {
|
|
3989
3980
|
constructor(httpClient, basePath, configuration) {
|
|
3990
3981
|
this.httpClient = httpClient;
|
|
3991
|
-
this.basePath = 'https://
|
|
3982
|
+
this.basePath = 'https://apiv2stage3.atomex.net';
|
|
3992
3983
|
this.defaultHeaders = new HttpHeaders();
|
|
3993
3984
|
this.configuration = new Configuration();
|
|
3994
3985
|
if (basePath) {
|
|
@@ -4596,7 +4587,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
4596
4587
|
class CreativeTemplateThemesControllerService {
|
|
4597
4588
|
constructor(httpClient, basePath, configuration) {
|
|
4598
4589
|
this.httpClient = httpClient;
|
|
4599
|
-
this.basePath = 'https://
|
|
4590
|
+
this.basePath = 'https://apiv2stage3.atomex.net';
|
|
4600
4591
|
this.defaultHeaders = new HttpHeaders();
|
|
4601
4592
|
this.configuration = new Configuration();
|
|
4602
4593
|
if (basePath) {
|
|
@@ -4781,7 +4772,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
4781
4772
|
class CreativeTemplateVariablesControllerService {
|
|
4782
4773
|
constructor(httpClient, basePath, configuration) {
|
|
4783
4774
|
this.httpClient = httpClient;
|
|
4784
|
-
this.basePath = 'https://
|
|
4775
|
+
this.basePath = 'https://apiv2stage3.atomex.net';
|
|
4785
4776
|
this.defaultHeaders = new HttpHeaders();
|
|
4786
4777
|
this.configuration = new Configuration();
|
|
4787
4778
|
if (basePath) {
|
|
@@ -4859,7 +4850,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
4859
4850
|
class CreativeTemplatesControllerService {
|
|
4860
4851
|
constructor(httpClient, basePath, configuration) {
|
|
4861
4852
|
this.httpClient = httpClient;
|
|
4862
|
-
this.basePath = 'https://
|
|
4853
|
+
this.basePath = 'https://apiv2stage3.atomex.net';
|
|
4863
4854
|
this.defaultHeaders = new HttpHeaders();
|
|
4864
4855
|
this.configuration = new Configuration();
|
|
4865
4856
|
if (basePath) {
|
|
@@ -5024,7 +5015,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
5024
5015
|
class CustomerReportingControllerService {
|
|
5025
5016
|
constructor(httpClient, basePath, configuration) {
|
|
5026
5017
|
this.httpClient = httpClient;
|
|
5027
|
-
this.basePath = 'https://
|
|
5018
|
+
this.basePath = 'https://apiv2stage3.atomex.net';
|
|
5028
5019
|
this.defaultHeaders = new HttpHeaders();
|
|
5029
5020
|
this.configuration = new Configuration();
|
|
5030
5021
|
if (basePath) {
|
|
@@ -5111,7 +5102,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
5111
5102
|
class DashboardControllerService {
|
|
5112
5103
|
constructor(httpClient, basePath, configuration) {
|
|
5113
5104
|
this.httpClient = httpClient;
|
|
5114
|
-
this.basePath = 'https://
|
|
5105
|
+
this.basePath = 'https://apiv2stage3.atomex.net';
|
|
5115
5106
|
this.defaultHeaders = new HttpHeaders();
|
|
5116
5107
|
this.configuration = new Configuration();
|
|
5117
5108
|
if (basePath) {
|
|
@@ -5769,7 +5760,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
5769
5760
|
class ExperimentsControllerService {
|
|
5770
5761
|
constructor(httpClient, basePath, configuration) {
|
|
5771
5762
|
this.httpClient = httpClient;
|
|
5772
|
-
this.basePath = 'https://
|
|
5763
|
+
this.basePath = 'https://apiv2stage3.atomex.net';
|
|
5773
5764
|
this.defaultHeaders = new HttpHeaders();
|
|
5774
5765
|
this.configuration = new Configuration();
|
|
5775
5766
|
if (basePath) {
|
|
@@ -6195,7 +6186,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
6195
6186
|
class NotificationsControllerService {
|
|
6196
6187
|
constructor(httpClient, basePath, configuration) {
|
|
6197
6188
|
this.httpClient = httpClient;
|
|
6198
|
-
this.basePath = 'https://
|
|
6189
|
+
this.basePath = 'https://apiv2stage3.atomex.net';
|
|
6199
6190
|
this.defaultHeaders = new HttpHeaders();
|
|
6200
6191
|
this.configuration = new Configuration();
|
|
6201
6192
|
if (basePath) {
|
|
@@ -6408,7 +6399,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
6408
6399
|
class PixelControllerService {
|
|
6409
6400
|
constructor(httpClient, basePath, configuration) {
|
|
6410
6401
|
this.httpClient = httpClient;
|
|
6411
|
-
this.basePath = 'https://
|
|
6402
|
+
this.basePath = 'https://apiv2stage3.atomex.net';
|
|
6412
6403
|
this.defaultHeaders = new HttpHeaders();
|
|
6413
6404
|
this.configuration = new Configuration();
|
|
6414
6405
|
if (basePath) {
|
|
@@ -6715,7 +6706,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
6715
6706
|
class ReportControllerService {
|
|
6716
6707
|
constructor(httpClient, basePath, configuration) {
|
|
6717
6708
|
this.httpClient = httpClient;
|
|
6718
|
-
this.basePath = 'https://
|
|
6709
|
+
this.basePath = 'https://apiv2stage3.atomex.net';
|
|
6719
6710
|
this.defaultHeaders = new HttpHeaders();
|
|
6720
6711
|
this.configuration = new Configuration();
|
|
6721
6712
|
if (basePath) {
|
|
@@ -6852,7 +6843,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
6852
6843
|
class ReportingControllerService {
|
|
6853
6844
|
constructor(httpClient, basePath, configuration) {
|
|
6854
6845
|
this.httpClient = httpClient;
|
|
6855
|
-
this.basePath = 'https://
|
|
6846
|
+
this.basePath = 'https://apiv2stage3.atomex.net';
|
|
6856
6847
|
this.defaultHeaders = new HttpHeaders();
|
|
6857
6848
|
this.configuration = new Configuration();
|
|
6858
6849
|
if (basePath) {
|
|
@@ -7022,7 +7013,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
7022
7013
|
class ReportingSchedulerControllerService {
|
|
7023
7014
|
constructor(httpClient, basePath, configuration) {
|
|
7024
7015
|
this.httpClient = httpClient;
|
|
7025
|
-
this.basePath = 'https://
|
|
7016
|
+
this.basePath = 'https://apiv2stage3.atomex.net';
|
|
7026
7017
|
this.defaultHeaders = new HttpHeaders();
|
|
7027
7018
|
this.configuration = new Configuration();
|
|
7028
7019
|
if (basePath) {
|
|
@@ -7337,7 +7328,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
7337
7328
|
class SliceXControllerService {
|
|
7338
7329
|
constructor(httpClient, basePath, configuration) {
|
|
7339
7330
|
this.httpClient = httpClient;
|
|
7340
|
-
this.basePath = 'https://
|
|
7331
|
+
this.basePath = 'https://apiv2stage3.atomex.net';
|
|
7341
7332
|
this.defaultHeaders = new HttpHeaders();
|
|
7342
7333
|
this.configuration = new Configuration();
|
|
7343
7334
|
if (basePath) {
|
|
@@ -7587,7 +7578,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
7587
7578
|
class StrategyControllerService {
|
|
7588
7579
|
constructor(httpClient, basePath, configuration) {
|
|
7589
7580
|
this.httpClient = httpClient;
|
|
7590
|
-
this.basePath = 'https://
|
|
7581
|
+
this.basePath = 'https://apiv2stage3.atomex.net';
|
|
7591
7582
|
this.defaultHeaders = new HttpHeaders();
|
|
7592
7583
|
this.configuration = new Configuration();
|
|
7593
7584
|
if (basePath) {
|
|
@@ -8513,40 +8504,6 @@ class StrategyControllerService {
|
|
|
8513
8504
|
reportProgress: reportProgress
|
|
8514
8505
|
});
|
|
8515
8506
|
}
|
|
8516
|
-
updateDailyAdvertiserSpendBudgetForStrategyUsingPOST(budgetCapStrategyDTO, reqId, token, observe = 'body', reportProgress = false) {
|
|
8517
|
-
if (budgetCapStrategyDTO === null || budgetCapStrategyDTO === undefined) {
|
|
8518
|
-
throw new Error('Required parameter budgetCapStrategyDTO was null or undefined when calling updateDailyAdvertiserSpendBudgetForStrategyUsingPOST.');
|
|
8519
|
-
}
|
|
8520
|
-
let headers = this.defaultHeaders;
|
|
8521
|
-
if (reqId !== undefined && reqId !== null) {
|
|
8522
|
-
headers = headers.set('reqId', String(reqId));
|
|
8523
|
-
}
|
|
8524
|
-
if (token !== undefined && token !== null) {
|
|
8525
|
-
headers = headers.set('token', String(token));
|
|
8526
|
-
}
|
|
8527
|
-
// to determine the Accept header
|
|
8528
|
-
let httpHeaderAccepts = [
|
|
8529
|
-
'application/json'
|
|
8530
|
-
];
|
|
8531
|
-
const httpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
|
|
8532
|
-
if (httpHeaderAcceptSelected != undefined) {
|
|
8533
|
-
headers = headers.set('Accept', httpHeaderAcceptSelected);
|
|
8534
|
-
}
|
|
8535
|
-
// to determine the Content-Type header
|
|
8536
|
-
const consumes = [
|
|
8537
|
-
'application/json'
|
|
8538
|
-
];
|
|
8539
|
-
const httpContentTypeSelected = this.configuration.selectHeaderContentType(consumes);
|
|
8540
|
-
if (httpContentTypeSelected != undefined) {
|
|
8541
|
-
headers = headers.set('Content-Type', httpContentTypeSelected);
|
|
8542
|
-
}
|
|
8543
|
-
return this.httpClient.post(`${this.basePath}/v2/api/strategies/updateDailyAdvertiserSpendBudgetForStrategy`, budgetCapStrategyDTO, {
|
|
8544
|
-
withCredentials: this.configuration.withCredentials,
|
|
8545
|
-
headers: headers,
|
|
8546
|
-
observe: observe,
|
|
8547
|
-
reportProgress: reportProgress
|
|
8548
|
-
});
|
|
8549
|
-
}
|
|
8550
8507
|
updateStrategyOptimizationRuleUsingPOST(id, req, ruleId, reqId, token, observe = 'body', reportProgress = false) {
|
|
8551
8508
|
if (id === null || id === undefined) {
|
|
8552
8509
|
throw new Error('Required parameter id was null or undefined when calling updateStrategyOptimizationRuleUsingPOST.');
|
|
@@ -8755,7 +8712,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
8755
8712
|
class StrategyTemplateControllerService {
|
|
8756
8713
|
constructor(httpClient, basePath, configuration) {
|
|
8757
8714
|
this.httpClient = httpClient;
|
|
8758
|
-
this.basePath = 'https://
|
|
8715
|
+
this.basePath = 'https://apiv2stage3.atomex.net';
|
|
8759
8716
|
this.defaultHeaders = new HttpHeaders();
|
|
8760
8717
|
this.configuration = new Configuration();
|
|
8761
8718
|
if (basePath) {
|
|
@@ -8877,7 +8834,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
8877
8834
|
class UILoggerControllerService {
|
|
8878
8835
|
constructor(httpClient, basePath, configuration) {
|
|
8879
8836
|
this.httpClient = httpClient;
|
|
8880
|
-
this.basePath = 'https://
|
|
8837
|
+
this.basePath = 'https://apiv2stage3.atomex.net';
|
|
8881
8838
|
this.defaultHeaders = new HttpHeaders();
|
|
8882
8839
|
this.configuration = new Configuration();
|
|
8883
8840
|
if (basePath) {
|
|
@@ -8969,7 +8926,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
8969
8926
|
class UserPreferenceControllerService {
|
|
8970
8927
|
constructor(httpClient, basePath, configuration) {
|
|
8971
8928
|
this.httpClient = httpClient;
|
|
8972
|
-
this.basePath = 'https://
|
|
8929
|
+
this.basePath = 'https://apiv2stage3.atomex.net';
|
|
8973
8930
|
this.defaultHeaders = new HttpHeaders();
|
|
8974
8931
|
this.configuration = new Configuration();
|
|
8975
8932
|
if (basePath) {
|
|
@@ -9681,18 +9638,6 @@ var BaseModelWithCreativeSetType;
|
|
|
9681
9638
|
* Do not edit the class manually.
|
|
9682
9639
|
*/
|
|
9683
9640
|
|
|
9684
|
-
/**
|
|
9685
|
-
* Api Documentation
|
|
9686
|
-
* Api Documentation
|
|
9687
|
-
*
|
|
9688
|
-
* OpenAPI spec version: 1.0
|
|
9689
|
-
*
|
|
9690
|
-
*
|
|
9691
|
-
* NOTE: This class is auto generated by the swagger code generator program.
|
|
9692
|
-
* https://github.com/swagger-api/swagger-codegen.git
|
|
9693
|
-
* Do not edit the class manually.
|
|
9694
|
-
*/
|
|
9695
|
-
|
|
9696
9641
|
var ClickDestination;
|
|
9697
9642
|
(function (ClickDestination) {
|
|
9698
9643
|
ClickDestination.CampaignTypeEnum = {
|
|
@@ -10642,6 +10587,15 @@ var JobResponse;
|
|
|
10642
10587
|
};
|
|
10643
10588
|
})(JobResponse || (JobResponse = {}));
|
|
10644
10589
|
|
|
10590
|
+
var LookAlikeAudienceConfigDTO;
|
|
10591
|
+
(function (LookAlikeAudienceConfigDTO) {
|
|
10592
|
+
LookAlikeAudienceConfigDTO.AudienceSizeTypeEnum = {
|
|
10593
|
+
SMALL: 'SMALL',
|
|
10594
|
+
MEDIUM: 'MEDIUM',
|
|
10595
|
+
LARGE: 'LARGE'
|
|
10596
|
+
};
|
|
10597
|
+
})(LookAlikeAudienceConfigDTO || (LookAlikeAudienceConfigDTO = {}));
|
|
10598
|
+
|
|
10645
10599
|
/**
|
|
10646
10600
|
* Api Documentation
|
|
10647
10601
|
* Api Documentation
|
|
@@ -11799,5 +11753,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
11799
11753
|
* Generated bundle index. Do not edit.
|
|
11800
11754
|
*/
|
|
11801
11755
|
|
|
11802
|
-
export { APIS, ActivityLogsCreativeSetsBulkUpdateDTO, ActivityLogsStrategyBulkUpdateDTO, AdminControllerService, AdvertiserCohortDTO, AdvertiserCohortResponse, AdvertiserControllerService, ApiModule, AppSettingsControllerService, AppSettingsDTO, AppSettingsPropertyDTO, AuctionTypeEditField, AudienceBackfillQueryTemplateRequest, AudienceBackfillRequest, AudienceControllerService, AudienceDTO, AudienceESDTO, AudiencePerformanceDTO, AuditControllerService, BASE_PATH, BaseModelWithCreativeSetType, BidFunnelControllerService, BulkStrategyControllerService, COLLECTION_FORMATS, CSSThemeController_Service, CampaignControllerService, CatalogControllerService, ClickDestination, ClickDestinationControllerService, CohortCampaignStrategyDO, Configuration, CreativeCompactDTO, CreativeControllerService, CreativeDTO, CreativeDetails, CreativeFileForSet, CreativeFiles, CreativeHtmlFileForSet, CreativeSetDashboardMetric, CreativeSetDetails, CreativeSetPerformanceList, CreativeSetRequest, CreativeSetResponse, CreativeSetsControllerService, CreativeTemplateThemesControllerService, CreativeTemplateVariablesControllerService, CreativeTemplatesControllerService, CustomerReportingControllerService, DashboardControllerService, DcoAttributesDTO, DeviceTargetModel, DuplicateCampaignStrategyRequestDTO, DuplicateCreativeSetResponse, DynamicVideoConfigDTO, ExperimentsControllerService, FilterModel, GeoFenceDTO, GeoListRequest, IncrementalityTestDTO, IncrementalityTestDetails, JobResponse, Macro, MetaRuleDto, NotificationResponse, NotificationsControllerService, OptimizationRuleAuditLogDTO, OptimizationRuleDTO, PixelControllerService, PixelDataFileDTO, RemoteFileDTO, ReportControllerService, ReportProperty, ReportRequest, ReportResponse, ReportingControllerService, ReportingRequest, ReportingResponse, ReportingSchedulerControllerService, ReportingSchedulerResponse, RuleDTO, SchedulerRequest, SliceXControllerService, StrategyControllerService, StrategyDTO, StrategyInlineDTO, StrategyQuickEditDTO, StrategyRuleResponse, StrategyTemplateControllerService, StrategyTemplateDTO, StrategyTemplateResponse, TemplateVariablesDTO, UILoggerControllerService, UserPreferenceControllerService, VastCreative, VideoAttributes, VideoProperties, WhitelabelingEntity };
|
|
11756
|
+
export { APIS, ActivityLogsCreativeSetsBulkUpdateDTO, ActivityLogsStrategyBulkUpdateDTO, AdminControllerService, AdvertiserCohortDTO, AdvertiserCohortResponse, AdvertiserControllerService, ApiModule, AppSettingsControllerService, AppSettingsDTO, AppSettingsPropertyDTO, AuctionTypeEditField, AudienceBackfillQueryTemplateRequest, AudienceBackfillRequest, AudienceControllerService, AudienceDTO, AudienceESDTO, AudiencePerformanceDTO, AuditControllerService, BASE_PATH, BaseModelWithCreativeSetType, BidFunnelControllerService, BulkStrategyControllerService, COLLECTION_FORMATS, CSSThemeController_Service, CampaignControllerService, CatalogControllerService, ClickDestination, ClickDestinationControllerService, CohortCampaignStrategyDO, Configuration, CreativeCompactDTO, CreativeControllerService, CreativeDTO, CreativeDetails, CreativeFileForSet, CreativeFiles, CreativeHtmlFileForSet, CreativeSetDashboardMetric, CreativeSetDetails, CreativeSetPerformanceList, CreativeSetRequest, CreativeSetResponse, CreativeSetsControllerService, CreativeTemplateThemesControllerService, CreativeTemplateVariablesControllerService, CreativeTemplatesControllerService, CustomerReportingControllerService, DashboardControllerService, DcoAttributesDTO, DeviceTargetModel, DuplicateCampaignStrategyRequestDTO, DuplicateCreativeSetResponse, DynamicVideoConfigDTO, ExperimentsControllerService, FilterModel, GeoFenceDTO, GeoListRequest, IncrementalityTestDTO, IncrementalityTestDetails, JobResponse, LookAlikeAudienceConfigDTO, Macro, MetaRuleDto, NotificationResponse, NotificationsControllerService, OptimizationRuleAuditLogDTO, OptimizationRuleDTO, PixelControllerService, PixelDataFileDTO, RemoteFileDTO, ReportControllerService, ReportProperty, ReportRequest, ReportResponse, ReportingControllerService, ReportingRequest, ReportingResponse, ReportingSchedulerControllerService, ReportingSchedulerResponse, RuleDTO, SchedulerRequest, SliceXControllerService, StrategyControllerService, StrategyDTO, StrategyInlineDTO, StrategyQuickEditDTO, StrategyRuleResponse, StrategyTemplateControllerService, StrategyTemplateDTO, StrategyTemplateResponse, TemplateVariablesDTO, UILoggerControllerService, UserPreferenceControllerService, VastCreative, VideoAttributes, VideoProperties, WhitelabelingEntity };
|
|
11803
11757
|
//# sourceMappingURL=revxui-api-clients-ts.mjs.map
|