@evergis/api 3.0.193 → 3.0.194

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,6 +30,9 @@ 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
+ });
33
36
  return Constructor;
34
37
  }
35
38
 
@@ -63,6 +66,9 @@ function _inherits(subClass, superClass) {
63
66
  configurable: true
64
67
  }
65
68
  });
69
+ Object.defineProperty(subClass, "prototype", {
70
+ writable: false
71
+ });
66
72
  if (superClass) _setPrototypeOf(subClass, superClass);
67
73
  }
68
74
 
@@ -121,6 +127,8 @@ function _assertThisInitialized(self) {
121
127
  function _possibleConstructorReturn(self, call) {
122
128
  if (call && (typeof call === "object" || typeof call === "function")) {
123
129
  return call;
130
+ } else if (call !== void 0) {
131
+ throw new TypeError("Derived constructors may only return object or undefined");
124
132
  }
125
133
 
126
134
  return _assertThisInitialized(self);
@@ -154,7 +162,7 @@ function _superPropBase(object, property) {
154
162
  return object;
155
163
  }
156
164
 
157
- function _get(target, property, receiver) {
165
+ function _get() {
158
166
  if (typeof Reflect !== "undefined" && Reflect.get) {
159
167
  _get = Reflect.get;
160
168
  } else {
@@ -165,14 +173,14 @@ function _get(target, property, receiver) {
165
173
  var desc = Object.getOwnPropertyDescriptor(base, property);
166
174
 
167
175
  if (desc.get) {
168
- return desc.get.call(receiver);
176
+ return desc.get.call(arguments.length < 3 ? target : receiver);
169
177
  }
170
178
 
171
179
  return desc.value;
172
180
  };
173
181
  }
174
182
 
175
- return _get(target, property, receiver || target);
183
+ return _get.apply(this, arguments);
176
184
  }
177
185
 
178
186
  let HttpClient = /*#__PURE__*/function () {
@@ -745,7 +753,7 @@ let CatalogService = /*#__PURE__*/function (_Service) {
745
753
  }, {
746
754
  key: "setPermissions1",
747
755
  value: function setPermissions1(resourceId, data) {
748
- return this.http.put("/resources/" + resourceId + "/permissions", data).json();
756
+ return this.http.put("/resources/" + resourceId + "/permissions", data).then(() => {});
749
757
  }
750
758
  /**
751
759
  * No description
@@ -761,7 +769,7 @@ let CatalogService = /*#__PURE__*/function (_Service) {
761
769
  }, {
762
770
  key: "setPermissions",
763
771
  value: function setPermissions(data) {
764
- return this.http.put("/resources/permissions", data).json();
772
+ return this.http.put("/resources/permissions", data).then(() => {});
765
773
  }
766
774
  /**
767
775
  * No description
@@ -1190,8 +1198,8 @@ let AccountService = /*#__PURE__*/function (_Service) {
1190
1198
 
1191
1199
  }, {
1192
1200
  key: "authenticate",
1193
- value: function authenticate(data) {
1194
- return this.http.post("/account/login", data).text();
1201
+ value: function authenticate(query, data) {
1202
+ return this.http.post("/account/login", data, query).text();
1195
1203
  }
1196
1204
  /**
1197
1205
  * No description
@@ -1241,6 +1249,54 @@ let AccountService = /*#__PURE__*/function (_Service) {
1241
1249
  value: function ldapLogin(data) {
1242
1250
  return this.http.post("/account/external/login/ldap", data).then(() => {});
1243
1251
  }
1252
+ /**
1253
+ * No description
1254
+ *
1255
+ * @tags Account
1256
+ * @name RegisterClient
1257
+ * @operationId AccountController_RegisterClient
1258
+ * @summary Register new client.
1259
+ * @request POST:/account/oauth2/client
1260
+ * @response `200` OK
1261
+ */
1262
+
1263
+ }, {
1264
+ key: "registerClient",
1265
+ value: function registerClient(data) {
1266
+ return this.http.post("/account/oauth2/client", data).json();
1267
+ }
1268
+ /**
1269
+ * No description
1270
+ *
1271
+ * @tags Account
1272
+ * @name UnbindClient
1273
+ * @operationId AccountController_UnbindClient
1274
+ * @summary Unbind client with id.
1275
+ * @request DELETE:/account/oauth2/client/{clientId}
1276
+ * @response `200` OK
1277
+ */
1278
+
1279
+ }, {
1280
+ key: "unbindClient",
1281
+ value: function unbindClient(clientId) {
1282
+ return this.http.delete("/account/oauth2/client/" + clientId, null).then(() => {});
1283
+ }
1284
+ /**
1285
+ * No description
1286
+ *
1287
+ * @tags Account
1288
+ * @name Token
1289
+ * @operationId AccountController_Token
1290
+ * @summary Get access token request.
1291
+ * @request POST:/account/oauth2/token
1292
+ * @response `200` OK
1293
+ */
1294
+
1295
+ }, {
1296
+ key: "token",
1297
+ value: function token(data) {
1298
+ return this.http.post("/account/oauth2/token", data).json();
1299
+ }
1244
1300
  /**
1245
1301
  * No description
1246
1302
  *
@@ -1415,9 +1471,13 @@ let Account = /*#__PURE__*/function (_AccountService) {
1415
1471
 
1416
1472
  _createClass(Account, [{
1417
1473
  key: "login",
1418
- value: async function login(params) {
1474
+ value: async function login(params, authParams) {
1475
+ if (authParams === void 0) {
1476
+ authParams = {};
1477
+ }
1478
+
1419
1479
  if (params) {
1420
- await _get(_getPrototypeOf(Account.prototype), "authenticate", this).call(this, params);
1480
+ await _get(_getPrototypeOf(Account.prototype), "authenticate", this).call(this, authParams, params);
1421
1481
  }
1422
1482
  }
1423
1483
  }, {
@@ -5018,8 +5078,8 @@ let Notification = /*#__PURE__*/function (_NotificationService) {
5018
5078
  || event.code === 4002
5019
5079
  /* InvalidSession */
5020
5080
  ) {
5021
- _this.connectStatus = ConnectionStatus.SessionClosed;
5022
- } else if (_this.reconnectTries < _this.MAX_WS_RECONNECT_TRIES) {
5081
+ _this.connectStatus = ConnectionStatus.SessionClosed;
5082
+ } else if (_this.reconnectTries < _this.MAX_WS_RECONNECT_TRIES) {
5023
5083
  _this.connectStatus = ConnectionStatus.Break;
5024
5084
  _this.reconnectTries++;
5025
5085
 
@@ -5853,12 +5913,12 @@ let Resources = /*#__PURE__*/function () {
5853
5913
  }, {
5854
5914
  key: "getDependentNames",
5855
5915
  value: function getDependentNames(deps, depType) {
5856
- return deps.filter((_ref) => {
5916
+ return deps.filter(_ref => {
5857
5917
  let {
5858
5918
  type
5859
5919
  } = _ref;
5860
5920
  return type === depType;
5861
- }).map((_ref2) => {
5921
+ }).map(_ref2 => {
5862
5922
  let {
5863
5923
  name
5864
5924
  } = _ref2;
@@ -6314,7 +6374,7 @@ let Scheduler = /*#__PURE__*/function (_SchedulerService) {
6314
6374
  const taskProgress = await this.getTaskProgress(id);
6315
6375
  this.resolveTaskStatus(taskProgress, resolve, reject);
6316
6376
 
6317
- const taskResultCallback = async (_ref) => {
6377
+ const taskResultCallback = async _ref => {
6318
6378
  let {
6319
6379
  data
6320
6380
  } = _ref;
@@ -7541,6 +7601,7 @@ let Api = /*#__PURE__*/function (_EventEmitter) {
7541
7601
  value: async function init(_ref2) {
7542
7602
  let {
7543
7603
  authParams,
7604
+ authQueryParams,
7544
7605
  connectWs,
7545
7606
  initScheduler,
7546
7607
  fetchSettings,
@@ -7548,7 +7609,7 @@ let Api = /*#__PURE__*/function (_EventEmitter) {
7548
7609
  } = _ref2;
7549
7610
 
7550
7611
  try {
7551
- await this.account.login(authParams);
7612
+ await this.account.login(authParams, authQueryParams);
7552
7613
 
7553
7614
  if (fetchUser) {
7554
7615
  await this.account.fetchCurrentUser();
@@ -8009,47 +8070,47 @@ function isFeatureLayer(layer) {
8009
8070
 
8010
8071
  /**
8011
8072
  *
8012
-
8073
+
8013
8074
  None
8014
-
8075
+
8015
8076
  Array
8016
-
8077
+
8017
8078
  Min
8018
-
8079
+
8019
8080
  Max
8020
-
8081
+
8021
8082
  Avg
8022
-
8083
+
8023
8084
  Sum
8024
-
8085
+
8025
8086
  Extent
8026
-
8087
+
8027
8088
  H3
8028
-
8089
+
8029
8090
  Count
8030
-
8091
+
8031
8092
  TotalCount
8032
-
8093
+
8033
8094
  DistinctCount
8034
-
8095
+
8035
8096
  First
8036
-
8097
+
8037
8098
  Last
8038
-
8099
+
8039
8100
  Median
8040
-
8101
+
8041
8102
  Mod
8042
-
8103
+
8043
8104
  StdDeviation
8044
-
8105
+
8045
8106
  SumOfProduct
8046
-
8107
+
8047
8108
  OnlyValue
8048
-
8109
+
8049
8110
  WeightedAvg
8050
-
8111
+
8051
8112
  DensityIndicators
8052
-
8113
+
8053
8114
  DividedSum
8054
8115
  */
8055
8116
  var AggregationFunction;
@@ -8079,13 +8140,13 @@ var AggregationFunction;
8079
8140
  })(AggregationFunction || (AggregationFunction = {}));
8080
8141
  /**
8081
8142
  *
8082
-
8143
+
8083
8144
  None
8084
-
8145
+
8085
8146
  SelectFromHandBook
8086
-
8147
+
8087
8148
  SelectFromRange
8088
-
8149
+
8089
8150
  ViewHandBook
8090
8151
  */
8091
8152
 
@@ -8100,31 +8161,31 @@ var AttributeSelectorType;
8100
8161
  })(AttributeSelectorType || (AttributeSelectorType = {}));
8101
8162
  /**
8102
8163
  *
8103
-
8164
+
8104
8165
  Unknown
8105
-
8166
+
8106
8167
  String
8107
-
8168
+
8108
8169
  Int32
8109
-
8170
+
8110
8171
  Int64
8111
-
8172
+
8112
8173
  Double
8113
-
8174
+
8114
8175
  DateTime
8115
-
8176
+
8116
8177
  Boolean
8117
-
8178
+
8118
8179
  Point
8119
-
8180
+
8120
8181
  Polyline
8121
-
8182
+
8122
8183
  MultiPolygon
8123
-
8184
+
8124
8185
  Multipoint
8125
-
8186
+
8126
8187
  H3Index
8127
-
8188
+
8128
8189
  Json
8129
8190
  */
8130
8191
 
@@ -8147,18 +8208,35 @@ var AttributeType;
8147
8208
  AttributeType["Json"] = "Json";
8148
8209
  })(AttributeType || (AttributeType = {}));
8149
8210
  /**
8150
- *
8211
+ * An authorization grant is a credential representing the resource
8212
+ owner's authorization (to access its protected resources) used by the
8213
+ client to obtain an access token.
8214
+
8215
+ authorization_code
8216
+
8217
+ refresh_token
8218
+ */
8151
8219
 
8152
- None
8153
8220
 
8154
- Map
8221
+ var AuthorizationGrant;
8155
8222
 
8223
+ (function (AuthorizationGrant) {
8224
+ AuthorizationGrant["AuthorizationCode"] = "authorization_code";
8225
+ AuthorizationGrant["RefreshToken"] = "refresh_token";
8226
+ })(AuthorizationGrant || (AuthorizationGrant = {}));
8227
+ /**
8228
+ *
8229
+
8230
+ None
8231
+
8232
+ Map
8233
+
8156
8234
  Layer
8157
-
8235
+
8158
8236
  Table
8159
-
8237
+
8160
8238
  File
8161
-
8239
+
8162
8240
  TaskPrototype
8163
8241
  */
8164
8242
 
@@ -8175,15 +8253,15 @@ var CatalogResourceType;
8175
8253
  })(CatalogResourceType || (CatalogResourceType = {}));
8176
8254
  /**
8177
8255
  * Describes classification methods.
8178
-
8256
+
8179
8257
  none
8180
-
8258
+
8181
8259
  naturalBreaks
8182
-
8260
+
8183
8261
  equalInterval
8184
-
8262
+
8185
8263
  quantile
8186
-
8264
+
8187
8265
  unique
8188
8266
  */
8189
8267
 
@@ -8199,11 +8277,11 @@ var ClassificationType;
8199
8277
  })(ClassificationType || (ClassificationType = {}));
8200
8278
  /**
8201
8279
  *
8202
-
8280
+
8203
8281
  decimal
8204
-
8282
+
8205
8283
  dateTime
8206
-
8284
+
8207
8285
  text
8208
8286
  */
8209
8287
 
@@ -8217,55 +8295,55 @@ var ClassifyAttributeType;
8217
8295
  })(ClassifyAttributeType || (ClassifyAttributeType = {}));
8218
8296
  /**
8219
8297
  *
8220
-
8298
+
8221
8299
  Unknown
8222
-
8300
+
8223
8301
  SerializeError
8224
-
8302
+
8225
8303
  InvalidDataService
8226
-
8304
+
8227
8305
  InvalidConfiguration
8228
-
8306
+
8229
8307
  InvalidDataServiceName
8230
-
8308
+
8231
8309
  InvalidTableName
8232
-
8310
+
8233
8311
  InvalidLayerName
8234
-
8312
+
8235
8313
  ResourceNotFound
8236
-
8314
+
8237
8315
  InvalidCondition
8238
-
8316
+
8239
8317
  InvalidAttributes
8240
-
8318
+
8241
8319
  InvalidIdAttribute
8242
-
8320
+
8243
8321
  InvalidGeometryAttribute
8244
-
8322
+
8245
8323
  InvalidGeometryAttributeType
8246
-
8324
+
8247
8325
  InvalidColumnName
8248
-
8326
+
8249
8327
  InvalidIdColumnSettings
8250
-
8328
+
8251
8329
  ColumnNotExistsInTable
8252
-
8330
+
8253
8331
  InvalidStyle
8254
-
8332
+
8255
8333
  InvalidLayerType
8256
-
8334
+
8257
8335
  ColumnLoadingError
8258
-
8336
+
8259
8337
  InvalidAttributeFormat
8260
-
8338
+
8261
8339
  DataSourceNotFound
8262
-
8340
+
8263
8341
  DuplicateColumns
8264
-
8342
+
8265
8343
  DuplicateAttributes
8266
-
8344
+
8267
8345
  TableWithoutColumns
8268
-
8346
+
8269
8347
  InvalidTableReferenceConfiguration
8270
8348
  */
8271
8349
 
@@ -8301,15 +8379,15 @@ var ConfigurationErrorEnum;
8301
8379
  })(ConfigurationErrorEnum || (ConfigurationErrorEnum = {}));
8302
8380
  /**
8303
8381
  * Type of the error.
8304
-
8382
+
8305
8383
  ResourceLimitExceeded
8306
-
8384
+
8307
8385
  ResourceNotFound
8308
-
8386
+
8309
8387
  InternalError
8310
-
8388
+
8311
8389
  BadRequest
8312
-
8390
+
8313
8391
  DuplicateContent
8314
8392
  */
8315
8393
 
@@ -8360,9 +8438,9 @@ var ErrorType;
8360
8438
  })(ErrorType || (ErrorType = {}));
8361
8439
  /**
8362
8440
  * Type of the feature.
8363
-
8441
+
8364
8442
  Unknown
8365
-
8443
+
8366
8444
  GeometricFeature
8367
8445
  */
8368
8446
 
@@ -8375,11 +8453,11 @@ var FeatureType;
8375
8453
  })(FeatureType || (FeatureType = {}));
8376
8454
  /**
8377
8455
  * Sets whether font should be styled.
8378
-
8456
+
8379
8457
  normal
8380
-
8458
+
8381
8459
  oblique
8382
-
8460
+
8383
8461
  italic
8384
8462
  */
8385
8463
 
@@ -8393,27 +8471,27 @@ var FontStyle;
8393
8471
  })(FontStyle || (FontStyle = {}));
8394
8472
  /**
8395
8473
  * Specifies the weight (or boldness) of the font.
8396
-
8474
+
8397
8475
  Thin
8398
-
8476
+
8399
8477
  ExtraLight
8400
-
8478
+
8401
8479
  Light
8402
-
8480
+
8403
8481
  SemiLight
8404
-
8482
+
8405
8483
  Normal
8406
-
8484
+
8407
8485
  Medium
8408
-
8486
+
8409
8487
  DemiBold
8410
-
8488
+
8411
8489
  Bold
8412
-
8490
+
8413
8491
  ExtraBold
8414
-
8492
+
8415
8493
  Black
8416
-
8494
+
8417
8495
  ExtraBlack
8418
8496
  */
8419
8497
 
@@ -8435,17 +8513,17 @@ var FontWeight;
8435
8513
  })(FontWeight || (FontWeight = {}));
8436
8514
  /**
8437
8515
  *
8438
-
8516
+
8439
8517
  unknown
8440
-
8518
+
8441
8519
  point
8442
-
8520
+
8443
8521
  polyline
8444
-
8522
+
8445
8523
  multipolygon
8446
-
8524
+
8447
8525
  envelope
8448
-
8526
+
8449
8527
  multipoint
8450
8528
  */
8451
8529
 
@@ -8462,13 +8540,13 @@ var GeometryType;
8462
8540
  })(GeometryType || (GeometryType = {}));
8463
8541
  /**
8464
8542
  * Resource group.
8465
-
8543
+
8466
8544
  my
8467
-
8545
+
8468
8546
  role
8469
-
8547
+
8470
8548
  public
8471
-
8549
+
8472
8550
  all
8473
8551
  */
8474
8552
 
@@ -8483,13 +8561,13 @@ var Group;
8483
8561
  })(Group || (Group = {}));
8484
8562
  /**
8485
8563
  * Specifies the settings of line cap. This is applied to the beginning and end of each non-closed line.
8486
-
8564
+
8487
8565
  Flat
8488
-
8566
+
8489
8567
  Square
8490
-
8568
+
8491
8569
  Round
8492
-
8570
+
8493
8571
  Triangle
8494
8572
  */
8495
8573
 
@@ -8504,29 +8582,29 @@ var LineCapStyle;
8504
8582
  })(LineCapStyle || (LineCapStyle = {}));
8505
8583
  /**
8506
8584
  * Type of the line ending.
8507
-
8585
+
8508
8586
  none
8509
-
8587
+
8510
8588
  arrow
8511
-
8589
+
8512
8590
  filledArrow
8513
-
8591
+
8514
8592
  square
8515
-
8593
+
8516
8594
  filledSquare
8517
-
8595
+
8518
8596
  circle
8519
-
8597
+
8520
8598
  filledCircle
8521
-
8599
+
8522
8600
  diamond
8523
-
8601
+
8524
8602
  filledDiamond
8525
-
8603
+
8526
8604
  roundSquare
8527
-
8605
+
8528
8606
  filledRoundSquare
8529
-
8607
+
8530
8608
  svg
8531
8609
  */
8532
8610
 
@@ -8549,11 +8627,11 @@ var LineEndingType;
8549
8627
  })(LineEndingType || (LineEndingType = {}));
8550
8628
  /**
8551
8629
  * Specifies the settings of lines join. This is applied to corners in lines and rectangles.
8552
-
8630
+
8553
8631
  Miter
8554
-
8632
+
8555
8633
  Bevel
8556
-
8634
+
8557
8635
  Round
8558
8636
  */
8559
8637
 
@@ -8567,15 +8645,15 @@ var LineJoinType;
8567
8645
  })(LineJoinType || (LineJoinType = {}));
8568
8646
  /**
8569
8647
  *
8570
-
8648
+
8571
8649
  Unknown
8572
-
8650
+
8573
8651
  union
8574
-
8652
+
8575
8653
  intersection
8576
-
8654
+
8577
8655
  subtraction
8578
-
8656
+
8579
8657
  symDifference
8580
8658
  */
8581
8659
 
@@ -8591,12 +8669,14 @@ var Operation;
8591
8669
  })(Operation || (Operation = {}));
8592
8670
  /**
8593
8671
  *
8594
-
8672
+
8595
8673
  My
8596
-
8674
+
8597
8675
  Shared
8598
-
8676
+
8599
8677
  Public
8678
+
8679
+ All
8600
8680
  */
8601
8681
 
8602
8682
 
@@ -8606,12 +8686,13 @@ var OwnerFilter;
8606
8686
  OwnerFilter["My"] = "My";
8607
8687
  OwnerFilter["Shared"] = "Shared";
8608
8688
  OwnerFilter["Public"] = "Public";
8689
+ OwnerFilter["All"] = "All";
8609
8690
  })(OwnerFilter || (OwnerFilter = {}));
8610
8691
  /**
8611
8692
  * Influences the y direction of the tile coordinates. The global-mercator (aka Spherical Mercator) profile is assumed.
8612
-
8693
+
8613
8694
  xyz
8614
-
8695
+
8615
8696
  tms
8616
8697
  */
8617
8698
 
@@ -8624,19 +8705,19 @@ var PbfSchema;
8624
8705
  })(PbfSchema || (PbfSchema = {}));
8625
8706
  /**
8626
8707
  *
8627
-
8708
+
8628
8709
  none
8629
-
8710
+
8630
8711
  configure
8631
-
8712
+
8632
8713
  write
8633
-
8714
+
8634
8715
  read
8635
-
8716
+
8636
8717
  read,configure
8637
-
8718
+
8638
8719
  read,write
8639
-
8720
+
8640
8721
  read,write,configure
8641
8722
  */
8642
8723
 
@@ -8654,19 +8735,19 @@ var Permissions;
8654
8735
  })(Permissions || (Permissions = {}));
8655
8736
  /**
8656
8737
  * Type of the authorization policy.
8657
-
8738
+
8658
8739
  Unknown
8659
-
8740
+
8660
8741
  CreateTable
8661
-
8742
+
8662
8743
  CreateLayer
8663
-
8744
+
8664
8745
  CreateProject
8665
-
8746
+
8666
8747
  MaxFeaturesInOneTable
8667
-
8748
+
8668
8749
  MaxObjectsToExport
8669
-
8750
+
8670
8751
  MaxUploadContentSize
8671
8752
  */
8672
8753
 
@@ -8684,11 +8765,11 @@ var PolicyType;
8684
8765
  })(PolicyType || (PolicyType = {}));
8685
8766
  /**
8686
8767
  * Stream quality.
8687
-
8768
+
8688
8769
  Low
8689
-
8770
+
8690
8771
  Medium
8691
-
8772
+
8692
8773
  High
8693
8774
  */
8694
8775
 
@@ -8702,19 +8783,19 @@ var Quality;
8702
8783
  })(Quality || (Quality = {}));
8703
8784
  /**
8704
8785
  *
8705
-
8786
+
8706
8787
  Unknown
8707
-
8788
+
8708
8789
  table
8709
-
8790
+
8710
8791
  layer
8711
-
8792
+
8712
8793
  project
8713
-
8794
+
8714
8795
  file
8715
-
8796
+
8716
8797
  feature
8717
-
8798
+
8718
8799
  tag
8719
8800
  */
8720
8801
 
@@ -8739,22 +8820,37 @@ var ResourceTypeLink;
8739
8820
  ResourceTypeLink["Project"] = "projects";
8740
8821
  })(ResourceTypeLink || (ResourceTypeLink = {}));
8741
8822
  /**
8742
- * Status of the server task.
8823
+ * Response type.
8824
+
8825
+ code
8826
+
8827
+ token
8828
+ */
8743
8829
 
8744
- None
8745
8830
 
8746
- Scheduled
8831
+ var ResponseType;
8747
8832
 
8833
+ (function (ResponseType) {
8834
+ ResponseType["Code"] = "code";
8835
+ ResponseType["Token"] = "token";
8836
+ })(ResponseType || (ResponseType = {}));
8837
+ /**
8838
+ * Status of the server task.
8839
+
8840
+ None
8841
+
8842
+ Scheduled
8843
+
8748
8844
  Planning
8749
-
8845
+
8750
8846
  Executing
8751
-
8847
+
8752
8848
  Completed
8753
-
8849
+
8754
8850
  Failed
8755
-
8851
+
8756
8852
  Canceled
8757
-
8853
+
8758
8854
  Timeout
8759
8855
  */
8760
8856
 
@@ -8773,11 +8869,11 @@ var ServerTaskStatus;
8773
8869
  })(ServerTaskStatus || (ServerTaskStatus = {}));
8774
8870
  /**
8775
8871
  *
8776
-
8872
+
8777
8873
  Basic
8778
-
8874
+
8779
8875
  PreserveTopology
8780
-
8876
+
8781
8877
  VW
8782
8878
  */
8783
8879
 
@@ -8791,13 +8887,13 @@ var SimplifyType;
8791
8887
  })(SimplifyType || (SimplifyType = {}));
8792
8888
  /**
8793
8889
  *
8794
-
8890
+
8795
8891
  None
8796
-
8892
+
8797
8893
  Image
8798
-
8894
+
8799
8895
  PkkCode
8800
-
8896
+
8801
8897
  Attachments
8802
8898
  */
8803
8899
 
@@ -8812,9 +8908,9 @@ var StringSubType;
8812
8908
  })(StringSubType || (StringSubType = {}));
8813
8909
  /**
8814
8910
  * Task owner group.
8815
-
8911
+
8816
8912
  my
8817
-
8913
+
8818
8914
  all
8819
8915
  */
8820
8916
 
@@ -8827,13 +8923,13 @@ var TaskGroup;
8827
8923
  })(TaskGroup || (TaskGroup = {}));
8828
8924
  /**
8829
8925
  * Sets the horizontal alignment of text.
8830
-
8926
+
8831
8927
  right
8832
-
8928
+
8833
8929
  left
8834
-
8930
+
8835
8931
  center
8836
-
8932
+
8837
8933
  justified
8838
8934
  */
8839
8935
 
@@ -8848,11 +8944,11 @@ var TextAlignment;
8848
8944
  })(TextAlignment || (TextAlignment = {}));
8849
8945
  /**
8850
8946
  * Sets the vertical alignment of text.
8851
-
8947
+
8852
8948
  top
8853
-
8949
+
8854
8950
  bottom
8855
-
8951
+
8856
8952
  middle
8857
8953
  */
8858
8954
 
@@ -8865,5 +8961,5 @@ var TextVerticalAlignment;
8865
8961
  TextVerticalAlignment["Middle"] = "middle";
8866
8962
  })(TextVerticalAlignment || (TextVerticalAlignment = {}));
8867
8963
 
8868
- export { Account, AccountPreview, AggregationFunction, Api, ApiEvent, AttributeSelectorType, AttributeType, BulkOperations, Cameras, CatalogResourceType, ClassificationType, ClassifyAttributeType, ClientSettings, ConfigurationErrorEnum, ConnectionStatus, DependencyType, Eql, ErrorDetailsType, ErrorReason, ErrorType, EvergisDynamicLayer, EvergisTileLayer, External, FeatureType, Feedback, FileUpload, Filters, FontStyle, FontWeight, GEOCODE_PROVIDER, General, Geocode, GeometryType, Group, HttpClient, IceRouter, Import, Layers, LayersManager, LineCapStyle, LineEndingType, LineJoinType, Names, Namespace, Notification, NotificationEvent, Operation, OwnerFilter, PbfSchema, Permissions, PolicyType, PortalSettings, Print, Projects, Quality, ResourceCatalog, ResourceSeparator, ResourceType, ResourceTypeLink, Resources, Scheduler, Security, ServerTaskStatus, SimplifyType, SpatialProcessor, Statistic, StringSubType, Styles, Tables, TaskGroup, TextAlignment, TextVerticalAlignment, Tools, UrlPath, VectorTiles, addSubDomainToLocation, errorHandler, formDataFromFile, generateId, isEvergisDynamicLayer, isEvergisTileLayer, isFeatureLayer, isHTTPError, isHandledError, isLayer, isProjectContentItems, isString, isTileLayerService, promiseAllIgnoreErrors, stripUselessSlashes, toFormData, unique };
8964
+ export { Account, AccountPreview, AggregationFunction, Api, ApiEvent, AttributeSelectorType, AttributeType, AuthorizationGrant, BulkOperations, Cameras, CatalogResourceType, ClassificationType, ClassifyAttributeType, ClientSettings, ConfigurationErrorEnum, ConnectionStatus, DependencyType, Eql, ErrorDetailsType, ErrorReason, ErrorType, EvergisDynamicLayer, EvergisTileLayer, External, FeatureType, Feedback, FileUpload, Filters, FontStyle, FontWeight, GEOCODE_PROVIDER, General, Geocode, GeometryType, Group, HttpClient, IceRouter, Import, Layers, LayersManager, LineCapStyle, LineEndingType, LineJoinType, Names, Namespace, Notification, NotificationEvent, Operation, OwnerFilter, PbfSchema, Permissions, PolicyType, PortalSettings, Print, Projects, Quality, ResourceCatalog, ResourceSeparator, ResourceType, ResourceTypeLink, Resources, ResponseType, Scheduler, Security, ServerTaskStatus, SimplifyType, SpatialProcessor, Statistic, StringSubType, Styles, Tables, TaskGroup, TextAlignment, TextVerticalAlignment, Tools, UrlPath, VectorTiles, addSubDomainToLocation, errorHandler, formDataFromFile, generateId, isEvergisDynamicLayer, isEvergisTileLayer, isFeatureLayer, isHTTPError, isHandledError, isLayer, isProjectContentItems, isString, isTileLayerService, promiseAllIgnoreErrors, stripUselessSlashes, toFormData, unique };
8869
8965
  //# sourceMappingURL=api.esm.js.map