@evergis/api 3.0.198 → 3.0.199
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/__generated__/AccountService.d.ts +4 -4
- package/dist/__generated__/DataSourceService.d.ts +22 -0
- package/dist/__generated__/LayersService.d.ts +2 -2
- package/dist/__generated__/PrintService.d.ts +3 -3
- package/dist/__generated__/ProjectsService.d.ts +2 -2
- package/dist/__generated__/StatisticService.d.ts +2 -2
- package/dist/__generated__/TablesService.d.ts +2 -2
- package/dist/__generated__/WmsServerService.d.ts +2 -2
- package/dist/__generated__/data-contracts.d.ts +381 -253
- package/dist/api.cjs.development.js +17 -25
- 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 +225 -233
- package/dist/api.esm.js.map +1 -1
- package/dist/services/Statistic.d.ts +2 -2
- package/package.json +2 -2
package/dist/api.esm.js
CHANGED
|
@@ -30,9 +30,6 @@ 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
|
-
});
|
|
36
33
|
return Constructor;
|
|
37
34
|
}
|
|
38
35
|
|
|
@@ -66,9 +63,6 @@ function _inherits(subClass, superClass) {
|
|
|
66
63
|
configurable: true
|
|
67
64
|
}
|
|
68
65
|
});
|
|
69
|
-
Object.defineProperty(subClass, "prototype", {
|
|
70
|
-
writable: false
|
|
71
|
-
});
|
|
72
66
|
if (superClass) _setPrototypeOf(subClass, superClass);
|
|
73
67
|
}
|
|
74
68
|
|
|
@@ -127,8 +121,6 @@ function _assertThisInitialized(self) {
|
|
|
127
121
|
function _possibleConstructorReturn(self, call) {
|
|
128
122
|
if (call && (typeof call === "object" || typeof call === "function")) {
|
|
129
123
|
return call;
|
|
130
|
-
} else if (call !== void 0) {
|
|
131
|
-
throw new TypeError("Derived constructors may only return object or undefined");
|
|
132
124
|
}
|
|
133
125
|
|
|
134
126
|
return _assertThisInitialized(self);
|
|
@@ -162,7 +154,7 @@ function _superPropBase(object, property) {
|
|
|
162
154
|
return object;
|
|
163
155
|
}
|
|
164
156
|
|
|
165
|
-
function _get() {
|
|
157
|
+
function _get(target, property, receiver) {
|
|
166
158
|
if (typeof Reflect !== "undefined" && Reflect.get) {
|
|
167
159
|
_get = Reflect.get;
|
|
168
160
|
} else {
|
|
@@ -173,14 +165,14 @@ function _get() {
|
|
|
173
165
|
var desc = Object.getOwnPropertyDescriptor(base, property);
|
|
174
166
|
|
|
175
167
|
if (desc.get) {
|
|
176
|
-
return desc.get.call(
|
|
168
|
+
return desc.get.call(receiver);
|
|
177
169
|
}
|
|
178
170
|
|
|
179
171
|
return desc.value;
|
|
180
172
|
};
|
|
181
173
|
}
|
|
182
174
|
|
|
183
|
-
return _get
|
|
175
|
+
return _get(target, property, receiver || target);
|
|
184
176
|
}
|
|
185
177
|
|
|
186
178
|
let HttpClient = /*#__PURE__*/function () {
|
|
@@ -1167,7 +1159,7 @@ let AccountService = /*#__PURE__*/function (_Service) {
|
|
|
1167
1159
|
}, {
|
|
1168
1160
|
key: "authenticate",
|
|
1169
1161
|
value: function authenticate(query, data) {
|
|
1170
|
-
return this.http.post("/account/login", data, query).
|
|
1162
|
+
return this.http.post("/account/login", data, query).json();
|
|
1171
1163
|
}
|
|
1172
1164
|
/**
|
|
1173
1165
|
* No description
|
|
@@ -1182,8 +1174,8 @@ let AccountService = /*#__PURE__*/function (_Service) {
|
|
|
1182
1174
|
|
|
1183
1175
|
}, {
|
|
1184
1176
|
key: "refreshToken",
|
|
1185
|
-
value: function refreshToken() {
|
|
1186
|
-
return this.http.post("/account/refresh-token",
|
|
1177
|
+
value: function refreshToken(data) {
|
|
1178
|
+
return this.http.post("/account/refresh-token", data).text();
|
|
1187
1179
|
}
|
|
1188
1180
|
/**
|
|
1189
1181
|
* No description
|
|
@@ -1215,7 +1207,7 @@ let AccountService = /*#__PURE__*/function (_Service) {
|
|
|
1215
1207
|
}, {
|
|
1216
1208
|
key: "ldapLogin",
|
|
1217
1209
|
value: function ldapLogin(data) {
|
|
1218
|
-
return this.http.post("/account/external/login/ldap", data).
|
|
1210
|
+
return this.http.post("/account/external/login/ldap", data).json();
|
|
1219
1211
|
}
|
|
1220
1212
|
/**
|
|
1221
1213
|
* No description
|
|
@@ -5054,8 +5046,8 @@ let Notification = /*#__PURE__*/function (_NotificationService) {
|
|
|
5054
5046
|
|| event.code === 4002
|
|
5055
5047
|
/* InvalidSession */
|
|
5056
5048
|
) {
|
|
5057
|
-
|
|
5058
|
-
|
|
5049
|
+
_this.connectStatus = ConnectionStatus.SessionClosed;
|
|
5050
|
+
} else if (_this.reconnectTries < _this.MAX_WS_RECONNECT_TRIES) {
|
|
5059
5051
|
_this.connectStatus = ConnectionStatus.Break;
|
|
5060
5052
|
_this.reconnectTries++;
|
|
5061
5053
|
|
|
@@ -5889,12 +5881,12 @@ let Resources = /*#__PURE__*/function () {
|
|
|
5889
5881
|
}, {
|
|
5890
5882
|
key: "getDependentNames",
|
|
5891
5883
|
value: function getDependentNames(deps, depType) {
|
|
5892
|
-
return deps.filter(_ref => {
|
|
5884
|
+
return deps.filter((_ref) => {
|
|
5893
5885
|
let {
|
|
5894
5886
|
type
|
|
5895
5887
|
} = _ref;
|
|
5896
5888
|
return type === depType;
|
|
5897
|
-
}).map(_ref2 => {
|
|
5889
|
+
}).map((_ref2) => {
|
|
5898
5890
|
let {
|
|
5899
5891
|
name
|
|
5900
5892
|
} = _ref2;
|
|
@@ -6350,7 +6342,7 @@ let Scheduler = /*#__PURE__*/function (_SchedulerService) {
|
|
|
6350
6342
|
const taskProgress = await this.getTaskProgress(id);
|
|
6351
6343
|
this.resolveTaskStatus(taskProgress, resolve, reject);
|
|
6352
6344
|
|
|
6353
|
-
const taskResultCallback = async _ref => {
|
|
6345
|
+
const taskResultCallback = async (_ref) => {
|
|
6354
6346
|
let {
|
|
6355
6347
|
data
|
|
6356
6348
|
} = _ref;
|
|
@@ -8062,47 +8054,47 @@ function isFeatureLayer(layer) {
|
|
|
8062
8054
|
|
|
8063
8055
|
/**
|
|
8064
8056
|
*
|
|
8065
|
-
|
|
8057
|
+
|
|
8066
8058
|
None
|
|
8067
|
-
|
|
8059
|
+
|
|
8068
8060
|
Array
|
|
8069
|
-
|
|
8061
|
+
|
|
8070
8062
|
Min
|
|
8071
|
-
|
|
8063
|
+
|
|
8072
8064
|
Max
|
|
8073
|
-
|
|
8065
|
+
|
|
8074
8066
|
Avg
|
|
8075
|
-
|
|
8067
|
+
|
|
8076
8068
|
Sum
|
|
8077
|
-
|
|
8069
|
+
|
|
8078
8070
|
Extent
|
|
8079
|
-
|
|
8071
|
+
|
|
8080
8072
|
H3
|
|
8081
|
-
|
|
8073
|
+
|
|
8082
8074
|
Count
|
|
8083
|
-
|
|
8075
|
+
|
|
8084
8076
|
TotalCount
|
|
8085
|
-
|
|
8077
|
+
|
|
8086
8078
|
DistinctCount
|
|
8087
|
-
|
|
8079
|
+
|
|
8088
8080
|
First
|
|
8089
|
-
|
|
8081
|
+
|
|
8090
8082
|
Last
|
|
8091
|
-
|
|
8083
|
+
|
|
8092
8084
|
Median
|
|
8093
|
-
|
|
8085
|
+
|
|
8094
8086
|
Mod
|
|
8095
|
-
|
|
8087
|
+
|
|
8096
8088
|
StdDeviation
|
|
8097
|
-
|
|
8089
|
+
|
|
8098
8090
|
SumOfProduct
|
|
8099
|
-
|
|
8091
|
+
|
|
8100
8092
|
OnlyValue
|
|
8101
|
-
|
|
8093
|
+
|
|
8102
8094
|
WeightedAvg
|
|
8103
|
-
|
|
8095
|
+
|
|
8104
8096
|
DensityIndicators
|
|
8105
|
-
|
|
8097
|
+
|
|
8106
8098
|
DividedSum
|
|
8107
8099
|
*/
|
|
8108
8100
|
var AggregationFunction;
|
|
@@ -8132,13 +8124,13 @@ var AggregationFunction;
|
|
|
8132
8124
|
})(AggregationFunction || (AggregationFunction = {}));
|
|
8133
8125
|
/**
|
|
8134
8126
|
*
|
|
8135
|
-
|
|
8127
|
+
|
|
8136
8128
|
Unknown
|
|
8137
|
-
|
|
8129
|
+
|
|
8138
8130
|
Icon
|
|
8139
|
-
|
|
8131
|
+
|
|
8140
8132
|
PNG
|
|
8141
|
-
|
|
8133
|
+
|
|
8142
8134
|
SVG
|
|
8143
8135
|
*/
|
|
8144
8136
|
|
|
@@ -8153,13 +8145,13 @@ var AttributeIconType;
|
|
|
8153
8145
|
})(AttributeIconType || (AttributeIconType = {}));
|
|
8154
8146
|
/**
|
|
8155
8147
|
*
|
|
8156
|
-
|
|
8148
|
+
|
|
8157
8149
|
None
|
|
8158
|
-
|
|
8150
|
+
|
|
8159
8151
|
SelectFromHandBook
|
|
8160
|
-
|
|
8152
|
+
|
|
8161
8153
|
SelectFromRange
|
|
8162
|
-
|
|
8154
|
+
|
|
8163
8155
|
ViewHandBook
|
|
8164
8156
|
*/
|
|
8165
8157
|
|
|
@@ -8174,31 +8166,31 @@ var AttributeSelectorType;
|
|
|
8174
8166
|
})(AttributeSelectorType || (AttributeSelectorType = {}));
|
|
8175
8167
|
/**
|
|
8176
8168
|
*
|
|
8177
|
-
|
|
8169
|
+
|
|
8178
8170
|
Unknown
|
|
8179
|
-
|
|
8171
|
+
|
|
8180
8172
|
String
|
|
8181
|
-
|
|
8173
|
+
|
|
8182
8174
|
Int32
|
|
8183
|
-
|
|
8175
|
+
|
|
8184
8176
|
Int64
|
|
8185
|
-
|
|
8177
|
+
|
|
8186
8178
|
Double
|
|
8187
|
-
|
|
8179
|
+
|
|
8188
8180
|
DateTime
|
|
8189
|
-
|
|
8181
|
+
|
|
8190
8182
|
Boolean
|
|
8191
|
-
|
|
8183
|
+
|
|
8192
8184
|
Point
|
|
8193
|
-
|
|
8185
|
+
|
|
8194
8186
|
Polyline
|
|
8195
|
-
|
|
8187
|
+
|
|
8196
8188
|
MultiPolygon
|
|
8197
|
-
|
|
8189
|
+
|
|
8198
8190
|
Multipoint
|
|
8199
|
-
|
|
8191
|
+
|
|
8200
8192
|
H3Index
|
|
8201
|
-
|
|
8193
|
+
|
|
8202
8194
|
Json
|
|
8203
8195
|
*/
|
|
8204
8196
|
|
|
@@ -8224,9 +8216,9 @@ var AttributeType;
|
|
|
8224
8216
|
* An authorization grant is a credential representing the resource
|
|
8225
8217
|
owner's authorization (to access its protected resources) used by the
|
|
8226
8218
|
client to obtain an access token.
|
|
8227
|
-
|
|
8219
|
+
|
|
8228
8220
|
authorization_code
|
|
8229
|
-
|
|
8221
|
+
|
|
8230
8222
|
refresh_token
|
|
8231
8223
|
*/
|
|
8232
8224
|
|
|
@@ -8239,17 +8231,17 @@ var AuthorizationGrant;
|
|
|
8239
8231
|
})(AuthorizationGrant || (AuthorizationGrant = {}));
|
|
8240
8232
|
/**
|
|
8241
8233
|
*
|
|
8242
|
-
|
|
8234
|
+
|
|
8243
8235
|
None
|
|
8244
|
-
|
|
8236
|
+
|
|
8245
8237
|
Map
|
|
8246
|
-
|
|
8238
|
+
|
|
8247
8239
|
Layer
|
|
8248
|
-
|
|
8240
|
+
|
|
8249
8241
|
Table
|
|
8250
|
-
|
|
8242
|
+
|
|
8251
8243
|
File
|
|
8252
|
-
|
|
8244
|
+
|
|
8253
8245
|
TaskPrototype
|
|
8254
8246
|
*/
|
|
8255
8247
|
|
|
@@ -8266,15 +8258,15 @@ var CatalogResourceType;
|
|
|
8266
8258
|
})(CatalogResourceType || (CatalogResourceType = {}));
|
|
8267
8259
|
/**
|
|
8268
8260
|
* Describes classification methods.
|
|
8269
|
-
|
|
8261
|
+
|
|
8270
8262
|
none
|
|
8271
|
-
|
|
8263
|
+
|
|
8272
8264
|
naturalBreaks
|
|
8273
|
-
|
|
8265
|
+
|
|
8274
8266
|
equalInterval
|
|
8275
|
-
|
|
8267
|
+
|
|
8276
8268
|
quantile
|
|
8277
|
-
|
|
8269
|
+
|
|
8278
8270
|
unique
|
|
8279
8271
|
*/
|
|
8280
8272
|
|
|
@@ -8290,11 +8282,11 @@ var ClassificationType;
|
|
|
8290
8282
|
})(ClassificationType || (ClassificationType = {}));
|
|
8291
8283
|
/**
|
|
8292
8284
|
*
|
|
8293
|
-
|
|
8285
|
+
|
|
8294
8286
|
decimal
|
|
8295
|
-
|
|
8287
|
+
|
|
8296
8288
|
dateTime
|
|
8297
|
-
|
|
8289
|
+
|
|
8298
8290
|
text
|
|
8299
8291
|
*/
|
|
8300
8292
|
|
|
@@ -8308,55 +8300,55 @@ var ClassifyAttributeType;
|
|
|
8308
8300
|
})(ClassifyAttributeType || (ClassifyAttributeType = {}));
|
|
8309
8301
|
/**
|
|
8310
8302
|
*
|
|
8311
|
-
|
|
8303
|
+
|
|
8312
8304
|
Unknown
|
|
8313
|
-
|
|
8305
|
+
|
|
8314
8306
|
SerializeError
|
|
8315
|
-
|
|
8307
|
+
|
|
8316
8308
|
InvalidDataService
|
|
8317
|
-
|
|
8309
|
+
|
|
8318
8310
|
InvalidConfiguration
|
|
8319
|
-
|
|
8311
|
+
|
|
8320
8312
|
InvalidDataServiceName
|
|
8321
|
-
|
|
8313
|
+
|
|
8322
8314
|
InvalidTableName
|
|
8323
|
-
|
|
8315
|
+
|
|
8324
8316
|
InvalidLayerName
|
|
8325
|
-
|
|
8317
|
+
|
|
8326
8318
|
ResourceNotFound
|
|
8327
|
-
|
|
8319
|
+
|
|
8328
8320
|
InvalidCondition
|
|
8329
|
-
|
|
8321
|
+
|
|
8330
8322
|
InvalidAttributes
|
|
8331
|
-
|
|
8323
|
+
|
|
8332
8324
|
InvalidIdAttribute
|
|
8333
|
-
|
|
8325
|
+
|
|
8334
8326
|
InvalidGeometryAttribute
|
|
8335
|
-
|
|
8327
|
+
|
|
8336
8328
|
InvalidGeometryAttributeType
|
|
8337
|
-
|
|
8329
|
+
|
|
8338
8330
|
InvalidColumnName
|
|
8339
|
-
|
|
8331
|
+
|
|
8340
8332
|
InvalidIdColumnSettings
|
|
8341
|
-
|
|
8333
|
+
|
|
8342
8334
|
ColumnNotExistsInTable
|
|
8343
|
-
|
|
8335
|
+
|
|
8344
8336
|
InvalidStyle
|
|
8345
|
-
|
|
8337
|
+
|
|
8346
8338
|
InvalidLayerType
|
|
8347
|
-
|
|
8339
|
+
|
|
8348
8340
|
ColumnLoadingError
|
|
8349
|
-
|
|
8341
|
+
|
|
8350
8342
|
InvalidAttributeFormat
|
|
8351
|
-
|
|
8343
|
+
|
|
8352
8344
|
DataSourceNotFound
|
|
8353
|
-
|
|
8345
|
+
|
|
8354
8346
|
DuplicateColumns
|
|
8355
|
-
|
|
8347
|
+
|
|
8356
8348
|
DuplicateAttributes
|
|
8357
|
-
|
|
8349
|
+
|
|
8358
8350
|
TableWithoutColumns
|
|
8359
|
-
|
|
8351
|
+
|
|
8360
8352
|
InvalidTableReferenceConfiguration
|
|
8361
8353
|
*/
|
|
8362
8354
|
|
|
@@ -8392,7 +8384,7 @@ var ConfigurationErrorEnum;
|
|
|
8392
8384
|
})(ConfigurationErrorEnum || (ConfigurationErrorEnum = {}));
|
|
8393
8385
|
/**
|
|
8394
8386
|
* Data source type.
|
|
8395
|
-
|
|
8387
|
+
|
|
8396
8388
|
Postgres
|
|
8397
8389
|
*/
|
|
8398
8390
|
|
|
@@ -8404,15 +8396,15 @@ var DataSourceType;
|
|
|
8404
8396
|
})(DataSourceType || (DataSourceType = {}));
|
|
8405
8397
|
/**
|
|
8406
8398
|
* Type of the error.
|
|
8407
|
-
|
|
8399
|
+
|
|
8408
8400
|
ResourceLimitExceeded
|
|
8409
|
-
|
|
8401
|
+
|
|
8410
8402
|
ResourceNotFound
|
|
8411
|
-
|
|
8403
|
+
|
|
8412
8404
|
InternalError
|
|
8413
|
-
|
|
8405
|
+
|
|
8414
8406
|
BadRequest
|
|
8415
|
-
|
|
8407
|
+
|
|
8416
8408
|
DuplicateContent
|
|
8417
8409
|
*/
|
|
8418
8410
|
|
|
@@ -8463,9 +8455,9 @@ var ErrorType;
|
|
|
8463
8455
|
})(ErrorType || (ErrorType = {}));
|
|
8464
8456
|
/**
|
|
8465
8457
|
* Type of the feature.
|
|
8466
|
-
|
|
8458
|
+
|
|
8467
8459
|
Unknown
|
|
8468
|
-
|
|
8460
|
+
|
|
8469
8461
|
GeometricFeature
|
|
8470
8462
|
*/
|
|
8471
8463
|
|
|
@@ -8478,11 +8470,11 @@ var FeatureType;
|
|
|
8478
8470
|
})(FeatureType || (FeatureType = {}));
|
|
8479
8471
|
/**
|
|
8480
8472
|
* Sets whether font should be styled.
|
|
8481
|
-
|
|
8473
|
+
|
|
8482
8474
|
normal
|
|
8483
|
-
|
|
8475
|
+
|
|
8484
8476
|
oblique
|
|
8485
|
-
|
|
8477
|
+
|
|
8486
8478
|
italic
|
|
8487
8479
|
*/
|
|
8488
8480
|
|
|
@@ -8496,27 +8488,27 @@ var FontStyle;
|
|
|
8496
8488
|
})(FontStyle || (FontStyle = {}));
|
|
8497
8489
|
/**
|
|
8498
8490
|
* Specifies the weight (or boldness) of the font.
|
|
8499
|
-
|
|
8491
|
+
|
|
8500
8492
|
Thin
|
|
8501
|
-
|
|
8493
|
+
|
|
8502
8494
|
ExtraLight
|
|
8503
|
-
|
|
8495
|
+
|
|
8504
8496
|
Light
|
|
8505
|
-
|
|
8497
|
+
|
|
8506
8498
|
SemiLight
|
|
8507
|
-
|
|
8499
|
+
|
|
8508
8500
|
Normal
|
|
8509
|
-
|
|
8501
|
+
|
|
8510
8502
|
Medium
|
|
8511
|
-
|
|
8503
|
+
|
|
8512
8504
|
DemiBold
|
|
8513
|
-
|
|
8505
|
+
|
|
8514
8506
|
Bold
|
|
8515
|
-
|
|
8507
|
+
|
|
8516
8508
|
ExtraBold
|
|
8517
|
-
|
|
8509
|
+
|
|
8518
8510
|
Black
|
|
8519
|
-
|
|
8511
|
+
|
|
8520
8512
|
ExtraBlack
|
|
8521
8513
|
*/
|
|
8522
8514
|
|
|
@@ -8538,17 +8530,17 @@ var FontWeight;
|
|
|
8538
8530
|
})(FontWeight || (FontWeight = {}));
|
|
8539
8531
|
/**
|
|
8540
8532
|
*
|
|
8541
|
-
|
|
8533
|
+
|
|
8542
8534
|
unknown
|
|
8543
|
-
|
|
8535
|
+
|
|
8544
8536
|
point
|
|
8545
|
-
|
|
8537
|
+
|
|
8546
8538
|
polyline
|
|
8547
|
-
|
|
8539
|
+
|
|
8548
8540
|
multipolygon
|
|
8549
|
-
|
|
8541
|
+
|
|
8550
8542
|
envelope
|
|
8551
|
-
|
|
8543
|
+
|
|
8552
8544
|
multipoint
|
|
8553
8545
|
*/
|
|
8554
8546
|
|
|
@@ -8565,13 +8557,13 @@ var GeometryType;
|
|
|
8565
8557
|
})(GeometryType || (GeometryType = {}));
|
|
8566
8558
|
/**
|
|
8567
8559
|
* Resource group.
|
|
8568
|
-
|
|
8560
|
+
|
|
8569
8561
|
my
|
|
8570
|
-
|
|
8562
|
+
|
|
8571
8563
|
role
|
|
8572
|
-
|
|
8564
|
+
|
|
8573
8565
|
public
|
|
8574
|
-
|
|
8566
|
+
|
|
8575
8567
|
all
|
|
8576
8568
|
*/
|
|
8577
8569
|
|
|
@@ -8586,13 +8578,13 @@ var Group;
|
|
|
8586
8578
|
})(Group || (Group = {}));
|
|
8587
8579
|
/**
|
|
8588
8580
|
* Specifies the settings of line cap. This is applied to the beginning and end of each non-closed line.
|
|
8589
|
-
|
|
8581
|
+
|
|
8590
8582
|
Flat
|
|
8591
|
-
|
|
8583
|
+
|
|
8592
8584
|
Square
|
|
8593
|
-
|
|
8585
|
+
|
|
8594
8586
|
Round
|
|
8595
|
-
|
|
8587
|
+
|
|
8596
8588
|
Triangle
|
|
8597
8589
|
*/
|
|
8598
8590
|
|
|
@@ -8607,29 +8599,29 @@ var LineCapStyle;
|
|
|
8607
8599
|
})(LineCapStyle || (LineCapStyle = {}));
|
|
8608
8600
|
/**
|
|
8609
8601
|
* Type of the line ending.
|
|
8610
|
-
|
|
8602
|
+
|
|
8611
8603
|
none
|
|
8612
|
-
|
|
8604
|
+
|
|
8613
8605
|
arrow
|
|
8614
|
-
|
|
8606
|
+
|
|
8615
8607
|
filledArrow
|
|
8616
|
-
|
|
8608
|
+
|
|
8617
8609
|
square
|
|
8618
|
-
|
|
8610
|
+
|
|
8619
8611
|
filledSquare
|
|
8620
|
-
|
|
8612
|
+
|
|
8621
8613
|
circle
|
|
8622
|
-
|
|
8614
|
+
|
|
8623
8615
|
filledCircle
|
|
8624
|
-
|
|
8616
|
+
|
|
8625
8617
|
diamond
|
|
8626
|
-
|
|
8618
|
+
|
|
8627
8619
|
filledDiamond
|
|
8628
|
-
|
|
8620
|
+
|
|
8629
8621
|
roundSquare
|
|
8630
|
-
|
|
8622
|
+
|
|
8631
8623
|
filledRoundSquare
|
|
8632
|
-
|
|
8624
|
+
|
|
8633
8625
|
svg
|
|
8634
8626
|
*/
|
|
8635
8627
|
|
|
@@ -8652,11 +8644,11 @@ var LineEndingType;
|
|
|
8652
8644
|
})(LineEndingType || (LineEndingType = {}));
|
|
8653
8645
|
/**
|
|
8654
8646
|
* Specifies the settings of lines join. This is applied to corners in lines and rectangles.
|
|
8655
|
-
|
|
8647
|
+
|
|
8656
8648
|
Miter
|
|
8657
|
-
|
|
8649
|
+
|
|
8658
8650
|
Bevel
|
|
8659
|
-
|
|
8651
|
+
|
|
8660
8652
|
Round
|
|
8661
8653
|
*/
|
|
8662
8654
|
|
|
@@ -8670,15 +8662,15 @@ var LineJoinType;
|
|
|
8670
8662
|
})(LineJoinType || (LineJoinType = {}));
|
|
8671
8663
|
/**
|
|
8672
8664
|
*
|
|
8673
|
-
|
|
8665
|
+
|
|
8674
8666
|
Unknown
|
|
8675
|
-
|
|
8667
|
+
|
|
8676
8668
|
union
|
|
8677
|
-
|
|
8669
|
+
|
|
8678
8670
|
intersection
|
|
8679
|
-
|
|
8671
|
+
|
|
8680
8672
|
subtraction
|
|
8681
|
-
|
|
8673
|
+
|
|
8682
8674
|
symDifference
|
|
8683
8675
|
*/
|
|
8684
8676
|
|
|
@@ -8694,27 +8686,27 @@ var Operation;
|
|
|
8694
8686
|
})(Operation || (Operation = {}));
|
|
8695
8687
|
/**
|
|
8696
8688
|
* Filter exists resources by owner.
|
|
8697
|
-
|
|
8689
|
+
|
|
8698
8690
|
My
|
|
8699
|
-
|
|
8691
|
+
|
|
8700
8692
|
Shared
|
|
8701
|
-
|
|
8693
|
+
|
|
8702
8694
|
Public
|
|
8703
8695
|
*/
|
|
8704
8696
|
|
|
8705
8697
|
|
|
8706
|
-
var
|
|
8698
|
+
var OwnerFilter;
|
|
8707
8699
|
|
|
8708
|
-
(function (
|
|
8709
|
-
|
|
8710
|
-
|
|
8711
|
-
|
|
8712
|
-
})(
|
|
8700
|
+
(function (OwnerFilter) {
|
|
8701
|
+
OwnerFilter["My"] = "My";
|
|
8702
|
+
OwnerFilter["Shared"] = "Shared";
|
|
8703
|
+
OwnerFilter["Public"] = "Public";
|
|
8704
|
+
})(OwnerFilter || (OwnerFilter = {}));
|
|
8713
8705
|
/**
|
|
8714
8706
|
* Influences the y direction of the tile coordinates. The global-mercator (aka Spherical Mercator) profile is assumed.
|
|
8715
|
-
|
|
8707
|
+
|
|
8716
8708
|
xyz
|
|
8717
|
-
|
|
8709
|
+
|
|
8718
8710
|
tms
|
|
8719
8711
|
*/
|
|
8720
8712
|
|
|
@@ -8727,19 +8719,19 @@ var PbfSchema;
|
|
|
8727
8719
|
})(PbfSchema || (PbfSchema = {}));
|
|
8728
8720
|
/**
|
|
8729
8721
|
*
|
|
8730
|
-
|
|
8722
|
+
|
|
8731
8723
|
none
|
|
8732
|
-
|
|
8724
|
+
|
|
8733
8725
|
configure
|
|
8734
|
-
|
|
8726
|
+
|
|
8735
8727
|
write
|
|
8736
|
-
|
|
8728
|
+
|
|
8737
8729
|
read
|
|
8738
|
-
|
|
8730
|
+
|
|
8739
8731
|
read,configure
|
|
8740
|
-
|
|
8732
|
+
|
|
8741
8733
|
read,write
|
|
8742
|
-
|
|
8734
|
+
|
|
8743
8735
|
read,write,configure
|
|
8744
8736
|
*/
|
|
8745
8737
|
|
|
@@ -8757,19 +8749,19 @@ var Permissions;
|
|
|
8757
8749
|
})(Permissions || (Permissions = {}));
|
|
8758
8750
|
/**
|
|
8759
8751
|
* Type of the authorization policy.
|
|
8760
|
-
|
|
8752
|
+
|
|
8761
8753
|
Unknown
|
|
8762
|
-
|
|
8754
|
+
|
|
8763
8755
|
CreateTable
|
|
8764
|
-
|
|
8756
|
+
|
|
8765
8757
|
CreateLayer
|
|
8766
|
-
|
|
8758
|
+
|
|
8767
8759
|
CreateProject
|
|
8768
|
-
|
|
8760
|
+
|
|
8769
8761
|
MaxFeaturesInOneTable
|
|
8770
|
-
|
|
8762
|
+
|
|
8771
8763
|
MaxObjectsToExport
|
|
8772
|
-
|
|
8764
|
+
|
|
8773
8765
|
MaxUploadContentSize
|
|
8774
8766
|
*/
|
|
8775
8767
|
|
|
@@ -8787,11 +8779,11 @@ var PolicyType;
|
|
|
8787
8779
|
})(PolicyType || (PolicyType = {}));
|
|
8788
8780
|
/**
|
|
8789
8781
|
* Stream quality.
|
|
8790
|
-
|
|
8782
|
+
|
|
8791
8783
|
Low
|
|
8792
|
-
|
|
8784
|
+
|
|
8793
8785
|
Medium
|
|
8794
|
-
|
|
8786
|
+
|
|
8795
8787
|
High
|
|
8796
8788
|
*/
|
|
8797
8789
|
|
|
@@ -8805,15 +8797,15 @@ var Quality;
|
|
|
8805
8797
|
})(Quality || (Quality = {}));
|
|
8806
8798
|
/**
|
|
8807
8799
|
* Resources types filter.
|
|
8808
|
-
|
|
8800
|
+
|
|
8809
8801
|
RemoteTileService
|
|
8810
|
-
|
|
8802
|
+
|
|
8811
8803
|
ProxyService
|
|
8812
|
-
|
|
8804
|
+
|
|
8813
8805
|
PostgresLayerService
|
|
8814
|
-
|
|
8806
|
+
|
|
8815
8807
|
QueryLayerService
|
|
8816
|
-
|
|
8808
|
+
|
|
8817
8809
|
TileCatalogTable
|
|
8818
8810
|
*/
|
|
8819
8811
|
|
|
@@ -8829,19 +8821,19 @@ var ResourceSubTypeFilter;
|
|
|
8829
8821
|
})(ResourceSubTypeFilter || (ResourceSubTypeFilter = {}));
|
|
8830
8822
|
/**
|
|
8831
8823
|
*
|
|
8832
|
-
|
|
8824
|
+
|
|
8833
8825
|
Unknown
|
|
8834
|
-
|
|
8826
|
+
|
|
8835
8827
|
table
|
|
8836
|
-
|
|
8828
|
+
|
|
8837
8829
|
layer
|
|
8838
|
-
|
|
8830
|
+
|
|
8839
8831
|
project
|
|
8840
|
-
|
|
8832
|
+
|
|
8841
8833
|
file
|
|
8842
|
-
|
|
8834
|
+
|
|
8843
8835
|
feature
|
|
8844
|
-
|
|
8836
|
+
|
|
8845
8837
|
tag
|
|
8846
8838
|
*/
|
|
8847
8839
|
|
|
@@ -8859,19 +8851,19 @@ var ResourceType;
|
|
|
8859
8851
|
})(ResourceType || (ResourceType = {}));
|
|
8860
8852
|
/**
|
|
8861
8853
|
* Resources types filter.
|
|
8862
|
-
|
|
8854
|
+
|
|
8863
8855
|
Map
|
|
8864
|
-
|
|
8856
|
+
|
|
8865
8857
|
Layer
|
|
8866
|
-
|
|
8858
|
+
|
|
8867
8859
|
Table
|
|
8868
|
-
|
|
8860
|
+
|
|
8869
8861
|
RasterCatalog
|
|
8870
|
-
|
|
8862
|
+
|
|
8871
8863
|
ProxyService
|
|
8872
|
-
|
|
8864
|
+
|
|
8873
8865
|
RemoteTileService
|
|
8874
|
-
|
|
8866
|
+
|
|
8875
8867
|
File
|
|
8876
8868
|
*/
|
|
8877
8869
|
|
|
@@ -8897,9 +8889,9 @@ var ResourceTypeLink;
|
|
|
8897
8889
|
})(ResourceTypeLink || (ResourceTypeLink = {}));
|
|
8898
8890
|
/**
|
|
8899
8891
|
* Response type.
|
|
8900
|
-
|
|
8892
|
+
|
|
8901
8893
|
code
|
|
8902
|
-
|
|
8894
|
+
|
|
8903
8895
|
token
|
|
8904
8896
|
*/
|
|
8905
8897
|
|
|
@@ -8912,21 +8904,21 @@ var ResponseType;
|
|
|
8912
8904
|
})(ResponseType || (ResponseType = {}));
|
|
8913
8905
|
/**
|
|
8914
8906
|
* Status of the server task.
|
|
8915
|
-
|
|
8907
|
+
|
|
8916
8908
|
None
|
|
8917
|
-
|
|
8909
|
+
|
|
8918
8910
|
Scheduled
|
|
8919
|
-
|
|
8911
|
+
|
|
8920
8912
|
Planning
|
|
8921
|
-
|
|
8913
|
+
|
|
8922
8914
|
Executing
|
|
8923
|
-
|
|
8915
|
+
|
|
8924
8916
|
Completed
|
|
8925
|
-
|
|
8917
|
+
|
|
8926
8918
|
Failed
|
|
8927
|
-
|
|
8919
|
+
|
|
8928
8920
|
Canceled
|
|
8929
|
-
|
|
8921
|
+
|
|
8930
8922
|
Timeout
|
|
8931
8923
|
*/
|
|
8932
8924
|
|
|
@@ -8945,11 +8937,11 @@ var ServerTaskStatus;
|
|
|
8945
8937
|
})(ServerTaskStatus || (ServerTaskStatus = {}));
|
|
8946
8938
|
/**
|
|
8947
8939
|
*
|
|
8948
|
-
|
|
8940
|
+
|
|
8949
8941
|
Basic
|
|
8950
|
-
|
|
8942
|
+
|
|
8951
8943
|
PreserveTopology
|
|
8952
|
-
|
|
8944
|
+
|
|
8953
8945
|
VW
|
|
8954
8946
|
*/
|
|
8955
8947
|
|
|
@@ -8963,13 +8955,13 @@ var SimplifyType;
|
|
|
8963
8955
|
})(SimplifyType || (SimplifyType = {}));
|
|
8964
8956
|
/**
|
|
8965
8957
|
*
|
|
8966
|
-
|
|
8958
|
+
|
|
8967
8959
|
None
|
|
8968
|
-
|
|
8960
|
+
|
|
8969
8961
|
Image
|
|
8970
|
-
|
|
8962
|
+
|
|
8971
8963
|
PkkCode
|
|
8972
|
-
|
|
8964
|
+
|
|
8973
8965
|
Attachments
|
|
8974
8966
|
*/
|
|
8975
8967
|
|
|
@@ -8984,9 +8976,9 @@ var StringSubType;
|
|
|
8984
8976
|
})(StringSubType || (StringSubType = {}));
|
|
8985
8977
|
/**
|
|
8986
8978
|
* Task owner group.
|
|
8987
|
-
|
|
8979
|
+
|
|
8988
8980
|
my
|
|
8989
|
-
|
|
8981
|
+
|
|
8990
8982
|
all
|
|
8991
8983
|
*/
|
|
8992
8984
|
|
|
@@ -8999,13 +8991,13 @@ var TaskGroup;
|
|
|
8999
8991
|
})(TaskGroup || (TaskGroup = {}));
|
|
9000
8992
|
/**
|
|
9001
8993
|
* Sets the horizontal alignment of text.
|
|
9002
|
-
|
|
8994
|
+
|
|
9003
8995
|
right
|
|
9004
|
-
|
|
8996
|
+
|
|
9005
8997
|
left
|
|
9006
|
-
|
|
8998
|
+
|
|
9007
8999
|
center
|
|
9008
|
-
|
|
9000
|
+
|
|
9009
9001
|
justified
|
|
9010
9002
|
*/
|
|
9011
9003
|
|
|
@@ -9020,11 +9012,11 @@ var TextAlignment;
|
|
|
9020
9012
|
})(TextAlignment || (TextAlignment = {}));
|
|
9021
9013
|
/**
|
|
9022
9014
|
* Sets the vertical alignment of text.
|
|
9023
|
-
|
|
9015
|
+
|
|
9024
9016
|
top
|
|
9025
|
-
|
|
9017
|
+
|
|
9026
9018
|
bottom
|
|
9027
|
-
|
|
9019
|
+
|
|
9028
9020
|
middle
|
|
9029
9021
|
*/
|
|
9030
9022
|
|
|
@@ -9037,5 +9029,5 @@ var TextVerticalAlignment;
|
|
|
9037
9029
|
TextVerticalAlignment["Middle"] = "middle";
|
|
9038
9030
|
})(TextVerticalAlignment || (TextVerticalAlignment = {}));
|
|
9039
9031
|
|
|
9040
|
-
export { Account, AccountPreview, AggregationFunction, Api, ApiEvent, AttributeIconType, AttributeSelectorType, AttributeType, AuthorizationGrant, BulkOperations, Cameras, CatalogResourceType, ClassificationType, ClassifyAttributeType, ClientSettings, ConfigurationErrorEnum, ConnectionStatus, DataSourceType, 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,
|
|
9032
|
+
export { Account, AccountPreview, AggregationFunction, Api, ApiEvent, AttributeIconType, AttributeSelectorType, AttributeType, AuthorizationGrant, BulkOperations, Cameras, CatalogResourceType, ClassificationType, ClassifyAttributeType, ClientSettings, ConfigurationErrorEnum, ConnectionStatus, DataSourceType, 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, ResourceSubTypeFilter, ResourceType, ResourceTypeFilter, 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 };
|
|
9041
9033
|
//# sourceMappingURL=api.esm.js.map
|