@evergis/api 3.0.192 → 3.0.194
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 +5 -4
- package/dist/__generated__/AccountService.d.ts +35 -2
- package/dist/__generated__/CatalogService.d.ts +16 -5
- package/dist/__generated__/{EqlTestService.d.ts → EqlService.d.ts} +15 -15
- package/dist/__generated__/LayersService.d.ts +2 -13
- package/dist/__generated__/ProjectsService.d.ts +2 -2
- package/dist/__generated__/StatisticService.d.ts +2 -2
- package/dist/__generated__/TablesService.d.ts +13 -2
- package/dist/__generated__/TagsService.d.ts +2 -2
- package/dist/__generated__/UniversalSearchService.d.ts +7 -7
- package/dist/__generated__/WmsServerService.d.ts +2 -2
- package/dist/__generated__/data-contracts.d.ts +405 -238
- package/dist/api.cjs.development.js +159 -71
- 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 +368 -256
- package/dist/api.esm.js.map +1 -1
- package/dist/services/Account.d.ts +2 -2
- package/dist/services/Eql.d.ts +3 -0
- package/dist/services/Statistic.d.ts +2 -2
- package/dist/services/index.d.ts +1 -1
- package/package.json +2 -2
- package/dist/services/EqlTest.d.ts +0 -3
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 () {
|
|
@@ -480,19 +488,19 @@ let UniversalSearchService = /*#__PURE__*/function (_Service) {
|
|
|
480
488
|
}
|
|
481
489
|
|
|
482
490
|
_createClass(UniversalSearchService, [{
|
|
483
|
-
key: "
|
|
491
|
+
key: "searchResultDcGetSearchResult",
|
|
484
492
|
value:
|
|
485
493
|
/**
|
|
486
494
|
* No description
|
|
487
495
|
*
|
|
488
496
|
* @tags UniversalSearch
|
|
489
|
-
* @name
|
|
490
|
-
* @operationId
|
|
497
|
+
* @name SearchResultDcGetSearchResult
|
|
498
|
+
* @operationId UniversalSearchController_SearchResultDcGetSearchResult
|
|
491
499
|
* @summary Returns search result.
|
|
492
500
|
* @request GET:/search/{taskId}/{layerName}
|
|
493
501
|
* @response `200` OK
|
|
494
502
|
*/
|
|
495
|
-
function
|
|
503
|
+
function searchResultDcGetSearchResult(_ref) {
|
|
496
504
|
let {
|
|
497
505
|
taskId,
|
|
498
506
|
layerName
|
|
@@ -505,16 +513,16 @@ let UniversalSearchService = /*#__PURE__*/function (_Service) {
|
|
|
505
513
|
* No description
|
|
506
514
|
*
|
|
507
515
|
* @tags UniversalSearch
|
|
508
|
-
* @name
|
|
509
|
-
* @operationId
|
|
516
|
+
* @name GetSearchResult
|
|
517
|
+
* @operationId UniversalSearchController_GetSearchResult
|
|
510
518
|
* @summary Returns search result.
|
|
511
519
|
* @request GET:/search/{taskId}
|
|
512
520
|
* @response `200` OK
|
|
513
521
|
*/
|
|
514
522
|
|
|
515
523
|
}, {
|
|
516
|
-
key: "
|
|
517
|
-
value: function
|
|
524
|
+
key: "getSearchResult",
|
|
525
|
+
value: function getSearchResult(taskId) {
|
|
518
526
|
return this.http.get("/search/" + taskId).json();
|
|
519
527
|
}
|
|
520
528
|
}]);
|
|
@@ -568,8 +576,8 @@ let CatalogService = /*#__PURE__*/function (_Service) {
|
|
|
568
576
|
|
|
569
577
|
}, {
|
|
570
578
|
key: "postGetAll",
|
|
571
|
-
value: function postGetAll(data) {
|
|
572
|
-
return this.http.post("/resources", data).json();
|
|
579
|
+
value: function postGetAll(query, data) {
|
|
580
|
+
return this.http.post("/resources", data, query).json();
|
|
573
581
|
}
|
|
574
582
|
/**
|
|
575
583
|
* No description
|
|
@@ -745,7 +753,7 @@ let CatalogService = /*#__PURE__*/function (_Service) {
|
|
|
745
753
|
}, {
|
|
746
754
|
key: "setPermissions1",
|
|
747
755
|
value: function setPermissions1(resourceId, data) {
|
|
748
|
-
return this.http.put("/resources/" + resourceId + "/permissions", data).
|
|
756
|
+
return this.http.put("/resources/" + resourceId + "/permissions", data).then(() => {});
|
|
749
757
|
}
|
|
750
758
|
/**
|
|
751
759
|
* No description
|
|
@@ -761,7 +769,7 @@ let CatalogService = /*#__PURE__*/function (_Service) {
|
|
|
761
769
|
}, {
|
|
762
770
|
key: "setPermissions",
|
|
763
771
|
value: function setPermissions(data) {
|
|
764
|
-
return this.http.put("/resources/permissions", data).
|
|
772
|
+
return this.http.put("/resources/permissions", data).then(() => {});
|
|
765
773
|
}
|
|
766
774
|
/**
|
|
767
775
|
* No description
|
|
@@ -779,6 +787,22 @@ let CatalogService = /*#__PURE__*/function (_Service) {
|
|
|
779
787
|
value: function downloadFile(resourceId) {
|
|
780
788
|
return this.http.get("/resources/" + resourceId + "/download").blob();
|
|
781
789
|
}
|
|
790
|
+
/**
|
|
791
|
+
* No description
|
|
792
|
+
*
|
|
793
|
+
* @tags Catalog
|
|
794
|
+
* @name CleanResources
|
|
795
|
+
* @operationId CatalogController_CleanResources
|
|
796
|
+
* @summary Clean user resources.
|
|
797
|
+
* @request POST:/resources/clean
|
|
798
|
+
* @response `200` OK
|
|
799
|
+
*/
|
|
800
|
+
|
|
801
|
+
}, {
|
|
802
|
+
key: "cleanResources",
|
|
803
|
+
value: function cleanResources() {
|
|
804
|
+
return this.http.post("/resources/clean", null).then(() => {});
|
|
805
|
+
}
|
|
782
806
|
}]);
|
|
783
807
|
|
|
784
808
|
return CatalogService;
|
|
@@ -1174,8 +1198,8 @@ let AccountService = /*#__PURE__*/function (_Service) {
|
|
|
1174
1198
|
|
|
1175
1199
|
}, {
|
|
1176
1200
|
key: "authenticate",
|
|
1177
|
-
value: function authenticate(data) {
|
|
1178
|
-
return this.http.post("/account/login", data).text();
|
|
1201
|
+
value: function authenticate(query, data) {
|
|
1202
|
+
return this.http.post("/account/login", data, query).text();
|
|
1179
1203
|
}
|
|
1180
1204
|
/**
|
|
1181
1205
|
* No description
|
|
@@ -1225,6 +1249,54 @@ let AccountService = /*#__PURE__*/function (_Service) {
|
|
|
1225
1249
|
value: function ldapLogin(data) {
|
|
1226
1250
|
return this.http.post("/account/external/login/ldap", data).then(() => {});
|
|
1227
1251
|
}
|
|
1252
|
+
/**
|
|
1253
|
+
* No description
|
|
1254
|
+
*
|
|
1255
|
+
* @tags Account
|
|
1256
|
+
* @name RegisterClient
|
|
1257
|
+
* @operationId AccountController_RegisterClient
|
|
1258
|
+
* @summary Register new client.
|
|
1259
|
+
* @request POST:/account/oauth2/client
|
|
1260
|
+
* @response `200` OK
|
|
1261
|
+
*/
|
|
1262
|
+
|
|
1263
|
+
}, {
|
|
1264
|
+
key: "registerClient",
|
|
1265
|
+
value: function registerClient(data) {
|
|
1266
|
+
return this.http.post("/account/oauth2/client", data).json();
|
|
1267
|
+
}
|
|
1268
|
+
/**
|
|
1269
|
+
* No description
|
|
1270
|
+
*
|
|
1271
|
+
* @tags Account
|
|
1272
|
+
* @name UnbindClient
|
|
1273
|
+
* @operationId AccountController_UnbindClient
|
|
1274
|
+
* @summary Unbind client with id.
|
|
1275
|
+
* @request DELETE:/account/oauth2/client/{clientId}
|
|
1276
|
+
* @response `200` OK
|
|
1277
|
+
*/
|
|
1278
|
+
|
|
1279
|
+
}, {
|
|
1280
|
+
key: "unbindClient",
|
|
1281
|
+
value: function unbindClient(clientId) {
|
|
1282
|
+
return this.http.delete("/account/oauth2/client/" + clientId, null).then(() => {});
|
|
1283
|
+
}
|
|
1284
|
+
/**
|
|
1285
|
+
* No description
|
|
1286
|
+
*
|
|
1287
|
+
* @tags Account
|
|
1288
|
+
* @name Token
|
|
1289
|
+
* @operationId AccountController_Token
|
|
1290
|
+
* @summary Get access token request.
|
|
1291
|
+
* @request POST:/account/oauth2/token
|
|
1292
|
+
* @response `200` OK
|
|
1293
|
+
*/
|
|
1294
|
+
|
|
1295
|
+
}, {
|
|
1296
|
+
key: "token",
|
|
1297
|
+
value: function token(data) {
|
|
1298
|
+
return this.http.post("/account/oauth2/token", data).json();
|
|
1299
|
+
}
|
|
1228
1300
|
/**
|
|
1229
1301
|
* No description
|
|
1230
1302
|
*
|
|
@@ -1399,9 +1471,13 @@ let Account = /*#__PURE__*/function (_AccountService) {
|
|
|
1399
1471
|
|
|
1400
1472
|
_createClass(Account, [{
|
|
1401
1473
|
key: "login",
|
|
1402
|
-
value: async function login(params) {
|
|
1474
|
+
value: async function login(params, authParams) {
|
|
1475
|
+
if (authParams === void 0) {
|
|
1476
|
+
authParams = {};
|
|
1477
|
+
}
|
|
1478
|
+
|
|
1403
1479
|
if (params) {
|
|
1404
|
-
await _get(_getPrototypeOf(Account.prototype), "authenticate", this).call(this, params);
|
|
1480
|
+
await _get(_getPrototypeOf(Account.prototype), "authenticate", this).call(this, authParams, params);
|
|
1405
1481
|
}
|
|
1406
1482
|
}
|
|
1407
1483
|
}, {
|
|
@@ -2003,26 +2079,26 @@ let ClientSettings = /*#__PURE__*/function (_ClientSettingsServic) {
|
|
|
2003
2079
|
* @baseUrl /sp
|
|
2004
2080
|
*/
|
|
2005
2081
|
|
|
2006
|
-
let
|
|
2007
|
-
_inherits(
|
|
2082
|
+
let EqlService = /*#__PURE__*/function (_Service) {
|
|
2083
|
+
_inherits(EqlService, _Service);
|
|
2008
2084
|
|
|
2009
|
-
var _super = /*#__PURE__*/_createSuper(
|
|
2085
|
+
var _super = /*#__PURE__*/_createSuper(EqlService);
|
|
2010
2086
|
|
|
2011
|
-
function
|
|
2012
|
-
_classCallCheck(this,
|
|
2087
|
+
function EqlService() {
|
|
2088
|
+
_classCallCheck(this, EqlService);
|
|
2013
2089
|
|
|
2014
2090
|
return _super.apply(this, arguments);
|
|
2015
2091
|
}
|
|
2016
2092
|
|
|
2017
|
-
_createClass(
|
|
2093
|
+
_createClass(EqlService, [{
|
|
2018
2094
|
key: "getQueryResult",
|
|
2019
2095
|
value:
|
|
2020
2096
|
/**
|
|
2021
2097
|
* No description
|
|
2022
2098
|
*
|
|
2023
|
-
* @tags
|
|
2099
|
+
* @tags Eql
|
|
2024
2100
|
* @name GetQueryResult
|
|
2025
|
-
* @operationId
|
|
2101
|
+
* @operationId EqlController_GetQueryResult
|
|
2026
2102
|
* @summary Perform resources set acl access batch operation.
|
|
2027
2103
|
* @request POST:/eql/query
|
|
2028
2104
|
* @response `200` OK
|
|
@@ -2033,9 +2109,9 @@ let EqlTestService = /*#__PURE__*/function (_Service) {
|
|
|
2033
2109
|
/**
|
|
2034
2110
|
* No description
|
|
2035
2111
|
*
|
|
2036
|
-
* @tags
|
|
2112
|
+
* @tags Eql
|
|
2037
2113
|
* @name GetQueryDescription
|
|
2038
|
-
* @operationId
|
|
2114
|
+
* @operationId EqlController_GetQueryDescription
|
|
2039
2115
|
* @summary Get EQL result columns definitions.
|
|
2040
2116
|
* @request POST:/eql/description
|
|
2041
2117
|
* @response `200` OK
|
|
@@ -2049,9 +2125,9 @@ let EqlTestService = /*#__PURE__*/function (_Service) {
|
|
|
2049
2125
|
/**
|
|
2050
2126
|
* No description
|
|
2051
2127
|
*
|
|
2052
|
-
* @tags
|
|
2128
|
+
* @tags Eql
|
|
2053
2129
|
* @name SetLayerParameterValue
|
|
2054
|
-
* @operationId
|
|
2130
|
+
* @operationId EqlController_SetLayerParameterValue
|
|
2055
2131
|
* @summary Set EQL layer parameter.
|
|
2056
2132
|
* @request POST:/eql/setParam
|
|
2057
2133
|
* @response `200` OK
|
|
@@ -2065,9 +2141,9 @@ let EqlTestService = /*#__PURE__*/function (_Service) {
|
|
|
2065
2141
|
/**
|
|
2066
2142
|
* No description
|
|
2067
2143
|
*
|
|
2068
|
-
* @tags
|
|
2144
|
+
* @tags Eql
|
|
2069
2145
|
* @name SetLayerParameters
|
|
2070
|
-
* @operationId
|
|
2146
|
+
* @operationId EqlController_SetLayerParameters
|
|
2071
2147
|
* @summary Set EQL layer parameters.
|
|
2072
2148
|
* @request POST:/eql/setParams
|
|
2073
2149
|
* @response `200` OK
|
|
@@ -2081,9 +2157,9 @@ let EqlTestService = /*#__PURE__*/function (_Service) {
|
|
|
2081
2157
|
/**
|
|
2082
2158
|
* No description
|
|
2083
2159
|
*
|
|
2084
|
-
* @tags
|
|
2160
|
+
* @tags Eql
|
|
2085
2161
|
* @name GetLayerParameters
|
|
2086
|
-
* @operationId
|
|
2162
|
+
* @operationId EqlController_GetLayerParameters
|
|
2087
2163
|
* @summary Get EQL parameter.
|
|
2088
2164
|
* @request GET:/eql/getParam
|
|
2089
2165
|
* @response `200` OK
|
|
@@ -2097,9 +2173,9 @@ let EqlTestService = /*#__PURE__*/function (_Service) {
|
|
|
2097
2173
|
/**
|
|
2098
2174
|
* No description
|
|
2099
2175
|
*
|
|
2100
|
-
* @tags
|
|
2176
|
+
* @tags Eql
|
|
2101
2177
|
* @name GetLayerParameters1
|
|
2102
|
-
* @operationId
|
|
2178
|
+
* @operationId EqlController_GetLayerParameters_1
|
|
2103
2179
|
* @summary Get all EQL parameters.
|
|
2104
2180
|
* @request GET:/eql/getParams
|
|
2105
2181
|
* @response `200` OK
|
|
@@ -2113,9 +2189,9 @@ let EqlTestService = /*#__PURE__*/function (_Service) {
|
|
|
2113
2189
|
/**
|
|
2114
2190
|
* No description
|
|
2115
2191
|
*
|
|
2116
|
-
* @tags
|
|
2192
|
+
* @tags Eql
|
|
2117
2193
|
* @name RemoveLayerParameterValue
|
|
2118
|
-
* @operationId
|
|
2194
|
+
* @operationId EqlController_RemoveLayerParameterValue
|
|
2119
2195
|
* @summary Remove EQL layer parameter.
|
|
2120
2196
|
* @request DELETE:/eql/removeParam
|
|
2121
2197
|
* @response `200` OK
|
|
@@ -2128,22 +2204,22 @@ let EqlTestService = /*#__PURE__*/function (_Service) {
|
|
|
2128
2204
|
}
|
|
2129
2205
|
}]);
|
|
2130
2206
|
|
|
2131
|
-
return
|
|
2207
|
+
return EqlService;
|
|
2132
2208
|
}(Service);
|
|
2133
2209
|
|
|
2134
|
-
let
|
|
2135
|
-
_inherits(
|
|
2210
|
+
let Eql = /*#__PURE__*/function (_EqlService) {
|
|
2211
|
+
_inherits(Eql, _EqlService);
|
|
2136
2212
|
|
|
2137
|
-
var _super = /*#__PURE__*/_createSuper(
|
|
2213
|
+
var _super = /*#__PURE__*/_createSuper(Eql);
|
|
2138
2214
|
|
|
2139
|
-
function
|
|
2140
|
-
_classCallCheck(this,
|
|
2215
|
+
function Eql() {
|
|
2216
|
+
_classCallCheck(this, Eql);
|
|
2141
2217
|
|
|
2142
2218
|
return _super.apply(this, arguments);
|
|
2143
2219
|
}
|
|
2144
2220
|
|
|
2145
|
-
return _createClass(
|
|
2146
|
-
}(
|
|
2221
|
+
return _createClass(Eql);
|
|
2222
|
+
}(EqlService);
|
|
2147
2223
|
|
|
2148
2224
|
/**
|
|
2149
2225
|
* @title Spatial Processing Core API
|
|
@@ -3199,22 +3275,6 @@ let LayersService = /*#__PURE__*/function (_Service) {
|
|
|
3199
3275
|
function getBulkFeatures(data) {
|
|
3200
3276
|
return this.http.post("/bulk/layers/features/query", data).json();
|
|
3201
3277
|
}
|
|
3202
|
-
/**
|
|
3203
|
-
* No description
|
|
3204
|
-
*
|
|
3205
|
-
* @tags Layers
|
|
3206
|
-
* @name GetFeaturesFromLayers
|
|
3207
|
-
* @operationId LayersController_GetFeaturesFromLayers
|
|
3208
|
-
* @summary Returns list of the layer features.
|
|
3209
|
-
* @request POST:/layers/features/query
|
|
3210
|
-
* @response `200` OK
|
|
3211
|
-
*/
|
|
3212
|
-
|
|
3213
|
-
}, {
|
|
3214
|
-
key: "getFeaturesFromLayers",
|
|
3215
|
-
value: function getFeaturesFromLayers(data) {
|
|
3216
|
-
return this.http.post("/layers/features/query", data).json();
|
|
3217
|
-
}
|
|
3218
3278
|
/**
|
|
3219
3279
|
* No description
|
|
3220
3280
|
*
|
|
@@ -5018,8 +5078,8 @@ let Notification = /*#__PURE__*/function (_NotificationService) {
|
|
|
5018
5078
|
|| event.code === 4002
|
|
5019
5079
|
/* InvalidSession */
|
|
5020
5080
|
) {
|
|
5021
|
-
|
|
5022
|
-
|
|
5081
|
+
_this.connectStatus = ConnectionStatus.SessionClosed;
|
|
5082
|
+
} else if (_this.reconnectTries < _this.MAX_WS_RECONNECT_TRIES) {
|
|
5023
5083
|
_this.connectStatus = ConnectionStatus.Break;
|
|
5024
5084
|
_this.reconnectTries++;
|
|
5025
5085
|
|
|
@@ -5853,12 +5913,12 @@ let Resources = /*#__PURE__*/function () {
|
|
|
5853
5913
|
}, {
|
|
5854
5914
|
key: "getDependentNames",
|
|
5855
5915
|
value: function getDependentNames(deps, depType) {
|
|
5856
|
-
return deps.filter(
|
|
5916
|
+
return deps.filter(_ref => {
|
|
5857
5917
|
let {
|
|
5858
5918
|
type
|
|
5859
5919
|
} = _ref;
|
|
5860
5920
|
return type === depType;
|
|
5861
|
-
}).map(
|
|
5921
|
+
}).map(_ref2 => {
|
|
5862
5922
|
let {
|
|
5863
5923
|
name
|
|
5864
5924
|
} = _ref2;
|
|
@@ -6314,7 +6374,7 @@ let Scheduler = /*#__PURE__*/function (_SchedulerService) {
|
|
|
6314
6374
|
const taskProgress = await this.getTaskProgress(id);
|
|
6315
6375
|
this.resolveTaskStatus(taskProgress, resolve, reject);
|
|
6316
6376
|
|
|
6317
|
-
const taskResultCallback = async
|
|
6377
|
+
const taskResultCallback = async _ref => {
|
|
6318
6378
|
let {
|
|
6319
6379
|
data
|
|
6320
6380
|
} = _ref;
|
|
@@ -6880,6 +6940,22 @@ let TablesService = /*#__PURE__*/function (_Service) {
|
|
|
6880
6940
|
value: function deleteResources(query) {
|
|
6881
6941
|
return this.http.delete("/tables", null, query).json();
|
|
6882
6942
|
}
|
|
6943
|
+
/**
|
|
6944
|
+
* No description
|
|
6945
|
+
*
|
|
6946
|
+
* @tags Tables
|
|
6947
|
+
* @name CreateViewFromQueryLayer
|
|
6948
|
+
* @operationId TablesController_CreateViewFromQueryLayer
|
|
6949
|
+
* @summary Creates a new view from query layer.
|
|
6950
|
+
* @request POST:/tables/fromLayer
|
|
6951
|
+
* @response `200` OK
|
|
6952
|
+
*/
|
|
6953
|
+
|
|
6954
|
+
}, {
|
|
6955
|
+
key: "createViewFromQueryLayer",
|
|
6956
|
+
value: function createViewFromQueryLayer(data) {
|
|
6957
|
+
return this.http.post("/tables/fromLayer", data).json();
|
|
6958
|
+
}
|
|
6883
6959
|
/**
|
|
6884
6960
|
* No description
|
|
6885
6961
|
*
|
|
@@ -7506,7 +7582,7 @@ let Api = /*#__PURE__*/function (_EventEmitter) {
|
|
|
7506
7582
|
_this.vectorTiles = new VectorTiles(_this.http);
|
|
7507
7583
|
_this.universalSearch = new UniversalSearchService(_this.http);
|
|
7508
7584
|
_this.spatialReference = new SpatialReferencesService(_this.http);
|
|
7509
|
-
_this.
|
|
7585
|
+
_this.eql = new Eql(_this.http);
|
|
7510
7586
|
_this.catalog = new CatalogService(_this.http);
|
|
7511
7587
|
_this.queryToken = new QueryTokenAccessService(_this.http);
|
|
7512
7588
|
_this.names = new Names({
|
|
@@ -7525,6 +7601,7 @@ let Api = /*#__PURE__*/function (_EventEmitter) {
|
|
|
7525
7601
|
value: async function init(_ref2) {
|
|
7526
7602
|
let {
|
|
7527
7603
|
authParams,
|
|
7604
|
+
authQueryParams,
|
|
7528
7605
|
connectWs,
|
|
7529
7606
|
initScheduler,
|
|
7530
7607
|
fetchSettings,
|
|
@@ -7532,7 +7609,7 @@ let Api = /*#__PURE__*/function (_EventEmitter) {
|
|
|
7532
7609
|
} = _ref2;
|
|
7533
7610
|
|
|
7534
7611
|
try {
|
|
7535
|
-
await this.account.login(authParams);
|
|
7612
|
+
await this.account.login(authParams, authQueryParams);
|
|
7536
7613
|
|
|
7537
7614
|
if (fetchUser) {
|
|
7538
7615
|
await this.account.fetchCurrentUser();
|
|
@@ -7993,47 +8070,47 @@ function isFeatureLayer(layer) {
|
|
|
7993
8070
|
|
|
7994
8071
|
/**
|
|
7995
8072
|
*
|
|
7996
|
-
|
|
8073
|
+
|
|
7997
8074
|
None
|
|
7998
|
-
|
|
8075
|
+
|
|
7999
8076
|
Array
|
|
8000
|
-
|
|
8077
|
+
|
|
8001
8078
|
Min
|
|
8002
|
-
|
|
8079
|
+
|
|
8003
8080
|
Max
|
|
8004
|
-
|
|
8081
|
+
|
|
8005
8082
|
Avg
|
|
8006
|
-
|
|
8083
|
+
|
|
8007
8084
|
Sum
|
|
8008
|
-
|
|
8085
|
+
|
|
8009
8086
|
Extent
|
|
8010
|
-
|
|
8087
|
+
|
|
8011
8088
|
H3
|
|
8012
|
-
|
|
8089
|
+
|
|
8013
8090
|
Count
|
|
8014
|
-
|
|
8091
|
+
|
|
8015
8092
|
TotalCount
|
|
8016
|
-
|
|
8093
|
+
|
|
8017
8094
|
DistinctCount
|
|
8018
|
-
|
|
8095
|
+
|
|
8019
8096
|
First
|
|
8020
|
-
|
|
8097
|
+
|
|
8021
8098
|
Last
|
|
8022
|
-
|
|
8099
|
+
|
|
8023
8100
|
Median
|
|
8024
|
-
|
|
8101
|
+
|
|
8025
8102
|
Mod
|
|
8026
|
-
|
|
8103
|
+
|
|
8027
8104
|
StdDeviation
|
|
8028
|
-
|
|
8105
|
+
|
|
8029
8106
|
SumOfProduct
|
|
8030
|
-
|
|
8107
|
+
|
|
8031
8108
|
OnlyValue
|
|
8032
|
-
|
|
8109
|
+
|
|
8033
8110
|
WeightedAvg
|
|
8034
|
-
|
|
8111
|
+
|
|
8035
8112
|
DensityIndicators
|
|
8036
|
-
|
|
8113
|
+
|
|
8037
8114
|
DividedSum
|
|
8038
8115
|
*/
|
|
8039
8116
|
var AggregationFunction;
|
|
@@ -8063,13 +8140,13 @@ var AggregationFunction;
|
|
|
8063
8140
|
})(AggregationFunction || (AggregationFunction = {}));
|
|
8064
8141
|
/**
|
|
8065
8142
|
*
|
|
8066
|
-
|
|
8143
|
+
|
|
8067
8144
|
None
|
|
8068
|
-
|
|
8145
|
+
|
|
8069
8146
|
SelectFromHandBook
|
|
8070
|
-
|
|
8147
|
+
|
|
8071
8148
|
SelectFromRange
|
|
8072
|
-
|
|
8149
|
+
|
|
8073
8150
|
ViewHandBook
|
|
8074
8151
|
*/
|
|
8075
8152
|
|
|
@@ -8084,31 +8161,31 @@ var AttributeSelectorType;
|
|
|
8084
8161
|
})(AttributeSelectorType || (AttributeSelectorType = {}));
|
|
8085
8162
|
/**
|
|
8086
8163
|
*
|
|
8087
|
-
|
|
8164
|
+
|
|
8088
8165
|
Unknown
|
|
8089
|
-
|
|
8166
|
+
|
|
8090
8167
|
String
|
|
8091
|
-
|
|
8168
|
+
|
|
8092
8169
|
Int32
|
|
8093
|
-
|
|
8170
|
+
|
|
8094
8171
|
Int64
|
|
8095
|
-
|
|
8172
|
+
|
|
8096
8173
|
Double
|
|
8097
|
-
|
|
8174
|
+
|
|
8098
8175
|
DateTime
|
|
8099
|
-
|
|
8176
|
+
|
|
8100
8177
|
Boolean
|
|
8101
|
-
|
|
8178
|
+
|
|
8102
8179
|
Point
|
|
8103
|
-
|
|
8180
|
+
|
|
8104
8181
|
Polyline
|
|
8105
|
-
|
|
8182
|
+
|
|
8106
8183
|
MultiPolygon
|
|
8107
|
-
|
|
8184
|
+
|
|
8108
8185
|
Multipoint
|
|
8109
|
-
|
|
8186
|
+
|
|
8110
8187
|
H3Index
|
|
8111
|
-
|
|
8188
|
+
|
|
8112
8189
|
Json
|
|
8113
8190
|
*/
|
|
8114
8191
|
|
|
@@ -8131,18 +8208,35 @@ var AttributeType;
|
|
|
8131
8208
|
AttributeType["Json"] = "Json";
|
|
8132
8209
|
})(AttributeType || (AttributeType = {}));
|
|
8133
8210
|
/**
|
|
8134
|
-
*
|
|
8211
|
+
* An authorization grant is a credential representing the resource
|
|
8212
|
+
owner's authorization (to access its protected resources) used by the
|
|
8213
|
+
client to obtain an access token.
|
|
8214
|
+
|
|
8215
|
+
authorization_code
|
|
8216
|
+
|
|
8217
|
+
refresh_token
|
|
8218
|
+
*/
|
|
8135
8219
|
|
|
8136
|
-
None
|
|
8137
8220
|
|
|
8138
|
-
|
|
8221
|
+
var AuthorizationGrant;
|
|
8139
8222
|
|
|
8223
|
+
(function (AuthorizationGrant) {
|
|
8224
|
+
AuthorizationGrant["AuthorizationCode"] = "authorization_code";
|
|
8225
|
+
AuthorizationGrant["RefreshToken"] = "refresh_token";
|
|
8226
|
+
})(AuthorizationGrant || (AuthorizationGrant = {}));
|
|
8227
|
+
/**
|
|
8228
|
+
*
|
|
8229
|
+
|
|
8230
|
+
None
|
|
8231
|
+
|
|
8232
|
+
Map
|
|
8233
|
+
|
|
8140
8234
|
Layer
|
|
8141
|
-
|
|
8235
|
+
|
|
8142
8236
|
Table
|
|
8143
|
-
|
|
8237
|
+
|
|
8144
8238
|
File
|
|
8145
|
-
|
|
8239
|
+
|
|
8146
8240
|
TaskPrototype
|
|
8147
8241
|
*/
|
|
8148
8242
|
|
|
@@ -8159,15 +8253,15 @@ var CatalogResourceType;
|
|
|
8159
8253
|
})(CatalogResourceType || (CatalogResourceType = {}));
|
|
8160
8254
|
/**
|
|
8161
8255
|
* Describes classification methods.
|
|
8162
|
-
|
|
8256
|
+
|
|
8163
8257
|
none
|
|
8164
|
-
|
|
8258
|
+
|
|
8165
8259
|
naturalBreaks
|
|
8166
|
-
|
|
8260
|
+
|
|
8167
8261
|
equalInterval
|
|
8168
|
-
|
|
8262
|
+
|
|
8169
8263
|
quantile
|
|
8170
|
-
|
|
8264
|
+
|
|
8171
8265
|
unique
|
|
8172
8266
|
*/
|
|
8173
8267
|
|
|
@@ -8183,11 +8277,11 @@ var ClassificationType;
|
|
|
8183
8277
|
})(ClassificationType || (ClassificationType = {}));
|
|
8184
8278
|
/**
|
|
8185
8279
|
*
|
|
8186
|
-
|
|
8280
|
+
|
|
8187
8281
|
decimal
|
|
8188
|
-
|
|
8282
|
+
|
|
8189
8283
|
dateTime
|
|
8190
|
-
|
|
8284
|
+
|
|
8191
8285
|
text
|
|
8192
8286
|
*/
|
|
8193
8287
|
|
|
@@ -8201,55 +8295,55 @@ var ClassifyAttributeType;
|
|
|
8201
8295
|
})(ClassifyAttributeType || (ClassifyAttributeType = {}));
|
|
8202
8296
|
/**
|
|
8203
8297
|
*
|
|
8204
|
-
|
|
8298
|
+
|
|
8205
8299
|
Unknown
|
|
8206
|
-
|
|
8300
|
+
|
|
8207
8301
|
SerializeError
|
|
8208
|
-
|
|
8302
|
+
|
|
8209
8303
|
InvalidDataService
|
|
8210
|
-
|
|
8304
|
+
|
|
8211
8305
|
InvalidConfiguration
|
|
8212
|
-
|
|
8306
|
+
|
|
8213
8307
|
InvalidDataServiceName
|
|
8214
|
-
|
|
8308
|
+
|
|
8215
8309
|
InvalidTableName
|
|
8216
|
-
|
|
8310
|
+
|
|
8217
8311
|
InvalidLayerName
|
|
8218
|
-
|
|
8312
|
+
|
|
8219
8313
|
ResourceNotFound
|
|
8220
|
-
|
|
8314
|
+
|
|
8221
8315
|
InvalidCondition
|
|
8222
|
-
|
|
8316
|
+
|
|
8223
8317
|
InvalidAttributes
|
|
8224
|
-
|
|
8318
|
+
|
|
8225
8319
|
InvalidIdAttribute
|
|
8226
|
-
|
|
8320
|
+
|
|
8227
8321
|
InvalidGeometryAttribute
|
|
8228
|
-
|
|
8322
|
+
|
|
8229
8323
|
InvalidGeometryAttributeType
|
|
8230
|
-
|
|
8324
|
+
|
|
8231
8325
|
InvalidColumnName
|
|
8232
|
-
|
|
8326
|
+
|
|
8233
8327
|
InvalidIdColumnSettings
|
|
8234
|
-
|
|
8328
|
+
|
|
8235
8329
|
ColumnNotExistsInTable
|
|
8236
|
-
|
|
8330
|
+
|
|
8237
8331
|
InvalidStyle
|
|
8238
|
-
|
|
8332
|
+
|
|
8239
8333
|
InvalidLayerType
|
|
8240
|
-
|
|
8334
|
+
|
|
8241
8335
|
ColumnLoadingError
|
|
8242
|
-
|
|
8336
|
+
|
|
8243
8337
|
InvalidAttributeFormat
|
|
8244
|
-
|
|
8338
|
+
|
|
8245
8339
|
DataSourceNotFound
|
|
8246
|
-
|
|
8340
|
+
|
|
8247
8341
|
DuplicateColumns
|
|
8248
|
-
|
|
8342
|
+
|
|
8249
8343
|
DuplicateAttributes
|
|
8250
|
-
|
|
8344
|
+
|
|
8251
8345
|
TableWithoutColumns
|
|
8252
|
-
|
|
8346
|
+
|
|
8253
8347
|
InvalidTableReferenceConfiguration
|
|
8254
8348
|
*/
|
|
8255
8349
|
|
|
@@ -8285,15 +8379,15 @@ var ConfigurationErrorEnum;
|
|
|
8285
8379
|
})(ConfigurationErrorEnum || (ConfigurationErrorEnum = {}));
|
|
8286
8380
|
/**
|
|
8287
8381
|
* Type of the error.
|
|
8288
|
-
|
|
8382
|
+
|
|
8289
8383
|
ResourceLimitExceeded
|
|
8290
|
-
|
|
8384
|
+
|
|
8291
8385
|
ResourceNotFound
|
|
8292
|
-
|
|
8386
|
+
|
|
8293
8387
|
InternalError
|
|
8294
|
-
|
|
8388
|
+
|
|
8295
8389
|
BadRequest
|
|
8296
|
-
|
|
8390
|
+
|
|
8297
8391
|
DuplicateContent
|
|
8298
8392
|
*/
|
|
8299
8393
|
|
|
@@ -8344,9 +8438,9 @@ var ErrorType;
|
|
|
8344
8438
|
})(ErrorType || (ErrorType = {}));
|
|
8345
8439
|
/**
|
|
8346
8440
|
* Type of the feature.
|
|
8347
|
-
|
|
8441
|
+
|
|
8348
8442
|
Unknown
|
|
8349
|
-
|
|
8443
|
+
|
|
8350
8444
|
GeometricFeature
|
|
8351
8445
|
*/
|
|
8352
8446
|
|
|
@@ -8359,11 +8453,11 @@ var FeatureType;
|
|
|
8359
8453
|
})(FeatureType || (FeatureType = {}));
|
|
8360
8454
|
/**
|
|
8361
8455
|
* Sets whether font should be styled.
|
|
8362
|
-
|
|
8456
|
+
|
|
8363
8457
|
normal
|
|
8364
|
-
|
|
8458
|
+
|
|
8365
8459
|
oblique
|
|
8366
|
-
|
|
8460
|
+
|
|
8367
8461
|
italic
|
|
8368
8462
|
*/
|
|
8369
8463
|
|
|
@@ -8377,27 +8471,27 @@ var FontStyle;
|
|
|
8377
8471
|
})(FontStyle || (FontStyle = {}));
|
|
8378
8472
|
/**
|
|
8379
8473
|
* Specifies the weight (or boldness) of the font.
|
|
8380
|
-
|
|
8474
|
+
|
|
8381
8475
|
Thin
|
|
8382
|
-
|
|
8476
|
+
|
|
8383
8477
|
ExtraLight
|
|
8384
|
-
|
|
8478
|
+
|
|
8385
8479
|
Light
|
|
8386
|
-
|
|
8480
|
+
|
|
8387
8481
|
SemiLight
|
|
8388
|
-
|
|
8482
|
+
|
|
8389
8483
|
Normal
|
|
8390
|
-
|
|
8484
|
+
|
|
8391
8485
|
Medium
|
|
8392
|
-
|
|
8486
|
+
|
|
8393
8487
|
DemiBold
|
|
8394
|
-
|
|
8488
|
+
|
|
8395
8489
|
Bold
|
|
8396
|
-
|
|
8490
|
+
|
|
8397
8491
|
ExtraBold
|
|
8398
|
-
|
|
8492
|
+
|
|
8399
8493
|
Black
|
|
8400
|
-
|
|
8494
|
+
|
|
8401
8495
|
ExtraBlack
|
|
8402
8496
|
*/
|
|
8403
8497
|
|
|
@@ -8419,17 +8513,17 @@ var FontWeight;
|
|
|
8419
8513
|
})(FontWeight || (FontWeight = {}));
|
|
8420
8514
|
/**
|
|
8421
8515
|
*
|
|
8422
|
-
|
|
8516
|
+
|
|
8423
8517
|
unknown
|
|
8424
|
-
|
|
8518
|
+
|
|
8425
8519
|
point
|
|
8426
|
-
|
|
8520
|
+
|
|
8427
8521
|
polyline
|
|
8428
|
-
|
|
8522
|
+
|
|
8429
8523
|
multipolygon
|
|
8430
|
-
|
|
8524
|
+
|
|
8431
8525
|
envelope
|
|
8432
|
-
|
|
8526
|
+
|
|
8433
8527
|
multipoint
|
|
8434
8528
|
*/
|
|
8435
8529
|
|
|
@@ -8446,13 +8540,13 @@ var GeometryType;
|
|
|
8446
8540
|
})(GeometryType || (GeometryType = {}));
|
|
8447
8541
|
/**
|
|
8448
8542
|
* Resource group.
|
|
8449
|
-
|
|
8543
|
+
|
|
8450
8544
|
my
|
|
8451
|
-
|
|
8545
|
+
|
|
8452
8546
|
role
|
|
8453
|
-
|
|
8547
|
+
|
|
8454
8548
|
public
|
|
8455
|
-
|
|
8549
|
+
|
|
8456
8550
|
all
|
|
8457
8551
|
*/
|
|
8458
8552
|
|
|
@@ -8467,13 +8561,13 @@ var Group;
|
|
|
8467
8561
|
})(Group || (Group = {}));
|
|
8468
8562
|
/**
|
|
8469
8563
|
* Specifies the settings of line cap. This is applied to the beginning and end of each non-closed line.
|
|
8470
|
-
|
|
8564
|
+
|
|
8471
8565
|
Flat
|
|
8472
|
-
|
|
8566
|
+
|
|
8473
8567
|
Square
|
|
8474
|
-
|
|
8568
|
+
|
|
8475
8569
|
Round
|
|
8476
|
-
|
|
8570
|
+
|
|
8477
8571
|
Triangle
|
|
8478
8572
|
*/
|
|
8479
8573
|
|
|
@@ -8488,29 +8582,29 @@ var LineCapStyle;
|
|
|
8488
8582
|
})(LineCapStyle || (LineCapStyle = {}));
|
|
8489
8583
|
/**
|
|
8490
8584
|
* Type of the line ending.
|
|
8491
|
-
|
|
8585
|
+
|
|
8492
8586
|
none
|
|
8493
|
-
|
|
8587
|
+
|
|
8494
8588
|
arrow
|
|
8495
|
-
|
|
8589
|
+
|
|
8496
8590
|
filledArrow
|
|
8497
|
-
|
|
8591
|
+
|
|
8498
8592
|
square
|
|
8499
|
-
|
|
8593
|
+
|
|
8500
8594
|
filledSquare
|
|
8501
|
-
|
|
8595
|
+
|
|
8502
8596
|
circle
|
|
8503
|
-
|
|
8597
|
+
|
|
8504
8598
|
filledCircle
|
|
8505
|
-
|
|
8599
|
+
|
|
8506
8600
|
diamond
|
|
8507
|
-
|
|
8601
|
+
|
|
8508
8602
|
filledDiamond
|
|
8509
|
-
|
|
8603
|
+
|
|
8510
8604
|
roundSquare
|
|
8511
|
-
|
|
8605
|
+
|
|
8512
8606
|
filledRoundSquare
|
|
8513
|
-
|
|
8607
|
+
|
|
8514
8608
|
svg
|
|
8515
8609
|
*/
|
|
8516
8610
|
|
|
@@ -8533,11 +8627,11 @@ var LineEndingType;
|
|
|
8533
8627
|
})(LineEndingType || (LineEndingType = {}));
|
|
8534
8628
|
/**
|
|
8535
8629
|
* Specifies the settings of lines join. This is applied to corners in lines and rectangles.
|
|
8536
|
-
|
|
8630
|
+
|
|
8537
8631
|
Miter
|
|
8538
|
-
|
|
8632
|
+
|
|
8539
8633
|
Bevel
|
|
8540
|
-
|
|
8634
|
+
|
|
8541
8635
|
Round
|
|
8542
8636
|
*/
|
|
8543
8637
|
|
|
@@ -8551,15 +8645,15 @@ var LineJoinType;
|
|
|
8551
8645
|
})(LineJoinType || (LineJoinType = {}));
|
|
8552
8646
|
/**
|
|
8553
8647
|
*
|
|
8554
|
-
|
|
8648
|
+
|
|
8555
8649
|
Unknown
|
|
8556
|
-
|
|
8650
|
+
|
|
8557
8651
|
union
|
|
8558
|
-
|
|
8652
|
+
|
|
8559
8653
|
intersection
|
|
8560
|
-
|
|
8654
|
+
|
|
8561
8655
|
subtraction
|
|
8562
|
-
|
|
8656
|
+
|
|
8563
8657
|
symDifference
|
|
8564
8658
|
*/
|
|
8565
8659
|
|
|
@@ -8575,12 +8669,14 @@ var Operation;
|
|
|
8575
8669
|
})(Operation || (Operation = {}));
|
|
8576
8670
|
/**
|
|
8577
8671
|
*
|
|
8578
|
-
|
|
8672
|
+
|
|
8579
8673
|
My
|
|
8580
|
-
|
|
8674
|
+
|
|
8581
8675
|
Shared
|
|
8582
|
-
|
|
8676
|
+
|
|
8583
8677
|
Public
|
|
8678
|
+
|
|
8679
|
+
All
|
|
8584
8680
|
*/
|
|
8585
8681
|
|
|
8586
8682
|
|
|
@@ -8590,12 +8686,13 @@ var OwnerFilter;
|
|
|
8590
8686
|
OwnerFilter["My"] = "My";
|
|
8591
8687
|
OwnerFilter["Shared"] = "Shared";
|
|
8592
8688
|
OwnerFilter["Public"] = "Public";
|
|
8689
|
+
OwnerFilter["All"] = "All";
|
|
8593
8690
|
})(OwnerFilter || (OwnerFilter = {}));
|
|
8594
8691
|
/**
|
|
8595
8692
|
* Influences the y direction of the tile coordinates. The global-mercator (aka Spherical Mercator) profile is assumed.
|
|
8596
|
-
|
|
8693
|
+
|
|
8597
8694
|
xyz
|
|
8598
|
-
|
|
8695
|
+
|
|
8599
8696
|
tms
|
|
8600
8697
|
*/
|
|
8601
8698
|
|
|
@@ -8608,19 +8705,19 @@ var PbfSchema;
|
|
|
8608
8705
|
})(PbfSchema || (PbfSchema = {}));
|
|
8609
8706
|
/**
|
|
8610
8707
|
*
|
|
8611
|
-
|
|
8708
|
+
|
|
8612
8709
|
none
|
|
8613
|
-
|
|
8710
|
+
|
|
8614
8711
|
configure
|
|
8615
|
-
|
|
8712
|
+
|
|
8616
8713
|
write
|
|
8617
|
-
|
|
8714
|
+
|
|
8618
8715
|
read
|
|
8619
|
-
|
|
8716
|
+
|
|
8620
8717
|
read,configure
|
|
8621
|
-
|
|
8718
|
+
|
|
8622
8719
|
read,write
|
|
8623
|
-
|
|
8720
|
+
|
|
8624
8721
|
read,write,configure
|
|
8625
8722
|
*/
|
|
8626
8723
|
|
|
@@ -8638,19 +8735,19 @@ var Permissions;
|
|
|
8638
8735
|
})(Permissions || (Permissions = {}));
|
|
8639
8736
|
/**
|
|
8640
8737
|
* Type of the authorization policy.
|
|
8641
|
-
|
|
8738
|
+
|
|
8642
8739
|
Unknown
|
|
8643
|
-
|
|
8740
|
+
|
|
8644
8741
|
CreateTable
|
|
8645
|
-
|
|
8742
|
+
|
|
8646
8743
|
CreateLayer
|
|
8647
|
-
|
|
8744
|
+
|
|
8648
8745
|
CreateProject
|
|
8649
|
-
|
|
8746
|
+
|
|
8650
8747
|
MaxFeaturesInOneTable
|
|
8651
|
-
|
|
8748
|
+
|
|
8652
8749
|
MaxObjectsToExport
|
|
8653
|
-
|
|
8750
|
+
|
|
8654
8751
|
MaxUploadContentSize
|
|
8655
8752
|
*/
|
|
8656
8753
|
|
|
@@ -8668,11 +8765,11 @@ var PolicyType;
|
|
|
8668
8765
|
})(PolicyType || (PolicyType = {}));
|
|
8669
8766
|
/**
|
|
8670
8767
|
* Stream quality.
|
|
8671
|
-
|
|
8768
|
+
|
|
8672
8769
|
Low
|
|
8673
|
-
|
|
8770
|
+
|
|
8674
8771
|
Medium
|
|
8675
|
-
|
|
8772
|
+
|
|
8676
8773
|
High
|
|
8677
8774
|
*/
|
|
8678
8775
|
|
|
@@ -8686,19 +8783,19 @@ var Quality;
|
|
|
8686
8783
|
})(Quality || (Quality = {}));
|
|
8687
8784
|
/**
|
|
8688
8785
|
*
|
|
8689
|
-
|
|
8786
|
+
|
|
8690
8787
|
Unknown
|
|
8691
|
-
|
|
8788
|
+
|
|
8692
8789
|
table
|
|
8693
|
-
|
|
8790
|
+
|
|
8694
8791
|
layer
|
|
8695
|
-
|
|
8792
|
+
|
|
8696
8793
|
project
|
|
8697
|
-
|
|
8794
|
+
|
|
8698
8795
|
file
|
|
8699
|
-
|
|
8796
|
+
|
|
8700
8797
|
feature
|
|
8701
|
-
|
|
8798
|
+
|
|
8702
8799
|
tag
|
|
8703
8800
|
*/
|
|
8704
8801
|
|
|
@@ -8723,22 +8820,37 @@ var ResourceTypeLink;
|
|
|
8723
8820
|
ResourceTypeLink["Project"] = "projects";
|
|
8724
8821
|
})(ResourceTypeLink || (ResourceTypeLink = {}));
|
|
8725
8822
|
/**
|
|
8726
|
-
*
|
|
8823
|
+
* Response type.
|
|
8824
|
+
|
|
8825
|
+
code
|
|
8826
|
+
|
|
8827
|
+
token
|
|
8828
|
+
*/
|
|
8727
8829
|
|
|
8728
|
-
None
|
|
8729
8830
|
|
|
8730
|
-
|
|
8831
|
+
var ResponseType;
|
|
8731
8832
|
|
|
8833
|
+
(function (ResponseType) {
|
|
8834
|
+
ResponseType["Code"] = "code";
|
|
8835
|
+
ResponseType["Token"] = "token";
|
|
8836
|
+
})(ResponseType || (ResponseType = {}));
|
|
8837
|
+
/**
|
|
8838
|
+
* Status of the server task.
|
|
8839
|
+
|
|
8840
|
+
None
|
|
8841
|
+
|
|
8842
|
+
Scheduled
|
|
8843
|
+
|
|
8732
8844
|
Planning
|
|
8733
|
-
|
|
8845
|
+
|
|
8734
8846
|
Executing
|
|
8735
|
-
|
|
8847
|
+
|
|
8736
8848
|
Completed
|
|
8737
|
-
|
|
8849
|
+
|
|
8738
8850
|
Failed
|
|
8739
|
-
|
|
8851
|
+
|
|
8740
8852
|
Canceled
|
|
8741
|
-
|
|
8853
|
+
|
|
8742
8854
|
Timeout
|
|
8743
8855
|
*/
|
|
8744
8856
|
|
|
@@ -8757,11 +8869,11 @@ var ServerTaskStatus;
|
|
|
8757
8869
|
})(ServerTaskStatus || (ServerTaskStatus = {}));
|
|
8758
8870
|
/**
|
|
8759
8871
|
*
|
|
8760
|
-
|
|
8872
|
+
|
|
8761
8873
|
Basic
|
|
8762
|
-
|
|
8874
|
+
|
|
8763
8875
|
PreserveTopology
|
|
8764
|
-
|
|
8876
|
+
|
|
8765
8877
|
VW
|
|
8766
8878
|
*/
|
|
8767
8879
|
|
|
@@ -8775,13 +8887,13 @@ var SimplifyType;
|
|
|
8775
8887
|
})(SimplifyType || (SimplifyType = {}));
|
|
8776
8888
|
/**
|
|
8777
8889
|
*
|
|
8778
|
-
|
|
8890
|
+
|
|
8779
8891
|
None
|
|
8780
|
-
|
|
8892
|
+
|
|
8781
8893
|
Image
|
|
8782
|
-
|
|
8894
|
+
|
|
8783
8895
|
PkkCode
|
|
8784
|
-
|
|
8896
|
+
|
|
8785
8897
|
Attachments
|
|
8786
8898
|
*/
|
|
8787
8899
|
|
|
@@ -8796,9 +8908,9 @@ var StringSubType;
|
|
|
8796
8908
|
})(StringSubType || (StringSubType = {}));
|
|
8797
8909
|
/**
|
|
8798
8910
|
* Task owner group.
|
|
8799
|
-
|
|
8911
|
+
|
|
8800
8912
|
my
|
|
8801
|
-
|
|
8913
|
+
|
|
8802
8914
|
all
|
|
8803
8915
|
*/
|
|
8804
8916
|
|
|
@@ -8811,13 +8923,13 @@ var TaskGroup;
|
|
|
8811
8923
|
})(TaskGroup || (TaskGroup = {}));
|
|
8812
8924
|
/**
|
|
8813
8925
|
* Sets the horizontal alignment of text.
|
|
8814
|
-
|
|
8926
|
+
|
|
8815
8927
|
right
|
|
8816
|
-
|
|
8928
|
+
|
|
8817
8929
|
left
|
|
8818
|
-
|
|
8930
|
+
|
|
8819
8931
|
center
|
|
8820
|
-
|
|
8932
|
+
|
|
8821
8933
|
justified
|
|
8822
8934
|
*/
|
|
8823
8935
|
|
|
@@ -8832,11 +8944,11 @@ var TextAlignment;
|
|
|
8832
8944
|
})(TextAlignment || (TextAlignment = {}));
|
|
8833
8945
|
/**
|
|
8834
8946
|
* Sets the vertical alignment of text.
|
|
8835
|
-
|
|
8947
|
+
|
|
8836
8948
|
top
|
|
8837
|
-
|
|
8949
|
+
|
|
8838
8950
|
bottom
|
|
8839
|
-
|
|
8951
|
+
|
|
8840
8952
|
middle
|
|
8841
8953
|
*/
|
|
8842
8954
|
|
|
@@ -8849,5 +8961,5 @@ var TextVerticalAlignment;
|
|
|
8849
8961
|
TextVerticalAlignment["Middle"] = "middle";
|
|
8850
8962
|
})(TextVerticalAlignment || (TextVerticalAlignment = {}));
|
|
8851
8963
|
|
|
8852
|
-
export { Account, AccountPreview, AggregationFunction, Api, ApiEvent, AttributeSelectorType, AttributeType, BulkOperations, Cameras, CatalogResourceType, ClassificationType, ClassifyAttributeType, ClientSettings, ConfigurationErrorEnum, ConnectionStatus, DependencyType,
|
|
8964
|
+
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, ResourceType, 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 };
|
|
8853
8965
|
//# sourceMappingURL=api.esm.js.map
|