@evergis/api 3.0.213 → 3.0.214

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
@@ -30,9 +30,6 @@ function _defineProperties(target, props) {
30
30
  function _createClass(Constructor, protoProps, staticProps) {
31
31
  if (protoProps) _defineProperties(Constructor.prototype, protoProps);
32
32
  if (staticProps) _defineProperties(Constructor, staticProps);
33
- Object.defineProperty(Constructor, "prototype", {
34
- writable: false
35
- });
36
33
  return Constructor;
37
34
  }
38
35
 
@@ -66,9 +63,6 @@ function _inherits(subClass, superClass) {
66
63
  configurable: true
67
64
  }
68
65
  });
69
- Object.defineProperty(subClass, "prototype", {
70
- writable: false
71
- });
72
66
  if (superClass) _setPrototypeOf(subClass, superClass);
73
67
  }
74
68
 
@@ -127,8 +121,6 @@ function _assertThisInitialized(self) {
127
121
  function _possibleConstructorReturn(self, call) {
128
122
  if (call && (typeof call === "object" || typeof call === "function")) {
129
123
  return call;
130
- } else if (call !== void 0) {
131
- throw new TypeError("Derived constructors may only return object or undefined");
132
124
  }
133
125
 
134
126
  return _assertThisInitialized(self);
@@ -162,7 +154,7 @@ function _superPropBase(object, property) {
162
154
  return object;
163
155
  }
164
156
 
165
- function _get() {
157
+ function _get(target, property, receiver) {
166
158
  if (typeof Reflect !== "undefined" && Reflect.get) {
167
159
  _get = Reflect.get;
168
160
  } else {
@@ -173,17 +165,17 @@ function _get() {
173
165
  var desc = Object.getOwnPropertyDescriptor(base, property);
174
166
 
175
167
  if (desc.get) {
176
- return desc.get.call(arguments.length < 3 ? target : receiver);
168
+ return desc.get.call(receiver);
177
169
  }
178
170
 
179
171
  return desc.value;
180
172
  };
181
173
  }
182
174
 
183
- return _get.apply(this, arguments);
175
+ return _get(target, property, receiver || target);
184
176
  }
185
177
 
186
- const API_USER_INFO_KEY = '@evergis/user-info';
178
+ const API_USER_INFO_KEY = "@evergis/user-info";
187
179
  const STORAGE_TOKEN_KEY = "evergis-jwt-token";
188
180
  const STORAGE_REFRESH_TOKEN_KEY = "evergis-refresh-token";
189
181
 
@@ -5230,8 +5222,8 @@ let Notification = /*#__PURE__*/function (_NotificationService) {
5230
5222
  || event.code === 4002
5231
5223
  /* InvalidSession */
5232
5224
  ) {
5233
- _this.connectStatus = ConnectionStatus.SessionClosed;
5234
- } else if (_this.reconnectTries < _this.MAX_WS_RECONNECT_TRIES) {
5225
+ _this.connectStatus = ConnectionStatus.SessionClosed;
5226
+ } else if (_this.reconnectTries < _this.MAX_WS_RECONNECT_TRIES) {
5235
5227
  _this.connectStatus = ConnectionStatus.Break;
5236
5228
  _this.reconnectTries++;
5237
5229
 
@@ -6087,12 +6079,12 @@ let Resources = /*#__PURE__*/function () {
6087
6079
  }, {
6088
6080
  key: "getDependentNames",
6089
6081
  value: function getDependentNames(deps, depType) {
6090
- return deps.filter(_ref => {
6082
+ return deps.filter((_ref) => {
6091
6083
  let {
6092
6084
  type
6093
6085
  } = _ref;
6094
6086
  return type === depType;
6095
- }).map(_ref2 => {
6087
+ }).map((_ref2) => {
6096
6088
  let {
6097
6089
  name
6098
6090
  } = _ref2;
@@ -6548,7 +6540,7 @@ let Scheduler = /*#__PURE__*/function (_SchedulerService) {
6548
6540
  const taskProgress = await this.getTaskProgress(id);
6549
6541
  this.resolveTaskStatus(taskProgress, resolve, reject);
6550
6542
 
6551
- const taskResultCallback = async _ref => {
6543
+ const taskResultCallback = async (_ref) => {
6552
6544
  let {
6553
6545
  data
6554
6546
  } = _ref;
@@ -7728,7 +7720,12 @@ let Api = /*#__PURE__*/function (_EventEmitter) {
7728
7720
  } = httpOptions || {};
7729
7721
  _this.http = http || new HttpClient(_extends({
7730
7722
  prefixUrl: url,
7731
- timeout: false
7723
+ timeout: false,
7724
+ retry: {
7725
+ methods: ["get", "post", "delete"],
7726
+ limit: 5,
7727
+ statusCodes: [401]
7728
+ }
7732
7729
  }, httpOptions || {}, {
7733
7730
  hooks: _extends({}, hooks || {}, {
7734
7731
  beforeRequest: [request => {
@@ -7737,14 +7734,44 @@ let Api = /*#__PURE__*/function (_EventEmitter) {
7737
7734
  if (token) {
7738
7735
  var _request$headers;
7739
7736
 
7740
- (_request$headers = request.headers) == null ? void 0 : _request$headers.set('Authorization', "Bearer " + (token || ''));
7737
+ (_request$headers = request.headers) == null ? void 0 : _request$headers.set("Authorization", "Bearer " + (token || ""));
7741
7738
  }
7742
7739
  }, ...((_hooks$beforeRequest = hooks == null ? void 0 : hooks.beforeRequest) != null ? _hooks$beforeRequest : [])],
7743
- afterResponse: [response => {
7740
+ beforeRetry: [async (_ref2) => {
7741
+ let {
7742
+ request,
7743
+ error,
7744
+ retryCount
7745
+ } = _ref2;
7746
+
7747
+ if (error instanceof HTTPError && error.response.status === 401 && retryCount === 1) {
7748
+ try {
7749
+ const refreshToken = window.localStorage.getItem(STORAGE_REFRESH_TOKEN_KEY);
7750
+
7751
+ if (refreshToken) {
7752
+ var _request$headers2;
7753
+
7754
+ const refreshTokenResponse = await _this.account.refreshToken({
7755
+ refreshToken
7756
+ });
7757
+
7758
+ if (refreshTokenResponse) {
7759
+ window.localStorage.setItem(STORAGE_TOKEN_KEY, refreshTokenResponse.token);
7760
+ window.localStorage.setItem(STORAGE_REFRESH_TOKEN_KEY, refreshTokenResponse.refreshToken);
7761
+ }
7762
+
7763
+ (_request$headers2 = request.headers) == null ? void 0 : _request$headers2.set("Authorization", "Bearer " + (refreshTokenResponse.token || ""));
7764
+ }
7765
+ } catch (error) {
7766
+ throw new Error("Failed to refresh token");
7767
+ }
7768
+ }
7769
+ }],
7770
+ afterResponse: [(request, options, response) => {
7744
7771
  const apiEvent = apiEventsByResponseStatus[response.status];
7745
7772
 
7746
7773
  if (apiEvent) {
7747
- _this.emit(apiEvent, errorHandler(new HTTPError(response)));
7774
+ _this.emit(apiEvent, errorHandler(new HTTPError(response, request, options)));
7748
7775
  }
7749
7776
 
7750
7777
  return response;
@@ -7801,7 +7828,7 @@ let Api = /*#__PURE__*/function (_EventEmitter) {
7801
7828
 
7802
7829
  _createClass(Api, [{
7803
7830
  key: "init",
7804
- value: async function init(_ref2) {
7831
+ value: async function init(_ref3) {
7805
7832
  let {
7806
7833
  authParams,
7807
7834
  authQueryParams,
@@ -7810,7 +7837,7 @@ let Api = /*#__PURE__*/function (_EventEmitter) {
7810
7837
  fetchSettings,
7811
7838
  fetchUser,
7812
7839
  useJwt
7813
- } = _ref2;
7840
+ } = _ref3;
7814
7841
 
7815
7842
  try {
7816
7843
  await this.account.login(authParams, authQueryParams, useJwt);
@@ -8279,47 +8306,47 @@ function isFeatureLayer(layer) {
8279
8306
 
8280
8307
  /**
8281
8308
  *
8282
-
8309
+
8283
8310
  None
8284
-
8311
+
8285
8312
  Array
8286
-
8313
+
8287
8314
  Min
8288
-
8315
+
8289
8316
  Max
8290
-
8317
+
8291
8318
  Avg
8292
-
8319
+
8293
8320
  Sum
8294
-
8321
+
8295
8322
  Extent
8296
-
8323
+
8297
8324
  H3
8298
-
8325
+
8299
8326
  Count
8300
-
8327
+
8301
8328
  TotalCount
8302
-
8329
+
8303
8330
  DistinctCount
8304
-
8331
+
8305
8332
  First
8306
-
8333
+
8307
8334
  Last
8308
-
8335
+
8309
8336
  Median
8310
-
8337
+
8311
8338
  Mod
8312
-
8339
+
8313
8340
  StdDeviation
8314
-
8341
+
8315
8342
  SumOfProduct
8316
-
8343
+
8317
8344
  OnlyValue
8318
-
8345
+
8319
8346
  WeightedAvg
8320
-
8347
+
8321
8348
  DensityIndicators
8322
-
8349
+
8323
8350
  DividedSum
8324
8351
  */
8325
8352
  var AggregationFunction;
@@ -8349,13 +8376,13 @@ var AggregationFunction;
8349
8376
  })(AggregationFunction || (AggregationFunction = {}));
8350
8377
  /**
8351
8378
  *
8352
-
8379
+
8353
8380
  Unknown
8354
-
8381
+
8355
8382
  Icon
8356
-
8383
+
8357
8384
  PNG
8358
-
8385
+
8359
8386
  SVG
8360
8387
  */
8361
8388
 
@@ -8370,13 +8397,13 @@ var AttributeIconType;
8370
8397
  })(AttributeIconType || (AttributeIconType = {}));
8371
8398
  /**
8372
8399
  *
8373
-
8400
+
8374
8401
  None
8375
-
8402
+
8376
8403
  SelectFromHandBook
8377
-
8404
+
8378
8405
  SelectFromRange
8379
-
8406
+
8380
8407
  ViewHandBook
8381
8408
  */
8382
8409
 
@@ -8391,31 +8418,31 @@ var AttributeSelectorType;
8391
8418
  })(AttributeSelectorType || (AttributeSelectorType = {}));
8392
8419
  /**
8393
8420
  *
8394
-
8421
+
8395
8422
  Unknown
8396
-
8423
+
8397
8424
  String
8398
-
8425
+
8399
8426
  Int32
8400
-
8427
+
8401
8428
  Int64
8402
-
8429
+
8403
8430
  Double
8404
-
8431
+
8405
8432
  DateTime
8406
-
8433
+
8407
8434
  Boolean
8408
-
8435
+
8409
8436
  Point
8410
-
8437
+
8411
8438
  Polyline
8412
-
8439
+
8413
8440
  MultiPolygon
8414
-
8441
+
8415
8442
  Multipoint
8416
-
8443
+
8417
8444
  H3Index
8418
-
8445
+
8419
8446
  Json
8420
8447
  */
8421
8448
 
@@ -8441,9 +8468,9 @@ var AttributeType;
8441
8468
  * An authorization grant is a credential representing the resource
8442
8469
  owner's authorization (to access its protected resources) used by the
8443
8470
  client to obtain an access token.
8444
-
8471
+
8445
8472
  authorization_code
8446
-
8473
+
8447
8474
  refresh_token
8448
8475
  */
8449
8476
 
@@ -8456,19 +8483,19 @@ var AuthorizationGrant;
8456
8483
  })(AuthorizationGrant || (AuthorizationGrant = {}));
8457
8484
  /**
8458
8485
  *
8459
-
8486
+
8460
8487
  None
8461
-
8488
+
8462
8489
  Map
8463
-
8490
+
8464
8491
  Layer
8465
-
8492
+
8466
8493
  Table
8467
-
8494
+
8468
8495
  File
8469
-
8496
+
8470
8497
  TaskPrototype
8471
-
8498
+
8472
8499
  DataSource
8473
8500
  */
8474
8501
 
@@ -8486,15 +8513,15 @@ var CatalogResourceType;
8486
8513
  })(CatalogResourceType || (CatalogResourceType = {}));
8487
8514
  /**
8488
8515
  * Describes classification methods.
8489
-
8516
+
8490
8517
  none
8491
-
8518
+
8492
8519
  naturalBreaks
8493
-
8520
+
8494
8521
  equalInterval
8495
-
8522
+
8496
8523
  quantile
8497
-
8524
+
8498
8525
  unique
8499
8526
  */
8500
8527
 
@@ -8510,11 +8537,11 @@ var ClassificationType;
8510
8537
  })(ClassificationType || (ClassificationType = {}));
8511
8538
  /**
8512
8539
  *
8513
-
8540
+
8514
8541
  decimal
8515
-
8542
+
8516
8543
  dateTime
8517
-
8544
+
8518
8545
  text
8519
8546
  */
8520
8547
 
@@ -8528,55 +8555,55 @@ var ClassifyAttributeType;
8528
8555
  })(ClassifyAttributeType || (ClassifyAttributeType = {}));
8529
8556
  /**
8530
8557
  *
8531
-
8558
+
8532
8559
  Unknown
8533
-
8560
+
8534
8561
  SerializeError
8535
-
8562
+
8536
8563
  InvalidDataService
8537
-
8564
+
8538
8565
  InvalidConfiguration
8539
-
8566
+
8540
8567
  InvalidDataServiceName
8541
-
8568
+
8542
8569
  InvalidTableName
8543
-
8570
+
8544
8571
  InvalidLayerName
8545
-
8572
+
8546
8573
  ResourceNotFound
8547
-
8574
+
8548
8575
  InvalidCondition
8549
-
8576
+
8550
8577
  InvalidAttributes
8551
-
8578
+
8552
8579
  InvalidIdAttribute
8553
-
8580
+
8554
8581
  InvalidGeometryAttribute
8555
-
8582
+
8556
8583
  InvalidGeometryAttributeType
8557
-
8584
+
8558
8585
  InvalidColumnName
8559
-
8586
+
8560
8587
  InvalidIdColumnSettings
8561
-
8588
+
8562
8589
  ColumnNotExistsInTable
8563
-
8590
+
8564
8591
  InvalidStyle
8565
-
8592
+
8566
8593
  InvalidLayerType
8567
-
8594
+
8568
8595
  ColumnLoadingError
8569
-
8596
+
8570
8597
  InvalidAttributeFormat
8571
-
8598
+
8572
8599
  DataSourceNotFound
8573
-
8600
+
8574
8601
  DuplicateColumns
8575
-
8602
+
8576
8603
  DuplicateAttributes
8577
-
8604
+
8578
8605
  TableWithoutColumns
8579
-
8606
+
8580
8607
  InvalidTableReferenceConfiguration
8581
8608
  */
8582
8609
 
@@ -8612,13 +8639,13 @@ var ConfigurationErrorEnum;
8612
8639
  })(ConfigurationErrorEnum || (ConfigurationErrorEnum = {}));
8613
8640
  /**
8614
8641
  *
8615
-
8642
+
8616
8643
  Postgres
8617
-
8644
+
8618
8645
  Trino
8619
-
8646
+
8620
8647
  S3
8621
-
8648
+
8622
8649
  GisServer
8623
8650
  */
8624
8651
 
@@ -8633,15 +8660,15 @@ var DataSourceType;
8633
8660
  })(DataSourceType || (DataSourceType = {}));
8634
8661
  /**
8635
8662
  * Type of the error.
8636
-
8663
+
8637
8664
  ResourceLimitExceeded
8638
-
8665
+
8639
8666
  ResourceNotFound
8640
-
8667
+
8641
8668
  InternalError
8642
-
8669
+
8643
8670
  BadRequest
8644
-
8671
+
8645
8672
  DuplicateContent
8646
8673
  */
8647
8674
 
@@ -8692,9 +8719,9 @@ var ErrorType;
8692
8719
  })(ErrorType || (ErrorType = {}));
8693
8720
  /**
8694
8721
  * Type of the feature.
8695
-
8722
+
8696
8723
  Unknown
8697
-
8724
+
8698
8725
  GeometricFeature
8699
8726
  */
8700
8727
 
@@ -8707,11 +8734,11 @@ var FeatureType;
8707
8734
  })(FeatureType || (FeatureType = {}));
8708
8735
  /**
8709
8736
  * Sets whether font should be styled.
8710
-
8737
+
8711
8738
  normal
8712
-
8739
+
8713
8740
  oblique
8714
-
8741
+
8715
8742
  italic
8716
8743
  */
8717
8744
 
@@ -8725,27 +8752,27 @@ var FontStyle;
8725
8752
  })(FontStyle || (FontStyle = {}));
8726
8753
  /**
8727
8754
  * Specifies the weight (or boldness) of the font.
8728
-
8755
+
8729
8756
  Thin
8730
-
8757
+
8731
8758
  ExtraLight
8732
-
8759
+
8733
8760
  Light
8734
-
8761
+
8735
8762
  SemiLight
8736
-
8763
+
8737
8764
  Normal
8738
-
8765
+
8739
8766
  Medium
8740
-
8767
+
8741
8768
  DemiBold
8742
-
8769
+
8743
8770
  Bold
8744
-
8771
+
8745
8772
  ExtraBold
8746
-
8773
+
8747
8774
  Black
8748
-
8775
+
8749
8776
  ExtraBlack
8750
8777
  */
8751
8778
 
@@ -8767,17 +8794,17 @@ var FontWeight;
8767
8794
  })(FontWeight || (FontWeight = {}));
8768
8795
  /**
8769
8796
  *
8770
-
8797
+
8771
8798
  unknown
8772
-
8799
+
8773
8800
  point
8774
-
8801
+
8775
8802
  polyline
8776
-
8803
+
8777
8804
  multipolygon
8778
-
8805
+
8779
8806
  envelope
8780
-
8807
+
8781
8808
  multipoint
8782
8809
  */
8783
8810
 
@@ -8794,13 +8821,13 @@ var GeometryType;
8794
8821
  })(GeometryType || (GeometryType = {}));
8795
8822
  /**
8796
8823
  * Resource group.
8797
-
8824
+
8798
8825
  my
8799
-
8826
+
8800
8827
  role
8801
-
8828
+
8802
8829
  public
8803
-
8830
+
8804
8831
  all
8805
8832
  */
8806
8833
 
@@ -8815,13 +8842,13 @@ var Group;
8815
8842
  })(Group || (Group = {}));
8816
8843
  /**
8817
8844
  * Specifies the settings of line cap. This is applied to the beginning and end of each non-closed line.
8818
-
8845
+
8819
8846
  Flat
8820
-
8847
+
8821
8848
  Square
8822
-
8849
+
8823
8850
  Round
8824
-
8851
+
8825
8852
  Triangle
8826
8853
  */
8827
8854
 
@@ -8836,29 +8863,29 @@ var LineCapStyle;
8836
8863
  })(LineCapStyle || (LineCapStyle = {}));
8837
8864
  /**
8838
8865
  * Type of the line ending.
8839
-
8866
+
8840
8867
  none
8841
-
8868
+
8842
8869
  arrow
8843
-
8870
+
8844
8871
  filledArrow
8845
-
8872
+
8846
8873
  square
8847
-
8874
+
8848
8875
  filledSquare
8849
-
8876
+
8850
8877
  circle
8851
-
8878
+
8852
8879
  filledCircle
8853
-
8880
+
8854
8881
  diamond
8855
-
8882
+
8856
8883
  filledDiamond
8857
-
8884
+
8858
8885
  roundSquare
8859
-
8886
+
8860
8887
  filledRoundSquare
8861
-
8888
+
8862
8889
  svg
8863
8890
  */
8864
8891
 
@@ -8881,11 +8908,11 @@ var LineEndingType;
8881
8908
  })(LineEndingType || (LineEndingType = {}));
8882
8909
  /**
8883
8910
  * Specifies the settings of lines join. This is applied to corners in lines and rectangles.
8884
-
8911
+
8885
8912
  Miter
8886
-
8913
+
8887
8914
  Bevel
8888
-
8915
+
8889
8916
  Round
8890
8917
  */
8891
8918
 
@@ -8899,15 +8926,15 @@ var LineJoinType;
8899
8926
  })(LineJoinType || (LineJoinType = {}));
8900
8927
  /**
8901
8928
  *
8902
-
8929
+
8903
8930
  Unknown
8904
-
8931
+
8905
8932
  union
8906
-
8933
+
8907
8934
  intersection
8908
-
8935
+
8909
8936
  subtraction
8910
-
8937
+
8911
8938
  symDifference
8912
8939
  */
8913
8940
 
@@ -8923,11 +8950,11 @@ var Operation;
8923
8950
  })(Operation || (Operation = {}));
8924
8951
  /**
8925
8952
  * Filter exists resources by owner.
8926
-
8953
+
8927
8954
  My
8928
-
8955
+
8929
8956
  Shared
8930
-
8957
+
8931
8958
  Public
8932
8959
  */
8933
8960
 
@@ -8941,9 +8968,9 @@ var OwnerFilter;
8941
8968
  })(OwnerFilter || (OwnerFilter = {}));
8942
8969
  /**
8943
8970
  * Influences the y direction of the tile coordinates. The global-mercator (aka Spherical Mercator) profile is assumed.
8944
-
8971
+
8945
8972
  xyz
8946
-
8973
+
8947
8974
  tms
8948
8975
  */
8949
8976
 
@@ -8956,19 +8983,19 @@ var PbfSchema;
8956
8983
  })(PbfSchema || (PbfSchema = {}));
8957
8984
  /**
8958
8985
  *
8959
-
8986
+
8960
8987
  none
8961
-
8988
+
8962
8989
  configure
8963
-
8990
+
8964
8991
  write
8965
-
8992
+
8966
8993
  read
8967
-
8994
+
8968
8995
  read,configure
8969
-
8996
+
8970
8997
  read,write
8971
-
8998
+
8972
8999
  read,write,configure
8973
9000
  */
8974
9001
 
@@ -8986,19 +9013,19 @@ var Permissions;
8986
9013
  })(Permissions || (Permissions = {}));
8987
9014
  /**
8988
9015
  * Type of the authorization policy.
8989
-
9016
+
8990
9017
  Unknown
8991
-
9018
+
8992
9019
  CreateTable
8993
-
9020
+
8994
9021
  CreateLayer
8995
-
9022
+
8996
9023
  CreateProject
8997
-
9024
+
8998
9025
  MaxFeaturesInOneTable
8999
-
9026
+
9000
9027
  MaxObjectsToExport
9001
-
9028
+
9002
9029
  MaxUploadContentSize
9003
9030
  */
9004
9031
 
@@ -9016,11 +9043,11 @@ var PolicyType;
9016
9043
  })(PolicyType || (PolicyType = {}));
9017
9044
  /**
9018
9045
  * Stream quality.
9019
-
9046
+
9020
9047
  Low
9021
-
9048
+
9022
9049
  Medium
9023
-
9050
+
9024
9051
  High
9025
9052
  */
9026
9053
 
@@ -9034,15 +9061,15 @@ var Quality;
9034
9061
  })(Quality || (Quality = {}));
9035
9062
  /**
9036
9063
  * Resources types filter.
9037
-
9064
+
9038
9065
  RemoteTileService
9039
-
9066
+
9040
9067
  ProxyService
9041
-
9068
+
9042
9069
  PostgresLayerService
9043
-
9070
+
9044
9071
  QueryLayerService
9045
-
9072
+
9046
9073
  TileCatalogTable
9047
9074
  */
9048
9075
 
@@ -9058,19 +9085,19 @@ var ResourceSubTypeFilter;
9058
9085
  })(ResourceSubTypeFilter || (ResourceSubTypeFilter = {}));
9059
9086
  /**
9060
9087
  *
9061
-
9088
+
9062
9089
  Unknown
9063
-
9090
+
9064
9091
  table
9065
-
9092
+
9066
9093
  layer
9067
-
9094
+
9068
9095
  project
9069
-
9096
+
9070
9097
  file
9071
-
9098
+
9072
9099
  feature
9073
-
9100
+
9074
9101
  tag
9075
9102
  */
9076
9103
 
@@ -9088,21 +9115,21 @@ var ResourceType;
9088
9115
  })(ResourceType || (ResourceType = {}));
9089
9116
  /**
9090
9117
  * Resources types filter.
9091
-
9118
+
9092
9119
  Map
9093
-
9120
+
9094
9121
  Layer
9095
-
9122
+
9096
9123
  Table
9097
-
9124
+
9098
9125
  RasterCatalog
9099
-
9126
+
9100
9127
  ProxyService
9101
-
9128
+
9102
9129
  RemoteTileService
9103
-
9130
+
9104
9131
  File
9105
-
9132
+
9106
9133
  DataSource
9107
9134
  */
9108
9135
 
@@ -9129,9 +9156,9 @@ var ResourceTypeLink;
9129
9156
  })(ResourceTypeLink || (ResourceTypeLink = {}));
9130
9157
  /**
9131
9158
  * Response type.
9132
-
9159
+
9133
9160
  code
9134
-
9161
+
9135
9162
  token
9136
9163
  */
9137
9164
 
@@ -9144,21 +9171,21 @@ var ResponseType;
9144
9171
  })(ResponseType || (ResponseType = {}));
9145
9172
  /**
9146
9173
  * Status of the server task.
9147
-
9174
+
9148
9175
  None
9149
-
9176
+
9150
9177
  Scheduled
9151
-
9178
+
9152
9179
  Planning
9153
-
9180
+
9154
9181
  Executing
9155
-
9182
+
9156
9183
  Completed
9157
-
9184
+
9158
9185
  Failed
9159
-
9186
+
9160
9187
  Canceled
9161
-
9188
+
9162
9189
  Timeout
9163
9190
  */
9164
9191
 
@@ -9177,11 +9204,11 @@ var ServerTaskStatus;
9177
9204
  })(ServerTaskStatus || (ServerTaskStatus = {}));
9178
9205
  /**
9179
9206
  *
9180
-
9207
+
9181
9208
  Basic
9182
-
9209
+
9183
9210
  PreserveTopology
9184
-
9211
+
9185
9212
  VW
9186
9213
  */
9187
9214
 
@@ -9195,13 +9222,13 @@ var SimplifyType;
9195
9222
  })(SimplifyType || (SimplifyType = {}));
9196
9223
  /**
9197
9224
  *
9198
-
9225
+
9199
9226
  None
9200
-
9227
+
9201
9228
  Image
9202
-
9229
+
9203
9230
  PkkCode
9204
-
9231
+
9205
9232
  Attachments
9206
9233
  */
9207
9234
 
@@ -9216,9 +9243,9 @@ var StringSubType;
9216
9243
  })(StringSubType || (StringSubType = {}));
9217
9244
  /**
9218
9245
  * Task owner group.
9219
-
9246
+
9220
9247
  my
9221
-
9248
+
9222
9249
  all
9223
9250
  */
9224
9251
 
@@ -9231,13 +9258,13 @@ var TaskGroup;
9231
9258
  })(TaskGroup || (TaskGroup = {}));
9232
9259
  /**
9233
9260
  * Sets the horizontal alignment of text.
9234
-
9261
+
9235
9262
  right
9236
-
9263
+
9237
9264
  left
9238
-
9265
+
9239
9266
  center
9240
-
9267
+
9241
9268
  justified
9242
9269
  */
9243
9270
 
@@ -9252,11 +9279,11 @@ var TextAlignment;
9252
9279
  })(TextAlignment || (TextAlignment = {}));
9253
9280
  /**
9254
9281
  * Sets the vertical alignment of text.
9255
-
9282
+
9256
9283
  top
9257
-
9284
+
9258
9285
  bottom
9259
-
9286
+
9260
9287
  middle
9261
9288
  */
9262
9289