@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.
Files changed (43) hide show
  1. package/dist/Api.d.ts +1 -2
  2. package/dist/__generated__/AccountPreviewService.d.ts +47 -8
  3. package/dist/__generated__/AccountService.d.ts +64 -2
  4. package/dist/__generated__/BulkOperationsService.d.ts +1 -0
  5. package/dist/__generated__/CamerasService.d.ts +8 -0
  6. package/dist/__generated__/CatalogService.d.ts +29 -2
  7. package/dist/__generated__/ClientSettingsService.d.ts +4 -0
  8. package/dist/__generated__/DataSourceService.d.ts +14 -0
  9. package/dist/__generated__/EqlService.d.ts +9 -0
  10. package/dist/__generated__/ExternalProvidersService.d.ts +11 -0
  11. package/dist/__generated__/FeedbackService.d.ts +3 -0
  12. package/dist/__generated__/FiltersService.d.ts +3 -0
  13. package/dist/__generated__/GeocodeService.d.ts +3 -0
  14. package/dist/__generated__/IceRouterService.d.ts +2 -0
  15. package/dist/__generated__/ImportService.d.ts +10 -0
  16. package/dist/__generated__/LayersService.d.ts +55 -2
  17. package/dist/__generated__/NotificationService.d.ts +5 -0
  18. package/dist/__generated__/PrintService.d.ts +6 -0
  19. package/dist/__generated__/ProjectsService.d.ts +17 -2
  20. package/dist/__generated__/PythonService.d.ts +2 -0
  21. package/dist/__generated__/QueryTokenAccessService.d.ts +5 -0
  22. package/dist/__generated__/RemoteTaskManagerService.d.ts +17 -0
  23. package/dist/__generated__/SecurityService.d.ts +37 -2
  24. package/dist/__generated__/SpatialReferencesService.d.ts +3 -0
  25. package/dist/__generated__/StatisticService.d.ts +8 -2
  26. package/dist/__generated__/StyleService.d.ts +6 -0
  27. package/dist/__generated__/SymbolStorageService.d.ts +18 -0
  28. package/dist/__generated__/TablesService.d.ts +21 -2
  29. package/dist/__generated__/VectorTileService.d.ts +1 -0
  30. package/dist/__generated__/WfsServerService.d.ts +3 -0
  31. package/dist/__generated__/WmsServerService.d.ts +5 -0
  32. package/dist/__generated__/WmtsService.d.ts +1 -0
  33. package/dist/__generated__/data-contracts.d.ts +43 -58
  34. package/dist/api.cjs.development.js +426 -73
  35. package/dist/api.cjs.development.js.map +1 -1
  36. package/dist/api.cjs.production.min.js +1 -1
  37. package/dist/api.cjs.production.min.js.map +1 -1
  38. package/dist/api.esm.js +427 -73
  39. package/dist/api.esm.js.map +1 -1
  40. package/dist/services/index.d.ts +0 -1
  41. package/package.json +2 -2
  42. package/dist/__generated__/ResourceCatalogService.d.ts +0 -20
  43. package/dist/services/ResourceCatalog.d.ts +0 -3
package/dist/api.esm.js CHANGED
@@ -331,6 +331,7 @@ let DataSourceService = /*#__PURE__*/function (_Service) {
331
331
  * @operationId DataSourceController_CreateArcGisDataSource
332
332
  * @summary Create S3 data source.
333
333
  * @request POST:/ds/arcgis
334
+ * @secure
334
335
  * @response `200` OK
335
336
  */
336
337
  function createArcGisDataSource(data) {
@@ -344,6 +345,7 @@ let DataSourceService = /*#__PURE__*/function (_Service) {
344
345
  * @operationId DataSourceController_UpdateArcGisDataSource
345
346
  * @summary Update arcgis data source.
346
347
  * @request PATCH:/ds/arcgis
348
+ * @secure
347
349
  * @response `200` OK
348
350
  */
349
351
 
@@ -360,6 +362,7 @@ let DataSourceService = /*#__PURE__*/function (_Service) {
360
362
  * @operationId DataSourceController_GetDataSourcesList
361
363
  * @summary Returns list of the available data sources.
362
364
  * @request GET:/ds
365
+ * @secure
363
366
  * @response `200` OK
364
367
  */
365
368
 
@@ -376,6 +379,7 @@ let DataSourceService = /*#__PURE__*/function (_Service) {
376
379
  * @operationId DataSourceController_CreateDataSource
377
380
  * @summary Create data source.
378
381
  * @request POST:/ds
382
+ * @secure
379
383
  * @response `200` OK
380
384
  */
381
385
 
@@ -392,6 +396,7 @@ let DataSourceService = /*#__PURE__*/function (_Service) {
392
396
  * @operationId DataSourceController_UpdateDataSource
393
397
  * @summary Update data source.
394
398
  * @request PATCH:/ds
399
+ * @secure
395
400
  * @response `200` OK
396
401
  */
397
402
 
@@ -408,6 +413,7 @@ let DataSourceService = /*#__PURE__*/function (_Service) {
408
413
  * @operationId DataSourceController_GetDataSource
409
414
  * @summary Get data source by name.
410
415
  * @request GET:/ds/{name}
416
+ * @secure
411
417
  * @response `200` OK
412
418
  */
413
419
 
@@ -424,6 +430,7 @@ let DataSourceService = /*#__PURE__*/function (_Service) {
424
430
  * @operationId DataSourceController_RemoveDataSource
425
431
  * @summary Remove data source by name.
426
432
  * @request DELETE:/ds/{name}
433
+ * @secure
427
434
  * @response `200` OK
428
435
  */
429
436
 
@@ -440,6 +447,7 @@ let DataSourceService = /*#__PURE__*/function (_Service) {
440
447
  * @operationId DataSourceController_TestConnection
441
448
  * @summary Test ds connection.
442
449
  * @request POST:/ds/testConnection
450
+ * @secure
443
451
  * @response `200` OK
444
452
  */
445
453
 
@@ -456,6 +464,7 @@ let DataSourceService = /*#__PURE__*/function (_Service) {
456
464
  * @operationId DataSourceController_CreateMosRuDataSource
457
465
  * @summary Create data.mos.ru source.
458
466
  * @request POST:/ds/dataMosRu
467
+ * @secure
459
468
  * @response `200` OK
460
469
  */
461
470
 
@@ -472,6 +481,7 @@ let DataSourceService = /*#__PURE__*/function (_Service) {
472
481
  * @operationId DataSourceController_UpdateMosRuDataSource
473
482
  * @summary Update arcgis data source.
474
483
  * @request PATCH:/ds/dataMosRu
484
+ * @secure
475
485
  * @response `200` OK
476
486
  */
477
487
 
@@ -488,6 +498,7 @@ let DataSourceService = /*#__PURE__*/function (_Service) {
488
498
  * @operationId DataSourceController_CreateS3DataSource
489
499
  * @summary Create S3 data source.
490
500
  * @request POST:/ds/s3
501
+ * @secure
491
502
  * @response `200` OK
492
503
  */
493
504
 
@@ -504,6 +515,7 @@ let DataSourceService = /*#__PURE__*/function (_Service) {
504
515
  * @operationId DataSourceController_UpdateS3DataSource
505
516
  * @summary Create S3 data source.
506
517
  * @request PATCH:/ds/s3
518
+ * @secure
507
519
  * @response `200` OK
508
520
  */
509
521
 
@@ -520,6 +532,7 @@ let DataSourceService = /*#__PURE__*/function (_Service) {
520
532
  * @operationId DataSourceController_CreateArcGisDataSource_1
521
533
  * @summary Create WMS data source.
522
534
  * @request POST:/ds/wms
535
+ * @secure
523
536
  * @response `200` OK
524
537
  */
525
538
 
@@ -536,6 +549,7 @@ let DataSourceService = /*#__PURE__*/function (_Service) {
536
549
  * @operationId DataSourceController_UpdateArcGisDataSource_1
537
550
  * @summary Update WMS data source.
538
551
  * @request PATCH:/ds/wms
552
+ * @secure
539
553
  * @response `200` OK
540
554
  */
541
555
 
@@ -577,6 +591,7 @@ let QueryTokenAccessService = /*#__PURE__*/function (_Service) {
577
591
  * @name GetTokensList
578
592
  * @operationId QueryTokenAccessController_GetTokensList
579
593
  * @request GET:/accessToken/list/{username}
594
+ * @secure
580
595
  * @response `200` OK
581
596
  */
582
597
  function getTokensList(_ref) {
@@ -594,6 +609,7 @@ let QueryTokenAccessService = /*#__PURE__*/function (_Service) {
594
609
  * @name CreateToken
595
610
  * @operationId QueryTokenAccessController_CreateTokenAsync
596
611
  * @request PUT:/accessToken/{username}
612
+ * @secure
597
613
  * @response `200` OK
598
614
  */
599
615
 
@@ -609,6 +625,7 @@ let QueryTokenAccessService = /*#__PURE__*/function (_Service) {
609
625
  * @name DisableToken
610
626
  * @operationId QueryTokenAccessController_DisableToken
611
627
  * @request POST:/accessToken/{token}/disable
628
+ * @secure
612
629
  * @response `200` OK
613
630
  */
614
631
 
@@ -624,6 +641,7 @@ let QueryTokenAccessService = /*#__PURE__*/function (_Service) {
624
641
  * @name EnableToken
625
642
  * @operationId QueryTokenAccessController_EnableToken
626
643
  * @request POST:/accessToken/{token}/enable
644
+ * @secure
627
645
  * @response `200` OK
628
646
  */
629
647
 
@@ -639,6 +657,7 @@ let QueryTokenAccessService = /*#__PURE__*/function (_Service) {
639
657
  * @name RevokeToken
640
658
  * @operationId QueryTokenAccessController_RevokeToken
641
659
  * @request DELETE:/accessToken/{token}
660
+ * @secure
642
661
  * @response `200` OK
643
662
  */
644
663
 
@@ -680,6 +699,7 @@ let SpatialReferencesService = /*#__PURE__*/function (_Service) {
680
699
  * @operationId SpatialReferencesController_GetAvailiableCsAsync
681
700
  * @summary Returns list of available spatial references.
682
701
  * @request GET:/srs/list
702
+ * @secure
683
703
  * @response `200` OK
684
704
  */
685
705
  function getAvailiableCs() {
@@ -693,6 +713,7 @@ let SpatialReferencesService = /*#__PURE__*/function (_Service) {
693
713
  * @operationId SpatialReferencesController_GetProj4RepresentationAsync
694
714
  * @summary Returns a WKT representation of spatial reference.
695
715
  * @request GET:/srs/{name}/proj4
716
+ * @secure
696
717
  * @response `200` OK
697
718
  */
698
719
 
@@ -709,6 +730,7 @@ let SpatialReferencesService = /*#__PURE__*/function (_Service) {
709
730
  * @operationId SpatialReferencesController_GetWktRepresentationAsync
710
731
  * @summary Returns a WKT representation of spatial reference.
711
732
  * @request GET:/srs/{name}/wkt
733
+ * @secure
712
734
  * @response `200` OK
713
735
  */
714
736
 
@@ -750,6 +772,7 @@ let CatalogService = /*#__PURE__*/function (_Service) {
750
772
  * @operationId CatalogController_GetParents
751
773
  * @summary Get parents.
752
774
  * @request GET:/resources/{resourceId}/parents
775
+ * @secure
753
776
  * @response `200` OK
754
777
  */
755
778
  function getParents(resourceId) {
@@ -763,6 +786,7 @@ let CatalogService = /*#__PURE__*/function (_Service) {
763
786
  * @operationId CatalogController_GetTags
764
787
  * @summary Get all tags of given user.
765
788
  * @request GET:/resources/tags
789
+ * @secure
766
790
  * @response `200` OK
767
791
  */
768
792
 
@@ -779,6 +803,7 @@ let CatalogService = /*#__PURE__*/function (_Service) {
779
803
  * @operationId CatalogController_PutTags
780
804
  * @summary Put tags to resource.
781
805
  * @request PUT:/resources/{resourceId}/tags
806
+ * @secure
782
807
  * @response `200` OK
783
808
  */
784
809
 
@@ -795,6 +820,7 @@ let CatalogService = /*#__PURE__*/function (_Service) {
795
820
  * @operationId CatalogController_PostGetAll
796
821
  * @summary Get all resource with given.
797
822
  * @request POST:/resources
823
+ * @secure
798
824
  * @response `200` OK
799
825
  */
800
826
 
@@ -811,6 +837,7 @@ let CatalogService = /*#__PURE__*/function (_Service) {
811
837
  * @operationId CatalogController_GetResource
812
838
  * @summary Get resource with given id.
813
839
  * @request GET:/resources/{resourceId}
840
+ * @secure
814
841
  * @response `200` OK
815
842
  */
816
843
 
@@ -827,6 +854,7 @@ let CatalogService = /*#__PURE__*/function (_Service) {
827
854
  * @operationId CatalogController_PatchResource
828
855
  * @summary Update directory.
829
856
  * @request PATCH:/resources/{resourceId}
857
+ * @secure
830
858
  * @response `200` OK
831
859
  */
832
860
 
@@ -843,6 +871,7 @@ let CatalogService = /*#__PURE__*/function (_Service) {
843
871
  * @operationId CatalogController_DeleteResource
844
872
  * @summary Delete resource.
845
873
  * @request DELETE:/resources/{resourceId}
874
+ * @secure
846
875
  * @response `200` OK
847
876
  */
848
877
 
@@ -859,6 +888,7 @@ let CatalogService = /*#__PURE__*/function (_Service) {
859
888
  * @operationId CatalogController_MoveResource
860
889
  * @summary Rename resource with given id.
861
890
  * @request POST:/resources/{resourceId}/move
891
+ * @secure
862
892
  * @response `200` OK
863
893
  */
864
894
 
@@ -875,6 +905,7 @@ let CatalogService = /*#__PURE__*/function (_Service) {
875
905
  * @operationId CatalogController_CreateDirectory
876
906
  * @summary Create directory.
877
907
  * @request POST:/resources/directory
908
+ * @secure
878
909
  * @response `200` OK
879
910
  */
880
911
 
@@ -891,6 +922,7 @@ let CatalogService = /*#__PURE__*/function (_Service) {
891
922
  * @operationId CatalogController_CreateFile
892
923
  * @summary Create new file.
893
924
  * @request POST:/resources/file
925
+ * @secure
894
926
  * @response `200` OK
895
927
  */
896
928
 
@@ -907,6 +939,7 @@ let CatalogService = /*#__PURE__*/function (_Service) {
907
939
  * @operationId CatalogController_GetPermissions
908
940
  * @summary Set permissions to the resource.
909
941
  * @request GET:/resources/{resourceId}/permissions
942
+ * @secure
910
943
  * @response `200` OK
911
944
  */
912
945
 
@@ -923,6 +956,7 @@ let CatalogService = /*#__PURE__*/function (_Service) {
923
956
  * @operationId CatalogController_SetPermissions_1
924
957
  * @summary Set permissions to the resource.
925
958
  * @request PUT:/resources/{resourceId}/permissions
959
+ * @secure
926
960
  * @response `200` OK
927
961
  */
928
962
 
@@ -939,6 +973,7 @@ let CatalogService = /*#__PURE__*/function (_Service) {
939
973
  * @operationId CatalogController_SetPermissions
940
974
  * @summary Set permissions to the resource.
941
975
  * @request PUT:/resources/permissions
976
+ * @secure
942
977
  * @response `200` OK
943
978
  */
944
979
 
@@ -955,6 +990,7 @@ let CatalogService = /*#__PURE__*/function (_Service) {
955
990
  * @operationId CatalogController_DownloadFile
956
991
  * @summary Download file.
957
992
  * @request GET:/resources/{resourceId}/download
993
+ * @secure
958
994
  * @response `200` OK
959
995
  */
960
996
 
@@ -971,6 +1007,7 @@ let CatalogService = /*#__PURE__*/function (_Service) {
971
1007
  * @operationId CatalogController_CleanResources
972
1008
  * @summary Clean user resources.
973
1009
  * @request POST:/resources/clean
1010
+ * @secure
974
1011
  * @response `200` OK
975
1012
  */
976
1013
 
@@ -979,6 +1016,23 @@ let CatalogService = /*#__PURE__*/function (_Service) {
979
1016
  value: function cleanResources() {
980
1017
  return this.http.post("/resources/clean", null).then(() => {});
981
1018
  }
1019
+ /**
1020
+ * No description
1021
+ *
1022
+ * @tags Catalog
1023
+ * @name CopyResources
1024
+ * @operationId CatalogController_CopyResources
1025
+ * @summary Copy a set of resources.
1026
+ * @request POST:/resources/copy
1027
+ * @secure
1028
+ * @response `200` OK
1029
+ */
1030
+
1031
+ }, {
1032
+ key: "copyResources",
1033
+ value: function copyResources(data) {
1034
+ return this.http.post("/resources/copy", data).json();
1035
+ }
982
1036
  }]);
983
1037
 
984
1038
  return CatalogService;
@@ -1020,6 +1074,7 @@ let AccountService = /*#__PURE__*/function (_Service) {
1020
1074
  * @operationId AccountController_GetUsers
1021
1075
  * @summary Returns the list of users that correspond to the given conditions.
1022
1076
  * @request GET:/account/user/list
1077
+ * @secure
1023
1078
  * @response `200` OK
1024
1079
  */
1025
1080
  function getUsers(query) {
@@ -1033,6 +1088,7 @@ let AccountService = /*#__PURE__*/function (_Service) {
1033
1088
  * @operationId AccountController_GetExtendedUsers
1034
1089
  * @summary Returns the list of extended users informations that correspond to the given conditions.
1035
1090
  * @request GET:/account/user/extendedlist
1091
+ * @secure
1036
1092
  * @response `200` OK
1037
1093
  */
1038
1094
 
@@ -1047,14 +1103,32 @@ let AccountService = /*#__PURE__*/function (_Service) {
1047
1103
  * @tags Account
1048
1104
  * @name GetUserInfo
1049
1105
  * @operationId AccountController_GetUserInfo
1106
+ * @summary Get current user basic information.
1107
+ * @request GET:/account
1108
+ * @secure
1109
+ * @response `200` OK
1110
+ */
1111
+
1112
+ }, {
1113
+ key: "getUserInfo",
1114
+ value: function getUserInfo() {
1115
+ return this.http.get("/account").json();
1116
+ }
1117
+ /**
1118
+ * No description
1119
+ *
1120
+ * @tags Account
1121
+ * @name GetUserInfo1
1122
+ * @operationId AccountController_GetUserInfo_1
1050
1123
  * @summary Get user basic information.
1051
1124
  * @request GET:/account/{username}
1125
+ * @secure
1052
1126
  * @response `200` OK
1053
1127
  */
1054
1128
 
1055
1129
  }, {
1056
- key: "getUserInfo",
1057
- value: function getUserInfo(username) {
1130
+ key: "getUserInfo1",
1131
+ value: function getUserInfo1(username) {
1058
1132
  return this.http.get("/account/" + username).json();
1059
1133
  }
1060
1134
  /**
@@ -1063,14 +1137,32 @@ let AccountService = /*#__PURE__*/function (_Service) {
1063
1137
  * @tags Account
1064
1138
  * @name GetExtendedUserInfo
1065
1139
  * @operationId AccountController_GetExtendedUserInfo
1140
+ * @summary Get current user extended information.
1141
+ * @request GET:/account/extended
1142
+ * @secure
1143
+ * @response `200` OK
1144
+ */
1145
+
1146
+ }, {
1147
+ key: "getExtendedUserInfo",
1148
+ value: function getExtendedUserInfo() {
1149
+ return this.http.get("/account/extended").json();
1150
+ }
1151
+ /**
1152
+ * No description
1153
+ *
1154
+ * @tags Account
1155
+ * @name GetExtendedUserInfo1
1156
+ * @operationId AccountController_GetExtendedUserInfo_1
1066
1157
  * @summary Get user extended information.
1067
1158
  * @request GET:/account/extended/{username}
1159
+ * @secure
1068
1160
  * @response `200` OK
1069
1161
  */
1070
1162
 
1071
1163
  }, {
1072
- key: "getExtendedUserInfo",
1073
- value: function getExtendedUserInfo(username) {
1164
+ key: "getExtendedUserInfo1",
1165
+ value: function getExtendedUserInfo1(username) {
1074
1166
  return this.http.get("/account/extended/" + username).json();
1075
1167
  }
1076
1168
  /**
@@ -1081,6 +1173,7 @@ let AccountService = /*#__PURE__*/function (_Service) {
1081
1173
  * @operationId AccountController_IsUsernameExists
1082
1174
  * @summary Checks if the user with the given name is registered in the system.
1083
1175
  * @request GET:/account/user/exists
1176
+ * @secure
1084
1177
  * @response `200` OK
1085
1178
  */
1086
1179
 
@@ -1097,6 +1190,7 @@ let AccountService = /*#__PURE__*/function (_Service) {
1097
1190
  * @operationId AccountController_IsEmailExists
1098
1191
  * @summary Checks if the user with the given email is registered in the system.
1099
1192
  * @request GET:/account/user/email/exists
1193
+ * @secure
1100
1194
  * @response `200` OK
1101
1195
  */
1102
1196
 
@@ -1113,6 +1207,7 @@ let AccountService = /*#__PURE__*/function (_Service) {
1113
1207
  * @operationId AccountController_RegisterUser
1114
1208
  * @summary Register new user.
1115
1209
  * @request POST:/account/register
1210
+ * @secure
1116
1211
  * @response `200` OK
1117
1212
  */
1118
1213
 
@@ -1129,6 +1224,7 @@ let AccountService = /*#__PURE__*/function (_Service) {
1129
1224
  * @operationId AccountController_CreateUser
1130
1225
  * @summary Create new user.
1131
1226
  * @request POST:/account/user
1227
+ * @secure
1132
1228
  * @response `200` OK
1133
1229
  */
1134
1230
 
@@ -1145,6 +1241,7 @@ let AccountService = /*#__PURE__*/function (_Service) {
1145
1241
  * @operationId AccountController_UpdateUser
1146
1242
  * @summary Update exist user.
1147
1243
  * @request PATCH:/account/user
1244
+ * @secure
1148
1245
  * @response `200` OK
1149
1246
  */
1150
1247
 
@@ -1161,6 +1258,7 @@ let AccountService = /*#__PURE__*/function (_Service) {
1161
1258
  * @operationId AccountController_ConfirmEmail
1162
1259
  * @summary Confirm user email.
1163
1260
  * @request POST:/account/user/{username}/email/confirm
1261
+ * @secure
1164
1262
  * @response `200` OK
1165
1263
  */
1166
1264
 
@@ -1177,6 +1275,7 @@ let AccountService = /*#__PURE__*/function (_Service) {
1177
1275
  * @operationId AccountController_VerifyEmail
1178
1276
  * @summary Send email with verification code.
1179
1277
  * @request POST:/account/user/{username}/email/verify
1278
+ * @secure
1180
1279
  * @response `200` OK
1181
1280
  */
1182
1281
 
@@ -1193,6 +1292,7 @@ let AccountService = /*#__PURE__*/function (_Service) {
1193
1292
  * @operationId AccountController_SetEmail
1194
1293
  * @summary For a user that does not have a set email, sets the email and password. Requires email confirmation through link.
1195
1294
  * @request POST:/account/setEmail
1295
+ * @secure
1196
1296
  * @response `200` OK
1197
1297
  */
1198
1298
 
@@ -1209,6 +1309,7 @@ let AccountService = /*#__PURE__*/function (_Service) {
1209
1309
  * @operationId AccountController_ConfirmEmail_1
1210
1310
  * @summary Confirm user email by code.
1211
1311
  * @request POST:/account/user/email/confirm
1312
+ * @secure
1212
1313
  * @response `200` OK
1213
1314
  */
1214
1315
 
@@ -1225,6 +1326,7 @@ let AccountService = /*#__PURE__*/function (_Service) {
1225
1326
  * @operationId AccountController_ChangeEmail
1226
1327
  * @summary Send email message with confirmation code to new email address.
1227
1328
  * @request POST:/account/user/email/change
1329
+ * @secure
1228
1330
  * @response `200` OK
1229
1331
  */
1230
1332
 
@@ -1241,6 +1343,7 @@ let AccountService = /*#__PURE__*/function (_Service) {
1241
1343
  * @operationId AccountController_ConfirmChangeEmail
1242
1344
  * @summary Check confirmation code and change email address.
1243
1345
  * @request POST:/account/user/email/change/confirm
1346
+ * @secure
1244
1347
  * @response `200` OK
1245
1348
  */
1246
1349
 
@@ -1257,6 +1360,7 @@ let AccountService = /*#__PURE__*/function (_Service) {
1257
1360
  * @operationId AccountController_SetUserPassword
1258
1361
  * @summary Set user password.
1259
1362
  * @request PATCH:/account/password/set
1363
+ * @secure
1260
1364
  * @response `200` OK
1261
1365
  */
1262
1366
 
@@ -1273,6 +1377,7 @@ let AccountService = /*#__PURE__*/function (_Service) {
1273
1377
  * @operationId AccountController_ChangePassword
1274
1378
  * @summary Change current user password.
1275
1379
  * @request PATCH:/account/password/change
1380
+ * @secure
1276
1381
  * @response `200` OK
1277
1382
  */
1278
1383
 
@@ -1289,6 +1394,7 @@ let AccountService = /*#__PURE__*/function (_Service) {
1289
1394
  * @operationId AccountController_ResetPassword
1290
1395
  * @summary Send reset password message.
1291
1396
  * @request POST:/account/password/reset
1397
+ * @secure
1292
1398
  * @response `200` OK
1293
1399
  */
1294
1400
 
@@ -1305,6 +1411,7 @@ let AccountService = /*#__PURE__*/function (_Service) {
1305
1411
  * @operationId AccountController_ResetPasswordCallback
1306
1412
  * @summary Reset password.
1307
1413
  * @request POST:/account/password/reset/confirm
1414
+ * @secure
1308
1415
  * @response `200` OK
1309
1416
  */
1310
1417
 
@@ -1321,6 +1428,7 @@ let AccountService = /*#__PURE__*/function (_Service) {
1321
1428
  * @operationId AccountController_RemoveUser
1322
1429
  * @summary Remove user.
1323
1430
  * @request DELETE:/account/user/{username}
1431
+ * @secure
1324
1432
  * @response `200` OK
1325
1433
  */
1326
1434
 
@@ -1337,6 +1445,7 @@ let AccountService = /*#__PURE__*/function (_Service) {
1337
1445
  * @operationId AccountController_ActivateUser
1338
1446
  * @summary Activate user.
1339
1447
  * @request POST:/account/user/{username}/activate
1448
+ * @secure
1340
1449
  * @response `200` OK
1341
1450
  */
1342
1451
 
@@ -1353,6 +1462,7 @@ let AccountService = /*#__PURE__*/function (_Service) {
1353
1462
  * @operationId AccountController_DeactivateUser
1354
1463
  * @summary Deactivate user.
1355
1464
  * @request POST:/account/user/{username}/deactivate
1465
+ * @secure
1356
1466
  * @response `200` OK
1357
1467
  */
1358
1468
 
@@ -1369,6 +1479,7 @@ let AccountService = /*#__PURE__*/function (_Service) {
1369
1479
  * @operationId AccountController_Authenticate
1370
1480
  * @summary Login.
1371
1481
  * @request POST:/account/login
1482
+ * @secure
1372
1483
  * @response `200` OK
1373
1484
  */
1374
1485
 
@@ -1385,6 +1496,7 @@ let AccountService = /*#__PURE__*/function (_Service) {
1385
1496
  * @operationId AccountController_RefreshToken
1386
1497
  * @summary Refresh JWT token.
1387
1498
  * @request POST:/account/refresh-token
1499
+ * @secure
1388
1500
  * @response `200` OK
1389
1501
  */
1390
1502
 
@@ -1401,6 +1513,7 @@ let AccountService = /*#__PURE__*/function (_Service) {
1401
1513
  * @operationId AccountController_RevokeToken
1402
1514
  * @summary Revoke refresh token.
1403
1515
  * @request DELETE:/account/revoke-token
1516
+ * @secure
1404
1517
  * @response `200` OK
1405
1518
  */
1406
1519
 
@@ -1417,6 +1530,7 @@ let AccountService = /*#__PURE__*/function (_Service) {
1417
1530
  * @operationId AccountController_LdapLogin
1418
1531
  * @summary The external login callback.
1419
1532
  * @request POST:/account/external/login/ldap
1533
+ * @secure
1420
1534
  * @response `200` OK
1421
1535
  */
1422
1536
 
@@ -1433,6 +1547,7 @@ let AccountService = /*#__PURE__*/function (_Service) {
1433
1547
  * @operationId AccountController_RegisterClient
1434
1548
  * @summary Register new client.
1435
1549
  * @request POST:/account/oauth2/client
1550
+ * @secure
1436
1551
  * @response `200` OK
1437
1552
  */
1438
1553
 
@@ -1449,6 +1564,7 @@ let AccountService = /*#__PURE__*/function (_Service) {
1449
1564
  * @operationId AccountController_UnbindClient
1450
1565
  * @summary Unbind client with id.
1451
1566
  * @request DELETE:/account/oauth2/client/{clientId}
1567
+ * @secure
1452
1568
  * @response `200` OK
1453
1569
  */
1454
1570
 
@@ -1465,6 +1581,7 @@ let AccountService = /*#__PURE__*/function (_Service) {
1465
1581
  * @operationId AccountController_Token
1466
1582
  * @summary Get access token request.
1467
1583
  * @request POST:/account/oauth2/token
1584
+ * @secure
1468
1585
  * @response `200` OK
1469
1586
  */
1470
1587
 
@@ -1481,6 +1598,7 @@ let AccountService = /*#__PURE__*/function (_Service) {
1481
1598
  * @operationId AccountController_GetRoles
1482
1599
  * @summary Enumerate exist roles.
1483
1600
  * @request GET:/account/role/list
1601
+ * @secure
1484
1602
  * @response `200` OK
1485
1603
  */
1486
1604
 
@@ -1497,6 +1615,7 @@ let AccountService = /*#__PURE__*/function (_Service) {
1497
1615
  * @operationId AccountController_CreateRole
1498
1616
  * @summary Create new role.
1499
1617
  * @request POST:/account/role
1618
+ * @secure
1500
1619
  * @response `200` OK
1501
1620
  */
1502
1621
 
@@ -1513,6 +1632,7 @@ let AccountService = /*#__PURE__*/function (_Service) {
1513
1632
  * @operationId AccountController_UpdateRole
1514
1633
  * @summary Update exist role.
1515
1634
  * @request PATCH:/account/role
1635
+ * @secure
1516
1636
  * @response `200` OK
1517
1637
  */
1518
1638
 
@@ -1529,6 +1649,7 @@ let AccountService = /*#__PURE__*/function (_Service) {
1529
1649
  * @operationId AccountController_RemoveRole
1530
1650
  * @summary Remove role.
1531
1651
  * @request DELETE:/account/role/{rolename}
1652
+ * @secure
1532
1653
  * @response `200` OK
1533
1654
  */
1534
1655
 
@@ -1545,6 +1666,7 @@ let AccountService = /*#__PURE__*/function (_Service) {
1545
1666
  * @operationId AccountController_AddToRole
1546
1667
  * @summary Add user to role.
1547
1668
  * @request POST:/account/user/{username}/role/{role}
1669
+ * @secure
1548
1670
  * @response `200` OK
1549
1671
  */
1550
1672
 
@@ -1561,6 +1683,7 @@ let AccountService = /*#__PURE__*/function (_Service) {
1561
1683
  * @operationId AccountController_RemoveFromRole
1562
1684
  * @summary Remove user from role.
1563
1685
  * @request DELETE:/account/user/{username}/role/{role}
1686
+ * @secure
1564
1687
  * @response `200` OK
1565
1688
  */
1566
1689
 
@@ -1577,6 +1700,7 @@ let AccountService = /*#__PURE__*/function (_Service) {
1577
1700
  * @operationId AccountController_PostUsedProjects
1578
1701
  * @summary Set used project.
1579
1702
  * @request POST:/account/latest_projects
1703
+ * @secure
1580
1704
  * @response `200` OK
1581
1705
  */
1582
1706
 
@@ -1593,6 +1717,7 @@ let AccountService = /*#__PURE__*/function (_Service) {
1593
1717
  * @operationId AccountController_GetUsedProjects
1594
1718
  * @summary Get used projects.
1595
1719
  * @request GET:/account/latest_projects
1720
+ * @secure
1596
1721
  * @response `200` OK
1597
1722
  */
1598
1723
 
@@ -1609,6 +1734,7 @@ let AccountService = /*#__PURE__*/function (_Service) {
1609
1734
  * @operationId AccountController_TruncateUsedProjects
1610
1735
  * @summary Truncate used projects.
1611
1736
  * @request DELETE:/account/latest_projects
1737
+ * @secure
1612
1738
  * @response `200` OK
1613
1739
  */
1614
1740
 
@@ -1666,7 +1792,7 @@ let Account = /*#__PURE__*/function (_AccountService) {
1666
1792
  }, {
1667
1793
  key: "fetchCurrentUser",
1668
1794
  value: async function fetchCurrentUser() {
1669
- this.userInfo = await this.getUserInfo('');
1795
+ this.userInfo = await this.getUserInfo();
1670
1796
  return this.userInfo;
1671
1797
  }
1672
1798
  }, {
@@ -1759,12 +1885,13 @@ let AccountPreviewService = /*#__PURE__*/function (_Service) {
1759
1885
  * @tags AccountPreview
1760
1886
  * @name GetPreview
1761
1887
  * @operationId AccountPreviewController_GetPreview
1762
- * @summary Get user preview image.
1763
- * @request GET:/account/user/preview/{username}
1888
+ * @summary Get current user preview image.
1889
+ * @request GET:/account/user/preview
1890
+ * @secure
1764
1891
  * @response `200` OK
1765
1892
  */
1766
- function getPreview(username) {
1767
- return this.http.createUrl("/account/user/preview/" + username);
1893
+ function getPreview() {
1894
+ return this.http.createUrl("/account/user/preview");
1768
1895
  }
1769
1896
  /**
1770
1897
  * No description
@@ -1772,15 +1899,16 @@ let AccountPreviewService = /*#__PURE__*/function (_Service) {
1772
1899
  * @tags AccountPreview
1773
1900
  * @name UploadPreview
1774
1901
  * @operationId AccountPreviewController_UploadPreview
1775
- * @summary Set user preview image by link.
1776
- * @request POST:/account/user/preview/{username}
1902
+ * @summary Set current user preview image.
1903
+ * @request POST:/account/user/preview
1904
+ * @secure
1777
1905
  * @response `200` OK
1778
1906
  */
1779
1907
 
1780
1908
  }, {
1781
1909
  key: "uploadPreview",
1782
- value: function uploadPreview(username, data) {
1783
- return this.http.post("/account/user/preview/" + username, toFormData(data)).json();
1910
+ value: function uploadPreview(data) {
1911
+ return this.http.post("/account/user/preview", toFormData(data)).json();
1784
1912
  }
1785
1913
  /**
1786
1914
  * No description
@@ -1788,14 +1916,66 @@ let AccountPreviewService = /*#__PURE__*/function (_Service) {
1788
1916
  * @tags AccountPreview
1789
1917
  * @name DeletePreview
1790
1918
  * @operationId AccountPreviewController_DeletePreview
1919
+ * @summary Delete current user preview.
1920
+ * @request DELETE:/account/user/preview
1921
+ * @secure
1922
+ * @response `200` OK
1923
+ */
1924
+
1925
+ }, {
1926
+ key: "deletePreview",
1927
+ value: function deletePreview() {
1928
+ return this.http.delete("/account/user/preview", null).then(() => {});
1929
+ }
1930
+ /**
1931
+ * No description
1932
+ *
1933
+ * @tags AccountPreview
1934
+ * @name GetPreview1
1935
+ * @operationId AccountPreviewController_GetPreview_1
1936
+ * @summary Get user preview image.
1937
+ * @request GET:/account/user/preview/{username}
1938
+ * @secure
1939
+ * @response `200` OK
1940
+ */
1941
+
1942
+ }, {
1943
+ key: "getPreview1",
1944
+ value: function getPreview1(username) {
1945
+ return this.http.createUrl("/account/user/preview/" + username);
1946
+ }
1947
+ /**
1948
+ * No description
1949
+ *
1950
+ * @tags AccountPreview
1951
+ * @name UploadPreview1
1952
+ * @operationId AccountPreviewController_UploadPreview_1
1953
+ * @summary Set user preview image.
1954
+ * @request POST:/account/user/preview/{username}
1955
+ * @secure
1956
+ * @response `200` OK
1957
+ */
1958
+
1959
+ }, {
1960
+ key: "uploadPreview1",
1961
+ value: function uploadPreview1(username, data) {
1962
+ return this.http.post("/account/user/preview/" + username, toFormData(data)).json();
1963
+ }
1964
+ /**
1965
+ * No description
1966
+ *
1967
+ * @tags AccountPreview
1968
+ * @name DeletePreview1
1969
+ * @operationId AccountPreviewController_DeletePreview_1
1791
1970
  * @summary Delete user preview.
1792
1971
  * @request DELETE:/account/user/preview/{username}
1972
+ * @secure
1793
1973
  * @response `200` OK
1794
1974
  */
1795
1975
 
1796
1976
  }, {
1797
- key: "deletePreview",
1798
- value: function deletePreview(username) {
1977
+ key: "deletePreview1",
1978
+ value: function deletePreview1(username) {
1799
1979
  return this.http.delete("/account/user/preview/" + username, null).then(() => {});
1800
1980
  }
1801
1981
  }]);
@@ -1845,6 +2025,7 @@ let BulkOperationsService = /*#__PURE__*/function (_Service) {
1845
2025
  * @operationId BulkOperationsController_BatchResourcesPermissionsSet
1846
2026
  * @summary Perform resources set acl access batch operation.
1847
2027
  * @request PUT:/bulk/resources/permissions
2028
+ * @secure
1848
2029
  * @response `200` OK
1849
2030
  */
1850
2031
  function batchResourcesPermissionsSet(data) {
@@ -1903,6 +2084,7 @@ let CamerasService = /*#__PURE__*/function (_Service) {
1903
2084
  * @operationId CamerasController_GetCameras
1904
2085
  * @summary Get cameras list.
1905
2086
  * @request GET:/cameras
2087
+ * @secure
1906
2088
  * @response `200` OK
1907
2089
  */
1908
2090
  function getCameras(query) {
@@ -1916,6 +2098,7 @@ let CamerasService = /*#__PURE__*/function (_Service) {
1916
2098
  * @operationId CamerasController_GetArchiveFeed
1917
2099
  * @summary Streams an FLV-over-HTTP archive feed starting at specific time.
1918
2100
  * @request GET:/cameras/{cameraId}/archiveFeed
2101
+ * @secure
1919
2102
  * @response `200` OK
1920
2103
  */
1921
2104
 
@@ -1937,6 +2120,7 @@ let CamerasService = /*#__PURE__*/function (_Service) {
1937
2120
  * @operationId CamerasController_GetArchiveTimeline
1938
2121
  * @summary Returns a list of records available within a given timeframe.
1939
2122
  * @request GET:/cameras/{cameraId}/archiveTimeline
2123
+ * @secure
1940
2124
  * @response `200` OK
1941
2125
  */
1942
2126
 
@@ -1958,6 +2142,7 @@ let CamerasService = /*#__PURE__*/function (_Service) {
1958
2142
  * @operationId CamerasController_GetArchiveCalendar
1959
2143
  * @summary Returns a list of records available within a given timeframe.
1960
2144
  * @request GET:/cameras/{cameraId}/archiveCalendar
2145
+ * @secure
1961
2146
  * @response `200` OK
1962
2147
  */
1963
2148
 
@@ -1979,6 +2164,7 @@ let CamerasService = /*#__PURE__*/function (_Service) {
1979
2164
  * @operationId CamerasController_GetArchiveSnapshot
1980
2165
  * @summary Returns a JPEG image from the Camera’s archive.
1981
2166
  * @request GET:/cameras/{cameraId}/archiveSnapshot
2167
+ * @secure
1982
2168
  * @response `200` OK
1983
2169
  */
1984
2170
 
@@ -2000,6 +2186,7 @@ let CamerasService = /*#__PURE__*/function (_Service) {
2000
2186
  * @operationId CamerasController_GetLiveFeed
2001
2187
  * @summary Streams live video feed from the Camera.
2002
2188
  * @request GET:/cameras/{cameraId}/liveFeed
2189
+ * @secure
2003
2190
  * @response `200` OK
2004
2191
  */
2005
2192
 
@@ -2021,6 +2208,7 @@ let CamerasService = /*#__PURE__*/function (_Service) {
2021
2208
  * @operationId CamerasController_GetLiveSnapshot
2022
2209
  * @summary Returns a JPEG image from the Camera’s live feed.
2023
2210
  * @request GET:/cameras/{cameraId}/liveSnapshot
2211
+ * @secure
2024
2212
  * @response `200` OK
2025
2213
  */
2026
2214
 
@@ -2037,6 +2225,7 @@ let CamerasService = /*#__PURE__*/function (_Service) {
2037
2225
  * @operationId CamerasController_GetLivePreviewStream
2038
2226
  * @summary Get live preview stream.
2039
2227
  * @request GET:/cameras/{cameraId}/getLivePreviewsStream
2228
+ * @secure
2040
2229
  * @response `200` OK
2041
2230
  */
2042
2231
 
@@ -2097,6 +2286,7 @@ let ClientSettingsService = /*#__PURE__*/function (_Service) {
2097
2286
  * @operationId ClientSettingsController_GetConfigurationsList
2098
2287
  * @summary Get client configurations.
2099
2288
  * @request GET:/settings/config
2289
+ * @secure
2100
2290
  * @response `200` OK
2101
2291
  */
2102
2292
  function getConfigurationsList(query) {
@@ -2110,6 +2300,7 @@ let ClientSettingsService = /*#__PURE__*/function (_Service) {
2110
2300
  * @operationId ClientSettingsController_GetConfiguration
2111
2301
  * @summary Get config for urlPath.
2112
2302
  * @request GET:/settings
2303
+ * @secure
2113
2304
  * @response `200` OK
2114
2305
  */
2115
2306
 
@@ -2126,6 +2317,7 @@ let ClientSettingsService = /*#__PURE__*/function (_Service) {
2126
2317
  * @operationId ClientSettingsController_SetConfiguration
2127
2318
  * @summary Set config for urlPath.
2128
2319
  * @request POST:/settings
2320
+ * @secure
2129
2321
  * @response `200` OK
2130
2322
  */
2131
2323
 
@@ -2142,6 +2334,7 @@ let ClientSettingsService = /*#__PURE__*/function (_Service) {
2142
2334
  * @operationId ClientSettingsController_RemoveConfiguration
2143
2335
  * @summary Remove config for urlPath.
2144
2336
  * @request DELETE:/settings
2337
+ * @secure
2145
2338
  * @response `200` OK
2146
2339
  */
2147
2340
 
@@ -2220,6 +2413,7 @@ let EqlService = /*#__PURE__*/function (_Service) {
2220
2413
  * @operationId EqlController_GetFunctionsList
2221
2414
  * @summary Returns list of available functions.
2222
2415
  * @request GET:/eql/functions
2416
+ * @secure
2223
2417
  * @response `200` OK
2224
2418
  */
2225
2419
  function getFunctionsList() {
@@ -2233,6 +2427,7 @@ let EqlService = /*#__PURE__*/function (_Service) {
2233
2427
  * @operationId EqlController_GetPagedQueryResult
2234
2428
  * @summary Perform resources set acl access batch operation.
2235
2429
  * @request POST:/eql/query
2430
+ * @secure
2236
2431
  * @response `200` OK
2237
2432
  */
2238
2433
 
@@ -2249,6 +2444,7 @@ let EqlService = /*#__PURE__*/function (_Service) {
2249
2444
  * @operationId EqlController_GetQueryDescription
2250
2445
  * @summary Get EQL result columns definitions.
2251
2446
  * @request POST:/eql/description
2447
+ * @secure
2252
2448
  * @response `200` OK
2253
2449
  */
2254
2450
 
@@ -2265,6 +2461,7 @@ let EqlService = /*#__PURE__*/function (_Service) {
2265
2461
  * @operationId EqlController_SetLayerParameterValue
2266
2462
  * @summary Set EQL layer parameter.
2267
2463
  * @request POST:/eql/setParam
2464
+ * @secure
2268
2465
  * @response `200` OK
2269
2466
  */
2270
2467
 
@@ -2281,6 +2478,7 @@ let EqlService = /*#__PURE__*/function (_Service) {
2281
2478
  * @operationId EqlController_SetLayerParameters
2282
2479
  * @summary Set EQL layer parameters.
2283
2480
  * @request POST:/eql/setParams
2481
+ * @secure
2284
2482
  * @response `200` OK
2285
2483
  */
2286
2484
 
@@ -2297,6 +2495,7 @@ let EqlService = /*#__PURE__*/function (_Service) {
2297
2495
  * @operationId EqlController_GetLayerParameters
2298
2496
  * @summary Get EQL parameter.
2299
2497
  * @request GET:/eql/getParam
2498
+ * @secure
2300
2499
  * @response `200` OK
2301
2500
  */
2302
2501
 
@@ -2313,6 +2512,7 @@ let EqlService = /*#__PURE__*/function (_Service) {
2313
2512
  * @operationId EqlController_GetLayerParameters_1
2314
2513
  * @summary Get all EQL parameters.
2315
2514
  * @request GET:/eql/getParams
2515
+ * @secure
2316
2516
  * @response `200` OK
2317
2517
  */
2318
2518
 
@@ -2329,6 +2529,7 @@ let EqlService = /*#__PURE__*/function (_Service) {
2329
2529
  * @operationId EqlController_RemoveLayerParameterValue
2330
2530
  * @summary Remove EQL layer parameter.
2331
2531
  * @request DELETE:/eql/removeParam
2532
+ * @secure
2332
2533
  * @response `200` OK
2333
2534
  */
2334
2535
 
@@ -2345,6 +2546,7 @@ let EqlService = /*#__PURE__*/function (_Service) {
2345
2546
  * @operationId EqlController_GetAvailiableLayerParameters
2346
2547
  * @summary Get availiable layer parameters values.
2347
2548
  * @request GET:/eql/getAvailiableParams
2549
+ * @secure
2348
2550
  * @response `200` OK
2349
2551
  */
2350
2552
 
@@ -2400,6 +2602,7 @@ let ExternalProvidersService = /*#__PURE__*/function (_Service) {
2400
2602
  * @operationId ExternalProvidersController_VkLogin
2401
2603
  * @summary The external login by vk.
2402
2604
  * @request GET:/account/external/login/vk
2605
+ * @secure
2403
2606
  * @response `200` OK
2404
2607
  */
2405
2608
  function vkLogin() {
@@ -2413,6 +2616,7 @@ let ExternalProvidersService = /*#__PURE__*/function (_Service) {
2413
2616
  * @operationId ExternalProvidersController_GoogleLogin
2414
2617
  * @summary The external login by google.
2415
2618
  * @request GET:/account/external/login/google
2619
+ * @secure
2416
2620
  * @response `200` OK
2417
2621
  */
2418
2622
 
@@ -2429,6 +2633,7 @@ let ExternalProvidersService = /*#__PURE__*/function (_Service) {
2429
2633
  * @operationId ExternalProvidersController_FacebookLogin
2430
2634
  * @summary The external login by facebook.
2431
2635
  * @request GET:/account/external/login/facebook
2636
+ * @secure
2432
2637
  * @response `200` OK
2433
2638
  */
2434
2639
 
@@ -2445,6 +2650,7 @@ let ExternalProvidersService = /*#__PURE__*/function (_Service) {
2445
2650
  * @operationId ExternalProvidersController_LoginCallback
2446
2651
  * @summary The external login callback.
2447
2652
  * @request GET:/account/external/login/callback
2653
+ * @secure
2448
2654
  * @response `200` OK
2449
2655
  */
2450
2656
 
@@ -2461,6 +2667,7 @@ let ExternalProvidersService = /*#__PURE__*/function (_Service) {
2461
2667
  * @operationId ExternalProvidersController_UnbindVk
2462
2668
  * @summary Unbind external login from current user account (google).
2463
2669
  * @request DELETE:/account/external/unbind/vk
2670
+ * @secure
2464
2671
  * @response `200` OK
2465
2672
  */
2466
2673
 
@@ -2477,6 +2684,7 @@ let ExternalProvidersService = /*#__PURE__*/function (_Service) {
2477
2684
  * @operationId ExternalProvidersController_UnbindGoogle
2478
2685
  * @summary Unbind external login from current user account (google).
2479
2686
  * @request DELETE:/account/external/unbind/google
2687
+ * @secure
2480
2688
  * @response `200` OK
2481
2689
  */
2482
2690
 
@@ -2493,6 +2701,7 @@ let ExternalProvidersService = /*#__PURE__*/function (_Service) {
2493
2701
  * @operationId ExternalProvidersController_UnbindFacebook
2494
2702
  * @summary Unbind external login from current user account (google).
2495
2703
  * @request DELETE:/account/external/unbind/facebook
2704
+ * @secure
2496
2705
  * @response `200` OK
2497
2706
  */
2498
2707
 
@@ -2509,6 +2718,7 @@ let ExternalProvidersService = /*#__PURE__*/function (_Service) {
2509
2718
  * @operationId ExternalProvidersController_BindVk
2510
2719
  * @summary The external login by vk.
2511
2720
  * @request GET:/account/external/bind/vk
2721
+ * @secure
2512
2722
  * @response `200` OK
2513
2723
  */
2514
2724
 
@@ -2525,6 +2735,7 @@ let ExternalProvidersService = /*#__PURE__*/function (_Service) {
2525
2735
  * @operationId ExternalProvidersController_BindGoogle
2526
2736
  * @summary The external login by vk.
2527
2737
  * @request GET:/account/external/bind/google
2738
+ * @secure
2528
2739
  * @response `200` OK
2529
2740
  */
2530
2741
 
@@ -2541,6 +2752,7 @@ let ExternalProvidersService = /*#__PURE__*/function (_Service) {
2541
2752
  * @operationId ExternalProvidersController_BindFacebook
2542
2753
  * @summary The external login by vk.
2543
2754
  * @request GET:/account/external/bind/facebook
2755
+ * @secure
2544
2756
  * @response `200` OK
2545
2757
  */
2546
2758
 
@@ -2557,6 +2769,7 @@ let ExternalProvidersService = /*#__PURE__*/function (_Service) {
2557
2769
  * @operationId ExternalProvidersController_BindCallback
2558
2770
  * @summary Bind external login to current user account.
2559
2771
  * @request GET:/account/external/bind/callback
2772
+ * @secure
2560
2773
  * @response `200` OK
2561
2774
  */
2562
2775
 
@@ -2665,6 +2878,7 @@ let FeedbackService = /*#__PURE__*/function (_Service) {
2665
2878
  * @operationId FeedbackController_IncreaseResourcesLimit
2666
2879
  * @summary Increase resources limit request.
2667
2880
  * @request POST:/feedback/limits
2881
+ * @secure
2668
2882
  * @response `200` OK
2669
2883
  */
2670
2884
  function increaseResourcesLimit(query) {
@@ -2678,6 +2892,7 @@ let FeedbackService = /*#__PURE__*/function (_Service) {
2678
2892
  * @operationId FeedbackController_MoreSymbols
2679
2893
  * @summary More symbols request.
2680
2894
  * @request POST:/feedback/symbol
2895
+ * @secure
2681
2896
  * @response `200` OK
2682
2897
  */
2683
2898
 
@@ -2694,6 +2909,7 @@ let FeedbackService = /*#__PURE__*/function (_Service) {
2694
2909
  * @operationId FeedbackController_Feedback
2695
2910
  * @summary Feedback request.
2696
2911
  * @request POST:/feedback
2912
+ * @secure
2697
2913
  * @response `200` OK
2698
2914
  */
2699
2915
 
@@ -2780,6 +2996,7 @@ let FiltersService = /*#__PURE__*/function (_Service) {
2780
2996
  * @operationId FiltersServiceController_Get
2781
2997
  * @summary Returns the filter by its id.
2782
2998
  * @request GET:/filters/{id}
2999
+ * @secure
2783
3000
  * @response `200` OK
2784
3001
  */
2785
3002
  function get(id) {
@@ -2793,6 +3010,7 @@ let FiltersService = /*#__PURE__*/function (_Service) {
2793
3010
  * @operationId FiltersServiceController_Update
2794
3011
  * @summary Replaces a filter and gives it a new id.
2795
3012
  * @request POST:/filters/{id}
3013
+ * @secure
2796
3014
  * @response `200` OK
2797
3015
  */
2798
3016
 
@@ -2809,6 +3027,7 @@ let FiltersService = /*#__PURE__*/function (_Service) {
2809
3027
  * @operationId FiltersServiceController_Create
2810
3028
  * @summary Creates a new filter.
2811
3029
  * @request POST:/filters
3030
+ * @secure
2812
3031
  * @response `200` OK
2813
3032
  */
2814
3033
 
@@ -2867,6 +3086,7 @@ let GeocodeService = /*#__PURE__*/function (_Service) {
2867
3086
  * @operationId GeocodeServiceController_Geocode
2868
3087
  * @summary Returns geocode geometry.
2869
3088
  * @request GET:/geocode/{providerName}
3089
+ * @secure
2870
3090
  * @response `200` OK
2871
3091
  */
2872
3092
  function geocode(_ref) {
@@ -2885,6 +3105,7 @@ let GeocodeService = /*#__PURE__*/function (_Service) {
2885
3105
  * @operationId GeocodeServiceController_GeocodeByPoint
2886
3106
  * @summary Returns geocode address from point geometry.
2887
3107
  * @request GET:/geocode/{providerName}/geocodeByPoint
3108
+ * @secure
2888
3109
  * @response `200` OK
2889
3110
  */
2890
3111
 
@@ -2906,6 +3127,7 @@ let GeocodeService = /*#__PURE__*/function (_Service) {
2906
3127
  * @operationId GeocodeServiceController_Suggest
2907
3128
  * @summary Returns geocode suggest.
2908
3129
  * @request GET:/geocode/{providerName}/suggest
3130
+ * @secure
2909
3131
  * @response `200` OK
2910
3132
  */
2911
3133
 
@@ -2983,6 +3205,7 @@ let IceRouterService = /*#__PURE__*/function (_Service) {
2983
3205
  * @operationId IceRouterController_StartTask
2984
3206
  * @summary Start route build between start and end points.
2985
3207
  * @request POST:/ice-router/tasks
3208
+ * @secure
2986
3209
  * @response `200` OK
2987
3210
  */
2988
3211
  function startTask(data) {
@@ -2996,6 +3219,7 @@ let IceRouterService = /*#__PURE__*/function (_Service) {
2996
3219
  * @operationId IceRouterController_GetResult
2997
3220
  * @summary Get task result.
2998
3221
  * @request GET:/ice-router/tasks/{id}
3222
+ * @secure
2999
3223
  * @response `200` OK
3000
3224
  */
3001
3225
 
@@ -3051,6 +3275,7 @@ let ImportService = /*#__PURE__*/function (_Service) {
3051
3275
  * @operationId ImportServiceController_GetDataSchema
3052
3276
  * @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.
3053
3277
  * @request GET:/import/dataSchema
3278
+ * @secure
3054
3279
  * @response `200` OK
3055
3280
  */
3056
3281
  function getDataSchema(query) {
@@ -3064,6 +3289,7 @@ let ImportService = /*#__PURE__*/function (_Service) {
3064
3289
  * @operationId ImportServiceController_GetFeaturesCount
3065
3290
  * @summary Returns the features count of the given file in temporary static storage.
3066
3291
  * @request POST:/import/count
3292
+ * @secure
3067
3293
  * @response `200` OK
3068
3294
  */
3069
3295
 
@@ -3080,6 +3306,7 @@ let ImportService = /*#__PURE__*/function (_Service) {
3080
3306
  * @operationId ImportServiceController_ReadPart
3081
3307
  * @summary Returns the features of the given file in temporary static storage.
3082
3308
  * @request GET:/import/read
3309
+ * @secure
3083
3310
  * @response `200` OK
3084
3311
  */
3085
3312
 
@@ -3096,6 +3323,7 @@ let ImportService = /*#__PURE__*/function (_Service) {
3096
3323
  * @operationId ImportServiceController_GetExternalWmsLayers
3097
3324
  * @summary Get list of external WMS layers.
3098
3325
  * @request GET:/import/wms
3326
+ * @secure
3099
3327
  * @response `200` OK
3100
3328
  */
3101
3329
 
@@ -3112,6 +3340,7 @@ let ImportService = /*#__PURE__*/function (_Service) {
3112
3340
  * @operationId ImportServiceController_GetExternalPbfLayers
3113
3341
  * @summary Get list of external PBF layers.
3114
3342
  * @request GET:/import/pbf
3343
+ * @secure
3115
3344
  * @response `200` OK
3116
3345
  */
3117
3346
 
@@ -3128,6 +3357,7 @@ let ImportService = /*#__PURE__*/function (_Service) {
3128
3357
  * @operationId ImportServiceController_GetExternalPbfFeatures
3129
3358
  * @summary Get features list in external PBF layer.
3130
3359
  * @request GET:/import/pbf/features
3360
+ * @secure
3131
3361
  * @response `200` OK
3132
3362
  */
3133
3363
 
@@ -3144,6 +3374,7 @@ let ImportService = /*#__PURE__*/function (_Service) {
3144
3374
  * @operationId ImportServiceController_GetExternalArcgisFSLayers
3145
3375
  * @summary Get list of external ArcGis FeatureServer layers.
3146
3376
  * @request GET:/import/arcgisfeatureservice
3377
+ * @secure
3147
3378
  * @response `200` OK
3148
3379
  */
3149
3380
 
@@ -3160,6 +3391,7 @@ let ImportService = /*#__PURE__*/function (_Service) {
3160
3391
  * @operationId ImportServiceController_GetExternalArcGisLayers
3161
3392
  * @summary Get list of external ArcGis MapServer layers.
3162
3393
  * @request GET:/import/arcgismapservice
3394
+ * @secure
3163
3395
  * @response `200` OK
3164
3396
  */
3165
3397
 
@@ -3176,6 +3408,7 @@ let ImportService = /*#__PURE__*/function (_Service) {
3176
3408
  * @operationId ImportServiceController_GetRasterAttributes
3177
3409
  * @summary Parse raster attributes from file name.
3178
3410
  * @request GET:/import/rasterAttributes
3411
+ * @secure
3179
3412
  * @response `200` OK
3180
3413
  */
3181
3414
 
@@ -3192,6 +3425,7 @@ let ImportService = /*#__PURE__*/function (_Service) {
3192
3425
  * @operationId ImportServiceController_GetRasterMeta
3193
3426
  * @summary Get raster meta data.
3194
3427
  * @request GET:/import/rasterMeta
3428
+ * @secure
3195
3429
  * @response `200` OK
3196
3430
  */
3197
3431
 
@@ -3265,6 +3499,7 @@ let LayersService = /*#__PURE__*/function (_Service) {
3265
3499
  * @operationId LayersController_GetBulkFeatures
3266
3500
  * @summary Returns list of the layer features.
3267
3501
  * @request POST:/bulk/layers/features/query
3502
+ * @secure
3268
3503
  * @response `200` OK
3269
3504
  */
3270
3505
  function getBulkFeatures(data) {
@@ -3278,6 +3513,7 @@ let LayersService = /*#__PURE__*/function (_Service) {
3278
3513
  * @operationId LayersController_GetBulkExtents
3279
3514
  * @summary Returns list of the layer extents with overall extent.
3280
3515
  * @request POST:/bulk/layers/extent
3516
+ * @secure
3281
3517
  * @response `200` OK
3282
3518
  */
3283
3519
 
@@ -3294,6 +3530,7 @@ let LayersService = /*#__PURE__*/function (_Service) {
3294
3530
  * @operationId LayersController_GetLayersList
3295
3531
  * @summary Returns list of the available layers.
3296
3532
  * @request GET:/layers
3533
+ * @secure
3297
3534
  * @response `200` OK
3298
3535
  */
3299
3536
 
@@ -3310,6 +3547,7 @@ let LayersService = /*#__PURE__*/function (_Service) {
3310
3547
  * @operationId LayersController_DeleteResources
3311
3548
  * @summary Bulk delete resources.
3312
3549
  * @request DELETE:/layers
3550
+ * @secure
3313
3551
  * @response `200` OK
3314
3552
  */
3315
3553
 
@@ -3326,6 +3564,7 @@ let LayersService = /*#__PURE__*/function (_Service) {
3326
3564
  * @operationId LayersController_GetLayerInfoAsync
3327
3565
  * @summary Returns the layer information.
3328
3566
  * @request GET:/layers/{name}
3567
+ * @secure
3329
3568
  * @response `200` OK
3330
3569
  */
3331
3570
 
@@ -3342,6 +3581,7 @@ let LayersService = /*#__PURE__*/function (_Service) {
3342
3581
  * @operationId LayersController_DeleteResource
3343
3582
  * @summary Deletes resource.
3344
3583
  * @request DELETE:/layers/{name}
3584
+ * @secure
3345
3585
  * @response `200` OK
3346
3586
  */
3347
3587
 
@@ -3358,6 +3598,7 @@ let LayersService = /*#__PURE__*/function (_Service) {
3358
3598
  * @operationId LayersController_GetLayersInfoAsync
3359
3599
  * @summary Returns the layers information.
3360
3600
  * @request GET:/layers/batchInfo
3601
+ * @secure
3361
3602
  * @response `200` OK
3362
3603
  */
3363
3604
 
@@ -3374,6 +3615,7 @@ let LayersService = /*#__PURE__*/function (_Service) {
3374
3615
  * @operationId LayersController_PublishMapboxService
3375
3616
  * @summary Creates new mapbox service.
3376
3617
  * @request POST:/layers#type=Mapbox
3618
+ * @secure
3377
3619
  * @response `default` Error
3378
3620
  */
3379
3621
 
@@ -3392,6 +3634,7 @@ let LayersService = /*#__PURE__*/function (_Service) {
3392
3634
  * @operationId LayersController_PublishProxyService
3393
3635
  * @summary Creates new Proxy Service.
3394
3636
  * @request POST:/layers#type=ProxyService
3637
+ * @secure
3395
3638
  * @response `default` Error
3396
3639
  */
3397
3640
 
@@ -3410,6 +3653,7 @@ let LayersService = /*#__PURE__*/function (_Service) {
3410
3653
  * @operationId LayersController_PublishRouteService
3411
3654
  * @summary Creates new Route Service.
3412
3655
  * @request POST:/layers#type=RouteService
3656
+ * @secure
3413
3657
  * @response `200` OK
3414
3658
  */
3415
3659
 
@@ -3428,6 +3672,7 @@ let LayersService = /*#__PURE__*/function (_Service) {
3428
3672
  * @operationId LayersController_PublishLinearService
3429
3673
  * @summary Creates new Linear Service.
3430
3674
  * @request POST:/layers#type=LinearService
3675
+ * @secure
3431
3676
  * @response `200` OK
3432
3677
  */
3433
3678
 
@@ -3446,6 +3691,7 @@ let LayersService = /*#__PURE__*/function (_Service) {
3446
3691
  * @operationId LayersController_PublishRemoteTileService
3447
3692
  * @summary Creates new Remote Tile Service.
3448
3693
  * @request POST:/layers#type=RemoteTileService
3694
+ * @secure
3449
3695
  * @response `default` Error
3450
3696
  */
3451
3697
 
@@ -3464,6 +3710,7 @@ let LayersService = /*#__PURE__*/function (_Service) {
3464
3710
  * @operationId LayersController_PublishQueryLayerService
3465
3711
  * @summary Creates new EQL-based Query Layer Service.
3466
3712
  * @request POST:/layers#type=QueryLayerService
3713
+ * @secure
3467
3714
  * @response `default` Error
3468
3715
  */
3469
3716
 
@@ -3482,6 +3729,7 @@ let LayersService = /*#__PURE__*/function (_Service) {
3482
3729
  * @operationId LayersController_PublishPostgresTileCatalogService
3483
3730
  * @summary Creates new Postgres Tile Catalog Service.
3484
3731
  * @request POST:/layers#type=PostgresTileLayerService
3732
+ * @secure
3485
3733
  * @response `default` Error
3486
3734
  */
3487
3735
 
@@ -3500,6 +3748,7 @@ let LayersService = /*#__PURE__*/function (_Service) {
3500
3748
  * @operationId LayersController_PublishPythonService
3501
3749
  * @summary Creates new python service.
3502
3750
  * @request POST:/layers#type=Python
3751
+ * @secure
3503
3752
  * @response `default` Error
3504
3753
  */
3505
3754
 
@@ -3518,6 +3767,7 @@ let LayersService = /*#__PURE__*/function (_Service) {
3518
3767
  * @operationId LayersController_UpdateMapboxService
3519
3768
  * @summary Update mapbox service.
3520
3769
  * @request PATCH:/layers/{name}#type=Mapbox
3770
+ * @secure
3521
3771
  * @response `200` OK
3522
3772
  */
3523
3773
 
@@ -3536,6 +3786,7 @@ let LayersService = /*#__PURE__*/function (_Service) {
3536
3786
  * @operationId LayersController_UpdatePythonService
3537
3787
  * @summary Update python service.
3538
3788
  * @request PATCH:/layers/{name}#type=Python
3789
+ * @secure
3539
3790
  * @response `200` OK
3540
3791
  */
3541
3792
 
@@ -3554,6 +3805,7 @@ let LayersService = /*#__PURE__*/function (_Service) {
3554
3805
  * @operationId LayersController_UpdateProxyService
3555
3806
  * @summary Update Proxy Service.
3556
3807
  * @request PATCH:/layers/{name}#type=ProxyService
3808
+ * @secure
3557
3809
  * @response `200` OK
3558
3810
  */
3559
3811
 
@@ -3572,6 +3824,7 @@ let LayersService = /*#__PURE__*/function (_Service) {
3572
3824
  * @operationId LayersController_UpdateTileCatalogService
3573
3825
  * @summary Update Postgres Tile Catalog Service.
3574
3826
  * @request PATCH:/layers/{name}#type=PostgresTileLayerService
3827
+ * @secure
3575
3828
  * @response `200` OK
3576
3829
  */
3577
3830
 
@@ -3590,6 +3843,7 @@ let LayersService = /*#__PURE__*/function (_Service) {
3590
3843
  * @operationId LayersController_UpdateRemoteTileService
3591
3844
  * @summary Update Remote Tile Service.
3592
3845
  * @request PATCH:/layers/{name}#type=RemoteTileService
3846
+ * @secure
3593
3847
  * @response `200` OK
3594
3848
  */
3595
3849
 
@@ -3608,6 +3862,7 @@ let LayersService = /*#__PURE__*/function (_Service) {
3608
3862
  * @operationId LayersController_UpdateQueryLayerService
3609
3863
  * @summary Update EQL-based Query Layer Service.
3610
3864
  * @request PATCH:/layers/{name}#type=QueryLayerService
3865
+ * @secure
3611
3866
  * @response `200` OK
3612
3867
  */
3613
3868
 
@@ -3626,6 +3881,7 @@ let LayersService = /*#__PURE__*/function (_Service) {
3626
3881
  * @operationId LayersController_ReloadServiceAsync
3627
3882
  * @summary Initialize a new instance of service by given name.
3628
3883
  * @request GET:/layers/{name}/reload
3884
+ * @secure
3629
3885
  * @response `default` Error
3630
3886
  */
3631
3887
 
@@ -3642,6 +3898,7 @@ let LayersService = /*#__PURE__*/function (_Service) {
3642
3898
  * @operationId LayersController_GetFeatures
3643
3899
  * @summary Returns list of the layer features.
3644
3900
  * @request POST:/layers/{name}/features/query
3901
+ * @secure
3645
3902
  * @response `200` OK
3646
3903
  */
3647
3904
 
@@ -3658,6 +3915,7 @@ let LayersService = /*#__PURE__*/function (_Service) {
3658
3915
  * @operationId LayersController_GetFeatures_1
3659
3916
  * @summary Returns list of the layer features.
3660
3917
  * @request GET:/layers/{name}/features
3918
+ * @secure
3661
3919
  * @response `200` OK
3662
3920
  */
3663
3921
 
@@ -3679,6 +3937,7 @@ let LayersService = /*#__PURE__*/function (_Service) {
3679
3937
  * @operationId LayersController_DeleteFeature
3680
3938
  * @summary Deletes feature by id.
3681
3939
  * @request DELETE:/layers/{name}/features
3940
+ * @secure
3682
3941
  * @response `200` OK
3683
3942
  */
3684
3943
 
@@ -3700,6 +3959,7 @@ let LayersService = /*#__PURE__*/function (_Service) {
3700
3959
  * @operationId LayersController_CreateFeatures
3701
3960
  * @summary Creates features list of type.SPCore.Connectors.Connectors.Base.Models.Features.FeatureDc.
3702
3961
  * @request POST:/layers/{name}/features
3962
+ * @secure
3703
3963
  * @response `200` OK
3704
3964
  */
3705
3965
 
@@ -3716,6 +3976,7 @@ let LayersService = /*#__PURE__*/function (_Service) {
3716
3976
  * @operationId LayersController_UpdateFeature
3717
3977
  * @summary Updates features list SPCore.Connectors.Connectors.Base.Models.Features.FeatureDc.
3718
3978
  * @request PATCH:/layers/{name}/features
3979
+ * @secure
3719
3980
  * @response `200` OK
3720
3981
  */
3721
3982
 
@@ -3732,6 +3993,7 @@ let LayersService = /*#__PURE__*/function (_Service) {
3732
3993
  * @operationId LayersController_GetByIdAsync
3733
3994
  * @summary Gets feature by id.
3734
3995
  * @request GET:/layers/{name}/features/{id}
3996
+ * @secure
3735
3997
  * @response `200` OK
3736
3998
  */
3737
3999
 
@@ -3754,6 +4016,7 @@ let LayersService = /*#__PURE__*/function (_Service) {
3754
4016
  * @operationId LayersController_Unite
3755
4017
  * @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.
3756
4018
  * @request POST:/layers/{name}/features/{id}/unite
4019
+ * @secure
3757
4020
  * @response `200` OK
3758
4021
  */
3759
4022
 
@@ -3776,6 +4039,7 @@ let LayersService = /*#__PURE__*/function (_Service) {
3776
4039
  * @operationId LayersController_Subtract
3777
4040
  * @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.
3778
4041
  * @request POST:/layers/{name}/features/{id}/subtract
4042
+ * @secure
3779
4043
  * @response `200` OK
3780
4044
  */
3781
4045
 
@@ -3798,6 +4062,7 @@ let LayersService = /*#__PURE__*/function (_Service) {
3798
4062
  * @operationId LayersController_GetTilesLayerImage
3799
4063
  * @summary Render tile with input indexes.
3800
4064
  * @request GET:/layers/{name}/tile/{z}/{x}/{y}
4065
+ * @secure
3801
4066
  * @response `200` OK
3802
4067
  */
3803
4068
 
@@ -3822,6 +4087,7 @@ let LayersService = /*#__PURE__*/function (_Service) {
3822
4087
  * @operationId LayersController_GetTilesLayerImage_1
3823
4088
  * @summary Render tile with input indexes.
3824
4089
  * @request GET:/layers/{name}/tile/{z}/{x}/{y}.{format}
4090
+ * @secure
3825
4091
  * @response `200` OK
3826
4092
  */
3827
4093
 
@@ -3847,6 +4113,7 @@ let LayersService = /*#__PURE__*/function (_Service) {
3847
4113
  * @operationId LayersController_GetTilesLayerImageWithFormatAndDpi
3848
4114
  * @summary Render tile with input indexes.
3849
4115
  * @request GET:/layers/{name}/tile/{z}/{x}/{y}@{dpi}x.{format}
4116
+ * @secure
3850
4117
  * @response `200` OK
3851
4118
  */
3852
4119
 
@@ -3873,6 +4140,7 @@ let LayersService = /*#__PURE__*/function (_Service) {
3873
4140
  * @operationId LayersController_GetLayerImage
3874
4141
  * @summary Renders the layer to the image of the requested size.
3875
4142
  * @request GET:/layers/{name}/export
4143
+ * @secure
3876
4144
  * @response `200` OK
3877
4145
  */
3878
4146
 
@@ -3894,6 +4162,7 @@ let LayersService = /*#__PURE__*/function (_Service) {
3894
4162
  * @operationId LayersController_GetLayerExtent
3895
4163
  * @summary Returns the extent of the layer.
3896
4164
  * @request GET:/layers/{name}/extent
4165
+ * @secure
3897
4166
  * @response `200` OK
3898
4167
  */
3899
4168
 
@@ -3915,6 +4184,7 @@ let LayersService = /*#__PURE__*/function (_Service) {
3915
4184
  * @operationId LayersController_DeleteFeatures
3916
4185
  * @summary Delete a list of features by given ids. Example: ids=1,2,3.
3917
4186
  * @request DELETE:/layers/{name}/features/deleteByIds
4187
+ * @secure
3918
4188
  * @response `200` OK
3919
4189
  */
3920
4190
 
@@ -3936,6 +4206,7 @@ let LayersService = /*#__PURE__*/function (_Service) {
3936
4206
  * @operationId LayersController_DeleteByCondition
3937
4207
  * @summary Delete a list of features by condition with exclude given ids.
3938
4208
  * @request DELETE:/layers/{name}/features/deleteByCondition
4209
+ * @secure
3939
4210
  * @response `200` OK
3940
4211
  */
3941
4212
 
@@ -3957,6 +4228,7 @@ let LayersService = /*#__PURE__*/function (_Service) {
3957
4228
  * @operationId LayersController_Classify
3958
4229
  * @summary Returns the classified attribute values that correspond to the given number of classes.
3959
4230
  * @request GET:/layers/{name}/classify
4231
+ * @secure
3960
4232
  * @response `200` OK
3961
4233
  */
3962
4234
 
@@ -3978,6 +4250,7 @@ let LayersService = /*#__PURE__*/function (_Service) {
3978
4250
  * @operationId LayersController_Distincts
3979
4251
  * @summary Returns distinct attribute values and their count.
3980
4252
  * @request GET:/layers/{name}/distincts
4253
+ * @secure
3981
4254
  * @response `200` OK
3982
4255
  */
3983
4256
 
@@ -3999,6 +4272,7 @@ let LayersService = /*#__PURE__*/function (_Service) {
3999
4272
  * @operationId LayersController_AggregateAttribute
4000
4273
  * @summary Returns aggregated value of given attribute aggregationAttributeName within a given groups groups.
4001
4274
  * @request GET:/layers/{name}/aggregate-values
4275
+ * @secure
4002
4276
  * @response `200` OK
4003
4277
  */
4004
4278
 
@@ -4020,6 +4294,7 @@ let LayersService = /*#__PURE__*/function (_Service) {
4020
4294
  * @operationId LayersController_GetFilteredFeaturesCount
4021
4295
  * @summary Get features count according layer filter of the given name.
4022
4296
  * @request GET:/layers/{name}/features/count
4297
+ * @secure
4023
4298
  * @response `200` OK
4024
4299
  */
4025
4300
 
@@ -4041,6 +4316,7 @@ let LayersService = /*#__PURE__*/function (_Service) {
4041
4316
  * @operationId LayersController_GetFilteredFeaturesCount_1
4042
4317
  * @summary Get features count according layer filter of the given name.
4043
4318
  * @request POST:/layers/{name}/features/count
4319
+ * @secure
4044
4320
  * @response `200` OK
4045
4321
  */
4046
4322
 
@@ -4057,6 +4333,7 @@ let LayersService = /*#__PURE__*/function (_Service) {
4057
4333
  * @operationId LayersController_EditAttributes
4058
4334
  * @summary Edit attributes with editInfo.
4059
4335
  * @request POST:/layers/{name}/features/edit-attributes
4336
+ * @secure
4060
4337
  * @response `200` OK
4061
4338
  */
4062
4339
 
@@ -4073,6 +4350,7 @@ let LayersService = /*#__PURE__*/function (_Service) {
4073
4350
  * @operationId LayersController_ValidateExpression
4074
4351
  * @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.
4075
4352
  * @request GET:/layers/{layerName}/validateExpression
4353
+ * @secure
4076
4354
  * @response `200` OK
4077
4355
  */
4078
4356
 
@@ -4094,6 +4372,7 @@ let LayersService = /*#__PURE__*/function (_Service) {
4094
4372
  * @operationId LayersController_GetRasterMeta
4095
4373
  * @summary Get raster metadata.
4096
4374
  * @request GET:/layers/{name}/{id}/metadata
4375
+ * @secure
4097
4376
  * @response `200` OK
4098
4377
  */
4099
4378
 
@@ -4116,6 +4395,7 @@ let LayersService = /*#__PURE__*/function (_Service) {
4116
4395
  * @operationId LayersController_CreateRoute
4117
4396
  * @summary Create new route (feature) from source features.
4118
4397
  * @request POST:/layers/{name}/createRoute
4398
+ * @secure
4119
4399
  * @response `200` OK
4120
4400
  */
4121
4401
 
@@ -4132,6 +4412,7 @@ let LayersService = /*#__PURE__*/function (_Service) {
4132
4412
  * @operationId LayersController_ApplyStyle
4133
4413
  * @summary Create data layout and image layout for given style.
4134
4414
  * @request PUT:/layers/{name}/style
4415
+ * @secure
4135
4416
  * @response `200` OK
4136
4417
  */
4137
4418
 
@@ -4148,6 +4429,7 @@ let LayersService = /*#__PURE__*/function (_Service) {
4148
4429
  * @operationId LayersController_GetStyle
4149
4430
  * @summary Get style of the given layer.
4150
4431
  * @request GET:/layers/{name}/style
4432
+ * @secure
4151
4433
  * @response `200` OK
4152
4434
  */
4153
4435
 
@@ -4164,6 +4446,7 @@ let LayersService = /*#__PURE__*/function (_Service) {
4164
4446
  * @operationId LayersController_GetImageLayout
4165
4447
  * @summary Get date layout.
4166
4448
  * @request GET:/layers/{name}/style/sprite.png
4449
+ * @secure
4167
4450
  * @response `200` OK
4168
4451
  */
4169
4452
 
@@ -4180,6 +4463,7 @@ let LayersService = /*#__PURE__*/function (_Service) {
4180
4463
  * @operationId LayersController_GetDataLayout
4181
4464
  * @summary Get image layout.
4182
4465
  * @request GET:/layers/{name}/style/sprite.json
4466
+ * @secure
4183
4467
  * @response `200` OK
4184
4468
  */
4185
4469
 
@@ -4196,6 +4480,7 @@ let LayersService = /*#__PURE__*/function (_Service) {
4196
4480
  * @operationId LayersController_IsExistsAsync
4197
4481
  * @summary Check is resource exists.
4198
4482
  * @request GET:/layers/{name}/exists
4483
+ * @secure
4199
4484
  * @response `200` OK
4200
4485
  */
4201
4486
 
@@ -4212,6 +4497,7 @@ let LayersService = /*#__PURE__*/function (_Service) {
4212
4497
  * @operationId LayersController_GetResourceDependencies
4213
4498
  * @summary Get resource dependencies.
4214
4499
  * @request GET:/layers/{name}/dependencies
4500
+ * @secure
4215
4501
  * @response `200` OK
4216
4502
  */
4217
4503
 
@@ -4228,6 +4514,7 @@ let LayersService = /*#__PURE__*/function (_Service) {
4228
4514
  * @operationId LayersController_GetResourceReferences
4229
4515
  * @summary Returns the resource dependency information.
4230
4516
  * @request GET:/layers/{name}/references
4517
+ * @secure
4231
4518
  * @response `200` OK
4232
4519
  */
4233
4520
 
@@ -4546,6 +4833,7 @@ let NotificationService = /*#__PURE__*/function (_Service) {
4546
4833
  * @operationId NotificationServiceController_GetSubscriptionList
4547
4834
  * @summary Returns a list of notification tags that the current session is subscribed to.
4548
4835
  * @request GET:/notifications/subscribes
4836
+ * @secure
4549
4837
  * @response `200` OK
4550
4838
  */
4551
4839
  function getSubscriptionList() {
@@ -4559,6 +4847,7 @@ let NotificationService = /*#__PURE__*/function (_Service) {
4559
4847
  * @operationId NotificationServiceController_SubscribeOperation
4560
4848
  * @summary Subscribe current session by subscribe tag. A subscribed session will receive all notifications added for the specified tag.
4561
4849
  * @request POST:/notifications/subscribes
4850
+ * @secure
4562
4851
  * @response `200` OK
4563
4852
  */
4564
4853
 
@@ -4575,6 +4864,7 @@ let NotificationService = /*#__PURE__*/function (_Service) {
4575
4864
  * @operationId NotificationServiceController_UnsubscribeOperation
4576
4865
  * @summary Unsubscribe from receiving notifications that come for the specified tag.
4577
4866
  * @request DELETE:/notifications/subscribes
4867
+ * @secure
4578
4868
  * @response `200` OK
4579
4869
  */
4580
4870
 
@@ -4591,6 +4881,7 @@ let NotificationService = /*#__PURE__*/function (_Service) {
4591
4881
  * @operationId NotificationServiceController_SubscribeListOperation
4592
4882
  * @summary Subscribe current session by subscribe tags. A subscribed session will receive all notifications added for the specified tags.
4593
4883
  * @request POST:/notifications/subscribe-list
4884
+ * @secure
4594
4885
  * @response `200` OK
4595
4886
  */
4596
4887
 
@@ -4607,6 +4898,7 @@ let NotificationService = /*#__PURE__*/function (_Service) {
4607
4898
  * @operationId NotificationServiceController_UnsubscribeListOperation
4608
4899
  * @summary Unsubscribe from receiving notifications that come for the specified tags.
4609
4900
  * @request POST:/notifications/unsubscribe-list
4901
+ * @secure
4610
4902
  * @response `200` OK
4611
4903
  */
4612
4904
 
@@ -4854,6 +5146,7 @@ let PrintService = /*#__PURE__*/function (_Service) {
4854
5146
  * @operationId PrintController_Print
4855
5147
  * @summary Print map with template.
4856
5148
  * @request POST:/print/print
5149
+ * @secure
4857
5150
  * @response `200` OK
4858
5151
  */
4859
5152
  function print(data) {
@@ -4867,6 +5160,7 @@ let PrintService = /*#__PURE__*/function (_Service) {
4867
5160
  * @operationId PrintController_PrintToHtml
4868
5161
  * @summary Print map with template to html string.
4869
5162
  * @request POST:/print/printHtml
5163
+ * @secure
4870
5164
  * @response `200` OK
4871
5165
  */
4872
5166
 
@@ -4883,6 +5177,7 @@ let PrintService = /*#__PURE__*/function (_Service) {
4883
5177
  * @operationId PrintController_UploadTemplate
4884
5178
  * @summary Upload template on server.
4885
5179
  * @request POST:/print/templates
5180
+ * @secure
4886
5181
  * @response `200` OK
4887
5182
  */
4888
5183
 
@@ -4899,6 +5194,7 @@ let PrintService = /*#__PURE__*/function (_Service) {
4899
5194
  * @operationId PrintController_GetTemplates
4900
5195
  * @summary Get all templates from server.
4901
5196
  * @request GET:/print/templates
5197
+ * @secure
4902
5198
  * @response `200` OK
4903
5199
  */
4904
5200
 
@@ -4915,6 +5211,7 @@ let PrintService = /*#__PURE__*/function (_Service) {
4915
5211
  * @operationId PrintController_DeleteTemplate
4916
5212
  * @summary Delete template from server.
4917
5213
  * @request DELETE:/print/templates/{name}
5214
+ * @secure
4918
5215
  * @response `200` OK
4919
5216
  */
4920
5217
 
@@ -4931,6 +5228,7 @@ let PrintService = /*#__PURE__*/function (_Service) {
4931
5228
  * @operationId PrintController_GetTemplate
4932
5229
  * @summary Get template from server.
4933
5230
  * @request GET:/print/templates/{name}
5231
+ * @secure
4934
5232
  * @response `200` OK
4935
5233
  */
4936
5234
 
@@ -4987,6 +5285,7 @@ let ProjectsService = /*#__PURE__*/function (_Service) {
4987
5285
  * @operationId ProjectsController_GetProjectsList
4988
5286
  * @summary Returns the list of projects.
4989
5287
  * @request GET:/projects
5288
+ * @secure
4990
5289
  * @response `200` OK
4991
5290
  */
4992
5291
  function getProjectsList(query) {
@@ -5000,6 +5299,7 @@ let ProjectsService = /*#__PURE__*/function (_Service) {
5000
5299
  * @operationId ProjectsController_CreateProject
5001
5300
  * @summary Creates a new project.
5002
5301
  * @request POST:/projects
5302
+ * @secure
5003
5303
  * @response `200` OK
5004
5304
  */
5005
5305
 
@@ -5016,6 +5316,7 @@ let ProjectsService = /*#__PURE__*/function (_Service) {
5016
5316
  * @operationId ProjectsController_DeleteResources
5017
5317
  * @summary Bulk delete resources.
5018
5318
  * @request DELETE:/projects
5319
+ * @secure
5019
5320
  * @response `200` OK
5020
5321
  */
5021
5322
 
@@ -5032,6 +5333,7 @@ let ProjectsService = /*#__PURE__*/function (_Service) {
5032
5333
  * @operationId ProjectsController_UpdateProject
5033
5334
  * @summary Update table.
5034
5335
  * @request PATCH:/projects/{name}
5336
+ * @secure
5035
5337
  * @response `200` OK
5036
5338
  */
5037
5339
 
@@ -5048,6 +5350,7 @@ let ProjectsService = /*#__PURE__*/function (_Service) {
5048
5350
  * @operationId ProjectsController_GetProjectInfo
5049
5351
  * @summary Returns the project and it's content information.
5050
5352
  * @request GET:/projects/{name}
5353
+ * @secure
5051
5354
  * @response `200` OK
5052
5355
  */
5053
5356
 
@@ -5064,6 +5367,7 @@ let ProjectsService = /*#__PURE__*/function (_Service) {
5064
5367
  * @operationId ProjectsController_DeleteResource
5065
5368
  * @summary Deletes resource.
5066
5369
  * @request DELETE:/projects/{name}
5370
+ * @secure
5067
5371
  * @response `200` OK
5068
5372
  */
5069
5373
 
@@ -5080,6 +5384,7 @@ let ProjectsService = /*#__PURE__*/function (_Service) {
5080
5384
  * @operationId ProjectsController_GetProjectsInfoAsync
5081
5385
  * @summary Returns the projects information.
5082
5386
  * @request GET:/projects/batchInfo
5387
+ * @secure
5083
5388
  * @response `200` OK
5084
5389
  */
5085
5390
 
@@ -5096,6 +5401,7 @@ let ProjectsService = /*#__PURE__*/function (_Service) {
5096
5401
  * @operationId ProjectsController_GetProjectEnvelope
5097
5402
  * @summary Get project extent.
5098
5403
  * @request GET:/projects/{name}/extent
5404
+ * @secure
5099
5405
  * @response `200` OK
5100
5406
  */
5101
5407
 
@@ -5117,6 +5423,7 @@ let ProjectsService = /*#__PURE__*/function (_Service) {
5117
5423
  * @operationId ProjectsController_GetProjectLayersExtendedInfo
5118
5424
  * @summary Gets extended project info with layers info.
5119
5425
  * @request GET:/projects/{name}/extended-info
5426
+ * @secure
5120
5427
  * @response `200` OK
5121
5428
  */
5122
5429
 
@@ -5133,6 +5440,7 @@ let ProjectsService = /*#__PURE__*/function (_Service) {
5133
5440
  * @operationId ProjectsController_GetTilesLayerImage
5134
5441
  * @summary Render tile.
5135
5442
  * @request GET:/projects/{name}/tile/{z}/{x}/{y}
5443
+ * @secure
5136
5444
  * @response `200` OK
5137
5445
  */
5138
5446
 
@@ -5149,6 +5457,7 @@ let ProjectsService = /*#__PURE__*/function (_Service) {
5149
5457
  * @operationId ProjectsController_GetTilesLayerImageWithFormat
5150
5458
  * @summary Render tile.
5151
5459
  * @request GET:/projects/{name}/tile/{z}/{x}/{y}.{format}
5460
+ * @secure
5152
5461
  * @response `200` OK
5153
5462
  */
5154
5463
 
@@ -5165,6 +5474,7 @@ let ProjectsService = /*#__PURE__*/function (_Service) {
5165
5474
  * @operationId ProjectsController_GetTilesLayerImageWithFormatAndDpi
5166
5475
  * @summary Render tile.
5167
5476
  * @request GET:/projects/{name}/tile/{z}/{x}/{y}@{dpi}x.{format}
5477
+ * @secure
5168
5478
  * @response `200` OK
5169
5479
  */
5170
5480
 
@@ -5181,6 +5491,7 @@ let ProjectsService = /*#__PURE__*/function (_Service) {
5181
5491
  * @operationId ProjectsController_IsExistsAsync
5182
5492
  * @summary Check is resource exists.
5183
5493
  * @request GET:/projects/{name}/exists
5494
+ * @secure
5184
5495
  * @response `200` OK
5185
5496
  */
5186
5497
 
@@ -5197,6 +5508,7 @@ let ProjectsService = /*#__PURE__*/function (_Service) {
5197
5508
  * @operationId ProjectsController_GetResourceDependencies
5198
5509
  * @summary Get resource dependencies.
5199
5510
  * @request GET:/projects/{name}/dependencies
5511
+ * @secure
5200
5512
  * @response `200` OK
5201
5513
  */
5202
5514
 
@@ -5213,6 +5525,7 @@ let ProjectsService = /*#__PURE__*/function (_Service) {
5213
5525
  * @operationId ProjectsController_GetResourceReferences
5214
5526
  * @summary Returns the resource dependency information.
5215
5527
  * @request GET:/projects/{name}/references
5528
+ * @secure
5216
5529
  * @response `200` OK
5217
5530
  */
5218
5531
 
@@ -5311,6 +5624,7 @@ let RemoteTaskManagerService = /*#__PURE__*/function (_Service) {
5311
5624
  * @operationId RemoteTaskManagerController_Get
5312
5625
  * @summary Shows SubTask in Task.
5313
5626
  * @request GET:/scheduler/task/{id}/subtasks
5627
+ * @secure
5314
5628
  * @response `200` OK
5315
5629
  */
5316
5630
  function get(id) {
@@ -5324,6 +5638,7 @@ let RemoteTaskManagerService = /*#__PURE__*/function (_Service) {
5324
5638
  * @operationId RemoteTaskManagerController_Stop
5325
5639
  * @summary Stop the task.
5326
5640
  * @request POST:/scheduler/task/{id}/stop
5641
+ * @secure
5327
5642
  * @response `200` OK
5328
5643
  */
5329
5644
 
@@ -5340,6 +5655,7 @@ let RemoteTaskManagerService = /*#__PURE__*/function (_Service) {
5340
5655
  * @operationId RemoteTaskManagerController_CreateTaskPrototype
5341
5656
  * @summary Creates TaskPrototype.
5342
5657
  * @request POST:/scheduler
5658
+ * @secure
5343
5659
  * @response `200` OK
5344
5660
  */
5345
5661
 
@@ -5356,6 +5672,7 @@ let RemoteTaskManagerService = /*#__PURE__*/function (_Service) {
5356
5672
  * @operationId RemoteTaskManagerController_GetTaskPrototypes
5357
5673
  * @summary Show TaskPrototypes for user.
5358
5674
  * @request GET:/scheduler
5675
+ * @secure
5359
5676
  * @response `200` OK
5360
5677
  */
5361
5678
 
@@ -5372,6 +5689,7 @@ let RemoteTaskManagerService = /*#__PURE__*/function (_Service) {
5372
5689
  * @operationId RemoteTaskManagerController_UpdateTaskPrototype
5373
5690
  * @summary Updates task prototype.
5374
5691
  * @request PUT:/scheduler/{id}
5692
+ * @secure
5375
5693
  * @response `200` OK
5376
5694
  */
5377
5695
 
@@ -5388,6 +5706,7 @@ let RemoteTaskManagerService = /*#__PURE__*/function (_Service) {
5388
5706
  * @operationId RemoteTaskManagerController_Delete
5389
5707
  * @summary Delete task prototype.
5390
5708
  * @request DELETE:/scheduler/{id}
5709
+ * @secure
5391
5710
  * @response `200` OK
5392
5711
  */
5393
5712
 
@@ -5404,6 +5723,7 @@ let RemoteTaskManagerService = /*#__PURE__*/function (_Service) {
5404
5723
  * @operationId RemoteTaskManagerController_SetEnable
5405
5724
  * @summary Enables task prototype.
5406
5725
  * @request POST:/scheduler/{id}/enable/{enable}
5726
+ * @secure
5407
5727
  * @response `200` OK
5408
5728
  */
5409
5729
 
@@ -5420,6 +5740,7 @@ let RemoteTaskManagerService = /*#__PURE__*/function (_Service) {
5420
5740
  * @operationId RemoteTaskManagerController_GetTasksForPrototype
5421
5741
  * @summary Shows Tasks that created for TaskPrototype.
5422
5742
  * @request GET:/scheduler/{id}/tasks
5743
+ * @secure
5423
5744
  * @response `200` OK
5424
5745
  */
5425
5746
 
@@ -5441,6 +5762,7 @@ let RemoteTaskManagerService = /*#__PURE__*/function (_Service) {
5441
5762
  * @operationId RemoteTaskManagerController_StartTask
5442
5763
  * @summary Starts new Task for TaskPrototype with task id definition.
5443
5764
  * @request POST:/scheduler/{id}/start/{taskId}
5765
+ * @secure
5444
5766
  * @response `200` OK
5445
5767
  */
5446
5768
 
@@ -5457,6 +5779,7 @@ let RemoteTaskManagerService = /*#__PURE__*/function (_Service) {
5457
5779
  * @operationId RemoteTaskManagerController_StartTask_1
5458
5780
  * @summary Starts new Task for TaskPrototype .
5459
5781
  * @request POST:/scheduler/{id}/start
5782
+ * @secure
5460
5783
  * @response `200` OK
5461
5784
  */
5462
5785
 
@@ -5473,6 +5796,7 @@ let RemoteTaskManagerService = /*#__PURE__*/function (_Service) {
5473
5796
  * @operationId RemoteTaskManagerController_GetTaskResource
5474
5797
  * @summary Shows SubTask in Task.
5475
5798
  * @request GET:/scheduler/taskresource/{id}
5799
+ * @secure
5476
5800
  * @response `200` OK
5477
5801
  */
5478
5802
 
@@ -5494,6 +5818,7 @@ let RemoteTaskManagerService = /*#__PURE__*/function (_Service) {
5494
5818
  * @operationId RemoteTaskManagerController_CreateTaskResource
5495
5819
  * @summary Create task resource.
5496
5820
  * @request POST:/scheduler/taskresource
5821
+ * @secure
5497
5822
  * @response `200` OK
5498
5823
  */
5499
5824
 
@@ -5510,6 +5835,7 @@ let RemoteTaskManagerService = /*#__PURE__*/function (_Service) {
5510
5835
  * @operationId RemoteTaskManagerController_UpdatePythonTaskResource
5511
5836
  * @summary Update python task resource.
5512
5837
  * @request PATCH:/scheduler/taskresource/{id}#type=PythonTask
5838
+ * @secure
5513
5839
  * @response `200` OK
5514
5840
  */
5515
5841
 
@@ -5528,6 +5854,7 @@ let RemoteTaskManagerService = /*#__PURE__*/function (_Service) {
5528
5854
  * @operationId RemoteTaskManagerController_UpdateSpTaskResource
5529
5855
  * @summary Update sp task resource.
5530
5856
  * @request PATCH:/scheduler/taskresource/{id}#type=SpTask
5857
+ * @secure
5531
5858
  * @response `200` OK
5532
5859
  */
5533
5860
 
@@ -5546,6 +5873,7 @@ let RemoteTaskManagerService = /*#__PURE__*/function (_Service) {
5546
5873
  * @operationId RemoteTaskManagerController_Get_1
5547
5874
  * @summary Shows active workers.
5548
5875
  * @request GET:/scheduler/worker
5876
+ * @secure
5549
5877
  * @response `200` OK
5550
5878
  */
5551
5879
 
@@ -5562,6 +5890,7 @@ let RemoteTaskManagerService = /*#__PURE__*/function (_Service) {
5562
5890
  * @operationId RemoteTaskManagerController_Post
5563
5891
  * @summary Run method by HttpPost.
5564
5892
  * @request POST:/scheduler/worker
5893
+ * @secure
5565
5894
  * @response `200` OK
5566
5895
  */
5567
5896
 
@@ -5578,6 +5907,7 @@ let RemoteTaskManagerService = /*#__PURE__*/function (_Service) {
5578
5907
  * @operationId RemoteTaskManagerController_GetWorker
5579
5908
  * @summary Get worker info by type.
5580
5909
  * @request GET:/scheduler/worker/{type}
5910
+ * @secure
5581
5911
  * @response `200` OK
5582
5912
  */
5583
5913
 
@@ -5605,58 +5935,6 @@ let RemoteTaskManager = /*#__PURE__*/function (_RemoteTaskManagerSer) {
5605
5935
  return _createClass(RemoteTaskManager);
5606
5936
  }(RemoteTaskManagerService);
5607
5937
 
5608
- /**
5609
- * @title Spatial Processing Core API
5610
- * @version 1.5.1.0
5611
- * @baseUrl /sp
5612
- */
5613
-
5614
- let ResourceCatalogService = /*#__PURE__*/function (_Service) {
5615
- _inherits(ResourceCatalogService, _Service);
5616
-
5617
- var _super = /*#__PURE__*/_createSuper(ResourceCatalogService);
5618
-
5619
- function ResourceCatalogService() {
5620
- _classCallCheck(this, ResourceCatalogService);
5621
-
5622
- return _super.apply(this, arguments);
5623
- }
5624
-
5625
- _createClass(ResourceCatalogService, [{
5626
- key: "copyResources",
5627
- value:
5628
- /**
5629
- * No description
5630
- *
5631
- * @tags ResourceCatalog
5632
- * @name CopyResources
5633
- * @operationId ResourceCatalogController_CopyResources
5634
- * @summary Copy a set of resources.
5635
- * @request POST:/resources/copy
5636
- * @response `200` OK
5637
- */
5638
- function copyResources(data) {
5639
- return this.http.post("/resources/copy", data).json();
5640
- }
5641
- }]);
5642
-
5643
- return ResourceCatalogService;
5644
- }(Service);
5645
-
5646
- let ResourceCatalog = /*#__PURE__*/function (_ResourceCatalogServi) {
5647
- _inherits(ResourceCatalog, _ResourceCatalogServi);
5648
-
5649
- var _super = /*#__PURE__*/_createSuper(ResourceCatalog);
5650
-
5651
- function ResourceCatalog() {
5652
- _classCallCheck(this, ResourceCatalog);
5653
-
5654
- return _super.apply(this, arguments);
5655
- }
5656
-
5657
- return _createClass(ResourceCatalog);
5658
- }(ResourceCatalogService);
5659
-
5660
5938
  var DependencyType;
5661
5939
 
5662
5940
  (function (DependencyType) {
@@ -5783,6 +6061,7 @@ let SecurityService = /*#__PURE__*/function (_Service) {
5783
6061
  * @operationId SecurityServiceController_SetPolicies
5784
6062
  * @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.
5785
6063
  * @request POST:/bulk/security/policies
6064
+ * @secure
5786
6065
  * @response `200` OK
5787
6066
  */
5788
6067
  function setPolicies(data) {
@@ -5796,6 +6075,7 @@ let SecurityService = /*#__PURE__*/function (_Service) {
5796
6075
  * @operationId SecurityServiceController_FindUserByNameByRoles
5797
6076
  * @summary Get users list with given roles list.
5798
6077
  * @request GET:/security/findUsersWithRoles
6078
+ * @secure
5799
6079
  * @response `200` OK
5800
6080
  */
5801
6081
 
@@ -5812,6 +6092,7 @@ let SecurityService = /*#__PURE__*/function (_Service) {
5812
6092
  * @operationId SecurityServiceController_GetUsersAndRoles
5813
6093
  * @summary Get users and roles list by filter.
5814
6094
  * @request GET:/security/usersandroles
6095
+ * @secure
5815
6096
  * @response `200` OK
5816
6097
  */
5817
6098
 
@@ -5828,6 +6109,7 @@ let SecurityService = /*#__PURE__*/function (_Service) {
5828
6109
  * @operationId SecurityServiceController_FindUserByName
5829
6110
  * @summary Returns the list of users found by username.
5830
6111
  * @request GET:/security/users
6112
+ * @secure
5831
6113
  * @response `200` OK
5832
6114
  */
5833
6115
 
@@ -5844,6 +6126,7 @@ let SecurityService = /*#__PURE__*/function (_Service) {
5844
6126
  * @operationId SecurityServiceController_GetPolicyList
5845
6127
  * @summary Returns the list of server authorization policies of the given type.
5846
6128
  * @request GET:/security/policies
6129
+ * @secure
5847
6130
  * @response `200` OK
5848
6131
  */
5849
6132
 
@@ -5860,6 +6143,7 @@ let SecurityService = /*#__PURE__*/function (_Service) {
5860
6143
  * @operationId SecurityServiceController_RemovePolicy
5861
6144
  * @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.
5862
6145
  * @request DELETE:/security/policies
6146
+ * @secure
5863
6147
  * @response `200` OK
5864
6148
  */
5865
6149
 
@@ -5876,6 +6160,7 @@ let SecurityService = /*#__PURE__*/function (_Service) {
5876
6160
  * @operationId SecurityServiceController_SetPolicy
5877
6161
  * @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.
5878
6162
  * @request POST:/security/policies
6163
+ * @secure
5879
6164
  * @response `200` OK
5880
6165
  */
5881
6166
 
@@ -5891,13 +6176,31 @@ let SecurityService = /*#__PURE__*/function (_Service) {
5891
6176
  * @name OldCheckLimits
5892
6177
  * @operationId SecurityServiceController_OldCheckLimits
5893
6178
  * @summary Get limits of workspace.
5894
- * @request GET:/security/checkLimits/{userName}
6179
+ * @request GET:/security/checkLimits
6180
+ * @secure
5895
6181
  * @response `200` OK
5896
6182
  */
5897
6183
 
5898
6184
  }, {
5899
6185
  key: "oldCheckLimits",
5900
- value: function oldCheckLimits(userName) {
6186
+ value: function oldCheckLimits() {
6187
+ return this.http.get("/security/checkLimits").json();
6188
+ }
6189
+ /**
6190
+ * No description
6191
+ *
6192
+ * @tags SecurityService
6193
+ * @name OldCheckLimits1
6194
+ * @operationId SecurityServiceController_OldCheckLimits_1
6195
+ * @summary Get limits of workspace.
6196
+ * @request GET:/security/checkLimits/{userName}
6197
+ * @secure
6198
+ * @response `200` OK
6199
+ */
6200
+
6201
+ }, {
6202
+ key: "oldCheckLimits1",
6203
+ value: function oldCheckLimits1(userName) {
5901
6204
  return this.http.get("/security/checkLimits/" + userName).json();
5902
6205
  }
5903
6206
  /**
@@ -5907,13 +6210,31 @@ let SecurityService = /*#__PURE__*/function (_Service) {
5907
6210
  * @name CheckLimitsForUser
5908
6211
  * @operationId SecurityServiceController_CheckLimitsForUser
5909
6212
  * @summary Get limits of workspace.
5910
- * @request GET:/security/limits/user/{userName}
6213
+ * @request GET:/security/limits/user
6214
+ * @secure
5911
6215
  * @response `200` OK
5912
6216
  */
5913
6217
 
5914
6218
  }, {
5915
6219
  key: "checkLimitsForUser",
5916
- value: function checkLimitsForUser(userName) {
6220
+ value: function checkLimitsForUser() {
6221
+ return this.http.get("/security/limits/user").json();
6222
+ }
6223
+ /**
6224
+ * No description
6225
+ *
6226
+ * @tags SecurityService
6227
+ * @name CheckLimitsForUser1
6228
+ * @operationId SecurityServiceController_CheckLimitsForUser_1
6229
+ * @summary Get limits of workspace.
6230
+ * @request GET:/security/limits/user/{userName}
6231
+ * @secure
6232
+ * @response `200` OK
6233
+ */
6234
+
6235
+ }, {
6236
+ key: "checkLimitsForUser1",
6237
+ value: function checkLimitsForUser1(userName) {
5917
6238
  return this.http.get("/security/limits/user/" + userName).json();
5918
6239
  }
5919
6240
  /**
@@ -5924,6 +6245,7 @@ let SecurityService = /*#__PURE__*/function (_Service) {
5924
6245
  * @operationId SecurityServiceController_CheckLimitsForRole
5925
6246
  * @summary Get limits of workspace.
5926
6247
  * @request GET:/security/limits/role/{roleName}
6248
+ * @secure
5927
6249
  * @response `200` OK
5928
6250
  */
5929
6251
 
@@ -5940,6 +6262,7 @@ let SecurityService = /*#__PURE__*/function (_Service) {
5940
6262
  * @operationId SecurityServiceController_GetDefaultLimits
5941
6263
  * @summary Get default limits of workspace.
5942
6264
  * @request GET:/security/limits/default
6265
+ * @secure
5943
6266
  * @response `200` OK
5944
6267
  */
5945
6268
 
@@ -6015,6 +6338,7 @@ let StatisticService = /*#__PURE__*/function (_Service) {
6015
6338
  * @operationId StatisticController_StatisticsDb
6016
6339
  * @summary Calculates statistics for layer attribute.
6017
6340
  * @request GET:/statistics
6341
+ * @secure
6018
6342
  * @response `200` OK
6019
6343
  */
6020
6344
  function statisticsDb(query) {
@@ -6028,6 +6352,7 @@ let StatisticService = /*#__PURE__*/function (_Service) {
6028
6352
  * @operationId StatisticController_StatisticsDb_1
6029
6353
  * @summary Calculates statistics for layer attribute.
6030
6354
  * @request POST:/statistics
6355
+ * @secure
6031
6356
  * @response `200` OK
6032
6357
  */
6033
6358
 
@@ -6044,6 +6369,7 @@ let StatisticService = /*#__PURE__*/function (_Service) {
6044
6369
  * @operationId StatisticController_Classify
6045
6370
  * @summary Returns the classified attribute values that correspond to the given number of classes and given condition.
6046
6371
  * @request GET:/statistics/classify
6372
+ * @secure
6047
6373
  * @response `200` OK
6048
6374
  */
6049
6375
 
@@ -6060,6 +6386,7 @@ let StatisticService = /*#__PURE__*/function (_Service) {
6060
6386
  * @operationId StatisticController_Classify_1
6061
6387
  * @summary Returns the classified attribute values that correspond to the given number of classes and given condition.
6062
6388
  * @request POST:/statistics/classify
6389
+ * @secure
6063
6390
  * @response `200` OK
6064
6391
  */
6065
6392
 
@@ -6076,6 +6403,7 @@ let StatisticService = /*#__PURE__*/function (_Service) {
6076
6403
  * @operationId StatisticController_SumOfProduct
6077
6404
  * @summary Sum of product.
6078
6405
  * @request GET:/statistics/sumOfProduct
6406
+ * @secure
6079
6407
  * @response `200` OK
6080
6408
  */
6081
6409
 
@@ -6092,6 +6420,7 @@ let StatisticService = /*#__PURE__*/function (_Service) {
6092
6420
  * @operationId StatisticController_SumOfProduct_1
6093
6421
  * @summary Sum of product.
6094
6422
  * @request POST:/statistics/sumOfProduct
6423
+ * @secure
6095
6424
  * @response `200` OK
6096
6425
  */
6097
6426
 
@@ -6169,6 +6498,7 @@ let StyleService = /*#__PURE__*/function (_Service) {
6169
6498
  * @operationId StyleServiceController_GetStyle
6170
6499
  * @summary Returns the style by its id.
6171
6500
  * @request GET:/styles/{id}
6501
+ * @secure
6172
6502
  * @response `200` OK
6173
6503
  */
6174
6504
  function getStyle(id) {
@@ -6182,6 +6512,7 @@ let StyleService = /*#__PURE__*/function (_Service) {
6182
6512
  * @operationId StyleServiceController_UpdateStyle
6183
6513
  * @summary Replaces a style and gives it a new id.
6184
6514
  * @request POST:/styles/{id}
6515
+ * @secure
6185
6516
  * @response `200` OK
6186
6517
  */
6187
6518
 
@@ -6198,6 +6529,7 @@ let StyleService = /*#__PURE__*/function (_Service) {
6198
6529
  * @operationId StyleServiceController_CreateStyle
6199
6530
  * @summary Creates a new style.
6200
6531
  * @request POST:/styles
6532
+ * @secure
6201
6533
  * @response `200` OK
6202
6534
  */
6203
6535
 
@@ -6214,6 +6546,7 @@ let StyleService = /*#__PURE__*/function (_Service) {
6214
6546
  * @operationId StyleServiceController_GetAllFonts
6215
6547
  * @summary Gets all installed fonts.
6216
6548
  * @request GET:/styles/fonts
6549
+ * @secure
6217
6550
  * @response `200` OK
6218
6551
  */
6219
6552
 
@@ -6230,6 +6563,7 @@ let StyleService = /*#__PURE__*/function (_Service) {
6230
6563
  * @operationId StyleServiceController_AddFont
6231
6564
  * @summary Install new font.
6232
6565
  * @request POST:/styles/fonts
6566
+ * @secure
6233
6567
  * @response `200` OK
6234
6568
  */
6235
6569
 
@@ -6246,6 +6580,7 @@ let StyleService = /*#__PURE__*/function (_Service) {
6246
6580
  * @operationId StyleServiceController_RemoveFont
6247
6581
  * @summary Remove installed font.
6248
6582
  * @request DELETE:/styles/fonts
6583
+ * @secure
6249
6584
  * @response `200` OK
6250
6585
  */
6251
6586
 
@@ -6304,6 +6639,7 @@ let TablesService = /*#__PURE__*/function (_Service) {
6304
6639
  * @operationId TablesController_GetTableList
6305
6640
  * @summary Returns the list of tables in data service.
6306
6641
  * @request GET:/tables
6642
+ * @secure
6307
6643
  * @response `200` OK
6308
6644
  */
6309
6645
  function getTableList(query) {
@@ -6317,6 +6653,7 @@ let TablesService = /*#__PURE__*/function (_Service) {
6317
6653
  * @operationId TablesController_CreateTable
6318
6654
  * @summary Creates a new table.
6319
6655
  * @request POST:/tables
6656
+ * @secure
6320
6657
  * @response `200` OK
6321
6658
  */
6322
6659
 
@@ -6333,6 +6670,7 @@ let TablesService = /*#__PURE__*/function (_Service) {
6333
6670
  * @operationId TablesController_DeleteResources
6334
6671
  * @summary Bulk delete resources.
6335
6672
  * @request DELETE:/tables
6673
+ * @secure
6336
6674
  * @response `200` OK
6337
6675
  */
6338
6676
 
@@ -6349,6 +6687,7 @@ let TablesService = /*#__PURE__*/function (_Service) {
6349
6687
  * @operationId TablesController_UpdateTable
6350
6688
  * @summary Update exists table.
6351
6689
  * @request PATCH:/tables/{name}
6690
+ * @secure
6352
6691
  * @response `200` OK
6353
6692
  */
6354
6693
 
@@ -6365,6 +6704,7 @@ let TablesService = /*#__PURE__*/function (_Service) {
6365
6704
  * @operationId TablesController_PutTable
6366
6705
  * @summary Override exists table.
6367
6706
  * @request PUT:/tables/{name}
6707
+ * @secure
6368
6708
  * @response `200` OK
6369
6709
  */
6370
6710
 
@@ -6381,6 +6721,7 @@ let TablesService = /*#__PURE__*/function (_Service) {
6381
6721
  * @operationId TablesController_GetTableInfo
6382
6722
  * @summary Returns the table information and schema.
6383
6723
  * @request GET:/tables/{name}
6724
+ * @secure
6384
6725
  * @response `200` OK
6385
6726
  */
6386
6727
 
@@ -6397,6 +6738,7 @@ let TablesService = /*#__PURE__*/function (_Service) {
6397
6738
  * @operationId TablesController_DeleteResource
6398
6739
  * @summary Deletes resource.
6399
6740
  * @request DELETE:/tables/{name}
6741
+ * @secure
6400
6742
  * @response `200` OK
6401
6743
  */
6402
6744
 
@@ -6413,6 +6755,7 @@ let TablesService = /*#__PURE__*/function (_Service) {
6413
6755
  * @operationId TablesController_GetTablesInfoAsync
6414
6756
  * @summary Returns the tables information.
6415
6757
  * @request GET:/tables/batchInfo
6758
+ * @secure
6416
6759
  * @response `200` OK
6417
6760
  */
6418
6761
 
@@ -6429,6 +6772,7 @@ let TablesService = /*#__PURE__*/function (_Service) {
6429
6772
  * @operationId TablesController_GetTableData
6430
6773
  * @summary Retrieves the data from the table.
6431
6774
  * @request GET:/tables/{name}/data
6775
+ * @secure
6432
6776
  * @response `200` OK
6433
6777
  */
6434
6778
 
@@ -6450,6 +6794,7 @@ let TablesService = /*#__PURE__*/function (_Service) {
6450
6794
  * @operationId TablesController_WriteTableData
6451
6795
  * @summary Adds the data to the table.
6452
6796
  * @request POST:/tables/{name}/data
6797
+ * @secure
6453
6798
  * @response `200` OK
6454
6799
  */
6455
6800
 
@@ -6466,6 +6811,7 @@ let TablesService = /*#__PURE__*/function (_Service) {
6466
6811
  * @operationId TablesController_UpdateTableData
6467
6812
  * @summary Updates the data in the table.
6468
6813
  * @request PATCH:/tables/{name}/data
6814
+ * @secure
6469
6815
  * @response `200` OK
6470
6816
  */
6471
6817
 
@@ -6487,6 +6833,7 @@ let TablesService = /*#__PURE__*/function (_Service) {
6487
6833
  * @operationId TablesController_DeleteTableData
6488
6834
  * @summary Delete data rows from the table.
6489
6835
  * @request DELETE:/tables/{name}/data
6836
+ * @secure
6490
6837
  * @response `200` OK
6491
6838
  */
6492
6839
 
@@ -6508,6 +6855,7 @@ let TablesService = /*#__PURE__*/function (_Service) {
6508
6855
  * @operationId TablesController_MapTable
6509
6856
  * @summary Map table to exists table.
6510
6857
  * @request POST:/tables/map-table
6858
+ * @secure
6511
6859
  * @response `200` OK
6512
6860
  */
6513
6861
 
@@ -6524,6 +6872,7 @@ let TablesService = /*#__PURE__*/function (_Service) {
6524
6872
  * @operationId TablesController_UnmapTableAsync
6525
6873
  * @summary Unmap datasource from table.
6526
6874
  * @request DELETE:/tables/map-table/{name}
6875
+ * @secure
6527
6876
  * @response `200` OK
6528
6877
  */
6529
6878
 
@@ -6540,6 +6889,7 @@ let TablesService = /*#__PURE__*/function (_Service) {
6540
6889
  * @operationId TablesController_CreateViewFromQueryLayer
6541
6890
  * @summary Creates a new view from query layer.
6542
6891
  * @request POST:/tables/fromLayer
6892
+ * @secure
6543
6893
  * @response `200` OK
6544
6894
  */
6545
6895
 
@@ -6556,6 +6906,7 @@ let TablesService = /*#__PURE__*/function (_Service) {
6556
6906
  * @operationId TablesController_CreateViewFromQuery
6557
6907
  * @summary Creates a new view from query.
6558
6908
  * @request POST:/tables/fromQuery
6909
+ * @secure
6559
6910
  * @response `200` OK
6560
6911
  */
6561
6912
 
@@ -6572,6 +6923,7 @@ let TablesService = /*#__PURE__*/function (_Service) {
6572
6923
  * @operationId TablesController_IsExistsAsync
6573
6924
  * @summary Check is resource exists.
6574
6925
  * @request GET:/tables/{name}/exists
6926
+ * @secure
6575
6927
  * @response `200` OK
6576
6928
  */
6577
6929
 
@@ -6588,6 +6940,7 @@ let TablesService = /*#__PURE__*/function (_Service) {
6588
6940
  * @operationId TablesController_GetResourceDependencies
6589
6941
  * @summary Get resource dependencies.
6590
6942
  * @request GET:/tables/{name}/dependencies
6943
+ * @secure
6591
6944
  * @response `200` OK
6592
6945
  */
6593
6946
 
@@ -6604,6 +6957,7 @@ let TablesService = /*#__PURE__*/function (_Service) {
6604
6957
  * @operationId TablesController_GetResourceReferences
6605
6958
  * @summary Returns the resource dependency information.
6606
6959
  * @request GET:/tables/{name}/references
6960
+ * @secure
6607
6961
  * @response `200` OK
6608
6962
  */
6609
6963
 
@@ -6727,6 +7081,7 @@ let VectorTileService = /*#__PURE__*/function (_Service) {
6727
7081
  * @operationId VectorTileServiceController_GetVectorTile
6728
7082
  * @summary Get vector tile from visible project layers or single layer.
6729
7083
  * @request GET:/vt/{name}/{z}/{x}/{y}.pbf
7084
+ * @secure
6730
7085
  * @response `200` OK
6731
7086
  */
6732
7087
  function getVectorTile(_ref) {
@@ -6892,7 +7247,6 @@ let Api = /*#__PURE__*/function (_EventEmitter) {
6892
7247
  _this.cameras = new Cameras(_this.http);
6893
7248
  _this.print = new Print(_this.http);
6894
7249
  _this.tools = new Tools(_this.http);
6895
- _this.resourceCatalog = new ResourceCatalog(_this.http);
6896
7250
  _this.external = new External(_this.http);
6897
7251
  _this.clientSettings = new ClientSettings(_this.http);
6898
7252
  _this.portalSettings = new PortalSettings(_this.http);
@@ -8092,5 +8446,5 @@ var WorkerSettingsFieldType;
8092
8446
  WorkerSettingsFieldType["AttributeArray"] = "AttributeArray";
8093
8447
  })(WorkerSettingsFieldType || (WorkerSettingsFieldType = {}));
8094
8448
 
8095
- export { Account, AccountPreview, AggregationFunction, Api, ApiEvent, AttributeIconType, AttributeSelectorType, AttributeType, AuthorizationGrant, BulkOperations, Cameras, CatalogResourceType, ClassificationType, ClassifyAttributeType, ClientSettings, ConfigurationErrorEnum, ConnectionStatus, DataSourceType, DependencyType, Eql, ErrorDetailsType, ErrorReason, ErrorType, External, Feedback, FileUpload, Filters, FontStyle, FontWeight, GEOCODE_PROVIDER, Geocode, GeometryType, Group, HttpClient, IceRouter, Import, Layers, LineCapStyle, LineEndingType, LineJoinType, Names, Notification, NotificationEvent, OwnerFilter, PbfSchema, Permissions, PolicyType, PortalSettings, Print, Projects, Quality, RemoteTaskManager, RemoteTaskStatus, ResourceCatalog, ResourceSeparator, ResourceSubTypeFilter, ResourceType, ResourceTypeFilter, ResourceTypeLink, Resources, ResponseType, STORAGE_REFRESH_TOKEN_KEY, STORAGE_TOKEN_KEY, Security, SimplifyType, Statistic, StringSubType, Styles, Tables, TaskResourceSubType, TextAlignment, TextVerticalAlignment, Tools, UrlPath, VectorTiles, WorkerMethodType, WorkerSettingsFieldType, addSubDomainToLocation, errorHandler, formDataFromFile, generateId, getFetchingUrlPath, isHTTPError, isHandledError, isProjectContentItems, isString, isTileLayerService, parseJwt, promiseAllIgnoreErrors, stripUselessSlashes, toFormData, unique };
8449
+ export { Account, AccountPreview, AggregationFunction, Api, ApiEvent, AttributeIconType, AttributeSelectorType, AttributeType, AuthorizationGrant, BulkOperations, Cameras, CatalogResourceType, ClassificationType, ClassifyAttributeType, ClientSettings, ConfigurationErrorEnum, ConnectionStatus, DataSourceType, DependencyType, Eql, ErrorDetailsType, ErrorReason, ErrorType, External, Feedback, FileUpload, Filters, FontStyle, FontWeight, GEOCODE_PROVIDER, Geocode, GeometryType, Group, HttpClient, IceRouter, Import, Layers, LineCapStyle, LineEndingType, LineJoinType, Names, Notification, NotificationEvent, OwnerFilter, PbfSchema, Permissions, PolicyType, PortalSettings, Print, Projects, Quality, RemoteTaskManager, RemoteTaskStatus, ResourceSeparator, ResourceSubTypeFilter, ResourceType, ResourceTypeFilter, ResourceTypeLink, Resources, ResponseType, STORAGE_REFRESH_TOKEN_KEY, STORAGE_TOKEN_KEY, Security, SimplifyType, Statistic, StringSubType, Styles, Tables, TaskResourceSubType, TextAlignment, TextVerticalAlignment, Tools, UrlPath, VectorTiles, WorkerMethodType, WorkerSettingsFieldType, addSubDomainToLocation, errorHandler, formDataFromFile, generateId, getFetchingUrlPath, isHTTPError, isHandledError, isProjectContentItems, isString, isTileLayerService, parseJwt, promiseAllIgnoreErrors, stripUselessSlashes, toFormData, unique };
8096
8450
  //# sourceMappingURL=api.esm.js.map