@revxui/api-clients-ts 1.1.366 → 1.1.368
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/experimentsController.service.d.ts +102 -0
- 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 +2 -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 -2
- 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 +262 -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 -2
- 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/aBTestingDTO.mjs +15 -0
- package/esm2020/model/aBTestingResponseDetails.mjs +15 -0
- package/esm2020/model/aBTestingVariantDTO.mjs +26 -0
- package/esm2020/model/apiResponseObjectABTestingResponseDetails.mjs +2 -0
- package/esm2020/model/apiResponseObjectListABTestingResponseDetails.mjs +2 -0
- package/esm2020/model/apiResponseObjectListExperimentsEntity.mjs +2 -0
- package/esm2020/model/creativePerformanceList.mjs +1 -1
- package/esm2020/model/creativeSetDashboardMetric.mjs +1 -1
- package/esm2020/model/creativeSetPerformanceList.mjs +1 -1
- package/esm2020/model/dashboardData.mjs +1 -1
- package/esm2020/model/dashboardMetrics.mjs +1 -1
- package/esm2020/model/experimentsEntity.mjs +15 -0
- package/esm2020/model/incrementalityTestDetails.mjs +2 -1
- package/esm2020/model/models.mjs +9 -1
- package/esm2020/model/slicexData.mjs +1 -1
- package/esm2020/model/slicexGridData.mjs +1 -1
- package/esm2020/model/strategy.mjs +1 -1
- package/esm2020/model/strategyDTO.mjs +1 -1
- package/esm2020/model/userInfoEntity.mjs +13 -0
- package/fesm2015/revxui-api-clients-ts.mjs +362 -30
- package/fesm2015/revxui-api-clients-ts.mjs.map +1 -1
- package/fesm2020/revxui-api-clients-ts.mjs +374 -30
- package/fesm2020/revxui-api-clients-ts.mjs.map +1 -1
- package/model/aBTestingDTO.d.ts +41 -0
- package/model/aBTestingResponseDetails.d.ts +52 -0
- package/model/aBTestingVariantDTO.d.ts +60 -0
- package/model/apiResponseObjectABTestingResponseDetails.d.ts +17 -0
- package/model/apiResponseObjectListABTestingResponseDetails.d.ts +17 -0
- package/model/apiResponseObjectListExperimentsEntity.d.ts +17 -0
- package/model/creativePerformanceList.d.ts +0 -1
- package/model/creativeSetDashboardMetric.d.ts +0 -1
- package/model/creativeSetPerformanceList.d.ts +0 -1
- package/model/dashboardData.d.ts +0 -1
- package/model/dashboardMetrics.d.ts +0 -1
- package/model/experimentsEntity.d.ts +51 -0
- package/model/incrementalityTestDetails.d.ts +2 -1
- package/model/models.d.ts +8 -0
- package/model/slicexData.d.ts +0 -1
- package/model/slicexGridData.d.ts +0 -1
- package/model/strategy.d.ts +2 -0
- package/model/strategyDTO.d.ts +2 -0
- package/model/userInfoEntity.d.ts +23 -0
- package/package.json +1 -1
|
@@ -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) {
|
|
@@ -1950,7 +1950,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
1950
1950
|
class AuditControllerService {
|
|
1951
1951
|
constructor(httpClient, basePath, configuration) {
|
|
1952
1952
|
this.httpClient = httpClient;
|
|
1953
|
-
this.basePath = 'https://
|
|
1953
|
+
this.basePath = 'https://apiv2stage3.atomex.net';
|
|
1954
1954
|
this.defaultHeaders = new HttpHeaders();
|
|
1955
1955
|
this.configuration = new Configuration();
|
|
1956
1956
|
if (basePath) {
|
|
@@ -2135,7 +2135,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
2135
2135
|
class BidFunnelControllerService {
|
|
2136
2136
|
constructor(httpClient, basePath, configuration) {
|
|
2137
2137
|
this.httpClient = httpClient;
|
|
2138
|
-
this.basePath = 'https://
|
|
2138
|
+
this.basePath = 'https://apiv2stage3.atomex.net';
|
|
2139
2139
|
this.defaultHeaders = new HttpHeaders();
|
|
2140
2140
|
this.configuration = new Configuration();
|
|
2141
2141
|
if (basePath) {
|
|
@@ -2284,7 +2284,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
2284
2284
|
class BulkStrategyControllerService {
|
|
2285
2285
|
constructor(httpClient, basePath, configuration) {
|
|
2286
2286
|
this.httpClient = httpClient;
|
|
2287
|
-
this.basePath = 'https://
|
|
2287
|
+
this.basePath = 'https://apiv2stage3.atomex.net';
|
|
2288
2288
|
this.defaultHeaders = new HttpHeaders();
|
|
2289
2289
|
this.configuration = new Configuration();
|
|
2290
2290
|
if (basePath) {
|
|
@@ -2509,7 +2509,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
2509
2509
|
class CSSThemeController_Service {
|
|
2510
2510
|
constructor(httpClient, basePath, configuration) {
|
|
2511
2511
|
this.httpClient = httpClient;
|
|
2512
|
-
this.basePath = 'https://
|
|
2512
|
+
this.basePath = 'https://apiv2stage3.atomex.net';
|
|
2513
2513
|
this.defaultHeaders = new HttpHeaders();
|
|
2514
2514
|
this.configuration = new Configuration();
|
|
2515
2515
|
if (basePath) {
|
|
@@ -2618,7 +2618,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
2618
2618
|
class CampaignControllerService {
|
|
2619
2619
|
constructor(httpClient, basePath, configuration) {
|
|
2620
2620
|
this.httpClient = httpClient;
|
|
2621
|
-
this.basePath = 'https://
|
|
2621
|
+
this.basePath = 'https://apiv2stage3.atomex.net';
|
|
2622
2622
|
this.defaultHeaders = new HttpHeaders();
|
|
2623
2623
|
this.configuration = new Configuration();
|
|
2624
2624
|
if (basePath) {
|
|
@@ -3059,7 +3059,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
3059
3059
|
class CatalogControllerService {
|
|
3060
3060
|
constructor(httpClient, basePath, configuration) {
|
|
3061
3061
|
this.httpClient = httpClient;
|
|
3062
|
-
this.basePath = 'https://
|
|
3062
|
+
this.basePath = 'https://apiv2stage3.atomex.net';
|
|
3063
3063
|
this.defaultHeaders = new HttpHeaders();
|
|
3064
3064
|
this.configuration = new Configuration();
|
|
3065
3065
|
if (basePath) {
|
|
@@ -3299,7 +3299,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
3299
3299
|
class ClickDestinationControllerService {
|
|
3300
3300
|
constructor(httpClient, basePath, configuration) {
|
|
3301
3301
|
this.httpClient = httpClient;
|
|
3302
|
-
this.basePath = 'https://
|
|
3302
|
+
this.basePath = 'https://apiv2stage3.atomex.net';
|
|
3303
3303
|
this.defaultHeaders = new HttpHeaders();
|
|
3304
3304
|
this.configuration = new Configuration();
|
|
3305
3305
|
if (basePath) {
|
|
@@ -3531,7 +3531,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
3531
3531
|
class CreativeControllerService {
|
|
3532
3532
|
constructor(httpClient, basePath, configuration) {
|
|
3533
3533
|
this.httpClient = httpClient;
|
|
3534
|
-
this.basePath = 'https://
|
|
3534
|
+
this.basePath = 'https://apiv2stage3.atomex.net';
|
|
3535
3535
|
this.defaultHeaders = new HttpHeaders();
|
|
3536
3536
|
this.configuration = new Configuration();
|
|
3537
3537
|
if (basePath) {
|
|
@@ -4046,7 +4046,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
4046
4046
|
class CreativeSetsControllerService {
|
|
4047
4047
|
constructor(httpClient, basePath, configuration) {
|
|
4048
4048
|
this.httpClient = httpClient;
|
|
4049
|
-
this.basePath = 'https://
|
|
4049
|
+
this.basePath = 'https://apiv2stage3.atomex.net';
|
|
4050
4050
|
this.defaultHeaders = new HttpHeaders();
|
|
4051
4051
|
this.configuration = new Configuration();
|
|
4052
4052
|
if (basePath) {
|
|
@@ -4654,7 +4654,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
4654
4654
|
class CreativeTemplateThemesControllerService {
|
|
4655
4655
|
constructor(httpClient, basePath, configuration) {
|
|
4656
4656
|
this.httpClient = httpClient;
|
|
4657
|
-
this.basePath = 'https://
|
|
4657
|
+
this.basePath = 'https://apiv2stage3.atomex.net';
|
|
4658
4658
|
this.defaultHeaders = new HttpHeaders();
|
|
4659
4659
|
this.configuration = new Configuration();
|
|
4660
4660
|
if (basePath) {
|
|
@@ -4839,7 +4839,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
4839
4839
|
class CreativeTemplateVariablesControllerService {
|
|
4840
4840
|
constructor(httpClient, basePath, configuration) {
|
|
4841
4841
|
this.httpClient = httpClient;
|
|
4842
|
-
this.basePath = 'https://
|
|
4842
|
+
this.basePath = 'https://apiv2stage3.atomex.net';
|
|
4843
4843
|
this.defaultHeaders = new HttpHeaders();
|
|
4844
4844
|
this.configuration = new Configuration();
|
|
4845
4845
|
if (basePath) {
|
|
@@ -4917,7 +4917,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
4917
4917
|
class CreativeTemplatesControllerService {
|
|
4918
4918
|
constructor(httpClient, basePath, configuration) {
|
|
4919
4919
|
this.httpClient = httpClient;
|
|
4920
|
-
this.basePath = 'https://
|
|
4920
|
+
this.basePath = 'https://apiv2stage3.atomex.net';
|
|
4921
4921
|
this.defaultHeaders = new HttpHeaders();
|
|
4922
4922
|
this.configuration = new Configuration();
|
|
4923
4923
|
if (basePath) {
|
|
@@ -5082,7 +5082,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
5082
5082
|
class CustomerReportingControllerService {
|
|
5083
5083
|
constructor(httpClient, basePath, configuration) {
|
|
5084
5084
|
this.httpClient = httpClient;
|
|
5085
|
-
this.basePath = 'https://
|
|
5085
|
+
this.basePath = 'https://apiv2stage3.atomex.net';
|
|
5086
5086
|
this.defaultHeaders = new HttpHeaders();
|
|
5087
5087
|
this.configuration = new Configuration();
|
|
5088
5088
|
if (basePath) {
|
|
@@ -5169,7 +5169,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
5169
5169
|
class DashboardControllerService {
|
|
5170
5170
|
constructor(httpClient, basePath, configuration) {
|
|
5171
5171
|
this.httpClient = httpClient;
|
|
5172
|
-
this.basePath = 'https://
|
|
5172
|
+
this.basePath = 'https://apiv2stage3.atomex.net';
|
|
5173
5173
|
this.defaultHeaders = new HttpHeaders();
|
|
5174
5174
|
this.configuration = new Configuration();
|
|
5175
5175
|
if (basePath) {
|
|
@@ -5827,7 +5827,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
5827
5827
|
class ExperimentsControllerService {
|
|
5828
5828
|
constructor(httpClient, basePath, configuration) {
|
|
5829
5829
|
this.httpClient = httpClient;
|
|
5830
|
-
this.basePath = 'https://
|
|
5830
|
+
this.basePath = 'https://apiv2stage3.atomex.net';
|
|
5831
5831
|
this.defaultHeaders = new HttpHeaders();
|
|
5832
5832
|
this.configuration = new Configuration();
|
|
5833
5833
|
if (basePath) {
|
|
@@ -5851,6 +5851,41 @@ class ExperimentsControllerService {
|
|
|
5851
5851
|
}
|
|
5852
5852
|
return false;
|
|
5853
5853
|
}
|
|
5854
|
+
activateABTestUsingPOST(expId, reqId, token, observe = 'body', reportProgress = false) {
|
|
5855
|
+
if (expId === null || expId === undefined) {
|
|
5856
|
+
throw new Error('Required parameter expId was null or undefined when calling activateABTestUsingPOST.');
|
|
5857
|
+
}
|
|
5858
|
+
let queryParameters = new HttpParams({ encoder: new CustomHttpUrlEncodingCodec() });
|
|
5859
|
+
if (expId !== undefined && expId !== null) {
|
|
5860
|
+
queryParameters = queryParameters.set('expId', expId);
|
|
5861
|
+
}
|
|
5862
|
+
let headers = this.defaultHeaders;
|
|
5863
|
+
if (reqId !== undefined && reqId !== null) {
|
|
5864
|
+
headers = headers.set('reqId', String(reqId));
|
|
5865
|
+
}
|
|
5866
|
+
if (token !== undefined && token !== null) {
|
|
5867
|
+
headers = headers.set('token', String(token));
|
|
5868
|
+
}
|
|
5869
|
+
// to determine the Accept header
|
|
5870
|
+
let httpHeaderAccepts = [
|
|
5871
|
+
'application/json'
|
|
5872
|
+
];
|
|
5873
|
+
const httpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
|
|
5874
|
+
if (httpHeaderAcceptSelected != undefined) {
|
|
5875
|
+
headers = headers.set('Accept', httpHeaderAcceptSelected);
|
|
5876
|
+
}
|
|
5877
|
+
// to determine the Content-Type header
|
|
5878
|
+
const consumes = [
|
|
5879
|
+
'application/json'
|
|
5880
|
+
];
|
|
5881
|
+
return this.httpClient.post(`${this.basePath}/v2/api/experiments/abtest/activate`, null, {
|
|
5882
|
+
params: queryParameters,
|
|
5883
|
+
withCredentials: this.configuration.withCredentials,
|
|
5884
|
+
headers: headers,
|
|
5885
|
+
observe: observe,
|
|
5886
|
+
reportProgress: reportProgress
|
|
5887
|
+
});
|
|
5888
|
+
}
|
|
5854
5889
|
activateExperimentUsingPOST(experimentIds, reqId, token, observe = 'body', reportProgress = false) {
|
|
5855
5890
|
if (experimentIds === null || experimentIds === undefined) {
|
|
5856
5891
|
throw new Error('Required parameter experimentIds was null or undefined when calling activateExperimentUsingPOST.');
|
|
@@ -5886,6 +5921,41 @@ class ExperimentsControllerService {
|
|
|
5886
5921
|
reportProgress: reportProgress
|
|
5887
5922
|
});
|
|
5888
5923
|
}
|
|
5924
|
+
archiveABTestUsingPOST(expId, reqId, token, observe = 'body', reportProgress = false) {
|
|
5925
|
+
if (expId === null || expId === undefined) {
|
|
5926
|
+
throw new Error('Required parameter expId was null or undefined when calling archiveABTestUsingPOST.');
|
|
5927
|
+
}
|
|
5928
|
+
let queryParameters = new HttpParams({ encoder: new CustomHttpUrlEncodingCodec() });
|
|
5929
|
+
if (expId !== undefined && expId !== null) {
|
|
5930
|
+
queryParameters = queryParameters.set('expId', expId);
|
|
5931
|
+
}
|
|
5932
|
+
let headers = this.defaultHeaders;
|
|
5933
|
+
if (reqId !== undefined && reqId !== null) {
|
|
5934
|
+
headers = headers.set('reqId', String(reqId));
|
|
5935
|
+
}
|
|
5936
|
+
if (token !== undefined && token !== null) {
|
|
5937
|
+
headers = headers.set('token', String(token));
|
|
5938
|
+
}
|
|
5939
|
+
// to determine the Accept header
|
|
5940
|
+
let httpHeaderAccepts = [
|
|
5941
|
+
'application/json'
|
|
5942
|
+
];
|
|
5943
|
+
const httpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
|
|
5944
|
+
if (httpHeaderAcceptSelected != undefined) {
|
|
5945
|
+
headers = headers.set('Accept', httpHeaderAcceptSelected);
|
|
5946
|
+
}
|
|
5947
|
+
// to determine the Content-Type header
|
|
5948
|
+
const consumes = [
|
|
5949
|
+
'application/json'
|
|
5950
|
+
];
|
|
5951
|
+
return this.httpClient.post(`${this.basePath}/v2/api/experiments/abtest/archive`, null, {
|
|
5952
|
+
params: queryParameters,
|
|
5953
|
+
withCredentials: this.configuration.withCredentials,
|
|
5954
|
+
headers: headers,
|
|
5955
|
+
observe: observe,
|
|
5956
|
+
reportProgress: reportProgress
|
|
5957
|
+
});
|
|
5958
|
+
}
|
|
5889
5959
|
archiveExperimentUsingPOST(experimentIds, reqId, token, observe = 'body', reportProgress = false) {
|
|
5890
5960
|
if (experimentIds === null || experimentIds === undefined) {
|
|
5891
5961
|
throw new Error('Required parameter experimentIds was null or undefined when calling archiveExperimentUsingPOST.');
|
|
@@ -5921,6 +5991,40 @@ class ExperimentsControllerService {
|
|
|
5921
5991
|
reportProgress: reportProgress
|
|
5922
5992
|
});
|
|
5923
5993
|
}
|
|
5994
|
+
createABTestUsingPOST(dto, reqId, token, observe = 'body', reportProgress = false) {
|
|
5995
|
+
if (dto === null || dto === undefined) {
|
|
5996
|
+
throw new Error('Required parameter dto was null or undefined when calling createABTestUsingPOST.');
|
|
5997
|
+
}
|
|
5998
|
+
let headers = this.defaultHeaders;
|
|
5999
|
+
if (reqId !== undefined && reqId !== null) {
|
|
6000
|
+
headers = headers.set('reqId', String(reqId));
|
|
6001
|
+
}
|
|
6002
|
+
if (token !== undefined && token !== null) {
|
|
6003
|
+
headers = headers.set('token', String(token));
|
|
6004
|
+
}
|
|
6005
|
+
// to determine the Accept header
|
|
6006
|
+
let httpHeaderAccepts = [
|
|
6007
|
+
'application/json'
|
|
6008
|
+
];
|
|
6009
|
+
const httpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
|
|
6010
|
+
if (httpHeaderAcceptSelected != undefined) {
|
|
6011
|
+
headers = headers.set('Accept', httpHeaderAcceptSelected);
|
|
6012
|
+
}
|
|
6013
|
+
// to determine the Content-Type header
|
|
6014
|
+
const consumes = [
|
|
6015
|
+
'application/json'
|
|
6016
|
+
];
|
|
6017
|
+
const httpContentTypeSelected = this.configuration.selectHeaderContentType(consumes);
|
|
6018
|
+
if (httpContentTypeSelected != undefined) {
|
|
6019
|
+
headers = headers.set('Content-Type', httpContentTypeSelected);
|
|
6020
|
+
}
|
|
6021
|
+
return this.httpClient.post(`${this.basePath}/v2/api/experiments/abtest/create`, dto, {
|
|
6022
|
+
withCredentials: this.configuration.withCredentials,
|
|
6023
|
+
headers: headers,
|
|
6024
|
+
observe: observe,
|
|
6025
|
+
reportProgress: reportProgress
|
|
6026
|
+
});
|
|
6027
|
+
}
|
|
5924
6028
|
createIncrementalityTestUsingPOST(incrementalityTestRequest, reqId, token, observe = 'body', reportProgress = false) {
|
|
5925
6029
|
if (incrementalityTestRequest === null || incrementalityTestRequest === undefined) {
|
|
5926
6030
|
throw new Error('Required parameter incrementalityTestRequest was null or undefined when calling createIncrementalityTestUsingPOST.');
|
|
@@ -5955,6 +6059,41 @@ class ExperimentsControllerService {
|
|
|
5955
6059
|
reportProgress: reportProgress
|
|
5956
6060
|
});
|
|
5957
6061
|
}
|
|
6062
|
+
deactivateABTestUsingPOST(expId, reqId, token, observe = 'body', reportProgress = false) {
|
|
6063
|
+
if (expId === null || expId === undefined) {
|
|
6064
|
+
throw new Error('Required parameter expId was null or undefined when calling deactivateABTestUsingPOST.');
|
|
6065
|
+
}
|
|
6066
|
+
let queryParameters = new HttpParams({ encoder: new CustomHttpUrlEncodingCodec() });
|
|
6067
|
+
if (expId !== undefined && expId !== null) {
|
|
6068
|
+
queryParameters = queryParameters.set('expId', expId);
|
|
6069
|
+
}
|
|
6070
|
+
let headers = this.defaultHeaders;
|
|
6071
|
+
if (reqId !== undefined && reqId !== null) {
|
|
6072
|
+
headers = headers.set('reqId', String(reqId));
|
|
6073
|
+
}
|
|
6074
|
+
if (token !== undefined && token !== null) {
|
|
6075
|
+
headers = headers.set('token', String(token));
|
|
6076
|
+
}
|
|
6077
|
+
// to determine the Accept header
|
|
6078
|
+
let httpHeaderAccepts = [
|
|
6079
|
+
'application/json'
|
|
6080
|
+
];
|
|
6081
|
+
const httpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
|
|
6082
|
+
if (httpHeaderAcceptSelected != undefined) {
|
|
6083
|
+
headers = headers.set('Accept', httpHeaderAcceptSelected);
|
|
6084
|
+
}
|
|
6085
|
+
// to determine the Content-Type header
|
|
6086
|
+
const consumes = [
|
|
6087
|
+
'application/json'
|
|
6088
|
+
];
|
|
6089
|
+
return this.httpClient.post(`${this.basePath}/v2/api/experiments/abtest/deactivate`, null, {
|
|
6090
|
+
params: queryParameters,
|
|
6091
|
+
withCredentials: this.configuration.withCredentials,
|
|
6092
|
+
headers: headers,
|
|
6093
|
+
observe: observe,
|
|
6094
|
+
reportProgress: reportProgress
|
|
6095
|
+
});
|
|
6096
|
+
}
|
|
5958
6097
|
deactivateExperimentUsingPOST(experimentIds, reqId, token, observe = 'body', reportProgress = false) {
|
|
5959
6098
|
if (experimentIds === null || experimentIds === undefined) {
|
|
5960
6099
|
throw new Error('Required parameter experimentIds was null or undefined when calling deactivateExperimentUsingPOST.');
|
|
@@ -5990,6 +6129,90 @@ class ExperimentsControllerService {
|
|
|
5990
6129
|
reportProgress: reportProgress
|
|
5991
6130
|
});
|
|
5992
6131
|
}
|
|
6132
|
+
getABTestByIdUsingGET(experimentId, reqId, token, observe = 'body', reportProgress = false) {
|
|
6133
|
+
if (experimentId === null || experimentId === undefined) {
|
|
6134
|
+
throw new Error('Required parameter experimentId was null or undefined when calling getABTestByIdUsingGET.');
|
|
6135
|
+
}
|
|
6136
|
+
let headers = this.defaultHeaders;
|
|
6137
|
+
if (reqId !== undefined && reqId !== null) {
|
|
6138
|
+
headers = headers.set('reqId', String(reqId));
|
|
6139
|
+
}
|
|
6140
|
+
if (token !== undefined && token !== null) {
|
|
6141
|
+
headers = headers.set('token', String(token));
|
|
6142
|
+
}
|
|
6143
|
+
// to determine the Accept header
|
|
6144
|
+
let httpHeaderAccepts = [
|
|
6145
|
+
'application/json'
|
|
6146
|
+
];
|
|
6147
|
+
const httpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
|
|
6148
|
+
if (httpHeaderAcceptSelected != undefined) {
|
|
6149
|
+
headers = headers.set('Accept', httpHeaderAcceptSelected);
|
|
6150
|
+
}
|
|
6151
|
+
// to determine the Content-Type header
|
|
6152
|
+
const consumes = [];
|
|
6153
|
+
return this.httpClient.get(`${this.basePath}/v2/api/experiments/abtest/get/${encodeURIComponent(String(experimentId))}`, {
|
|
6154
|
+
withCredentials: this.configuration.withCredentials,
|
|
6155
|
+
headers: headers,
|
|
6156
|
+
observe: observe,
|
|
6157
|
+
reportProgress: reportProgress
|
|
6158
|
+
});
|
|
6159
|
+
}
|
|
6160
|
+
getAllABTestsUsingGET(licenseeId, reqId, token, observe = 'body', reportProgress = false) {
|
|
6161
|
+
if (licenseeId === null || licenseeId === undefined) {
|
|
6162
|
+
throw new Error('Required parameter licenseeId was null or undefined when calling getAllABTestsUsingGET.');
|
|
6163
|
+
}
|
|
6164
|
+
let headers = this.defaultHeaders;
|
|
6165
|
+
if (reqId !== undefined && reqId !== null) {
|
|
6166
|
+
headers = headers.set('reqId', String(reqId));
|
|
6167
|
+
}
|
|
6168
|
+
if (token !== undefined && token !== null) {
|
|
6169
|
+
headers = headers.set('token', String(token));
|
|
6170
|
+
}
|
|
6171
|
+
// to determine the Accept header
|
|
6172
|
+
let httpHeaderAccepts = [
|
|
6173
|
+
'application/json'
|
|
6174
|
+
];
|
|
6175
|
+
const httpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
|
|
6176
|
+
if (httpHeaderAcceptSelected != undefined) {
|
|
6177
|
+
headers = headers.set('Accept', httpHeaderAcceptSelected);
|
|
6178
|
+
}
|
|
6179
|
+
// to determine the Content-Type header
|
|
6180
|
+
const consumes = [];
|
|
6181
|
+
return this.httpClient.get(`${this.basePath}/v2/api/experiments/abtest/all/get/${encodeURIComponent(String(licenseeId))}`, {
|
|
6182
|
+
withCredentials: this.configuration.withCredentials,
|
|
6183
|
+
headers: headers,
|
|
6184
|
+
observe: observe,
|
|
6185
|
+
reportProgress: reportProgress
|
|
6186
|
+
});
|
|
6187
|
+
}
|
|
6188
|
+
getAllExperimentsUsingGET(licenseeId, reqId, token, observe = 'body', reportProgress = false) {
|
|
6189
|
+
if (licenseeId === null || licenseeId === undefined) {
|
|
6190
|
+
throw new Error('Required parameter licenseeId was null or undefined when calling getAllExperimentsUsingGET.');
|
|
6191
|
+
}
|
|
6192
|
+
let headers = this.defaultHeaders;
|
|
6193
|
+
if (reqId !== undefined && reqId !== null) {
|
|
6194
|
+
headers = headers.set('reqId', String(reqId));
|
|
6195
|
+
}
|
|
6196
|
+
if (token !== undefined && token !== null) {
|
|
6197
|
+
headers = headers.set('token', String(token));
|
|
6198
|
+
}
|
|
6199
|
+
// to determine the Accept header
|
|
6200
|
+
let httpHeaderAccepts = [
|
|
6201
|
+
'application/json'
|
|
6202
|
+
];
|
|
6203
|
+
const httpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
|
|
6204
|
+
if (httpHeaderAcceptSelected != undefined) {
|
|
6205
|
+
headers = headers.set('Accept', httpHeaderAcceptSelected);
|
|
6206
|
+
}
|
|
6207
|
+
// to determine the Content-Type header
|
|
6208
|
+
const consumes = [];
|
|
6209
|
+
return this.httpClient.get(`${this.basePath}/v2/api/experiments/all/get/${encodeURIComponent(String(licenseeId))}`, {
|
|
6210
|
+
withCredentials: this.configuration.withCredentials,
|
|
6211
|
+
headers: headers,
|
|
6212
|
+
observe: observe,
|
|
6213
|
+
reportProgress: reportProgress
|
|
6214
|
+
});
|
|
6215
|
+
}
|
|
5993
6216
|
getAllReportsForIncrementalityTestUsingGET(licenseeId, refresh, reqId, token, observe = 'body', reportProgress = false) {
|
|
5994
6217
|
if (licenseeId === null || licenseeId === undefined) {
|
|
5995
6218
|
throw new Error('Required parameter licenseeId was null or undefined when calling getAllReportsForIncrementalityTestUsingGET.');
|
|
@@ -6187,6 +6410,43 @@ class ExperimentsControllerService {
|
|
|
6187
6410
|
reportProgress: reportProgress
|
|
6188
6411
|
});
|
|
6189
6412
|
}
|
|
6413
|
+
updateABTestUsingPOST(dto, experimentId, reqId, token, observe = 'body', reportProgress = false) {
|
|
6414
|
+
if (dto === null || dto === undefined) {
|
|
6415
|
+
throw new Error('Required parameter dto was null or undefined when calling updateABTestUsingPOST.');
|
|
6416
|
+
}
|
|
6417
|
+
if (experimentId === null || experimentId === undefined) {
|
|
6418
|
+
throw new Error('Required parameter experimentId was null or undefined when calling updateABTestUsingPOST.');
|
|
6419
|
+
}
|
|
6420
|
+
let headers = this.defaultHeaders;
|
|
6421
|
+
if (reqId !== undefined && reqId !== null) {
|
|
6422
|
+
headers = headers.set('reqId', String(reqId));
|
|
6423
|
+
}
|
|
6424
|
+
if (token !== undefined && token !== null) {
|
|
6425
|
+
headers = headers.set('token', String(token));
|
|
6426
|
+
}
|
|
6427
|
+
// to determine the Accept header
|
|
6428
|
+
let httpHeaderAccepts = [
|
|
6429
|
+
'application/json'
|
|
6430
|
+
];
|
|
6431
|
+
const httpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
|
|
6432
|
+
if (httpHeaderAcceptSelected != undefined) {
|
|
6433
|
+
headers = headers.set('Accept', httpHeaderAcceptSelected);
|
|
6434
|
+
}
|
|
6435
|
+
// to determine the Content-Type header
|
|
6436
|
+
const consumes = [
|
|
6437
|
+
'application/json'
|
|
6438
|
+
];
|
|
6439
|
+
const httpContentTypeSelected = this.configuration.selectHeaderContentType(consumes);
|
|
6440
|
+
if (httpContentTypeSelected != undefined) {
|
|
6441
|
+
headers = headers.set('Content-Type', httpContentTypeSelected);
|
|
6442
|
+
}
|
|
6443
|
+
return this.httpClient.post(`${this.basePath}/v2/api/experiments/abtest/update`, dto, {
|
|
6444
|
+
withCredentials: this.configuration.withCredentials,
|
|
6445
|
+
headers: headers,
|
|
6446
|
+
observe: observe,
|
|
6447
|
+
reportProgress: reportProgress
|
|
6448
|
+
});
|
|
6449
|
+
}
|
|
6190
6450
|
updateIncrementalityTestUsingPOST(experimentId, incrementalityTestDTO, reqId, token, observe = 'body', reportProgress = false) {
|
|
6191
6451
|
if (experimentId === null || experimentId === undefined) {
|
|
6192
6452
|
throw new Error('Required parameter experimentId was null or undefined when calling updateIncrementalityTestUsingPOST.');
|
|
@@ -6253,7 +6513,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
6253
6513
|
class NotificationsControllerService {
|
|
6254
6514
|
constructor(httpClient, basePath, configuration) {
|
|
6255
6515
|
this.httpClient = httpClient;
|
|
6256
|
-
this.basePath = 'https://
|
|
6516
|
+
this.basePath = 'https://apiv2stage3.atomex.net';
|
|
6257
6517
|
this.defaultHeaders = new HttpHeaders();
|
|
6258
6518
|
this.configuration = new Configuration();
|
|
6259
6519
|
if (basePath) {
|
|
@@ -6466,7 +6726,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
6466
6726
|
class PixelControllerService {
|
|
6467
6727
|
constructor(httpClient, basePath, configuration) {
|
|
6468
6728
|
this.httpClient = httpClient;
|
|
6469
|
-
this.basePath = 'https://
|
|
6729
|
+
this.basePath = 'https://apiv2stage3.atomex.net';
|
|
6470
6730
|
this.defaultHeaders = new HttpHeaders();
|
|
6471
6731
|
this.configuration = new Configuration();
|
|
6472
6732
|
if (basePath) {
|
|
@@ -6773,7 +7033,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
6773
7033
|
class ReportControllerService {
|
|
6774
7034
|
constructor(httpClient, basePath, configuration) {
|
|
6775
7035
|
this.httpClient = httpClient;
|
|
6776
|
-
this.basePath = 'https://
|
|
7036
|
+
this.basePath = 'https://apiv2stage3.atomex.net';
|
|
6777
7037
|
this.defaultHeaders = new HttpHeaders();
|
|
6778
7038
|
this.configuration = new Configuration();
|
|
6779
7039
|
if (basePath) {
|
|
@@ -6910,7 +7170,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
6910
7170
|
class ReportingControllerService {
|
|
6911
7171
|
constructor(httpClient, basePath, configuration) {
|
|
6912
7172
|
this.httpClient = httpClient;
|
|
6913
|
-
this.basePath = 'https://
|
|
7173
|
+
this.basePath = 'https://apiv2stage3.atomex.net';
|
|
6914
7174
|
this.defaultHeaders = new HttpHeaders();
|
|
6915
7175
|
this.configuration = new Configuration();
|
|
6916
7176
|
if (basePath) {
|
|
@@ -7080,7 +7340,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
7080
7340
|
class ReportingSchedulerControllerService {
|
|
7081
7341
|
constructor(httpClient, basePath, configuration) {
|
|
7082
7342
|
this.httpClient = httpClient;
|
|
7083
|
-
this.basePath = 'https://
|
|
7343
|
+
this.basePath = 'https://apiv2stage3.atomex.net';
|
|
7084
7344
|
this.defaultHeaders = new HttpHeaders();
|
|
7085
7345
|
this.configuration = new Configuration();
|
|
7086
7346
|
if (basePath) {
|
|
@@ -7395,7 +7655,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
7395
7655
|
class SliceXControllerService {
|
|
7396
7656
|
constructor(httpClient, basePath, configuration) {
|
|
7397
7657
|
this.httpClient = httpClient;
|
|
7398
|
-
this.basePath = 'https://
|
|
7658
|
+
this.basePath = 'https://apiv2stage3.atomex.net';
|
|
7399
7659
|
this.defaultHeaders = new HttpHeaders();
|
|
7400
7660
|
this.configuration = new Configuration();
|
|
7401
7661
|
if (basePath) {
|
|
@@ -7645,7 +7905,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
7645
7905
|
class StrategyControllerService {
|
|
7646
7906
|
constructor(httpClient, basePath, configuration) {
|
|
7647
7907
|
this.httpClient = httpClient;
|
|
7648
|
-
this.basePath = 'https://
|
|
7908
|
+
this.basePath = 'https://apiv2stage3.atomex.net';
|
|
7649
7909
|
this.defaultHeaders = new HttpHeaders();
|
|
7650
7910
|
this.configuration = new Configuration();
|
|
7651
7911
|
if (basePath) {
|
|
@@ -8813,7 +9073,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
8813
9073
|
class StrategyTemplateControllerService {
|
|
8814
9074
|
constructor(httpClient, basePath, configuration) {
|
|
8815
9075
|
this.httpClient = httpClient;
|
|
8816
|
-
this.basePath = 'https://
|
|
9076
|
+
this.basePath = 'https://apiv2stage3.atomex.net';
|
|
8817
9077
|
this.defaultHeaders = new HttpHeaders();
|
|
8818
9078
|
this.configuration = new Configuration();
|
|
8819
9079
|
if (basePath) {
|
|
@@ -8935,7 +9195,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
8935
9195
|
class UILoggerControllerService {
|
|
8936
9196
|
constructor(httpClient, basePath, configuration) {
|
|
8937
9197
|
this.httpClient = httpClient;
|
|
8938
|
-
this.basePath = 'https://
|
|
9198
|
+
this.basePath = 'https://apiv2stage3.atomex.net';
|
|
8939
9199
|
this.defaultHeaders = new HttpHeaders();
|
|
8940
9200
|
this.configuration = new Configuration();
|
|
8941
9201
|
if (basePath) {
|
|
@@ -9027,7 +9287,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
9027
9287
|
class UserPreferenceControllerService {
|
|
9028
9288
|
constructor(httpClient, basePath, configuration) {
|
|
9029
9289
|
this.httpClient = httpClient;
|
|
9030
|
-
this.basePath = 'https://
|
|
9290
|
+
this.basePath = 'https://apiv2stage3.atomex.net';
|
|
9031
9291
|
this.defaultHeaders = new HttpHeaders();
|
|
9032
9292
|
this.configuration = new Configuration();
|
|
9033
9293
|
if (basePath) {
|
|
@@ -9188,6 +9448,62 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
9188
9448
|
|
|
9189
9449
|
const APIS = [AdminControllerService, AdvertiserControllerService, AppSettingsControllerService, AudienceControllerService, AuditControllerService, BidFunnelControllerService, BulkStrategyControllerService, CSSThemeController_Service, CampaignControllerService, CatalogControllerService, ClickDestinationControllerService, CreativeControllerService, CreativeSetsControllerService, CreativeTemplateThemesControllerService, CreativeTemplateVariablesControllerService, CreativeTemplatesControllerService, CustomerReportingControllerService, DashboardControllerService, ExperimentsControllerService, NotificationsControllerService, PixelControllerService, ReportControllerService, ReportingControllerService, ReportingSchedulerControllerService, SliceXControllerService, StrategyControllerService, StrategyTemplateControllerService, UILoggerControllerService, UserPreferenceControllerService];
|
|
9190
9450
|
|
|
9451
|
+
var ABTestingDTO;
|
|
9452
|
+
(function (ABTestingDTO) {
|
|
9453
|
+
ABTestingDTO.ExperimentTypeEnum = {
|
|
9454
|
+
INCREMENTALITYTEST: 'INCREMENTALITY_TEST',
|
|
9455
|
+
ABTEST: 'AB_TEST'
|
|
9456
|
+
};
|
|
9457
|
+
ABTestingDTO.StatusEnum = {
|
|
9458
|
+
LIVE: 'LIVE',
|
|
9459
|
+
SCHEDULED: 'SCHEDULED',
|
|
9460
|
+
GENERATINGREPORT: 'GENERATING_REPORT',
|
|
9461
|
+
STOPPED: 'STOPPED',
|
|
9462
|
+
COMPLETED: 'COMPLETED'
|
|
9463
|
+
};
|
|
9464
|
+
})(ABTestingDTO || (ABTestingDTO = {}));
|
|
9465
|
+
|
|
9466
|
+
var ABTestingResponseDetails;
|
|
9467
|
+
(function (ABTestingResponseDetails) {
|
|
9468
|
+
ABTestingResponseDetails.ExperimentTypeEnum = {
|
|
9469
|
+
INCREMENTALITYTEST: 'INCREMENTALITY_TEST',
|
|
9470
|
+
ABTEST: 'AB_TEST'
|
|
9471
|
+
};
|
|
9472
|
+
ABTestingResponseDetails.StatusEnum = {
|
|
9473
|
+
LIVE: 'LIVE',
|
|
9474
|
+
SCHEDULED: 'SCHEDULED',
|
|
9475
|
+
GENERATINGREPORT: 'GENERATING_REPORT',
|
|
9476
|
+
STOPPED: 'STOPPED',
|
|
9477
|
+
COMPLETED: 'COMPLETED'
|
|
9478
|
+
};
|
|
9479
|
+
})(ABTestingResponseDetails || (ABTestingResponseDetails = {}));
|
|
9480
|
+
|
|
9481
|
+
var ABTestingVariantDTO;
|
|
9482
|
+
(function (ABTestingVariantDTO) {
|
|
9483
|
+
ABTestingVariantDTO.PricingModelEnum = {
|
|
9484
|
+
CPM: 'CPM',
|
|
9485
|
+
CPC: 'CPC',
|
|
9486
|
+
CPA: 'CPA',
|
|
9487
|
+
CTR: 'CTR',
|
|
9488
|
+
DCPMC: 'DCPMC',
|
|
9489
|
+
DCPMA: 'DCPMA',
|
|
9490
|
+
CPI: 'CPI',
|
|
9491
|
+
BOOST: 'BOOST',
|
|
9492
|
+
RCPC: 'RCPC',
|
|
9493
|
+
CPABOOST: 'CPA_BOOST'
|
|
9494
|
+
};
|
|
9495
|
+
ABTestingVariantDTO.VariantTypeEnum = {
|
|
9496
|
+
MODEL: 'MODEL',
|
|
9497
|
+
STRATEGY: 'STRATEGY',
|
|
9498
|
+
CREATIVE: 'CREATIVE',
|
|
9499
|
+
PACINGTYPE: 'PACING_TYPE',
|
|
9500
|
+
CATEGORY: 'CATEGORY',
|
|
9501
|
+
CREATIVESET: 'CREATIVE_SET',
|
|
9502
|
+
PRICING: 'PRICING',
|
|
9503
|
+
VIDEOPLACEMENT: 'VIDEO_PLACEMENT'
|
|
9504
|
+
};
|
|
9505
|
+
})(ABTestingVariantDTO || (ABTestingVariantDTO = {}));
|
|
9506
|
+
|
|
9191
9507
|
/**
|
|
9192
9508
|
* Api Documentation
|
|
9193
9509
|
* Api Documentation
|
|
@@ -10486,6 +10802,21 @@ var DynamicVideoConfigDTO;
|
|
|
10486
10802
|
* Do not edit the class manually.
|
|
10487
10803
|
*/
|
|
10488
10804
|
|
|
10805
|
+
var ExperimentsEntity;
|
|
10806
|
+
(function (ExperimentsEntity) {
|
|
10807
|
+
ExperimentsEntity.ExperimentTypeEnum = {
|
|
10808
|
+
INCREMENTALITYTEST: 'INCREMENTALITY_TEST',
|
|
10809
|
+
ABTEST: 'AB_TEST'
|
|
10810
|
+
};
|
|
10811
|
+
ExperimentsEntity.StatusEnum = {
|
|
10812
|
+
LIVE: 'LIVE',
|
|
10813
|
+
SCHEDULED: 'SCHEDULED',
|
|
10814
|
+
GENERATINGREPORT: 'GENERATING_REPORT',
|
|
10815
|
+
STOPPED: 'STOPPED',
|
|
10816
|
+
COMPLETED: 'COMPLETED'
|
|
10817
|
+
};
|
|
10818
|
+
})(ExperimentsEntity || (ExperimentsEntity = {}));
|
|
10819
|
+
|
|
10489
10820
|
/**
|
|
10490
10821
|
* Api Documentation
|
|
10491
10822
|
* Api Documentation
|
|
@@ -10666,6 +10997,7 @@ var IncrementalityTestDetails;
|
|
|
10666
10997
|
LIVE: 'LIVE',
|
|
10667
10998
|
SCHEDULED: 'SCHEDULED',
|
|
10668
10999
|
GENERATINGREPORT: 'GENERATING_REPORT',
|
|
11000
|
+
STOPPED: 'STOPPED',
|
|
10669
11001
|
COMPLETED: 'COMPLETED'
|
|
10670
11002
|
};
|
|
10671
11003
|
IncrementalityTestDetails.TestTypeEnum = {
|
|
@@ -11633,6 +11965,18 @@ var TemplateVariablesDTO;
|
|
|
11633
11965
|
* Do not edit the class manually.
|
|
11634
11966
|
*/
|
|
11635
11967
|
|
|
11968
|
+
/**
|
|
11969
|
+
* Api Documentation
|
|
11970
|
+
* Api Documentation
|
|
11971
|
+
*
|
|
11972
|
+
* OpenAPI spec version: 1.0
|
|
11973
|
+
*
|
|
11974
|
+
*
|
|
11975
|
+
* NOTE: This class is auto generated by the swagger code generator program.
|
|
11976
|
+
* https://github.com/swagger-api/swagger-codegen.git
|
|
11977
|
+
* Do not edit the class manually.
|
|
11978
|
+
*/
|
|
11979
|
+
|
|
11636
11980
|
var VastCreative;
|
|
11637
11981
|
(function (VastCreative) {
|
|
11638
11982
|
VastCreative.VideoFormatEnum = {
|
|
@@ -11902,5 +12246,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
11902
12246
|
* Generated bundle index. Do not edit.
|
|
11903
12247
|
*/
|
|
11904
12248
|
|
|
11905
|
-
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 };
|
|
12249
|
+
export { ABTestingDTO, ABTestingResponseDetails, ABTestingVariantDTO, 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, ExperimentsEntity, 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 };
|
|
11906
12250
|
//# sourceMappingURL=revxui-api-clients-ts.mjs.map
|