@evergis/api 4.0.19 → 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
@@ -24,9 +24,6 @@ function _defineProperties(target, props) {
24
24
  function _createClass(Constructor, protoProps, staticProps) {
25
25
  if (protoProps) _defineProperties(Constructor.prototype, protoProps);
26
26
  if (staticProps) _defineProperties(Constructor, staticProps);
27
- Object.defineProperty(Constructor, "prototype", {
28
- writable: false
29
- });
30
27
  return Constructor;
31
28
  }
32
29
 
@@ -60,9 +57,6 @@ function _inherits(subClass, superClass) {
60
57
  configurable: true
61
58
  }
62
59
  });
63
- Object.defineProperty(subClass, "prototype", {
64
- writable: false
65
- });
66
60
  if (superClass) _setPrototypeOf(subClass, superClass);
67
61
  }
68
62
 
@@ -121,8 +115,6 @@ function _assertThisInitialized(self) {
121
115
  function _possibleConstructorReturn(self, call) {
122
116
  if (call && (typeof call === "object" || typeof call === "function")) {
123
117
  return call;
124
- } else if (call !== void 0) {
125
- throw new TypeError("Derived constructors may only return object or undefined");
126
118
  }
127
119
 
128
120
  return _assertThisInitialized(self);
@@ -156,7 +148,7 @@ function _superPropBase(object, property) {
156
148
  return object;
157
149
  }
158
150
 
159
- function _get() {
151
+ function _get(target, property, receiver) {
160
152
  if (typeof Reflect !== "undefined" && Reflect.get) {
161
153
  _get = Reflect.get;
162
154
  } else {
@@ -167,14 +159,14 @@ function _get() {
167
159
  var desc = Object.getOwnPropertyDescriptor(base, property);
168
160
 
169
161
  if (desc.get) {
170
- return desc.get.call(arguments.length < 3 ? target : receiver);
162
+ return desc.get.call(receiver);
171
163
  }
172
164
 
173
165
  return desc.value;
174
166
  };
175
167
  }
176
168
 
177
- return _get.apply(this, arguments);
169
+ return _get(target, property, receiver || target);
178
170
  }
179
171
 
180
172
  const API_USER_INFO_KEY = "@evergis/user-info";
@@ -4411,6 +4403,23 @@ let LayersService = /*#__PURE__*/function (_Service) {
4411
4403
 
4412
4404
  return this.http.get("/layers/" + layerName + "/validateExpression", query).json();
4413
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
+ }
4414
4423
  /**
4415
4424
  * No description
4416
4425
  *
@@ -5015,8 +5024,8 @@ let Notification = /*#__PURE__*/function (_NotificationService) {
5015
5024
  || event.code === 4002
5016
5025
  /* InvalidSession */
5017
5026
  ) {
5018
- _this.connectStatus = ConnectionStatus.SessionClosed;
5019
- } else if (_this.reconnectTries < _this.MAX_WS_RECONNECT_TRIES) {
5027
+ _this.connectStatus = ConnectionStatus.SessionClosed;
5028
+ } else if (_this.reconnectTries < _this.MAX_WS_RECONNECT_TRIES) {
5020
5029
  _this.connectStatus = ConnectionStatus.Break;
5021
5030
  _this.reconnectTries++;
5022
5031
 
@@ -5423,6 +5432,23 @@ let ProjectsService = /*#__PURE__*/function (_Service) {
5423
5432
  value: function deleteResource(name) {
5424
5433
  return this.http.delete("/projects/" + name, null).then(() => {});
5425
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
+ }
5426
5452
  /**
5427
5453
  * No description
5428
5454
  *
@@ -6063,12 +6089,12 @@ let Resources = /*#__PURE__*/function () {
6063
6089
  }, {
6064
6090
  key: "getDependentNames",
6065
6091
  value: function getDependentNames(deps, depType) {
6066
- return deps.filter(_ref => {
6092
+ return deps.filter((_ref) => {
6067
6093
  let {
6068
6094
  type
6069
6095
  } = _ref;
6070
6096
  return type === depType;
6071
- }).map(_ref2 => {
6097
+ }).map((_ref2) => {
6072
6098
  let {
6073
6099
  name
6074
6100
  } = _ref2;
@@ -7233,7 +7259,7 @@ let Api = /*#__PURE__*/function (_EventEmitter) {
7233
7259
  (_request$headers = request.headers) == null ? void 0 : _request$headers.set("Authorization", "Bearer " + (token || ""));
7234
7260
  }
7235
7261
  }, ...((_hooks$beforeRequest = hooks == null ? void 0 : hooks.beforeRequest) != null ? _hooks$beforeRequest : [])],
7236
- beforeRetry: [async _ref2 => {
7262
+ beforeRetry: [async (_ref2) => {
7237
7263
  let {
7238
7264
  request,
7239
7265
  error,
@@ -7439,47 +7465,47 @@ let Api = /*#__PURE__*/function (_EventEmitter) {
7439
7465
 
7440
7466
  /**
7441
7467
  *
7442
-
7468
+
7443
7469
  None
7444
-
7470
+
7445
7471
  Array
7446
-
7472
+
7447
7473
  Min
7448
-
7474
+
7449
7475
  Max
7450
-
7476
+
7451
7477
  Avg
7452
-
7478
+
7453
7479
  Sum
7454
-
7480
+
7455
7481
  Extent
7456
-
7482
+
7457
7483
  H3
7458
-
7484
+
7459
7485
  Count
7460
-
7486
+
7461
7487
  TotalCount
7462
-
7488
+
7463
7489
  DistinctCount
7464
-
7490
+
7465
7491
  First
7466
-
7492
+
7467
7493
  Last
7468
-
7494
+
7469
7495
  Median
7470
-
7496
+
7471
7497
  Mod
7472
-
7498
+
7473
7499
  StdDeviation
7474
-
7500
+
7475
7501
  SumOfProduct
7476
-
7502
+
7477
7503
  OnlyValue
7478
-
7504
+
7479
7505
  WeightedAvg
7480
-
7506
+
7481
7507
  DensityIndicators
7482
-
7508
+
7483
7509
  DividedSum
7484
7510
  */
7485
7511
  var AggregationFunction;
@@ -7509,13 +7535,13 @@ var AggregationFunction;
7509
7535
  })(AggregationFunction || (AggregationFunction = {}));
7510
7536
  /**
7511
7537
  *
7512
-
7538
+
7513
7539
  Unknown
7514
-
7540
+
7515
7541
  Icon
7516
-
7542
+
7517
7543
  PNG
7518
-
7544
+
7519
7545
  SVG
7520
7546
  */
7521
7547
 
@@ -7530,13 +7556,13 @@ var AttributeIconType;
7530
7556
  })(AttributeIconType || (AttributeIconType = {}));
7531
7557
  /**
7532
7558
  *
7533
-
7559
+
7534
7560
  None
7535
-
7561
+
7536
7562
  SelectFromHandBook
7537
-
7563
+
7538
7564
  SelectFromRange
7539
-
7565
+
7540
7566
  ViewHandBook
7541
7567
  */
7542
7568
 
@@ -7551,31 +7577,31 @@ var AttributeSelectorType;
7551
7577
  })(AttributeSelectorType || (AttributeSelectorType = {}));
7552
7578
  /**
7553
7579
  *
7554
-
7580
+
7555
7581
  Unknown
7556
-
7582
+
7557
7583
  String
7558
-
7584
+
7559
7585
  Int32
7560
-
7586
+
7561
7587
  Int64
7562
-
7588
+
7563
7589
  Double
7564
-
7590
+
7565
7591
  DateTime
7566
-
7592
+
7567
7593
  Boolean
7568
-
7594
+
7569
7595
  Point
7570
-
7596
+
7571
7597
  Polyline
7572
-
7598
+
7573
7599
  MultiPolygon
7574
-
7600
+
7575
7601
  Multipoint
7576
-
7602
+
7577
7603
  H3Index
7578
-
7604
+
7579
7605
  Json
7580
7606
  */
7581
7607
 
@@ -7599,9 +7625,9 @@ var AttributeType;
7599
7625
  })(AttributeType || (AttributeType = {}));
7600
7626
  /**
7601
7627
  *
7602
-
7628
+
7603
7629
  authorization_code
7604
-
7630
+
7605
7631
  refresh_token
7606
7632
  */
7607
7633
 
@@ -7614,19 +7640,19 @@ var AuthorizationGrant;
7614
7640
  })(AuthorizationGrant || (AuthorizationGrant = {}));
7615
7641
  /**
7616
7642
  *
7617
-
7643
+
7618
7644
  Directory
7619
-
7645
+
7620
7646
  Map
7621
-
7647
+
7622
7648
  Layer
7623
-
7649
+
7624
7650
  Table
7625
-
7651
+
7626
7652
  File
7627
-
7653
+
7628
7654
  TaskPrototype
7629
-
7655
+
7630
7656
  DataSource
7631
7657
  */
7632
7658
 
@@ -7643,16 +7669,20 @@ var CatalogResourceType;
7643
7669
  CatalogResourceType["DataSource"] = "DataSource";
7644
7670
  })(CatalogResourceType || (CatalogResourceType = {}));
7645
7671
  /**
7646
- * Describes classification methods.
7647
-
7672
+ *
7673
+
7648
7674
  none
7649
-
7675
+
7650
7676
  naturalBreaks
7651
-
7677
+
7652
7678
  equalInterval
7653
-
7679
+
7654
7680
  quantile
7655
-
7681
+
7682
+ distinct
7683
+
7684
+ step
7685
+
7656
7686
  unique
7657
7687
  */
7658
7688
 
@@ -7664,15 +7694,17 @@ var ClassificationType;
7664
7694
  ClassificationType["NaturalBreaks"] = "naturalBreaks";
7665
7695
  ClassificationType["EqualInterval"] = "equalInterval";
7666
7696
  ClassificationType["Quantile"] = "quantile";
7697
+ ClassificationType["Distinct"] = "distinct";
7698
+ ClassificationType["Step"] = "step";
7667
7699
  ClassificationType["Unique"] = "unique";
7668
7700
  })(ClassificationType || (ClassificationType = {}));
7669
7701
  /**
7670
7702
  *
7671
-
7703
+
7672
7704
  decimal
7673
-
7705
+
7674
7706
  dateTime
7675
-
7707
+
7676
7708
  text
7677
7709
  */
7678
7710
 
@@ -7686,55 +7718,55 @@ var ClassifyAttributeType;
7686
7718
  })(ClassifyAttributeType || (ClassifyAttributeType = {}));
7687
7719
  /**
7688
7720
  *
7689
-
7721
+
7690
7722
  Unknown
7691
-
7723
+
7692
7724
  SerializeError
7693
-
7725
+
7694
7726
  InvalidDataService
7695
-
7727
+
7696
7728
  InvalidConfiguration
7697
-
7729
+
7698
7730
  InvalidDataServiceName
7699
-
7731
+
7700
7732
  InvalidTableName
7701
-
7733
+
7702
7734
  InvalidLayerName
7703
-
7735
+
7704
7736
  ResourceNotFound
7705
-
7737
+
7706
7738
  InvalidCondition
7707
-
7739
+
7708
7740
  InvalidAttributes
7709
-
7741
+
7710
7742
  InvalidIdAttribute
7711
-
7743
+
7712
7744
  InvalidGeometryAttribute
7713
-
7745
+
7714
7746
  InvalidGeometryAttributeType
7715
-
7747
+
7716
7748
  InvalidColumnName
7717
-
7749
+
7718
7750
  InvalidIdColumnSettings
7719
-
7751
+
7720
7752
  ColumnNotExistsInTable
7721
-
7753
+
7722
7754
  InvalidStyle
7723
-
7755
+
7724
7756
  InvalidLayerType
7725
-
7757
+
7726
7758
  ColumnLoadingError
7727
-
7759
+
7728
7760
  InvalidAttributeFormat
7729
-
7761
+
7730
7762
  DataSourceNotFound
7731
-
7763
+
7732
7764
  DuplicateColumns
7733
-
7765
+
7734
7766
  DuplicateAttributes
7735
-
7767
+
7736
7768
  TableWithoutColumns
7737
-
7769
+
7738
7770
  InvalidTableReferenceConfiguration
7739
7771
  */
7740
7772
 
@@ -7770,13 +7802,13 @@ var ConfigurationErrorEnum;
7770
7802
  })(ConfigurationErrorEnum || (ConfigurationErrorEnum = {}));
7771
7803
  /**
7772
7804
  *
7773
-
7805
+
7774
7806
  Postgres
7775
-
7807
+
7776
7808
  Trino
7777
-
7809
+
7778
7810
  S3
7779
-
7811
+
7780
7812
  GisServer
7781
7813
  */
7782
7814
 
@@ -7791,15 +7823,15 @@ var DataSourceType;
7791
7823
  })(DataSourceType || (DataSourceType = {}));
7792
7824
  /**
7793
7825
  * Type of the error.
7794
-
7826
+
7795
7827
  ResourceLimitExceeded
7796
-
7828
+
7797
7829
  ResourceNotFound
7798
-
7830
+
7799
7831
  InternalError
7800
-
7832
+
7801
7833
  BadRequest
7802
-
7834
+
7803
7835
  DuplicateContent
7804
7836
  */
7805
7837
 
@@ -7850,11 +7882,11 @@ var ErrorType;
7850
7882
  })(ErrorType || (ErrorType = {}));
7851
7883
  /**
7852
7884
  * Sets whether font should be styled.
7853
-
7885
+
7854
7886
  normal
7855
-
7887
+
7856
7888
  oblique
7857
-
7889
+
7858
7890
  italic
7859
7891
  */
7860
7892
 
@@ -7868,27 +7900,27 @@ var FontStyle;
7868
7900
  })(FontStyle || (FontStyle = {}));
7869
7901
  /**
7870
7902
  * Specifies the weight (or boldness) of the font.
7871
-
7903
+
7872
7904
  Thin
7873
-
7905
+
7874
7906
  ExtraLight
7875
-
7907
+
7876
7908
  Light
7877
-
7909
+
7878
7910
  SemiLight
7879
-
7911
+
7880
7912
  Normal
7881
-
7913
+
7882
7914
  Medium
7883
-
7915
+
7884
7916
  DemiBold
7885
-
7917
+
7886
7918
  Bold
7887
-
7919
+
7888
7920
  ExtraBold
7889
-
7921
+
7890
7922
  Black
7891
-
7923
+
7892
7924
  ExtraBlack
7893
7925
  */
7894
7926
 
@@ -7910,17 +7942,17 @@ var FontWeight;
7910
7942
  })(FontWeight || (FontWeight = {}));
7911
7943
  /**
7912
7944
  *
7913
-
7945
+
7914
7946
  unknown
7915
-
7947
+
7916
7948
  point
7917
-
7949
+
7918
7950
  polyline
7919
-
7951
+
7920
7952
  multipolygon
7921
-
7953
+
7922
7954
  envelope
7923
-
7955
+
7924
7956
  multipoint
7925
7957
  */
7926
7958
 
@@ -7937,13 +7969,13 @@ var GeometryType;
7937
7969
  })(GeometryType || (GeometryType = {}));
7938
7970
  /**
7939
7971
  * Resource group.
7940
-
7972
+
7941
7973
  my
7942
-
7974
+
7943
7975
  role
7944
-
7976
+
7945
7977
  public
7946
-
7978
+
7947
7979
  all
7948
7980
  */
7949
7981
 
@@ -7958,13 +7990,13 @@ var Group;
7958
7990
  })(Group || (Group = {}));
7959
7991
  /**
7960
7992
  * Specifies the settings of line cap. This is applied to the beginning and end of each non-closed line.
7961
-
7993
+
7962
7994
  Flat
7963
-
7995
+
7964
7996
  Square
7965
-
7997
+
7966
7998
  Round
7967
-
7999
+
7968
8000
  Triangle
7969
8001
  */
7970
8002
 
@@ -7979,29 +8011,29 @@ var LineCapStyle;
7979
8011
  })(LineCapStyle || (LineCapStyle = {}));
7980
8012
  /**
7981
8013
  * Type of the line ending.
7982
-
8014
+
7983
8015
  none
7984
-
8016
+
7985
8017
  arrow
7986
-
8018
+
7987
8019
  filledArrow
7988
-
8020
+
7989
8021
  square
7990
-
8022
+
7991
8023
  filledSquare
7992
-
8024
+
7993
8025
  circle
7994
-
8026
+
7995
8027
  filledCircle
7996
-
8028
+
7997
8029
  diamond
7998
-
8030
+
7999
8031
  filledDiamond
8000
-
8032
+
8001
8033
  roundSquare
8002
-
8034
+
8003
8035
  filledRoundSquare
8004
-
8036
+
8005
8037
  svg
8006
8038
  */
8007
8039
 
@@ -8024,11 +8056,11 @@ var LineEndingType;
8024
8056
  })(LineEndingType || (LineEndingType = {}));
8025
8057
  /**
8026
8058
  * Specifies the settings of lines join. This is applied to corners in lines and rectangles.
8027
-
8059
+
8028
8060
  Miter
8029
-
8061
+
8030
8062
  Bevel
8031
-
8063
+
8032
8064
  Round
8033
8065
  */
8034
8066
 
@@ -8042,11 +8074,11 @@ var LineJoinType;
8042
8074
  })(LineJoinType || (LineJoinType = {}));
8043
8075
  /**
8044
8076
  * Filter exists resources by owner.
8045
-
8077
+
8046
8078
  My
8047
-
8079
+
8048
8080
  Shared
8049
-
8081
+
8050
8082
  Public
8051
8083
  */
8052
8084
 
@@ -8060,9 +8092,9 @@ var OwnerFilter;
8060
8092
  })(OwnerFilter || (OwnerFilter = {}));
8061
8093
  /**
8062
8094
  * Influences the y direction of the tile coordinates. The global-mercator (aka Spherical Mercator) profile is assumed.
8063
-
8095
+
8064
8096
  xyz
8065
-
8097
+
8066
8098
  tms
8067
8099
  */
8068
8100
 
@@ -8075,19 +8107,19 @@ var PbfSchema;
8075
8107
  })(PbfSchema || (PbfSchema = {}));
8076
8108
  /**
8077
8109
  *
8078
-
8110
+
8079
8111
  none
8080
-
8112
+
8081
8113
  configure
8082
-
8114
+
8083
8115
  write
8084
-
8116
+
8085
8117
  read
8086
-
8118
+
8087
8119
  read,configure
8088
-
8120
+
8089
8121
  read,write
8090
-
8122
+
8091
8123
  read,write,configure
8092
8124
  */
8093
8125
 
@@ -8105,21 +8137,21 @@ var Permissions;
8105
8137
  })(Permissions || (Permissions = {}));
8106
8138
  /**
8107
8139
  * Type of the authorization policy.
8108
-
8140
+
8109
8141
  Unknown
8110
-
8142
+
8111
8143
  CreateTable
8112
-
8144
+
8113
8145
  CreateLayer
8114
-
8146
+
8115
8147
  CreateProject
8116
-
8148
+
8117
8149
  MaxFeaturesInOneTable
8118
-
8150
+
8119
8151
  MaxObjectsToExport
8120
-
8152
+
8121
8153
  MaxUploadContentSize
8122
-
8154
+
8123
8155
  MaxEqlQueryParametersValues
8124
8156
  */
8125
8157
 
@@ -8138,11 +8170,11 @@ var PolicyType;
8138
8170
  })(PolicyType || (PolicyType = {}));
8139
8171
  /**
8140
8172
  * Stream quality.
8141
-
8173
+
8142
8174
  Low
8143
-
8175
+
8144
8176
  Medium
8145
-
8177
+
8146
8178
  High
8147
8179
  */
8148
8180
 
@@ -8155,24 +8187,24 @@ var Quality;
8155
8187
  Quality["High"] = "High";
8156
8188
  })(Quality || (Quality = {}));
8157
8189
  /**
8158
- * RemoteTaskStatus enum.
8159
-
8190
+ *
8191
+
8160
8192
  Init
8161
-
8193
+
8162
8194
  Process
8163
-
8195
+
8164
8196
  Completed
8165
-
8197
+
8166
8198
  Interrupted
8167
-
8199
+
8168
8200
  Error
8169
-
8201
+
8170
8202
  Timeout
8171
-
8203
+
8172
8204
  Waiting
8173
-
8205
+
8174
8206
  InQueue
8175
-
8207
+
8176
8208
  Unknown
8177
8209
  */
8178
8210
 
@@ -8192,15 +8224,15 @@ var RemoteTaskStatus;
8192
8224
  })(RemoteTaskStatus || (RemoteTaskStatus = {}));
8193
8225
  /**
8194
8226
  * Resources types filter.
8195
-
8227
+
8196
8228
  RemoteTileService
8197
-
8229
+
8198
8230
  ProxyService
8199
-
8231
+
8200
8232
  PostgresLayerService
8201
-
8233
+
8202
8234
  QueryLayerService
8203
-
8235
+
8204
8236
  TileCatalogTable
8205
8237
  */
8206
8238
 
@@ -8216,21 +8248,21 @@ var ResourceSubTypeFilter;
8216
8248
  })(ResourceSubTypeFilter || (ResourceSubTypeFilter = {}));
8217
8249
  /**
8218
8250
  *
8219
-
8251
+
8220
8252
  Unknown
8221
-
8253
+
8222
8254
  table
8223
-
8255
+
8224
8256
  layer
8225
-
8257
+
8226
8258
  project
8227
-
8259
+
8228
8260
  file
8229
-
8261
+
8230
8262
  feature
8231
-
8263
+
8232
8264
  tag
8233
-
8265
+
8234
8266
  datasource
8235
8267
  */
8236
8268
 
@@ -8249,23 +8281,23 @@ var ResourceType;
8249
8281
  })(ResourceType || (ResourceType = {}));
8250
8282
  /**
8251
8283
  * Resources types filter.
8252
-
8284
+
8253
8285
  Map
8254
-
8286
+
8255
8287
  Layer
8256
-
8288
+
8257
8289
  Table
8258
-
8290
+
8259
8291
  RasterCatalog
8260
-
8292
+
8261
8293
  ProxyService
8262
-
8294
+
8263
8295
  RemoteTileService
8264
-
8296
+
8265
8297
  File
8266
-
8298
+
8267
8299
  DataSource
8268
-
8300
+
8269
8301
  TaskPrototype
8270
8302
  */
8271
8303
 
@@ -8293,9 +8325,9 @@ var ResourceTypeLink;
8293
8325
  })(ResourceTypeLink || (ResourceTypeLink = {}));
8294
8326
  /**
8295
8327
  *
8296
-
8328
+
8297
8329
  code
8298
-
8330
+
8299
8331
  token
8300
8332
  */
8301
8333
 
@@ -8308,11 +8340,11 @@ var ResponseType;
8308
8340
  })(ResponseType || (ResponseType = {}));
8309
8341
  /**
8310
8342
  *
8311
-
8343
+
8312
8344
  Basic
8313
-
8345
+
8314
8346
  PreserveTopology
8315
-
8347
+
8316
8348
  VW
8317
8349
  */
8318
8350
 
@@ -8326,13 +8358,13 @@ var SimplifyType;
8326
8358
  })(SimplifyType || (SimplifyType = {}));
8327
8359
  /**
8328
8360
  *
8329
-
8361
+
8330
8362
  None
8331
-
8363
+
8332
8364
  Image
8333
-
8365
+
8334
8366
  PkkCode
8335
-
8367
+
8336
8368
  Attachments
8337
8369
  */
8338
8370
 
@@ -8347,9 +8379,9 @@ var StringSubType;
8347
8379
  })(StringSubType || (StringSubType = {}));
8348
8380
  /**
8349
8381
  * TaskPrototypeSubType.
8350
-
8382
+
8351
8383
  SpTask
8352
-
8384
+
8353
8385
  PythonTask
8354
8386
  */
8355
8387
 
@@ -8362,13 +8394,13 @@ var TaskResourceSubType;
8362
8394
  })(TaskResourceSubType || (TaskResourceSubType = {}));
8363
8395
  /**
8364
8396
  * Sets the horizontal alignment of text.
8365
-
8397
+
8366
8398
  right
8367
-
8399
+
8368
8400
  left
8369
-
8401
+
8370
8402
  center
8371
-
8403
+
8372
8404
  justified
8373
8405
  */
8374
8406
 
@@ -8383,11 +8415,11 @@ var TextAlignment;
8383
8415
  })(TextAlignment || (TextAlignment = {}));
8384
8416
  /**
8385
8417
  * Sets the vertical alignment of text.
8386
-
8418
+
8387
8419
  top
8388
-
8420
+
8389
8421
  bottom
8390
-
8422
+
8391
8423
  middle
8392
8424
  */
8393
8425
 
@@ -8401,11 +8433,11 @@ var TextVerticalAlignment;
8401
8433
  })(TextVerticalAlignment || (TextVerticalAlignment = {}));
8402
8434
  /**
8403
8435
  *
8404
-
8436
+
8405
8437
  Task
8406
-
8438
+
8407
8439
  Rest
8408
-
8440
+
8409
8441
  Both
8410
8442
  */
8411
8443
 
@@ -8419,49 +8451,49 @@ var WorkerMethodType;
8419
8451
  })(WorkerMethodType || (WorkerMethodType = {}));
8420
8452
  /**
8421
8453
  *
8422
-
8454
+
8423
8455
  Int32
8424
-
8456
+
8425
8457
  Int64
8426
-
8458
+
8427
8459
  Double
8428
-
8460
+
8429
8461
  String
8430
-
8462
+
8431
8463
  Boolean
8432
-
8464
+
8433
8465
  DateTime
8434
-
8466
+
8435
8467
  Point
8436
-
8468
+
8437
8469
  Geometry
8438
-
8470
+
8439
8471
  Polyline
8440
-
8472
+
8441
8473
  MultiPolygon
8442
-
8474
+
8443
8475
  Polygon
8444
-
8476
+
8445
8477
  Multipoint
8446
-
8478
+
8447
8479
  IntergerArray
8448
-
8480
+
8449
8481
  DoubleArray
8450
-
8482
+
8451
8483
  StringArray
8452
-
8484
+
8453
8485
  SourceEql
8454
-
8486
+
8455
8487
  Layer
8456
-
8488
+
8457
8489
  Table
8458
-
8490
+
8459
8491
  Folder
8460
-
8492
+
8461
8493
  Json
8462
-
8494
+
8463
8495
  Attribute
8464
-
8496
+
8465
8497
  AttributeArray
8466
8498
  */
8467
8499