@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) {
|
|
@@ -281,7 +281,7 @@ class CustomHttpUrlEncodingCodec extends HttpUrlEncodingCodec {
|
|
|
281
281
|
class AdvertiserControllerService {
|
|
282
282
|
constructor(httpClient, basePath, configuration) {
|
|
283
283
|
this.httpClient = httpClient;
|
|
284
|
-
this.basePath = 'https://
|
|
284
|
+
this.basePath = 'https://apiv2stage3.atomex.net';
|
|
285
285
|
this.defaultHeaders = new HttpHeaders();
|
|
286
286
|
this.configuration = new Configuration();
|
|
287
287
|
if (basePath) {
|
|
@@ -833,7 +833,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
833
833
|
class AppSettingsControllerService {
|
|
834
834
|
constructor(httpClient, basePath, configuration) {
|
|
835
835
|
this.httpClient = httpClient;
|
|
836
|
-
this.basePath = 'https://
|
|
836
|
+
this.basePath = 'https://apiv2stage3.atomex.net';
|
|
837
837
|
this.defaultHeaders = new HttpHeaders();
|
|
838
838
|
this.configuration = new Configuration();
|
|
839
839
|
if (basePath) {
|
|
@@ -1080,7 +1080,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
1080
1080
|
class AudienceControllerService {
|
|
1081
1081
|
constructor(httpClient, basePath, configuration) {
|
|
1082
1082
|
this.httpClient = httpClient;
|
|
1083
|
-
this.basePath = 'https://
|
|
1083
|
+
this.basePath = 'https://apiv2stage3.atomex.net';
|
|
1084
1084
|
this.defaultHeaders = new HttpHeaders();
|
|
1085
1085
|
this.configuration = new Configuration();
|
|
1086
1086
|
if (basePath) {
|
|
@@ -1958,7 +1958,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
1958
1958
|
class AuditControllerService {
|
|
1959
1959
|
constructor(httpClient, basePath, configuration) {
|
|
1960
1960
|
this.httpClient = httpClient;
|
|
1961
|
-
this.basePath = 'https://
|
|
1961
|
+
this.basePath = 'https://apiv2stage3.atomex.net';
|
|
1962
1962
|
this.defaultHeaders = new HttpHeaders();
|
|
1963
1963
|
this.configuration = new Configuration();
|
|
1964
1964
|
if (basePath) {
|
|
@@ -2145,7 +2145,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
2145
2145
|
class BidFunnelControllerService {
|
|
2146
2146
|
constructor(httpClient, basePath, configuration) {
|
|
2147
2147
|
this.httpClient = httpClient;
|
|
2148
|
-
this.basePath = 'https://
|
|
2148
|
+
this.basePath = 'https://apiv2stage3.atomex.net';
|
|
2149
2149
|
this.defaultHeaders = new HttpHeaders();
|
|
2150
2150
|
this.configuration = new Configuration();
|
|
2151
2151
|
if (basePath) {
|
|
@@ -2296,7 +2296,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
2296
2296
|
class BulkStrategyControllerService {
|
|
2297
2297
|
constructor(httpClient, basePath, configuration) {
|
|
2298
2298
|
this.httpClient = httpClient;
|
|
2299
|
-
this.basePath = 'https://
|
|
2299
|
+
this.basePath = 'https://apiv2stage3.atomex.net';
|
|
2300
2300
|
this.defaultHeaders = new HttpHeaders();
|
|
2301
2301
|
this.configuration = new Configuration();
|
|
2302
2302
|
if (basePath) {
|
|
@@ -2523,7 +2523,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
2523
2523
|
class CSSThemeController_Service {
|
|
2524
2524
|
constructor(httpClient, basePath, configuration) {
|
|
2525
2525
|
this.httpClient = httpClient;
|
|
2526
|
-
this.basePath = 'https://
|
|
2526
|
+
this.basePath = 'https://apiv2stage3.atomex.net';
|
|
2527
2527
|
this.defaultHeaders = new HttpHeaders();
|
|
2528
2528
|
this.configuration = new Configuration();
|
|
2529
2529
|
if (basePath) {
|
|
@@ -2634,7 +2634,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
2634
2634
|
class CampaignControllerService {
|
|
2635
2635
|
constructor(httpClient, basePath, configuration) {
|
|
2636
2636
|
this.httpClient = httpClient;
|
|
2637
|
-
this.basePath = 'https://
|
|
2637
|
+
this.basePath = 'https://apiv2stage3.atomex.net';
|
|
2638
2638
|
this.defaultHeaders = new HttpHeaders();
|
|
2639
2639
|
this.configuration = new Configuration();
|
|
2640
2640
|
if (basePath) {
|
|
@@ -3077,7 +3077,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
3077
3077
|
class CatalogControllerService {
|
|
3078
3078
|
constructor(httpClient, basePath, configuration) {
|
|
3079
3079
|
this.httpClient = httpClient;
|
|
3080
|
-
this.basePath = 'https://
|
|
3080
|
+
this.basePath = 'https://apiv2stage3.atomex.net';
|
|
3081
3081
|
this.defaultHeaders = new HttpHeaders();
|
|
3082
3082
|
this.configuration = new Configuration();
|
|
3083
3083
|
if (basePath) {
|
|
@@ -3319,7 +3319,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
3319
3319
|
class ClickDestinationControllerService {
|
|
3320
3320
|
constructor(httpClient, basePath, configuration) {
|
|
3321
3321
|
this.httpClient = httpClient;
|
|
3322
|
-
this.basePath = 'https://
|
|
3322
|
+
this.basePath = 'https://apiv2stage3.atomex.net';
|
|
3323
3323
|
this.defaultHeaders = new HttpHeaders();
|
|
3324
3324
|
this.configuration = new Configuration();
|
|
3325
3325
|
if (basePath) {
|
|
@@ -3553,7 +3553,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
3553
3553
|
class CreativeControllerService {
|
|
3554
3554
|
constructor(httpClient, basePath, configuration) {
|
|
3555
3555
|
this.httpClient = httpClient;
|
|
3556
|
-
this.basePath = 'https://
|
|
3556
|
+
this.basePath = 'https://apiv2stage3.atomex.net';
|
|
3557
3557
|
this.defaultHeaders = new HttpHeaders();
|
|
3558
3558
|
this.configuration = new Configuration();
|
|
3559
3559
|
if (basePath) {
|
|
@@ -4070,7 +4070,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
4070
4070
|
class CreativeSetsControllerService {
|
|
4071
4071
|
constructor(httpClient, basePath, configuration) {
|
|
4072
4072
|
this.httpClient = httpClient;
|
|
4073
|
-
this.basePath = 'https://
|
|
4073
|
+
this.basePath = 'https://apiv2stage3.atomex.net';
|
|
4074
4074
|
this.defaultHeaders = new HttpHeaders();
|
|
4075
4075
|
this.configuration = new Configuration();
|
|
4076
4076
|
if (basePath) {
|
|
@@ -4680,7 +4680,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
4680
4680
|
class CreativeTemplateThemesControllerService {
|
|
4681
4681
|
constructor(httpClient, basePath, configuration) {
|
|
4682
4682
|
this.httpClient = httpClient;
|
|
4683
|
-
this.basePath = 'https://
|
|
4683
|
+
this.basePath = 'https://apiv2stage3.atomex.net';
|
|
4684
4684
|
this.defaultHeaders = new HttpHeaders();
|
|
4685
4685
|
this.configuration = new Configuration();
|
|
4686
4686
|
if (basePath) {
|
|
@@ -4867,7 +4867,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
4867
4867
|
class CreativeTemplateVariablesControllerService {
|
|
4868
4868
|
constructor(httpClient, basePath, configuration) {
|
|
4869
4869
|
this.httpClient = httpClient;
|
|
4870
|
-
this.basePath = 'https://
|
|
4870
|
+
this.basePath = 'https://apiv2stage3.atomex.net';
|
|
4871
4871
|
this.defaultHeaders = new HttpHeaders();
|
|
4872
4872
|
this.configuration = new Configuration();
|
|
4873
4873
|
if (basePath) {
|
|
@@ -4947,7 +4947,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
4947
4947
|
class CreativeTemplatesControllerService {
|
|
4948
4948
|
constructor(httpClient, basePath, configuration) {
|
|
4949
4949
|
this.httpClient = httpClient;
|
|
4950
|
-
this.basePath = 'https://
|
|
4950
|
+
this.basePath = 'https://apiv2stage3.atomex.net';
|
|
4951
4951
|
this.defaultHeaders = new HttpHeaders();
|
|
4952
4952
|
this.configuration = new Configuration();
|
|
4953
4953
|
if (basePath) {
|
|
@@ -5114,7 +5114,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
5114
5114
|
class CustomerReportingControllerService {
|
|
5115
5115
|
constructor(httpClient, basePath, configuration) {
|
|
5116
5116
|
this.httpClient = httpClient;
|
|
5117
|
-
this.basePath = 'https://
|
|
5117
|
+
this.basePath = 'https://apiv2stage3.atomex.net';
|
|
5118
5118
|
this.defaultHeaders = new HttpHeaders();
|
|
5119
5119
|
this.configuration = new Configuration();
|
|
5120
5120
|
if (basePath) {
|
|
@@ -5203,7 +5203,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
5203
5203
|
class DashboardControllerService {
|
|
5204
5204
|
constructor(httpClient, basePath, configuration) {
|
|
5205
5205
|
this.httpClient = httpClient;
|
|
5206
|
-
this.basePath = 'https://
|
|
5206
|
+
this.basePath = 'https://apiv2stage3.atomex.net';
|
|
5207
5207
|
this.defaultHeaders = new HttpHeaders();
|
|
5208
5208
|
this.configuration = new Configuration();
|
|
5209
5209
|
if (basePath) {
|
|
@@ -5863,7 +5863,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
5863
5863
|
class ExperimentsControllerService {
|
|
5864
5864
|
constructor(httpClient, basePath, configuration) {
|
|
5865
5865
|
this.httpClient = httpClient;
|
|
5866
|
-
this.basePath = 'https://
|
|
5866
|
+
this.basePath = 'https://apiv2stage3.atomex.net';
|
|
5867
5867
|
this.defaultHeaders = new HttpHeaders();
|
|
5868
5868
|
this.configuration = new Configuration();
|
|
5869
5869
|
if (basePath) {
|
|
@@ -5887,6 +5887,41 @@ class ExperimentsControllerService {
|
|
|
5887
5887
|
}
|
|
5888
5888
|
return false;
|
|
5889
5889
|
}
|
|
5890
|
+
activateABTestUsingPOST(expId, reqId, token, observe = 'body', reportProgress = false) {
|
|
5891
|
+
if (expId === null || expId === undefined) {
|
|
5892
|
+
throw new Error('Required parameter expId was null or undefined when calling activateABTestUsingPOST.');
|
|
5893
|
+
}
|
|
5894
|
+
let queryParameters = new HttpParams({ encoder: new CustomHttpUrlEncodingCodec() });
|
|
5895
|
+
if (expId !== undefined && expId !== null) {
|
|
5896
|
+
queryParameters = queryParameters.set('expId', expId);
|
|
5897
|
+
}
|
|
5898
|
+
let headers = this.defaultHeaders;
|
|
5899
|
+
if (reqId !== undefined && reqId !== null) {
|
|
5900
|
+
headers = headers.set('reqId', String(reqId));
|
|
5901
|
+
}
|
|
5902
|
+
if (token !== undefined && token !== null) {
|
|
5903
|
+
headers = headers.set('token', String(token));
|
|
5904
|
+
}
|
|
5905
|
+
// to determine the Accept header
|
|
5906
|
+
let httpHeaderAccepts = [
|
|
5907
|
+
'application/json'
|
|
5908
|
+
];
|
|
5909
|
+
const httpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
|
|
5910
|
+
if (httpHeaderAcceptSelected != undefined) {
|
|
5911
|
+
headers = headers.set('Accept', httpHeaderAcceptSelected);
|
|
5912
|
+
}
|
|
5913
|
+
// to determine the Content-Type header
|
|
5914
|
+
const consumes = [
|
|
5915
|
+
'application/json'
|
|
5916
|
+
];
|
|
5917
|
+
return this.httpClient.post(`${this.basePath}/v2/api/experiments/abtest/activate`, null, {
|
|
5918
|
+
params: queryParameters,
|
|
5919
|
+
withCredentials: this.configuration.withCredentials,
|
|
5920
|
+
headers: headers,
|
|
5921
|
+
observe: observe,
|
|
5922
|
+
reportProgress: reportProgress
|
|
5923
|
+
});
|
|
5924
|
+
}
|
|
5890
5925
|
activateExperimentUsingPOST(experimentIds, reqId, token, observe = 'body', reportProgress = false) {
|
|
5891
5926
|
if (experimentIds === null || experimentIds === undefined) {
|
|
5892
5927
|
throw new Error('Required parameter experimentIds was null or undefined when calling activateExperimentUsingPOST.');
|
|
@@ -5922,6 +5957,41 @@ class ExperimentsControllerService {
|
|
|
5922
5957
|
reportProgress: reportProgress
|
|
5923
5958
|
});
|
|
5924
5959
|
}
|
|
5960
|
+
archiveABTestUsingPOST(expId, reqId, token, observe = 'body', reportProgress = false) {
|
|
5961
|
+
if (expId === null || expId === undefined) {
|
|
5962
|
+
throw new Error('Required parameter expId was null or undefined when calling archiveABTestUsingPOST.');
|
|
5963
|
+
}
|
|
5964
|
+
let queryParameters = new HttpParams({ encoder: new CustomHttpUrlEncodingCodec() });
|
|
5965
|
+
if (expId !== undefined && expId !== null) {
|
|
5966
|
+
queryParameters = queryParameters.set('expId', expId);
|
|
5967
|
+
}
|
|
5968
|
+
let headers = this.defaultHeaders;
|
|
5969
|
+
if (reqId !== undefined && reqId !== null) {
|
|
5970
|
+
headers = headers.set('reqId', String(reqId));
|
|
5971
|
+
}
|
|
5972
|
+
if (token !== undefined && token !== null) {
|
|
5973
|
+
headers = headers.set('token', String(token));
|
|
5974
|
+
}
|
|
5975
|
+
// to determine the Accept header
|
|
5976
|
+
let httpHeaderAccepts = [
|
|
5977
|
+
'application/json'
|
|
5978
|
+
];
|
|
5979
|
+
const httpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
|
|
5980
|
+
if (httpHeaderAcceptSelected != undefined) {
|
|
5981
|
+
headers = headers.set('Accept', httpHeaderAcceptSelected);
|
|
5982
|
+
}
|
|
5983
|
+
// to determine the Content-Type header
|
|
5984
|
+
const consumes = [
|
|
5985
|
+
'application/json'
|
|
5986
|
+
];
|
|
5987
|
+
return this.httpClient.post(`${this.basePath}/v2/api/experiments/abtest/archive`, null, {
|
|
5988
|
+
params: queryParameters,
|
|
5989
|
+
withCredentials: this.configuration.withCredentials,
|
|
5990
|
+
headers: headers,
|
|
5991
|
+
observe: observe,
|
|
5992
|
+
reportProgress: reportProgress
|
|
5993
|
+
});
|
|
5994
|
+
}
|
|
5925
5995
|
archiveExperimentUsingPOST(experimentIds, reqId, token, observe = 'body', reportProgress = false) {
|
|
5926
5996
|
if (experimentIds === null || experimentIds === undefined) {
|
|
5927
5997
|
throw new Error('Required parameter experimentIds was null or undefined when calling archiveExperimentUsingPOST.');
|
|
@@ -5957,6 +6027,40 @@ class ExperimentsControllerService {
|
|
|
5957
6027
|
reportProgress: reportProgress
|
|
5958
6028
|
});
|
|
5959
6029
|
}
|
|
6030
|
+
createABTestUsingPOST(dto, reqId, token, observe = 'body', reportProgress = false) {
|
|
6031
|
+
if (dto === null || dto === undefined) {
|
|
6032
|
+
throw new Error('Required parameter dto was null or undefined when calling createABTestUsingPOST.');
|
|
6033
|
+
}
|
|
6034
|
+
let headers = this.defaultHeaders;
|
|
6035
|
+
if (reqId !== undefined && reqId !== null) {
|
|
6036
|
+
headers = headers.set('reqId', String(reqId));
|
|
6037
|
+
}
|
|
6038
|
+
if (token !== undefined && token !== null) {
|
|
6039
|
+
headers = headers.set('token', String(token));
|
|
6040
|
+
}
|
|
6041
|
+
// to determine the Accept header
|
|
6042
|
+
let httpHeaderAccepts = [
|
|
6043
|
+
'application/json'
|
|
6044
|
+
];
|
|
6045
|
+
const httpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
|
|
6046
|
+
if (httpHeaderAcceptSelected != undefined) {
|
|
6047
|
+
headers = headers.set('Accept', httpHeaderAcceptSelected);
|
|
6048
|
+
}
|
|
6049
|
+
// to determine the Content-Type header
|
|
6050
|
+
const consumes = [
|
|
6051
|
+
'application/json'
|
|
6052
|
+
];
|
|
6053
|
+
const httpContentTypeSelected = this.configuration.selectHeaderContentType(consumes);
|
|
6054
|
+
if (httpContentTypeSelected != undefined) {
|
|
6055
|
+
headers = headers.set('Content-Type', httpContentTypeSelected);
|
|
6056
|
+
}
|
|
6057
|
+
return this.httpClient.post(`${this.basePath}/v2/api/experiments/abtest/create`, dto, {
|
|
6058
|
+
withCredentials: this.configuration.withCredentials,
|
|
6059
|
+
headers: headers,
|
|
6060
|
+
observe: observe,
|
|
6061
|
+
reportProgress: reportProgress
|
|
6062
|
+
});
|
|
6063
|
+
}
|
|
5960
6064
|
createIncrementalityTestUsingPOST(incrementalityTestRequest, reqId, token, observe = 'body', reportProgress = false) {
|
|
5961
6065
|
if (incrementalityTestRequest === null || incrementalityTestRequest === undefined) {
|
|
5962
6066
|
throw new Error('Required parameter incrementalityTestRequest was null or undefined when calling createIncrementalityTestUsingPOST.');
|
|
@@ -5991,6 +6095,41 @@ class ExperimentsControllerService {
|
|
|
5991
6095
|
reportProgress: reportProgress
|
|
5992
6096
|
});
|
|
5993
6097
|
}
|
|
6098
|
+
deactivateABTestUsingPOST(expId, reqId, token, observe = 'body', reportProgress = false) {
|
|
6099
|
+
if (expId === null || expId === undefined) {
|
|
6100
|
+
throw new Error('Required parameter expId was null or undefined when calling deactivateABTestUsingPOST.');
|
|
6101
|
+
}
|
|
6102
|
+
let queryParameters = new HttpParams({ encoder: new CustomHttpUrlEncodingCodec() });
|
|
6103
|
+
if (expId !== undefined && expId !== null) {
|
|
6104
|
+
queryParameters = queryParameters.set('expId', expId);
|
|
6105
|
+
}
|
|
6106
|
+
let headers = this.defaultHeaders;
|
|
6107
|
+
if (reqId !== undefined && reqId !== null) {
|
|
6108
|
+
headers = headers.set('reqId', String(reqId));
|
|
6109
|
+
}
|
|
6110
|
+
if (token !== undefined && token !== null) {
|
|
6111
|
+
headers = headers.set('token', String(token));
|
|
6112
|
+
}
|
|
6113
|
+
// to determine the Accept header
|
|
6114
|
+
let httpHeaderAccepts = [
|
|
6115
|
+
'application/json'
|
|
6116
|
+
];
|
|
6117
|
+
const httpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
|
|
6118
|
+
if (httpHeaderAcceptSelected != undefined) {
|
|
6119
|
+
headers = headers.set('Accept', httpHeaderAcceptSelected);
|
|
6120
|
+
}
|
|
6121
|
+
// to determine the Content-Type header
|
|
6122
|
+
const consumes = [
|
|
6123
|
+
'application/json'
|
|
6124
|
+
];
|
|
6125
|
+
return this.httpClient.post(`${this.basePath}/v2/api/experiments/abtest/deactivate`, null, {
|
|
6126
|
+
params: queryParameters,
|
|
6127
|
+
withCredentials: this.configuration.withCredentials,
|
|
6128
|
+
headers: headers,
|
|
6129
|
+
observe: observe,
|
|
6130
|
+
reportProgress: reportProgress
|
|
6131
|
+
});
|
|
6132
|
+
}
|
|
5994
6133
|
deactivateExperimentUsingPOST(experimentIds, reqId, token, observe = 'body', reportProgress = false) {
|
|
5995
6134
|
if (experimentIds === null || experimentIds === undefined) {
|
|
5996
6135
|
throw new Error('Required parameter experimentIds was null or undefined when calling deactivateExperimentUsingPOST.');
|
|
@@ -6026,6 +6165,90 @@ class ExperimentsControllerService {
|
|
|
6026
6165
|
reportProgress: reportProgress
|
|
6027
6166
|
});
|
|
6028
6167
|
}
|
|
6168
|
+
getABTestByIdUsingGET(experimentId, reqId, token, observe = 'body', reportProgress = false) {
|
|
6169
|
+
if (experimentId === null || experimentId === undefined) {
|
|
6170
|
+
throw new Error('Required parameter experimentId was null or undefined when calling getABTestByIdUsingGET.');
|
|
6171
|
+
}
|
|
6172
|
+
let headers = this.defaultHeaders;
|
|
6173
|
+
if (reqId !== undefined && reqId !== null) {
|
|
6174
|
+
headers = headers.set('reqId', String(reqId));
|
|
6175
|
+
}
|
|
6176
|
+
if (token !== undefined && token !== null) {
|
|
6177
|
+
headers = headers.set('token', String(token));
|
|
6178
|
+
}
|
|
6179
|
+
// to determine the Accept header
|
|
6180
|
+
let httpHeaderAccepts = [
|
|
6181
|
+
'application/json'
|
|
6182
|
+
];
|
|
6183
|
+
const httpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
|
|
6184
|
+
if (httpHeaderAcceptSelected != undefined) {
|
|
6185
|
+
headers = headers.set('Accept', httpHeaderAcceptSelected);
|
|
6186
|
+
}
|
|
6187
|
+
// to determine the Content-Type header
|
|
6188
|
+
const consumes = [];
|
|
6189
|
+
return this.httpClient.get(`${this.basePath}/v2/api/experiments/abtest/get/${encodeURIComponent(String(experimentId))}`, {
|
|
6190
|
+
withCredentials: this.configuration.withCredentials,
|
|
6191
|
+
headers: headers,
|
|
6192
|
+
observe: observe,
|
|
6193
|
+
reportProgress: reportProgress
|
|
6194
|
+
});
|
|
6195
|
+
}
|
|
6196
|
+
getAllABTestsUsingGET(licenseeId, reqId, token, observe = 'body', reportProgress = false) {
|
|
6197
|
+
if (licenseeId === null || licenseeId === undefined) {
|
|
6198
|
+
throw new Error('Required parameter licenseeId was null or undefined when calling getAllABTestsUsingGET.');
|
|
6199
|
+
}
|
|
6200
|
+
let headers = this.defaultHeaders;
|
|
6201
|
+
if (reqId !== undefined && reqId !== null) {
|
|
6202
|
+
headers = headers.set('reqId', String(reqId));
|
|
6203
|
+
}
|
|
6204
|
+
if (token !== undefined && token !== null) {
|
|
6205
|
+
headers = headers.set('token', String(token));
|
|
6206
|
+
}
|
|
6207
|
+
// to determine the Accept header
|
|
6208
|
+
let httpHeaderAccepts = [
|
|
6209
|
+
'application/json'
|
|
6210
|
+
];
|
|
6211
|
+
const httpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
|
|
6212
|
+
if (httpHeaderAcceptSelected != undefined) {
|
|
6213
|
+
headers = headers.set('Accept', httpHeaderAcceptSelected);
|
|
6214
|
+
}
|
|
6215
|
+
// to determine the Content-Type header
|
|
6216
|
+
const consumes = [];
|
|
6217
|
+
return this.httpClient.get(`${this.basePath}/v2/api/experiments/abtest/all/get/${encodeURIComponent(String(licenseeId))}`, {
|
|
6218
|
+
withCredentials: this.configuration.withCredentials,
|
|
6219
|
+
headers: headers,
|
|
6220
|
+
observe: observe,
|
|
6221
|
+
reportProgress: reportProgress
|
|
6222
|
+
});
|
|
6223
|
+
}
|
|
6224
|
+
getAllExperimentsUsingGET(licenseeId, reqId, token, observe = 'body', reportProgress = false) {
|
|
6225
|
+
if (licenseeId === null || licenseeId === undefined) {
|
|
6226
|
+
throw new Error('Required parameter licenseeId was null or undefined when calling getAllExperimentsUsingGET.');
|
|
6227
|
+
}
|
|
6228
|
+
let headers = this.defaultHeaders;
|
|
6229
|
+
if (reqId !== undefined && reqId !== null) {
|
|
6230
|
+
headers = headers.set('reqId', String(reqId));
|
|
6231
|
+
}
|
|
6232
|
+
if (token !== undefined && token !== null) {
|
|
6233
|
+
headers = headers.set('token', String(token));
|
|
6234
|
+
}
|
|
6235
|
+
// to determine the Accept header
|
|
6236
|
+
let httpHeaderAccepts = [
|
|
6237
|
+
'application/json'
|
|
6238
|
+
];
|
|
6239
|
+
const httpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
|
|
6240
|
+
if (httpHeaderAcceptSelected != undefined) {
|
|
6241
|
+
headers = headers.set('Accept', httpHeaderAcceptSelected);
|
|
6242
|
+
}
|
|
6243
|
+
// to determine the Content-Type header
|
|
6244
|
+
const consumes = [];
|
|
6245
|
+
return this.httpClient.get(`${this.basePath}/v2/api/experiments/all/get/${encodeURIComponent(String(licenseeId))}`, {
|
|
6246
|
+
withCredentials: this.configuration.withCredentials,
|
|
6247
|
+
headers: headers,
|
|
6248
|
+
observe: observe,
|
|
6249
|
+
reportProgress: reportProgress
|
|
6250
|
+
});
|
|
6251
|
+
}
|
|
6029
6252
|
getAllReportsForIncrementalityTestUsingGET(licenseeId, refresh, reqId, token, observe = 'body', reportProgress = false) {
|
|
6030
6253
|
if (licenseeId === null || licenseeId === undefined) {
|
|
6031
6254
|
throw new Error('Required parameter licenseeId was null or undefined when calling getAllReportsForIncrementalityTestUsingGET.');
|
|
@@ -6223,6 +6446,43 @@ class ExperimentsControllerService {
|
|
|
6223
6446
|
reportProgress: reportProgress
|
|
6224
6447
|
});
|
|
6225
6448
|
}
|
|
6449
|
+
updateABTestUsingPOST(dto, experimentId, reqId, token, observe = 'body', reportProgress = false) {
|
|
6450
|
+
if (dto === null || dto === undefined) {
|
|
6451
|
+
throw new Error('Required parameter dto was null or undefined when calling updateABTestUsingPOST.');
|
|
6452
|
+
}
|
|
6453
|
+
if (experimentId === null || experimentId === undefined) {
|
|
6454
|
+
throw new Error('Required parameter experimentId was null or undefined when calling updateABTestUsingPOST.');
|
|
6455
|
+
}
|
|
6456
|
+
let headers = this.defaultHeaders;
|
|
6457
|
+
if (reqId !== undefined && reqId !== null) {
|
|
6458
|
+
headers = headers.set('reqId', String(reqId));
|
|
6459
|
+
}
|
|
6460
|
+
if (token !== undefined && token !== null) {
|
|
6461
|
+
headers = headers.set('token', String(token));
|
|
6462
|
+
}
|
|
6463
|
+
// to determine the Accept header
|
|
6464
|
+
let httpHeaderAccepts = [
|
|
6465
|
+
'application/json'
|
|
6466
|
+
];
|
|
6467
|
+
const httpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
|
|
6468
|
+
if (httpHeaderAcceptSelected != undefined) {
|
|
6469
|
+
headers = headers.set('Accept', httpHeaderAcceptSelected);
|
|
6470
|
+
}
|
|
6471
|
+
// to determine the Content-Type header
|
|
6472
|
+
const consumes = [
|
|
6473
|
+
'application/json'
|
|
6474
|
+
];
|
|
6475
|
+
const httpContentTypeSelected = this.configuration.selectHeaderContentType(consumes);
|
|
6476
|
+
if (httpContentTypeSelected != undefined) {
|
|
6477
|
+
headers = headers.set('Content-Type', httpContentTypeSelected);
|
|
6478
|
+
}
|
|
6479
|
+
return this.httpClient.post(`${this.basePath}/v2/api/experiments/abtest/update`, dto, {
|
|
6480
|
+
withCredentials: this.configuration.withCredentials,
|
|
6481
|
+
headers: headers,
|
|
6482
|
+
observe: observe,
|
|
6483
|
+
reportProgress: reportProgress
|
|
6484
|
+
});
|
|
6485
|
+
}
|
|
6226
6486
|
updateIncrementalityTestUsingPOST(experimentId, incrementalityTestDTO, reqId, token, observe = 'body', reportProgress = false) {
|
|
6227
6487
|
if (experimentId === null || experimentId === undefined) {
|
|
6228
6488
|
throw new Error('Required parameter experimentId was null or undefined when calling updateIncrementalityTestUsingPOST.');
|
|
@@ -6291,7 +6551,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
6291
6551
|
class NotificationsControllerService {
|
|
6292
6552
|
constructor(httpClient, basePath, configuration) {
|
|
6293
6553
|
this.httpClient = httpClient;
|
|
6294
|
-
this.basePath = 'https://
|
|
6554
|
+
this.basePath = 'https://apiv2stage3.atomex.net';
|
|
6295
6555
|
this.defaultHeaders = new HttpHeaders();
|
|
6296
6556
|
this.configuration = new Configuration();
|
|
6297
6557
|
if (basePath) {
|
|
@@ -6506,7 +6766,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
6506
6766
|
class PixelControllerService {
|
|
6507
6767
|
constructor(httpClient, basePath, configuration) {
|
|
6508
6768
|
this.httpClient = httpClient;
|
|
6509
|
-
this.basePath = 'https://
|
|
6769
|
+
this.basePath = 'https://apiv2stage3.atomex.net';
|
|
6510
6770
|
this.defaultHeaders = new HttpHeaders();
|
|
6511
6771
|
this.configuration = new Configuration();
|
|
6512
6772
|
if (basePath) {
|
|
@@ -6815,7 +7075,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
6815
7075
|
class ReportControllerService {
|
|
6816
7076
|
constructor(httpClient, basePath, configuration) {
|
|
6817
7077
|
this.httpClient = httpClient;
|
|
6818
|
-
this.basePath = 'https://
|
|
7078
|
+
this.basePath = 'https://apiv2stage3.atomex.net';
|
|
6819
7079
|
this.defaultHeaders = new HttpHeaders();
|
|
6820
7080
|
this.configuration = new Configuration();
|
|
6821
7081
|
if (basePath) {
|
|
@@ -6954,7 +7214,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
6954
7214
|
class ReportingControllerService {
|
|
6955
7215
|
constructor(httpClient, basePath, configuration) {
|
|
6956
7216
|
this.httpClient = httpClient;
|
|
6957
|
-
this.basePath = 'https://
|
|
7217
|
+
this.basePath = 'https://apiv2stage3.atomex.net';
|
|
6958
7218
|
this.defaultHeaders = new HttpHeaders();
|
|
6959
7219
|
this.configuration = new Configuration();
|
|
6960
7220
|
if (basePath) {
|
|
@@ -7126,7 +7386,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
7126
7386
|
class ReportingSchedulerControllerService {
|
|
7127
7387
|
constructor(httpClient, basePath, configuration) {
|
|
7128
7388
|
this.httpClient = httpClient;
|
|
7129
|
-
this.basePath = 'https://
|
|
7389
|
+
this.basePath = 'https://apiv2stage3.atomex.net';
|
|
7130
7390
|
this.defaultHeaders = new HttpHeaders();
|
|
7131
7391
|
this.configuration = new Configuration();
|
|
7132
7392
|
if (basePath) {
|
|
@@ -7443,7 +7703,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
7443
7703
|
class SliceXControllerService {
|
|
7444
7704
|
constructor(httpClient, basePath, configuration) {
|
|
7445
7705
|
this.httpClient = httpClient;
|
|
7446
|
-
this.basePath = 'https://
|
|
7706
|
+
this.basePath = 'https://apiv2stage3.atomex.net';
|
|
7447
7707
|
this.defaultHeaders = new HttpHeaders();
|
|
7448
7708
|
this.configuration = new Configuration();
|
|
7449
7709
|
if (basePath) {
|
|
@@ -7695,7 +7955,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
7695
7955
|
class StrategyControllerService {
|
|
7696
7956
|
constructor(httpClient, basePath, configuration) {
|
|
7697
7957
|
this.httpClient = httpClient;
|
|
7698
|
-
this.basePath = 'https://
|
|
7958
|
+
this.basePath = 'https://apiv2stage3.atomex.net';
|
|
7699
7959
|
this.defaultHeaders = new HttpHeaders();
|
|
7700
7960
|
this.configuration = new Configuration();
|
|
7701
7961
|
if (basePath) {
|
|
@@ -8865,7 +9125,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
8865
9125
|
class StrategyTemplateControllerService {
|
|
8866
9126
|
constructor(httpClient, basePath, configuration) {
|
|
8867
9127
|
this.httpClient = httpClient;
|
|
8868
|
-
this.basePath = 'https://
|
|
9128
|
+
this.basePath = 'https://apiv2stage3.atomex.net';
|
|
8869
9129
|
this.defaultHeaders = new HttpHeaders();
|
|
8870
9130
|
this.configuration = new Configuration();
|
|
8871
9131
|
if (basePath) {
|
|
@@ -8989,7 +9249,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
8989
9249
|
class UILoggerControllerService {
|
|
8990
9250
|
constructor(httpClient, basePath, configuration) {
|
|
8991
9251
|
this.httpClient = httpClient;
|
|
8992
|
-
this.basePath = 'https://
|
|
9252
|
+
this.basePath = 'https://apiv2stage3.atomex.net';
|
|
8993
9253
|
this.defaultHeaders = new HttpHeaders();
|
|
8994
9254
|
this.configuration = new Configuration();
|
|
8995
9255
|
if (basePath) {
|
|
@@ -9083,7 +9343,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
9083
9343
|
class UserPreferenceControllerService {
|
|
9084
9344
|
constructor(httpClient, basePath, configuration) {
|
|
9085
9345
|
this.httpClient = httpClient;
|
|
9086
|
-
this.basePath = 'https://
|
|
9346
|
+
this.basePath = 'https://apiv2stage3.atomex.net';
|
|
9087
9347
|
this.defaultHeaders = new HttpHeaders();
|
|
9088
9348
|
this.configuration = new Configuration();
|
|
9089
9349
|
if (basePath) {
|
|
@@ -9246,6 +9506,62 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
9246
9506
|
|
|
9247
9507
|
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];
|
|
9248
9508
|
|
|
9509
|
+
var ABTestingDTO;
|
|
9510
|
+
(function (ABTestingDTO) {
|
|
9511
|
+
ABTestingDTO.ExperimentTypeEnum = {
|
|
9512
|
+
INCREMENTALITYTEST: 'INCREMENTALITY_TEST',
|
|
9513
|
+
ABTEST: 'AB_TEST'
|
|
9514
|
+
};
|
|
9515
|
+
ABTestingDTO.StatusEnum = {
|
|
9516
|
+
LIVE: 'LIVE',
|
|
9517
|
+
SCHEDULED: 'SCHEDULED',
|
|
9518
|
+
GENERATINGREPORT: 'GENERATING_REPORT',
|
|
9519
|
+
STOPPED: 'STOPPED',
|
|
9520
|
+
COMPLETED: 'COMPLETED'
|
|
9521
|
+
};
|
|
9522
|
+
})(ABTestingDTO || (ABTestingDTO = {}));
|
|
9523
|
+
|
|
9524
|
+
var ABTestingResponseDetails;
|
|
9525
|
+
(function (ABTestingResponseDetails) {
|
|
9526
|
+
ABTestingResponseDetails.ExperimentTypeEnum = {
|
|
9527
|
+
INCREMENTALITYTEST: 'INCREMENTALITY_TEST',
|
|
9528
|
+
ABTEST: 'AB_TEST'
|
|
9529
|
+
};
|
|
9530
|
+
ABTestingResponseDetails.StatusEnum = {
|
|
9531
|
+
LIVE: 'LIVE',
|
|
9532
|
+
SCHEDULED: 'SCHEDULED',
|
|
9533
|
+
GENERATINGREPORT: 'GENERATING_REPORT',
|
|
9534
|
+
STOPPED: 'STOPPED',
|
|
9535
|
+
COMPLETED: 'COMPLETED'
|
|
9536
|
+
};
|
|
9537
|
+
})(ABTestingResponseDetails || (ABTestingResponseDetails = {}));
|
|
9538
|
+
|
|
9539
|
+
var ABTestingVariantDTO;
|
|
9540
|
+
(function (ABTestingVariantDTO) {
|
|
9541
|
+
ABTestingVariantDTO.PricingModelEnum = {
|
|
9542
|
+
CPM: 'CPM',
|
|
9543
|
+
CPC: 'CPC',
|
|
9544
|
+
CPA: 'CPA',
|
|
9545
|
+
CTR: 'CTR',
|
|
9546
|
+
DCPMC: 'DCPMC',
|
|
9547
|
+
DCPMA: 'DCPMA',
|
|
9548
|
+
CPI: 'CPI',
|
|
9549
|
+
BOOST: 'BOOST',
|
|
9550
|
+
RCPC: 'RCPC',
|
|
9551
|
+
CPABOOST: 'CPA_BOOST'
|
|
9552
|
+
};
|
|
9553
|
+
ABTestingVariantDTO.VariantTypeEnum = {
|
|
9554
|
+
MODEL: 'MODEL',
|
|
9555
|
+
STRATEGY: 'STRATEGY',
|
|
9556
|
+
CREATIVE: 'CREATIVE',
|
|
9557
|
+
PACINGTYPE: 'PACING_TYPE',
|
|
9558
|
+
CATEGORY: 'CATEGORY',
|
|
9559
|
+
CREATIVESET: 'CREATIVE_SET',
|
|
9560
|
+
PRICING: 'PRICING',
|
|
9561
|
+
VIDEOPLACEMENT: 'VIDEO_PLACEMENT'
|
|
9562
|
+
};
|
|
9563
|
+
})(ABTestingVariantDTO || (ABTestingVariantDTO = {}));
|
|
9564
|
+
|
|
9249
9565
|
var ActivityLogsCreativeSetsBulkUpdateDTO;
|
|
9250
9566
|
(function (ActivityLogsCreativeSetsBulkUpdateDTO) {
|
|
9251
9567
|
ActivityLogsCreativeSetsBulkUpdateDTO.StatusEnum = {
|
|
@@ -9944,6 +10260,21 @@ var DynamicVideoConfigDTO;
|
|
|
9944
10260
|
};
|
|
9945
10261
|
})(DynamicVideoConfigDTO || (DynamicVideoConfigDTO = {}));
|
|
9946
10262
|
|
|
10263
|
+
var ExperimentsEntity;
|
|
10264
|
+
(function (ExperimentsEntity) {
|
|
10265
|
+
ExperimentsEntity.ExperimentTypeEnum = {
|
|
10266
|
+
INCREMENTALITYTEST: 'INCREMENTALITY_TEST',
|
|
10267
|
+
ABTEST: 'AB_TEST'
|
|
10268
|
+
};
|
|
10269
|
+
ExperimentsEntity.StatusEnum = {
|
|
10270
|
+
LIVE: 'LIVE',
|
|
10271
|
+
SCHEDULED: 'SCHEDULED',
|
|
10272
|
+
GENERATINGREPORT: 'GENERATING_REPORT',
|
|
10273
|
+
STOPPED: 'STOPPED',
|
|
10274
|
+
COMPLETED: 'COMPLETED'
|
|
10275
|
+
};
|
|
10276
|
+
})(ExperimentsEntity || (ExperimentsEntity = {}));
|
|
10277
|
+
|
|
9947
10278
|
/**
|
|
9948
10279
|
* Api Documentation
|
|
9949
10280
|
* Api Documentation
|
|
@@ -10028,6 +10359,7 @@ var IncrementalityTestDetails;
|
|
|
10028
10359
|
LIVE: 'LIVE',
|
|
10029
10360
|
SCHEDULED: 'SCHEDULED',
|
|
10030
10361
|
GENERATINGREPORT: 'GENERATING_REPORT',
|
|
10362
|
+
STOPPED: 'STOPPED',
|
|
10031
10363
|
COMPLETED: 'COMPLETED'
|
|
10032
10364
|
};
|
|
10033
10365
|
IncrementalityTestDetails.TestTypeEnum = {
|
|
@@ -10762,5 +11094,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
10762
11094
|
* Generated bundle index. Do not edit.
|
|
10763
11095
|
*/
|
|
10764
11096
|
|
|
10765
|
-
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 };
|
|
11097
|
+
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 };
|
|
10766
11098
|
//# sourceMappingURL=revxui-api-clients-ts.mjs.map
|