@evergis/api 4.0.20 → 4.0.21

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";
@@ -5024,8 +5032,8 @@ let Notification = /*#__PURE__*/function (_NotificationService) {
5024
5032
  || event.code === 4002
5025
5033
  /* InvalidSession */
5026
5034
  ) {
5027
- _this.connectStatus = ConnectionStatus.SessionClosed;
5028
- } else if (_this.reconnectTries < _this.MAX_WS_RECONNECT_TRIES) {
5035
+ _this.connectStatus = ConnectionStatus.SessionClosed;
5036
+ } else if (_this.reconnectTries < _this.MAX_WS_RECONNECT_TRIES) {
5029
5037
  _this.connectStatus = ConnectionStatus.Break;
5030
5038
  _this.reconnectTries++;
5031
5039
 
@@ -6089,12 +6097,12 @@ let Resources = /*#__PURE__*/function () {
6089
6097
  }, {
6090
6098
  key: "getDependentNames",
6091
6099
  value: function getDependentNames(deps, depType) {
6092
- return deps.filter((_ref) => {
6100
+ return deps.filter(_ref => {
6093
6101
  let {
6094
6102
  type
6095
6103
  } = _ref;
6096
6104
  return type === depType;
6097
- }).map((_ref2) => {
6105
+ }).map(_ref2 => {
6098
6106
  let {
6099
6107
  name
6100
6108
  } = _ref2;
@@ -7259,7 +7267,7 @@ let Api = /*#__PURE__*/function (_EventEmitter) {
7259
7267
  (_request$headers = request.headers) == null ? void 0 : _request$headers.set("Authorization", "Bearer " + (token || ""));
7260
7268
  }
7261
7269
  }, ...((_hooks$beforeRequest = hooks == null ? void 0 : hooks.beforeRequest) != null ? _hooks$beforeRequest : [])],
7262
- beforeRetry: [async (_ref2) => {
7270
+ beforeRetry: [async _ref2 => {
7263
7271
  let {
7264
7272
  request,
7265
7273
  error,
@@ -7465,47 +7473,47 @@ let Api = /*#__PURE__*/function (_EventEmitter) {
7465
7473
 
7466
7474
  /**
7467
7475
  *
7468
-
7476
+
7469
7477
  None
7470
-
7478
+
7471
7479
  Array
7472
-
7480
+
7473
7481
  Min
7474
-
7482
+
7475
7483
  Max
7476
-
7484
+
7477
7485
  Avg
7478
-
7486
+
7479
7487
  Sum
7480
-
7488
+
7481
7489
  Extent
7482
-
7490
+
7483
7491
  H3
7484
-
7492
+
7485
7493
  Count
7486
-
7494
+
7487
7495
  TotalCount
7488
-
7496
+
7489
7497
  DistinctCount
7490
-
7498
+
7491
7499
  First
7492
-
7500
+
7493
7501
  Last
7494
-
7502
+
7495
7503
  Median
7496
-
7504
+
7497
7505
  Mod
7498
-
7506
+
7499
7507
  StdDeviation
7500
-
7508
+
7501
7509
  SumOfProduct
7502
-
7510
+
7503
7511
  OnlyValue
7504
-
7512
+
7505
7513
  WeightedAvg
7506
-
7514
+
7507
7515
  DensityIndicators
7508
-
7516
+
7509
7517
  DividedSum
7510
7518
  */
7511
7519
  var AggregationFunction;
@@ -7535,13 +7543,13 @@ var AggregationFunction;
7535
7543
  })(AggregationFunction || (AggregationFunction = {}));
7536
7544
  /**
7537
7545
  *
7538
-
7546
+
7539
7547
  Unknown
7540
-
7548
+
7541
7549
  Icon
7542
-
7550
+
7543
7551
  PNG
7544
-
7552
+
7545
7553
  SVG
7546
7554
  */
7547
7555
 
@@ -7556,13 +7564,13 @@ var AttributeIconType;
7556
7564
  })(AttributeIconType || (AttributeIconType = {}));
7557
7565
  /**
7558
7566
  *
7559
-
7567
+
7560
7568
  None
7561
-
7569
+
7562
7570
  SelectFromHandBook
7563
-
7571
+
7564
7572
  SelectFromRange
7565
-
7573
+
7566
7574
  ViewHandBook
7567
7575
  */
7568
7576
 
@@ -7577,31 +7585,31 @@ var AttributeSelectorType;
7577
7585
  })(AttributeSelectorType || (AttributeSelectorType = {}));
7578
7586
  /**
7579
7587
  *
7580
-
7588
+
7581
7589
  Unknown
7582
-
7590
+
7583
7591
  String
7584
-
7592
+
7585
7593
  Int32
7586
-
7594
+
7587
7595
  Int64
7588
-
7596
+
7589
7597
  Double
7590
-
7598
+
7591
7599
  DateTime
7592
-
7600
+
7593
7601
  Boolean
7594
-
7602
+
7595
7603
  Point
7596
-
7604
+
7597
7605
  Polyline
7598
-
7606
+
7599
7607
  MultiPolygon
7600
-
7608
+
7601
7609
  Multipoint
7602
-
7610
+
7603
7611
  H3Index
7604
-
7612
+
7605
7613
  Json
7606
7614
  */
7607
7615
 
@@ -7625,9 +7633,9 @@ var AttributeType;
7625
7633
  })(AttributeType || (AttributeType = {}));
7626
7634
  /**
7627
7635
  *
7628
-
7636
+
7629
7637
  authorization_code
7630
-
7638
+
7631
7639
  refresh_token
7632
7640
  */
7633
7641
 
@@ -7640,19 +7648,19 @@ var AuthorizationGrant;
7640
7648
  })(AuthorizationGrant || (AuthorizationGrant = {}));
7641
7649
  /**
7642
7650
  *
7643
-
7651
+
7644
7652
  Directory
7645
-
7653
+
7646
7654
  Map
7647
-
7655
+
7648
7656
  Layer
7649
-
7657
+
7650
7658
  Table
7651
-
7659
+
7652
7660
  File
7653
-
7661
+
7654
7662
  TaskPrototype
7655
-
7663
+
7656
7664
  DataSource
7657
7665
  */
7658
7666
 
@@ -7670,19 +7678,19 @@ var CatalogResourceType;
7670
7678
  })(CatalogResourceType || (CatalogResourceType = {}));
7671
7679
  /**
7672
7680
  *
7673
-
7681
+
7674
7682
  none
7675
-
7683
+
7676
7684
  naturalBreaks
7677
-
7685
+
7678
7686
  equalInterval
7679
-
7687
+
7680
7688
  quantile
7681
-
7689
+
7682
7690
  distinct
7683
-
7691
+
7684
7692
  step
7685
-
7693
+
7686
7694
  unique
7687
7695
  */
7688
7696
 
@@ -7700,11 +7708,11 @@ var ClassificationType;
7700
7708
  })(ClassificationType || (ClassificationType = {}));
7701
7709
  /**
7702
7710
  *
7703
-
7711
+
7704
7712
  decimal
7705
-
7713
+
7706
7714
  dateTime
7707
-
7715
+
7708
7716
  text
7709
7717
  */
7710
7718
 
@@ -7718,55 +7726,55 @@ var ClassifyAttributeType;
7718
7726
  })(ClassifyAttributeType || (ClassifyAttributeType = {}));
7719
7727
  /**
7720
7728
  *
7721
-
7729
+
7722
7730
  Unknown
7723
-
7731
+
7724
7732
  SerializeError
7725
-
7733
+
7726
7734
  InvalidDataService
7727
-
7735
+
7728
7736
  InvalidConfiguration
7729
-
7737
+
7730
7738
  InvalidDataServiceName
7731
-
7739
+
7732
7740
  InvalidTableName
7733
-
7741
+
7734
7742
  InvalidLayerName
7735
-
7743
+
7736
7744
  ResourceNotFound
7737
-
7745
+
7738
7746
  InvalidCondition
7739
-
7747
+
7740
7748
  InvalidAttributes
7741
-
7749
+
7742
7750
  InvalidIdAttribute
7743
-
7751
+
7744
7752
  InvalidGeometryAttribute
7745
-
7753
+
7746
7754
  InvalidGeometryAttributeType
7747
-
7755
+
7748
7756
  InvalidColumnName
7749
-
7757
+
7750
7758
  InvalidIdColumnSettings
7751
-
7759
+
7752
7760
  ColumnNotExistsInTable
7753
-
7761
+
7754
7762
  InvalidStyle
7755
-
7763
+
7756
7764
  InvalidLayerType
7757
-
7765
+
7758
7766
  ColumnLoadingError
7759
-
7767
+
7760
7768
  InvalidAttributeFormat
7761
-
7769
+
7762
7770
  DataSourceNotFound
7763
-
7771
+
7764
7772
  DuplicateColumns
7765
-
7773
+
7766
7774
  DuplicateAttributes
7767
-
7775
+
7768
7776
  TableWithoutColumns
7769
-
7777
+
7770
7778
  InvalidTableReferenceConfiguration
7771
7779
  */
7772
7780
 
@@ -7802,13 +7810,13 @@ var ConfigurationErrorEnum;
7802
7810
  })(ConfigurationErrorEnum || (ConfigurationErrorEnum = {}));
7803
7811
  /**
7804
7812
  *
7805
-
7813
+
7806
7814
  Postgres
7807
-
7815
+
7808
7816
  Trino
7809
-
7817
+
7810
7818
  S3
7811
-
7819
+
7812
7820
  GisServer
7813
7821
  */
7814
7822
 
@@ -7823,15 +7831,15 @@ var DataSourceType;
7823
7831
  })(DataSourceType || (DataSourceType = {}));
7824
7832
  /**
7825
7833
  * Type of the error.
7826
-
7834
+
7827
7835
  ResourceLimitExceeded
7828
-
7836
+
7829
7837
  ResourceNotFound
7830
-
7838
+
7831
7839
  InternalError
7832
-
7840
+
7833
7841
  BadRequest
7834
-
7842
+
7835
7843
  DuplicateContent
7836
7844
  */
7837
7845
 
@@ -7882,11 +7890,11 @@ var ErrorType;
7882
7890
  })(ErrorType || (ErrorType = {}));
7883
7891
  /**
7884
7892
  * Sets whether font should be styled.
7885
-
7893
+
7886
7894
  normal
7887
-
7895
+
7888
7896
  oblique
7889
-
7897
+
7890
7898
  italic
7891
7899
  */
7892
7900
 
@@ -7900,27 +7908,27 @@ var FontStyle;
7900
7908
  })(FontStyle || (FontStyle = {}));
7901
7909
  /**
7902
7910
  * Specifies the weight (or boldness) of the font.
7903
-
7911
+
7904
7912
  Thin
7905
-
7913
+
7906
7914
  ExtraLight
7907
-
7915
+
7908
7916
  Light
7909
-
7917
+
7910
7918
  SemiLight
7911
-
7919
+
7912
7920
  Normal
7913
-
7921
+
7914
7922
  Medium
7915
-
7923
+
7916
7924
  DemiBold
7917
-
7925
+
7918
7926
  Bold
7919
-
7927
+
7920
7928
  ExtraBold
7921
-
7929
+
7922
7930
  Black
7923
-
7931
+
7924
7932
  ExtraBlack
7925
7933
  */
7926
7934
 
@@ -7942,17 +7950,17 @@ var FontWeight;
7942
7950
  })(FontWeight || (FontWeight = {}));
7943
7951
  /**
7944
7952
  *
7945
-
7953
+
7946
7954
  unknown
7947
-
7955
+
7948
7956
  point
7949
-
7957
+
7950
7958
  polyline
7951
-
7959
+
7952
7960
  multipolygon
7953
-
7961
+
7954
7962
  envelope
7955
-
7963
+
7956
7964
  multipoint
7957
7965
  */
7958
7966
 
@@ -7969,13 +7977,13 @@ var GeometryType;
7969
7977
  })(GeometryType || (GeometryType = {}));
7970
7978
  /**
7971
7979
  * Resource group.
7972
-
7980
+
7973
7981
  my
7974
-
7982
+
7975
7983
  role
7976
-
7984
+
7977
7985
  public
7978
-
7986
+
7979
7987
  all
7980
7988
  */
7981
7989
 
@@ -7990,13 +7998,13 @@ var Group;
7990
7998
  })(Group || (Group = {}));
7991
7999
  /**
7992
8000
  * Specifies the settings of line cap. This is applied to the beginning and end of each non-closed line.
7993
-
8001
+
7994
8002
  Flat
7995
-
8003
+
7996
8004
  Square
7997
-
8005
+
7998
8006
  Round
7999
-
8007
+
8000
8008
  Triangle
8001
8009
  */
8002
8010
 
@@ -8011,29 +8019,29 @@ var LineCapStyle;
8011
8019
  })(LineCapStyle || (LineCapStyle = {}));
8012
8020
  /**
8013
8021
  * Type of the line ending.
8014
-
8022
+
8015
8023
  none
8016
-
8024
+
8017
8025
  arrow
8018
-
8026
+
8019
8027
  filledArrow
8020
-
8028
+
8021
8029
  square
8022
-
8030
+
8023
8031
  filledSquare
8024
-
8032
+
8025
8033
  circle
8026
-
8034
+
8027
8035
  filledCircle
8028
-
8036
+
8029
8037
  diamond
8030
-
8038
+
8031
8039
  filledDiamond
8032
-
8040
+
8033
8041
  roundSquare
8034
-
8042
+
8035
8043
  filledRoundSquare
8036
-
8044
+
8037
8045
  svg
8038
8046
  */
8039
8047
 
@@ -8056,11 +8064,11 @@ var LineEndingType;
8056
8064
  })(LineEndingType || (LineEndingType = {}));
8057
8065
  /**
8058
8066
  * Specifies the settings of lines join. This is applied to corners in lines and rectangles.
8059
-
8067
+
8060
8068
  Miter
8061
-
8069
+
8062
8070
  Bevel
8063
-
8071
+
8064
8072
  Round
8065
8073
  */
8066
8074
 
@@ -8074,11 +8082,11 @@ var LineJoinType;
8074
8082
  })(LineJoinType || (LineJoinType = {}));
8075
8083
  /**
8076
8084
  * Filter exists resources by owner.
8077
-
8085
+
8078
8086
  My
8079
-
8087
+
8080
8088
  Shared
8081
-
8089
+
8082
8090
  Public
8083
8091
  */
8084
8092
 
@@ -8092,9 +8100,9 @@ var OwnerFilter;
8092
8100
  })(OwnerFilter || (OwnerFilter = {}));
8093
8101
  /**
8094
8102
  * Influences the y direction of the tile coordinates. The global-mercator (aka Spherical Mercator) profile is assumed.
8095
-
8103
+
8096
8104
  xyz
8097
-
8105
+
8098
8106
  tms
8099
8107
  */
8100
8108
 
@@ -8107,19 +8115,19 @@ var PbfSchema;
8107
8115
  })(PbfSchema || (PbfSchema = {}));
8108
8116
  /**
8109
8117
  *
8110
-
8118
+
8111
8119
  none
8112
-
8120
+
8113
8121
  configure
8114
-
8122
+
8115
8123
  write
8116
-
8124
+
8117
8125
  read
8118
-
8126
+
8119
8127
  read,configure
8120
-
8128
+
8121
8129
  read,write
8122
-
8130
+
8123
8131
  read,write,configure
8124
8132
  */
8125
8133
 
@@ -8137,21 +8145,21 @@ var Permissions;
8137
8145
  })(Permissions || (Permissions = {}));
8138
8146
  /**
8139
8147
  * Type of the authorization policy.
8140
-
8148
+
8141
8149
  Unknown
8142
-
8150
+
8143
8151
  CreateTable
8144
-
8152
+
8145
8153
  CreateLayer
8146
-
8154
+
8147
8155
  CreateProject
8148
-
8156
+
8149
8157
  MaxFeaturesInOneTable
8150
-
8158
+
8151
8159
  MaxObjectsToExport
8152
-
8160
+
8153
8161
  MaxUploadContentSize
8154
-
8162
+
8155
8163
  MaxEqlQueryParametersValues
8156
8164
  */
8157
8165
 
@@ -8170,11 +8178,11 @@ var PolicyType;
8170
8178
  })(PolicyType || (PolicyType = {}));
8171
8179
  /**
8172
8180
  * Stream quality.
8173
-
8181
+
8174
8182
  Low
8175
-
8183
+
8176
8184
  Medium
8177
-
8185
+
8178
8186
  High
8179
8187
  */
8180
8188
 
@@ -8188,23 +8196,23 @@ var Quality;
8188
8196
  })(Quality || (Quality = {}));
8189
8197
  /**
8190
8198
  *
8191
-
8199
+
8192
8200
  Init
8193
-
8201
+
8194
8202
  Process
8195
-
8203
+
8196
8204
  Completed
8197
-
8205
+
8198
8206
  Interrupted
8199
-
8207
+
8200
8208
  Error
8201
-
8209
+
8202
8210
  Timeout
8203
-
8211
+
8204
8212
  Waiting
8205
-
8213
+
8206
8214
  InQueue
8207
-
8215
+
8208
8216
  Unknown
8209
8217
  */
8210
8218
 
@@ -8224,15 +8232,15 @@ var RemoteTaskStatus;
8224
8232
  })(RemoteTaskStatus || (RemoteTaskStatus = {}));
8225
8233
  /**
8226
8234
  * Resources types filter.
8227
-
8235
+
8228
8236
  RemoteTileService
8229
-
8237
+
8230
8238
  ProxyService
8231
-
8239
+
8232
8240
  PostgresLayerService
8233
-
8241
+
8234
8242
  QueryLayerService
8235
-
8243
+
8236
8244
  TileCatalogTable
8237
8245
  */
8238
8246
 
@@ -8248,21 +8256,21 @@ var ResourceSubTypeFilter;
8248
8256
  })(ResourceSubTypeFilter || (ResourceSubTypeFilter = {}));
8249
8257
  /**
8250
8258
  *
8251
-
8259
+
8252
8260
  Unknown
8253
-
8261
+
8254
8262
  table
8255
-
8263
+
8256
8264
  layer
8257
-
8265
+
8258
8266
  project
8259
-
8267
+
8260
8268
  file
8261
-
8269
+
8262
8270
  feature
8263
-
8271
+
8264
8272
  tag
8265
-
8273
+
8266
8274
  datasource
8267
8275
  */
8268
8276
 
@@ -8281,23 +8289,23 @@ var ResourceType;
8281
8289
  })(ResourceType || (ResourceType = {}));
8282
8290
  /**
8283
8291
  * Resources types filter.
8284
-
8292
+
8285
8293
  Map
8286
-
8294
+
8287
8295
  Layer
8288
-
8296
+
8289
8297
  Table
8290
-
8298
+
8291
8299
  RasterCatalog
8292
-
8300
+
8293
8301
  ProxyService
8294
-
8302
+
8295
8303
  RemoteTileService
8296
-
8304
+
8297
8305
  File
8298
-
8306
+
8299
8307
  DataSource
8300
-
8308
+
8301
8309
  TaskPrototype
8302
8310
  */
8303
8311
 
@@ -8325,9 +8333,9 @@ var ResourceTypeLink;
8325
8333
  })(ResourceTypeLink || (ResourceTypeLink = {}));
8326
8334
  /**
8327
8335
  *
8328
-
8336
+
8329
8337
  code
8330
-
8338
+
8331
8339
  token
8332
8340
  */
8333
8341
 
@@ -8340,11 +8348,11 @@ var ResponseType;
8340
8348
  })(ResponseType || (ResponseType = {}));
8341
8349
  /**
8342
8350
  *
8343
-
8351
+
8344
8352
  Basic
8345
-
8353
+
8346
8354
  PreserveTopology
8347
-
8355
+
8348
8356
  VW
8349
8357
  */
8350
8358
 
@@ -8358,13 +8366,13 @@ var SimplifyType;
8358
8366
  })(SimplifyType || (SimplifyType = {}));
8359
8367
  /**
8360
8368
  *
8361
-
8369
+
8362
8370
  None
8363
-
8371
+
8364
8372
  Image
8365
-
8373
+
8366
8374
  PkkCode
8367
-
8375
+
8368
8376
  Attachments
8369
8377
  */
8370
8378
 
@@ -8379,9 +8387,9 @@ var StringSubType;
8379
8387
  })(StringSubType || (StringSubType = {}));
8380
8388
  /**
8381
8389
  * TaskPrototypeSubType.
8382
-
8390
+
8383
8391
  SpTask
8384
-
8392
+
8385
8393
  PythonTask
8386
8394
  */
8387
8395
 
@@ -8394,13 +8402,13 @@ var TaskResourceSubType;
8394
8402
  })(TaskResourceSubType || (TaskResourceSubType = {}));
8395
8403
  /**
8396
8404
  * Sets the horizontal alignment of text.
8397
-
8405
+
8398
8406
  right
8399
-
8407
+
8400
8408
  left
8401
-
8409
+
8402
8410
  center
8403
-
8411
+
8404
8412
  justified
8405
8413
  */
8406
8414
 
@@ -8415,11 +8423,11 @@ var TextAlignment;
8415
8423
  })(TextAlignment || (TextAlignment = {}));
8416
8424
  /**
8417
8425
  * Sets the vertical alignment of text.
8418
-
8426
+
8419
8427
  top
8420
-
8428
+
8421
8429
  bottom
8422
-
8430
+
8423
8431
  middle
8424
8432
  */
8425
8433
 
@@ -8433,11 +8441,11 @@ var TextVerticalAlignment;
8433
8441
  })(TextVerticalAlignment || (TextVerticalAlignment = {}));
8434
8442
  /**
8435
8443
  *
8436
-
8444
+
8437
8445
  Task
8438
-
8446
+
8439
8447
  Rest
8440
-
8448
+
8441
8449
  Both
8442
8450
  */
8443
8451
 
@@ -8451,49 +8459,49 @@ var WorkerMethodType;
8451
8459
  })(WorkerMethodType || (WorkerMethodType = {}));
8452
8460
  /**
8453
8461
  *
8454
-
8462
+
8455
8463
  Int32
8456
-
8464
+
8457
8465
  Int64
8458
-
8466
+
8459
8467
  Double
8460
-
8468
+
8461
8469
  String
8462
-
8470
+
8463
8471
  Boolean
8464
-
8472
+
8465
8473
  DateTime
8466
-
8474
+
8467
8475
  Point
8468
-
8476
+
8469
8477
  Geometry
8470
-
8478
+
8471
8479
  Polyline
8472
-
8480
+
8473
8481
  MultiPolygon
8474
-
8482
+
8475
8483
  Polygon
8476
-
8484
+
8477
8485
  Multipoint
8478
-
8486
+
8479
8487
  IntergerArray
8480
-
8488
+
8481
8489
  DoubleArray
8482
-
8490
+
8483
8491
  StringArray
8484
-
8492
+
8485
8493
  SourceEql
8486
-
8494
+
8487
8495
  Layer
8488
-
8496
+
8489
8497
  Table
8490
-
8498
+
8491
8499
  Folder
8492
-
8500
+
8493
8501
  Json
8494
-
8502
+
8495
8503
  Attribute
8496
-
8504
+
8497
8505
  AttributeArray
8498
8506
  */
8499
8507