@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) {
|
|
@@ -281,7 +281,7 @@ class CustomHttpUrlEncodingCodec extends HttpUrlEncodingCodec {
|
|
|
281
281
|
class AdvertiserControllerService {
|
|
282
282
|
constructor(httpClient, basePath, configuration) {
|
|
283
283
|
this.httpClient = httpClient;
|
|
284
|
-
this.basePath = 'https://
|
|
284
|
+
this.basePath = 'https://apiv2stage3.atomex.net';
|
|
285
285
|
this.defaultHeaders = new HttpHeaders();
|
|
286
286
|
this.configuration = new Configuration();
|
|
287
287
|
if (basePath) {
|
|
@@ -833,7 +833,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
833
833
|
class AppSettingsControllerService {
|
|
834
834
|
constructor(httpClient, basePath, configuration) {
|
|
835
835
|
this.httpClient = httpClient;
|
|
836
|
-
this.basePath = 'https://
|
|
836
|
+
this.basePath = 'https://apiv2stage3.atomex.net';
|
|
837
837
|
this.defaultHeaders = new HttpHeaders();
|
|
838
838
|
this.configuration = new Configuration();
|
|
839
839
|
if (basePath) {
|
|
@@ -1080,7 +1080,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
1080
1080
|
class AppsFlyerControllerService {
|
|
1081
1081
|
constructor(httpClient, basePath, configuration) {
|
|
1082
1082
|
this.httpClient = httpClient;
|
|
1083
|
-
this.basePath = 'https://
|
|
1083
|
+
this.basePath = 'https://apiv2stage3.atomex.net';
|
|
1084
1084
|
this.defaultHeaders = new HttpHeaders();
|
|
1085
1085
|
this.configuration = new Configuration();
|
|
1086
1086
|
if (basePath) {
|
|
@@ -1168,7 +1168,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
1168
1168
|
class AudienceControllerService {
|
|
1169
1169
|
constructor(httpClient, basePath, configuration) {
|
|
1170
1170
|
this.httpClient = httpClient;
|
|
1171
|
-
this.basePath = 'https://
|
|
1171
|
+
this.basePath = 'https://apiv2stage3.atomex.net';
|
|
1172
1172
|
this.defaultHeaders = new HttpHeaders();
|
|
1173
1173
|
this.configuration = new Configuration();
|
|
1174
1174
|
if (basePath) {
|
|
@@ -2046,7 +2046,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
2046
2046
|
class AuditControllerService {
|
|
2047
2047
|
constructor(httpClient, basePath, configuration) {
|
|
2048
2048
|
this.httpClient = httpClient;
|
|
2049
|
-
this.basePath = 'https://
|
|
2049
|
+
this.basePath = 'https://apiv2stage3.atomex.net';
|
|
2050
2050
|
this.defaultHeaders = new HttpHeaders();
|
|
2051
2051
|
this.configuration = new Configuration();
|
|
2052
2052
|
if (basePath) {
|
|
@@ -2166,17 +2166,8 @@ class AuditControllerService {
|
|
|
2166
2166
|
reportProgress: reportProgress
|
|
2167
2167
|
});
|
|
2168
2168
|
}
|
|
2169
|
-
getUserActivityLogUsingGET(
|
|
2169
|
+
getUserActivityLogUsingGET(entities, pageNumber, pageSize, reqId, token, observe = 'body', reportProgress = false) {
|
|
2170
2170
|
let queryParameters = new HttpParams({ encoder: new CustomHttpUrlEncodingCodec() });
|
|
2171
|
-
if (advertiserId !== undefined && advertiserId !== null) {
|
|
2172
|
-
queryParameters = queryParameters.set('advertiserId', advertiserId);
|
|
2173
|
-
}
|
|
2174
|
-
if (campaignId !== undefined && campaignId !== null) {
|
|
2175
|
-
queryParameters = queryParameters.set('campaignId', campaignId);
|
|
2176
|
-
}
|
|
2177
|
-
if (endTime !== undefined && endTime !== null) {
|
|
2178
|
-
queryParameters = queryParameters.set('endTime', endTime);
|
|
2179
|
-
}
|
|
2180
2171
|
if (entities !== undefined && entities !== null) {
|
|
2181
2172
|
queryParameters = queryParameters.set('entities', entities);
|
|
2182
2173
|
}
|
|
@@ -2186,12 +2177,6 @@ class AuditControllerService {
|
|
|
2186
2177
|
if (pageSize !== undefined && pageSize !== null) {
|
|
2187
2178
|
queryParameters = queryParameters.set('pageSize', pageSize);
|
|
2188
2179
|
}
|
|
2189
|
-
if (startTime !== undefined && startTime !== null) {
|
|
2190
|
-
queryParameters = queryParameters.set('startTime', startTime);
|
|
2191
|
-
}
|
|
2192
|
-
if (strategyId !== undefined && strategyId !== null) {
|
|
2193
|
-
queryParameters = queryParameters.set('strategyId', strategyId);
|
|
2194
|
-
}
|
|
2195
2180
|
let headers = this.defaultHeaders;
|
|
2196
2181
|
if (reqId !== undefined && reqId !== null) {
|
|
2197
2182
|
headers = headers.set('reqId', String(reqId));
|
|
@@ -2248,7 +2233,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
2248
2233
|
class BidFunnelControllerService {
|
|
2249
2234
|
constructor(httpClient, basePath, configuration) {
|
|
2250
2235
|
this.httpClient = httpClient;
|
|
2251
|
-
this.basePath = 'https://
|
|
2236
|
+
this.basePath = 'https://apiv2stage3.atomex.net';
|
|
2252
2237
|
this.defaultHeaders = new HttpHeaders();
|
|
2253
2238
|
this.configuration = new Configuration();
|
|
2254
2239
|
if (basePath) {
|
|
@@ -2399,7 +2384,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
2399
2384
|
class BulkStrategyControllerService {
|
|
2400
2385
|
constructor(httpClient, basePath, configuration) {
|
|
2401
2386
|
this.httpClient = httpClient;
|
|
2402
|
-
this.basePath = 'https://
|
|
2387
|
+
this.basePath = 'https://apiv2stage3.atomex.net';
|
|
2403
2388
|
this.defaultHeaders = new HttpHeaders();
|
|
2404
2389
|
this.configuration = new Configuration();
|
|
2405
2390
|
if (basePath) {
|
|
@@ -2626,7 +2611,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
2626
2611
|
class CSSThemeController_Service {
|
|
2627
2612
|
constructor(httpClient, basePath, configuration) {
|
|
2628
2613
|
this.httpClient = httpClient;
|
|
2629
|
-
this.basePath = 'https://
|
|
2614
|
+
this.basePath = 'https://apiv2stage3.atomex.net';
|
|
2630
2615
|
this.defaultHeaders = new HttpHeaders();
|
|
2631
2616
|
this.configuration = new Configuration();
|
|
2632
2617
|
if (basePath) {
|
|
@@ -2737,7 +2722,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
2737
2722
|
class CampaignControllerService {
|
|
2738
2723
|
constructor(httpClient, basePath, configuration) {
|
|
2739
2724
|
this.httpClient = httpClient;
|
|
2740
|
-
this.basePath = 'https://
|
|
2725
|
+
this.basePath = 'https://apiv2stage3.atomex.net';
|
|
2741
2726
|
this.defaultHeaders = new HttpHeaders();
|
|
2742
2727
|
this.configuration = new Configuration();
|
|
2743
2728
|
if (basePath) {
|
|
@@ -3180,7 +3165,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
3180
3165
|
class CatalogControllerService {
|
|
3181
3166
|
constructor(httpClient, basePath, configuration) {
|
|
3182
3167
|
this.httpClient = httpClient;
|
|
3183
|
-
this.basePath = 'https://
|
|
3168
|
+
this.basePath = 'https://apiv2stage3.atomex.net';
|
|
3184
3169
|
this.defaultHeaders = new HttpHeaders();
|
|
3185
3170
|
this.configuration = new Configuration();
|
|
3186
3171
|
if (basePath) {
|
|
@@ -3425,7 +3410,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
3425
3410
|
class ClickDestinationControllerService {
|
|
3426
3411
|
constructor(httpClient, basePath, configuration) {
|
|
3427
3412
|
this.httpClient = httpClient;
|
|
3428
|
-
this.basePath = 'https://
|
|
3413
|
+
this.basePath = 'https://apiv2stage3.atomex.net';
|
|
3429
3414
|
this.defaultHeaders = new HttpHeaders();
|
|
3430
3415
|
this.configuration = new Configuration();
|
|
3431
3416
|
if (basePath) {
|
|
@@ -3659,7 +3644,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
3659
3644
|
class CreativeControllerService {
|
|
3660
3645
|
constructor(httpClient, basePath, configuration) {
|
|
3661
3646
|
this.httpClient = httpClient;
|
|
3662
|
-
this.basePath = 'https://
|
|
3647
|
+
this.basePath = 'https://apiv2stage3.atomex.net';
|
|
3663
3648
|
this.defaultHeaders = new HttpHeaders();
|
|
3664
3649
|
this.configuration = new Configuration();
|
|
3665
3650
|
if (basePath) {
|
|
@@ -4264,7 +4249,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
4264
4249
|
class CreativeSetsControllerService {
|
|
4265
4250
|
constructor(httpClient, basePath, configuration) {
|
|
4266
4251
|
this.httpClient = httpClient;
|
|
4267
|
-
this.basePath = 'https://
|
|
4252
|
+
this.basePath = 'https://apiv2stage3.atomex.net';
|
|
4268
4253
|
this.defaultHeaders = new HttpHeaders();
|
|
4269
4254
|
this.configuration = new Configuration();
|
|
4270
4255
|
if (basePath) {
|
|
@@ -4912,7 +4897,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
4912
4897
|
class CreativeTemplateThemesControllerService {
|
|
4913
4898
|
constructor(httpClient, basePath, configuration) {
|
|
4914
4899
|
this.httpClient = httpClient;
|
|
4915
|
-
this.basePath = 'https://
|
|
4900
|
+
this.basePath = 'https://apiv2stage3.atomex.net';
|
|
4916
4901
|
this.defaultHeaders = new HttpHeaders();
|
|
4917
4902
|
this.configuration = new Configuration();
|
|
4918
4903
|
if (basePath) {
|
|
@@ -5099,7 +5084,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
5099
5084
|
class CreativeTemplateVariablesControllerService {
|
|
5100
5085
|
constructor(httpClient, basePath, configuration) {
|
|
5101
5086
|
this.httpClient = httpClient;
|
|
5102
|
-
this.basePath = 'https://
|
|
5087
|
+
this.basePath = 'https://apiv2stage3.atomex.net';
|
|
5103
5088
|
this.defaultHeaders = new HttpHeaders();
|
|
5104
5089
|
this.configuration = new Configuration();
|
|
5105
5090
|
if (basePath) {
|
|
@@ -5179,7 +5164,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
5179
5164
|
class CreativeTemplatesControllerService {
|
|
5180
5165
|
constructor(httpClient, basePath, configuration) {
|
|
5181
5166
|
this.httpClient = httpClient;
|
|
5182
|
-
this.basePath = 'https://
|
|
5167
|
+
this.basePath = 'https://apiv2stage3.atomex.net';
|
|
5183
5168
|
this.defaultHeaders = new HttpHeaders();
|
|
5184
5169
|
this.configuration = new Configuration();
|
|
5185
5170
|
if (basePath) {
|
|
@@ -5346,7 +5331,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
5346
5331
|
class CustomerReportingControllerService {
|
|
5347
5332
|
constructor(httpClient, basePath, configuration) {
|
|
5348
5333
|
this.httpClient = httpClient;
|
|
5349
|
-
this.basePath = 'https://
|
|
5334
|
+
this.basePath = 'https://apiv2stage3.atomex.net';
|
|
5350
5335
|
this.defaultHeaders = new HttpHeaders();
|
|
5351
5336
|
this.configuration = new Configuration();
|
|
5352
5337
|
if (basePath) {
|
|
@@ -5511,7 +5496,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
5511
5496
|
class DashboardControllerService {
|
|
5512
5497
|
constructor(httpClient, basePath, configuration) {
|
|
5513
5498
|
this.httpClient = httpClient;
|
|
5514
|
-
this.basePath = 'https://
|
|
5499
|
+
this.basePath = 'https://apiv2stage3.atomex.net';
|
|
5515
5500
|
this.defaultHeaders = new HttpHeaders();
|
|
5516
5501
|
this.configuration = new Configuration();
|
|
5517
5502
|
if (basePath) {
|
|
@@ -6171,7 +6156,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
6171
6156
|
class ExperimentsControllerService {
|
|
6172
6157
|
constructor(httpClient, basePath, configuration) {
|
|
6173
6158
|
this.httpClient = httpClient;
|
|
6174
|
-
this.basePath = 'https://
|
|
6159
|
+
this.basePath = 'https://apiv2stage3.atomex.net';
|
|
6175
6160
|
this.defaultHeaders = new HttpHeaders();
|
|
6176
6161
|
this.configuration = new Configuration();
|
|
6177
6162
|
if (basePath) {
|
|
@@ -6900,7 +6885,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
6900
6885
|
class NotificationsControllerService {
|
|
6901
6886
|
constructor(httpClient, basePath, configuration) {
|
|
6902
6887
|
this.httpClient = httpClient;
|
|
6903
|
-
this.basePath = 'https://
|
|
6888
|
+
this.basePath = 'https://apiv2stage3.atomex.net';
|
|
6904
6889
|
this.defaultHeaders = new HttpHeaders();
|
|
6905
6890
|
this.configuration = new Configuration();
|
|
6906
6891
|
if (basePath) {
|
|
@@ -7115,7 +7100,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
7115
7100
|
class PixelControllerService {
|
|
7116
7101
|
constructor(httpClient, basePath, configuration) {
|
|
7117
7102
|
this.httpClient = httpClient;
|
|
7118
|
-
this.basePath = 'https://
|
|
7103
|
+
this.basePath = 'https://apiv2stage3.atomex.net';
|
|
7119
7104
|
this.defaultHeaders = new HttpHeaders();
|
|
7120
7105
|
this.configuration = new Configuration();
|
|
7121
7106
|
if (basePath) {
|
|
@@ -7424,7 +7409,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
7424
7409
|
class ReportControllerService {
|
|
7425
7410
|
constructor(httpClient, basePath, configuration) {
|
|
7426
7411
|
this.httpClient = httpClient;
|
|
7427
|
-
this.basePath = 'https://
|
|
7412
|
+
this.basePath = 'https://apiv2stage3.atomex.net';
|
|
7428
7413
|
this.defaultHeaders = new HttpHeaders();
|
|
7429
7414
|
this.configuration = new Configuration();
|
|
7430
7415
|
if (basePath) {
|
|
@@ -7563,7 +7548,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
7563
7548
|
class ReportingControllerService {
|
|
7564
7549
|
constructor(httpClient, basePath, configuration) {
|
|
7565
7550
|
this.httpClient = httpClient;
|
|
7566
|
-
this.basePath = 'https://
|
|
7551
|
+
this.basePath = 'https://apiv2stage3.atomex.net';
|
|
7567
7552
|
this.defaultHeaders = new HttpHeaders();
|
|
7568
7553
|
this.configuration = new Configuration();
|
|
7569
7554
|
if (basePath) {
|
|
@@ -7735,7 +7720,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
7735
7720
|
class ReportingSchedulerControllerService {
|
|
7736
7721
|
constructor(httpClient, basePath, configuration) {
|
|
7737
7722
|
this.httpClient = httpClient;
|
|
7738
|
-
this.basePath = 'https://
|
|
7723
|
+
this.basePath = 'https://apiv2stage3.atomex.net';
|
|
7739
7724
|
this.defaultHeaders = new HttpHeaders();
|
|
7740
7725
|
this.configuration = new Configuration();
|
|
7741
7726
|
if (basePath) {
|
|
@@ -8037,6 +8022,452 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
8037
8022
|
}] }];
|
|
8038
8023
|
} });
|
|
8039
8024
|
|
|
8025
|
+
/**
|
|
8026
|
+
* Api Documentation
|
|
8027
|
+
* Api Documentation
|
|
8028
|
+
*
|
|
8029
|
+
* OpenAPI spec version: 1.0
|
|
8030
|
+
*
|
|
8031
|
+
*
|
|
8032
|
+
* NOTE: This class is auto generated by the swagger code generator program.
|
|
8033
|
+
* https://github.com/swagger-api/swagger-codegen.git
|
|
8034
|
+
* Do not edit the class manually.
|
|
8035
|
+
*/
|
|
8036
|
+
/* tslint:disable:no-unused-variable member-ordering */
|
|
8037
|
+
class SafeguardControllerService {
|
|
8038
|
+
constructor(httpClient, basePath, configuration) {
|
|
8039
|
+
this.httpClient = httpClient;
|
|
8040
|
+
this.basePath = 'https://apiv2stage3.atomex.net';
|
|
8041
|
+
this.defaultHeaders = new HttpHeaders();
|
|
8042
|
+
this.configuration = new Configuration();
|
|
8043
|
+
if (basePath) {
|
|
8044
|
+
this.basePath = basePath;
|
|
8045
|
+
}
|
|
8046
|
+
if (configuration) {
|
|
8047
|
+
this.configuration = configuration;
|
|
8048
|
+
this.basePath = basePath || configuration.basePath || this.basePath;
|
|
8049
|
+
}
|
|
8050
|
+
}
|
|
8051
|
+
/**
|
|
8052
|
+
* @param consumes string[] mime-types
|
|
8053
|
+
* @return true: consumes contains 'multipart/form-data', false: otherwise
|
|
8054
|
+
*/
|
|
8055
|
+
canConsumeForm(consumes) {
|
|
8056
|
+
const form = 'multipart/form-data';
|
|
8057
|
+
for (const consume of consumes) {
|
|
8058
|
+
if (form === consume) {
|
|
8059
|
+
return true;
|
|
8060
|
+
}
|
|
8061
|
+
}
|
|
8062
|
+
return false;
|
|
8063
|
+
}
|
|
8064
|
+
createSafeguardExclusionListUsingPOST(safeguardExclusionDTO, reqId, token, observe = 'body', reportProgress = false) {
|
|
8065
|
+
if (safeguardExclusionDTO === null || safeguardExclusionDTO === undefined) {
|
|
8066
|
+
throw new Error('Required parameter safeguardExclusionDTO was null or undefined when calling createSafeguardExclusionListUsingPOST.');
|
|
8067
|
+
}
|
|
8068
|
+
let headers = this.defaultHeaders;
|
|
8069
|
+
if (reqId !== undefined && reqId !== null) {
|
|
8070
|
+
headers = headers.set('reqId', String(reqId));
|
|
8071
|
+
}
|
|
8072
|
+
if (token !== undefined && token !== null) {
|
|
8073
|
+
headers = headers.set('token', String(token));
|
|
8074
|
+
}
|
|
8075
|
+
// to determine the Accept header
|
|
8076
|
+
let httpHeaderAccepts = [
|
|
8077
|
+
'application/json'
|
|
8078
|
+
];
|
|
8079
|
+
const httpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
|
|
8080
|
+
if (httpHeaderAcceptSelected != undefined) {
|
|
8081
|
+
headers = headers.set('Accept', httpHeaderAcceptSelected);
|
|
8082
|
+
}
|
|
8083
|
+
// to determine the Content-Type header
|
|
8084
|
+
const consumes = [
|
|
8085
|
+
'application/json'
|
|
8086
|
+
];
|
|
8087
|
+
const httpContentTypeSelected = this.configuration.selectHeaderContentType(consumes);
|
|
8088
|
+
if (httpContentTypeSelected != undefined) {
|
|
8089
|
+
headers = headers.set('Content-Type', httpContentTypeSelected);
|
|
8090
|
+
}
|
|
8091
|
+
return this.httpClient.post(`${this.basePath}/v2/api/safeguard/exclusion/create`, safeguardExclusionDTO, {
|
|
8092
|
+
withCredentials: this.configuration.withCredentials,
|
|
8093
|
+
headers: headers,
|
|
8094
|
+
observe: observe,
|
|
8095
|
+
reportProgress: reportProgress
|
|
8096
|
+
});
|
|
8097
|
+
}
|
|
8098
|
+
createSafeguardRuleUsingPOST(safeguardRequestDTO, reqId, token, observe = 'body', reportProgress = false) {
|
|
8099
|
+
if (safeguardRequestDTO === null || safeguardRequestDTO === undefined) {
|
|
8100
|
+
throw new Error('Required parameter safeguardRequestDTO was null or undefined when calling createSafeguardRuleUsingPOST.');
|
|
8101
|
+
}
|
|
8102
|
+
let headers = this.defaultHeaders;
|
|
8103
|
+
if (reqId !== undefined && reqId !== null) {
|
|
8104
|
+
headers = headers.set('reqId', String(reqId));
|
|
8105
|
+
}
|
|
8106
|
+
if (token !== undefined && token !== null) {
|
|
8107
|
+
headers = headers.set('token', String(token));
|
|
8108
|
+
}
|
|
8109
|
+
// to determine the Accept header
|
|
8110
|
+
let httpHeaderAccepts = [
|
|
8111
|
+
'application/json'
|
|
8112
|
+
];
|
|
8113
|
+
const httpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
|
|
8114
|
+
if (httpHeaderAcceptSelected != undefined) {
|
|
8115
|
+
headers = headers.set('Accept', httpHeaderAcceptSelected);
|
|
8116
|
+
}
|
|
8117
|
+
// to determine the Content-Type header
|
|
8118
|
+
const consumes = [
|
|
8119
|
+
'application/json'
|
|
8120
|
+
];
|
|
8121
|
+
const httpContentTypeSelected = this.configuration.selectHeaderContentType(consumes);
|
|
8122
|
+
if (httpContentTypeSelected != undefined) {
|
|
8123
|
+
headers = headers.set('Content-Type', httpContentTypeSelected);
|
|
8124
|
+
}
|
|
8125
|
+
return this.httpClient.post(`${this.basePath}/v2/api/safeguard/create`, safeguardRequestDTO, {
|
|
8126
|
+
withCredentials: this.configuration.withCredentials,
|
|
8127
|
+
headers: headers,
|
|
8128
|
+
observe: observe,
|
|
8129
|
+
reportProgress: reportProgress
|
|
8130
|
+
});
|
|
8131
|
+
}
|
|
8132
|
+
getBlockedItemDetailsUsingGET(safeguardId, reqId, token, observe = 'body', reportProgress = false) {
|
|
8133
|
+
if (safeguardId === null || safeguardId === undefined) {
|
|
8134
|
+
throw new Error('Required parameter safeguardId was null or undefined when calling getBlockedItemDetailsUsingGET.');
|
|
8135
|
+
}
|
|
8136
|
+
let headers = this.defaultHeaders;
|
|
8137
|
+
if (reqId !== undefined && reqId !== null) {
|
|
8138
|
+
headers = headers.set('reqId', String(reqId));
|
|
8139
|
+
}
|
|
8140
|
+
if (token !== undefined && token !== null) {
|
|
8141
|
+
headers = headers.set('token', String(token));
|
|
8142
|
+
}
|
|
8143
|
+
// to determine the Accept header
|
|
8144
|
+
let httpHeaderAccepts = [
|
|
8145
|
+
'application/json'
|
|
8146
|
+
];
|
|
8147
|
+
const httpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
|
|
8148
|
+
if (httpHeaderAcceptSelected != undefined) {
|
|
8149
|
+
headers = headers.set('Accept', httpHeaderAcceptSelected);
|
|
8150
|
+
}
|
|
8151
|
+
// to determine the Content-Type header
|
|
8152
|
+
const consumes = [];
|
|
8153
|
+
return this.httpClient.get(`${this.basePath}/v2/api/safeguard/blocked_entities/${encodeURIComponent(String(safeguardId))}/`, {
|
|
8154
|
+
withCredentials: this.configuration.withCredentials,
|
|
8155
|
+
headers: headers,
|
|
8156
|
+
observe: observe,
|
|
8157
|
+
reportProgress: reportProgress
|
|
8158
|
+
});
|
|
8159
|
+
}
|
|
8160
|
+
getSafeguardExclusionListUsingGET(campaignId, reqId, token, observe = 'body', reportProgress = false) {
|
|
8161
|
+
if (campaignId === null || campaignId === undefined) {
|
|
8162
|
+
throw new Error('Required parameter campaignId was null or undefined when calling getSafeguardExclusionListUsingGET.');
|
|
8163
|
+
}
|
|
8164
|
+
let headers = this.defaultHeaders;
|
|
8165
|
+
if (reqId !== undefined && reqId !== null) {
|
|
8166
|
+
headers = headers.set('reqId', String(reqId));
|
|
8167
|
+
}
|
|
8168
|
+
if (token !== undefined && token !== null) {
|
|
8169
|
+
headers = headers.set('token', String(token));
|
|
8170
|
+
}
|
|
8171
|
+
// to determine the Accept header
|
|
8172
|
+
let httpHeaderAccepts = [
|
|
8173
|
+
'application/json'
|
|
8174
|
+
];
|
|
8175
|
+
const httpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
|
|
8176
|
+
if (httpHeaderAcceptSelected != undefined) {
|
|
8177
|
+
headers = headers.set('Accept', httpHeaderAcceptSelected);
|
|
8178
|
+
}
|
|
8179
|
+
// to determine the Content-Type header
|
|
8180
|
+
const consumes = [];
|
|
8181
|
+
return this.httpClient.get(`${this.basePath}/v2/api/safeguard/exclusion/get/${encodeURIComponent(String(campaignId))}/`, {
|
|
8182
|
+
withCredentials: this.configuration.withCredentials,
|
|
8183
|
+
headers: headers,
|
|
8184
|
+
observe: observe,
|
|
8185
|
+
reportProgress: reportProgress
|
|
8186
|
+
});
|
|
8187
|
+
}
|
|
8188
|
+
getSafeguardRuleDetailsUsingGET(safeguardId, reqId, token, observe = 'body', reportProgress = false) {
|
|
8189
|
+
if (safeguardId === null || safeguardId === undefined) {
|
|
8190
|
+
throw new Error('Required parameter safeguardId was null or undefined when calling getSafeguardRuleDetailsUsingGET.');
|
|
8191
|
+
}
|
|
8192
|
+
let headers = this.defaultHeaders;
|
|
8193
|
+
if (reqId !== undefined && reqId !== null) {
|
|
8194
|
+
headers = headers.set('reqId', String(reqId));
|
|
8195
|
+
}
|
|
8196
|
+
if (token !== undefined && token !== null) {
|
|
8197
|
+
headers = headers.set('token', String(token));
|
|
8198
|
+
}
|
|
8199
|
+
// to determine the Accept header
|
|
8200
|
+
let httpHeaderAccepts = [
|
|
8201
|
+
'application/json'
|
|
8202
|
+
];
|
|
8203
|
+
const httpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
|
|
8204
|
+
if (httpHeaderAcceptSelected != undefined) {
|
|
8205
|
+
headers = headers.set('Accept', httpHeaderAcceptSelected);
|
|
8206
|
+
}
|
|
8207
|
+
// to determine the Content-Type header
|
|
8208
|
+
const consumes = [];
|
|
8209
|
+
return this.httpClient.get(`${this.basePath}/v2/api/safeguard/detail/${encodeURIComponent(String(safeguardId))}/`, {
|
|
8210
|
+
withCredentials: this.configuration.withCredentials,
|
|
8211
|
+
headers: headers,
|
|
8212
|
+
observe: observe,
|
|
8213
|
+
reportProgress: reportProgress
|
|
8214
|
+
});
|
|
8215
|
+
}
|
|
8216
|
+
getSafeguardRuleFiltersUsingGET(reqId, token, observe = 'body', reportProgress = false) {
|
|
8217
|
+
let headers = this.defaultHeaders;
|
|
8218
|
+
if (reqId !== undefined && reqId !== null) {
|
|
8219
|
+
headers = headers.set('reqId', String(reqId));
|
|
8220
|
+
}
|
|
8221
|
+
if (token !== undefined && token !== null) {
|
|
8222
|
+
headers = headers.set('token', String(token));
|
|
8223
|
+
}
|
|
8224
|
+
// to determine the Accept header
|
|
8225
|
+
let httpHeaderAccepts = [
|
|
8226
|
+
'application/json'
|
|
8227
|
+
];
|
|
8228
|
+
const httpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
|
|
8229
|
+
if (httpHeaderAcceptSelected != undefined) {
|
|
8230
|
+
headers = headers.set('Accept', httpHeaderAcceptSelected);
|
|
8231
|
+
}
|
|
8232
|
+
// to determine the Content-Type header
|
|
8233
|
+
const consumes = [];
|
|
8234
|
+
return this.httpClient.get(`${this.basePath}/v2/api/safeguard/filters`, {
|
|
8235
|
+
withCredentials: this.configuration.withCredentials,
|
|
8236
|
+
headers: headers,
|
|
8237
|
+
observe: observe,
|
|
8238
|
+
reportProgress: reportProgress
|
|
8239
|
+
});
|
|
8240
|
+
}
|
|
8241
|
+
getSafeguardRulesListUsingGET(entity, id, reqId, token, observe = 'body', reportProgress = false) {
|
|
8242
|
+
if (entity === null || entity === undefined) {
|
|
8243
|
+
throw new Error('Required parameter entity was null or undefined when calling getSafeguardRulesListUsingGET.');
|
|
8244
|
+
}
|
|
8245
|
+
if (id === null || id === undefined) {
|
|
8246
|
+
throw new Error('Required parameter id was null or undefined when calling getSafeguardRulesListUsingGET.');
|
|
8247
|
+
}
|
|
8248
|
+
let queryParameters = new HttpParams({ encoder: new CustomHttpUrlEncodingCodec() });
|
|
8249
|
+
if (entity !== undefined && entity !== null) {
|
|
8250
|
+
queryParameters = queryParameters.set('entity', entity);
|
|
8251
|
+
}
|
|
8252
|
+
if (id !== undefined && id !== null) {
|
|
8253
|
+
queryParameters = queryParameters.set('id', id);
|
|
8254
|
+
}
|
|
8255
|
+
let headers = this.defaultHeaders;
|
|
8256
|
+
if (reqId !== undefined && reqId !== null) {
|
|
8257
|
+
headers = headers.set('reqId', String(reqId));
|
|
8258
|
+
}
|
|
8259
|
+
if (token !== undefined && token !== null) {
|
|
8260
|
+
headers = headers.set('token', String(token));
|
|
8261
|
+
}
|
|
8262
|
+
// to determine the Accept header
|
|
8263
|
+
let httpHeaderAccepts = [
|
|
8264
|
+
'application/json'
|
|
8265
|
+
];
|
|
8266
|
+
const httpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
|
|
8267
|
+
if (httpHeaderAcceptSelected != undefined) {
|
|
8268
|
+
headers = headers.set('Accept', httpHeaderAcceptSelected);
|
|
8269
|
+
}
|
|
8270
|
+
// to determine the Content-Type header
|
|
8271
|
+
const consumes = [];
|
|
8272
|
+
return this.httpClient.get(`${this.basePath}/v2/api/safeguard/list`, {
|
|
8273
|
+
params: queryParameters,
|
|
8274
|
+
withCredentials: this.configuration.withCredentials,
|
|
8275
|
+
headers: headers,
|
|
8276
|
+
observe: observe,
|
|
8277
|
+
reportProgress: reportProgress
|
|
8278
|
+
});
|
|
8279
|
+
}
|
|
8280
|
+
safeguardRuleRunNowUsingGET(safeguardId, reqId, token, observe = 'body', reportProgress = false) {
|
|
8281
|
+
if (safeguardId === null || safeguardId === undefined) {
|
|
8282
|
+
throw new Error('Required parameter safeguardId was null or undefined when calling safeguardRuleRunNowUsingGET.');
|
|
8283
|
+
}
|
|
8284
|
+
let headers = this.defaultHeaders;
|
|
8285
|
+
if (reqId !== undefined && reqId !== null) {
|
|
8286
|
+
headers = headers.set('reqId', String(reqId));
|
|
8287
|
+
}
|
|
8288
|
+
if (token !== undefined && token !== null) {
|
|
8289
|
+
headers = headers.set('token', String(token));
|
|
8290
|
+
}
|
|
8291
|
+
// to determine the Accept header
|
|
8292
|
+
let httpHeaderAccepts = [
|
|
8293
|
+
'application/json'
|
|
8294
|
+
];
|
|
8295
|
+
const httpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
|
|
8296
|
+
if (httpHeaderAcceptSelected != undefined) {
|
|
8297
|
+
headers = headers.set('Accept', httpHeaderAcceptSelected);
|
|
8298
|
+
}
|
|
8299
|
+
// to determine the Content-Type header
|
|
8300
|
+
const consumes = [];
|
|
8301
|
+
return this.httpClient.get(`${this.basePath}/v2/api/safeguard/run_now/${encodeURIComponent(String(safeguardId))}/`, {
|
|
8302
|
+
withCredentials: this.configuration.withCredentials,
|
|
8303
|
+
headers: headers,
|
|
8304
|
+
observe: observe,
|
|
8305
|
+
reportProgress: reportProgress
|
|
8306
|
+
});
|
|
8307
|
+
}
|
|
8308
|
+
updateSafeguardExclusionListUsingPOST(campaignId, safeguardExclusionDTO, reqId, token, observe = 'body', reportProgress = false) {
|
|
8309
|
+
if (campaignId === null || campaignId === undefined) {
|
|
8310
|
+
throw new Error('Required parameter campaignId was null or undefined when calling updateSafeguardExclusionListUsingPOST.');
|
|
8311
|
+
}
|
|
8312
|
+
if (safeguardExclusionDTO === null || safeguardExclusionDTO === undefined) {
|
|
8313
|
+
throw new Error('Required parameter safeguardExclusionDTO was null or undefined when calling updateSafeguardExclusionListUsingPOST.');
|
|
8314
|
+
}
|
|
8315
|
+
let headers = this.defaultHeaders;
|
|
8316
|
+
if (reqId !== undefined && reqId !== null) {
|
|
8317
|
+
headers = headers.set('reqId', String(reqId));
|
|
8318
|
+
}
|
|
8319
|
+
if (token !== undefined && token !== null) {
|
|
8320
|
+
headers = headers.set('token', String(token));
|
|
8321
|
+
}
|
|
8322
|
+
// to determine the Accept header
|
|
8323
|
+
let httpHeaderAccepts = [
|
|
8324
|
+
'application/json'
|
|
8325
|
+
];
|
|
8326
|
+
const httpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
|
|
8327
|
+
if (httpHeaderAcceptSelected != undefined) {
|
|
8328
|
+
headers = headers.set('Accept', httpHeaderAcceptSelected);
|
|
8329
|
+
}
|
|
8330
|
+
// to determine the Content-Type header
|
|
8331
|
+
const consumes = [
|
|
8332
|
+
'application/json'
|
|
8333
|
+
];
|
|
8334
|
+
const httpContentTypeSelected = this.configuration.selectHeaderContentType(consumes);
|
|
8335
|
+
if (httpContentTypeSelected != undefined) {
|
|
8336
|
+
headers = headers.set('Content-Type', httpContentTypeSelected);
|
|
8337
|
+
}
|
|
8338
|
+
return this.httpClient.post(`${this.basePath}/v2/api/safeguard/exclusion/update/${encodeURIComponent(String(campaignId))}/`, safeguardExclusionDTO, {
|
|
8339
|
+
withCredentials: this.configuration.withCredentials,
|
|
8340
|
+
headers: headers,
|
|
8341
|
+
observe: observe,
|
|
8342
|
+
reportProgress: reportProgress
|
|
8343
|
+
});
|
|
8344
|
+
}
|
|
8345
|
+
updateSafeguardRuleStatusUsingPOST(ids, status, reqId, token, observe = 'body', reportProgress = false) {
|
|
8346
|
+
if (ids === null || ids === undefined) {
|
|
8347
|
+
throw new Error('Required parameter ids was null or undefined when calling updateSafeguardRuleStatusUsingPOST.');
|
|
8348
|
+
}
|
|
8349
|
+
if (status === null || status === undefined) {
|
|
8350
|
+
throw new Error('Required parameter status was null or undefined when calling updateSafeguardRuleStatusUsingPOST.');
|
|
8351
|
+
}
|
|
8352
|
+
let queryParameters = new HttpParams({ encoder: new CustomHttpUrlEncodingCodec() });
|
|
8353
|
+
if (ids !== undefined && ids !== null) {
|
|
8354
|
+
queryParameters = queryParameters.set('ids', ids);
|
|
8355
|
+
}
|
|
8356
|
+
if (status !== undefined && status !== null) {
|
|
8357
|
+
queryParameters = queryParameters.set('status', status);
|
|
8358
|
+
}
|
|
8359
|
+
let headers = this.defaultHeaders;
|
|
8360
|
+
if (reqId !== undefined && reqId !== null) {
|
|
8361
|
+
headers = headers.set('reqId', String(reqId));
|
|
8362
|
+
}
|
|
8363
|
+
if (token !== undefined && token !== null) {
|
|
8364
|
+
headers = headers.set('token', String(token));
|
|
8365
|
+
}
|
|
8366
|
+
// to determine the Accept header
|
|
8367
|
+
let httpHeaderAccepts = [
|
|
8368
|
+
'application/json'
|
|
8369
|
+
];
|
|
8370
|
+
const httpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
|
|
8371
|
+
if (httpHeaderAcceptSelected != undefined) {
|
|
8372
|
+
headers = headers.set('Accept', httpHeaderAcceptSelected);
|
|
8373
|
+
}
|
|
8374
|
+
// to determine the Content-Type header
|
|
8375
|
+
const consumes = [
|
|
8376
|
+
'application/json'
|
|
8377
|
+
];
|
|
8378
|
+
return this.httpClient.post(`${this.basePath}/v2/api/safeguard/update/status`, null, {
|
|
8379
|
+
params: queryParameters,
|
|
8380
|
+
withCredentials: this.configuration.withCredentials,
|
|
8381
|
+
headers: headers,
|
|
8382
|
+
observe: observe,
|
|
8383
|
+
reportProgress: reportProgress
|
|
8384
|
+
});
|
|
8385
|
+
}
|
|
8386
|
+
updateSafeguardRuleUsingPOST(safeguardId, safeguardRequestDTO, reqId, token, observe = 'body', reportProgress = false) {
|
|
8387
|
+
if (safeguardId === null || safeguardId === undefined) {
|
|
8388
|
+
throw new Error('Required parameter safeguardId was null or undefined when calling updateSafeguardRuleUsingPOST.');
|
|
8389
|
+
}
|
|
8390
|
+
if (safeguardRequestDTO === null || safeguardRequestDTO === undefined) {
|
|
8391
|
+
throw new Error('Required parameter safeguardRequestDTO was null or undefined when calling updateSafeguardRuleUsingPOST.');
|
|
8392
|
+
}
|
|
8393
|
+
let headers = this.defaultHeaders;
|
|
8394
|
+
if (reqId !== undefined && reqId !== null) {
|
|
8395
|
+
headers = headers.set('reqId', String(reqId));
|
|
8396
|
+
}
|
|
8397
|
+
if (token !== undefined && token !== null) {
|
|
8398
|
+
headers = headers.set('token', String(token));
|
|
8399
|
+
}
|
|
8400
|
+
// to determine the Accept header
|
|
8401
|
+
let httpHeaderAccepts = [
|
|
8402
|
+
'application/json'
|
|
8403
|
+
];
|
|
8404
|
+
const httpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
|
|
8405
|
+
if (httpHeaderAcceptSelected != undefined) {
|
|
8406
|
+
headers = headers.set('Accept', httpHeaderAcceptSelected);
|
|
8407
|
+
}
|
|
8408
|
+
// to determine the Content-Type header
|
|
8409
|
+
const consumes = [
|
|
8410
|
+
'application/json'
|
|
8411
|
+
];
|
|
8412
|
+
const httpContentTypeSelected = this.configuration.selectHeaderContentType(consumes);
|
|
8413
|
+
if (httpContentTypeSelected != undefined) {
|
|
8414
|
+
headers = headers.set('Content-Type', httpContentTypeSelected);
|
|
8415
|
+
}
|
|
8416
|
+
return this.httpClient.post(`${this.basePath}/v2/api/safeguard/update/${encodeURIComponent(String(safeguardId))}/`, safeguardRequestDTO, {
|
|
8417
|
+
withCredentials: this.configuration.withCredentials,
|
|
8418
|
+
headers: headers,
|
|
8419
|
+
observe: observe,
|
|
8420
|
+
reportProgress: reportProgress
|
|
8421
|
+
});
|
|
8422
|
+
}
|
|
8423
|
+
validateSafeguardRuleUsingGET(safeguardRequestDTO, reqId, token, observe = 'body', reportProgress = false) {
|
|
8424
|
+
if (safeguardRequestDTO === null || safeguardRequestDTO === undefined) {
|
|
8425
|
+
throw new Error('Required parameter safeguardRequestDTO was null or undefined when calling validateSafeguardRuleUsingGET.');
|
|
8426
|
+
}
|
|
8427
|
+
let headers = this.defaultHeaders;
|
|
8428
|
+
if (reqId !== undefined && reqId !== null) {
|
|
8429
|
+
headers = headers.set('reqId', String(reqId));
|
|
8430
|
+
}
|
|
8431
|
+
if (token !== undefined && token !== null) {
|
|
8432
|
+
headers = headers.set('token', String(token));
|
|
8433
|
+
}
|
|
8434
|
+
// to determine the Accept header
|
|
8435
|
+
let httpHeaderAccepts = [
|
|
8436
|
+
'application/json'
|
|
8437
|
+
];
|
|
8438
|
+
const httpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
|
|
8439
|
+
if (httpHeaderAcceptSelected != undefined) {
|
|
8440
|
+
headers = headers.set('Accept', httpHeaderAcceptSelected);
|
|
8441
|
+
}
|
|
8442
|
+
// to determine the Content-Type header
|
|
8443
|
+
const consumes = [];
|
|
8444
|
+
const httpContentTypeSelected = this.configuration.selectHeaderContentType(consumes);
|
|
8445
|
+
if (httpContentTypeSelected != undefined) {
|
|
8446
|
+
headers = headers.set('Content-Type', httpContentTypeSelected);
|
|
8447
|
+
}
|
|
8448
|
+
return this.httpClient.get(`${this.basePath}/v2/api/safeguard/validate`, {
|
|
8449
|
+
withCredentials: this.configuration.withCredentials,
|
|
8450
|
+
headers: headers,
|
|
8451
|
+
observe: observe,
|
|
8452
|
+
reportProgress: reportProgress
|
|
8453
|
+
});
|
|
8454
|
+
}
|
|
8455
|
+
}
|
|
8456
|
+
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 });
|
|
8457
|
+
SafeguardControllerService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: SafeguardControllerService });
|
|
8458
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: SafeguardControllerService, decorators: [{
|
|
8459
|
+
type: Injectable
|
|
8460
|
+
}], ctorParameters: function () {
|
|
8461
|
+
return [{ type: i1.HttpClient }, { type: undefined, decorators: [{
|
|
8462
|
+
type: Optional
|
|
8463
|
+
}, {
|
|
8464
|
+
type: Inject,
|
|
8465
|
+
args: [BASE_PATH]
|
|
8466
|
+
}] }, { type: Configuration, decorators: [{
|
|
8467
|
+
type: Optional
|
|
8468
|
+
}] }];
|
|
8469
|
+
} });
|
|
8470
|
+
|
|
8040
8471
|
/**
|
|
8041
8472
|
* Api Documentation
|
|
8042
8473
|
* Api Documentation
|
|
@@ -8052,7 +8483,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
8052
8483
|
class SliceXControllerService {
|
|
8053
8484
|
constructor(httpClient, basePath, configuration) {
|
|
8054
8485
|
this.httpClient = httpClient;
|
|
8055
|
-
this.basePath = 'https://
|
|
8486
|
+
this.basePath = 'https://apiv2stage3.atomex.net';
|
|
8056
8487
|
this.defaultHeaders = new HttpHeaders();
|
|
8057
8488
|
this.configuration = new Configuration();
|
|
8058
8489
|
if (basePath) {
|
|
@@ -8458,7 +8889,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
8458
8889
|
class StrategyControllerService {
|
|
8459
8890
|
constructor(httpClient, basePath, configuration) {
|
|
8460
8891
|
this.httpClient = httpClient;
|
|
8461
|
-
this.basePath = 'https://
|
|
8892
|
+
this.basePath = 'https://apiv2stage3.atomex.net';
|
|
8462
8893
|
this.defaultHeaders = new HttpHeaders();
|
|
8463
8894
|
this.configuration = new Configuration();
|
|
8464
8895
|
if (basePath) {
|
|
@@ -9628,7 +10059,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
9628
10059
|
class StrategyTemplateControllerService {
|
|
9629
10060
|
constructor(httpClient, basePath, configuration) {
|
|
9630
10061
|
this.httpClient = httpClient;
|
|
9631
|
-
this.basePath = 'https://
|
|
10062
|
+
this.basePath = 'https://apiv2stage3.atomex.net';
|
|
9632
10063
|
this.defaultHeaders = new HttpHeaders();
|
|
9633
10064
|
this.configuration = new Configuration();
|
|
9634
10065
|
if (basePath) {
|
|
@@ -9752,7 +10183,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
9752
10183
|
class UILoggerControllerService {
|
|
9753
10184
|
constructor(httpClient, basePath, configuration) {
|
|
9754
10185
|
this.httpClient = httpClient;
|
|
9755
|
-
this.basePath = 'https://
|
|
10186
|
+
this.basePath = 'https://apiv2stage3.atomex.net';
|
|
9756
10187
|
this.defaultHeaders = new HttpHeaders();
|
|
9757
10188
|
this.configuration = new Configuration();
|
|
9758
10189
|
if (basePath) {
|
|
@@ -9846,7 +10277,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
9846
10277
|
class UserPreferenceControllerService {
|
|
9847
10278
|
constructor(httpClient, basePath, configuration) {
|
|
9848
10279
|
this.httpClient = httpClient;
|
|
9849
|
-
this.basePath = 'https://
|
|
10280
|
+
this.basePath = 'https://apiv2stage3.atomex.net';
|
|
9850
10281
|
this.defaultHeaders = new HttpHeaders();
|
|
9851
10282
|
this.configuration = new Configuration();
|
|
9852
10283
|
if (basePath) {
|
|
@@ -10007,7 +10438,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
10007
10438
|
}] }];
|
|
10008
10439
|
} });
|
|
10009
10440
|
|
|
10010
|
-
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];
|
|
10441
|
+
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];
|
|
10011
10442
|
|
|
10012
10443
|
var ABTestingDTO;
|
|
10013
10444
|
(function (ABTestingDTO) {
|
|
@@ -11355,6 +11786,76 @@ var RuleDTO;
|
|
|
11355
11786
|
};
|
|
11356
11787
|
})(RuleDTO || (RuleDTO = {}));
|
|
11357
11788
|
|
|
11789
|
+
/**
|
|
11790
|
+
* Api Documentation
|
|
11791
|
+
* Api Documentation
|
|
11792
|
+
*
|
|
11793
|
+
* OpenAPI spec version: 1.0
|
|
11794
|
+
*
|
|
11795
|
+
*
|
|
11796
|
+
* NOTE: This class is auto generated by the swagger code generator program.
|
|
11797
|
+
* https://github.com/swagger-api/swagger-codegen.git
|
|
11798
|
+
* Do not edit the class manually.
|
|
11799
|
+
*/
|
|
11800
|
+
var SafeguardDetail;
|
|
11801
|
+
(function (SafeguardDetail) {
|
|
11802
|
+
SafeguardDetail.TargetingScopeEnum = {
|
|
11803
|
+
APP: 'APP',
|
|
11804
|
+
INVENTORY: 'INVENTORY'
|
|
11805
|
+
};
|
|
11806
|
+
})(SafeguardDetail || (SafeguardDetail = {}));
|
|
11807
|
+
|
|
11808
|
+
/**
|
|
11809
|
+
* Api Documentation
|
|
11810
|
+
* Api Documentation
|
|
11811
|
+
*
|
|
11812
|
+
* OpenAPI spec version: 1.0
|
|
11813
|
+
*
|
|
11814
|
+
*
|
|
11815
|
+
* NOTE: This class is auto generated by the swagger code generator program.
|
|
11816
|
+
* https://github.com/swagger-api/swagger-codegen.git
|
|
11817
|
+
* Do not edit the class manually.
|
|
11818
|
+
*/
|
|
11819
|
+
var SafeguardEntity;
|
|
11820
|
+
(function (SafeguardEntity) {
|
|
11821
|
+
SafeguardEntity.TargetingScopeEnum = {
|
|
11822
|
+
APP: 'APP',
|
|
11823
|
+
INVENTORY: 'INVENTORY'
|
|
11824
|
+
};
|
|
11825
|
+
})(SafeguardEntity || (SafeguardEntity = {}));
|
|
11826
|
+
|
|
11827
|
+
var SafeguardExclusionDTO;
|
|
11828
|
+
(function (SafeguardExclusionDTO) {
|
|
11829
|
+
SafeguardExclusionDTO.ScopeEnum = {
|
|
11830
|
+
APP: 'APP',
|
|
11831
|
+
INVENTORY: 'INVENTORY'
|
|
11832
|
+
};
|
|
11833
|
+
})(SafeguardExclusionDTO || (SafeguardExclusionDTO = {}));
|
|
11834
|
+
|
|
11835
|
+
var SafeguardRequestDTO;
|
|
11836
|
+
(function (SafeguardRequestDTO) {
|
|
11837
|
+
SafeguardRequestDTO.TargetingScopeEnum = {
|
|
11838
|
+
APP: 'APP',
|
|
11839
|
+
INVENTORY: 'INVENTORY'
|
|
11840
|
+
};
|
|
11841
|
+
})(SafeguardRequestDTO || (SafeguardRequestDTO = {}));
|
|
11842
|
+
|
|
11843
|
+
var SafeguardResponseDTO;
|
|
11844
|
+
(function (SafeguardResponseDTO) {
|
|
11845
|
+
SafeguardResponseDTO.TargetingScopeEnum = {
|
|
11846
|
+
APP: 'APP',
|
|
11847
|
+
INVENTORY: 'INVENTORY'
|
|
11848
|
+
};
|
|
11849
|
+
})(SafeguardResponseDTO || (SafeguardResponseDTO = {}));
|
|
11850
|
+
|
|
11851
|
+
var SafeguardRuleExecutionLogEntity;
|
|
11852
|
+
(function (SafeguardRuleExecutionLogEntity) {
|
|
11853
|
+
SafeguardRuleExecutionLogEntity.StatusEnum = {
|
|
11854
|
+
ACTIVE: 'ACTIVE',
|
|
11855
|
+
INACTIVE: 'INACTIVE'
|
|
11856
|
+
};
|
|
11857
|
+
})(SafeguardRuleExecutionLogEntity || (SafeguardRuleExecutionLogEntity = {}));
|
|
11858
|
+
|
|
11358
11859
|
var SchedulerRequest;
|
|
11359
11860
|
(function (SchedulerRequest) {
|
|
11360
11861
|
SchedulerRequest.ScheduleEnum = {
|
|
@@ -11678,6 +12179,7 @@ ApiModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.
|
|
|
11678
12179
|
ReportControllerService,
|
|
11679
12180
|
ReportingControllerService,
|
|
11680
12181
|
ReportingSchedulerControllerService,
|
|
12182
|
+
SafeguardControllerService,
|
|
11681
12183
|
SliceXControllerService,
|
|
11682
12184
|
StrategyControllerService,
|
|
11683
12185
|
StrategyTemplateControllerService,
|
|
@@ -11716,6 +12218,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
11716
12218
|
ReportControllerService,
|
|
11717
12219
|
ReportingControllerService,
|
|
11718
12220
|
ReportingSchedulerControllerService,
|
|
12221
|
+
SafeguardControllerService,
|
|
11719
12222
|
SliceXControllerService,
|
|
11720
12223
|
StrategyControllerService,
|
|
11721
12224
|
StrategyTemplateControllerService,
|
|
@@ -11737,5 +12240,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
11737
12240
|
* Generated bundle index. Do not edit.
|
|
11738
12241
|
*/
|
|
11739
12242
|
|
|
11740
|
-
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 };
|
|
12243
|
+
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 };
|
|
11741
12244
|
//# sourceMappingURL=revxui-api-clients-ts.mjs.map
|