@revxui/api-clients-ts 0.10.359 → 0.10.361

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.
Files changed (49) hide show
  1. package/README.md +2 -2
  2. package/api/appSettingsController.service.d.ts +3 -3
  3. package/api/audienceController.service.d.ts +27 -0
  4. package/api/dashboardController.service.d.ts +24 -24
  5. package/api/strategyController.service.d.ts +3 -3
  6. package/bundles/revxui-api-clients-ts.umd.js +98 -25
  7. package/bundles/revxui-api-clients-ts.umd.js.map +1 -1
  8. package/esm2015/api/adminController.service.js +2 -2
  9. package/esm2015/api/advertiserController.service.js +2 -2
  10. package/esm2015/api/appSettingsController.service.js +2 -2
  11. package/esm2015/api/audienceController.service.js +70 -2
  12. package/esm2015/api/auditController.service.js +2 -2
  13. package/esm2015/api/bulkStrategyController.service.js +2 -2
  14. package/esm2015/api/cSSThemeController_.service.js +2 -2
  15. package/esm2015/api/campaignController.service.js +2 -2
  16. package/esm2015/api/catalogController.service.js +2 -2
  17. package/esm2015/api/clickDestinationController.service.js +2 -2
  18. package/esm2015/api/creativeController.service.js +2 -2
  19. package/esm2015/api/creativeSetsController.service.js +2 -2
  20. package/esm2015/api/creativeTemplateThemesController.service.js +2 -2
  21. package/esm2015/api/creativeTemplateVariablesController.service.js +2 -2
  22. package/esm2015/api/creativeTemplatesController.service.js +2 -2
  23. package/esm2015/api/customerReportingController.service.js +2 -2
  24. package/esm2015/api/dashboardController.service.js +2 -2
  25. package/esm2015/api/notificationsController.service.js +2 -2
  26. package/esm2015/api/pixelController.service.js +2 -2
  27. package/esm2015/api/reportingController.service.js +2 -2
  28. package/esm2015/api/sliceXController.service.js +2 -2
  29. package/esm2015/api/strategyController.service.js +2 -2
  30. package/esm2015/api/uILoggerController.service.js +2 -2
  31. package/esm2015/api/userPreferenceController.service.js +2 -2
  32. package/esm2015/model/apiResponseObjectArrayListCombinedAudienceAnalysisResponse.js +2 -0
  33. package/esm2015/model/appSettingsDTO.js +3 -2
  34. package/esm2015/model/audienceAnalysisRequest.js +13 -0
  35. package/esm2015/model/combinedAudienceAnalysisResponse.js +13 -0
  36. package/esm2015/model/models.js +5 -1
  37. package/esm2015/model/searchRequest.js +1 -1
  38. package/esm2015/model/totalUniqueUserRequest.js +13 -0
  39. package/fesm2015/revxui-api-clients-ts.js +130 -25
  40. package/fesm2015/revxui-api-clients-ts.js.map +1 -1
  41. package/model/apiResponseObjectArrayListCombinedAudienceAnalysisResponse.d.ts +17 -0
  42. package/model/appSettingsDTO.d.ts +2 -1
  43. package/model/audienceAnalysisRequest.d.ts +17 -0
  44. package/model/combinedAudienceAnalysisResponse.d.ts +19 -0
  45. package/model/models.d.ts +4 -0
  46. package/model/searchRequest.d.ts +1 -0
  47. package/model/totalUniqueUserRequest.d.ts +15 -0
  48. package/package.json +1 -1
  49. package/revxui-api-clients-ts.metadata.json +1 -1
@@ -370,7 +370,7 @@
370
370
  var AdminControllerService = /** @class */ (function () {
371
371
  function AdminControllerService(httpClient, basePath, configuration) {
372
372
  this.httpClient = httpClient;
373
- this.basePath = 'https://localhost:10045';
373
+ this.basePath = 'https://apiv2stage3.atomex.net';
374
374
  this.defaultHeaders = new http.HttpHeaders();
375
375
  this.configuration = new Configuration();
376
376
  if (basePath) {
@@ -575,7 +575,7 @@
575
575
  var AdvertiserControllerService = /** @class */ (function () {
576
576
  function AdvertiserControllerService(httpClient, basePath, configuration) {
577
577
  this.httpClient = httpClient;
578
- this.basePath = 'https://localhost:10045';
578
+ this.basePath = 'https://apiv2stage3.atomex.net';
579
579
  this.defaultHeaders = new http.HttpHeaders();
580
580
  this.configuration = new Configuration();
581
581
  if (basePath) {
@@ -1009,7 +1009,7 @@
1009
1009
  var AppSettingsControllerService = /** @class */ (function () {
1010
1010
  function AppSettingsControllerService(httpClient, basePath, configuration) {
1011
1011
  this.httpClient = httpClient;
1012
- this.basePath = 'https://localhost:10045';
1012
+ this.basePath = 'https://apiv2stage3.atomex.net';
1013
1013
  this.defaultHeaders = new http.HttpHeaders();
1014
1014
  this.configuration = new Configuration();
1015
1015
  if (basePath) {
@@ -1262,7 +1262,7 @@
1262
1262
  var AudienceControllerService = /** @class */ (function () {
1263
1263
  function AudienceControllerService(httpClient, basePath, configuration) {
1264
1264
  this.httpClient = httpClient;
1265
- this.basePath = 'https://localhost:10045';
1265
+ this.basePath = 'https://apiv2stage3.atomex.net';
1266
1266
  this.defaultHeaders = new http.HttpHeaders();
1267
1267
  this.configuration = new Configuration();
1268
1268
  if (basePath) {
@@ -1666,6 +1666,42 @@
1666
1666
  reportProgress: reportProgress
1667
1667
  });
1668
1668
  };
1669
+ AudienceControllerService.prototype.getAnalysisAudienceCountUsingPOST = function (totalUniqueUserRequest, reqId, token, observe, reportProgress) {
1670
+ if (observe === void 0) { observe = 'body'; }
1671
+ if (reportProgress === void 0) { reportProgress = false; }
1672
+ if (totalUniqueUserRequest === null || totalUniqueUserRequest === undefined) {
1673
+ throw new Error('Required parameter totalUniqueUserRequest was null or undefined when calling getAnalysisAudienceCountUsingPOST.');
1674
+ }
1675
+ var headers = this.defaultHeaders;
1676
+ if (reqId !== undefined && reqId !== null) {
1677
+ headers = headers.set('reqId', String(reqId));
1678
+ }
1679
+ if (token !== undefined && token !== null) {
1680
+ headers = headers.set('token', String(token));
1681
+ }
1682
+ // to determine the Accept header
1683
+ var httpHeaderAccepts = [
1684
+ '*/*'
1685
+ ];
1686
+ var httpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
1687
+ if (httpHeaderAcceptSelected != undefined) {
1688
+ headers = headers.set('Accept', httpHeaderAcceptSelected);
1689
+ }
1690
+ // to determine the Content-Type header
1691
+ var consumes = [
1692
+ 'application/json'
1693
+ ];
1694
+ var httpContentTypeSelected = this.configuration.selectHeaderContentType(consumes);
1695
+ if (httpContentTypeSelected != undefined) {
1696
+ headers = headers.set('Content-Type', httpContentTypeSelected);
1697
+ }
1698
+ return this.httpClient.post(this.basePath + "/v2/api/audience/audienceanalysis", totalUniqueUserRequest, {
1699
+ withCredentials: this.configuration.withCredentials,
1700
+ headers: headers,
1701
+ observe: observe,
1702
+ reportProgress: reportProgress
1703
+ });
1704
+ };
1669
1705
  AudienceControllerService.prototype.getByIdUsingGET1 = function (id, refresh, reqId, token, observe, reportProgress) {
1670
1706
  if (observe === void 0) { observe = 'body'; }
1671
1707
  if (reportProgress === void 0) { reportProgress = false; }
@@ -1760,6 +1796,42 @@
1760
1796
  reportProgress: reportProgress
1761
1797
  });
1762
1798
  };
1799
+ AudienceControllerService.prototype.getCombinedAnalysisAudienceCountUsingPOST = function (audienceAnalysisRequest, reqId, token, observe, reportProgress) {
1800
+ if (observe === void 0) { observe = 'body'; }
1801
+ if (reportProgress === void 0) { reportProgress = false; }
1802
+ if (audienceAnalysisRequest === null || audienceAnalysisRequest === undefined) {
1803
+ throw new Error('Required parameter audienceAnalysisRequest was null or undefined when calling getCombinedAnalysisAudienceCountUsingPOST.');
1804
+ }
1805
+ var headers = this.defaultHeaders;
1806
+ if (reqId !== undefined && reqId !== null) {
1807
+ headers = headers.set('reqId', String(reqId));
1808
+ }
1809
+ if (token !== undefined && token !== null) {
1810
+ headers = headers.set('token', String(token));
1811
+ }
1812
+ // to determine the Accept header
1813
+ var httpHeaderAccepts = [
1814
+ '*/*'
1815
+ ];
1816
+ var httpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
1817
+ if (httpHeaderAcceptSelected != undefined) {
1818
+ headers = headers.set('Accept', httpHeaderAcceptSelected);
1819
+ }
1820
+ // to determine the Content-Type header
1821
+ var consumes = [
1822
+ 'application/json'
1823
+ ];
1824
+ var httpContentTypeSelected = this.configuration.selectHeaderContentType(consumes);
1825
+ if (httpContentTypeSelected != undefined) {
1826
+ headers = headers.set('Content-Type', httpContentTypeSelected);
1827
+ }
1828
+ return this.httpClient.post(this.basePath + "/v2/api/audience/audienceanalysis/combination", audienceAnalysisRequest, {
1829
+ withCredentials: this.configuration.withCredentials,
1830
+ headers: headers,
1831
+ observe: observe,
1832
+ reportProgress: reportProgress
1833
+ });
1834
+ };
1763
1835
  AudienceControllerService.prototype.getEligibleUsersCountUsingPOST = function (eligibleUsersRequest, reqId, token, observe, reportProgress) {
1764
1836
  if (observe === void 0) { observe = 'body'; }
1765
1837
  if (reportProgress === void 0) { reportProgress = false; }
@@ -2048,7 +2120,7 @@
2048
2120
  var AuditControllerService = /** @class */ (function () {
2049
2121
  function AuditControllerService(httpClient, basePath, configuration) {
2050
2122
  this.httpClient = httpClient;
2051
- this.basePath = 'https://localhost:10045';
2123
+ this.basePath = 'https://apiv2stage3.atomex.net';
2052
2124
  this.defaultHeaders = new http.HttpHeaders();
2053
2125
  this.configuration = new Configuration();
2054
2126
  if (basePath) {
@@ -2235,7 +2307,7 @@
2235
2307
  var BulkStrategyControllerService = /** @class */ (function () {
2236
2308
  function BulkStrategyControllerService(httpClient, basePath, configuration) {
2237
2309
  this.httpClient = httpClient;
2238
- this.basePath = 'https://localhost:10045';
2310
+ this.basePath = 'https://apiv2stage3.atomex.net';
2239
2311
  this.defaultHeaders = new http.HttpHeaders();
2240
2312
  this.configuration = new Configuration();
2241
2313
  if (basePath) {
@@ -2466,7 +2538,7 @@
2466
2538
  var CSSThemeController_Service = /** @class */ (function () {
2467
2539
  function CSSThemeController_Service(httpClient, basePath, configuration) {
2468
2540
  this.httpClient = httpClient;
2469
- this.basePath = 'https://localhost:10045';
2541
+ this.basePath = 'https://apiv2stage3.atomex.net';
2470
2542
  this.defaultHeaders = new http.HttpHeaders();
2471
2543
  this.configuration = new Configuration();
2472
2544
  if (basePath) {
@@ -2575,7 +2647,7 @@
2575
2647
  var CampaignControllerService = /** @class */ (function () {
2576
2648
  function CampaignControllerService(httpClient, basePath, configuration) {
2577
2649
  this.httpClient = httpClient;
2578
- this.basePath = 'https://localhost:10045';
2650
+ this.basePath = 'https://apiv2stage3.atomex.net';
2579
2651
  this.defaultHeaders = new http.HttpHeaders();
2580
2652
  this.configuration = new Configuration();
2581
2653
  if (basePath) {
@@ -2885,7 +2957,7 @@
2885
2957
  var CatalogControllerService = /** @class */ (function () {
2886
2958
  function CatalogControllerService(httpClient, basePath, configuration) {
2887
2959
  this.httpClient = httpClient;
2888
- this.basePath = 'https://localhost:10045';
2960
+ this.basePath = 'https://apiv2stage3.atomex.net';
2889
2961
  this.defaultHeaders = new http.HttpHeaders();
2890
2962
  this.configuration = new Configuration();
2891
2963
  if (basePath) {
@@ -3131,7 +3203,7 @@
3131
3203
  var ClickDestinationControllerService = /** @class */ (function () {
3132
3204
  function ClickDestinationControllerService(httpClient, basePath, configuration) {
3133
3205
  this.httpClient = httpClient;
3134
- this.basePath = 'https://localhost:10045';
3206
+ this.basePath = 'https://apiv2stage3.atomex.net';
3135
3207
  this.defaultHeaders = new http.HttpHeaders();
3136
3208
  this.configuration = new Configuration();
3137
3209
  if (basePath) {
@@ -3369,7 +3441,7 @@
3369
3441
  var CreativeControllerService = /** @class */ (function () {
3370
3442
  function CreativeControllerService(httpClient, basePath, configuration) {
3371
3443
  this.httpClient = httpClient;
3372
- this.basePath = 'https://localhost:10045';
3444
+ this.basePath = 'https://apiv2stage3.atomex.net';
3373
3445
  this.defaultHeaders = new http.HttpHeaders();
3374
3446
  this.configuration = new Configuration();
3375
3447
  if (basePath) {
@@ -3834,7 +3906,7 @@
3834
3906
  var CreativeSetsControllerService = /** @class */ (function () {
3835
3907
  function CreativeSetsControllerService(httpClient, basePath, configuration) {
3836
3908
  this.httpClient = httpClient;
3837
- this.basePath = 'https://localhost:10045';
3909
+ this.basePath = 'https://apiv2stage3.atomex.net';
3838
3910
  this.defaultHeaders = new http.HttpHeaders();
3839
3911
  this.configuration = new Configuration();
3840
3912
  if (basePath) {
@@ -4353,7 +4425,7 @@
4353
4425
  var CreativeTemplateThemesControllerService = /** @class */ (function () {
4354
4426
  function CreativeTemplateThemesControllerService(httpClient, basePath, configuration) {
4355
4427
  this.httpClient = httpClient;
4356
- this.basePath = 'https://localhost:10045';
4428
+ this.basePath = 'https://apiv2stage3.atomex.net';
4357
4429
  this.defaultHeaders = new http.HttpHeaders();
4358
4430
  this.configuration = new Configuration();
4359
4431
  if (basePath) {
@@ -4542,7 +4614,7 @@
4542
4614
  var CreativeTemplateVariablesControllerService = /** @class */ (function () {
4543
4615
  function CreativeTemplateVariablesControllerService(httpClient, basePath, configuration) {
4544
4616
  this.httpClient = httpClient;
4545
- this.basePath = 'https://localhost:10045';
4617
+ this.basePath = 'https://apiv2stage3.atomex.net';
4546
4618
  this.defaultHeaders = new http.HttpHeaders();
4547
4619
  this.configuration = new Configuration();
4548
4620
  if (basePath) {
@@ -4618,7 +4690,7 @@
4618
4690
  var CreativeTemplatesControllerService = /** @class */ (function () {
4619
4691
  function CreativeTemplatesControllerService(httpClient, basePath, configuration) {
4620
4692
  this.httpClient = httpClient;
4621
- this.basePath = 'https://localhost:10045';
4693
+ this.basePath = 'https://apiv2stage3.atomex.net';
4622
4694
  this.defaultHeaders = new http.HttpHeaders();
4623
4695
  this.configuration = new Configuration();
4624
4696
  if (basePath) {
@@ -4785,7 +4857,7 @@
4785
4857
  var CustomerReportingControllerService = /** @class */ (function () {
4786
4858
  function CustomerReportingControllerService(httpClient, basePath, configuration) {
4787
4859
  this.httpClient = httpClient;
4788
- this.basePath = 'https://localhost:10045';
4860
+ this.basePath = 'https://apiv2stage3.atomex.net';
4789
4861
  this.defaultHeaders = new http.HttpHeaders();
4790
4862
  this.configuration = new Configuration();
4791
4863
  if (basePath) {
@@ -4870,7 +4942,7 @@
4870
4942
  var DashboardControllerService = /** @class */ (function () {
4871
4943
  function DashboardControllerService(httpClient, basePath, configuration) {
4872
4944
  this.httpClient = httpClient;
4873
- this.basePath = 'https://localhost:10045';
4945
+ this.basePath = 'https://apiv2stage3.atomex.net';
4874
4946
  this.defaultHeaders = new http.HttpHeaders();
4875
4947
  this.configuration = new Configuration();
4876
4948
  if (basePath) {
@@ -5515,7 +5587,7 @@
5515
5587
  var NotificationsControllerService = /** @class */ (function () {
5516
5588
  function NotificationsControllerService(httpClient, basePath, configuration) {
5517
5589
  this.httpClient = httpClient;
5518
- this.basePath = 'https://localhost:10045';
5590
+ this.basePath = 'https://apiv2stage3.atomex.net';
5519
5591
  this.defaultHeaders = new http.HttpHeaders();
5520
5592
  this.configuration = new Configuration();
5521
5593
  if (basePath) {
@@ -5702,7 +5774,7 @@
5702
5774
  var PixelControllerService = /** @class */ (function () {
5703
5775
  function PixelControllerService(httpClient, basePath, configuration) {
5704
5776
  this.httpClient = httpClient;
5705
- this.basePath = 'https://localhost:10045';
5777
+ this.basePath = 'https://apiv2stage3.atomex.net';
5706
5778
  this.defaultHeaders = new http.HttpHeaders();
5707
5779
  this.configuration = new Configuration();
5708
5780
  if (basePath) {
@@ -6019,7 +6091,7 @@
6019
6091
  var ReportingControllerService = /** @class */ (function () {
6020
6092
  function ReportingControllerService(httpClient, basePath, configuration) {
6021
6093
  this.httpClient = httpClient;
6022
- this.basePath = 'https://localhost:10045';
6094
+ this.basePath = 'https://apiv2stage3.atomex.net';
6023
6095
  this.defaultHeaders = new http.HttpHeaders();
6024
6096
  this.configuration = new Configuration();
6025
6097
  if (basePath) {
@@ -6191,7 +6263,7 @@
6191
6263
  var SliceXControllerService = /** @class */ (function () {
6192
6264
  function SliceXControllerService(httpClient, basePath, configuration) {
6193
6265
  this.httpClient = httpClient;
6194
- this.basePath = 'https://localhost:10045';
6266
+ this.basePath = 'https://apiv2stage3.atomex.net';
6195
6267
  this.defaultHeaders = new http.HttpHeaders();
6196
6268
  this.configuration = new Configuration();
6197
6269
  if (basePath) {
@@ -6447,7 +6519,7 @@
6447
6519
  var StrategyControllerService = /** @class */ (function () {
6448
6520
  function StrategyControllerService(httpClient, basePath, configuration) {
6449
6521
  this.httpClient = httpClient;
6450
- this.basePath = 'https://localhost:10045';
6522
+ this.basePath = 'https://apiv2stage3.atomex.net';
6451
6523
  this.defaultHeaders = new http.HttpHeaders();
6452
6524
  this.configuration = new Configuration();
6453
6525
  if (basePath) {
@@ -7174,7 +7246,7 @@
7174
7246
  var UILoggerControllerService = /** @class */ (function () {
7175
7247
  function UILoggerControllerService(httpClient, basePath, configuration) {
7176
7248
  this.httpClient = httpClient;
7177
- this.basePath = 'https://localhost:10045';
7249
+ this.basePath = 'https://apiv2stage3.atomex.net';
7178
7250
  this.defaultHeaders = new http.HttpHeaders();
7179
7251
  this.configuration = new Configuration();
7180
7252
  if (basePath) {
@@ -7264,7 +7336,7 @@
7264
7336
  var UserPreferenceControllerService = /** @class */ (function () {
7265
7337
  function UserPreferenceControllerService(httpClient, basePath, configuration) {
7266
7338
  this.httpClient = httpClient;
7267
- this.basePath = 'https://localhost:10045';
7339
+ this.basePath = 'https://apiv2stage3.atomex.net';
7268
7340
  this.defaultHeaders = new http.HttpHeaders();
7269
7341
  this.configuration = new Configuration();
7270
7342
  if (basePath) {
@@ -7469,7 +7541,8 @@
7469
7541
  LOGOLINK: 'LOGO_LINK',
7470
7542
  FALLBACKIMGLINK: 'FALLBACK_IMG_LINK',
7471
7543
  OVERLAYIMGLINK: 'OVERLAY_IMG_LINK',
7472
- DEFAULTLOGO: 'DEFAULT_LOGO'
7544
+ DEFAULTLOGO: 'DEFAULT_LOGO',
7545
+ CREATIVENAMEFORMAT: 'CREATIVE_NAME_FORMAT'
7473
7546
  };
7474
7547
  AppSettingsDTO.SettingsTypeEnum = {
7475
7548
  BOOLEAN: 'BOOLEAN',