@evergis/api 3.0.154 → 3.0.156

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.
@@ -1398,6 +1398,24 @@ let SchedulerService = /*#__PURE__*/function (_Service) {
1398
1398
  type: 'tiling'
1399
1399
  }).json();
1400
1400
  }
1401
+ /**
1402
+ * No description
1403
+ *
1404
+ * @tags SchedulerService
1405
+ * @name StartTilingTask1
1406
+ * @operationId SchedulerServiceController_StartTilingTask_1
1407
+ * @summary Plans the execution of a 'rasterVrt' server task.
1408
+ * @request POST:/scheduler/tasks#type=rasterVrt
1409
+ * @response `200` Success
1410
+ */
1411
+
1412
+ }, {
1413
+ key: "startTilingTask1",
1414
+ value: function startTilingTask1(data) {
1415
+ return this.http.post("/scheduler/tasks", data, {
1416
+ type: 'rasterVrt'
1417
+ }).json();
1418
+ }
1401
1419
  /**
1402
1420
  * No description
1403
1421
  *
@@ -1829,6 +1847,24 @@ let LayersService = /*#__PURE__*/function (_Service) {
1829
1847
  value: function getLayersInfo(query) {
1830
1848
  return this.http.get("/layers/batchInfo", query).json();
1831
1849
  }
1850
+ /**
1851
+ * No description
1852
+ *
1853
+ * @tags Layers
1854
+ * @name PublishMapboxService
1855
+ * @operationId LayersController_PublishMapboxService
1856
+ * @summary Creates new mapbox service.
1857
+ * @request POST:/layers#type=Mapbox
1858
+ * @response `default` Error
1859
+ */
1860
+
1861
+ }, {
1862
+ key: "publishMapboxService",
1863
+ value: function publishMapboxService(data) {
1864
+ return this.http.post("/layers", data, {
1865
+ type: 'Mapbox'
1866
+ }).json();
1867
+ }
1832
1868
  /**
1833
1869
  * No description
1834
1870
  *
@@ -1943,7 +1979,7 @@ let LayersService = /*#__PURE__*/function (_Service) {
1943
1979
  * @tags Layers
1944
1980
  * @name PublishQueryLayerService
1945
1981
  * @operationId LayersController_PublishQueryLayerService
1946
- * @summary Creates new Postgres Layer Service.
1982
+ * @summary Creates new EQL-based Query Layer Service.
1947
1983
  * @request POST:/layers#type=QueryLayerService
1948
1984
  * @response `default` Error
1949
1985
  */
@@ -1991,6 +2027,24 @@ let LayersService = /*#__PURE__*/function (_Service) {
1991
2027
  type: 'StyledFeatureLayer'
1992
2028
  }).json();
1993
2029
  }
2030
+ /**
2031
+ * No description
2032
+ *
2033
+ * @tags Layers
2034
+ * @name UpdateMapboxService
2035
+ * @operationId LayersController_UpdateMapboxService
2036
+ * @summary Update mapbox service.
2037
+ * @request PATCH:/layers/{name}#type=Mapbox
2038
+ * @response `default` Error
2039
+ */
2040
+
2041
+ }, {
2042
+ key: "updateMapboxService",
2043
+ value: function updateMapboxService(name, data) {
2044
+ return this.http.patch("/layers/" + name, data, {
2045
+ type: 'Mapbox'
2046
+ }).json();
2047
+ }
1994
2048
  /**
1995
2049
  * No description
1996
2050
  *
@@ -2099,6 +2153,24 @@ let LayersService = /*#__PURE__*/function (_Service) {
2099
2153
  type: 'PostgresLayerService'
2100
2154
  }).json();
2101
2155
  }
2156
+ /**
2157
+ * No description
2158
+ *
2159
+ * @tags Layers
2160
+ * @name UpdateQueryLayerService
2161
+ * @operationId LayersController_UpdateQueryLayerService
2162
+ * @summary Update EQL-based Query Layer Service.
2163
+ * @request PATCH:/layers/{name}#type=QueryLayerService
2164
+ * @response `default` Error
2165
+ */
2166
+
2167
+ }, {
2168
+ key: "updateQueryLayerService",
2169
+ value: function updateQueryLayerService(name, data) {
2170
+ return this.http.patch("/layers/" + name, data, {
2171
+ type: 'QueryLayerService'
2172
+ }).json();
2173
+ }
2102
2174
  /**
2103
2175
  * No description
2104
2176
  *
@@ -4318,22 +4390,6 @@ let GeneralService = /*#__PURE__*/function (_Service) {
4318
4390
  function getServerInfo() {
4319
4391
  return this.http.get("/").json();
4320
4392
  }
4321
- /**
4322
- * No description
4323
- *
4324
- * @tags General
4325
- * @name CancelTest
4326
- * @operationId GeneralController_CancelTest
4327
- * @summary Test method for CancellationToken.
4328
- * @request GET:/cancel
4329
- * @response `200` Success
4330
- */
4331
-
4332
- }, {
4333
- key: "cancelTest",
4334
- value: function cancelTest(query) {
4335
- return this.http.get("/cancel", query).then(() => {});
4336
- }
4337
4393
  /**
4338
4394
  * No description
4339
4395
  *
@@ -5773,7 +5829,7 @@ function createGuard(type) {
5773
5829
  };
5774
5830
  }
5775
5831
 
5776
- const isLayer = /*#__PURE__*/createGuard(['PostgresLayerService', 'PostgresTileLayerService']);
5832
+ const isLayer = /*#__PURE__*/createGuard(['PostgresLayerService', 'PostgresTileLayerService', 'QueryLayerService']);
5777
5833
 
5778
5834
  const addSubDomainToLocation = subDomain => window.location.protocol + "//" + subDomain + "." + window.location.host;
5779
5835
 
@@ -7073,12 +7129,15 @@ function isFeatureLayer(layer) {
7073
7129
  (function (LineEndingType) {
7074
7130
  LineEndingType["None"] = "none";
7075
7131
  LineEndingType["Arrow"] = "arrow";
7076
- LineEndingType["RevertArrow"] = "revertArrow";
7077
7132
  LineEndingType["FilledArrow"] = "filledArrow";
7078
7133
  LineEndingType["Square"] = "square";
7079
7134
  LineEndingType["FilledSquare"] = "filledSquare";
7080
7135
  LineEndingType["Circle"] = "circle";
7081
7136
  LineEndingType["FilledCircle"] = "filledCircle";
7137
+ LineEndingType["Diamond"] = "diamond";
7138
+ LineEndingType["FilledDiamond"] = "filledDiamond";
7139
+ LineEndingType["RoundSquare"] = "roundSquare";
7140
+ LineEndingType["FilledRoundSquare"] = "filledRoundSquare";
7082
7141
  LineEndingType["Svg"] = "svg";
7083
7142
  })(exports.LineEndingType || (exports.LineEndingType = {}));
7084
7143
 
@@ -7096,6 +7155,11 @@ function isFeatureLayer(layer) {
7096
7155
  Operation["SymDifference"] = "symDifference";
7097
7156
  })(exports.Operation || (exports.Operation = {}));
7098
7157
 
7158
+ (function (PbfSchema) {
7159
+ PbfSchema["XYZ"] = "xyz";
7160
+ PbfSchema["TMS"] = "tms";
7161
+ })(exports.PbfSchema || (exports.PbfSchema = {}));
7162
+
7099
7163
  (function (Permissions) {
7100
7164
  Permissions["None"] = "none";
7101
7165
  Permissions["Configure"] = "configure";
@@ -7120,6 +7184,9 @@ function isFeatureLayer(layer) {
7120
7184
  ReferenceJoinType["OneToMany"] = "OneToMany";
7121
7185
  ReferenceJoinType["OneToOne"] = "OneToOne";
7122
7186
  ReferenceJoinType["Intersect"] = "Intersect";
7187
+ ReferenceJoinType["RightJoin"] = "RightJoin";
7188
+ ReferenceJoinType["FullJoin"] = "FullJoin";
7189
+ ReferenceJoinType["CrossJoin"] = "CrossJoin";
7123
7190
  })(exports.ReferenceJoinType || (exports.ReferenceJoinType = {}));
7124
7191
 
7125
7192
  (function (ResourceType) {