@evergis/api 4.0.18 → 4.0.20

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
@@ -4403,6 +4403,23 @@ let LayersService = /*#__PURE__*/function (_Service) {
4403
4403
 
4404
4404
  return this.http.get("/layers/" + layerName + "/validateExpression", query).json();
4405
4405
  }
4406
+ /**
4407
+ * No description
4408
+ *
4409
+ * @tags Layers
4410
+ * @name FlipCoordinates
4411
+ * @operationId LayersController_FlipCoordinates
4412
+ * @summary Flip geometry coordinates.
4413
+ * @request POST:/layers/{layerName}/flip-coordinates
4414
+ * @secure
4415
+ * @response `200` OK
4416
+ */
4417
+
4418
+ }, {
4419
+ key: "flipCoordinates",
4420
+ value: function flipCoordinates(layerName) {
4421
+ return this.http.post("/layers/" + layerName + "/flip-coordinates", null).json();
4422
+ }
4406
4423
  /**
4407
4424
  * No description
4408
4425
  *
@@ -5415,6 +5432,23 @@ let ProjectsService = /*#__PURE__*/function (_Service) {
5415
5432
  value: function deleteResource(name) {
5416
5433
  return this.http.delete("/projects/" + name, null).then(() => {});
5417
5434
  }
5435
+ /**
5436
+ * No description
5437
+ *
5438
+ * @tags Projects
5439
+ * @name UpdateProjectV2
5440
+ * @operationId ProjectsController_UpdateProjectV2
5441
+ * @summary Update table.
5442
+ * @request PATCH:/projects/{name}/v2
5443
+ * @secure
5444
+ * @response `200` OK
5445
+ */
5446
+
5447
+ }, {
5448
+ key: "updateProjectV2",
5449
+ value: function updateProjectV2(name, data) {
5450
+ return this.http.patch("/projects/" + name + "/v2", data).json();
5451
+ }
5418
5452
  /**
5419
5453
  * No description
5420
5454
  *
@@ -7635,7 +7669,7 @@ var CatalogResourceType;
7635
7669
  CatalogResourceType["DataSource"] = "DataSource";
7636
7670
  })(CatalogResourceType || (CatalogResourceType = {}));
7637
7671
  /**
7638
- * Describes classification methods.
7672
+ *
7639
7673
 
7640
7674
  none
7641
7675
 
@@ -7645,6 +7679,10 @@ equalInterval
7645
7679
 
7646
7680
  quantile
7647
7681
 
7682
+ distinct
7683
+
7684
+ step
7685
+
7648
7686
  unique
7649
7687
  */
7650
7688
 
@@ -7656,6 +7694,8 @@ var ClassificationType;
7656
7694
  ClassificationType["NaturalBreaks"] = "naturalBreaks";
7657
7695
  ClassificationType["EqualInterval"] = "equalInterval";
7658
7696
  ClassificationType["Quantile"] = "quantile";
7697
+ ClassificationType["Distinct"] = "distinct";
7698
+ ClassificationType["Step"] = "step";
7659
7699
  ClassificationType["Unique"] = "unique";
7660
7700
  })(ClassificationType || (ClassificationType = {}));
7661
7701
  /**
@@ -8147,7 +8187,7 @@ var Quality;
8147
8187
  Quality["High"] = "High";
8148
8188
  })(Quality || (Quality = {}));
8149
8189
  /**
8150
- * RemoteTaskStatus enum.
8190
+ *
8151
8191
 
8152
8192
  Init
8153
8193