@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
|
@@ -36,9 +36,6 @@ function _defineProperties(target, props) {
|
|
|
36
36
|
function _createClass(Constructor, protoProps, staticProps) {
|
|
37
37
|
if (protoProps) _defineProperties(Constructor.prototype, protoProps);
|
|
38
38
|
if (staticProps) _defineProperties(Constructor, staticProps);
|
|
39
|
-
Object.defineProperty(Constructor, "prototype", {
|
|
40
|
-
writable: false
|
|
41
|
-
});
|
|
42
39
|
return Constructor;
|
|
43
40
|
}
|
|
44
41
|
|
|
@@ -72,9 +69,6 @@ function _inherits(subClass, superClass) {
|
|
|
72
69
|
configurable: true
|
|
73
70
|
}
|
|
74
71
|
});
|
|
75
|
-
Object.defineProperty(subClass, "prototype", {
|
|
76
|
-
writable: false
|
|
77
|
-
});
|
|
78
72
|
if (superClass) _setPrototypeOf(subClass, superClass);
|
|
79
73
|
}
|
|
80
74
|
|
|
@@ -133,8 +127,6 @@ function _assertThisInitialized(self) {
|
|
|
133
127
|
function _possibleConstructorReturn(self, call) {
|
|
134
128
|
if (call && (typeof call === "object" || typeof call === "function")) {
|
|
135
129
|
return call;
|
|
136
|
-
} else if (call !== void 0) {
|
|
137
|
-
throw new TypeError("Derived constructors may only return object or undefined");
|
|
138
130
|
}
|
|
139
131
|
|
|
140
132
|
return _assertThisInitialized(self);
|
|
@@ -168,7 +160,7 @@ function _superPropBase(object, property) {
|
|
|
168
160
|
return object;
|
|
169
161
|
}
|
|
170
162
|
|
|
171
|
-
function _get() {
|
|
163
|
+
function _get(target, property, receiver) {
|
|
172
164
|
if (typeof Reflect !== "undefined" && Reflect.get) {
|
|
173
165
|
_get = Reflect.get;
|
|
174
166
|
} else {
|
|
@@ -179,14 +171,14 @@ function _get() {
|
|
|
179
171
|
var desc = Object.getOwnPropertyDescriptor(base, property);
|
|
180
172
|
|
|
181
173
|
if (desc.get) {
|
|
182
|
-
return desc.get.call(
|
|
174
|
+
return desc.get.call(receiver);
|
|
183
175
|
}
|
|
184
176
|
|
|
185
177
|
return desc.value;
|
|
186
178
|
};
|
|
187
179
|
}
|
|
188
180
|
|
|
189
|
-
return _get
|
|
181
|
+
return _get(target, property, receiver || target);
|
|
190
182
|
}
|
|
191
183
|
|
|
192
184
|
let HttpClient = /*#__PURE__*/function () {
|
|
@@ -321,7 +313,93 @@ let Service = /*#__PURE__*/_createClass(function Service(http) {
|
|
|
321
313
|
|
|
322
314
|
/**
|
|
323
315
|
* @title Spatial Processing Core API
|
|
324
|
-
* @version 1.5.1
|
|
316
|
+
* @version 1.5.1.0
|
|
317
|
+
* @baseUrl /sp
|
|
318
|
+
*/
|
|
319
|
+
|
|
320
|
+
let QueryTokenAccessService = /*#__PURE__*/function (_Service) {
|
|
321
|
+
_inherits(QueryTokenAccessService, _Service);
|
|
322
|
+
|
|
323
|
+
var _super = /*#__PURE__*/_createSuper(QueryTokenAccessService);
|
|
324
|
+
|
|
325
|
+
function QueryTokenAccessService() {
|
|
326
|
+
_classCallCheck(this, QueryTokenAccessService);
|
|
327
|
+
|
|
328
|
+
return _super.apply(this, arguments);
|
|
329
|
+
}
|
|
330
|
+
|
|
331
|
+
_createClass(QueryTokenAccessService, [{
|
|
332
|
+
key: "createToken",
|
|
333
|
+
value:
|
|
334
|
+
/**
|
|
335
|
+
* No description
|
|
336
|
+
*
|
|
337
|
+
* @tags QueryTokenAccess
|
|
338
|
+
* @name CreateToken
|
|
339
|
+
* @operationId QueryTokenAccessController_CreateTokenAsync
|
|
340
|
+
* @summary Create new query access token.
|
|
341
|
+
* @request PUT:/accessToken/{username}
|
|
342
|
+
* @response `200` Success
|
|
343
|
+
*/
|
|
344
|
+
function createToken(username) {
|
|
345
|
+
return this.http.put("/accessToken/" + username, null).text();
|
|
346
|
+
}
|
|
347
|
+
/**
|
|
348
|
+
* No description
|
|
349
|
+
*
|
|
350
|
+
* @tags QueryTokenAccess
|
|
351
|
+
* @name DisableToken
|
|
352
|
+
* @operationId QueryTokenAccessController_DisableToken
|
|
353
|
+
* @summary Disable token.
|
|
354
|
+
* @request POST:/accessToken/{token}/disable
|
|
355
|
+
* @response `200` Success
|
|
356
|
+
*/
|
|
357
|
+
|
|
358
|
+
}, {
|
|
359
|
+
key: "disableToken",
|
|
360
|
+
value: function disableToken(token) {
|
|
361
|
+
return this.http.post("/accessToken/" + token + "/disable", null).then(() => {});
|
|
362
|
+
}
|
|
363
|
+
/**
|
|
364
|
+
* No description
|
|
365
|
+
*
|
|
366
|
+
* @tags QueryTokenAccess
|
|
367
|
+
* @name EnableToken
|
|
368
|
+
* @operationId QueryTokenAccessController_EnableToken
|
|
369
|
+
* @summary Enable token.
|
|
370
|
+
* @request POST:/accessToken/{token}/enable
|
|
371
|
+
* @response `200` Success
|
|
372
|
+
*/
|
|
373
|
+
|
|
374
|
+
}, {
|
|
375
|
+
key: "enableToken",
|
|
376
|
+
value: function enableToken(token) {
|
|
377
|
+
return this.http.post("/accessToken/" + token + "/enable", null).then(() => {});
|
|
378
|
+
}
|
|
379
|
+
/**
|
|
380
|
+
* No description
|
|
381
|
+
*
|
|
382
|
+
* @tags QueryTokenAccess
|
|
383
|
+
* @name RevokeToken
|
|
384
|
+
* @operationId QueryTokenAccessController_RevokeToken
|
|
385
|
+
* @summary Revoke token.
|
|
386
|
+
* @request DELETE:/accessToken/{token}
|
|
387
|
+
* @response `200` Success
|
|
388
|
+
*/
|
|
389
|
+
|
|
390
|
+
}, {
|
|
391
|
+
key: "revokeToken",
|
|
392
|
+
value: function revokeToken(token) {
|
|
393
|
+
return this.http.delete("/accessToken/" + token, null).then(() => {});
|
|
394
|
+
}
|
|
395
|
+
}]);
|
|
396
|
+
|
|
397
|
+
return QueryTokenAccessService;
|
|
398
|
+
}(Service);
|
|
399
|
+
|
|
400
|
+
/**
|
|
401
|
+
* @title Spatial Processing Core API
|
|
402
|
+
* @version 1.5.1.0
|
|
325
403
|
* @baseUrl /sp
|
|
326
404
|
*/
|
|
327
405
|
|
|
@@ -392,7 +470,7 @@ let SpatialReferencesService = /*#__PURE__*/function (_Service) {
|
|
|
392
470
|
const _excluded = ["taskId", "layerName"];
|
|
393
471
|
/**
|
|
394
472
|
* @title Spatial Processing Core API
|
|
395
|
-
* @version 1.5.1
|
|
473
|
+
* @version 1.5.1.0
|
|
396
474
|
* @baseUrl /sp
|
|
397
475
|
*/
|
|
398
476
|
|
|
@@ -450,6 +528,188 @@ let UniversalSearchService = /*#__PURE__*/function (_Service) {
|
|
|
450
528
|
return UniversalSearchService;
|
|
451
529
|
}(Service);
|
|
452
530
|
|
|
531
|
+
/**
|
|
532
|
+
* @title Spatial Processing Core API
|
|
533
|
+
* @version 1.5.1.0
|
|
534
|
+
* @baseUrl /sp
|
|
535
|
+
*/
|
|
536
|
+
|
|
537
|
+
let CatalogService = /*#__PURE__*/function (_Service) {
|
|
538
|
+
_inherits(CatalogService, _Service);
|
|
539
|
+
|
|
540
|
+
var _super = /*#__PURE__*/_createSuper(CatalogService);
|
|
541
|
+
|
|
542
|
+
function CatalogService() {
|
|
543
|
+
_classCallCheck(this, CatalogService);
|
|
544
|
+
|
|
545
|
+
return _super.apply(this, arguments);
|
|
546
|
+
}
|
|
547
|
+
|
|
548
|
+
_createClass(CatalogService, [{
|
|
549
|
+
key: "getAll",
|
|
550
|
+
value:
|
|
551
|
+
/**
|
|
552
|
+
* No description
|
|
553
|
+
*
|
|
554
|
+
* @tags Catalog
|
|
555
|
+
* @name GetAll
|
|
556
|
+
* @operationId CatalogController_GetAll
|
|
557
|
+
* @summary Get all resource with given.
|
|
558
|
+
* @request GET:/resources
|
|
559
|
+
* @response `200` Success
|
|
560
|
+
*/
|
|
561
|
+
function getAll(query) {
|
|
562
|
+
return this.http.get("/resources", query).json();
|
|
563
|
+
}
|
|
564
|
+
/**
|
|
565
|
+
* No description
|
|
566
|
+
*
|
|
567
|
+
* @tags Catalog
|
|
568
|
+
* @name SearchResources
|
|
569
|
+
* @operationId CatalogController_SearchResources
|
|
570
|
+
* @summary Search resources.
|
|
571
|
+
* @request POST:/resources/search
|
|
572
|
+
* @response `200` Success
|
|
573
|
+
*/
|
|
574
|
+
|
|
575
|
+
}, {
|
|
576
|
+
key: "searchResources",
|
|
577
|
+
value: function searchResources(query, data) {
|
|
578
|
+
return this.http.post("/resources/search", data, query).json();
|
|
579
|
+
}
|
|
580
|
+
/**
|
|
581
|
+
* No description
|
|
582
|
+
*
|
|
583
|
+
* @tags Catalog
|
|
584
|
+
* @name GetResource
|
|
585
|
+
* @operationId CatalogController_GetResource
|
|
586
|
+
* @summary Get resource with given id.
|
|
587
|
+
* @request GET:/resources/{resourceId}
|
|
588
|
+
* @response `200` Success
|
|
589
|
+
*/
|
|
590
|
+
|
|
591
|
+
}, {
|
|
592
|
+
key: "getResource",
|
|
593
|
+
value: function getResource(resourceId) {
|
|
594
|
+
return this.http.get("/resources/" + resourceId).json();
|
|
595
|
+
}
|
|
596
|
+
/**
|
|
597
|
+
* No description
|
|
598
|
+
*
|
|
599
|
+
* @tags Catalog
|
|
600
|
+
* @name DeleteResource
|
|
601
|
+
* @operationId CatalogController_DeleteResource
|
|
602
|
+
* @summary Delete resource.
|
|
603
|
+
* @request DELETE:/resources/{resourceId}
|
|
604
|
+
* @response `200` Success
|
|
605
|
+
*/
|
|
606
|
+
|
|
607
|
+
}, {
|
|
608
|
+
key: "deleteResource",
|
|
609
|
+
value: function deleteResource(resourceId) {
|
|
610
|
+
return this.http.delete("/resources/" + resourceId, null).then(() => {});
|
|
611
|
+
}
|
|
612
|
+
/**
|
|
613
|
+
* No description
|
|
614
|
+
*
|
|
615
|
+
* @tags Catalog
|
|
616
|
+
* @name MoveResource
|
|
617
|
+
* @operationId CatalogController_MoveResource
|
|
618
|
+
* @summary Rename resource with given id.
|
|
619
|
+
* @request POST:/resources/{resourceId}/move
|
|
620
|
+
* @response `200` Success
|
|
621
|
+
*/
|
|
622
|
+
|
|
623
|
+
}, {
|
|
624
|
+
key: "moveResource",
|
|
625
|
+
value: function moveResource(resourceId, data) {
|
|
626
|
+
return this.http.post("/resources/" + resourceId + "/move", data).json();
|
|
627
|
+
}
|
|
628
|
+
/**
|
|
629
|
+
* No description
|
|
630
|
+
*
|
|
631
|
+
* @tags Catalog
|
|
632
|
+
* @name CreateDirectory
|
|
633
|
+
* @operationId CatalogController_CreateDirectory
|
|
634
|
+
* @summary Create directory.
|
|
635
|
+
* @request POST:/resources/directory
|
|
636
|
+
* @response `200` Success
|
|
637
|
+
*/
|
|
638
|
+
|
|
639
|
+
}, {
|
|
640
|
+
key: "createDirectory",
|
|
641
|
+
value: function createDirectory(data) {
|
|
642
|
+
return this.http.post("/resources/directory", data).json();
|
|
643
|
+
}
|
|
644
|
+
/**
|
|
645
|
+
* No description
|
|
646
|
+
*
|
|
647
|
+
* @tags Catalog
|
|
648
|
+
* @name CreateFile
|
|
649
|
+
* @operationId CatalogController_CreateFile
|
|
650
|
+
* @summary Create new file.
|
|
651
|
+
* @request POST:/resources/file
|
|
652
|
+
* @response `200` Success
|
|
653
|
+
*/
|
|
654
|
+
|
|
655
|
+
}, {
|
|
656
|
+
key: "createFile",
|
|
657
|
+
value: function createFile(data) {
|
|
658
|
+
return this.http.post("/resources/file", toFormData(data)).json();
|
|
659
|
+
}
|
|
660
|
+
/**
|
|
661
|
+
* No description
|
|
662
|
+
*
|
|
663
|
+
* @tags Catalog
|
|
664
|
+
* @name GetPermissions
|
|
665
|
+
* @operationId CatalogController_GetPermissions
|
|
666
|
+
* @summary Set permissions to the resource.
|
|
667
|
+
* @request GET:/resources/{resourceId}/permissions
|
|
668
|
+
* @response `200` Success
|
|
669
|
+
*/
|
|
670
|
+
|
|
671
|
+
}, {
|
|
672
|
+
key: "getPermissions",
|
|
673
|
+
value: function getPermissions(resourceId) {
|
|
674
|
+
return this.http.get("/resources/" + resourceId + "/permissions").json();
|
|
675
|
+
}
|
|
676
|
+
/**
|
|
677
|
+
* No description
|
|
678
|
+
*
|
|
679
|
+
* @tags Catalog
|
|
680
|
+
* @name SetPermissions
|
|
681
|
+
* @operationId CatalogController_SetPermissions
|
|
682
|
+
* @summary Set permissions to the resource.
|
|
683
|
+
* @request PUT:/resources/{resourceId}/permissions
|
|
684
|
+
* @response `200` Success
|
|
685
|
+
*/
|
|
686
|
+
|
|
687
|
+
}, {
|
|
688
|
+
key: "setPermissions",
|
|
689
|
+
value: function setPermissions(resourceId, data) {
|
|
690
|
+
return this.http.put("/resources/" + resourceId + "/permissions", data).json();
|
|
691
|
+
}
|
|
692
|
+
/**
|
|
693
|
+
* No description
|
|
694
|
+
*
|
|
695
|
+
* @tags Catalog
|
|
696
|
+
* @name DownloadFile
|
|
697
|
+
* @operationId CatalogController_DownloadFile
|
|
698
|
+
* @summary Download file.
|
|
699
|
+
* @request GET:/resources/{resourceId}/download
|
|
700
|
+
* @response `200` Success
|
|
701
|
+
*/
|
|
702
|
+
|
|
703
|
+
}, {
|
|
704
|
+
key: "downloadFile",
|
|
705
|
+
value: function downloadFile(resourceId) {
|
|
706
|
+
return this.http.get("/resources/" + resourceId + "/download").blob();
|
|
707
|
+
}
|
|
708
|
+
}]);
|
|
709
|
+
|
|
710
|
+
return CatalogService;
|
|
711
|
+
}(Service);
|
|
712
|
+
|
|
453
713
|
(function (ApiEvent) {
|
|
454
714
|
ApiEvent["ConnectionLost"] = "ConnectionLost";
|
|
455
715
|
ApiEvent["Unauthorized"] = "Unauthorized";
|
|
@@ -458,7 +718,7 @@ let UniversalSearchService = /*#__PURE__*/function (_Service) {
|
|
|
458
718
|
|
|
459
719
|
/**
|
|
460
720
|
* @title Spatial Processing Core API
|
|
461
|
-
* @version 1.5.1
|
|
721
|
+
* @version 1.5.1.0
|
|
462
722
|
* @baseUrl /sp
|
|
463
723
|
*/
|
|
464
724
|
|
|
@@ -1134,7 +1394,7 @@ let Account = /*#__PURE__*/function (_AccountService) {
|
|
|
1134
1394
|
const _excluded$1 = ["username"];
|
|
1135
1395
|
/**
|
|
1136
1396
|
* @title Spatial Processing Core API
|
|
1137
|
-
* @version 1.5.1
|
|
1397
|
+
* @version 1.5.1.0
|
|
1138
1398
|
* @baseUrl /sp
|
|
1139
1399
|
*/
|
|
1140
1400
|
|
|
@@ -1288,7 +1548,7 @@ let AccountPreview = /*#__PURE__*/function (_AccountPreviewServic) {
|
|
|
1288
1548
|
|
|
1289
1549
|
/**
|
|
1290
1550
|
* @title Spatial Processing Core API
|
|
1291
|
-
* @version 1.5.1
|
|
1551
|
+
* @version 1.5.1.0
|
|
1292
1552
|
* @baseUrl /sp
|
|
1293
1553
|
*/
|
|
1294
1554
|
|
|
@@ -1342,10 +1602,11 @@ const _excluded$2 = ["cameraId"],
|
|
|
1342
1602
|
_excluded2 = ["cameraId"],
|
|
1343
1603
|
_excluded3 = ["cameraId"],
|
|
1344
1604
|
_excluded4 = ["cameraId"],
|
|
1345
|
-
_excluded5 = ["cameraId"]
|
|
1605
|
+
_excluded5 = ["cameraId"],
|
|
1606
|
+
_excluded6 = ["cameraId"];
|
|
1346
1607
|
/**
|
|
1347
1608
|
* @title Spatial Processing Core API
|
|
1348
|
-
* @version 1.5.1
|
|
1609
|
+
* @version 1.5.1.0
|
|
1349
1610
|
* @baseUrl /sp
|
|
1350
1611
|
*/
|
|
1351
1612
|
|
|
@@ -1497,6 +1758,27 @@ let CamerasService = /*#__PURE__*/function (_Service) {
|
|
|
1497
1758
|
value: function getLiveSnapshot(cameraId) {
|
|
1498
1759
|
return this.http.get("/cameras/" + cameraId + "/liveSnapshot").blob();
|
|
1499
1760
|
}
|
|
1761
|
+
/**
|
|
1762
|
+
* No description
|
|
1763
|
+
*
|
|
1764
|
+
* @tags Cameras
|
|
1765
|
+
* @name GetLivePreviewStream
|
|
1766
|
+
* @operationId CamerasController_GetLivePreviewStream
|
|
1767
|
+
* @summary Get live preview stream.
|
|
1768
|
+
* @request GET:/cameras/{cameraId}/getLivePreviewsStream
|
|
1769
|
+
* @response `200` Success
|
|
1770
|
+
*/
|
|
1771
|
+
|
|
1772
|
+
}, {
|
|
1773
|
+
key: "getLivePreviewStream",
|
|
1774
|
+
value: function getLivePreviewStream(_ref6) {
|
|
1775
|
+
let {
|
|
1776
|
+
cameraId
|
|
1777
|
+
} = _ref6,
|
|
1778
|
+
query = _objectWithoutPropertiesLoose(_ref6, _excluded6);
|
|
1779
|
+
|
|
1780
|
+
return this.http.get("/cameras/" + cameraId + "/getLivePreviewsStream", query).json();
|
|
1781
|
+
}
|
|
1500
1782
|
}]);
|
|
1501
1783
|
|
|
1502
1784
|
return CamerasService;
|
|
@@ -1518,7 +1800,7 @@ let Cameras = /*#__PURE__*/function (_CamerasService) {
|
|
|
1518
1800
|
|
|
1519
1801
|
/**
|
|
1520
1802
|
* @title Spatial Processing Core API
|
|
1521
|
-
* @version 1.5.1
|
|
1803
|
+
* @version 1.5.1.0
|
|
1522
1804
|
* @baseUrl /sp
|
|
1523
1805
|
*/
|
|
1524
1806
|
|
|
@@ -1641,7 +1923,7 @@ let ClientSettings = /*#__PURE__*/function (_ClientSettingsServic) {
|
|
|
1641
1923
|
|
|
1642
1924
|
/**
|
|
1643
1925
|
* @title Spatial Processing Core API
|
|
1644
|
-
* @version 1.5.1
|
|
1926
|
+
* @version 1.5.1.0
|
|
1645
1927
|
* @baseUrl /sp
|
|
1646
1928
|
*/
|
|
1647
1929
|
|
|
@@ -1726,7 +2008,7 @@ let EqlTestService = /*#__PURE__*/function (_Service) {
|
|
|
1726
2008
|
* @tags EqlTest
|
|
1727
2009
|
* @name GetLayerParameters
|
|
1728
2010
|
* @operationId EqlTestController_GetLayerParameters
|
|
1729
|
-
* @summary Get
|
|
2011
|
+
* @summary Get EQL parameter.
|
|
1730
2012
|
* @request GET:/eql/getParam
|
|
1731
2013
|
* @response `200` Success
|
|
1732
2014
|
*/
|
|
@@ -1742,7 +2024,7 @@ let EqlTestService = /*#__PURE__*/function (_Service) {
|
|
|
1742
2024
|
* @tags EqlTest
|
|
1743
2025
|
* @name GetLayerParameters1
|
|
1744
2026
|
* @operationId EqlTestController_GetLayerParameters_1
|
|
1745
|
-
* @summary Get all EQL
|
|
2027
|
+
* @summary Get all EQL parameters.
|
|
1746
2028
|
* @request GET:/eql/getParams
|
|
1747
2029
|
* @response `200` Success
|
|
1748
2030
|
*/
|
|
@@ -1789,7 +2071,7 @@ let EqlTest = /*#__PURE__*/function (_EqlTestService) {
|
|
|
1789
2071
|
|
|
1790
2072
|
/**
|
|
1791
2073
|
* @title Spatial Processing Core API
|
|
1792
|
-
* @version 1.5.1
|
|
2074
|
+
* @version 1.5.1.0
|
|
1793
2075
|
* @baseUrl /sp
|
|
1794
2076
|
*/
|
|
1795
2077
|
|
|
@@ -2054,7 +2336,7 @@ let External = /*#__PURE__*/function (_ExternalProvidersSer) {
|
|
|
2054
2336
|
|
|
2055
2337
|
/**
|
|
2056
2338
|
* @title Spatial Processing Core API
|
|
2057
|
-
* @version 1.5.1
|
|
2339
|
+
* @version 1.5.1.0
|
|
2058
2340
|
* @baseUrl /sp
|
|
2059
2341
|
*/
|
|
2060
2342
|
|
|
@@ -2145,7 +2427,7 @@ let Feedback = /*#__PURE__*/function (_FeedbackService) {
|
|
|
2145
2427
|
|
|
2146
2428
|
/**
|
|
2147
2429
|
* @title Spatial Processing Core API
|
|
2148
|
-
* @version 1.5.1
|
|
2430
|
+
* @version 1.5.1.0
|
|
2149
2431
|
* @baseUrl /sp
|
|
2150
2432
|
*/
|
|
2151
2433
|
|
|
@@ -2255,7 +2537,7 @@ let FileUpload = /*#__PURE__*/function (_StaticContentService) {
|
|
|
2255
2537
|
|
|
2256
2538
|
/**
|
|
2257
2539
|
* @title Spatial Processing Core API
|
|
2258
|
-
* @version 1.5.1
|
|
2540
|
+
* @version 1.5.1.0
|
|
2259
2541
|
* @baseUrl /sp
|
|
2260
2542
|
*/
|
|
2261
2543
|
|
|
@@ -2339,7 +2621,7 @@ let Filters = /*#__PURE__*/function (_FiltersService) {
|
|
|
2339
2621
|
|
|
2340
2622
|
/**
|
|
2341
2623
|
* @title Spatial Processing Core API
|
|
2342
|
-
* @version 1.5.1
|
|
2624
|
+
* @version 1.5.1.0
|
|
2343
2625
|
* @baseUrl /sp
|
|
2344
2626
|
*/
|
|
2345
2627
|
|
|
@@ -2410,7 +2692,7 @@ const _excluded$3 = ["providerName"],
|
|
|
2410
2692
|
_excluded3$1 = ["providerName"];
|
|
2411
2693
|
/**
|
|
2412
2694
|
* @title Spatial Processing Core API
|
|
2413
|
-
* @version 1.5.1
|
|
2695
|
+
* @version 1.5.1.0
|
|
2414
2696
|
* @baseUrl /sp
|
|
2415
2697
|
*/
|
|
2416
2698
|
|
|
@@ -2526,7 +2808,7 @@ let Geocode = /*#__PURE__*/function (_GeocodeService) {
|
|
|
2526
2808
|
|
|
2527
2809
|
/**
|
|
2528
2810
|
* @title Spatial Processing Core API
|
|
2529
|
-
* @version 1.5.1
|
|
2811
|
+
* @version 1.5.1.0
|
|
2530
2812
|
* @baseUrl /sp
|
|
2531
2813
|
*/
|
|
2532
2814
|
|
|
@@ -2594,7 +2876,7 @@ let IceRouter = /*#__PURE__*/function (_IceRouterService) {
|
|
|
2594
2876
|
|
|
2595
2877
|
/**
|
|
2596
2878
|
* @title Spatial Processing Core API
|
|
2597
|
-
* @version 1.5.1
|
|
2879
|
+
* @version 1.5.1.0
|
|
2598
2880
|
* @baseUrl /sp
|
|
2599
2881
|
*/
|
|
2600
2882
|
|
|
@@ -2793,7 +3075,7 @@ const _excluded$4 = ["name"],
|
|
|
2793
3075
|
_excluded3$2 = ["name"],
|
|
2794
3076
|
_excluded4$1 = ["name", "id"],
|
|
2795
3077
|
_excluded5$1 = ["name", "id"],
|
|
2796
|
-
_excluded6 = ["name", "id"],
|
|
3078
|
+
_excluded6$1 = ["name", "id"],
|
|
2797
3079
|
_excluded7 = ["name", "x", "y", "z"],
|
|
2798
3080
|
_excluded8 = ["name"],
|
|
2799
3081
|
_excluded9 = ["name"],
|
|
@@ -2810,7 +3092,7 @@ const _excluded$4 = ["name"],
|
|
|
2810
3092
|
_excluded20 = ["name", "id"];
|
|
2811
3093
|
/**
|
|
2812
3094
|
* @title Spatial Processing Core API
|
|
2813
|
-
* @version 1.5.1
|
|
3095
|
+
* @version 1.5.1.0
|
|
2814
3096
|
* @baseUrl /sp
|
|
2815
3097
|
*/
|
|
2816
3098
|
|
|
@@ -3452,7 +3734,7 @@ let LayersService = /*#__PURE__*/function (_Service) {
|
|
|
3452
3734
|
name,
|
|
3453
3735
|
id
|
|
3454
3736
|
} = _ref6,
|
|
3455
|
-
query = _objectWithoutPropertiesLoose(_ref6, _excluded6);
|
|
3737
|
+
query = _objectWithoutPropertiesLoose(_ref6, _excluded6$1);
|
|
3456
3738
|
|
|
3457
3739
|
return this.http.post("/layers/" + name + "/features/" + id + "/subtract", data, query).json();
|
|
3458
3740
|
}
|
|
@@ -4289,7 +4571,7 @@ let Names = /*#__PURE__*/function () {
|
|
|
4289
4571
|
|
|
4290
4572
|
/**
|
|
4291
4573
|
* @title Spatial Processing Core API
|
|
4292
|
-
* @version 1.5.1
|
|
4574
|
+
* @version 1.5.1.0
|
|
4293
4575
|
* @baseUrl /sp
|
|
4294
4576
|
*/
|
|
4295
4577
|
|
|
@@ -4389,7 +4671,7 @@ let Namespace = /*#__PURE__*/function (_NamespaceService) {
|
|
|
4389
4671
|
|
|
4390
4672
|
/**
|
|
4391
4673
|
* @title Spatial Processing Core API
|
|
4392
|
-
* @version 1.5.1
|
|
4674
|
+
* @version 1.5.1.0
|
|
4393
4675
|
* @baseUrl /sp
|
|
4394
4676
|
*/
|
|
4395
4677
|
|
|
@@ -4543,8 +4825,8 @@ let Notification = /*#__PURE__*/function (_NotificationService) {
|
|
|
4543
4825
|
|| event.code === 4002
|
|
4544
4826
|
/* InvalidSession */
|
|
4545
4827
|
) {
|
|
4546
|
-
|
|
4547
|
-
|
|
4828
|
+
_this.connectStatus = exports.ConnectionStatus.SessionClosed;
|
|
4829
|
+
} else if (_this.reconnectTries < _this.MAX_WS_RECONNECT_TRIES) {
|
|
4548
4830
|
_this.connectStatus = exports.ConnectionStatus.Break;
|
|
4549
4831
|
_this.reconnectTries++;
|
|
4550
4832
|
|
|
@@ -4695,7 +4977,7 @@ let PortalSettings = /*#__PURE__*/function (_ClientSettingsServic) {
|
|
|
4695
4977
|
|
|
4696
4978
|
/**
|
|
4697
4979
|
* @title Spatial Processing Core API
|
|
4698
|
-
* @version 1.5.1
|
|
4980
|
+
* @version 1.5.1.0
|
|
4699
4981
|
* @baseUrl /sp
|
|
4700
4982
|
*/
|
|
4701
4983
|
|
|
@@ -4827,7 +5109,7 @@ let Print = /*#__PURE__*/function (_PrintService) {
|
|
|
4827
5109
|
|
|
4828
5110
|
/**
|
|
4829
5111
|
* @title Spatial Processing Core API
|
|
4830
|
-
* @version 1.5.1
|
|
5112
|
+
* @version 1.5.1.0
|
|
4831
5113
|
* @baseUrl /sp
|
|
4832
5114
|
*/
|
|
4833
5115
|
|
|
@@ -5231,7 +5513,7 @@ function isProjectContentItems(v) {
|
|
|
5231
5513
|
|
|
5232
5514
|
/**
|
|
5233
5515
|
* @title Spatial Processing Core API
|
|
5234
|
-
* @version 1.5.1
|
|
5516
|
+
* @version 1.5.1.0
|
|
5235
5517
|
* @baseUrl /sp
|
|
5236
5518
|
*/
|
|
5237
5519
|
|
|
@@ -5376,12 +5658,12 @@ let Resources = /*#__PURE__*/function () {
|
|
|
5376
5658
|
}, {
|
|
5377
5659
|
key: "getDependentNames",
|
|
5378
5660
|
value: function getDependentNames(deps, depType) {
|
|
5379
|
-
return deps.filter(_ref => {
|
|
5661
|
+
return deps.filter((_ref) => {
|
|
5380
5662
|
let {
|
|
5381
5663
|
type
|
|
5382
5664
|
} = _ref;
|
|
5383
5665
|
return type === depType;
|
|
5384
|
-
}).map(_ref2 => {
|
|
5666
|
+
}).map((_ref2) => {
|
|
5385
5667
|
let {
|
|
5386
5668
|
name
|
|
5387
5669
|
} = _ref2;
|
|
@@ -5395,7 +5677,7 @@ let Resources = /*#__PURE__*/function () {
|
|
|
5395
5677
|
|
|
5396
5678
|
/**
|
|
5397
5679
|
* @title Spatial Processing Core API
|
|
5398
|
-
* @version 1.5.1
|
|
5680
|
+
* @version 1.5.1.0
|
|
5399
5681
|
* @baseUrl /sp
|
|
5400
5682
|
*/
|
|
5401
5683
|
|
|
@@ -5837,7 +6119,7 @@ let Scheduler = /*#__PURE__*/function (_SchedulerService) {
|
|
|
5837
6119
|
const taskProgress = await this.getTaskProgress(id);
|
|
5838
6120
|
this.resolveTaskStatus(taskProgress, resolve, reject);
|
|
5839
6121
|
|
|
5840
|
-
const taskResultCallback = async _ref => {
|
|
6122
|
+
const taskResultCallback = async (_ref) => {
|
|
5841
6123
|
let {
|
|
5842
6124
|
data
|
|
5843
6125
|
} = _ref;
|
|
@@ -5882,7 +6164,7 @@ let Scheduler = /*#__PURE__*/function (_SchedulerService) {
|
|
|
5882
6164
|
|
|
5883
6165
|
/**
|
|
5884
6166
|
* @title Spatial Processing Core API
|
|
5885
|
-
* @version 1.5.1
|
|
6167
|
+
* @version 1.5.1.0
|
|
5886
6168
|
* @baseUrl /sp
|
|
5887
6169
|
*/
|
|
5888
6170
|
|
|
@@ -6034,7 +6316,7 @@ let Security = /*#__PURE__*/function (_SecurityService) {
|
|
|
6034
6316
|
|
|
6035
6317
|
/**
|
|
6036
6318
|
* @title Spatial Processing Core API
|
|
6037
|
-
* @version 1.5.1
|
|
6319
|
+
* @version 1.5.1.0
|
|
6038
6320
|
* @baseUrl /sp
|
|
6039
6321
|
*/
|
|
6040
6322
|
|
|
@@ -6130,7 +6412,7 @@ let Statistic = /*#__PURE__*/function (_StatisticService) {
|
|
|
6130
6412
|
|
|
6131
6413
|
/**
|
|
6132
6414
|
* @title Spatial Processing Core API
|
|
6133
|
-
* @version 1.5.1
|
|
6415
|
+
* @version 1.5.1.0
|
|
6134
6416
|
* @baseUrl /sp
|
|
6135
6417
|
*/
|
|
6136
6418
|
|
|
@@ -6266,7 +6548,7 @@ const _excluded$6 = ["name"],
|
|
|
6266
6548
|
_excluded4$2 = ["name"];
|
|
6267
6549
|
/**
|
|
6268
6550
|
* @title Spatial Processing Core API
|
|
6269
|
-
* @version 1.5.1
|
|
6551
|
+
* @version 1.5.1.0
|
|
6270
6552
|
* @baseUrl /sp
|
|
6271
6553
|
*/
|
|
6272
6554
|
|
|
@@ -6778,7 +7060,7 @@ let Tables = /*#__PURE__*/function (_TablesService) {
|
|
|
6778
7060
|
|
|
6779
7061
|
/**
|
|
6780
7062
|
* @title Spatial Processing Core API
|
|
6781
|
-
* @version 1.5.1
|
|
7063
|
+
* @version 1.5.1.0
|
|
6782
7064
|
* @baseUrl /sp
|
|
6783
7065
|
*/
|
|
6784
7066
|
|
|
@@ -6813,7 +7095,7 @@ let Tools = /*#__PURE__*/function (_ToolsService) {
|
|
|
6813
7095
|
const _excluded$7 = ["name", "z", "x", "y"];
|
|
6814
7096
|
/**
|
|
6815
7097
|
* @title Spatial Processing Core API
|
|
6816
|
-
* @version 1.5.1
|
|
7098
|
+
* @version 1.5.1.0
|
|
6817
7099
|
* @baseUrl /sp
|
|
6818
7100
|
*/
|
|
6819
7101
|
|
|
@@ -6970,6 +7252,8 @@ let Api = /*#__PURE__*/function (_EventEmitter) {
|
|
|
6970
7252
|
_this.universalSearch = new UniversalSearchService(_this.http);
|
|
6971
7253
|
_this.spatialReference = new SpatialReferencesService(_this.http);
|
|
6972
7254
|
_this.eqlTest = new EqlTest(_this.http);
|
|
7255
|
+
_this.catalog = new CatalogService(_this.http);
|
|
7256
|
+
_this.queryToken = new QueryTokenAccessService(_this.http);
|
|
6973
7257
|
_this.names = new Names({
|
|
6974
7258
|
account: _this.account
|
|
6975
7259
|
});
|
|
@@ -7640,6 +7924,12 @@ function isFeatureLayer(layer) {
|
|
|
7640
7924
|
LineJoinType["Round"] = "Round";
|
|
7641
7925
|
})(exports.LineJoinType || (exports.LineJoinType = {}));
|
|
7642
7926
|
|
|
7927
|
+
(function (ObjectTypeFilter) {
|
|
7928
|
+
ObjectTypeFilter["All"] = "All";
|
|
7929
|
+
ObjectTypeFilter["Directory"] = "Directory";
|
|
7930
|
+
ObjectTypeFilter["File"] = "File";
|
|
7931
|
+
})(exports.ObjectTypeFilter || (exports.ObjectTypeFilter = {}));
|
|
7932
|
+
|
|
7643
7933
|
(function (Operation) {
|
|
7644
7934
|
Operation["Unknown"] = "Unknown";
|
|
7645
7935
|
Operation["Union"] = "union";
|
|
@@ -7648,6 +7938,12 @@ function isFeatureLayer(layer) {
|
|
|
7648
7938
|
Operation["SymDifference"] = "symDifference";
|
|
7649
7939
|
})(exports.Operation || (exports.Operation = {}));
|
|
7650
7940
|
|
|
7941
|
+
(function (OwnerFilter) {
|
|
7942
|
+
OwnerFilter["My"] = "My";
|
|
7943
|
+
OwnerFilter["All"] = "All";
|
|
7944
|
+
OwnerFilter["Other"] = "Other";
|
|
7945
|
+
})(exports.OwnerFilter || (exports.OwnerFilter = {}));
|
|
7946
|
+
|
|
7651
7947
|
(function (PbfSchema) {
|
|
7652
7948
|
PbfSchema["XYZ"] = "xyz";
|
|
7653
7949
|
PbfSchema["TMS"] = "tms";
|
|
@@ -7673,6 +7969,12 @@ function isFeatureLayer(layer) {
|
|
|
7673
7969
|
PolicyType["MaxUploadContentSize"] = "MaxUploadContentSize";
|
|
7674
7970
|
})(exports.PolicyType || (exports.PolicyType = {}));
|
|
7675
7971
|
|
|
7972
|
+
(function (Quality) {
|
|
7973
|
+
Quality["Low"] = "Low";
|
|
7974
|
+
Quality["Medium"] = "Medium";
|
|
7975
|
+
Quality["High"] = "High";
|
|
7976
|
+
})(exports.Quality || (exports.Quality = {}));
|
|
7977
|
+
|
|
7676
7978
|
(function (ReferenceJoinType) {
|
|
7677
7979
|
ReferenceJoinType["OneToMany"] = "OneToMany";
|
|
7678
7980
|
ReferenceJoinType["OneToOne"] = "OneToOne";
|