@revxui/api-clients-ts 1.1.423 → 1.1.425
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/api.d.ts +3 -1
- package/api/appsFlyerController.service.d.ts +31 -0
- package/api/auditController.service.d.ts +8 -3
- package/esm2020/api/adminController.service.mjs +2 -2
- package/esm2020/api/advertiserController.service.mjs +2 -2
- package/esm2020/api/api.mjs +4 -2
- package/esm2020/api/appSettingsController.service.mjs +2 -2
- package/esm2020/api/appsFlyerController.service.mjs +94 -0
- package/esm2020/api/audienceController.service.mjs +2 -2
- package/esm2020/api/auditController.service.mjs +18 -3
- 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 +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 -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/api.module.mjs +4 -1
- package/esm2020/model/apiResponseObjectListCreativeMetaData.mjs +2 -0
- package/esm2020/model/creativeMetaData.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/models.mjs +5 -1
- package/esm2020/model/nativeAsset.mjs +13 -0
- package/esm2020/model/siteModel.mjs +1 -1
- package/esm2020/model/slicexData.mjs +1 -1
- package/esm2020/model/slicexGridData.mjs +1 -1
- package/esm2020/model/statusBaseObject.mjs +1 -1
- package/esm2020/model/videoAsset.mjs +13 -0
- package/esm2020/model/widgetPerformanceMetrics.mjs +1 -1
- package/fesm2015/revxui-api-clients-ts.mjs +137 -32
- package/fesm2015/revxui-api-clients-ts.mjs.map +1 -1
- package/fesm2020/revxui-api-clients-ts.mjs +159 -32
- package/fesm2020/revxui-api-clients-ts.mjs.map +1 -1
- package/model/apiResponseObjectListCreativeMetaData.d.ts +17 -0
- package/model/creativeMetaData.d.ts +27 -0
- package/model/creativePerformanceList.d.ts +4 -0
- package/model/creativeSetDashboardMetric.d.ts +4 -0
- package/model/creativeSetPerformanceList.d.ts +4 -0
- package/model/dashboardData.d.ts +4 -0
- package/model/dashboardMetrics.d.ts +4 -0
- package/model/models.d.ts +4 -0
- package/model/nativeAsset.d.ts +19 -0
- package/model/siteModel.d.ts +2 -0
- package/model/slicexData.d.ts +4 -0
- package/model/slicexGridData.d.ts +4 -0
- package/model/statusBaseObject.d.ts +2 -0
- package/model/videoAsset.d.ts +18 -0
- package/model/widgetPerformanceMetrics.d.ts +1 -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://apiv2stage7.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://apiv2stage7.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://apiv2stage7.atomex.net';
|
|
833
833
|
this.defaultHeaders = new HttpHeaders();
|
|
834
834
|
this.configuration = new Configuration();
|
|
835
835
|
if (basePath) {
|
|
@@ -1059,6 +1059,92 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
1059
1059
|
type: Optional
|
|
1060
1060
|
}] }]; } });
|
|
1061
1061
|
|
|
1062
|
+
/**
|
|
1063
|
+
* Api Documentation
|
|
1064
|
+
* Api Documentation
|
|
1065
|
+
*
|
|
1066
|
+
* OpenAPI spec version: 1.0
|
|
1067
|
+
*
|
|
1068
|
+
*
|
|
1069
|
+
* NOTE: This class is auto generated by the swagger code generator program.
|
|
1070
|
+
* https://github.com/swagger-api/swagger-codegen.git
|
|
1071
|
+
* Do not edit the class manually.
|
|
1072
|
+
*/
|
|
1073
|
+
/* tslint:disable:no-unused-variable member-ordering */
|
|
1074
|
+
class AppsFlyerControllerService {
|
|
1075
|
+
constructor(httpClient, basePath, configuration) {
|
|
1076
|
+
this.httpClient = httpClient;
|
|
1077
|
+
this.basePath = 'https://apiv2stage7.atomex.net';
|
|
1078
|
+
this.defaultHeaders = new HttpHeaders();
|
|
1079
|
+
this.configuration = new Configuration();
|
|
1080
|
+
if (basePath) {
|
|
1081
|
+
this.basePath = basePath;
|
|
1082
|
+
}
|
|
1083
|
+
if (configuration) {
|
|
1084
|
+
this.configuration = configuration;
|
|
1085
|
+
this.basePath = basePath || configuration.basePath || this.basePath;
|
|
1086
|
+
}
|
|
1087
|
+
}
|
|
1088
|
+
/**
|
|
1089
|
+
* @param consumes string[] mime-types
|
|
1090
|
+
* @return true: consumes contains 'multipart/form-data', false: otherwise
|
|
1091
|
+
*/
|
|
1092
|
+
canConsumeForm(consumes) {
|
|
1093
|
+
const form = 'multipart/form-data';
|
|
1094
|
+
for (const consume of consumes) {
|
|
1095
|
+
if (form === consume) {
|
|
1096
|
+
return true;
|
|
1097
|
+
}
|
|
1098
|
+
}
|
|
1099
|
+
return false;
|
|
1100
|
+
}
|
|
1101
|
+
getCreativeMetaDataUsingGET(ids, reqId, token, observe = 'body', reportProgress = false) {
|
|
1102
|
+
if (ids === null || ids === undefined) {
|
|
1103
|
+
throw new Error('Required parameter ids was null or undefined when calling getCreativeMetaDataUsingGET.');
|
|
1104
|
+
}
|
|
1105
|
+
let queryParameters = new HttpParams({ encoder: new CustomHttpUrlEncodingCodec() });
|
|
1106
|
+
if (ids !== undefined && ids !== null) {
|
|
1107
|
+
queryParameters = queryParameters.set('ids', ids);
|
|
1108
|
+
}
|
|
1109
|
+
let headers = this.defaultHeaders;
|
|
1110
|
+
if (reqId !== undefined && reqId !== null) {
|
|
1111
|
+
headers = headers.set('reqId', String(reqId));
|
|
1112
|
+
}
|
|
1113
|
+
if (token !== undefined && token !== null) {
|
|
1114
|
+
headers = headers.set('token', String(token));
|
|
1115
|
+
}
|
|
1116
|
+
// to determine the Accept header
|
|
1117
|
+
let httpHeaderAccepts = [
|
|
1118
|
+
'application/json'
|
|
1119
|
+
];
|
|
1120
|
+
const httpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
|
|
1121
|
+
if (httpHeaderAcceptSelected != undefined) {
|
|
1122
|
+
headers = headers.set('Accept', httpHeaderAcceptSelected);
|
|
1123
|
+
}
|
|
1124
|
+
// to determine the Content-Type header
|
|
1125
|
+
const consumes = [];
|
|
1126
|
+
return this.httpClient.get(`${this.basePath}/v3/api/appsflyer/creatives`, {
|
|
1127
|
+
params: queryParameters,
|
|
1128
|
+
withCredentials: this.configuration.withCredentials,
|
|
1129
|
+
headers: headers,
|
|
1130
|
+
observe: observe,
|
|
1131
|
+
reportProgress: reportProgress
|
|
1132
|
+
});
|
|
1133
|
+
}
|
|
1134
|
+
}
|
|
1135
|
+
AppsFlyerControllerService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: AppsFlyerControllerService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
1136
|
+
AppsFlyerControllerService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: AppsFlyerControllerService });
|
|
1137
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: AppsFlyerControllerService, decorators: [{
|
|
1138
|
+
type: Injectable
|
|
1139
|
+
}], ctorParameters: function () { return [{ type: i1.HttpClient }, { type: undefined, decorators: [{
|
|
1140
|
+
type: Optional
|
|
1141
|
+
}, {
|
|
1142
|
+
type: Inject,
|
|
1143
|
+
args: [BASE_PATH]
|
|
1144
|
+
}] }, { type: Configuration, decorators: [{
|
|
1145
|
+
type: Optional
|
|
1146
|
+
}] }]; } });
|
|
1147
|
+
|
|
1062
1148
|
/**
|
|
1063
1149
|
* Api Documentation
|
|
1064
1150
|
* Api Documentation
|
|
@@ -1074,7 +1160,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
1074
1160
|
class AudienceControllerService {
|
|
1075
1161
|
constructor(httpClient, basePath, configuration) {
|
|
1076
1162
|
this.httpClient = httpClient;
|
|
1077
|
-
this.basePath = 'https://
|
|
1163
|
+
this.basePath = 'https://apiv2stage7.atomex.net';
|
|
1078
1164
|
this.defaultHeaders = new HttpHeaders();
|
|
1079
1165
|
this.configuration = new Configuration();
|
|
1080
1166
|
if (basePath) {
|
|
@@ -1950,7 +2036,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
1950
2036
|
class AuditControllerService {
|
|
1951
2037
|
constructor(httpClient, basePath, configuration) {
|
|
1952
2038
|
this.httpClient = httpClient;
|
|
1953
|
-
this.basePath = 'https://
|
|
2039
|
+
this.basePath = 'https://apiv2stage7.atomex.net';
|
|
1954
2040
|
this.defaultHeaders = new HttpHeaders();
|
|
1955
2041
|
this.configuration = new Configuration();
|
|
1956
2042
|
if (basePath) {
|
|
@@ -2070,8 +2156,17 @@ class AuditControllerService {
|
|
|
2070
2156
|
reportProgress: reportProgress
|
|
2071
2157
|
});
|
|
2072
2158
|
}
|
|
2073
|
-
getUserActivityLogUsingGET(entities, pageNumber, pageSize, reqId, token, observe = 'body', reportProgress = false) {
|
|
2159
|
+
getUserActivityLogUsingGET(advertiserId, campaignId, endTime, entities, pageNumber, pageSize, reqId, startTime, strategyId, token, observe = 'body', reportProgress = false) {
|
|
2074
2160
|
let queryParameters = new HttpParams({ encoder: new CustomHttpUrlEncodingCodec() });
|
|
2161
|
+
if (advertiserId !== undefined && advertiserId !== null) {
|
|
2162
|
+
queryParameters = queryParameters.set('advertiserId', advertiserId);
|
|
2163
|
+
}
|
|
2164
|
+
if (campaignId !== undefined && campaignId !== null) {
|
|
2165
|
+
queryParameters = queryParameters.set('campaignId', campaignId);
|
|
2166
|
+
}
|
|
2167
|
+
if (endTime !== undefined && endTime !== null) {
|
|
2168
|
+
queryParameters = queryParameters.set('endTime', endTime);
|
|
2169
|
+
}
|
|
2075
2170
|
if (entities !== undefined && entities !== null) {
|
|
2076
2171
|
queryParameters = queryParameters.set('entities', entities);
|
|
2077
2172
|
}
|
|
@@ -2081,6 +2176,12 @@ class AuditControllerService {
|
|
|
2081
2176
|
if (pageSize !== undefined && pageSize !== null) {
|
|
2082
2177
|
queryParameters = queryParameters.set('pageSize', pageSize);
|
|
2083
2178
|
}
|
|
2179
|
+
if (startTime !== undefined && startTime !== null) {
|
|
2180
|
+
queryParameters = queryParameters.set('startTime', startTime);
|
|
2181
|
+
}
|
|
2182
|
+
if (strategyId !== undefined && strategyId !== null) {
|
|
2183
|
+
queryParameters = queryParameters.set('strategyId', strategyId);
|
|
2184
|
+
}
|
|
2084
2185
|
let headers = this.defaultHeaders;
|
|
2085
2186
|
if (reqId !== undefined && reqId !== null) {
|
|
2086
2187
|
headers = headers.set('reqId', String(reqId));
|
|
@@ -2135,7 +2236,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
2135
2236
|
class BidFunnelControllerService {
|
|
2136
2237
|
constructor(httpClient, basePath, configuration) {
|
|
2137
2238
|
this.httpClient = httpClient;
|
|
2138
|
-
this.basePath = 'https://
|
|
2239
|
+
this.basePath = 'https://apiv2stage7.atomex.net';
|
|
2139
2240
|
this.defaultHeaders = new HttpHeaders();
|
|
2140
2241
|
this.configuration = new Configuration();
|
|
2141
2242
|
if (basePath) {
|
|
@@ -2284,7 +2385,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
2284
2385
|
class BulkStrategyControllerService {
|
|
2285
2386
|
constructor(httpClient, basePath, configuration) {
|
|
2286
2387
|
this.httpClient = httpClient;
|
|
2287
|
-
this.basePath = 'https://
|
|
2388
|
+
this.basePath = 'https://apiv2stage7.atomex.net';
|
|
2288
2389
|
this.defaultHeaders = new HttpHeaders();
|
|
2289
2390
|
this.configuration = new Configuration();
|
|
2290
2391
|
if (basePath) {
|
|
@@ -2509,7 +2610,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
2509
2610
|
class CSSThemeController_Service {
|
|
2510
2611
|
constructor(httpClient, basePath, configuration) {
|
|
2511
2612
|
this.httpClient = httpClient;
|
|
2512
|
-
this.basePath = 'https://
|
|
2613
|
+
this.basePath = 'https://apiv2stage7.atomex.net';
|
|
2513
2614
|
this.defaultHeaders = new HttpHeaders();
|
|
2514
2615
|
this.configuration = new Configuration();
|
|
2515
2616
|
if (basePath) {
|
|
@@ -2618,7 +2719,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
2618
2719
|
class CampaignControllerService {
|
|
2619
2720
|
constructor(httpClient, basePath, configuration) {
|
|
2620
2721
|
this.httpClient = httpClient;
|
|
2621
|
-
this.basePath = 'https://
|
|
2722
|
+
this.basePath = 'https://apiv2stage7.atomex.net';
|
|
2622
2723
|
this.defaultHeaders = new HttpHeaders();
|
|
2623
2724
|
this.configuration = new Configuration();
|
|
2624
2725
|
if (basePath) {
|
|
@@ -3059,7 +3160,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
3059
3160
|
class CatalogControllerService {
|
|
3060
3161
|
constructor(httpClient, basePath, configuration) {
|
|
3061
3162
|
this.httpClient = httpClient;
|
|
3062
|
-
this.basePath = 'https://
|
|
3163
|
+
this.basePath = 'https://apiv2stage7.atomex.net';
|
|
3063
3164
|
this.defaultHeaders = new HttpHeaders();
|
|
3064
3165
|
this.configuration = new Configuration();
|
|
3065
3166
|
if (basePath) {
|
|
@@ -3302,7 +3403,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
3302
3403
|
class ClickDestinationControllerService {
|
|
3303
3404
|
constructor(httpClient, basePath, configuration) {
|
|
3304
3405
|
this.httpClient = httpClient;
|
|
3305
|
-
this.basePath = 'https://
|
|
3406
|
+
this.basePath = 'https://apiv2stage7.atomex.net';
|
|
3306
3407
|
this.defaultHeaders = new HttpHeaders();
|
|
3307
3408
|
this.configuration = new Configuration();
|
|
3308
3409
|
if (basePath) {
|
|
@@ -3534,7 +3635,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
3534
3635
|
class CreativeControllerService {
|
|
3535
3636
|
constructor(httpClient, basePath, configuration) {
|
|
3536
3637
|
this.httpClient = httpClient;
|
|
3537
|
-
this.basePath = 'https://
|
|
3638
|
+
this.basePath = 'https://apiv2stage7.atomex.net';
|
|
3538
3639
|
this.defaultHeaders = new HttpHeaders();
|
|
3539
3640
|
this.configuration = new Configuration();
|
|
3540
3641
|
if (basePath) {
|
|
@@ -4137,7 +4238,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
4137
4238
|
class CreativeSetsControllerService {
|
|
4138
4239
|
constructor(httpClient, basePath, configuration) {
|
|
4139
4240
|
this.httpClient = httpClient;
|
|
4140
|
-
this.basePath = 'https://
|
|
4241
|
+
this.basePath = 'https://apiv2stage7.atomex.net';
|
|
4141
4242
|
this.defaultHeaders = new HttpHeaders();
|
|
4142
4243
|
this.configuration = new Configuration();
|
|
4143
4244
|
if (basePath) {
|
|
@@ -4783,7 +4884,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
4783
4884
|
class CreativeTemplateThemesControllerService {
|
|
4784
4885
|
constructor(httpClient, basePath, configuration) {
|
|
4785
4886
|
this.httpClient = httpClient;
|
|
4786
|
-
this.basePath = 'https://
|
|
4887
|
+
this.basePath = 'https://apiv2stage7.atomex.net';
|
|
4787
4888
|
this.defaultHeaders = new HttpHeaders();
|
|
4788
4889
|
this.configuration = new Configuration();
|
|
4789
4890
|
if (basePath) {
|
|
@@ -4968,7 +5069,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
4968
5069
|
class CreativeTemplateVariablesControllerService {
|
|
4969
5070
|
constructor(httpClient, basePath, configuration) {
|
|
4970
5071
|
this.httpClient = httpClient;
|
|
4971
|
-
this.basePath = 'https://
|
|
5072
|
+
this.basePath = 'https://apiv2stage7.atomex.net';
|
|
4972
5073
|
this.defaultHeaders = new HttpHeaders();
|
|
4973
5074
|
this.configuration = new Configuration();
|
|
4974
5075
|
if (basePath) {
|
|
@@ -5046,7 +5147,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
5046
5147
|
class CreativeTemplatesControllerService {
|
|
5047
5148
|
constructor(httpClient, basePath, configuration) {
|
|
5048
5149
|
this.httpClient = httpClient;
|
|
5049
|
-
this.basePath = 'https://
|
|
5150
|
+
this.basePath = 'https://apiv2stage7.atomex.net';
|
|
5050
5151
|
this.defaultHeaders = new HttpHeaders();
|
|
5051
5152
|
this.configuration = new Configuration();
|
|
5052
5153
|
if (basePath) {
|
|
@@ -5211,7 +5312,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
5211
5312
|
class CustomerReportingControllerService {
|
|
5212
5313
|
constructor(httpClient, basePath, configuration) {
|
|
5213
5314
|
this.httpClient = httpClient;
|
|
5214
|
-
this.basePath = 'https://
|
|
5315
|
+
this.basePath = 'https://apiv2stage7.atomex.net';
|
|
5215
5316
|
this.defaultHeaders = new HttpHeaders();
|
|
5216
5317
|
this.configuration = new Configuration();
|
|
5217
5318
|
if (basePath) {
|
|
@@ -5374,7 +5475,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
5374
5475
|
class DashboardControllerService {
|
|
5375
5476
|
constructor(httpClient, basePath, configuration) {
|
|
5376
5477
|
this.httpClient = httpClient;
|
|
5377
|
-
this.basePath = 'https://
|
|
5478
|
+
this.basePath = 'https://apiv2stage7.atomex.net';
|
|
5378
5479
|
this.defaultHeaders = new HttpHeaders();
|
|
5379
5480
|
this.configuration = new Configuration();
|
|
5380
5481
|
if (basePath) {
|
|
@@ -6032,7 +6133,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
6032
6133
|
class ExperimentsControllerService {
|
|
6033
6134
|
constructor(httpClient, basePath, configuration) {
|
|
6034
6135
|
this.httpClient = httpClient;
|
|
6035
|
-
this.basePath = 'https://
|
|
6136
|
+
this.basePath = 'https://apiv2stage7.atomex.net';
|
|
6036
6137
|
this.defaultHeaders = new HttpHeaders();
|
|
6037
6138
|
this.configuration = new Configuration();
|
|
6038
6139
|
if (basePath) {
|
|
@@ -6759,7 +6860,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
6759
6860
|
class NotificationsControllerService {
|
|
6760
6861
|
constructor(httpClient, basePath, configuration) {
|
|
6761
6862
|
this.httpClient = httpClient;
|
|
6762
|
-
this.basePath = 'https://
|
|
6863
|
+
this.basePath = 'https://apiv2stage7.atomex.net';
|
|
6763
6864
|
this.defaultHeaders = new HttpHeaders();
|
|
6764
6865
|
this.configuration = new Configuration();
|
|
6765
6866
|
if (basePath) {
|
|
@@ -6972,7 +7073,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
6972
7073
|
class PixelControllerService {
|
|
6973
7074
|
constructor(httpClient, basePath, configuration) {
|
|
6974
7075
|
this.httpClient = httpClient;
|
|
6975
|
-
this.basePath = 'https://
|
|
7076
|
+
this.basePath = 'https://apiv2stage7.atomex.net';
|
|
6976
7077
|
this.defaultHeaders = new HttpHeaders();
|
|
6977
7078
|
this.configuration = new Configuration();
|
|
6978
7079
|
if (basePath) {
|
|
@@ -7279,7 +7380,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
7279
7380
|
class ReportControllerService {
|
|
7280
7381
|
constructor(httpClient, basePath, configuration) {
|
|
7281
7382
|
this.httpClient = httpClient;
|
|
7282
|
-
this.basePath = 'https://
|
|
7383
|
+
this.basePath = 'https://apiv2stage7.atomex.net';
|
|
7283
7384
|
this.defaultHeaders = new HttpHeaders();
|
|
7284
7385
|
this.configuration = new Configuration();
|
|
7285
7386
|
if (basePath) {
|
|
@@ -7416,7 +7517,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
7416
7517
|
class ReportingControllerService {
|
|
7417
7518
|
constructor(httpClient, basePath, configuration) {
|
|
7418
7519
|
this.httpClient = httpClient;
|
|
7419
|
-
this.basePath = 'https://
|
|
7520
|
+
this.basePath = 'https://apiv2stage7.atomex.net';
|
|
7420
7521
|
this.defaultHeaders = new HttpHeaders();
|
|
7421
7522
|
this.configuration = new Configuration();
|
|
7422
7523
|
if (basePath) {
|
|
@@ -7586,7 +7687,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
7586
7687
|
class ReportingSchedulerControllerService {
|
|
7587
7688
|
constructor(httpClient, basePath, configuration) {
|
|
7588
7689
|
this.httpClient = httpClient;
|
|
7589
|
-
this.basePath = 'https://
|
|
7690
|
+
this.basePath = 'https://apiv2stage7.atomex.net';
|
|
7590
7691
|
this.defaultHeaders = new HttpHeaders();
|
|
7591
7692
|
this.configuration = new Configuration();
|
|
7592
7693
|
if (basePath) {
|
|
@@ -7901,7 +8002,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
7901
8002
|
class SliceXControllerService {
|
|
7902
8003
|
constructor(httpClient, basePath, configuration) {
|
|
7903
8004
|
this.httpClient = httpClient;
|
|
7904
|
-
this.basePath = 'https://
|
|
8005
|
+
this.basePath = 'https://apiv2stage7.atomex.net';
|
|
7905
8006
|
this.defaultHeaders = new HttpHeaders();
|
|
7906
8007
|
this.configuration = new Configuration();
|
|
7907
8008
|
if (basePath) {
|
|
@@ -8305,7 +8406,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
8305
8406
|
class StrategyControllerService {
|
|
8306
8407
|
constructor(httpClient, basePath, configuration) {
|
|
8307
8408
|
this.httpClient = httpClient;
|
|
8308
|
-
this.basePath = 'https://
|
|
8409
|
+
this.basePath = 'https://apiv2stage7.atomex.net';
|
|
8309
8410
|
this.defaultHeaders = new HttpHeaders();
|
|
8310
8411
|
this.configuration = new Configuration();
|
|
8311
8412
|
if (basePath) {
|
|
@@ -9473,7 +9574,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
9473
9574
|
class StrategyTemplateControllerService {
|
|
9474
9575
|
constructor(httpClient, basePath, configuration) {
|
|
9475
9576
|
this.httpClient = httpClient;
|
|
9476
|
-
this.basePath = 'https://
|
|
9577
|
+
this.basePath = 'https://apiv2stage7.atomex.net';
|
|
9477
9578
|
this.defaultHeaders = new HttpHeaders();
|
|
9478
9579
|
this.configuration = new Configuration();
|
|
9479
9580
|
if (basePath) {
|
|
@@ -9595,7 +9696,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
9595
9696
|
class UILoggerControllerService {
|
|
9596
9697
|
constructor(httpClient, basePath, configuration) {
|
|
9597
9698
|
this.httpClient = httpClient;
|
|
9598
|
-
this.basePath = 'https://
|
|
9699
|
+
this.basePath = 'https://apiv2stage7.atomex.net';
|
|
9599
9700
|
this.defaultHeaders = new HttpHeaders();
|
|
9600
9701
|
this.configuration = new Configuration();
|
|
9601
9702
|
if (basePath) {
|
|
@@ -9687,7 +9788,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
9687
9788
|
class UserPreferenceControllerService {
|
|
9688
9789
|
constructor(httpClient, basePath, configuration) {
|
|
9689
9790
|
this.httpClient = httpClient;
|
|
9690
|
-
this.basePath = 'https://
|
|
9791
|
+
this.basePath = 'https://apiv2stage7.atomex.net';
|
|
9691
9792
|
this.defaultHeaders = new HttpHeaders();
|
|
9692
9793
|
this.configuration = new Configuration();
|
|
9693
9794
|
if (basePath) {
|
|
@@ -9846,7 +9947,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
9846
9947
|
type: Optional
|
|
9847
9948
|
}] }]; } });
|
|
9848
9949
|
|
|
9849
|
-
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];
|
|
9950
|
+
const APIS = [AdminControllerService, AdvertiserControllerService, AppSettingsControllerService, AppsFlyerControllerService, 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];
|
|
9850
9951
|
|
|
9851
9952
|
var ABTestingDTO;
|
|
9852
9953
|
(function (ABTestingDTO) {
|
|
@@ -11671,6 +11772,18 @@ var MetaRuleDto;
|
|
|
11671
11772
|
* Do not edit the class manually.
|
|
11672
11773
|
*/
|
|
11673
11774
|
|
|
11775
|
+
/**
|
|
11776
|
+
* Api Documentation
|
|
11777
|
+
* Api Documentation
|
|
11778
|
+
*
|
|
11779
|
+
* OpenAPI spec version: 1.0
|
|
11780
|
+
*
|
|
11781
|
+
*
|
|
11782
|
+
* NOTE: This class is auto generated by the swagger code generator program.
|
|
11783
|
+
* https://github.com/swagger-api/swagger-codegen.git
|
|
11784
|
+
* Do not edit the class manually.
|
|
11785
|
+
*/
|
|
11786
|
+
|
|
11674
11787
|
/**
|
|
11675
11788
|
* Api Documentation
|
|
11676
11789
|
* Api Documentation
|
|
@@ -12589,6 +12702,18 @@ var VastCreative;
|
|
|
12589
12702
|
* Do not edit the class manually.
|
|
12590
12703
|
*/
|
|
12591
12704
|
|
|
12705
|
+
/**
|
|
12706
|
+
* Api Documentation
|
|
12707
|
+
* Api Documentation
|
|
12708
|
+
*
|
|
12709
|
+
* OpenAPI spec version: 1.0
|
|
12710
|
+
*
|
|
12711
|
+
*
|
|
12712
|
+
* NOTE: This class is auto generated by the swagger code generator program.
|
|
12713
|
+
* https://github.com/swagger-api/swagger-codegen.git
|
|
12714
|
+
* Do not edit the class manually.
|
|
12715
|
+
*/
|
|
12716
|
+
|
|
12592
12717
|
/**
|
|
12593
12718
|
* Api Documentation
|
|
12594
12719
|
* Api Documentation
|
|
@@ -12755,6 +12880,7 @@ ApiModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.
|
|
|
12755
12880
|
AdminControllerService,
|
|
12756
12881
|
AdvertiserControllerService,
|
|
12757
12882
|
AppSettingsControllerService,
|
|
12883
|
+
AppsFlyerControllerService,
|
|
12758
12884
|
AudienceControllerService,
|
|
12759
12885
|
AuditControllerService,
|
|
12760
12886
|
BidFunnelControllerService,
|
|
@@ -12792,6 +12918,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
12792
12918
|
AdminControllerService,
|
|
12793
12919
|
AdvertiserControllerService,
|
|
12794
12920
|
AppSettingsControllerService,
|
|
12921
|
+
AppsFlyerControllerService,
|
|
12795
12922
|
AudienceControllerService,
|
|
12796
12923
|
AuditControllerService,
|
|
12797
12924
|
BidFunnelControllerService,
|
|
@@ -12832,5 +12959,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
12832
12959
|
* Generated bundle index. Do not edit.
|
|
12833
12960
|
*/
|
|
12834
12961
|
|
|
12835
|
-
export { ABTestingDTO, ABTestingResponseDetails, ABTestingVariantDTO, APIS, ActivityLogsCreativeSetsBulkUpdateDTO, ActivityLogsStrategyBulkUpdateDTO, AdminControllerService, AdvertiserAppSettingsDTO, 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, CreativeEntity, 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, JsonNode, LookAlikeAudienceConfigDTO, Macro, MetaRuleDto, NotificationResponse, NotificationsControllerService, OptimizationRuleAuditLogDTO, OptimizationRuleDTO, PixelControllerService, PixelDataFileDTO, PlatformClickSigningConfig, RecencyTargetingDTO, 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 };
|
|
12962
|
+
export { ABTestingDTO, ABTestingResponseDetails, ABTestingVariantDTO, APIS, ActivityLogsCreativeSetsBulkUpdateDTO, ActivityLogsStrategyBulkUpdateDTO, AdminControllerService, AdvertiserAppSettingsDTO, AdvertiserCohortDTO, AdvertiserCohortResponse, AdvertiserControllerService, ApiModule, AppSettingsControllerService, AppSettingsDTO, AppSettingsPropertyDTO, AppsFlyerControllerService, 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, CreativeEntity, 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, JsonNode, LookAlikeAudienceConfigDTO, Macro, MetaRuleDto, NotificationResponse, NotificationsControllerService, OptimizationRuleAuditLogDTO, OptimizationRuleDTO, PixelControllerService, PixelDataFileDTO, PlatformClickSigningConfig, RecencyTargetingDTO, 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 };
|
|
12836
12963
|
//# sourceMappingURL=revxui-api-clients-ts.mjs.map
|