@evergis/api 3.0.205 → 3.0.206
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/LICENSE +20 -20
- package/README.md +21 -21
- package/dist/Api.d.ts +2 -0
- package/dist/__generated__/data-contracts.d.ts +210 -210
- package/dist/api.cjs.development.js +23 -9
- package/dist/api.cjs.development.js.map +1 -1
- package/dist/api.cjs.production.min.js +1 -1
- package/dist/api.cjs.production.min.js.map +1 -1
- package/dist/api.esm.js +231 -217
- package/dist/api.esm.js.map +1 -1
- package/package.json +2 -2
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(
|
|
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(
|
|
183
|
+
return _get.apply(this, arguments);
|
|
176
184
|
}
|
|
177
185
|
|
|
178
186
|
const API_USER_INFO_KEY = '@evergis/user-info';
|
|
@@ -5071,8 +5079,8 @@ let Notification = /*#__PURE__*/function (_NotificationService) {
|
|
|
5071
5079
|
|| event.code === 4002
|
|
5072
5080
|
/* InvalidSession */
|
|
5073
5081
|
) {
|
|
5074
|
-
|
|
5075
|
-
|
|
5082
|
+
_this.connectStatus = ConnectionStatus.SessionClosed;
|
|
5083
|
+
} else if (_this.reconnectTries < _this.MAX_WS_RECONNECT_TRIES) {
|
|
5076
5084
|
_this.connectStatus = ConnectionStatus.Break;
|
|
5077
5085
|
_this.reconnectTries++;
|
|
5078
5086
|
|
|
@@ -5148,7 +5156,7 @@ let Notification = /*#__PURE__*/function (_NotificationService) {
|
|
|
5148
5156
|
value: async function subscribe(tag) {
|
|
5149
5157
|
this.subscriptions.push(tag);
|
|
5150
5158
|
setTimeout(() => {
|
|
5151
|
-
if (!this.api.isShared && this.subscriptions.length) {
|
|
5159
|
+
if (!this.api.isShared && !this.api.isPresentation && this.subscriptions.length) {
|
|
5152
5160
|
this.subscribeListOperation(this.subscriptions);
|
|
5153
5161
|
}
|
|
5154
5162
|
|
|
@@ -5906,12 +5914,12 @@ let Resources = /*#__PURE__*/function () {
|
|
|
5906
5914
|
}, {
|
|
5907
5915
|
key: "getDependentNames",
|
|
5908
5916
|
value: function getDependentNames(deps, depType) {
|
|
5909
|
-
return deps.filter(
|
|
5917
|
+
return deps.filter(_ref => {
|
|
5910
5918
|
let {
|
|
5911
5919
|
type
|
|
5912
5920
|
} = _ref;
|
|
5913
5921
|
return type === depType;
|
|
5914
|
-
}).map(
|
|
5922
|
+
}).map(_ref2 => {
|
|
5915
5923
|
let {
|
|
5916
5924
|
name
|
|
5917
5925
|
} = _ref2;
|
|
@@ -6367,7 +6375,7 @@ let Scheduler = /*#__PURE__*/function (_SchedulerService) {
|
|
|
6367
6375
|
const taskProgress = await this.getTaskProgress(id);
|
|
6368
6376
|
this.resolveTaskStatus(taskProgress, resolve, reject);
|
|
6369
6377
|
|
|
6370
|
-
const taskResultCallback = async
|
|
6378
|
+
const taskResultCallback = async _ref => {
|
|
6371
6379
|
let {
|
|
6372
6380
|
data
|
|
6373
6381
|
} = _ref;
|
|
@@ -7509,6 +7517,7 @@ var UrlPath;
|
|
|
7509
7517
|
(function (UrlPath) {
|
|
7510
7518
|
UrlPath["Base"] = "/map";
|
|
7511
7519
|
UrlPath["Shared"] = "/shared";
|
|
7520
|
+
UrlPath["Presentation"] = "/presentation";
|
|
7512
7521
|
UrlPath["Portal"] = "/portal";
|
|
7513
7522
|
})(UrlPath || (UrlPath = {}));
|
|
7514
7523
|
|
|
@@ -7721,6 +7730,11 @@ let Api = /*#__PURE__*/function (_EventEmitter) {
|
|
|
7721
7730
|
get: function get() {
|
|
7722
7731
|
return this.urlPath === UrlPath.Shared;
|
|
7723
7732
|
}
|
|
7733
|
+
}, {
|
|
7734
|
+
key: "isPresentation",
|
|
7735
|
+
get: function get() {
|
|
7736
|
+
return this.urlPath === UrlPath.Presentation;
|
|
7737
|
+
}
|
|
7724
7738
|
}]);
|
|
7725
7739
|
|
|
7726
7740
|
return Api;
|
|
@@ -8090,47 +8104,47 @@ function isFeatureLayer(layer) {
|
|
|
8090
8104
|
|
|
8091
8105
|
/**
|
|
8092
8106
|
*
|
|
8093
|
-
|
|
8107
|
+
|
|
8094
8108
|
None
|
|
8095
|
-
|
|
8109
|
+
|
|
8096
8110
|
Array
|
|
8097
|
-
|
|
8111
|
+
|
|
8098
8112
|
Min
|
|
8099
|
-
|
|
8113
|
+
|
|
8100
8114
|
Max
|
|
8101
|
-
|
|
8115
|
+
|
|
8102
8116
|
Avg
|
|
8103
|
-
|
|
8117
|
+
|
|
8104
8118
|
Sum
|
|
8105
|
-
|
|
8119
|
+
|
|
8106
8120
|
Extent
|
|
8107
|
-
|
|
8121
|
+
|
|
8108
8122
|
H3
|
|
8109
|
-
|
|
8123
|
+
|
|
8110
8124
|
Count
|
|
8111
|
-
|
|
8125
|
+
|
|
8112
8126
|
TotalCount
|
|
8113
|
-
|
|
8127
|
+
|
|
8114
8128
|
DistinctCount
|
|
8115
|
-
|
|
8129
|
+
|
|
8116
8130
|
First
|
|
8117
|
-
|
|
8131
|
+
|
|
8118
8132
|
Last
|
|
8119
|
-
|
|
8133
|
+
|
|
8120
8134
|
Median
|
|
8121
|
-
|
|
8135
|
+
|
|
8122
8136
|
Mod
|
|
8123
|
-
|
|
8137
|
+
|
|
8124
8138
|
StdDeviation
|
|
8125
|
-
|
|
8139
|
+
|
|
8126
8140
|
SumOfProduct
|
|
8127
|
-
|
|
8141
|
+
|
|
8128
8142
|
OnlyValue
|
|
8129
|
-
|
|
8143
|
+
|
|
8130
8144
|
WeightedAvg
|
|
8131
|
-
|
|
8145
|
+
|
|
8132
8146
|
DensityIndicators
|
|
8133
|
-
|
|
8147
|
+
|
|
8134
8148
|
DividedSum
|
|
8135
8149
|
*/
|
|
8136
8150
|
var AggregationFunction;
|
|
@@ -8160,13 +8174,13 @@ var AggregationFunction;
|
|
|
8160
8174
|
})(AggregationFunction || (AggregationFunction = {}));
|
|
8161
8175
|
/**
|
|
8162
8176
|
*
|
|
8163
|
-
|
|
8177
|
+
|
|
8164
8178
|
Unknown
|
|
8165
|
-
|
|
8179
|
+
|
|
8166
8180
|
Icon
|
|
8167
|
-
|
|
8181
|
+
|
|
8168
8182
|
PNG
|
|
8169
|
-
|
|
8183
|
+
|
|
8170
8184
|
SVG
|
|
8171
8185
|
*/
|
|
8172
8186
|
|
|
@@ -8181,13 +8195,13 @@ var AttributeIconType;
|
|
|
8181
8195
|
})(AttributeIconType || (AttributeIconType = {}));
|
|
8182
8196
|
/**
|
|
8183
8197
|
*
|
|
8184
|
-
|
|
8198
|
+
|
|
8185
8199
|
None
|
|
8186
|
-
|
|
8200
|
+
|
|
8187
8201
|
SelectFromHandBook
|
|
8188
|
-
|
|
8202
|
+
|
|
8189
8203
|
SelectFromRange
|
|
8190
|
-
|
|
8204
|
+
|
|
8191
8205
|
ViewHandBook
|
|
8192
8206
|
*/
|
|
8193
8207
|
|
|
@@ -8202,31 +8216,31 @@ var AttributeSelectorType;
|
|
|
8202
8216
|
})(AttributeSelectorType || (AttributeSelectorType = {}));
|
|
8203
8217
|
/**
|
|
8204
8218
|
*
|
|
8205
|
-
|
|
8219
|
+
|
|
8206
8220
|
Unknown
|
|
8207
|
-
|
|
8221
|
+
|
|
8208
8222
|
String
|
|
8209
|
-
|
|
8223
|
+
|
|
8210
8224
|
Int32
|
|
8211
|
-
|
|
8225
|
+
|
|
8212
8226
|
Int64
|
|
8213
|
-
|
|
8227
|
+
|
|
8214
8228
|
Double
|
|
8215
|
-
|
|
8229
|
+
|
|
8216
8230
|
DateTime
|
|
8217
|
-
|
|
8231
|
+
|
|
8218
8232
|
Boolean
|
|
8219
|
-
|
|
8233
|
+
|
|
8220
8234
|
Point
|
|
8221
|
-
|
|
8235
|
+
|
|
8222
8236
|
Polyline
|
|
8223
|
-
|
|
8237
|
+
|
|
8224
8238
|
MultiPolygon
|
|
8225
|
-
|
|
8239
|
+
|
|
8226
8240
|
Multipoint
|
|
8227
|
-
|
|
8241
|
+
|
|
8228
8242
|
H3Index
|
|
8229
|
-
|
|
8243
|
+
|
|
8230
8244
|
Json
|
|
8231
8245
|
*/
|
|
8232
8246
|
|
|
@@ -8252,9 +8266,9 @@ var AttributeType;
|
|
|
8252
8266
|
* An authorization grant is a credential representing the resource
|
|
8253
8267
|
owner's authorization (to access its protected resources) used by the
|
|
8254
8268
|
client to obtain an access token.
|
|
8255
|
-
|
|
8269
|
+
|
|
8256
8270
|
authorization_code
|
|
8257
|
-
|
|
8271
|
+
|
|
8258
8272
|
refresh_token
|
|
8259
8273
|
*/
|
|
8260
8274
|
|
|
@@ -8267,17 +8281,17 @@ var AuthorizationGrant;
|
|
|
8267
8281
|
})(AuthorizationGrant || (AuthorizationGrant = {}));
|
|
8268
8282
|
/**
|
|
8269
8283
|
*
|
|
8270
|
-
|
|
8284
|
+
|
|
8271
8285
|
None
|
|
8272
|
-
|
|
8286
|
+
|
|
8273
8287
|
Map
|
|
8274
|
-
|
|
8288
|
+
|
|
8275
8289
|
Layer
|
|
8276
|
-
|
|
8290
|
+
|
|
8277
8291
|
Table
|
|
8278
|
-
|
|
8292
|
+
|
|
8279
8293
|
File
|
|
8280
|
-
|
|
8294
|
+
|
|
8281
8295
|
TaskPrototype
|
|
8282
8296
|
*/
|
|
8283
8297
|
|
|
@@ -8294,15 +8308,15 @@ var CatalogResourceType;
|
|
|
8294
8308
|
})(CatalogResourceType || (CatalogResourceType = {}));
|
|
8295
8309
|
/**
|
|
8296
8310
|
* Describes classification methods.
|
|
8297
|
-
|
|
8311
|
+
|
|
8298
8312
|
none
|
|
8299
|
-
|
|
8313
|
+
|
|
8300
8314
|
naturalBreaks
|
|
8301
|
-
|
|
8315
|
+
|
|
8302
8316
|
equalInterval
|
|
8303
|
-
|
|
8317
|
+
|
|
8304
8318
|
quantile
|
|
8305
|
-
|
|
8319
|
+
|
|
8306
8320
|
unique
|
|
8307
8321
|
*/
|
|
8308
8322
|
|
|
@@ -8318,11 +8332,11 @@ var ClassificationType;
|
|
|
8318
8332
|
})(ClassificationType || (ClassificationType = {}));
|
|
8319
8333
|
/**
|
|
8320
8334
|
*
|
|
8321
|
-
|
|
8335
|
+
|
|
8322
8336
|
decimal
|
|
8323
|
-
|
|
8337
|
+
|
|
8324
8338
|
dateTime
|
|
8325
|
-
|
|
8339
|
+
|
|
8326
8340
|
text
|
|
8327
8341
|
*/
|
|
8328
8342
|
|
|
@@ -8336,55 +8350,55 @@ var ClassifyAttributeType;
|
|
|
8336
8350
|
})(ClassifyAttributeType || (ClassifyAttributeType = {}));
|
|
8337
8351
|
/**
|
|
8338
8352
|
*
|
|
8339
|
-
|
|
8353
|
+
|
|
8340
8354
|
Unknown
|
|
8341
|
-
|
|
8355
|
+
|
|
8342
8356
|
SerializeError
|
|
8343
|
-
|
|
8357
|
+
|
|
8344
8358
|
InvalidDataService
|
|
8345
|
-
|
|
8359
|
+
|
|
8346
8360
|
InvalidConfiguration
|
|
8347
|
-
|
|
8361
|
+
|
|
8348
8362
|
InvalidDataServiceName
|
|
8349
|
-
|
|
8363
|
+
|
|
8350
8364
|
InvalidTableName
|
|
8351
|
-
|
|
8365
|
+
|
|
8352
8366
|
InvalidLayerName
|
|
8353
|
-
|
|
8367
|
+
|
|
8354
8368
|
ResourceNotFound
|
|
8355
|
-
|
|
8369
|
+
|
|
8356
8370
|
InvalidCondition
|
|
8357
|
-
|
|
8371
|
+
|
|
8358
8372
|
InvalidAttributes
|
|
8359
|
-
|
|
8373
|
+
|
|
8360
8374
|
InvalidIdAttribute
|
|
8361
|
-
|
|
8375
|
+
|
|
8362
8376
|
InvalidGeometryAttribute
|
|
8363
|
-
|
|
8377
|
+
|
|
8364
8378
|
InvalidGeometryAttributeType
|
|
8365
|
-
|
|
8379
|
+
|
|
8366
8380
|
InvalidColumnName
|
|
8367
|
-
|
|
8381
|
+
|
|
8368
8382
|
InvalidIdColumnSettings
|
|
8369
|
-
|
|
8383
|
+
|
|
8370
8384
|
ColumnNotExistsInTable
|
|
8371
|
-
|
|
8385
|
+
|
|
8372
8386
|
InvalidStyle
|
|
8373
|
-
|
|
8387
|
+
|
|
8374
8388
|
InvalidLayerType
|
|
8375
|
-
|
|
8389
|
+
|
|
8376
8390
|
ColumnLoadingError
|
|
8377
|
-
|
|
8391
|
+
|
|
8378
8392
|
InvalidAttributeFormat
|
|
8379
|
-
|
|
8393
|
+
|
|
8380
8394
|
DataSourceNotFound
|
|
8381
|
-
|
|
8395
|
+
|
|
8382
8396
|
DuplicateColumns
|
|
8383
|
-
|
|
8397
|
+
|
|
8384
8398
|
DuplicateAttributes
|
|
8385
|
-
|
|
8399
|
+
|
|
8386
8400
|
TableWithoutColumns
|
|
8387
|
-
|
|
8401
|
+
|
|
8388
8402
|
InvalidTableReferenceConfiguration
|
|
8389
8403
|
*/
|
|
8390
8404
|
|
|
@@ -8420,11 +8434,11 @@ var ConfigurationErrorEnum;
|
|
|
8420
8434
|
})(ConfigurationErrorEnum || (ConfigurationErrorEnum = {}));
|
|
8421
8435
|
/**
|
|
8422
8436
|
*
|
|
8423
|
-
|
|
8437
|
+
|
|
8424
8438
|
Postgres
|
|
8425
|
-
|
|
8439
|
+
|
|
8426
8440
|
S3
|
|
8427
|
-
|
|
8441
|
+
|
|
8428
8442
|
GisServer
|
|
8429
8443
|
*/
|
|
8430
8444
|
|
|
@@ -8438,15 +8452,15 @@ var DataSourceType;
|
|
|
8438
8452
|
})(DataSourceType || (DataSourceType = {}));
|
|
8439
8453
|
/**
|
|
8440
8454
|
* Type of the error.
|
|
8441
|
-
|
|
8455
|
+
|
|
8442
8456
|
ResourceLimitExceeded
|
|
8443
|
-
|
|
8457
|
+
|
|
8444
8458
|
ResourceNotFound
|
|
8445
|
-
|
|
8459
|
+
|
|
8446
8460
|
InternalError
|
|
8447
|
-
|
|
8461
|
+
|
|
8448
8462
|
BadRequest
|
|
8449
|
-
|
|
8463
|
+
|
|
8450
8464
|
DuplicateContent
|
|
8451
8465
|
*/
|
|
8452
8466
|
|
|
@@ -8497,9 +8511,9 @@ var ErrorType;
|
|
|
8497
8511
|
})(ErrorType || (ErrorType = {}));
|
|
8498
8512
|
/**
|
|
8499
8513
|
* Type of the feature.
|
|
8500
|
-
|
|
8514
|
+
|
|
8501
8515
|
Unknown
|
|
8502
|
-
|
|
8516
|
+
|
|
8503
8517
|
GeometricFeature
|
|
8504
8518
|
*/
|
|
8505
8519
|
|
|
@@ -8512,11 +8526,11 @@ var FeatureType;
|
|
|
8512
8526
|
})(FeatureType || (FeatureType = {}));
|
|
8513
8527
|
/**
|
|
8514
8528
|
* Sets whether font should be styled.
|
|
8515
|
-
|
|
8529
|
+
|
|
8516
8530
|
normal
|
|
8517
|
-
|
|
8531
|
+
|
|
8518
8532
|
oblique
|
|
8519
|
-
|
|
8533
|
+
|
|
8520
8534
|
italic
|
|
8521
8535
|
*/
|
|
8522
8536
|
|
|
@@ -8530,27 +8544,27 @@ var FontStyle;
|
|
|
8530
8544
|
})(FontStyle || (FontStyle = {}));
|
|
8531
8545
|
/**
|
|
8532
8546
|
* Specifies the weight (or boldness) of the font.
|
|
8533
|
-
|
|
8547
|
+
|
|
8534
8548
|
Thin
|
|
8535
|
-
|
|
8549
|
+
|
|
8536
8550
|
ExtraLight
|
|
8537
|
-
|
|
8551
|
+
|
|
8538
8552
|
Light
|
|
8539
|
-
|
|
8553
|
+
|
|
8540
8554
|
SemiLight
|
|
8541
|
-
|
|
8555
|
+
|
|
8542
8556
|
Normal
|
|
8543
|
-
|
|
8557
|
+
|
|
8544
8558
|
Medium
|
|
8545
|
-
|
|
8559
|
+
|
|
8546
8560
|
DemiBold
|
|
8547
|
-
|
|
8561
|
+
|
|
8548
8562
|
Bold
|
|
8549
|
-
|
|
8563
|
+
|
|
8550
8564
|
ExtraBold
|
|
8551
|
-
|
|
8565
|
+
|
|
8552
8566
|
Black
|
|
8553
|
-
|
|
8567
|
+
|
|
8554
8568
|
ExtraBlack
|
|
8555
8569
|
*/
|
|
8556
8570
|
|
|
@@ -8572,17 +8586,17 @@ var FontWeight;
|
|
|
8572
8586
|
})(FontWeight || (FontWeight = {}));
|
|
8573
8587
|
/**
|
|
8574
8588
|
*
|
|
8575
|
-
|
|
8589
|
+
|
|
8576
8590
|
unknown
|
|
8577
|
-
|
|
8591
|
+
|
|
8578
8592
|
point
|
|
8579
|
-
|
|
8593
|
+
|
|
8580
8594
|
polyline
|
|
8581
|
-
|
|
8595
|
+
|
|
8582
8596
|
multipolygon
|
|
8583
|
-
|
|
8597
|
+
|
|
8584
8598
|
envelope
|
|
8585
|
-
|
|
8599
|
+
|
|
8586
8600
|
multipoint
|
|
8587
8601
|
*/
|
|
8588
8602
|
|
|
@@ -8599,13 +8613,13 @@ var GeometryType;
|
|
|
8599
8613
|
})(GeometryType || (GeometryType = {}));
|
|
8600
8614
|
/**
|
|
8601
8615
|
* Resource group.
|
|
8602
|
-
|
|
8616
|
+
|
|
8603
8617
|
my
|
|
8604
|
-
|
|
8618
|
+
|
|
8605
8619
|
role
|
|
8606
|
-
|
|
8620
|
+
|
|
8607
8621
|
public
|
|
8608
|
-
|
|
8622
|
+
|
|
8609
8623
|
all
|
|
8610
8624
|
*/
|
|
8611
8625
|
|
|
@@ -8620,13 +8634,13 @@ var Group;
|
|
|
8620
8634
|
})(Group || (Group = {}));
|
|
8621
8635
|
/**
|
|
8622
8636
|
* Specifies the settings of line cap. This is applied to the beginning and end of each non-closed line.
|
|
8623
|
-
|
|
8637
|
+
|
|
8624
8638
|
Flat
|
|
8625
|
-
|
|
8639
|
+
|
|
8626
8640
|
Square
|
|
8627
|
-
|
|
8641
|
+
|
|
8628
8642
|
Round
|
|
8629
|
-
|
|
8643
|
+
|
|
8630
8644
|
Triangle
|
|
8631
8645
|
*/
|
|
8632
8646
|
|
|
@@ -8641,29 +8655,29 @@ var LineCapStyle;
|
|
|
8641
8655
|
})(LineCapStyle || (LineCapStyle = {}));
|
|
8642
8656
|
/**
|
|
8643
8657
|
* Type of the line ending.
|
|
8644
|
-
|
|
8658
|
+
|
|
8645
8659
|
none
|
|
8646
|
-
|
|
8660
|
+
|
|
8647
8661
|
arrow
|
|
8648
|
-
|
|
8662
|
+
|
|
8649
8663
|
filledArrow
|
|
8650
|
-
|
|
8664
|
+
|
|
8651
8665
|
square
|
|
8652
|
-
|
|
8666
|
+
|
|
8653
8667
|
filledSquare
|
|
8654
|
-
|
|
8668
|
+
|
|
8655
8669
|
circle
|
|
8656
|
-
|
|
8670
|
+
|
|
8657
8671
|
filledCircle
|
|
8658
|
-
|
|
8672
|
+
|
|
8659
8673
|
diamond
|
|
8660
|
-
|
|
8674
|
+
|
|
8661
8675
|
filledDiamond
|
|
8662
|
-
|
|
8676
|
+
|
|
8663
8677
|
roundSquare
|
|
8664
|
-
|
|
8678
|
+
|
|
8665
8679
|
filledRoundSquare
|
|
8666
|
-
|
|
8680
|
+
|
|
8667
8681
|
svg
|
|
8668
8682
|
*/
|
|
8669
8683
|
|
|
@@ -8686,11 +8700,11 @@ var LineEndingType;
|
|
|
8686
8700
|
})(LineEndingType || (LineEndingType = {}));
|
|
8687
8701
|
/**
|
|
8688
8702
|
* Specifies the settings of lines join. This is applied to corners in lines and rectangles.
|
|
8689
|
-
|
|
8703
|
+
|
|
8690
8704
|
Miter
|
|
8691
|
-
|
|
8705
|
+
|
|
8692
8706
|
Bevel
|
|
8693
|
-
|
|
8707
|
+
|
|
8694
8708
|
Round
|
|
8695
8709
|
*/
|
|
8696
8710
|
|
|
@@ -8704,15 +8718,15 @@ var LineJoinType;
|
|
|
8704
8718
|
})(LineJoinType || (LineJoinType = {}));
|
|
8705
8719
|
/**
|
|
8706
8720
|
*
|
|
8707
|
-
|
|
8721
|
+
|
|
8708
8722
|
Unknown
|
|
8709
|
-
|
|
8723
|
+
|
|
8710
8724
|
union
|
|
8711
|
-
|
|
8725
|
+
|
|
8712
8726
|
intersection
|
|
8713
|
-
|
|
8727
|
+
|
|
8714
8728
|
subtraction
|
|
8715
|
-
|
|
8729
|
+
|
|
8716
8730
|
symDifference
|
|
8717
8731
|
*/
|
|
8718
8732
|
|
|
@@ -8728,11 +8742,11 @@ var Operation;
|
|
|
8728
8742
|
})(Operation || (Operation = {}));
|
|
8729
8743
|
/**
|
|
8730
8744
|
* Filter exists resources by owner.
|
|
8731
|
-
|
|
8745
|
+
|
|
8732
8746
|
My
|
|
8733
|
-
|
|
8747
|
+
|
|
8734
8748
|
Shared
|
|
8735
|
-
|
|
8749
|
+
|
|
8736
8750
|
Public
|
|
8737
8751
|
*/
|
|
8738
8752
|
|
|
@@ -8746,9 +8760,9 @@ var OwnerFilter;
|
|
|
8746
8760
|
})(OwnerFilter || (OwnerFilter = {}));
|
|
8747
8761
|
/**
|
|
8748
8762
|
* Influences the y direction of the tile coordinates. The global-mercator (aka Spherical Mercator) profile is assumed.
|
|
8749
|
-
|
|
8763
|
+
|
|
8750
8764
|
xyz
|
|
8751
|
-
|
|
8765
|
+
|
|
8752
8766
|
tms
|
|
8753
8767
|
*/
|
|
8754
8768
|
|
|
@@ -8761,19 +8775,19 @@ var PbfSchema;
|
|
|
8761
8775
|
})(PbfSchema || (PbfSchema = {}));
|
|
8762
8776
|
/**
|
|
8763
8777
|
*
|
|
8764
|
-
|
|
8778
|
+
|
|
8765
8779
|
none
|
|
8766
|
-
|
|
8780
|
+
|
|
8767
8781
|
configure
|
|
8768
|
-
|
|
8782
|
+
|
|
8769
8783
|
write
|
|
8770
|
-
|
|
8784
|
+
|
|
8771
8785
|
read
|
|
8772
|
-
|
|
8786
|
+
|
|
8773
8787
|
read,configure
|
|
8774
|
-
|
|
8788
|
+
|
|
8775
8789
|
read,write
|
|
8776
|
-
|
|
8790
|
+
|
|
8777
8791
|
read,write,configure
|
|
8778
8792
|
*/
|
|
8779
8793
|
|
|
@@ -8791,19 +8805,19 @@ var Permissions;
|
|
|
8791
8805
|
})(Permissions || (Permissions = {}));
|
|
8792
8806
|
/**
|
|
8793
8807
|
* Type of the authorization policy.
|
|
8794
|
-
|
|
8808
|
+
|
|
8795
8809
|
Unknown
|
|
8796
|
-
|
|
8810
|
+
|
|
8797
8811
|
CreateTable
|
|
8798
|
-
|
|
8812
|
+
|
|
8799
8813
|
CreateLayer
|
|
8800
|
-
|
|
8814
|
+
|
|
8801
8815
|
CreateProject
|
|
8802
|
-
|
|
8816
|
+
|
|
8803
8817
|
MaxFeaturesInOneTable
|
|
8804
|
-
|
|
8818
|
+
|
|
8805
8819
|
MaxObjectsToExport
|
|
8806
|
-
|
|
8820
|
+
|
|
8807
8821
|
MaxUploadContentSize
|
|
8808
8822
|
*/
|
|
8809
8823
|
|
|
@@ -8821,11 +8835,11 @@ var PolicyType;
|
|
|
8821
8835
|
})(PolicyType || (PolicyType = {}));
|
|
8822
8836
|
/**
|
|
8823
8837
|
* Stream quality.
|
|
8824
|
-
|
|
8838
|
+
|
|
8825
8839
|
Low
|
|
8826
|
-
|
|
8840
|
+
|
|
8827
8841
|
Medium
|
|
8828
|
-
|
|
8842
|
+
|
|
8829
8843
|
High
|
|
8830
8844
|
*/
|
|
8831
8845
|
|
|
@@ -8839,15 +8853,15 @@ var Quality;
|
|
|
8839
8853
|
})(Quality || (Quality = {}));
|
|
8840
8854
|
/**
|
|
8841
8855
|
* Resources types filter.
|
|
8842
|
-
|
|
8856
|
+
|
|
8843
8857
|
RemoteTileService
|
|
8844
|
-
|
|
8858
|
+
|
|
8845
8859
|
ProxyService
|
|
8846
|
-
|
|
8860
|
+
|
|
8847
8861
|
PostgresLayerService
|
|
8848
|
-
|
|
8862
|
+
|
|
8849
8863
|
QueryLayerService
|
|
8850
|
-
|
|
8864
|
+
|
|
8851
8865
|
TileCatalogTable
|
|
8852
8866
|
*/
|
|
8853
8867
|
|
|
@@ -8863,19 +8877,19 @@ var ResourceSubTypeFilter;
|
|
|
8863
8877
|
})(ResourceSubTypeFilter || (ResourceSubTypeFilter = {}));
|
|
8864
8878
|
/**
|
|
8865
8879
|
*
|
|
8866
|
-
|
|
8880
|
+
|
|
8867
8881
|
Unknown
|
|
8868
|
-
|
|
8882
|
+
|
|
8869
8883
|
table
|
|
8870
|
-
|
|
8884
|
+
|
|
8871
8885
|
layer
|
|
8872
|
-
|
|
8886
|
+
|
|
8873
8887
|
project
|
|
8874
|
-
|
|
8888
|
+
|
|
8875
8889
|
file
|
|
8876
|
-
|
|
8890
|
+
|
|
8877
8891
|
feature
|
|
8878
|
-
|
|
8892
|
+
|
|
8879
8893
|
tag
|
|
8880
8894
|
*/
|
|
8881
8895
|
|
|
@@ -8893,19 +8907,19 @@ var ResourceType;
|
|
|
8893
8907
|
})(ResourceType || (ResourceType = {}));
|
|
8894
8908
|
/**
|
|
8895
8909
|
* Resources types filter.
|
|
8896
|
-
|
|
8910
|
+
|
|
8897
8911
|
Map
|
|
8898
|
-
|
|
8912
|
+
|
|
8899
8913
|
Layer
|
|
8900
|
-
|
|
8914
|
+
|
|
8901
8915
|
Table
|
|
8902
|
-
|
|
8916
|
+
|
|
8903
8917
|
RasterCatalog
|
|
8904
|
-
|
|
8918
|
+
|
|
8905
8919
|
ProxyService
|
|
8906
|
-
|
|
8920
|
+
|
|
8907
8921
|
RemoteTileService
|
|
8908
|
-
|
|
8922
|
+
|
|
8909
8923
|
File
|
|
8910
8924
|
*/
|
|
8911
8925
|
|
|
@@ -8931,9 +8945,9 @@ var ResourceTypeLink;
|
|
|
8931
8945
|
})(ResourceTypeLink || (ResourceTypeLink = {}));
|
|
8932
8946
|
/**
|
|
8933
8947
|
* Response type.
|
|
8934
|
-
|
|
8948
|
+
|
|
8935
8949
|
code
|
|
8936
|
-
|
|
8950
|
+
|
|
8937
8951
|
token
|
|
8938
8952
|
*/
|
|
8939
8953
|
|
|
@@ -8946,21 +8960,21 @@ var ResponseType;
|
|
|
8946
8960
|
})(ResponseType || (ResponseType = {}));
|
|
8947
8961
|
/**
|
|
8948
8962
|
* Status of the server task.
|
|
8949
|
-
|
|
8963
|
+
|
|
8950
8964
|
None
|
|
8951
|
-
|
|
8965
|
+
|
|
8952
8966
|
Scheduled
|
|
8953
|
-
|
|
8967
|
+
|
|
8954
8968
|
Planning
|
|
8955
|
-
|
|
8969
|
+
|
|
8956
8970
|
Executing
|
|
8957
|
-
|
|
8971
|
+
|
|
8958
8972
|
Completed
|
|
8959
|
-
|
|
8973
|
+
|
|
8960
8974
|
Failed
|
|
8961
|
-
|
|
8975
|
+
|
|
8962
8976
|
Canceled
|
|
8963
|
-
|
|
8977
|
+
|
|
8964
8978
|
Timeout
|
|
8965
8979
|
*/
|
|
8966
8980
|
|
|
@@ -8979,11 +8993,11 @@ var ServerTaskStatus;
|
|
|
8979
8993
|
})(ServerTaskStatus || (ServerTaskStatus = {}));
|
|
8980
8994
|
/**
|
|
8981
8995
|
*
|
|
8982
|
-
|
|
8996
|
+
|
|
8983
8997
|
Basic
|
|
8984
|
-
|
|
8998
|
+
|
|
8985
8999
|
PreserveTopology
|
|
8986
|
-
|
|
9000
|
+
|
|
8987
9001
|
VW
|
|
8988
9002
|
*/
|
|
8989
9003
|
|
|
@@ -8997,13 +9011,13 @@ var SimplifyType;
|
|
|
8997
9011
|
})(SimplifyType || (SimplifyType = {}));
|
|
8998
9012
|
/**
|
|
8999
9013
|
*
|
|
9000
|
-
|
|
9014
|
+
|
|
9001
9015
|
None
|
|
9002
|
-
|
|
9016
|
+
|
|
9003
9017
|
Image
|
|
9004
|
-
|
|
9018
|
+
|
|
9005
9019
|
PkkCode
|
|
9006
|
-
|
|
9020
|
+
|
|
9007
9021
|
Attachments
|
|
9008
9022
|
*/
|
|
9009
9023
|
|
|
@@ -9018,9 +9032,9 @@ var StringSubType;
|
|
|
9018
9032
|
})(StringSubType || (StringSubType = {}));
|
|
9019
9033
|
/**
|
|
9020
9034
|
* Task owner group.
|
|
9021
|
-
|
|
9035
|
+
|
|
9022
9036
|
my
|
|
9023
|
-
|
|
9037
|
+
|
|
9024
9038
|
all
|
|
9025
9039
|
*/
|
|
9026
9040
|
|
|
@@ -9033,13 +9047,13 @@ var TaskGroup;
|
|
|
9033
9047
|
})(TaskGroup || (TaskGroup = {}));
|
|
9034
9048
|
/**
|
|
9035
9049
|
* Sets the horizontal alignment of text.
|
|
9036
|
-
|
|
9050
|
+
|
|
9037
9051
|
right
|
|
9038
|
-
|
|
9052
|
+
|
|
9039
9053
|
left
|
|
9040
|
-
|
|
9054
|
+
|
|
9041
9055
|
center
|
|
9042
|
-
|
|
9056
|
+
|
|
9043
9057
|
justified
|
|
9044
9058
|
*/
|
|
9045
9059
|
|
|
@@ -9054,11 +9068,11 @@ var TextAlignment;
|
|
|
9054
9068
|
})(TextAlignment || (TextAlignment = {}));
|
|
9055
9069
|
/**
|
|
9056
9070
|
* Sets the vertical alignment of text.
|
|
9057
|
-
|
|
9071
|
+
|
|
9058
9072
|
top
|
|
9059
|
-
|
|
9073
|
+
|
|
9060
9074
|
bottom
|
|
9061
|
-
|
|
9075
|
+
|
|
9062
9076
|
middle
|
|
9063
9077
|
*/
|
|
9064
9078
|
|