@evergis/api 3.0.181 → 3.0.183
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 +4 -0
- package/dist/__generated__/AccountPreviewService.d.ts +1 -1
- package/dist/__generated__/AccountService.d.ts +1 -1
- package/dist/__generated__/BulkOperationsService.d.ts +1 -1
- package/dist/__generated__/CamerasService.d.ts +13 -2
- package/dist/__generated__/CatalogService.d.ts +119 -0
- package/dist/__generated__/ClientSettingsService.d.ts +1 -1
- package/dist/__generated__/EqlTestService.d.ts +3 -3
- package/dist/__generated__/ExternalProvidersService.d.ts +1 -1
- package/dist/__generated__/FeedbackService.d.ts +1 -1
- package/dist/__generated__/FiltersService.d.ts +1 -1
- package/dist/__generated__/GeneralService.d.ts +1 -1
- package/dist/__generated__/GeocodeService.d.ts +1 -1
- package/dist/__generated__/IceRouterService.d.ts +1 -1
- package/dist/__generated__/ImportService.d.ts +1 -1
- package/dist/__generated__/LayersService.d.ts +47 -3
- package/dist/__generated__/NamespaceService.d.ts +1 -1
- package/dist/__generated__/NavigationService.d.ts +1 -1
- package/dist/__generated__/NotificationService.d.ts +1 -1
- package/dist/__generated__/PrintService.d.ts +1 -1
- package/dist/__generated__/ProjectsService.d.ts +3 -3
- package/dist/__generated__/QueryTokenAccessService.d.ts +52 -0
- package/dist/__generated__/ResourceCatalogService.d.ts +1 -1
- package/dist/__generated__/S3Service.d.ts +1 -1
- package/dist/__generated__/SchedulerService.d.ts +1 -1
- package/dist/__generated__/SecurityService.d.ts +1 -1
- package/dist/__generated__/SpatialReferencesService.d.ts +1 -1
- package/dist/__generated__/StaticContentService.d.ts +1 -1
- package/dist/__generated__/StatisticService.d.ts +35 -2
- package/dist/__generated__/StyleService.d.ts +1 -1
- package/dist/__generated__/SymbolStorageService.d.ts +1 -1
- package/dist/__generated__/TablesService.d.ts +3 -3
- package/dist/__generated__/TagsService.d.ts +3 -3
- package/dist/__generated__/ToolsService.d.ts +1 -1
- package/dist/__generated__/UniversalSearchService.d.ts +1 -1
- package/dist/__generated__/VectorTileService.d.ts +1 -1
- package/dist/__generated__/WfsServerService.d.ts +1 -1
- package/dist/__generated__/WmsServerService.d.ts +3 -3
- package/dist/__generated__/WmtsService.d.ts +1 -1
- package/dist/__generated__/data-contracts.d.ts +613 -546
- package/dist/api.cjs.development.js +474 -50
- 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 +698 -238
- package/dist/api.esm.js.map +1 -1
- package/dist/services/Statistic.d.ts +5 -3
- package/package.json +3 -3
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 () {
|
|
@@ -315,7 +307,93 @@ let Service = /*#__PURE__*/_createClass(function Service(http) {
|
|
|
315
307
|
|
|
316
308
|
/**
|
|
317
309
|
* @title Spatial Processing Core API
|
|
318
|
-
* @version 1.5.1
|
|
310
|
+
* @version 1.5.1.0
|
|
311
|
+
* @baseUrl /sp
|
|
312
|
+
*/
|
|
313
|
+
|
|
314
|
+
let QueryTokenAccessService = /*#__PURE__*/function (_Service) {
|
|
315
|
+
_inherits(QueryTokenAccessService, _Service);
|
|
316
|
+
|
|
317
|
+
var _super = /*#__PURE__*/_createSuper(QueryTokenAccessService);
|
|
318
|
+
|
|
319
|
+
function QueryTokenAccessService() {
|
|
320
|
+
_classCallCheck(this, QueryTokenAccessService);
|
|
321
|
+
|
|
322
|
+
return _super.apply(this, arguments);
|
|
323
|
+
}
|
|
324
|
+
|
|
325
|
+
_createClass(QueryTokenAccessService, [{
|
|
326
|
+
key: "createToken",
|
|
327
|
+
value:
|
|
328
|
+
/**
|
|
329
|
+
* No description
|
|
330
|
+
*
|
|
331
|
+
* @tags QueryTokenAccess
|
|
332
|
+
* @name CreateToken
|
|
333
|
+
* @operationId QueryTokenAccessController_CreateTokenAsync
|
|
334
|
+
* @summary Create new query access token.
|
|
335
|
+
* @request PUT:/accessToken/{username}
|
|
336
|
+
* @response `200` Success
|
|
337
|
+
*/
|
|
338
|
+
function createToken(username) {
|
|
339
|
+
return this.http.put("/accessToken/" + username, null).text();
|
|
340
|
+
}
|
|
341
|
+
/**
|
|
342
|
+
* No description
|
|
343
|
+
*
|
|
344
|
+
* @tags QueryTokenAccess
|
|
345
|
+
* @name DisableToken
|
|
346
|
+
* @operationId QueryTokenAccessController_DisableToken
|
|
347
|
+
* @summary Disable token.
|
|
348
|
+
* @request POST:/accessToken/{token}/disable
|
|
349
|
+
* @response `200` Success
|
|
350
|
+
*/
|
|
351
|
+
|
|
352
|
+
}, {
|
|
353
|
+
key: "disableToken",
|
|
354
|
+
value: function disableToken(token) {
|
|
355
|
+
return this.http.post("/accessToken/" + token + "/disable", null).then(() => {});
|
|
356
|
+
}
|
|
357
|
+
/**
|
|
358
|
+
* No description
|
|
359
|
+
*
|
|
360
|
+
* @tags QueryTokenAccess
|
|
361
|
+
* @name EnableToken
|
|
362
|
+
* @operationId QueryTokenAccessController_EnableToken
|
|
363
|
+
* @summary Enable token.
|
|
364
|
+
* @request POST:/accessToken/{token}/enable
|
|
365
|
+
* @response `200` Success
|
|
366
|
+
*/
|
|
367
|
+
|
|
368
|
+
}, {
|
|
369
|
+
key: "enableToken",
|
|
370
|
+
value: function enableToken(token) {
|
|
371
|
+
return this.http.post("/accessToken/" + token + "/enable", null).then(() => {});
|
|
372
|
+
}
|
|
373
|
+
/**
|
|
374
|
+
* No description
|
|
375
|
+
*
|
|
376
|
+
* @tags QueryTokenAccess
|
|
377
|
+
* @name RevokeToken
|
|
378
|
+
* @operationId QueryTokenAccessController_RevokeToken
|
|
379
|
+
* @summary Revoke token.
|
|
380
|
+
* @request DELETE:/accessToken/{token}
|
|
381
|
+
* @response `200` Success
|
|
382
|
+
*/
|
|
383
|
+
|
|
384
|
+
}, {
|
|
385
|
+
key: "revokeToken",
|
|
386
|
+
value: function revokeToken(token) {
|
|
387
|
+
return this.http.delete("/accessToken/" + token, null).then(() => {});
|
|
388
|
+
}
|
|
389
|
+
}]);
|
|
390
|
+
|
|
391
|
+
return QueryTokenAccessService;
|
|
392
|
+
}(Service);
|
|
393
|
+
|
|
394
|
+
/**
|
|
395
|
+
* @title Spatial Processing Core API
|
|
396
|
+
* @version 1.5.1.0
|
|
319
397
|
* @baseUrl /sp
|
|
320
398
|
*/
|
|
321
399
|
|
|
@@ -386,7 +464,7 @@ let SpatialReferencesService = /*#__PURE__*/function (_Service) {
|
|
|
386
464
|
const _excluded = ["taskId", "layerName"];
|
|
387
465
|
/**
|
|
388
466
|
* @title Spatial Processing Core API
|
|
389
|
-
* @version 1.5.1
|
|
467
|
+
* @version 1.5.1.0
|
|
390
468
|
* @baseUrl /sp
|
|
391
469
|
*/
|
|
392
470
|
|
|
@@ -444,6 +522,188 @@ let UniversalSearchService = /*#__PURE__*/function (_Service) {
|
|
|
444
522
|
return UniversalSearchService;
|
|
445
523
|
}(Service);
|
|
446
524
|
|
|
525
|
+
/**
|
|
526
|
+
* @title Spatial Processing Core API
|
|
527
|
+
* @version 1.5.1.0
|
|
528
|
+
* @baseUrl /sp
|
|
529
|
+
*/
|
|
530
|
+
|
|
531
|
+
let CatalogService = /*#__PURE__*/function (_Service) {
|
|
532
|
+
_inherits(CatalogService, _Service);
|
|
533
|
+
|
|
534
|
+
var _super = /*#__PURE__*/_createSuper(CatalogService);
|
|
535
|
+
|
|
536
|
+
function CatalogService() {
|
|
537
|
+
_classCallCheck(this, CatalogService);
|
|
538
|
+
|
|
539
|
+
return _super.apply(this, arguments);
|
|
540
|
+
}
|
|
541
|
+
|
|
542
|
+
_createClass(CatalogService, [{
|
|
543
|
+
key: "getAll",
|
|
544
|
+
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` Success
|
|
554
|
+
*/
|
|
555
|
+
function getAll(query) {
|
|
556
|
+
return this.http.get("/resources", query).json();
|
|
557
|
+
}
|
|
558
|
+
/**
|
|
559
|
+
* No description
|
|
560
|
+
*
|
|
561
|
+
* @tags Catalog
|
|
562
|
+
* @name SearchResources
|
|
563
|
+
* @operationId CatalogController_SearchResources
|
|
564
|
+
* @summary Search resources.
|
|
565
|
+
* @request POST:/resources/search
|
|
566
|
+
* @response `200` Success
|
|
567
|
+
*/
|
|
568
|
+
|
|
569
|
+
}, {
|
|
570
|
+
key: "searchResources",
|
|
571
|
+
value: function searchResources(query, data) {
|
|
572
|
+
return this.http.post("/resources/search", data, query).json();
|
|
573
|
+
}
|
|
574
|
+
/**
|
|
575
|
+
* No description
|
|
576
|
+
*
|
|
577
|
+
* @tags Catalog
|
|
578
|
+
* @name GetResource
|
|
579
|
+
* @operationId CatalogController_GetResource
|
|
580
|
+
* @summary Get resource with given id.
|
|
581
|
+
* @request GET:/resources/{resourceId}
|
|
582
|
+
* @response `200` Success
|
|
583
|
+
*/
|
|
584
|
+
|
|
585
|
+
}, {
|
|
586
|
+
key: "getResource",
|
|
587
|
+
value: function getResource(resourceId) {
|
|
588
|
+
return this.http.get("/resources/" + resourceId).json();
|
|
589
|
+
}
|
|
590
|
+
/**
|
|
591
|
+
* No description
|
|
592
|
+
*
|
|
593
|
+
* @tags Catalog
|
|
594
|
+
* @name DeleteResource
|
|
595
|
+
* @operationId CatalogController_DeleteResource
|
|
596
|
+
* @summary Delete resource.
|
|
597
|
+
* @request DELETE:/resources/{resourceId}
|
|
598
|
+
* @response `200` Success
|
|
599
|
+
*/
|
|
600
|
+
|
|
601
|
+
}, {
|
|
602
|
+
key: "deleteResource",
|
|
603
|
+
value: function deleteResource(resourceId) {
|
|
604
|
+
return this.http.delete("/resources/" + resourceId, null).then(() => {});
|
|
605
|
+
}
|
|
606
|
+
/**
|
|
607
|
+
* No description
|
|
608
|
+
*
|
|
609
|
+
* @tags Catalog
|
|
610
|
+
* @name MoveResource
|
|
611
|
+
* @operationId CatalogController_MoveResource
|
|
612
|
+
* @summary Rename resource with given id.
|
|
613
|
+
* @request POST:/resources/{resourceId}/move
|
|
614
|
+
* @response `200` Success
|
|
615
|
+
*/
|
|
616
|
+
|
|
617
|
+
}, {
|
|
618
|
+
key: "moveResource",
|
|
619
|
+
value: function moveResource(resourceId, data) {
|
|
620
|
+
return this.http.post("/resources/" + resourceId + "/move", data).json();
|
|
621
|
+
}
|
|
622
|
+
/**
|
|
623
|
+
* No description
|
|
624
|
+
*
|
|
625
|
+
* @tags Catalog
|
|
626
|
+
* @name CreateDirectory
|
|
627
|
+
* @operationId CatalogController_CreateDirectory
|
|
628
|
+
* @summary Create directory.
|
|
629
|
+
* @request POST:/resources/directory
|
|
630
|
+
* @response `200` Success
|
|
631
|
+
*/
|
|
632
|
+
|
|
633
|
+
}, {
|
|
634
|
+
key: "createDirectory",
|
|
635
|
+
value: function createDirectory(data) {
|
|
636
|
+
return this.http.post("/resources/directory", data).json();
|
|
637
|
+
}
|
|
638
|
+
/**
|
|
639
|
+
* No description
|
|
640
|
+
*
|
|
641
|
+
* @tags Catalog
|
|
642
|
+
* @name CreateFile
|
|
643
|
+
* @operationId CatalogController_CreateFile
|
|
644
|
+
* @summary Create new file.
|
|
645
|
+
* @request POST:/resources/file
|
|
646
|
+
* @response `200` Success
|
|
647
|
+
*/
|
|
648
|
+
|
|
649
|
+
}, {
|
|
650
|
+
key: "createFile",
|
|
651
|
+
value: function createFile(data) {
|
|
652
|
+
return this.http.post("/resources/file", toFormData(data)).json();
|
|
653
|
+
}
|
|
654
|
+
/**
|
|
655
|
+
* No description
|
|
656
|
+
*
|
|
657
|
+
* @tags Catalog
|
|
658
|
+
* @name GetPermissions
|
|
659
|
+
* @operationId CatalogController_GetPermissions
|
|
660
|
+
* @summary Set permissions to the resource.
|
|
661
|
+
* @request GET:/resources/{resourceId}/permissions
|
|
662
|
+
* @response `200` Success
|
|
663
|
+
*/
|
|
664
|
+
|
|
665
|
+
}, {
|
|
666
|
+
key: "getPermissions",
|
|
667
|
+
value: function getPermissions(resourceId) {
|
|
668
|
+
return this.http.get("/resources/" + resourceId + "/permissions").json();
|
|
669
|
+
}
|
|
670
|
+
/**
|
|
671
|
+
* No description
|
|
672
|
+
*
|
|
673
|
+
* @tags Catalog
|
|
674
|
+
* @name SetPermissions
|
|
675
|
+
* @operationId CatalogController_SetPermissions
|
|
676
|
+
* @summary Set permissions to the resource.
|
|
677
|
+
* @request PUT:/resources/{resourceId}/permissions
|
|
678
|
+
* @response `200` Success
|
|
679
|
+
*/
|
|
680
|
+
|
|
681
|
+
}, {
|
|
682
|
+
key: "setPermissions",
|
|
683
|
+
value: function setPermissions(resourceId, data) {
|
|
684
|
+
return this.http.put("/resources/" + resourceId + "/permissions", data).json();
|
|
685
|
+
}
|
|
686
|
+
/**
|
|
687
|
+
* No description
|
|
688
|
+
*
|
|
689
|
+
* @tags Catalog
|
|
690
|
+
* @name DownloadFile
|
|
691
|
+
* @operationId CatalogController_DownloadFile
|
|
692
|
+
* @summary Download file.
|
|
693
|
+
* @request GET:/resources/{resourceId}/download
|
|
694
|
+
* @response `200` Success
|
|
695
|
+
*/
|
|
696
|
+
|
|
697
|
+
}, {
|
|
698
|
+
key: "downloadFile",
|
|
699
|
+
value: function downloadFile(resourceId) {
|
|
700
|
+
return this.http.get("/resources/" + resourceId + "/download").blob();
|
|
701
|
+
}
|
|
702
|
+
}]);
|
|
703
|
+
|
|
704
|
+
return CatalogService;
|
|
705
|
+
}(Service);
|
|
706
|
+
|
|
447
707
|
var ApiEvent;
|
|
448
708
|
|
|
449
709
|
(function (ApiEvent) {
|
|
@@ -454,7 +714,7 @@ var ApiEvent;
|
|
|
454
714
|
|
|
455
715
|
/**
|
|
456
716
|
* @title Spatial Processing Core API
|
|
457
|
-
* @version 1.5.1
|
|
717
|
+
* @version 1.5.1.0
|
|
458
718
|
* @baseUrl /sp
|
|
459
719
|
*/
|
|
460
720
|
|
|
@@ -1130,7 +1390,7 @@ let Account = /*#__PURE__*/function (_AccountService) {
|
|
|
1130
1390
|
const _excluded$1 = ["username"];
|
|
1131
1391
|
/**
|
|
1132
1392
|
* @title Spatial Processing Core API
|
|
1133
|
-
* @version 1.5.1
|
|
1393
|
+
* @version 1.5.1.0
|
|
1134
1394
|
* @baseUrl /sp
|
|
1135
1395
|
*/
|
|
1136
1396
|
|
|
@@ -1284,7 +1544,7 @@ let AccountPreview = /*#__PURE__*/function (_AccountPreviewServic) {
|
|
|
1284
1544
|
|
|
1285
1545
|
/**
|
|
1286
1546
|
* @title Spatial Processing Core API
|
|
1287
|
-
* @version 1.5.1
|
|
1547
|
+
* @version 1.5.1.0
|
|
1288
1548
|
* @baseUrl /sp
|
|
1289
1549
|
*/
|
|
1290
1550
|
|
|
@@ -1338,10 +1598,11 @@ const _excluded$2 = ["cameraId"],
|
|
|
1338
1598
|
_excluded2 = ["cameraId"],
|
|
1339
1599
|
_excluded3 = ["cameraId"],
|
|
1340
1600
|
_excluded4 = ["cameraId"],
|
|
1341
|
-
_excluded5 = ["cameraId"]
|
|
1601
|
+
_excluded5 = ["cameraId"],
|
|
1602
|
+
_excluded6 = ["cameraId"];
|
|
1342
1603
|
/**
|
|
1343
1604
|
* @title Spatial Processing Core API
|
|
1344
|
-
* @version 1.5.1
|
|
1605
|
+
* @version 1.5.1.0
|
|
1345
1606
|
* @baseUrl /sp
|
|
1346
1607
|
*/
|
|
1347
1608
|
|
|
@@ -1493,6 +1754,27 @@ let CamerasService = /*#__PURE__*/function (_Service) {
|
|
|
1493
1754
|
value: function getLiveSnapshot(cameraId) {
|
|
1494
1755
|
return this.http.get("/cameras/" + cameraId + "/liveSnapshot").blob();
|
|
1495
1756
|
}
|
|
1757
|
+
/**
|
|
1758
|
+
* No description
|
|
1759
|
+
*
|
|
1760
|
+
* @tags Cameras
|
|
1761
|
+
* @name GetLivePreviewStream
|
|
1762
|
+
* @operationId CamerasController_GetLivePreviewStream
|
|
1763
|
+
* @summary Get live preview stream.
|
|
1764
|
+
* @request GET:/cameras/{cameraId}/getLivePreviewsStream
|
|
1765
|
+
* @response `200` Success
|
|
1766
|
+
*/
|
|
1767
|
+
|
|
1768
|
+
}, {
|
|
1769
|
+
key: "getLivePreviewStream",
|
|
1770
|
+
value: function getLivePreviewStream(_ref6) {
|
|
1771
|
+
let {
|
|
1772
|
+
cameraId
|
|
1773
|
+
} = _ref6,
|
|
1774
|
+
query = _objectWithoutPropertiesLoose(_ref6, _excluded6);
|
|
1775
|
+
|
|
1776
|
+
return this.http.get("/cameras/" + cameraId + "/getLivePreviewsStream", query).json();
|
|
1777
|
+
}
|
|
1496
1778
|
}]);
|
|
1497
1779
|
|
|
1498
1780
|
return CamerasService;
|
|
@@ -1514,7 +1796,7 @@ let Cameras = /*#__PURE__*/function (_CamerasService) {
|
|
|
1514
1796
|
|
|
1515
1797
|
/**
|
|
1516
1798
|
* @title Spatial Processing Core API
|
|
1517
|
-
* @version 1.5.1
|
|
1799
|
+
* @version 1.5.1.0
|
|
1518
1800
|
* @baseUrl /sp
|
|
1519
1801
|
*/
|
|
1520
1802
|
|
|
@@ -1637,7 +1919,7 @@ let ClientSettings = /*#__PURE__*/function (_ClientSettingsServic) {
|
|
|
1637
1919
|
|
|
1638
1920
|
/**
|
|
1639
1921
|
* @title Spatial Processing Core API
|
|
1640
|
-
* @version 1.5.1
|
|
1922
|
+
* @version 1.5.1.0
|
|
1641
1923
|
* @baseUrl /sp
|
|
1642
1924
|
*/
|
|
1643
1925
|
|
|
@@ -1722,7 +2004,7 @@ let EqlTestService = /*#__PURE__*/function (_Service) {
|
|
|
1722
2004
|
* @tags EqlTest
|
|
1723
2005
|
* @name GetLayerParameters
|
|
1724
2006
|
* @operationId EqlTestController_GetLayerParameters
|
|
1725
|
-
* @summary Get
|
|
2007
|
+
* @summary Get EQL parameter.
|
|
1726
2008
|
* @request GET:/eql/getParam
|
|
1727
2009
|
* @response `200` Success
|
|
1728
2010
|
*/
|
|
@@ -1738,7 +2020,7 @@ let EqlTestService = /*#__PURE__*/function (_Service) {
|
|
|
1738
2020
|
* @tags EqlTest
|
|
1739
2021
|
* @name GetLayerParameters1
|
|
1740
2022
|
* @operationId EqlTestController_GetLayerParameters_1
|
|
1741
|
-
* @summary Get all EQL
|
|
2023
|
+
* @summary Get all EQL parameters.
|
|
1742
2024
|
* @request GET:/eql/getParams
|
|
1743
2025
|
* @response `200` Success
|
|
1744
2026
|
*/
|
|
@@ -1785,7 +2067,7 @@ let EqlTest = /*#__PURE__*/function (_EqlTestService) {
|
|
|
1785
2067
|
|
|
1786
2068
|
/**
|
|
1787
2069
|
* @title Spatial Processing Core API
|
|
1788
|
-
* @version 1.5.1
|
|
2070
|
+
* @version 1.5.1.0
|
|
1789
2071
|
* @baseUrl /sp
|
|
1790
2072
|
*/
|
|
1791
2073
|
|
|
@@ -2050,7 +2332,7 @@ let External = /*#__PURE__*/function (_ExternalProvidersSer) {
|
|
|
2050
2332
|
|
|
2051
2333
|
/**
|
|
2052
2334
|
* @title Spatial Processing Core API
|
|
2053
|
-
* @version 1.5.1
|
|
2335
|
+
* @version 1.5.1.0
|
|
2054
2336
|
* @baseUrl /sp
|
|
2055
2337
|
*/
|
|
2056
2338
|
|
|
@@ -2141,7 +2423,7 @@ let Feedback = /*#__PURE__*/function (_FeedbackService) {
|
|
|
2141
2423
|
|
|
2142
2424
|
/**
|
|
2143
2425
|
* @title Spatial Processing Core API
|
|
2144
|
-
* @version 1.5.1
|
|
2426
|
+
* @version 1.5.1.0
|
|
2145
2427
|
* @baseUrl /sp
|
|
2146
2428
|
*/
|
|
2147
2429
|
|
|
@@ -2251,7 +2533,7 @@ let FileUpload = /*#__PURE__*/function (_StaticContentService) {
|
|
|
2251
2533
|
|
|
2252
2534
|
/**
|
|
2253
2535
|
* @title Spatial Processing Core API
|
|
2254
|
-
* @version 1.5.1
|
|
2536
|
+
* @version 1.5.1.0
|
|
2255
2537
|
* @baseUrl /sp
|
|
2256
2538
|
*/
|
|
2257
2539
|
|
|
@@ -2335,7 +2617,7 @@ let Filters = /*#__PURE__*/function (_FiltersService) {
|
|
|
2335
2617
|
|
|
2336
2618
|
/**
|
|
2337
2619
|
* @title Spatial Processing Core API
|
|
2338
|
-
* @version 1.5.1
|
|
2620
|
+
* @version 1.5.1.0
|
|
2339
2621
|
* @baseUrl /sp
|
|
2340
2622
|
*/
|
|
2341
2623
|
|
|
@@ -2406,7 +2688,7 @@ const _excluded$3 = ["providerName"],
|
|
|
2406
2688
|
_excluded3$1 = ["providerName"];
|
|
2407
2689
|
/**
|
|
2408
2690
|
* @title Spatial Processing Core API
|
|
2409
|
-
* @version 1.5.1
|
|
2691
|
+
* @version 1.5.1.0
|
|
2410
2692
|
* @baseUrl /sp
|
|
2411
2693
|
*/
|
|
2412
2694
|
|
|
@@ -2522,7 +2804,7 @@ let Geocode = /*#__PURE__*/function (_GeocodeService) {
|
|
|
2522
2804
|
|
|
2523
2805
|
/**
|
|
2524
2806
|
* @title Spatial Processing Core API
|
|
2525
|
-
* @version 1.5.1
|
|
2807
|
+
* @version 1.5.1.0
|
|
2526
2808
|
* @baseUrl /sp
|
|
2527
2809
|
*/
|
|
2528
2810
|
|
|
@@ -2590,7 +2872,7 @@ let IceRouter = /*#__PURE__*/function (_IceRouterService) {
|
|
|
2590
2872
|
|
|
2591
2873
|
/**
|
|
2592
2874
|
* @title Spatial Processing Core API
|
|
2593
|
-
* @version 1.5.1
|
|
2875
|
+
* @version 1.5.1.0
|
|
2594
2876
|
* @baseUrl /sp
|
|
2595
2877
|
*/
|
|
2596
2878
|
|
|
@@ -2789,7 +3071,7 @@ const _excluded$4 = ["name"],
|
|
|
2789
3071
|
_excluded3$2 = ["name"],
|
|
2790
3072
|
_excluded4$1 = ["name", "id"],
|
|
2791
3073
|
_excluded5$1 = ["name", "id"],
|
|
2792
|
-
_excluded6 = ["name", "id"],
|
|
3074
|
+
_excluded6$1 = ["name", "id"],
|
|
2793
3075
|
_excluded7 = ["name", "x", "y", "z"],
|
|
2794
3076
|
_excluded8 = ["name"],
|
|
2795
3077
|
_excluded9 = ["name"],
|
|
@@ -2806,7 +3088,7 @@ const _excluded$4 = ["name"],
|
|
|
2806
3088
|
_excluded20 = ["name", "id"];
|
|
2807
3089
|
/**
|
|
2808
3090
|
* @title Spatial Processing Core API
|
|
2809
|
-
* @version 1.5.1
|
|
3091
|
+
* @version 1.5.1.0
|
|
2810
3092
|
* @baseUrl /sp
|
|
2811
3093
|
*/
|
|
2812
3094
|
|
|
@@ -3448,7 +3730,7 @@ let LayersService = /*#__PURE__*/function (_Service) {
|
|
|
3448
3730
|
name,
|
|
3449
3731
|
id
|
|
3450
3732
|
} = _ref6,
|
|
3451
|
-
query = _objectWithoutPropertiesLoose(_ref6, _excluded6);
|
|
3733
|
+
query = _objectWithoutPropertiesLoose(_ref6, _excluded6$1);
|
|
3452
3734
|
|
|
3453
3735
|
return this.http.post("/layers/" + name + "/features/" + id + "/subtract", data, query).json();
|
|
3454
3736
|
}
|
|
@@ -3707,6 +3989,22 @@ let LayersService = /*#__PURE__*/function (_Service) {
|
|
|
3707
3989
|
|
|
3708
3990
|
return this.http.get("/layers/" + name + "/features/count", query).json();
|
|
3709
3991
|
}
|
|
3992
|
+
/**
|
|
3993
|
+
* No description
|
|
3994
|
+
*
|
|
3995
|
+
* @tags Layers
|
|
3996
|
+
* @name GetFilteredFeaturesCount1
|
|
3997
|
+
* @operationId LayersController_GetFilteredFeaturesCount_1
|
|
3998
|
+
* @summary Get features count according layer filter of the given name.
|
|
3999
|
+
* @request POST:/layers/{name}/features/count
|
|
4000
|
+
* @response `200` Success
|
|
4001
|
+
*/
|
|
4002
|
+
|
|
4003
|
+
}, {
|
|
4004
|
+
key: "getFilteredFeaturesCount1",
|
|
4005
|
+
value: function getFilteredFeaturesCount1(name, data) {
|
|
4006
|
+
return this.http.post("/layers/" + name + "/features/count", data).json();
|
|
4007
|
+
}
|
|
3710
4008
|
/**
|
|
3711
4009
|
* No description
|
|
3712
4010
|
*
|
|
@@ -3799,6 +4097,54 @@ let LayersService = /*#__PURE__*/function (_Service) {
|
|
|
3799
4097
|
value: function createRoute(name, data) {
|
|
3800
4098
|
return this.http.post("/layers/" + name + "/createRoute", data).json();
|
|
3801
4099
|
}
|
|
4100
|
+
/**
|
|
4101
|
+
* No description
|
|
4102
|
+
*
|
|
4103
|
+
* @tags Layers
|
|
4104
|
+
* @name ApplyStyle
|
|
4105
|
+
* @operationId LayersController_ApplyStyle
|
|
4106
|
+
* @summary Create data layout and image layout for given style.
|
|
4107
|
+
* @request PUT:/layers/{name}/style
|
|
4108
|
+
* @response `200` Success
|
|
4109
|
+
*/
|
|
4110
|
+
|
|
4111
|
+
}, {
|
|
4112
|
+
key: "applyStyle",
|
|
4113
|
+
value: function applyStyle(name, data) {
|
|
4114
|
+
return this.http.put("/layers/" + name + "/style", data).then(() => {});
|
|
4115
|
+
}
|
|
4116
|
+
/**
|
|
4117
|
+
* No description
|
|
4118
|
+
*
|
|
4119
|
+
* @tags Layers
|
|
4120
|
+
* @name GetImageLayout
|
|
4121
|
+
* @operationId LayersController_GetImageLayout
|
|
4122
|
+
* @summary Get date layout.
|
|
4123
|
+
* @request GET:/layers/{name}/style/sprite.png
|
|
4124
|
+
* @response `200` Success
|
|
4125
|
+
*/
|
|
4126
|
+
|
|
4127
|
+
}, {
|
|
4128
|
+
key: "getImageLayout",
|
|
4129
|
+
value: function getImageLayout(name) {
|
|
4130
|
+
return this.http.get("/layers/" + name + "/style/sprite.png").blob();
|
|
4131
|
+
}
|
|
4132
|
+
/**
|
|
4133
|
+
* No description
|
|
4134
|
+
*
|
|
4135
|
+
* @tags Layers
|
|
4136
|
+
* @name GetDataLayout
|
|
4137
|
+
* @operationId LayersController_GetDataLayout
|
|
4138
|
+
* @summary Get image layout.
|
|
4139
|
+
* @request GET:/layers/{name}/style/sprite.json
|
|
4140
|
+
* @response `200` Success
|
|
4141
|
+
*/
|
|
4142
|
+
|
|
4143
|
+
}, {
|
|
4144
|
+
key: "getDataLayout",
|
|
4145
|
+
value: function getDataLayout(name) {
|
|
4146
|
+
return this.http.get("/layers/" + name + "/style/sprite.json").blob();
|
|
4147
|
+
}
|
|
3802
4148
|
/**
|
|
3803
4149
|
* No description
|
|
3804
4150
|
*
|
|
@@ -4288,7 +4634,7 @@ let Names = /*#__PURE__*/function () {
|
|
|
4288
4634
|
|
|
4289
4635
|
/**
|
|
4290
4636
|
* @title Spatial Processing Core API
|
|
4291
|
-
* @version 1.5.1
|
|
4637
|
+
* @version 1.5.1.0
|
|
4292
4638
|
* @baseUrl /sp
|
|
4293
4639
|
*/
|
|
4294
4640
|
|
|
@@ -4388,7 +4734,7 @@ let Namespace = /*#__PURE__*/function (_NamespaceService) {
|
|
|
4388
4734
|
|
|
4389
4735
|
/**
|
|
4390
4736
|
* @title Spatial Processing Core API
|
|
4391
|
-
* @version 1.5.1
|
|
4737
|
+
* @version 1.5.1.0
|
|
4392
4738
|
* @baseUrl /sp
|
|
4393
4739
|
*/
|
|
4394
4740
|
|
|
@@ -4544,8 +4890,8 @@ let Notification = /*#__PURE__*/function (_NotificationService) {
|
|
|
4544
4890
|
|| event.code === 4002
|
|
4545
4891
|
/* InvalidSession */
|
|
4546
4892
|
) {
|
|
4547
|
-
|
|
4548
|
-
|
|
4893
|
+
_this.connectStatus = ConnectionStatus.SessionClosed;
|
|
4894
|
+
} else if (_this.reconnectTries < _this.MAX_WS_RECONNECT_TRIES) {
|
|
4549
4895
|
_this.connectStatus = ConnectionStatus.Break;
|
|
4550
4896
|
_this.reconnectTries++;
|
|
4551
4897
|
|
|
@@ -4696,7 +5042,7 @@ let PortalSettings = /*#__PURE__*/function (_ClientSettingsServic) {
|
|
|
4696
5042
|
|
|
4697
5043
|
/**
|
|
4698
5044
|
* @title Spatial Processing Core API
|
|
4699
|
-
* @version 1.5.1
|
|
5045
|
+
* @version 1.5.1.0
|
|
4700
5046
|
* @baseUrl /sp
|
|
4701
5047
|
*/
|
|
4702
5048
|
|
|
@@ -4828,7 +5174,7 @@ let Print = /*#__PURE__*/function (_PrintService) {
|
|
|
4828
5174
|
|
|
4829
5175
|
/**
|
|
4830
5176
|
* @title Spatial Processing Core API
|
|
4831
|
-
* @version 1.5.1
|
|
5177
|
+
* @version 1.5.1.0
|
|
4832
5178
|
* @baseUrl /sp
|
|
4833
5179
|
*/
|
|
4834
5180
|
|
|
@@ -5232,7 +5578,7 @@ function isProjectContentItems(v) {
|
|
|
5232
5578
|
|
|
5233
5579
|
/**
|
|
5234
5580
|
* @title Spatial Processing Core API
|
|
5235
|
-
* @version 1.5.1
|
|
5581
|
+
* @version 1.5.1.0
|
|
5236
5582
|
* @baseUrl /sp
|
|
5237
5583
|
*/
|
|
5238
5584
|
|
|
@@ -5379,12 +5725,12 @@ let Resources = /*#__PURE__*/function () {
|
|
|
5379
5725
|
}, {
|
|
5380
5726
|
key: "getDependentNames",
|
|
5381
5727
|
value: function getDependentNames(deps, depType) {
|
|
5382
|
-
return deps.filter(_ref => {
|
|
5728
|
+
return deps.filter((_ref) => {
|
|
5383
5729
|
let {
|
|
5384
5730
|
type
|
|
5385
5731
|
} = _ref;
|
|
5386
5732
|
return type === depType;
|
|
5387
|
-
}).map(_ref2 => {
|
|
5733
|
+
}).map((_ref2) => {
|
|
5388
5734
|
let {
|
|
5389
5735
|
name
|
|
5390
5736
|
} = _ref2;
|
|
@@ -5398,7 +5744,7 @@ let Resources = /*#__PURE__*/function () {
|
|
|
5398
5744
|
|
|
5399
5745
|
/**
|
|
5400
5746
|
* @title Spatial Processing Core API
|
|
5401
|
-
* @version 1.5.1
|
|
5747
|
+
* @version 1.5.1.0
|
|
5402
5748
|
* @baseUrl /sp
|
|
5403
5749
|
*/
|
|
5404
5750
|
|
|
@@ -5840,7 +6186,7 @@ let Scheduler = /*#__PURE__*/function (_SchedulerService) {
|
|
|
5840
6186
|
const taskProgress = await this.getTaskProgress(id);
|
|
5841
6187
|
this.resolveTaskStatus(taskProgress, resolve, reject);
|
|
5842
6188
|
|
|
5843
|
-
const taskResultCallback = async _ref => {
|
|
6189
|
+
const taskResultCallback = async (_ref) => {
|
|
5844
6190
|
let {
|
|
5845
6191
|
data
|
|
5846
6192
|
} = _ref;
|
|
@@ -5885,7 +6231,7 @@ let Scheduler = /*#__PURE__*/function (_SchedulerService) {
|
|
|
5885
6231
|
|
|
5886
6232
|
/**
|
|
5887
6233
|
* @title Spatial Processing Core API
|
|
5888
|
-
* @version 1.5.1
|
|
6234
|
+
* @version 1.5.1.0
|
|
5889
6235
|
* @baseUrl /sp
|
|
5890
6236
|
*/
|
|
5891
6237
|
|
|
@@ -6037,7 +6383,7 @@ let Security = /*#__PURE__*/function (_SecurityService) {
|
|
|
6037
6383
|
|
|
6038
6384
|
/**
|
|
6039
6385
|
* @title Spatial Processing Core API
|
|
6040
|
-
* @version 1.5.1
|
|
6386
|
+
* @version 1.5.1.0
|
|
6041
6387
|
* @baseUrl /sp
|
|
6042
6388
|
*/
|
|
6043
6389
|
|
|
@@ -6068,6 +6414,22 @@ let StatisticService = /*#__PURE__*/function (_Service) {
|
|
|
6068
6414
|
function statisticsDb(query) {
|
|
6069
6415
|
return this.http.get("/statistics", query).json();
|
|
6070
6416
|
}
|
|
6417
|
+
/**
|
|
6418
|
+
* No description
|
|
6419
|
+
*
|
|
6420
|
+
* @tags Statistic
|
|
6421
|
+
* @name StatisticsDb1
|
|
6422
|
+
* @operationId StatisticController_StatisticsDb_1
|
|
6423
|
+
* @summary Calculates statistics for layer attribute.
|
|
6424
|
+
* @request POST:/statistics
|
|
6425
|
+
* @response `200` Success
|
|
6426
|
+
*/
|
|
6427
|
+
|
|
6428
|
+
}, {
|
|
6429
|
+
key: "statisticsDb1",
|
|
6430
|
+
value: function statisticsDb1(data) {
|
|
6431
|
+
return this.http.post("/statistics", data).json();
|
|
6432
|
+
}
|
|
6071
6433
|
/**
|
|
6072
6434
|
* No description
|
|
6073
6435
|
*
|
|
@@ -6084,6 +6446,22 @@ let StatisticService = /*#__PURE__*/function (_Service) {
|
|
|
6084
6446
|
value: function classify(query) {
|
|
6085
6447
|
return this.http.get("/statistics/classify", query).json();
|
|
6086
6448
|
}
|
|
6449
|
+
/**
|
|
6450
|
+
* No description
|
|
6451
|
+
*
|
|
6452
|
+
* @tags Statistic
|
|
6453
|
+
* @name Classify1
|
|
6454
|
+
* @operationId StatisticController_Classify_1
|
|
6455
|
+
* @summary Returns the classified attribute values that correspond to the given number of classes and given condition.
|
|
6456
|
+
* @request POST:/statistics/classify
|
|
6457
|
+
* @response `200` Success
|
|
6458
|
+
*/
|
|
6459
|
+
|
|
6460
|
+
}, {
|
|
6461
|
+
key: "classify1",
|
|
6462
|
+
value: function classify1(data) {
|
|
6463
|
+
return this.http.post("/statistics/classify", data).json();
|
|
6464
|
+
}
|
|
6087
6465
|
/**
|
|
6088
6466
|
* No description
|
|
6089
6467
|
*
|
|
@@ -6100,6 +6478,22 @@ let StatisticService = /*#__PURE__*/function (_Service) {
|
|
|
6100
6478
|
value: function sumOfProduct(query) {
|
|
6101
6479
|
return this.http.get("/statistics/sumOfProduct", query).json();
|
|
6102
6480
|
}
|
|
6481
|
+
/**
|
|
6482
|
+
* No description
|
|
6483
|
+
*
|
|
6484
|
+
* @tags Statistic
|
|
6485
|
+
* @name SumOfProduct1
|
|
6486
|
+
* @operationId StatisticController_SumOfProduct_1
|
|
6487
|
+
* @summary Sum of product.
|
|
6488
|
+
* @request POST:/statistics/sumOfProduct
|
|
6489
|
+
* @response `200` Success
|
|
6490
|
+
*/
|
|
6491
|
+
|
|
6492
|
+
}, {
|
|
6493
|
+
key: "sumOfProduct1",
|
|
6494
|
+
value: function sumOfProduct1(data) {
|
|
6495
|
+
return this.http.post("/statistics/sumOfProduct", data).json();
|
|
6496
|
+
}
|
|
6103
6497
|
}]);
|
|
6104
6498
|
|
|
6105
6499
|
return StatisticService;
|
|
@@ -6121,11 +6515,21 @@ let Statistic = /*#__PURE__*/function (_StatisticService) {
|
|
|
6121
6515
|
value: function getStatistic(params) {
|
|
6122
6516
|
return this.statisticsDb(params);
|
|
6123
6517
|
}
|
|
6518
|
+
}, {
|
|
6519
|
+
key: "postStatistic",
|
|
6520
|
+
value: function postStatistic(params) {
|
|
6521
|
+
return this.statisticsDb1(params);
|
|
6522
|
+
}
|
|
6124
6523
|
}, {
|
|
6125
6524
|
key: "getClassify",
|
|
6126
6525
|
value: function getClassify(params) {
|
|
6127
6526
|
return this.classify(params);
|
|
6128
6527
|
}
|
|
6528
|
+
}, {
|
|
6529
|
+
key: "postClassify",
|
|
6530
|
+
value: function postClassify(params) {
|
|
6531
|
+
return this.classify1(params);
|
|
6532
|
+
}
|
|
6129
6533
|
}]);
|
|
6130
6534
|
|
|
6131
6535
|
return Statistic;
|
|
@@ -6133,7 +6537,7 @@ let Statistic = /*#__PURE__*/function (_StatisticService) {
|
|
|
6133
6537
|
|
|
6134
6538
|
/**
|
|
6135
6539
|
* @title Spatial Processing Core API
|
|
6136
|
-
* @version 1.5.1
|
|
6540
|
+
* @version 1.5.1.0
|
|
6137
6541
|
* @baseUrl /sp
|
|
6138
6542
|
*/
|
|
6139
6543
|
|
|
@@ -6269,7 +6673,7 @@ const _excluded$6 = ["name"],
|
|
|
6269
6673
|
_excluded4$2 = ["name"];
|
|
6270
6674
|
/**
|
|
6271
6675
|
* @title Spatial Processing Core API
|
|
6272
|
-
* @version 1.5.1
|
|
6676
|
+
* @version 1.5.1.0
|
|
6273
6677
|
* @baseUrl /sp
|
|
6274
6678
|
*/
|
|
6275
6679
|
|
|
@@ -6781,7 +7185,7 @@ let Tables = /*#__PURE__*/function (_TablesService) {
|
|
|
6781
7185
|
|
|
6782
7186
|
/**
|
|
6783
7187
|
* @title Spatial Processing Core API
|
|
6784
|
-
* @version 1.5.1
|
|
7188
|
+
* @version 1.5.1.0
|
|
6785
7189
|
* @baseUrl /sp
|
|
6786
7190
|
*/
|
|
6787
7191
|
|
|
@@ -6816,7 +7220,7 @@ let Tools = /*#__PURE__*/function (_ToolsService) {
|
|
|
6816
7220
|
const _excluded$7 = ["name", "z", "x", "y"];
|
|
6817
7221
|
/**
|
|
6818
7222
|
* @title Spatial Processing Core API
|
|
6819
|
-
* @version 1.5.1
|
|
7223
|
+
* @version 1.5.1.0
|
|
6820
7224
|
* @baseUrl /sp
|
|
6821
7225
|
*/
|
|
6822
7226
|
|
|
@@ -6975,6 +7379,8 @@ let Api = /*#__PURE__*/function (_EventEmitter) {
|
|
|
6975
7379
|
_this.universalSearch = new UniversalSearchService(_this.http);
|
|
6976
7380
|
_this.spatialReference = new SpatialReferencesService(_this.http);
|
|
6977
7381
|
_this.eqlTest = new EqlTest(_this.http);
|
|
7382
|
+
_this.catalog = new CatalogService(_this.http);
|
|
7383
|
+
_this.queryToken = new QueryTokenAccessService(_this.http);
|
|
6978
7384
|
_this.names = new Names({
|
|
6979
7385
|
account: _this.account
|
|
6980
7386
|
});
|
|
@@ -7459,47 +7865,47 @@ function isFeatureLayer(layer) {
|
|
|
7459
7865
|
|
|
7460
7866
|
/**
|
|
7461
7867
|
*
|
|
7462
|
-
|
|
7868
|
+
|
|
7463
7869
|
None
|
|
7464
|
-
|
|
7870
|
+
|
|
7465
7871
|
Array
|
|
7466
|
-
|
|
7872
|
+
|
|
7467
7873
|
Min
|
|
7468
|
-
|
|
7874
|
+
|
|
7469
7875
|
Max
|
|
7470
|
-
|
|
7876
|
+
|
|
7471
7877
|
Avg
|
|
7472
|
-
|
|
7878
|
+
|
|
7473
7879
|
Sum
|
|
7474
|
-
|
|
7880
|
+
|
|
7475
7881
|
Extent
|
|
7476
|
-
|
|
7882
|
+
|
|
7477
7883
|
H3
|
|
7478
|
-
|
|
7884
|
+
|
|
7479
7885
|
Count
|
|
7480
|
-
|
|
7886
|
+
|
|
7481
7887
|
TotalCount
|
|
7482
|
-
|
|
7888
|
+
|
|
7483
7889
|
DistinctCount
|
|
7484
|
-
|
|
7890
|
+
|
|
7485
7891
|
First
|
|
7486
|
-
|
|
7892
|
+
|
|
7487
7893
|
Last
|
|
7488
|
-
|
|
7894
|
+
|
|
7489
7895
|
Median
|
|
7490
|
-
|
|
7896
|
+
|
|
7491
7897
|
Mod
|
|
7492
|
-
|
|
7898
|
+
|
|
7493
7899
|
StdDeviation
|
|
7494
|
-
|
|
7900
|
+
|
|
7495
7901
|
SumOfProduct
|
|
7496
|
-
|
|
7902
|
+
|
|
7497
7903
|
OnlyValue
|
|
7498
|
-
|
|
7904
|
+
|
|
7499
7905
|
WeightedAvg
|
|
7500
|
-
|
|
7906
|
+
|
|
7501
7907
|
DensityIndicators
|
|
7502
|
-
|
|
7908
|
+
|
|
7503
7909
|
DividedSum
|
|
7504
7910
|
*/
|
|
7505
7911
|
var AggregationFunction;
|
|
@@ -7528,14 +7934,14 @@ var AggregationFunction;
|
|
|
7528
7934
|
AggregationFunction["DividedSum"] = "DividedSum";
|
|
7529
7935
|
})(AggregationFunction || (AggregationFunction = {}));
|
|
7530
7936
|
/**
|
|
7531
|
-
*
|
|
7532
|
-
|
|
7937
|
+
*
|
|
7938
|
+
|
|
7533
7939
|
None
|
|
7534
|
-
|
|
7940
|
+
|
|
7535
7941
|
SelectFromHandBook
|
|
7536
|
-
|
|
7942
|
+
|
|
7537
7943
|
SelectFromRange
|
|
7538
|
-
|
|
7944
|
+
|
|
7539
7945
|
ViewHandBook
|
|
7540
7946
|
*/
|
|
7541
7947
|
|
|
@@ -7549,32 +7955,32 @@ var AttributeSelectorType;
|
|
|
7549
7955
|
AttributeSelectorType["ViewHandBook"] = "ViewHandBook";
|
|
7550
7956
|
})(AttributeSelectorType || (AttributeSelectorType = {}));
|
|
7551
7957
|
/**
|
|
7552
|
-
*
|
|
7553
|
-
|
|
7958
|
+
*
|
|
7959
|
+
|
|
7554
7960
|
Unknown
|
|
7555
|
-
|
|
7961
|
+
|
|
7556
7962
|
String
|
|
7557
|
-
|
|
7963
|
+
|
|
7558
7964
|
Int32
|
|
7559
|
-
|
|
7965
|
+
|
|
7560
7966
|
Int64
|
|
7561
|
-
|
|
7967
|
+
|
|
7562
7968
|
Double
|
|
7563
|
-
|
|
7969
|
+
|
|
7564
7970
|
DateTime
|
|
7565
|
-
|
|
7971
|
+
|
|
7566
7972
|
Boolean
|
|
7567
|
-
|
|
7973
|
+
|
|
7568
7974
|
Point
|
|
7569
|
-
|
|
7975
|
+
|
|
7570
7976
|
Polyline
|
|
7571
|
-
|
|
7977
|
+
|
|
7572
7978
|
MultiPolygon
|
|
7573
|
-
|
|
7979
|
+
|
|
7574
7980
|
Multipoint
|
|
7575
|
-
|
|
7981
|
+
|
|
7576
7982
|
H3Index
|
|
7577
|
-
|
|
7983
|
+
|
|
7578
7984
|
Json
|
|
7579
7985
|
*/
|
|
7580
7986
|
|
|
@@ -7598,15 +8004,15 @@ var AttributeType;
|
|
|
7598
8004
|
})(AttributeType || (AttributeType = {}));
|
|
7599
8005
|
/**
|
|
7600
8006
|
* Describes classification methods.
|
|
7601
|
-
|
|
8007
|
+
|
|
7602
8008
|
none
|
|
7603
|
-
|
|
8009
|
+
|
|
7604
8010
|
naturalBreaks
|
|
7605
|
-
|
|
8011
|
+
|
|
7606
8012
|
equalInterval
|
|
7607
|
-
|
|
8013
|
+
|
|
7608
8014
|
quantile
|
|
7609
|
-
|
|
8015
|
+
|
|
7610
8016
|
unique
|
|
7611
8017
|
*/
|
|
7612
8018
|
|
|
@@ -7622,11 +8028,11 @@ var ClassificationType;
|
|
|
7622
8028
|
})(ClassificationType || (ClassificationType = {}));
|
|
7623
8029
|
/**
|
|
7624
8030
|
*
|
|
7625
|
-
|
|
8031
|
+
|
|
7626
8032
|
decimal
|
|
7627
|
-
|
|
8033
|
+
|
|
7628
8034
|
dateTime
|
|
7629
|
-
|
|
8035
|
+
|
|
7630
8036
|
text
|
|
7631
8037
|
*/
|
|
7632
8038
|
|
|
@@ -7639,56 +8045,56 @@ var ClassifyAttributeType;
|
|
|
7639
8045
|
ClassifyAttributeType["Text"] = "text";
|
|
7640
8046
|
})(ClassifyAttributeType || (ClassifyAttributeType = {}));
|
|
7641
8047
|
/**
|
|
7642
|
-
*
|
|
7643
|
-
|
|
8048
|
+
*
|
|
8049
|
+
|
|
7644
8050
|
Unknown
|
|
7645
|
-
|
|
8051
|
+
|
|
7646
8052
|
SerializeError
|
|
7647
|
-
|
|
8053
|
+
|
|
7648
8054
|
InvalidDataService
|
|
7649
|
-
|
|
8055
|
+
|
|
7650
8056
|
InvalidConfiguration
|
|
7651
|
-
|
|
8057
|
+
|
|
7652
8058
|
InvalidDataServiceName
|
|
7653
|
-
|
|
8059
|
+
|
|
7654
8060
|
InvalidTableName
|
|
7655
|
-
|
|
8061
|
+
|
|
7656
8062
|
InvalidLayerName
|
|
7657
|
-
|
|
8063
|
+
|
|
7658
8064
|
ResourceNotFound
|
|
7659
|
-
|
|
8065
|
+
|
|
7660
8066
|
InvalidCondition
|
|
7661
|
-
|
|
8067
|
+
|
|
7662
8068
|
InvalidAttributes
|
|
7663
|
-
|
|
8069
|
+
|
|
7664
8070
|
InvalidIdAttribute
|
|
7665
|
-
|
|
8071
|
+
|
|
7666
8072
|
InvalidGeometryAttribute
|
|
7667
|
-
|
|
8073
|
+
|
|
7668
8074
|
InvalidGeometryAttributeType
|
|
7669
|
-
|
|
8075
|
+
|
|
7670
8076
|
InvalidColumnName
|
|
7671
|
-
|
|
8077
|
+
|
|
7672
8078
|
InvalidIdColumnSettings
|
|
7673
|
-
|
|
8079
|
+
|
|
7674
8080
|
ColumnNotExistsInTable
|
|
7675
|
-
|
|
8081
|
+
|
|
7676
8082
|
InvalidStyle
|
|
7677
|
-
|
|
8083
|
+
|
|
7678
8084
|
InvalidLayerType
|
|
7679
|
-
|
|
8085
|
+
|
|
7680
8086
|
ColumnLoadingError
|
|
7681
|
-
|
|
8087
|
+
|
|
7682
8088
|
InvalidAttributeFormat
|
|
7683
|
-
|
|
8089
|
+
|
|
7684
8090
|
DataSourceNotFound
|
|
7685
|
-
|
|
8091
|
+
|
|
7686
8092
|
DuplicateColumns
|
|
7687
|
-
|
|
8093
|
+
|
|
7688
8094
|
DuplicateAttributes
|
|
7689
|
-
|
|
8095
|
+
|
|
7690
8096
|
TableWithoutColumns
|
|
7691
|
-
|
|
8097
|
+
|
|
7692
8098
|
InvalidTableReferenceConfiguration
|
|
7693
8099
|
*/
|
|
7694
8100
|
|
|
@@ -7724,15 +8130,15 @@ var ConfigurationErrorEnum;
|
|
|
7724
8130
|
})(ConfigurationErrorEnum || (ConfigurationErrorEnum = {}));
|
|
7725
8131
|
/**
|
|
7726
8132
|
* Type of the error.
|
|
7727
|
-
|
|
8133
|
+
|
|
7728
8134
|
ResourceLimitExceeded
|
|
7729
|
-
|
|
8135
|
+
|
|
7730
8136
|
ResourceNotFound
|
|
7731
|
-
|
|
8137
|
+
|
|
7732
8138
|
InternalError
|
|
7733
|
-
|
|
8139
|
+
|
|
7734
8140
|
BadRequest
|
|
7735
|
-
|
|
8141
|
+
|
|
7736
8142
|
DuplicateContent
|
|
7737
8143
|
*/
|
|
7738
8144
|
|
|
@@ -7783,9 +8189,9 @@ var ErrorType;
|
|
|
7783
8189
|
})(ErrorType || (ErrorType = {}));
|
|
7784
8190
|
/**
|
|
7785
8191
|
* Type of the feature.
|
|
7786
|
-
|
|
8192
|
+
|
|
7787
8193
|
Unknown
|
|
7788
|
-
|
|
8194
|
+
|
|
7789
8195
|
GeometricFeature
|
|
7790
8196
|
*/
|
|
7791
8197
|
|
|
@@ -7798,11 +8204,11 @@ var FeatureType;
|
|
|
7798
8204
|
})(FeatureType || (FeatureType = {}));
|
|
7799
8205
|
/**
|
|
7800
8206
|
* Sets whether font should be styled.
|
|
7801
|
-
|
|
8207
|
+
|
|
7802
8208
|
normal
|
|
7803
|
-
|
|
8209
|
+
|
|
7804
8210
|
oblique
|
|
7805
|
-
|
|
8211
|
+
|
|
7806
8212
|
italic
|
|
7807
8213
|
*/
|
|
7808
8214
|
|
|
@@ -7816,27 +8222,27 @@ var FontStyle;
|
|
|
7816
8222
|
})(FontStyle || (FontStyle = {}));
|
|
7817
8223
|
/**
|
|
7818
8224
|
* Specifies the weight (or boldness) of the font.
|
|
7819
|
-
|
|
8225
|
+
|
|
7820
8226
|
Thin
|
|
7821
|
-
|
|
8227
|
+
|
|
7822
8228
|
ExtraLight
|
|
7823
|
-
|
|
8229
|
+
|
|
7824
8230
|
Light
|
|
7825
|
-
|
|
8231
|
+
|
|
7826
8232
|
SemiLight
|
|
7827
|
-
|
|
8233
|
+
|
|
7828
8234
|
Normal
|
|
7829
|
-
|
|
8235
|
+
|
|
7830
8236
|
Medium
|
|
7831
|
-
|
|
8237
|
+
|
|
7832
8238
|
DemiBold
|
|
7833
|
-
|
|
8239
|
+
|
|
7834
8240
|
Bold
|
|
7835
|
-
|
|
8241
|
+
|
|
7836
8242
|
ExtraBold
|
|
7837
|
-
|
|
8243
|
+
|
|
7838
8244
|
Black
|
|
7839
|
-
|
|
8245
|
+
|
|
7840
8246
|
ExtraBlack
|
|
7841
8247
|
*/
|
|
7842
8248
|
|
|
@@ -7858,17 +8264,17 @@ var FontWeight;
|
|
|
7858
8264
|
})(FontWeight || (FontWeight = {}));
|
|
7859
8265
|
/**
|
|
7860
8266
|
*
|
|
7861
|
-
|
|
8267
|
+
|
|
7862
8268
|
unknown
|
|
7863
|
-
|
|
8269
|
+
|
|
7864
8270
|
point
|
|
7865
|
-
|
|
8271
|
+
|
|
7866
8272
|
polyline
|
|
7867
|
-
|
|
8273
|
+
|
|
7868
8274
|
multipolygon
|
|
7869
|
-
|
|
8275
|
+
|
|
7870
8276
|
envelope
|
|
7871
|
-
|
|
8277
|
+
|
|
7872
8278
|
multipoint
|
|
7873
8279
|
*/
|
|
7874
8280
|
|
|
@@ -7885,13 +8291,13 @@ var GeometryType;
|
|
|
7885
8291
|
})(GeometryType || (GeometryType = {}));
|
|
7886
8292
|
/**
|
|
7887
8293
|
* Resource group.
|
|
7888
|
-
|
|
8294
|
+
|
|
7889
8295
|
my
|
|
7890
|
-
|
|
8296
|
+
|
|
7891
8297
|
role
|
|
7892
|
-
|
|
8298
|
+
|
|
7893
8299
|
public
|
|
7894
|
-
|
|
8300
|
+
|
|
7895
8301
|
all
|
|
7896
8302
|
*/
|
|
7897
8303
|
|
|
@@ -7906,13 +8312,13 @@ var Group;
|
|
|
7906
8312
|
})(Group || (Group = {}));
|
|
7907
8313
|
/**
|
|
7908
8314
|
* Specifies the settings of line cap. This is applied to the beginning and end of each non-closed line.
|
|
7909
|
-
|
|
8315
|
+
|
|
7910
8316
|
Flat
|
|
7911
|
-
|
|
8317
|
+
|
|
7912
8318
|
Square
|
|
7913
|
-
|
|
8319
|
+
|
|
7914
8320
|
Round
|
|
7915
|
-
|
|
8321
|
+
|
|
7916
8322
|
Triangle
|
|
7917
8323
|
*/
|
|
7918
8324
|
|
|
@@ -7927,29 +8333,29 @@ var LineCapStyle;
|
|
|
7927
8333
|
})(LineCapStyle || (LineCapStyle = {}));
|
|
7928
8334
|
/**
|
|
7929
8335
|
* Type of the line ending.
|
|
7930
|
-
|
|
8336
|
+
|
|
7931
8337
|
none
|
|
7932
|
-
|
|
8338
|
+
|
|
7933
8339
|
arrow
|
|
7934
|
-
|
|
8340
|
+
|
|
7935
8341
|
filledArrow
|
|
7936
|
-
|
|
8342
|
+
|
|
7937
8343
|
square
|
|
7938
|
-
|
|
8344
|
+
|
|
7939
8345
|
filledSquare
|
|
7940
|
-
|
|
8346
|
+
|
|
7941
8347
|
circle
|
|
7942
|
-
|
|
8348
|
+
|
|
7943
8349
|
filledCircle
|
|
7944
|
-
|
|
8350
|
+
|
|
7945
8351
|
diamond
|
|
7946
|
-
|
|
8352
|
+
|
|
7947
8353
|
filledDiamond
|
|
7948
|
-
|
|
8354
|
+
|
|
7949
8355
|
roundSquare
|
|
7950
|
-
|
|
8356
|
+
|
|
7951
8357
|
filledRoundSquare
|
|
7952
|
-
|
|
8358
|
+
|
|
7953
8359
|
svg
|
|
7954
8360
|
*/
|
|
7955
8361
|
|
|
@@ -7972,11 +8378,11 @@ var LineEndingType;
|
|
|
7972
8378
|
})(LineEndingType || (LineEndingType = {}));
|
|
7973
8379
|
/**
|
|
7974
8380
|
* Specifies the settings of lines join. This is applied to corners in lines and rectangles.
|
|
7975
|
-
|
|
8381
|
+
|
|
7976
8382
|
Miter
|
|
7977
|
-
|
|
8383
|
+
|
|
7978
8384
|
Bevel
|
|
7979
|
-
|
|
8385
|
+
|
|
7980
8386
|
Round
|
|
7981
8387
|
*/
|
|
7982
8388
|
|
|
@@ -7990,15 +8396,33 @@ var LineJoinType;
|
|
|
7990
8396
|
})(LineJoinType || (LineJoinType = {}));
|
|
7991
8397
|
/**
|
|
7992
8398
|
*
|
|
7993
|
-
|
|
8399
|
+
|
|
8400
|
+
All
|
|
8401
|
+
|
|
8402
|
+
Directory
|
|
8403
|
+
|
|
8404
|
+
File
|
|
8405
|
+
*/
|
|
8406
|
+
|
|
8407
|
+
|
|
8408
|
+
var ObjectTypeFilter;
|
|
8409
|
+
|
|
8410
|
+
(function (ObjectTypeFilter) {
|
|
8411
|
+
ObjectTypeFilter["All"] = "All";
|
|
8412
|
+
ObjectTypeFilter["Directory"] = "Directory";
|
|
8413
|
+
ObjectTypeFilter["File"] = "File";
|
|
8414
|
+
})(ObjectTypeFilter || (ObjectTypeFilter = {}));
|
|
8415
|
+
/**
|
|
8416
|
+
*
|
|
8417
|
+
|
|
7994
8418
|
Unknown
|
|
7995
|
-
|
|
8419
|
+
|
|
7996
8420
|
union
|
|
7997
|
-
|
|
8421
|
+
|
|
7998
8422
|
intersection
|
|
7999
|
-
|
|
8423
|
+
|
|
8000
8424
|
subtraction
|
|
8001
|
-
|
|
8425
|
+
|
|
8002
8426
|
symDifference
|
|
8003
8427
|
*/
|
|
8004
8428
|
|
|
@@ -8013,10 +8437,28 @@ var Operation;
|
|
|
8013
8437
|
Operation["SymDifference"] = "symDifference";
|
|
8014
8438
|
})(Operation || (Operation = {}));
|
|
8015
8439
|
/**
|
|
8440
|
+
*
|
|
8441
|
+
|
|
8442
|
+
My
|
|
8443
|
+
|
|
8444
|
+
All
|
|
8445
|
+
|
|
8446
|
+
Other
|
|
8447
|
+
*/
|
|
8448
|
+
|
|
8449
|
+
|
|
8450
|
+
var OwnerFilter;
|
|
8451
|
+
|
|
8452
|
+
(function (OwnerFilter) {
|
|
8453
|
+
OwnerFilter["My"] = "My";
|
|
8454
|
+
OwnerFilter["All"] = "All";
|
|
8455
|
+
OwnerFilter["Other"] = "Other";
|
|
8456
|
+
})(OwnerFilter || (OwnerFilter = {}));
|
|
8457
|
+
/**
|
|
8016
8458
|
* Influences the y direction of the tile coordinates. The global-mercator (aka Spherical Mercator) profile is assumed.
|
|
8017
|
-
|
|
8459
|
+
|
|
8018
8460
|
xyz
|
|
8019
|
-
|
|
8461
|
+
|
|
8020
8462
|
tms
|
|
8021
8463
|
*/
|
|
8022
8464
|
|
|
@@ -8028,20 +8470,20 @@ var PbfSchema;
|
|
|
8028
8470
|
PbfSchema["TMS"] = "tms";
|
|
8029
8471
|
})(PbfSchema || (PbfSchema = {}));
|
|
8030
8472
|
/**
|
|
8031
|
-
*
|
|
8032
|
-
|
|
8473
|
+
*
|
|
8474
|
+
|
|
8033
8475
|
none
|
|
8034
|
-
|
|
8476
|
+
|
|
8035
8477
|
configure
|
|
8036
|
-
|
|
8478
|
+
|
|
8037
8479
|
write
|
|
8038
|
-
|
|
8480
|
+
|
|
8039
8481
|
read
|
|
8040
|
-
|
|
8482
|
+
|
|
8041
8483
|
read,configure
|
|
8042
|
-
|
|
8484
|
+
|
|
8043
8485
|
read,write
|
|
8044
|
-
|
|
8486
|
+
|
|
8045
8487
|
read,write,configure
|
|
8046
8488
|
*/
|
|
8047
8489
|
|
|
@@ -8059,19 +8501,19 @@ var Permissions;
|
|
|
8059
8501
|
})(Permissions || (Permissions = {}));
|
|
8060
8502
|
/**
|
|
8061
8503
|
* Type of the authorization policy.
|
|
8062
|
-
|
|
8504
|
+
|
|
8063
8505
|
Unknown
|
|
8064
|
-
|
|
8506
|
+
|
|
8065
8507
|
CreateTable
|
|
8066
|
-
|
|
8508
|
+
|
|
8067
8509
|
CreateLayer
|
|
8068
|
-
|
|
8510
|
+
|
|
8069
8511
|
CreateProject
|
|
8070
|
-
|
|
8512
|
+
|
|
8071
8513
|
MaxFeaturesInOneTable
|
|
8072
|
-
|
|
8514
|
+
|
|
8073
8515
|
MaxObjectsToExport
|
|
8074
|
-
|
|
8516
|
+
|
|
8075
8517
|
MaxUploadContentSize
|
|
8076
8518
|
*/
|
|
8077
8519
|
|
|
@@ -8088,18 +8530,36 @@ var PolicyType;
|
|
|
8088
8530
|
PolicyType["MaxUploadContentSize"] = "MaxUploadContentSize";
|
|
8089
8531
|
})(PolicyType || (PolicyType = {}));
|
|
8090
8532
|
/**
|
|
8091
|
-
*
|
|
8092
|
-
|
|
8533
|
+
* Stream quality.
|
|
8534
|
+
|
|
8535
|
+
Low
|
|
8536
|
+
|
|
8537
|
+
Medium
|
|
8538
|
+
|
|
8539
|
+
High
|
|
8540
|
+
*/
|
|
8541
|
+
|
|
8542
|
+
|
|
8543
|
+
var Quality;
|
|
8544
|
+
|
|
8545
|
+
(function (Quality) {
|
|
8546
|
+
Quality["Low"] = "Low";
|
|
8547
|
+
Quality["Medium"] = "Medium";
|
|
8548
|
+
Quality["High"] = "High";
|
|
8549
|
+
})(Quality || (Quality = {}));
|
|
8550
|
+
/**
|
|
8551
|
+
*
|
|
8552
|
+
|
|
8093
8553
|
OneToMany
|
|
8094
|
-
|
|
8554
|
+
|
|
8095
8555
|
OneToOne
|
|
8096
|
-
|
|
8556
|
+
|
|
8097
8557
|
Intersect
|
|
8098
|
-
|
|
8558
|
+
|
|
8099
8559
|
RightJoin
|
|
8100
|
-
|
|
8560
|
+
|
|
8101
8561
|
FullJoin
|
|
8102
|
-
|
|
8562
|
+
|
|
8103
8563
|
CrossJoin
|
|
8104
8564
|
*/
|
|
8105
8565
|
|
|
@@ -8115,20 +8575,20 @@ var ReferenceJoinType;
|
|
|
8115
8575
|
ReferenceJoinType["CrossJoin"] = "CrossJoin";
|
|
8116
8576
|
})(ReferenceJoinType || (ReferenceJoinType = {}));
|
|
8117
8577
|
/**
|
|
8118
|
-
*
|
|
8119
|
-
|
|
8578
|
+
*
|
|
8579
|
+
|
|
8120
8580
|
Unknown
|
|
8121
|
-
|
|
8581
|
+
|
|
8122
8582
|
table
|
|
8123
|
-
|
|
8583
|
+
|
|
8124
8584
|
layer
|
|
8125
|
-
|
|
8585
|
+
|
|
8126
8586
|
project
|
|
8127
|
-
|
|
8587
|
+
|
|
8128
8588
|
file
|
|
8129
|
-
|
|
8589
|
+
|
|
8130
8590
|
feature
|
|
8131
|
-
|
|
8591
|
+
|
|
8132
8592
|
tag
|
|
8133
8593
|
*/
|
|
8134
8594
|
|
|
@@ -8154,21 +8614,21 @@ var ResourceTypeLink;
|
|
|
8154
8614
|
})(ResourceTypeLink || (ResourceTypeLink = {}));
|
|
8155
8615
|
/**
|
|
8156
8616
|
* Status of the server task.
|
|
8157
|
-
|
|
8617
|
+
|
|
8158
8618
|
None
|
|
8159
|
-
|
|
8619
|
+
|
|
8160
8620
|
Scheduled
|
|
8161
|
-
|
|
8621
|
+
|
|
8162
8622
|
Planning
|
|
8163
|
-
|
|
8623
|
+
|
|
8164
8624
|
Executing
|
|
8165
|
-
|
|
8625
|
+
|
|
8166
8626
|
Completed
|
|
8167
|
-
|
|
8627
|
+
|
|
8168
8628
|
Failed
|
|
8169
|
-
|
|
8629
|
+
|
|
8170
8630
|
Canceled
|
|
8171
|
-
|
|
8631
|
+
|
|
8172
8632
|
Timeout
|
|
8173
8633
|
*/
|
|
8174
8634
|
|
|
@@ -8186,12 +8646,12 @@ var ServerTaskStatus;
|
|
|
8186
8646
|
ServerTaskStatus["Timeout"] = "Timeout";
|
|
8187
8647
|
})(ServerTaskStatus || (ServerTaskStatus = {}));
|
|
8188
8648
|
/**
|
|
8189
|
-
*
|
|
8190
|
-
|
|
8649
|
+
*
|
|
8650
|
+
|
|
8191
8651
|
Basic
|
|
8192
|
-
|
|
8652
|
+
|
|
8193
8653
|
PreserveTopology
|
|
8194
|
-
|
|
8654
|
+
|
|
8195
8655
|
VW
|
|
8196
8656
|
*/
|
|
8197
8657
|
|
|
@@ -8204,14 +8664,14 @@ var SimplifyType;
|
|
|
8204
8664
|
SimplifyType["VW"] = "VW";
|
|
8205
8665
|
})(SimplifyType || (SimplifyType = {}));
|
|
8206
8666
|
/**
|
|
8207
|
-
*
|
|
8208
|
-
|
|
8667
|
+
*
|
|
8668
|
+
|
|
8209
8669
|
None
|
|
8210
|
-
|
|
8670
|
+
|
|
8211
8671
|
Image
|
|
8212
|
-
|
|
8672
|
+
|
|
8213
8673
|
PkkCode
|
|
8214
|
-
|
|
8674
|
+
|
|
8215
8675
|
Attachments
|
|
8216
8676
|
*/
|
|
8217
8677
|
|
|
@@ -8226,9 +8686,9 @@ var StringSubType;
|
|
|
8226
8686
|
})(StringSubType || (StringSubType = {}));
|
|
8227
8687
|
/**
|
|
8228
8688
|
* Task owner group.
|
|
8229
|
-
|
|
8689
|
+
|
|
8230
8690
|
my
|
|
8231
|
-
|
|
8691
|
+
|
|
8232
8692
|
all
|
|
8233
8693
|
*/
|
|
8234
8694
|
|
|
@@ -8241,13 +8701,13 @@ var TaskGroup;
|
|
|
8241
8701
|
})(TaskGroup || (TaskGroup = {}));
|
|
8242
8702
|
/**
|
|
8243
8703
|
* Sets the horizontal alignment of text.
|
|
8244
|
-
|
|
8704
|
+
|
|
8245
8705
|
right
|
|
8246
|
-
|
|
8706
|
+
|
|
8247
8707
|
left
|
|
8248
|
-
|
|
8708
|
+
|
|
8249
8709
|
center
|
|
8250
|
-
|
|
8710
|
+
|
|
8251
8711
|
justified
|
|
8252
8712
|
*/
|
|
8253
8713
|
|
|
@@ -8262,11 +8722,11 @@ var TextAlignment;
|
|
|
8262
8722
|
})(TextAlignment || (TextAlignment = {}));
|
|
8263
8723
|
/**
|
|
8264
8724
|
* Sets the vertical alignment of text.
|
|
8265
|
-
|
|
8725
|
+
|
|
8266
8726
|
top
|
|
8267
|
-
|
|
8727
|
+
|
|
8268
8728
|
bottom
|
|
8269
|
-
|
|
8729
|
+
|
|
8270
8730
|
middle
|
|
8271
8731
|
*/
|
|
8272
8732
|
|
|
@@ -8279,5 +8739,5 @@ var TextVerticalAlignment;
|
|
|
8279
8739
|
TextVerticalAlignment["Middle"] = "middle";
|
|
8280
8740
|
})(TextVerticalAlignment || (TextVerticalAlignment = {}));
|
|
8281
8741
|
|
|
8282
|
-
export { Account, AccountPreview, AggregationFunction, Api, ApiEvent, AttributeSelectorType, AttributeType, BulkOperations, Cameras, ClassificationType, ClassifyAttributeType, ClientSettings, ConfigurationErrorEnum, ConnectionStatus, DependencyType, EqlTest, 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, PbfSchema, Permissions, PolicyType, PortalSettings, Print, Projects, ReferenceJoinType, 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 };
|
|
8742
|
+
export { Account, AccountPreview, AggregationFunction, Api, ApiEvent, AttributeSelectorType, AttributeType, BulkOperations, Cameras, ClassificationType, ClassifyAttributeType, ClientSettings, ConfigurationErrorEnum, ConnectionStatus, DependencyType, EqlTest, 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, ObjectTypeFilter, Operation, OwnerFilter, PbfSchema, Permissions, PolicyType, PortalSettings, Print, Projects, Quality, ReferenceJoinType, 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 };
|
|
8283
8743
|
//# sourceMappingURL=api.esm.js.map
|