@revxui/api-clients-ts 1.1.435 → 1.1.436
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/safeguardController.service.d.ts +192 -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 +2 -2
- package/esm2020/api/bidFunnelController.service.mjs +2 -2
- package/esm2020/api/bulkStrategyController.service.mjs +2 -2
- package/esm2020/api/cSSThemeController_.service.mjs +2 -2
- package/esm2020/api/campaignController.service.mjs +2 -2
- package/esm2020/api/catalogController.service.mjs +2 -2
- package/esm2020/api/clickDestinationController.service.mjs +2 -2
- package/esm2020/api/creativeController.service.mjs +2 -2
- package/esm2020/api/creativeSetsController.service.mjs +2 -2
- package/esm2020/api/creativeTemplateThemesController.service.mjs +2 -2
- package/esm2020/api/creativeTemplateVariablesController.service.mjs +2 -2
- package/esm2020/api/creativeTemplatesController.service.mjs +2 -2
- package/esm2020/api/customerReportingController.service.mjs +2 -2
- package/esm2020/api/dashboardController.service.mjs +2 -2
- package/esm2020/api/experimentsController.service.mjs +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 +502 -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/apiResponseObjectListSafeguardBlockedItemDTO.mjs +2 -0
- package/esm2020/model/apiResponseObjectListSafeguardDetail.mjs +2 -0
- package/esm2020/model/apiResponseObjectListSafeguardExclusionDTO.mjs +2 -0
- package/esm2020/model/apiResponseObjectListSafeguardRuleMasterEntity.mjs +2 -0
- package/esm2020/model/apiResponseObjectMaplongstring.mjs +13 -0
- package/esm2020/model/apiResponseObjectMapstringlong.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/safeguardBlockedItemDTO.mjs +22 -0
- package/esm2020/model/safeguardDetail.mjs +8 -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/safeguardRuleMasterEntity.mjs +13 -0
- package/fesm2015/revxui-api-clients-ts.mjs +584 -32
- package/fesm2015/revxui-api-clients-ts.mjs.map +1 -1
- package/fesm2020/revxui-api-clients-ts.mjs +630 -32
- package/fesm2020/revxui-api-clients-ts.mjs.map +1 -1
- package/model/apiResponseObjectListMapstringobject.d.ts +17 -0
- package/model/apiResponseObjectListSafeguardBlockedItemDTO.d.ts +17 -0
- package/model/apiResponseObjectListSafeguardDetail.d.ts +17 -0
- package/model/apiResponseObjectListSafeguardExclusionDTO.d.ts +17 -0
- package/model/apiResponseObjectListSafeguardRuleMasterEntity.d.ts +17 -0
- package/model/apiResponseObjectMaplongstring.d.ts +18 -0
- package/model/apiResponseObjectMapstringlong.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/safeguardBlockedItemDTO.d.ts +33 -0
- package/model/safeguardDetail.d.ts +36 -0
- package/model/safeguardExclusionDTO.d.ts +25 -0
- package/model/safeguardRequestDTO.d.ts +33 -0
- package/model/safeguardResponseDTO.d.ts +34 -0
- package/model/safeguardRuleMasterEntity.d.ts +20 -0
- package/package.json +1 -1
|
@@ -85,7 +85,7 @@ class Configuration {
|
|
|
85
85
|
class AdminControllerService {
|
|
86
86
|
constructor(httpClient, basePath, configuration) {
|
|
87
87
|
this.httpClient = httpClient;
|
|
88
|
-
this.basePath = 'https://
|
|
88
|
+
this.basePath = 'https://apiv2stage3.atomex.net';
|
|
89
89
|
this.defaultHeaders = new HttpHeaders();
|
|
90
90
|
this.configuration = new Configuration();
|
|
91
91
|
if (basePath) {
|
|
@@ -279,7 +279,7 @@ class CustomHttpUrlEncodingCodec extends HttpUrlEncodingCodec {
|
|
|
279
279
|
class AdvertiserControllerService {
|
|
280
280
|
constructor(httpClient, basePath, configuration) {
|
|
281
281
|
this.httpClient = httpClient;
|
|
282
|
-
this.basePath = 'https://
|
|
282
|
+
this.basePath = 'https://apiv2stage3.atomex.net';
|
|
283
283
|
this.defaultHeaders = new HttpHeaders();
|
|
284
284
|
this.configuration = new Configuration();
|
|
285
285
|
if (basePath) {
|
|
@@ -829,7 +829,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
829
829
|
class AppSettingsControllerService {
|
|
830
830
|
constructor(httpClient, basePath, configuration) {
|
|
831
831
|
this.httpClient = httpClient;
|
|
832
|
-
this.basePath = 'https://
|
|
832
|
+
this.basePath = 'https://apiv2stage3.atomex.net';
|
|
833
833
|
this.defaultHeaders = new HttpHeaders();
|
|
834
834
|
this.configuration = new Configuration();
|
|
835
835
|
if (basePath) {
|
|
@@ -1074,7 +1074,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
1074
1074
|
class 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) {
|
|
@@ -2236,7 +2236,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
2236
2236
|
class BidFunnelControllerService {
|
|
2237
2237
|
constructor(httpClient, basePath, configuration) {
|
|
2238
2238
|
this.httpClient = httpClient;
|
|
2239
|
-
this.basePath = 'https://
|
|
2239
|
+
this.basePath = 'https://apiv2stage3.atomex.net';
|
|
2240
2240
|
this.defaultHeaders = new HttpHeaders();
|
|
2241
2241
|
this.configuration = new Configuration();
|
|
2242
2242
|
if (basePath) {
|
|
@@ -2385,7 +2385,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
2385
2385
|
class BulkStrategyControllerService {
|
|
2386
2386
|
constructor(httpClient, basePath, configuration) {
|
|
2387
2387
|
this.httpClient = httpClient;
|
|
2388
|
-
this.basePath = 'https://
|
|
2388
|
+
this.basePath = 'https://apiv2stage3.atomex.net';
|
|
2389
2389
|
this.defaultHeaders = new HttpHeaders();
|
|
2390
2390
|
this.configuration = new Configuration();
|
|
2391
2391
|
if (basePath) {
|
|
@@ -2610,7 +2610,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
2610
2610
|
class CSSThemeController_Service {
|
|
2611
2611
|
constructor(httpClient, basePath, configuration) {
|
|
2612
2612
|
this.httpClient = httpClient;
|
|
2613
|
-
this.basePath = 'https://
|
|
2613
|
+
this.basePath = 'https://apiv2stage3.atomex.net';
|
|
2614
2614
|
this.defaultHeaders = new HttpHeaders();
|
|
2615
2615
|
this.configuration = new Configuration();
|
|
2616
2616
|
if (basePath) {
|
|
@@ -2719,7 +2719,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
2719
2719
|
class CampaignControllerService {
|
|
2720
2720
|
constructor(httpClient, basePath, configuration) {
|
|
2721
2721
|
this.httpClient = httpClient;
|
|
2722
|
-
this.basePath = 'https://
|
|
2722
|
+
this.basePath = 'https://apiv2stage3.atomex.net';
|
|
2723
2723
|
this.defaultHeaders = new HttpHeaders();
|
|
2724
2724
|
this.configuration = new Configuration();
|
|
2725
2725
|
if (basePath) {
|
|
@@ -3160,7 +3160,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
3160
3160
|
class CatalogControllerService {
|
|
3161
3161
|
constructor(httpClient, basePath, configuration) {
|
|
3162
3162
|
this.httpClient = httpClient;
|
|
3163
|
-
this.basePath = 'https://
|
|
3163
|
+
this.basePath = 'https://apiv2stage3.atomex.net';
|
|
3164
3164
|
this.defaultHeaders = new HttpHeaders();
|
|
3165
3165
|
this.configuration = new Configuration();
|
|
3166
3166
|
if (basePath) {
|
|
@@ -3403,7 +3403,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
3403
3403
|
class ClickDestinationControllerService {
|
|
3404
3404
|
constructor(httpClient, basePath, configuration) {
|
|
3405
3405
|
this.httpClient = httpClient;
|
|
3406
|
-
this.basePath = 'https://
|
|
3406
|
+
this.basePath = 'https://apiv2stage3.atomex.net';
|
|
3407
3407
|
this.defaultHeaders = new HttpHeaders();
|
|
3408
3408
|
this.configuration = new Configuration();
|
|
3409
3409
|
if (basePath) {
|
|
@@ -3635,7 +3635,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
3635
3635
|
class CreativeControllerService {
|
|
3636
3636
|
constructor(httpClient, basePath, configuration) {
|
|
3637
3637
|
this.httpClient = httpClient;
|
|
3638
|
-
this.basePath = 'https://
|
|
3638
|
+
this.basePath = 'https://apiv2stage3.atomex.net';
|
|
3639
3639
|
this.defaultHeaders = new HttpHeaders();
|
|
3640
3640
|
this.configuration = new Configuration();
|
|
3641
3641
|
if (basePath) {
|
|
@@ -4238,7 +4238,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
4238
4238
|
class CreativeSetsControllerService {
|
|
4239
4239
|
constructor(httpClient, basePath, configuration) {
|
|
4240
4240
|
this.httpClient = httpClient;
|
|
4241
|
-
this.basePath = 'https://
|
|
4241
|
+
this.basePath = 'https://apiv2stage3.atomex.net';
|
|
4242
4242
|
this.defaultHeaders = new HttpHeaders();
|
|
4243
4243
|
this.configuration = new Configuration();
|
|
4244
4244
|
if (basePath) {
|
|
@@ -4884,7 +4884,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
4884
4884
|
class CreativeTemplateThemesControllerService {
|
|
4885
4885
|
constructor(httpClient, basePath, configuration) {
|
|
4886
4886
|
this.httpClient = httpClient;
|
|
4887
|
-
this.basePath = 'https://
|
|
4887
|
+
this.basePath = 'https://apiv2stage3.atomex.net';
|
|
4888
4888
|
this.defaultHeaders = new HttpHeaders();
|
|
4889
4889
|
this.configuration = new Configuration();
|
|
4890
4890
|
if (basePath) {
|
|
@@ -5069,7 +5069,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
5069
5069
|
class CreativeTemplateVariablesControllerService {
|
|
5070
5070
|
constructor(httpClient, basePath, configuration) {
|
|
5071
5071
|
this.httpClient = httpClient;
|
|
5072
|
-
this.basePath = 'https://
|
|
5072
|
+
this.basePath = 'https://apiv2stage3.atomex.net';
|
|
5073
5073
|
this.defaultHeaders = new HttpHeaders();
|
|
5074
5074
|
this.configuration = new Configuration();
|
|
5075
5075
|
if (basePath) {
|
|
@@ -5147,7 +5147,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
5147
5147
|
class CreativeTemplatesControllerService {
|
|
5148
5148
|
constructor(httpClient, basePath, configuration) {
|
|
5149
5149
|
this.httpClient = httpClient;
|
|
5150
|
-
this.basePath = 'https://
|
|
5150
|
+
this.basePath = 'https://apiv2stage3.atomex.net';
|
|
5151
5151
|
this.defaultHeaders = new HttpHeaders();
|
|
5152
5152
|
this.configuration = new Configuration();
|
|
5153
5153
|
if (basePath) {
|
|
@@ -5312,7 +5312,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
5312
5312
|
class CustomerReportingControllerService {
|
|
5313
5313
|
constructor(httpClient, basePath, configuration) {
|
|
5314
5314
|
this.httpClient = httpClient;
|
|
5315
|
-
this.basePath = 'https://
|
|
5315
|
+
this.basePath = 'https://apiv2stage3.atomex.net';
|
|
5316
5316
|
this.defaultHeaders = new HttpHeaders();
|
|
5317
5317
|
this.configuration = new Configuration();
|
|
5318
5318
|
if (basePath) {
|
|
@@ -5475,7 +5475,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
5475
5475
|
class DashboardControllerService {
|
|
5476
5476
|
constructor(httpClient, basePath, configuration) {
|
|
5477
5477
|
this.httpClient = httpClient;
|
|
5478
|
-
this.basePath = 'https://
|
|
5478
|
+
this.basePath = 'https://apiv2stage3.atomex.net';
|
|
5479
5479
|
this.defaultHeaders = new HttpHeaders();
|
|
5480
5480
|
this.configuration = new Configuration();
|
|
5481
5481
|
if (basePath) {
|
|
@@ -6133,7 +6133,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
6133
6133
|
class ExperimentsControllerService {
|
|
6134
6134
|
constructor(httpClient, basePath, configuration) {
|
|
6135
6135
|
this.httpClient = httpClient;
|
|
6136
|
-
this.basePath = 'https://
|
|
6136
|
+
this.basePath = 'https://apiv2stage3.atomex.net';
|
|
6137
6137
|
this.defaultHeaders = new HttpHeaders();
|
|
6138
6138
|
this.configuration = new Configuration();
|
|
6139
6139
|
if (basePath) {
|
|
@@ -6860,7 +6860,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
6860
6860
|
class NotificationsControllerService {
|
|
6861
6861
|
constructor(httpClient, basePath, configuration) {
|
|
6862
6862
|
this.httpClient = httpClient;
|
|
6863
|
-
this.basePath = 'https://
|
|
6863
|
+
this.basePath = 'https://apiv2stage3.atomex.net';
|
|
6864
6864
|
this.defaultHeaders = new HttpHeaders();
|
|
6865
6865
|
this.configuration = new Configuration();
|
|
6866
6866
|
if (basePath) {
|
|
@@ -7073,7 +7073,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
7073
7073
|
class PixelControllerService {
|
|
7074
7074
|
constructor(httpClient, basePath, configuration) {
|
|
7075
7075
|
this.httpClient = httpClient;
|
|
7076
|
-
this.basePath = 'https://
|
|
7076
|
+
this.basePath = 'https://apiv2stage3.atomex.net';
|
|
7077
7077
|
this.defaultHeaders = new HttpHeaders();
|
|
7078
7078
|
this.configuration = new Configuration();
|
|
7079
7079
|
if (basePath) {
|
|
@@ -7380,7 +7380,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
7380
7380
|
class ReportControllerService {
|
|
7381
7381
|
constructor(httpClient, basePath, configuration) {
|
|
7382
7382
|
this.httpClient = httpClient;
|
|
7383
|
-
this.basePath = 'https://
|
|
7383
|
+
this.basePath = 'https://apiv2stage3.atomex.net';
|
|
7384
7384
|
this.defaultHeaders = new HttpHeaders();
|
|
7385
7385
|
this.configuration = new Configuration();
|
|
7386
7386
|
if (basePath) {
|
|
@@ -7517,7 +7517,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
7517
7517
|
class ReportingControllerService {
|
|
7518
7518
|
constructor(httpClient, basePath, configuration) {
|
|
7519
7519
|
this.httpClient = httpClient;
|
|
7520
|
-
this.basePath = 'https://
|
|
7520
|
+
this.basePath = 'https://apiv2stage3.atomex.net';
|
|
7521
7521
|
this.defaultHeaders = new HttpHeaders();
|
|
7522
7522
|
this.configuration = new Configuration();
|
|
7523
7523
|
if (basePath) {
|
|
@@ -7687,7 +7687,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
7687
7687
|
class ReportingSchedulerControllerService {
|
|
7688
7688
|
constructor(httpClient, basePath, configuration) {
|
|
7689
7689
|
this.httpClient = httpClient;
|
|
7690
|
-
this.basePath = 'https://
|
|
7690
|
+
this.basePath = 'https://apiv2stage3.atomex.net';
|
|
7691
7691
|
this.defaultHeaders = new HttpHeaders();
|
|
7692
7692
|
this.configuration = new Configuration();
|
|
7693
7693
|
if (basePath) {
|
|
@@ -7987,6 +7987,500 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
7987
7987
|
type: Optional
|
|
7988
7988
|
}] }]; } });
|
|
7989
7989
|
|
|
7990
|
+
/**
|
|
7991
|
+
* Api Documentation
|
|
7992
|
+
* Api Documentation
|
|
7993
|
+
*
|
|
7994
|
+
* OpenAPI spec version: 1.0
|
|
7995
|
+
*
|
|
7996
|
+
*
|
|
7997
|
+
* NOTE: This class is auto generated by the swagger code generator program.
|
|
7998
|
+
* https://github.com/swagger-api/swagger-codegen.git
|
|
7999
|
+
* Do not edit the class manually.
|
|
8000
|
+
*/
|
|
8001
|
+
/* tslint:disable:no-unused-variable member-ordering */
|
|
8002
|
+
class SafeguardControllerService {
|
|
8003
|
+
constructor(httpClient, basePath, configuration) {
|
|
8004
|
+
this.httpClient = httpClient;
|
|
8005
|
+
this.basePath = 'https://apiv2stage3.atomex.net';
|
|
8006
|
+
this.defaultHeaders = new HttpHeaders();
|
|
8007
|
+
this.configuration = new Configuration();
|
|
8008
|
+
if (basePath) {
|
|
8009
|
+
this.basePath = basePath;
|
|
8010
|
+
}
|
|
8011
|
+
if (configuration) {
|
|
8012
|
+
this.configuration = configuration;
|
|
8013
|
+
this.basePath = basePath || configuration.basePath || this.basePath;
|
|
8014
|
+
}
|
|
8015
|
+
}
|
|
8016
|
+
/**
|
|
8017
|
+
* @param consumes string[] mime-types
|
|
8018
|
+
* @return true: consumes contains 'multipart/form-data', false: otherwise
|
|
8019
|
+
*/
|
|
8020
|
+
canConsumeForm(consumes) {
|
|
8021
|
+
const form = 'multipart/form-data';
|
|
8022
|
+
for (const consume of consumes) {
|
|
8023
|
+
if (form === consume) {
|
|
8024
|
+
return true;
|
|
8025
|
+
}
|
|
8026
|
+
}
|
|
8027
|
+
return false;
|
|
8028
|
+
}
|
|
8029
|
+
createSafeguardExclusionListUsingPOST(safeguardExclusionDTO, reqId, token, observe = 'body', reportProgress = false) {
|
|
8030
|
+
if (safeguardExclusionDTO === null || safeguardExclusionDTO === undefined) {
|
|
8031
|
+
throw new Error('Required parameter safeguardExclusionDTO was null or undefined when calling createSafeguardExclusionListUsingPOST.');
|
|
8032
|
+
}
|
|
8033
|
+
let headers = this.defaultHeaders;
|
|
8034
|
+
if (reqId !== undefined && reqId !== null) {
|
|
8035
|
+
headers = headers.set('reqId', String(reqId));
|
|
8036
|
+
}
|
|
8037
|
+
if (token !== undefined && token !== null) {
|
|
8038
|
+
headers = headers.set('token', String(token));
|
|
8039
|
+
}
|
|
8040
|
+
// to determine the Accept header
|
|
8041
|
+
let httpHeaderAccepts = [
|
|
8042
|
+
'application/json'
|
|
8043
|
+
];
|
|
8044
|
+
const httpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
|
|
8045
|
+
if (httpHeaderAcceptSelected != undefined) {
|
|
8046
|
+
headers = headers.set('Accept', httpHeaderAcceptSelected);
|
|
8047
|
+
}
|
|
8048
|
+
// to determine the Content-Type header
|
|
8049
|
+
const consumes = [
|
|
8050
|
+
'application/json'
|
|
8051
|
+
];
|
|
8052
|
+
const httpContentTypeSelected = this.configuration.selectHeaderContentType(consumes);
|
|
8053
|
+
if (httpContentTypeSelected != undefined) {
|
|
8054
|
+
headers = headers.set('Content-Type', httpContentTypeSelected);
|
|
8055
|
+
}
|
|
8056
|
+
return this.httpClient.post(`${this.basePath}/v2/api/safeguard/exclusion/create`, safeguardExclusionDTO, {
|
|
8057
|
+
withCredentials: this.configuration.withCredentials,
|
|
8058
|
+
headers: headers,
|
|
8059
|
+
observe: observe,
|
|
8060
|
+
reportProgress: reportProgress
|
|
8061
|
+
});
|
|
8062
|
+
}
|
|
8063
|
+
createSafeguardRuleUsingPOST(safeguardRequestDTO, reqId, token, observe = 'body', reportProgress = false) {
|
|
8064
|
+
if (safeguardRequestDTO === null || safeguardRequestDTO === undefined) {
|
|
8065
|
+
throw new Error('Required parameter safeguardRequestDTO was null or undefined when calling createSafeguardRuleUsingPOST.');
|
|
8066
|
+
}
|
|
8067
|
+
let headers = this.defaultHeaders;
|
|
8068
|
+
if (reqId !== undefined && reqId !== null) {
|
|
8069
|
+
headers = headers.set('reqId', String(reqId));
|
|
8070
|
+
}
|
|
8071
|
+
if (token !== undefined && token !== null) {
|
|
8072
|
+
headers = headers.set('token', String(token));
|
|
8073
|
+
}
|
|
8074
|
+
// to determine the Accept header
|
|
8075
|
+
let httpHeaderAccepts = [
|
|
8076
|
+
'application/json'
|
|
8077
|
+
];
|
|
8078
|
+
const httpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
|
|
8079
|
+
if (httpHeaderAcceptSelected != undefined) {
|
|
8080
|
+
headers = headers.set('Accept', httpHeaderAcceptSelected);
|
|
8081
|
+
}
|
|
8082
|
+
// to determine the Content-Type header
|
|
8083
|
+
const consumes = [
|
|
8084
|
+
'application/json'
|
|
8085
|
+
];
|
|
8086
|
+
const httpContentTypeSelected = this.configuration.selectHeaderContentType(consumes);
|
|
8087
|
+
if (httpContentTypeSelected != undefined) {
|
|
8088
|
+
headers = headers.set('Content-Type', httpContentTypeSelected);
|
|
8089
|
+
}
|
|
8090
|
+
return this.httpClient.post(`${this.basePath}/v2/api/safeguard/create`, safeguardRequestDTO, {
|
|
8091
|
+
withCredentials: this.configuration.withCredentials,
|
|
8092
|
+
headers: headers,
|
|
8093
|
+
observe: observe,
|
|
8094
|
+
reportProgress: reportProgress
|
|
8095
|
+
});
|
|
8096
|
+
}
|
|
8097
|
+
getBlockedItemCountUsingGET(safeguardId, strategyId, reqId, token, observe = 'body', reportProgress = false) {
|
|
8098
|
+
if (safeguardId === null || safeguardId === undefined) {
|
|
8099
|
+
throw new Error('Required parameter safeguardId was null or undefined when calling getBlockedItemCountUsingGET.');
|
|
8100
|
+
}
|
|
8101
|
+
if (strategyId === null || strategyId === undefined) {
|
|
8102
|
+
throw new Error('Required parameter strategyId was null or undefined when calling getBlockedItemCountUsingGET.');
|
|
8103
|
+
}
|
|
8104
|
+
let queryParameters = new HttpParams({ encoder: new CustomHttpUrlEncodingCodec() });
|
|
8105
|
+
if (safeguardId !== undefined && safeguardId !== null) {
|
|
8106
|
+
queryParameters = queryParameters.set('safeguardId', safeguardId);
|
|
8107
|
+
}
|
|
8108
|
+
if (strategyId !== undefined && strategyId !== null) {
|
|
8109
|
+
queryParameters = queryParameters.set('strategyId', strategyId);
|
|
8110
|
+
}
|
|
8111
|
+
let headers = this.defaultHeaders;
|
|
8112
|
+
if (reqId !== undefined && reqId !== null) {
|
|
8113
|
+
headers = headers.set('reqId', String(reqId));
|
|
8114
|
+
}
|
|
8115
|
+
if (token !== undefined && token !== null) {
|
|
8116
|
+
headers = headers.set('token', String(token));
|
|
8117
|
+
}
|
|
8118
|
+
// to determine the Accept header
|
|
8119
|
+
let httpHeaderAccepts = [
|
|
8120
|
+
'application/json'
|
|
8121
|
+
];
|
|
8122
|
+
const httpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
|
|
8123
|
+
if (httpHeaderAcceptSelected != undefined) {
|
|
8124
|
+
headers = headers.set('Accept', httpHeaderAcceptSelected);
|
|
8125
|
+
}
|
|
8126
|
+
// to determine the Content-Type header
|
|
8127
|
+
const consumes = [];
|
|
8128
|
+
return this.httpClient.get(`${this.basePath}/v2/api/safeguard/blocked_entities/count`, {
|
|
8129
|
+
params: queryParameters,
|
|
8130
|
+
withCredentials: this.configuration.withCredentials,
|
|
8131
|
+
headers: headers,
|
|
8132
|
+
observe: observe,
|
|
8133
|
+
reportProgress: reportProgress
|
|
8134
|
+
});
|
|
8135
|
+
}
|
|
8136
|
+
getBlockedItemDetailsUsingGET(safeguardId, strategyId, reqId, token, observe = 'body', reportProgress = false) {
|
|
8137
|
+
if (safeguardId === null || safeguardId === undefined) {
|
|
8138
|
+
throw new Error('Required parameter safeguardId was null or undefined when calling getBlockedItemDetailsUsingGET.');
|
|
8139
|
+
}
|
|
8140
|
+
if (strategyId === null || strategyId === undefined) {
|
|
8141
|
+
throw new Error('Required parameter strategyId was null or undefined when calling getBlockedItemDetailsUsingGET.');
|
|
8142
|
+
}
|
|
8143
|
+
let queryParameters = new HttpParams({ encoder: new CustomHttpUrlEncodingCodec() });
|
|
8144
|
+
if (safeguardId !== undefined && safeguardId !== null) {
|
|
8145
|
+
queryParameters = queryParameters.set('safeguardId', safeguardId);
|
|
8146
|
+
}
|
|
8147
|
+
if (strategyId !== undefined && strategyId !== null) {
|
|
8148
|
+
queryParameters = queryParameters.set('strategyId', strategyId);
|
|
8149
|
+
}
|
|
8150
|
+
let headers = this.defaultHeaders;
|
|
8151
|
+
if (reqId !== undefined && reqId !== null) {
|
|
8152
|
+
headers = headers.set('reqId', String(reqId));
|
|
8153
|
+
}
|
|
8154
|
+
if (token !== undefined && token !== null) {
|
|
8155
|
+
headers = headers.set('token', String(token));
|
|
8156
|
+
}
|
|
8157
|
+
// to determine the Accept header
|
|
8158
|
+
let httpHeaderAccepts = [
|
|
8159
|
+
'application/json'
|
|
8160
|
+
];
|
|
8161
|
+
const httpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
|
|
8162
|
+
if (httpHeaderAcceptSelected != undefined) {
|
|
8163
|
+
headers = headers.set('Accept', httpHeaderAcceptSelected);
|
|
8164
|
+
}
|
|
8165
|
+
// to determine the Content-Type header
|
|
8166
|
+
const consumes = [];
|
|
8167
|
+
return this.httpClient.get(`${this.basePath}/v2/api/safeguard/blocked_entities`, {
|
|
8168
|
+
params: queryParameters,
|
|
8169
|
+
withCredentials: this.configuration.withCredentials,
|
|
8170
|
+
headers: headers,
|
|
8171
|
+
observe: observe,
|
|
8172
|
+
reportProgress: reportProgress
|
|
8173
|
+
});
|
|
8174
|
+
}
|
|
8175
|
+
getSafeguardExclusionListUsingGET(campaignId, reqId, token, observe = 'body', reportProgress = false) {
|
|
8176
|
+
if (campaignId === null || campaignId === undefined) {
|
|
8177
|
+
throw new Error('Required parameter campaignId was null or undefined when calling getSafeguardExclusionListUsingGET.');
|
|
8178
|
+
}
|
|
8179
|
+
let headers = this.defaultHeaders;
|
|
8180
|
+
if (reqId !== undefined && reqId !== null) {
|
|
8181
|
+
headers = headers.set('reqId', String(reqId));
|
|
8182
|
+
}
|
|
8183
|
+
if (token !== undefined && token !== null) {
|
|
8184
|
+
headers = headers.set('token', String(token));
|
|
8185
|
+
}
|
|
8186
|
+
// to determine the Accept header
|
|
8187
|
+
let httpHeaderAccepts = [
|
|
8188
|
+
'application/json'
|
|
8189
|
+
];
|
|
8190
|
+
const httpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
|
|
8191
|
+
if (httpHeaderAcceptSelected != undefined) {
|
|
8192
|
+
headers = headers.set('Accept', httpHeaderAcceptSelected);
|
|
8193
|
+
}
|
|
8194
|
+
// to determine the Content-Type header
|
|
8195
|
+
const consumes = [];
|
|
8196
|
+
return this.httpClient.get(`${this.basePath}/v2/api/safeguard/exclusion/get/${encodeURIComponent(String(campaignId))}/`, {
|
|
8197
|
+
withCredentials: this.configuration.withCredentials,
|
|
8198
|
+
headers: headers,
|
|
8199
|
+
observe: observe,
|
|
8200
|
+
reportProgress: reportProgress
|
|
8201
|
+
});
|
|
8202
|
+
}
|
|
8203
|
+
getSafeguardRuleDetailsUsingGET(safeguardId, reqId, token, observe = 'body', reportProgress = false) {
|
|
8204
|
+
if (safeguardId === null || safeguardId === undefined) {
|
|
8205
|
+
throw new Error('Required parameter safeguardId was null or undefined when calling getSafeguardRuleDetailsUsingGET.');
|
|
8206
|
+
}
|
|
8207
|
+
let headers = this.defaultHeaders;
|
|
8208
|
+
if (reqId !== undefined && reqId !== null) {
|
|
8209
|
+
headers = headers.set('reqId', String(reqId));
|
|
8210
|
+
}
|
|
8211
|
+
if (token !== undefined && token !== null) {
|
|
8212
|
+
headers = headers.set('token', String(token));
|
|
8213
|
+
}
|
|
8214
|
+
// to determine the Accept header
|
|
8215
|
+
let httpHeaderAccepts = [
|
|
8216
|
+
'application/json'
|
|
8217
|
+
];
|
|
8218
|
+
const httpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
|
|
8219
|
+
if (httpHeaderAcceptSelected != undefined) {
|
|
8220
|
+
headers = headers.set('Accept', httpHeaderAcceptSelected);
|
|
8221
|
+
}
|
|
8222
|
+
// to determine the Content-Type header
|
|
8223
|
+
const consumes = [];
|
|
8224
|
+
return this.httpClient.get(`${this.basePath}/v2/api/safeguard/detail/${encodeURIComponent(String(safeguardId))}/`, {
|
|
8225
|
+
withCredentials: this.configuration.withCredentials,
|
|
8226
|
+
headers: headers,
|
|
8227
|
+
observe: observe,
|
|
8228
|
+
reportProgress: reportProgress
|
|
8229
|
+
});
|
|
8230
|
+
}
|
|
8231
|
+
getSafeguardRuleFiltersUsingGET(reqId, token, observe = 'body', reportProgress = false) {
|
|
8232
|
+
let headers = this.defaultHeaders;
|
|
8233
|
+
if (reqId !== undefined && reqId !== null) {
|
|
8234
|
+
headers = headers.set('reqId', String(reqId));
|
|
8235
|
+
}
|
|
8236
|
+
if (token !== undefined && token !== null) {
|
|
8237
|
+
headers = headers.set('token', String(token));
|
|
8238
|
+
}
|
|
8239
|
+
// to determine the Accept header
|
|
8240
|
+
let httpHeaderAccepts = [
|
|
8241
|
+
'application/json'
|
|
8242
|
+
];
|
|
8243
|
+
const httpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
|
|
8244
|
+
if (httpHeaderAcceptSelected != undefined) {
|
|
8245
|
+
headers = headers.set('Accept', httpHeaderAcceptSelected);
|
|
8246
|
+
}
|
|
8247
|
+
// to determine the Content-Type header
|
|
8248
|
+
const consumes = [];
|
|
8249
|
+
return this.httpClient.get(`${this.basePath}/v2/api/safeguard/filters`, {
|
|
8250
|
+
withCredentials: this.configuration.withCredentials,
|
|
8251
|
+
headers: headers,
|
|
8252
|
+
observe: observe,
|
|
8253
|
+
reportProgress: reportProgress
|
|
8254
|
+
});
|
|
8255
|
+
}
|
|
8256
|
+
getSafeguardRulesListUsingGET(entity, id, reqId, token, observe = 'body', reportProgress = false) {
|
|
8257
|
+
if (entity === null || entity === undefined) {
|
|
8258
|
+
throw new Error('Required parameter entity was null or undefined when calling getSafeguardRulesListUsingGET.');
|
|
8259
|
+
}
|
|
8260
|
+
if (id === null || id === undefined) {
|
|
8261
|
+
throw new Error('Required parameter id was null or undefined when calling getSafeguardRulesListUsingGET.');
|
|
8262
|
+
}
|
|
8263
|
+
let queryParameters = new HttpParams({ encoder: new CustomHttpUrlEncodingCodec() });
|
|
8264
|
+
if (entity !== undefined && entity !== null) {
|
|
8265
|
+
queryParameters = queryParameters.set('entity', entity);
|
|
8266
|
+
}
|
|
8267
|
+
if (id !== undefined && id !== null) {
|
|
8268
|
+
queryParameters = queryParameters.set('id', id);
|
|
8269
|
+
}
|
|
8270
|
+
let headers = this.defaultHeaders;
|
|
8271
|
+
if (reqId !== undefined && reqId !== null) {
|
|
8272
|
+
headers = headers.set('reqId', String(reqId));
|
|
8273
|
+
}
|
|
8274
|
+
if (token !== undefined && token !== null) {
|
|
8275
|
+
headers = headers.set('token', String(token));
|
|
8276
|
+
}
|
|
8277
|
+
// to determine the Accept header
|
|
8278
|
+
let httpHeaderAccepts = [
|
|
8279
|
+
'application/json'
|
|
8280
|
+
];
|
|
8281
|
+
const httpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
|
|
8282
|
+
if (httpHeaderAcceptSelected != undefined) {
|
|
8283
|
+
headers = headers.set('Accept', httpHeaderAcceptSelected);
|
|
8284
|
+
}
|
|
8285
|
+
// to determine the Content-Type header
|
|
8286
|
+
const consumes = [];
|
|
8287
|
+
return this.httpClient.get(`${this.basePath}/v2/api/safeguard/list`, {
|
|
8288
|
+
params: queryParameters,
|
|
8289
|
+
withCredentials: this.configuration.withCredentials,
|
|
8290
|
+
headers: headers,
|
|
8291
|
+
observe: observe,
|
|
8292
|
+
reportProgress: reportProgress
|
|
8293
|
+
});
|
|
8294
|
+
}
|
|
8295
|
+
safeguardRuleRunNowUsingGET(safeguardId, reqId, token, observe = 'body', reportProgress = false) {
|
|
8296
|
+
if (safeguardId === null || safeguardId === undefined) {
|
|
8297
|
+
throw new Error('Required parameter safeguardId was null or undefined when calling safeguardRuleRunNowUsingGET.');
|
|
8298
|
+
}
|
|
8299
|
+
let headers = this.defaultHeaders;
|
|
8300
|
+
if (reqId !== undefined && reqId !== null) {
|
|
8301
|
+
headers = headers.set('reqId', String(reqId));
|
|
8302
|
+
}
|
|
8303
|
+
if (token !== undefined && token !== null) {
|
|
8304
|
+
headers = headers.set('token', String(token));
|
|
8305
|
+
}
|
|
8306
|
+
// to determine the Accept header
|
|
8307
|
+
let httpHeaderAccepts = [
|
|
8308
|
+
'application/json'
|
|
8309
|
+
];
|
|
8310
|
+
const httpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
|
|
8311
|
+
if (httpHeaderAcceptSelected != undefined) {
|
|
8312
|
+
headers = headers.set('Accept', httpHeaderAcceptSelected);
|
|
8313
|
+
}
|
|
8314
|
+
// to determine the Content-Type header
|
|
8315
|
+
const consumes = [];
|
|
8316
|
+
return this.httpClient.get(`${this.basePath}/v2/api/safeguard/run_now/${encodeURIComponent(String(safeguardId))}/`, {
|
|
8317
|
+
withCredentials: this.configuration.withCredentials,
|
|
8318
|
+
headers: headers,
|
|
8319
|
+
observe: observe,
|
|
8320
|
+
reportProgress: reportProgress
|
|
8321
|
+
});
|
|
8322
|
+
}
|
|
8323
|
+
updateSafeguardExclusionListUsingPOST(campaignId, safeguardExclusionDTO, reqId, token, observe = 'body', reportProgress = false) {
|
|
8324
|
+
if (campaignId === null || campaignId === undefined) {
|
|
8325
|
+
throw new Error('Required parameter campaignId was null or undefined when calling updateSafeguardExclusionListUsingPOST.');
|
|
8326
|
+
}
|
|
8327
|
+
if (safeguardExclusionDTO === null || safeguardExclusionDTO === undefined) {
|
|
8328
|
+
throw new Error('Required parameter safeguardExclusionDTO was null or undefined when calling updateSafeguardExclusionListUsingPOST.');
|
|
8329
|
+
}
|
|
8330
|
+
let headers = this.defaultHeaders;
|
|
8331
|
+
if (reqId !== undefined && reqId !== null) {
|
|
8332
|
+
headers = headers.set('reqId', String(reqId));
|
|
8333
|
+
}
|
|
8334
|
+
if (token !== undefined && token !== null) {
|
|
8335
|
+
headers = headers.set('token', String(token));
|
|
8336
|
+
}
|
|
8337
|
+
// to determine the Accept header
|
|
8338
|
+
let httpHeaderAccepts = [
|
|
8339
|
+
'application/json'
|
|
8340
|
+
];
|
|
8341
|
+
const httpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
|
|
8342
|
+
if (httpHeaderAcceptSelected != undefined) {
|
|
8343
|
+
headers = headers.set('Accept', httpHeaderAcceptSelected);
|
|
8344
|
+
}
|
|
8345
|
+
// to determine the Content-Type header
|
|
8346
|
+
const consumes = [
|
|
8347
|
+
'application/json'
|
|
8348
|
+
];
|
|
8349
|
+
const httpContentTypeSelected = this.configuration.selectHeaderContentType(consumes);
|
|
8350
|
+
if (httpContentTypeSelected != undefined) {
|
|
8351
|
+
headers = headers.set('Content-Type', httpContentTypeSelected);
|
|
8352
|
+
}
|
|
8353
|
+
return this.httpClient.post(`${this.basePath}/v2/api/safeguard/exclusion/update/${encodeURIComponent(String(campaignId))}/`, safeguardExclusionDTO, {
|
|
8354
|
+
withCredentials: this.configuration.withCredentials,
|
|
8355
|
+
headers: headers,
|
|
8356
|
+
observe: observe,
|
|
8357
|
+
reportProgress: reportProgress
|
|
8358
|
+
});
|
|
8359
|
+
}
|
|
8360
|
+
updateSafeguardRuleStatusUsingGET(ids, status, reqId, token, observe = 'body', reportProgress = false) {
|
|
8361
|
+
if (ids === null || ids === undefined) {
|
|
8362
|
+
throw new Error('Required parameter ids was null or undefined when calling updateSafeguardRuleStatusUsingGET.');
|
|
8363
|
+
}
|
|
8364
|
+
if (status === null || status === undefined) {
|
|
8365
|
+
throw new Error('Required parameter status was null or undefined when calling updateSafeguardRuleStatusUsingGET.');
|
|
8366
|
+
}
|
|
8367
|
+
let queryParameters = new HttpParams({ encoder: new CustomHttpUrlEncodingCodec() });
|
|
8368
|
+
if (ids !== undefined && ids !== null) {
|
|
8369
|
+
queryParameters = queryParameters.set('ids', ids);
|
|
8370
|
+
}
|
|
8371
|
+
if (status !== undefined && status !== null) {
|
|
8372
|
+
queryParameters = queryParameters.set('status', status);
|
|
8373
|
+
}
|
|
8374
|
+
let headers = this.defaultHeaders;
|
|
8375
|
+
if (reqId !== undefined && reqId !== null) {
|
|
8376
|
+
headers = headers.set('reqId', String(reqId));
|
|
8377
|
+
}
|
|
8378
|
+
if (token !== undefined && token !== null) {
|
|
8379
|
+
headers = headers.set('token', String(token));
|
|
8380
|
+
}
|
|
8381
|
+
// to determine the Accept header
|
|
8382
|
+
let httpHeaderAccepts = [
|
|
8383
|
+
'application/json'
|
|
8384
|
+
];
|
|
8385
|
+
const httpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
|
|
8386
|
+
if (httpHeaderAcceptSelected != undefined) {
|
|
8387
|
+
headers = headers.set('Accept', httpHeaderAcceptSelected);
|
|
8388
|
+
}
|
|
8389
|
+
// to determine the Content-Type header
|
|
8390
|
+
const consumes = [];
|
|
8391
|
+
return this.httpClient.get(`${this.basePath}/v2/api/safeguard/update/status`, {
|
|
8392
|
+
params: queryParameters,
|
|
8393
|
+
withCredentials: this.configuration.withCredentials,
|
|
8394
|
+
headers: headers,
|
|
8395
|
+
observe: observe,
|
|
8396
|
+
reportProgress: reportProgress
|
|
8397
|
+
});
|
|
8398
|
+
}
|
|
8399
|
+
updateSafeguardRuleUsingPOST(safeguardId, safeguardRequestDTO, reqId, token, observe = 'body', reportProgress = false) {
|
|
8400
|
+
if (safeguardId === null || safeguardId === undefined) {
|
|
8401
|
+
throw new Error('Required parameter safeguardId was null or undefined when calling updateSafeguardRuleUsingPOST.');
|
|
8402
|
+
}
|
|
8403
|
+
if (safeguardRequestDTO === null || safeguardRequestDTO === undefined) {
|
|
8404
|
+
throw new Error('Required parameter safeguardRequestDTO was null or undefined when calling updateSafeguardRuleUsingPOST.');
|
|
8405
|
+
}
|
|
8406
|
+
let headers = this.defaultHeaders;
|
|
8407
|
+
if (reqId !== undefined && reqId !== null) {
|
|
8408
|
+
headers = headers.set('reqId', String(reqId));
|
|
8409
|
+
}
|
|
8410
|
+
if (token !== undefined && token !== null) {
|
|
8411
|
+
headers = headers.set('token', String(token));
|
|
8412
|
+
}
|
|
8413
|
+
// to determine the Accept header
|
|
8414
|
+
let httpHeaderAccepts = [
|
|
8415
|
+
'application/json'
|
|
8416
|
+
];
|
|
8417
|
+
const httpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
|
|
8418
|
+
if (httpHeaderAcceptSelected != undefined) {
|
|
8419
|
+
headers = headers.set('Accept', httpHeaderAcceptSelected);
|
|
8420
|
+
}
|
|
8421
|
+
// to determine the Content-Type header
|
|
8422
|
+
const consumes = [
|
|
8423
|
+
'application/json'
|
|
8424
|
+
];
|
|
8425
|
+
const httpContentTypeSelected = this.configuration.selectHeaderContentType(consumes);
|
|
8426
|
+
if (httpContentTypeSelected != undefined) {
|
|
8427
|
+
headers = headers.set('Content-Type', httpContentTypeSelected);
|
|
8428
|
+
}
|
|
8429
|
+
return this.httpClient.post(`${this.basePath}/v2/api/safeguard/update/${encodeURIComponent(String(safeguardId))}/`, safeguardRequestDTO, {
|
|
8430
|
+
withCredentials: this.configuration.withCredentials,
|
|
8431
|
+
headers: headers,
|
|
8432
|
+
observe: observe,
|
|
8433
|
+
reportProgress: reportProgress
|
|
8434
|
+
});
|
|
8435
|
+
}
|
|
8436
|
+
validateSafeguardRuleUsingPOST(safeguardRequestDTO, reqId, token, observe = 'body', reportProgress = false) {
|
|
8437
|
+
if (safeguardRequestDTO === null || safeguardRequestDTO === undefined) {
|
|
8438
|
+
throw new Error('Required parameter safeguardRequestDTO was null or undefined when calling validateSafeguardRuleUsingPOST.');
|
|
8439
|
+
}
|
|
8440
|
+
let headers = this.defaultHeaders;
|
|
8441
|
+
if (reqId !== undefined && reqId !== null) {
|
|
8442
|
+
headers = headers.set('reqId', String(reqId));
|
|
8443
|
+
}
|
|
8444
|
+
if (token !== undefined && token !== null) {
|
|
8445
|
+
headers = headers.set('token', String(token));
|
|
8446
|
+
}
|
|
8447
|
+
// to determine the Accept header
|
|
8448
|
+
let httpHeaderAccepts = [
|
|
8449
|
+
'application/json'
|
|
8450
|
+
];
|
|
8451
|
+
const httpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
|
|
8452
|
+
if (httpHeaderAcceptSelected != undefined) {
|
|
8453
|
+
headers = headers.set('Accept', httpHeaderAcceptSelected);
|
|
8454
|
+
}
|
|
8455
|
+
// to determine the Content-Type header
|
|
8456
|
+
const consumes = [
|
|
8457
|
+
'application/json'
|
|
8458
|
+
];
|
|
8459
|
+
const httpContentTypeSelected = this.configuration.selectHeaderContentType(consumes);
|
|
8460
|
+
if (httpContentTypeSelected != undefined) {
|
|
8461
|
+
headers = headers.set('Content-Type', httpContentTypeSelected);
|
|
8462
|
+
}
|
|
8463
|
+
return this.httpClient.post(`${this.basePath}/v2/api/safeguard/validate`, safeguardRequestDTO, {
|
|
8464
|
+
withCredentials: this.configuration.withCredentials,
|
|
8465
|
+
headers: headers,
|
|
8466
|
+
observe: observe,
|
|
8467
|
+
reportProgress: reportProgress
|
|
8468
|
+
});
|
|
8469
|
+
}
|
|
8470
|
+
}
|
|
8471
|
+
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 });
|
|
8472
|
+
SafeguardControllerService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: SafeguardControllerService });
|
|
8473
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: SafeguardControllerService, decorators: [{
|
|
8474
|
+
type: Injectable
|
|
8475
|
+
}], ctorParameters: function () { return [{ type: i1.HttpClient }, { type: undefined, decorators: [{
|
|
8476
|
+
type: Optional
|
|
8477
|
+
}, {
|
|
8478
|
+
type: Inject,
|
|
8479
|
+
args: [BASE_PATH]
|
|
8480
|
+
}] }, { type: Configuration, decorators: [{
|
|
8481
|
+
type: Optional
|
|
8482
|
+
}] }]; } });
|
|
8483
|
+
|
|
7990
8484
|
/**
|
|
7991
8485
|
* Api Documentation
|
|
7992
8486
|
* Api Documentation
|
|
@@ -8002,7 +8496,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
8002
8496
|
class SliceXControllerService {
|
|
8003
8497
|
constructor(httpClient, basePath, configuration) {
|
|
8004
8498
|
this.httpClient = httpClient;
|
|
8005
|
-
this.basePath = 'https://
|
|
8499
|
+
this.basePath = 'https://apiv2stage3.atomex.net';
|
|
8006
8500
|
this.defaultHeaders = new HttpHeaders();
|
|
8007
8501
|
this.configuration = new Configuration();
|
|
8008
8502
|
if (basePath) {
|
|
@@ -8406,7 +8900,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
8406
8900
|
class StrategyControllerService {
|
|
8407
8901
|
constructor(httpClient, basePath, configuration) {
|
|
8408
8902
|
this.httpClient = httpClient;
|
|
8409
|
-
this.basePath = 'https://
|
|
8903
|
+
this.basePath = 'https://apiv2stage3.atomex.net';
|
|
8410
8904
|
this.defaultHeaders = new HttpHeaders();
|
|
8411
8905
|
this.configuration = new Configuration();
|
|
8412
8906
|
if (basePath) {
|
|
@@ -9574,7 +10068,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
9574
10068
|
class StrategyTemplateControllerService {
|
|
9575
10069
|
constructor(httpClient, basePath, configuration) {
|
|
9576
10070
|
this.httpClient = httpClient;
|
|
9577
|
-
this.basePath = 'https://
|
|
10071
|
+
this.basePath = 'https://apiv2stage3.atomex.net';
|
|
9578
10072
|
this.defaultHeaders = new HttpHeaders();
|
|
9579
10073
|
this.configuration = new Configuration();
|
|
9580
10074
|
if (basePath) {
|
|
@@ -9696,7 +10190,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
9696
10190
|
class UILoggerControllerService {
|
|
9697
10191
|
constructor(httpClient, basePath, configuration) {
|
|
9698
10192
|
this.httpClient = httpClient;
|
|
9699
|
-
this.basePath = 'https://
|
|
10193
|
+
this.basePath = 'https://apiv2stage3.atomex.net';
|
|
9700
10194
|
this.defaultHeaders = new HttpHeaders();
|
|
9701
10195
|
this.configuration = new Configuration();
|
|
9702
10196
|
if (basePath) {
|
|
@@ -9788,7 +10282,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
9788
10282
|
class UserPreferenceControllerService {
|
|
9789
10283
|
constructor(httpClient, basePath, configuration) {
|
|
9790
10284
|
this.httpClient = httpClient;
|
|
9791
|
-
this.basePath = 'https://
|
|
10285
|
+
this.basePath = 'https://apiv2stage3.atomex.net';
|
|
9792
10286
|
this.defaultHeaders = new HttpHeaders();
|
|
9793
10287
|
this.configuration = new Configuration();
|
|
9794
10288
|
if (basePath) {
|
|
@@ -9947,7 +10441,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
9947
10441
|
type: Optional
|
|
9948
10442
|
}] }]; } });
|
|
9949
10443
|
|
|
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];
|
|
10444
|
+
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
10445
|
|
|
9952
10446
|
var ABTestingDTO;
|
|
9953
10447
|
(function (ABTestingDTO) {
|
|
@@ -10187,6 +10681,30 @@ var AdvertiserCohortResponse;
|
|
|
10187
10681
|
* Do not edit the class manually.
|
|
10188
10682
|
*/
|
|
10189
10683
|
|
|
10684
|
+
/**
|
|
10685
|
+
* Api Documentation
|
|
10686
|
+
* Api Documentation
|
|
10687
|
+
*
|
|
10688
|
+
* OpenAPI spec version: 1.0
|
|
10689
|
+
*
|
|
10690
|
+
*
|
|
10691
|
+
* NOTE: This class is auto generated by the swagger code generator program.
|
|
10692
|
+
* https://github.com/swagger-api/swagger-codegen.git
|
|
10693
|
+
* Do not edit the class manually.
|
|
10694
|
+
*/
|
|
10695
|
+
|
|
10696
|
+
/**
|
|
10697
|
+
* Api Documentation
|
|
10698
|
+
* Api Documentation
|
|
10699
|
+
*
|
|
10700
|
+
* OpenAPI spec version: 1.0
|
|
10701
|
+
*
|
|
10702
|
+
*
|
|
10703
|
+
* NOTE: This class is auto generated by the swagger code generator program.
|
|
10704
|
+
* https://github.com/swagger-api/swagger-codegen.git
|
|
10705
|
+
* Do not edit the class manually.
|
|
10706
|
+
*/
|
|
10707
|
+
|
|
10190
10708
|
var AppSettingsDTO;
|
|
10191
10709
|
(function (AppSettingsDTO) {
|
|
10192
10710
|
AppSettingsDTO.SettingsKeyEnum = {
|
|
@@ -11721,6 +12239,18 @@ var Macro;
|
|
|
11721
12239
|
* Do not edit the class manually.
|
|
11722
12240
|
*/
|
|
11723
12241
|
|
|
12242
|
+
/**
|
|
12243
|
+
* Api Documentation
|
|
12244
|
+
* Api Documentation
|
|
12245
|
+
*
|
|
12246
|
+
* OpenAPI spec version: 1.0
|
|
12247
|
+
*
|
|
12248
|
+
*
|
|
12249
|
+
* NOTE: This class is auto generated by the swagger code generator program.
|
|
12250
|
+
* https://github.com/swagger-api/swagger-codegen.git
|
|
12251
|
+
* Do not edit the class manually.
|
|
12252
|
+
*/
|
|
12253
|
+
|
|
11724
12254
|
var MetaRuleDto;
|
|
11725
12255
|
(function (MetaRuleDto) {
|
|
11726
12256
|
MetaRuleDto.FilterTypeEnum = {
|
|
@@ -12195,6 +12725,72 @@ var RuleDTO;
|
|
|
12195
12725
|
* Do not edit the class manually.
|
|
12196
12726
|
*/
|
|
12197
12727
|
|
|
12728
|
+
/**
|
|
12729
|
+
* Api Documentation
|
|
12730
|
+
* Api Documentation
|
|
12731
|
+
*
|
|
12732
|
+
* OpenAPI spec version: 1.0
|
|
12733
|
+
*
|
|
12734
|
+
*
|
|
12735
|
+
* NOTE: This class is auto generated by the swagger code generator program.
|
|
12736
|
+
* https://github.com/swagger-api/swagger-codegen.git
|
|
12737
|
+
* Do not edit the class manually.
|
|
12738
|
+
*/
|
|
12739
|
+
|
|
12740
|
+
/**
|
|
12741
|
+
* Api Documentation
|
|
12742
|
+
* Api Documentation
|
|
12743
|
+
*
|
|
12744
|
+
* OpenAPI spec version: 1.0
|
|
12745
|
+
*
|
|
12746
|
+
*
|
|
12747
|
+
* NOTE: This class is auto generated by the swagger code generator program.
|
|
12748
|
+
* https://github.com/swagger-api/swagger-codegen.git
|
|
12749
|
+
* Do not edit the class manually.
|
|
12750
|
+
*/
|
|
12751
|
+
var SafeguardBlockedItemDTO;
|
|
12752
|
+
(function (SafeguardBlockedItemDTO) {
|
|
12753
|
+
SafeguardBlockedItemDTO.StatusEnum = {
|
|
12754
|
+
PENDING: 'PENDING',
|
|
12755
|
+
INPROGRESS: 'IN_PROGRESS',
|
|
12756
|
+
FAILED: 'FAILED',
|
|
12757
|
+
SUCCESS: 'SUCCESS',
|
|
12758
|
+
PARTIALSUCCESS: 'PARTIAL_SUCCESS'
|
|
12759
|
+
};
|
|
12760
|
+
})(SafeguardBlockedItemDTO || (SafeguardBlockedItemDTO = {}));
|
|
12761
|
+
|
|
12762
|
+
var SafeguardDetail;
|
|
12763
|
+
(function (SafeguardDetail) {
|
|
12764
|
+
SafeguardDetail.TargetingScopeEnum = {
|
|
12765
|
+
APP: 'APP',
|
|
12766
|
+
INVENTORY: 'INVENTORY'
|
|
12767
|
+
};
|
|
12768
|
+
})(SafeguardDetail || (SafeguardDetail = {}));
|
|
12769
|
+
|
|
12770
|
+
var SafeguardExclusionDTO;
|
|
12771
|
+
(function (SafeguardExclusionDTO) {
|
|
12772
|
+
SafeguardExclusionDTO.ScopeEnum = {
|
|
12773
|
+
APP: 'APP',
|
|
12774
|
+
INVENTORY: 'INVENTORY'
|
|
12775
|
+
};
|
|
12776
|
+
})(SafeguardExclusionDTO || (SafeguardExclusionDTO = {}));
|
|
12777
|
+
|
|
12778
|
+
var SafeguardRequestDTO;
|
|
12779
|
+
(function (SafeguardRequestDTO) {
|
|
12780
|
+
SafeguardRequestDTO.TargetingScopeEnum = {
|
|
12781
|
+
APP: 'APP',
|
|
12782
|
+
INVENTORY: 'INVENTORY'
|
|
12783
|
+
};
|
|
12784
|
+
})(SafeguardRequestDTO || (SafeguardRequestDTO = {}));
|
|
12785
|
+
|
|
12786
|
+
var SafeguardResponseDTO;
|
|
12787
|
+
(function (SafeguardResponseDTO) {
|
|
12788
|
+
SafeguardResponseDTO.TargetingScopeEnum = {
|
|
12789
|
+
APP: 'APP',
|
|
12790
|
+
INVENTORY: 'INVENTORY'
|
|
12791
|
+
};
|
|
12792
|
+
})(SafeguardResponseDTO || (SafeguardResponseDTO = {}));
|
|
12793
|
+
|
|
12198
12794
|
/**
|
|
12199
12795
|
* Api Documentation
|
|
12200
12796
|
* Api Documentation
|
|
@@ -12902,6 +13498,7 @@ ApiModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.
|
|
|
12902
13498
|
ReportControllerService,
|
|
12903
13499
|
ReportingControllerService,
|
|
12904
13500
|
ReportingSchedulerControllerService,
|
|
13501
|
+
SafeguardControllerService,
|
|
12905
13502
|
SliceXControllerService,
|
|
12906
13503
|
StrategyControllerService,
|
|
12907
13504
|
StrategyTemplateControllerService,
|
|
@@ -12940,6 +13537,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
12940
13537
|
ReportControllerService,
|
|
12941
13538
|
ReportingControllerService,
|
|
12942
13539
|
ReportingSchedulerControllerService,
|
|
13540
|
+
SafeguardControllerService,
|
|
12943
13541
|
SliceXControllerService,
|
|
12944
13542
|
StrategyControllerService,
|
|
12945
13543
|
StrategyTemplateControllerService,
|
|
@@ -12959,5 +13557,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
12959
13557
|
* Generated bundle index. Do not edit.
|
|
12960
13558
|
*/
|
|
12961
13559
|
|
|
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 };
|
|
13560
|
+
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, SafeguardBlockedItemDTO, SafeguardControllerService, SafeguardDetail, SafeguardExclusionDTO, SafeguardRequestDTO, SafeguardResponseDTO, SchedulerRequest, SliceXControllerService, StrategyControllerService, StrategyDTO, StrategyInlineDTO, StrategyQuickEditDTO, StrategyRuleResponse, StrategyTemplateControllerService, StrategyTemplateDTO, StrategyTemplateResponse, TemplateVariablesDTO, UILoggerControllerService, UserPreferenceControllerService, VastCreative, VideoAttributes, VideoProperties, WhitelabelingEntity };
|
|
12963
13561
|
//# sourceMappingURL=revxui-api-clients-ts.mjs.map
|