@evergis/api 4.0.18 → 4.0.19

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";
@@ -5007,8 +5015,8 @@ let Notification = /*#__PURE__*/function (_NotificationService) {
5007
5015
  || event.code === 4002
5008
5016
  /* InvalidSession */
5009
5017
  ) {
5010
- _this.connectStatus = ConnectionStatus.SessionClosed;
5011
- } else if (_this.reconnectTries < _this.MAX_WS_RECONNECT_TRIES) {
5018
+ _this.connectStatus = ConnectionStatus.SessionClosed;
5019
+ } else if (_this.reconnectTries < _this.MAX_WS_RECONNECT_TRIES) {
5012
5020
  _this.connectStatus = ConnectionStatus.Break;
5013
5021
  _this.reconnectTries++;
5014
5022
 
@@ -6055,12 +6063,12 @@ let Resources = /*#__PURE__*/function () {
6055
6063
  }, {
6056
6064
  key: "getDependentNames",
6057
6065
  value: function getDependentNames(deps, depType) {
6058
- return deps.filter((_ref) => {
6066
+ return deps.filter(_ref => {
6059
6067
  let {
6060
6068
  type
6061
6069
  } = _ref;
6062
6070
  return type === depType;
6063
- }).map((_ref2) => {
6071
+ }).map(_ref2 => {
6064
6072
  let {
6065
6073
  name
6066
6074
  } = _ref2;
@@ -7225,7 +7233,7 @@ let Api = /*#__PURE__*/function (_EventEmitter) {
7225
7233
  (_request$headers = request.headers) == null ? void 0 : _request$headers.set("Authorization", "Bearer " + (token || ""));
7226
7234
  }
7227
7235
  }, ...((_hooks$beforeRequest = hooks == null ? void 0 : hooks.beforeRequest) != null ? _hooks$beforeRequest : [])],
7228
- beforeRetry: [async (_ref2) => {
7236
+ beforeRetry: [async _ref2 => {
7229
7237
  let {
7230
7238
  request,
7231
7239
  error,
@@ -7431,47 +7439,47 @@ let Api = /*#__PURE__*/function (_EventEmitter) {
7431
7439
 
7432
7440
  /**
7433
7441
  *
7434
-
7442
+
7435
7443
  None
7436
-
7444
+
7437
7445
  Array
7438
-
7446
+
7439
7447
  Min
7440
-
7448
+
7441
7449
  Max
7442
-
7450
+
7443
7451
  Avg
7444
-
7452
+
7445
7453
  Sum
7446
-
7454
+
7447
7455
  Extent
7448
-
7456
+
7449
7457
  H3
7450
-
7458
+
7451
7459
  Count
7452
-
7460
+
7453
7461
  TotalCount
7454
-
7462
+
7455
7463
  DistinctCount
7456
-
7464
+
7457
7465
  First
7458
-
7466
+
7459
7467
  Last
7460
-
7468
+
7461
7469
  Median
7462
-
7470
+
7463
7471
  Mod
7464
-
7472
+
7465
7473
  StdDeviation
7466
-
7474
+
7467
7475
  SumOfProduct
7468
-
7476
+
7469
7477
  OnlyValue
7470
-
7478
+
7471
7479
  WeightedAvg
7472
-
7480
+
7473
7481
  DensityIndicators
7474
-
7482
+
7475
7483
  DividedSum
7476
7484
  */
7477
7485
  var AggregationFunction;
@@ -7501,13 +7509,13 @@ var AggregationFunction;
7501
7509
  })(AggregationFunction || (AggregationFunction = {}));
7502
7510
  /**
7503
7511
  *
7504
-
7512
+
7505
7513
  Unknown
7506
-
7514
+
7507
7515
  Icon
7508
-
7516
+
7509
7517
  PNG
7510
-
7518
+
7511
7519
  SVG
7512
7520
  */
7513
7521
 
@@ -7522,13 +7530,13 @@ var AttributeIconType;
7522
7530
  })(AttributeIconType || (AttributeIconType = {}));
7523
7531
  /**
7524
7532
  *
7525
-
7533
+
7526
7534
  None
7527
-
7535
+
7528
7536
  SelectFromHandBook
7529
-
7537
+
7530
7538
  SelectFromRange
7531
-
7539
+
7532
7540
  ViewHandBook
7533
7541
  */
7534
7542
 
@@ -7543,31 +7551,31 @@ var AttributeSelectorType;
7543
7551
  })(AttributeSelectorType || (AttributeSelectorType = {}));
7544
7552
  /**
7545
7553
  *
7546
-
7554
+
7547
7555
  Unknown
7548
-
7556
+
7549
7557
  String
7550
-
7558
+
7551
7559
  Int32
7552
-
7560
+
7553
7561
  Int64
7554
-
7562
+
7555
7563
  Double
7556
-
7564
+
7557
7565
  DateTime
7558
-
7566
+
7559
7567
  Boolean
7560
-
7568
+
7561
7569
  Point
7562
-
7570
+
7563
7571
  Polyline
7564
-
7572
+
7565
7573
  MultiPolygon
7566
-
7574
+
7567
7575
  Multipoint
7568
-
7576
+
7569
7577
  H3Index
7570
-
7578
+
7571
7579
  Json
7572
7580
  */
7573
7581
 
@@ -7591,9 +7599,9 @@ var AttributeType;
7591
7599
  })(AttributeType || (AttributeType = {}));
7592
7600
  /**
7593
7601
  *
7594
-
7602
+
7595
7603
  authorization_code
7596
-
7604
+
7597
7605
  refresh_token
7598
7606
  */
7599
7607
 
@@ -7606,19 +7614,19 @@ var AuthorizationGrant;
7606
7614
  })(AuthorizationGrant || (AuthorizationGrant = {}));
7607
7615
  /**
7608
7616
  *
7609
-
7617
+
7610
7618
  Directory
7611
-
7619
+
7612
7620
  Map
7613
-
7621
+
7614
7622
  Layer
7615
-
7623
+
7616
7624
  Table
7617
-
7625
+
7618
7626
  File
7619
-
7627
+
7620
7628
  TaskPrototype
7621
-
7629
+
7622
7630
  DataSource
7623
7631
  */
7624
7632
 
@@ -7636,15 +7644,15 @@ var CatalogResourceType;
7636
7644
  })(CatalogResourceType || (CatalogResourceType = {}));
7637
7645
  /**
7638
7646
  * Describes classification methods.
7639
-
7647
+
7640
7648
  none
7641
-
7649
+
7642
7650
  naturalBreaks
7643
-
7651
+
7644
7652
  equalInterval
7645
-
7653
+
7646
7654
  quantile
7647
-
7655
+
7648
7656
  unique
7649
7657
  */
7650
7658
 
@@ -7660,11 +7668,11 @@ var ClassificationType;
7660
7668
  })(ClassificationType || (ClassificationType = {}));
7661
7669
  /**
7662
7670
  *
7663
-
7671
+
7664
7672
  decimal
7665
-
7673
+
7666
7674
  dateTime
7667
-
7675
+
7668
7676
  text
7669
7677
  */
7670
7678
 
@@ -7678,55 +7686,55 @@ var ClassifyAttributeType;
7678
7686
  })(ClassifyAttributeType || (ClassifyAttributeType = {}));
7679
7687
  /**
7680
7688
  *
7681
-
7689
+
7682
7690
  Unknown
7683
-
7691
+
7684
7692
  SerializeError
7685
-
7693
+
7686
7694
  InvalidDataService
7687
-
7695
+
7688
7696
  InvalidConfiguration
7689
-
7697
+
7690
7698
  InvalidDataServiceName
7691
-
7699
+
7692
7700
  InvalidTableName
7693
-
7701
+
7694
7702
  InvalidLayerName
7695
-
7703
+
7696
7704
  ResourceNotFound
7697
-
7705
+
7698
7706
  InvalidCondition
7699
-
7707
+
7700
7708
  InvalidAttributes
7701
-
7709
+
7702
7710
  InvalidIdAttribute
7703
-
7711
+
7704
7712
  InvalidGeometryAttribute
7705
-
7713
+
7706
7714
  InvalidGeometryAttributeType
7707
-
7715
+
7708
7716
  InvalidColumnName
7709
-
7717
+
7710
7718
  InvalidIdColumnSettings
7711
-
7719
+
7712
7720
  ColumnNotExistsInTable
7713
-
7721
+
7714
7722
  InvalidStyle
7715
-
7723
+
7716
7724
  InvalidLayerType
7717
-
7725
+
7718
7726
  ColumnLoadingError
7719
-
7727
+
7720
7728
  InvalidAttributeFormat
7721
-
7729
+
7722
7730
  DataSourceNotFound
7723
-
7731
+
7724
7732
  DuplicateColumns
7725
-
7733
+
7726
7734
  DuplicateAttributes
7727
-
7735
+
7728
7736
  TableWithoutColumns
7729
-
7737
+
7730
7738
  InvalidTableReferenceConfiguration
7731
7739
  */
7732
7740
 
@@ -7762,13 +7770,13 @@ var ConfigurationErrorEnum;
7762
7770
  })(ConfigurationErrorEnum || (ConfigurationErrorEnum = {}));
7763
7771
  /**
7764
7772
  *
7765
-
7773
+
7766
7774
  Postgres
7767
-
7775
+
7768
7776
  Trino
7769
-
7777
+
7770
7778
  S3
7771
-
7779
+
7772
7780
  GisServer
7773
7781
  */
7774
7782
 
@@ -7783,15 +7791,15 @@ var DataSourceType;
7783
7791
  })(DataSourceType || (DataSourceType = {}));
7784
7792
  /**
7785
7793
  * Type of the error.
7786
-
7794
+
7787
7795
  ResourceLimitExceeded
7788
-
7796
+
7789
7797
  ResourceNotFound
7790
-
7798
+
7791
7799
  InternalError
7792
-
7800
+
7793
7801
  BadRequest
7794
-
7802
+
7795
7803
  DuplicateContent
7796
7804
  */
7797
7805
 
@@ -7842,11 +7850,11 @@ var ErrorType;
7842
7850
  })(ErrorType || (ErrorType = {}));
7843
7851
  /**
7844
7852
  * Sets whether font should be styled.
7845
-
7853
+
7846
7854
  normal
7847
-
7855
+
7848
7856
  oblique
7849
-
7857
+
7850
7858
  italic
7851
7859
  */
7852
7860
 
@@ -7860,27 +7868,27 @@ var FontStyle;
7860
7868
  })(FontStyle || (FontStyle = {}));
7861
7869
  /**
7862
7870
  * Specifies the weight (or boldness) of the font.
7863
-
7871
+
7864
7872
  Thin
7865
-
7873
+
7866
7874
  ExtraLight
7867
-
7875
+
7868
7876
  Light
7869
-
7877
+
7870
7878
  SemiLight
7871
-
7879
+
7872
7880
  Normal
7873
-
7881
+
7874
7882
  Medium
7875
-
7883
+
7876
7884
  DemiBold
7877
-
7885
+
7878
7886
  Bold
7879
-
7887
+
7880
7888
  ExtraBold
7881
-
7889
+
7882
7890
  Black
7883
-
7891
+
7884
7892
  ExtraBlack
7885
7893
  */
7886
7894
 
@@ -7902,17 +7910,17 @@ var FontWeight;
7902
7910
  })(FontWeight || (FontWeight = {}));
7903
7911
  /**
7904
7912
  *
7905
-
7913
+
7906
7914
  unknown
7907
-
7915
+
7908
7916
  point
7909
-
7917
+
7910
7918
  polyline
7911
-
7919
+
7912
7920
  multipolygon
7913
-
7921
+
7914
7922
  envelope
7915
-
7923
+
7916
7924
  multipoint
7917
7925
  */
7918
7926
 
@@ -7929,13 +7937,13 @@ var GeometryType;
7929
7937
  })(GeometryType || (GeometryType = {}));
7930
7938
  /**
7931
7939
  * Resource group.
7932
-
7940
+
7933
7941
  my
7934
-
7942
+
7935
7943
  role
7936
-
7944
+
7937
7945
  public
7938
-
7946
+
7939
7947
  all
7940
7948
  */
7941
7949
 
@@ -7950,13 +7958,13 @@ var Group;
7950
7958
  })(Group || (Group = {}));
7951
7959
  /**
7952
7960
  * Specifies the settings of line cap. This is applied to the beginning and end of each non-closed line.
7953
-
7961
+
7954
7962
  Flat
7955
-
7963
+
7956
7964
  Square
7957
-
7965
+
7958
7966
  Round
7959
-
7967
+
7960
7968
  Triangle
7961
7969
  */
7962
7970
 
@@ -7971,29 +7979,29 @@ var LineCapStyle;
7971
7979
  })(LineCapStyle || (LineCapStyle = {}));
7972
7980
  /**
7973
7981
  * Type of the line ending.
7974
-
7982
+
7975
7983
  none
7976
-
7984
+
7977
7985
  arrow
7978
-
7986
+
7979
7987
  filledArrow
7980
-
7988
+
7981
7989
  square
7982
-
7990
+
7983
7991
  filledSquare
7984
-
7992
+
7985
7993
  circle
7986
-
7994
+
7987
7995
  filledCircle
7988
-
7996
+
7989
7997
  diamond
7990
-
7998
+
7991
7999
  filledDiamond
7992
-
8000
+
7993
8001
  roundSquare
7994
-
8002
+
7995
8003
  filledRoundSquare
7996
-
8004
+
7997
8005
  svg
7998
8006
  */
7999
8007
 
@@ -8016,11 +8024,11 @@ var LineEndingType;
8016
8024
  })(LineEndingType || (LineEndingType = {}));
8017
8025
  /**
8018
8026
  * Specifies the settings of lines join. This is applied to corners in lines and rectangles.
8019
-
8027
+
8020
8028
  Miter
8021
-
8029
+
8022
8030
  Bevel
8023
-
8031
+
8024
8032
  Round
8025
8033
  */
8026
8034
 
@@ -8034,11 +8042,11 @@ var LineJoinType;
8034
8042
  })(LineJoinType || (LineJoinType = {}));
8035
8043
  /**
8036
8044
  * Filter exists resources by owner.
8037
-
8045
+
8038
8046
  My
8039
-
8047
+
8040
8048
  Shared
8041
-
8049
+
8042
8050
  Public
8043
8051
  */
8044
8052
 
@@ -8052,9 +8060,9 @@ var OwnerFilter;
8052
8060
  })(OwnerFilter || (OwnerFilter = {}));
8053
8061
  /**
8054
8062
  * Influences the y direction of the tile coordinates. The global-mercator (aka Spherical Mercator) profile is assumed.
8055
-
8063
+
8056
8064
  xyz
8057
-
8065
+
8058
8066
  tms
8059
8067
  */
8060
8068
 
@@ -8067,19 +8075,19 @@ var PbfSchema;
8067
8075
  })(PbfSchema || (PbfSchema = {}));
8068
8076
  /**
8069
8077
  *
8070
-
8078
+
8071
8079
  none
8072
-
8080
+
8073
8081
  configure
8074
-
8082
+
8075
8083
  write
8076
-
8084
+
8077
8085
  read
8078
-
8086
+
8079
8087
  read,configure
8080
-
8088
+
8081
8089
  read,write
8082
-
8090
+
8083
8091
  read,write,configure
8084
8092
  */
8085
8093
 
@@ -8097,21 +8105,21 @@ var Permissions;
8097
8105
  })(Permissions || (Permissions = {}));
8098
8106
  /**
8099
8107
  * Type of the authorization policy.
8100
-
8108
+
8101
8109
  Unknown
8102
-
8110
+
8103
8111
  CreateTable
8104
-
8112
+
8105
8113
  CreateLayer
8106
-
8114
+
8107
8115
  CreateProject
8108
-
8116
+
8109
8117
  MaxFeaturesInOneTable
8110
-
8118
+
8111
8119
  MaxObjectsToExport
8112
-
8120
+
8113
8121
  MaxUploadContentSize
8114
-
8122
+
8115
8123
  MaxEqlQueryParametersValues
8116
8124
  */
8117
8125
 
@@ -8130,11 +8138,11 @@ var PolicyType;
8130
8138
  })(PolicyType || (PolicyType = {}));
8131
8139
  /**
8132
8140
  * Stream quality.
8133
-
8141
+
8134
8142
  Low
8135
-
8143
+
8136
8144
  Medium
8137
-
8145
+
8138
8146
  High
8139
8147
  */
8140
8148
 
@@ -8148,23 +8156,23 @@ var Quality;
8148
8156
  })(Quality || (Quality = {}));
8149
8157
  /**
8150
8158
  * RemoteTaskStatus enum.
8151
-
8159
+
8152
8160
  Init
8153
-
8161
+
8154
8162
  Process
8155
-
8163
+
8156
8164
  Completed
8157
-
8165
+
8158
8166
  Interrupted
8159
-
8167
+
8160
8168
  Error
8161
-
8169
+
8162
8170
  Timeout
8163
-
8171
+
8164
8172
  Waiting
8165
-
8173
+
8166
8174
  InQueue
8167
-
8175
+
8168
8176
  Unknown
8169
8177
  */
8170
8178
 
@@ -8184,15 +8192,15 @@ var RemoteTaskStatus;
8184
8192
  })(RemoteTaskStatus || (RemoteTaskStatus = {}));
8185
8193
  /**
8186
8194
  * Resources types filter.
8187
-
8195
+
8188
8196
  RemoteTileService
8189
-
8197
+
8190
8198
  ProxyService
8191
-
8199
+
8192
8200
  PostgresLayerService
8193
-
8201
+
8194
8202
  QueryLayerService
8195
-
8203
+
8196
8204
  TileCatalogTable
8197
8205
  */
8198
8206
 
@@ -8208,21 +8216,21 @@ var ResourceSubTypeFilter;
8208
8216
  })(ResourceSubTypeFilter || (ResourceSubTypeFilter = {}));
8209
8217
  /**
8210
8218
  *
8211
-
8219
+
8212
8220
  Unknown
8213
-
8221
+
8214
8222
  table
8215
-
8223
+
8216
8224
  layer
8217
-
8225
+
8218
8226
  project
8219
-
8227
+
8220
8228
  file
8221
-
8229
+
8222
8230
  feature
8223
-
8231
+
8224
8232
  tag
8225
-
8233
+
8226
8234
  datasource
8227
8235
  */
8228
8236
 
@@ -8241,23 +8249,23 @@ var ResourceType;
8241
8249
  })(ResourceType || (ResourceType = {}));
8242
8250
  /**
8243
8251
  * Resources types filter.
8244
-
8252
+
8245
8253
  Map
8246
-
8254
+
8247
8255
  Layer
8248
-
8256
+
8249
8257
  Table
8250
-
8258
+
8251
8259
  RasterCatalog
8252
-
8260
+
8253
8261
  ProxyService
8254
-
8262
+
8255
8263
  RemoteTileService
8256
-
8264
+
8257
8265
  File
8258
-
8266
+
8259
8267
  DataSource
8260
-
8268
+
8261
8269
  TaskPrototype
8262
8270
  */
8263
8271
 
@@ -8285,9 +8293,9 @@ var ResourceTypeLink;
8285
8293
  })(ResourceTypeLink || (ResourceTypeLink = {}));
8286
8294
  /**
8287
8295
  *
8288
-
8296
+
8289
8297
  code
8290
-
8298
+
8291
8299
  token
8292
8300
  */
8293
8301
 
@@ -8300,11 +8308,11 @@ var ResponseType;
8300
8308
  })(ResponseType || (ResponseType = {}));
8301
8309
  /**
8302
8310
  *
8303
-
8311
+
8304
8312
  Basic
8305
-
8313
+
8306
8314
  PreserveTopology
8307
-
8315
+
8308
8316
  VW
8309
8317
  */
8310
8318
 
@@ -8318,13 +8326,13 @@ var SimplifyType;
8318
8326
  })(SimplifyType || (SimplifyType = {}));
8319
8327
  /**
8320
8328
  *
8321
-
8329
+
8322
8330
  None
8323
-
8331
+
8324
8332
  Image
8325
-
8333
+
8326
8334
  PkkCode
8327
-
8335
+
8328
8336
  Attachments
8329
8337
  */
8330
8338
 
@@ -8339,9 +8347,9 @@ var StringSubType;
8339
8347
  })(StringSubType || (StringSubType = {}));
8340
8348
  /**
8341
8349
  * TaskPrototypeSubType.
8342
-
8350
+
8343
8351
  SpTask
8344
-
8352
+
8345
8353
  PythonTask
8346
8354
  */
8347
8355
 
@@ -8354,13 +8362,13 @@ var TaskResourceSubType;
8354
8362
  })(TaskResourceSubType || (TaskResourceSubType = {}));
8355
8363
  /**
8356
8364
  * Sets the horizontal alignment of text.
8357
-
8365
+
8358
8366
  right
8359
-
8367
+
8360
8368
  left
8361
-
8369
+
8362
8370
  center
8363
-
8371
+
8364
8372
  justified
8365
8373
  */
8366
8374
 
@@ -8375,11 +8383,11 @@ var TextAlignment;
8375
8383
  })(TextAlignment || (TextAlignment = {}));
8376
8384
  /**
8377
8385
  * Sets the vertical alignment of text.
8378
-
8386
+
8379
8387
  top
8380
-
8388
+
8381
8389
  bottom
8382
-
8390
+
8383
8391
  middle
8384
8392
  */
8385
8393
 
@@ -8393,11 +8401,11 @@ var TextVerticalAlignment;
8393
8401
  })(TextVerticalAlignment || (TextVerticalAlignment = {}));
8394
8402
  /**
8395
8403
  *
8396
-
8404
+
8397
8405
  Task
8398
-
8406
+
8399
8407
  Rest
8400
-
8408
+
8401
8409
  Both
8402
8410
  */
8403
8411
 
@@ -8411,49 +8419,49 @@ var WorkerMethodType;
8411
8419
  })(WorkerMethodType || (WorkerMethodType = {}));
8412
8420
  /**
8413
8421
  *
8414
-
8422
+
8415
8423
  Int32
8416
-
8424
+
8417
8425
  Int64
8418
-
8426
+
8419
8427
  Double
8420
-
8428
+
8421
8429
  String
8422
-
8430
+
8423
8431
  Boolean
8424
-
8432
+
8425
8433
  DateTime
8426
-
8434
+
8427
8435
  Point
8428
-
8436
+
8429
8437
  Geometry
8430
-
8438
+
8431
8439
  Polyline
8432
-
8440
+
8433
8441
  MultiPolygon
8434
-
8442
+
8435
8443
  Polygon
8436
-
8444
+
8437
8445
  Multipoint
8438
-
8446
+
8439
8447
  IntergerArray
8440
-
8448
+
8441
8449
  DoubleArray
8442
-
8450
+
8443
8451
  StringArray
8444
-
8452
+
8445
8453
  SourceEql
8446
-
8454
+
8447
8455
  Layer
8448
-
8456
+
8449
8457
  Table
8450
-
8458
+
8451
8459
  Folder
8452
-
8460
+
8453
8461
  Json
8454
-
8462
+
8455
8463
  Attribute
8456
-
8464
+
8457
8465
  AttributeArray
8458
8466
  */
8459
8467