@evergis/api 4.0.14 → 4.0.15
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 -2
- package/dist/__generated__/AccountPreviewService.d.ts +47 -8
- package/dist/__generated__/AccountService.d.ts +64 -2
- package/dist/__generated__/BulkOperationsService.d.ts +1 -0
- package/dist/__generated__/CamerasService.d.ts +8 -0
- package/dist/__generated__/CatalogService.d.ts +29 -2
- package/dist/__generated__/ClientSettingsService.d.ts +4 -0
- package/dist/__generated__/DataSourceService.d.ts +14 -0
- package/dist/__generated__/EqlService.d.ts +9 -0
- package/dist/__generated__/ExternalProvidersService.d.ts +11 -0
- package/dist/__generated__/FeedbackService.d.ts +3 -0
- package/dist/__generated__/FiltersService.d.ts +3 -0
- package/dist/__generated__/GeocodeService.d.ts +3 -0
- package/dist/__generated__/IceRouterService.d.ts +2 -0
- package/dist/__generated__/ImportService.d.ts +10 -0
- package/dist/__generated__/LayersService.d.ts +55 -2
- package/dist/__generated__/NotificationService.d.ts +5 -0
- package/dist/__generated__/PrintService.d.ts +6 -0
- package/dist/__generated__/ProjectsService.d.ts +17 -2
- package/dist/__generated__/PythonService.d.ts +2 -0
- package/dist/__generated__/QueryTokenAccessService.d.ts +5 -0
- package/dist/__generated__/RemoteTaskManagerService.d.ts +17 -0
- package/dist/__generated__/SecurityService.d.ts +37 -2
- package/dist/__generated__/SpatialReferencesService.d.ts +3 -0
- package/dist/__generated__/StatisticService.d.ts +8 -2
- package/dist/__generated__/StyleService.d.ts +6 -0
- package/dist/__generated__/SymbolStorageService.d.ts +18 -0
- package/dist/__generated__/TablesService.d.ts +21 -2
- package/dist/__generated__/VectorTileService.d.ts +1 -0
- package/dist/__generated__/WfsServerService.d.ts +3 -0
- package/dist/__generated__/WmsServerService.d.ts +5 -0
- package/dist/__generated__/WmtsService.d.ts +1 -0
- package/dist/__generated__/data-contracts.d.ts +43 -58
- package/dist/api.cjs.development.js +426 -73
- 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 +427 -73
- package/dist/api.esm.js.map +1 -1
- package/dist/services/index.d.ts +0 -1
- package/package.json +2 -2
- package/dist/__generated__/ResourceCatalogService.d.ts +0 -20
- package/dist/services/ResourceCatalog.d.ts +0 -3
|
@@ -337,6 +337,7 @@ let DataSourceService = /*#__PURE__*/function (_Service) {
|
|
|
337
337
|
* @operationId DataSourceController_CreateArcGisDataSource
|
|
338
338
|
* @summary Create S3 data source.
|
|
339
339
|
* @request POST:/ds/arcgis
|
|
340
|
+
* @secure
|
|
340
341
|
* @response `200` OK
|
|
341
342
|
*/
|
|
342
343
|
function createArcGisDataSource(data) {
|
|
@@ -350,6 +351,7 @@ let DataSourceService = /*#__PURE__*/function (_Service) {
|
|
|
350
351
|
* @operationId DataSourceController_UpdateArcGisDataSource
|
|
351
352
|
* @summary Update arcgis data source.
|
|
352
353
|
* @request PATCH:/ds/arcgis
|
|
354
|
+
* @secure
|
|
353
355
|
* @response `200` OK
|
|
354
356
|
*/
|
|
355
357
|
|
|
@@ -366,6 +368,7 @@ let DataSourceService = /*#__PURE__*/function (_Service) {
|
|
|
366
368
|
* @operationId DataSourceController_GetDataSourcesList
|
|
367
369
|
* @summary Returns list of the available data sources.
|
|
368
370
|
* @request GET:/ds
|
|
371
|
+
* @secure
|
|
369
372
|
* @response `200` OK
|
|
370
373
|
*/
|
|
371
374
|
|
|
@@ -382,6 +385,7 @@ let DataSourceService = /*#__PURE__*/function (_Service) {
|
|
|
382
385
|
* @operationId DataSourceController_CreateDataSource
|
|
383
386
|
* @summary Create data source.
|
|
384
387
|
* @request POST:/ds
|
|
388
|
+
* @secure
|
|
385
389
|
* @response `200` OK
|
|
386
390
|
*/
|
|
387
391
|
|
|
@@ -398,6 +402,7 @@ let DataSourceService = /*#__PURE__*/function (_Service) {
|
|
|
398
402
|
* @operationId DataSourceController_UpdateDataSource
|
|
399
403
|
* @summary Update data source.
|
|
400
404
|
* @request PATCH:/ds
|
|
405
|
+
* @secure
|
|
401
406
|
* @response `200` OK
|
|
402
407
|
*/
|
|
403
408
|
|
|
@@ -414,6 +419,7 @@ let DataSourceService = /*#__PURE__*/function (_Service) {
|
|
|
414
419
|
* @operationId DataSourceController_GetDataSource
|
|
415
420
|
* @summary Get data source by name.
|
|
416
421
|
* @request GET:/ds/{name}
|
|
422
|
+
* @secure
|
|
417
423
|
* @response `200` OK
|
|
418
424
|
*/
|
|
419
425
|
|
|
@@ -430,6 +436,7 @@ let DataSourceService = /*#__PURE__*/function (_Service) {
|
|
|
430
436
|
* @operationId DataSourceController_RemoveDataSource
|
|
431
437
|
* @summary Remove data source by name.
|
|
432
438
|
* @request DELETE:/ds/{name}
|
|
439
|
+
* @secure
|
|
433
440
|
* @response `200` OK
|
|
434
441
|
*/
|
|
435
442
|
|
|
@@ -446,6 +453,7 @@ let DataSourceService = /*#__PURE__*/function (_Service) {
|
|
|
446
453
|
* @operationId DataSourceController_TestConnection
|
|
447
454
|
* @summary Test ds connection.
|
|
448
455
|
* @request POST:/ds/testConnection
|
|
456
|
+
* @secure
|
|
449
457
|
* @response `200` OK
|
|
450
458
|
*/
|
|
451
459
|
|
|
@@ -462,6 +470,7 @@ let DataSourceService = /*#__PURE__*/function (_Service) {
|
|
|
462
470
|
* @operationId DataSourceController_CreateMosRuDataSource
|
|
463
471
|
* @summary Create data.mos.ru source.
|
|
464
472
|
* @request POST:/ds/dataMosRu
|
|
473
|
+
* @secure
|
|
465
474
|
* @response `200` OK
|
|
466
475
|
*/
|
|
467
476
|
|
|
@@ -478,6 +487,7 @@ let DataSourceService = /*#__PURE__*/function (_Service) {
|
|
|
478
487
|
* @operationId DataSourceController_UpdateMosRuDataSource
|
|
479
488
|
* @summary Update arcgis data source.
|
|
480
489
|
* @request PATCH:/ds/dataMosRu
|
|
490
|
+
* @secure
|
|
481
491
|
* @response `200` OK
|
|
482
492
|
*/
|
|
483
493
|
|
|
@@ -494,6 +504,7 @@ let DataSourceService = /*#__PURE__*/function (_Service) {
|
|
|
494
504
|
* @operationId DataSourceController_CreateS3DataSource
|
|
495
505
|
* @summary Create S3 data source.
|
|
496
506
|
* @request POST:/ds/s3
|
|
507
|
+
* @secure
|
|
497
508
|
* @response `200` OK
|
|
498
509
|
*/
|
|
499
510
|
|
|
@@ -510,6 +521,7 @@ let DataSourceService = /*#__PURE__*/function (_Service) {
|
|
|
510
521
|
* @operationId DataSourceController_UpdateS3DataSource
|
|
511
522
|
* @summary Create S3 data source.
|
|
512
523
|
* @request PATCH:/ds/s3
|
|
524
|
+
* @secure
|
|
513
525
|
* @response `200` OK
|
|
514
526
|
*/
|
|
515
527
|
|
|
@@ -526,6 +538,7 @@ let DataSourceService = /*#__PURE__*/function (_Service) {
|
|
|
526
538
|
* @operationId DataSourceController_CreateArcGisDataSource_1
|
|
527
539
|
* @summary Create WMS data source.
|
|
528
540
|
* @request POST:/ds/wms
|
|
541
|
+
* @secure
|
|
529
542
|
* @response `200` OK
|
|
530
543
|
*/
|
|
531
544
|
|
|
@@ -542,6 +555,7 @@ let DataSourceService = /*#__PURE__*/function (_Service) {
|
|
|
542
555
|
* @operationId DataSourceController_UpdateArcGisDataSource_1
|
|
543
556
|
* @summary Update WMS data source.
|
|
544
557
|
* @request PATCH:/ds/wms
|
|
558
|
+
* @secure
|
|
545
559
|
* @response `200` OK
|
|
546
560
|
*/
|
|
547
561
|
|
|
@@ -583,6 +597,7 @@ let QueryTokenAccessService = /*#__PURE__*/function (_Service) {
|
|
|
583
597
|
* @name GetTokensList
|
|
584
598
|
* @operationId QueryTokenAccessController_GetTokensList
|
|
585
599
|
* @request GET:/accessToken/list/{username}
|
|
600
|
+
* @secure
|
|
586
601
|
* @response `200` OK
|
|
587
602
|
*/
|
|
588
603
|
function getTokensList(_ref) {
|
|
@@ -600,6 +615,7 @@ let QueryTokenAccessService = /*#__PURE__*/function (_Service) {
|
|
|
600
615
|
* @name CreateToken
|
|
601
616
|
* @operationId QueryTokenAccessController_CreateTokenAsync
|
|
602
617
|
* @request PUT:/accessToken/{username}
|
|
618
|
+
* @secure
|
|
603
619
|
* @response `200` OK
|
|
604
620
|
*/
|
|
605
621
|
|
|
@@ -615,6 +631,7 @@ let QueryTokenAccessService = /*#__PURE__*/function (_Service) {
|
|
|
615
631
|
* @name DisableToken
|
|
616
632
|
* @operationId QueryTokenAccessController_DisableToken
|
|
617
633
|
* @request POST:/accessToken/{token}/disable
|
|
634
|
+
* @secure
|
|
618
635
|
* @response `200` OK
|
|
619
636
|
*/
|
|
620
637
|
|
|
@@ -630,6 +647,7 @@ let QueryTokenAccessService = /*#__PURE__*/function (_Service) {
|
|
|
630
647
|
* @name EnableToken
|
|
631
648
|
* @operationId QueryTokenAccessController_EnableToken
|
|
632
649
|
* @request POST:/accessToken/{token}/enable
|
|
650
|
+
* @secure
|
|
633
651
|
* @response `200` OK
|
|
634
652
|
*/
|
|
635
653
|
|
|
@@ -645,6 +663,7 @@ let QueryTokenAccessService = /*#__PURE__*/function (_Service) {
|
|
|
645
663
|
* @name RevokeToken
|
|
646
664
|
* @operationId QueryTokenAccessController_RevokeToken
|
|
647
665
|
* @request DELETE:/accessToken/{token}
|
|
666
|
+
* @secure
|
|
648
667
|
* @response `200` OK
|
|
649
668
|
*/
|
|
650
669
|
|
|
@@ -686,6 +705,7 @@ let SpatialReferencesService = /*#__PURE__*/function (_Service) {
|
|
|
686
705
|
* @operationId SpatialReferencesController_GetAvailiableCsAsync
|
|
687
706
|
* @summary Returns list of available spatial references.
|
|
688
707
|
* @request GET:/srs/list
|
|
708
|
+
* @secure
|
|
689
709
|
* @response `200` OK
|
|
690
710
|
*/
|
|
691
711
|
function getAvailiableCs() {
|
|
@@ -699,6 +719,7 @@ let SpatialReferencesService = /*#__PURE__*/function (_Service) {
|
|
|
699
719
|
* @operationId SpatialReferencesController_GetProj4RepresentationAsync
|
|
700
720
|
* @summary Returns a WKT representation of spatial reference.
|
|
701
721
|
* @request GET:/srs/{name}/proj4
|
|
722
|
+
* @secure
|
|
702
723
|
* @response `200` OK
|
|
703
724
|
*/
|
|
704
725
|
|
|
@@ -715,6 +736,7 @@ let SpatialReferencesService = /*#__PURE__*/function (_Service) {
|
|
|
715
736
|
* @operationId SpatialReferencesController_GetWktRepresentationAsync
|
|
716
737
|
* @summary Returns a WKT representation of spatial reference.
|
|
717
738
|
* @request GET:/srs/{name}/wkt
|
|
739
|
+
* @secure
|
|
718
740
|
* @response `200` OK
|
|
719
741
|
*/
|
|
720
742
|
|
|
@@ -756,6 +778,7 @@ let CatalogService = /*#__PURE__*/function (_Service) {
|
|
|
756
778
|
* @operationId CatalogController_GetParents
|
|
757
779
|
* @summary Get parents.
|
|
758
780
|
* @request GET:/resources/{resourceId}/parents
|
|
781
|
+
* @secure
|
|
759
782
|
* @response `200` OK
|
|
760
783
|
*/
|
|
761
784
|
function getParents(resourceId) {
|
|
@@ -769,6 +792,7 @@ let CatalogService = /*#__PURE__*/function (_Service) {
|
|
|
769
792
|
* @operationId CatalogController_GetTags
|
|
770
793
|
* @summary Get all tags of given user.
|
|
771
794
|
* @request GET:/resources/tags
|
|
795
|
+
* @secure
|
|
772
796
|
* @response `200` OK
|
|
773
797
|
*/
|
|
774
798
|
|
|
@@ -785,6 +809,7 @@ let CatalogService = /*#__PURE__*/function (_Service) {
|
|
|
785
809
|
* @operationId CatalogController_PutTags
|
|
786
810
|
* @summary Put tags to resource.
|
|
787
811
|
* @request PUT:/resources/{resourceId}/tags
|
|
812
|
+
* @secure
|
|
788
813
|
* @response `200` OK
|
|
789
814
|
*/
|
|
790
815
|
|
|
@@ -801,6 +826,7 @@ let CatalogService = /*#__PURE__*/function (_Service) {
|
|
|
801
826
|
* @operationId CatalogController_PostGetAll
|
|
802
827
|
* @summary Get all resource with given.
|
|
803
828
|
* @request POST:/resources
|
|
829
|
+
* @secure
|
|
804
830
|
* @response `200` OK
|
|
805
831
|
*/
|
|
806
832
|
|
|
@@ -817,6 +843,7 @@ let CatalogService = /*#__PURE__*/function (_Service) {
|
|
|
817
843
|
* @operationId CatalogController_GetResource
|
|
818
844
|
* @summary Get resource with given id.
|
|
819
845
|
* @request GET:/resources/{resourceId}
|
|
846
|
+
* @secure
|
|
820
847
|
* @response `200` OK
|
|
821
848
|
*/
|
|
822
849
|
|
|
@@ -833,6 +860,7 @@ let CatalogService = /*#__PURE__*/function (_Service) {
|
|
|
833
860
|
* @operationId CatalogController_PatchResource
|
|
834
861
|
* @summary Update directory.
|
|
835
862
|
* @request PATCH:/resources/{resourceId}
|
|
863
|
+
* @secure
|
|
836
864
|
* @response `200` OK
|
|
837
865
|
*/
|
|
838
866
|
|
|
@@ -849,6 +877,7 @@ let CatalogService = /*#__PURE__*/function (_Service) {
|
|
|
849
877
|
* @operationId CatalogController_DeleteResource
|
|
850
878
|
* @summary Delete resource.
|
|
851
879
|
* @request DELETE:/resources/{resourceId}
|
|
880
|
+
* @secure
|
|
852
881
|
* @response `200` OK
|
|
853
882
|
*/
|
|
854
883
|
|
|
@@ -865,6 +894,7 @@ let CatalogService = /*#__PURE__*/function (_Service) {
|
|
|
865
894
|
* @operationId CatalogController_MoveResource
|
|
866
895
|
* @summary Rename resource with given id.
|
|
867
896
|
* @request POST:/resources/{resourceId}/move
|
|
897
|
+
* @secure
|
|
868
898
|
* @response `200` OK
|
|
869
899
|
*/
|
|
870
900
|
|
|
@@ -881,6 +911,7 @@ let CatalogService = /*#__PURE__*/function (_Service) {
|
|
|
881
911
|
* @operationId CatalogController_CreateDirectory
|
|
882
912
|
* @summary Create directory.
|
|
883
913
|
* @request POST:/resources/directory
|
|
914
|
+
* @secure
|
|
884
915
|
* @response `200` OK
|
|
885
916
|
*/
|
|
886
917
|
|
|
@@ -897,6 +928,7 @@ let CatalogService = /*#__PURE__*/function (_Service) {
|
|
|
897
928
|
* @operationId CatalogController_CreateFile
|
|
898
929
|
* @summary Create new file.
|
|
899
930
|
* @request POST:/resources/file
|
|
931
|
+
* @secure
|
|
900
932
|
* @response `200` OK
|
|
901
933
|
*/
|
|
902
934
|
|
|
@@ -913,6 +945,7 @@ let CatalogService = /*#__PURE__*/function (_Service) {
|
|
|
913
945
|
* @operationId CatalogController_GetPermissions
|
|
914
946
|
* @summary Set permissions to the resource.
|
|
915
947
|
* @request GET:/resources/{resourceId}/permissions
|
|
948
|
+
* @secure
|
|
916
949
|
* @response `200` OK
|
|
917
950
|
*/
|
|
918
951
|
|
|
@@ -929,6 +962,7 @@ let CatalogService = /*#__PURE__*/function (_Service) {
|
|
|
929
962
|
* @operationId CatalogController_SetPermissions_1
|
|
930
963
|
* @summary Set permissions to the resource.
|
|
931
964
|
* @request PUT:/resources/{resourceId}/permissions
|
|
965
|
+
* @secure
|
|
932
966
|
* @response `200` OK
|
|
933
967
|
*/
|
|
934
968
|
|
|
@@ -945,6 +979,7 @@ let CatalogService = /*#__PURE__*/function (_Service) {
|
|
|
945
979
|
* @operationId CatalogController_SetPermissions
|
|
946
980
|
* @summary Set permissions to the resource.
|
|
947
981
|
* @request PUT:/resources/permissions
|
|
982
|
+
* @secure
|
|
948
983
|
* @response `200` OK
|
|
949
984
|
*/
|
|
950
985
|
|
|
@@ -961,6 +996,7 @@ let CatalogService = /*#__PURE__*/function (_Service) {
|
|
|
961
996
|
* @operationId CatalogController_DownloadFile
|
|
962
997
|
* @summary Download file.
|
|
963
998
|
* @request GET:/resources/{resourceId}/download
|
|
999
|
+
* @secure
|
|
964
1000
|
* @response `200` OK
|
|
965
1001
|
*/
|
|
966
1002
|
|
|
@@ -977,6 +1013,7 @@ let CatalogService = /*#__PURE__*/function (_Service) {
|
|
|
977
1013
|
* @operationId CatalogController_CleanResources
|
|
978
1014
|
* @summary Clean user resources.
|
|
979
1015
|
* @request POST:/resources/clean
|
|
1016
|
+
* @secure
|
|
980
1017
|
* @response `200` OK
|
|
981
1018
|
*/
|
|
982
1019
|
|
|
@@ -985,6 +1022,23 @@ let CatalogService = /*#__PURE__*/function (_Service) {
|
|
|
985
1022
|
value: function cleanResources() {
|
|
986
1023
|
return this.http.post("/resources/clean", null).then(() => {});
|
|
987
1024
|
}
|
|
1025
|
+
/**
|
|
1026
|
+
* No description
|
|
1027
|
+
*
|
|
1028
|
+
* @tags Catalog
|
|
1029
|
+
* @name CopyResources
|
|
1030
|
+
* @operationId CatalogController_CopyResources
|
|
1031
|
+
* @summary Copy a set of resources.
|
|
1032
|
+
* @request POST:/resources/copy
|
|
1033
|
+
* @secure
|
|
1034
|
+
* @response `200` OK
|
|
1035
|
+
*/
|
|
1036
|
+
|
|
1037
|
+
}, {
|
|
1038
|
+
key: "copyResources",
|
|
1039
|
+
value: function copyResources(data) {
|
|
1040
|
+
return this.http.post("/resources/copy", data).json();
|
|
1041
|
+
}
|
|
988
1042
|
}]);
|
|
989
1043
|
|
|
990
1044
|
return CatalogService;
|
|
@@ -1024,6 +1078,7 @@ let AccountService = /*#__PURE__*/function (_Service) {
|
|
|
1024
1078
|
* @operationId AccountController_GetUsers
|
|
1025
1079
|
* @summary Returns the list of users that correspond to the given conditions.
|
|
1026
1080
|
* @request GET:/account/user/list
|
|
1081
|
+
* @secure
|
|
1027
1082
|
* @response `200` OK
|
|
1028
1083
|
*/
|
|
1029
1084
|
function getUsers(query) {
|
|
@@ -1037,6 +1092,7 @@ let AccountService = /*#__PURE__*/function (_Service) {
|
|
|
1037
1092
|
* @operationId AccountController_GetExtendedUsers
|
|
1038
1093
|
* @summary Returns the list of extended users informations that correspond to the given conditions.
|
|
1039
1094
|
* @request GET:/account/user/extendedlist
|
|
1095
|
+
* @secure
|
|
1040
1096
|
* @response `200` OK
|
|
1041
1097
|
*/
|
|
1042
1098
|
|
|
@@ -1051,14 +1107,32 @@ let AccountService = /*#__PURE__*/function (_Service) {
|
|
|
1051
1107
|
* @tags Account
|
|
1052
1108
|
* @name GetUserInfo
|
|
1053
1109
|
* @operationId AccountController_GetUserInfo
|
|
1110
|
+
* @summary Get current user basic information.
|
|
1111
|
+
* @request GET:/account
|
|
1112
|
+
* @secure
|
|
1113
|
+
* @response `200` OK
|
|
1114
|
+
*/
|
|
1115
|
+
|
|
1116
|
+
}, {
|
|
1117
|
+
key: "getUserInfo",
|
|
1118
|
+
value: function getUserInfo() {
|
|
1119
|
+
return this.http.get("/account").json();
|
|
1120
|
+
}
|
|
1121
|
+
/**
|
|
1122
|
+
* No description
|
|
1123
|
+
*
|
|
1124
|
+
* @tags Account
|
|
1125
|
+
* @name GetUserInfo1
|
|
1126
|
+
* @operationId AccountController_GetUserInfo_1
|
|
1054
1127
|
* @summary Get user basic information.
|
|
1055
1128
|
* @request GET:/account/{username}
|
|
1129
|
+
* @secure
|
|
1056
1130
|
* @response `200` OK
|
|
1057
1131
|
*/
|
|
1058
1132
|
|
|
1059
1133
|
}, {
|
|
1060
|
-
key: "
|
|
1061
|
-
value: function
|
|
1134
|
+
key: "getUserInfo1",
|
|
1135
|
+
value: function getUserInfo1(username) {
|
|
1062
1136
|
return this.http.get("/account/" + username).json();
|
|
1063
1137
|
}
|
|
1064
1138
|
/**
|
|
@@ -1067,14 +1141,32 @@ let AccountService = /*#__PURE__*/function (_Service) {
|
|
|
1067
1141
|
* @tags Account
|
|
1068
1142
|
* @name GetExtendedUserInfo
|
|
1069
1143
|
* @operationId AccountController_GetExtendedUserInfo
|
|
1144
|
+
* @summary Get current user extended information.
|
|
1145
|
+
* @request GET:/account/extended
|
|
1146
|
+
* @secure
|
|
1147
|
+
* @response `200` OK
|
|
1148
|
+
*/
|
|
1149
|
+
|
|
1150
|
+
}, {
|
|
1151
|
+
key: "getExtendedUserInfo",
|
|
1152
|
+
value: function getExtendedUserInfo() {
|
|
1153
|
+
return this.http.get("/account/extended").json();
|
|
1154
|
+
}
|
|
1155
|
+
/**
|
|
1156
|
+
* No description
|
|
1157
|
+
*
|
|
1158
|
+
* @tags Account
|
|
1159
|
+
* @name GetExtendedUserInfo1
|
|
1160
|
+
* @operationId AccountController_GetExtendedUserInfo_1
|
|
1070
1161
|
* @summary Get user extended information.
|
|
1071
1162
|
* @request GET:/account/extended/{username}
|
|
1163
|
+
* @secure
|
|
1072
1164
|
* @response `200` OK
|
|
1073
1165
|
*/
|
|
1074
1166
|
|
|
1075
1167
|
}, {
|
|
1076
|
-
key: "
|
|
1077
|
-
value: function
|
|
1168
|
+
key: "getExtendedUserInfo1",
|
|
1169
|
+
value: function getExtendedUserInfo1(username) {
|
|
1078
1170
|
return this.http.get("/account/extended/" + username).json();
|
|
1079
1171
|
}
|
|
1080
1172
|
/**
|
|
@@ -1085,6 +1177,7 @@ let AccountService = /*#__PURE__*/function (_Service) {
|
|
|
1085
1177
|
* @operationId AccountController_IsUsernameExists
|
|
1086
1178
|
* @summary Checks if the user with the given name is registered in the system.
|
|
1087
1179
|
* @request GET:/account/user/exists
|
|
1180
|
+
* @secure
|
|
1088
1181
|
* @response `200` OK
|
|
1089
1182
|
*/
|
|
1090
1183
|
|
|
@@ -1101,6 +1194,7 @@ let AccountService = /*#__PURE__*/function (_Service) {
|
|
|
1101
1194
|
* @operationId AccountController_IsEmailExists
|
|
1102
1195
|
* @summary Checks if the user with the given email is registered in the system.
|
|
1103
1196
|
* @request GET:/account/user/email/exists
|
|
1197
|
+
* @secure
|
|
1104
1198
|
* @response `200` OK
|
|
1105
1199
|
*/
|
|
1106
1200
|
|
|
@@ -1117,6 +1211,7 @@ let AccountService = /*#__PURE__*/function (_Service) {
|
|
|
1117
1211
|
* @operationId AccountController_RegisterUser
|
|
1118
1212
|
* @summary Register new user.
|
|
1119
1213
|
* @request POST:/account/register
|
|
1214
|
+
* @secure
|
|
1120
1215
|
* @response `200` OK
|
|
1121
1216
|
*/
|
|
1122
1217
|
|
|
@@ -1133,6 +1228,7 @@ let AccountService = /*#__PURE__*/function (_Service) {
|
|
|
1133
1228
|
* @operationId AccountController_CreateUser
|
|
1134
1229
|
* @summary Create new user.
|
|
1135
1230
|
* @request POST:/account/user
|
|
1231
|
+
* @secure
|
|
1136
1232
|
* @response `200` OK
|
|
1137
1233
|
*/
|
|
1138
1234
|
|
|
@@ -1149,6 +1245,7 @@ let AccountService = /*#__PURE__*/function (_Service) {
|
|
|
1149
1245
|
* @operationId AccountController_UpdateUser
|
|
1150
1246
|
* @summary Update exist user.
|
|
1151
1247
|
* @request PATCH:/account/user
|
|
1248
|
+
* @secure
|
|
1152
1249
|
* @response `200` OK
|
|
1153
1250
|
*/
|
|
1154
1251
|
|
|
@@ -1165,6 +1262,7 @@ let AccountService = /*#__PURE__*/function (_Service) {
|
|
|
1165
1262
|
* @operationId AccountController_ConfirmEmail
|
|
1166
1263
|
* @summary Confirm user email.
|
|
1167
1264
|
* @request POST:/account/user/{username}/email/confirm
|
|
1265
|
+
* @secure
|
|
1168
1266
|
* @response `200` OK
|
|
1169
1267
|
*/
|
|
1170
1268
|
|
|
@@ -1181,6 +1279,7 @@ let AccountService = /*#__PURE__*/function (_Service) {
|
|
|
1181
1279
|
* @operationId AccountController_VerifyEmail
|
|
1182
1280
|
* @summary Send email with verification code.
|
|
1183
1281
|
* @request POST:/account/user/{username}/email/verify
|
|
1282
|
+
* @secure
|
|
1184
1283
|
* @response `200` OK
|
|
1185
1284
|
*/
|
|
1186
1285
|
|
|
@@ -1197,6 +1296,7 @@ let AccountService = /*#__PURE__*/function (_Service) {
|
|
|
1197
1296
|
* @operationId AccountController_SetEmail
|
|
1198
1297
|
* @summary For a user that does not have a set email, sets the email and password. Requires email confirmation through link.
|
|
1199
1298
|
* @request POST:/account/setEmail
|
|
1299
|
+
* @secure
|
|
1200
1300
|
* @response `200` OK
|
|
1201
1301
|
*/
|
|
1202
1302
|
|
|
@@ -1213,6 +1313,7 @@ let AccountService = /*#__PURE__*/function (_Service) {
|
|
|
1213
1313
|
* @operationId AccountController_ConfirmEmail_1
|
|
1214
1314
|
* @summary Confirm user email by code.
|
|
1215
1315
|
* @request POST:/account/user/email/confirm
|
|
1316
|
+
* @secure
|
|
1216
1317
|
* @response `200` OK
|
|
1217
1318
|
*/
|
|
1218
1319
|
|
|
@@ -1229,6 +1330,7 @@ let AccountService = /*#__PURE__*/function (_Service) {
|
|
|
1229
1330
|
* @operationId AccountController_ChangeEmail
|
|
1230
1331
|
* @summary Send email message with confirmation code to new email address.
|
|
1231
1332
|
* @request POST:/account/user/email/change
|
|
1333
|
+
* @secure
|
|
1232
1334
|
* @response `200` OK
|
|
1233
1335
|
*/
|
|
1234
1336
|
|
|
@@ -1245,6 +1347,7 @@ let AccountService = /*#__PURE__*/function (_Service) {
|
|
|
1245
1347
|
* @operationId AccountController_ConfirmChangeEmail
|
|
1246
1348
|
* @summary Check confirmation code and change email address.
|
|
1247
1349
|
* @request POST:/account/user/email/change/confirm
|
|
1350
|
+
* @secure
|
|
1248
1351
|
* @response `200` OK
|
|
1249
1352
|
*/
|
|
1250
1353
|
|
|
@@ -1261,6 +1364,7 @@ let AccountService = /*#__PURE__*/function (_Service) {
|
|
|
1261
1364
|
* @operationId AccountController_SetUserPassword
|
|
1262
1365
|
* @summary Set user password.
|
|
1263
1366
|
* @request PATCH:/account/password/set
|
|
1367
|
+
* @secure
|
|
1264
1368
|
* @response `200` OK
|
|
1265
1369
|
*/
|
|
1266
1370
|
|
|
@@ -1277,6 +1381,7 @@ let AccountService = /*#__PURE__*/function (_Service) {
|
|
|
1277
1381
|
* @operationId AccountController_ChangePassword
|
|
1278
1382
|
* @summary Change current user password.
|
|
1279
1383
|
* @request PATCH:/account/password/change
|
|
1384
|
+
* @secure
|
|
1280
1385
|
* @response `200` OK
|
|
1281
1386
|
*/
|
|
1282
1387
|
|
|
@@ -1293,6 +1398,7 @@ let AccountService = /*#__PURE__*/function (_Service) {
|
|
|
1293
1398
|
* @operationId AccountController_ResetPassword
|
|
1294
1399
|
* @summary Send reset password message.
|
|
1295
1400
|
* @request POST:/account/password/reset
|
|
1401
|
+
* @secure
|
|
1296
1402
|
* @response `200` OK
|
|
1297
1403
|
*/
|
|
1298
1404
|
|
|
@@ -1309,6 +1415,7 @@ let AccountService = /*#__PURE__*/function (_Service) {
|
|
|
1309
1415
|
* @operationId AccountController_ResetPasswordCallback
|
|
1310
1416
|
* @summary Reset password.
|
|
1311
1417
|
* @request POST:/account/password/reset/confirm
|
|
1418
|
+
* @secure
|
|
1312
1419
|
* @response `200` OK
|
|
1313
1420
|
*/
|
|
1314
1421
|
|
|
@@ -1325,6 +1432,7 @@ let AccountService = /*#__PURE__*/function (_Service) {
|
|
|
1325
1432
|
* @operationId AccountController_RemoveUser
|
|
1326
1433
|
* @summary Remove user.
|
|
1327
1434
|
* @request DELETE:/account/user/{username}
|
|
1435
|
+
* @secure
|
|
1328
1436
|
* @response `200` OK
|
|
1329
1437
|
*/
|
|
1330
1438
|
|
|
@@ -1341,6 +1449,7 @@ let AccountService = /*#__PURE__*/function (_Service) {
|
|
|
1341
1449
|
* @operationId AccountController_ActivateUser
|
|
1342
1450
|
* @summary Activate user.
|
|
1343
1451
|
* @request POST:/account/user/{username}/activate
|
|
1452
|
+
* @secure
|
|
1344
1453
|
* @response `200` OK
|
|
1345
1454
|
*/
|
|
1346
1455
|
|
|
@@ -1357,6 +1466,7 @@ let AccountService = /*#__PURE__*/function (_Service) {
|
|
|
1357
1466
|
* @operationId AccountController_DeactivateUser
|
|
1358
1467
|
* @summary Deactivate user.
|
|
1359
1468
|
* @request POST:/account/user/{username}/deactivate
|
|
1469
|
+
* @secure
|
|
1360
1470
|
* @response `200` OK
|
|
1361
1471
|
*/
|
|
1362
1472
|
|
|
@@ -1373,6 +1483,7 @@ let AccountService = /*#__PURE__*/function (_Service) {
|
|
|
1373
1483
|
* @operationId AccountController_Authenticate
|
|
1374
1484
|
* @summary Login.
|
|
1375
1485
|
* @request POST:/account/login
|
|
1486
|
+
* @secure
|
|
1376
1487
|
* @response `200` OK
|
|
1377
1488
|
*/
|
|
1378
1489
|
|
|
@@ -1389,6 +1500,7 @@ let AccountService = /*#__PURE__*/function (_Service) {
|
|
|
1389
1500
|
* @operationId AccountController_RefreshToken
|
|
1390
1501
|
* @summary Refresh JWT token.
|
|
1391
1502
|
* @request POST:/account/refresh-token
|
|
1503
|
+
* @secure
|
|
1392
1504
|
* @response `200` OK
|
|
1393
1505
|
*/
|
|
1394
1506
|
|
|
@@ -1405,6 +1517,7 @@ let AccountService = /*#__PURE__*/function (_Service) {
|
|
|
1405
1517
|
* @operationId AccountController_RevokeToken
|
|
1406
1518
|
* @summary Revoke refresh token.
|
|
1407
1519
|
* @request DELETE:/account/revoke-token
|
|
1520
|
+
* @secure
|
|
1408
1521
|
* @response `200` OK
|
|
1409
1522
|
*/
|
|
1410
1523
|
|
|
@@ -1421,6 +1534,7 @@ let AccountService = /*#__PURE__*/function (_Service) {
|
|
|
1421
1534
|
* @operationId AccountController_LdapLogin
|
|
1422
1535
|
* @summary The external login callback.
|
|
1423
1536
|
* @request POST:/account/external/login/ldap
|
|
1537
|
+
* @secure
|
|
1424
1538
|
* @response `200` OK
|
|
1425
1539
|
*/
|
|
1426
1540
|
|
|
@@ -1437,6 +1551,7 @@ let AccountService = /*#__PURE__*/function (_Service) {
|
|
|
1437
1551
|
* @operationId AccountController_RegisterClient
|
|
1438
1552
|
* @summary Register new client.
|
|
1439
1553
|
* @request POST:/account/oauth2/client
|
|
1554
|
+
* @secure
|
|
1440
1555
|
* @response `200` OK
|
|
1441
1556
|
*/
|
|
1442
1557
|
|
|
@@ -1453,6 +1568,7 @@ let AccountService = /*#__PURE__*/function (_Service) {
|
|
|
1453
1568
|
* @operationId AccountController_UnbindClient
|
|
1454
1569
|
* @summary Unbind client with id.
|
|
1455
1570
|
* @request DELETE:/account/oauth2/client/{clientId}
|
|
1571
|
+
* @secure
|
|
1456
1572
|
* @response `200` OK
|
|
1457
1573
|
*/
|
|
1458
1574
|
|
|
@@ -1469,6 +1585,7 @@ let AccountService = /*#__PURE__*/function (_Service) {
|
|
|
1469
1585
|
* @operationId AccountController_Token
|
|
1470
1586
|
* @summary Get access token request.
|
|
1471
1587
|
* @request POST:/account/oauth2/token
|
|
1588
|
+
* @secure
|
|
1472
1589
|
* @response `200` OK
|
|
1473
1590
|
*/
|
|
1474
1591
|
|
|
@@ -1485,6 +1602,7 @@ let AccountService = /*#__PURE__*/function (_Service) {
|
|
|
1485
1602
|
* @operationId AccountController_GetRoles
|
|
1486
1603
|
* @summary Enumerate exist roles.
|
|
1487
1604
|
* @request GET:/account/role/list
|
|
1605
|
+
* @secure
|
|
1488
1606
|
* @response `200` OK
|
|
1489
1607
|
*/
|
|
1490
1608
|
|
|
@@ -1501,6 +1619,7 @@ let AccountService = /*#__PURE__*/function (_Service) {
|
|
|
1501
1619
|
* @operationId AccountController_CreateRole
|
|
1502
1620
|
* @summary Create new role.
|
|
1503
1621
|
* @request POST:/account/role
|
|
1622
|
+
* @secure
|
|
1504
1623
|
* @response `200` OK
|
|
1505
1624
|
*/
|
|
1506
1625
|
|
|
@@ -1517,6 +1636,7 @@ let AccountService = /*#__PURE__*/function (_Service) {
|
|
|
1517
1636
|
* @operationId AccountController_UpdateRole
|
|
1518
1637
|
* @summary Update exist role.
|
|
1519
1638
|
* @request PATCH:/account/role
|
|
1639
|
+
* @secure
|
|
1520
1640
|
* @response `200` OK
|
|
1521
1641
|
*/
|
|
1522
1642
|
|
|
@@ -1533,6 +1653,7 @@ let AccountService = /*#__PURE__*/function (_Service) {
|
|
|
1533
1653
|
* @operationId AccountController_RemoveRole
|
|
1534
1654
|
* @summary Remove role.
|
|
1535
1655
|
* @request DELETE:/account/role/{rolename}
|
|
1656
|
+
* @secure
|
|
1536
1657
|
* @response `200` OK
|
|
1537
1658
|
*/
|
|
1538
1659
|
|
|
@@ -1549,6 +1670,7 @@ let AccountService = /*#__PURE__*/function (_Service) {
|
|
|
1549
1670
|
* @operationId AccountController_AddToRole
|
|
1550
1671
|
* @summary Add user to role.
|
|
1551
1672
|
* @request POST:/account/user/{username}/role/{role}
|
|
1673
|
+
* @secure
|
|
1552
1674
|
* @response `200` OK
|
|
1553
1675
|
*/
|
|
1554
1676
|
|
|
@@ -1565,6 +1687,7 @@ let AccountService = /*#__PURE__*/function (_Service) {
|
|
|
1565
1687
|
* @operationId AccountController_RemoveFromRole
|
|
1566
1688
|
* @summary Remove user from role.
|
|
1567
1689
|
* @request DELETE:/account/user/{username}/role/{role}
|
|
1690
|
+
* @secure
|
|
1568
1691
|
* @response `200` OK
|
|
1569
1692
|
*/
|
|
1570
1693
|
|
|
@@ -1581,6 +1704,7 @@ let AccountService = /*#__PURE__*/function (_Service) {
|
|
|
1581
1704
|
* @operationId AccountController_PostUsedProjects
|
|
1582
1705
|
* @summary Set used project.
|
|
1583
1706
|
* @request POST:/account/latest_projects
|
|
1707
|
+
* @secure
|
|
1584
1708
|
* @response `200` OK
|
|
1585
1709
|
*/
|
|
1586
1710
|
|
|
@@ -1597,6 +1721,7 @@ let AccountService = /*#__PURE__*/function (_Service) {
|
|
|
1597
1721
|
* @operationId AccountController_GetUsedProjects
|
|
1598
1722
|
* @summary Get used projects.
|
|
1599
1723
|
* @request GET:/account/latest_projects
|
|
1724
|
+
* @secure
|
|
1600
1725
|
* @response `200` OK
|
|
1601
1726
|
*/
|
|
1602
1727
|
|
|
@@ -1613,6 +1738,7 @@ let AccountService = /*#__PURE__*/function (_Service) {
|
|
|
1613
1738
|
* @operationId AccountController_TruncateUsedProjects
|
|
1614
1739
|
* @summary Truncate used projects.
|
|
1615
1740
|
* @request DELETE:/account/latest_projects
|
|
1741
|
+
* @secure
|
|
1616
1742
|
* @response `200` OK
|
|
1617
1743
|
*/
|
|
1618
1744
|
|
|
@@ -1670,7 +1796,7 @@ let Account = /*#__PURE__*/function (_AccountService) {
|
|
|
1670
1796
|
}, {
|
|
1671
1797
|
key: "fetchCurrentUser",
|
|
1672
1798
|
value: async function fetchCurrentUser() {
|
|
1673
|
-
this.userInfo = await this.getUserInfo(
|
|
1799
|
+
this.userInfo = await this.getUserInfo();
|
|
1674
1800
|
return this.userInfo;
|
|
1675
1801
|
}
|
|
1676
1802
|
}, {
|
|
@@ -1763,12 +1889,13 @@ let AccountPreviewService = /*#__PURE__*/function (_Service) {
|
|
|
1763
1889
|
* @tags AccountPreview
|
|
1764
1890
|
* @name GetPreview
|
|
1765
1891
|
* @operationId AccountPreviewController_GetPreview
|
|
1766
|
-
* @summary Get user preview image.
|
|
1767
|
-
* @request GET:/account/user/preview
|
|
1892
|
+
* @summary Get current user preview image.
|
|
1893
|
+
* @request GET:/account/user/preview
|
|
1894
|
+
* @secure
|
|
1768
1895
|
* @response `200` OK
|
|
1769
1896
|
*/
|
|
1770
|
-
function getPreview(
|
|
1771
|
-
return this.http.createUrl("/account/user/preview
|
|
1897
|
+
function getPreview() {
|
|
1898
|
+
return this.http.createUrl("/account/user/preview");
|
|
1772
1899
|
}
|
|
1773
1900
|
/**
|
|
1774
1901
|
* No description
|
|
@@ -1776,15 +1903,16 @@ let AccountPreviewService = /*#__PURE__*/function (_Service) {
|
|
|
1776
1903
|
* @tags AccountPreview
|
|
1777
1904
|
* @name UploadPreview
|
|
1778
1905
|
* @operationId AccountPreviewController_UploadPreview
|
|
1779
|
-
* @summary Set user preview image
|
|
1780
|
-
* @request POST:/account/user/preview
|
|
1906
|
+
* @summary Set current user preview image.
|
|
1907
|
+
* @request POST:/account/user/preview
|
|
1908
|
+
* @secure
|
|
1781
1909
|
* @response `200` OK
|
|
1782
1910
|
*/
|
|
1783
1911
|
|
|
1784
1912
|
}, {
|
|
1785
1913
|
key: "uploadPreview",
|
|
1786
|
-
value: function uploadPreview(
|
|
1787
|
-
return this.http.post("/account/user/preview
|
|
1914
|
+
value: function uploadPreview(data) {
|
|
1915
|
+
return this.http.post("/account/user/preview", toFormData(data)).json();
|
|
1788
1916
|
}
|
|
1789
1917
|
/**
|
|
1790
1918
|
* No description
|
|
@@ -1792,14 +1920,66 @@ let AccountPreviewService = /*#__PURE__*/function (_Service) {
|
|
|
1792
1920
|
* @tags AccountPreview
|
|
1793
1921
|
* @name DeletePreview
|
|
1794
1922
|
* @operationId AccountPreviewController_DeletePreview
|
|
1923
|
+
* @summary Delete current user preview.
|
|
1924
|
+
* @request DELETE:/account/user/preview
|
|
1925
|
+
* @secure
|
|
1926
|
+
* @response `200` OK
|
|
1927
|
+
*/
|
|
1928
|
+
|
|
1929
|
+
}, {
|
|
1930
|
+
key: "deletePreview",
|
|
1931
|
+
value: function deletePreview() {
|
|
1932
|
+
return this.http.delete("/account/user/preview", null).then(() => {});
|
|
1933
|
+
}
|
|
1934
|
+
/**
|
|
1935
|
+
* No description
|
|
1936
|
+
*
|
|
1937
|
+
* @tags AccountPreview
|
|
1938
|
+
* @name GetPreview1
|
|
1939
|
+
* @operationId AccountPreviewController_GetPreview_1
|
|
1940
|
+
* @summary Get user preview image.
|
|
1941
|
+
* @request GET:/account/user/preview/{username}
|
|
1942
|
+
* @secure
|
|
1943
|
+
* @response `200` OK
|
|
1944
|
+
*/
|
|
1945
|
+
|
|
1946
|
+
}, {
|
|
1947
|
+
key: "getPreview1",
|
|
1948
|
+
value: function getPreview1(username) {
|
|
1949
|
+
return this.http.createUrl("/account/user/preview/" + username);
|
|
1950
|
+
}
|
|
1951
|
+
/**
|
|
1952
|
+
* No description
|
|
1953
|
+
*
|
|
1954
|
+
* @tags AccountPreview
|
|
1955
|
+
* @name UploadPreview1
|
|
1956
|
+
* @operationId AccountPreviewController_UploadPreview_1
|
|
1957
|
+
* @summary Set user preview image.
|
|
1958
|
+
* @request POST:/account/user/preview/{username}
|
|
1959
|
+
* @secure
|
|
1960
|
+
* @response `200` OK
|
|
1961
|
+
*/
|
|
1962
|
+
|
|
1963
|
+
}, {
|
|
1964
|
+
key: "uploadPreview1",
|
|
1965
|
+
value: function uploadPreview1(username, data) {
|
|
1966
|
+
return this.http.post("/account/user/preview/" + username, toFormData(data)).json();
|
|
1967
|
+
}
|
|
1968
|
+
/**
|
|
1969
|
+
* No description
|
|
1970
|
+
*
|
|
1971
|
+
* @tags AccountPreview
|
|
1972
|
+
* @name DeletePreview1
|
|
1973
|
+
* @operationId AccountPreviewController_DeletePreview_1
|
|
1795
1974
|
* @summary Delete user preview.
|
|
1796
1975
|
* @request DELETE:/account/user/preview/{username}
|
|
1976
|
+
* @secure
|
|
1797
1977
|
* @response `200` OK
|
|
1798
1978
|
*/
|
|
1799
1979
|
|
|
1800
1980
|
}, {
|
|
1801
|
-
key: "
|
|
1802
|
-
value: function
|
|
1981
|
+
key: "deletePreview1",
|
|
1982
|
+
value: function deletePreview1(username) {
|
|
1803
1983
|
return this.http.delete("/account/user/preview/" + username, null).then(() => {});
|
|
1804
1984
|
}
|
|
1805
1985
|
}]);
|
|
@@ -1849,6 +2029,7 @@ let BulkOperationsService = /*#__PURE__*/function (_Service) {
|
|
|
1849
2029
|
* @operationId BulkOperationsController_BatchResourcesPermissionsSet
|
|
1850
2030
|
* @summary Perform resources set acl access batch operation.
|
|
1851
2031
|
* @request PUT:/bulk/resources/permissions
|
|
2032
|
+
* @secure
|
|
1852
2033
|
* @response `200` OK
|
|
1853
2034
|
*/
|
|
1854
2035
|
function batchResourcesPermissionsSet(data) {
|
|
@@ -1907,6 +2088,7 @@ let CamerasService = /*#__PURE__*/function (_Service) {
|
|
|
1907
2088
|
* @operationId CamerasController_GetCameras
|
|
1908
2089
|
* @summary Get cameras list.
|
|
1909
2090
|
* @request GET:/cameras
|
|
2091
|
+
* @secure
|
|
1910
2092
|
* @response `200` OK
|
|
1911
2093
|
*/
|
|
1912
2094
|
function getCameras(query) {
|
|
@@ -1920,6 +2102,7 @@ let CamerasService = /*#__PURE__*/function (_Service) {
|
|
|
1920
2102
|
* @operationId CamerasController_GetArchiveFeed
|
|
1921
2103
|
* @summary Streams an FLV-over-HTTP archive feed starting at specific time.
|
|
1922
2104
|
* @request GET:/cameras/{cameraId}/archiveFeed
|
|
2105
|
+
* @secure
|
|
1923
2106
|
* @response `200` OK
|
|
1924
2107
|
*/
|
|
1925
2108
|
|
|
@@ -1941,6 +2124,7 @@ let CamerasService = /*#__PURE__*/function (_Service) {
|
|
|
1941
2124
|
* @operationId CamerasController_GetArchiveTimeline
|
|
1942
2125
|
* @summary Returns a list of records available within a given timeframe.
|
|
1943
2126
|
* @request GET:/cameras/{cameraId}/archiveTimeline
|
|
2127
|
+
* @secure
|
|
1944
2128
|
* @response `200` OK
|
|
1945
2129
|
*/
|
|
1946
2130
|
|
|
@@ -1962,6 +2146,7 @@ let CamerasService = /*#__PURE__*/function (_Service) {
|
|
|
1962
2146
|
* @operationId CamerasController_GetArchiveCalendar
|
|
1963
2147
|
* @summary Returns a list of records available within a given timeframe.
|
|
1964
2148
|
* @request GET:/cameras/{cameraId}/archiveCalendar
|
|
2149
|
+
* @secure
|
|
1965
2150
|
* @response `200` OK
|
|
1966
2151
|
*/
|
|
1967
2152
|
|
|
@@ -1983,6 +2168,7 @@ let CamerasService = /*#__PURE__*/function (_Service) {
|
|
|
1983
2168
|
* @operationId CamerasController_GetArchiveSnapshot
|
|
1984
2169
|
* @summary Returns a JPEG image from the Camera’s archive.
|
|
1985
2170
|
* @request GET:/cameras/{cameraId}/archiveSnapshot
|
|
2171
|
+
* @secure
|
|
1986
2172
|
* @response `200` OK
|
|
1987
2173
|
*/
|
|
1988
2174
|
|
|
@@ -2004,6 +2190,7 @@ let CamerasService = /*#__PURE__*/function (_Service) {
|
|
|
2004
2190
|
* @operationId CamerasController_GetLiveFeed
|
|
2005
2191
|
* @summary Streams live video feed from the Camera.
|
|
2006
2192
|
* @request GET:/cameras/{cameraId}/liveFeed
|
|
2193
|
+
* @secure
|
|
2007
2194
|
* @response `200` OK
|
|
2008
2195
|
*/
|
|
2009
2196
|
|
|
@@ -2025,6 +2212,7 @@ let CamerasService = /*#__PURE__*/function (_Service) {
|
|
|
2025
2212
|
* @operationId CamerasController_GetLiveSnapshot
|
|
2026
2213
|
* @summary Returns a JPEG image from the Camera’s live feed.
|
|
2027
2214
|
* @request GET:/cameras/{cameraId}/liveSnapshot
|
|
2215
|
+
* @secure
|
|
2028
2216
|
* @response `200` OK
|
|
2029
2217
|
*/
|
|
2030
2218
|
|
|
@@ -2041,6 +2229,7 @@ let CamerasService = /*#__PURE__*/function (_Service) {
|
|
|
2041
2229
|
* @operationId CamerasController_GetLivePreviewStream
|
|
2042
2230
|
* @summary Get live preview stream.
|
|
2043
2231
|
* @request GET:/cameras/{cameraId}/getLivePreviewsStream
|
|
2232
|
+
* @secure
|
|
2044
2233
|
* @response `200` OK
|
|
2045
2234
|
*/
|
|
2046
2235
|
|
|
@@ -2101,6 +2290,7 @@ let ClientSettingsService = /*#__PURE__*/function (_Service) {
|
|
|
2101
2290
|
* @operationId ClientSettingsController_GetConfigurationsList
|
|
2102
2291
|
* @summary Get client configurations.
|
|
2103
2292
|
* @request GET:/settings/config
|
|
2293
|
+
* @secure
|
|
2104
2294
|
* @response `200` OK
|
|
2105
2295
|
*/
|
|
2106
2296
|
function getConfigurationsList(query) {
|
|
@@ -2114,6 +2304,7 @@ let ClientSettingsService = /*#__PURE__*/function (_Service) {
|
|
|
2114
2304
|
* @operationId ClientSettingsController_GetConfiguration
|
|
2115
2305
|
* @summary Get config for urlPath.
|
|
2116
2306
|
* @request GET:/settings
|
|
2307
|
+
* @secure
|
|
2117
2308
|
* @response `200` OK
|
|
2118
2309
|
*/
|
|
2119
2310
|
|
|
@@ -2130,6 +2321,7 @@ let ClientSettingsService = /*#__PURE__*/function (_Service) {
|
|
|
2130
2321
|
* @operationId ClientSettingsController_SetConfiguration
|
|
2131
2322
|
* @summary Set config for urlPath.
|
|
2132
2323
|
* @request POST:/settings
|
|
2324
|
+
* @secure
|
|
2133
2325
|
* @response `200` OK
|
|
2134
2326
|
*/
|
|
2135
2327
|
|
|
@@ -2146,6 +2338,7 @@ let ClientSettingsService = /*#__PURE__*/function (_Service) {
|
|
|
2146
2338
|
* @operationId ClientSettingsController_RemoveConfiguration
|
|
2147
2339
|
* @summary Remove config for urlPath.
|
|
2148
2340
|
* @request DELETE:/settings
|
|
2341
|
+
* @secure
|
|
2149
2342
|
* @response `200` OK
|
|
2150
2343
|
*/
|
|
2151
2344
|
|
|
@@ -2224,6 +2417,7 @@ let EqlService = /*#__PURE__*/function (_Service) {
|
|
|
2224
2417
|
* @operationId EqlController_GetFunctionsList
|
|
2225
2418
|
* @summary Returns list of available functions.
|
|
2226
2419
|
* @request GET:/eql/functions
|
|
2420
|
+
* @secure
|
|
2227
2421
|
* @response `200` OK
|
|
2228
2422
|
*/
|
|
2229
2423
|
function getFunctionsList() {
|
|
@@ -2237,6 +2431,7 @@ let EqlService = /*#__PURE__*/function (_Service) {
|
|
|
2237
2431
|
* @operationId EqlController_GetPagedQueryResult
|
|
2238
2432
|
* @summary Perform resources set acl access batch operation.
|
|
2239
2433
|
* @request POST:/eql/query
|
|
2434
|
+
* @secure
|
|
2240
2435
|
* @response `200` OK
|
|
2241
2436
|
*/
|
|
2242
2437
|
|
|
@@ -2253,6 +2448,7 @@ let EqlService = /*#__PURE__*/function (_Service) {
|
|
|
2253
2448
|
* @operationId EqlController_GetQueryDescription
|
|
2254
2449
|
* @summary Get EQL result columns definitions.
|
|
2255
2450
|
* @request POST:/eql/description
|
|
2451
|
+
* @secure
|
|
2256
2452
|
* @response `200` OK
|
|
2257
2453
|
*/
|
|
2258
2454
|
|
|
@@ -2269,6 +2465,7 @@ let EqlService = /*#__PURE__*/function (_Service) {
|
|
|
2269
2465
|
* @operationId EqlController_SetLayerParameterValue
|
|
2270
2466
|
* @summary Set EQL layer parameter.
|
|
2271
2467
|
* @request POST:/eql/setParam
|
|
2468
|
+
* @secure
|
|
2272
2469
|
* @response `200` OK
|
|
2273
2470
|
*/
|
|
2274
2471
|
|
|
@@ -2285,6 +2482,7 @@ let EqlService = /*#__PURE__*/function (_Service) {
|
|
|
2285
2482
|
* @operationId EqlController_SetLayerParameters
|
|
2286
2483
|
* @summary Set EQL layer parameters.
|
|
2287
2484
|
* @request POST:/eql/setParams
|
|
2485
|
+
* @secure
|
|
2288
2486
|
* @response `200` OK
|
|
2289
2487
|
*/
|
|
2290
2488
|
|
|
@@ -2301,6 +2499,7 @@ let EqlService = /*#__PURE__*/function (_Service) {
|
|
|
2301
2499
|
* @operationId EqlController_GetLayerParameters
|
|
2302
2500
|
* @summary Get EQL parameter.
|
|
2303
2501
|
* @request GET:/eql/getParam
|
|
2502
|
+
* @secure
|
|
2304
2503
|
* @response `200` OK
|
|
2305
2504
|
*/
|
|
2306
2505
|
|
|
@@ -2317,6 +2516,7 @@ let EqlService = /*#__PURE__*/function (_Service) {
|
|
|
2317
2516
|
* @operationId EqlController_GetLayerParameters_1
|
|
2318
2517
|
* @summary Get all EQL parameters.
|
|
2319
2518
|
* @request GET:/eql/getParams
|
|
2519
|
+
* @secure
|
|
2320
2520
|
* @response `200` OK
|
|
2321
2521
|
*/
|
|
2322
2522
|
|
|
@@ -2333,6 +2533,7 @@ let EqlService = /*#__PURE__*/function (_Service) {
|
|
|
2333
2533
|
* @operationId EqlController_RemoveLayerParameterValue
|
|
2334
2534
|
* @summary Remove EQL layer parameter.
|
|
2335
2535
|
* @request DELETE:/eql/removeParam
|
|
2536
|
+
* @secure
|
|
2336
2537
|
* @response `200` OK
|
|
2337
2538
|
*/
|
|
2338
2539
|
|
|
@@ -2349,6 +2550,7 @@ let EqlService = /*#__PURE__*/function (_Service) {
|
|
|
2349
2550
|
* @operationId EqlController_GetAvailiableLayerParameters
|
|
2350
2551
|
* @summary Get availiable layer parameters values.
|
|
2351
2552
|
* @request GET:/eql/getAvailiableParams
|
|
2553
|
+
* @secure
|
|
2352
2554
|
* @response `200` OK
|
|
2353
2555
|
*/
|
|
2354
2556
|
|
|
@@ -2404,6 +2606,7 @@ let ExternalProvidersService = /*#__PURE__*/function (_Service) {
|
|
|
2404
2606
|
* @operationId ExternalProvidersController_VkLogin
|
|
2405
2607
|
* @summary The external login by vk.
|
|
2406
2608
|
* @request GET:/account/external/login/vk
|
|
2609
|
+
* @secure
|
|
2407
2610
|
* @response `200` OK
|
|
2408
2611
|
*/
|
|
2409
2612
|
function vkLogin() {
|
|
@@ -2417,6 +2620,7 @@ let ExternalProvidersService = /*#__PURE__*/function (_Service) {
|
|
|
2417
2620
|
* @operationId ExternalProvidersController_GoogleLogin
|
|
2418
2621
|
* @summary The external login by google.
|
|
2419
2622
|
* @request GET:/account/external/login/google
|
|
2623
|
+
* @secure
|
|
2420
2624
|
* @response `200` OK
|
|
2421
2625
|
*/
|
|
2422
2626
|
|
|
@@ -2433,6 +2637,7 @@ let ExternalProvidersService = /*#__PURE__*/function (_Service) {
|
|
|
2433
2637
|
* @operationId ExternalProvidersController_FacebookLogin
|
|
2434
2638
|
* @summary The external login by facebook.
|
|
2435
2639
|
* @request GET:/account/external/login/facebook
|
|
2640
|
+
* @secure
|
|
2436
2641
|
* @response `200` OK
|
|
2437
2642
|
*/
|
|
2438
2643
|
|
|
@@ -2449,6 +2654,7 @@ let ExternalProvidersService = /*#__PURE__*/function (_Service) {
|
|
|
2449
2654
|
* @operationId ExternalProvidersController_LoginCallback
|
|
2450
2655
|
* @summary The external login callback.
|
|
2451
2656
|
* @request GET:/account/external/login/callback
|
|
2657
|
+
* @secure
|
|
2452
2658
|
* @response `200` OK
|
|
2453
2659
|
*/
|
|
2454
2660
|
|
|
@@ -2465,6 +2671,7 @@ let ExternalProvidersService = /*#__PURE__*/function (_Service) {
|
|
|
2465
2671
|
* @operationId ExternalProvidersController_UnbindVk
|
|
2466
2672
|
* @summary Unbind external login from current user account (google).
|
|
2467
2673
|
* @request DELETE:/account/external/unbind/vk
|
|
2674
|
+
* @secure
|
|
2468
2675
|
* @response `200` OK
|
|
2469
2676
|
*/
|
|
2470
2677
|
|
|
@@ -2481,6 +2688,7 @@ let ExternalProvidersService = /*#__PURE__*/function (_Service) {
|
|
|
2481
2688
|
* @operationId ExternalProvidersController_UnbindGoogle
|
|
2482
2689
|
* @summary Unbind external login from current user account (google).
|
|
2483
2690
|
* @request DELETE:/account/external/unbind/google
|
|
2691
|
+
* @secure
|
|
2484
2692
|
* @response `200` OK
|
|
2485
2693
|
*/
|
|
2486
2694
|
|
|
@@ -2497,6 +2705,7 @@ let ExternalProvidersService = /*#__PURE__*/function (_Service) {
|
|
|
2497
2705
|
* @operationId ExternalProvidersController_UnbindFacebook
|
|
2498
2706
|
* @summary Unbind external login from current user account (google).
|
|
2499
2707
|
* @request DELETE:/account/external/unbind/facebook
|
|
2708
|
+
* @secure
|
|
2500
2709
|
* @response `200` OK
|
|
2501
2710
|
*/
|
|
2502
2711
|
|
|
@@ -2513,6 +2722,7 @@ let ExternalProvidersService = /*#__PURE__*/function (_Service) {
|
|
|
2513
2722
|
* @operationId ExternalProvidersController_BindVk
|
|
2514
2723
|
* @summary The external login by vk.
|
|
2515
2724
|
* @request GET:/account/external/bind/vk
|
|
2725
|
+
* @secure
|
|
2516
2726
|
* @response `200` OK
|
|
2517
2727
|
*/
|
|
2518
2728
|
|
|
@@ -2529,6 +2739,7 @@ let ExternalProvidersService = /*#__PURE__*/function (_Service) {
|
|
|
2529
2739
|
* @operationId ExternalProvidersController_BindGoogle
|
|
2530
2740
|
* @summary The external login by vk.
|
|
2531
2741
|
* @request GET:/account/external/bind/google
|
|
2742
|
+
* @secure
|
|
2532
2743
|
* @response `200` OK
|
|
2533
2744
|
*/
|
|
2534
2745
|
|
|
@@ -2545,6 +2756,7 @@ let ExternalProvidersService = /*#__PURE__*/function (_Service) {
|
|
|
2545
2756
|
* @operationId ExternalProvidersController_BindFacebook
|
|
2546
2757
|
* @summary The external login by vk.
|
|
2547
2758
|
* @request GET:/account/external/bind/facebook
|
|
2759
|
+
* @secure
|
|
2548
2760
|
* @response `200` OK
|
|
2549
2761
|
*/
|
|
2550
2762
|
|
|
@@ -2561,6 +2773,7 @@ let ExternalProvidersService = /*#__PURE__*/function (_Service) {
|
|
|
2561
2773
|
* @operationId ExternalProvidersController_BindCallback
|
|
2562
2774
|
* @summary Bind external login to current user account.
|
|
2563
2775
|
* @request GET:/account/external/bind/callback
|
|
2776
|
+
* @secure
|
|
2564
2777
|
* @response `200` OK
|
|
2565
2778
|
*/
|
|
2566
2779
|
|
|
@@ -2669,6 +2882,7 @@ let FeedbackService = /*#__PURE__*/function (_Service) {
|
|
|
2669
2882
|
* @operationId FeedbackController_IncreaseResourcesLimit
|
|
2670
2883
|
* @summary Increase resources limit request.
|
|
2671
2884
|
* @request POST:/feedback/limits
|
|
2885
|
+
* @secure
|
|
2672
2886
|
* @response `200` OK
|
|
2673
2887
|
*/
|
|
2674
2888
|
function increaseResourcesLimit(query) {
|
|
@@ -2682,6 +2896,7 @@ let FeedbackService = /*#__PURE__*/function (_Service) {
|
|
|
2682
2896
|
* @operationId FeedbackController_MoreSymbols
|
|
2683
2897
|
* @summary More symbols request.
|
|
2684
2898
|
* @request POST:/feedback/symbol
|
|
2899
|
+
* @secure
|
|
2685
2900
|
* @response `200` OK
|
|
2686
2901
|
*/
|
|
2687
2902
|
|
|
@@ -2698,6 +2913,7 @@ let FeedbackService = /*#__PURE__*/function (_Service) {
|
|
|
2698
2913
|
* @operationId FeedbackController_Feedback
|
|
2699
2914
|
* @summary Feedback request.
|
|
2700
2915
|
* @request POST:/feedback
|
|
2916
|
+
* @secure
|
|
2701
2917
|
* @response `200` OK
|
|
2702
2918
|
*/
|
|
2703
2919
|
|
|
@@ -2784,6 +3000,7 @@ let FiltersService = /*#__PURE__*/function (_Service) {
|
|
|
2784
3000
|
* @operationId FiltersServiceController_Get
|
|
2785
3001
|
* @summary Returns the filter by its id.
|
|
2786
3002
|
* @request GET:/filters/{id}
|
|
3003
|
+
* @secure
|
|
2787
3004
|
* @response `200` OK
|
|
2788
3005
|
*/
|
|
2789
3006
|
function get(id) {
|
|
@@ -2797,6 +3014,7 @@ let FiltersService = /*#__PURE__*/function (_Service) {
|
|
|
2797
3014
|
* @operationId FiltersServiceController_Update
|
|
2798
3015
|
* @summary Replaces a filter and gives it a new id.
|
|
2799
3016
|
* @request POST:/filters/{id}
|
|
3017
|
+
* @secure
|
|
2800
3018
|
* @response `200` OK
|
|
2801
3019
|
*/
|
|
2802
3020
|
|
|
@@ -2813,6 +3031,7 @@ let FiltersService = /*#__PURE__*/function (_Service) {
|
|
|
2813
3031
|
* @operationId FiltersServiceController_Create
|
|
2814
3032
|
* @summary Creates a new filter.
|
|
2815
3033
|
* @request POST:/filters
|
|
3034
|
+
* @secure
|
|
2816
3035
|
* @response `200` OK
|
|
2817
3036
|
*/
|
|
2818
3037
|
|
|
@@ -2871,6 +3090,7 @@ let GeocodeService = /*#__PURE__*/function (_Service) {
|
|
|
2871
3090
|
* @operationId GeocodeServiceController_Geocode
|
|
2872
3091
|
* @summary Returns geocode geometry.
|
|
2873
3092
|
* @request GET:/geocode/{providerName}
|
|
3093
|
+
* @secure
|
|
2874
3094
|
* @response `200` OK
|
|
2875
3095
|
*/
|
|
2876
3096
|
function geocode(_ref) {
|
|
@@ -2889,6 +3109,7 @@ let GeocodeService = /*#__PURE__*/function (_Service) {
|
|
|
2889
3109
|
* @operationId GeocodeServiceController_GeocodeByPoint
|
|
2890
3110
|
* @summary Returns geocode address from point geometry.
|
|
2891
3111
|
* @request GET:/geocode/{providerName}/geocodeByPoint
|
|
3112
|
+
* @secure
|
|
2892
3113
|
* @response `200` OK
|
|
2893
3114
|
*/
|
|
2894
3115
|
|
|
@@ -2910,6 +3131,7 @@ let GeocodeService = /*#__PURE__*/function (_Service) {
|
|
|
2910
3131
|
* @operationId GeocodeServiceController_Suggest
|
|
2911
3132
|
* @summary Returns geocode suggest.
|
|
2912
3133
|
* @request GET:/geocode/{providerName}/suggest
|
|
3134
|
+
* @secure
|
|
2913
3135
|
* @response `200` OK
|
|
2914
3136
|
*/
|
|
2915
3137
|
|
|
@@ -2987,6 +3209,7 @@ let IceRouterService = /*#__PURE__*/function (_Service) {
|
|
|
2987
3209
|
* @operationId IceRouterController_StartTask
|
|
2988
3210
|
* @summary Start route build between start and end points.
|
|
2989
3211
|
* @request POST:/ice-router/tasks
|
|
3212
|
+
* @secure
|
|
2990
3213
|
* @response `200` OK
|
|
2991
3214
|
*/
|
|
2992
3215
|
function startTask(data) {
|
|
@@ -3000,6 +3223,7 @@ let IceRouterService = /*#__PURE__*/function (_Service) {
|
|
|
3000
3223
|
* @operationId IceRouterController_GetResult
|
|
3001
3224
|
* @summary Get task result.
|
|
3002
3225
|
* @request GET:/ice-router/tasks/{id}
|
|
3226
|
+
* @secure
|
|
3003
3227
|
* @response `200` OK
|
|
3004
3228
|
*/
|
|
3005
3229
|
|
|
@@ -3055,6 +3279,7 @@ let ImportService = /*#__PURE__*/function (_Service) {
|
|
|
3055
3279
|
* @operationId ImportServiceController_GetDataSchema
|
|
3056
3280
|
* @summary Using a file uploaded to the file upload service, reads the headers of the file and returns the information about data schema of all layers in that file, available for import.
|
|
3057
3281
|
* @request GET:/import/dataSchema
|
|
3282
|
+
* @secure
|
|
3058
3283
|
* @response `200` OK
|
|
3059
3284
|
*/
|
|
3060
3285
|
function getDataSchema(query) {
|
|
@@ -3068,6 +3293,7 @@ let ImportService = /*#__PURE__*/function (_Service) {
|
|
|
3068
3293
|
* @operationId ImportServiceController_GetFeaturesCount
|
|
3069
3294
|
* @summary Returns the features count of the given file in temporary static storage.
|
|
3070
3295
|
* @request POST:/import/count
|
|
3296
|
+
* @secure
|
|
3071
3297
|
* @response `200` OK
|
|
3072
3298
|
*/
|
|
3073
3299
|
|
|
@@ -3084,6 +3310,7 @@ let ImportService = /*#__PURE__*/function (_Service) {
|
|
|
3084
3310
|
* @operationId ImportServiceController_ReadPart
|
|
3085
3311
|
* @summary Returns the features of the given file in temporary static storage.
|
|
3086
3312
|
* @request GET:/import/read
|
|
3313
|
+
* @secure
|
|
3087
3314
|
* @response `200` OK
|
|
3088
3315
|
*/
|
|
3089
3316
|
|
|
@@ -3100,6 +3327,7 @@ let ImportService = /*#__PURE__*/function (_Service) {
|
|
|
3100
3327
|
* @operationId ImportServiceController_GetExternalWmsLayers
|
|
3101
3328
|
* @summary Get list of external WMS layers.
|
|
3102
3329
|
* @request GET:/import/wms
|
|
3330
|
+
* @secure
|
|
3103
3331
|
* @response `200` OK
|
|
3104
3332
|
*/
|
|
3105
3333
|
|
|
@@ -3116,6 +3344,7 @@ let ImportService = /*#__PURE__*/function (_Service) {
|
|
|
3116
3344
|
* @operationId ImportServiceController_GetExternalPbfLayers
|
|
3117
3345
|
* @summary Get list of external PBF layers.
|
|
3118
3346
|
* @request GET:/import/pbf
|
|
3347
|
+
* @secure
|
|
3119
3348
|
* @response `200` OK
|
|
3120
3349
|
*/
|
|
3121
3350
|
|
|
@@ -3132,6 +3361,7 @@ let ImportService = /*#__PURE__*/function (_Service) {
|
|
|
3132
3361
|
* @operationId ImportServiceController_GetExternalPbfFeatures
|
|
3133
3362
|
* @summary Get features list in external PBF layer.
|
|
3134
3363
|
* @request GET:/import/pbf/features
|
|
3364
|
+
* @secure
|
|
3135
3365
|
* @response `200` OK
|
|
3136
3366
|
*/
|
|
3137
3367
|
|
|
@@ -3148,6 +3378,7 @@ let ImportService = /*#__PURE__*/function (_Service) {
|
|
|
3148
3378
|
* @operationId ImportServiceController_GetExternalArcgisFSLayers
|
|
3149
3379
|
* @summary Get list of external ArcGis FeatureServer layers.
|
|
3150
3380
|
* @request GET:/import/arcgisfeatureservice
|
|
3381
|
+
* @secure
|
|
3151
3382
|
* @response `200` OK
|
|
3152
3383
|
*/
|
|
3153
3384
|
|
|
@@ -3164,6 +3395,7 @@ let ImportService = /*#__PURE__*/function (_Service) {
|
|
|
3164
3395
|
* @operationId ImportServiceController_GetExternalArcGisLayers
|
|
3165
3396
|
* @summary Get list of external ArcGis MapServer layers.
|
|
3166
3397
|
* @request GET:/import/arcgismapservice
|
|
3398
|
+
* @secure
|
|
3167
3399
|
* @response `200` OK
|
|
3168
3400
|
*/
|
|
3169
3401
|
|
|
@@ -3180,6 +3412,7 @@ let ImportService = /*#__PURE__*/function (_Service) {
|
|
|
3180
3412
|
* @operationId ImportServiceController_GetRasterAttributes
|
|
3181
3413
|
* @summary Parse raster attributes from file name.
|
|
3182
3414
|
* @request GET:/import/rasterAttributes
|
|
3415
|
+
* @secure
|
|
3183
3416
|
* @response `200` OK
|
|
3184
3417
|
*/
|
|
3185
3418
|
|
|
@@ -3196,6 +3429,7 @@ let ImportService = /*#__PURE__*/function (_Service) {
|
|
|
3196
3429
|
* @operationId ImportServiceController_GetRasterMeta
|
|
3197
3430
|
* @summary Get raster meta data.
|
|
3198
3431
|
* @request GET:/import/rasterMeta
|
|
3432
|
+
* @secure
|
|
3199
3433
|
* @response `200` OK
|
|
3200
3434
|
*/
|
|
3201
3435
|
|
|
@@ -3269,6 +3503,7 @@ let LayersService = /*#__PURE__*/function (_Service) {
|
|
|
3269
3503
|
* @operationId LayersController_GetBulkFeatures
|
|
3270
3504
|
* @summary Returns list of the layer features.
|
|
3271
3505
|
* @request POST:/bulk/layers/features/query
|
|
3506
|
+
* @secure
|
|
3272
3507
|
* @response `200` OK
|
|
3273
3508
|
*/
|
|
3274
3509
|
function getBulkFeatures(data) {
|
|
@@ -3282,6 +3517,7 @@ let LayersService = /*#__PURE__*/function (_Service) {
|
|
|
3282
3517
|
* @operationId LayersController_GetBulkExtents
|
|
3283
3518
|
* @summary Returns list of the layer extents with overall extent.
|
|
3284
3519
|
* @request POST:/bulk/layers/extent
|
|
3520
|
+
* @secure
|
|
3285
3521
|
* @response `200` OK
|
|
3286
3522
|
*/
|
|
3287
3523
|
|
|
@@ -3298,6 +3534,7 @@ let LayersService = /*#__PURE__*/function (_Service) {
|
|
|
3298
3534
|
* @operationId LayersController_GetLayersList
|
|
3299
3535
|
* @summary Returns list of the available layers.
|
|
3300
3536
|
* @request GET:/layers
|
|
3537
|
+
* @secure
|
|
3301
3538
|
* @response `200` OK
|
|
3302
3539
|
*/
|
|
3303
3540
|
|
|
@@ -3314,6 +3551,7 @@ let LayersService = /*#__PURE__*/function (_Service) {
|
|
|
3314
3551
|
* @operationId LayersController_DeleteResources
|
|
3315
3552
|
* @summary Bulk delete resources.
|
|
3316
3553
|
* @request DELETE:/layers
|
|
3554
|
+
* @secure
|
|
3317
3555
|
* @response `200` OK
|
|
3318
3556
|
*/
|
|
3319
3557
|
|
|
@@ -3330,6 +3568,7 @@ let LayersService = /*#__PURE__*/function (_Service) {
|
|
|
3330
3568
|
* @operationId LayersController_GetLayerInfoAsync
|
|
3331
3569
|
* @summary Returns the layer information.
|
|
3332
3570
|
* @request GET:/layers/{name}
|
|
3571
|
+
* @secure
|
|
3333
3572
|
* @response `200` OK
|
|
3334
3573
|
*/
|
|
3335
3574
|
|
|
@@ -3346,6 +3585,7 @@ let LayersService = /*#__PURE__*/function (_Service) {
|
|
|
3346
3585
|
* @operationId LayersController_DeleteResource
|
|
3347
3586
|
* @summary Deletes resource.
|
|
3348
3587
|
* @request DELETE:/layers/{name}
|
|
3588
|
+
* @secure
|
|
3349
3589
|
* @response `200` OK
|
|
3350
3590
|
*/
|
|
3351
3591
|
|
|
@@ -3362,6 +3602,7 @@ let LayersService = /*#__PURE__*/function (_Service) {
|
|
|
3362
3602
|
* @operationId LayersController_GetLayersInfoAsync
|
|
3363
3603
|
* @summary Returns the layers information.
|
|
3364
3604
|
* @request GET:/layers/batchInfo
|
|
3605
|
+
* @secure
|
|
3365
3606
|
* @response `200` OK
|
|
3366
3607
|
*/
|
|
3367
3608
|
|
|
@@ -3378,6 +3619,7 @@ let LayersService = /*#__PURE__*/function (_Service) {
|
|
|
3378
3619
|
* @operationId LayersController_PublishMapboxService
|
|
3379
3620
|
* @summary Creates new mapbox service.
|
|
3380
3621
|
* @request POST:/layers#type=Mapbox
|
|
3622
|
+
* @secure
|
|
3381
3623
|
* @response `default` Error
|
|
3382
3624
|
*/
|
|
3383
3625
|
|
|
@@ -3396,6 +3638,7 @@ let LayersService = /*#__PURE__*/function (_Service) {
|
|
|
3396
3638
|
* @operationId LayersController_PublishProxyService
|
|
3397
3639
|
* @summary Creates new Proxy Service.
|
|
3398
3640
|
* @request POST:/layers#type=ProxyService
|
|
3641
|
+
* @secure
|
|
3399
3642
|
* @response `default` Error
|
|
3400
3643
|
*/
|
|
3401
3644
|
|
|
@@ -3414,6 +3657,7 @@ let LayersService = /*#__PURE__*/function (_Service) {
|
|
|
3414
3657
|
* @operationId LayersController_PublishRouteService
|
|
3415
3658
|
* @summary Creates new Route Service.
|
|
3416
3659
|
* @request POST:/layers#type=RouteService
|
|
3660
|
+
* @secure
|
|
3417
3661
|
* @response `200` OK
|
|
3418
3662
|
*/
|
|
3419
3663
|
|
|
@@ -3432,6 +3676,7 @@ let LayersService = /*#__PURE__*/function (_Service) {
|
|
|
3432
3676
|
* @operationId LayersController_PublishLinearService
|
|
3433
3677
|
* @summary Creates new Linear Service.
|
|
3434
3678
|
* @request POST:/layers#type=LinearService
|
|
3679
|
+
* @secure
|
|
3435
3680
|
* @response `200` OK
|
|
3436
3681
|
*/
|
|
3437
3682
|
|
|
@@ -3450,6 +3695,7 @@ let LayersService = /*#__PURE__*/function (_Service) {
|
|
|
3450
3695
|
* @operationId LayersController_PublishRemoteTileService
|
|
3451
3696
|
* @summary Creates new Remote Tile Service.
|
|
3452
3697
|
* @request POST:/layers#type=RemoteTileService
|
|
3698
|
+
* @secure
|
|
3453
3699
|
* @response `default` Error
|
|
3454
3700
|
*/
|
|
3455
3701
|
|
|
@@ -3468,6 +3714,7 @@ let LayersService = /*#__PURE__*/function (_Service) {
|
|
|
3468
3714
|
* @operationId LayersController_PublishQueryLayerService
|
|
3469
3715
|
* @summary Creates new EQL-based Query Layer Service.
|
|
3470
3716
|
* @request POST:/layers#type=QueryLayerService
|
|
3717
|
+
* @secure
|
|
3471
3718
|
* @response `default` Error
|
|
3472
3719
|
*/
|
|
3473
3720
|
|
|
@@ -3486,6 +3733,7 @@ let LayersService = /*#__PURE__*/function (_Service) {
|
|
|
3486
3733
|
* @operationId LayersController_PublishPostgresTileCatalogService
|
|
3487
3734
|
* @summary Creates new Postgres Tile Catalog Service.
|
|
3488
3735
|
* @request POST:/layers#type=PostgresTileLayerService
|
|
3736
|
+
* @secure
|
|
3489
3737
|
* @response `default` Error
|
|
3490
3738
|
*/
|
|
3491
3739
|
|
|
@@ -3504,6 +3752,7 @@ let LayersService = /*#__PURE__*/function (_Service) {
|
|
|
3504
3752
|
* @operationId LayersController_PublishPythonService
|
|
3505
3753
|
* @summary Creates new python service.
|
|
3506
3754
|
* @request POST:/layers#type=Python
|
|
3755
|
+
* @secure
|
|
3507
3756
|
* @response `default` Error
|
|
3508
3757
|
*/
|
|
3509
3758
|
|
|
@@ -3522,6 +3771,7 @@ let LayersService = /*#__PURE__*/function (_Service) {
|
|
|
3522
3771
|
* @operationId LayersController_UpdateMapboxService
|
|
3523
3772
|
* @summary Update mapbox service.
|
|
3524
3773
|
* @request PATCH:/layers/{name}#type=Mapbox
|
|
3774
|
+
* @secure
|
|
3525
3775
|
* @response `200` OK
|
|
3526
3776
|
*/
|
|
3527
3777
|
|
|
@@ -3540,6 +3790,7 @@ let LayersService = /*#__PURE__*/function (_Service) {
|
|
|
3540
3790
|
* @operationId LayersController_UpdatePythonService
|
|
3541
3791
|
* @summary Update python service.
|
|
3542
3792
|
* @request PATCH:/layers/{name}#type=Python
|
|
3793
|
+
* @secure
|
|
3543
3794
|
* @response `200` OK
|
|
3544
3795
|
*/
|
|
3545
3796
|
|
|
@@ -3558,6 +3809,7 @@ let LayersService = /*#__PURE__*/function (_Service) {
|
|
|
3558
3809
|
* @operationId LayersController_UpdateProxyService
|
|
3559
3810
|
* @summary Update Proxy Service.
|
|
3560
3811
|
* @request PATCH:/layers/{name}#type=ProxyService
|
|
3812
|
+
* @secure
|
|
3561
3813
|
* @response `200` OK
|
|
3562
3814
|
*/
|
|
3563
3815
|
|
|
@@ -3576,6 +3828,7 @@ let LayersService = /*#__PURE__*/function (_Service) {
|
|
|
3576
3828
|
* @operationId LayersController_UpdateTileCatalogService
|
|
3577
3829
|
* @summary Update Postgres Tile Catalog Service.
|
|
3578
3830
|
* @request PATCH:/layers/{name}#type=PostgresTileLayerService
|
|
3831
|
+
* @secure
|
|
3579
3832
|
* @response `200` OK
|
|
3580
3833
|
*/
|
|
3581
3834
|
|
|
@@ -3594,6 +3847,7 @@ let LayersService = /*#__PURE__*/function (_Service) {
|
|
|
3594
3847
|
* @operationId LayersController_UpdateRemoteTileService
|
|
3595
3848
|
* @summary Update Remote Tile Service.
|
|
3596
3849
|
* @request PATCH:/layers/{name}#type=RemoteTileService
|
|
3850
|
+
* @secure
|
|
3597
3851
|
* @response `200` OK
|
|
3598
3852
|
*/
|
|
3599
3853
|
|
|
@@ -3612,6 +3866,7 @@ let LayersService = /*#__PURE__*/function (_Service) {
|
|
|
3612
3866
|
* @operationId LayersController_UpdateQueryLayerService
|
|
3613
3867
|
* @summary Update EQL-based Query Layer Service.
|
|
3614
3868
|
* @request PATCH:/layers/{name}#type=QueryLayerService
|
|
3869
|
+
* @secure
|
|
3615
3870
|
* @response `200` OK
|
|
3616
3871
|
*/
|
|
3617
3872
|
|
|
@@ -3630,6 +3885,7 @@ let LayersService = /*#__PURE__*/function (_Service) {
|
|
|
3630
3885
|
* @operationId LayersController_ReloadServiceAsync
|
|
3631
3886
|
* @summary Initialize a new instance of service by given name.
|
|
3632
3887
|
* @request GET:/layers/{name}/reload
|
|
3888
|
+
* @secure
|
|
3633
3889
|
* @response `default` Error
|
|
3634
3890
|
*/
|
|
3635
3891
|
|
|
@@ -3646,6 +3902,7 @@ let LayersService = /*#__PURE__*/function (_Service) {
|
|
|
3646
3902
|
* @operationId LayersController_GetFeatures
|
|
3647
3903
|
* @summary Returns list of the layer features.
|
|
3648
3904
|
* @request POST:/layers/{name}/features/query
|
|
3905
|
+
* @secure
|
|
3649
3906
|
* @response `200` OK
|
|
3650
3907
|
*/
|
|
3651
3908
|
|
|
@@ -3662,6 +3919,7 @@ let LayersService = /*#__PURE__*/function (_Service) {
|
|
|
3662
3919
|
* @operationId LayersController_GetFeatures_1
|
|
3663
3920
|
* @summary Returns list of the layer features.
|
|
3664
3921
|
* @request GET:/layers/{name}/features
|
|
3922
|
+
* @secure
|
|
3665
3923
|
* @response `200` OK
|
|
3666
3924
|
*/
|
|
3667
3925
|
|
|
@@ -3683,6 +3941,7 @@ let LayersService = /*#__PURE__*/function (_Service) {
|
|
|
3683
3941
|
* @operationId LayersController_DeleteFeature
|
|
3684
3942
|
* @summary Deletes feature by id.
|
|
3685
3943
|
* @request DELETE:/layers/{name}/features
|
|
3944
|
+
* @secure
|
|
3686
3945
|
* @response `200` OK
|
|
3687
3946
|
*/
|
|
3688
3947
|
|
|
@@ -3704,6 +3963,7 @@ let LayersService = /*#__PURE__*/function (_Service) {
|
|
|
3704
3963
|
* @operationId LayersController_CreateFeatures
|
|
3705
3964
|
* @summary Creates features list of type.SPCore.Connectors.Connectors.Base.Models.Features.FeatureDc.
|
|
3706
3965
|
* @request POST:/layers/{name}/features
|
|
3966
|
+
* @secure
|
|
3707
3967
|
* @response `200` OK
|
|
3708
3968
|
*/
|
|
3709
3969
|
|
|
@@ -3720,6 +3980,7 @@ let LayersService = /*#__PURE__*/function (_Service) {
|
|
|
3720
3980
|
* @operationId LayersController_UpdateFeature
|
|
3721
3981
|
* @summary Updates features list SPCore.Connectors.Connectors.Base.Models.Features.FeatureDc.
|
|
3722
3982
|
* @request PATCH:/layers/{name}/features
|
|
3983
|
+
* @secure
|
|
3723
3984
|
* @response `200` OK
|
|
3724
3985
|
*/
|
|
3725
3986
|
|
|
@@ -3736,6 +3997,7 @@ let LayersService = /*#__PURE__*/function (_Service) {
|
|
|
3736
3997
|
* @operationId LayersController_GetByIdAsync
|
|
3737
3998
|
* @summary Gets feature by id.
|
|
3738
3999
|
* @request GET:/layers/{name}/features/{id}
|
|
4000
|
+
* @secure
|
|
3739
4001
|
* @response `200` OK
|
|
3740
4002
|
*/
|
|
3741
4003
|
|
|
@@ -3758,6 +4020,7 @@ let LayersService = /*#__PURE__*/function (_Service) {
|
|
|
3758
4020
|
* @operationId LayersController_Unite
|
|
3759
4021
|
* @summary Provides method to unite feature geometry with given id and given geometry. Updated feature will be save in db storage. Result of the operation will be updated layer info.
|
|
3760
4022
|
* @request POST:/layers/{name}/features/{id}/unite
|
|
4023
|
+
* @secure
|
|
3761
4024
|
* @response `200` OK
|
|
3762
4025
|
*/
|
|
3763
4026
|
|
|
@@ -3780,6 +4043,7 @@ let LayersService = /*#__PURE__*/function (_Service) {
|
|
|
3780
4043
|
* @operationId LayersController_Subtract
|
|
3781
4044
|
* @summary Provides method to subtract feature geometry with given id and given geometry. Updated feature will be save in db storage. Result of the operation will be updated layer info with feature id.
|
|
3782
4045
|
* @request POST:/layers/{name}/features/{id}/subtract
|
|
4046
|
+
* @secure
|
|
3783
4047
|
* @response `200` OK
|
|
3784
4048
|
*/
|
|
3785
4049
|
|
|
@@ -3802,6 +4066,7 @@ let LayersService = /*#__PURE__*/function (_Service) {
|
|
|
3802
4066
|
* @operationId LayersController_GetTilesLayerImage
|
|
3803
4067
|
* @summary Render tile with input indexes.
|
|
3804
4068
|
* @request GET:/layers/{name}/tile/{z}/{x}/{y}
|
|
4069
|
+
* @secure
|
|
3805
4070
|
* @response `200` OK
|
|
3806
4071
|
*/
|
|
3807
4072
|
|
|
@@ -3826,6 +4091,7 @@ let LayersService = /*#__PURE__*/function (_Service) {
|
|
|
3826
4091
|
* @operationId LayersController_GetTilesLayerImage_1
|
|
3827
4092
|
* @summary Render tile with input indexes.
|
|
3828
4093
|
* @request GET:/layers/{name}/tile/{z}/{x}/{y}.{format}
|
|
4094
|
+
* @secure
|
|
3829
4095
|
* @response `200` OK
|
|
3830
4096
|
*/
|
|
3831
4097
|
|
|
@@ -3851,6 +4117,7 @@ let LayersService = /*#__PURE__*/function (_Service) {
|
|
|
3851
4117
|
* @operationId LayersController_GetTilesLayerImageWithFormatAndDpi
|
|
3852
4118
|
* @summary Render tile with input indexes.
|
|
3853
4119
|
* @request GET:/layers/{name}/tile/{z}/{x}/{y}@{dpi}x.{format}
|
|
4120
|
+
* @secure
|
|
3854
4121
|
* @response `200` OK
|
|
3855
4122
|
*/
|
|
3856
4123
|
|
|
@@ -3877,6 +4144,7 @@ let LayersService = /*#__PURE__*/function (_Service) {
|
|
|
3877
4144
|
* @operationId LayersController_GetLayerImage
|
|
3878
4145
|
* @summary Renders the layer to the image of the requested size.
|
|
3879
4146
|
* @request GET:/layers/{name}/export
|
|
4147
|
+
* @secure
|
|
3880
4148
|
* @response `200` OK
|
|
3881
4149
|
*/
|
|
3882
4150
|
|
|
@@ -3898,6 +4166,7 @@ let LayersService = /*#__PURE__*/function (_Service) {
|
|
|
3898
4166
|
* @operationId LayersController_GetLayerExtent
|
|
3899
4167
|
* @summary Returns the extent of the layer.
|
|
3900
4168
|
* @request GET:/layers/{name}/extent
|
|
4169
|
+
* @secure
|
|
3901
4170
|
* @response `200` OK
|
|
3902
4171
|
*/
|
|
3903
4172
|
|
|
@@ -3919,6 +4188,7 @@ let LayersService = /*#__PURE__*/function (_Service) {
|
|
|
3919
4188
|
* @operationId LayersController_DeleteFeatures
|
|
3920
4189
|
* @summary Delete a list of features by given ids. Example: ids=1,2,3.
|
|
3921
4190
|
* @request DELETE:/layers/{name}/features/deleteByIds
|
|
4191
|
+
* @secure
|
|
3922
4192
|
* @response `200` OK
|
|
3923
4193
|
*/
|
|
3924
4194
|
|
|
@@ -3940,6 +4210,7 @@ let LayersService = /*#__PURE__*/function (_Service) {
|
|
|
3940
4210
|
* @operationId LayersController_DeleteByCondition
|
|
3941
4211
|
* @summary Delete a list of features by condition with exclude given ids.
|
|
3942
4212
|
* @request DELETE:/layers/{name}/features/deleteByCondition
|
|
4213
|
+
* @secure
|
|
3943
4214
|
* @response `200` OK
|
|
3944
4215
|
*/
|
|
3945
4216
|
|
|
@@ -3961,6 +4232,7 @@ let LayersService = /*#__PURE__*/function (_Service) {
|
|
|
3961
4232
|
* @operationId LayersController_Classify
|
|
3962
4233
|
* @summary Returns the classified attribute values that correspond to the given number of classes.
|
|
3963
4234
|
* @request GET:/layers/{name}/classify
|
|
4235
|
+
* @secure
|
|
3964
4236
|
* @response `200` OK
|
|
3965
4237
|
*/
|
|
3966
4238
|
|
|
@@ -3982,6 +4254,7 @@ let LayersService = /*#__PURE__*/function (_Service) {
|
|
|
3982
4254
|
* @operationId LayersController_Distincts
|
|
3983
4255
|
* @summary Returns distinct attribute values and their count.
|
|
3984
4256
|
* @request GET:/layers/{name}/distincts
|
|
4257
|
+
* @secure
|
|
3985
4258
|
* @response `200` OK
|
|
3986
4259
|
*/
|
|
3987
4260
|
|
|
@@ -4003,6 +4276,7 @@ let LayersService = /*#__PURE__*/function (_Service) {
|
|
|
4003
4276
|
* @operationId LayersController_AggregateAttribute
|
|
4004
4277
|
* @summary Returns aggregated value of given attribute aggregationAttributeName within a given groups groups.
|
|
4005
4278
|
* @request GET:/layers/{name}/aggregate-values
|
|
4279
|
+
* @secure
|
|
4006
4280
|
* @response `200` OK
|
|
4007
4281
|
*/
|
|
4008
4282
|
|
|
@@ -4024,6 +4298,7 @@ let LayersService = /*#__PURE__*/function (_Service) {
|
|
|
4024
4298
|
* @operationId LayersController_GetFilteredFeaturesCount
|
|
4025
4299
|
* @summary Get features count according layer filter of the given name.
|
|
4026
4300
|
* @request GET:/layers/{name}/features/count
|
|
4301
|
+
* @secure
|
|
4027
4302
|
* @response `200` OK
|
|
4028
4303
|
*/
|
|
4029
4304
|
|
|
@@ -4045,6 +4320,7 @@ let LayersService = /*#__PURE__*/function (_Service) {
|
|
|
4045
4320
|
* @operationId LayersController_GetFilteredFeaturesCount_1
|
|
4046
4321
|
* @summary Get features count according layer filter of the given name.
|
|
4047
4322
|
* @request POST:/layers/{name}/features/count
|
|
4323
|
+
* @secure
|
|
4048
4324
|
* @response `200` OK
|
|
4049
4325
|
*/
|
|
4050
4326
|
|
|
@@ -4061,6 +4337,7 @@ let LayersService = /*#__PURE__*/function (_Service) {
|
|
|
4061
4337
|
* @operationId LayersController_EditAttributes
|
|
4062
4338
|
* @summary Edit attributes with editInfo.
|
|
4063
4339
|
* @request POST:/layers/{name}/features/edit-attributes
|
|
4340
|
+
* @secure
|
|
4064
4341
|
* @response `200` OK
|
|
4065
4342
|
*/
|
|
4066
4343
|
|
|
@@ -4077,6 +4354,7 @@ let LayersService = /*#__PURE__*/function (_Service) {
|
|
|
4077
4354
|
* @operationId LayersController_ValidateExpression
|
|
4078
4355
|
* @summary Validates the given EQL expression against the requested layer. If the expression is valid, it can be executed on the features in the layer to produce a value of some type. The type of the resulting value will be also returned in the validation result.
|
|
4079
4356
|
* @request GET:/layers/{layerName}/validateExpression
|
|
4357
|
+
* @secure
|
|
4080
4358
|
* @response `200` OK
|
|
4081
4359
|
*/
|
|
4082
4360
|
|
|
@@ -4098,6 +4376,7 @@ let LayersService = /*#__PURE__*/function (_Service) {
|
|
|
4098
4376
|
* @operationId LayersController_GetRasterMeta
|
|
4099
4377
|
* @summary Get raster metadata.
|
|
4100
4378
|
* @request GET:/layers/{name}/{id}/metadata
|
|
4379
|
+
* @secure
|
|
4101
4380
|
* @response `200` OK
|
|
4102
4381
|
*/
|
|
4103
4382
|
|
|
@@ -4120,6 +4399,7 @@ let LayersService = /*#__PURE__*/function (_Service) {
|
|
|
4120
4399
|
* @operationId LayersController_CreateRoute
|
|
4121
4400
|
* @summary Create new route (feature) from source features.
|
|
4122
4401
|
* @request POST:/layers/{name}/createRoute
|
|
4402
|
+
* @secure
|
|
4123
4403
|
* @response `200` OK
|
|
4124
4404
|
*/
|
|
4125
4405
|
|
|
@@ -4136,6 +4416,7 @@ let LayersService = /*#__PURE__*/function (_Service) {
|
|
|
4136
4416
|
* @operationId LayersController_ApplyStyle
|
|
4137
4417
|
* @summary Create data layout and image layout for given style.
|
|
4138
4418
|
* @request PUT:/layers/{name}/style
|
|
4419
|
+
* @secure
|
|
4139
4420
|
* @response `200` OK
|
|
4140
4421
|
*/
|
|
4141
4422
|
|
|
@@ -4152,6 +4433,7 @@ let LayersService = /*#__PURE__*/function (_Service) {
|
|
|
4152
4433
|
* @operationId LayersController_GetStyle
|
|
4153
4434
|
* @summary Get style of the given layer.
|
|
4154
4435
|
* @request GET:/layers/{name}/style
|
|
4436
|
+
* @secure
|
|
4155
4437
|
* @response `200` OK
|
|
4156
4438
|
*/
|
|
4157
4439
|
|
|
@@ -4168,6 +4450,7 @@ let LayersService = /*#__PURE__*/function (_Service) {
|
|
|
4168
4450
|
* @operationId LayersController_GetImageLayout
|
|
4169
4451
|
* @summary Get date layout.
|
|
4170
4452
|
* @request GET:/layers/{name}/style/sprite.png
|
|
4453
|
+
* @secure
|
|
4171
4454
|
* @response `200` OK
|
|
4172
4455
|
*/
|
|
4173
4456
|
|
|
@@ -4184,6 +4467,7 @@ let LayersService = /*#__PURE__*/function (_Service) {
|
|
|
4184
4467
|
* @operationId LayersController_GetDataLayout
|
|
4185
4468
|
* @summary Get image layout.
|
|
4186
4469
|
* @request GET:/layers/{name}/style/sprite.json
|
|
4470
|
+
* @secure
|
|
4187
4471
|
* @response `200` OK
|
|
4188
4472
|
*/
|
|
4189
4473
|
|
|
@@ -4200,6 +4484,7 @@ let LayersService = /*#__PURE__*/function (_Service) {
|
|
|
4200
4484
|
* @operationId LayersController_IsExistsAsync
|
|
4201
4485
|
* @summary Check is resource exists.
|
|
4202
4486
|
* @request GET:/layers/{name}/exists
|
|
4487
|
+
* @secure
|
|
4203
4488
|
* @response `200` OK
|
|
4204
4489
|
*/
|
|
4205
4490
|
|
|
@@ -4216,6 +4501,7 @@ let LayersService = /*#__PURE__*/function (_Service) {
|
|
|
4216
4501
|
* @operationId LayersController_GetResourceDependencies
|
|
4217
4502
|
* @summary Get resource dependencies.
|
|
4218
4503
|
* @request GET:/layers/{name}/dependencies
|
|
4504
|
+
* @secure
|
|
4219
4505
|
* @response `200` OK
|
|
4220
4506
|
*/
|
|
4221
4507
|
|
|
@@ -4232,6 +4518,7 @@ let LayersService = /*#__PURE__*/function (_Service) {
|
|
|
4232
4518
|
* @operationId LayersController_GetResourceReferences
|
|
4233
4519
|
* @summary Returns the resource dependency information.
|
|
4234
4520
|
* @request GET:/layers/{name}/references
|
|
4521
|
+
* @secure
|
|
4235
4522
|
* @response `200` OK
|
|
4236
4523
|
*/
|
|
4237
4524
|
|
|
@@ -4547,6 +4834,7 @@ let NotificationService = /*#__PURE__*/function (_Service) {
|
|
|
4547
4834
|
* @operationId NotificationServiceController_GetSubscriptionList
|
|
4548
4835
|
* @summary Returns a list of notification tags that the current session is subscribed to.
|
|
4549
4836
|
* @request GET:/notifications/subscribes
|
|
4837
|
+
* @secure
|
|
4550
4838
|
* @response `200` OK
|
|
4551
4839
|
*/
|
|
4552
4840
|
function getSubscriptionList() {
|
|
@@ -4560,6 +4848,7 @@ let NotificationService = /*#__PURE__*/function (_Service) {
|
|
|
4560
4848
|
* @operationId NotificationServiceController_SubscribeOperation
|
|
4561
4849
|
* @summary Subscribe current session by subscribe tag. A subscribed session will receive all notifications added for the specified tag.
|
|
4562
4850
|
* @request POST:/notifications/subscribes
|
|
4851
|
+
* @secure
|
|
4563
4852
|
* @response `200` OK
|
|
4564
4853
|
*/
|
|
4565
4854
|
|
|
@@ -4576,6 +4865,7 @@ let NotificationService = /*#__PURE__*/function (_Service) {
|
|
|
4576
4865
|
* @operationId NotificationServiceController_UnsubscribeOperation
|
|
4577
4866
|
* @summary Unsubscribe from receiving notifications that come for the specified tag.
|
|
4578
4867
|
* @request DELETE:/notifications/subscribes
|
|
4868
|
+
* @secure
|
|
4579
4869
|
* @response `200` OK
|
|
4580
4870
|
*/
|
|
4581
4871
|
|
|
@@ -4592,6 +4882,7 @@ let NotificationService = /*#__PURE__*/function (_Service) {
|
|
|
4592
4882
|
* @operationId NotificationServiceController_SubscribeListOperation
|
|
4593
4883
|
* @summary Subscribe current session by subscribe tags. A subscribed session will receive all notifications added for the specified tags.
|
|
4594
4884
|
* @request POST:/notifications/subscribe-list
|
|
4885
|
+
* @secure
|
|
4595
4886
|
* @response `200` OK
|
|
4596
4887
|
*/
|
|
4597
4888
|
|
|
@@ -4608,6 +4899,7 @@ let NotificationService = /*#__PURE__*/function (_Service) {
|
|
|
4608
4899
|
* @operationId NotificationServiceController_UnsubscribeListOperation
|
|
4609
4900
|
* @summary Unsubscribe from receiving notifications that come for the specified tags.
|
|
4610
4901
|
* @request POST:/notifications/unsubscribe-list
|
|
4902
|
+
* @secure
|
|
4611
4903
|
* @response `200` OK
|
|
4612
4904
|
*/
|
|
4613
4905
|
|
|
@@ -4853,6 +5145,7 @@ let PrintService = /*#__PURE__*/function (_Service) {
|
|
|
4853
5145
|
* @operationId PrintController_Print
|
|
4854
5146
|
* @summary Print map with template.
|
|
4855
5147
|
* @request POST:/print/print
|
|
5148
|
+
* @secure
|
|
4856
5149
|
* @response `200` OK
|
|
4857
5150
|
*/
|
|
4858
5151
|
function print(data) {
|
|
@@ -4866,6 +5159,7 @@ let PrintService = /*#__PURE__*/function (_Service) {
|
|
|
4866
5159
|
* @operationId PrintController_PrintToHtml
|
|
4867
5160
|
* @summary Print map with template to html string.
|
|
4868
5161
|
* @request POST:/print/printHtml
|
|
5162
|
+
* @secure
|
|
4869
5163
|
* @response `200` OK
|
|
4870
5164
|
*/
|
|
4871
5165
|
|
|
@@ -4882,6 +5176,7 @@ let PrintService = /*#__PURE__*/function (_Service) {
|
|
|
4882
5176
|
* @operationId PrintController_UploadTemplate
|
|
4883
5177
|
* @summary Upload template on server.
|
|
4884
5178
|
* @request POST:/print/templates
|
|
5179
|
+
* @secure
|
|
4885
5180
|
* @response `200` OK
|
|
4886
5181
|
*/
|
|
4887
5182
|
|
|
@@ -4898,6 +5193,7 @@ let PrintService = /*#__PURE__*/function (_Service) {
|
|
|
4898
5193
|
* @operationId PrintController_GetTemplates
|
|
4899
5194
|
* @summary Get all templates from server.
|
|
4900
5195
|
* @request GET:/print/templates
|
|
5196
|
+
* @secure
|
|
4901
5197
|
* @response `200` OK
|
|
4902
5198
|
*/
|
|
4903
5199
|
|
|
@@ -4914,6 +5210,7 @@ let PrintService = /*#__PURE__*/function (_Service) {
|
|
|
4914
5210
|
* @operationId PrintController_DeleteTemplate
|
|
4915
5211
|
* @summary Delete template from server.
|
|
4916
5212
|
* @request DELETE:/print/templates/{name}
|
|
5213
|
+
* @secure
|
|
4917
5214
|
* @response `200` OK
|
|
4918
5215
|
*/
|
|
4919
5216
|
|
|
@@ -4930,6 +5227,7 @@ let PrintService = /*#__PURE__*/function (_Service) {
|
|
|
4930
5227
|
* @operationId PrintController_GetTemplate
|
|
4931
5228
|
* @summary Get template from server.
|
|
4932
5229
|
* @request GET:/print/templates/{name}
|
|
5230
|
+
* @secure
|
|
4933
5231
|
* @response `200` OK
|
|
4934
5232
|
*/
|
|
4935
5233
|
|
|
@@ -4986,6 +5284,7 @@ let ProjectsService = /*#__PURE__*/function (_Service) {
|
|
|
4986
5284
|
* @operationId ProjectsController_GetProjectsList
|
|
4987
5285
|
* @summary Returns the list of projects.
|
|
4988
5286
|
* @request GET:/projects
|
|
5287
|
+
* @secure
|
|
4989
5288
|
* @response `200` OK
|
|
4990
5289
|
*/
|
|
4991
5290
|
function getProjectsList(query) {
|
|
@@ -4999,6 +5298,7 @@ let ProjectsService = /*#__PURE__*/function (_Service) {
|
|
|
4999
5298
|
* @operationId ProjectsController_CreateProject
|
|
5000
5299
|
* @summary Creates a new project.
|
|
5001
5300
|
* @request POST:/projects
|
|
5301
|
+
* @secure
|
|
5002
5302
|
* @response `200` OK
|
|
5003
5303
|
*/
|
|
5004
5304
|
|
|
@@ -5015,6 +5315,7 @@ let ProjectsService = /*#__PURE__*/function (_Service) {
|
|
|
5015
5315
|
* @operationId ProjectsController_DeleteResources
|
|
5016
5316
|
* @summary Bulk delete resources.
|
|
5017
5317
|
* @request DELETE:/projects
|
|
5318
|
+
* @secure
|
|
5018
5319
|
* @response `200` OK
|
|
5019
5320
|
*/
|
|
5020
5321
|
|
|
@@ -5031,6 +5332,7 @@ let ProjectsService = /*#__PURE__*/function (_Service) {
|
|
|
5031
5332
|
* @operationId ProjectsController_UpdateProject
|
|
5032
5333
|
* @summary Update table.
|
|
5033
5334
|
* @request PATCH:/projects/{name}
|
|
5335
|
+
* @secure
|
|
5034
5336
|
* @response `200` OK
|
|
5035
5337
|
*/
|
|
5036
5338
|
|
|
@@ -5047,6 +5349,7 @@ let ProjectsService = /*#__PURE__*/function (_Service) {
|
|
|
5047
5349
|
* @operationId ProjectsController_GetProjectInfo
|
|
5048
5350
|
* @summary Returns the project and it's content information.
|
|
5049
5351
|
* @request GET:/projects/{name}
|
|
5352
|
+
* @secure
|
|
5050
5353
|
* @response `200` OK
|
|
5051
5354
|
*/
|
|
5052
5355
|
|
|
@@ -5063,6 +5366,7 @@ let ProjectsService = /*#__PURE__*/function (_Service) {
|
|
|
5063
5366
|
* @operationId ProjectsController_DeleteResource
|
|
5064
5367
|
* @summary Deletes resource.
|
|
5065
5368
|
* @request DELETE:/projects/{name}
|
|
5369
|
+
* @secure
|
|
5066
5370
|
* @response `200` OK
|
|
5067
5371
|
*/
|
|
5068
5372
|
|
|
@@ -5079,6 +5383,7 @@ let ProjectsService = /*#__PURE__*/function (_Service) {
|
|
|
5079
5383
|
* @operationId ProjectsController_GetProjectsInfoAsync
|
|
5080
5384
|
* @summary Returns the projects information.
|
|
5081
5385
|
* @request GET:/projects/batchInfo
|
|
5386
|
+
* @secure
|
|
5082
5387
|
* @response `200` OK
|
|
5083
5388
|
*/
|
|
5084
5389
|
|
|
@@ -5095,6 +5400,7 @@ let ProjectsService = /*#__PURE__*/function (_Service) {
|
|
|
5095
5400
|
* @operationId ProjectsController_GetProjectEnvelope
|
|
5096
5401
|
* @summary Get project extent.
|
|
5097
5402
|
* @request GET:/projects/{name}/extent
|
|
5403
|
+
* @secure
|
|
5098
5404
|
* @response `200` OK
|
|
5099
5405
|
*/
|
|
5100
5406
|
|
|
@@ -5116,6 +5422,7 @@ let ProjectsService = /*#__PURE__*/function (_Service) {
|
|
|
5116
5422
|
* @operationId ProjectsController_GetProjectLayersExtendedInfo
|
|
5117
5423
|
* @summary Gets extended project info with layers info.
|
|
5118
5424
|
* @request GET:/projects/{name}/extended-info
|
|
5425
|
+
* @secure
|
|
5119
5426
|
* @response `200` OK
|
|
5120
5427
|
*/
|
|
5121
5428
|
|
|
@@ -5132,6 +5439,7 @@ let ProjectsService = /*#__PURE__*/function (_Service) {
|
|
|
5132
5439
|
* @operationId ProjectsController_GetTilesLayerImage
|
|
5133
5440
|
* @summary Render tile.
|
|
5134
5441
|
* @request GET:/projects/{name}/tile/{z}/{x}/{y}
|
|
5442
|
+
* @secure
|
|
5135
5443
|
* @response `200` OK
|
|
5136
5444
|
*/
|
|
5137
5445
|
|
|
@@ -5148,6 +5456,7 @@ let ProjectsService = /*#__PURE__*/function (_Service) {
|
|
|
5148
5456
|
* @operationId ProjectsController_GetTilesLayerImageWithFormat
|
|
5149
5457
|
* @summary Render tile.
|
|
5150
5458
|
* @request GET:/projects/{name}/tile/{z}/{x}/{y}.{format}
|
|
5459
|
+
* @secure
|
|
5151
5460
|
* @response `200` OK
|
|
5152
5461
|
*/
|
|
5153
5462
|
|
|
@@ -5164,6 +5473,7 @@ let ProjectsService = /*#__PURE__*/function (_Service) {
|
|
|
5164
5473
|
* @operationId ProjectsController_GetTilesLayerImageWithFormatAndDpi
|
|
5165
5474
|
* @summary Render tile.
|
|
5166
5475
|
* @request GET:/projects/{name}/tile/{z}/{x}/{y}@{dpi}x.{format}
|
|
5476
|
+
* @secure
|
|
5167
5477
|
* @response `200` OK
|
|
5168
5478
|
*/
|
|
5169
5479
|
|
|
@@ -5180,6 +5490,7 @@ let ProjectsService = /*#__PURE__*/function (_Service) {
|
|
|
5180
5490
|
* @operationId ProjectsController_IsExistsAsync
|
|
5181
5491
|
* @summary Check is resource exists.
|
|
5182
5492
|
* @request GET:/projects/{name}/exists
|
|
5493
|
+
* @secure
|
|
5183
5494
|
* @response `200` OK
|
|
5184
5495
|
*/
|
|
5185
5496
|
|
|
@@ -5196,6 +5507,7 @@ let ProjectsService = /*#__PURE__*/function (_Service) {
|
|
|
5196
5507
|
* @operationId ProjectsController_GetResourceDependencies
|
|
5197
5508
|
* @summary Get resource dependencies.
|
|
5198
5509
|
* @request GET:/projects/{name}/dependencies
|
|
5510
|
+
* @secure
|
|
5199
5511
|
* @response `200` OK
|
|
5200
5512
|
*/
|
|
5201
5513
|
|
|
@@ -5212,6 +5524,7 @@ let ProjectsService = /*#__PURE__*/function (_Service) {
|
|
|
5212
5524
|
* @operationId ProjectsController_GetResourceReferences
|
|
5213
5525
|
* @summary Returns the resource dependency information.
|
|
5214
5526
|
* @request GET:/projects/{name}/references
|
|
5527
|
+
* @secure
|
|
5215
5528
|
* @response `200` OK
|
|
5216
5529
|
*/
|
|
5217
5530
|
|
|
@@ -5310,6 +5623,7 @@ let RemoteTaskManagerService = /*#__PURE__*/function (_Service) {
|
|
|
5310
5623
|
* @operationId RemoteTaskManagerController_Get
|
|
5311
5624
|
* @summary Shows SubTask in Task.
|
|
5312
5625
|
* @request GET:/scheduler/task/{id}/subtasks
|
|
5626
|
+
* @secure
|
|
5313
5627
|
* @response `200` OK
|
|
5314
5628
|
*/
|
|
5315
5629
|
function get(id) {
|
|
@@ -5323,6 +5637,7 @@ let RemoteTaskManagerService = /*#__PURE__*/function (_Service) {
|
|
|
5323
5637
|
* @operationId RemoteTaskManagerController_Stop
|
|
5324
5638
|
* @summary Stop the task.
|
|
5325
5639
|
* @request POST:/scheduler/task/{id}/stop
|
|
5640
|
+
* @secure
|
|
5326
5641
|
* @response `200` OK
|
|
5327
5642
|
*/
|
|
5328
5643
|
|
|
@@ -5339,6 +5654,7 @@ let RemoteTaskManagerService = /*#__PURE__*/function (_Service) {
|
|
|
5339
5654
|
* @operationId RemoteTaskManagerController_CreateTaskPrototype
|
|
5340
5655
|
* @summary Creates TaskPrototype.
|
|
5341
5656
|
* @request POST:/scheduler
|
|
5657
|
+
* @secure
|
|
5342
5658
|
* @response `200` OK
|
|
5343
5659
|
*/
|
|
5344
5660
|
|
|
@@ -5355,6 +5671,7 @@ let RemoteTaskManagerService = /*#__PURE__*/function (_Service) {
|
|
|
5355
5671
|
* @operationId RemoteTaskManagerController_GetTaskPrototypes
|
|
5356
5672
|
* @summary Show TaskPrototypes for user.
|
|
5357
5673
|
* @request GET:/scheduler
|
|
5674
|
+
* @secure
|
|
5358
5675
|
* @response `200` OK
|
|
5359
5676
|
*/
|
|
5360
5677
|
|
|
@@ -5371,6 +5688,7 @@ let RemoteTaskManagerService = /*#__PURE__*/function (_Service) {
|
|
|
5371
5688
|
* @operationId RemoteTaskManagerController_UpdateTaskPrototype
|
|
5372
5689
|
* @summary Updates task prototype.
|
|
5373
5690
|
* @request PUT:/scheduler/{id}
|
|
5691
|
+
* @secure
|
|
5374
5692
|
* @response `200` OK
|
|
5375
5693
|
*/
|
|
5376
5694
|
|
|
@@ -5387,6 +5705,7 @@ let RemoteTaskManagerService = /*#__PURE__*/function (_Service) {
|
|
|
5387
5705
|
* @operationId RemoteTaskManagerController_Delete
|
|
5388
5706
|
* @summary Delete task prototype.
|
|
5389
5707
|
* @request DELETE:/scheduler/{id}
|
|
5708
|
+
* @secure
|
|
5390
5709
|
* @response `200` OK
|
|
5391
5710
|
*/
|
|
5392
5711
|
|
|
@@ -5403,6 +5722,7 @@ let RemoteTaskManagerService = /*#__PURE__*/function (_Service) {
|
|
|
5403
5722
|
* @operationId RemoteTaskManagerController_SetEnable
|
|
5404
5723
|
* @summary Enables task prototype.
|
|
5405
5724
|
* @request POST:/scheduler/{id}/enable/{enable}
|
|
5725
|
+
* @secure
|
|
5406
5726
|
* @response `200` OK
|
|
5407
5727
|
*/
|
|
5408
5728
|
|
|
@@ -5419,6 +5739,7 @@ let RemoteTaskManagerService = /*#__PURE__*/function (_Service) {
|
|
|
5419
5739
|
* @operationId RemoteTaskManagerController_GetTasksForPrototype
|
|
5420
5740
|
* @summary Shows Tasks that created for TaskPrototype.
|
|
5421
5741
|
* @request GET:/scheduler/{id}/tasks
|
|
5742
|
+
* @secure
|
|
5422
5743
|
* @response `200` OK
|
|
5423
5744
|
*/
|
|
5424
5745
|
|
|
@@ -5440,6 +5761,7 @@ let RemoteTaskManagerService = /*#__PURE__*/function (_Service) {
|
|
|
5440
5761
|
* @operationId RemoteTaskManagerController_StartTask
|
|
5441
5762
|
* @summary Starts new Task for TaskPrototype with task id definition.
|
|
5442
5763
|
* @request POST:/scheduler/{id}/start/{taskId}
|
|
5764
|
+
* @secure
|
|
5443
5765
|
* @response `200` OK
|
|
5444
5766
|
*/
|
|
5445
5767
|
|
|
@@ -5456,6 +5778,7 @@ let RemoteTaskManagerService = /*#__PURE__*/function (_Service) {
|
|
|
5456
5778
|
* @operationId RemoteTaskManagerController_StartTask_1
|
|
5457
5779
|
* @summary Starts new Task for TaskPrototype .
|
|
5458
5780
|
* @request POST:/scheduler/{id}/start
|
|
5781
|
+
* @secure
|
|
5459
5782
|
* @response `200` OK
|
|
5460
5783
|
*/
|
|
5461
5784
|
|
|
@@ -5472,6 +5795,7 @@ let RemoteTaskManagerService = /*#__PURE__*/function (_Service) {
|
|
|
5472
5795
|
* @operationId RemoteTaskManagerController_GetTaskResource
|
|
5473
5796
|
* @summary Shows SubTask in Task.
|
|
5474
5797
|
* @request GET:/scheduler/taskresource/{id}
|
|
5798
|
+
* @secure
|
|
5475
5799
|
* @response `200` OK
|
|
5476
5800
|
*/
|
|
5477
5801
|
|
|
@@ -5493,6 +5817,7 @@ let RemoteTaskManagerService = /*#__PURE__*/function (_Service) {
|
|
|
5493
5817
|
* @operationId RemoteTaskManagerController_CreateTaskResource
|
|
5494
5818
|
* @summary Create task resource.
|
|
5495
5819
|
* @request POST:/scheduler/taskresource
|
|
5820
|
+
* @secure
|
|
5496
5821
|
* @response `200` OK
|
|
5497
5822
|
*/
|
|
5498
5823
|
|
|
@@ -5509,6 +5834,7 @@ let RemoteTaskManagerService = /*#__PURE__*/function (_Service) {
|
|
|
5509
5834
|
* @operationId RemoteTaskManagerController_UpdatePythonTaskResource
|
|
5510
5835
|
* @summary Update python task resource.
|
|
5511
5836
|
* @request PATCH:/scheduler/taskresource/{id}#type=PythonTask
|
|
5837
|
+
* @secure
|
|
5512
5838
|
* @response `200` OK
|
|
5513
5839
|
*/
|
|
5514
5840
|
|
|
@@ -5527,6 +5853,7 @@ let RemoteTaskManagerService = /*#__PURE__*/function (_Service) {
|
|
|
5527
5853
|
* @operationId RemoteTaskManagerController_UpdateSpTaskResource
|
|
5528
5854
|
* @summary Update sp task resource.
|
|
5529
5855
|
* @request PATCH:/scheduler/taskresource/{id}#type=SpTask
|
|
5856
|
+
* @secure
|
|
5530
5857
|
* @response `200` OK
|
|
5531
5858
|
*/
|
|
5532
5859
|
|
|
@@ -5545,6 +5872,7 @@ let RemoteTaskManagerService = /*#__PURE__*/function (_Service) {
|
|
|
5545
5872
|
* @operationId RemoteTaskManagerController_Get_1
|
|
5546
5873
|
* @summary Shows active workers.
|
|
5547
5874
|
* @request GET:/scheduler/worker
|
|
5875
|
+
* @secure
|
|
5548
5876
|
* @response `200` OK
|
|
5549
5877
|
*/
|
|
5550
5878
|
|
|
@@ -5561,6 +5889,7 @@ let RemoteTaskManagerService = /*#__PURE__*/function (_Service) {
|
|
|
5561
5889
|
* @operationId RemoteTaskManagerController_Post
|
|
5562
5890
|
* @summary Run method by HttpPost.
|
|
5563
5891
|
* @request POST:/scheduler/worker
|
|
5892
|
+
* @secure
|
|
5564
5893
|
* @response `200` OK
|
|
5565
5894
|
*/
|
|
5566
5895
|
|
|
@@ -5577,6 +5906,7 @@ let RemoteTaskManagerService = /*#__PURE__*/function (_Service) {
|
|
|
5577
5906
|
* @operationId RemoteTaskManagerController_GetWorker
|
|
5578
5907
|
* @summary Get worker info by type.
|
|
5579
5908
|
* @request GET:/scheduler/worker/{type}
|
|
5909
|
+
* @secure
|
|
5580
5910
|
* @response `200` OK
|
|
5581
5911
|
*/
|
|
5582
5912
|
|
|
@@ -5604,58 +5934,6 @@ let RemoteTaskManager = /*#__PURE__*/function (_RemoteTaskManagerSer) {
|
|
|
5604
5934
|
return _createClass(RemoteTaskManager);
|
|
5605
5935
|
}(RemoteTaskManagerService);
|
|
5606
5936
|
|
|
5607
|
-
/**
|
|
5608
|
-
* @title Spatial Processing Core API
|
|
5609
|
-
* @version 1.5.1.0
|
|
5610
|
-
* @baseUrl /sp
|
|
5611
|
-
*/
|
|
5612
|
-
|
|
5613
|
-
let ResourceCatalogService = /*#__PURE__*/function (_Service) {
|
|
5614
|
-
_inherits(ResourceCatalogService, _Service);
|
|
5615
|
-
|
|
5616
|
-
var _super = /*#__PURE__*/_createSuper(ResourceCatalogService);
|
|
5617
|
-
|
|
5618
|
-
function ResourceCatalogService() {
|
|
5619
|
-
_classCallCheck(this, ResourceCatalogService);
|
|
5620
|
-
|
|
5621
|
-
return _super.apply(this, arguments);
|
|
5622
|
-
}
|
|
5623
|
-
|
|
5624
|
-
_createClass(ResourceCatalogService, [{
|
|
5625
|
-
key: "copyResources",
|
|
5626
|
-
value:
|
|
5627
|
-
/**
|
|
5628
|
-
* No description
|
|
5629
|
-
*
|
|
5630
|
-
* @tags ResourceCatalog
|
|
5631
|
-
* @name CopyResources
|
|
5632
|
-
* @operationId ResourceCatalogController_CopyResources
|
|
5633
|
-
* @summary Copy a set of resources.
|
|
5634
|
-
* @request POST:/resources/copy
|
|
5635
|
-
* @response `200` OK
|
|
5636
|
-
*/
|
|
5637
|
-
function copyResources(data) {
|
|
5638
|
-
return this.http.post("/resources/copy", data).json();
|
|
5639
|
-
}
|
|
5640
|
-
}]);
|
|
5641
|
-
|
|
5642
|
-
return ResourceCatalogService;
|
|
5643
|
-
}(Service);
|
|
5644
|
-
|
|
5645
|
-
let ResourceCatalog = /*#__PURE__*/function (_ResourceCatalogServi) {
|
|
5646
|
-
_inherits(ResourceCatalog, _ResourceCatalogServi);
|
|
5647
|
-
|
|
5648
|
-
var _super = /*#__PURE__*/_createSuper(ResourceCatalog);
|
|
5649
|
-
|
|
5650
|
-
function ResourceCatalog() {
|
|
5651
|
-
_classCallCheck(this, ResourceCatalog);
|
|
5652
|
-
|
|
5653
|
-
return _super.apply(this, arguments);
|
|
5654
|
-
}
|
|
5655
|
-
|
|
5656
|
-
return _createClass(ResourceCatalog);
|
|
5657
|
-
}(ResourceCatalogService);
|
|
5658
|
-
|
|
5659
5937
|
(function (DependencyType) {
|
|
5660
5938
|
DependencyType["Layer"] = "Layer";
|
|
5661
5939
|
DependencyType["Table"] = "Table";
|
|
@@ -5780,6 +6058,7 @@ let SecurityService = /*#__PURE__*/function (_Service) {
|
|
|
5780
6058
|
* @operationId SecurityServiceController_SetPolicies
|
|
5781
6059
|
* @summary Adds the given policies to the server policy list. If a policy with the same type and user role already exists, it replaces the existing policy with the new one.
|
|
5782
6060
|
* @request POST:/bulk/security/policies
|
|
6061
|
+
* @secure
|
|
5783
6062
|
* @response `200` OK
|
|
5784
6063
|
*/
|
|
5785
6064
|
function setPolicies(data) {
|
|
@@ -5793,6 +6072,7 @@ let SecurityService = /*#__PURE__*/function (_Service) {
|
|
|
5793
6072
|
* @operationId SecurityServiceController_FindUserByNameByRoles
|
|
5794
6073
|
* @summary Get users list with given roles list.
|
|
5795
6074
|
* @request GET:/security/findUsersWithRoles
|
|
6075
|
+
* @secure
|
|
5796
6076
|
* @response `200` OK
|
|
5797
6077
|
*/
|
|
5798
6078
|
|
|
@@ -5809,6 +6089,7 @@ let SecurityService = /*#__PURE__*/function (_Service) {
|
|
|
5809
6089
|
* @operationId SecurityServiceController_GetUsersAndRoles
|
|
5810
6090
|
* @summary Get users and roles list by filter.
|
|
5811
6091
|
* @request GET:/security/usersandroles
|
|
6092
|
+
* @secure
|
|
5812
6093
|
* @response `200` OK
|
|
5813
6094
|
*/
|
|
5814
6095
|
|
|
@@ -5825,6 +6106,7 @@ let SecurityService = /*#__PURE__*/function (_Service) {
|
|
|
5825
6106
|
* @operationId SecurityServiceController_FindUserByName
|
|
5826
6107
|
* @summary Returns the list of users found by username.
|
|
5827
6108
|
* @request GET:/security/users
|
|
6109
|
+
* @secure
|
|
5828
6110
|
* @response `200` OK
|
|
5829
6111
|
*/
|
|
5830
6112
|
|
|
@@ -5841,6 +6123,7 @@ let SecurityService = /*#__PURE__*/function (_Service) {
|
|
|
5841
6123
|
* @operationId SecurityServiceController_GetPolicyList
|
|
5842
6124
|
* @summary Returns the list of server authorization policies of the given type.
|
|
5843
6125
|
* @request GET:/security/policies
|
|
6126
|
+
* @secure
|
|
5844
6127
|
* @response `200` OK
|
|
5845
6128
|
*/
|
|
5846
6129
|
|
|
@@ -5857,6 +6140,7 @@ let SecurityService = /*#__PURE__*/function (_Service) {
|
|
|
5857
6140
|
* @operationId SecurityServiceController_RemovePolicy
|
|
5858
6141
|
* @summary Removes the policy of the given type with the given role. If no such policy is found, nothing is done, and OK response is returned.
|
|
5859
6142
|
* @request DELETE:/security/policies
|
|
6143
|
+
* @secure
|
|
5860
6144
|
* @response `200` OK
|
|
5861
6145
|
*/
|
|
5862
6146
|
|
|
@@ -5873,6 +6157,7 @@ let SecurityService = /*#__PURE__*/function (_Service) {
|
|
|
5873
6157
|
* @operationId SecurityServiceController_SetPolicy
|
|
5874
6158
|
* @summary Adds the given policy to the server policy list. If a policy with the same type and user role already exists, it replaces the existing policy with the new one.
|
|
5875
6159
|
* @request POST:/security/policies
|
|
6160
|
+
* @secure
|
|
5876
6161
|
* @response `200` OK
|
|
5877
6162
|
*/
|
|
5878
6163
|
|
|
@@ -5888,13 +6173,31 @@ let SecurityService = /*#__PURE__*/function (_Service) {
|
|
|
5888
6173
|
* @name OldCheckLimits
|
|
5889
6174
|
* @operationId SecurityServiceController_OldCheckLimits
|
|
5890
6175
|
* @summary Get limits of workspace.
|
|
5891
|
-
* @request GET:/security/checkLimits
|
|
6176
|
+
* @request GET:/security/checkLimits
|
|
6177
|
+
* @secure
|
|
5892
6178
|
* @response `200` OK
|
|
5893
6179
|
*/
|
|
5894
6180
|
|
|
5895
6181
|
}, {
|
|
5896
6182
|
key: "oldCheckLimits",
|
|
5897
|
-
value: function oldCheckLimits(
|
|
6183
|
+
value: function oldCheckLimits() {
|
|
6184
|
+
return this.http.get("/security/checkLimits").json();
|
|
6185
|
+
}
|
|
6186
|
+
/**
|
|
6187
|
+
* No description
|
|
6188
|
+
*
|
|
6189
|
+
* @tags SecurityService
|
|
6190
|
+
* @name OldCheckLimits1
|
|
6191
|
+
* @operationId SecurityServiceController_OldCheckLimits_1
|
|
6192
|
+
* @summary Get limits of workspace.
|
|
6193
|
+
* @request GET:/security/checkLimits/{userName}
|
|
6194
|
+
* @secure
|
|
6195
|
+
* @response `200` OK
|
|
6196
|
+
*/
|
|
6197
|
+
|
|
6198
|
+
}, {
|
|
6199
|
+
key: "oldCheckLimits1",
|
|
6200
|
+
value: function oldCheckLimits1(userName) {
|
|
5898
6201
|
return this.http.get("/security/checkLimits/" + userName).json();
|
|
5899
6202
|
}
|
|
5900
6203
|
/**
|
|
@@ -5904,13 +6207,31 @@ let SecurityService = /*#__PURE__*/function (_Service) {
|
|
|
5904
6207
|
* @name CheckLimitsForUser
|
|
5905
6208
|
* @operationId SecurityServiceController_CheckLimitsForUser
|
|
5906
6209
|
* @summary Get limits of workspace.
|
|
5907
|
-
* @request GET:/security/limits/user
|
|
6210
|
+
* @request GET:/security/limits/user
|
|
6211
|
+
* @secure
|
|
5908
6212
|
* @response `200` OK
|
|
5909
6213
|
*/
|
|
5910
6214
|
|
|
5911
6215
|
}, {
|
|
5912
6216
|
key: "checkLimitsForUser",
|
|
5913
|
-
value: function checkLimitsForUser(
|
|
6217
|
+
value: function checkLimitsForUser() {
|
|
6218
|
+
return this.http.get("/security/limits/user").json();
|
|
6219
|
+
}
|
|
6220
|
+
/**
|
|
6221
|
+
* No description
|
|
6222
|
+
*
|
|
6223
|
+
* @tags SecurityService
|
|
6224
|
+
* @name CheckLimitsForUser1
|
|
6225
|
+
* @operationId SecurityServiceController_CheckLimitsForUser_1
|
|
6226
|
+
* @summary Get limits of workspace.
|
|
6227
|
+
* @request GET:/security/limits/user/{userName}
|
|
6228
|
+
* @secure
|
|
6229
|
+
* @response `200` OK
|
|
6230
|
+
*/
|
|
6231
|
+
|
|
6232
|
+
}, {
|
|
6233
|
+
key: "checkLimitsForUser1",
|
|
6234
|
+
value: function checkLimitsForUser1(userName) {
|
|
5914
6235
|
return this.http.get("/security/limits/user/" + userName).json();
|
|
5915
6236
|
}
|
|
5916
6237
|
/**
|
|
@@ -5921,6 +6242,7 @@ let SecurityService = /*#__PURE__*/function (_Service) {
|
|
|
5921
6242
|
* @operationId SecurityServiceController_CheckLimitsForRole
|
|
5922
6243
|
* @summary Get limits of workspace.
|
|
5923
6244
|
* @request GET:/security/limits/role/{roleName}
|
|
6245
|
+
* @secure
|
|
5924
6246
|
* @response `200` OK
|
|
5925
6247
|
*/
|
|
5926
6248
|
|
|
@@ -5937,6 +6259,7 @@ let SecurityService = /*#__PURE__*/function (_Service) {
|
|
|
5937
6259
|
* @operationId SecurityServiceController_GetDefaultLimits
|
|
5938
6260
|
* @summary Get default limits of workspace.
|
|
5939
6261
|
* @request GET:/security/limits/default
|
|
6262
|
+
* @secure
|
|
5940
6263
|
* @response `200` OK
|
|
5941
6264
|
*/
|
|
5942
6265
|
|
|
@@ -6012,6 +6335,7 @@ let StatisticService = /*#__PURE__*/function (_Service) {
|
|
|
6012
6335
|
* @operationId StatisticController_StatisticsDb
|
|
6013
6336
|
* @summary Calculates statistics for layer attribute.
|
|
6014
6337
|
* @request GET:/statistics
|
|
6338
|
+
* @secure
|
|
6015
6339
|
* @response `200` OK
|
|
6016
6340
|
*/
|
|
6017
6341
|
function statisticsDb(query) {
|
|
@@ -6025,6 +6349,7 @@ let StatisticService = /*#__PURE__*/function (_Service) {
|
|
|
6025
6349
|
* @operationId StatisticController_StatisticsDb_1
|
|
6026
6350
|
* @summary Calculates statistics for layer attribute.
|
|
6027
6351
|
* @request POST:/statistics
|
|
6352
|
+
* @secure
|
|
6028
6353
|
* @response `200` OK
|
|
6029
6354
|
*/
|
|
6030
6355
|
|
|
@@ -6041,6 +6366,7 @@ let StatisticService = /*#__PURE__*/function (_Service) {
|
|
|
6041
6366
|
* @operationId StatisticController_Classify
|
|
6042
6367
|
* @summary Returns the classified attribute values that correspond to the given number of classes and given condition.
|
|
6043
6368
|
* @request GET:/statistics/classify
|
|
6369
|
+
* @secure
|
|
6044
6370
|
* @response `200` OK
|
|
6045
6371
|
*/
|
|
6046
6372
|
|
|
@@ -6057,6 +6383,7 @@ let StatisticService = /*#__PURE__*/function (_Service) {
|
|
|
6057
6383
|
* @operationId StatisticController_Classify_1
|
|
6058
6384
|
* @summary Returns the classified attribute values that correspond to the given number of classes and given condition.
|
|
6059
6385
|
* @request POST:/statistics/classify
|
|
6386
|
+
* @secure
|
|
6060
6387
|
* @response `200` OK
|
|
6061
6388
|
*/
|
|
6062
6389
|
|
|
@@ -6073,6 +6400,7 @@ let StatisticService = /*#__PURE__*/function (_Service) {
|
|
|
6073
6400
|
* @operationId StatisticController_SumOfProduct
|
|
6074
6401
|
* @summary Sum of product.
|
|
6075
6402
|
* @request GET:/statistics/sumOfProduct
|
|
6403
|
+
* @secure
|
|
6076
6404
|
* @response `200` OK
|
|
6077
6405
|
*/
|
|
6078
6406
|
|
|
@@ -6089,6 +6417,7 @@ let StatisticService = /*#__PURE__*/function (_Service) {
|
|
|
6089
6417
|
* @operationId StatisticController_SumOfProduct_1
|
|
6090
6418
|
* @summary Sum of product.
|
|
6091
6419
|
* @request POST:/statistics/sumOfProduct
|
|
6420
|
+
* @secure
|
|
6092
6421
|
* @response `200` OK
|
|
6093
6422
|
*/
|
|
6094
6423
|
|
|
@@ -6166,6 +6495,7 @@ let StyleService = /*#__PURE__*/function (_Service) {
|
|
|
6166
6495
|
* @operationId StyleServiceController_GetStyle
|
|
6167
6496
|
* @summary Returns the style by its id.
|
|
6168
6497
|
* @request GET:/styles/{id}
|
|
6498
|
+
* @secure
|
|
6169
6499
|
* @response `200` OK
|
|
6170
6500
|
*/
|
|
6171
6501
|
function getStyle(id) {
|
|
@@ -6179,6 +6509,7 @@ let StyleService = /*#__PURE__*/function (_Service) {
|
|
|
6179
6509
|
* @operationId StyleServiceController_UpdateStyle
|
|
6180
6510
|
* @summary Replaces a style and gives it a new id.
|
|
6181
6511
|
* @request POST:/styles/{id}
|
|
6512
|
+
* @secure
|
|
6182
6513
|
* @response `200` OK
|
|
6183
6514
|
*/
|
|
6184
6515
|
|
|
@@ -6195,6 +6526,7 @@ let StyleService = /*#__PURE__*/function (_Service) {
|
|
|
6195
6526
|
* @operationId StyleServiceController_CreateStyle
|
|
6196
6527
|
* @summary Creates a new style.
|
|
6197
6528
|
* @request POST:/styles
|
|
6529
|
+
* @secure
|
|
6198
6530
|
* @response `200` OK
|
|
6199
6531
|
*/
|
|
6200
6532
|
|
|
@@ -6211,6 +6543,7 @@ let StyleService = /*#__PURE__*/function (_Service) {
|
|
|
6211
6543
|
* @operationId StyleServiceController_GetAllFonts
|
|
6212
6544
|
* @summary Gets all installed fonts.
|
|
6213
6545
|
* @request GET:/styles/fonts
|
|
6546
|
+
* @secure
|
|
6214
6547
|
* @response `200` OK
|
|
6215
6548
|
*/
|
|
6216
6549
|
|
|
@@ -6227,6 +6560,7 @@ let StyleService = /*#__PURE__*/function (_Service) {
|
|
|
6227
6560
|
* @operationId StyleServiceController_AddFont
|
|
6228
6561
|
* @summary Install new font.
|
|
6229
6562
|
* @request POST:/styles/fonts
|
|
6563
|
+
* @secure
|
|
6230
6564
|
* @response `200` OK
|
|
6231
6565
|
*/
|
|
6232
6566
|
|
|
@@ -6243,6 +6577,7 @@ let StyleService = /*#__PURE__*/function (_Service) {
|
|
|
6243
6577
|
* @operationId StyleServiceController_RemoveFont
|
|
6244
6578
|
* @summary Remove installed font.
|
|
6245
6579
|
* @request DELETE:/styles/fonts
|
|
6580
|
+
* @secure
|
|
6246
6581
|
* @response `200` OK
|
|
6247
6582
|
*/
|
|
6248
6583
|
|
|
@@ -6301,6 +6636,7 @@ let TablesService = /*#__PURE__*/function (_Service) {
|
|
|
6301
6636
|
* @operationId TablesController_GetTableList
|
|
6302
6637
|
* @summary Returns the list of tables in data service.
|
|
6303
6638
|
* @request GET:/tables
|
|
6639
|
+
* @secure
|
|
6304
6640
|
* @response `200` OK
|
|
6305
6641
|
*/
|
|
6306
6642
|
function getTableList(query) {
|
|
@@ -6314,6 +6650,7 @@ let TablesService = /*#__PURE__*/function (_Service) {
|
|
|
6314
6650
|
* @operationId TablesController_CreateTable
|
|
6315
6651
|
* @summary Creates a new table.
|
|
6316
6652
|
* @request POST:/tables
|
|
6653
|
+
* @secure
|
|
6317
6654
|
* @response `200` OK
|
|
6318
6655
|
*/
|
|
6319
6656
|
|
|
@@ -6330,6 +6667,7 @@ let TablesService = /*#__PURE__*/function (_Service) {
|
|
|
6330
6667
|
* @operationId TablesController_DeleteResources
|
|
6331
6668
|
* @summary Bulk delete resources.
|
|
6332
6669
|
* @request DELETE:/tables
|
|
6670
|
+
* @secure
|
|
6333
6671
|
* @response `200` OK
|
|
6334
6672
|
*/
|
|
6335
6673
|
|
|
@@ -6346,6 +6684,7 @@ let TablesService = /*#__PURE__*/function (_Service) {
|
|
|
6346
6684
|
* @operationId TablesController_UpdateTable
|
|
6347
6685
|
* @summary Update exists table.
|
|
6348
6686
|
* @request PATCH:/tables/{name}
|
|
6687
|
+
* @secure
|
|
6349
6688
|
* @response `200` OK
|
|
6350
6689
|
*/
|
|
6351
6690
|
|
|
@@ -6362,6 +6701,7 @@ let TablesService = /*#__PURE__*/function (_Service) {
|
|
|
6362
6701
|
* @operationId TablesController_PutTable
|
|
6363
6702
|
* @summary Override exists table.
|
|
6364
6703
|
* @request PUT:/tables/{name}
|
|
6704
|
+
* @secure
|
|
6365
6705
|
* @response `200` OK
|
|
6366
6706
|
*/
|
|
6367
6707
|
|
|
@@ -6378,6 +6718,7 @@ let TablesService = /*#__PURE__*/function (_Service) {
|
|
|
6378
6718
|
* @operationId TablesController_GetTableInfo
|
|
6379
6719
|
* @summary Returns the table information and schema.
|
|
6380
6720
|
* @request GET:/tables/{name}
|
|
6721
|
+
* @secure
|
|
6381
6722
|
* @response `200` OK
|
|
6382
6723
|
*/
|
|
6383
6724
|
|
|
@@ -6394,6 +6735,7 @@ let TablesService = /*#__PURE__*/function (_Service) {
|
|
|
6394
6735
|
* @operationId TablesController_DeleteResource
|
|
6395
6736
|
* @summary Deletes resource.
|
|
6396
6737
|
* @request DELETE:/tables/{name}
|
|
6738
|
+
* @secure
|
|
6397
6739
|
* @response `200` OK
|
|
6398
6740
|
*/
|
|
6399
6741
|
|
|
@@ -6410,6 +6752,7 @@ let TablesService = /*#__PURE__*/function (_Service) {
|
|
|
6410
6752
|
* @operationId TablesController_GetTablesInfoAsync
|
|
6411
6753
|
* @summary Returns the tables information.
|
|
6412
6754
|
* @request GET:/tables/batchInfo
|
|
6755
|
+
* @secure
|
|
6413
6756
|
* @response `200` OK
|
|
6414
6757
|
*/
|
|
6415
6758
|
|
|
@@ -6426,6 +6769,7 @@ let TablesService = /*#__PURE__*/function (_Service) {
|
|
|
6426
6769
|
* @operationId TablesController_GetTableData
|
|
6427
6770
|
* @summary Retrieves the data from the table.
|
|
6428
6771
|
* @request GET:/tables/{name}/data
|
|
6772
|
+
* @secure
|
|
6429
6773
|
* @response `200` OK
|
|
6430
6774
|
*/
|
|
6431
6775
|
|
|
@@ -6447,6 +6791,7 @@ let TablesService = /*#__PURE__*/function (_Service) {
|
|
|
6447
6791
|
* @operationId TablesController_WriteTableData
|
|
6448
6792
|
* @summary Adds the data to the table.
|
|
6449
6793
|
* @request POST:/tables/{name}/data
|
|
6794
|
+
* @secure
|
|
6450
6795
|
* @response `200` OK
|
|
6451
6796
|
*/
|
|
6452
6797
|
|
|
@@ -6463,6 +6808,7 @@ let TablesService = /*#__PURE__*/function (_Service) {
|
|
|
6463
6808
|
* @operationId TablesController_UpdateTableData
|
|
6464
6809
|
* @summary Updates the data in the table.
|
|
6465
6810
|
* @request PATCH:/tables/{name}/data
|
|
6811
|
+
* @secure
|
|
6466
6812
|
* @response `200` OK
|
|
6467
6813
|
*/
|
|
6468
6814
|
|
|
@@ -6484,6 +6830,7 @@ let TablesService = /*#__PURE__*/function (_Service) {
|
|
|
6484
6830
|
* @operationId TablesController_DeleteTableData
|
|
6485
6831
|
* @summary Delete data rows from the table.
|
|
6486
6832
|
* @request DELETE:/tables/{name}/data
|
|
6833
|
+
* @secure
|
|
6487
6834
|
* @response `200` OK
|
|
6488
6835
|
*/
|
|
6489
6836
|
|
|
@@ -6505,6 +6852,7 @@ let TablesService = /*#__PURE__*/function (_Service) {
|
|
|
6505
6852
|
* @operationId TablesController_MapTable
|
|
6506
6853
|
* @summary Map table to exists table.
|
|
6507
6854
|
* @request POST:/tables/map-table
|
|
6855
|
+
* @secure
|
|
6508
6856
|
* @response `200` OK
|
|
6509
6857
|
*/
|
|
6510
6858
|
|
|
@@ -6521,6 +6869,7 @@ let TablesService = /*#__PURE__*/function (_Service) {
|
|
|
6521
6869
|
* @operationId TablesController_UnmapTableAsync
|
|
6522
6870
|
* @summary Unmap datasource from table.
|
|
6523
6871
|
* @request DELETE:/tables/map-table/{name}
|
|
6872
|
+
* @secure
|
|
6524
6873
|
* @response `200` OK
|
|
6525
6874
|
*/
|
|
6526
6875
|
|
|
@@ -6537,6 +6886,7 @@ let TablesService = /*#__PURE__*/function (_Service) {
|
|
|
6537
6886
|
* @operationId TablesController_CreateViewFromQueryLayer
|
|
6538
6887
|
* @summary Creates a new view from query layer.
|
|
6539
6888
|
* @request POST:/tables/fromLayer
|
|
6889
|
+
* @secure
|
|
6540
6890
|
* @response `200` OK
|
|
6541
6891
|
*/
|
|
6542
6892
|
|
|
@@ -6553,6 +6903,7 @@ let TablesService = /*#__PURE__*/function (_Service) {
|
|
|
6553
6903
|
* @operationId TablesController_CreateViewFromQuery
|
|
6554
6904
|
* @summary Creates a new view from query.
|
|
6555
6905
|
* @request POST:/tables/fromQuery
|
|
6906
|
+
* @secure
|
|
6556
6907
|
* @response `200` OK
|
|
6557
6908
|
*/
|
|
6558
6909
|
|
|
@@ -6569,6 +6920,7 @@ let TablesService = /*#__PURE__*/function (_Service) {
|
|
|
6569
6920
|
* @operationId TablesController_IsExistsAsync
|
|
6570
6921
|
* @summary Check is resource exists.
|
|
6571
6922
|
* @request GET:/tables/{name}/exists
|
|
6923
|
+
* @secure
|
|
6572
6924
|
* @response `200` OK
|
|
6573
6925
|
*/
|
|
6574
6926
|
|
|
@@ -6585,6 +6937,7 @@ let TablesService = /*#__PURE__*/function (_Service) {
|
|
|
6585
6937
|
* @operationId TablesController_GetResourceDependencies
|
|
6586
6938
|
* @summary Get resource dependencies.
|
|
6587
6939
|
* @request GET:/tables/{name}/dependencies
|
|
6940
|
+
* @secure
|
|
6588
6941
|
* @response `200` OK
|
|
6589
6942
|
*/
|
|
6590
6943
|
|
|
@@ -6601,6 +6954,7 @@ let TablesService = /*#__PURE__*/function (_Service) {
|
|
|
6601
6954
|
* @operationId TablesController_GetResourceReferences
|
|
6602
6955
|
* @summary Returns the resource dependency information.
|
|
6603
6956
|
* @request GET:/tables/{name}/references
|
|
6957
|
+
* @secure
|
|
6604
6958
|
* @response `200` OK
|
|
6605
6959
|
*/
|
|
6606
6960
|
|
|
@@ -6724,6 +7078,7 @@ let VectorTileService = /*#__PURE__*/function (_Service) {
|
|
|
6724
7078
|
* @operationId VectorTileServiceController_GetVectorTile
|
|
6725
7079
|
* @summary Get vector tile from visible project layers or single layer.
|
|
6726
7080
|
* @request GET:/vt/{name}/{z}/{x}/{y}.pbf
|
|
7081
|
+
* @secure
|
|
6727
7082
|
* @response `200` OK
|
|
6728
7083
|
*/
|
|
6729
7084
|
function getVectorTile(_ref) {
|
|
@@ -6887,7 +7242,6 @@ let Api = /*#__PURE__*/function (_EventEmitter) {
|
|
|
6887
7242
|
_this.cameras = new Cameras(_this.http);
|
|
6888
7243
|
_this.print = new Print(_this.http);
|
|
6889
7244
|
_this.tools = new Tools(_this.http);
|
|
6890
|
-
_this.resourceCatalog = new ResourceCatalog(_this.http);
|
|
6891
7245
|
_this.external = new External(_this.http);
|
|
6892
7246
|
_this.clientSettings = new ClientSettings(_this.http);
|
|
6893
7247
|
_this.portalSettings = new PortalSettings(_this.http);
|
|
@@ -7433,7 +7787,6 @@ exports.PortalSettings = PortalSettings;
|
|
|
7433
7787
|
exports.Print = Print;
|
|
7434
7788
|
exports.Projects = Projects;
|
|
7435
7789
|
exports.RemoteTaskManager = RemoteTaskManager;
|
|
7436
|
-
exports.ResourceCatalog = ResourceCatalog;
|
|
7437
7790
|
exports.Resources = Resources;
|
|
7438
7791
|
exports.STORAGE_REFRESH_TOKEN_KEY = STORAGE_REFRESH_TOKEN_KEY;
|
|
7439
7792
|
exports.STORAGE_TOKEN_KEY = STORAGE_TOKEN_KEY;
|