@evergis/api 3.0.109 → 3.0.110

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 (40) hide show
  1. package/dist/Api.d.ts +2 -1
  2. package/dist/__generated__/AccountPreviewService.d.ts +1 -1
  3. package/dist/__generated__/AccountService.d.ts +1 -1
  4. package/dist/__generated__/BulkOperationsService.d.ts +1 -1
  5. package/dist/__generated__/ClientSettingsService.d.ts +1 -1
  6. package/dist/__generated__/ExternalProvidersService.d.ts +1 -1
  7. package/dist/__generated__/FeedbackService.d.ts +1 -1
  8. package/dist/__generated__/FiltersService.d.ts +1 -1
  9. package/dist/__generated__/GeneralService.d.ts +1 -1
  10. package/dist/__generated__/GeocodeService.d.ts +1 -1
  11. package/dist/__generated__/IceRouterService.d.ts +1 -1
  12. package/dist/__generated__/ImportService.d.ts +1 -1
  13. package/dist/__generated__/LayersService.d.ts +1 -1
  14. package/dist/__generated__/NamespaceService.d.ts +1 -1
  15. package/dist/__generated__/NotificationService.d.ts +1 -1
  16. package/dist/__generated__/PrintService.d.ts +1 -1
  17. package/dist/__generated__/ProjectsService.d.ts +3 -3
  18. package/dist/__generated__/ResourceCatalogService.d.ts +1 -1
  19. package/dist/__generated__/S3Service.d.ts +1 -1
  20. package/dist/__generated__/SchedulerService.d.ts +1 -1
  21. package/dist/__generated__/SecurityService.d.ts +1 -1
  22. package/dist/__generated__/StaticContentService.d.ts +1 -1
  23. package/dist/__generated__/StatisticService.d.ts +3 -3
  24. package/dist/__generated__/StyleService.d.ts +1 -1
  25. package/dist/__generated__/TablesService.d.ts +3 -3
  26. package/dist/__generated__/TagsService.d.ts +1 -1
  27. package/dist/__generated__/ToolsService.d.ts +1 -1
  28. package/dist/__generated__/WfsServerService.d.ts +1 -1
  29. package/dist/__generated__/WmsServerService.d.ts +3 -3
  30. package/dist/__generated__/WmtsService.d.ts +1 -1
  31. package/dist/__generated__/data-contracts.d.ts +96 -28
  32. package/dist/api.cjs.development.js +121 -23
  33. package/dist/api.cjs.development.js.map +1 -1
  34. package/dist/api.cjs.production.min.js +1 -1
  35. package/dist/api.cjs.production.min.js.map +1 -1
  36. package/dist/api.esm.js +145 -24
  37. package/dist/api.esm.js.map +1 -1
  38. package/dist/services/Filters.d.ts +3 -0
  39. package/dist/services/index.d.ts +1 -0
  40. package/package.json +3 -3
@@ -318,7 +318,7 @@ let Service = /*#__PURE__*/_createClass(function Service(http) {
318
318
 
319
319
  /**
320
320
  * @title Spatial Processing Core API
321
- * @version v1.0.0
321
+ * @version 1.0.0
322
322
  * @baseUrl /sp
323
323
  */
324
324
 
@@ -370,7 +370,7 @@ let BulkOperations = /*#__PURE__*/function (_BulkOperationsServic) {
370
370
 
371
371
  /**
372
372
  * @title Spatial Processing Core API
373
- * @version v1.0.0
373
+ * @version 1.0.0
374
374
  * @baseUrl /sp
375
375
  */
376
376
 
@@ -522,7 +522,7 @@ let Security = /*#__PURE__*/function (_SecurityService) {
522
522
 
523
523
  /**
524
524
  * @title Spatial Processing Core API
525
- * @version v1.0.0
525
+ * @version 1.0.0
526
526
  * @baseUrl /sp
527
527
  */
528
528
 
@@ -632,7 +632,91 @@ let FileUpload = /*#__PURE__*/function (_StaticContentService) {
632
632
 
633
633
  /**
634
634
  * @title Spatial Processing Core API
635
- * @version v1.0.0
635
+ * @version 1.0.0
636
+ * @baseUrl /sp
637
+ */
638
+
639
+ let FiltersService = /*#__PURE__*/function (_Service) {
640
+ _inherits(FiltersService, _Service);
641
+
642
+ var _super = /*#__PURE__*/_createSuper(FiltersService);
643
+
644
+ function FiltersService() {
645
+ _classCallCheck(this, FiltersService);
646
+
647
+ return _super.apply(this, arguments);
648
+ }
649
+
650
+ _createClass(FiltersService, [{
651
+ key: "get",
652
+ value:
653
+ /**
654
+ * No description
655
+ *
656
+ * @tags FiltersService
657
+ * @name Get
658
+ * @operationId FiltersServiceController_Get
659
+ * @summary Returns the filter by its id.
660
+ * @request GET:/filters/{id}
661
+ * @response `200` Success
662
+ */
663
+ function get(id) {
664
+ return this.http.get("/filters/" + id).text();
665
+ }
666
+ /**
667
+ * No description
668
+ *
669
+ * @tags FiltersService
670
+ * @name Update
671
+ * @operationId FiltersServiceController_Update
672
+ * @summary Replaces a filter and gives it a new id.
673
+ * @request POST:/filters/{id}
674
+ * @response `200` Success
675
+ */
676
+
677
+ }, {
678
+ key: "update",
679
+ value: function update(id, data) {
680
+ return this.http.post("/filters/" + id, data).json();
681
+ }
682
+ /**
683
+ * No description
684
+ *
685
+ * @tags FiltersService
686
+ * @name Create
687
+ * @operationId FiltersServiceController_Create
688
+ * @summary Creates a new filter.
689
+ * @request POST:/filters
690
+ * @response `200` Success
691
+ */
692
+
693
+ }, {
694
+ key: "create",
695
+ value: function create(data) {
696
+ return this.http.post("/filters", data).json();
697
+ }
698
+ }]);
699
+
700
+ return FiltersService;
701
+ }(Service);
702
+
703
+ let Filters = /*#__PURE__*/function (_FiltersService) {
704
+ _inherits(Filters, _FiltersService);
705
+
706
+ var _super = /*#__PURE__*/_createSuper(Filters);
707
+
708
+ function Filters() {
709
+ _classCallCheck(this, Filters);
710
+
711
+ return _super.apply(this, arguments);
712
+ }
713
+
714
+ return _createClass(Filters);
715
+ }(FiltersService);
716
+
717
+ /**
718
+ * @title Spatial Processing Core API
719
+ * @version 1.0.0
636
720
  * @baseUrl /sp
637
721
  */
638
722
 
@@ -748,7 +832,7 @@ let Import = /*#__PURE__*/function (_ImportService) {
748
832
 
749
833
  /**
750
834
  * @title Spatial Processing Core API
751
- * @version v1.0.0
835
+ * @version 1.0.0
752
836
  * @baseUrl /sp
753
837
  */
754
838
 
@@ -1004,7 +1088,7 @@ let NotificationEvent = /*#__PURE__*/_createClass(function NotificationEvent(dat
1004
1088
 
1005
1089
  /**
1006
1090
  * @title Spatial Processing Core API
1007
- * @version v1.0.0
1091
+ * @version 1.0.0
1008
1092
  * @baseUrl /sp
1009
1093
  */
1010
1094
 
@@ -1456,7 +1540,7 @@ const _excluded = ["name"],
1456
1540
  _excluded19 = ["layerName"];
1457
1541
  /**
1458
1542
  * @title Spatial Processing Core API
1459
- * @version v1.0.0
1543
+ * @version 1.0.0
1460
1544
  * @baseUrl /sp
1461
1545
  */
1462
1546
 
@@ -2596,7 +2680,7 @@ const _excluded$2 = ["name"],
2596
2680
  _excluded4$1 = ["name"];
2597
2681
  /**
2598
2682
  * @title Spatial Processing Core API
2599
- * @version v1.0.0
2683
+ * @version 1.0.0
2600
2684
  * @baseUrl /sp
2601
2685
  */
2602
2686
 
@@ -3076,7 +3160,7 @@ let Tables = /*#__PURE__*/function (_TablesService) {
3076
3160
 
3077
3161
  /**
3078
3162
  * @title Spatial Processing Core API
3079
- * @version v1.0.0
3163
+ * @version 1.0.0
3080
3164
  * @baseUrl /sp
3081
3165
  */
3082
3166
 
@@ -3551,7 +3635,7 @@ let Resources = /*#__PURE__*/function () {
3551
3635
 
3552
3636
  /**
3553
3637
  * @title Spatial Processing Core API
3554
- * @version v1.0.0
3638
+ * @version 1.0.0
3555
3639
  * @baseUrl /sp
3556
3640
  */
3557
3641
 
@@ -3686,7 +3770,7 @@ const _excluded$3 = ["providerName"],
3686
3770
  _excluded3$2 = ["providerName"];
3687
3771
  /**
3688
3772
  * @title Spatial Processing Core API
3689
- * @version v1.0.0
3773
+ * @version 1.0.0
3690
3774
  * @baseUrl /sp
3691
3775
  */
3692
3776
 
@@ -3802,7 +3886,7 @@ let Geocode = /*#__PURE__*/function (_GeocodeService) {
3802
3886
 
3803
3887
  /**
3804
3888
  * @title Spatial Processing Core API
3805
- * @version v1.0.0
3889
+ * @version 1.0.0
3806
3890
  * @baseUrl /sp
3807
3891
  */
3808
3892
 
@@ -3870,7 +3954,7 @@ let ResourceCatalog = /*#__PURE__*/function (_ResourceCatalogServi) {
3870
3954
 
3871
3955
  /**
3872
3956
  * @title Spatial Processing Core API
3873
- * @version v1.0.0
3957
+ * @version 1.0.0
3874
3958
  * @baseUrl /sp
3875
3959
  */
3876
3960
 
@@ -3904,7 +3988,7 @@ let Tools = /*#__PURE__*/function (_ToolsService) {
3904
3988
 
3905
3989
  /**
3906
3990
  * @title Spatial Processing Core API
3907
- * @version v1.0.0
3991
+ * @version 1.0.0
3908
3992
  * @baseUrl /sp
3909
3993
  */
3910
3994
 
@@ -4004,7 +4088,7 @@ let General = /*#__PURE__*/function (_GeneralService) {
4004
4088
 
4005
4089
  /**
4006
4090
  * @title Spatial Processing Core API
4007
- * @version v1.0.0
4091
+ * @version 1.0.0
4008
4092
  * @baseUrl /sp
4009
4093
  */
4010
4094
 
@@ -4104,7 +4188,7 @@ let Namespace = /*#__PURE__*/function (_NamespaceService) {
4104
4188
 
4105
4189
  /**
4106
4190
  * @title Spatial Processing Core API
4107
- * @version v1.0.0
4191
+ * @version 1.0.0
4108
4192
  * @baseUrl /sp
4109
4193
  */
4110
4194
 
@@ -4780,7 +4864,7 @@ let Account = /*#__PURE__*/function (_AccountService) {
4780
4864
  const _excluded$4 = ["username"];
4781
4865
  /**
4782
4866
  * @title Spatial Processing Core API
4783
- * @version v1.0.0
4867
+ * @version 1.0.0
4784
4868
  * @baseUrl /sp
4785
4869
  */
4786
4870
 
@@ -4934,7 +5018,7 @@ let AccountPreview = /*#__PURE__*/function (_AccountPreviewServic) {
4934
5018
 
4935
5019
  /**
4936
5020
  * @title Spatial Processing Core API
4937
- * @version v1.0.0
5021
+ * @version 1.0.0
4938
5022
  * @baseUrl /sp
4939
5023
  */
4940
5024
 
@@ -5199,7 +5283,7 @@ let External = /*#__PURE__*/function (_ExternalProvidersSer) {
5199
5283
 
5200
5284
  /**
5201
5285
  * @title Spatial Processing Core API
5202
- * @version v1.0.0
5286
+ * @version 1.0.0
5203
5287
  * @baseUrl /sp
5204
5288
  */
5205
5289
 
@@ -5522,7 +5606,7 @@ let Names = /*#__PURE__*/function () {
5522
5606
 
5523
5607
  /**
5524
5608
  * @title Spatial Processing Core API
5525
- * @version v1.0.0
5609
+ * @version 1.0.0
5526
5610
  * @baseUrl /sp
5527
5611
  */
5528
5612
 
@@ -5590,7 +5674,7 @@ let IceRouter = /*#__PURE__*/function (_IceRouterService) {
5590
5674
 
5591
5675
  /**
5592
5676
  * @title Spatial Processing Core API
5593
- * @version v1.0.0
5677
+ * @version 1.0.0
5594
5678
  * @baseUrl /sp
5595
5679
  */
5596
5680
 
@@ -5686,7 +5770,7 @@ let Statistic = /*#__PURE__*/function (_StatisticService) {
5686
5770
 
5687
5771
  /**
5688
5772
  * @title Spatial Processing Core API
5689
- * @version v1.0.0
5773
+ * @version 1.0.0
5690
5774
  * @baseUrl /sp
5691
5775
  */
5692
5776
 
@@ -5777,7 +5861,7 @@ let Feedback = /*#__PURE__*/function (_FeedbackService) {
5777
5861
 
5778
5862
  /**
5779
5863
  * @title Spatial Processing Core API
5780
- * @version v1.0.0
5864
+ * @version 1.0.0
5781
5865
  * @baseUrl /sp
5782
5866
  */
5783
5867
 
@@ -5973,6 +6057,7 @@ let Api = /*#__PURE__*/function (_EventEmitter) {
5973
6057
  _this.notification = new Notification(_this.http, _assertThisInitialized(_this));
5974
6058
  _this.scheduler = new Scheduler(_this.http);
5975
6059
  _this.file = new FileUpload(_this.http);
6060
+ _this.filters = new Filters(_this.http);
5976
6061
  _this.import = new Import(_this.http);
5977
6062
  _this.geocode = new Geocode(_this.http);
5978
6063
  _this.print = new Print(_this.http);
@@ -6491,6 +6576,7 @@ function isFeatureLayer(layer) {
6491
6576
  ConfigurationErrorEnum["DataSourceNotFound"] = "DataSourceNotFound";
6492
6577
  ConfigurationErrorEnum["DuplicateColumns"] = "DuplicateColumns";
6493
6578
  ConfigurationErrorEnum["TableWithoutColumns"] = "TableWithoutColumns";
6579
+ ConfigurationErrorEnum["InvalidTableReferenceConfiguration"] = "InvalidTableReferenceConfiguration";
6494
6580
  })(exports.ConfigurationErrorEnum || (exports.ConfigurationErrorEnum = {}));
6495
6581
 
6496
6582
  (function (ErrorDetailsType) {
@@ -6618,6 +6704,12 @@ function isFeatureLayer(layer) {
6618
6704
  PolicyType["MaxUploadContentSize"] = "MaxUploadContentSize";
6619
6705
  })(exports.PolicyType || (exports.PolicyType = {}));
6620
6706
 
6707
+ (function (ReferenceJoinType) {
6708
+ ReferenceJoinType["OneToMany"] = "OneToMany";
6709
+ ReferenceJoinType["OneToOne"] = "OneToOne";
6710
+ ReferenceJoinType["Intersect"] = "Intersect";
6711
+ })(exports.ReferenceJoinType || (exports.ReferenceJoinType = {}));
6712
+
6621
6713
  (function (ResourceType) {
6622
6714
  ResourceType["Unknown"] = "Unknown";
6623
6715
  ResourceType["Table"] = "table";
@@ -6651,6 +6743,11 @@ function isFeatureLayer(layer) {
6651
6743
  StringSubType["PkkCode"] = "PkkCode";
6652
6744
  })(exports.StringSubType || (exports.StringSubType = {}));
6653
6745
 
6746
+ (function (TaskGroup) {
6747
+ TaskGroup["My"] = "my";
6748
+ TaskGroup["All"] = "all";
6749
+ })(exports.TaskGroup || (exports.TaskGroup = {}));
6750
+
6654
6751
  (function (TextAlignment) {
6655
6752
  TextAlignment["Right"] = "right";
6656
6753
  TextAlignment["Left"] = "left";
@@ -6686,6 +6783,7 @@ exports.EvergisTileLayer = EvergisTileLayer;
6686
6783
  exports.External = External;
6687
6784
  exports.Feedback = Feedback;
6688
6785
  exports.FileUpload = FileUpload;
6786
+ exports.Filters = Filters;
6689
6787
  exports.GEOCODE_PROVIDER = GEOCODE_PROVIDER;
6690
6788
  exports.General = General;
6691
6789
  exports.Geocode = Geocode;