@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
package/dist/api.esm.js
CHANGED
|
@@ -549,6 +549,7 @@ let DataSourceService = /*#__PURE__*/function (_Service) {
|
|
|
549
549
|
return DataSourceService;
|
|
550
550
|
}(Service);
|
|
551
551
|
|
|
552
|
+
const _excluded = ["username"];
|
|
552
553
|
/**
|
|
553
554
|
* @title Spatial Processing Core API
|
|
554
555
|
* @version 1.5.1.0
|
|
@@ -567,19 +568,38 @@ let QueryTokenAccessService = /*#__PURE__*/function (_Service) {
|
|
|
567
568
|
}
|
|
568
569
|
|
|
569
570
|
_createClass(QueryTokenAccessService, [{
|
|
570
|
-
key: "
|
|
571
|
+
key: "getTokensList",
|
|
571
572
|
value:
|
|
573
|
+
/**
|
|
574
|
+
* No description
|
|
575
|
+
*
|
|
576
|
+
* @tags QueryTokenAccess
|
|
577
|
+
* @name GetTokensList
|
|
578
|
+
* @operationId QueryTokenAccessController_GetTokensList
|
|
579
|
+
* @request GET:/accessToken/list/{username}
|
|
580
|
+
* @response `200` OK
|
|
581
|
+
*/
|
|
582
|
+
function getTokensList(_ref) {
|
|
583
|
+
let {
|
|
584
|
+
username
|
|
585
|
+
} = _ref,
|
|
586
|
+
query = _objectWithoutPropertiesLoose(_ref, _excluded);
|
|
587
|
+
|
|
588
|
+
return this.http.get("/accessToken/list/" + username, query).json();
|
|
589
|
+
}
|
|
572
590
|
/**
|
|
573
591
|
* No description
|
|
574
592
|
*
|
|
575
593
|
* @tags QueryTokenAccess
|
|
576
594
|
* @name CreateToken
|
|
577
595
|
* @operationId QueryTokenAccessController_CreateTokenAsync
|
|
578
|
-
* @summary Create new query access token.
|
|
579
596
|
* @request PUT:/accessToken/{username}
|
|
580
597
|
* @response `200` OK
|
|
581
598
|
*/
|
|
582
|
-
|
|
599
|
+
|
|
600
|
+
}, {
|
|
601
|
+
key: "createToken",
|
|
602
|
+
value: function createToken(username) {
|
|
583
603
|
return this.http.put("/accessToken/" + username, null).text();
|
|
584
604
|
}
|
|
585
605
|
/**
|
|
@@ -588,7 +608,6 @@ let QueryTokenAccessService = /*#__PURE__*/function (_Service) {
|
|
|
588
608
|
* @tags QueryTokenAccess
|
|
589
609
|
* @name DisableToken
|
|
590
610
|
* @operationId QueryTokenAccessController_DisableToken
|
|
591
|
-
* @summary Disable token.
|
|
592
611
|
* @request POST:/accessToken/{token}/disable
|
|
593
612
|
* @response `200` OK
|
|
594
613
|
*/
|
|
@@ -604,7 +623,6 @@ let QueryTokenAccessService = /*#__PURE__*/function (_Service) {
|
|
|
604
623
|
* @tags QueryTokenAccess
|
|
605
624
|
* @name EnableToken
|
|
606
625
|
* @operationId QueryTokenAccessController_EnableToken
|
|
607
|
-
* @summary Enable token.
|
|
608
626
|
* @request POST:/accessToken/{token}/enable
|
|
609
627
|
* @response `200` OK
|
|
610
628
|
*/
|
|
@@ -620,7 +638,6 @@ let QueryTokenAccessService = /*#__PURE__*/function (_Service) {
|
|
|
620
638
|
* @tags QueryTokenAccess
|
|
621
639
|
* @name RevokeToken
|
|
622
640
|
* @operationId QueryTokenAccessController_RevokeToken
|
|
623
|
-
* @summary Revoke token.
|
|
624
641
|
* @request DELETE:/accessToken/{token}
|
|
625
642
|
* @response `200` OK
|
|
626
643
|
*/
|
|
@@ -705,67 +722,6 @@ let SpatialReferencesService = /*#__PURE__*/function (_Service) {
|
|
|
705
722
|
return SpatialReferencesService;
|
|
706
723
|
}(Service);
|
|
707
724
|
|
|
708
|
-
const _excluded = ["taskId", "layerName"];
|
|
709
|
-
/**
|
|
710
|
-
* @title Spatial Processing Core API
|
|
711
|
-
* @version 1.5.1.0
|
|
712
|
-
* @baseUrl /sp
|
|
713
|
-
*/
|
|
714
|
-
|
|
715
|
-
let UniversalSearchService = /*#__PURE__*/function (_Service) {
|
|
716
|
-
_inherits(UniversalSearchService, _Service);
|
|
717
|
-
|
|
718
|
-
var _super = /*#__PURE__*/_createSuper(UniversalSearchService);
|
|
719
|
-
|
|
720
|
-
function UniversalSearchService() {
|
|
721
|
-
_classCallCheck(this, UniversalSearchService);
|
|
722
|
-
|
|
723
|
-
return _super.apply(this, arguments);
|
|
724
|
-
}
|
|
725
|
-
|
|
726
|
-
_createClass(UniversalSearchService, [{
|
|
727
|
-
key: "searchResultDcGetSearchResult",
|
|
728
|
-
value:
|
|
729
|
-
/**
|
|
730
|
-
* No description
|
|
731
|
-
*
|
|
732
|
-
* @tags UniversalSearch
|
|
733
|
-
* @name SearchResultDcGetSearchResult
|
|
734
|
-
* @operationId UniversalSearchController_SearchResultDcGetSearchResult
|
|
735
|
-
* @summary Returns search result.
|
|
736
|
-
* @request GET:/search/{taskId}/{layerName}
|
|
737
|
-
* @response `200` OK
|
|
738
|
-
*/
|
|
739
|
-
function searchResultDcGetSearchResult(_ref) {
|
|
740
|
-
let {
|
|
741
|
-
taskId,
|
|
742
|
-
layerName
|
|
743
|
-
} = _ref,
|
|
744
|
-
query = _objectWithoutPropertiesLoose(_ref, _excluded);
|
|
745
|
-
|
|
746
|
-
return this.http.get("/search/" + taskId + "/" + layerName, query).json();
|
|
747
|
-
}
|
|
748
|
-
/**
|
|
749
|
-
* No description
|
|
750
|
-
*
|
|
751
|
-
* @tags UniversalSearch
|
|
752
|
-
* @name GetSearchResult
|
|
753
|
-
* @operationId UniversalSearchController_GetSearchResult
|
|
754
|
-
* @summary Returns search result.
|
|
755
|
-
* @request GET:/search/{taskId}
|
|
756
|
-
* @response `200` OK
|
|
757
|
-
*/
|
|
758
|
-
|
|
759
|
-
}, {
|
|
760
|
-
key: "getSearchResult",
|
|
761
|
-
value: function getSearchResult(taskId) {
|
|
762
|
-
return this.http.get("/search/" + taskId).json();
|
|
763
|
-
}
|
|
764
|
-
}]);
|
|
765
|
-
|
|
766
|
-
return UniversalSearchService;
|
|
767
|
-
}(Service);
|
|
768
|
-
|
|
769
725
|
/**
|
|
770
726
|
* @title Spatial Processing Core API
|
|
771
727
|
* @version 1.5.1.0
|
|
@@ -2254,8 +2210,21 @@ let EqlService = /*#__PURE__*/function (_Service) {
|
|
|
2254
2210
|
}
|
|
2255
2211
|
|
|
2256
2212
|
_createClass(EqlService, [{
|
|
2257
|
-
key: "
|
|
2213
|
+
key: "getFunctionsList",
|
|
2258
2214
|
value:
|
|
2215
|
+
/**
|
|
2216
|
+
* No description
|
|
2217
|
+
*
|
|
2218
|
+
* @tags Eql
|
|
2219
|
+
* @name GetFunctionsList
|
|
2220
|
+
* @operationId EqlController_GetFunctionsList
|
|
2221
|
+
* @summary Returns list of available functions.
|
|
2222
|
+
* @request GET:/eql/functions
|
|
2223
|
+
* @response `200` OK
|
|
2224
|
+
*/
|
|
2225
|
+
function getFunctionsList() {
|
|
2226
|
+
return this.http.get("/eql/functions").json();
|
|
2227
|
+
}
|
|
2259
2228
|
/**
|
|
2260
2229
|
* No description
|
|
2261
2230
|
*
|
|
@@ -2266,7 +2235,10 @@ let EqlService = /*#__PURE__*/function (_Service) {
|
|
|
2266
2235
|
* @request POST:/eql/query
|
|
2267
2236
|
* @response `200` OK
|
|
2268
2237
|
*/
|
|
2269
|
-
|
|
2238
|
+
|
|
2239
|
+
}, {
|
|
2240
|
+
key: "getQueryResult",
|
|
2241
|
+
value: function getQueryResult(data) {
|
|
2270
2242
|
return this.http.post("/eql/query", data).json();
|
|
2271
2243
|
}
|
|
2272
2244
|
/**
|
|
@@ -2756,94 +2728,8 @@ let Feedback = /*#__PURE__*/function (_FeedbackService) {
|
|
|
2756
2728
|
return Feedback;
|
|
2757
2729
|
}(FeedbackService);
|
|
2758
2730
|
|
|
2759
|
-
|
|
2760
|
-
|
|
2761
|
-
* @version 1.5.1.0
|
|
2762
|
-
* @baseUrl /sp
|
|
2763
|
-
*/
|
|
2764
|
-
|
|
2765
|
-
let StaticContentService = /*#__PURE__*/function (_Service) {
|
|
2766
|
-
_inherits(StaticContentService, _Service);
|
|
2767
|
-
|
|
2768
|
-
var _super = /*#__PURE__*/_createSuper(StaticContentService);
|
|
2769
|
-
|
|
2770
|
-
function StaticContentService() {
|
|
2771
|
-
_classCallCheck(this, StaticContentService);
|
|
2772
|
-
|
|
2773
|
-
return _super.apply(this, arguments);
|
|
2774
|
-
}
|
|
2775
|
-
|
|
2776
|
-
_createClass(StaticContentService, [{
|
|
2777
|
-
key: "downloadFile",
|
|
2778
|
-
value:
|
|
2779
|
-
/**
|
|
2780
|
-
* No description
|
|
2781
|
-
*
|
|
2782
|
-
* @tags StaticContentService
|
|
2783
|
-
* @name DownloadFile
|
|
2784
|
-
* @operationId StaticContentServiceController_DownloadFile
|
|
2785
|
-
* @summary Returns a file stream by fileId.
|
|
2786
|
-
* @request GET:/upload/file
|
|
2787
|
-
* @response `200` OK
|
|
2788
|
-
*/
|
|
2789
|
-
function downloadFile(query) {
|
|
2790
|
-
return this.http.get("/upload/file", query).blob();
|
|
2791
|
-
}
|
|
2792
|
-
/**
|
|
2793
|
-
* No description
|
|
2794
|
-
*
|
|
2795
|
-
* @tags StaticContentService
|
|
2796
|
-
* @name UploadFile
|
|
2797
|
-
* @operationId StaticContentServiceController_UploadFile
|
|
2798
|
-
* @summary Upload file to temporary session storage.
|
|
2799
|
-
* @request POST:/upload/file
|
|
2800
|
-
* @response `200` OK
|
|
2801
|
-
*/
|
|
2802
|
-
|
|
2803
|
-
}, {
|
|
2804
|
-
key: "uploadFile",
|
|
2805
|
-
value: function uploadFile(data) {
|
|
2806
|
-
return this.http.post("/upload/file", toFormData(data)).json();
|
|
2807
|
-
}
|
|
2808
|
-
/**
|
|
2809
|
-
* No description
|
|
2810
|
-
*
|
|
2811
|
-
* @tags StaticContentService
|
|
2812
|
-
* @name DeleteFile
|
|
2813
|
-
* @operationId StaticContentServiceController_DeleteFile
|
|
2814
|
-
* @summary Delete file from temporary session storage.
|
|
2815
|
-
* @request DELETE:/upload/file
|
|
2816
|
-
* @response `200` OK
|
|
2817
|
-
*/
|
|
2818
|
-
|
|
2819
|
-
}, {
|
|
2820
|
-
key: "deleteFile",
|
|
2821
|
-
value: function deleteFile(query) {
|
|
2822
|
-
return this.http.delete("/upload/file", null, query).then(() => {});
|
|
2823
|
-
}
|
|
2824
|
-
/**
|
|
2825
|
-
* No description
|
|
2826
|
-
*
|
|
2827
|
-
* @tags StaticContentService
|
|
2828
|
-
* @name GetFileInfo
|
|
2829
|
-
* @operationId StaticContentServiceController_GetFileInfo
|
|
2830
|
-
* @summary Returns a file info download by url.
|
|
2831
|
-
* @request GET:/upload/fileInfo
|
|
2832
|
-
* @response `200` OK
|
|
2833
|
-
*/
|
|
2834
|
-
|
|
2835
|
-
}, {
|
|
2836
|
-
key: "getFileInfo",
|
|
2837
|
-
value: function getFileInfo(query) {
|
|
2838
|
-
return this.http.get("/upload/fileInfo", query).json();
|
|
2839
|
-
}
|
|
2840
|
-
}]);
|
|
2841
|
-
|
|
2842
|
-
return StaticContentService;
|
|
2843
|
-
}(Service);
|
|
2844
|
-
|
|
2845
|
-
let FileUpload = /*#__PURE__*/function (_StaticContentService) {
|
|
2846
|
-
_inherits(FileUpload, _StaticContentService);
|
|
2731
|
+
let FileUpload = /*#__PURE__*/function (_CatalogService) {
|
|
2732
|
+
_inherits(FileUpload, _CatalogService);
|
|
2847
2733
|
|
|
2848
2734
|
var _super = /*#__PURE__*/_createSuper(FileUpload);
|
|
2849
2735
|
|
|
@@ -2856,7 +2742,7 @@ let FileUpload = /*#__PURE__*/function (_StaticContentService) {
|
|
|
2856
2742
|
_createClass(FileUpload, [{
|
|
2857
2743
|
key: "upload",
|
|
2858
2744
|
value: function upload(file, rewrite) {
|
|
2859
|
-
return this.
|
|
2745
|
+
return this.createFile({
|
|
2860
2746
|
file,
|
|
2861
2747
|
rewrite: !!rewrite
|
|
2862
2748
|
});
|
|
@@ -2864,7 +2750,7 @@ let FileUpload = /*#__PURE__*/function (_StaticContentService) {
|
|
|
2864
2750
|
}]);
|
|
2865
2751
|
|
|
2866
2752
|
return FileUpload;
|
|
2867
|
-
}(
|
|
2753
|
+
}(CatalogService);
|
|
2868
2754
|
|
|
2869
2755
|
/**
|
|
2870
2756
|
* @title Spatial Processing Core API
|
|
@@ -2983,22 +2869,6 @@ let GeneralService = /*#__PURE__*/function (_Service) {
|
|
|
2983
2869
|
function getServerInfo() {
|
|
2984
2870
|
return this.http.get("/").json();
|
|
2985
2871
|
}
|
|
2986
|
-
/**
|
|
2987
|
-
* No description
|
|
2988
|
-
*
|
|
2989
|
-
* @tags General
|
|
2990
|
-
* @name GetFunctionsList
|
|
2991
|
-
* @operationId GeneralController_GetFunctionsList
|
|
2992
|
-
* @summary Returns list of available functions.
|
|
2993
|
-
* @request GET:/functions
|
|
2994
|
-
* @response `200` OK
|
|
2995
|
-
*/
|
|
2996
|
-
|
|
2997
|
-
}, {
|
|
2998
|
-
key: "getFunctionsList",
|
|
2999
|
-
value: function getFunctionsList() {
|
|
3000
|
-
return this.http.get("/functions").json();
|
|
3001
|
-
}
|
|
3002
2872
|
}]);
|
|
3003
2873
|
|
|
3004
2874
|
return GeneralService;
|
|
@@ -3403,12 +3273,12 @@ let Import = /*#__PURE__*/function (_ImportService) {
|
|
|
3403
3273
|
|
|
3404
3274
|
const _excluded$3 = ["name"],
|
|
3405
3275
|
_excluded2$2 = ["name"],
|
|
3406
|
-
_excluded3$2 = ["name"],
|
|
3276
|
+
_excluded3$2 = ["name", "id"],
|
|
3407
3277
|
_excluded4$1 = ["name", "id"],
|
|
3408
3278
|
_excluded5$1 = ["name", "id"],
|
|
3409
|
-
_excluded6$1 = ["name", "
|
|
3410
|
-
_excluded7 = ["name", "x", "y", "z"],
|
|
3411
|
-
_excluded8 = ["name", "x", "y", "z", "format"],
|
|
3279
|
+
_excluded6$1 = ["name", "x", "y", "z"],
|
|
3280
|
+
_excluded7 = ["name", "x", "y", "z", "format"],
|
|
3281
|
+
_excluded8 = ["name", "x", "y", "z", "dpi", "format"],
|
|
3412
3282
|
_excluded9 = ["name"],
|
|
3413
3283
|
_excluded10 = ["name"],
|
|
3414
3284
|
_excluded11 = ["name"],
|
|
@@ -3417,11 +3287,8 @@ const _excluded$3 = ["name"],
|
|
|
3417
3287
|
_excluded14 = ["name"],
|
|
3418
3288
|
_excluded15 = ["name"],
|
|
3419
3289
|
_excluded16 = ["name"],
|
|
3420
|
-
_excluded17 = ["
|
|
3421
|
-
_excluded18 = ["name"]
|
|
3422
|
-
_excluded19 = ["name"],
|
|
3423
|
-
_excluded20 = ["layerName"],
|
|
3424
|
-
_excluded21 = ["name", "id"];
|
|
3290
|
+
_excluded17 = ["layerName"],
|
|
3291
|
+
_excluded18 = ["name", "id"];
|
|
3425
3292
|
/**
|
|
3426
3293
|
* @title Spatial Processing Core API
|
|
3427
3294
|
* @version 1.5.1.0
|
|
@@ -3487,22 +3354,6 @@ let LayersService = /*#__PURE__*/function (_Service) {
|
|
|
3487
3354
|
value: function getLayersList(query) {
|
|
3488
3355
|
return this.http.get("/layers", query).json();
|
|
3489
3356
|
}
|
|
3490
|
-
/**
|
|
3491
|
-
* No description
|
|
3492
|
-
*
|
|
3493
|
-
* @tags Layers
|
|
3494
|
-
* @name SetPermissionsBatch
|
|
3495
|
-
* @operationId LayersController_SetPermissionsBatch
|
|
3496
|
-
* @summary Overrides multiply resources permissions in single batch.
|
|
3497
|
-
* @request PUT:/layers
|
|
3498
|
-
* @response `200` OK
|
|
3499
|
-
*/
|
|
3500
|
-
|
|
3501
|
-
}, {
|
|
3502
|
-
key: "setPermissionsBatch",
|
|
3503
|
-
value: function setPermissionsBatch(data) {
|
|
3504
|
-
return this.http.put("/layers", data).then(() => {});
|
|
3505
|
-
}
|
|
3506
3357
|
/**
|
|
3507
3358
|
* No description
|
|
3508
3359
|
*
|
|
@@ -3657,42 +3508,6 @@ let LayersService = /*#__PURE__*/function (_Service) {
|
|
|
3657
3508
|
type: 'RemoteTileService'
|
|
3658
3509
|
}).json();
|
|
3659
3510
|
}
|
|
3660
|
-
/**
|
|
3661
|
-
* No description
|
|
3662
|
-
*
|
|
3663
|
-
* @tags Layers
|
|
3664
|
-
* @name PublishLocalTileService
|
|
3665
|
-
* @operationId LayersController_PublishLocalTileService
|
|
3666
|
-
* @summary Creates new Local Tile Service.
|
|
3667
|
-
* @request POST:/layers#type=LocalTileService
|
|
3668
|
-
* @response `default` Error
|
|
3669
|
-
*/
|
|
3670
|
-
|
|
3671
|
-
}, {
|
|
3672
|
-
key: "publishLocalTileService",
|
|
3673
|
-
value: function publishLocalTileService(data) {
|
|
3674
|
-
return this.http.post("/layers", data, {
|
|
3675
|
-
type: 'LocalTileService'
|
|
3676
|
-
}).json();
|
|
3677
|
-
}
|
|
3678
|
-
/**
|
|
3679
|
-
* No description
|
|
3680
|
-
*
|
|
3681
|
-
* @tags Layers
|
|
3682
|
-
* @name PublishPostgresLayerService
|
|
3683
|
-
* @operationId LayersController_PublishPostgresLayerService
|
|
3684
|
-
* @summary Creates new Postgres Layer Service.
|
|
3685
|
-
* @request POST:/layers#type=PostgresLayerService
|
|
3686
|
-
* @response `default` Error
|
|
3687
|
-
*/
|
|
3688
|
-
|
|
3689
|
-
}, {
|
|
3690
|
-
key: "publishPostgresLayerService",
|
|
3691
|
-
value: function publishPostgresLayerService(data) {
|
|
3692
|
-
return this.http.post("/layers", data, {
|
|
3693
|
-
type: 'PostgresLayerService'
|
|
3694
|
-
}).json();
|
|
3695
|
-
}
|
|
3696
3511
|
/**
|
|
3697
3512
|
* No description
|
|
3698
3513
|
*
|
|
@@ -3733,18 +3548,18 @@ let LayersService = /*#__PURE__*/function (_Service) {
|
|
|
3733
3548
|
* No description
|
|
3734
3549
|
*
|
|
3735
3550
|
* @tags Layers
|
|
3736
|
-
* @name
|
|
3737
|
-
* @operationId
|
|
3738
|
-
* @summary Creates new
|
|
3739
|
-
* @request POST:/layers#type=
|
|
3551
|
+
* @name PublishPythonService
|
|
3552
|
+
* @operationId LayersController_PublishPythonService
|
|
3553
|
+
* @summary Creates new python service.
|
|
3554
|
+
* @request POST:/layers#type=Python
|
|
3740
3555
|
* @response `default` Error
|
|
3741
3556
|
*/
|
|
3742
3557
|
|
|
3743
3558
|
}, {
|
|
3744
|
-
key: "
|
|
3745
|
-
value: function
|
|
3559
|
+
key: "publishPythonService",
|
|
3560
|
+
value: function publishPythonService(data) {
|
|
3746
3561
|
return this.http.post("/layers", data, {
|
|
3747
|
-
type: '
|
|
3562
|
+
type: 'Python'
|
|
3748
3563
|
}).json();
|
|
3749
3564
|
}
|
|
3750
3565
|
/**
|
|
@@ -3765,6 +3580,24 @@ let LayersService = /*#__PURE__*/function (_Service) {
|
|
|
3765
3580
|
type: 'Mapbox'
|
|
3766
3581
|
}).json();
|
|
3767
3582
|
}
|
|
3583
|
+
/**
|
|
3584
|
+
* No description
|
|
3585
|
+
*
|
|
3586
|
+
* @tags Layers
|
|
3587
|
+
* @name UpdatePythonService
|
|
3588
|
+
* @operationId LayersController_UpdatePythonService
|
|
3589
|
+
* @summary Update python service.
|
|
3590
|
+
* @request PATCH:/layers/{name}#type=Python
|
|
3591
|
+
* @response `default` Error
|
|
3592
|
+
*/
|
|
3593
|
+
|
|
3594
|
+
}, {
|
|
3595
|
+
key: "updatePythonService",
|
|
3596
|
+
value: function updatePythonService(name, data) {
|
|
3597
|
+
return this.http.patch("/layers/" + name, data, {
|
|
3598
|
+
type: 'Python'
|
|
3599
|
+
}).json();
|
|
3600
|
+
}
|
|
3768
3601
|
/**
|
|
3769
3602
|
* No description
|
|
3770
3603
|
*
|
|
@@ -3801,24 +3634,6 @@ let LayersService = /*#__PURE__*/function (_Service) {
|
|
|
3801
3634
|
type: 'PostgresTileLayerService'
|
|
3802
3635
|
}).json();
|
|
3803
3636
|
}
|
|
3804
|
-
/**
|
|
3805
|
-
* No description
|
|
3806
|
-
*
|
|
3807
|
-
* @tags Layers
|
|
3808
|
-
* @name PublishCompositeService
|
|
3809
|
-
* @operationId LayersController_PublishCompositeService
|
|
3810
|
-
* @summary Creates new Composite service SPCore.Security.Base.Impl.Services.Composite.CompositeService.
|
|
3811
|
-
* @request POST:/layers#type=CompositeService
|
|
3812
|
-
* @response `default` Error
|
|
3813
|
-
*/
|
|
3814
|
-
|
|
3815
|
-
}, {
|
|
3816
|
-
key: "publishCompositeService",
|
|
3817
|
-
value: function publishCompositeService(data) {
|
|
3818
|
-
return this.http.post("/layers", data, {
|
|
3819
|
-
type: 'CompositeService'
|
|
3820
|
-
}).json();
|
|
3821
|
-
}
|
|
3822
3637
|
/**
|
|
3823
3638
|
* No description
|
|
3824
3639
|
*
|
|
@@ -3837,42 +3652,6 @@ let LayersService = /*#__PURE__*/function (_Service) {
|
|
|
3837
3652
|
type: 'RemoteTileService'
|
|
3838
3653
|
}).json();
|
|
3839
3654
|
}
|
|
3840
|
-
/**
|
|
3841
|
-
* No description
|
|
3842
|
-
*
|
|
3843
|
-
* @tags Layers
|
|
3844
|
-
* @name UpdateLocalTileService
|
|
3845
|
-
* @operationId LayersController_UpdateLocalTileService
|
|
3846
|
-
* @summary Update Local Tile Service.
|
|
3847
|
-
* @request PATCH:/layers/{name}#type=LocalTileService
|
|
3848
|
-
* @response `default` Error
|
|
3849
|
-
*/
|
|
3850
|
-
|
|
3851
|
-
}, {
|
|
3852
|
-
key: "updateLocalTileService",
|
|
3853
|
-
value: function updateLocalTileService(name, data) {
|
|
3854
|
-
return this.http.patch("/layers/" + name, data, {
|
|
3855
|
-
type: 'LocalTileService'
|
|
3856
|
-
}).json();
|
|
3857
|
-
}
|
|
3858
|
-
/**
|
|
3859
|
-
* No description
|
|
3860
|
-
*
|
|
3861
|
-
* @tags Layers
|
|
3862
|
-
* @name UpdatePostgresLayerService
|
|
3863
|
-
* @operationId LayersController_UpdatePostgresLayerService
|
|
3864
|
-
* @summary Update Postgres Layer Service.
|
|
3865
|
-
* @request PATCH:/layers/{name}#type=PostgresLayerService
|
|
3866
|
-
* @response `default` Error
|
|
3867
|
-
*/
|
|
3868
|
-
|
|
3869
|
-
}, {
|
|
3870
|
-
key: "updatePostgresLayerService",
|
|
3871
|
-
value: function updatePostgresLayerService(name, data) {
|
|
3872
|
-
return this.http.patch("/layers/" + name, data, {
|
|
3873
|
-
type: 'PostgresLayerService'
|
|
3874
|
-
}).json();
|
|
3875
|
-
}
|
|
3876
3655
|
/**
|
|
3877
3656
|
* No description
|
|
3878
3657
|
*
|
|
@@ -3891,24 +3670,6 @@ let LayersService = /*#__PURE__*/function (_Service) {
|
|
|
3891
3670
|
type: 'QueryLayerService'
|
|
3892
3671
|
}).json();
|
|
3893
3672
|
}
|
|
3894
|
-
/**
|
|
3895
|
-
* No description
|
|
3896
|
-
*
|
|
3897
|
-
* @tags Layers
|
|
3898
|
-
* @name UpdateCompositeService
|
|
3899
|
-
* @operationId LayersController_UpdateCompositeService
|
|
3900
|
-
* @summary Update Composite service SPCore.Security.Base.Impl.Services.Composite.CompositeService.
|
|
3901
|
-
* @request PATCH:/layers/{name}#type=CompositeService
|
|
3902
|
-
* @response `default` Error
|
|
3903
|
-
*/
|
|
3904
|
-
|
|
3905
|
-
}, {
|
|
3906
|
-
key: "updateCompositeService",
|
|
3907
|
-
value: function updateCompositeService(name, data) {
|
|
3908
|
-
return this.http.patch("/layers/" + name, data, {
|
|
3909
|
-
type: 'CompositeService'
|
|
3910
|
-
}).json();
|
|
3911
|
-
}
|
|
3912
3673
|
/**
|
|
3913
3674
|
* No description
|
|
3914
3675
|
*
|
|
@@ -4015,27 +3776,6 @@ let LayersService = /*#__PURE__*/function (_Service) {
|
|
|
4015
3776
|
value: function updateFeature(name, data) {
|
|
4016
3777
|
return this.http.patch("/layers/" + name + "/features", data).json();
|
|
4017
3778
|
}
|
|
4018
|
-
/**
|
|
4019
|
-
* No description
|
|
4020
|
-
*
|
|
4021
|
-
* @tags Layers
|
|
4022
|
-
* @name FeaturesContains
|
|
4023
|
-
* @operationId LayersController_FeaturesContains
|
|
4024
|
-
* @summary Gets filtered features with given filter.
|
|
4025
|
-
* @request GET:/layers/{name}/features/contains
|
|
4026
|
-
* @response `200` OK
|
|
4027
|
-
*/
|
|
4028
|
-
|
|
4029
|
-
}, {
|
|
4030
|
-
key: "featuresContains",
|
|
4031
|
-
value: function featuresContains(_ref3) {
|
|
4032
|
-
let {
|
|
4033
|
-
name
|
|
4034
|
-
} = _ref3,
|
|
4035
|
-
query = _objectWithoutPropertiesLoose(_ref3, _excluded3$2);
|
|
4036
|
-
|
|
4037
|
-
return this.http.get("/layers/" + name + "/features/contains", query).json();
|
|
4038
|
-
}
|
|
4039
3779
|
/**
|
|
4040
3780
|
* No description
|
|
4041
3781
|
*
|
|
@@ -4049,12 +3789,12 @@ let LayersService = /*#__PURE__*/function (_Service) {
|
|
|
4049
3789
|
|
|
4050
3790
|
}, {
|
|
4051
3791
|
key: "getById",
|
|
4052
|
-
value: function getById(
|
|
3792
|
+
value: function getById(_ref3) {
|
|
4053
3793
|
let {
|
|
4054
3794
|
name,
|
|
4055
3795
|
id
|
|
4056
|
-
} =
|
|
4057
|
-
query = _objectWithoutPropertiesLoose(
|
|
3796
|
+
} = _ref3,
|
|
3797
|
+
query = _objectWithoutPropertiesLoose(_ref3, _excluded3$2);
|
|
4058
3798
|
|
|
4059
3799
|
return this.http.get("/layers/" + name + "/features/" + id, query).json();
|
|
4060
3800
|
}
|
|
@@ -4071,12 +3811,12 @@ let LayersService = /*#__PURE__*/function (_Service) {
|
|
|
4071
3811
|
|
|
4072
3812
|
}, {
|
|
4073
3813
|
key: "unite",
|
|
4074
|
-
value: function unite(
|
|
3814
|
+
value: function unite(_ref4, data) {
|
|
4075
3815
|
let {
|
|
4076
3816
|
name,
|
|
4077
3817
|
id
|
|
4078
|
-
} =
|
|
4079
|
-
query = _objectWithoutPropertiesLoose(
|
|
3818
|
+
} = _ref4,
|
|
3819
|
+
query = _objectWithoutPropertiesLoose(_ref4, _excluded4$1);
|
|
4080
3820
|
|
|
4081
3821
|
return this.http.post("/layers/" + name + "/features/" + id + "/unite", data, query).json();
|
|
4082
3822
|
}
|
|
@@ -4093,12 +3833,12 @@ let LayersService = /*#__PURE__*/function (_Service) {
|
|
|
4093
3833
|
|
|
4094
3834
|
}, {
|
|
4095
3835
|
key: "subtract",
|
|
4096
|
-
value: function subtract(
|
|
3836
|
+
value: function subtract(_ref5, data) {
|
|
4097
3837
|
let {
|
|
4098
3838
|
name,
|
|
4099
3839
|
id
|
|
4100
|
-
} =
|
|
4101
|
-
query = _objectWithoutPropertiesLoose(
|
|
3840
|
+
} = _ref5,
|
|
3841
|
+
query = _objectWithoutPropertiesLoose(_ref5, _excluded5$1);
|
|
4102
3842
|
|
|
4103
3843
|
return this.http.post("/layers/" + name + "/features/" + id + "/subtract", data, query).json();
|
|
4104
3844
|
}
|
|
@@ -4115,14 +3855,14 @@ let LayersService = /*#__PURE__*/function (_Service) {
|
|
|
4115
3855
|
|
|
4116
3856
|
}, {
|
|
4117
3857
|
key: "getTilesLayerImage",
|
|
4118
|
-
value: function getTilesLayerImage(
|
|
3858
|
+
value: function getTilesLayerImage(_ref6) {
|
|
4119
3859
|
let {
|
|
4120
3860
|
name,
|
|
4121
3861
|
x,
|
|
4122
3862
|
y,
|
|
4123
3863
|
z
|
|
4124
|
-
} =
|
|
4125
|
-
query = _objectWithoutPropertiesLoose(
|
|
3864
|
+
} = _ref6,
|
|
3865
|
+
query = _objectWithoutPropertiesLoose(_ref6, _excluded6$1);
|
|
4126
3866
|
|
|
4127
3867
|
return this.http.createUrl("/layers/" + name + "/tile/" + z + "/" + x + "/" + y, query);
|
|
4128
3868
|
}
|
|
@@ -4130,24 +3870,24 @@ let LayersService = /*#__PURE__*/function (_Service) {
|
|
|
4130
3870
|
* No description
|
|
4131
3871
|
*
|
|
4132
3872
|
* @tags Layers
|
|
4133
|
-
* @name
|
|
4134
|
-
* @operationId
|
|
3873
|
+
* @name GetTilesLayerImage1
|
|
3874
|
+
* @operationId LayersController_GetTilesLayerImage_1
|
|
4135
3875
|
* @summary Render tile with input indexes.
|
|
4136
3876
|
* @request GET:/layers/{name}/tile/{z}/{x}/{y}.{format}
|
|
4137
3877
|
* @response `200` OK
|
|
4138
3878
|
*/
|
|
4139
3879
|
|
|
4140
3880
|
}, {
|
|
4141
|
-
key: "
|
|
4142
|
-
value: function
|
|
3881
|
+
key: "getTilesLayerImage1",
|
|
3882
|
+
value: function getTilesLayerImage1(_ref7) {
|
|
4143
3883
|
let {
|
|
4144
3884
|
name,
|
|
4145
3885
|
x,
|
|
4146
3886
|
y,
|
|
4147
3887
|
z,
|
|
4148
3888
|
format
|
|
4149
|
-
} =
|
|
4150
|
-
query = _objectWithoutPropertiesLoose(
|
|
3889
|
+
} = _ref7,
|
|
3890
|
+
query = _objectWithoutPropertiesLoose(_ref7, _excluded7);
|
|
4151
3891
|
|
|
4152
3892
|
return this.http.createUrl("/layers/" + name + "/tile/" + z + "/" + x + "/" + y + "." + format, query);
|
|
4153
3893
|
}
|
|
@@ -4155,85 +3895,69 @@ let LayersService = /*#__PURE__*/function (_Service) {
|
|
|
4155
3895
|
* No description
|
|
4156
3896
|
*
|
|
4157
3897
|
* @tags Layers
|
|
4158
|
-
* @name
|
|
4159
|
-
* @operationId
|
|
4160
|
-
* @summary
|
|
4161
|
-
* @request GET:/layers/{name}/
|
|
3898
|
+
* @name GetTilesLayerImageWithFormatAndDpi
|
|
3899
|
+
* @operationId LayersController_GetTilesLayerImageWithFormatAndDpi
|
|
3900
|
+
* @summary Render tile with input indexes.
|
|
3901
|
+
* @request GET:/layers/{name}/tile/{z}/{x}/{y}@{dpi}x.{format}
|
|
4162
3902
|
* @response `200` OK
|
|
4163
3903
|
*/
|
|
4164
3904
|
|
|
4165
3905
|
}, {
|
|
4166
|
-
key: "
|
|
4167
|
-
value: function
|
|
3906
|
+
key: "getTilesLayerImageWithFormatAndDpi",
|
|
3907
|
+
value: function getTilesLayerImageWithFormatAndDpi(_ref8) {
|
|
4168
3908
|
let {
|
|
4169
|
-
name
|
|
4170
|
-
|
|
4171
|
-
|
|
4172
|
-
|
|
4173
|
-
|
|
4174
|
-
|
|
4175
|
-
|
|
4176
|
-
|
|
4177
|
-
*
|
|
4178
|
-
* @tags Layers
|
|
4179
|
-
* @name GetLayerExtent
|
|
4180
|
-
* @operationId LayersController_GetLayerExtent
|
|
4181
|
-
* @summary Returns the extent of the layer.
|
|
4182
|
-
* @request GET:/layers/{name}/extent
|
|
4183
|
-
* @response `200` OK
|
|
4184
|
-
*/
|
|
4185
|
-
|
|
4186
|
-
}, {
|
|
4187
|
-
key: "getLayerExtent",
|
|
4188
|
-
value: function getLayerExtent(_ref10) {
|
|
4189
|
-
let {
|
|
4190
|
-
name
|
|
4191
|
-
} = _ref10,
|
|
4192
|
-
query = _objectWithoutPropertiesLoose(_ref10, _excluded10);
|
|
3909
|
+
name,
|
|
3910
|
+
x,
|
|
3911
|
+
y,
|
|
3912
|
+
z,
|
|
3913
|
+
dpi,
|
|
3914
|
+
format
|
|
3915
|
+
} = _ref8,
|
|
3916
|
+
query = _objectWithoutPropertiesLoose(_ref8, _excluded8);
|
|
4193
3917
|
|
|
4194
|
-
return this.http.
|
|
3918
|
+
return this.http.createUrl("/layers/" + name + "/tile/" + z + "/" + x + "/" + y + "@" + dpi + "x." + format, query);
|
|
4195
3919
|
}
|
|
4196
3920
|
/**
|
|
4197
3921
|
* No description
|
|
4198
3922
|
*
|
|
4199
3923
|
* @tags Layers
|
|
4200
|
-
* @name
|
|
4201
|
-
* @operationId
|
|
4202
|
-
* @summary
|
|
4203
|
-
* @request GET:/layers/{name}/
|
|
3924
|
+
* @name GetLayerImage
|
|
3925
|
+
* @operationId LayersController_GetLayerImage
|
|
3926
|
+
* @summary Renders the layer to the image of the requested size.
|
|
3927
|
+
* @request GET:/layers/{name}/export
|
|
4204
3928
|
* @response `200` OK
|
|
4205
3929
|
*/
|
|
4206
3930
|
|
|
4207
3931
|
}, {
|
|
4208
|
-
key: "
|
|
4209
|
-
value: function
|
|
3932
|
+
key: "getLayerImage",
|
|
3933
|
+
value: function getLayerImage(_ref9) {
|
|
4210
3934
|
let {
|
|
4211
3935
|
name
|
|
4212
|
-
} =
|
|
4213
|
-
query = _objectWithoutPropertiesLoose(
|
|
3936
|
+
} = _ref9,
|
|
3937
|
+
query = _objectWithoutPropertiesLoose(_ref9, _excluded9);
|
|
4214
3938
|
|
|
4215
|
-
return this.http.
|
|
3939
|
+
return this.http.createUrl("/layers/" + name + "/export", query);
|
|
4216
3940
|
}
|
|
4217
3941
|
/**
|
|
4218
3942
|
* No description
|
|
4219
3943
|
*
|
|
4220
3944
|
* @tags Layers
|
|
4221
|
-
* @name
|
|
4222
|
-
* @operationId
|
|
4223
|
-
* @summary
|
|
4224
|
-
* @request
|
|
3945
|
+
* @name GetLayerExtent
|
|
3946
|
+
* @operationId LayersController_GetLayerExtent
|
|
3947
|
+
* @summary Returns the extent of the layer.
|
|
3948
|
+
* @request GET:/layers/{name}/extent
|
|
4225
3949
|
* @response `200` OK
|
|
4226
3950
|
*/
|
|
4227
3951
|
|
|
4228
3952
|
}, {
|
|
4229
|
-
key: "
|
|
4230
|
-
value: function
|
|
3953
|
+
key: "getLayerExtent",
|
|
3954
|
+
value: function getLayerExtent(_ref10) {
|
|
4231
3955
|
let {
|
|
4232
3956
|
name
|
|
4233
|
-
} =
|
|
4234
|
-
query = _objectWithoutPropertiesLoose(
|
|
3957
|
+
} = _ref10,
|
|
3958
|
+
query = _objectWithoutPropertiesLoose(_ref10, _excluded10);
|
|
4235
3959
|
|
|
4236
|
-
return this.http.
|
|
3960
|
+
return this.http.get("/layers/" + name + "/extent", query).json();
|
|
4237
3961
|
}
|
|
4238
3962
|
/**
|
|
4239
3963
|
* No description
|
|
@@ -4248,11 +3972,11 @@ let LayersService = /*#__PURE__*/function (_Service) {
|
|
|
4248
3972
|
|
|
4249
3973
|
}, {
|
|
4250
3974
|
key: "deleteFeatures",
|
|
4251
|
-
value: function deleteFeatures(
|
|
3975
|
+
value: function deleteFeatures(_ref11) {
|
|
4252
3976
|
let {
|
|
4253
3977
|
name
|
|
4254
|
-
} =
|
|
4255
|
-
query = _objectWithoutPropertiesLoose(
|
|
3978
|
+
} = _ref11,
|
|
3979
|
+
query = _objectWithoutPropertiesLoose(_ref11, _excluded11);
|
|
4256
3980
|
|
|
4257
3981
|
return this.http.delete("/layers/" + name + "/features/deleteByIds", null, query).json();
|
|
4258
3982
|
}
|
|
@@ -4269,35 +3993,14 @@ let LayersService = /*#__PURE__*/function (_Service) {
|
|
|
4269
3993
|
|
|
4270
3994
|
}, {
|
|
4271
3995
|
key: "deleteByCondition",
|
|
4272
|
-
value: function deleteByCondition(
|
|
3996
|
+
value: function deleteByCondition(_ref12) {
|
|
4273
3997
|
let {
|
|
4274
3998
|
name
|
|
4275
|
-
} =
|
|
4276
|
-
query = _objectWithoutPropertiesLoose(
|
|
3999
|
+
} = _ref12,
|
|
4000
|
+
query = _objectWithoutPropertiesLoose(_ref12, _excluded12);
|
|
4277
4001
|
|
|
4278
4002
|
return this.http.delete("/layers/" + name + "/features/deleteByCondition", null, query).json();
|
|
4279
4003
|
}
|
|
4280
|
-
/**
|
|
4281
|
-
* No description
|
|
4282
|
-
*
|
|
4283
|
-
* @tags Layers
|
|
4284
|
-
* @name GetByGeometryGet
|
|
4285
|
-
* @operationId LayersController_GetByGeometryAsync_2
|
|
4286
|
-
* @summary Gets the features by click position.
|
|
4287
|
-
* @request GET:/layers/{name}/features/getByGeometryByClick
|
|
4288
|
-
* @response `200` OK
|
|
4289
|
-
*/
|
|
4290
|
-
|
|
4291
|
-
}, {
|
|
4292
|
-
key: "getByGeometryGet",
|
|
4293
|
-
value: function getByGeometryGet(_ref15) {
|
|
4294
|
-
let {
|
|
4295
|
-
name
|
|
4296
|
-
} = _ref15,
|
|
4297
|
-
query = _objectWithoutPropertiesLoose(_ref15, _excluded15);
|
|
4298
|
-
|
|
4299
|
-
return this.http.get("/layers/" + name + "/features/getByGeometryByClick", query).json();
|
|
4300
|
-
}
|
|
4301
4004
|
/**
|
|
4302
4005
|
* No description
|
|
4303
4006
|
*
|
|
@@ -4311,11 +4014,11 @@ let LayersService = /*#__PURE__*/function (_Service) {
|
|
|
4311
4014
|
|
|
4312
4015
|
}, {
|
|
4313
4016
|
key: "classify",
|
|
4314
|
-
value: function classify(
|
|
4017
|
+
value: function classify(_ref13) {
|
|
4315
4018
|
let {
|
|
4316
4019
|
name
|
|
4317
|
-
} =
|
|
4318
|
-
query = _objectWithoutPropertiesLoose(
|
|
4020
|
+
} = _ref13,
|
|
4021
|
+
query = _objectWithoutPropertiesLoose(_ref13, _excluded13);
|
|
4319
4022
|
|
|
4320
4023
|
return this.http.get("/layers/" + name + "/classify", query).json();
|
|
4321
4024
|
}
|
|
@@ -4332,11 +4035,11 @@ let LayersService = /*#__PURE__*/function (_Service) {
|
|
|
4332
4035
|
|
|
4333
4036
|
}, {
|
|
4334
4037
|
key: "distincts",
|
|
4335
|
-
value: function distincts(
|
|
4038
|
+
value: function distincts(_ref14) {
|
|
4336
4039
|
let {
|
|
4337
4040
|
name
|
|
4338
|
-
} =
|
|
4339
|
-
query = _objectWithoutPropertiesLoose(
|
|
4041
|
+
} = _ref14,
|
|
4042
|
+
query = _objectWithoutPropertiesLoose(_ref14, _excluded14);
|
|
4340
4043
|
|
|
4341
4044
|
return this.http.get("/layers/" + name + "/distincts", query).json();
|
|
4342
4045
|
}
|
|
@@ -4353,11 +4056,11 @@ let LayersService = /*#__PURE__*/function (_Service) {
|
|
|
4353
4056
|
|
|
4354
4057
|
}, {
|
|
4355
4058
|
key: "aggregateAttribute",
|
|
4356
|
-
value: function aggregateAttribute(
|
|
4059
|
+
value: function aggregateAttribute(_ref15) {
|
|
4357
4060
|
let {
|
|
4358
4061
|
name
|
|
4359
|
-
} =
|
|
4360
|
-
query = _objectWithoutPropertiesLoose(
|
|
4062
|
+
} = _ref15,
|
|
4063
|
+
query = _objectWithoutPropertiesLoose(_ref15, _excluded15);
|
|
4361
4064
|
|
|
4362
4065
|
return this.http.get("/layers/" + name + "/aggregate-values", query).json();
|
|
4363
4066
|
}
|
|
@@ -4374,11 +4077,11 @@ let LayersService = /*#__PURE__*/function (_Service) {
|
|
|
4374
4077
|
|
|
4375
4078
|
}, {
|
|
4376
4079
|
key: "getFilteredFeaturesCount",
|
|
4377
|
-
value: function getFilteredFeaturesCount(
|
|
4080
|
+
value: function getFilteredFeaturesCount(_ref16) {
|
|
4378
4081
|
let {
|
|
4379
4082
|
name
|
|
4380
|
-
} =
|
|
4381
|
-
query = _objectWithoutPropertiesLoose(
|
|
4083
|
+
} = _ref16,
|
|
4084
|
+
query = _objectWithoutPropertiesLoose(_ref16, _excluded16);
|
|
4382
4085
|
|
|
4383
4086
|
return this.http.get("/layers/" + name + "/features/count", query).json();
|
|
4384
4087
|
}
|
|
@@ -4414,22 +4117,6 @@ let LayersService = /*#__PURE__*/function (_Service) {
|
|
|
4414
4117
|
value: function editAttributes(name, data) {
|
|
4415
4118
|
return this.http.post("/layers/" + name + "/features/edit-attributes", data).json();
|
|
4416
4119
|
}
|
|
4417
|
-
/**
|
|
4418
|
-
* No description
|
|
4419
|
-
*
|
|
4420
|
-
* @tags Layers
|
|
4421
|
-
* @name SelectFeatures
|
|
4422
|
-
* @operationId LayersController_SelectFeatures
|
|
4423
|
-
* @summary Selects features from the given layers by the visual point on the map.
|
|
4424
|
-
* @request GET:/layers/features/select
|
|
4425
|
-
* @response `200` OK
|
|
4426
|
-
*/
|
|
4427
|
-
|
|
4428
|
-
}, {
|
|
4429
|
-
key: "selectFeatures",
|
|
4430
|
-
value: function selectFeatures(query) {
|
|
4431
|
-
return this.http.get("/layers/features/select", query).json();
|
|
4432
|
-
}
|
|
4433
4120
|
/**
|
|
4434
4121
|
* No description
|
|
4435
4122
|
*
|
|
@@ -4444,11 +4131,11 @@ let LayersService = /*#__PURE__*/function (_Service) {
|
|
|
4444
4131
|
|
|
4445
4132
|
}, {
|
|
4446
4133
|
key: "validateExpression",
|
|
4447
|
-
value: function validateExpression(
|
|
4134
|
+
value: function validateExpression(_ref17) {
|
|
4448
4135
|
let {
|
|
4449
4136
|
layerName
|
|
4450
|
-
} =
|
|
4451
|
-
query = _objectWithoutPropertiesLoose(
|
|
4137
|
+
} = _ref17,
|
|
4138
|
+
query = _objectWithoutPropertiesLoose(_ref17, _excluded17);
|
|
4452
4139
|
|
|
4453
4140
|
return this.http.get("/layers/" + layerName + "/validateExpression", query).json();
|
|
4454
4141
|
}
|
|
@@ -4465,12 +4152,12 @@ let LayersService = /*#__PURE__*/function (_Service) {
|
|
|
4465
4152
|
|
|
4466
4153
|
}, {
|
|
4467
4154
|
key: "getRasterMeta",
|
|
4468
|
-
value: function getRasterMeta(
|
|
4155
|
+
value: function getRasterMeta(_ref18) {
|
|
4469
4156
|
let {
|
|
4470
4157
|
name,
|
|
4471
4158
|
id
|
|
4472
|
-
} =
|
|
4473
|
-
query = _objectWithoutPropertiesLoose(
|
|
4159
|
+
} = _ref18,
|
|
4160
|
+
query = _objectWithoutPropertiesLoose(_ref18, _excluded18);
|
|
4474
4161
|
|
|
4475
4162
|
return this.http.get("/layers/" + name + "/" + id + "/metadata", query).json();
|
|
4476
4163
|
}
|
|
@@ -4554,54 +4241,6 @@ let LayersService = /*#__PURE__*/function (_Service) {
|
|
|
4554
4241
|
value: function getDataLayout(name) {
|
|
4555
4242
|
return this.http.get("/layers/" + name + "/style/sprite.json").then(() => {});
|
|
4556
4243
|
}
|
|
4557
|
-
/**
|
|
4558
|
-
* No description
|
|
4559
|
-
*
|
|
4560
|
-
* @tags Layers
|
|
4561
|
-
* @name GetPreview
|
|
4562
|
-
* @operationId LayersController_GetPreview
|
|
4563
|
-
* @summary Gets preview of resource.
|
|
4564
|
-
* @request GET:/layers/{name}/preview
|
|
4565
|
-
* @response `200` OK
|
|
4566
|
-
*/
|
|
4567
|
-
|
|
4568
|
-
}, {
|
|
4569
|
-
key: "getPreview",
|
|
4570
|
-
value: function getPreview(name) {
|
|
4571
|
-
return this.http.createUrl("/layers/" + name + "/preview");
|
|
4572
|
-
}
|
|
4573
|
-
/**
|
|
4574
|
-
* No description
|
|
4575
|
-
*
|
|
4576
|
-
* @tags Layers
|
|
4577
|
-
* @name SetPreview
|
|
4578
|
-
* @operationId LayersController_SetPreview
|
|
4579
|
-
* @summary Sets preview to the resource.
|
|
4580
|
-
* @request POST:/layers/{name}/preview
|
|
4581
|
-
* @response `200` OK
|
|
4582
|
-
*/
|
|
4583
|
-
|
|
4584
|
-
}, {
|
|
4585
|
-
key: "setPreview",
|
|
4586
|
-
value: function setPreview(name, data) {
|
|
4587
|
-
return this.http.post("/layers/" + name + "/preview", toFormData(data)).json();
|
|
4588
|
-
}
|
|
4589
|
-
/**
|
|
4590
|
-
* No description
|
|
4591
|
-
*
|
|
4592
|
-
* @tags Layers
|
|
4593
|
-
* @name DeletePreview
|
|
4594
|
-
* @operationId LayersController_DeletePreview
|
|
4595
|
-
* @summary Delete resource preview.
|
|
4596
|
-
* @request DELETE:/layers/{name}/preview
|
|
4597
|
-
* @response `200` OK
|
|
4598
|
-
*/
|
|
4599
|
-
|
|
4600
|
-
}, {
|
|
4601
|
-
key: "deletePreview",
|
|
4602
|
-
value: function deletePreview(name) {
|
|
4603
|
-
return this.http.delete("/layers/" + name + "/preview", null).then(() => {});
|
|
4604
|
-
}
|
|
4605
4244
|
/**
|
|
4606
4245
|
* No description
|
|
4607
4246
|
*
|
|
@@ -4650,70 +4289,6 @@ let LayersService = /*#__PURE__*/function (_Service) {
|
|
|
4650
4289
|
value: function getResourceReferences(name) {
|
|
4651
4290
|
return this.http.get("/layers/" + name + "/references").json();
|
|
4652
4291
|
}
|
|
4653
|
-
/**
|
|
4654
|
-
* No description
|
|
4655
|
-
*
|
|
4656
|
-
* @tags Layers
|
|
4657
|
-
* @name GetPermissions
|
|
4658
|
-
* @operationId LayersController_GetPermissions
|
|
4659
|
-
* @summary Returns resource permissions.
|
|
4660
|
-
* @request GET:/layers/{name}/permissions
|
|
4661
|
-
* @response `200` OK
|
|
4662
|
-
*/
|
|
4663
|
-
|
|
4664
|
-
}, {
|
|
4665
|
-
key: "getPermissions",
|
|
4666
|
-
value: function getPermissions(name) {
|
|
4667
|
-
return this.http.get("/layers/" + name + "/permissions").json();
|
|
4668
|
-
}
|
|
4669
|
-
/**
|
|
4670
|
-
* No description
|
|
4671
|
-
*
|
|
4672
|
-
* @tags Layers
|
|
4673
|
-
* @name AddPermissions
|
|
4674
|
-
* @operationId LayersController_AddPermissions
|
|
4675
|
-
* @summary Adds permissions for the layer, combining existing permissions with the given one.
|
|
4676
|
-
* @request POST:/layers/{name}/permissions
|
|
4677
|
-
* @response `200` OK
|
|
4678
|
-
*/
|
|
4679
|
-
|
|
4680
|
-
}, {
|
|
4681
|
-
key: "addPermissions",
|
|
4682
|
-
value: function addPermissions(name, data) {
|
|
4683
|
-
return this.http.post("/layers/" + name + "/permissions", data).json();
|
|
4684
|
-
}
|
|
4685
|
-
/**
|
|
4686
|
-
* No description
|
|
4687
|
-
*
|
|
4688
|
-
* @tags Layers
|
|
4689
|
-
* @name SetPermissions
|
|
4690
|
-
* @operationId LayersController_SetPermissions
|
|
4691
|
-
* @summary Replaces existing access control list for the layer with the given one.
|
|
4692
|
-
* @request PUT:/layers/{name}/permissions
|
|
4693
|
-
* @response `200` OK
|
|
4694
|
-
*/
|
|
4695
|
-
|
|
4696
|
-
}, {
|
|
4697
|
-
key: "setPermissions",
|
|
4698
|
-
value: function setPermissions(name, data) {
|
|
4699
|
-
return this.http.put("/layers/" + name + "/permissions", data).json();
|
|
4700
|
-
}
|
|
4701
|
-
/**
|
|
4702
|
-
* No description
|
|
4703
|
-
*
|
|
4704
|
-
* @tags Layers
|
|
4705
|
-
* @name RemovePermissions
|
|
4706
|
-
* @operationId LayersController_RemovePermissions
|
|
4707
|
-
* @summary Removes permissions for the layer for the given role.
|
|
4708
|
-
* @request DELETE:/layers/{name}/permissions/{role}
|
|
4709
|
-
* @response `200` OK
|
|
4710
|
-
*/
|
|
4711
|
-
|
|
4712
|
-
}, {
|
|
4713
|
-
key: "removePermissions",
|
|
4714
|
-
value: function removePermissions(name, role) {
|
|
4715
|
-
return this.http.delete("/layers/" + name + "/permissions/" + role, null).json();
|
|
4716
|
-
}
|
|
4717
4292
|
}]);
|
|
4718
4293
|
|
|
4719
4294
|
return LayersService;
|
|
@@ -4732,8 +4307,6 @@ function notError(v) {
|
|
|
4732
4307
|
return !isError(v);
|
|
4733
4308
|
}
|
|
4734
4309
|
|
|
4735
|
-
const _excluded$4 = ["remote"],
|
|
4736
|
-
_excluded2$3 = ["remote"];
|
|
4737
4310
|
let Layers = /*#__PURE__*/function (_LayersService) {
|
|
4738
4311
|
_inherits(Layers, _LayersService);
|
|
4739
4312
|
|
|
@@ -4762,46 +4335,6 @@ let Layers = /*#__PURE__*/function (_LayersService) {
|
|
|
4762
4335
|
types: ['LocalTileService', 'RemoteTileService']
|
|
4763
4336
|
}));
|
|
4764
4337
|
}
|
|
4765
|
-
}, {
|
|
4766
|
-
key: "createSubLayer",
|
|
4767
|
-
value: function createSubLayer(configuration) {
|
|
4768
|
-
return this.publishStyledLayerService(configuration);
|
|
4769
|
-
}
|
|
4770
|
-
}, {
|
|
4771
|
-
key: "createTileLayer",
|
|
4772
|
-
value: function createTileLayer(_ref) {
|
|
4773
|
-
let {
|
|
4774
|
-
remote
|
|
4775
|
-
} = _ref,
|
|
4776
|
-
configuration = _objectWithoutPropertiesLoose(_ref, _excluded$4);
|
|
4777
|
-
|
|
4778
|
-
if (remote) {
|
|
4779
|
-
return this.publishRemoteTileService(configuration);
|
|
4780
|
-
}
|
|
4781
|
-
|
|
4782
|
-
return this.publishLocalTileService(configuration);
|
|
4783
|
-
}
|
|
4784
|
-
}, {
|
|
4785
|
-
key: "updateTileLayer",
|
|
4786
|
-
value: function updateTileLayer(_ref2) {
|
|
4787
|
-
let {
|
|
4788
|
-
remote
|
|
4789
|
-
} = _ref2,
|
|
4790
|
-
configuration = _objectWithoutPropertiesLoose(_ref2, _excluded2$3);
|
|
4791
|
-
|
|
4792
|
-
if (remote) {
|
|
4793
|
-
return this.updateRemoteTileService(configuration.name, configuration);
|
|
4794
|
-
}
|
|
4795
|
-
|
|
4796
|
-
return this.updateLocalTileService(configuration.name, configuration);
|
|
4797
|
-
}
|
|
4798
|
-
}, {
|
|
4799
|
-
key: "uploadPreview",
|
|
4800
|
-
value: function uploadPreview(name, file) {
|
|
4801
|
-
return this.setPreview(name, {
|
|
4802
|
-
file
|
|
4803
|
-
});
|
|
4804
|
-
}
|
|
4805
4338
|
}, {
|
|
4806
4339
|
key: "findOne",
|
|
4807
4340
|
value: function findOne(name) {
|
|
@@ -4820,16 +4353,6 @@ let Layers = /*#__PURE__*/function (_LayersService) {
|
|
|
4820
4353
|
value: function findAll(params) {
|
|
4821
4354
|
return this.getLayersList(params);
|
|
4822
4355
|
}
|
|
4823
|
-
}, {
|
|
4824
|
-
key: "create",
|
|
4825
|
-
value: function create(configuration) {
|
|
4826
|
-
return this.publishPostgresLayerService(configuration);
|
|
4827
|
-
}
|
|
4828
|
-
}, {
|
|
4829
|
-
key: "update",
|
|
4830
|
-
value: function update(configuration) {
|
|
4831
|
-
return this.updatePostgresLayerService(configuration.name, configuration);
|
|
4832
|
-
}
|
|
4833
4356
|
}, {
|
|
4834
4357
|
key: "createQueryLayer",
|
|
4835
4358
|
value: function createQueryLayer(configuration) {
|
|
@@ -5048,106 +4571,6 @@ let Names = /*#__PURE__*/function () {
|
|
|
5048
4571
|
return Names;
|
|
5049
4572
|
}();
|
|
5050
4573
|
|
|
5051
|
-
/**
|
|
5052
|
-
* @title Spatial Processing Core API
|
|
5053
|
-
* @version 1.5.1.0
|
|
5054
|
-
* @baseUrl /sp
|
|
5055
|
-
*/
|
|
5056
|
-
|
|
5057
|
-
let NamespaceService = /*#__PURE__*/function (_Service) {
|
|
5058
|
-
_inherits(NamespaceService, _Service);
|
|
5059
|
-
|
|
5060
|
-
var _super = /*#__PURE__*/_createSuper(NamespaceService);
|
|
5061
|
-
|
|
5062
|
-
function NamespaceService() {
|
|
5063
|
-
_classCallCheck(this, NamespaceService);
|
|
5064
|
-
|
|
5065
|
-
return _super.apply(this, arguments);
|
|
5066
|
-
}
|
|
5067
|
-
|
|
5068
|
-
_createClass(NamespaceService, [{
|
|
5069
|
-
key: "getNamespaces",
|
|
5070
|
-
value:
|
|
5071
|
-
/**
|
|
5072
|
-
* No description
|
|
5073
|
-
*
|
|
5074
|
-
* @tags Namespace
|
|
5075
|
-
* @name GetNamespaces
|
|
5076
|
-
* @operationId NamespaceController_GetNamespacesAsync
|
|
5077
|
-
* @summary Returns the list of existing namespaces, that correspond to the given conditions.
|
|
5078
|
-
* @request GET:/namespaces
|
|
5079
|
-
* @response `200` OK
|
|
5080
|
-
*/
|
|
5081
|
-
function getNamespaces(query) {
|
|
5082
|
-
return this.http.get("/namespaces", query).json();
|
|
5083
|
-
}
|
|
5084
|
-
/**
|
|
5085
|
-
* No description
|
|
5086
|
-
*
|
|
5087
|
-
* @tags Namespace
|
|
5088
|
-
* @name CreateNamespace
|
|
5089
|
-
* @operationId NamespaceController_CreateNamespace
|
|
5090
|
-
* @summary Creates a new namespace.
|
|
5091
|
-
* @request POST:/namespaces
|
|
5092
|
-
* @response `200` OK
|
|
5093
|
-
*/
|
|
5094
|
-
|
|
5095
|
-
}, {
|
|
5096
|
-
key: "createNamespace",
|
|
5097
|
-
value: function createNamespace(query) {
|
|
5098
|
-
return this.http.post("/namespaces", null, query).json();
|
|
5099
|
-
}
|
|
5100
|
-
/**
|
|
5101
|
-
* No description
|
|
5102
|
-
*
|
|
5103
|
-
* @tags Namespace
|
|
5104
|
-
* @name GetNamespace
|
|
5105
|
-
* @operationId NamespaceController_GetNamespaceAsync
|
|
5106
|
-
* @summary Get namespace information.
|
|
5107
|
-
* @request GET:/namespaces/{namespace}
|
|
5108
|
-
* @response `200` OK
|
|
5109
|
-
*/
|
|
5110
|
-
|
|
5111
|
-
}, {
|
|
5112
|
-
key: "getNamespace",
|
|
5113
|
-
value: function getNamespace(namespace) {
|
|
5114
|
-
return this.http.get("/namespaces/" + namespace).json();
|
|
5115
|
-
}
|
|
5116
|
-
/**
|
|
5117
|
-
* No description
|
|
5118
|
-
*
|
|
5119
|
-
* @tags Namespace
|
|
5120
|
-
* @name RemoveNamespace
|
|
5121
|
-
* @operationId NamespaceController_RemoveNamespaceAsync
|
|
5122
|
-
* @summary Remove namespace.
|
|
5123
|
-
* @request DELETE:/namespaces/{namespace}
|
|
5124
|
-
* @response `200` OK
|
|
5125
|
-
*/
|
|
5126
|
-
|
|
5127
|
-
}, {
|
|
5128
|
-
key: "removeNamespace",
|
|
5129
|
-
value: function removeNamespace(namespace) {
|
|
5130
|
-
return this.http.delete("/namespaces/" + namespace, null).then(() => {});
|
|
5131
|
-
}
|
|
5132
|
-
}]);
|
|
5133
|
-
|
|
5134
|
-
return NamespaceService;
|
|
5135
|
-
}(Service);
|
|
5136
|
-
|
|
5137
|
-
let Namespace = /*#__PURE__*/function (_NamespaceService) {
|
|
5138
|
-
_inherits(Namespace, _NamespaceService);
|
|
5139
|
-
|
|
5140
|
-
var _super = /*#__PURE__*/_createSuper(Namespace);
|
|
5141
|
-
|
|
5142
|
-
function Namespace() {
|
|
5143
|
-
_classCallCheck(this, Namespace);
|
|
5144
|
-
|
|
5145
|
-
return _super.apply(this, arguments);
|
|
5146
|
-
}
|
|
5147
|
-
|
|
5148
|
-
return _createClass(Namespace);
|
|
5149
|
-
}(NamespaceService);
|
|
5150
|
-
|
|
5151
4574
|
/**
|
|
5152
4575
|
* @title Spatial Processing Core API
|
|
5153
4576
|
* @version 1.5.1.0
|
|
@@ -5588,7 +5011,7 @@ let Print = /*#__PURE__*/function (_PrintService) {
|
|
|
5588
5011
|
return _createClass(Print);
|
|
5589
5012
|
}(PrintService);
|
|
5590
5013
|
|
|
5591
|
-
const _excluded$
|
|
5014
|
+
const _excluded$4 = ["name"];
|
|
5592
5015
|
/**
|
|
5593
5016
|
* @title Spatial Processing Core API
|
|
5594
5017
|
* @version 1.5.1.0
|
|
@@ -5638,22 +5061,6 @@ let ProjectsService = /*#__PURE__*/function (_Service) {
|
|
|
5638
5061
|
value: function createProject(data) {
|
|
5639
5062
|
return this.http.post("/projects", data).json();
|
|
5640
5063
|
}
|
|
5641
|
-
/**
|
|
5642
|
-
* No description
|
|
5643
|
-
*
|
|
5644
|
-
* @tags Projects
|
|
5645
|
-
* @name SetPermissionsBatch
|
|
5646
|
-
* @operationId ProjectsController_SetPermissionsBatch
|
|
5647
|
-
* @summary Overrides multiply resources permissions in single batch.
|
|
5648
|
-
* @request PUT:/projects
|
|
5649
|
-
* @response `200` OK
|
|
5650
|
-
*/
|
|
5651
|
-
|
|
5652
|
-
}, {
|
|
5653
|
-
key: "setPermissionsBatch",
|
|
5654
|
-
value: function setPermissionsBatch(data) {
|
|
5655
|
-
return this.http.put("/projects", data).then(() => {});
|
|
5656
|
-
}
|
|
5657
5064
|
/**
|
|
5658
5065
|
* No description
|
|
5659
5066
|
*
|
|
@@ -5751,7 +5158,7 @@ let ProjectsService = /*#__PURE__*/function (_Service) {
|
|
|
5751
5158
|
let {
|
|
5752
5159
|
name
|
|
5753
5160
|
} = _ref,
|
|
5754
|
-
query = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
5161
|
+
query = _objectWithoutPropertiesLoose(_ref, _excluded$4);
|
|
5755
5162
|
|
|
5756
5163
|
return this.http.get("/projects/" + name + "/extent", query).json();
|
|
5757
5164
|
}
|
|
@@ -5807,49 +5214,17 @@ let ProjectsService = /*#__PURE__*/function (_Service) {
|
|
|
5807
5214
|
* No description
|
|
5808
5215
|
*
|
|
5809
5216
|
* @tags Projects
|
|
5810
|
-
* @name
|
|
5811
|
-
* @operationId
|
|
5812
|
-
* @summary
|
|
5813
|
-
* @request GET:/projects/{name}/
|
|
5814
|
-
* @response `200` OK
|
|
5815
|
-
*/
|
|
5816
|
-
|
|
5817
|
-
}, {
|
|
5818
|
-
key: "getPreview",
|
|
5819
|
-
value: function getPreview(name) {
|
|
5820
|
-
return this.http.createUrl("/projects/" + name + "/preview");
|
|
5821
|
-
}
|
|
5822
|
-
/**
|
|
5823
|
-
* No description
|
|
5824
|
-
*
|
|
5825
|
-
* @tags Projects
|
|
5826
|
-
* @name SetPreview
|
|
5827
|
-
* @operationId ProjectsController_SetPreview
|
|
5828
|
-
* @summary Sets preview to the resource.
|
|
5829
|
-
* @request POST:/projects/{name}/preview
|
|
5830
|
-
* @response `200` OK
|
|
5831
|
-
*/
|
|
5832
|
-
|
|
5833
|
-
}, {
|
|
5834
|
-
key: "setPreview",
|
|
5835
|
-
value: function setPreview(name, data) {
|
|
5836
|
-
return this.http.post("/projects/" + name + "/preview", toFormData(data)).json();
|
|
5837
|
-
}
|
|
5838
|
-
/**
|
|
5839
|
-
* No description
|
|
5840
|
-
*
|
|
5841
|
-
* @tags Projects
|
|
5842
|
-
* @name DeletePreview
|
|
5843
|
-
* @operationId ProjectsController_DeletePreview
|
|
5844
|
-
* @summary Delete resource preview.
|
|
5845
|
-
* @request DELETE:/projects/{name}/preview
|
|
5217
|
+
* @name GetTilesLayerImageWithFormatAndDpi
|
|
5218
|
+
* @operationId ProjectsController_GetTilesLayerImageWithFormatAndDpi
|
|
5219
|
+
* @summary Render tile.
|
|
5220
|
+
* @request GET:/projects/{name}/tile/{z}/{x}/{y}@{dpi}x.{format}
|
|
5846
5221
|
* @response `200` OK
|
|
5847
5222
|
*/
|
|
5848
5223
|
|
|
5849
5224
|
}, {
|
|
5850
|
-
key: "
|
|
5851
|
-
value: function
|
|
5852
|
-
return this.http.
|
|
5225
|
+
key: "getTilesLayerImageWithFormatAndDpi",
|
|
5226
|
+
value: function getTilesLayerImageWithFormatAndDpi(name, x, y, z, dpi, format) {
|
|
5227
|
+
return this.http.createUrl("/projects/" + name + "/tile/" + z + "/" + x + "/" + y + "@" + dpi + "x." + format);
|
|
5853
5228
|
}
|
|
5854
5229
|
/**
|
|
5855
5230
|
* No description
|
|
@@ -5899,70 +5274,6 @@ let ProjectsService = /*#__PURE__*/function (_Service) {
|
|
|
5899
5274
|
value: function getResourceReferences(name) {
|
|
5900
5275
|
return this.http.get("/projects/" + name + "/references").json();
|
|
5901
5276
|
}
|
|
5902
|
-
/**
|
|
5903
|
-
* No description
|
|
5904
|
-
*
|
|
5905
|
-
* @tags Projects
|
|
5906
|
-
* @name GetPermissions
|
|
5907
|
-
* @operationId ProjectsController_GetPermissions
|
|
5908
|
-
* @summary Returns resource permissions.
|
|
5909
|
-
* @request GET:/projects/{name}/permissions
|
|
5910
|
-
* @response `200` OK
|
|
5911
|
-
*/
|
|
5912
|
-
|
|
5913
|
-
}, {
|
|
5914
|
-
key: "getPermissions",
|
|
5915
|
-
value: function getPermissions(name) {
|
|
5916
|
-
return this.http.get("/projects/" + name + "/permissions").json();
|
|
5917
|
-
}
|
|
5918
|
-
/**
|
|
5919
|
-
* No description
|
|
5920
|
-
*
|
|
5921
|
-
* @tags Projects
|
|
5922
|
-
* @name AddPermissions
|
|
5923
|
-
* @operationId ProjectsController_AddPermissions
|
|
5924
|
-
* @summary Adds permissions for the layer, combining existing permissions with the given one.
|
|
5925
|
-
* @request POST:/projects/{name}/permissions
|
|
5926
|
-
* @response `200` OK
|
|
5927
|
-
*/
|
|
5928
|
-
|
|
5929
|
-
}, {
|
|
5930
|
-
key: "addPermissions",
|
|
5931
|
-
value: function addPermissions(name, data) {
|
|
5932
|
-
return this.http.post("/projects/" + name + "/permissions", data).json();
|
|
5933
|
-
}
|
|
5934
|
-
/**
|
|
5935
|
-
* No description
|
|
5936
|
-
*
|
|
5937
|
-
* @tags Projects
|
|
5938
|
-
* @name SetPermissions
|
|
5939
|
-
* @operationId ProjectsController_SetPermissions
|
|
5940
|
-
* @summary Replaces existing access control list for the layer with the given one.
|
|
5941
|
-
* @request PUT:/projects/{name}/permissions
|
|
5942
|
-
* @response `200` OK
|
|
5943
|
-
*/
|
|
5944
|
-
|
|
5945
|
-
}, {
|
|
5946
|
-
key: "setPermissions",
|
|
5947
|
-
value: function setPermissions(name, data) {
|
|
5948
|
-
return this.http.put("/projects/" + name + "/permissions", data).json();
|
|
5949
|
-
}
|
|
5950
|
-
/**
|
|
5951
|
-
* No description
|
|
5952
|
-
*
|
|
5953
|
-
* @tags Projects
|
|
5954
|
-
* @name RemovePermissions
|
|
5955
|
-
* @operationId ProjectsController_RemovePermissions
|
|
5956
|
-
* @summary Removes permissions for the layer for the given role.
|
|
5957
|
-
* @request DELETE:/projects/{name}/permissions/{role}
|
|
5958
|
-
* @response `200` OK
|
|
5959
|
-
*/
|
|
5960
|
-
|
|
5961
|
-
}, {
|
|
5962
|
-
key: "removePermissions",
|
|
5963
|
-
value: function removePermissions(name, role) {
|
|
5964
|
-
return this.http.delete("/projects/" + name + "/permissions/" + role, null).json();
|
|
5965
|
-
}
|
|
5966
5277
|
}]);
|
|
5967
5278
|
|
|
5968
5279
|
return ProjectsService;
|
|
@@ -5989,13 +5300,6 @@ let Projects = /*#__PURE__*/function (_ProjectsService) {
|
|
|
5989
5300
|
value: function getProjectsDeps(proejcts) {
|
|
5990
5301
|
return promiseAllIgnoreErrors(proejcts.map(project => this.getResourceDependencies(project)));
|
|
5991
5302
|
}
|
|
5992
|
-
}, {
|
|
5993
|
-
key: "uploadPreview",
|
|
5994
|
-
value: function uploadPreview(name, file) {
|
|
5995
|
-
return this.setPreview(name, {
|
|
5996
|
-
file
|
|
5997
|
-
});
|
|
5998
|
-
}
|
|
5999
5303
|
}, {
|
|
6000
5304
|
key: "findOne",
|
|
6001
5305
|
value: function findOne(name) {
|
|
@@ -6009,241 +5313,49 @@ let Projects = /*#__PURE__*/function (_ProjectsService) {
|
|
|
6009
5313
|
}, {
|
|
6010
5314
|
key: "create",
|
|
6011
5315
|
value: function create(resource) {
|
|
6012
|
-
return this.createProject(resource);
|
|
6013
|
-
}
|
|
6014
|
-
}, {
|
|
6015
|
-
key: "update",
|
|
6016
|
-
value: function update(resource) {
|
|
6017
|
-
return this.updateProject(resource.name, resource);
|
|
6018
|
-
}
|
|
6019
|
-
}, {
|
|
6020
|
-
key: "remove",
|
|
6021
|
-
value: async function remove(name) {
|
|
6022
|
-
await this.deleteResource(name);
|
|
6023
|
-
return name;
|
|
6024
|
-
}
|
|
6025
|
-
}]);
|
|
6026
|
-
|
|
6027
|
-
return Projects;
|
|
6028
|
-
}(ProjectsService);
|
|
6029
|
-
function isProjectContentItems(v) {
|
|
6030
|
-
return v !== null && v !== undefined;
|
|
6031
|
-
}
|
|
6032
|
-
|
|
6033
|
-
const _excluded$6 = ["id"];
|
|
6034
|
-
/**
|
|
6035
|
-
* @title Spatial Processing Core API
|
|
6036
|
-
* @version 1.5.1.0
|
|
6037
|
-
* @baseUrl /sp
|
|
6038
|
-
*/
|
|
6039
|
-
|
|
6040
|
-
let RemoteTaskManagerService = /*#__PURE__*/function (_Service) {
|
|
6041
|
-
_inherits(RemoteTaskManagerService, _Service);
|
|
6042
|
-
|
|
6043
|
-
var _super = /*#__PURE__*/_createSuper(RemoteTaskManagerService);
|
|
6044
|
-
|
|
6045
|
-
function RemoteTaskManagerService() {
|
|
6046
|
-
_classCallCheck(this, RemoteTaskManagerService);
|
|
6047
|
-
|
|
6048
|
-
return _super.apply(this, arguments);
|
|
6049
|
-
}
|
|
6050
|
-
|
|
6051
|
-
_createClass(RemoteTaskManagerService, [{
|
|
6052
|
-
key: "cancelTask",
|
|
6053
|
-
value:
|
|
6054
|
-
/**
|
|
6055
|
-
* No description
|
|
6056
|
-
*
|
|
6057
|
-
* @tags RemoteTaskManager
|
|
6058
|
-
* @name CancelTask
|
|
6059
|
-
* @operationId RemoteTaskManagerController_CancelTask
|
|
6060
|
-
* @summary Cancel task execution by given id.
|
|
6061
|
-
* @request POST:/scheduler/tasks/{id}/cancel
|
|
6062
|
-
* @response `200` OK
|
|
6063
|
-
*/
|
|
6064
|
-
function cancelTask(id) {
|
|
6065
|
-
return this.http.post("/scheduler/tasks/" + id + "/cancel", null).then(() => {});
|
|
6066
|
-
}
|
|
6067
|
-
/**
|
|
6068
|
-
* No description
|
|
6069
|
-
*
|
|
6070
|
-
* @tags RemoteTaskManager
|
|
6071
|
-
* @name StartCogCreateTask
|
|
6072
|
-
* @operationId RemoteTaskManagerController_StartCogCreateTask
|
|
6073
|
-
* @summary Plans the execution of a 'create raster cog' server task.
|
|
6074
|
-
* @request POST:/scheduler/tasks#type=cogService_create
|
|
6075
|
-
* @response `200` OK
|
|
6076
|
-
*/
|
|
6077
|
-
|
|
6078
|
-
}, {
|
|
6079
|
-
key: "startCogCreateTask",
|
|
6080
|
-
value: function startCogCreateTask(data) {
|
|
6081
|
-
return this.http.post("/scheduler/tasks", data, {
|
|
6082
|
-
type: 'cogService_create'
|
|
6083
|
-
}).text();
|
|
6084
|
-
}
|
|
6085
|
-
/**
|
|
6086
|
-
* No description
|
|
6087
|
-
*
|
|
6088
|
-
* @tags RemoteTaskManager
|
|
6089
|
-
* @name StartRasterVrtTask
|
|
6090
|
-
* @operationId RemoteTaskManagerController_StartRasterVrtTask
|
|
6091
|
-
* @summary Plans the execution of a 'create raster vrt' server task.
|
|
6092
|
-
* @request POST:/scheduler/tasks#type=cogService_vrt
|
|
6093
|
-
* @response `200` OK
|
|
6094
|
-
*/
|
|
6095
|
-
|
|
6096
|
-
}, {
|
|
6097
|
-
key: "startRasterVrtTask",
|
|
6098
|
-
value: function startRasterVrtTask(data) {
|
|
6099
|
-
return this.http.post("/scheduler/tasks", data, {
|
|
6100
|
-
type: 'cogService_vrt'
|
|
6101
|
-
}).text();
|
|
6102
|
-
}
|
|
6103
|
-
/**
|
|
6104
|
-
* No description
|
|
6105
|
-
*
|
|
6106
|
-
* @tags RemoteTaskManager
|
|
6107
|
-
* @name StartNetCdfTask
|
|
6108
|
-
* @operationId RemoteTaskManagerController_StartNetCdfTask
|
|
6109
|
-
* @summary Plans the execution of a 'create raster netcdf' server task.
|
|
6110
|
-
* @request POST:/scheduler/tasks#type=cogService_netcdf
|
|
6111
|
-
* @response `200` OK
|
|
6112
|
-
*/
|
|
6113
|
-
|
|
6114
|
-
}, {
|
|
6115
|
-
key: "startNetCdfTask",
|
|
6116
|
-
value: function startNetCdfTask(data) {
|
|
6117
|
-
return this.http.post("/scheduler/tasks", data, {
|
|
6118
|
-
type: 'cogService_netcdf'
|
|
6119
|
-
}).text();
|
|
6120
|
-
}
|
|
6121
|
-
/**
|
|
6122
|
-
* No description
|
|
6123
|
-
*
|
|
6124
|
-
* @tags RemoteTaskManager
|
|
6125
|
-
* @name StartBufferTask
|
|
6126
|
-
* @operationId RemoteTaskManagerController_StartBufferTask
|
|
6127
|
-
* @summary Plans the execution of a 'create buffers' server task.
|
|
6128
|
-
* @request POST:/scheduler/tasks#type=geoService_buffer
|
|
6129
|
-
* @response `200` OK
|
|
6130
|
-
*/
|
|
6131
|
-
|
|
6132
|
-
}, {
|
|
6133
|
-
key: "startBufferTask",
|
|
6134
|
-
value: function startBufferTask(data) {
|
|
6135
|
-
return this.http.post("/scheduler/tasks", data, {
|
|
6136
|
-
type: 'geoService_buffer'
|
|
6137
|
-
}).text();
|
|
6138
|
-
}
|
|
6139
|
-
/**
|
|
6140
|
-
* No description
|
|
6141
|
-
*
|
|
6142
|
-
* @tags RemoteTaskManager
|
|
6143
|
-
* @name StartCopyTableTask
|
|
6144
|
-
* @operationId RemoteTaskManagerController_StartCopyTableTask
|
|
6145
|
-
* @summary Plans the execution of a 'copy table' server task.
|
|
6146
|
-
* @request POST:/scheduler/tasks#type=geoService_copy
|
|
6147
|
-
* @response `200` OK
|
|
6148
|
-
*/
|
|
6149
|
-
|
|
6150
|
-
}, {
|
|
6151
|
-
key: "startCopyTableTask",
|
|
6152
|
-
value: function startCopyTableTask(data) {
|
|
6153
|
-
return this.http.post("/scheduler/tasks", data, {
|
|
6154
|
-
type: 'geoService_copy'
|
|
6155
|
-
}).text();
|
|
6156
|
-
}
|
|
6157
|
-
/**
|
|
6158
|
-
* No description
|
|
6159
|
-
*
|
|
6160
|
-
* @tags RemoteTaskManager
|
|
6161
|
-
* @name StartUnionTask
|
|
6162
|
-
* @operationId RemoteTaskManagerController_StartUnionTask
|
|
6163
|
-
* @summary Plans the execution of a 'create union' server task.
|
|
6164
|
-
* @request POST:/scheduler/tasks#type=geoService_union
|
|
6165
|
-
* @response `200` OK
|
|
6166
|
-
*/
|
|
6167
|
-
|
|
6168
|
-
}, {
|
|
6169
|
-
key: "startUnionTask",
|
|
6170
|
-
value: function startUnionTask(data) {
|
|
6171
|
-
return this.http.post("/scheduler/tasks", data, {
|
|
6172
|
-
type: 'geoService_union'
|
|
6173
|
-
}).text();
|
|
6174
|
-
}
|
|
6175
|
-
/**
|
|
6176
|
-
* No description
|
|
6177
|
-
*
|
|
6178
|
-
* @tags RemoteTaskManager
|
|
6179
|
-
* @name StartOverlayTask
|
|
6180
|
-
* @operationId RemoteTaskManagerController_StartOverlayTask
|
|
6181
|
-
* @summary Plans the execution of a 'create overlay' server task.
|
|
6182
|
-
* @request POST:/scheduler/tasks#type=geoService_overlay
|
|
6183
|
-
* @response `200` OK
|
|
6184
|
-
*/
|
|
6185
|
-
|
|
6186
|
-
}, {
|
|
6187
|
-
key: "startOverlayTask",
|
|
6188
|
-
value: function startOverlayTask(data) {
|
|
6189
|
-
return this.http.post("/scheduler/tasks", data, {
|
|
6190
|
-
type: 'geoService_overlay'
|
|
6191
|
-
}).text();
|
|
6192
|
-
}
|
|
6193
|
-
/**
|
|
6194
|
-
* No description
|
|
6195
|
-
*
|
|
6196
|
-
* @tags RemoteTaskManager
|
|
6197
|
-
* @name StartCopyTask
|
|
6198
|
-
* @operationId RemoteTaskManagerController_StartCopyTask
|
|
6199
|
-
* @summary Plans the execution of a 'copy storages' server task.
|
|
6200
|
-
* @request POST:/scheduler/tasks#type=copyTask
|
|
6201
|
-
* @response `200` OK
|
|
6202
|
-
*/
|
|
6203
|
-
|
|
6204
|
-
}, {
|
|
6205
|
-
key: "startCopyTask",
|
|
6206
|
-
value: function startCopyTask(data) {
|
|
6207
|
-
return this.http.post("/scheduler/tasks", data, {
|
|
6208
|
-
type: 'copyTask'
|
|
6209
|
-
}).text();
|
|
5316
|
+
return this.createProject(resource);
|
|
6210
5317
|
}
|
|
6211
|
-
/**
|
|
6212
|
-
* No description
|
|
6213
|
-
*
|
|
6214
|
-
* @tags RemoteTaskManager
|
|
6215
|
-
* @name StartAvailableAreaTask
|
|
6216
|
-
* @operationId RemoteTaskManagerController_StartAvailableAreaTask
|
|
6217
|
-
* @summary Plans the execution of a 'create available area' server task.
|
|
6218
|
-
* @request POST:/scheduler/tasks#type=availabilityArea
|
|
6219
|
-
* @response `200` OK
|
|
6220
|
-
*/
|
|
6221
|
-
|
|
6222
5318
|
}, {
|
|
6223
|
-
key: "
|
|
6224
|
-
value: function
|
|
6225
|
-
return this.
|
|
6226
|
-
type: 'availabilityArea'
|
|
6227
|
-
}).text();
|
|
5319
|
+
key: "update",
|
|
5320
|
+
value: function update(resource) {
|
|
5321
|
+
return this.updateProject(resource.name, resource);
|
|
6228
5322
|
}
|
|
6229
|
-
/**
|
|
6230
|
-
* No description
|
|
6231
|
-
*
|
|
6232
|
-
* @tags RemoteTaskManager
|
|
6233
|
-
* @name StartGeocodeTask
|
|
6234
|
-
* @operationId RemoteTaskManagerController_StartGeocodeTask
|
|
6235
|
-
* @summary Plans the execution of a 'geocode' server task.
|
|
6236
|
-
* @request POST:/scheduler/tasks#type=geocodeTask
|
|
6237
|
-
* @response `200` OK
|
|
6238
|
-
*/
|
|
6239
|
-
|
|
6240
5323
|
}, {
|
|
6241
|
-
key: "
|
|
6242
|
-
value: function
|
|
6243
|
-
|
|
6244
|
-
|
|
6245
|
-
}).text();
|
|
5324
|
+
key: "remove",
|
|
5325
|
+
value: async function remove(name) {
|
|
5326
|
+
await this.deleteResource(name);
|
|
5327
|
+
return name;
|
|
6246
5328
|
}
|
|
5329
|
+
}]);
|
|
5330
|
+
|
|
5331
|
+
return Projects;
|
|
5332
|
+
}(ProjectsService);
|
|
5333
|
+
function isProjectContentItems(v) {
|
|
5334
|
+
return v !== null && v !== undefined;
|
|
5335
|
+
}
|
|
5336
|
+
|
|
5337
|
+
const _excluded$5 = ["id"],
|
|
5338
|
+
_excluded2$3 = ["id"];
|
|
5339
|
+
/**
|
|
5340
|
+
* @title Spatial Processing Core API
|
|
5341
|
+
* @version 1.5.1.0
|
|
5342
|
+
* @baseUrl /sp
|
|
5343
|
+
*/
|
|
5344
|
+
|
|
5345
|
+
let RemoteTaskManagerService = /*#__PURE__*/function (_Service) {
|
|
5346
|
+
_inherits(RemoteTaskManagerService, _Service);
|
|
5347
|
+
|
|
5348
|
+
var _super = /*#__PURE__*/_createSuper(RemoteTaskManagerService);
|
|
5349
|
+
|
|
5350
|
+
function RemoteTaskManagerService() {
|
|
5351
|
+
_classCallCheck(this, RemoteTaskManagerService);
|
|
5352
|
+
|
|
5353
|
+
return _super.apply(this, arguments);
|
|
5354
|
+
}
|
|
5355
|
+
|
|
5356
|
+
_createClass(RemoteTaskManagerService, [{
|
|
5357
|
+
key: "get",
|
|
5358
|
+
value:
|
|
6247
5359
|
/**
|
|
6248
5360
|
* No description
|
|
6249
5361
|
*
|
|
@@ -6254,11 +5366,8 @@ let RemoteTaskManagerService = /*#__PURE__*/function (_Service) {
|
|
|
6254
5366
|
* @request GET:/scheduler/task/{id}/subtasks
|
|
6255
5367
|
* @response `200` OK
|
|
6256
5368
|
*/
|
|
6257
|
-
|
|
6258
|
-
|
|
6259
|
-
key: "get",
|
|
6260
|
-
value: function get(id) {
|
|
6261
|
-
return this.http.get("/scheduler/task/" + id + "/subtasks").then(() => {});
|
|
5369
|
+
function get(id) {
|
|
5370
|
+
return this.http.get("/scheduler/task/" + id + "/subtasks").json();
|
|
6262
5371
|
}
|
|
6263
5372
|
/**
|
|
6264
5373
|
* No description
|
|
@@ -6274,7 +5383,7 @@ let RemoteTaskManagerService = /*#__PURE__*/function (_Service) {
|
|
|
6274
5383
|
}, {
|
|
6275
5384
|
key: "stop",
|
|
6276
5385
|
value: function stop(id) {
|
|
6277
|
-
return this.http.post("/scheduler/task/" + id + "/stop", null).
|
|
5386
|
+
return this.http.post("/scheduler/task/" + id + "/stop", null).text();
|
|
6278
5387
|
}
|
|
6279
5388
|
/**
|
|
6280
5389
|
* No description
|
|
@@ -6306,7 +5415,7 @@ let RemoteTaskManagerService = /*#__PURE__*/function (_Service) {
|
|
|
6306
5415
|
}, {
|
|
6307
5416
|
key: "getTaskPrototypes",
|
|
6308
5417
|
value: function getTaskPrototypes(query) {
|
|
6309
|
-
return this.http.get("/scheduler", query).
|
|
5418
|
+
return this.http.get("/scheduler", query).json();
|
|
6310
5419
|
}
|
|
6311
5420
|
/**
|
|
6312
5421
|
* No description
|
|
@@ -6322,7 +5431,7 @@ let RemoteTaskManagerService = /*#__PURE__*/function (_Service) {
|
|
|
6322
5431
|
}, {
|
|
6323
5432
|
key: "updateTaskPrototype",
|
|
6324
5433
|
value: function updateTaskPrototype(id, data) {
|
|
6325
|
-
return this.http.put("/scheduler/" + id, data).
|
|
5434
|
+
return this.http.put("/scheduler/" + id, data).text();
|
|
6326
5435
|
}
|
|
6327
5436
|
/**
|
|
6328
5437
|
* No description
|
|
@@ -6338,7 +5447,7 @@ let RemoteTaskManagerService = /*#__PURE__*/function (_Service) {
|
|
|
6338
5447
|
}, {
|
|
6339
5448
|
key: "delete",
|
|
6340
5449
|
value: function _delete(id) {
|
|
6341
|
-
return this.http.delete("/scheduler/" + id, null).
|
|
5450
|
+
return this.http.delete("/scheduler/" + id, null).text();
|
|
6342
5451
|
}
|
|
6343
5452
|
/**
|
|
6344
5453
|
* No description
|
|
@@ -6354,7 +5463,7 @@ let RemoteTaskManagerService = /*#__PURE__*/function (_Service) {
|
|
|
6354
5463
|
}, {
|
|
6355
5464
|
key: "setEnable",
|
|
6356
5465
|
value: function setEnable(id, enable) {
|
|
6357
|
-
return this.http.post("/scheduler/" + id + "/enable/" + enable, null).
|
|
5466
|
+
return this.http.post("/scheduler/" + id + "/enable/" + enable, null).text();
|
|
6358
5467
|
}
|
|
6359
5468
|
/**
|
|
6360
5469
|
* No description
|
|
@@ -6373,9 +5482,9 @@ let RemoteTaskManagerService = /*#__PURE__*/function (_Service) {
|
|
|
6373
5482
|
let {
|
|
6374
5483
|
id
|
|
6375
5484
|
} = _ref,
|
|
6376
|
-
query = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
5485
|
+
query = _objectWithoutPropertiesLoose(_ref, _excluded$5);
|
|
6377
5486
|
|
|
6378
|
-
return this.http.get("/scheduler/" + id + "/tasks", query).
|
|
5487
|
+
return this.http.get("/scheduler/" + id + "/tasks", query).json();
|
|
6379
5488
|
}
|
|
6380
5489
|
/**
|
|
6381
5490
|
* No description
|
|
@@ -6391,7 +5500,7 @@ let RemoteTaskManagerService = /*#__PURE__*/function (_Service) {
|
|
|
6391
5500
|
}, {
|
|
6392
5501
|
key: "startTask",
|
|
6393
5502
|
value: function startTask(id, taskId) {
|
|
6394
|
-
return this.http.post("/scheduler/" + id + "/start/" + taskId, null).
|
|
5503
|
+
return this.http.post("/scheduler/" + id + "/start/" + taskId, null).json();
|
|
6395
5504
|
}
|
|
6396
5505
|
/**
|
|
6397
5506
|
* No description
|
|
@@ -6407,7 +5516,80 @@ let RemoteTaskManagerService = /*#__PURE__*/function (_Service) {
|
|
|
6407
5516
|
}, {
|
|
6408
5517
|
key: "startTask1",
|
|
6409
5518
|
value: function startTask1(id) {
|
|
6410
|
-
return this.http.post("/scheduler/" + id + "/start", null).
|
|
5519
|
+
return this.http.post("/scheduler/" + id + "/start", null).json();
|
|
5520
|
+
}
|
|
5521
|
+
/**
|
|
5522
|
+
* No description
|
|
5523
|
+
*
|
|
5524
|
+
* @tags RemoteTaskManager
|
|
5525
|
+
* @name GetTaskResource
|
|
5526
|
+
* @operationId RemoteTaskManagerController_GetTaskResource
|
|
5527
|
+
* @summary Shows SubTask in Task.
|
|
5528
|
+
* @request GET:/scheduler/taskresource/{id}
|
|
5529
|
+
* @response `200` OK
|
|
5530
|
+
*/
|
|
5531
|
+
|
|
5532
|
+
}, {
|
|
5533
|
+
key: "getTaskResource",
|
|
5534
|
+
value: function getTaskResource(_ref2) {
|
|
5535
|
+
let {
|
|
5536
|
+
id
|
|
5537
|
+
} = _ref2,
|
|
5538
|
+
query = _objectWithoutPropertiesLoose(_ref2, _excluded2$3);
|
|
5539
|
+
|
|
5540
|
+
return this.http.get("/scheduler/taskresource/" + id, query).json();
|
|
5541
|
+
}
|
|
5542
|
+
/**
|
|
5543
|
+
* No description
|
|
5544
|
+
*
|
|
5545
|
+
* @tags RemoteTaskManager
|
|
5546
|
+
* @name CreateTaskResource
|
|
5547
|
+
* @operationId RemoteTaskManagerController_CreateTaskResource
|
|
5548
|
+
* @summary Create task resource.
|
|
5549
|
+
* @request POST:/scheduler/taskresource
|
|
5550
|
+
* @response `200` OK
|
|
5551
|
+
*/
|
|
5552
|
+
|
|
5553
|
+
}, {
|
|
5554
|
+
key: "createTaskResource",
|
|
5555
|
+
value: function createTaskResource(data) {
|
|
5556
|
+
return this.http.post("/scheduler/taskresource", data).text();
|
|
5557
|
+
}
|
|
5558
|
+
/**
|
|
5559
|
+
* No description
|
|
5560
|
+
*
|
|
5561
|
+
* @tags RemoteTaskManager
|
|
5562
|
+
* @name UpdatePythonTaskResource
|
|
5563
|
+
* @operationId RemoteTaskManagerController_UpdatePythonTaskResource
|
|
5564
|
+
* @summary Update python task resource.
|
|
5565
|
+
* @request PATCH:/scheduler/taskresource/{id}#type=PythonTask
|
|
5566
|
+
* @response `200` OK
|
|
5567
|
+
*/
|
|
5568
|
+
|
|
5569
|
+
}, {
|
|
5570
|
+
key: "updatePythonTaskResource",
|
|
5571
|
+
value: function updatePythonTaskResource(id, data) {
|
|
5572
|
+
return this.http.patch("/scheduler/taskresource/" + id, data, {
|
|
5573
|
+
type: 'PythonTask'
|
|
5574
|
+
}).then(() => {});
|
|
5575
|
+
}
|
|
5576
|
+
/**
|
|
5577
|
+
* No description
|
|
5578
|
+
*
|
|
5579
|
+
* @tags RemoteTaskManager
|
|
5580
|
+
* @name UpdateSpTaskResource
|
|
5581
|
+
* @operationId RemoteTaskManagerController_UpdateSpTaskResource
|
|
5582
|
+
* @summary Update sp task resource.
|
|
5583
|
+
* @request PATCH:/scheduler/taskresource/{id}#type=SpTask
|
|
5584
|
+
* @response `200` OK
|
|
5585
|
+
*/
|
|
5586
|
+
|
|
5587
|
+
}, {
|
|
5588
|
+
key: "updateSpTaskResource",
|
|
5589
|
+
value: function updateSpTaskResource(id, data) {
|
|
5590
|
+
return this.http.patch("/scheduler/taskresource/" + id, data, {
|
|
5591
|
+
type: 'SpTask'
|
|
5592
|
+
}).then(() => {});
|
|
6411
5593
|
}
|
|
6412
5594
|
/**
|
|
6413
5595
|
* No description
|
|
@@ -6441,6 +5623,22 @@ let RemoteTaskManagerService = /*#__PURE__*/function (_Service) {
|
|
|
6441
5623
|
value: function post(data) {
|
|
6442
5624
|
return this.http.post("/scheduler/worker", data).json();
|
|
6443
5625
|
}
|
|
5626
|
+
/**
|
|
5627
|
+
* No description
|
|
5628
|
+
*
|
|
5629
|
+
* @tags RemoteTaskManager
|
|
5630
|
+
* @name GetWorker
|
|
5631
|
+
* @operationId RemoteTaskManagerController_GetWorker
|
|
5632
|
+
* @summary Get worker info by type.
|
|
5633
|
+
* @request GET:/scheduler/worker/{type}
|
|
5634
|
+
* @response `200` OK
|
|
5635
|
+
*/
|
|
5636
|
+
|
|
5637
|
+
}, {
|
|
5638
|
+
key: "getWorker",
|
|
5639
|
+
value: function getWorker(type) {
|
|
5640
|
+
return this.http.get("/scheduler/worker/" + type).json();
|
|
5641
|
+
}
|
|
6444
5642
|
}]);
|
|
6445
5643
|
|
|
6446
5644
|
return RemoteTaskManagerService;
|
|
@@ -7112,10 +6310,9 @@ let Styles = /*#__PURE__*/function (_StyleService) {
|
|
|
7112
6310
|
return _createClass(Styles);
|
|
7113
6311
|
}(StyleService);
|
|
7114
6312
|
|
|
7115
|
-
const _excluded$
|
|
6313
|
+
const _excluded$6 = ["name"],
|
|
7116
6314
|
_excluded2$4 = ["name"],
|
|
7117
|
-
_excluded3$3 = ["name"]
|
|
7118
|
-
_excluded4$2 = ["name"];
|
|
6315
|
+
_excluded3$3 = ["name"];
|
|
7119
6316
|
/**
|
|
7120
6317
|
* @title Spatial Processing Core API
|
|
7121
6318
|
* @version 1.5.1.0
|
|
@@ -7165,22 +6362,6 @@ let TablesService = /*#__PURE__*/function (_Service) {
|
|
|
7165
6362
|
value: function createTable(data) {
|
|
7166
6363
|
return this.http.post("/tables", data).json();
|
|
7167
6364
|
}
|
|
7168
|
-
/**
|
|
7169
|
-
* No description
|
|
7170
|
-
*
|
|
7171
|
-
* @tags Tables
|
|
7172
|
-
* @name SetPermissionsBatch
|
|
7173
|
-
* @operationId TablesController_SetPermissionsBatch
|
|
7174
|
-
* @summary Overrides multiply resources permissions in single batch.
|
|
7175
|
-
* @request PUT:/tables
|
|
7176
|
-
* @response `200` OK
|
|
7177
|
-
*/
|
|
7178
|
-
|
|
7179
|
-
}, {
|
|
7180
|
-
key: "setPermissionsBatch",
|
|
7181
|
-
value: function setPermissionsBatch(data) {
|
|
7182
|
-
return this.http.put("/tables", data).then(() => {});
|
|
7183
|
-
}
|
|
7184
6365
|
/**
|
|
7185
6366
|
* No description
|
|
7186
6367
|
*
|
|
@@ -7294,7 +6475,7 @@ let TablesService = /*#__PURE__*/function (_Service) {
|
|
|
7294
6475
|
let {
|
|
7295
6476
|
name
|
|
7296
6477
|
} = _ref,
|
|
7297
|
-
query = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
6478
|
+
query = _objectWithoutPropertiesLoose(_ref, _excluded$6);
|
|
7298
6479
|
|
|
7299
6480
|
return this.http.get("/tables/" + name + "/data", query).json();
|
|
7300
6481
|
}
|
|
@@ -7356,27 +6537,6 @@ let TablesService = /*#__PURE__*/function (_Service) {
|
|
|
7356
6537
|
|
|
7357
6538
|
return this.http.delete("/tables/" + name + "/data", null, query).then(() => {});
|
|
7358
6539
|
}
|
|
7359
|
-
/**
|
|
7360
|
-
* No description
|
|
7361
|
-
*
|
|
7362
|
-
* @tags Tables
|
|
7363
|
-
* @name GetUniqueDataRows
|
|
7364
|
-
* @operationId TablesController_GetUniqueDataRowsAsync
|
|
7365
|
-
* @summary Returns a single data row for each unique value defined by uniqueColumn.
|
|
7366
|
-
* @request GET:/tables/{name}/data/unique-values
|
|
7367
|
-
* @response `200` OK
|
|
7368
|
-
*/
|
|
7369
|
-
|
|
7370
|
-
}, {
|
|
7371
|
-
key: "getUniqueDataRows",
|
|
7372
|
-
value: function getUniqueDataRows(_ref4) {
|
|
7373
|
-
let {
|
|
7374
|
-
name
|
|
7375
|
-
} = _ref4,
|
|
7376
|
-
query = _objectWithoutPropertiesLoose(_ref4, _excluded4$2);
|
|
7377
|
-
|
|
7378
|
-
return this.http.get("/tables/" + name + "/data/unique-values", query).json();
|
|
7379
|
-
}
|
|
7380
6540
|
/**
|
|
7381
6541
|
* No description
|
|
7382
6542
|
*
|
|
@@ -7441,54 +6601,6 @@ let TablesService = /*#__PURE__*/function (_Service) {
|
|
|
7441
6601
|
value: function createViewFromQuery(data) {
|
|
7442
6602
|
return this.http.post("/tables/fromQuery", data).json();
|
|
7443
6603
|
}
|
|
7444
|
-
/**
|
|
7445
|
-
* No description
|
|
7446
|
-
*
|
|
7447
|
-
* @tags Tables
|
|
7448
|
-
* @name GetPreview
|
|
7449
|
-
* @operationId TablesController_GetPreview
|
|
7450
|
-
* @summary Gets preview of resource.
|
|
7451
|
-
* @request GET:/tables/{name}/preview
|
|
7452
|
-
* @response `200` OK
|
|
7453
|
-
*/
|
|
7454
|
-
|
|
7455
|
-
}, {
|
|
7456
|
-
key: "getPreview",
|
|
7457
|
-
value: function getPreview(name) {
|
|
7458
|
-
return this.http.createUrl("/tables/" + name + "/preview");
|
|
7459
|
-
}
|
|
7460
|
-
/**
|
|
7461
|
-
* No description
|
|
7462
|
-
*
|
|
7463
|
-
* @tags Tables
|
|
7464
|
-
* @name SetPreview
|
|
7465
|
-
* @operationId TablesController_SetPreview
|
|
7466
|
-
* @summary Sets preview to the resource.
|
|
7467
|
-
* @request POST:/tables/{name}/preview
|
|
7468
|
-
* @response `200` OK
|
|
7469
|
-
*/
|
|
7470
|
-
|
|
7471
|
-
}, {
|
|
7472
|
-
key: "setPreview",
|
|
7473
|
-
value: function setPreview(name, data) {
|
|
7474
|
-
return this.http.post("/tables/" + name + "/preview", toFormData(data)).json();
|
|
7475
|
-
}
|
|
7476
|
-
/**
|
|
7477
|
-
* No description
|
|
7478
|
-
*
|
|
7479
|
-
* @tags Tables
|
|
7480
|
-
* @name DeletePreview
|
|
7481
|
-
* @operationId TablesController_DeletePreview
|
|
7482
|
-
* @summary Delete resource preview.
|
|
7483
|
-
* @request DELETE:/tables/{name}/preview
|
|
7484
|
-
* @response `200` OK
|
|
7485
|
-
*/
|
|
7486
|
-
|
|
7487
|
-
}, {
|
|
7488
|
-
key: "deletePreview",
|
|
7489
|
-
value: function deletePreview(name) {
|
|
7490
|
-
return this.http.delete("/tables/" + name + "/preview", null).then(() => {});
|
|
7491
|
-
}
|
|
7492
6604
|
/**
|
|
7493
6605
|
* No description
|
|
7494
6606
|
*
|
|
@@ -7537,70 +6649,6 @@ let TablesService = /*#__PURE__*/function (_Service) {
|
|
|
7537
6649
|
value: function getResourceReferences(name) {
|
|
7538
6650
|
return this.http.get("/tables/" + name + "/references").json();
|
|
7539
6651
|
}
|
|
7540
|
-
/**
|
|
7541
|
-
* No description
|
|
7542
|
-
*
|
|
7543
|
-
* @tags Tables
|
|
7544
|
-
* @name GetPermissions
|
|
7545
|
-
* @operationId TablesController_GetPermissions
|
|
7546
|
-
* @summary Returns resource permissions.
|
|
7547
|
-
* @request GET:/tables/{name}/permissions
|
|
7548
|
-
* @response `200` OK
|
|
7549
|
-
*/
|
|
7550
|
-
|
|
7551
|
-
}, {
|
|
7552
|
-
key: "getPermissions",
|
|
7553
|
-
value: function getPermissions(name) {
|
|
7554
|
-
return this.http.get("/tables/" + name + "/permissions").json();
|
|
7555
|
-
}
|
|
7556
|
-
/**
|
|
7557
|
-
* No description
|
|
7558
|
-
*
|
|
7559
|
-
* @tags Tables
|
|
7560
|
-
* @name AddPermissions
|
|
7561
|
-
* @operationId TablesController_AddPermissions
|
|
7562
|
-
* @summary Adds permissions for the layer, combining existing permissions with the given one.
|
|
7563
|
-
* @request POST:/tables/{name}/permissions
|
|
7564
|
-
* @response `200` OK
|
|
7565
|
-
*/
|
|
7566
|
-
|
|
7567
|
-
}, {
|
|
7568
|
-
key: "addPermissions",
|
|
7569
|
-
value: function addPermissions(name, data) {
|
|
7570
|
-
return this.http.post("/tables/" + name + "/permissions", data).json();
|
|
7571
|
-
}
|
|
7572
|
-
/**
|
|
7573
|
-
* No description
|
|
7574
|
-
*
|
|
7575
|
-
* @tags Tables
|
|
7576
|
-
* @name SetPermissions
|
|
7577
|
-
* @operationId TablesController_SetPermissions
|
|
7578
|
-
* @summary Replaces existing access control list for the layer with the given one.
|
|
7579
|
-
* @request PUT:/tables/{name}/permissions
|
|
7580
|
-
* @response `200` OK
|
|
7581
|
-
*/
|
|
7582
|
-
|
|
7583
|
-
}, {
|
|
7584
|
-
key: "setPermissions",
|
|
7585
|
-
value: function setPermissions(name, data) {
|
|
7586
|
-
return this.http.put("/tables/" + name + "/permissions", data).json();
|
|
7587
|
-
}
|
|
7588
|
-
/**
|
|
7589
|
-
* No description
|
|
7590
|
-
*
|
|
7591
|
-
* @tags Tables
|
|
7592
|
-
* @name RemovePermissions
|
|
7593
|
-
* @operationId TablesController_RemovePermissions
|
|
7594
|
-
* @summary Removes permissions for the layer for the given role.
|
|
7595
|
-
* @request DELETE:/tables/{name}/permissions/{role}
|
|
7596
|
-
* @response `200` OK
|
|
7597
|
-
*/
|
|
7598
|
-
|
|
7599
|
-
}, {
|
|
7600
|
-
key: "removePermissions",
|
|
7601
|
-
value: function removePermissions(name, role) {
|
|
7602
|
-
return this.http.delete("/tables/" + name + "/permissions/" + role, null).json();
|
|
7603
|
-
}
|
|
7604
6652
|
}]);
|
|
7605
6653
|
|
|
7606
6654
|
return TablesService;
|
|
@@ -7622,13 +6670,6 @@ let Tables = /*#__PURE__*/function (_TablesService) {
|
|
|
7622
6670
|
value: function getTableInfos(tables) {
|
|
7623
6671
|
return promiseAllIgnoreErrors(tables.map(table => this.getTableInfo(table)));
|
|
7624
6672
|
}
|
|
7625
|
-
}, {
|
|
7626
|
-
key: "uploadPreview",
|
|
7627
|
-
value: function uploadPreview(name, file) {
|
|
7628
|
-
return this.setPreview(name, {
|
|
7629
|
-
file
|
|
7630
|
-
});
|
|
7631
|
-
}
|
|
7632
6673
|
}, {
|
|
7633
6674
|
key: "findOne",
|
|
7634
6675
|
value: function findOne(name) {
|
|
@@ -7694,7 +6735,7 @@ let Tools = /*#__PURE__*/function (_ToolsService) {
|
|
|
7694
6735
|
return _createClass(Tools);
|
|
7695
6736
|
}(ToolsService);
|
|
7696
6737
|
|
|
7697
|
-
const _excluded$
|
|
6738
|
+
const _excluded$7 = ["name", "z", "x", "y"];
|
|
7698
6739
|
/**
|
|
7699
6740
|
* @title Spatial Processing Core API
|
|
7700
6741
|
* @version 1.5.1.0
|
|
@@ -7732,7 +6773,7 @@ let VectorTileService = /*#__PURE__*/function (_Service) {
|
|
|
7732
6773
|
x,
|
|
7733
6774
|
y
|
|
7734
6775
|
} = _ref,
|
|
7735
|
-
query = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
6776
|
+
query = _objectWithoutPropertiesLoose(_ref, _excluded$7);
|
|
7736
6777
|
|
|
7737
6778
|
return this.http.get("/vt/" + name + "/" + z + "/" + x + "/" + y + ".pbf", query).then(() => {});
|
|
7738
6779
|
}
|
|
@@ -7754,13 +6795,12 @@ let VectorTiles = /*#__PURE__*/function (_VectorTileService) {
|
|
|
7754
6795
|
|
|
7755
6796
|
_createClass(VectorTiles, [{
|
|
7756
6797
|
key: "getVt",
|
|
7757
|
-
value: function getVt(name, z, x, y
|
|
6798
|
+
value: function getVt(name, z, x, y) {
|
|
7758
6799
|
return this.getVectorTile({
|
|
7759
6800
|
name,
|
|
7760
6801
|
z,
|
|
7761
6802
|
x,
|
|
7762
|
-
y
|
|
7763
|
-
isProject
|
|
6803
|
+
y
|
|
7764
6804
|
});
|
|
7765
6805
|
}
|
|
7766
6806
|
}]);
|
|
@@ -7891,7 +6931,6 @@ let Api = /*#__PURE__*/function (_EventEmitter) {
|
|
|
7891
6931
|
_this.tools = new Tools(_this.http);
|
|
7892
6932
|
_this.resourceCatalog = new ResourceCatalog(_this.http);
|
|
7893
6933
|
_this.general = new General(_this.http);
|
|
7894
|
-
_this.namespace = new Namespace(_this.http);
|
|
7895
6934
|
_this.external = new External(_this.http);
|
|
7896
6935
|
_this.clientSettings = new ClientSettings(_this.http);
|
|
7897
6936
|
_this.portalSettings = new PortalSettings(_this.http);
|
|
@@ -7899,7 +6938,6 @@ let Api = /*#__PURE__*/function (_EventEmitter) {
|
|
|
7899
6938
|
_this.statistic = new Statistic(_this.http);
|
|
7900
6939
|
_this.feedback = new Feedback(_this.http);
|
|
7901
6940
|
_this.vectorTiles = new VectorTiles(_this.http);
|
|
7902
|
-
_this.universalSearch = new UniversalSearchService(_this.http);
|
|
7903
6941
|
_this.spatialReference = new SpatialReferencesService(_this.http);
|
|
7904
6942
|
_this.eql = new Eql(_this.http);
|
|
7905
6943
|
_this.catalog = new CatalogService(_this.http);
|
|
@@ -8197,9 +7235,7 @@ var AttributeType;
|
|
|
8197
7235
|
AttributeType["Json"] = "Json";
|
|
8198
7236
|
})(AttributeType || (AttributeType = {}));
|
|
8199
7237
|
/**
|
|
8200
|
-
*
|
|
8201
|
-
owner's authorization (to access its protected resources) used by the
|
|
8202
|
-
client to obtain an access token.
|
|
7238
|
+
*
|
|
8203
7239
|
|
|
8204
7240
|
authorization_code
|
|
8205
7241
|
|
|
@@ -8450,21 +7486,6 @@ var ErrorType;
|
|
|
8450
7486
|
ErrorType["EmailNotSet"] = "EmailNotSet";
|
|
8451
7487
|
})(ErrorType || (ErrorType = {}));
|
|
8452
7488
|
/**
|
|
8453
|
-
* Type of the feature.
|
|
8454
|
-
|
|
8455
|
-
Unknown
|
|
8456
|
-
|
|
8457
|
-
GeometricFeature
|
|
8458
|
-
*/
|
|
8459
|
-
|
|
8460
|
-
|
|
8461
|
-
var FeatureType;
|
|
8462
|
-
|
|
8463
|
-
(function (FeatureType) {
|
|
8464
|
-
FeatureType["Unknown"] = "Unknown";
|
|
8465
|
-
FeatureType["GeometricFeature"] = "GeometricFeature";
|
|
8466
|
-
})(FeatureType || (FeatureType = {}));
|
|
8467
|
-
/**
|
|
8468
7489
|
* Sets whether font should be styled.
|
|
8469
7490
|
|
|
8470
7491
|
normal
|
|
@@ -8657,30 +7678,6 @@ var LineJoinType;
|
|
|
8657
7678
|
LineJoinType["Round"] = "Round";
|
|
8658
7679
|
})(LineJoinType || (LineJoinType = {}));
|
|
8659
7680
|
/**
|
|
8660
|
-
*
|
|
8661
|
-
|
|
8662
|
-
Unknown
|
|
8663
|
-
|
|
8664
|
-
union
|
|
8665
|
-
|
|
8666
|
-
intersection
|
|
8667
|
-
|
|
8668
|
-
subtraction
|
|
8669
|
-
|
|
8670
|
-
symDifference
|
|
8671
|
-
*/
|
|
8672
|
-
|
|
8673
|
-
|
|
8674
|
-
var Operation;
|
|
8675
|
-
|
|
8676
|
-
(function (Operation) {
|
|
8677
|
-
Operation["Unknown"] = "Unknown";
|
|
8678
|
-
Operation["Union"] = "union";
|
|
8679
|
-
Operation["Intersection"] = "intersection";
|
|
8680
|
-
Operation["Subtraction"] = "subtraction";
|
|
8681
|
-
Operation["SymDifference"] = "symDifference";
|
|
8682
|
-
})(Operation || (Operation = {}));
|
|
8683
|
-
/**
|
|
8684
7681
|
* Filter exists resources by owner.
|
|
8685
7682
|
|
|
8686
7683
|
My
|
|
@@ -8795,6 +7792,42 @@ var Quality;
|
|
|
8795
7792
|
Quality["High"] = "High";
|
|
8796
7793
|
})(Quality || (Quality = {}));
|
|
8797
7794
|
/**
|
|
7795
|
+
* RemoteTaskStatus enum.
|
|
7796
|
+
|
|
7797
|
+
Init
|
|
7798
|
+
|
|
7799
|
+
Process
|
|
7800
|
+
|
|
7801
|
+
Completed
|
|
7802
|
+
|
|
7803
|
+
Interrupted
|
|
7804
|
+
|
|
7805
|
+
Error
|
|
7806
|
+
|
|
7807
|
+
Timeout
|
|
7808
|
+
|
|
7809
|
+
Waiting
|
|
7810
|
+
|
|
7811
|
+
InQueue
|
|
7812
|
+
|
|
7813
|
+
Unknown
|
|
7814
|
+
*/
|
|
7815
|
+
|
|
7816
|
+
|
|
7817
|
+
var RemoteTaskStatus;
|
|
7818
|
+
|
|
7819
|
+
(function (RemoteTaskStatus) {
|
|
7820
|
+
RemoteTaskStatus["Init"] = "Init";
|
|
7821
|
+
RemoteTaskStatus["Process"] = "Process";
|
|
7822
|
+
RemoteTaskStatus["Completed"] = "Completed";
|
|
7823
|
+
RemoteTaskStatus["Interrupted"] = "Interrupted";
|
|
7824
|
+
RemoteTaskStatus["Error"] = "Error";
|
|
7825
|
+
RemoteTaskStatus["Timeout"] = "Timeout";
|
|
7826
|
+
RemoteTaskStatus["Waiting"] = "Waiting";
|
|
7827
|
+
RemoteTaskStatus["InQueue"] = "InQueue";
|
|
7828
|
+
RemoteTaskStatus["Unknown"] = "Unknown";
|
|
7829
|
+
})(RemoteTaskStatus || (RemoteTaskStatus = {}));
|
|
7830
|
+
/**
|
|
8798
7831
|
* Resources types filter.
|
|
8799
7832
|
|
|
8800
7833
|
RemoteTileService
|
|
@@ -8869,6 +7902,8 @@ RemoteTileService
|
|
|
8869
7902
|
File
|
|
8870
7903
|
|
|
8871
7904
|
DataSource
|
|
7905
|
+
|
|
7906
|
+
TaskPrototype
|
|
8872
7907
|
*/
|
|
8873
7908
|
|
|
8874
7909
|
|
|
@@ -8883,6 +7918,7 @@ var ResourceTypeFilter;
|
|
|
8883
7918
|
ResourceTypeFilter["RemoteTileService"] = "RemoteTileService";
|
|
8884
7919
|
ResourceTypeFilter["File"] = "File";
|
|
8885
7920
|
ResourceTypeFilter["DataSource"] = "DataSource";
|
|
7921
|
+
ResourceTypeFilter["TaskPrototype"] = "TaskPrototype";
|
|
8886
7922
|
})(ResourceTypeFilter || (ResourceTypeFilter = {}));
|
|
8887
7923
|
|
|
8888
7924
|
var ResourceTypeLink;
|
|
@@ -8893,7 +7929,7 @@ var ResourceTypeLink;
|
|
|
8893
7929
|
ResourceTypeLink["Project"] = "projects";
|
|
8894
7930
|
})(ResourceTypeLink || (ResourceTypeLink = {}));
|
|
8895
7931
|
/**
|
|
8896
|
-
*
|
|
7932
|
+
*
|
|
8897
7933
|
|
|
8898
7934
|
code
|
|
8899
7935
|
|
|
@@ -8947,6 +7983,21 @@ var StringSubType;
|
|
|
8947
7983
|
StringSubType["Attachments"] = "Attachments";
|
|
8948
7984
|
})(StringSubType || (StringSubType = {}));
|
|
8949
7985
|
/**
|
|
7986
|
+
* TaskPrototypeSubType.
|
|
7987
|
+
|
|
7988
|
+
SpTask
|
|
7989
|
+
|
|
7990
|
+
PythonTask
|
|
7991
|
+
*/
|
|
7992
|
+
|
|
7993
|
+
|
|
7994
|
+
var TaskResourceSubType;
|
|
7995
|
+
|
|
7996
|
+
(function (TaskResourceSubType) {
|
|
7997
|
+
TaskResourceSubType["SpTask"] = "SpTask";
|
|
7998
|
+
TaskResourceSubType["PythonTask"] = "PythonTask";
|
|
7999
|
+
})(TaskResourceSubType || (TaskResourceSubType = {}));
|
|
8000
|
+
/**
|
|
8950
8001
|
* Sets the horizontal alignment of text.
|
|
8951
8002
|
|
|
8952
8003
|
right
|
|
@@ -9061,5 +8112,5 @@ var WorkerSettingsFieldType;
|
|
|
9061
8112
|
WorkerSettingsFieldType["Expressions"] = "Expressions";
|
|
9062
8113
|
})(WorkerSettingsFieldType || (WorkerSettingsFieldType = {}));
|
|
9063
8114
|
|
|
9064
|
-
export { Account, AccountPreview, AggregationFunction, Api, ApiEvent, AttributeIconType, AttributeSelectorType, AttributeType, AuthorizationGrant, BulkOperations, Cameras, CatalogResourceType, ClassificationType, ClassifyAttributeType, ClientSettings, ConfigurationErrorEnum, ConnectionStatus, DataSourceType, DependencyType, Eql, ErrorDetailsType, ErrorReason, ErrorType, External,
|
|
8115
|
+
export { Account, AccountPreview, AggregationFunction, Api, ApiEvent, AttributeIconType, AttributeSelectorType, AttributeType, AuthorizationGrant, BulkOperations, Cameras, CatalogResourceType, ClassificationType, ClassifyAttributeType, ClientSettings, ConfigurationErrorEnum, ConnectionStatus, DataSourceType, DependencyType, Eql, ErrorDetailsType, ErrorReason, ErrorType, External, Feedback, FileUpload, Filters, FontStyle, FontWeight, GEOCODE_PROVIDER, General, Geocode, GeometryType, Group, HttpClient, IceRouter, Import, Layers, LineCapStyle, LineEndingType, LineJoinType, Names, Notification, NotificationEvent, OwnerFilter, PbfSchema, Permissions, PolicyType, PortalSettings, Print, Projects, Quality, RemoteTaskManager, RemoteTaskStatus, ResourceCatalog, ResourceSeparator, ResourceSubTypeFilter, ResourceType, ResourceTypeFilter, ResourceTypeLink, Resources, ResponseType, STORAGE_REFRESH_TOKEN_KEY, STORAGE_TOKEN_KEY, Security, SimplifyType, Statistic, StringSubType, Styles, Tables, TaskResourceSubType, TextAlignment, TextVerticalAlignment, Tools, UrlPath, VectorTiles, WorkerMethodType, WorkerSettingsFieldType, addSubDomainToLocation, errorHandler, formDataFromFile, generateId, getFetchingUrlPath, isHTTPError, isHandledError, isProjectContentItems, isString, isTileLayerService, parseJwt, promiseAllIgnoreErrors, stripUselessSlashes, toFormData, unique };
|
|
9065
8116
|
//# sourceMappingURL=api.esm.js.map
|