@evergis/api 3.0.92 → 3.0.93

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
@@ -1543,6 +1543,24 @@ let LayersService = /*#__PURE__*/function (_Service) {
1543
1543
  type: 'ProxyService'
1544
1544
  }).json();
1545
1545
  }
1546
+ /**
1547
+ * No description
1548
+ *
1549
+ * @tags Layers
1550
+ * @name PublishRouteService
1551
+ * @operationId LayersController_PublishRouteService
1552
+ * @summary Creates new Route Service.
1553
+ * @request POST:/layers#type=RouteService
1554
+ * @response `200` Success
1555
+ */
1556
+
1557
+ }, {
1558
+ key: "publishRouteService",
1559
+ value: function publishRouteService(data) {
1560
+ return this.http.post("/layers", data, {
1561
+ type: 'RouteService'
1562
+ }).then(() => {});
1563
+ }
1546
1564
  /**
1547
1565
  * No description
1548
1566
  *
@@ -2245,6 +2263,22 @@ let LayersService = /*#__PURE__*/function (_Service) {
2245
2263
 
2246
2264
  return this.http.get("/layers/" + layerName + "/validateExpression", query).json();
2247
2265
  }
2266
+ /**
2267
+ * No description
2268
+ *
2269
+ * @tags Layers
2270
+ * @name CreateRoute
2271
+ * @operationId LayersController_CreateRoute
2272
+ * @summary Create new route (feature) from source features.
2273
+ * @request POST:/layers/{name}/createRoute
2274
+ * @response `200` Success
2275
+ */
2276
+
2277
+ }, {
2278
+ key: "createRoute",
2279
+ value: function createRoute(name, data) {
2280
+ return this.http.post("/layers/" + name + "/createRoute", data).json();
2281
+ }
2248
2282
  /**
2249
2283
  * No description
2250
2284
  *
@@ -3862,8 +3896,24 @@ let GeneralService = /*#__PURE__*/function (_Service) {
3862
3896
 
3863
3897
  }, {
3864
3898
  key: "favicon",
3865
- value: function favicon() {
3866
- return this.http.createUrl("/favicon.ico");
3899
+ value: function favicon(query) {
3900
+ return this.http.createUrl("/favicon.ico", query);
3901
+ }
3902
+ /**
3903
+ * No description
3904
+ *
3905
+ * @tags General
3906
+ * @name Logo
3907
+ * @operationId GeneralController_Logo
3908
+ * @summary Returns logo.
3909
+ * @request GET:/logo.png
3910
+ * @response `200` Success
3911
+ */
3912
+
3913
+ }, {
3914
+ key: "logo",
3915
+ value: function logo(query) {
3916
+ return this.http.createUrl("/logo.png", query);
3867
3917
  }
3868
3918
  /**
3869
3919
  * No description
@@ -6335,6 +6385,8 @@ Extent
6335
6385
 
6336
6386
  Count
6337
6387
 
6388
+ DistinctCount
6389
+
6338
6390
  First
6339
6391
 
6340
6392
  Last
@@ -6366,6 +6418,7 @@ var AggregationFunction;
6366
6418
  AggregationFunction["Sum"] = "Sum";
6367
6419
  AggregationFunction["Extent"] = "Extent";
6368
6420
  AggregationFunction["Count"] = "Count";
6421
+ AggregationFunction["DistinctCount"] = "DistinctCount";
6369
6422
  AggregationFunction["First"] = "First";
6370
6423
  AggregationFunction["Last"] = "Last";
6371
6424
  AggregationFunction["Median"] = "Median";
@@ -6441,7 +6494,7 @@ var ClassificationType;
6441
6494
  ClassificationType["NaturalBreaks"] = "naturalBreaks";
6442
6495
  ClassificationType["EqualInterval"] = "equalInterval";
6443
6496
  ClassificationType["Quantile"] = "quantile";
6444
- ClassificationType["Distinct"] = "unique";
6497
+ ClassificationType["Unique"] = "unique";
6445
6498
  })(ClassificationType || (ClassificationType = {}));
6446
6499
  /**
6447
6500
  * Type of attribute.
@@ -6462,8 +6515,50 @@ var ClassifyAttributeType;
6462
6515
  ClassifyAttributeType["Text"] = "text";
6463
6516
  })(ClassifyAttributeType || (ClassifyAttributeType = {}));
6464
6517
  /**
6465
- * Types of errors that can occur during layer initialize.
6466
- */
6518
+ * Types of errors that can occur during layer initialize.
6519
+
6520
+ Unknown
6521
+
6522
+ SerializeError
6523
+
6524
+ InvalidDataService
6525
+
6526
+ InvalidConfiguration
6527
+
6528
+ InvalidDataServiceName
6529
+
6530
+ InvalidTableName
6531
+
6532
+ ResourceNotFound
6533
+
6534
+ InvalidCondition
6535
+
6536
+ InvalidAttributes
6537
+
6538
+ InvalidIdAttribute
6539
+
6540
+ InvalidGeometryAttribute
6541
+
6542
+ InvalidGeometryAttributeType
6543
+
6544
+ InvalidColumnName
6545
+
6546
+ InvalidIdColumnSettings
6547
+
6548
+ ColumnNotExistsInTable
6549
+
6550
+ InvalidStyle
6551
+
6552
+ InvalidLayerType
6553
+
6554
+ ColumnLoadingError
6555
+
6556
+ InvalidAttributeFormat
6557
+
6558
+ DataSourceNotFound
6559
+
6560
+ DuplicateColumns
6561
+ */
6467
6562
 
6468
6563
 
6469
6564
  var ConfigurationErrorEnum;
@@ -6489,6 +6584,7 @@ var ConfigurationErrorEnum;
6489
6584
  ConfigurationErrorEnum["ColumnLoadingError"] = "ColumnLoadingError";
6490
6585
  ConfigurationErrorEnum["InvalidAttributeFormat"] = "InvalidAttributeFormat";
6491
6586
  ConfigurationErrorEnum["DataSourceNotFound"] = "DataSourceNotFound";
6587
+ ConfigurationErrorEnum["DuplicateColumns"] = "DuplicateColumns";
6492
6588
  })(ConfigurationErrorEnum || (ConfigurationErrorEnum = {}));
6493
6589
  /**
6494
6590
  * Type of the error.
@@ -6569,8 +6665,14 @@ var FeatureType;
6569
6665
  FeatureType["GeometricFeature"] = "GeometricFeature";
6570
6666
  })(FeatureType || (FeatureType = {}));
6571
6667
  /**
6572
- * Sets whether font should be styled.
6573
- */
6668
+ * Sets whether font should be styled.
6669
+
6670
+ normal
6671
+
6672
+ oblique
6673
+
6674
+ italic
6675
+ */
6574
6676
 
6575
6677
 
6576
6678
  var FontStyle;
@@ -6581,8 +6683,30 @@ var FontStyle;
6581
6683
  FontStyle["Italic"] = "italic";
6582
6684
  })(FontStyle || (FontStyle = {}));
6583
6685
  /**
6584
- * Specifies the weight (or boldness) of the font.
6585
- */
6686
+ * Specifies the weight (or boldness) of the font.
6687
+
6688
+ Thin
6689
+
6690
+ ExtraLight
6691
+
6692
+ Light
6693
+
6694
+ SemiLight
6695
+
6696
+ Normal
6697
+
6698
+ Medium
6699
+
6700
+ DemiBold
6701
+
6702
+ Bold
6703
+
6704
+ ExtraBold
6705
+
6706
+ Black
6707
+
6708
+ ExtraBlack
6709
+ */
6586
6710
 
6587
6711
 
6588
6712
  var FontWeight;
@@ -6651,6 +6775,10 @@ var Group;
6651
6775
  /**
6652
6776
  * The size of the line ending in a SPCore.Kernel.Rendering.Symbols.SimplePolylineSymbol. The values sent here can be one
6653
6777
  of the preset values, or a number representing the size of the ending in pixels for 1px wide lines.
6778
+
6779
+ small
6780
+
6781
+ large
6654
6782
  */
6655
6783
 
6656
6784
 
@@ -6661,8 +6789,22 @@ var LineEndingSize;
6661
6789
  LineEndingSize["Large"] = "large";
6662
6790
  })(LineEndingSize || (LineEndingSize = {}));
6663
6791
  /**
6664
- * Type of the line ending.
6665
- */
6792
+ * Type of the line ending.
6793
+
6794
+ none
6795
+
6796
+ arrow
6797
+
6798
+ filledArrow
6799
+
6800
+ square
6801
+
6802
+ filledSquare
6803
+
6804
+ circle
6805
+
6806
+ filledCircle
6807
+ */
6666
6808
 
6667
6809
 
6668
6810
  var LineEndingType;
@@ -6771,6 +6913,8 @@ project
6771
6913
  file
6772
6914
 
6773
6915
  feature
6916
+
6917
+ tag
6774
6918
  */
6775
6919
 
6776
6920
 
@@ -6783,6 +6927,7 @@ var ResourceType;
6783
6927
  ResourceType["Project"] = "project";
6784
6928
  ResourceType["File"] = "file";
6785
6929
  ResourceType["Feature"] = "feature";
6930
+ ResourceType["Tag"] = "tag";
6786
6931
  })(ResourceType || (ResourceType = {}));
6787
6932
 
6788
6933
  var ResourceTypeLink;
@@ -6844,8 +6989,16 @@ var StringSubType;
6844
6989
  StringSubType["PkkCode"] = "PkkCode";
6845
6990
  })(StringSubType || (StringSubType = {}));
6846
6991
  /**
6847
- * Sets the horizontal alignment of text.
6848
- */
6992
+ * Sets the horizontal alignment of text.
6993
+
6994
+ right
6995
+
6996
+ left
6997
+
6998
+ center
6999
+
7000
+ justified
7001
+ */
6849
7002
 
6850
7003
 
6851
7004
  var TextAlignment;
@@ -6857,8 +7010,14 @@ var TextAlignment;
6857
7010
  TextAlignment["Justified"] = "justified";
6858
7011
  })(TextAlignment || (TextAlignment = {}));
6859
7012
  /**
6860
- * Sets the vertical alignment of text.
6861
- */
7013
+ * Sets the vertical alignment of text.
7014
+
7015
+ top
7016
+
7017
+ bottom
7018
+
7019
+ middle
7020
+ */
6862
7021
 
6863
7022
 
6864
7023
  var TextVerticalAlignment;