@evergis/api 4.0.4 → 4.0.7
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/dist/Api.d.ts +1 -4
- package/dist/__generated__/EqlService.d.ts +12 -1
- package/dist/__generated__/GeneralService.d.ts +1 -12
- package/dist/__generated__/LayersService.d.ts +36 -223
- package/dist/__generated__/ProjectsService.d.ts +7 -84
- package/dist/__generated__/PythonService.d.ts +2 -46
- package/dist/__generated__/QueryTokenAccessService.d.ts +11 -4
- package/dist/__generated__/RemoteTaskManagerService.d.ts +65 -131
- package/dist/__generated__/StatisticService.d.ts +2 -2
- package/dist/__generated__/TablesService.d.ts +2 -101
- package/dist/__generated__/WmsServerService.d.ts +2 -2
- package/dist/__generated__/data-contracts.d.ts +759 -1290
- package/dist/api.cjs.development.js +378 -1336
- 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 +362 -1311
- package/dist/api.esm.js.map +1 -1
- package/dist/services/FileUpload.d.ts +3 -3
- package/dist/services/Layers.d.ts +4 -10
- package/dist/services/Projects.d.ts +1 -2
- package/dist/services/Tables.d.ts +1 -2
- package/dist/services/VectorTiles.d.ts +1 -1
- package/dist/services/index.d.ts +0 -1
- package/package.json +2 -2
- package/dist/__generated__/NamespaceService.d.ts +0 -53
- package/dist/__generated__/NavigationService.d.ts +0 -20
- package/dist/__generated__/S3Service.d.ts +0 -86
- package/dist/__generated__/StaticContentService.d.ts +0 -53
- package/dist/__generated__/TagsService.d.ts +0 -31
- package/dist/__generated__/UniversalSearchService.d.ts +0 -31
- package/dist/services/Namespace.d.ts +0 -3
|
@@ -555,6 +555,7 @@ let DataSourceService = /*#__PURE__*/function (_Service) {
|
|
|
555
555
|
return DataSourceService;
|
|
556
556
|
}(Service);
|
|
557
557
|
|
|
558
|
+
const _excluded = ["username"];
|
|
558
559
|
/**
|
|
559
560
|
* @title Spatial Processing Core API
|
|
560
561
|
* @version 1.5.1.0
|
|
@@ -573,19 +574,38 @@ let QueryTokenAccessService = /*#__PURE__*/function (_Service) {
|
|
|
573
574
|
}
|
|
574
575
|
|
|
575
576
|
_createClass(QueryTokenAccessService, [{
|
|
576
|
-
key: "
|
|
577
|
+
key: "getTokensList",
|
|
577
578
|
value:
|
|
579
|
+
/**
|
|
580
|
+
* No description
|
|
581
|
+
*
|
|
582
|
+
* @tags QueryTokenAccess
|
|
583
|
+
* @name GetTokensList
|
|
584
|
+
* @operationId QueryTokenAccessController_GetTokensList
|
|
585
|
+
* @request GET:/accessToken/list/{username}
|
|
586
|
+
* @response `200` OK
|
|
587
|
+
*/
|
|
588
|
+
function getTokensList(_ref) {
|
|
589
|
+
let {
|
|
590
|
+
username
|
|
591
|
+
} = _ref,
|
|
592
|
+
query = _objectWithoutPropertiesLoose(_ref, _excluded);
|
|
593
|
+
|
|
594
|
+
return this.http.get("/accessToken/list/" + username, query).json();
|
|
595
|
+
}
|
|
578
596
|
/**
|
|
579
597
|
* No description
|
|
580
598
|
*
|
|
581
599
|
* @tags QueryTokenAccess
|
|
582
600
|
* @name CreateToken
|
|
583
601
|
* @operationId QueryTokenAccessController_CreateTokenAsync
|
|
584
|
-
* @summary Create new query access token.
|
|
585
602
|
* @request PUT:/accessToken/{username}
|
|
586
603
|
* @response `200` OK
|
|
587
604
|
*/
|
|
588
|
-
|
|
605
|
+
|
|
606
|
+
}, {
|
|
607
|
+
key: "createToken",
|
|
608
|
+
value: function createToken(username) {
|
|
589
609
|
return this.http.put("/accessToken/" + username, null).text();
|
|
590
610
|
}
|
|
591
611
|
/**
|
|
@@ -594,7 +614,6 @@ let QueryTokenAccessService = /*#__PURE__*/function (_Service) {
|
|
|
594
614
|
* @tags QueryTokenAccess
|
|
595
615
|
* @name DisableToken
|
|
596
616
|
* @operationId QueryTokenAccessController_DisableToken
|
|
597
|
-
* @summary Disable token.
|
|
598
617
|
* @request POST:/accessToken/{token}/disable
|
|
599
618
|
* @response `200` OK
|
|
600
619
|
*/
|
|
@@ -610,7 +629,6 @@ let QueryTokenAccessService = /*#__PURE__*/function (_Service) {
|
|
|
610
629
|
* @tags QueryTokenAccess
|
|
611
630
|
* @name EnableToken
|
|
612
631
|
* @operationId QueryTokenAccessController_EnableToken
|
|
613
|
-
* @summary Enable token.
|
|
614
632
|
* @request POST:/accessToken/{token}/enable
|
|
615
633
|
* @response `200` OK
|
|
616
634
|
*/
|
|
@@ -626,7 +644,6 @@ let QueryTokenAccessService = /*#__PURE__*/function (_Service) {
|
|
|
626
644
|
* @tags QueryTokenAccess
|
|
627
645
|
* @name RevokeToken
|
|
628
646
|
* @operationId QueryTokenAccessController_RevokeToken
|
|
629
|
-
* @summary Revoke token.
|
|
630
647
|
* @request DELETE:/accessToken/{token}
|
|
631
648
|
* @response `200` OK
|
|
632
649
|
*/
|
|
@@ -711,67 +728,6 @@ let SpatialReferencesService = /*#__PURE__*/function (_Service) {
|
|
|
711
728
|
return SpatialReferencesService;
|
|
712
729
|
}(Service);
|
|
713
730
|
|
|
714
|
-
const _excluded = ["taskId", "layerName"];
|
|
715
|
-
/**
|
|
716
|
-
* @title Spatial Processing Core API
|
|
717
|
-
* @version 1.5.1.0
|
|
718
|
-
* @baseUrl /sp
|
|
719
|
-
*/
|
|
720
|
-
|
|
721
|
-
let UniversalSearchService = /*#__PURE__*/function (_Service) {
|
|
722
|
-
_inherits(UniversalSearchService, _Service);
|
|
723
|
-
|
|
724
|
-
var _super = /*#__PURE__*/_createSuper(UniversalSearchService);
|
|
725
|
-
|
|
726
|
-
function UniversalSearchService() {
|
|
727
|
-
_classCallCheck(this, UniversalSearchService);
|
|
728
|
-
|
|
729
|
-
return _super.apply(this, arguments);
|
|
730
|
-
}
|
|
731
|
-
|
|
732
|
-
_createClass(UniversalSearchService, [{
|
|
733
|
-
key: "searchResultDcGetSearchResult",
|
|
734
|
-
value:
|
|
735
|
-
/**
|
|
736
|
-
* No description
|
|
737
|
-
*
|
|
738
|
-
* @tags UniversalSearch
|
|
739
|
-
* @name SearchResultDcGetSearchResult
|
|
740
|
-
* @operationId UniversalSearchController_SearchResultDcGetSearchResult
|
|
741
|
-
* @summary Returns search result.
|
|
742
|
-
* @request GET:/search/{taskId}/{layerName}
|
|
743
|
-
* @response `200` OK
|
|
744
|
-
*/
|
|
745
|
-
function searchResultDcGetSearchResult(_ref) {
|
|
746
|
-
let {
|
|
747
|
-
taskId,
|
|
748
|
-
layerName
|
|
749
|
-
} = _ref,
|
|
750
|
-
query = _objectWithoutPropertiesLoose(_ref, _excluded);
|
|
751
|
-
|
|
752
|
-
return this.http.get("/search/" + taskId + "/" + layerName, query).json();
|
|
753
|
-
}
|
|
754
|
-
/**
|
|
755
|
-
* No description
|
|
756
|
-
*
|
|
757
|
-
* @tags UniversalSearch
|
|
758
|
-
* @name GetSearchResult
|
|
759
|
-
* @operationId UniversalSearchController_GetSearchResult
|
|
760
|
-
* @summary Returns search result.
|
|
761
|
-
* @request GET:/search/{taskId}
|
|
762
|
-
* @response `200` OK
|
|
763
|
-
*/
|
|
764
|
-
|
|
765
|
-
}, {
|
|
766
|
-
key: "getSearchResult",
|
|
767
|
-
value: function getSearchResult(taskId) {
|
|
768
|
-
return this.http.get("/search/" + taskId).json();
|
|
769
|
-
}
|
|
770
|
-
}]);
|
|
771
|
-
|
|
772
|
-
return UniversalSearchService;
|
|
773
|
-
}(Service);
|
|
774
|
-
|
|
775
731
|
/**
|
|
776
732
|
* @title Spatial Processing Core API
|
|
777
733
|
* @version 1.5.1.0
|
|
@@ -2258,8 +2214,21 @@ let EqlService = /*#__PURE__*/function (_Service) {
|
|
|
2258
2214
|
}
|
|
2259
2215
|
|
|
2260
2216
|
_createClass(EqlService, [{
|
|
2261
|
-
key: "
|
|
2217
|
+
key: "getFunctionsList",
|
|
2262
2218
|
value:
|
|
2219
|
+
/**
|
|
2220
|
+
* No description
|
|
2221
|
+
*
|
|
2222
|
+
* @tags Eql
|
|
2223
|
+
* @name GetFunctionsList
|
|
2224
|
+
* @operationId EqlController_GetFunctionsList
|
|
2225
|
+
* @summary Returns list of available functions.
|
|
2226
|
+
* @request GET:/eql/functions
|
|
2227
|
+
* @response `200` OK
|
|
2228
|
+
*/
|
|
2229
|
+
function getFunctionsList() {
|
|
2230
|
+
return this.http.get("/eql/functions").json();
|
|
2231
|
+
}
|
|
2263
2232
|
/**
|
|
2264
2233
|
* No description
|
|
2265
2234
|
*
|
|
@@ -2270,7 +2239,10 @@ let EqlService = /*#__PURE__*/function (_Service) {
|
|
|
2270
2239
|
* @request POST:/eql/query
|
|
2271
2240
|
* @response `200` OK
|
|
2272
2241
|
*/
|
|
2273
|
-
|
|
2242
|
+
|
|
2243
|
+
}, {
|
|
2244
|
+
key: "getQueryResult",
|
|
2245
|
+
value: function getQueryResult(data) {
|
|
2274
2246
|
return this.http.post("/eql/query", data).json();
|
|
2275
2247
|
}
|
|
2276
2248
|
/**
|
|
@@ -2760,94 +2732,8 @@ let Feedback = /*#__PURE__*/function (_FeedbackService) {
|
|
|
2760
2732
|
return Feedback;
|
|
2761
2733
|
}(FeedbackService);
|
|
2762
2734
|
|
|
2763
|
-
|
|
2764
|
-
|
|
2765
|
-
* @version 1.5.1.0
|
|
2766
|
-
* @baseUrl /sp
|
|
2767
|
-
*/
|
|
2768
|
-
|
|
2769
|
-
let StaticContentService = /*#__PURE__*/function (_Service) {
|
|
2770
|
-
_inherits(StaticContentService, _Service);
|
|
2771
|
-
|
|
2772
|
-
var _super = /*#__PURE__*/_createSuper(StaticContentService);
|
|
2773
|
-
|
|
2774
|
-
function StaticContentService() {
|
|
2775
|
-
_classCallCheck(this, StaticContentService);
|
|
2776
|
-
|
|
2777
|
-
return _super.apply(this, arguments);
|
|
2778
|
-
}
|
|
2779
|
-
|
|
2780
|
-
_createClass(StaticContentService, [{
|
|
2781
|
-
key: "downloadFile",
|
|
2782
|
-
value:
|
|
2783
|
-
/**
|
|
2784
|
-
* No description
|
|
2785
|
-
*
|
|
2786
|
-
* @tags StaticContentService
|
|
2787
|
-
* @name DownloadFile
|
|
2788
|
-
* @operationId StaticContentServiceController_DownloadFile
|
|
2789
|
-
* @summary Returns a file stream by fileId.
|
|
2790
|
-
* @request GET:/upload/file
|
|
2791
|
-
* @response `200` OK
|
|
2792
|
-
*/
|
|
2793
|
-
function downloadFile(query) {
|
|
2794
|
-
return this.http.get("/upload/file", query).blob();
|
|
2795
|
-
}
|
|
2796
|
-
/**
|
|
2797
|
-
* No description
|
|
2798
|
-
*
|
|
2799
|
-
* @tags StaticContentService
|
|
2800
|
-
* @name UploadFile
|
|
2801
|
-
* @operationId StaticContentServiceController_UploadFile
|
|
2802
|
-
* @summary Upload file to temporary session storage.
|
|
2803
|
-
* @request POST:/upload/file
|
|
2804
|
-
* @response `200` OK
|
|
2805
|
-
*/
|
|
2806
|
-
|
|
2807
|
-
}, {
|
|
2808
|
-
key: "uploadFile",
|
|
2809
|
-
value: function uploadFile(data) {
|
|
2810
|
-
return this.http.post("/upload/file", toFormData(data)).json();
|
|
2811
|
-
}
|
|
2812
|
-
/**
|
|
2813
|
-
* No description
|
|
2814
|
-
*
|
|
2815
|
-
* @tags StaticContentService
|
|
2816
|
-
* @name DeleteFile
|
|
2817
|
-
* @operationId StaticContentServiceController_DeleteFile
|
|
2818
|
-
* @summary Delete file from temporary session storage.
|
|
2819
|
-
* @request DELETE:/upload/file
|
|
2820
|
-
* @response `200` OK
|
|
2821
|
-
*/
|
|
2822
|
-
|
|
2823
|
-
}, {
|
|
2824
|
-
key: "deleteFile",
|
|
2825
|
-
value: function deleteFile(query) {
|
|
2826
|
-
return this.http.delete("/upload/file", null, query).then(() => {});
|
|
2827
|
-
}
|
|
2828
|
-
/**
|
|
2829
|
-
* No description
|
|
2830
|
-
*
|
|
2831
|
-
* @tags StaticContentService
|
|
2832
|
-
* @name GetFileInfo
|
|
2833
|
-
* @operationId StaticContentServiceController_GetFileInfo
|
|
2834
|
-
* @summary Returns a file info download by url.
|
|
2835
|
-
* @request GET:/upload/fileInfo
|
|
2836
|
-
* @response `200` OK
|
|
2837
|
-
*/
|
|
2838
|
-
|
|
2839
|
-
}, {
|
|
2840
|
-
key: "getFileInfo",
|
|
2841
|
-
value: function getFileInfo(query) {
|
|
2842
|
-
return this.http.get("/upload/fileInfo", query).json();
|
|
2843
|
-
}
|
|
2844
|
-
}]);
|
|
2845
|
-
|
|
2846
|
-
return StaticContentService;
|
|
2847
|
-
}(Service);
|
|
2848
|
-
|
|
2849
|
-
let FileUpload = /*#__PURE__*/function (_StaticContentService) {
|
|
2850
|
-
_inherits(FileUpload, _StaticContentService);
|
|
2735
|
+
let FileUpload = /*#__PURE__*/function (_CatalogService) {
|
|
2736
|
+
_inherits(FileUpload, _CatalogService);
|
|
2851
2737
|
|
|
2852
2738
|
var _super = /*#__PURE__*/_createSuper(FileUpload);
|
|
2853
2739
|
|
|
@@ -2860,7 +2746,7 @@ let FileUpload = /*#__PURE__*/function (_StaticContentService) {
|
|
|
2860
2746
|
_createClass(FileUpload, [{
|
|
2861
2747
|
key: "upload",
|
|
2862
2748
|
value: function upload(file, rewrite) {
|
|
2863
|
-
return this.
|
|
2749
|
+
return this.createFile({
|
|
2864
2750
|
file,
|
|
2865
2751
|
rewrite: !!rewrite
|
|
2866
2752
|
});
|
|
@@ -2868,7 +2754,7 @@ let FileUpload = /*#__PURE__*/function (_StaticContentService) {
|
|
|
2868
2754
|
}]);
|
|
2869
2755
|
|
|
2870
2756
|
return FileUpload;
|
|
2871
|
-
}(
|
|
2757
|
+
}(CatalogService);
|
|
2872
2758
|
|
|
2873
2759
|
/**
|
|
2874
2760
|
* @title Spatial Processing Core API
|
|
@@ -2987,22 +2873,6 @@ let GeneralService = /*#__PURE__*/function (_Service) {
|
|
|
2987
2873
|
function getServerInfo() {
|
|
2988
2874
|
return this.http.get("/").json();
|
|
2989
2875
|
}
|
|
2990
|
-
/**
|
|
2991
|
-
* No description
|
|
2992
|
-
*
|
|
2993
|
-
* @tags General
|
|
2994
|
-
* @name GetFunctionsList
|
|
2995
|
-
* @operationId GeneralController_GetFunctionsList
|
|
2996
|
-
* @summary Returns list of available functions.
|
|
2997
|
-
* @request GET:/functions
|
|
2998
|
-
* @response `200` OK
|
|
2999
|
-
*/
|
|
3000
|
-
|
|
3001
|
-
}, {
|
|
3002
|
-
key: "getFunctionsList",
|
|
3003
|
-
value: function getFunctionsList() {
|
|
3004
|
-
return this.http.get("/functions").json();
|
|
3005
|
-
}
|
|
3006
2876
|
}]);
|
|
3007
2877
|
|
|
3008
2878
|
return GeneralService;
|
|
@@ -3407,12 +3277,12 @@ let Import = /*#__PURE__*/function (_ImportService) {
|
|
|
3407
3277
|
|
|
3408
3278
|
const _excluded$3 = ["name"],
|
|
3409
3279
|
_excluded2$2 = ["name"],
|
|
3410
|
-
_excluded3$2 = ["name"],
|
|
3280
|
+
_excluded3$2 = ["name", "id"],
|
|
3411
3281
|
_excluded4$1 = ["name", "id"],
|
|
3412
3282
|
_excluded5$1 = ["name", "id"],
|
|
3413
|
-
_excluded6$1 = ["name", "
|
|
3414
|
-
_excluded7 = ["name", "x", "y", "z"],
|
|
3415
|
-
_excluded8 = ["name", "x", "y", "z", "format"],
|
|
3283
|
+
_excluded6$1 = ["name", "x", "y", "z"],
|
|
3284
|
+
_excluded7 = ["name", "x", "y", "z", "format"],
|
|
3285
|
+
_excluded8 = ["name", "x", "y", "z", "dpi", "format"],
|
|
3416
3286
|
_excluded9 = ["name"],
|
|
3417
3287
|
_excluded10 = ["name"],
|
|
3418
3288
|
_excluded11 = ["name"],
|
|
@@ -3421,11 +3291,8 @@ const _excluded$3 = ["name"],
|
|
|
3421
3291
|
_excluded14 = ["name"],
|
|
3422
3292
|
_excluded15 = ["name"],
|
|
3423
3293
|
_excluded16 = ["name"],
|
|
3424
|
-
_excluded17 = ["
|
|
3425
|
-
_excluded18 = ["name"]
|
|
3426
|
-
_excluded19 = ["name"],
|
|
3427
|
-
_excluded20 = ["layerName"],
|
|
3428
|
-
_excluded21 = ["name", "id"];
|
|
3294
|
+
_excluded17 = ["layerName"],
|
|
3295
|
+
_excluded18 = ["name", "id"];
|
|
3429
3296
|
/**
|
|
3430
3297
|
* @title Spatial Processing Core API
|
|
3431
3298
|
* @version 1.5.1.0
|
|
@@ -3491,22 +3358,6 @@ let LayersService = /*#__PURE__*/function (_Service) {
|
|
|
3491
3358
|
value: function getLayersList(query) {
|
|
3492
3359
|
return this.http.get("/layers", query).json();
|
|
3493
3360
|
}
|
|
3494
|
-
/**
|
|
3495
|
-
* No description
|
|
3496
|
-
*
|
|
3497
|
-
* @tags Layers
|
|
3498
|
-
* @name SetPermissionsBatch
|
|
3499
|
-
* @operationId LayersController_SetPermissionsBatch
|
|
3500
|
-
* @summary Overrides multiply resources permissions in single batch.
|
|
3501
|
-
* @request PUT:/layers
|
|
3502
|
-
* @response `200` OK
|
|
3503
|
-
*/
|
|
3504
|
-
|
|
3505
|
-
}, {
|
|
3506
|
-
key: "setPermissionsBatch",
|
|
3507
|
-
value: function setPermissionsBatch(data) {
|
|
3508
|
-
return this.http.put("/layers", data).then(() => {});
|
|
3509
|
-
}
|
|
3510
3361
|
/**
|
|
3511
3362
|
* No description
|
|
3512
3363
|
*
|
|
@@ -3661,42 +3512,6 @@ let LayersService = /*#__PURE__*/function (_Service) {
|
|
|
3661
3512
|
type: 'RemoteTileService'
|
|
3662
3513
|
}).json();
|
|
3663
3514
|
}
|
|
3664
|
-
/**
|
|
3665
|
-
* No description
|
|
3666
|
-
*
|
|
3667
|
-
* @tags Layers
|
|
3668
|
-
* @name PublishLocalTileService
|
|
3669
|
-
* @operationId LayersController_PublishLocalTileService
|
|
3670
|
-
* @summary Creates new Local Tile Service.
|
|
3671
|
-
* @request POST:/layers#type=LocalTileService
|
|
3672
|
-
* @response `default` Error
|
|
3673
|
-
*/
|
|
3674
|
-
|
|
3675
|
-
}, {
|
|
3676
|
-
key: "publishLocalTileService",
|
|
3677
|
-
value: function publishLocalTileService(data) {
|
|
3678
|
-
return this.http.post("/layers", data, {
|
|
3679
|
-
type: 'LocalTileService'
|
|
3680
|
-
}).json();
|
|
3681
|
-
}
|
|
3682
|
-
/**
|
|
3683
|
-
* No description
|
|
3684
|
-
*
|
|
3685
|
-
* @tags Layers
|
|
3686
|
-
* @name PublishPostgresLayerService
|
|
3687
|
-
* @operationId LayersController_PublishPostgresLayerService
|
|
3688
|
-
* @summary Creates new Postgres Layer Service.
|
|
3689
|
-
* @request POST:/layers#type=PostgresLayerService
|
|
3690
|
-
* @response `default` Error
|
|
3691
|
-
*/
|
|
3692
|
-
|
|
3693
|
-
}, {
|
|
3694
|
-
key: "publishPostgresLayerService",
|
|
3695
|
-
value: function publishPostgresLayerService(data) {
|
|
3696
|
-
return this.http.post("/layers", data, {
|
|
3697
|
-
type: 'PostgresLayerService'
|
|
3698
|
-
}).json();
|
|
3699
|
-
}
|
|
3700
3515
|
/**
|
|
3701
3516
|
* No description
|
|
3702
3517
|
*
|
|
@@ -3737,18 +3552,18 @@ let LayersService = /*#__PURE__*/function (_Service) {
|
|
|
3737
3552
|
* No description
|
|
3738
3553
|
*
|
|
3739
3554
|
* @tags Layers
|
|
3740
|
-
* @name
|
|
3741
|
-
* @operationId
|
|
3742
|
-
* @summary Creates new
|
|
3743
|
-
* @request POST:/layers#type=
|
|
3555
|
+
* @name PublishPythonService
|
|
3556
|
+
* @operationId LayersController_PublishPythonService
|
|
3557
|
+
* @summary Creates new python service.
|
|
3558
|
+
* @request POST:/layers#type=Python
|
|
3744
3559
|
* @response `default` Error
|
|
3745
3560
|
*/
|
|
3746
3561
|
|
|
3747
3562
|
}, {
|
|
3748
|
-
key: "
|
|
3749
|
-
value: function
|
|
3563
|
+
key: "publishPythonService",
|
|
3564
|
+
value: function publishPythonService(data) {
|
|
3750
3565
|
return this.http.post("/layers", data, {
|
|
3751
|
-
type: '
|
|
3566
|
+
type: 'Python'
|
|
3752
3567
|
}).json();
|
|
3753
3568
|
}
|
|
3754
3569
|
/**
|
|
@@ -3769,6 +3584,24 @@ let LayersService = /*#__PURE__*/function (_Service) {
|
|
|
3769
3584
|
type: 'Mapbox'
|
|
3770
3585
|
}).json();
|
|
3771
3586
|
}
|
|
3587
|
+
/**
|
|
3588
|
+
* No description
|
|
3589
|
+
*
|
|
3590
|
+
* @tags Layers
|
|
3591
|
+
* @name UpdatePythonService
|
|
3592
|
+
* @operationId LayersController_UpdatePythonService
|
|
3593
|
+
* @summary Update python service.
|
|
3594
|
+
* @request PATCH:/layers/{name}#type=Python
|
|
3595
|
+
* @response `default` Error
|
|
3596
|
+
*/
|
|
3597
|
+
|
|
3598
|
+
}, {
|
|
3599
|
+
key: "updatePythonService",
|
|
3600
|
+
value: function updatePythonService(name, data) {
|
|
3601
|
+
return this.http.patch("/layers/" + name, data, {
|
|
3602
|
+
type: 'Python'
|
|
3603
|
+
}).json();
|
|
3604
|
+
}
|
|
3772
3605
|
/**
|
|
3773
3606
|
* No description
|
|
3774
3607
|
*
|
|
@@ -3805,24 +3638,6 @@ let LayersService = /*#__PURE__*/function (_Service) {
|
|
|
3805
3638
|
type: 'PostgresTileLayerService'
|
|
3806
3639
|
}).json();
|
|
3807
3640
|
}
|
|
3808
|
-
/**
|
|
3809
|
-
* No description
|
|
3810
|
-
*
|
|
3811
|
-
* @tags Layers
|
|
3812
|
-
* @name PublishCompositeService
|
|
3813
|
-
* @operationId LayersController_PublishCompositeService
|
|
3814
|
-
* @summary Creates new Composite service SPCore.Security.Base.Impl.Services.Composite.CompositeService.
|
|
3815
|
-
* @request POST:/layers#type=CompositeService
|
|
3816
|
-
* @response `default` Error
|
|
3817
|
-
*/
|
|
3818
|
-
|
|
3819
|
-
}, {
|
|
3820
|
-
key: "publishCompositeService",
|
|
3821
|
-
value: function publishCompositeService(data) {
|
|
3822
|
-
return this.http.post("/layers", data, {
|
|
3823
|
-
type: 'CompositeService'
|
|
3824
|
-
}).json();
|
|
3825
|
-
}
|
|
3826
3641
|
/**
|
|
3827
3642
|
* No description
|
|
3828
3643
|
*
|
|
@@ -3841,42 +3656,6 @@ let LayersService = /*#__PURE__*/function (_Service) {
|
|
|
3841
3656
|
type: 'RemoteTileService'
|
|
3842
3657
|
}).json();
|
|
3843
3658
|
}
|
|
3844
|
-
/**
|
|
3845
|
-
* No description
|
|
3846
|
-
*
|
|
3847
|
-
* @tags Layers
|
|
3848
|
-
* @name UpdateLocalTileService
|
|
3849
|
-
* @operationId LayersController_UpdateLocalTileService
|
|
3850
|
-
* @summary Update Local Tile Service.
|
|
3851
|
-
* @request PATCH:/layers/{name}#type=LocalTileService
|
|
3852
|
-
* @response `default` Error
|
|
3853
|
-
*/
|
|
3854
|
-
|
|
3855
|
-
}, {
|
|
3856
|
-
key: "updateLocalTileService",
|
|
3857
|
-
value: function updateLocalTileService(name, data) {
|
|
3858
|
-
return this.http.patch("/layers/" + name, data, {
|
|
3859
|
-
type: 'LocalTileService'
|
|
3860
|
-
}).json();
|
|
3861
|
-
}
|
|
3862
|
-
/**
|
|
3863
|
-
* No description
|
|
3864
|
-
*
|
|
3865
|
-
* @tags Layers
|
|
3866
|
-
* @name UpdatePostgresLayerService
|
|
3867
|
-
* @operationId LayersController_UpdatePostgresLayerService
|
|
3868
|
-
* @summary Update Postgres Layer Service.
|
|
3869
|
-
* @request PATCH:/layers/{name}#type=PostgresLayerService
|
|
3870
|
-
* @response `default` Error
|
|
3871
|
-
*/
|
|
3872
|
-
|
|
3873
|
-
}, {
|
|
3874
|
-
key: "updatePostgresLayerService",
|
|
3875
|
-
value: function updatePostgresLayerService(name, data) {
|
|
3876
|
-
return this.http.patch("/layers/" + name, data, {
|
|
3877
|
-
type: 'PostgresLayerService'
|
|
3878
|
-
}).json();
|
|
3879
|
-
}
|
|
3880
3659
|
/**
|
|
3881
3660
|
* No description
|
|
3882
3661
|
*
|
|
@@ -3895,24 +3674,6 @@ let LayersService = /*#__PURE__*/function (_Service) {
|
|
|
3895
3674
|
type: 'QueryLayerService'
|
|
3896
3675
|
}).json();
|
|
3897
3676
|
}
|
|
3898
|
-
/**
|
|
3899
|
-
* No description
|
|
3900
|
-
*
|
|
3901
|
-
* @tags Layers
|
|
3902
|
-
* @name UpdateCompositeService
|
|
3903
|
-
* @operationId LayersController_UpdateCompositeService
|
|
3904
|
-
* @summary Update Composite service SPCore.Security.Base.Impl.Services.Composite.CompositeService.
|
|
3905
|
-
* @request PATCH:/layers/{name}#type=CompositeService
|
|
3906
|
-
* @response `default` Error
|
|
3907
|
-
*/
|
|
3908
|
-
|
|
3909
|
-
}, {
|
|
3910
|
-
key: "updateCompositeService",
|
|
3911
|
-
value: function updateCompositeService(name, data) {
|
|
3912
|
-
return this.http.patch("/layers/" + name, data, {
|
|
3913
|
-
type: 'CompositeService'
|
|
3914
|
-
}).json();
|
|
3915
|
-
}
|
|
3916
3677
|
/**
|
|
3917
3678
|
* No description
|
|
3918
3679
|
*
|
|
@@ -4019,27 +3780,6 @@ let LayersService = /*#__PURE__*/function (_Service) {
|
|
|
4019
3780
|
value: function updateFeature(name, data) {
|
|
4020
3781
|
return this.http.patch("/layers/" + name + "/features", data).json();
|
|
4021
3782
|
}
|
|
4022
|
-
/**
|
|
4023
|
-
* No description
|
|
4024
|
-
*
|
|
4025
|
-
* @tags Layers
|
|
4026
|
-
* @name FeaturesContains
|
|
4027
|
-
* @operationId LayersController_FeaturesContains
|
|
4028
|
-
* @summary Gets filtered features with given filter.
|
|
4029
|
-
* @request GET:/layers/{name}/features/contains
|
|
4030
|
-
* @response `200` OK
|
|
4031
|
-
*/
|
|
4032
|
-
|
|
4033
|
-
}, {
|
|
4034
|
-
key: "featuresContains",
|
|
4035
|
-
value: function featuresContains(_ref3) {
|
|
4036
|
-
let {
|
|
4037
|
-
name
|
|
4038
|
-
} = _ref3,
|
|
4039
|
-
query = _objectWithoutPropertiesLoose(_ref3, _excluded3$2);
|
|
4040
|
-
|
|
4041
|
-
return this.http.get("/layers/" + name + "/features/contains", query).json();
|
|
4042
|
-
}
|
|
4043
3783
|
/**
|
|
4044
3784
|
* No description
|
|
4045
3785
|
*
|
|
@@ -4053,12 +3793,12 @@ let LayersService = /*#__PURE__*/function (_Service) {
|
|
|
4053
3793
|
|
|
4054
3794
|
}, {
|
|
4055
3795
|
key: "getById",
|
|
4056
|
-
value: function getById(
|
|
3796
|
+
value: function getById(_ref3) {
|
|
4057
3797
|
let {
|
|
4058
3798
|
name,
|
|
4059
3799
|
id
|
|
4060
|
-
} =
|
|
4061
|
-
query = _objectWithoutPropertiesLoose(
|
|
3800
|
+
} = _ref3,
|
|
3801
|
+
query = _objectWithoutPropertiesLoose(_ref3, _excluded3$2);
|
|
4062
3802
|
|
|
4063
3803
|
return this.http.get("/layers/" + name + "/features/" + id, query).json();
|
|
4064
3804
|
}
|
|
@@ -4075,12 +3815,12 @@ let LayersService = /*#__PURE__*/function (_Service) {
|
|
|
4075
3815
|
|
|
4076
3816
|
}, {
|
|
4077
3817
|
key: "unite",
|
|
4078
|
-
value: function unite(
|
|
3818
|
+
value: function unite(_ref4, data) {
|
|
4079
3819
|
let {
|
|
4080
3820
|
name,
|
|
4081
3821
|
id
|
|
4082
|
-
} =
|
|
4083
|
-
query = _objectWithoutPropertiesLoose(
|
|
3822
|
+
} = _ref4,
|
|
3823
|
+
query = _objectWithoutPropertiesLoose(_ref4, _excluded4$1);
|
|
4084
3824
|
|
|
4085
3825
|
return this.http.post("/layers/" + name + "/features/" + id + "/unite", data, query).json();
|
|
4086
3826
|
}
|
|
@@ -4097,12 +3837,12 @@ let LayersService = /*#__PURE__*/function (_Service) {
|
|
|
4097
3837
|
|
|
4098
3838
|
}, {
|
|
4099
3839
|
key: "subtract",
|
|
4100
|
-
value: function subtract(
|
|
3840
|
+
value: function subtract(_ref5, data) {
|
|
4101
3841
|
let {
|
|
4102
3842
|
name,
|
|
4103
3843
|
id
|
|
4104
|
-
} =
|
|
4105
|
-
query = _objectWithoutPropertiesLoose(
|
|
3844
|
+
} = _ref5,
|
|
3845
|
+
query = _objectWithoutPropertiesLoose(_ref5, _excluded5$1);
|
|
4106
3846
|
|
|
4107
3847
|
return this.http.post("/layers/" + name + "/features/" + id + "/subtract", data, query).json();
|
|
4108
3848
|
}
|
|
@@ -4119,14 +3859,14 @@ let LayersService = /*#__PURE__*/function (_Service) {
|
|
|
4119
3859
|
|
|
4120
3860
|
}, {
|
|
4121
3861
|
key: "getTilesLayerImage",
|
|
4122
|
-
value: function getTilesLayerImage(
|
|
3862
|
+
value: function getTilesLayerImage(_ref6) {
|
|
4123
3863
|
let {
|
|
4124
3864
|
name,
|
|
4125
3865
|
x,
|
|
4126
3866
|
y,
|
|
4127
3867
|
z
|
|
4128
|
-
} =
|
|
4129
|
-
query = _objectWithoutPropertiesLoose(
|
|
3868
|
+
} = _ref6,
|
|
3869
|
+
query = _objectWithoutPropertiesLoose(_ref6, _excluded6$1);
|
|
4130
3870
|
|
|
4131
3871
|
return this.http.createUrl("/layers/" + name + "/tile/" + z + "/" + x + "/" + y, query);
|
|
4132
3872
|
}
|
|
@@ -4134,24 +3874,24 @@ let LayersService = /*#__PURE__*/function (_Service) {
|
|
|
4134
3874
|
* No description
|
|
4135
3875
|
*
|
|
4136
3876
|
* @tags Layers
|
|
4137
|
-
* @name
|
|
4138
|
-
* @operationId
|
|
3877
|
+
* @name GetTilesLayerImage1
|
|
3878
|
+
* @operationId LayersController_GetTilesLayerImage_1
|
|
4139
3879
|
* @summary Render tile with input indexes.
|
|
4140
3880
|
* @request GET:/layers/{name}/tile/{z}/{x}/{y}.{format}
|
|
4141
3881
|
* @response `200` OK
|
|
4142
3882
|
*/
|
|
4143
3883
|
|
|
4144
3884
|
}, {
|
|
4145
|
-
key: "
|
|
4146
|
-
value: function
|
|
3885
|
+
key: "getTilesLayerImage1",
|
|
3886
|
+
value: function getTilesLayerImage1(_ref7) {
|
|
4147
3887
|
let {
|
|
4148
3888
|
name,
|
|
4149
3889
|
x,
|
|
4150
3890
|
y,
|
|
4151
3891
|
z,
|
|
4152
3892
|
format
|
|
4153
|
-
} =
|
|
4154
|
-
query = _objectWithoutPropertiesLoose(
|
|
3893
|
+
} = _ref7,
|
|
3894
|
+
query = _objectWithoutPropertiesLoose(_ref7, _excluded7);
|
|
4155
3895
|
|
|
4156
3896
|
return this.http.createUrl("/layers/" + name + "/tile/" + z + "/" + x + "/" + y + "." + format, query);
|
|
4157
3897
|
}
|
|
@@ -4159,85 +3899,69 @@ let LayersService = /*#__PURE__*/function (_Service) {
|
|
|
4159
3899
|
* No description
|
|
4160
3900
|
*
|
|
4161
3901
|
* @tags Layers
|
|
4162
|
-
* @name
|
|
4163
|
-
* @operationId
|
|
4164
|
-
* @summary
|
|
4165
|
-
* @request GET:/layers/{name}/
|
|
3902
|
+
* @name GetTilesLayerImageWithFormatAndDpi
|
|
3903
|
+
* @operationId LayersController_GetTilesLayerImageWithFormatAndDpi
|
|
3904
|
+
* @summary Render tile with input indexes.
|
|
3905
|
+
* @request GET:/layers/{name}/tile/{z}/{x}/{y}@{dpi}x.{format}
|
|
4166
3906
|
* @response `200` OK
|
|
4167
3907
|
*/
|
|
4168
3908
|
|
|
4169
3909
|
}, {
|
|
4170
|
-
key: "
|
|
4171
|
-
value: function
|
|
3910
|
+
key: "getTilesLayerImageWithFormatAndDpi",
|
|
3911
|
+
value: function getTilesLayerImageWithFormatAndDpi(_ref8) {
|
|
4172
3912
|
let {
|
|
4173
|
-
name
|
|
4174
|
-
|
|
4175
|
-
|
|
4176
|
-
|
|
4177
|
-
|
|
4178
|
-
|
|
4179
|
-
|
|
4180
|
-
|
|
4181
|
-
*
|
|
4182
|
-
* @tags Layers
|
|
4183
|
-
* @name GetLayerExtent
|
|
4184
|
-
* @operationId LayersController_GetLayerExtent
|
|
4185
|
-
* @summary Returns the extent of the layer.
|
|
4186
|
-
* @request GET:/layers/{name}/extent
|
|
4187
|
-
* @response `200` OK
|
|
4188
|
-
*/
|
|
4189
|
-
|
|
4190
|
-
}, {
|
|
4191
|
-
key: "getLayerExtent",
|
|
4192
|
-
value: function getLayerExtent(_ref10) {
|
|
4193
|
-
let {
|
|
4194
|
-
name
|
|
4195
|
-
} = _ref10,
|
|
4196
|
-
query = _objectWithoutPropertiesLoose(_ref10, _excluded10);
|
|
3913
|
+
name,
|
|
3914
|
+
x,
|
|
3915
|
+
y,
|
|
3916
|
+
z,
|
|
3917
|
+
dpi,
|
|
3918
|
+
format
|
|
3919
|
+
} = _ref8,
|
|
3920
|
+
query = _objectWithoutPropertiesLoose(_ref8, _excluded8);
|
|
4197
3921
|
|
|
4198
|
-
return this.http.
|
|
3922
|
+
return this.http.createUrl("/layers/" + name + "/tile/" + z + "/" + x + "/" + y + "@" + dpi + "x." + format, query);
|
|
4199
3923
|
}
|
|
4200
3924
|
/**
|
|
4201
3925
|
* No description
|
|
4202
3926
|
*
|
|
4203
3927
|
* @tags Layers
|
|
4204
|
-
* @name
|
|
4205
|
-
* @operationId
|
|
4206
|
-
* @summary
|
|
4207
|
-
* @request GET:/layers/{name}/
|
|
3928
|
+
* @name GetLayerImage
|
|
3929
|
+
* @operationId LayersController_GetLayerImage
|
|
3930
|
+
* @summary Renders the layer to the image of the requested size.
|
|
3931
|
+
* @request GET:/layers/{name}/export
|
|
4208
3932
|
* @response `200` OK
|
|
4209
3933
|
*/
|
|
4210
3934
|
|
|
4211
3935
|
}, {
|
|
4212
|
-
key: "
|
|
4213
|
-
value: function
|
|
3936
|
+
key: "getLayerImage",
|
|
3937
|
+
value: function getLayerImage(_ref9) {
|
|
4214
3938
|
let {
|
|
4215
3939
|
name
|
|
4216
|
-
} =
|
|
4217
|
-
query = _objectWithoutPropertiesLoose(
|
|
3940
|
+
} = _ref9,
|
|
3941
|
+
query = _objectWithoutPropertiesLoose(_ref9, _excluded9);
|
|
4218
3942
|
|
|
4219
|
-
return this.http.
|
|
3943
|
+
return this.http.createUrl("/layers/" + name + "/export", query);
|
|
4220
3944
|
}
|
|
4221
3945
|
/**
|
|
4222
3946
|
* No description
|
|
4223
3947
|
*
|
|
4224
3948
|
* @tags Layers
|
|
4225
|
-
* @name
|
|
4226
|
-
* @operationId
|
|
4227
|
-
* @summary
|
|
4228
|
-
* @request
|
|
3949
|
+
* @name GetLayerExtent
|
|
3950
|
+
* @operationId LayersController_GetLayerExtent
|
|
3951
|
+
* @summary Returns the extent of the layer.
|
|
3952
|
+
* @request GET:/layers/{name}/extent
|
|
4229
3953
|
* @response `200` OK
|
|
4230
3954
|
*/
|
|
4231
3955
|
|
|
4232
3956
|
}, {
|
|
4233
|
-
key: "
|
|
4234
|
-
value: function
|
|
3957
|
+
key: "getLayerExtent",
|
|
3958
|
+
value: function getLayerExtent(_ref10) {
|
|
4235
3959
|
let {
|
|
4236
3960
|
name
|
|
4237
|
-
} =
|
|
4238
|
-
query = _objectWithoutPropertiesLoose(
|
|
3961
|
+
} = _ref10,
|
|
3962
|
+
query = _objectWithoutPropertiesLoose(_ref10, _excluded10);
|
|
4239
3963
|
|
|
4240
|
-
return this.http.
|
|
3964
|
+
return this.http.get("/layers/" + name + "/extent", query).json();
|
|
4241
3965
|
}
|
|
4242
3966
|
/**
|
|
4243
3967
|
* No description
|
|
@@ -4252,11 +3976,11 @@ let LayersService = /*#__PURE__*/function (_Service) {
|
|
|
4252
3976
|
|
|
4253
3977
|
}, {
|
|
4254
3978
|
key: "deleteFeatures",
|
|
4255
|
-
value: function deleteFeatures(
|
|
3979
|
+
value: function deleteFeatures(_ref11) {
|
|
4256
3980
|
let {
|
|
4257
3981
|
name
|
|
4258
|
-
} =
|
|
4259
|
-
query = _objectWithoutPropertiesLoose(
|
|
3982
|
+
} = _ref11,
|
|
3983
|
+
query = _objectWithoutPropertiesLoose(_ref11, _excluded11);
|
|
4260
3984
|
|
|
4261
3985
|
return this.http.delete("/layers/" + name + "/features/deleteByIds", null, query).json();
|
|
4262
3986
|
}
|
|
@@ -4273,35 +3997,14 @@ let LayersService = /*#__PURE__*/function (_Service) {
|
|
|
4273
3997
|
|
|
4274
3998
|
}, {
|
|
4275
3999
|
key: "deleteByCondition",
|
|
4276
|
-
value: function deleteByCondition(
|
|
4000
|
+
value: function deleteByCondition(_ref12) {
|
|
4277
4001
|
let {
|
|
4278
4002
|
name
|
|
4279
|
-
} =
|
|
4280
|
-
query = _objectWithoutPropertiesLoose(
|
|
4003
|
+
} = _ref12,
|
|
4004
|
+
query = _objectWithoutPropertiesLoose(_ref12, _excluded12);
|
|
4281
4005
|
|
|
4282
4006
|
return this.http.delete("/layers/" + name + "/features/deleteByCondition", null, query).json();
|
|
4283
4007
|
}
|
|
4284
|
-
/**
|
|
4285
|
-
* No description
|
|
4286
|
-
*
|
|
4287
|
-
* @tags Layers
|
|
4288
|
-
* @name GetByGeometryGet
|
|
4289
|
-
* @operationId LayersController_GetByGeometryAsync_2
|
|
4290
|
-
* @summary Gets the features by click position.
|
|
4291
|
-
* @request GET:/layers/{name}/features/getByGeometryByClick
|
|
4292
|
-
* @response `200` OK
|
|
4293
|
-
*/
|
|
4294
|
-
|
|
4295
|
-
}, {
|
|
4296
|
-
key: "getByGeometryGet",
|
|
4297
|
-
value: function getByGeometryGet(_ref15) {
|
|
4298
|
-
let {
|
|
4299
|
-
name
|
|
4300
|
-
} = _ref15,
|
|
4301
|
-
query = _objectWithoutPropertiesLoose(_ref15, _excluded15);
|
|
4302
|
-
|
|
4303
|
-
return this.http.get("/layers/" + name + "/features/getByGeometryByClick", query).json();
|
|
4304
|
-
}
|
|
4305
4008
|
/**
|
|
4306
4009
|
* No description
|
|
4307
4010
|
*
|
|
@@ -4315,11 +4018,11 @@ let LayersService = /*#__PURE__*/function (_Service) {
|
|
|
4315
4018
|
|
|
4316
4019
|
}, {
|
|
4317
4020
|
key: "classify",
|
|
4318
|
-
value: function classify(
|
|
4021
|
+
value: function classify(_ref13) {
|
|
4319
4022
|
let {
|
|
4320
4023
|
name
|
|
4321
|
-
} =
|
|
4322
|
-
query = _objectWithoutPropertiesLoose(
|
|
4024
|
+
} = _ref13,
|
|
4025
|
+
query = _objectWithoutPropertiesLoose(_ref13, _excluded13);
|
|
4323
4026
|
|
|
4324
4027
|
return this.http.get("/layers/" + name + "/classify", query).json();
|
|
4325
4028
|
}
|
|
@@ -4336,11 +4039,11 @@ let LayersService = /*#__PURE__*/function (_Service) {
|
|
|
4336
4039
|
|
|
4337
4040
|
}, {
|
|
4338
4041
|
key: "distincts",
|
|
4339
|
-
value: function distincts(
|
|
4042
|
+
value: function distincts(_ref14) {
|
|
4340
4043
|
let {
|
|
4341
4044
|
name
|
|
4342
|
-
} =
|
|
4343
|
-
query = _objectWithoutPropertiesLoose(
|
|
4045
|
+
} = _ref14,
|
|
4046
|
+
query = _objectWithoutPropertiesLoose(_ref14, _excluded14);
|
|
4344
4047
|
|
|
4345
4048
|
return this.http.get("/layers/" + name + "/distincts", query).json();
|
|
4346
4049
|
}
|
|
@@ -4357,11 +4060,11 @@ let LayersService = /*#__PURE__*/function (_Service) {
|
|
|
4357
4060
|
|
|
4358
4061
|
}, {
|
|
4359
4062
|
key: "aggregateAttribute",
|
|
4360
|
-
value: function aggregateAttribute(
|
|
4063
|
+
value: function aggregateAttribute(_ref15) {
|
|
4361
4064
|
let {
|
|
4362
4065
|
name
|
|
4363
|
-
} =
|
|
4364
|
-
query = _objectWithoutPropertiesLoose(
|
|
4066
|
+
} = _ref15,
|
|
4067
|
+
query = _objectWithoutPropertiesLoose(_ref15, _excluded15);
|
|
4365
4068
|
|
|
4366
4069
|
return this.http.get("/layers/" + name + "/aggregate-values", query).json();
|
|
4367
4070
|
}
|
|
@@ -4378,11 +4081,11 @@ let LayersService = /*#__PURE__*/function (_Service) {
|
|
|
4378
4081
|
|
|
4379
4082
|
}, {
|
|
4380
4083
|
key: "getFilteredFeaturesCount",
|
|
4381
|
-
value: function getFilteredFeaturesCount(
|
|
4084
|
+
value: function getFilteredFeaturesCount(_ref16) {
|
|
4382
4085
|
let {
|
|
4383
4086
|
name
|
|
4384
|
-
} =
|
|
4385
|
-
query = _objectWithoutPropertiesLoose(
|
|
4087
|
+
} = _ref16,
|
|
4088
|
+
query = _objectWithoutPropertiesLoose(_ref16, _excluded16);
|
|
4386
4089
|
|
|
4387
4090
|
return this.http.get("/layers/" + name + "/features/count", query).json();
|
|
4388
4091
|
}
|
|
@@ -4418,22 +4121,6 @@ let LayersService = /*#__PURE__*/function (_Service) {
|
|
|
4418
4121
|
value: function editAttributes(name, data) {
|
|
4419
4122
|
return this.http.post("/layers/" + name + "/features/edit-attributes", data).json();
|
|
4420
4123
|
}
|
|
4421
|
-
/**
|
|
4422
|
-
* No description
|
|
4423
|
-
*
|
|
4424
|
-
* @tags Layers
|
|
4425
|
-
* @name SelectFeatures
|
|
4426
|
-
* @operationId LayersController_SelectFeatures
|
|
4427
|
-
* @summary Selects features from the given layers by the visual point on the map.
|
|
4428
|
-
* @request GET:/layers/features/select
|
|
4429
|
-
* @response `200` OK
|
|
4430
|
-
*/
|
|
4431
|
-
|
|
4432
|
-
}, {
|
|
4433
|
-
key: "selectFeatures",
|
|
4434
|
-
value: function selectFeatures(query) {
|
|
4435
|
-
return this.http.get("/layers/features/select", query).json();
|
|
4436
|
-
}
|
|
4437
4124
|
/**
|
|
4438
4125
|
* No description
|
|
4439
4126
|
*
|
|
@@ -4448,11 +4135,11 @@ let LayersService = /*#__PURE__*/function (_Service) {
|
|
|
4448
4135
|
|
|
4449
4136
|
}, {
|
|
4450
4137
|
key: "validateExpression",
|
|
4451
|
-
value: function validateExpression(
|
|
4138
|
+
value: function validateExpression(_ref17) {
|
|
4452
4139
|
let {
|
|
4453
4140
|
layerName
|
|
4454
|
-
} =
|
|
4455
|
-
query = _objectWithoutPropertiesLoose(
|
|
4141
|
+
} = _ref17,
|
|
4142
|
+
query = _objectWithoutPropertiesLoose(_ref17, _excluded17);
|
|
4456
4143
|
|
|
4457
4144
|
return this.http.get("/layers/" + layerName + "/validateExpression", query).json();
|
|
4458
4145
|
}
|
|
@@ -4469,12 +4156,12 @@ let LayersService = /*#__PURE__*/function (_Service) {
|
|
|
4469
4156
|
|
|
4470
4157
|
}, {
|
|
4471
4158
|
key: "getRasterMeta",
|
|
4472
|
-
value: function getRasterMeta(
|
|
4159
|
+
value: function getRasterMeta(_ref18) {
|
|
4473
4160
|
let {
|
|
4474
4161
|
name,
|
|
4475
4162
|
id
|
|
4476
|
-
} =
|
|
4477
|
-
query = _objectWithoutPropertiesLoose(
|
|
4163
|
+
} = _ref18,
|
|
4164
|
+
query = _objectWithoutPropertiesLoose(_ref18, _excluded18);
|
|
4478
4165
|
|
|
4479
4166
|
return this.http.get("/layers/" + name + "/" + id + "/metadata", query).json();
|
|
4480
4167
|
}
|
|
@@ -4558,54 +4245,6 @@ let LayersService = /*#__PURE__*/function (_Service) {
|
|
|
4558
4245
|
value: function getDataLayout(name) {
|
|
4559
4246
|
return this.http.get("/layers/" + name + "/style/sprite.json").then(() => {});
|
|
4560
4247
|
}
|
|
4561
|
-
/**
|
|
4562
|
-
* No description
|
|
4563
|
-
*
|
|
4564
|
-
* @tags Layers
|
|
4565
|
-
* @name GetPreview
|
|
4566
|
-
* @operationId LayersController_GetPreview
|
|
4567
|
-
* @summary Gets preview of resource.
|
|
4568
|
-
* @request GET:/layers/{name}/preview
|
|
4569
|
-
* @response `200` OK
|
|
4570
|
-
*/
|
|
4571
|
-
|
|
4572
|
-
}, {
|
|
4573
|
-
key: "getPreview",
|
|
4574
|
-
value: function getPreview(name) {
|
|
4575
|
-
return this.http.createUrl("/layers/" + name + "/preview");
|
|
4576
|
-
}
|
|
4577
|
-
/**
|
|
4578
|
-
* No description
|
|
4579
|
-
*
|
|
4580
|
-
* @tags Layers
|
|
4581
|
-
* @name SetPreview
|
|
4582
|
-
* @operationId LayersController_SetPreview
|
|
4583
|
-
* @summary Sets preview to the resource.
|
|
4584
|
-
* @request POST:/layers/{name}/preview
|
|
4585
|
-
* @response `200` OK
|
|
4586
|
-
*/
|
|
4587
|
-
|
|
4588
|
-
}, {
|
|
4589
|
-
key: "setPreview",
|
|
4590
|
-
value: function setPreview(name, data) {
|
|
4591
|
-
return this.http.post("/layers/" + name + "/preview", toFormData(data)).json();
|
|
4592
|
-
}
|
|
4593
|
-
/**
|
|
4594
|
-
* No description
|
|
4595
|
-
*
|
|
4596
|
-
* @tags Layers
|
|
4597
|
-
* @name DeletePreview
|
|
4598
|
-
* @operationId LayersController_DeletePreview
|
|
4599
|
-
* @summary Delete resource preview.
|
|
4600
|
-
* @request DELETE:/layers/{name}/preview
|
|
4601
|
-
* @response `200` OK
|
|
4602
|
-
*/
|
|
4603
|
-
|
|
4604
|
-
}, {
|
|
4605
|
-
key: "deletePreview",
|
|
4606
|
-
value: function deletePreview(name) {
|
|
4607
|
-
return this.http.delete("/layers/" + name + "/preview", null).then(() => {});
|
|
4608
|
-
}
|
|
4609
4248
|
/**
|
|
4610
4249
|
* No description
|
|
4611
4250
|
*
|
|
@@ -4654,70 +4293,6 @@ let LayersService = /*#__PURE__*/function (_Service) {
|
|
|
4654
4293
|
value: function getResourceReferences(name) {
|
|
4655
4294
|
return this.http.get("/layers/" + name + "/references").json();
|
|
4656
4295
|
}
|
|
4657
|
-
/**
|
|
4658
|
-
* No description
|
|
4659
|
-
*
|
|
4660
|
-
* @tags Layers
|
|
4661
|
-
* @name GetPermissions
|
|
4662
|
-
* @operationId LayersController_GetPermissions
|
|
4663
|
-
* @summary Returns resource permissions.
|
|
4664
|
-
* @request GET:/layers/{name}/permissions
|
|
4665
|
-
* @response `200` OK
|
|
4666
|
-
*/
|
|
4667
|
-
|
|
4668
|
-
}, {
|
|
4669
|
-
key: "getPermissions",
|
|
4670
|
-
value: function getPermissions(name) {
|
|
4671
|
-
return this.http.get("/layers/" + name + "/permissions").json();
|
|
4672
|
-
}
|
|
4673
|
-
/**
|
|
4674
|
-
* No description
|
|
4675
|
-
*
|
|
4676
|
-
* @tags Layers
|
|
4677
|
-
* @name AddPermissions
|
|
4678
|
-
* @operationId LayersController_AddPermissions
|
|
4679
|
-
* @summary Adds permissions for the layer, combining existing permissions with the given one.
|
|
4680
|
-
* @request POST:/layers/{name}/permissions
|
|
4681
|
-
* @response `200` OK
|
|
4682
|
-
*/
|
|
4683
|
-
|
|
4684
|
-
}, {
|
|
4685
|
-
key: "addPermissions",
|
|
4686
|
-
value: function addPermissions(name, data) {
|
|
4687
|
-
return this.http.post("/layers/" + name + "/permissions", data).json();
|
|
4688
|
-
}
|
|
4689
|
-
/**
|
|
4690
|
-
* No description
|
|
4691
|
-
*
|
|
4692
|
-
* @tags Layers
|
|
4693
|
-
* @name SetPermissions
|
|
4694
|
-
* @operationId LayersController_SetPermissions
|
|
4695
|
-
* @summary Replaces existing access control list for the layer with the given one.
|
|
4696
|
-
* @request PUT:/layers/{name}/permissions
|
|
4697
|
-
* @response `200` OK
|
|
4698
|
-
*/
|
|
4699
|
-
|
|
4700
|
-
}, {
|
|
4701
|
-
key: "setPermissions",
|
|
4702
|
-
value: function setPermissions(name, data) {
|
|
4703
|
-
return this.http.put("/layers/" + name + "/permissions", data).json();
|
|
4704
|
-
}
|
|
4705
|
-
/**
|
|
4706
|
-
* No description
|
|
4707
|
-
*
|
|
4708
|
-
* @tags Layers
|
|
4709
|
-
* @name RemovePermissions
|
|
4710
|
-
* @operationId LayersController_RemovePermissions
|
|
4711
|
-
* @summary Removes permissions for the layer for the given role.
|
|
4712
|
-
* @request DELETE:/layers/{name}/permissions/{role}
|
|
4713
|
-
* @response `200` OK
|
|
4714
|
-
*/
|
|
4715
|
-
|
|
4716
|
-
}, {
|
|
4717
|
-
key: "removePermissions",
|
|
4718
|
-
value: function removePermissions(name, role) {
|
|
4719
|
-
return this.http.delete("/layers/" + name + "/permissions/" + role, null).json();
|
|
4720
|
-
}
|
|
4721
4296
|
}]);
|
|
4722
4297
|
|
|
4723
4298
|
return LayersService;
|
|
@@ -4736,8 +4311,6 @@ function notError(v) {
|
|
|
4736
4311
|
return !isError(v);
|
|
4737
4312
|
}
|
|
4738
4313
|
|
|
4739
|
-
const _excluded$4 = ["remote"],
|
|
4740
|
-
_excluded2$3 = ["remote"];
|
|
4741
4314
|
let Layers = /*#__PURE__*/function (_LayersService) {
|
|
4742
4315
|
_inherits(Layers, _LayersService);
|
|
4743
4316
|
|
|
@@ -4766,46 +4339,6 @@ let Layers = /*#__PURE__*/function (_LayersService) {
|
|
|
4766
4339
|
types: ['LocalTileService', 'RemoteTileService']
|
|
4767
4340
|
}));
|
|
4768
4341
|
}
|
|
4769
|
-
}, {
|
|
4770
|
-
key: "createSubLayer",
|
|
4771
|
-
value: function createSubLayer(configuration) {
|
|
4772
|
-
return this.publishStyledLayerService(configuration);
|
|
4773
|
-
}
|
|
4774
|
-
}, {
|
|
4775
|
-
key: "createTileLayer",
|
|
4776
|
-
value: function createTileLayer(_ref) {
|
|
4777
|
-
let {
|
|
4778
|
-
remote
|
|
4779
|
-
} = _ref,
|
|
4780
|
-
configuration = _objectWithoutPropertiesLoose(_ref, _excluded$4);
|
|
4781
|
-
|
|
4782
|
-
if (remote) {
|
|
4783
|
-
return this.publishRemoteTileService(configuration);
|
|
4784
|
-
}
|
|
4785
|
-
|
|
4786
|
-
return this.publishLocalTileService(configuration);
|
|
4787
|
-
}
|
|
4788
|
-
}, {
|
|
4789
|
-
key: "updateTileLayer",
|
|
4790
|
-
value: function updateTileLayer(_ref2) {
|
|
4791
|
-
let {
|
|
4792
|
-
remote
|
|
4793
|
-
} = _ref2,
|
|
4794
|
-
configuration = _objectWithoutPropertiesLoose(_ref2, _excluded2$3);
|
|
4795
|
-
|
|
4796
|
-
if (remote) {
|
|
4797
|
-
return this.updateRemoteTileService(configuration.name, configuration);
|
|
4798
|
-
}
|
|
4799
|
-
|
|
4800
|
-
return this.updateLocalTileService(configuration.name, configuration);
|
|
4801
|
-
}
|
|
4802
|
-
}, {
|
|
4803
|
-
key: "uploadPreview",
|
|
4804
|
-
value: function uploadPreview(name, file) {
|
|
4805
|
-
return this.setPreview(name, {
|
|
4806
|
-
file
|
|
4807
|
-
});
|
|
4808
|
-
}
|
|
4809
4342
|
}, {
|
|
4810
4343
|
key: "findOne",
|
|
4811
4344
|
value: function findOne(name) {
|
|
@@ -4824,16 +4357,6 @@ let Layers = /*#__PURE__*/function (_LayersService) {
|
|
|
4824
4357
|
value: function findAll(params) {
|
|
4825
4358
|
return this.getLayersList(params);
|
|
4826
4359
|
}
|
|
4827
|
-
}, {
|
|
4828
|
-
key: "create",
|
|
4829
|
-
value: function create(configuration) {
|
|
4830
|
-
return this.publishPostgresLayerService(configuration);
|
|
4831
|
-
}
|
|
4832
|
-
}, {
|
|
4833
|
-
key: "update",
|
|
4834
|
-
value: function update(configuration) {
|
|
4835
|
-
return this.updatePostgresLayerService(configuration.name, configuration);
|
|
4836
|
-
}
|
|
4837
4360
|
}, {
|
|
4838
4361
|
key: "createQueryLayer",
|
|
4839
4362
|
value: function createQueryLayer(configuration) {
|
|
@@ -5049,106 +4572,6 @@ let Names = /*#__PURE__*/function () {
|
|
|
5049
4572
|
return Names;
|
|
5050
4573
|
}();
|
|
5051
4574
|
|
|
5052
|
-
/**
|
|
5053
|
-
* @title Spatial Processing Core API
|
|
5054
|
-
* @version 1.5.1.0
|
|
5055
|
-
* @baseUrl /sp
|
|
5056
|
-
*/
|
|
5057
|
-
|
|
5058
|
-
let NamespaceService = /*#__PURE__*/function (_Service) {
|
|
5059
|
-
_inherits(NamespaceService, _Service);
|
|
5060
|
-
|
|
5061
|
-
var _super = /*#__PURE__*/_createSuper(NamespaceService);
|
|
5062
|
-
|
|
5063
|
-
function NamespaceService() {
|
|
5064
|
-
_classCallCheck(this, NamespaceService);
|
|
5065
|
-
|
|
5066
|
-
return _super.apply(this, arguments);
|
|
5067
|
-
}
|
|
5068
|
-
|
|
5069
|
-
_createClass(NamespaceService, [{
|
|
5070
|
-
key: "getNamespaces",
|
|
5071
|
-
value:
|
|
5072
|
-
/**
|
|
5073
|
-
* No description
|
|
5074
|
-
*
|
|
5075
|
-
* @tags Namespace
|
|
5076
|
-
* @name GetNamespaces
|
|
5077
|
-
* @operationId NamespaceController_GetNamespacesAsync
|
|
5078
|
-
* @summary Returns the list of existing namespaces, that correspond to the given conditions.
|
|
5079
|
-
* @request GET:/namespaces
|
|
5080
|
-
* @response `200` OK
|
|
5081
|
-
*/
|
|
5082
|
-
function getNamespaces(query) {
|
|
5083
|
-
return this.http.get("/namespaces", query).json();
|
|
5084
|
-
}
|
|
5085
|
-
/**
|
|
5086
|
-
* No description
|
|
5087
|
-
*
|
|
5088
|
-
* @tags Namespace
|
|
5089
|
-
* @name CreateNamespace
|
|
5090
|
-
* @operationId NamespaceController_CreateNamespace
|
|
5091
|
-
* @summary Creates a new namespace.
|
|
5092
|
-
* @request POST:/namespaces
|
|
5093
|
-
* @response `200` OK
|
|
5094
|
-
*/
|
|
5095
|
-
|
|
5096
|
-
}, {
|
|
5097
|
-
key: "createNamespace",
|
|
5098
|
-
value: function createNamespace(query) {
|
|
5099
|
-
return this.http.post("/namespaces", null, query).json();
|
|
5100
|
-
}
|
|
5101
|
-
/**
|
|
5102
|
-
* No description
|
|
5103
|
-
*
|
|
5104
|
-
* @tags Namespace
|
|
5105
|
-
* @name GetNamespace
|
|
5106
|
-
* @operationId NamespaceController_GetNamespaceAsync
|
|
5107
|
-
* @summary Get namespace information.
|
|
5108
|
-
* @request GET:/namespaces/{namespace}
|
|
5109
|
-
* @response `200` OK
|
|
5110
|
-
*/
|
|
5111
|
-
|
|
5112
|
-
}, {
|
|
5113
|
-
key: "getNamespace",
|
|
5114
|
-
value: function getNamespace(namespace) {
|
|
5115
|
-
return this.http.get("/namespaces/" + namespace).json();
|
|
5116
|
-
}
|
|
5117
|
-
/**
|
|
5118
|
-
* No description
|
|
5119
|
-
*
|
|
5120
|
-
* @tags Namespace
|
|
5121
|
-
* @name RemoveNamespace
|
|
5122
|
-
* @operationId NamespaceController_RemoveNamespaceAsync
|
|
5123
|
-
* @summary Remove namespace.
|
|
5124
|
-
* @request DELETE:/namespaces/{namespace}
|
|
5125
|
-
* @response `200` OK
|
|
5126
|
-
*/
|
|
5127
|
-
|
|
5128
|
-
}, {
|
|
5129
|
-
key: "removeNamespace",
|
|
5130
|
-
value: function removeNamespace(namespace) {
|
|
5131
|
-
return this.http.delete("/namespaces/" + namespace, null).then(() => {});
|
|
5132
|
-
}
|
|
5133
|
-
}]);
|
|
5134
|
-
|
|
5135
|
-
return NamespaceService;
|
|
5136
|
-
}(Service);
|
|
5137
|
-
|
|
5138
|
-
let Namespace = /*#__PURE__*/function (_NamespaceService) {
|
|
5139
|
-
_inherits(Namespace, _NamespaceService);
|
|
5140
|
-
|
|
5141
|
-
var _super = /*#__PURE__*/_createSuper(Namespace);
|
|
5142
|
-
|
|
5143
|
-
function Namespace() {
|
|
5144
|
-
_classCallCheck(this, Namespace);
|
|
5145
|
-
|
|
5146
|
-
return _super.apply(this, arguments);
|
|
5147
|
-
}
|
|
5148
|
-
|
|
5149
|
-
return _createClass(Namespace);
|
|
5150
|
-
}(NamespaceService);
|
|
5151
|
-
|
|
5152
4575
|
/**
|
|
5153
4576
|
* @title Spatial Processing Core API
|
|
5154
4577
|
* @version 1.5.1.0
|
|
@@ -5587,7 +5010,7 @@ let Print = /*#__PURE__*/function (_PrintService) {
|
|
|
5587
5010
|
return _createClass(Print);
|
|
5588
5011
|
}(PrintService);
|
|
5589
5012
|
|
|
5590
|
-
const _excluded$
|
|
5013
|
+
const _excluded$4 = ["name"];
|
|
5591
5014
|
/**
|
|
5592
5015
|
* @title Spatial Processing Core API
|
|
5593
5016
|
* @version 1.5.1.0
|
|
@@ -5637,22 +5060,6 @@ let ProjectsService = /*#__PURE__*/function (_Service) {
|
|
|
5637
5060
|
value: function createProject(data) {
|
|
5638
5061
|
return this.http.post("/projects", data).json();
|
|
5639
5062
|
}
|
|
5640
|
-
/**
|
|
5641
|
-
* No description
|
|
5642
|
-
*
|
|
5643
|
-
* @tags Projects
|
|
5644
|
-
* @name SetPermissionsBatch
|
|
5645
|
-
* @operationId ProjectsController_SetPermissionsBatch
|
|
5646
|
-
* @summary Overrides multiply resources permissions in single batch.
|
|
5647
|
-
* @request PUT:/projects
|
|
5648
|
-
* @response `200` OK
|
|
5649
|
-
*/
|
|
5650
|
-
|
|
5651
|
-
}, {
|
|
5652
|
-
key: "setPermissionsBatch",
|
|
5653
|
-
value: function setPermissionsBatch(data) {
|
|
5654
|
-
return this.http.put("/projects", data).then(() => {});
|
|
5655
|
-
}
|
|
5656
5063
|
/**
|
|
5657
5064
|
* No description
|
|
5658
5065
|
*
|
|
@@ -5750,7 +5157,7 @@ let ProjectsService = /*#__PURE__*/function (_Service) {
|
|
|
5750
5157
|
let {
|
|
5751
5158
|
name
|
|
5752
5159
|
} = _ref,
|
|
5753
|
-
query = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
5160
|
+
query = _objectWithoutPropertiesLoose(_ref, _excluded$4);
|
|
5754
5161
|
|
|
5755
5162
|
return this.http.get("/projects/" + name + "/extent", query).json();
|
|
5756
5163
|
}
|
|
@@ -5806,49 +5213,17 @@ let ProjectsService = /*#__PURE__*/function (_Service) {
|
|
|
5806
5213
|
* No description
|
|
5807
5214
|
*
|
|
5808
5215
|
* @tags Projects
|
|
5809
|
-
* @name
|
|
5810
|
-
* @operationId
|
|
5811
|
-
* @summary
|
|
5812
|
-
* @request GET:/projects/{name}/
|
|
5813
|
-
* @response `200` OK
|
|
5814
|
-
*/
|
|
5815
|
-
|
|
5816
|
-
}, {
|
|
5817
|
-
key: "getPreview",
|
|
5818
|
-
value: function getPreview(name) {
|
|
5819
|
-
return this.http.createUrl("/projects/" + name + "/preview");
|
|
5820
|
-
}
|
|
5821
|
-
/**
|
|
5822
|
-
* No description
|
|
5823
|
-
*
|
|
5824
|
-
* @tags Projects
|
|
5825
|
-
* @name SetPreview
|
|
5826
|
-
* @operationId ProjectsController_SetPreview
|
|
5827
|
-
* @summary Sets preview to the resource.
|
|
5828
|
-
* @request POST:/projects/{name}/preview
|
|
5829
|
-
* @response `200` OK
|
|
5830
|
-
*/
|
|
5831
|
-
|
|
5832
|
-
}, {
|
|
5833
|
-
key: "setPreview",
|
|
5834
|
-
value: function setPreview(name, data) {
|
|
5835
|
-
return this.http.post("/projects/" + name + "/preview", toFormData(data)).json();
|
|
5836
|
-
}
|
|
5837
|
-
/**
|
|
5838
|
-
* No description
|
|
5839
|
-
*
|
|
5840
|
-
* @tags Projects
|
|
5841
|
-
* @name DeletePreview
|
|
5842
|
-
* @operationId ProjectsController_DeletePreview
|
|
5843
|
-
* @summary Delete resource preview.
|
|
5844
|
-
* @request DELETE:/projects/{name}/preview
|
|
5216
|
+
* @name GetTilesLayerImageWithFormatAndDpi
|
|
5217
|
+
* @operationId ProjectsController_GetTilesLayerImageWithFormatAndDpi
|
|
5218
|
+
* @summary Render tile.
|
|
5219
|
+
* @request GET:/projects/{name}/tile/{z}/{x}/{y}@{dpi}x.{format}
|
|
5845
5220
|
* @response `200` OK
|
|
5846
5221
|
*/
|
|
5847
5222
|
|
|
5848
5223
|
}, {
|
|
5849
|
-
key: "
|
|
5850
|
-
value: function
|
|
5851
|
-
return this.http.
|
|
5224
|
+
key: "getTilesLayerImageWithFormatAndDpi",
|
|
5225
|
+
value: function getTilesLayerImageWithFormatAndDpi(name, x, y, z, dpi, format) {
|
|
5226
|
+
return this.http.createUrl("/projects/" + name + "/tile/" + z + "/" + x + "/" + y + "@" + dpi + "x." + format);
|
|
5852
5227
|
}
|
|
5853
5228
|
/**
|
|
5854
5229
|
* No description
|
|
@@ -5878,371 +5253,108 @@ let ProjectsService = /*#__PURE__*/function (_Service) {
|
|
|
5878
5253
|
*/
|
|
5879
5254
|
|
|
5880
5255
|
}, {
|
|
5881
|
-
key: "getResourceDependencies",
|
|
5882
|
-
value: function getResourceDependencies(name) {
|
|
5883
|
-
return this.http.get("/projects/" + name + "/dependencies").json();
|
|
5884
|
-
}
|
|
5885
|
-
/**
|
|
5886
|
-
* No description
|
|
5887
|
-
*
|
|
5888
|
-
* @tags Projects
|
|
5889
|
-
* @name GetResourceReferences
|
|
5890
|
-
* @operationId ProjectsController_GetResourceReferences
|
|
5891
|
-
* @summary Returns the resource dependency information.
|
|
5892
|
-
* @request GET:/projects/{name}/references
|
|
5893
|
-
* @response `200` OK
|
|
5894
|
-
*/
|
|
5895
|
-
|
|
5896
|
-
}, {
|
|
5897
|
-
key: "getResourceReferences",
|
|
5898
|
-
value: function getResourceReferences(name) {
|
|
5899
|
-
return this.http.get("/projects/" + name + "/references").json();
|
|
5900
|
-
}
|
|
5901
|
-
/**
|
|
5902
|
-
* No description
|
|
5903
|
-
*
|
|
5904
|
-
* @tags Projects
|
|
5905
|
-
* @name GetPermissions
|
|
5906
|
-
* @operationId ProjectsController_GetPermissions
|
|
5907
|
-
* @summary Returns resource permissions.
|
|
5908
|
-
* @request GET:/projects/{name}/permissions
|
|
5909
|
-
* @response `200` OK
|
|
5910
|
-
*/
|
|
5911
|
-
|
|
5912
|
-
}, {
|
|
5913
|
-
key: "getPermissions",
|
|
5914
|
-
value: function getPermissions(name) {
|
|
5915
|
-
return this.http.get("/projects/" + name + "/permissions").json();
|
|
5916
|
-
}
|
|
5917
|
-
/**
|
|
5918
|
-
* No description
|
|
5919
|
-
*
|
|
5920
|
-
* @tags Projects
|
|
5921
|
-
* @name AddPermissions
|
|
5922
|
-
* @operationId ProjectsController_AddPermissions
|
|
5923
|
-
* @summary Adds permissions for the layer, combining existing permissions with the given one.
|
|
5924
|
-
* @request POST:/projects/{name}/permissions
|
|
5925
|
-
* @response `200` OK
|
|
5926
|
-
*/
|
|
5927
|
-
|
|
5928
|
-
}, {
|
|
5929
|
-
key: "addPermissions",
|
|
5930
|
-
value: function addPermissions(name, data) {
|
|
5931
|
-
return this.http.post("/projects/" + name + "/permissions", data).json();
|
|
5932
|
-
}
|
|
5933
|
-
/**
|
|
5934
|
-
* No description
|
|
5935
|
-
*
|
|
5936
|
-
* @tags Projects
|
|
5937
|
-
* @name SetPermissions
|
|
5938
|
-
* @operationId ProjectsController_SetPermissions
|
|
5939
|
-
* @summary Replaces existing access control list for the layer with the given one.
|
|
5940
|
-
* @request PUT:/projects/{name}/permissions
|
|
5941
|
-
* @response `200` OK
|
|
5942
|
-
*/
|
|
5943
|
-
|
|
5944
|
-
}, {
|
|
5945
|
-
key: "setPermissions",
|
|
5946
|
-
value: function setPermissions(name, data) {
|
|
5947
|
-
return this.http.put("/projects/" + name + "/permissions", data).json();
|
|
5948
|
-
}
|
|
5949
|
-
/**
|
|
5950
|
-
* No description
|
|
5951
|
-
*
|
|
5952
|
-
* @tags Projects
|
|
5953
|
-
* @name RemovePermissions
|
|
5954
|
-
* @operationId ProjectsController_RemovePermissions
|
|
5955
|
-
* @summary Removes permissions for the layer for the given role.
|
|
5956
|
-
* @request DELETE:/projects/{name}/permissions/{role}
|
|
5957
|
-
* @response `200` OK
|
|
5958
|
-
*/
|
|
5959
|
-
|
|
5960
|
-
}, {
|
|
5961
|
-
key: "removePermissions",
|
|
5962
|
-
value: function removePermissions(name, role) {
|
|
5963
|
-
return this.http.delete("/projects/" + name + "/permissions/" + role, null).json();
|
|
5964
|
-
}
|
|
5965
|
-
}]);
|
|
5966
|
-
|
|
5967
|
-
return ProjectsService;
|
|
5968
|
-
}(Service);
|
|
5969
|
-
|
|
5970
|
-
let Projects = /*#__PURE__*/function (_ProjectsService) {
|
|
5971
|
-
_inherits(Projects, _ProjectsService);
|
|
5972
|
-
|
|
5973
|
-
var _super = /*#__PURE__*/_createSuper(Projects);
|
|
5974
|
-
|
|
5975
|
-
function Projects() {
|
|
5976
|
-
_classCallCheck(this, Projects);
|
|
5977
|
-
|
|
5978
|
-
return _super.apply(this, arguments);
|
|
5979
|
-
}
|
|
5980
|
-
|
|
5981
|
-
_createClass(Projects, [{
|
|
5982
|
-
key: "getProjectInfos",
|
|
5983
|
-
value: function getProjectInfos(projects) {
|
|
5984
|
-
return promiseAllIgnoreErrors(projects.map(project => this.getProjectInfo(project)));
|
|
5985
|
-
}
|
|
5986
|
-
}, {
|
|
5987
|
-
key: "getProjectsDeps",
|
|
5988
|
-
value: function getProjectsDeps(proejcts) {
|
|
5989
|
-
return promiseAllIgnoreErrors(proejcts.map(project => this.getResourceDependencies(project)));
|
|
5990
|
-
}
|
|
5991
|
-
}, {
|
|
5992
|
-
key: "uploadPreview",
|
|
5993
|
-
value: function uploadPreview(name, file) {
|
|
5994
|
-
return this.setPreview(name, {
|
|
5995
|
-
file
|
|
5996
|
-
});
|
|
5997
|
-
}
|
|
5998
|
-
}, {
|
|
5999
|
-
key: "findOne",
|
|
6000
|
-
value: function findOne(name) {
|
|
6001
|
-
return this.getProjectInfo(name);
|
|
6002
|
-
}
|
|
6003
|
-
}, {
|
|
6004
|
-
key: "findAll",
|
|
6005
|
-
value: function findAll(params) {
|
|
6006
|
-
return this.getProjectsList(params);
|
|
6007
|
-
}
|
|
6008
|
-
}, {
|
|
6009
|
-
key: "create",
|
|
6010
|
-
value: function create(resource) {
|
|
6011
|
-
return this.createProject(resource);
|
|
6012
|
-
}
|
|
6013
|
-
}, {
|
|
6014
|
-
key: "update",
|
|
6015
|
-
value: function update(resource) {
|
|
6016
|
-
return this.updateProject(resource.name, resource);
|
|
6017
|
-
}
|
|
6018
|
-
}, {
|
|
6019
|
-
key: "remove",
|
|
6020
|
-
value: async function remove(name) {
|
|
6021
|
-
await this.deleteResource(name);
|
|
6022
|
-
return name;
|
|
6023
|
-
}
|
|
6024
|
-
}]);
|
|
6025
|
-
|
|
6026
|
-
return Projects;
|
|
6027
|
-
}(ProjectsService);
|
|
6028
|
-
function isProjectContentItems(v) {
|
|
6029
|
-
return v !== null && v !== undefined;
|
|
6030
|
-
}
|
|
6031
|
-
|
|
6032
|
-
const _excluded$6 = ["id"];
|
|
6033
|
-
/**
|
|
6034
|
-
* @title Spatial Processing Core API
|
|
6035
|
-
* @version 1.5.1.0
|
|
6036
|
-
* @baseUrl /sp
|
|
6037
|
-
*/
|
|
6038
|
-
|
|
6039
|
-
let RemoteTaskManagerService = /*#__PURE__*/function (_Service) {
|
|
6040
|
-
_inherits(RemoteTaskManagerService, _Service);
|
|
6041
|
-
|
|
6042
|
-
var _super = /*#__PURE__*/_createSuper(RemoteTaskManagerService);
|
|
6043
|
-
|
|
6044
|
-
function RemoteTaskManagerService() {
|
|
6045
|
-
_classCallCheck(this, RemoteTaskManagerService);
|
|
6046
|
-
|
|
6047
|
-
return _super.apply(this, arguments);
|
|
6048
|
-
}
|
|
6049
|
-
|
|
6050
|
-
_createClass(RemoteTaskManagerService, [{
|
|
6051
|
-
key: "cancelTask",
|
|
6052
|
-
value:
|
|
6053
|
-
/**
|
|
6054
|
-
* No description
|
|
6055
|
-
*
|
|
6056
|
-
* @tags RemoteTaskManager
|
|
6057
|
-
* @name CancelTask
|
|
6058
|
-
* @operationId RemoteTaskManagerController_CancelTask
|
|
6059
|
-
* @summary Cancel task execution by given id.
|
|
6060
|
-
* @request POST:/scheduler/tasks/{id}/cancel
|
|
6061
|
-
* @response `200` OK
|
|
6062
|
-
*/
|
|
6063
|
-
function cancelTask(id) {
|
|
6064
|
-
return this.http.post("/scheduler/tasks/" + id + "/cancel", null).then(() => {});
|
|
6065
|
-
}
|
|
6066
|
-
/**
|
|
6067
|
-
* No description
|
|
6068
|
-
*
|
|
6069
|
-
* @tags RemoteTaskManager
|
|
6070
|
-
* @name StartCogCreateTask
|
|
6071
|
-
* @operationId RemoteTaskManagerController_StartCogCreateTask
|
|
6072
|
-
* @summary Plans the execution of a 'create raster cog' server task.
|
|
6073
|
-
* @request POST:/scheduler/tasks#type=cogService_create
|
|
6074
|
-
* @response `200` OK
|
|
6075
|
-
*/
|
|
6076
|
-
|
|
6077
|
-
}, {
|
|
6078
|
-
key: "startCogCreateTask",
|
|
6079
|
-
value: function startCogCreateTask(data) {
|
|
6080
|
-
return this.http.post("/scheduler/tasks", data, {
|
|
6081
|
-
type: 'cogService_create'
|
|
6082
|
-
}).text();
|
|
6083
|
-
}
|
|
6084
|
-
/**
|
|
6085
|
-
* No description
|
|
6086
|
-
*
|
|
6087
|
-
* @tags RemoteTaskManager
|
|
6088
|
-
* @name StartRasterVrtTask
|
|
6089
|
-
* @operationId RemoteTaskManagerController_StartRasterVrtTask
|
|
6090
|
-
* @summary Plans the execution of a 'create raster vrt' server task.
|
|
6091
|
-
* @request POST:/scheduler/tasks#type=cogService_vrt
|
|
6092
|
-
* @response `200` OK
|
|
6093
|
-
*/
|
|
6094
|
-
|
|
6095
|
-
}, {
|
|
6096
|
-
key: "startRasterVrtTask",
|
|
6097
|
-
value: function startRasterVrtTask(data) {
|
|
6098
|
-
return this.http.post("/scheduler/tasks", data, {
|
|
6099
|
-
type: 'cogService_vrt'
|
|
6100
|
-
}).text();
|
|
6101
|
-
}
|
|
6102
|
-
/**
|
|
6103
|
-
* No description
|
|
6104
|
-
*
|
|
6105
|
-
* @tags RemoteTaskManager
|
|
6106
|
-
* @name StartNetCdfTask
|
|
6107
|
-
* @operationId RemoteTaskManagerController_StartNetCdfTask
|
|
6108
|
-
* @summary Plans the execution of a 'create raster netcdf' server task.
|
|
6109
|
-
* @request POST:/scheduler/tasks#type=cogService_netcdf
|
|
6110
|
-
* @response `200` OK
|
|
6111
|
-
*/
|
|
6112
|
-
|
|
6113
|
-
}, {
|
|
6114
|
-
key: "startNetCdfTask",
|
|
6115
|
-
value: function startNetCdfTask(data) {
|
|
6116
|
-
return this.http.post("/scheduler/tasks", data, {
|
|
6117
|
-
type: 'cogService_netcdf'
|
|
6118
|
-
}).text();
|
|
6119
|
-
}
|
|
6120
|
-
/**
|
|
6121
|
-
* No description
|
|
6122
|
-
*
|
|
6123
|
-
* @tags RemoteTaskManager
|
|
6124
|
-
* @name StartBufferTask
|
|
6125
|
-
* @operationId RemoteTaskManagerController_StartBufferTask
|
|
6126
|
-
* @summary Plans the execution of a 'create buffers' server task.
|
|
6127
|
-
* @request POST:/scheduler/tasks#type=geoService_buffer
|
|
6128
|
-
* @response `200` OK
|
|
6129
|
-
*/
|
|
6130
|
-
|
|
6131
|
-
}, {
|
|
6132
|
-
key: "startBufferTask",
|
|
6133
|
-
value: function startBufferTask(data) {
|
|
6134
|
-
return this.http.post("/scheduler/tasks", data, {
|
|
6135
|
-
type: 'geoService_buffer'
|
|
6136
|
-
}).text();
|
|
6137
|
-
}
|
|
6138
|
-
/**
|
|
6139
|
-
* No description
|
|
6140
|
-
*
|
|
6141
|
-
* @tags RemoteTaskManager
|
|
6142
|
-
* @name StartCopyTableTask
|
|
6143
|
-
* @operationId RemoteTaskManagerController_StartCopyTableTask
|
|
6144
|
-
* @summary Plans the execution of a 'copy table' server task.
|
|
6145
|
-
* @request POST:/scheduler/tasks#type=geoService_copy
|
|
6146
|
-
* @response `200` OK
|
|
6147
|
-
*/
|
|
6148
|
-
|
|
6149
|
-
}, {
|
|
6150
|
-
key: "startCopyTableTask",
|
|
6151
|
-
value: function startCopyTableTask(data) {
|
|
6152
|
-
return this.http.post("/scheduler/tasks", data, {
|
|
6153
|
-
type: 'geoService_copy'
|
|
6154
|
-
}).text();
|
|
6155
|
-
}
|
|
6156
|
-
/**
|
|
6157
|
-
* No description
|
|
6158
|
-
*
|
|
6159
|
-
* @tags RemoteTaskManager
|
|
6160
|
-
* @name StartUnionTask
|
|
6161
|
-
* @operationId RemoteTaskManagerController_StartUnionTask
|
|
6162
|
-
* @summary Plans the execution of a 'create union' server task.
|
|
6163
|
-
* @request POST:/scheduler/tasks#type=geoService_union
|
|
6164
|
-
* @response `200` OK
|
|
6165
|
-
*/
|
|
6166
|
-
|
|
6167
|
-
}, {
|
|
6168
|
-
key: "startUnionTask",
|
|
6169
|
-
value: function startUnionTask(data) {
|
|
6170
|
-
return this.http.post("/scheduler/tasks", data, {
|
|
6171
|
-
type: 'geoService_union'
|
|
6172
|
-
}).text();
|
|
6173
|
-
}
|
|
6174
|
-
/**
|
|
6175
|
-
* No description
|
|
6176
|
-
*
|
|
6177
|
-
* @tags RemoteTaskManager
|
|
6178
|
-
* @name StartOverlayTask
|
|
6179
|
-
* @operationId RemoteTaskManagerController_StartOverlayTask
|
|
6180
|
-
* @summary Plans the execution of a 'create overlay' server task.
|
|
6181
|
-
* @request POST:/scheduler/tasks#type=geoService_overlay
|
|
6182
|
-
* @response `200` OK
|
|
6183
|
-
*/
|
|
6184
|
-
|
|
6185
|
-
}, {
|
|
6186
|
-
key: "startOverlayTask",
|
|
6187
|
-
value: function startOverlayTask(data) {
|
|
6188
|
-
return this.http.post("/scheduler/tasks", data, {
|
|
6189
|
-
type: 'geoService_overlay'
|
|
6190
|
-
}).text();
|
|
6191
|
-
}
|
|
6192
|
-
/**
|
|
6193
|
-
* No description
|
|
6194
|
-
*
|
|
6195
|
-
* @tags RemoteTaskManager
|
|
6196
|
-
* @name StartCopyTask
|
|
6197
|
-
* @operationId RemoteTaskManagerController_StartCopyTask
|
|
6198
|
-
* @summary Plans the execution of a 'copy storages' server task.
|
|
6199
|
-
* @request POST:/scheduler/tasks#type=copyTask
|
|
6200
|
-
* @response `200` OK
|
|
6201
|
-
*/
|
|
6202
|
-
|
|
6203
|
-
}, {
|
|
6204
|
-
key: "startCopyTask",
|
|
6205
|
-
value: function startCopyTask(data) {
|
|
6206
|
-
return this.http.post("/scheduler/tasks", data, {
|
|
6207
|
-
type: 'copyTask'
|
|
6208
|
-
}).text();
|
|
6209
|
-
}
|
|
6210
|
-
/**
|
|
6211
|
-
* No description
|
|
6212
|
-
*
|
|
6213
|
-
* @tags RemoteTaskManager
|
|
6214
|
-
* @name StartAvailableAreaTask
|
|
6215
|
-
* @operationId RemoteTaskManagerController_StartAvailableAreaTask
|
|
6216
|
-
* @summary Plans the execution of a 'create available area' server task.
|
|
6217
|
-
* @request POST:/scheduler/tasks#type=availabilityArea
|
|
6218
|
-
* @response `200` OK
|
|
6219
|
-
*/
|
|
6220
|
-
|
|
6221
|
-
}, {
|
|
6222
|
-
key: "startAvailableAreaTask",
|
|
6223
|
-
value: function startAvailableAreaTask(data) {
|
|
6224
|
-
return this.http.post("/scheduler/tasks", data, {
|
|
6225
|
-
type: 'availabilityArea'
|
|
6226
|
-
}).text();
|
|
5256
|
+
key: "getResourceDependencies",
|
|
5257
|
+
value: function getResourceDependencies(name) {
|
|
5258
|
+
return this.http.get("/projects/" + name + "/dependencies").json();
|
|
6227
5259
|
}
|
|
6228
5260
|
/**
|
|
6229
5261
|
* No description
|
|
6230
5262
|
*
|
|
6231
|
-
* @tags
|
|
6232
|
-
* @name
|
|
6233
|
-
* @operationId
|
|
6234
|
-
* @summary
|
|
6235
|
-
* @request
|
|
5263
|
+
* @tags Projects
|
|
5264
|
+
* @name GetResourceReferences
|
|
5265
|
+
* @operationId ProjectsController_GetResourceReferences
|
|
5266
|
+
* @summary Returns the resource dependency information.
|
|
5267
|
+
* @request GET:/projects/{name}/references
|
|
6236
5268
|
* @response `200` OK
|
|
6237
5269
|
*/
|
|
6238
5270
|
|
|
6239
5271
|
}, {
|
|
6240
|
-
key: "
|
|
6241
|
-
value: function
|
|
6242
|
-
return this.http.
|
|
6243
|
-
|
|
6244
|
-
|
|
5272
|
+
key: "getResourceReferences",
|
|
5273
|
+
value: function getResourceReferences(name) {
|
|
5274
|
+
return this.http.get("/projects/" + name + "/references").json();
|
|
5275
|
+
}
|
|
5276
|
+
}]);
|
|
5277
|
+
|
|
5278
|
+
return ProjectsService;
|
|
5279
|
+
}(Service);
|
|
5280
|
+
|
|
5281
|
+
let Projects = /*#__PURE__*/function (_ProjectsService) {
|
|
5282
|
+
_inherits(Projects, _ProjectsService);
|
|
5283
|
+
|
|
5284
|
+
var _super = /*#__PURE__*/_createSuper(Projects);
|
|
5285
|
+
|
|
5286
|
+
function Projects() {
|
|
5287
|
+
_classCallCheck(this, Projects);
|
|
5288
|
+
|
|
5289
|
+
return _super.apply(this, arguments);
|
|
5290
|
+
}
|
|
5291
|
+
|
|
5292
|
+
_createClass(Projects, [{
|
|
5293
|
+
key: "getProjectInfos",
|
|
5294
|
+
value: function getProjectInfos(projects) {
|
|
5295
|
+
return promiseAllIgnoreErrors(projects.map(project => this.getProjectInfo(project)));
|
|
5296
|
+
}
|
|
5297
|
+
}, {
|
|
5298
|
+
key: "getProjectsDeps",
|
|
5299
|
+
value: function getProjectsDeps(proejcts) {
|
|
5300
|
+
return promiseAllIgnoreErrors(proejcts.map(project => this.getResourceDependencies(project)));
|
|
5301
|
+
}
|
|
5302
|
+
}, {
|
|
5303
|
+
key: "findOne",
|
|
5304
|
+
value: function findOne(name) {
|
|
5305
|
+
return this.getProjectInfo(name);
|
|
5306
|
+
}
|
|
5307
|
+
}, {
|
|
5308
|
+
key: "findAll",
|
|
5309
|
+
value: function findAll(params) {
|
|
5310
|
+
return this.getProjectsList(params);
|
|
5311
|
+
}
|
|
5312
|
+
}, {
|
|
5313
|
+
key: "create",
|
|
5314
|
+
value: function create(resource) {
|
|
5315
|
+
return this.createProject(resource);
|
|
5316
|
+
}
|
|
5317
|
+
}, {
|
|
5318
|
+
key: "update",
|
|
5319
|
+
value: function update(resource) {
|
|
5320
|
+
return this.updateProject(resource.name, resource);
|
|
5321
|
+
}
|
|
5322
|
+
}, {
|
|
5323
|
+
key: "remove",
|
|
5324
|
+
value: async function remove(name) {
|
|
5325
|
+
await this.deleteResource(name);
|
|
5326
|
+
return name;
|
|
6245
5327
|
}
|
|
5328
|
+
}]);
|
|
5329
|
+
|
|
5330
|
+
return Projects;
|
|
5331
|
+
}(ProjectsService);
|
|
5332
|
+
function isProjectContentItems(v) {
|
|
5333
|
+
return v !== null && v !== undefined;
|
|
5334
|
+
}
|
|
5335
|
+
|
|
5336
|
+
const _excluded$5 = ["id"],
|
|
5337
|
+
_excluded2$3 = ["id"];
|
|
5338
|
+
/**
|
|
5339
|
+
* @title Spatial Processing Core API
|
|
5340
|
+
* @version 1.5.1.0
|
|
5341
|
+
* @baseUrl /sp
|
|
5342
|
+
*/
|
|
5343
|
+
|
|
5344
|
+
let RemoteTaskManagerService = /*#__PURE__*/function (_Service) {
|
|
5345
|
+
_inherits(RemoteTaskManagerService, _Service);
|
|
5346
|
+
|
|
5347
|
+
var _super = /*#__PURE__*/_createSuper(RemoteTaskManagerService);
|
|
5348
|
+
|
|
5349
|
+
function RemoteTaskManagerService() {
|
|
5350
|
+
_classCallCheck(this, RemoteTaskManagerService);
|
|
5351
|
+
|
|
5352
|
+
return _super.apply(this, arguments);
|
|
5353
|
+
}
|
|
5354
|
+
|
|
5355
|
+
_createClass(RemoteTaskManagerService, [{
|
|
5356
|
+
key: "get",
|
|
5357
|
+
value:
|
|
6246
5358
|
/**
|
|
6247
5359
|
* No description
|
|
6248
5360
|
*
|
|
@@ -6253,11 +5365,8 @@ let RemoteTaskManagerService = /*#__PURE__*/function (_Service) {
|
|
|
6253
5365
|
* @request GET:/scheduler/task/{id}/subtasks
|
|
6254
5366
|
* @response `200` OK
|
|
6255
5367
|
*/
|
|
6256
|
-
|
|
6257
|
-
|
|
6258
|
-
key: "get",
|
|
6259
|
-
value: function get(id) {
|
|
6260
|
-
return this.http.get("/scheduler/task/" + id + "/subtasks").then(() => {});
|
|
5368
|
+
function get(id) {
|
|
5369
|
+
return this.http.get("/scheduler/task/" + id + "/subtasks").json();
|
|
6261
5370
|
}
|
|
6262
5371
|
/**
|
|
6263
5372
|
* No description
|
|
@@ -6273,7 +5382,7 @@ let RemoteTaskManagerService = /*#__PURE__*/function (_Service) {
|
|
|
6273
5382
|
}, {
|
|
6274
5383
|
key: "stop",
|
|
6275
5384
|
value: function stop(id) {
|
|
6276
|
-
return this.http.post("/scheduler/task/" + id + "/stop", null).
|
|
5385
|
+
return this.http.post("/scheduler/task/" + id + "/stop", null).text();
|
|
6277
5386
|
}
|
|
6278
5387
|
/**
|
|
6279
5388
|
* No description
|
|
@@ -6305,7 +5414,7 @@ let RemoteTaskManagerService = /*#__PURE__*/function (_Service) {
|
|
|
6305
5414
|
}, {
|
|
6306
5415
|
key: "getTaskPrototypes",
|
|
6307
5416
|
value: function getTaskPrototypes(query) {
|
|
6308
|
-
return this.http.get("/scheduler", query).
|
|
5417
|
+
return this.http.get("/scheduler", query).json();
|
|
6309
5418
|
}
|
|
6310
5419
|
/**
|
|
6311
5420
|
* No description
|
|
@@ -6321,7 +5430,7 @@ let RemoteTaskManagerService = /*#__PURE__*/function (_Service) {
|
|
|
6321
5430
|
}, {
|
|
6322
5431
|
key: "updateTaskPrototype",
|
|
6323
5432
|
value: function updateTaskPrototype(id, data) {
|
|
6324
|
-
return this.http.put("/scheduler/" + id, data).
|
|
5433
|
+
return this.http.put("/scheduler/" + id, data).text();
|
|
6325
5434
|
}
|
|
6326
5435
|
/**
|
|
6327
5436
|
* No description
|
|
@@ -6337,7 +5446,7 @@ let RemoteTaskManagerService = /*#__PURE__*/function (_Service) {
|
|
|
6337
5446
|
}, {
|
|
6338
5447
|
key: "delete",
|
|
6339
5448
|
value: function _delete(id) {
|
|
6340
|
-
return this.http.delete("/scheduler/" + id, null).
|
|
5449
|
+
return this.http.delete("/scheduler/" + id, null).text();
|
|
6341
5450
|
}
|
|
6342
5451
|
/**
|
|
6343
5452
|
* No description
|
|
@@ -6353,7 +5462,7 @@ let RemoteTaskManagerService = /*#__PURE__*/function (_Service) {
|
|
|
6353
5462
|
}, {
|
|
6354
5463
|
key: "setEnable",
|
|
6355
5464
|
value: function setEnable(id, enable) {
|
|
6356
|
-
return this.http.post("/scheduler/" + id + "/enable/" + enable, null).
|
|
5465
|
+
return this.http.post("/scheduler/" + id + "/enable/" + enable, null).text();
|
|
6357
5466
|
}
|
|
6358
5467
|
/**
|
|
6359
5468
|
* No description
|
|
@@ -6372,9 +5481,9 @@ let RemoteTaskManagerService = /*#__PURE__*/function (_Service) {
|
|
|
6372
5481
|
let {
|
|
6373
5482
|
id
|
|
6374
5483
|
} = _ref,
|
|
6375
|
-
query = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
5484
|
+
query = _objectWithoutPropertiesLoose(_ref, _excluded$5);
|
|
6376
5485
|
|
|
6377
|
-
return this.http.get("/scheduler/" + id + "/tasks", query).
|
|
5486
|
+
return this.http.get("/scheduler/" + id + "/tasks", query).json();
|
|
6378
5487
|
}
|
|
6379
5488
|
/**
|
|
6380
5489
|
* No description
|
|
@@ -6390,7 +5499,7 @@ let RemoteTaskManagerService = /*#__PURE__*/function (_Service) {
|
|
|
6390
5499
|
}, {
|
|
6391
5500
|
key: "startTask",
|
|
6392
5501
|
value: function startTask(id, taskId) {
|
|
6393
|
-
return this.http.post("/scheduler/" + id + "/start/" + taskId, null).
|
|
5502
|
+
return this.http.post("/scheduler/" + id + "/start/" + taskId, null).json();
|
|
6394
5503
|
}
|
|
6395
5504
|
/**
|
|
6396
5505
|
* No description
|
|
@@ -6406,7 +5515,80 @@ let RemoteTaskManagerService = /*#__PURE__*/function (_Service) {
|
|
|
6406
5515
|
}, {
|
|
6407
5516
|
key: "startTask1",
|
|
6408
5517
|
value: function startTask1(id) {
|
|
6409
|
-
return this.http.post("/scheduler/" + id + "/start", null).
|
|
5518
|
+
return this.http.post("/scheduler/" + id + "/start", null).json();
|
|
5519
|
+
}
|
|
5520
|
+
/**
|
|
5521
|
+
* No description
|
|
5522
|
+
*
|
|
5523
|
+
* @tags RemoteTaskManager
|
|
5524
|
+
* @name GetTaskResource
|
|
5525
|
+
* @operationId RemoteTaskManagerController_GetTaskResource
|
|
5526
|
+
* @summary Shows SubTask in Task.
|
|
5527
|
+
* @request GET:/scheduler/taskresource/{id}
|
|
5528
|
+
* @response `200` OK
|
|
5529
|
+
*/
|
|
5530
|
+
|
|
5531
|
+
}, {
|
|
5532
|
+
key: "getTaskResource",
|
|
5533
|
+
value: function getTaskResource(_ref2) {
|
|
5534
|
+
let {
|
|
5535
|
+
id
|
|
5536
|
+
} = _ref2,
|
|
5537
|
+
query = _objectWithoutPropertiesLoose(_ref2, _excluded2$3);
|
|
5538
|
+
|
|
5539
|
+
return this.http.get("/scheduler/taskresource/" + id, query).json();
|
|
5540
|
+
}
|
|
5541
|
+
/**
|
|
5542
|
+
* No description
|
|
5543
|
+
*
|
|
5544
|
+
* @tags RemoteTaskManager
|
|
5545
|
+
* @name CreateTaskResource
|
|
5546
|
+
* @operationId RemoteTaskManagerController_CreateTaskResource
|
|
5547
|
+
* @summary Create task resource.
|
|
5548
|
+
* @request POST:/scheduler/taskresource
|
|
5549
|
+
* @response `200` OK
|
|
5550
|
+
*/
|
|
5551
|
+
|
|
5552
|
+
}, {
|
|
5553
|
+
key: "createTaskResource",
|
|
5554
|
+
value: function createTaskResource(data) {
|
|
5555
|
+
return this.http.post("/scheduler/taskresource", data).text();
|
|
5556
|
+
}
|
|
5557
|
+
/**
|
|
5558
|
+
* No description
|
|
5559
|
+
*
|
|
5560
|
+
* @tags RemoteTaskManager
|
|
5561
|
+
* @name UpdatePythonTaskResource
|
|
5562
|
+
* @operationId RemoteTaskManagerController_UpdatePythonTaskResource
|
|
5563
|
+
* @summary Update python task resource.
|
|
5564
|
+
* @request PATCH:/scheduler/taskresource/{id}#type=PythonTask
|
|
5565
|
+
* @response `200` OK
|
|
5566
|
+
*/
|
|
5567
|
+
|
|
5568
|
+
}, {
|
|
5569
|
+
key: "updatePythonTaskResource",
|
|
5570
|
+
value: function updatePythonTaskResource(id, data) {
|
|
5571
|
+
return this.http.patch("/scheduler/taskresource/" + id, data, {
|
|
5572
|
+
type: 'PythonTask'
|
|
5573
|
+
}).then(() => {});
|
|
5574
|
+
}
|
|
5575
|
+
/**
|
|
5576
|
+
* No description
|
|
5577
|
+
*
|
|
5578
|
+
* @tags RemoteTaskManager
|
|
5579
|
+
* @name UpdateSpTaskResource
|
|
5580
|
+
* @operationId RemoteTaskManagerController_UpdateSpTaskResource
|
|
5581
|
+
* @summary Update sp task resource.
|
|
5582
|
+
* @request PATCH:/scheduler/taskresource/{id}#type=SpTask
|
|
5583
|
+
* @response `200` OK
|
|
5584
|
+
*/
|
|
5585
|
+
|
|
5586
|
+
}, {
|
|
5587
|
+
key: "updateSpTaskResource",
|
|
5588
|
+
value: function updateSpTaskResource(id, data) {
|
|
5589
|
+
return this.http.patch("/scheduler/taskresource/" + id, data, {
|
|
5590
|
+
type: 'SpTask'
|
|
5591
|
+
}).then(() => {});
|
|
6410
5592
|
}
|
|
6411
5593
|
/**
|
|
6412
5594
|
* No description
|
|
@@ -6440,6 +5622,22 @@ let RemoteTaskManagerService = /*#__PURE__*/function (_Service) {
|
|
|
6440
5622
|
value: function post(data) {
|
|
6441
5623
|
return this.http.post("/scheduler/worker", data).json();
|
|
6442
5624
|
}
|
|
5625
|
+
/**
|
|
5626
|
+
* No description
|
|
5627
|
+
*
|
|
5628
|
+
* @tags RemoteTaskManager
|
|
5629
|
+
* @name GetWorker
|
|
5630
|
+
* @operationId RemoteTaskManagerController_GetWorker
|
|
5631
|
+
* @summary Get worker info by type.
|
|
5632
|
+
* @request GET:/scheduler/worker/{type}
|
|
5633
|
+
* @response `200` OK
|
|
5634
|
+
*/
|
|
5635
|
+
|
|
5636
|
+
}, {
|
|
5637
|
+
key: "getWorker",
|
|
5638
|
+
value: function getWorker(type) {
|
|
5639
|
+
return this.http.get("/scheduler/worker/" + type).json();
|
|
5640
|
+
}
|
|
6443
5641
|
}]);
|
|
6444
5642
|
|
|
6445
5643
|
return RemoteTaskManagerService;
|
|
@@ -7109,10 +6307,9 @@ let Styles = /*#__PURE__*/function (_StyleService) {
|
|
|
7109
6307
|
return _createClass(Styles);
|
|
7110
6308
|
}(StyleService);
|
|
7111
6309
|
|
|
7112
|
-
const _excluded$
|
|
6310
|
+
const _excluded$6 = ["name"],
|
|
7113
6311
|
_excluded2$4 = ["name"],
|
|
7114
|
-
_excluded3$3 = ["name"]
|
|
7115
|
-
_excluded4$2 = ["name"];
|
|
6312
|
+
_excluded3$3 = ["name"];
|
|
7116
6313
|
/**
|
|
7117
6314
|
* @title Spatial Processing Core API
|
|
7118
6315
|
* @version 1.5.1.0
|
|
@@ -7162,22 +6359,6 @@ let TablesService = /*#__PURE__*/function (_Service) {
|
|
|
7162
6359
|
value: function createTable(data) {
|
|
7163
6360
|
return this.http.post("/tables", data).json();
|
|
7164
6361
|
}
|
|
7165
|
-
/**
|
|
7166
|
-
* No description
|
|
7167
|
-
*
|
|
7168
|
-
* @tags Tables
|
|
7169
|
-
* @name SetPermissionsBatch
|
|
7170
|
-
* @operationId TablesController_SetPermissionsBatch
|
|
7171
|
-
* @summary Overrides multiply resources permissions in single batch.
|
|
7172
|
-
* @request PUT:/tables
|
|
7173
|
-
* @response `200` OK
|
|
7174
|
-
*/
|
|
7175
|
-
|
|
7176
|
-
}, {
|
|
7177
|
-
key: "setPermissionsBatch",
|
|
7178
|
-
value: function setPermissionsBatch(data) {
|
|
7179
|
-
return this.http.put("/tables", data).then(() => {});
|
|
7180
|
-
}
|
|
7181
6362
|
/**
|
|
7182
6363
|
* No description
|
|
7183
6364
|
*
|
|
@@ -7291,7 +6472,7 @@ let TablesService = /*#__PURE__*/function (_Service) {
|
|
|
7291
6472
|
let {
|
|
7292
6473
|
name
|
|
7293
6474
|
} = _ref,
|
|
7294
|
-
query = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
6475
|
+
query = _objectWithoutPropertiesLoose(_ref, _excluded$6);
|
|
7295
6476
|
|
|
7296
6477
|
return this.http.get("/tables/" + name + "/data", query).json();
|
|
7297
6478
|
}
|
|
@@ -7353,27 +6534,6 @@ let TablesService = /*#__PURE__*/function (_Service) {
|
|
|
7353
6534
|
|
|
7354
6535
|
return this.http.delete("/tables/" + name + "/data", null, query).then(() => {});
|
|
7355
6536
|
}
|
|
7356
|
-
/**
|
|
7357
|
-
* No description
|
|
7358
|
-
*
|
|
7359
|
-
* @tags Tables
|
|
7360
|
-
* @name GetUniqueDataRows
|
|
7361
|
-
* @operationId TablesController_GetUniqueDataRowsAsync
|
|
7362
|
-
* @summary Returns a single data row for each unique value defined by uniqueColumn.
|
|
7363
|
-
* @request GET:/tables/{name}/data/unique-values
|
|
7364
|
-
* @response `200` OK
|
|
7365
|
-
*/
|
|
7366
|
-
|
|
7367
|
-
}, {
|
|
7368
|
-
key: "getUniqueDataRows",
|
|
7369
|
-
value: function getUniqueDataRows(_ref4) {
|
|
7370
|
-
let {
|
|
7371
|
-
name
|
|
7372
|
-
} = _ref4,
|
|
7373
|
-
query = _objectWithoutPropertiesLoose(_ref4, _excluded4$2);
|
|
7374
|
-
|
|
7375
|
-
return this.http.get("/tables/" + name + "/data/unique-values", query).json();
|
|
7376
|
-
}
|
|
7377
6537
|
/**
|
|
7378
6538
|
* No description
|
|
7379
6539
|
*
|
|
@@ -7438,54 +6598,6 @@ let TablesService = /*#__PURE__*/function (_Service) {
|
|
|
7438
6598
|
value: function createViewFromQuery(data) {
|
|
7439
6599
|
return this.http.post("/tables/fromQuery", data).json();
|
|
7440
6600
|
}
|
|
7441
|
-
/**
|
|
7442
|
-
* No description
|
|
7443
|
-
*
|
|
7444
|
-
* @tags Tables
|
|
7445
|
-
* @name GetPreview
|
|
7446
|
-
* @operationId TablesController_GetPreview
|
|
7447
|
-
* @summary Gets preview of resource.
|
|
7448
|
-
* @request GET:/tables/{name}/preview
|
|
7449
|
-
* @response `200` OK
|
|
7450
|
-
*/
|
|
7451
|
-
|
|
7452
|
-
}, {
|
|
7453
|
-
key: "getPreview",
|
|
7454
|
-
value: function getPreview(name) {
|
|
7455
|
-
return this.http.createUrl("/tables/" + name + "/preview");
|
|
7456
|
-
}
|
|
7457
|
-
/**
|
|
7458
|
-
* No description
|
|
7459
|
-
*
|
|
7460
|
-
* @tags Tables
|
|
7461
|
-
* @name SetPreview
|
|
7462
|
-
* @operationId TablesController_SetPreview
|
|
7463
|
-
* @summary Sets preview to the resource.
|
|
7464
|
-
* @request POST:/tables/{name}/preview
|
|
7465
|
-
* @response `200` OK
|
|
7466
|
-
*/
|
|
7467
|
-
|
|
7468
|
-
}, {
|
|
7469
|
-
key: "setPreview",
|
|
7470
|
-
value: function setPreview(name, data) {
|
|
7471
|
-
return this.http.post("/tables/" + name + "/preview", toFormData(data)).json();
|
|
7472
|
-
}
|
|
7473
|
-
/**
|
|
7474
|
-
* No description
|
|
7475
|
-
*
|
|
7476
|
-
* @tags Tables
|
|
7477
|
-
* @name DeletePreview
|
|
7478
|
-
* @operationId TablesController_DeletePreview
|
|
7479
|
-
* @summary Delete resource preview.
|
|
7480
|
-
* @request DELETE:/tables/{name}/preview
|
|
7481
|
-
* @response `200` OK
|
|
7482
|
-
*/
|
|
7483
|
-
|
|
7484
|
-
}, {
|
|
7485
|
-
key: "deletePreview",
|
|
7486
|
-
value: function deletePreview(name) {
|
|
7487
|
-
return this.http.delete("/tables/" + name + "/preview", null).then(() => {});
|
|
7488
|
-
}
|
|
7489
6601
|
/**
|
|
7490
6602
|
* No description
|
|
7491
6603
|
*
|
|
@@ -7534,70 +6646,6 @@ let TablesService = /*#__PURE__*/function (_Service) {
|
|
|
7534
6646
|
value: function getResourceReferences(name) {
|
|
7535
6647
|
return this.http.get("/tables/" + name + "/references").json();
|
|
7536
6648
|
}
|
|
7537
|
-
/**
|
|
7538
|
-
* No description
|
|
7539
|
-
*
|
|
7540
|
-
* @tags Tables
|
|
7541
|
-
* @name GetPermissions
|
|
7542
|
-
* @operationId TablesController_GetPermissions
|
|
7543
|
-
* @summary Returns resource permissions.
|
|
7544
|
-
* @request GET:/tables/{name}/permissions
|
|
7545
|
-
* @response `200` OK
|
|
7546
|
-
*/
|
|
7547
|
-
|
|
7548
|
-
}, {
|
|
7549
|
-
key: "getPermissions",
|
|
7550
|
-
value: function getPermissions(name) {
|
|
7551
|
-
return this.http.get("/tables/" + name + "/permissions").json();
|
|
7552
|
-
}
|
|
7553
|
-
/**
|
|
7554
|
-
* No description
|
|
7555
|
-
*
|
|
7556
|
-
* @tags Tables
|
|
7557
|
-
* @name AddPermissions
|
|
7558
|
-
* @operationId TablesController_AddPermissions
|
|
7559
|
-
* @summary Adds permissions for the layer, combining existing permissions with the given one.
|
|
7560
|
-
* @request POST:/tables/{name}/permissions
|
|
7561
|
-
* @response `200` OK
|
|
7562
|
-
*/
|
|
7563
|
-
|
|
7564
|
-
}, {
|
|
7565
|
-
key: "addPermissions",
|
|
7566
|
-
value: function addPermissions(name, data) {
|
|
7567
|
-
return this.http.post("/tables/" + name + "/permissions", data).json();
|
|
7568
|
-
}
|
|
7569
|
-
/**
|
|
7570
|
-
* No description
|
|
7571
|
-
*
|
|
7572
|
-
* @tags Tables
|
|
7573
|
-
* @name SetPermissions
|
|
7574
|
-
* @operationId TablesController_SetPermissions
|
|
7575
|
-
* @summary Replaces existing access control list for the layer with the given one.
|
|
7576
|
-
* @request PUT:/tables/{name}/permissions
|
|
7577
|
-
* @response `200` OK
|
|
7578
|
-
*/
|
|
7579
|
-
|
|
7580
|
-
}, {
|
|
7581
|
-
key: "setPermissions",
|
|
7582
|
-
value: function setPermissions(name, data) {
|
|
7583
|
-
return this.http.put("/tables/" + name + "/permissions", data).json();
|
|
7584
|
-
}
|
|
7585
|
-
/**
|
|
7586
|
-
* No description
|
|
7587
|
-
*
|
|
7588
|
-
* @tags Tables
|
|
7589
|
-
* @name RemovePermissions
|
|
7590
|
-
* @operationId TablesController_RemovePermissions
|
|
7591
|
-
* @summary Removes permissions for the layer for the given role.
|
|
7592
|
-
* @request DELETE:/tables/{name}/permissions/{role}
|
|
7593
|
-
* @response `200` OK
|
|
7594
|
-
*/
|
|
7595
|
-
|
|
7596
|
-
}, {
|
|
7597
|
-
key: "removePermissions",
|
|
7598
|
-
value: function removePermissions(name, role) {
|
|
7599
|
-
return this.http.delete("/tables/" + name + "/permissions/" + role, null).json();
|
|
7600
|
-
}
|
|
7601
6649
|
}]);
|
|
7602
6650
|
|
|
7603
6651
|
return TablesService;
|
|
@@ -7619,13 +6667,6 @@ let Tables = /*#__PURE__*/function (_TablesService) {
|
|
|
7619
6667
|
value: function getTableInfos(tables) {
|
|
7620
6668
|
return promiseAllIgnoreErrors(tables.map(table => this.getTableInfo(table)));
|
|
7621
6669
|
}
|
|
7622
|
-
}, {
|
|
7623
|
-
key: "uploadPreview",
|
|
7624
|
-
value: function uploadPreview(name, file) {
|
|
7625
|
-
return this.setPreview(name, {
|
|
7626
|
-
file
|
|
7627
|
-
});
|
|
7628
|
-
}
|
|
7629
6670
|
}, {
|
|
7630
6671
|
key: "findOne",
|
|
7631
6672
|
value: function findOne(name) {
|
|
@@ -7691,7 +6732,7 @@ let Tools = /*#__PURE__*/function (_ToolsService) {
|
|
|
7691
6732
|
return _createClass(Tools);
|
|
7692
6733
|
}(ToolsService);
|
|
7693
6734
|
|
|
7694
|
-
const _excluded$
|
|
6735
|
+
const _excluded$7 = ["name", "z", "x", "y"];
|
|
7695
6736
|
/**
|
|
7696
6737
|
* @title Spatial Processing Core API
|
|
7697
6738
|
* @version 1.5.1.0
|
|
@@ -7729,7 +6770,7 @@ let VectorTileService = /*#__PURE__*/function (_Service) {
|
|
|
7729
6770
|
x,
|
|
7730
6771
|
y
|
|
7731
6772
|
} = _ref,
|
|
7732
|
-
query = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
6773
|
+
query = _objectWithoutPropertiesLoose(_ref, _excluded$7);
|
|
7733
6774
|
|
|
7734
6775
|
return this.http.get("/vt/" + name + "/" + z + "/" + x + "/" + y + ".pbf", query).then(() => {});
|
|
7735
6776
|
}
|
|
@@ -7751,13 +6792,12 @@ let VectorTiles = /*#__PURE__*/function (_VectorTileService) {
|
|
|
7751
6792
|
|
|
7752
6793
|
_createClass(VectorTiles, [{
|
|
7753
6794
|
key: "getVt",
|
|
7754
|
-
value: function getVt(name, z, x, y
|
|
6795
|
+
value: function getVt(name, z, x, y) {
|
|
7755
6796
|
return this.getVectorTile({
|
|
7756
6797
|
name,
|
|
7757
6798
|
z,
|
|
7758
6799
|
x,
|
|
7759
|
-
y
|
|
7760
|
-
isProject
|
|
6800
|
+
y
|
|
7761
6801
|
});
|
|
7762
6802
|
}
|
|
7763
6803
|
}]);
|
|
@@ -7886,7 +6926,6 @@ let Api = /*#__PURE__*/function (_EventEmitter) {
|
|
|
7886
6926
|
_this.tools = new Tools(_this.http);
|
|
7887
6927
|
_this.resourceCatalog = new ResourceCatalog(_this.http);
|
|
7888
6928
|
_this.general = new General(_this.http);
|
|
7889
|
-
_this.namespace = new Namespace(_this.http);
|
|
7890
6929
|
_this.external = new External(_this.http);
|
|
7891
6930
|
_this.clientSettings = new ClientSettings(_this.http);
|
|
7892
6931
|
_this.portalSettings = new PortalSettings(_this.http);
|
|
@@ -7894,7 +6933,6 @@ let Api = /*#__PURE__*/function (_EventEmitter) {
|
|
|
7894
6933
|
_this.statistic = new Statistic(_this.http);
|
|
7895
6934
|
_this.feedback = new Feedback(_this.http);
|
|
7896
6935
|
_this.vectorTiles = new VectorTiles(_this.http);
|
|
7897
|
-
_this.universalSearch = new UniversalSearchService(_this.http);
|
|
7898
6936
|
_this.spatialReference = new SpatialReferencesService(_this.http);
|
|
7899
6937
|
_this.eql = new Eql(_this.http);
|
|
7900
6938
|
_this.catalog = new CatalogService(_this.http);
|
|
@@ -8179,11 +7217,6 @@ let Api = /*#__PURE__*/function (_EventEmitter) {
|
|
|
8179
7217
|
ErrorType["EmailNotSet"] = "EmailNotSet";
|
|
8180
7218
|
})(exports.ErrorType || (exports.ErrorType = {}));
|
|
8181
7219
|
|
|
8182
|
-
(function (FeatureType) {
|
|
8183
|
-
FeatureType["Unknown"] = "Unknown";
|
|
8184
|
-
FeatureType["GeometricFeature"] = "GeometricFeature";
|
|
8185
|
-
})(exports.FeatureType || (exports.FeatureType = {}));
|
|
8186
|
-
|
|
8187
7220
|
(function (FontStyle) {
|
|
8188
7221
|
FontStyle["Normal"] = "normal";
|
|
8189
7222
|
FontStyle["Oblique"] = "oblique";
|
|
@@ -8248,14 +7281,6 @@ let Api = /*#__PURE__*/function (_EventEmitter) {
|
|
|
8248
7281
|
LineJoinType["Round"] = "Round";
|
|
8249
7282
|
})(exports.LineJoinType || (exports.LineJoinType = {}));
|
|
8250
7283
|
|
|
8251
|
-
(function (Operation) {
|
|
8252
|
-
Operation["Unknown"] = "Unknown";
|
|
8253
|
-
Operation["Union"] = "union";
|
|
8254
|
-
Operation["Intersection"] = "intersection";
|
|
8255
|
-
Operation["Subtraction"] = "subtraction";
|
|
8256
|
-
Operation["SymDifference"] = "symDifference";
|
|
8257
|
-
})(exports.Operation || (exports.Operation = {}));
|
|
8258
|
-
|
|
8259
7284
|
(function (OwnerFilter) {
|
|
8260
7285
|
OwnerFilter["My"] = "My";
|
|
8261
7286
|
OwnerFilter["Shared"] = "Shared";
|
|
@@ -8294,6 +7319,18 @@ let Api = /*#__PURE__*/function (_EventEmitter) {
|
|
|
8294
7319
|
Quality["High"] = "High";
|
|
8295
7320
|
})(exports.Quality || (exports.Quality = {}));
|
|
8296
7321
|
|
|
7322
|
+
(function (RemoteTaskStatus) {
|
|
7323
|
+
RemoteTaskStatus["Init"] = "Init";
|
|
7324
|
+
RemoteTaskStatus["Process"] = "Process";
|
|
7325
|
+
RemoteTaskStatus["Completed"] = "Completed";
|
|
7326
|
+
RemoteTaskStatus["Interrupted"] = "Interrupted";
|
|
7327
|
+
RemoteTaskStatus["Error"] = "Error";
|
|
7328
|
+
RemoteTaskStatus["Timeout"] = "Timeout";
|
|
7329
|
+
RemoteTaskStatus["Waiting"] = "Waiting";
|
|
7330
|
+
RemoteTaskStatus["InQueue"] = "InQueue";
|
|
7331
|
+
RemoteTaskStatus["Unknown"] = "Unknown";
|
|
7332
|
+
})(exports.RemoteTaskStatus || (exports.RemoteTaskStatus = {}));
|
|
7333
|
+
|
|
8297
7334
|
(function (ResourceSubTypeFilter) {
|
|
8298
7335
|
ResourceSubTypeFilter["RemoteTileService"] = "RemoteTileService";
|
|
8299
7336
|
ResourceSubTypeFilter["ProxyService"] = "ProxyService";
|
|
@@ -8322,6 +7359,7 @@ let Api = /*#__PURE__*/function (_EventEmitter) {
|
|
|
8322
7359
|
ResourceTypeFilter["RemoteTileService"] = "RemoteTileService";
|
|
8323
7360
|
ResourceTypeFilter["File"] = "File";
|
|
8324
7361
|
ResourceTypeFilter["DataSource"] = "DataSource";
|
|
7362
|
+
ResourceTypeFilter["TaskPrototype"] = "TaskPrototype";
|
|
8325
7363
|
})(exports.ResourceTypeFilter || (exports.ResourceTypeFilter = {}));
|
|
8326
7364
|
|
|
8327
7365
|
(function (ResourceTypeLink) {
|
|
@@ -8348,6 +7386,11 @@ let Api = /*#__PURE__*/function (_EventEmitter) {
|
|
|
8348
7386
|
StringSubType["Attachments"] = "Attachments";
|
|
8349
7387
|
})(exports.StringSubType || (exports.StringSubType = {}));
|
|
8350
7388
|
|
|
7389
|
+
(function (TaskResourceSubType) {
|
|
7390
|
+
TaskResourceSubType["SpTask"] = "SpTask";
|
|
7391
|
+
TaskResourceSubType["PythonTask"] = "PythonTask";
|
|
7392
|
+
})(exports.TaskResourceSubType || (exports.TaskResourceSubType = {}));
|
|
7393
|
+
|
|
8351
7394
|
(function (TextAlignment) {
|
|
8352
7395
|
TextAlignment["Right"] = "right";
|
|
8353
7396
|
TextAlignment["Left"] = "left";
|
|
@@ -8417,7 +7460,6 @@ exports.IceRouter = IceRouter;
|
|
|
8417
7460
|
exports.Import = Import;
|
|
8418
7461
|
exports.Layers = Layers;
|
|
8419
7462
|
exports.Names = Names;
|
|
8420
|
-
exports.Namespace = Namespace;
|
|
8421
7463
|
exports.Notification = Notification;
|
|
8422
7464
|
exports.NotificationEvent = NotificationEvent;
|
|
8423
7465
|
exports.PortalSettings = PortalSettings;
|