@evergis/api 3.0.180 → 3.0.182
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 +3 -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 +3 -3
- 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 +1 -1
- package/dist/__generated__/WmtsService.d.ts +1 -1
- package/dist/__generated__/data-contracts.d.ts +498 -533
- package/dist/api.cjs.development.js +352 -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 +576 -238
- package/dist/api.esm.js.map +1 -1
- package/package.json +4 -4
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
|
}
|
|
@@ -4288,7 +4570,7 @@ let Names = /*#__PURE__*/function () {
|
|
|
4288
4570
|
|
|
4289
4571
|
/**
|
|
4290
4572
|
* @title Spatial Processing Core API
|
|
4291
|
-
* @version 1.5.1
|
|
4573
|
+
* @version 1.5.1.0
|
|
4292
4574
|
* @baseUrl /sp
|
|
4293
4575
|
*/
|
|
4294
4576
|
|
|
@@ -4388,7 +4670,7 @@ let Namespace = /*#__PURE__*/function (_NamespaceService) {
|
|
|
4388
4670
|
|
|
4389
4671
|
/**
|
|
4390
4672
|
* @title Spatial Processing Core API
|
|
4391
|
-
* @version 1.5.1
|
|
4673
|
+
* @version 1.5.1.0
|
|
4392
4674
|
* @baseUrl /sp
|
|
4393
4675
|
*/
|
|
4394
4676
|
|
|
@@ -4544,8 +4826,8 @@ let Notification = /*#__PURE__*/function (_NotificationService) {
|
|
|
4544
4826
|
|| event.code === 4002
|
|
4545
4827
|
/* InvalidSession */
|
|
4546
4828
|
) {
|
|
4547
|
-
|
|
4548
|
-
|
|
4829
|
+
_this.connectStatus = ConnectionStatus.SessionClosed;
|
|
4830
|
+
} else if (_this.reconnectTries < _this.MAX_WS_RECONNECT_TRIES) {
|
|
4549
4831
|
_this.connectStatus = ConnectionStatus.Break;
|
|
4550
4832
|
_this.reconnectTries++;
|
|
4551
4833
|
|
|
@@ -4696,7 +4978,7 @@ let PortalSettings = /*#__PURE__*/function (_ClientSettingsServic) {
|
|
|
4696
4978
|
|
|
4697
4979
|
/**
|
|
4698
4980
|
* @title Spatial Processing Core API
|
|
4699
|
-
* @version 1.5.1
|
|
4981
|
+
* @version 1.5.1.0
|
|
4700
4982
|
* @baseUrl /sp
|
|
4701
4983
|
*/
|
|
4702
4984
|
|
|
@@ -4828,7 +5110,7 @@ let Print = /*#__PURE__*/function (_PrintService) {
|
|
|
4828
5110
|
|
|
4829
5111
|
/**
|
|
4830
5112
|
* @title Spatial Processing Core API
|
|
4831
|
-
* @version 1.5.1
|
|
5113
|
+
* @version 1.5.1.0
|
|
4832
5114
|
* @baseUrl /sp
|
|
4833
5115
|
*/
|
|
4834
5116
|
|
|
@@ -5232,7 +5514,7 @@ function isProjectContentItems(v) {
|
|
|
5232
5514
|
|
|
5233
5515
|
/**
|
|
5234
5516
|
* @title Spatial Processing Core API
|
|
5235
|
-
* @version 1.5.1
|
|
5517
|
+
* @version 1.5.1.0
|
|
5236
5518
|
* @baseUrl /sp
|
|
5237
5519
|
*/
|
|
5238
5520
|
|
|
@@ -5379,12 +5661,12 @@ let Resources = /*#__PURE__*/function () {
|
|
|
5379
5661
|
}, {
|
|
5380
5662
|
key: "getDependentNames",
|
|
5381
5663
|
value: function getDependentNames(deps, depType) {
|
|
5382
|
-
return deps.filter(_ref => {
|
|
5664
|
+
return deps.filter((_ref) => {
|
|
5383
5665
|
let {
|
|
5384
5666
|
type
|
|
5385
5667
|
} = _ref;
|
|
5386
5668
|
return type === depType;
|
|
5387
|
-
}).map(_ref2 => {
|
|
5669
|
+
}).map((_ref2) => {
|
|
5388
5670
|
let {
|
|
5389
5671
|
name
|
|
5390
5672
|
} = _ref2;
|
|
@@ -5398,7 +5680,7 @@ let Resources = /*#__PURE__*/function () {
|
|
|
5398
5680
|
|
|
5399
5681
|
/**
|
|
5400
5682
|
* @title Spatial Processing Core API
|
|
5401
|
-
* @version 1.5.1
|
|
5683
|
+
* @version 1.5.1.0
|
|
5402
5684
|
* @baseUrl /sp
|
|
5403
5685
|
*/
|
|
5404
5686
|
|
|
@@ -5840,7 +6122,7 @@ let Scheduler = /*#__PURE__*/function (_SchedulerService) {
|
|
|
5840
6122
|
const taskProgress = await this.getTaskProgress(id);
|
|
5841
6123
|
this.resolveTaskStatus(taskProgress, resolve, reject);
|
|
5842
6124
|
|
|
5843
|
-
const taskResultCallback = async _ref => {
|
|
6125
|
+
const taskResultCallback = async (_ref) => {
|
|
5844
6126
|
let {
|
|
5845
6127
|
data
|
|
5846
6128
|
} = _ref;
|
|
@@ -5885,7 +6167,7 @@ let Scheduler = /*#__PURE__*/function (_SchedulerService) {
|
|
|
5885
6167
|
|
|
5886
6168
|
/**
|
|
5887
6169
|
* @title Spatial Processing Core API
|
|
5888
|
-
* @version 1.5.1
|
|
6170
|
+
* @version 1.5.1.0
|
|
5889
6171
|
* @baseUrl /sp
|
|
5890
6172
|
*/
|
|
5891
6173
|
|
|
@@ -6037,7 +6319,7 @@ let Security = /*#__PURE__*/function (_SecurityService) {
|
|
|
6037
6319
|
|
|
6038
6320
|
/**
|
|
6039
6321
|
* @title Spatial Processing Core API
|
|
6040
|
-
* @version 1.5.1
|
|
6322
|
+
* @version 1.5.1.0
|
|
6041
6323
|
* @baseUrl /sp
|
|
6042
6324
|
*/
|
|
6043
6325
|
|
|
@@ -6133,7 +6415,7 @@ let Statistic = /*#__PURE__*/function (_StatisticService) {
|
|
|
6133
6415
|
|
|
6134
6416
|
/**
|
|
6135
6417
|
* @title Spatial Processing Core API
|
|
6136
|
-
* @version 1.5.1
|
|
6418
|
+
* @version 1.5.1.0
|
|
6137
6419
|
* @baseUrl /sp
|
|
6138
6420
|
*/
|
|
6139
6421
|
|
|
@@ -6269,7 +6551,7 @@ const _excluded$6 = ["name"],
|
|
|
6269
6551
|
_excluded4$2 = ["name"];
|
|
6270
6552
|
/**
|
|
6271
6553
|
* @title Spatial Processing Core API
|
|
6272
|
-
* @version 1.5.1
|
|
6554
|
+
* @version 1.5.1.0
|
|
6273
6555
|
* @baseUrl /sp
|
|
6274
6556
|
*/
|
|
6275
6557
|
|
|
@@ -6781,7 +7063,7 @@ let Tables = /*#__PURE__*/function (_TablesService) {
|
|
|
6781
7063
|
|
|
6782
7064
|
/**
|
|
6783
7065
|
* @title Spatial Processing Core API
|
|
6784
|
-
* @version 1.5.1
|
|
7066
|
+
* @version 1.5.1.0
|
|
6785
7067
|
* @baseUrl /sp
|
|
6786
7068
|
*/
|
|
6787
7069
|
|
|
@@ -6816,7 +7098,7 @@ let Tools = /*#__PURE__*/function (_ToolsService) {
|
|
|
6816
7098
|
const _excluded$7 = ["name", "z", "x", "y"];
|
|
6817
7099
|
/**
|
|
6818
7100
|
* @title Spatial Processing Core API
|
|
6819
|
-
* @version 1.5.1
|
|
7101
|
+
* @version 1.5.1.0
|
|
6820
7102
|
* @baseUrl /sp
|
|
6821
7103
|
*/
|
|
6822
7104
|
|
|
@@ -6975,6 +7257,8 @@ let Api = /*#__PURE__*/function (_EventEmitter) {
|
|
|
6975
7257
|
_this.universalSearch = new UniversalSearchService(_this.http);
|
|
6976
7258
|
_this.spatialReference = new SpatialReferencesService(_this.http);
|
|
6977
7259
|
_this.eqlTest = new EqlTest(_this.http);
|
|
7260
|
+
_this.catalog = new CatalogService(_this.http);
|
|
7261
|
+
_this.queryToken = new QueryTokenAccessService(_this.http);
|
|
6978
7262
|
_this.names = new Names({
|
|
6979
7263
|
account: _this.account
|
|
6980
7264
|
});
|
|
@@ -7459,47 +7743,47 @@ function isFeatureLayer(layer) {
|
|
|
7459
7743
|
|
|
7460
7744
|
/**
|
|
7461
7745
|
*
|
|
7462
|
-
|
|
7746
|
+
|
|
7463
7747
|
None
|
|
7464
|
-
|
|
7748
|
+
|
|
7465
7749
|
Array
|
|
7466
|
-
|
|
7750
|
+
|
|
7467
7751
|
Min
|
|
7468
|
-
|
|
7752
|
+
|
|
7469
7753
|
Max
|
|
7470
|
-
|
|
7754
|
+
|
|
7471
7755
|
Avg
|
|
7472
|
-
|
|
7756
|
+
|
|
7473
7757
|
Sum
|
|
7474
|
-
|
|
7758
|
+
|
|
7475
7759
|
Extent
|
|
7476
|
-
|
|
7760
|
+
|
|
7477
7761
|
H3
|
|
7478
|
-
|
|
7762
|
+
|
|
7479
7763
|
Count
|
|
7480
|
-
|
|
7764
|
+
|
|
7481
7765
|
TotalCount
|
|
7482
|
-
|
|
7766
|
+
|
|
7483
7767
|
DistinctCount
|
|
7484
|
-
|
|
7768
|
+
|
|
7485
7769
|
First
|
|
7486
|
-
|
|
7770
|
+
|
|
7487
7771
|
Last
|
|
7488
|
-
|
|
7772
|
+
|
|
7489
7773
|
Median
|
|
7490
|
-
|
|
7774
|
+
|
|
7491
7775
|
Mod
|
|
7492
|
-
|
|
7776
|
+
|
|
7493
7777
|
StdDeviation
|
|
7494
|
-
|
|
7778
|
+
|
|
7495
7779
|
SumOfProduct
|
|
7496
|
-
|
|
7780
|
+
|
|
7497
7781
|
OnlyValue
|
|
7498
|
-
|
|
7782
|
+
|
|
7499
7783
|
WeightedAvg
|
|
7500
|
-
|
|
7784
|
+
|
|
7501
7785
|
DensityIndicators
|
|
7502
|
-
|
|
7786
|
+
|
|
7503
7787
|
DividedSum
|
|
7504
7788
|
*/
|
|
7505
7789
|
var AggregationFunction;
|
|
@@ -7528,14 +7812,14 @@ var AggregationFunction;
|
|
|
7528
7812
|
AggregationFunction["DividedSum"] = "DividedSum";
|
|
7529
7813
|
})(AggregationFunction || (AggregationFunction = {}));
|
|
7530
7814
|
/**
|
|
7531
|
-
*
|
|
7532
|
-
|
|
7815
|
+
*
|
|
7816
|
+
|
|
7533
7817
|
None
|
|
7534
|
-
|
|
7818
|
+
|
|
7535
7819
|
SelectFromHandBook
|
|
7536
|
-
|
|
7820
|
+
|
|
7537
7821
|
SelectFromRange
|
|
7538
|
-
|
|
7822
|
+
|
|
7539
7823
|
ViewHandBook
|
|
7540
7824
|
*/
|
|
7541
7825
|
|
|
@@ -7549,32 +7833,32 @@ var AttributeSelectorType;
|
|
|
7549
7833
|
AttributeSelectorType["ViewHandBook"] = "ViewHandBook";
|
|
7550
7834
|
})(AttributeSelectorType || (AttributeSelectorType = {}));
|
|
7551
7835
|
/**
|
|
7552
|
-
*
|
|
7553
|
-
|
|
7836
|
+
*
|
|
7837
|
+
|
|
7554
7838
|
Unknown
|
|
7555
|
-
|
|
7839
|
+
|
|
7556
7840
|
String
|
|
7557
|
-
|
|
7841
|
+
|
|
7558
7842
|
Int32
|
|
7559
|
-
|
|
7843
|
+
|
|
7560
7844
|
Int64
|
|
7561
|
-
|
|
7845
|
+
|
|
7562
7846
|
Double
|
|
7563
|
-
|
|
7847
|
+
|
|
7564
7848
|
DateTime
|
|
7565
|
-
|
|
7849
|
+
|
|
7566
7850
|
Boolean
|
|
7567
|
-
|
|
7851
|
+
|
|
7568
7852
|
Point
|
|
7569
|
-
|
|
7853
|
+
|
|
7570
7854
|
Polyline
|
|
7571
|
-
|
|
7855
|
+
|
|
7572
7856
|
MultiPolygon
|
|
7573
|
-
|
|
7857
|
+
|
|
7574
7858
|
Multipoint
|
|
7575
|
-
|
|
7859
|
+
|
|
7576
7860
|
H3Index
|
|
7577
|
-
|
|
7861
|
+
|
|
7578
7862
|
Json
|
|
7579
7863
|
*/
|
|
7580
7864
|
|
|
@@ -7598,15 +7882,15 @@ var AttributeType;
|
|
|
7598
7882
|
})(AttributeType || (AttributeType = {}));
|
|
7599
7883
|
/**
|
|
7600
7884
|
* Describes classification methods.
|
|
7601
|
-
|
|
7885
|
+
|
|
7602
7886
|
none
|
|
7603
|
-
|
|
7887
|
+
|
|
7604
7888
|
naturalBreaks
|
|
7605
|
-
|
|
7889
|
+
|
|
7606
7890
|
equalInterval
|
|
7607
|
-
|
|
7891
|
+
|
|
7608
7892
|
quantile
|
|
7609
|
-
|
|
7893
|
+
|
|
7610
7894
|
unique
|
|
7611
7895
|
*/
|
|
7612
7896
|
|
|
@@ -7622,11 +7906,11 @@ var ClassificationType;
|
|
|
7622
7906
|
})(ClassificationType || (ClassificationType = {}));
|
|
7623
7907
|
/**
|
|
7624
7908
|
*
|
|
7625
|
-
|
|
7909
|
+
|
|
7626
7910
|
decimal
|
|
7627
|
-
|
|
7911
|
+
|
|
7628
7912
|
dateTime
|
|
7629
|
-
|
|
7913
|
+
|
|
7630
7914
|
text
|
|
7631
7915
|
*/
|
|
7632
7916
|
|
|
@@ -7639,56 +7923,56 @@ var ClassifyAttributeType;
|
|
|
7639
7923
|
ClassifyAttributeType["Text"] = "text";
|
|
7640
7924
|
})(ClassifyAttributeType || (ClassifyAttributeType = {}));
|
|
7641
7925
|
/**
|
|
7642
|
-
*
|
|
7643
|
-
|
|
7926
|
+
*
|
|
7927
|
+
|
|
7644
7928
|
Unknown
|
|
7645
|
-
|
|
7929
|
+
|
|
7646
7930
|
SerializeError
|
|
7647
|
-
|
|
7931
|
+
|
|
7648
7932
|
InvalidDataService
|
|
7649
|
-
|
|
7933
|
+
|
|
7650
7934
|
InvalidConfiguration
|
|
7651
|
-
|
|
7935
|
+
|
|
7652
7936
|
InvalidDataServiceName
|
|
7653
|
-
|
|
7937
|
+
|
|
7654
7938
|
InvalidTableName
|
|
7655
|
-
|
|
7939
|
+
|
|
7656
7940
|
InvalidLayerName
|
|
7657
|
-
|
|
7941
|
+
|
|
7658
7942
|
ResourceNotFound
|
|
7659
|
-
|
|
7943
|
+
|
|
7660
7944
|
InvalidCondition
|
|
7661
|
-
|
|
7945
|
+
|
|
7662
7946
|
InvalidAttributes
|
|
7663
|
-
|
|
7947
|
+
|
|
7664
7948
|
InvalidIdAttribute
|
|
7665
|
-
|
|
7949
|
+
|
|
7666
7950
|
InvalidGeometryAttribute
|
|
7667
|
-
|
|
7951
|
+
|
|
7668
7952
|
InvalidGeometryAttributeType
|
|
7669
|
-
|
|
7953
|
+
|
|
7670
7954
|
InvalidColumnName
|
|
7671
|
-
|
|
7955
|
+
|
|
7672
7956
|
InvalidIdColumnSettings
|
|
7673
|
-
|
|
7957
|
+
|
|
7674
7958
|
ColumnNotExistsInTable
|
|
7675
|
-
|
|
7959
|
+
|
|
7676
7960
|
InvalidStyle
|
|
7677
|
-
|
|
7961
|
+
|
|
7678
7962
|
InvalidLayerType
|
|
7679
|
-
|
|
7963
|
+
|
|
7680
7964
|
ColumnLoadingError
|
|
7681
|
-
|
|
7965
|
+
|
|
7682
7966
|
InvalidAttributeFormat
|
|
7683
|
-
|
|
7967
|
+
|
|
7684
7968
|
DataSourceNotFound
|
|
7685
|
-
|
|
7969
|
+
|
|
7686
7970
|
DuplicateColumns
|
|
7687
|
-
|
|
7971
|
+
|
|
7688
7972
|
DuplicateAttributes
|
|
7689
|
-
|
|
7973
|
+
|
|
7690
7974
|
TableWithoutColumns
|
|
7691
|
-
|
|
7975
|
+
|
|
7692
7976
|
InvalidTableReferenceConfiguration
|
|
7693
7977
|
*/
|
|
7694
7978
|
|
|
@@ -7724,15 +8008,15 @@ var ConfigurationErrorEnum;
|
|
|
7724
8008
|
})(ConfigurationErrorEnum || (ConfigurationErrorEnum = {}));
|
|
7725
8009
|
/**
|
|
7726
8010
|
* Type of the error.
|
|
7727
|
-
|
|
8011
|
+
|
|
7728
8012
|
ResourceLimitExceeded
|
|
7729
|
-
|
|
8013
|
+
|
|
7730
8014
|
ResourceNotFound
|
|
7731
|
-
|
|
8015
|
+
|
|
7732
8016
|
InternalError
|
|
7733
|
-
|
|
8017
|
+
|
|
7734
8018
|
BadRequest
|
|
7735
|
-
|
|
8019
|
+
|
|
7736
8020
|
DuplicateContent
|
|
7737
8021
|
*/
|
|
7738
8022
|
|
|
@@ -7783,9 +8067,9 @@ var ErrorType;
|
|
|
7783
8067
|
})(ErrorType || (ErrorType = {}));
|
|
7784
8068
|
/**
|
|
7785
8069
|
* Type of the feature.
|
|
7786
|
-
|
|
8070
|
+
|
|
7787
8071
|
Unknown
|
|
7788
|
-
|
|
8072
|
+
|
|
7789
8073
|
GeometricFeature
|
|
7790
8074
|
*/
|
|
7791
8075
|
|
|
@@ -7798,11 +8082,11 @@ var FeatureType;
|
|
|
7798
8082
|
})(FeatureType || (FeatureType = {}));
|
|
7799
8083
|
/**
|
|
7800
8084
|
* Sets whether font should be styled.
|
|
7801
|
-
|
|
8085
|
+
|
|
7802
8086
|
normal
|
|
7803
|
-
|
|
8087
|
+
|
|
7804
8088
|
oblique
|
|
7805
|
-
|
|
8089
|
+
|
|
7806
8090
|
italic
|
|
7807
8091
|
*/
|
|
7808
8092
|
|
|
@@ -7816,27 +8100,27 @@ var FontStyle;
|
|
|
7816
8100
|
})(FontStyle || (FontStyle = {}));
|
|
7817
8101
|
/**
|
|
7818
8102
|
* Specifies the weight (or boldness) of the font.
|
|
7819
|
-
|
|
8103
|
+
|
|
7820
8104
|
Thin
|
|
7821
|
-
|
|
8105
|
+
|
|
7822
8106
|
ExtraLight
|
|
7823
|
-
|
|
8107
|
+
|
|
7824
8108
|
Light
|
|
7825
|
-
|
|
8109
|
+
|
|
7826
8110
|
SemiLight
|
|
7827
|
-
|
|
8111
|
+
|
|
7828
8112
|
Normal
|
|
7829
|
-
|
|
8113
|
+
|
|
7830
8114
|
Medium
|
|
7831
|
-
|
|
8115
|
+
|
|
7832
8116
|
DemiBold
|
|
7833
|
-
|
|
8117
|
+
|
|
7834
8118
|
Bold
|
|
7835
|
-
|
|
8119
|
+
|
|
7836
8120
|
ExtraBold
|
|
7837
|
-
|
|
8121
|
+
|
|
7838
8122
|
Black
|
|
7839
|
-
|
|
8123
|
+
|
|
7840
8124
|
ExtraBlack
|
|
7841
8125
|
*/
|
|
7842
8126
|
|
|
@@ -7858,17 +8142,17 @@ var FontWeight;
|
|
|
7858
8142
|
})(FontWeight || (FontWeight = {}));
|
|
7859
8143
|
/**
|
|
7860
8144
|
*
|
|
7861
|
-
|
|
8145
|
+
|
|
7862
8146
|
unknown
|
|
7863
|
-
|
|
8147
|
+
|
|
7864
8148
|
point
|
|
7865
|
-
|
|
8149
|
+
|
|
7866
8150
|
polyline
|
|
7867
|
-
|
|
8151
|
+
|
|
7868
8152
|
multipolygon
|
|
7869
|
-
|
|
8153
|
+
|
|
7870
8154
|
envelope
|
|
7871
|
-
|
|
8155
|
+
|
|
7872
8156
|
multipoint
|
|
7873
8157
|
*/
|
|
7874
8158
|
|
|
@@ -7885,13 +8169,13 @@ var GeometryType;
|
|
|
7885
8169
|
})(GeometryType || (GeometryType = {}));
|
|
7886
8170
|
/**
|
|
7887
8171
|
* Resource group.
|
|
7888
|
-
|
|
8172
|
+
|
|
7889
8173
|
my
|
|
7890
|
-
|
|
8174
|
+
|
|
7891
8175
|
role
|
|
7892
|
-
|
|
8176
|
+
|
|
7893
8177
|
public
|
|
7894
|
-
|
|
8178
|
+
|
|
7895
8179
|
all
|
|
7896
8180
|
*/
|
|
7897
8181
|
|
|
@@ -7906,13 +8190,13 @@ var Group;
|
|
|
7906
8190
|
})(Group || (Group = {}));
|
|
7907
8191
|
/**
|
|
7908
8192
|
* Specifies the settings of line cap. This is applied to the beginning and end of each non-closed line.
|
|
7909
|
-
|
|
8193
|
+
|
|
7910
8194
|
Flat
|
|
7911
|
-
|
|
8195
|
+
|
|
7912
8196
|
Square
|
|
7913
|
-
|
|
8197
|
+
|
|
7914
8198
|
Round
|
|
7915
|
-
|
|
8199
|
+
|
|
7916
8200
|
Triangle
|
|
7917
8201
|
*/
|
|
7918
8202
|
|
|
@@ -7927,29 +8211,29 @@ var LineCapStyle;
|
|
|
7927
8211
|
})(LineCapStyle || (LineCapStyle = {}));
|
|
7928
8212
|
/**
|
|
7929
8213
|
* Type of the line ending.
|
|
7930
|
-
|
|
8214
|
+
|
|
7931
8215
|
none
|
|
7932
|
-
|
|
8216
|
+
|
|
7933
8217
|
arrow
|
|
7934
|
-
|
|
8218
|
+
|
|
7935
8219
|
filledArrow
|
|
7936
|
-
|
|
8220
|
+
|
|
7937
8221
|
square
|
|
7938
|
-
|
|
8222
|
+
|
|
7939
8223
|
filledSquare
|
|
7940
|
-
|
|
8224
|
+
|
|
7941
8225
|
circle
|
|
7942
|
-
|
|
8226
|
+
|
|
7943
8227
|
filledCircle
|
|
7944
|
-
|
|
8228
|
+
|
|
7945
8229
|
diamond
|
|
7946
|
-
|
|
8230
|
+
|
|
7947
8231
|
filledDiamond
|
|
7948
|
-
|
|
8232
|
+
|
|
7949
8233
|
roundSquare
|
|
7950
|
-
|
|
8234
|
+
|
|
7951
8235
|
filledRoundSquare
|
|
7952
|
-
|
|
8236
|
+
|
|
7953
8237
|
svg
|
|
7954
8238
|
*/
|
|
7955
8239
|
|
|
@@ -7972,11 +8256,11 @@ var LineEndingType;
|
|
|
7972
8256
|
})(LineEndingType || (LineEndingType = {}));
|
|
7973
8257
|
/**
|
|
7974
8258
|
* Specifies the settings of lines join. This is applied to corners in lines and rectangles.
|
|
7975
|
-
|
|
8259
|
+
|
|
7976
8260
|
Miter
|
|
7977
|
-
|
|
8261
|
+
|
|
7978
8262
|
Bevel
|
|
7979
|
-
|
|
8263
|
+
|
|
7980
8264
|
Round
|
|
7981
8265
|
*/
|
|
7982
8266
|
|
|
@@ -7990,15 +8274,33 @@ var LineJoinType;
|
|
|
7990
8274
|
})(LineJoinType || (LineJoinType = {}));
|
|
7991
8275
|
/**
|
|
7992
8276
|
*
|
|
7993
|
-
|
|
8277
|
+
|
|
8278
|
+
All
|
|
8279
|
+
|
|
8280
|
+
Directory
|
|
8281
|
+
|
|
8282
|
+
File
|
|
8283
|
+
*/
|
|
8284
|
+
|
|
8285
|
+
|
|
8286
|
+
var ObjectTypeFilter;
|
|
8287
|
+
|
|
8288
|
+
(function (ObjectTypeFilter) {
|
|
8289
|
+
ObjectTypeFilter["All"] = "All";
|
|
8290
|
+
ObjectTypeFilter["Directory"] = "Directory";
|
|
8291
|
+
ObjectTypeFilter["File"] = "File";
|
|
8292
|
+
})(ObjectTypeFilter || (ObjectTypeFilter = {}));
|
|
8293
|
+
/**
|
|
8294
|
+
*
|
|
8295
|
+
|
|
7994
8296
|
Unknown
|
|
7995
|
-
|
|
8297
|
+
|
|
7996
8298
|
union
|
|
7997
|
-
|
|
8299
|
+
|
|
7998
8300
|
intersection
|
|
7999
|
-
|
|
8301
|
+
|
|
8000
8302
|
subtraction
|
|
8001
|
-
|
|
8303
|
+
|
|
8002
8304
|
symDifference
|
|
8003
8305
|
*/
|
|
8004
8306
|
|
|
@@ -8013,10 +8315,28 @@ var Operation;
|
|
|
8013
8315
|
Operation["SymDifference"] = "symDifference";
|
|
8014
8316
|
})(Operation || (Operation = {}));
|
|
8015
8317
|
/**
|
|
8318
|
+
*
|
|
8319
|
+
|
|
8320
|
+
My
|
|
8321
|
+
|
|
8322
|
+
All
|
|
8323
|
+
|
|
8324
|
+
Other
|
|
8325
|
+
*/
|
|
8326
|
+
|
|
8327
|
+
|
|
8328
|
+
var OwnerFilter;
|
|
8329
|
+
|
|
8330
|
+
(function (OwnerFilter) {
|
|
8331
|
+
OwnerFilter["My"] = "My";
|
|
8332
|
+
OwnerFilter["All"] = "All";
|
|
8333
|
+
OwnerFilter["Other"] = "Other";
|
|
8334
|
+
})(OwnerFilter || (OwnerFilter = {}));
|
|
8335
|
+
/**
|
|
8016
8336
|
* Influences the y direction of the tile coordinates. The global-mercator (aka Spherical Mercator) profile is assumed.
|
|
8017
|
-
|
|
8337
|
+
|
|
8018
8338
|
xyz
|
|
8019
|
-
|
|
8339
|
+
|
|
8020
8340
|
tms
|
|
8021
8341
|
*/
|
|
8022
8342
|
|
|
@@ -8028,20 +8348,20 @@ var PbfSchema;
|
|
|
8028
8348
|
PbfSchema["TMS"] = "tms";
|
|
8029
8349
|
})(PbfSchema || (PbfSchema = {}));
|
|
8030
8350
|
/**
|
|
8031
|
-
*
|
|
8032
|
-
|
|
8351
|
+
*
|
|
8352
|
+
|
|
8033
8353
|
none
|
|
8034
|
-
|
|
8354
|
+
|
|
8035
8355
|
configure
|
|
8036
|
-
|
|
8356
|
+
|
|
8037
8357
|
write
|
|
8038
|
-
|
|
8358
|
+
|
|
8039
8359
|
read
|
|
8040
|
-
|
|
8360
|
+
|
|
8041
8361
|
read,configure
|
|
8042
|
-
|
|
8362
|
+
|
|
8043
8363
|
read,write
|
|
8044
|
-
|
|
8364
|
+
|
|
8045
8365
|
read,write,configure
|
|
8046
8366
|
*/
|
|
8047
8367
|
|
|
@@ -8059,19 +8379,19 @@ var Permissions;
|
|
|
8059
8379
|
})(Permissions || (Permissions = {}));
|
|
8060
8380
|
/**
|
|
8061
8381
|
* Type of the authorization policy.
|
|
8062
|
-
|
|
8382
|
+
|
|
8063
8383
|
Unknown
|
|
8064
|
-
|
|
8384
|
+
|
|
8065
8385
|
CreateTable
|
|
8066
|
-
|
|
8386
|
+
|
|
8067
8387
|
CreateLayer
|
|
8068
|
-
|
|
8388
|
+
|
|
8069
8389
|
CreateProject
|
|
8070
|
-
|
|
8390
|
+
|
|
8071
8391
|
MaxFeaturesInOneTable
|
|
8072
|
-
|
|
8392
|
+
|
|
8073
8393
|
MaxObjectsToExport
|
|
8074
|
-
|
|
8394
|
+
|
|
8075
8395
|
MaxUploadContentSize
|
|
8076
8396
|
*/
|
|
8077
8397
|
|
|
@@ -8088,18 +8408,36 @@ var PolicyType;
|
|
|
8088
8408
|
PolicyType["MaxUploadContentSize"] = "MaxUploadContentSize";
|
|
8089
8409
|
})(PolicyType || (PolicyType = {}));
|
|
8090
8410
|
/**
|
|
8091
|
-
*
|
|
8092
|
-
|
|
8411
|
+
* Stream quality.
|
|
8412
|
+
|
|
8413
|
+
Low
|
|
8414
|
+
|
|
8415
|
+
Medium
|
|
8416
|
+
|
|
8417
|
+
High
|
|
8418
|
+
*/
|
|
8419
|
+
|
|
8420
|
+
|
|
8421
|
+
var Quality;
|
|
8422
|
+
|
|
8423
|
+
(function (Quality) {
|
|
8424
|
+
Quality["Low"] = "Low";
|
|
8425
|
+
Quality["Medium"] = "Medium";
|
|
8426
|
+
Quality["High"] = "High";
|
|
8427
|
+
})(Quality || (Quality = {}));
|
|
8428
|
+
/**
|
|
8429
|
+
*
|
|
8430
|
+
|
|
8093
8431
|
OneToMany
|
|
8094
|
-
|
|
8432
|
+
|
|
8095
8433
|
OneToOne
|
|
8096
|
-
|
|
8434
|
+
|
|
8097
8435
|
Intersect
|
|
8098
|
-
|
|
8436
|
+
|
|
8099
8437
|
RightJoin
|
|
8100
|
-
|
|
8438
|
+
|
|
8101
8439
|
FullJoin
|
|
8102
|
-
|
|
8440
|
+
|
|
8103
8441
|
CrossJoin
|
|
8104
8442
|
*/
|
|
8105
8443
|
|
|
@@ -8115,20 +8453,20 @@ var ReferenceJoinType;
|
|
|
8115
8453
|
ReferenceJoinType["CrossJoin"] = "CrossJoin";
|
|
8116
8454
|
})(ReferenceJoinType || (ReferenceJoinType = {}));
|
|
8117
8455
|
/**
|
|
8118
|
-
*
|
|
8119
|
-
|
|
8456
|
+
*
|
|
8457
|
+
|
|
8120
8458
|
Unknown
|
|
8121
|
-
|
|
8459
|
+
|
|
8122
8460
|
table
|
|
8123
|
-
|
|
8461
|
+
|
|
8124
8462
|
layer
|
|
8125
|
-
|
|
8463
|
+
|
|
8126
8464
|
project
|
|
8127
|
-
|
|
8465
|
+
|
|
8128
8466
|
file
|
|
8129
|
-
|
|
8467
|
+
|
|
8130
8468
|
feature
|
|
8131
|
-
|
|
8469
|
+
|
|
8132
8470
|
tag
|
|
8133
8471
|
*/
|
|
8134
8472
|
|
|
@@ -8154,21 +8492,21 @@ var ResourceTypeLink;
|
|
|
8154
8492
|
})(ResourceTypeLink || (ResourceTypeLink = {}));
|
|
8155
8493
|
/**
|
|
8156
8494
|
* Status of the server task.
|
|
8157
|
-
|
|
8495
|
+
|
|
8158
8496
|
None
|
|
8159
|
-
|
|
8497
|
+
|
|
8160
8498
|
Scheduled
|
|
8161
|
-
|
|
8499
|
+
|
|
8162
8500
|
Planning
|
|
8163
|
-
|
|
8501
|
+
|
|
8164
8502
|
Executing
|
|
8165
|
-
|
|
8503
|
+
|
|
8166
8504
|
Completed
|
|
8167
|
-
|
|
8505
|
+
|
|
8168
8506
|
Failed
|
|
8169
|
-
|
|
8507
|
+
|
|
8170
8508
|
Canceled
|
|
8171
|
-
|
|
8509
|
+
|
|
8172
8510
|
Timeout
|
|
8173
8511
|
*/
|
|
8174
8512
|
|
|
@@ -8186,12 +8524,12 @@ var ServerTaskStatus;
|
|
|
8186
8524
|
ServerTaskStatus["Timeout"] = "Timeout";
|
|
8187
8525
|
})(ServerTaskStatus || (ServerTaskStatus = {}));
|
|
8188
8526
|
/**
|
|
8189
|
-
*
|
|
8190
|
-
|
|
8527
|
+
*
|
|
8528
|
+
|
|
8191
8529
|
Basic
|
|
8192
|
-
|
|
8530
|
+
|
|
8193
8531
|
PreserveTopology
|
|
8194
|
-
|
|
8532
|
+
|
|
8195
8533
|
VW
|
|
8196
8534
|
*/
|
|
8197
8535
|
|
|
@@ -8204,14 +8542,14 @@ var SimplifyType;
|
|
|
8204
8542
|
SimplifyType["VW"] = "VW";
|
|
8205
8543
|
})(SimplifyType || (SimplifyType = {}));
|
|
8206
8544
|
/**
|
|
8207
|
-
*
|
|
8208
|
-
|
|
8545
|
+
*
|
|
8546
|
+
|
|
8209
8547
|
None
|
|
8210
|
-
|
|
8548
|
+
|
|
8211
8549
|
Image
|
|
8212
|
-
|
|
8550
|
+
|
|
8213
8551
|
PkkCode
|
|
8214
|
-
|
|
8552
|
+
|
|
8215
8553
|
Attachments
|
|
8216
8554
|
*/
|
|
8217
8555
|
|
|
@@ -8226,9 +8564,9 @@ var StringSubType;
|
|
|
8226
8564
|
})(StringSubType || (StringSubType = {}));
|
|
8227
8565
|
/**
|
|
8228
8566
|
* Task owner group.
|
|
8229
|
-
|
|
8567
|
+
|
|
8230
8568
|
my
|
|
8231
|
-
|
|
8569
|
+
|
|
8232
8570
|
all
|
|
8233
8571
|
*/
|
|
8234
8572
|
|
|
@@ -8241,13 +8579,13 @@ var TaskGroup;
|
|
|
8241
8579
|
})(TaskGroup || (TaskGroup = {}));
|
|
8242
8580
|
/**
|
|
8243
8581
|
* Sets the horizontal alignment of text.
|
|
8244
|
-
|
|
8582
|
+
|
|
8245
8583
|
right
|
|
8246
|
-
|
|
8584
|
+
|
|
8247
8585
|
left
|
|
8248
|
-
|
|
8586
|
+
|
|
8249
8587
|
center
|
|
8250
|
-
|
|
8588
|
+
|
|
8251
8589
|
justified
|
|
8252
8590
|
*/
|
|
8253
8591
|
|
|
@@ -8262,11 +8600,11 @@ var TextAlignment;
|
|
|
8262
8600
|
})(TextAlignment || (TextAlignment = {}));
|
|
8263
8601
|
/**
|
|
8264
8602
|
* Sets the vertical alignment of text.
|
|
8265
|
-
|
|
8603
|
+
|
|
8266
8604
|
top
|
|
8267
|
-
|
|
8605
|
+
|
|
8268
8606
|
bottom
|
|
8269
|
-
|
|
8607
|
+
|
|
8270
8608
|
middle
|
|
8271
8609
|
*/
|
|
8272
8610
|
|
|
@@ -8279,5 +8617,5 @@ var TextVerticalAlignment;
|
|
|
8279
8617
|
TextVerticalAlignment["Middle"] = "middle";
|
|
8280
8618
|
})(TextVerticalAlignment || (TextVerticalAlignment = {}));
|
|
8281
8619
|
|
|
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 };
|
|
8620
|
+
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
8621
|
//# sourceMappingURL=api.esm.js.map
|