@evergis/api 4.0.7 → 4.0.9

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,6 +24,9 @@ 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
+ });
27
30
  return Constructor;
28
31
  }
29
32
 
@@ -57,6 +60,9 @@ function _inherits(subClass, superClass) {
57
60
  configurable: true
58
61
  }
59
62
  });
63
+ Object.defineProperty(subClass, "prototype", {
64
+ writable: false
65
+ });
60
66
  if (superClass) _setPrototypeOf(subClass, superClass);
61
67
  }
62
68
 
@@ -115,6 +121,8 @@ function _assertThisInitialized(self) {
115
121
  function _possibleConstructorReturn(self, call) {
116
122
  if (call && (typeof call === "object" || typeof call === "function")) {
117
123
  return call;
124
+ } else if (call !== void 0) {
125
+ throw new TypeError("Derived constructors may only return object or undefined");
118
126
  }
119
127
 
120
128
  return _assertThisInitialized(self);
@@ -148,7 +156,7 @@ function _superPropBase(object, property) {
148
156
  return object;
149
157
  }
150
158
 
151
- function _get(target, property, receiver) {
159
+ function _get() {
152
160
  if (typeof Reflect !== "undefined" && Reflect.get) {
153
161
  _get = Reflect.get;
154
162
  } else {
@@ -159,14 +167,14 @@ function _get(target, property, receiver) {
159
167
  var desc = Object.getOwnPropertyDescriptor(base, property);
160
168
 
161
169
  if (desc.get) {
162
- return desc.get.call(receiver);
170
+ return desc.get.call(arguments.length < 3 ? target : receiver);
163
171
  }
164
172
 
165
173
  return desc.value;
166
174
  };
167
175
  }
168
176
 
169
- return _get(target, property, receiver || target);
177
+ return _get.apply(this, arguments);
170
178
  }
171
179
 
172
180
  const API_USER_INFO_KEY = "@evergis/user-info";
@@ -2229,16 +2237,16 @@ let EqlService = /*#__PURE__*/function (_Service) {
2229
2237
  * No description
2230
2238
  *
2231
2239
  * @tags Eql
2232
- * @name GetQueryResult
2233
- * @operationId EqlController_GetQueryResult
2240
+ * @name GetPagedQueryResult
2241
+ * @operationId EqlController_GetPagedQueryResult
2234
2242
  * @summary Perform resources set acl access batch operation.
2235
2243
  * @request POST:/eql/query
2236
2244
  * @response `200` OK
2237
2245
  */
2238
2246
 
2239
2247
  }, {
2240
- key: "getQueryResult",
2241
- value: function getQueryResult(data) {
2248
+ key: "getPagedQueryResult",
2249
+ value: function getPagedQueryResult(data) {
2242
2250
  return this.http.post("/eql/query", data).json();
2243
2251
  }
2244
2252
  /**
@@ -4729,8 +4737,8 @@ let Notification = /*#__PURE__*/function (_NotificationService) {
4729
4737
  || event.code === 4002
4730
4738
  /* InvalidSession */
4731
4739
  ) {
4732
- _this.connectStatus = ConnectionStatus.SessionClosed;
4733
- } else if (_this.reconnectTries < _this.MAX_WS_RECONNECT_TRIES) {
4740
+ _this.connectStatus = ConnectionStatus.SessionClosed;
4741
+ } else if (_this.reconnectTries < _this.MAX_WS_RECONNECT_TRIES) {
4734
4742
  _this.connectStatus = ConnectionStatus.Break;
4735
4743
  _this.reconnectTries++;
4736
4744
 
@@ -5791,12 +5799,12 @@ let Resources = /*#__PURE__*/function () {
5791
5799
  }, {
5792
5800
  key: "getDependentNames",
5793
5801
  value: function getDependentNames(deps, depType) {
5794
- return deps.filter((_ref) => {
5802
+ return deps.filter(_ref => {
5795
5803
  let {
5796
5804
  type
5797
5805
  } = _ref;
5798
5806
  return type === depType;
5799
- }).map((_ref2) => {
5807
+ }).map(_ref2 => {
5800
5808
  let {
5801
5809
  name
5802
5810
  } = _ref2;
@@ -6868,7 +6876,7 @@ let Api = /*#__PURE__*/function (_EventEmitter) {
6868
6876
  (_request$headers = request.headers) == null ? void 0 : _request$headers.set("Authorization", "Bearer " + (token || ""));
6869
6877
  }
6870
6878
  }, ...((_hooks$beforeRequest = hooks == null ? void 0 : hooks.beforeRequest) != null ? _hooks$beforeRequest : [])],
6871
- beforeRetry: [async (_ref2) => {
6879
+ beforeRetry: [async _ref2 => {
6872
6880
  let {
6873
6881
  request,
6874
6882
  error,
@@ -7076,47 +7084,47 @@ let Api = /*#__PURE__*/function (_EventEmitter) {
7076
7084
 
7077
7085
  /**
7078
7086
  *
7079
-
7087
+
7080
7088
  None
7081
-
7089
+
7082
7090
  Array
7083
-
7091
+
7084
7092
  Min
7085
-
7093
+
7086
7094
  Max
7087
-
7095
+
7088
7096
  Avg
7089
-
7097
+
7090
7098
  Sum
7091
-
7099
+
7092
7100
  Extent
7093
-
7101
+
7094
7102
  H3
7095
-
7103
+
7096
7104
  Count
7097
-
7105
+
7098
7106
  TotalCount
7099
-
7107
+
7100
7108
  DistinctCount
7101
-
7109
+
7102
7110
  First
7103
-
7111
+
7104
7112
  Last
7105
-
7113
+
7106
7114
  Median
7107
-
7115
+
7108
7116
  Mod
7109
-
7117
+
7110
7118
  StdDeviation
7111
-
7119
+
7112
7120
  SumOfProduct
7113
-
7121
+
7114
7122
  OnlyValue
7115
-
7123
+
7116
7124
  WeightedAvg
7117
-
7125
+
7118
7126
  DensityIndicators
7119
-
7127
+
7120
7128
  DividedSum
7121
7129
  */
7122
7130
  var AggregationFunction;
@@ -7146,13 +7154,13 @@ var AggregationFunction;
7146
7154
  })(AggregationFunction || (AggregationFunction = {}));
7147
7155
  /**
7148
7156
  *
7149
-
7157
+
7150
7158
  Unknown
7151
-
7159
+
7152
7160
  Icon
7153
-
7161
+
7154
7162
  PNG
7155
-
7163
+
7156
7164
  SVG
7157
7165
  */
7158
7166
 
@@ -7167,13 +7175,13 @@ var AttributeIconType;
7167
7175
  })(AttributeIconType || (AttributeIconType = {}));
7168
7176
  /**
7169
7177
  *
7170
-
7178
+
7171
7179
  None
7172
-
7180
+
7173
7181
  SelectFromHandBook
7174
-
7182
+
7175
7183
  SelectFromRange
7176
-
7184
+
7177
7185
  ViewHandBook
7178
7186
  */
7179
7187
 
@@ -7188,31 +7196,31 @@ var AttributeSelectorType;
7188
7196
  })(AttributeSelectorType || (AttributeSelectorType = {}));
7189
7197
  /**
7190
7198
  *
7191
-
7199
+
7192
7200
  Unknown
7193
-
7201
+
7194
7202
  String
7195
-
7203
+
7196
7204
  Int32
7197
-
7205
+
7198
7206
  Int64
7199
-
7207
+
7200
7208
  Double
7201
-
7209
+
7202
7210
  DateTime
7203
-
7211
+
7204
7212
  Boolean
7205
-
7213
+
7206
7214
  Point
7207
-
7215
+
7208
7216
  Polyline
7209
-
7217
+
7210
7218
  MultiPolygon
7211
-
7219
+
7212
7220
  Multipoint
7213
-
7221
+
7214
7222
  H3Index
7215
-
7223
+
7216
7224
  Json
7217
7225
  */
7218
7226
 
@@ -7236,9 +7244,9 @@ var AttributeType;
7236
7244
  })(AttributeType || (AttributeType = {}));
7237
7245
  /**
7238
7246
  *
7239
-
7247
+
7240
7248
  authorization_code
7241
-
7249
+
7242
7250
  refresh_token
7243
7251
  */
7244
7252
 
@@ -7251,19 +7259,19 @@ var AuthorizationGrant;
7251
7259
  })(AuthorizationGrant || (AuthorizationGrant = {}));
7252
7260
  /**
7253
7261
  *
7254
-
7262
+
7255
7263
  None
7256
-
7264
+
7257
7265
  Map
7258
-
7266
+
7259
7267
  Layer
7260
-
7268
+
7261
7269
  Table
7262
-
7270
+
7263
7271
  File
7264
-
7272
+
7265
7273
  TaskPrototype
7266
-
7274
+
7267
7275
  DataSource
7268
7276
  */
7269
7277
 
@@ -7281,15 +7289,15 @@ var CatalogResourceType;
7281
7289
  })(CatalogResourceType || (CatalogResourceType = {}));
7282
7290
  /**
7283
7291
  * Describes classification methods.
7284
-
7292
+
7285
7293
  none
7286
-
7294
+
7287
7295
  naturalBreaks
7288
-
7296
+
7289
7297
  equalInterval
7290
-
7298
+
7291
7299
  quantile
7292
-
7300
+
7293
7301
  unique
7294
7302
  */
7295
7303
 
@@ -7305,11 +7313,11 @@ var ClassificationType;
7305
7313
  })(ClassificationType || (ClassificationType = {}));
7306
7314
  /**
7307
7315
  *
7308
-
7316
+
7309
7317
  decimal
7310
-
7318
+
7311
7319
  dateTime
7312
-
7320
+
7313
7321
  text
7314
7322
  */
7315
7323
 
@@ -7323,55 +7331,55 @@ var ClassifyAttributeType;
7323
7331
  })(ClassifyAttributeType || (ClassifyAttributeType = {}));
7324
7332
  /**
7325
7333
  *
7326
-
7334
+
7327
7335
  Unknown
7328
-
7336
+
7329
7337
  SerializeError
7330
-
7338
+
7331
7339
  InvalidDataService
7332
-
7340
+
7333
7341
  InvalidConfiguration
7334
-
7342
+
7335
7343
  InvalidDataServiceName
7336
-
7344
+
7337
7345
  InvalidTableName
7338
-
7346
+
7339
7347
  InvalidLayerName
7340
-
7348
+
7341
7349
  ResourceNotFound
7342
-
7350
+
7343
7351
  InvalidCondition
7344
-
7352
+
7345
7353
  InvalidAttributes
7346
-
7354
+
7347
7355
  InvalidIdAttribute
7348
-
7356
+
7349
7357
  InvalidGeometryAttribute
7350
-
7358
+
7351
7359
  InvalidGeometryAttributeType
7352
-
7360
+
7353
7361
  InvalidColumnName
7354
-
7362
+
7355
7363
  InvalidIdColumnSettings
7356
-
7364
+
7357
7365
  ColumnNotExistsInTable
7358
-
7366
+
7359
7367
  InvalidStyle
7360
-
7368
+
7361
7369
  InvalidLayerType
7362
-
7370
+
7363
7371
  ColumnLoadingError
7364
-
7372
+
7365
7373
  InvalidAttributeFormat
7366
-
7374
+
7367
7375
  DataSourceNotFound
7368
-
7376
+
7369
7377
  DuplicateColumns
7370
-
7378
+
7371
7379
  DuplicateAttributes
7372
-
7380
+
7373
7381
  TableWithoutColumns
7374
-
7382
+
7375
7383
  InvalidTableReferenceConfiguration
7376
7384
  */
7377
7385
 
@@ -7407,13 +7415,13 @@ var ConfigurationErrorEnum;
7407
7415
  })(ConfigurationErrorEnum || (ConfigurationErrorEnum = {}));
7408
7416
  /**
7409
7417
  *
7410
-
7418
+
7411
7419
  Postgres
7412
-
7420
+
7413
7421
  Trino
7414
-
7422
+
7415
7423
  S3
7416
-
7424
+
7417
7425
  GisServer
7418
7426
  */
7419
7427
 
@@ -7428,15 +7436,15 @@ var DataSourceType;
7428
7436
  })(DataSourceType || (DataSourceType = {}));
7429
7437
  /**
7430
7438
  * Type of the error.
7431
-
7439
+
7432
7440
  ResourceLimitExceeded
7433
-
7441
+
7434
7442
  ResourceNotFound
7435
-
7443
+
7436
7444
  InternalError
7437
-
7445
+
7438
7446
  BadRequest
7439
-
7447
+
7440
7448
  DuplicateContent
7441
7449
  */
7442
7450
 
@@ -7487,11 +7495,11 @@ var ErrorType;
7487
7495
  })(ErrorType || (ErrorType = {}));
7488
7496
  /**
7489
7497
  * Sets whether font should be styled.
7490
-
7498
+
7491
7499
  normal
7492
-
7500
+
7493
7501
  oblique
7494
-
7502
+
7495
7503
  italic
7496
7504
  */
7497
7505
 
@@ -7505,27 +7513,27 @@ var FontStyle;
7505
7513
  })(FontStyle || (FontStyle = {}));
7506
7514
  /**
7507
7515
  * Specifies the weight (or boldness) of the font.
7508
-
7516
+
7509
7517
  Thin
7510
-
7518
+
7511
7519
  ExtraLight
7512
-
7520
+
7513
7521
  Light
7514
-
7522
+
7515
7523
  SemiLight
7516
-
7524
+
7517
7525
  Normal
7518
-
7526
+
7519
7527
  Medium
7520
-
7528
+
7521
7529
  DemiBold
7522
-
7530
+
7523
7531
  Bold
7524
-
7532
+
7525
7533
  ExtraBold
7526
-
7534
+
7527
7535
  Black
7528
-
7536
+
7529
7537
  ExtraBlack
7530
7538
  */
7531
7539
 
@@ -7547,17 +7555,17 @@ var FontWeight;
7547
7555
  })(FontWeight || (FontWeight = {}));
7548
7556
  /**
7549
7557
  *
7550
-
7558
+
7551
7559
  unknown
7552
-
7560
+
7553
7561
  point
7554
-
7562
+
7555
7563
  polyline
7556
-
7564
+
7557
7565
  multipolygon
7558
-
7566
+
7559
7567
  envelope
7560
-
7568
+
7561
7569
  multipoint
7562
7570
  */
7563
7571
 
@@ -7574,13 +7582,13 @@ var GeometryType;
7574
7582
  })(GeometryType || (GeometryType = {}));
7575
7583
  /**
7576
7584
  * Resource group.
7577
-
7585
+
7578
7586
  my
7579
-
7587
+
7580
7588
  role
7581
-
7589
+
7582
7590
  public
7583
-
7591
+
7584
7592
  all
7585
7593
  */
7586
7594
 
@@ -7595,13 +7603,13 @@ var Group;
7595
7603
  })(Group || (Group = {}));
7596
7604
  /**
7597
7605
  * Specifies the settings of line cap. This is applied to the beginning and end of each non-closed line.
7598
-
7606
+
7599
7607
  Flat
7600
-
7608
+
7601
7609
  Square
7602
-
7610
+
7603
7611
  Round
7604
-
7612
+
7605
7613
  Triangle
7606
7614
  */
7607
7615
 
@@ -7616,29 +7624,29 @@ var LineCapStyle;
7616
7624
  })(LineCapStyle || (LineCapStyle = {}));
7617
7625
  /**
7618
7626
  * Type of the line ending.
7619
-
7627
+
7620
7628
  none
7621
-
7629
+
7622
7630
  arrow
7623
-
7631
+
7624
7632
  filledArrow
7625
-
7633
+
7626
7634
  square
7627
-
7635
+
7628
7636
  filledSquare
7629
-
7637
+
7630
7638
  circle
7631
-
7639
+
7632
7640
  filledCircle
7633
-
7641
+
7634
7642
  diamond
7635
-
7643
+
7636
7644
  filledDiamond
7637
-
7645
+
7638
7646
  roundSquare
7639
-
7647
+
7640
7648
  filledRoundSquare
7641
-
7649
+
7642
7650
  svg
7643
7651
  */
7644
7652
 
@@ -7661,11 +7669,11 @@ var LineEndingType;
7661
7669
  })(LineEndingType || (LineEndingType = {}));
7662
7670
  /**
7663
7671
  * Specifies the settings of lines join. This is applied to corners in lines and rectangles.
7664
-
7672
+
7665
7673
  Miter
7666
-
7674
+
7667
7675
  Bevel
7668
-
7676
+
7669
7677
  Round
7670
7678
  */
7671
7679
 
@@ -7679,11 +7687,11 @@ var LineJoinType;
7679
7687
  })(LineJoinType || (LineJoinType = {}));
7680
7688
  /**
7681
7689
  * Filter exists resources by owner.
7682
-
7690
+
7683
7691
  My
7684
-
7692
+
7685
7693
  Shared
7686
-
7694
+
7687
7695
  Public
7688
7696
  */
7689
7697
 
@@ -7697,9 +7705,9 @@ var OwnerFilter;
7697
7705
  })(OwnerFilter || (OwnerFilter = {}));
7698
7706
  /**
7699
7707
  * Influences the y direction of the tile coordinates. The global-mercator (aka Spherical Mercator) profile is assumed.
7700
-
7708
+
7701
7709
  xyz
7702
-
7710
+
7703
7711
  tms
7704
7712
  */
7705
7713
 
@@ -7712,19 +7720,19 @@ var PbfSchema;
7712
7720
  })(PbfSchema || (PbfSchema = {}));
7713
7721
  /**
7714
7722
  *
7715
-
7723
+
7716
7724
  none
7717
-
7725
+
7718
7726
  configure
7719
-
7727
+
7720
7728
  write
7721
-
7729
+
7722
7730
  read
7723
-
7731
+
7724
7732
  read,configure
7725
-
7733
+
7726
7734
  read,write
7727
-
7735
+
7728
7736
  read,write,configure
7729
7737
  */
7730
7738
 
@@ -7742,21 +7750,21 @@ var Permissions;
7742
7750
  })(Permissions || (Permissions = {}));
7743
7751
  /**
7744
7752
  * Type of the authorization policy.
7745
-
7753
+
7746
7754
  Unknown
7747
-
7755
+
7748
7756
  CreateTable
7749
-
7757
+
7750
7758
  CreateLayer
7751
-
7759
+
7752
7760
  CreateProject
7753
-
7761
+
7754
7762
  MaxFeaturesInOneTable
7755
-
7763
+
7756
7764
  MaxObjectsToExport
7757
-
7765
+
7758
7766
  MaxUploadContentSize
7759
-
7767
+
7760
7768
  MaxEqlQueryParametersValues
7761
7769
  */
7762
7770
 
@@ -7775,11 +7783,11 @@ var PolicyType;
7775
7783
  })(PolicyType || (PolicyType = {}));
7776
7784
  /**
7777
7785
  * Stream quality.
7778
-
7786
+
7779
7787
  Low
7780
-
7788
+
7781
7789
  Medium
7782
-
7790
+
7783
7791
  High
7784
7792
  */
7785
7793
 
@@ -7793,23 +7801,23 @@ var Quality;
7793
7801
  })(Quality || (Quality = {}));
7794
7802
  /**
7795
7803
  * RemoteTaskStatus enum.
7796
-
7804
+
7797
7805
  Init
7798
-
7806
+
7799
7807
  Process
7800
-
7808
+
7801
7809
  Completed
7802
-
7810
+
7803
7811
  Interrupted
7804
-
7812
+
7805
7813
  Error
7806
-
7814
+
7807
7815
  Timeout
7808
-
7816
+
7809
7817
  Waiting
7810
-
7818
+
7811
7819
  InQueue
7812
-
7820
+
7813
7821
  Unknown
7814
7822
  */
7815
7823
 
@@ -7829,15 +7837,15 @@ var RemoteTaskStatus;
7829
7837
  })(RemoteTaskStatus || (RemoteTaskStatus = {}));
7830
7838
  /**
7831
7839
  * Resources types filter.
7832
-
7840
+
7833
7841
  RemoteTileService
7834
-
7842
+
7835
7843
  ProxyService
7836
-
7844
+
7837
7845
  PostgresLayerService
7838
-
7846
+
7839
7847
  QueryLayerService
7840
-
7848
+
7841
7849
  TileCatalogTable
7842
7850
  */
7843
7851
 
@@ -7853,21 +7861,21 @@ var ResourceSubTypeFilter;
7853
7861
  })(ResourceSubTypeFilter || (ResourceSubTypeFilter = {}));
7854
7862
  /**
7855
7863
  *
7856
-
7864
+
7857
7865
  Unknown
7858
-
7866
+
7859
7867
  table
7860
-
7868
+
7861
7869
  layer
7862
-
7870
+
7863
7871
  project
7864
-
7872
+
7865
7873
  file
7866
-
7874
+
7867
7875
  feature
7868
-
7876
+
7869
7877
  tag
7870
-
7878
+
7871
7879
  datasource
7872
7880
  */
7873
7881
 
@@ -7886,23 +7894,23 @@ var ResourceType;
7886
7894
  })(ResourceType || (ResourceType = {}));
7887
7895
  /**
7888
7896
  * Resources types filter.
7889
-
7897
+
7890
7898
  Map
7891
-
7899
+
7892
7900
  Layer
7893
-
7901
+
7894
7902
  Table
7895
-
7903
+
7896
7904
  RasterCatalog
7897
-
7905
+
7898
7906
  ProxyService
7899
-
7907
+
7900
7908
  RemoteTileService
7901
-
7909
+
7902
7910
  File
7903
-
7911
+
7904
7912
  DataSource
7905
-
7913
+
7906
7914
  TaskPrototype
7907
7915
  */
7908
7916
 
@@ -7930,9 +7938,9 @@ var ResourceTypeLink;
7930
7938
  })(ResourceTypeLink || (ResourceTypeLink = {}));
7931
7939
  /**
7932
7940
  *
7933
-
7941
+
7934
7942
  code
7935
-
7943
+
7936
7944
  token
7937
7945
  */
7938
7946
 
@@ -7945,11 +7953,11 @@ var ResponseType;
7945
7953
  })(ResponseType || (ResponseType = {}));
7946
7954
  /**
7947
7955
  *
7948
-
7956
+
7949
7957
  Basic
7950
-
7958
+
7951
7959
  PreserveTopology
7952
-
7960
+
7953
7961
  VW
7954
7962
  */
7955
7963
 
@@ -7963,13 +7971,13 @@ var SimplifyType;
7963
7971
  })(SimplifyType || (SimplifyType = {}));
7964
7972
  /**
7965
7973
  *
7966
-
7974
+
7967
7975
  None
7968
-
7976
+
7969
7977
  Image
7970
-
7978
+
7971
7979
  PkkCode
7972
-
7980
+
7973
7981
  Attachments
7974
7982
  */
7975
7983
 
@@ -7984,9 +7992,9 @@ var StringSubType;
7984
7992
  })(StringSubType || (StringSubType = {}));
7985
7993
  /**
7986
7994
  * TaskPrototypeSubType.
7987
-
7995
+
7988
7996
  SpTask
7989
-
7997
+
7990
7998
  PythonTask
7991
7999
  */
7992
8000
 
@@ -7999,13 +8007,13 @@ var TaskResourceSubType;
7999
8007
  })(TaskResourceSubType || (TaskResourceSubType = {}));
8000
8008
  /**
8001
8009
  * Sets the horizontal alignment of text.
8002
-
8010
+
8003
8011
  right
8004
-
8012
+
8005
8013
  left
8006
-
8014
+
8007
8015
  center
8008
-
8016
+
8009
8017
  justified
8010
8018
  */
8011
8019
 
@@ -8020,11 +8028,11 @@ var TextAlignment;
8020
8028
  })(TextAlignment || (TextAlignment = {}));
8021
8029
  /**
8022
8030
  * Sets the vertical alignment of text.
8023
-
8031
+
8024
8032
  top
8025
-
8033
+
8026
8034
  bottom
8027
-
8035
+
8028
8036
  middle
8029
8037
  */
8030
8038
 
@@ -8038,11 +8046,11 @@ var TextVerticalAlignment;
8038
8046
  })(TextVerticalAlignment || (TextVerticalAlignment = {}));
8039
8047
  /**
8040
8048
  *
8041
-
8049
+
8042
8050
  Task
8043
-
8051
+
8044
8052
  Rest
8045
-
8053
+
8046
8054
  Both
8047
8055
  */
8048
8056
 
@@ -8056,60 +8064,78 @@ var WorkerMethodType;
8056
8064
  })(WorkerMethodType || (WorkerMethodType = {}));
8057
8065
  /**
8058
8066
  *
8059
-
8060
- Integer
8061
-
8067
+
8068
+ Int32
8069
+
8070
+ Int64
8071
+
8062
8072
  Double
8063
-
8073
+
8064
8074
  String
8065
-
8066
- Extent
8067
-
8075
+
8076
+ Boolean
8077
+
8078
+ DateTime
8079
+
8080
+ Point
8081
+
8068
8082
  Geometry
8069
-
8083
+
8084
+ Polyline
8085
+
8086
+ MultiPolygon
8087
+
8088
+ Polygon
8089
+
8090
+ Multipoint
8091
+
8070
8092
  IntergerArray
8071
-
8093
+
8072
8094
  DoubleArray
8073
-
8095
+
8074
8096
  StringArray
8075
-
8076
- Boolean
8077
-
8097
+
8078
8098
  SourceEql
8079
-
8099
+
8080
8100
  Layer
8081
-
8101
+
8082
8102
  Table
8083
-
8103
+
8084
8104
  Folder
8085
-
8105
+
8086
8106
  Json
8087
-
8088
- Expression
8089
-
8090
- Expressions
8107
+
8108
+ Attribute
8109
+
8110
+ AttributeArray
8091
8111
  */
8092
8112
 
8093
8113
 
8094
8114
  var WorkerSettingsFieldType;
8095
8115
 
8096
8116
  (function (WorkerSettingsFieldType) {
8097
- WorkerSettingsFieldType["Integer"] = "Integer";
8117
+ WorkerSettingsFieldType["Int32"] = "Int32";
8118
+ WorkerSettingsFieldType["Int64"] = "Int64";
8098
8119
  WorkerSettingsFieldType["Double"] = "Double";
8099
8120
  WorkerSettingsFieldType["String"] = "String";
8100
- WorkerSettingsFieldType["Extent"] = "Extent";
8121
+ WorkerSettingsFieldType["Boolean"] = "Boolean";
8122
+ WorkerSettingsFieldType["DateTime"] = "DateTime";
8123
+ WorkerSettingsFieldType["Point"] = "Point";
8101
8124
  WorkerSettingsFieldType["Geometry"] = "Geometry";
8125
+ WorkerSettingsFieldType["Polyline"] = "Polyline";
8126
+ WorkerSettingsFieldType["MultiPolygon"] = "MultiPolygon";
8127
+ WorkerSettingsFieldType["Polygon"] = "Polygon";
8128
+ WorkerSettingsFieldType["Multipoint"] = "Multipoint";
8102
8129
  WorkerSettingsFieldType["IntergerArray"] = "IntergerArray";
8103
8130
  WorkerSettingsFieldType["DoubleArray"] = "DoubleArray";
8104
8131
  WorkerSettingsFieldType["StringArray"] = "StringArray";
8105
- WorkerSettingsFieldType["Boolean"] = "Boolean";
8106
8132
  WorkerSettingsFieldType["SourceEql"] = "SourceEql";
8107
8133
  WorkerSettingsFieldType["Layer"] = "Layer";
8108
8134
  WorkerSettingsFieldType["Table"] = "Table";
8109
8135
  WorkerSettingsFieldType["Folder"] = "Folder";
8110
8136
  WorkerSettingsFieldType["Json"] = "Json";
8111
- WorkerSettingsFieldType["Expression"] = "Expression";
8112
- WorkerSettingsFieldType["Expressions"] = "Expressions";
8137
+ WorkerSettingsFieldType["Attribute"] = "Attribute";
8138
+ WorkerSettingsFieldType["AttributeArray"] = "AttributeArray";
8113
8139
  })(WorkerSettingsFieldType || (WorkerSettingsFieldType = {}));
8114
8140
 
8115
8141
  export { Account, AccountPreview, AggregationFunction, Api, ApiEvent, AttributeIconType, AttributeSelectorType, AttributeType, AuthorizationGrant, BulkOperations, Cameras, CatalogResourceType, ClassificationType, ClassifyAttributeType, ClientSettings, ConfigurationErrorEnum, ConnectionStatus, DataSourceType, DependencyType, Eql, ErrorDetailsType, ErrorReason, ErrorType, External, Feedback, FileUpload, Filters, FontStyle, FontWeight, GEOCODE_PROVIDER, General, Geocode, GeometryType, Group, HttpClient, IceRouter, Import, Layers, LineCapStyle, LineEndingType, LineJoinType, Names, Notification, NotificationEvent, OwnerFilter, PbfSchema, Permissions, PolicyType, PortalSettings, Print, Projects, Quality, RemoteTaskManager, RemoteTaskStatus, ResourceCatalog, ResourceSeparator, ResourceSubTypeFilter, ResourceType, ResourceTypeFilter, ResourceTypeLink, Resources, ResponseType, STORAGE_REFRESH_TOKEN_KEY, STORAGE_TOKEN_KEY, Security, SimplifyType, Statistic, StringSubType, Styles, Tables, TaskResourceSubType, TextAlignment, TextVerticalAlignment, Tools, UrlPath, VectorTiles, WorkerMethodType, WorkerSettingsFieldType, addSubDomainToLocation, errorHandler, formDataFromFile, generateId, getFetchingUrlPath, isHTTPError, isHandledError, isProjectContentItems, isString, isTileLayerService, parseJwt, promiseAllIgnoreErrors, stripUselessSlashes, toFormData, unique };