@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.
package/dist/api.esm.js CHANGED
@@ -548,37 +548,8 @@ let CatalogService = /*#__PURE__*/function (_Service) {
548
548
  }
549
549
 
550
550
  _createClass(CatalogService, [{
551
- key: "getAll",
551
+ key: "getTags",
552
552
  value:
553
- /**
554
- * No description
555
- *
556
- * @tags Catalog
557
- * @name GetAll
558
- * @operationId CatalogController_GetAll
559
- * @summary Get all resource with given.
560
- * @request GET:/resources
561
- * @response `200` OK
562
- */
563
- function getAll(query) {
564
- return this.http.get("/resources", query).json();
565
- }
566
- /**
567
- * No description
568
- *
569
- * @tags Catalog
570
- * @name PostGetAll
571
- * @operationId CatalogController_PostGetAll
572
- * @summary Get all resource with given.
573
- * @request POST:/resources
574
- * @response `200` OK
575
- */
576
-
577
- }, {
578
- key: "postGetAll",
579
- value: function postGetAll(query, data) {
580
- return this.http.post("/resources", data, query).json();
581
- }
582
553
  /**
583
554
  * No description
584
555
  *
@@ -589,10 +560,7 @@ let CatalogService = /*#__PURE__*/function (_Service) {
589
560
  * @request GET:/resources/tags
590
561
  * @response `200` OK
591
562
  */
592
-
593
- }, {
594
- key: "getTags",
595
- value: function getTags(query) {
563
+ function getTags(query) {
596
564
  return this.http.get("/resources/tags", query).json();
597
565
  }
598
566
  /**
@@ -615,17 +583,17 @@ let CatalogService = /*#__PURE__*/function (_Service) {
615
583
  * No description
616
584
  *
617
585
  * @tags Catalog
618
- * @name SearchResources
619
- * @operationId CatalogController_SearchResources
620
- * @summary Search resources.
621
- * @request POST:/resources/search
586
+ * @name PostGetAll
587
+ * @operationId CatalogController_PostGetAll
588
+ * @summary Get all resource with given.
589
+ * @request POST:/resources
622
590
  * @response `200` OK
623
591
  */
624
592
 
625
593
  }, {
626
- key: "searchResources",
627
- value: function searchResources(query, data) {
628
- return this.http.post("/resources/search", data, query).json();
594
+ key: "postGetAll",
595
+ value: function postGetAll(query, data) {
596
+ return this.http.post("/resources", data, query).json();
629
597
  }
630
598
  /**
631
599
  * No description
@@ -4586,6 +4554,14 @@ let Layers = /*#__PURE__*/function (_LayersService) {
4586
4554
  value: function findOne(name) {
4587
4555
  return this.getLayerInfo(name);
4588
4556
  }
4557
+ }, {
4558
+ key: "findMany",
4559
+ value: function findMany(layerNames, projectNames) {
4560
+ return this.getLayersInfo({
4561
+ layerNames,
4562
+ projectNames
4563
+ });
4564
+ }
4589
4565
  }, {
4590
4566
  key: "findAll",
4591
4567
  value: function findAll(params) {
@@ -6940,22 +6916,6 @@ let TablesService = /*#__PURE__*/function (_Service) {
6940
6916
  value: function deleteResources(query) {
6941
6917
  return this.http.delete("/tables", null, query).json();
6942
6918
  }
6943
- /**
6944
- * No description
6945
- *
6946
- * @tags Tables
6947
- * @name CreateViewFromQueryLayer
6948
- * @operationId TablesController_CreateViewFromQueryLayer
6949
- * @summary Creates a new view from query layer.
6950
- * @request POST:/tables/fromLayer
6951
- * @response `200` OK
6952
- */
6953
-
6954
- }, {
6955
- key: "createViewFromQueryLayer",
6956
- value: function createViewFromQueryLayer(data) {
6957
- return this.http.post("/tables/fromLayer", data).json();
6958
- }
6959
6919
  /**
6960
6920
  * No description
6961
6921
  *
@@ -7168,6 +7128,38 @@ let TablesService = /*#__PURE__*/function (_Service) {
7168
7128
  value: function unmapTable(name) {
7169
7129
  return this.http.delete("/tables/map-table/" + name, null).then(() => {});
7170
7130
  }
7131
+ /**
7132
+ * No description
7133
+ *
7134
+ * @tags Tables
7135
+ * @name CreateViewFromQueryLayer
7136
+ * @operationId TablesController_CreateViewFromQueryLayer
7137
+ * @summary Creates a new view from query layer.
7138
+ * @request POST:/tables/fromLayer
7139
+ * @response `200` OK
7140
+ */
7141
+
7142
+ }, {
7143
+ key: "createViewFromQueryLayer",
7144
+ value: function createViewFromQueryLayer(data) {
7145
+ return this.http.post("/tables/fromLayer", data).json();
7146
+ }
7147
+ /**
7148
+ * No description
7149
+ *
7150
+ * @tags Tables
7151
+ * @name CreateViewFromQuery
7152
+ * @operationId TablesController_CreateViewFromQuery
7153
+ * @summary Creates a new view from query.
7154
+ * @request POST:/tables/fromQuery
7155
+ * @response `200` OK
7156
+ */
7157
+
7158
+ }, {
7159
+ key: "createViewFromQuery",
7160
+ value: function createViewFromQuery(data) {
7161
+ return this.http.post("/tables/fromQuery", data).json();
7162
+ }
7171
7163
  /**
7172
7164
  * No description
7173
7165
  *
@@ -8782,6 +8774,30 @@ var Quality;
8782
8774
  Quality["High"] = "High";
8783
8775
  })(Quality || (Quality = {}));
8784
8776
  /**
8777
+ * Resources types filter.
8778
+
8779
+ RemoteTileService
8780
+
8781
+ ProxyService
8782
+
8783
+ PostgresLayerService
8784
+
8785
+ QueryLayerService
8786
+
8787
+ TileCatalogTable
8788
+ */
8789
+
8790
+
8791
+ var ResourceSubTypeFilter;
8792
+
8793
+ (function (ResourceSubTypeFilter) {
8794
+ ResourceSubTypeFilter["RemoteTileService"] = "RemoteTileService";
8795
+ ResourceSubTypeFilter["ProxyService"] = "ProxyService";
8796
+ ResourceSubTypeFilter["PostgresLayerService"] = "PostgresLayerService";
8797
+ ResourceSubTypeFilter["QueryLayerService"] = "QueryLayerService";
8798
+ ResourceSubTypeFilter["TileCatalogTable"] = "TileCatalogTable";
8799
+ })(ResourceSubTypeFilter || (ResourceSubTypeFilter = {}));
8800
+ /**
8785
8801
  *
8786
8802
 
8787
8803
  Unknown
@@ -8811,6 +8827,36 @@ var ResourceType;
8811
8827
  ResourceType["Feature"] = "feature";
8812
8828
  ResourceType["Tag"] = "tag";
8813
8829
  })(ResourceType || (ResourceType = {}));
8830
+ /**
8831
+ * Resources types filter.
8832
+
8833
+ Map
8834
+
8835
+ Layer
8836
+
8837
+ Table
8838
+
8839
+ RasterCatalog
8840
+
8841
+ ProxyService
8842
+
8843
+ RemoteTileService
8844
+
8845
+ File
8846
+ */
8847
+
8848
+
8849
+ var ResourceTypeFilter;
8850
+
8851
+ (function (ResourceTypeFilter) {
8852
+ ResourceTypeFilter["Map"] = "Map";
8853
+ ResourceTypeFilter["Layer"] = "Layer";
8854
+ ResourceTypeFilter["Table"] = "Table";
8855
+ ResourceTypeFilter["RasterCatalog"] = "RasterCatalog";
8856
+ ResourceTypeFilter["ProxyService"] = "ProxyService";
8857
+ ResourceTypeFilter["RemoteTileService"] = "RemoteTileService";
8858
+ ResourceTypeFilter["File"] = "File";
8859
+ })(ResourceTypeFilter || (ResourceTypeFilter = {}));
8814
8860
 
8815
8861
  var ResourceTypeLink;
8816
8862
 
@@ -8961,5 +9007,5 @@ var TextVerticalAlignment;
8961
9007
  TextVerticalAlignment["Middle"] = "middle";
8962
9008
  })(TextVerticalAlignment || (TextVerticalAlignment = {}));
8963
9009
 
8964
- export { Account, AccountPreview, AggregationFunction, Api, ApiEvent, AttributeSelectorType, AttributeType, AuthorizationGrant, BulkOperations, Cameras, CatalogResourceType, ClassificationType, ClassifyAttributeType, ClientSettings, ConfigurationErrorEnum, ConnectionStatus, DependencyType, Eql, ErrorDetailsType, ErrorReason, ErrorType, EvergisDynamicLayer, EvergisTileLayer, External, FeatureType, Feedback, FileUpload, Filters, FontStyle, FontWeight, GEOCODE_PROVIDER, General, Geocode, GeometryType, Group, HttpClient, IceRouter, Import, Layers, LayersManager, LineCapStyle, LineEndingType, LineJoinType, Names, Namespace, Notification, NotificationEvent, Operation, OwnerFilter, PbfSchema, Permissions, PolicyType, PortalSettings, Print, Projects, Quality, ResourceCatalog, ResourceSeparator, ResourceType, ResourceTypeLink, Resources, ResponseType, Scheduler, Security, ServerTaskStatus, SimplifyType, SpatialProcessor, Statistic, StringSubType, Styles, Tables, TaskGroup, TextAlignment, TextVerticalAlignment, Tools, UrlPath, VectorTiles, addSubDomainToLocation, errorHandler, formDataFromFile, generateId, isEvergisDynamicLayer, isEvergisTileLayer, isFeatureLayer, isHTTPError, isHandledError, isLayer, isProjectContentItems, isString, isTileLayerService, promiseAllIgnoreErrors, stripUselessSlashes, toFormData, unique };
9010
+ export { Account, AccountPreview, AggregationFunction, Api, ApiEvent, AttributeSelectorType, AttributeType, AuthorizationGrant, BulkOperations, Cameras, CatalogResourceType, ClassificationType, ClassifyAttributeType, ClientSettings, ConfigurationErrorEnum, ConnectionStatus, DependencyType, Eql, ErrorDetailsType, ErrorReason, ErrorType, EvergisDynamicLayer, EvergisTileLayer, External, FeatureType, Feedback, FileUpload, Filters, FontStyle, FontWeight, GEOCODE_PROVIDER, General, Geocode, GeometryType, Group, HttpClient, IceRouter, Import, Layers, LayersManager, LineCapStyle, LineEndingType, LineJoinType, Names, Namespace, Notification, NotificationEvent, Operation, OwnerFilter, PbfSchema, Permissions, PolicyType, PortalSettings, Print, Projects, Quality, ResourceCatalog, ResourceSeparator, ResourceSubTypeFilter, ResourceType, ResourceTypeFilter, ResourceTypeLink, Resources, ResponseType, Scheduler, Security, ServerTaskStatus, SimplifyType, SpatialProcessor, Statistic, StringSubType, Styles, Tables, TaskGroup, TextAlignment, TextVerticalAlignment, Tools, UrlPath, VectorTiles, addSubDomainToLocation, errorHandler, formDataFromFile, generateId, isEvergisDynamicLayer, isEvergisTileLayer, isFeatureLayer, isHTTPError, isHandledError, isLayer, isProjectContentItems, isString, isTileLayerService, promiseAllIgnoreErrors, stripUselessSlashes, toFormData, unique };
8965
9011
  //# sourceMappingURL=api.esm.js.map