@evergis/api 3.0.193 → 3.0.195
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 +3 -2
- package/dist/__generated__/AccountService.d.ts +35 -2
- package/dist/__generated__/CatalogService.d.ts +9 -31
- package/dist/__generated__/LayersService.d.ts +2 -2
- package/dist/__generated__/ProjectsService.d.ts +2 -2
- package/dist/__generated__/StatisticService.d.ts +2 -2
- package/dist/__generated__/TablesService.d.ts +24 -13
- package/dist/__generated__/TagsService.d.ts +2 -2
- package/dist/__generated__/WmsServerService.d.ts +2 -2
- package/dist/__generated__/data-contracts.d.ts +400 -277
- package/dist/api.cjs.development.js +146 -72
- 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 +392 -258
- package/dist/api.esm.js.map +1 -1
- package/dist/services/Account.d.ts +2 -2
- package/dist/services/Statistic.d.ts +2 -2
- 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
|
let HttpClient = /*#__PURE__*/function () {
|
|
@@ -540,37 +548,8 @@ let CatalogService = /*#__PURE__*/function (_Service) {
|
|
|
540
548
|
}
|
|
541
549
|
|
|
542
550
|
_createClass(CatalogService, [{
|
|
543
|
-
key: "
|
|
551
|
+
key: "getTags",
|
|
544
552
|
value:
|
|
545
|
-
/**
|
|
546
|
-
* No description
|
|
547
|
-
*
|
|
548
|
-
* @tags Catalog
|
|
549
|
-
* @name GetAll
|
|
550
|
-
* @operationId CatalogController_GetAll
|
|
551
|
-
* @summary Get all resource with given.
|
|
552
|
-
* @request GET:/resources
|
|
553
|
-
* @response `200` OK
|
|
554
|
-
*/
|
|
555
|
-
function getAll(query) {
|
|
556
|
-
return this.http.get("/resources", query).json();
|
|
557
|
-
}
|
|
558
|
-
/**
|
|
559
|
-
* No description
|
|
560
|
-
*
|
|
561
|
-
* @tags Catalog
|
|
562
|
-
* @name PostGetAll
|
|
563
|
-
* @operationId CatalogController_PostGetAll
|
|
564
|
-
* @summary Get all resource with given.
|
|
565
|
-
* @request POST:/resources
|
|
566
|
-
* @response `200` OK
|
|
567
|
-
*/
|
|
568
|
-
|
|
569
|
-
}, {
|
|
570
|
-
key: "postGetAll",
|
|
571
|
-
value: function postGetAll(query, data) {
|
|
572
|
-
return this.http.post("/resources", data, query).json();
|
|
573
|
-
}
|
|
574
553
|
/**
|
|
575
554
|
* No description
|
|
576
555
|
*
|
|
@@ -581,10 +560,7 @@ let CatalogService = /*#__PURE__*/function (_Service) {
|
|
|
581
560
|
* @request GET:/resources/tags
|
|
582
561
|
* @response `200` OK
|
|
583
562
|
*/
|
|
584
|
-
|
|
585
|
-
}, {
|
|
586
|
-
key: "getTags",
|
|
587
|
-
value: function getTags(query) {
|
|
563
|
+
function getTags(query) {
|
|
588
564
|
return this.http.get("/resources/tags", query).json();
|
|
589
565
|
}
|
|
590
566
|
/**
|
|
@@ -607,17 +583,17 @@ let CatalogService = /*#__PURE__*/function (_Service) {
|
|
|
607
583
|
* No description
|
|
608
584
|
*
|
|
609
585
|
* @tags Catalog
|
|
610
|
-
* @name
|
|
611
|
-
* @operationId
|
|
612
|
-
* @summary
|
|
613
|
-
* @request POST:/resources
|
|
586
|
+
* @name PostGetAll
|
|
587
|
+
* @operationId CatalogController_PostGetAll
|
|
588
|
+
* @summary Get all resource with given.
|
|
589
|
+
* @request POST:/resources
|
|
614
590
|
* @response `200` OK
|
|
615
591
|
*/
|
|
616
592
|
|
|
617
593
|
}, {
|
|
618
|
-
key: "
|
|
619
|
-
value: function
|
|
620
|
-
return this.http.post("/resources
|
|
594
|
+
key: "postGetAll",
|
|
595
|
+
value: function postGetAll(query, data) {
|
|
596
|
+
return this.http.post("/resources", data, query).json();
|
|
621
597
|
}
|
|
622
598
|
/**
|
|
623
599
|
* No description
|
|
@@ -745,7 +721,7 @@ let CatalogService = /*#__PURE__*/function (_Service) {
|
|
|
745
721
|
}, {
|
|
746
722
|
key: "setPermissions1",
|
|
747
723
|
value: function setPermissions1(resourceId, data) {
|
|
748
|
-
return this.http.put("/resources/" + resourceId + "/permissions", data).
|
|
724
|
+
return this.http.put("/resources/" + resourceId + "/permissions", data).then(() => {});
|
|
749
725
|
}
|
|
750
726
|
/**
|
|
751
727
|
* No description
|
|
@@ -761,7 +737,7 @@ let CatalogService = /*#__PURE__*/function (_Service) {
|
|
|
761
737
|
}, {
|
|
762
738
|
key: "setPermissions",
|
|
763
739
|
value: function setPermissions(data) {
|
|
764
|
-
return this.http.put("/resources/permissions", data).
|
|
740
|
+
return this.http.put("/resources/permissions", data).then(() => {});
|
|
765
741
|
}
|
|
766
742
|
/**
|
|
767
743
|
* No description
|
|
@@ -1190,8 +1166,8 @@ let AccountService = /*#__PURE__*/function (_Service) {
|
|
|
1190
1166
|
|
|
1191
1167
|
}, {
|
|
1192
1168
|
key: "authenticate",
|
|
1193
|
-
value: function authenticate(data) {
|
|
1194
|
-
return this.http.post("/account/login", data).text();
|
|
1169
|
+
value: function authenticate(query, data) {
|
|
1170
|
+
return this.http.post("/account/login", data, query).text();
|
|
1195
1171
|
}
|
|
1196
1172
|
/**
|
|
1197
1173
|
* No description
|
|
@@ -1241,6 +1217,54 @@ let AccountService = /*#__PURE__*/function (_Service) {
|
|
|
1241
1217
|
value: function ldapLogin(data) {
|
|
1242
1218
|
return this.http.post("/account/external/login/ldap", data).then(() => {});
|
|
1243
1219
|
}
|
|
1220
|
+
/**
|
|
1221
|
+
* No description
|
|
1222
|
+
*
|
|
1223
|
+
* @tags Account
|
|
1224
|
+
* @name RegisterClient
|
|
1225
|
+
* @operationId AccountController_RegisterClient
|
|
1226
|
+
* @summary Register new client.
|
|
1227
|
+
* @request POST:/account/oauth2/client
|
|
1228
|
+
* @response `200` OK
|
|
1229
|
+
*/
|
|
1230
|
+
|
|
1231
|
+
}, {
|
|
1232
|
+
key: "registerClient",
|
|
1233
|
+
value: function registerClient(data) {
|
|
1234
|
+
return this.http.post("/account/oauth2/client", data).json();
|
|
1235
|
+
}
|
|
1236
|
+
/**
|
|
1237
|
+
* No description
|
|
1238
|
+
*
|
|
1239
|
+
* @tags Account
|
|
1240
|
+
* @name UnbindClient
|
|
1241
|
+
* @operationId AccountController_UnbindClient
|
|
1242
|
+
* @summary Unbind client with id.
|
|
1243
|
+
* @request DELETE:/account/oauth2/client/{clientId}
|
|
1244
|
+
* @response `200` OK
|
|
1245
|
+
*/
|
|
1246
|
+
|
|
1247
|
+
}, {
|
|
1248
|
+
key: "unbindClient",
|
|
1249
|
+
value: function unbindClient(clientId) {
|
|
1250
|
+
return this.http.delete("/account/oauth2/client/" + clientId, null).then(() => {});
|
|
1251
|
+
}
|
|
1252
|
+
/**
|
|
1253
|
+
* No description
|
|
1254
|
+
*
|
|
1255
|
+
* @tags Account
|
|
1256
|
+
* @name Token
|
|
1257
|
+
* @operationId AccountController_Token
|
|
1258
|
+
* @summary Get access token request.
|
|
1259
|
+
* @request POST:/account/oauth2/token
|
|
1260
|
+
* @response `200` OK
|
|
1261
|
+
*/
|
|
1262
|
+
|
|
1263
|
+
}, {
|
|
1264
|
+
key: "token",
|
|
1265
|
+
value: function token(data) {
|
|
1266
|
+
return this.http.post("/account/oauth2/token", data).json();
|
|
1267
|
+
}
|
|
1244
1268
|
/**
|
|
1245
1269
|
* No description
|
|
1246
1270
|
*
|
|
@@ -1415,9 +1439,13 @@ let Account = /*#__PURE__*/function (_AccountService) {
|
|
|
1415
1439
|
|
|
1416
1440
|
_createClass(Account, [{
|
|
1417
1441
|
key: "login",
|
|
1418
|
-
value: async function login(params) {
|
|
1442
|
+
value: async function login(params, authParams) {
|
|
1443
|
+
if (authParams === void 0) {
|
|
1444
|
+
authParams = {};
|
|
1445
|
+
}
|
|
1446
|
+
|
|
1419
1447
|
if (params) {
|
|
1420
|
-
await _get(_getPrototypeOf(Account.prototype), "authenticate", this).call(this, params);
|
|
1448
|
+
await _get(_getPrototypeOf(Account.prototype), "authenticate", this).call(this, authParams, params);
|
|
1421
1449
|
}
|
|
1422
1450
|
}
|
|
1423
1451
|
}, {
|
|
@@ -5018,8 +5046,8 @@ let Notification = /*#__PURE__*/function (_NotificationService) {
|
|
|
5018
5046
|
|| event.code === 4002
|
|
5019
5047
|
/* InvalidSession */
|
|
5020
5048
|
) {
|
|
5021
|
-
|
|
5022
|
-
|
|
5049
|
+
_this.connectStatus = ConnectionStatus.SessionClosed;
|
|
5050
|
+
} else if (_this.reconnectTries < _this.MAX_WS_RECONNECT_TRIES) {
|
|
5023
5051
|
_this.connectStatus = ConnectionStatus.Break;
|
|
5024
5052
|
_this.reconnectTries++;
|
|
5025
5053
|
|
|
@@ -5853,12 +5881,12 @@ let Resources = /*#__PURE__*/function () {
|
|
|
5853
5881
|
}, {
|
|
5854
5882
|
key: "getDependentNames",
|
|
5855
5883
|
value: function getDependentNames(deps, depType) {
|
|
5856
|
-
return deps.filter(
|
|
5884
|
+
return deps.filter(_ref => {
|
|
5857
5885
|
let {
|
|
5858
5886
|
type
|
|
5859
5887
|
} = _ref;
|
|
5860
5888
|
return type === depType;
|
|
5861
|
-
}).map(
|
|
5889
|
+
}).map(_ref2 => {
|
|
5862
5890
|
let {
|
|
5863
5891
|
name
|
|
5864
5892
|
} = _ref2;
|
|
@@ -6314,7 +6342,7 @@ let Scheduler = /*#__PURE__*/function (_SchedulerService) {
|
|
|
6314
6342
|
const taskProgress = await this.getTaskProgress(id);
|
|
6315
6343
|
this.resolveTaskStatus(taskProgress, resolve, reject);
|
|
6316
6344
|
|
|
6317
|
-
const taskResultCallback = async
|
|
6345
|
+
const taskResultCallback = async _ref => {
|
|
6318
6346
|
let {
|
|
6319
6347
|
data
|
|
6320
6348
|
} = _ref;
|
|
@@ -6880,22 +6908,6 @@ let TablesService = /*#__PURE__*/function (_Service) {
|
|
|
6880
6908
|
value: function deleteResources(query) {
|
|
6881
6909
|
return this.http.delete("/tables", null, query).json();
|
|
6882
6910
|
}
|
|
6883
|
-
/**
|
|
6884
|
-
* No description
|
|
6885
|
-
*
|
|
6886
|
-
* @tags Tables
|
|
6887
|
-
* @name CreateViewFromQueryLayer
|
|
6888
|
-
* @operationId TablesController_CreateViewFromQueryLayer
|
|
6889
|
-
* @summary Creates a new view from query layer.
|
|
6890
|
-
* @request POST:/tables/fromLayer
|
|
6891
|
-
* @response `200` OK
|
|
6892
|
-
*/
|
|
6893
|
-
|
|
6894
|
-
}, {
|
|
6895
|
-
key: "createViewFromQueryLayer",
|
|
6896
|
-
value: function createViewFromQueryLayer(data) {
|
|
6897
|
-
return this.http.post("/tables/fromLayer", data).json();
|
|
6898
|
-
}
|
|
6899
6911
|
/**
|
|
6900
6912
|
* No description
|
|
6901
6913
|
*
|
|
@@ -7108,6 +7120,38 @@ let TablesService = /*#__PURE__*/function (_Service) {
|
|
|
7108
7120
|
value: function unmapTable(name) {
|
|
7109
7121
|
return this.http.delete("/tables/map-table/" + name, null).then(() => {});
|
|
7110
7122
|
}
|
|
7123
|
+
/**
|
|
7124
|
+
* No description
|
|
7125
|
+
*
|
|
7126
|
+
* @tags Tables
|
|
7127
|
+
* @name CreateViewFromQueryLayer
|
|
7128
|
+
* @operationId TablesController_CreateViewFromQueryLayer
|
|
7129
|
+
* @summary Creates a new view from query layer.
|
|
7130
|
+
* @request POST:/tables/fromLayer
|
|
7131
|
+
* @response `200` OK
|
|
7132
|
+
*/
|
|
7133
|
+
|
|
7134
|
+
}, {
|
|
7135
|
+
key: "createViewFromQueryLayer",
|
|
7136
|
+
value: function createViewFromQueryLayer(data) {
|
|
7137
|
+
return this.http.post("/tables/fromLayer", data).json();
|
|
7138
|
+
}
|
|
7139
|
+
/**
|
|
7140
|
+
* No description
|
|
7141
|
+
*
|
|
7142
|
+
* @tags Tables
|
|
7143
|
+
* @name CreateViewFromQuery
|
|
7144
|
+
* @operationId TablesController_CreateViewFromQuery
|
|
7145
|
+
* @summary Creates a new view from query.
|
|
7146
|
+
* @request POST:/tables/fromQuery
|
|
7147
|
+
* @response `200` OK
|
|
7148
|
+
*/
|
|
7149
|
+
|
|
7150
|
+
}, {
|
|
7151
|
+
key: "createViewFromQuery",
|
|
7152
|
+
value: function createViewFromQuery(data) {
|
|
7153
|
+
return this.http.post("/tables/fromQuery", data).json();
|
|
7154
|
+
}
|
|
7111
7155
|
/**
|
|
7112
7156
|
* No description
|
|
7113
7157
|
*
|
|
@@ -7541,6 +7585,7 @@ let Api = /*#__PURE__*/function (_EventEmitter) {
|
|
|
7541
7585
|
value: async function init(_ref2) {
|
|
7542
7586
|
let {
|
|
7543
7587
|
authParams,
|
|
7588
|
+
authQueryParams,
|
|
7544
7589
|
connectWs,
|
|
7545
7590
|
initScheduler,
|
|
7546
7591
|
fetchSettings,
|
|
@@ -7548,7 +7593,7 @@ let Api = /*#__PURE__*/function (_EventEmitter) {
|
|
|
7548
7593
|
} = _ref2;
|
|
7549
7594
|
|
|
7550
7595
|
try {
|
|
7551
|
-
await this.account.login(authParams);
|
|
7596
|
+
await this.account.login(authParams, authQueryParams);
|
|
7552
7597
|
|
|
7553
7598
|
if (fetchUser) {
|
|
7554
7599
|
await this.account.fetchCurrentUser();
|
|
@@ -8009,47 +8054,47 @@ function isFeatureLayer(layer) {
|
|
|
8009
8054
|
|
|
8010
8055
|
/**
|
|
8011
8056
|
*
|
|
8012
|
-
|
|
8057
|
+
|
|
8013
8058
|
None
|
|
8014
|
-
|
|
8059
|
+
|
|
8015
8060
|
Array
|
|
8016
|
-
|
|
8061
|
+
|
|
8017
8062
|
Min
|
|
8018
|
-
|
|
8063
|
+
|
|
8019
8064
|
Max
|
|
8020
|
-
|
|
8065
|
+
|
|
8021
8066
|
Avg
|
|
8022
|
-
|
|
8067
|
+
|
|
8023
8068
|
Sum
|
|
8024
|
-
|
|
8069
|
+
|
|
8025
8070
|
Extent
|
|
8026
|
-
|
|
8071
|
+
|
|
8027
8072
|
H3
|
|
8028
|
-
|
|
8073
|
+
|
|
8029
8074
|
Count
|
|
8030
|
-
|
|
8075
|
+
|
|
8031
8076
|
TotalCount
|
|
8032
|
-
|
|
8077
|
+
|
|
8033
8078
|
DistinctCount
|
|
8034
|
-
|
|
8079
|
+
|
|
8035
8080
|
First
|
|
8036
|
-
|
|
8081
|
+
|
|
8037
8082
|
Last
|
|
8038
|
-
|
|
8083
|
+
|
|
8039
8084
|
Median
|
|
8040
|
-
|
|
8085
|
+
|
|
8041
8086
|
Mod
|
|
8042
|
-
|
|
8087
|
+
|
|
8043
8088
|
StdDeviation
|
|
8044
|
-
|
|
8089
|
+
|
|
8045
8090
|
SumOfProduct
|
|
8046
|
-
|
|
8091
|
+
|
|
8047
8092
|
OnlyValue
|
|
8048
|
-
|
|
8093
|
+
|
|
8049
8094
|
WeightedAvg
|
|
8050
|
-
|
|
8095
|
+
|
|
8051
8096
|
DensityIndicators
|
|
8052
|
-
|
|
8097
|
+
|
|
8053
8098
|
DividedSum
|
|
8054
8099
|
*/
|
|
8055
8100
|
var AggregationFunction;
|
|
@@ -8079,13 +8124,13 @@ var AggregationFunction;
|
|
|
8079
8124
|
})(AggregationFunction || (AggregationFunction = {}));
|
|
8080
8125
|
/**
|
|
8081
8126
|
*
|
|
8082
|
-
|
|
8127
|
+
|
|
8083
8128
|
None
|
|
8084
|
-
|
|
8129
|
+
|
|
8085
8130
|
SelectFromHandBook
|
|
8086
|
-
|
|
8131
|
+
|
|
8087
8132
|
SelectFromRange
|
|
8088
|
-
|
|
8133
|
+
|
|
8089
8134
|
ViewHandBook
|
|
8090
8135
|
*/
|
|
8091
8136
|
|
|
@@ -8100,31 +8145,31 @@ var AttributeSelectorType;
|
|
|
8100
8145
|
})(AttributeSelectorType || (AttributeSelectorType = {}));
|
|
8101
8146
|
/**
|
|
8102
8147
|
*
|
|
8103
|
-
|
|
8148
|
+
|
|
8104
8149
|
Unknown
|
|
8105
|
-
|
|
8150
|
+
|
|
8106
8151
|
String
|
|
8107
|
-
|
|
8152
|
+
|
|
8108
8153
|
Int32
|
|
8109
|
-
|
|
8154
|
+
|
|
8110
8155
|
Int64
|
|
8111
|
-
|
|
8156
|
+
|
|
8112
8157
|
Double
|
|
8113
|
-
|
|
8158
|
+
|
|
8114
8159
|
DateTime
|
|
8115
|
-
|
|
8160
|
+
|
|
8116
8161
|
Boolean
|
|
8117
|
-
|
|
8162
|
+
|
|
8118
8163
|
Point
|
|
8119
|
-
|
|
8164
|
+
|
|
8120
8165
|
Polyline
|
|
8121
|
-
|
|
8166
|
+
|
|
8122
8167
|
MultiPolygon
|
|
8123
|
-
|
|
8168
|
+
|
|
8124
8169
|
Multipoint
|
|
8125
|
-
|
|
8170
|
+
|
|
8126
8171
|
H3Index
|
|
8127
|
-
|
|
8172
|
+
|
|
8128
8173
|
Json
|
|
8129
8174
|
*/
|
|
8130
8175
|
|
|
@@ -8147,18 +8192,35 @@ var AttributeType;
|
|
|
8147
8192
|
AttributeType["Json"] = "Json";
|
|
8148
8193
|
})(AttributeType || (AttributeType = {}));
|
|
8149
8194
|
/**
|
|
8150
|
-
*
|
|
8195
|
+
* An authorization grant is a credential representing the resource
|
|
8196
|
+
owner's authorization (to access its protected resources) used by the
|
|
8197
|
+
client to obtain an access token.
|
|
8198
|
+
|
|
8199
|
+
authorization_code
|
|
8200
|
+
|
|
8201
|
+
refresh_token
|
|
8202
|
+
*/
|
|
8151
8203
|
|
|
8152
|
-
None
|
|
8153
8204
|
|
|
8154
|
-
|
|
8205
|
+
var AuthorizationGrant;
|
|
8155
8206
|
|
|
8207
|
+
(function (AuthorizationGrant) {
|
|
8208
|
+
AuthorizationGrant["AuthorizationCode"] = "authorization_code";
|
|
8209
|
+
AuthorizationGrant["RefreshToken"] = "refresh_token";
|
|
8210
|
+
})(AuthorizationGrant || (AuthorizationGrant = {}));
|
|
8211
|
+
/**
|
|
8212
|
+
*
|
|
8213
|
+
|
|
8214
|
+
None
|
|
8215
|
+
|
|
8216
|
+
Map
|
|
8217
|
+
|
|
8156
8218
|
Layer
|
|
8157
|
-
|
|
8219
|
+
|
|
8158
8220
|
Table
|
|
8159
|
-
|
|
8221
|
+
|
|
8160
8222
|
File
|
|
8161
|
-
|
|
8223
|
+
|
|
8162
8224
|
TaskPrototype
|
|
8163
8225
|
*/
|
|
8164
8226
|
|
|
@@ -8175,15 +8237,15 @@ var CatalogResourceType;
|
|
|
8175
8237
|
})(CatalogResourceType || (CatalogResourceType = {}));
|
|
8176
8238
|
/**
|
|
8177
8239
|
* Describes classification methods.
|
|
8178
|
-
|
|
8240
|
+
|
|
8179
8241
|
none
|
|
8180
|
-
|
|
8242
|
+
|
|
8181
8243
|
naturalBreaks
|
|
8182
|
-
|
|
8244
|
+
|
|
8183
8245
|
equalInterval
|
|
8184
|
-
|
|
8246
|
+
|
|
8185
8247
|
quantile
|
|
8186
|
-
|
|
8248
|
+
|
|
8187
8249
|
unique
|
|
8188
8250
|
*/
|
|
8189
8251
|
|
|
@@ -8199,11 +8261,11 @@ var ClassificationType;
|
|
|
8199
8261
|
})(ClassificationType || (ClassificationType = {}));
|
|
8200
8262
|
/**
|
|
8201
8263
|
*
|
|
8202
|
-
|
|
8264
|
+
|
|
8203
8265
|
decimal
|
|
8204
|
-
|
|
8266
|
+
|
|
8205
8267
|
dateTime
|
|
8206
|
-
|
|
8268
|
+
|
|
8207
8269
|
text
|
|
8208
8270
|
*/
|
|
8209
8271
|
|
|
@@ -8217,55 +8279,55 @@ var ClassifyAttributeType;
|
|
|
8217
8279
|
})(ClassifyAttributeType || (ClassifyAttributeType = {}));
|
|
8218
8280
|
/**
|
|
8219
8281
|
*
|
|
8220
|
-
|
|
8282
|
+
|
|
8221
8283
|
Unknown
|
|
8222
|
-
|
|
8284
|
+
|
|
8223
8285
|
SerializeError
|
|
8224
|
-
|
|
8286
|
+
|
|
8225
8287
|
InvalidDataService
|
|
8226
|
-
|
|
8288
|
+
|
|
8227
8289
|
InvalidConfiguration
|
|
8228
|
-
|
|
8290
|
+
|
|
8229
8291
|
InvalidDataServiceName
|
|
8230
|
-
|
|
8292
|
+
|
|
8231
8293
|
InvalidTableName
|
|
8232
|
-
|
|
8294
|
+
|
|
8233
8295
|
InvalidLayerName
|
|
8234
|
-
|
|
8296
|
+
|
|
8235
8297
|
ResourceNotFound
|
|
8236
|
-
|
|
8298
|
+
|
|
8237
8299
|
InvalidCondition
|
|
8238
|
-
|
|
8300
|
+
|
|
8239
8301
|
InvalidAttributes
|
|
8240
|
-
|
|
8302
|
+
|
|
8241
8303
|
InvalidIdAttribute
|
|
8242
|
-
|
|
8304
|
+
|
|
8243
8305
|
InvalidGeometryAttribute
|
|
8244
|
-
|
|
8306
|
+
|
|
8245
8307
|
InvalidGeometryAttributeType
|
|
8246
|
-
|
|
8308
|
+
|
|
8247
8309
|
InvalidColumnName
|
|
8248
|
-
|
|
8310
|
+
|
|
8249
8311
|
InvalidIdColumnSettings
|
|
8250
|
-
|
|
8312
|
+
|
|
8251
8313
|
ColumnNotExistsInTable
|
|
8252
|
-
|
|
8314
|
+
|
|
8253
8315
|
InvalidStyle
|
|
8254
|
-
|
|
8316
|
+
|
|
8255
8317
|
InvalidLayerType
|
|
8256
|
-
|
|
8318
|
+
|
|
8257
8319
|
ColumnLoadingError
|
|
8258
|
-
|
|
8320
|
+
|
|
8259
8321
|
InvalidAttributeFormat
|
|
8260
|
-
|
|
8322
|
+
|
|
8261
8323
|
DataSourceNotFound
|
|
8262
|
-
|
|
8324
|
+
|
|
8263
8325
|
DuplicateColumns
|
|
8264
|
-
|
|
8326
|
+
|
|
8265
8327
|
DuplicateAttributes
|
|
8266
|
-
|
|
8328
|
+
|
|
8267
8329
|
TableWithoutColumns
|
|
8268
|
-
|
|
8330
|
+
|
|
8269
8331
|
InvalidTableReferenceConfiguration
|
|
8270
8332
|
*/
|
|
8271
8333
|
|
|
@@ -8301,15 +8363,15 @@ var ConfigurationErrorEnum;
|
|
|
8301
8363
|
})(ConfigurationErrorEnum || (ConfigurationErrorEnum = {}));
|
|
8302
8364
|
/**
|
|
8303
8365
|
* Type of the error.
|
|
8304
|
-
|
|
8366
|
+
|
|
8305
8367
|
ResourceLimitExceeded
|
|
8306
|
-
|
|
8368
|
+
|
|
8307
8369
|
ResourceNotFound
|
|
8308
|
-
|
|
8370
|
+
|
|
8309
8371
|
InternalError
|
|
8310
|
-
|
|
8372
|
+
|
|
8311
8373
|
BadRequest
|
|
8312
|
-
|
|
8374
|
+
|
|
8313
8375
|
DuplicateContent
|
|
8314
8376
|
*/
|
|
8315
8377
|
|
|
@@ -8360,9 +8422,9 @@ var ErrorType;
|
|
|
8360
8422
|
})(ErrorType || (ErrorType = {}));
|
|
8361
8423
|
/**
|
|
8362
8424
|
* Type of the feature.
|
|
8363
|
-
|
|
8425
|
+
|
|
8364
8426
|
Unknown
|
|
8365
|
-
|
|
8427
|
+
|
|
8366
8428
|
GeometricFeature
|
|
8367
8429
|
*/
|
|
8368
8430
|
|
|
@@ -8375,11 +8437,11 @@ var FeatureType;
|
|
|
8375
8437
|
})(FeatureType || (FeatureType = {}));
|
|
8376
8438
|
/**
|
|
8377
8439
|
* Sets whether font should be styled.
|
|
8378
|
-
|
|
8440
|
+
|
|
8379
8441
|
normal
|
|
8380
|
-
|
|
8442
|
+
|
|
8381
8443
|
oblique
|
|
8382
|
-
|
|
8444
|
+
|
|
8383
8445
|
italic
|
|
8384
8446
|
*/
|
|
8385
8447
|
|
|
@@ -8393,27 +8455,27 @@ var FontStyle;
|
|
|
8393
8455
|
})(FontStyle || (FontStyle = {}));
|
|
8394
8456
|
/**
|
|
8395
8457
|
* Specifies the weight (or boldness) of the font.
|
|
8396
|
-
|
|
8458
|
+
|
|
8397
8459
|
Thin
|
|
8398
|
-
|
|
8460
|
+
|
|
8399
8461
|
ExtraLight
|
|
8400
|
-
|
|
8462
|
+
|
|
8401
8463
|
Light
|
|
8402
|
-
|
|
8464
|
+
|
|
8403
8465
|
SemiLight
|
|
8404
|
-
|
|
8466
|
+
|
|
8405
8467
|
Normal
|
|
8406
|
-
|
|
8468
|
+
|
|
8407
8469
|
Medium
|
|
8408
|
-
|
|
8470
|
+
|
|
8409
8471
|
DemiBold
|
|
8410
|
-
|
|
8472
|
+
|
|
8411
8473
|
Bold
|
|
8412
|
-
|
|
8474
|
+
|
|
8413
8475
|
ExtraBold
|
|
8414
|
-
|
|
8476
|
+
|
|
8415
8477
|
Black
|
|
8416
|
-
|
|
8478
|
+
|
|
8417
8479
|
ExtraBlack
|
|
8418
8480
|
*/
|
|
8419
8481
|
|
|
@@ -8435,17 +8497,17 @@ var FontWeight;
|
|
|
8435
8497
|
})(FontWeight || (FontWeight = {}));
|
|
8436
8498
|
/**
|
|
8437
8499
|
*
|
|
8438
|
-
|
|
8500
|
+
|
|
8439
8501
|
unknown
|
|
8440
|
-
|
|
8502
|
+
|
|
8441
8503
|
point
|
|
8442
|
-
|
|
8504
|
+
|
|
8443
8505
|
polyline
|
|
8444
|
-
|
|
8506
|
+
|
|
8445
8507
|
multipolygon
|
|
8446
|
-
|
|
8508
|
+
|
|
8447
8509
|
envelope
|
|
8448
|
-
|
|
8510
|
+
|
|
8449
8511
|
multipoint
|
|
8450
8512
|
*/
|
|
8451
8513
|
|
|
@@ -8462,13 +8524,13 @@ var GeometryType;
|
|
|
8462
8524
|
})(GeometryType || (GeometryType = {}));
|
|
8463
8525
|
/**
|
|
8464
8526
|
* Resource group.
|
|
8465
|
-
|
|
8527
|
+
|
|
8466
8528
|
my
|
|
8467
|
-
|
|
8529
|
+
|
|
8468
8530
|
role
|
|
8469
|
-
|
|
8531
|
+
|
|
8470
8532
|
public
|
|
8471
|
-
|
|
8533
|
+
|
|
8472
8534
|
all
|
|
8473
8535
|
*/
|
|
8474
8536
|
|
|
@@ -8483,13 +8545,13 @@ var Group;
|
|
|
8483
8545
|
})(Group || (Group = {}));
|
|
8484
8546
|
/**
|
|
8485
8547
|
* Specifies the settings of line cap. This is applied to the beginning and end of each non-closed line.
|
|
8486
|
-
|
|
8548
|
+
|
|
8487
8549
|
Flat
|
|
8488
|
-
|
|
8550
|
+
|
|
8489
8551
|
Square
|
|
8490
|
-
|
|
8552
|
+
|
|
8491
8553
|
Round
|
|
8492
|
-
|
|
8554
|
+
|
|
8493
8555
|
Triangle
|
|
8494
8556
|
*/
|
|
8495
8557
|
|
|
@@ -8504,29 +8566,29 @@ var LineCapStyle;
|
|
|
8504
8566
|
})(LineCapStyle || (LineCapStyle = {}));
|
|
8505
8567
|
/**
|
|
8506
8568
|
* Type of the line ending.
|
|
8507
|
-
|
|
8569
|
+
|
|
8508
8570
|
none
|
|
8509
|
-
|
|
8571
|
+
|
|
8510
8572
|
arrow
|
|
8511
|
-
|
|
8573
|
+
|
|
8512
8574
|
filledArrow
|
|
8513
|
-
|
|
8575
|
+
|
|
8514
8576
|
square
|
|
8515
|
-
|
|
8577
|
+
|
|
8516
8578
|
filledSquare
|
|
8517
|
-
|
|
8579
|
+
|
|
8518
8580
|
circle
|
|
8519
|
-
|
|
8581
|
+
|
|
8520
8582
|
filledCircle
|
|
8521
|
-
|
|
8583
|
+
|
|
8522
8584
|
diamond
|
|
8523
|
-
|
|
8585
|
+
|
|
8524
8586
|
filledDiamond
|
|
8525
|
-
|
|
8587
|
+
|
|
8526
8588
|
roundSquare
|
|
8527
|
-
|
|
8589
|
+
|
|
8528
8590
|
filledRoundSquare
|
|
8529
|
-
|
|
8591
|
+
|
|
8530
8592
|
svg
|
|
8531
8593
|
*/
|
|
8532
8594
|
|
|
@@ -8549,11 +8611,11 @@ var LineEndingType;
|
|
|
8549
8611
|
})(LineEndingType || (LineEndingType = {}));
|
|
8550
8612
|
/**
|
|
8551
8613
|
* Specifies the settings of lines join. This is applied to corners in lines and rectangles.
|
|
8552
|
-
|
|
8614
|
+
|
|
8553
8615
|
Miter
|
|
8554
|
-
|
|
8616
|
+
|
|
8555
8617
|
Bevel
|
|
8556
|
-
|
|
8618
|
+
|
|
8557
8619
|
Round
|
|
8558
8620
|
*/
|
|
8559
8621
|
|
|
@@ -8567,15 +8629,15 @@ var LineJoinType;
|
|
|
8567
8629
|
})(LineJoinType || (LineJoinType = {}));
|
|
8568
8630
|
/**
|
|
8569
8631
|
*
|
|
8570
|
-
|
|
8632
|
+
|
|
8571
8633
|
Unknown
|
|
8572
|
-
|
|
8634
|
+
|
|
8573
8635
|
union
|
|
8574
|
-
|
|
8636
|
+
|
|
8575
8637
|
intersection
|
|
8576
|
-
|
|
8638
|
+
|
|
8577
8639
|
subtraction
|
|
8578
|
-
|
|
8640
|
+
|
|
8579
8641
|
symDifference
|
|
8580
8642
|
*/
|
|
8581
8643
|
|
|
@@ -8591,12 +8653,14 @@ var Operation;
|
|
|
8591
8653
|
})(Operation || (Operation = {}));
|
|
8592
8654
|
/**
|
|
8593
8655
|
*
|
|
8594
|
-
|
|
8656
|
+
|
|
8595
8657
|
My
|
|
8596
|
-
|
|
8658
|
+
|
|
8597
8659
|
Shared
|
|
8598
|
-
|
|
8660
|
+
|
|
8599
8661
|
Public
|
|
8662
|
+
|
|
8663
|
+
All
|
|
8600
8664
|
*/
|
|
8601
8665
|
|
|
8602
8666
|
|
|
@@ -8606,12 +8670,13 @@ var OwnerFilter;
|
|
|
8606
8670
|
OwnerFilter["My"] = "My";
|
|
8607
8671
|
OwnerFilter["Shared"] = "Shared";
|
|
8608
8672
|
OwnerFilter["Public"] = "Public";
|
|
8673
|
+
OwnerFilter["All"] = "All";
|
|
8609
8674
|
})(OwnerFilter || (OwnerFilter = {}));
|
|
8610
8675
|
/**
|
|
8611
8676
|
* Influences the y direction of the tile coordinates. The global-mercator (aka Spherical Mercator) profile is assumed.
|
|
8612
|
-
|
|
8677
|
+
|
|
8613
8678
|
xyz
|
|
8614
|
-
|
|
8679
|
+
|
|
8615
8680
|
tms
|
|
8616
8681
|
*/
|
|
8617
8682
|
|
|
@@ -8624,19 +8689,19 @@ var PbfSchema;
|
|
|
8624
8689
|
})(PbfSchema || (PbfSchema = {}));
|
|
8625
8690
|
/**
|
|
8626
8691
|
*
|
|
8627
|
-
|
|
8692
|
+
|
|
8628
8693
|
none
|
|
8629
|
-
|
|
8694
|
+
|
|
8630
8695
|
configure
|
|
8631
|
-
|
|
8696
|
+
|
|
8632
8697
|
write
|
|
8633
|
-
|
|
8698
|
+
|
|
8634
8699
|
read
|
|
8635
|
-
|
|
8700
|
+
|
|
8636
8701
|
read,configure
|
|
8637
|
-
|
|
8702
|
+
|
|
8638
8703
|
read,write
|
|
8639
|
-
|
|
8704
|
+
|
|
8640
8705
|
read,write,configure
|
|
8641
8706
|
*/
|
|
8642
8707
|
|
|
@@ -8654,19 +8719,19 @@ var Permissions;
|
|
|
8654
8719
|
})(Permissions || (Permissions = {}));
|
|
8655
8720
|
/**
|
|
8656
8721
|
* Type of the authorization policy.
|
|
8657
|
-
|
|
8722
|
+
|
|
8658
8723
|
Unknown
|
|
8659
|
-
|
|
8724
|
+
|
|
8660
8725
|
CreateTable
|
|
8661
|
-
|
|
8726
|
+
|
|
8662
8727
|
CreateLayer
|
|
8663
|
-
|
|
8728
|
+
|
|
8664
8729
|
CreateProject
|
|
8665
|
-
|
|
8730
|
+
|
|
8666
8731
|
MaxFeaturesInOneTable
|
|
8667
|
-
|
|
8732
|
+
|
|
8668
8733
|
MaxObjectsToExport
|
|
8669
|
-
|
|
8734
|
+
|
|
8670
8735
|
MaxUploadContentSize
|
|
8671
8736
|
*/
|
|
8672
8737
|
|
|
@@ -8684,11 +8749,11 @@ var PolicyType;
|
|
|
8684
8749
|
})(PolicyType || (PolicyType = {}));
|
|
8685
8750
|
/**
|
|
8686
8751
|
* Stream quality.
|
|
8687
|
-
|
|
8752
|
+
|
|
8688
8753
|
Low
|
|
8689
|
-
|
|
8754
|
+
|
|
8690
8755
|
Medium
|
|
8691
|
-
|
|
8756
|
+
|
|
8692
8757
|
High
|
|
8693
8758
|
*/
|
|
8694
8759
|
|
|
@@ -8701,20 +8766,44 @@ var Quality;
|
|
|
8701
8766
|
Quality["High"] = "High";
|
|
8702
8767
|
})(Quality || (Quality = {}));
|
|
8703
8768
|
/**
|
|
8704
|
-
*
|
|
8769
|
+
* Resources types filter.
|
|
8770
|
+
|
|
8771
|
+
RemoteTileService
|
|
8772
|
+
|
|
8773
|
+
ProxyService
|
|
8774
|
+
|
|
8775
|
+
PostgresLayerService
|
|
8776
|
+
|
|
8777
|
+
QueryLayerService
|
|
8778
|
+
|
|
8779
|
+
TileCatalogTable
|
|
8780
|
+
*/
|
|
8705
8781
|
|
|
8706
|
-
Unknown
|
|
8707
8782
|
|
|
8708
|
-
|
|
8783
|
+
var ResourceSubTypeFilter;
|
|
8709
8784
|
|
|
8785
|
+
(function (ResourceSubTypeFilter) {
|
|
8786
|
+
ResourceSubTypeFilter["RemoteTileService"] = "RemoteTileService";
|
|
8787
|
+
ResourceSubTypeFilter["ProxyService"] = "ProxyService";
|
|
8788
|
+
ResourceSubTypeFilter["PostgresLayerService"] = "PostgresLayerService";
|
|
8789
|
+
ResourceSubTypeFilter["QueryLayerService"] = "QueryLayerService";
|
|
8790
|
+
ResourceSubTypeFilter["TileCatalogTable"] = "TileCatalogTable";
|
|
8791
|
+
})(ResourceSubTypeFilter || (ResourceSubTypeFilter = {}));
|
|
8792
|
+
/**
|
|
8793
|
+
*
|
|
8794
|
+
|
|
8795
|
+
Unknown
|
|
8796
|
+
|
|
8797
|
+
table
|
|
8798
|
+
|
|
8710
8799
|
layer
|
|
8711
|
-
|
|
8800
|
+
|
|
8712
8801
|
project
|
|
8713
|
-
|
|
8802
|
+
|
|
8714
8803
|
file
|
|
8715
|
-
|
|
8804
|
+
|
|
8716
8805
|
feature
|
|
8717
|
-
|
|
8806
|
+
|
|
8718
8807
|
tag
|
|
8719
8808
|
*/
|
|
8720
8809
|
|
|
@@ -8730,6 +8819,36 @@ var ResourceType;
|
|
|
8730
8819
|
ResourceType["Feature"] = "feature";
|
|
8731
8820
|
ResourceType["Tag"] = "tag";
|
|
8732
8821
|
})(ResourceType || (ResourceType = {}));
|
|
8822
|
+
/**
|
|
8823
|
+
* Resources types filter.
|
|
8824
|
+
|
|
8825
|
+
Map
|
|
8826
|
+
|
|
8827
|
+
Layer
|
|
8828
|
+
|
|
8829
|
+
Table
|
|
8830
|
+
|
|
8831
|
+
RasterCatalog
|
|
8832
|
+
|
|
8833
|
+
ProxyService
|
|
8834
|
+
|
|
8835
|
+
RemoteTileService
|
|
8836
|
+
|
|
8837
|
+
File
|
|
8838
|
+
*/
|
|
8839
|
+
|
|
8840
|
+
|
|
8841
|
+
var ResourceTypeFilter;
|
|
8842
|
+
|
|
8843
|
+
(function (ResourceTypeFilter) {
|
|
8844
|
+
ResourceTypeFilter["Map"] = "Map";
|
|
8845
|
+
ResourceTypeFilter["Layer"] = "Layer";
|
|
8846
|
+
ResourceTypeFilter["Table"] = "Table";
|
|
8847
|
+
ResourceTypeFilter["RasterCatalog"] = "RasterCatalog";
|
|
8848
|
+
ResourceTypeFilter["ProxyService"] = "ProxyService";
|
|
8849
|
+
ResourceTypeFilter["RemoteTileService"] = "RemoteTileService";
|
|
8850
|
+
ResourceTypeFilter["File"] = "File";
|
|
8851
|
+
})(ResourceTypeFilter || (ResourceTypeFilter = {}));
|
|
8733
8852
|
|
|
8734
8853
|
var ResourceTypeLink;
|
|
8735
8854
|
|
|
@@ -8739,22 +8858,37 @@ var ResourceTypeLink;
|
|
|
8739
8858
|
ResourceTypeLink["Project"] = "projects";
|
|
8740
8859
|
})(ResourceTypeLink || (ResourceTypeLink = {}));
|
|
8741
8860
|
/**
|
|
8742
|
-
*
|
|
8861
|
+
* Response type.
|
|
8862
|
+
|
|
8863
|
+
code
|
|
8864
|
+
|
|
8865
|
+
token
|
|
8866
|
+
*/
|
|
8743
8867
|
|
|
8744
|
-
None
|
|
8745
8868
|
|
|
8746
|
-
|
|
8869
|
+
var ResponseType;
|
|
8747
8870
|
|
|
8871
|
+
(function (ResponseType) {
|
|
8872
|
+
ResponseType["Code"] = "code";
|
|
8873
|
+
ResponseType["Token"] = "token";
|
|
8874
|
+
})(ResponseType || (ResponseType = {}));
|
|
8875
|
+
/**
|
|
8876
|
+
* Status of the server task.
|
|
8877
|
+
|
|
8878
|
+
None
|
|
8879
|
+
|
|
8880
|
+
Scheduled
|
|
8881
|
+
|
|
8748
8882
|
Planning
|
|
8749
|
-
|
|
8883
|
+
|
|
8750
8884
|
Executing
|
|
8751
|
-
|
|
8885
|
+
|
|
8752
8886
|
Completed
|
|
8753
|
-
|
|
8887
|
+
|
|
8754
8888
|
Failed
|
|
8755
|
-
|
|
8889
|
+
|
|
8756
8890
|
Canceled
|
|
8757
|
-
|
|
8891
|
+
|
|
8758
8892
|
Timeout
|
|
8759
8893
|
*/
|
|
8760
8894
|
|
|
@@ -8773,11 +8907,11 @@ var ServerTaskStatus;
|
|
|
8773
8907
|
})(ServerTaskStatus || (ServerTaskStatus = {}));
|
|
8774
8908
|
/**
|
|
8775
8909
|
*
|
|
8776
|
-
|
|
8910
|
+
|
|
8777
8911
|
Basic
|
|
8778
|
-
|
|
8912
|
+
|
|
8779
8913
|
PreserveTopology
|
|
8780
|
-
|
|
8914
|
+
|
|
8781
8915
|
VW
|
|
8782
8916
|
*/
|
|
8783
8917
|
|
|
@@ -8791,13 +8925,13 @@ var SimplifyType;
|
|
|
8791
8925
|
})(SimplifyType || (SimplifyType = {}));
|
|
8792
8926
|
/**
|
|
8793
8927
|
*
|
|
8794
|
-
|
|
8928
|
+
|
|
8795
8929
|
None
|
|
8796
|
-
|
|
8930
|
+
|
|
8797
8931
|
Image
|
|
8798
|
-
|
|
8932
|
+
|
|
8799
8933
|
PkkCode
|
|
8800
|
-
|
|
8934
|
+
|
|
8801
8935
|
Attachments
|
|
8802
8936
|
*/
|
|
8803
8937
|
|
|
@@ -8812,9 +8946,9 @@ var StringSubType;
|
|
|
8812
8946
|
})(StringSubType || (StringSubType = {}));
|
|
8813
8947
|
/**
|
|
8814
8948
|
* Task owner group.
|
|
8815
|
-
|
|
8949
|
+
|
|
8816
8950
|
my
|
|
8817
|
-
|
|
8951
|
+
|
|
8818
8952
|
all
|
|
8819
8953
|
*/
|
|
8820
8954
|
|
|
@@ -8827,13 +8961,13 @@ var TaskGroup;
|
|
|
8827
8961
|
})(TaskGroup || (TaskGroup = {}));
|
|
8828
8962
|
/**
|
|
8829
8963
|
* Sets the horizontal alignment of text.
|
|
8830
|
-
|
|
8964
|
+
|
|
8831
8965
|
right
|
|
8832
|
-
|
|
8966
|
+
|
|
8833
8967
|
left
|
|
8834
|
-
|
|
8968
|
+
|
|
8835
8969
|
center
|
|
8836
|
-
|
|
8970
|
+
|
|
8837
8971
|
justified
|
|
8838
8972
|
*/
|
|
8839
8973
|
|
|
@@ -8848,11 +8982,11 @@ var TextAlignment;
|
|
|
8848
8982
|
})(TextAlignment || (TextAlignment = {}));
|
|
8849
8983
|
/**
|
|
8850
8984
|
* Sets the vertical alignment of text.
|
|
8851
|
-
|
|
8985
|
+
|
|
8852
8986
|
top
|
|
8853
|
-
|
|
8987
|
+
|
|
8854
8988
|
bottom
|
|
8855
|
-
|
|
8989
|
+
|
|
8856
8990
|
middle
|
|
8857
8991
|
*/
|
|
8858
8992
|
|
|
@@ -8865,5 +8999,5 @@ var TextVerticalAlignment;
|
|
|
8865
8999
|
TextVerticalAlignment["Middle"] = "middle";
|
|
8866
9000
|
})(TextVerticalAlignment || (TextVerticalAlignment = {}));
|
|
8867
9001
|
|
|
8868
|
-
export { Account, AccountPreview, AggregationFunction, Api, ApiEvent, AttributeSelectorType, AttributeType, BulkOperations, Cameras, CatalogResourceType, ClassificationType, ClassifyAttributeType, ClientSettings, ConfigurationErrorEnum, ConnectionStatus, 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, ResourceType, ResourceTypeLink, Resources, 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 };
|
|
9002
|
+
export { Account, AccountPreview, AggregationFunction, Api, ApiEvent, AttributeSelectorType, AttributeType, AuthorizationGrant, BulkOperations, Cameras, CatalogResourceType, ClassificationType, ClassifyAttributeType, ClientSettings, ConfigurationErrorEnum, ConnectionStatus, 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 };
|
|
8869
9003
|
//# sourceMappingURL=api.esm.js.map
|