@revxui/api-clients-ts 1.1.425 → 1.1.427
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/auditController.service.d.ts +3 -8
- package/api/safeguardController.service.d.ts +177 -0
- 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 +2 -2
- package/esm2020/api/audienceController.service.mjs +2 -2
- package/esm2020/api/auditController.service.mjs +3 -18
- 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/safeguardController.service.mjs +452 -0
- 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/apiResponseObjectListMapstringobject.mjs +2 -0
- package/esm2020/model/apiResponseObjectListSafeguardDetail.mjs +2 -0
- package/esm2020/model/apiResponseObjectListSafeguardExclusionDTO.mjs +2 -0
- package/esm2020/model/apiResponseObjectListSafeguardRuleExecutionLogEntity.mjs +2 -0
- package/esm2020/model/apiResponseObjectListSafeguardRuleMasterEntity.mjs +2 -0
- package/esm2020/model/apiResponseObjectMaplongstring.mjs +13 -0
- package/esm2020/model/apiResponseObjectSafeguardDetail.mjs +2 -0
- package/esm2020/model/apiResponseObjectSafeguardExclusionDTO.mjs +2 -0
- package/esm2020/model/apiResponseObjectSafeguardResponseDTO.mjs +2 -0
- package/esm2020/model/maplongstring.mjs +13 -0
- package/esm2020/model/models.mjs +18 -1
- package/esm2020/model/safeguardDetail.mjs +19 -0
- package/esm2020/model/safeguardEntity.mjs +19 -0
- package/esm2020/model/safeguardExclusionDTO.mjs +8 -0
- package/esm2020/model/safeguardRequestDTO.mjs +8 -0
- package/esm2020/model/safeguardResponseDTO.mjs +8 -0
- package/esm2020/model/safeguardRuleExecutionLogEntity.mjs +8 -0
- package/esm2020/model/safeguardRuleMasterEntity.mjs +13 -0
- package/esm2020/model/siteModel.mjs +1 -1
- package/esm2020/model/statusBaseObject.mjs +1 -1
- package/fesm2015/revxui-api-clients-ts.mjs +551 -48
- package/fesm2015/revxui-api-clients-ts.mjs.map +1 -1
- package/fesm2020/revxui-api-clients-ts.mjs +585 -48
- package/fesm2020/revxui-api-clients-ts.mjs.map +1 -1
- package/model/apiResponseObjectListMapstringobject.d.ts +17 -0
- package/model/apiResponseObjectListSafeguardDetail.d.ts +17 -0
- package/model/apiResponseObjectListSafeguardExclusionDTO.d.ts +17 -0
- package/model/apiResponseObjectListSafeguardRuleExecutionLogEntity.d.ts +17 -0
- package/model/apiResponseObjectListSafeguardRuleMasterEntity.d.ts +17 -0
- package/model/apiResponseObjectMaplongstring.d.ts +18 -0
- package/model/apiResponseObjectSafeguardDetail.d.ts +17 -0
- package/model/apiResponseObjectSafeguardExclusionDTO.d.ts +17 -0
- package/model/apiResponseObjectSafeguardResponseDTO.d.ts +17 -0
- package/model/maplongstring.d.ts +14 -0
- package/model/models.d.ts +17 -0
- package/model/safeguardDetail.d.ts +34 -0
- package/model/safeguardEntity.d.ts +31 -0
- package/model/safeguardExclusionDTO.d.ts +25 -0
- package/model/safeguardRequestDTO.d.ts +31 -0
- package/model/safeguardResponseDTO.d.ts +32 -0
- package/model/safeguardRuleExecutionLogEntity.d.ts +30 -0
- package/model/safeguardRuleMasterEntity.d.ts +19 -0
- package/model/siteModel.d.ts +0 -2
- package/model/statusBaseObject.d.ts +0 -2
- 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 AppsFlyerControllerService {
|
|
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) {
|
|
@@ -1160,7 +1160,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
1160
1160
|
class AudienceControllerService {
|
|
1161
1161
|
constructor(httpClient, basePath, configuration) {
|
|
1162
1162
|
this.httpClient = httpClient;
|
|
1163
|
-
this.basePath = 'https://
|
|
1163
|
+
this.basePath = 'https://apiv2stage3.atomex.net';
|
|
1164
1164
|
this.defaultHeaders = new HttpHeaders();
|
|
1165
1165
|
this.configuration = new Configuration();
|
|
1166
1166
|
if (basePath) {
|
|
@@ -2036,7 +2036,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
2036
2036
|
class AuditControllerService {
|
|
2037
2037
|
constructor(httpClient, basePath, configuration) {
|
|
2038
2038
|
this.httpClient = httpClient;
|
|
2039
|
-
this.basePath = 'https://
|
|
2039
|
+
this.basePath = 'https://apiv2stage3.atomex.net';
|
|
2040
2040
|
this.defaultHeaders = new HttpHeaders();
|
|
2041
2041
|
this.configuration = new Configuration();
|
|
2042
2042
|
if (basePath) {
|
|
@@ -2156,17 +2156,8 @@ class AuditControllerService {
|
|
|
2156
2156
|
reportProgress: reportProgress
|
|
2157
2157
|
});
|
|
2158
2158
|
}
|
|
2159
|
-
getUserActivityLogUsingGET(
|
|
2159
|
+
getUserActivityLogUsingGET(entities, pageNumber, pageSize, reqId, token, observe = 'body', reportProgress = false) {
|
|
2160
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
|
-
}
|
|
2170
2161
|
if (entities !== undefined && entities !== null) {
|
|
2171
2162
|
queryParameters = queryParameters.set('entities', entities);
|
|
2172
2163
|
}
|
|
@@ -2176,12 +2167,6 @@ class AuditControllerService {
|
|
|
2176
2167
|
if (pageSize !== undefined && pageSize !== null) {
|
|
2177
2168
|
queryParameters = queryParameters.set('pageSize', pageSize);
|
|
2178
2169
|
}
|
|
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
|
-
}
|
|
2185
2170
|
let headers = this.defaultHeaders;
|
|
2186
2171
|
if (reqId !== undefined && reqId !== null) {
|
|
2187
2172
|
headers = headers.set('reqId', String(reqId));
|
|
@@ -2236,7 +2221,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
2236
2221
|
class BidFunnelControllerService {
|
|
2237
2222
|
constructor(httpClient, basePath, configuration) {
|
|
2238
2223
|
this.httpClient = httpClient;
|
|
2239
|
-
this.basePath = 'https://
|
|
2224
|
+
this.basePath = 'https://apiv2stage3.atomex.net';
|
|
2240
2225
|
this.defaultHeaders = new HttpHeaders();
|
|
2241
2226
|
this.configuration = new Configuration();
|
|
2242
2227
|
if (basePath) {
|
|
@@ -2385,7 +2370,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
2385
2370
|
class BulkStrategyControllerService {
|
|
2386
2371
|
constructor(httpClient, basePath, configuration) {
|
|
2387
2372
|
this.httpClient = httpClient;
|
|
2388
|
-
this.basePath = 'https://
|
|
2373
|
+
this.basePath = 'https://apiv2stage3.atomex.net';
|
|
2389
2374
|
this.defaultHeaders = new HttpHeaders();
|
|
2390
2375
|
this.configuration = new Configuration();
|
|
2391
2376
|
if (basePath) {
|
|
@@ -2610,7 +2595,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
2610
2595
|
class CSSThemeController_Service {
|
|
2611
2596
|
constructor(httpClient, basePath, configuration) {
|
|
2612
2597
|
this.httpClient = httpClient;
|
|
2613
|
-
this.basePath = 'https://
|
|
2598
|
+
this.basePath = 'https://apiv2stage3.atomex.net';
|
|
2614
2599
|
this.defaultHeaders = new HttpHeaders();
|
|
2615
2600
|
this.configuration = new Configuration();
|
|
2616
2601
|
if (basePath) {
|
|
@@ -2719,7 +2704,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
2719
2704
|
class CampaignControllerService {
|
|
2720
2705
|
constructor(httpClient, basePath, configuration) {
|
|
2721
2706
|
this.httpClient = httpClient;
|
|
2722
|
-
this.basePath = 'https://
|
|
2707
|
+
this.basePath = 'https://apiv2stage3.atomex.net';
|
|
2723
2708
|
this.defaultHeaders = new HttpHeaders();
|
|
2724
2709
|
this.configuration = new Configuration();
|
|
2725
2710
|
if (basePath) {
|
|
@@ -3160,7 +3145,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
3160
3145
|
class CatalogControllerService {
|
|
3161
3146
|
constructor(httpClient, basePath, configuration) {
|
|
3162
3147
|
this.httpClient = httpClient;
|
|
3163
|
-
this.basePath = 'https://
|
|
3148
|
+
this.basePath = 'https://apiv2stage3.atomex.net';
|
|
3164
3149
|
this.defaultHeaders = new HttpHeaders();
|
|
3165
3150
|
this.configuration = new Configuration();
|
|
3166
3151
|
if (basePath) {
|
|
@@ -3403,7 +3388,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
3403
3388
|
class ClickDestinationControllerService {
|
|
3404
3389
|
constructor(httpClient, basePath, configuration) {
|
|
3405
3390
|
this.httpClient = httpClient;
|
|
3406
|
-
this.basePath = 'https://
|
|
3391
|
+
this.basePath = 'https://apiv2stage3.atomex.net';
|
|
3407
3392
|
this.defaultHeaders = new HttpHeaders();
|
|
3408
3393
|
this.configuration = new Configuration();
|
|
3409
3394
|
if (basePath) {
|
|
@@ -3635,7 +3620,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
3635
3620
|
class CreativeControllerService {
|
|
3636
3621
|
constructor(httpClient, basePath, configuration) {
|
|
3637
3622
|
this.httpClient = httpClient;
|
|
3638
|
-
this.basePath = 'https://
|
|
3623
|
+
this.basePath = 'https://apiv2stage3.atomex.net';
|
|
3639
3624
|
this.defaultHeaders = new HttpHeaders();
|
|
3640
3625
|
this.configuration = new Configuration();
|
|
3641
3626
|
if (basePath) {
|
|
@@ -4238,7 +4223,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
4238
4223
|
class CreativeSetsControllerService {
|
|
4239
4224
|
constructor(httpClient, basePath, configuration) {
|
|
4240
4225
|
this.httpClient = httpClient;
|
|
4241
|
-
this.basePath = 'https://
|
|
4226
|
+
this.basePath = 'https://apiv2stage3.atomex.net';
|
|
4242
4227
|
this.defaultHeaders = new HttpHeaders();
|
|
4243
4228
|
this.configuration = new Configuration();
|
|
4244
4229
|
if (basePath) {
|
|
@@ -4884,7 +4869,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
4884
4869
|
class CreativeTemplateThemesControllerService {
|
|
4885
4870
|
constructor(httpClient, basePath, configuration) {
|
|
4886
4871
|
this.httpClient = httpClient;
|
|
4887
|
-
this.basePath = 'https://
|
|
4872
|
+
this.basePath = 'https://apiv2stage3.atomex.net';
|
|
4888
4873
|
this.defaultHeaders = new HttpHeaders();
|
|
4889
4874
|
this.configuration = new Configuration();
|
|
4890
4875
|
if (basePath) {
|
|
@@ -5069,7 +5054,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
5069
5054
|
class CreativeTemplateVariablesControllerService {
|
|
5070
5055
|
constructor(httpClient, basePath, configuration) {
|
|
5071
5056
|
this.httpClient = httpClient;
|
|
5072
|
-
this.basePath = 'https://
|
|
5057
|
+
this.basePath = 'https://apiv2stage3.atomex.net';
|
|
5073
5058
|
this.defaultHeaders = new HttpHeaders();
|
|
5074
5059
|
this.configuration = new Configuration();
|
|
5075
5060
|
if (basePath) {
|
|
@@ -5147,7 +5132,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
5147
5132
|
class CreativeTemplatesControllerService {
|
|
5148
5133
|
constructor(httpClient, basePath, configuration) {
|
|
5149
5134
|
this.httpClient = httpClient;
|
|
5150
|
-
this.basePath = 'https://
|
|
5135
|
+
this.basePath = 'https://apiv2stage3.atomex.net';
|
|
5151
5136
|
this.defaultHeaders = new HttpHeaders();
|
|
5152
5137
|
this.configuration = new Configuration();
|
|
5153
5138
|
if (basePath) {
|
|
@@ -5312,7 +5297,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
5312
5297
|
class CustomerReportingControllerService {
|
|
5313
5298
|
constructor(httpClient, basePath, configuration) {
|
|
5314
5299
|
this.httpClient = httpClient;
|
|
5315
|
-
this.basePath = 'https://
|
|
5300
|
+
this.basePath = 'https://apiv2stage3.atomex.net';
|
|
5316
5301
|
this.defaultHeaders = new HttpHeaders();
|
|
5317
5302
|
this.configuration = new Configuration();
|
|
5318
5303
|
if (basePath) {
|
|
@@ -5475,7 +5460,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
5475
5460
|
class DashboardControllerService {
|
|
5476
5461
|
constructor(httpClient, basePath, configuration) {
|
|
5477
5462
|
this.httpClient = httpClient;
|
|
5478
|
-
this.basePath = 'https://
|
|
5463
|
+
this.basePath = 'https://apiv2stage3.atomex.net';
|
|
5479
5464
|
this.defaultHeaders = new HttpHeaders();
|
|
5480
5465
|
this.configuration = new Configuration();
|
|
5481
5466
|
if (basePath) {
|
|
@@ -6133,7 +6118,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
6133
6118
|
class ExperimentsControllerService {
|
|
6134
6119
|
constructor(httpClient, basePath, configuration) {
|
|
6135
6120
|
this.httpClient = httpClient;
|
|
6136
|
-
this.basePath = 'https://
|
|
6121
|
+
this.basePath = 'https://apiv2stage3.atomex.net';
|
|
6137
6122
|
this.defaultHeaders = new HttpHeaders();
|
|
6138
6123
|
this.configuration = new Configuration();
|
|
6139
6124
|
if (basePath) {
|
|
@@ -6860,7 +6845,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
6860
6845
|
class NotificationsControllerService {
|
|
6861
6846
|
constructor(httpClient, basePath, configuration) {
|
|
6862
6847
|
this.httpClient = httpClient;
|
|
6863
|
-
this.basePath = 'https://
|
|
6848
|
+
this.basePath = 'https://apiv2stage3.atomex.net';
|
|
6864
6849
|
this.defaultHeaders = new HttpHeaders();
|
|
6865
6850
|
this.configuration = new Configuration();
|
|
6866
6851
|
if (basePath) {
|
|
@@ -7073,7 +7058,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
7073
7058
|
class PixelControllerService {
|
|
7074
7059
|
constructor(httpClient, basePath, configuration) {
|
|
7075
7060
|
this.httpClient = httpClient;
|
|
7076
|
-
this.basePath = 'https://
|
|
7061
|
+
this.basePath = 'https://apiv2stage3.atomex.net';
|
|
7077
7062
|
this.defaultHeaders = new HttpHeaders();
|
|
7078
7063
|
this.configuration = new Configuration();
|
|
7079
7064
|
if (basePath) {
|
|
@@ -7380,7 +7365,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
7380
7365
|
class ReportControllerService {
|
|
7381
7366
|
constructor(httpClient, basePath, configuration) {
|
|
7382
7367
|
this.httpClient = httpClient;
|
|
7383
|
-
this.basePath = 'https://
|
|
7368
|
+
this.basePath = 'https://apiv2stage3.atomex.net';
|
|
7384
7369
|
this.defaultHeaders = new HttpHeaders();
|
|
7385
7370
|
this.configuration = new Configuration();
|
|
7386
7371
|
if (basePath) {
|
|
@@ -7517,7 +7502,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
7517
7502
|
class ReportingControllerService {
|
|
7518
7503
|
constructor(httpClient, basePath, configuration) {
|
|
7519
7504
|
this.httpClient = httpClient;
|
|
7520
|
-
this.basePath = 'https://
|
|
7505
|
+
this.basePath = 'https://apiv2stage3.atomex.net';
|
|
7521
7506
|
this.defaultHeaders = new HttpHeaders();
|
|
7522
7507
|
this.configuration = new Configuration();
|
|
7523
7508
|
if (basePath) {
|
|
@@ -7687,7 +7672,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
7687
7672
|
class ReportingSchedulerControllerService {
|
|
7688
7673
|
constructor(httpClient, basePath, configuration) {
|
|
7689
7674
|
this.httpClient = httpClient;
|
|
7690
|
-
this.basePath = 'https://
|
|
7675
|
+
this.basePath = 'https://apiv2stage3.atomex.net';
|
|
7691
7676
|
this.defaultHeaders = new HttpHeaders();
|
|
7692
7677
|
this.configuration = new Configuration();
|
|
7693
7678
|
if (basePath) {
|
|
@@ -7987,6 +7972,450 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
7987
7972
|
type: Optional
|
|
7988
7973
|
}] }]; } });
|
|
7989
7974
|
|
|
7975
|
+
/**
|
|
7976
|
+
* Api Documentation
|
|
7977
|
+
* Api Documentation
|
|
7978
|
+
*
|
|
7979
|
+
* OpenAPI spec version: 1.0
|
|
7980
|
+
*
|
|
7981
|
+
*
|
|
7982
|
+
* NOTE: This class is auto generated by the swagger code generator program.
|
|
7983
|
+
* https://github.com/swagger-api/swagger-codegen.git
|
|
7984
|
+
* Do not edit the class manually.
|
|
7985
|
+
*/
|
|
7986
|
+
/* tslint:disable:no-unused-variable member-ordering */
|
|
7987
|
+
class SafeguardControllerService {
|
|
7988
|
+
constructor(httpClient, basePath, configuration) {
|
|
7989
|
+
this.httpClient = httpClient;
|
|
7990
|
+
this.basePath = 'https://apiv2stage3.atomex.net';
|
|
7991
|
+
this.defaultHeaders = new HttpHeaders();
|
|
7992
|
+
this.configuration = new Configuration();
|
|
7993
|
+
if (basePath) {
|
|
7994
|
+
this.basePath = basePath;
|
|
7995
|
+
}
|
|
7996
|
+
if (configuration) {
|
|
7997
|
+
this.configuration = configuration;
|
|
7998
|
+
this.basePath = basePath || configuration.basePath || this.basePath;
|
|
7999
|
+
}
|
|
8000
|
+
}
|
|
8001
|
+
/**
|
|
8002
|
+
* @param consumes string[] mime-types
|
|
8003
|
+
* @return true: consumes contains 'multipart/form-data', false: otherwise
|
|
8004
|
+
*/
|
|
8005
|
+
canConsumeForm(consumes) {
|
|
8006
|
+
const form = 'multipart/form-data';
|
|
8007
|
+
for (const consume of consumes) {
|
|
8008
|
+
if (form === consume) {
|
|
8009
|
+
return true;
|
|
8010
|
+
}
|
|
8011
|
+
}
|
|
8012
|
+
return false;
|
|
8013
|
+
}
|
|
8014
|
+
createSafeguardExclusionListUsingPOST(safeguardExclusionDTO, reqId, token, observe = 'body', reportProgress = false) {
|
|
8015
|
+
if (safeguardExclusionDTO === null || safeguardExclusionDTO === undefined) {
|
|
8016
|
+
throw new Error('Required parameter safeguardExclusionDTO was null or undefined when calling createSafeguardExclusionListUsingPOST.');
|
|
8017
|
+
}
|
|
8018
|
+
let headers = this.defaultHeaders;
|
|
8019
|
+
if (reqId !== undefined && reqId !== null) {
|
|
8020
|
+
headers = headers.set('reqId', String(reqId));
|
|
8021
|
+
}
|
|
8022
|
+
if (token !== undefined && token !== null) {
|
|
8023
|
+
headers = headers.set('token', String(token));
|
|
8024
|
+
}
|
|
8025
|
+
// to determine the Accept header
|
|
8026
|
+
let httpHeaderAccepts = [
|
|
8027
|
+
'application/json'
|
|
8028
|
+
];
|
|
8029
|
+
const httpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
|
|
8030
|
+
if (httpHeaderAcceptSelected != undefined) {
|
|
8031
|
+
headers = headers.set('Accept', httpHeaderAcceptSelected);
|
|
8032
|
+
}
|
|
8033
|
+
// to determine the Content-Type header
|
|
8034
|
+
const consumes = [
|
|
8035
|
+
'application/json'
|
|
8036
|
+
];
|
|
8037
|
+
const httpContentTypeSelected = this.configuration.selectHeaderContentType(consumes);
|
|
8038
|
+
if (httpContentTypeSelected != undefined) {
|
|
8039
|
+
headers = headers.set('Content-Type', httpContentTypeSelected);
|
|
8040
|
+
}
|
|
8041
|
+
return this.httpClient.post(`${this.basePath}/v2/api/safeguard/exclusion/create`, safeguardExclusionDTO, {
|
|
8042
|
+
withCredentials: this.configuration.withCredentials,
|
|
8043
|
+
headers: headers,
|
|
8044
|
+
observe: observe,
|
|
8045
|
+
reportProgress: reportProgress
|
|
8046
|
+
});
|
|
8047
|
+
}
|
|
8048
|
+
createSafeguardRuleUsingPOST(safeguardRequestDTO, reqId, token, observe = 'body', reportProgress = false) {
|
|
8049
|
+
if (safeguardRequestDTO === null || safeguardRequestDTO === undefined) {
|
|
8050
|
+
throw new Error('Required parameter safeguardRequestDTO was null or undefined when calling createSafeguardRuleUsingPOST.');
|
|
8051
|
+
}
|
|
8052
|
+
let headers = this.defaultHeaders;
|
|
8053
|
+
if (reqId !== undefined && reqId !== null) {
|
|
8054
|
+
headers = headers.set('reqId', String(reqId));
|
|
8055
|
+
}
|
|
8056
|
+
if (token !== undefined && token !== null) {
|
|
8057
|
+
headers = headers.set('token', String(token));
|
|
8058
|
+
}
|
|
8059
|
+
// to determine the Accept header
|
|
8060
|
+
let httpHeaderAccepts = [
|
|
8061
|
+
'application/json'
|
|
8062
|
+
];
|
|
8063
|
+
const httpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
|
|
8064
|
+
if (httpHeaderAcceptSelected != undefined) {
|
|
8065
|
+
headers = headers.set('Accept', httpHeaderAcceptSelected);
|
|
8066
|
+
}
|
|
8067
|
+
// to determine the Content-Type header
|
|
8068
|
+
const consumes = [
|
|
8069
|
+
'application/json'
|
|
8070
|
+
];
|
|
8071
|
+
const httpContentTypeSelected = this.configuration.selectHeaderContentType(consumes);
|
|
8072
|
+
if (httpContentTypeSelected != undefined) {
|
|
8073
|
+
headers = headers.set('Content-Type', httpContentTypeSelected);
|
|
8074
|
+
}
|
|
8075
|
+
return this.httpClient.post(`${this.basePath}/v2/api/safeguard/create`, safeguardRequestDTO, {
|
|
8076
|
+
withCredentials: this.configuration.withCredentials,
|
|
8077
|
+
headers: headers,
|
|
8078
|
+
observe: observe,
|
|
8079
|
+
reportProgress: reportProgress
|
|
8080
|
+
});
|
|
8081
|
+
}
|
|
8082
|
+
getBlockedItemDetailsUsingGET(safeguardId, reqId, token, observe = 'body', reportProgress = false) {
|
|
8083
|
+
if (safeguardId === null || safeguardId === undefined) {
|
|
8084
|
+
throw new Error('Required parameter safeguardId was null or undefined when calling getBlockedItemDetailsUsingGET.');
|
|
8085
|
+
}
|
|
8086
|
+
let headers = this.defaultHeaders;
|
|
8087
|
+
if (reqId !== undefined && reqId !== null) {
|
|
8088
|
+
headers = headers.set('reqId', String(reqId));
|
|
8089
|
+
}
|
|
8090
|
+
if (token !== undefined && token !== null) {
|
|
8091
|
+
headers = headers.set('token', String(token));
|
|
8092
|
+
}
|
|
8093
|
+
// to determine the Accept header
|
|
8094
|
+
let httpHeaderAccepts = [
|
|
8095
|
+
'application/json'
|
|
8096
|
+
];
|
|
8097
|
+
const httpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
|
|
8098
|
+
if (httpHeaderAcceptSelected != undefined) {
|
|
8099
|
+
headers = headers.set('Accept', httpHeaderAcceptSelected);
|
|
8100
|
+
}
|
|
8101
|
+
// to determine the Content-Type header
|
|
8102
|
+
const consumes = [];
|
|
8103
|
+
return this.httpClient.get(`${this.basePath}/v2/api/safeguard/blocked_entities/${encodeURIComponent(String(safeguardId))}/`, {
|
|
8104
|
+
withCredentials: this.configuration.withCredentials,
|
|
8105
|
+
headers: headers,
|
|
8106
|
+
observe: observe,
|
|
8107
|
+
reportProgress: reportProgress
|
|
8108
|
+
});
|
|
8109
|
+
}
|
|
8110
|
+
getSafeguardExclusionListUsingGET(campaignId, reqId, token, observe = 'body', reportProgress = false) {
|
|
8111
|
+
if (campaignId === null || campaignId === undefined) {
|
|
8112
|
+
throw new Error('Required parameter campaignId was null or undefined when calling getSafeguardExclusionListUsingGET.');
|
|
8113
|
+
}
|
|
8114
|
+
let headers = this.defaultHeaders;
|
|
8115
|
+
if (reqId !== undefined && reqId !== null) {
|
|
8116
|
+
headers = headers.set('reqId', String(reqId));
|
|
8117
|
+
}
|
|
8118
|
+
if (token !== undefined && token !== null) {
|
|
8119
|
+
headers = headers.set('token', String(token));
|
|
8120
|
+
}
|
|
8121
|
+
// to determine the Accept header
|
|
8122
|
+
let httpHeaderAccepts = [
|
|
8123
|
+
'application/json'
|
|
8124
|
+
];
|
|
8125
|
+
const httpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
|
|
8126
|
+
if (httpHeaderAcceptSelected != undefined) {
|
|
8127
|
+
headers = headers.set('Accept', httpHeaderAcceptSelected);
|
|
8128
|
+
}
|
|
8129
|
+
// to determine the Content-Type header
|
|
8130
|
+
const consumes = [];
|
|
8131
|
+
return this.httpClient.get(`${this.basePath}/v2/api/safeguard/exclusion/get/${encodeURIComponent(String(campaignId))}/`, {
|
|
8132
|
+
withCredentials: this.configuration.withCredentials,
|
|
8133
|
+
headers: headers,
|
|
8134
|
+
observe: observe,
|
|
8135
|
+
reportProgress: reportProgress
|
|
8136
|
+
});
|
|
8137
|
+
}
|
|
8138
|
+
getSafeguardRuleDetailsUsingGET(safeguardId, reqId, token, observe = 'body', reportProgress = false) {
|
|
8139
|
+
if (safeguardId === null || safeguardId === undefined) {
|
|
8140
|
+
throw new Error('Required parameter safeguardId was null or undefined when calling getSafeguardRuleDetailsUsingGET.');
|
|
8141
|
+
}
|
|
8142
|
+
let headers = this.defaultHeaders;
|
|
8143
|
+
if (reqId !== undefined && reqId !== null) {
|
|
8144
|
+
headers = headers.set('reqId', String(reqId));
|
|
8145
|
+
}
|
|
8146
|
+
if (token !== undefined && token !== null) {
|
|
8147
|
+
headers = headers.set('token', String(token));
|
|
8148
|
+
}
|
|
8149
|
+
// to determine the Accept header
|
|
8150
|
+
let httpHeaderAccepts = [
|
|
8151
|
+
'application/json'
|
|
8152
|
+
];
|
|
8153
|
+
const httpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
|
|
8154
|
+
if (httpHeaderAcceptSelected != undefined) {
|
|
8155
|
+
headers = headers.set('Accept', httpHeaderAcceptSelected);
|
|
8156
|
+
}
|
|
8157
|
+
// to determine the Content-Type header
|
|
8158
|
+
const consumes = [];
|
|
8159
|
+
return this.httpClient.get(`${this.basePath}/v2/api/safeguard/detail/${encodeURIComponent(String(safeguardId))}/`, {
|
|
8160
|
+
withCredentials: this.configuration.withCredentials,
|
|
8161
|
+
headers: headers,
|
|
8162
|
+
observe: observe,
|
|
8163
|
+
reportProgress: reportProgress
|
|
8164
|
+
});
|
|
8165
|
+
}
|
|
8166
|
+
getSafeguardRuleFiltersUsingGET(reqId, token, observe = 'body', reportProgress = false) {
|
|
8167
|
+
let headers = this.defaultHeaders;
|
|
8168
|
+
if (reqId !== undefined && reqId !== null) {
|
|
8169
|
+
headers = headers.set('reqId', String(reqId));
|
|
8170
|
+
}
|
|
8171
|
+
if (token !== undefined && token !== null) {
|
|
8172
|
+
headers = headers.set('token', String(token));
|
|
8173
|
+
}
|
|
8174
|
+
// to determine the Accept header
|
|
8175
|
+
let httpHeaderAccepts = [
|
|
8176
|
+
'application/json'
|
|
8177
|
+
];
|
|
8178
|
+
const httpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
|
|
8179
|
+
if (httpHeaderAcceptSelected != undefined) {
|
|
8180
|
+
headers = headers.set('Accept', httpHeaderAcceptSelected);
|
|
8181
|
+
}
|
|
8182
|
+
// to determine the Content-Type header
|
|
8183
|
+
const consumes = [];
|
|
8184
|
+
return this.httpClient.get(`${this.basePath}/v2/api/safeguard/filters`, {
|
|
8185
|
+
withCredentials: this.configuration.withCredentials,
|
|
8186
|
+
headers: headers,
|
|
8187
|
+
observe: observe,
|
|
8188
|
+
reportProgress: reportProgress
|
|
8189
|
+
});
|
|
8190
|
+
}
|
|
8191
|
+
getSafeguardRulesListUsingGET(entity, id, reqId, token, observe = 'body', reportProgress = false) {
|
|
8192
|
+
if (entity === null || entity === undefined) {
|
|
8193
|
+
throw new Error('Required parameter entity was null or undefined when calling getSafeguardRulesListUsingGET.');
|
|
8194
|
+
}
|
|
8195
|
+
if (id === null || id === undefined) {
|
|
8196
|
+
throw new Error('Required parameter id was null or undefined when calling getSafeguardRulesListUsingGET.');
|
|
8197
|
+
}
|
|
8198
|
+
let queryParameters = new HttpParams({ encoder: new CustomHttpUrlEncodingCodec() });
|
|
8199
|
+
if (entity !== undefined && entity !== null) {
|
|
8200
|
+
queryParameters = queryParameters.set('entity', entity);
|
|
8201
|
+
}
|
|
8202
|
+
if (id !== undefined && id !== null) {
|
|
8203
|
+
queryParameters = queryParameters.set('id', id);
|
|
8204
|
+
}
|
|
8205
|
+
let headers = this.defaultHeaders;
|
|
8206
|
+
if (reqId !== undefined && reqId !== null) {
|
|
8207
|
+
headers = headers.set('reqId', String(reqId));
|
|
8208
|
+
}
|
|
8209
|
+
if (token !== undefined && token !== null) {
|
|
8210
|
+
headers = headers.set('token', String(token));
|
|
8211
|
+
}
|
|
8212
|
+
// to determine the Accept header
|
|
8213
|
+
let httpHeaderAccepts = [
|
|
8214
|
+
'application/json'
|
|
8215
|
+
];
|
|
8216
|
+
const httpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
|
|
8217
|
+
if (httpHeaderAcceptSelected != undefined) {
|
|
8218
|
+
headers = headers.set('Accept', httpHeaderAcceptSelected);
|
|
8219
|
+
}
|
|
8220
|
+
// to determine the Content-Type header
|
|
8221
|
+
const consumes = [];
|
|
8222
|
+
return this.httpClient.get(`${this.basePath}/v2/api/safeguard/list`, {
|
|
8223
|
+
params: queryParameters,
|
|
8224
|
+
withCredentials: this.configuration.withCredentials,
|
|
8225
|
+
headers: headers,
|
|
8226
|
+
observe: observe,
|
|
8227
|
+
reportProgress: reportProgress
|
|
8228
|
+
});
|
|
8229
|
+
}
|
|
8230
|
+
safeguardRuleRunNowUsingGET(safeguardId, reqId, token, observe = 'body', reportProgress = false) {
|
|
8231
|
+
if (safeguardId === null || safeguardId === undefined) {
|
|
8232
|
+
throw new Error('Required parameter safeguardId was null or undefined when calling safeguardRuleRunNowUsingGET.');
|
|
8233
|
+
}
|
|
8234
|
+
let headers = this.defaultHeaders;
|
|
8235
|
+
if (reqId !== undefined && reqId !== null) {
|
|
8236
|
+
headers = headers.set('reqId', String(reqId));
|
|
8237
|
+
}
|
|
8238
|
+
if (token !== undefined && token !== null) {
|
|
8239
|
+
headers = headers.set('token', String(token));
|
|
8240
|
+
}
|
|
8241
|
+
// to determine the Accept header
|
|
8242
|
+
let httpHeaderAccepts = [
|
|
8243
|
+
'application/json'
|
|
8244
|
+
];
|
|
8245
|
+
const httpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
|
|
8246
|
+
if (httpHeaderAcceptSelected != undefined) {
|
|
8247
|
+
headers = headers.set('Accept', httpHeaderAcceptSelected);
|
|
8248
|
+
}
|
|
8249
|
+
// to determine the Content-Type header
|
|
8250
|
+
const consumes = [];
|
|
8251
|
+
return this.httpClient.get(`${this.basePath}/v2/api/safeguard/run_now/${encodeURIComponent(String(safeguardId))}/`, {
|
|
8252
|
+
withCredentials: this.configuration.withCredentials,
|
|
8253
|
+
headers: headers,
|
|
8254
|
+
observe: observe,
|
|
8255
|
+
reportProgress: reportProgress
|
|
8256
|
+
});
|
|
8257
|
+
}
|
|
8258
|
+
updateSafeguardExclusionListUsingPOST(campaignId, safeguardExclusionDTO, reqId, token, observe = 'body', reportProgress = false) {
|
|
8259
|
+
if (campaignId === null || campaignId === undefined) {
|
|
8260
|
+
throw new Error('Required parameter campaignId was null or undefined when calling updateSafeguardExclusionListUsingPOST.');
|
|
8261
|
+
}
|
|
8262
|
+
if (safeguardExclusionDTO === null || safeguardExclusionDTO === undefined) {
|
|
8263
|
+
throw new Error('Required parameter safeguardExclusionDTO was null or undefined when calling updateSafeguardExclusionListUsingPOST.');
|
|
8264
|
+
}
|
|
8265
|
+
let headers = this.defaultHeaders;
|
|
8266
|
+
if (reqId !== undefined && reqId !== null) {
|
|
8267
|
+
headers = headers.set('reqId', String(reqId));
|
|
8268
|
+
}
|
|
8269
|
+
if (token !== undefined && token !== null) {
|
|
8270
|
+
headers = headers.set('token', String(token));
|
|
8271
|
+
}
|
|
8272
|
+
// to determine the Accept header
|
|
8273
|
+
let httpHeaderAccepts = [
|
|
8274
|
+
'application/json'
|
|
8275
|
+
];
|
|
8276
|
+
const httpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
|
|
8277
|
+
if (httpHeaderAcceptSelected != undefined) {
|
|
8278
|
+
headers = headers.set('Accept', httpHeaderAcceptSelected);
|
|
8279
|
+
}
|
|
8280
|
+
// to determine the Content-Type header
|
|
8281
|
+
const consumes = [
|
|
8282
|
+
'application/json'
|
|
8283
|
+
];
|
|
8284
|
+
const httpContentTypeSelected = this.configuration.selectHeaderContentType(consumes);
|
|
8285
|
+
if (httpContentTypeSelected != undefined) {
|
|
8286
|
+
headers = headers.set('Content-Type', httpContentTypeSelected);
|
|
8287
|
+
}
|
|
8288
|
+
return this.httpClient.post(`${this.basePath}/v2/api/safeguard/exclusion/update/${encodeURIComponent(String(campaignId))}/`, safeguardExclusionDTO, {
|
|
8289
|
+
withCredentials: this.configuration.withCredentials,
|
|
8290
|
+
headers: headers,
|
|
8291
|
+
observe: observe,
|
|
8292
|
+
reportProgress: reportProgress
|
|
8293
|
+
});
|
|
8294
|
+
}
|
|
8295
|
+
updateSafeguardRuleStatusUsingPOST(ids, status, reqId, token, observe = 'body', reportProgress = false) {
|
|
8296
|
+
if (ids === null || ids === undefined) {
|
|
8297
|
+
throw new Error('Required parameter ids was null or undefined when calling updateSafeguardRuleStatusUsingPOST.');
|
|
8298
|
+
}
|
|
8299
|
+
if (status === null || status === undefined) {
|
|
8300
|
+
throw new Error('Required parameter status was null or undefined when calling updateSafeguardRuleStatusUsingPOST.');
|
|
8301
|
+
}
|
|
8302
|
+
let queryParameters = new HttpParams({ encoder: new CustomHttpUrlEncodingCodec() });
|
|
8303
|
+
if (ids !== undefined && ids !== null) {
|
|
8304
|
+
queryParameters = queryParameters.set('ids', ids);
|
|
8305
|
+
}
|
|
8306
|
+
if (status !== undefined && status !== null) {
|
|
8307
|
+
queryParameters = queryParameters.set('status', status);
|
|
8308
|
+
}
|
|
8309
|
+
let headers = this.defaultHeaders;
|
|
8310
|
+
if (reqId !== undefined && reqId !== null) {
|
|
8311
|
+
headers = headers.set('reqId', String(reqId));
|
|
8312
|
+
}
|
|
8313
|
+
if (token !== undefined && token !== null) {
|
|
8314
|
+
headers = headers.set('token', String(token));
|
|
8315
|
+
}
|
|
8316
|
+
// to determine the Accept header
|
|
8317
|
+
let httpHeaderAccepts = [
|
|
8318
|
+
'application/json'
|
|
8319
|
+
];
|
|
8320
|
+
const httpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
|
|
8321
|
+
if (httpHeaderAcceptSelected != undefined) {
|
|
8322
|
+
headers = headers.set('Accept', httpHeaderAcceptSelected);
|
|
8323
|
+
}
|
|
8324
|
+
// to determine the Content-Type header
|
|
8325
|
+
const consumes = [
|
|
8326
|
+
'application/json'
|
|
8327
|
+
];
|
|
8328
|
+
return this.httpClient.post(`${this.basePath}/v2/api/safeguard/update/status`, null, {
|
|
8329
|
+
params: queryParameters,
|
|
8330
|
+
withCredentials: this.configuration.withCredentials,
|
|
8331
|
+
headers: headers,
|
|
8332
|
+
observe: observe,
|
|
8333
|
+
reportProgress: reportProgress
|
|
8334
|
+
});
|
|
8335
|
+
}
|
|
8336
|
+
updateSafeguardRuleUsingPOST(safeguardId, safeguardRequestDTO, reqId, token, observe = 'body', reportProgress = false) {
|
|
8337
|
+
if (safeguardId === null || safeguardId === undefined) {
|
|
8338
|
+
throw new Error('Required parameter safeguardId was null or undefined when calling updateSafeguardRuleUsingPOST.');
|
|
8339
|
+
}
|
|
8340
|
+
if (safeguardRequestDTO === null || safeguardRequestDTO === undefined) {
|
|
8341
|
+
throw new Error('Required parameter safeguardRequestDTO was null or undefined when calling updateSafeguardRuleUsingPOST.');
|
|
8342
|
+
}
|
|
8343
|
+
let headers = this.defaultHeaders;
|
|
8344
|
+
if (reqId !== undefined && reqId !== null) {
|
|
8345
|
+
headers = headers.set('reqId', String(reqId));
|
|
8346
|
+
}
|
|
8347
|
+
if (token !== undefined && token !== null) {
|
|
8348
|
+
headers = headers.set('token', String(token));
|
|
8349
|
+
}
|
|
8350
|
+
// to determine the Accept header
|
|
8351
|
+
let httpHeaderAccepts = [
|
|
8352
|
+
'application/json'
|
|
8353
|
+
];
|
|
8354
|
+
const httpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
|
|
8355
|
+
if (httpHeaderAcceptSelected != undefined) {
|
|
8356
|
+
headers = headers.set('Accept', httpHeaderAcceptSelected);
|
|
8357
|
+
}
|
|
8358
|
+
// to determine the Content-Type header
|
|
8359
|
+
const consumes = [
|
|
8360
|
+
'application/json'
|
|
8361
|
+
];
|
|
8362
|
+
const httpContentTypeSelected = this.configuration.selectHeaderContentType(consumes);
|
|
8363
|
+
if (httpContentTypeSelected != undefined) {
|
|
8364
|
+
headers = headers.set('Content-Type', httpContentTypeSelected);
|
|
8365
|
+
}
|
|
8366
|
+
return this.httpClient.post(`${this.basePath}/v2/api/safeguard/update/${encodeURIComponent(String(safeguardId))}/`, safeguardRequestDTO, {
|
|
8367
|
+
withCredentials: this.configuration.withCredentials,
|
|
8368
|
+
headers: headers,
|
|
8369
|
+
observe: observe,
|
|
8370
|
+
reportProgress: reportProgress
|
|
8371
|
+
});
|
|
8372
|
+
}
|
|
8373
|
+
validateSafeguardRuleUsingGET(safeguardRequestDTO, reqId, token, observe = 'body', reportProgress = false) {
|
|
8374
|
+
if (safeguardRequestDTO === null || safeguardRequestDTO === undefined) {
|
|
8375
|
+
throw new Error('Required parameter safeguardRequestDTO was null or undefined when calling validateSafeguardRuleUsingGET.');
|
|
8376
|
+
}
|
|
8377
|
+
let headers = this.defaultHeaders;
|
|
8378
|
+
if (reqId !== undefined && reqId !== null) {
|
|
8379
|
+
headers = headers.set('reqId', String(reqId));
|
|
8380
|
+
}
|
|
8381
|
+
if (token !== undefined && token !== null) {
|
|
8382
|
+
headers = headers.set('token', String(token));
|
|
8383
|
+
}
|
|
8384
|
+
// to determine the Accept header
|
|
8385
|
+
let httpHeaderAccepts = [
|
|
8386
|
+
'application/json'
|
|
8387
|
+
];
|
|
8388
|
+
const httpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
|
|
8389
|
+
if (httpHeaderAcceptSelected != undefined) {
|
|
8390
|
+
headers = headers.set('Accept', httpHeaderAcceptSelected);
|
|
8391
|
+
}
|
|
8392
|
+
// to determine the Content-Type header
|
|
8393
|
+
const consumes = [];
|
|
8394
|
+
const httpContentTypeSelected = this.configuration.selectHeaderContentType(consumes);
|
|
8395
|
+
if (httpContentTypeSelected != undefined) {
|
|
8396
|
+
headers = headers.set('Content-Type', httpContentTypeSelected);
|
|
8397
|
+
}
|
|
8398
|
+
return this.httpClient.get(`${this.basePath}/v2/api/safeguard/validate`, {
|
|
8399
|
+
withCredentials: this.configuration.withCredentials,
|
|
8400
|
+
headers: headers,
|
|
8401
|
+
observe: observe,
|
|
8402
|
+
reportProgress: reportProgress
|
|
8403
|
+
});
|
|
8404
|
+
}
|
|
8405
|
+
}
|
|
8406
|
+
SafeguardControllerService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: SafeguardControllerService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
8407
|
+
SafeguardControllerService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: SafeguardControllerService });
|
|
8408
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: SafeguardControllerService, decorators: [{
|
|
8409
|
+
type: Injectable
|
|
8410
|
+
}], ctorParameters: function () { return [{ type: i1.HttpClient }, { type: undefined, decorators: [{
|
|
8411
|
+
type: Optional
|
|
8412
|
+
}, {
|
|
8413
|
+
type: Inject,
|
|
8414
|
+
args: [BASE_PATH]
|
|
8415
|
+
}] }, { type: Configuration, decorators: [{
|
|
8416
|
+
type: Optional
|
|
8417
|
+
}] }]; } });
|
|
8418
|
+
|
|
7990
8419
|
/**
|
|
7991
8420
|
* Api Documentation
|
|
7992
8421
|
* Api Documentation
|
|
@@ -8002,7 +8431,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
8002
8431
|
class SliceXControllerService {
|
|
8003
8432
|
constructor(httpClient, basePath, configuration) {
|
|
8004
8433
|
this.httpClient = httpClient;
|
|
8005
|
-
this.basePath = 'https://
|
|
8434
|
+
this.basePath = 'https://apiv2stage3.atomex.net';
|
|
8006
8435
|
this.defaultHeaders = new HttpHeaders();
|
|
8007
8436
|
this.configuration = new Configuration();
|
|
8008
8437
|
if (basePath) {
|
|
@@ -8406,7 +8835,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
8406
8835
|
class StrategyControllerService {
|
|
8407
8836
|
constructor(httpClient, basePath, configuration) {
|
|
8408
8837
|
this.httpClient = httpClient;
|
|
8409
|
-
this.basePath = 'https://
|
|
8838
|
+
this.basePath = 'https://apiv2stage3.atomex.net';
|
|
8410
8839
|
this.defaultHeaders = new HttpHeaders();
|
|
8411
8840
|
this.configuration = new Configuration();
|
|
8412
8841
|
if (basePath) {
|
|
@@ -9574,7 +10003,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
9574
10003
|
class StrategyTemplateControllerService {
|
|
9575
10004
|
constructor(httpClient, basePath, configuration) {
|
|
9576
10005
|
this.httpClient = httpClient;
|
|
9577
|
-
this.basePath = 'https://
|
|
10006
|
+
this.basePath = 'https://apiv2stage3.atomex.net';
|
|
9578
10007
|
this.defaultHeaders = new HttpHeaders();
|
|
9579
10008
|
this.configuration = new Configuration();
|
|
9580
10009
|
if (basePath) {
|
|
@@ -9696,7 +10125,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
9696
10125
|
class UILoggerControllerService {
|
|
9697
10126
|
constructor(httpClient, basePath, configuration) {
|
|
9698
10127
|
this.httpClient = httpClient;
|
|
9699
|
-
this.basePath = 'https://
|
|
10128
|
+
this.basePath = 'https://apiv2stage3.atomex.net';
|
|
9700
10129
|
this.defaultHeaders = new HttpHeaders();
|
|
9701
10130
|
this.configuration = new Configuration();
|
|
9702
10131
|
if (basePath) {
|
|
@@ -9788,7 +10217,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
9788
10217
|
class UserPreferenceControllerService {
|
|
9789
10218
|
constructor(httpClient, basePath, configuration) {
|
|
9790
10219
|
this.httpClient = httpClient;
|
|
9791
|
-
this.basePath = 'https://
|
|
10220
|
+
this.basePath = 'https://apiv2stage3.atomex.net';
|
|
9792
10221
|
this.defaultHeaders = new HttpHeaders();
|
|
9793
10222
|
this.configuration = new Configuration();
|
|
9794
10223
|
if (basePath) {
|
|
@@ -9947,7 +10376,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
9947
10376
|
type: Optional
|
|
9948
10377
|
}] }]; } });
|
|
9949
10378
|
|
|
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];
|
|
10379
|
+
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, SafeguardControllerService, SliceXControllerService, StrategyControllerService, StrategyTemplateControllerService, UILoggerControllerService, UserPreferenceControllerService];
|
|
9951
10380
|
|
|
9952
10381
|
var ABTestingDTO;
|
|
9953
10382
|
(function (ABTestingDTO) {
|
|
@@ -10187,6 +10616,18 @@ var AdvertiserCohortResponse;
|
|
|
10187
10616
|
* Do not edit the class manually.
|
|
10188
10617
|
*/
|
|
10189
10618
|
|
|
10619
|
+
/**
|
|
10620
|
+
* Api Documentation
|
|
10621
|
+
* Api Documentation
|
|
10622
|
+
*
|
|
10623
|
+
* OpenAPI spec version: 1.0
|
|
10624
|
+
*
|
|
10625
|
+
*
|
|
10626
|
+
* NOTE: This class is auto generated by the swagger code generator program.
|
|
10627
|
+
* https://github.com/swagger-api/swagger-codegen.git
|
|
10628
|
+
* Do not edit the class manually.
|
|
10629
|
+
*/
|
|
10630
|
+
|
|
10190
10631
|
var AppSettingsDTO;
|
|
10191
10632
|
(function (AppSettingsDTO) {
|
|
10192
10633
|
AppSettingsDTO.SettingsKeyEnum = {
|
|
@@ -11721,6 +12162,18 @@ var Macro;
|
|
|
11721
12162
|
* Do not edit the class manually.
|
|
11722
12163
|
*/
|
|
11723
12164
|
|
|
12165
|
+
/**
|
|
12166
|
+
* Api Documentation
|
|
12167
|
+
* Api Documentation
|
|
12168
|
+
*
|
|
12169
|
+
* OpenAPI spec version: 1.0
|
|
12170
|
+
*
|
|
12171
|
+
*
|
|
12172
|
+
* NOTE: This class is auto generated by the swagger code generator program.
|
|
12173
|
+
* https://github.com/swagger-api/swagger-codegen.git
|
|
12174
|
+
* Do not edit the class manually.
|
|
12175
|
+
*/
|
|
12176
|
+
|
|
11724
12177
|
var MetaRuleDto;
|
|
11725
12178
|
(function (MetaRuleDto) {
|
|
11726
12179
|
MetaRuleDto.FilterTypeEnum = {
|
|
@@ -12195,6 +12648,88 @@ var RuleDTO;
|
|
|
12195
12648
|
* Do not edit the class manually.
|
|
12196
12649
|
*/
|
|
12197
12650
|
|
|
12651
|
+
/**
|
|
12652
|
+
* Api Documentation
|
|
12653
|
+
* Api Documentation
|
|
12654
|
+
*
|
|
12655
|
+
* OpenAPI spec version: 1.0
|
|
12656
|
+
*
|
|
12657
|
+
*
|
|
12658
|
+
* NOTE: This class is auto generated by the swagger code generator program.
|
|
12659
|
+
* https://github.com/swagger-api/swagger-codegen.git
|
|
12660
|
+
* Do not edit the class manually.
|
|
12661
|
+
*/
|
|
12662
|
+
|
|
12663
|
+
/**
|
|
12664
|
+
* Api Documentation
|
|
12665
|
+
* Api Documentation
|
|
12666
|
+
*
|
|
12667
|
+
* OpenAPI spec version: 1.0
|
|
12668
|
+
*
|
|
12669
|
+
*
|
|
12670
|
+
* NOTE: This class is auto generated by the swagger code generator program.
|
|
12671
|
+
* https://github.com/swagger-api/swagger-codegen.git
|
|
12672
|
+
* Do not edit the class manually.
|
|
12673
|
+
*/
|
|
12674
|
+
var SafeguardDetail;
|
|
12675
|
+
(function (SafeguardDetail) {
|
|
12676
|
+
SafeguardDetail.TargetingScopeEnum = {
|
|
12677
|
+
APP: 'APP',
|
|
12678
|
+
INVENTORY: 'INVENTORY'
|
|
12679
|
+
};
|
|
12680
|
+
})(SafeguardDetail || (SafeguardDetail = {}));
|
|
12681
|
+
|
|
12682
|
+
/**
|
|
12683
|
+
* Api Documentation
|
|
12684
|
+
* Api Documentation
|
|
12685
|
+
*
|
|
12686
|
+
* OpenAPI spec version: 1.0
|
|
12687
|
+
*
|
|
12688
|
+
*
|
|
12689
|
+
* NOTE: This class is auto generated by the swagger code generator program.
|
|
12690
|
+
* https://github.com/swagger-api/swagger-codegen.git
|
|
12691
|
+
* Do not edit the class manually.
|
|
12692
|
+
*/
|
|
12693
|
+
var SafeguardEntity;
|
|
12694
|
+
(function (SafeguardEntity) {
|
|
12695
|
+
SafeguardEntity.TargetingScopeEnum = {
|
|
12696
|
+
APP: 'APP',
|
|
12697
|
+
INVENTORY: 'INVENTORY'
|
|
12698
|
+
};
|
|
12699
|
+
})(SafeguardEntity || (SafeguardEntity = {}));
|
|
12700
|
+
|
|
12701
|
+
var SafeguardExclusionDTO;
|
|
12702
|
+
(function (SafeguardExclusionDTO) {
|
|
12703
|
+
SafeguardExclusionDTO.ScopeEnum = {
|
|
12704
|
+
APP: 'APP',
|
|
12705
|
+
INVENTORY: 'INVENTORY'
|
|
12706
|
+
};
|
|
12707
|
+
})(SafeguardExclusionDTO || (SafeguardExclusionDTO = {}));
|
|
12708
|
+
|
|
12709
|
+
var SafeguardRequestDTO;
|
|
12710
|
+
(function (SafeguardRequestDTO) {
|
|
12711
|
+
SafeguardRequestDTO.TargetingScopeEnum = {
|
|
12712
|
+
APP: 'APP',
|
|
12713
|
+
INVENTORY: 'INVENTORY'
|
|
12714
|
+
};
|
|
12715
|
+
})(SafeguardRequestDTO || (SafeguardRequestDTO = {}));
|
|
12716
|
+
|
|
12717
|
+
var SafeguardResponseDTO;
|
|
12718
|
+
(function (SafeguardResponseDTO) {
|
|
12719
|
+
SafeguardResponseDTO.TargetingScopeEnum = {
|
|
12720
|
+
APP: 'APP',
|
|
12721
|
+
INVENTORY: 'INVENTORY'
|
|
12722
|
+
};
|
|
12723
|
+
})(SafeguardResponseDTO || (SafeguardResponseDTO = {}));
|
|
12724
|
+
|
|
12725
|
+
var SafeguardRuleExecutionLogEntity;
|
|
12726
|
+
(function (SafeguardRuleExecutionLogEntity) {
|
|
12727
|
+
SafeguardRuleExecutionLogEntity.StatusEnum = {
|
|
12728
|
+
ACTIVE: 'ACTIVE',
|
|
12729
|
+
INACTIVE: 'INACTIVE'
|
|
12730
|
+
};
|
|
12731
|
+
})(SafeguardRuleExecutionLogEntity || (SafeguardRuleExecutionLogEntity = {}));
|
|
12732
|
+
|
|
12198
12733
|
/**
|
|
12199
12734
|
* Api Documentation
|
|
12200
12735
|
* Api Documentation
|
|
@@ -12902,6 +13437,7 @@ ApiModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.
|
|
|
12902
13437
|
ReportControllerService,
|
|
12903
13438
|
ReportingControllerService,
|
|
12904
13439
|
ReportingSchedulerControllerService,
|
|
13440
|
+
SafeguardControllerService,
|
|
12905
13441
|
SliceXControllerService,
|
|
12906
13442
|
StrategyControllerService,
|
|
12907
13443
|
StrategyTemplateControllerService,
|
|
@@ -12940,6 +13476,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
12940
13476
|
ReportControllerService,
|
|
12941
13477
|
ReportingControllerService,
|
|
12942
13478
|
ReportingSchedulerControllerService,
|
|
13479
|
+
SafeguardControllerService,
|
|
12943
13480
|
SliceXControllerService,
|
|
12944
13481
|
StrategyControllerService,
|
|
12945
13482
|
StrategyTemplateControllerService,
|
|
@@ -12959,5 +13496,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
12959
13496
|
* Generated bundle index. Do not edit.
|
|
12960
13497
|
*/
|
|
12961
13498
|
|
|
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 };
|
|
13499
|
+
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, SafeguardControllerService, SafeguardDetail, SafeguardEntity, SafeguardExclusionDTO, SafeguardRequestDTO, SafeguardResponseDTO, SafeguardRuleExecutionLogEntity, SchedulerRequest, SliceXControllerService, StrategyControllerService, StrategyDTO, StrategyInlineDTO, StrategyQuickEditDTO, StrategyRuleResponse, StrategyTemplateControllerService, StrategyTemplateDTO, StrategyTemplateResponse, TemplateVariablesDTO, UILoggerControllerService, UserPreferenceControllerService, VastCreative, VideoAttributes, VideoProperties, WhitelabelingEntity };
|
|
12963
13500
|
//# sourceMappingURL=revxui-api-clients-ts.mjs.map
|