@evergis/api 3.0.194 → 3.0.196

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.
@@ -554,37 +554,8 @@ let CatalogService = /*#__PURE__*/function (_Service) {
554
554
  }
555
555
 
556
556
  _createClass(CatalogService, [{
557
- key: "getAll",
557
+ key: "getTags",
558
558
  value:
559
- /**
560
- * No description
561
- *
562
- * @tags Catalog
563
- * @name GetAll
564
- * @operationId CatalogController_GetAll
565
- * @summary Get all resource with given.
566
- * @request GET:/resources
567
- * @response `200` OK
568
- */
569
- function getAll(query) {
570
- return this.http.get("/resources", query).json();
571
- }
572
- /**
573
- * No description
574
- *
575
- * @tags Catalog
576
- * @name PostGetAll
577
- * @operationId CatalogController_PostGetAll
578
- * @summary Get all resource with given.
579
- * @request POST:/resources
580
- * @response `200` OK
581
- */
582
-
583
- }, {
584
- key: "postGetAll",
585
- value: function postGetAll(query, data) {
586
- return this.http.post("/resources", data, query).json();
587
- }
588
559
  /**
589
560
  * No description
590
561
  *
@@ -595,10 +566,7 @@ let CatalogService = /*#__PURE__*/function (_Service) {
595
566
  * @request GET:/resources/tags
596
567
  * @response `200` OK
597
568
  */
598
-
599
- }, {
600
- key: "getTags",
601
- value: function getTags(query) {
569
+ function getTags(query) {
602
570
  return this.http.get("/resources/tags", query).json();
603
571
  }
604
572
  /**
@@ -621,17 +589,17 @@ let CatalogService = /*#__PURE__*/function (_Service) {
621
589
  * No description
622
590
  *
623
591
  * @tags Catalog
624
- * @name SearchResources
625
- * @operationId CatalogController_SearchResources
626
- * @summary Search resources.
627
- * @request POST:/resources/search
592
+ * @name PostGetAll
593
+ * @operationId CatalogController_PostGetAll
594
+ * @summary Get all resource with given.
595
+ * @request POST:/resources
628
596
  * @response `200` OK
629
597
  */
630
598
 
631
599
  }, {
632
- key: "searchResources",
633
- value: function searchResources(query, data) {
634
- return this.http.post("/resources/search", data, query).json();
600
+ key: "postGetAll",
601
+ value: function postGetAll(query, data) {
602
+ return this.http.post("/resources", data, query).json();
635
603
  }
636
604
  /**
637
605
  * No description
@@ -4590,6 +4558,14 @@ let Layers = /*#__PURE__*/function (_LayersService) {
4590
4558
  value: function findOne(name) {
4591
4559
  return this.getLayerInfo(name);
4592
4560
  }
4561
+ }, {
4562
+ key: "findMany",
4563
+ value: function findMany(layerNames, projectNames) {
4564
+ return this.getLayersInfo({
4565
+ layerNames,
4566
+ projectNames
4567
+ });
4568
+ }
4593
4569
  }, {
4594
4570
  key: "findAll",
4595
4571
  value: function findAll(params) {
@@ -6937,22 +6913,6 @@ let TablesService = /*#__PURE__*/function (_Service) {
6937
6913
  value: function deleteResources(query) {
6938
6914
  return this.http.delete("/tables", null, query).json();
6939
6915
  }
6940
- /**
6941
- * No description
6942
- *
6943
- * @tags Tables
6944
- * @name CreateViewFromQueryLayer
6945
- * @operationId TablesController_CreateViewFromQueryLayer
6946
- * @summary Creates a new view from query layer.
6947
- * @request POST:/tables/fromLayer
6948
- * @response `200` OK
6949
- */
6950
-
6951
- }, {
6952
- key: "createViewFromQueryLayer",
6953
- value: function createViewFromQueryLayer(data) {
6954
- return this.http.post("/tables/fromLayer", data).json();
6955
- }
6956
6916
  /**
6957
6917
  * No description
6958
6918
  *
@@ -7165,6 +7125,38 @@ let TablesService = /*#__PURE__*/function (_Service) {
7165
7125
  value: function unmapTable(name) {
7166
7126
  return this.http.delete("/tables/map-table/" + name, null).then(() => {});
7167
7127
  }
7128
+ /**
7129
+ * No description
7130
+ *
7131
+ * @tags Tables
7132
+ * @name CreateViewFromQueryLayer
7133
+ * @operationId TablesController_CreateViewFromQueryLayer
7134
+ * @summary Creates a new view from query layer.
7135
+ * @request POST:/tables/fromLayer
7136
+ * @response `200` OK
7137
+ */
7138
+
7139
+ }, {
7140
+ key: "createViewFromQueryLayer",
7141
+ value: function createViewFromQueryLayer(data) {
7142
+ return this.http.post("/tables/fromLayer", data).json();
7143
+ }
7144
+ /**
7145
+ * No description
7146
+ *
7147
+ * @tags Tables
7148
+ * @name CreateViewFromQuery
7149
+ * @operationId TablesController_CreateViewFromQuery
7150
+ * @summary Creates a new view from query.
7151
+ * @request POST:/tables/fromQuery
7152
+ * @response `200` OK
7153
+ */
7154
+
7155
+ }, {
7156
+ key: "createViewFromQuery",
7157
+ value: function createViewFromQuery(data) {
7158
+ return this.http.post("/tables/fromQuery", data).json();
7159
+ }
7168
7160
  /**
7169
7161
  * No description
7170
7162
  *
@@ -8311,6 +8303,14 @@ function isFeatureLayer(layer) {
8311
8303
  Quality["High"] = "High";
8312
8304
  })(exports.Quality || (exports.Quality = {}));
8313
8305
 
8306
+ (function (ResourceSubTypeFilter) {
8307
+ ResourceSubTypeFilter["RemoteTileService"] = "RemoteTileService";
8308
+ ResourceSubTypeFilter["ProxyService"] = "ProxyService";
8309
+ ResourceSubTypeFilter["PostgresLayerService"] = "PostgresLayerService";
8310
+ ResourceSubTypeFilter["QueryLayerService"] = "QueryLayerService";
8311
+ ResourceSubTypeFilter["TileCatalogTable"] = "TileCatalogTable";
8312
+ })(exports.ResourceSubTypeFilter || (exports.ResourceSubTypeFilter = {}));
8313
+
8314
8314
  (function (ResourceType) {
8315
8315
  ResourceType["Unknown"] = "Unknown";
8316
8316
  ResourceType["Table"] = "table";
@@ -8321,6 +8321,16 @@ function isFeatureLayer(layer) {
8321
8321
  ResourceType["Tag"] = "tag";
8322
8322
  })(exports.ResourceType || (exports.ResourceType = {}));
8323
8323
 
8324
+ (function (ResourceTypeFilter) {
8325
+ ResourceTypeFilter["Map"] = "Map";
8326
+ ResourceTypeFilter["Layer"] = "Layer";
8327
+ ResourceTypeFilter["Table"] = "Table";
8328
+ ResourceTypeFilter["RasterCatalog"] = "RasterCatalog";
8329
+ ResourceTypeFilter["ProxyService"] = "ProxyService";
8330
+ ResourceTypeFilter["RemoteTileService"] = "RemoteTileService";
8331
+ ResourceTypeFilter["File"] = "File";
8332
+ })(exports.ResourceTypeFilter || (exports.ResourceTypeFilter = {}));
8333
+
8324
8334
  (function (ResourceTypeLink) {
8325
8335
  ResourceTypeLink["Table"] = "tables";
8326
8336
  ResourceTypeLink["Layer"] = "layers";