@evergis/api 3.0.184 → 3.0.186
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +20 -20
- package/README.md +21 -21
- package/dist/__generated__/AccountPreviewService.d.ts +3 -3
- package/dist/__generated__/AccountService.d.ts +35 -35
- package/dist/__generated__/BulkOperationsService.d.ts +1 -1
- package/dist/__generated__/CamerasService.d.ts +8 -8
- package/dist/__generated__/CatalogService.d.ts +10 -10
- package/dist/__generated__/ClientSettingsService.d.ts +4 -4
- package/dist/__generated__/EqlTestService.d.ts +7 -7
- package/dist/__generated__/ExternalProvidersService.d.ts +11 -11
- package/dist/__generated__/FeedbackService.d.ts +3 -3
- package/dist/__generated__/FiltersService.d.ts +3 -3
- package/dist/__generated__/GeneralService.d.ts +2 -2
- package/dist/__generated__/GeocodeService.d.ts +3 -3
- package/dist/__generated__/IceRouterService.d.ts +2 -2
- package/dist/__generated__/ImportService.d.ts +12 -12
- package/dist/__generated__/LayersService.d.ts +55 -55
- package/dist/__generated__/NamespaceService.d.ts +4 -4
- package/dist/__generated__/NavigationService.d.ts +1 -1
- package/dist/__generated__/NotificationService.d.ts +5 -5
- package/dist/__generated__/PrintService.d.ts +6 -6
- package/dist/__generated__/ProjectsService.d.ts +23 -23
- package/dist/__generated__/QueryTokenAccessService.d.ts +4 -4
- package/dist/__generated__/ResourceCatalogService.d.ts +2 -2
- package/dist/__generated__/S3Service.d.ts +7 -7
- package/dist/__generated__/SchedulerService.d.ts +20 -20
- package/dist/__generated__/SecurityService.d.ts +6 -6
- package/dist/__generated__/SpatialReferencesService.d.ts +3 -3
- package/dist/__generated__/StaticContentService.d.ts +4 -4
- package/dist/__generated__/StatisticService.d.ts +8 -8
- package/dist/__generated__/StyleService.d.ts +6 -6
- package/dist/__generated__/SymbolStorageService.d.ts +18 -18
- package/dist/__generated__/TablesService.d.ts +29 -29
- package/dist/__generated__/TagsService.d.ts +4 -4
- package/dist/__generated__/UniversalSearchService.d.ts +2 -2
- package/dist/__generated__/VectorTileService.d.ts +1 -1
- package/dist/__generated__/WfsServerService.d.ts +3 -3
- package/dist/__generated__/WmsServerService.d.ts +5 -5
- package/dist/__generated__/WmtsService.d.ts +1 -1
- package/dist/__generated__/data-contracts.d.ts +459 -452
- package/dist/api.cjs.development.js +280 -272
- package/dist/api.cjs.development.js.map +1 -1
- package/dist/api.cjs.production.min.js +1 -1
- package/dist/api.cjs.production.min.js.map +1 -1
- package/dist/api.esm.js +468 -460
- package/dist/api.esm.js.map +1 -1
- package/dist/services/Projects.d.ts +1 -1
- package/dist/services/Statistic.d.ts +2 -2
- package/dist/services/Tables.d.ts +1 -1
- package/package.json +2 -2
package/dist/api.esm.js
CHANGED
|
@@ -30,6 +30,9 @@ function _defineProperties(target, props) {
|
|
|
30
30
|
function _createClass(Constructor, protoProps, staticProps) {
|
|
31
31
|
if (protoProps) _defineProperties(Constructor.prototype, protoProps);
|
|
32
32
|
if (staticProps) _defineProperties(Constructor, staticProps);
|
|
33
|
+
Object.defineProperty(Constructor, "prototype", {
|
|
34
|
+
writable: false
|
|
35
|
+
});
|
|
33
36
|
return Constructor;
|
|
34
37
|
}
|
|
35
38
|
|
|
@@ -63,6 +66,9 @@ function _inherits(subClass, superClass) {
|
|
|
63
66
|
configurable: true
|
|
64
67
|
}
|
|
65
68
|
});
|
|
69
|
+
Object.defineProperty(subClass, "prototype", {
|
|
70
|
+
writable: false
|
|
71
|
+
});
|
|
66
72
|
if (superClass) _setPrototypeOf(subClass, superClass);
|
|
67
73
|
}
|
|
68
74
|
|
|
@@ -121,6 +127,8 @@ function _assertThisInitialized(self) {
|
|
|
121
127
|
function _possibleConstructorReturn(self, call) {
|
|
122
128
|
if (call && (typeof call === "object" || typeof call === "function")) {
|
|
123
129
|
return call;
|
|
130
|
+
} else if (call !== void 0) {
|
|
131
|
+
throw new TypeError("Derived constructors may only return object or undefined");
|
|
124
132
|
}
|
|
125
133
|
|
|
126
134
|
return _assertThisInitialized(self);
|
|
@@ -154,7 +162,7 @@ function _superPropBase(object, property) {
|
|
|
154
162
|
return object;
|
|
155
163
|
}
|
|
156
164
|
|
|
157
|
-
function _get(
|
|
165
|
+
function _get() {
|
|
158
166
|
if (typeof Reflect !== "undefined" && Reflect.get) {
|
|
159
167
|
_get = Reflect.get;
|
|
160
168
|
} else {
|
|
@@ -165,14 +173,14 @@ function _get(target, property, receiver) {
|
|
|
165
173
|
var desc = Object.getOwnPropertyDescriptor(base, property);
|
|
166
174
|
|
|
167
175
|
if (desc.get) {
|
|
168
|
-
return desc.get.call(receiver);
|
|
176
|
+
return desc.get.call(arguments.length < 3 ? target : receiver);
|
|
169
177
|
}
|
|
170
178
|
|
|
171
179
|
return desc.value;
|
|
172
180
|
};
|
|
173
181
|
}
|
|
174
182
|
|
|
175
|
-
return _get(
|
|
183
|
+
return _get.apply(this, arguments);
|
|
176
184
|
}
|
|
177
185
|
|
|
178
186
|
let HttpClient = /*#__PURE__*/function () {
|
|
@@ -333,7 +341,7 @@ let QueryTokenAccessService = /*#__PURE__*/function (_Service) {
|
|
|
333
341
|
* @operationId QueryTokenAccessController_CreateTokenAsync
|
|
334
342
|
* @summary Create new query access token.
|
|
335
343
|
* @request PUT:/accessToken/{username}
|
|
336
|
-
* @response `200`
|
|
344
|
+
* @response `200` OK
|
|
337
345
|
*/
|
|
338
346
|
function createToken(username) {
|
|
339
347
|
return this.http.put("/accessToken/" + username, null).text();
|
|
@@ -346,7 +354,7 @@ let QueryTokenAccessService = /*#__PURE__*/function (_Service) {
|
|
|
346
354
|
* @operationId QueryTokenAccessController_DisableToken
|
|
347
355
|
* @summary Disable token.
|
|
348
356
|
* @request POST:/accessToken/{token}/disable
|
|
349
|
-
* @response `200`
|
|
357
|
+
* @response `200` OK
|
|
350
358
|
*/
|
|
351
359
|
|
|
352
360
|
}, {
|
|
@@ -362,7 +370,7 @@ let QueryTokenAccessService = /*#__PURE__*/function (_Service) {
|
|
|
362
370
|
* @operationId QueryTokenAccessController_EnableToken
|
|
363
371
|
* @summary Enable token.
|
|
364
372
|
* @request POST:/accessToken/{token}/enable
|
|
365
|
-
* @response `200`
|
|
373
|
+
* @response `200` OK
|
|
366
374
|
*/
|
|
367
375
|
|
|
368
376
|
}, {
|
|
@@ -378,7 +386,7 @@ let QueryTokenAccessService = /*#__PURE__*/function (_Service) {
|
|
|
378
386
|
* @operationId QueryTokenAccessController_RevokeToken
|
|
379
387
|
* @summary Revoke token.
|
|
380
388
|
* @request DELETE:/accessToken/{token}
|
|
381
|
-
* @response `200`
|
|
389
|
+
* @response `200` OK
|
|
382
390
|
*/
|
|
383
391
|
|
|
384
392
|
}, {
|
|
@@ -419,7 +427,7 @@ let SpatialReferencesService = /*#__PURE__*/function (_Service) {
|
|
|
419
427
|
* @operationId SpatialReferencesController_GetAvailiableCsAsync
|
|
420
428
|
* @summary Returns list of available spatial references.
|
|
421
429
|
* @request GET:/srs/list
|
|
422
|
-
* @response `200`
|
|
430
|
+
* @response `200` OK
|
|
423
431
|
*/
|
|
424
432
|
function getAvailiableCs() {
|
|
425
433
|
return this.http.get("/srs/list").json();
|
|
@@ -432,7 +440,7 @@ let SpatialReferencesService = /*#__PURE__*/function (_Service) {
|
|
|
432
440
|
* @operationId SpatialReferencesController_GetProj4RepresentationAsync
|
|
433
441
|
* @summary Returns a WKT representation of spatial reference.
|
|
434
442
|
* @request GET:/srs/{name}/proj4
|
|
435
|
-
* @response `200`
|
|
443
|
+
* @response `200` OK
|
|
436
444
|
*/
|
|
437
445
|
|
|
438
446
|
}, {
|
|
@@ -448,7 +456,7 @@ let SpatialReferencesService = /*#__PURE__*/function (_Service) {
|
|
|
448
456
|
* @operationId SpatialReferencesController_GetWktRepresentationAsync
|
|
449
457
|
* @summary Returns a WKT representation of spatial reference.
|
|
450
458
|
* @request GET:/srs/{name}/wkt
|
|
451
|
-
* @response `200`
|
|
459
|
+
* @response `200` OK
|
|
452
460
|
*/
|
|
453
461
|
|
|
454
462
|
}, {
|
|
@@ -490,7 +498,7 @@ let UniversalSearchService = /*#__PURE__*/function (_Service) {
|
|
|
490
498
|
* @operationId UniversalSearchController_GetSearchResult
|
|
491
499
|
* @summary Returns search result.
|
|
492
500
|
* @request GET:/search/{taskId}/{layerName}
|
|
493
|
-
* @response `200`
|
|
501
|
+
* @response `200` OK
|
|
494
502
|
*/
|
|
495
503
|
function getSearchResult(_ref) {
|
|
496
504
|
let {
|
|
@@ -509,7 +517,7 @@ let UniversalSearchService = /*#__PURE__*/function (_Service) {
|
|
|
509
517
|
* @operationId UniversalSearchController_GetSearchResult_1
|
|
510
518
|
* @summary Returns search result.
|
|
511
519
|
* @request GET:/search/{taskId}
|
|
512
|
-
* @response `200`
|
|
520
|
+
* @response `200` OK
|
|
513
521
|
*/
|
|
514
522
|
|
|
515
523
|
}, {
|
|
@@ -550,7 +558,7 @@ let CatalogService = /*#__PURE__*/function (_Service) {
|
|
|
550
558
|
* @operationId CatalogController_GetAll
|
|
551
559
|
* @summary Get all resource with given.
|
|
552
560
|
* @request GET:/resources
|
|
553
|
-
* @response `200`
|
|
561
|
+
* @response `200` OK
|
|
554
562
|
*/
|
|
555
563
|
function getAll(query) {
|
|
556
564
|
return this.http.get("/resources", query).json();
|
|
@@ -563,7 +571,7 @@ let CatalogService = /*#__PURE__*/function (_Service) {
|
|
|
563
571
|
* @operationId CatalogController_SearchResources
|
|
564
572
|
* @summary Search resources.
|
|
565
573
|
* @request POST:/resources/search
|
|
566
|
-
* @response `200`
|
|
574
|
+
* @response `200` OK
|
|
567
575
|
*/
|
|
568
576
|
|
|
569
577
|
}, {
|
|
@@ -579,7 +587,7 @@ let CatalogService = /*#__PURE__*/function (_Service) {
|
|
|
579
587
|
* @operationId CatalogController_GetResource
|
|
580
588
|
* @summary Get resource with given id.
|
|
581
589
|
* @request GET:/resources/{resourceId}
|
|
582
|
-
* @response `200`
|
|
590
|
+
* @response `200` OK
|
|
583
591
|
*/
|
|
584
592
|
|
|
585
593
|
}, {
|
|
@@ -595,7 +603,7 @@ let CatalogService = /*#__PURE__*/function (_Service) {
|
|
|
595
603
|
* @operationId CatalogController_DeleteResource
|
|
596
604
|
* @summary Delete resource.
|
|
597
605
|
* @request DELETE:/resources/{resourceId}
|
|
598
|
-
* @response `200`
|
|
606
|
+
* @response `200` OK
|
|
599
607
|
*/
|
|
600
608
|
|
|
601
609
|
}, {
|
|
@@ -611,7 +619,7 @@ let CatalogService = /*#__PURE__*/function (_Service) {
|
|
|
611
619
|
* @operationId CatalogController_MoveResource
|
|
612
620
|
* @summary Rename resource with given id.
|
|
613
621
|
* @request POST:/resources/{resourceId}/move
|
|
614
|
-
* @response `200`
|
|
622
|
+
* @response `200` OK
|
|
615
623
|
*/
|
|
616
624
|
|
|
617
625
|
}, {
|
|
@@ -627,7 +635,7 @@ let CatalogService = /*#__PURE__*/function (_Service) {
|
|
|
627
635
|
* @operationId CatalogController_CreateDirectory
|
|
628
636
|
* @summary Create directory.
|
|
629
637
|
* @request POST:/resources/directory
|
|
630
|
-
* @response `200`
|
|
638
|
+
* @response `200` OK
|
|
631
639
|
*/
|
|
632
640
|
|
|
633
641
|
}, {
|
|
@@ -643,7 +651,7 @@ let CatalogService = /*#__PURE__*/function (_Service) {
|
|
|
643
651
|
* @operationId CatalogController_CreateFile
|
|
644
652
|
* @summary Create new file.
|
|
645
653
|
* @request POST:/resources/file
|
|
646
|
-
* @response `200`
|
|
654
|
+
* @response `200` OK
|
|
647
655
|
*/
|
|
648
656
|
|
|
649
657
|
}, {
|
|
@@ -659,7 +667,7 @@ let CatalogService = /*#__PURE__*/function (_Service) {
|
|
|
659
667
|
* @operationId CatalogController_GetPermissions
|
|
660
668
|
* @summary Set permissions to the resource.
|
|
661
669
|
* @request GET:/resources/{resourceId}/permissions
|
|
662
|
-
* @response `200`
|
|
670
|
+
* @response `200` OK
|
|
663
671
|
*/
|
|
664
672
|
|
|
665
673
|
}, {
|
|
@@ -675,7 +683,7 @@ let CatalogService = /*#__PURE__*/function (_Service) {
|
|
|
675
683
|
* @operationId CatalogController_SetPermissions
|
|
676
684
|
* @summary Set permissions to the resource.
|
|
677
685
|
* @request PUT:/resources/{resourceId}/permissions
|
|
678
|
-
* @response `200`
|
|
686
|
+
* @response `200` OK
|
|
679
687
|
*/
|
|
680
688
|
|
|
681
689
|
}, {
|
|
@@ -691,7 +699,7 @@ let CatalogService = /*#__PURE__*/function (_Service) {
|
|
|
691
699
|
* @operationId CatalogController_DownloadFile
|
|
692
700
|
* @summary Download file.
|
|
693
701
|
* @request GET:/resources/{resourceId}/download
|
|
694
|
-
* @response `200`
|
|
702
|
+
* @response `200` OK
|
|
695
703
|
*/
|
|
696
704
|
|
|
697
705
|
}, {
|
|
@@ -740,7 +748,7 @@ let AccountService = /*#__PURE__*/function (_Service) {
|
|
|
740
748
|
* @operationId AccountController_GetUsers
|
|
741
749
|
* @summary Returns the list of users that correspond to the given conditions.
|
|
742
750
|
* @request GET:/account/user/list
|
|
743
|
-
* @response `200`
|
|
751
|
+
* @response `200` OK
|
|
744
752
|
*/
|
|
745
753
|
function getUsers(query) {
|
|
746
754
|
return this.http.get("/account/user/list", query).json();
|
|
@@ -753,7 +761,7 @@ let AccountService = /*#__PURE__*/function (_Service) {
|
|
|
753
761
|
* @operationId AccountController_GetExtendedUsers
|
|
754
762
|
* @summary Returns the list of extended users informations that correspond to the given conditions.
|
|
755
763
|
* @request GET:/account/user/extendedlist
|
|
756
|
-
* @response `200`
|
|
764
|
+
* @response `200` OK
|
|
757
765
|
*/
|
|
758
766
|
|
|
759
767
|
}, {
|
|
@@ -769,7 +777,7 @@ let AccountService = /*#__PURE__*/function (_Service) {
|
|
|
769
777
|
* @operationId AccountController_GetUserInfo
|
|
770
778
|
* @summary Get user basic information.
|
|
771
779
|
* @request GET:/account/{username}
|
|
772
|
-
* @response `200`
|
|
780
|
+
* @response `200` OK
|
|
773
781
|
*/
|
|
774
782
|
|
|
775
783
|
}, {
|
|
@@ -785,7 +793,7 @@ let AccountService = /*#__PURE__*/function (_Service) {
|
|
|
785
793
|
* @operationId AccountController_GetExtendedUserInfo
|
|
786
794
|
* @summary Get user extended information.
|
|
787
795
|
* @request GET:/account/extended/{username}
|
|
788
|
-
* @response `200`
|
|
796
|
+
* @response `200` OK
|
|
789
797
|
*/
|
|
790
798
|
|
|
791
799
|
}, {
|
|
@@ -801,7 +809,7 @@ let AccountService = /*#__PURE__*/function (_Service) {
|
|
|
801
809
|
* @operationId AccountController_IsUsernameExists
|
|
802
810
|
* @summary Checks if the user with the given name is registered in the system.
|
|
803
811
|
* @request GET:/account/user/exists
|
|
804
|
-
* @response `200`
|
|
812
|
+
* @response `200` OK
|
|
805
813
|
*/
|
|
806
814
|
|
|
807
815
|
}, {
|
|
@@ -817,7 +825,7 @@ let AccountService = /*#__PURE__*/function (_Service) {
|
|
|
817
825
|
* @operationId AccountController_IsEmailExists
|
|
818
826
|
* @summary Checks if the user with the given email is registered in the system.
|
|
819
827
|
* @request GET:/account/user/email/exists
|
|
820
|
-
* @response `200`
|
|
828
|
+
* @response `200` OK
|
|
821
829
|
*/
|
|
822
830
|
|
|
823
831
|
}, {
|
|
@@ -833,7 +841,7 @@ let AccountService = /*#__PURE__*/function (_Service) {
|
|
|
833
841
|
* @operationId AccountController_RegisterUser
|
|
834
842
|
* @summary Register new user.
|
|
835
843
|
* @request POST:/account/register
|
|
836
|
-
* @response `200`
|
|
844
|
+
* @response `200` OK
|
|
837
845
|
*/
|
|
838
846
|
|
|
839
847
|
}, {
|
|
@@ -849,7 +857,7 @@ let AccountService = /*#__PURE__*/function (_Service) {
|
|
|
849
857
|
* @operationId AccountController_CreateUser
|
|
850
858
|
* @summary Create new user.
|
|
851
859
|
* @request POST:/account/user
|
|
852
|
-
* @response `200`
|
|
860
|
+
* @response `200` OK
|
|
853
861
|
*/
|
|
854
862
|
|
|
855
863
|
}, {
|
|
@@ -865,7 +873,7 @@ let AccountService = /*#__PURE__*/function (_Service) {
|
|
|
865
873
|
* @operationId AccountController_UpdateUser
|
|
866
874
|
* @summary Update exist user.
|
|
867
875
|
* @request PATCH:/account/user
|
|
868
|
-
* @response `200`
|
|
876
|
+
* @response `200` OK
|
|
869
877
|
*/
|
|
870
878
|
|
|
871
879
|
}, {
|
|
@@ -881,7 +889,7 @@ let AccountService = /*#__PURE__*/function (_Service) {
|
|
|
881
889
|
* @operationId AccountController_ConfirmEmail
|
|
882
890
|
* @summary Confirm user email.
|
|
883
891
|
* @request POST:/account/user/{username}/email/confirm
|
|
884
|
-
* @response `200`
|
|
892
|
+
* @response `200` OK
|
|
885
893
|
*/
|
|
886
894
|
|
|
887
895
|
}, {
|
|
@@ -897,7 +905,7 @@ let AccountService = /*#__PURE__*/function (_Service) {
|
|
|
897
905
|
* @operationId AccountController_VerifyEmail
|
|
898
906
|
* @summary Send email with verification code.
|
|
899
907
|
* @request POST:/account/user/{username}/email/verify
|
|
900
|
-
* @response `200`
|
|
908
|
+
* @response `200` OK
|
|
901
909
|
*/
|
|
902
910
|
|
|
903
911
|
}, {
|
|
@@ -913,7 +921,7 @@ let AccountService = /*#__PURE__*/function (_Service) {
|
|
|
913
921
|
* @operationId AccountController_SetEmail
|
|
914
922
|
* @summary For a user that does not have a set email, sets the email and password. Requires email confirmation through link.
|
|
915
923
|
* @request POST:/account/setEmail
|
|
916
|
-
* @response `200`
|
|
924
|
+
* @response `200` OK
|
|
917
925
|
*/
|
|
918
926
|
|
|
919
927
|
}, {
|
|
@@ -929,7 +937,7 @@ let AccountService = /*#__PURE__*/function (_Service) {
|
|
|
929
937
|
* @operationId AccountController_ConfirmEmail_1
|
|
930
938
|
* @summary Confirm user email by code.
|
|
931
939
|
* @request POST:/account/user/email/confirm
|
|
932
|
-
* @response `200`
|
|
940
|
+
* @response `200` OK
|
|
933
941
|
*/
|
|
934
942
|
|
|
935
943
|
}, {
|
|
@@ -945,7 +953,7 @@ let AccountService = /*#__PURE__*/function (_Service) {
|
|
|
945
953
|
* @operationId AccountController_ChangeEmail
|
|
946
954
|
* @summary Send email message with confirmation code to new email address.
|
|
947
955
|
* @request POST:/account/user/email/change
|
|
948
|
-
* @response `200`
|
|
956
|
+
* @response `200` OK
|
|
949
957
|
*/
|
|
950
958
|
|
|
951
959
|
}, {
|
|
@@ -961,7 +969,7 @@ let AccountService = /*#__PURE__*/function (_Service) {
|
|
|
961
969
|
* @operationId AccountController_ConfirmChangeEmail
|
|
962
970
|
* @summary Check confirmation code and change email address.
|
|
963
971
|
* @request POST:/account/user/email/change/confirm
|
|
964
|
-
* @response `200`
|
|
972
|
+
* @response `200` OK
|
|
965
973
|
*/
|
|
966
974
|
|
|
967
975
|
}, {
|
|
@@ -977,7 +985,7 @@ let AccountService = /*#__PURE__*/function (_Service) {
|
|
|
977
985
|
* @operationId AccountController_SetUserPassword
|
|
978
986
|
* @summary Set user password.
|
|
979
987
|
* @request PATCH:/account/password/set
|
|
980
|
-
* @response `200`
|
|
988
|
+
* @response `200` OK
|
|
981
989
|
*/
|
|
982
990
|
|
|
983
991
|
}, {
|
|
@@ -993,7 +1001,7 @@ let AccountService = /*#__PURE__*/function (_Service) {
|
|
|
993
1001
|
* @operationId AccountController_ChangePassword
|
|
994
1002
|
* @summary Change current user password.
|
|
995
1003
|
* @request PATCH:/account/password/change
|
|
996
|
-
* @response `200`
|
|
1004
|
+
* @response `200` OK
|
|
997
1005
|
*/
|
|
998
1006
|
|
|
999
1007
|
}, {
|
|
@@ -1009,7 +1017,7 @@ let AccountService = /*#__PURE__*/function (_Service) {
|
|
|
1009
1017
|
* @operationId AccountController_ResetPassword
|
|
1010
1018
|
* @summary Send reset password message.
|
|
1011
1019
|
* @request POST:/account/password/reset
|
|
1012
|
-
* @response `200`
|
|
1020
|
+
* @response `200` OK
|
|
1013
1021
|
*/
|
|
1014
1022
|
|
|
1015
1023
|
}, {
|
|
@@ -1025,7 +1033,7 @@ let AccountService = /*#__PURE__*/function (_Service) {
|
|
|
1025
1033
|
* @operationId AccountController_ResetPasswordCallback
|
|
1026
1034
|
* @summary Reset password.
|
|
1027
1035
|
* @request POST:/account/password/reset/confirm
|
|
1028
|
-
* @response `200`
|
|
1036
|
+
* @response `200` OK
|
|
1029
1037
|
*/
|
|
1030
1038
|
|
|
1031
1039
|
}, {
|
|
@@ -1041,7 +1049,7 @@ let AccountService = /*#__PURE__*/function (_Service) {
|
|
|
1041
1049
|
* @operationId AccountController_RemoveUser
|
|
1042
1050
|
* @summary Remove user.
|
|
1043
1051
|
* @request DELETE:/account/user/{username}
|
|
1044
|
-
* @response `200`
|
|
1052
|
+
* @response `200` OK
|
|
1045
1053
|
*/
|
|
1046
1054
|
|
|
1047
1055
|
}, {
|
|
@@ -1057,7 +1065,7 @@ let AccountService = /*#__PURE__*/function (_Service) {
|
|
|
1057
1065
|
* @operationId AccountController_ActivateUser
|
|
1058
1066
|
* @summary Activate user.
|
|
1059
1067
|
* @request POST:/account/user/{username}/activate
|
|
1060
|
-
* @response `200`
|
|
1068
|
+
* @response `200` OK
|
|
1061
1069
|
*/
|
|
1062
1070
|
|
|
1063
1071
|
}, {
|
|
@@ -1073,7 +1081,7 @@ let AccountService = /*#__PURE__*/function (_Service) {
|
|
|
1073
1081
|
* @operationId AccountController_DeactivateUser
|
|
1074
1082
|
* @summary Deactivate user.
|
|
1075
1083
|
* @request POST:/account/user/{username}/deactivate
|
|
1076
|
-
* @response `200`
|
|
1084
|
+
* @response `200` OK
|
|
1077
1085
|
*/
|
|
1078
1086
|
|
|
1079
1087
|
}, {
|
|
@@ -1089,7 +1097,7 @@ let AccountService = /*#__PURE__*/function (_Service) {
|
|
|
1089
1097
|
* @operationId AccountController_Authenticate
|
|
1090
1098
|
* @summary Login.
|
|
1091
1099
|
* @request POST:/account/login
|
|
1092
|
-
* @response `200`
|
|
1100
|
+
* @response `200` OK
|
|
1093
1101
|
*/
|
|
1094
1102
|
|
|
1095
1103
|
}, {
|
|
@@ -1105,7 +1113,7 @@ let AccountService = /*#__PURE__*/function (_Service) {
|
|
|
1105
1113
|
* @operationId AccountController_RefreshToken
|
|
1106
1114
|
* @summary Refresh JWT token.
|
|
1107
1115
|
* @request POST:/account/refresh-token
|
|
1108
|
-
* @response `200`
|
|
1116
|
+
* @response `200` OK
|
|
1109
1117
|
*/
|
|
1110
1118
|
|
|
1111
1119
|
}, {
|
|
@@ -1121,7 +1129,7 @@ let AccountService = /*#__PURE__*/function (_Service) {
|
|
|
1121
1129
|
* @operationId AccountController_RevokeToken
|
|
1122
1130
|
* @summary Revoke refresh token.
|
|
1123
1131
|
* @request DELETE:/account/revoke-token
|
|
1124
|
-
* @response `200`
|
|
1132
|
+
* @response `200` OK
|
|
1125
1133
|
*/
|
|
1126
1134
|
|
|
1127
1135
|
}, {
|
|
@@ -1137,7 +1145,7 @@ let AccountService = /*#__PURE__*/function (_Service) {
|
|
|
1137
1145
|
* @operationId AccountController_LdapLogin
|
|
1138
1146
|
* @summary The external login callback.
|
|
1139
1147
|
* @request POST:/account/external/login/ldap
|
|
1140
|
-
* @response `200`
|
|
1148
|
+
* @response `200` OK
|
|
1141
1149
|
*/
|
|
1142
1150
|
|
|
1143
1151
|
}, {
|
|
@@ -1153,7 +1161,7 @@ let AccountService = /*#__PURE__*/function (_Service) {
|
|
|
1153
1161
|
* @operationId AccountController_GetRoles
|
|
1154
1162
|
* @summary Enumerate exist roles.
|
|
1155
1163
|
* @request GET:/account/role/list
|
|
1156
|
-
* @response `200`
|
|
1164
|
+
* @response `200` OK
|
|
1157
1165
|
*/
|
|
1158
1166
|
|
|
1159
1167
|
}, {
|
|
@@ -1169,7 +1177,7 @@ let AccountService = /*#__PURE__*/function (_Service) {
|
|
|
1169
1177
|
* @operationId AccountController_CreateRole
|
|
1170
1178
|
* @summary Create new role.
|
|
1171
1179
|
* @request POST:/account/role
|
|
1172
|
-
* @response `200`
|
|
1180
|
+
* @response `200` OK
|
|
1173
1181
|
*/
|
|
1174
1182
|
|
|
1175
1183
|
}, {
|
|
@@ -1185,7 +1193,7 @@ let AccountService = /*#__PURE__*/function (_Service) {
|
|
|
1185
1193
|
* @operationId AccountController_UpdateRole
|
|
1186
1194
|
* @summary Update exist role.
|
|
1187
1195
|
* @request PATCH:/account/role
|
|
1188
|
-
* @response `200`
|
|
1196
|
+
* @response `200` OK
|
|
1189
1197
|
*/
|
|
1190
1198
|
|
|
1191
1199
|
}, {
|
|
@@ -1201,7 +1209,7 @@ let AccountService = /*#__PURE__*/function (_Service) {
|
|
|
1201
1209
|
* @operationId AccountController_RemoveRole
|
|
1202
1210
|
* @summary Remove role.
|
|
1203
1211
|
* @request DELETE:/account/role/{rolename}
|
|
1204
|
-
* @response `200`
|
|
1212
|
+
* @response `200` OK
|
|
1205
1213
|
*/
|
|
1206
1214
|
|
|
1207
1215
|
}, {
|
|
@@ -1217,7 +1225,7 @@ let AccountService = /*#__PURE__*/function (_Service) {
|
|
|
1217
1225
|
* @operationId AccountController_AddToRole
|
|
1218
1226
|
* @summary Add user to role.
|
|
1219
1227
|
* @request POST:/account/user/{username}/role/{role}
|
|
1220
|
-
* @response `200`
|
|
1228
|
+
* @response `200` OK
|
|
1221
1229
|
*/
|
|
1222
1230
|
|
|
1223
1231
|
}, {
|
|
@@ -1233,7 +1241,7 @@ let AccountService = /*#__PURE__*/function (_Service) {
|
|
|
1233
1241
|
* @operationId AccountController_RemoveFromRole
|
|
1234
1242
|
* @summary Remove user from role.
|
|
1235
1243
|
* @request DELETE:/account/user/{username}/role/{role}
|
|
1236
|
-
* @response `200`
|
|
1244
|
+
* @response `200` OK
|
|
1237
1245
|
*/
|
|
1238
1246
|
|
|
1239
1247
|
}, {
|
|
@@ -1249,7 +1257,7 @@ let AccountService = /*#__PURE__*/function (_Service) {
|
|
|
1249
1257
|
* @operationId AccountController_PostUsedProjects
|
|
1250
1258
|
* @summary Set used project.
|
|
1251
1259
|
* @request POST:/account/latest_projects
|
|
1252
|
-
* @response `200`
|
|
1260
|
+
* @response `200` OK
|
|
1253
1261
|
*/
|
|
1254
1262
|
|
|
1255
1263
|
}, {
|
|
@@ -1265,7 +1273,7 @@ let AccountService = /*#__PURE__*/function (_Service) {
|
|
|
1265
1273
|
* @operationId AccountController_GetUsedProjects
|
|
1266
1274
|
* @summary Get used projects.
|
|
1267
1275
|
* @request GET:/account/latest_projects
|
|
1268
|
-
* @response `200`
|
|
1276
|
+
* @response `200` OK
|
|
1269
1277
|
*/
|
|
1270
1278
|
|
|
1271
1279
|
}, {
|
|
@@ -1281,7 +1289,7 @@ let AccountService = /*#__PURE__*/function (_Service) {
|
|
|
1281
1289
|
* @operationId AccountController_TruncateUsedProjects
|
|
1282
1290
|
* @summary Truncate used projects.
|
|
1283
1291
|
* @request DELETE:/account/latest_projects
|
|
1284
|
-
* @response `200`
|
|
1292
|
+
* @response `200` OK
|
|
1285
1293
|
*/
|
|
1286
1294
|
|
|
1287
1295
|
}, {
|
|
@@ -1416,7 +1424,7 @@ let AccountPreviewService = /*#__PURE__*/function (_Service) {
|
|
|
1416
1424
|
* @operationId AccountPreviewController_GetPreview
|
|
1417
1425
|
* @summary Get user preview image.
|
|
1418
1426
|
* @request GET:/account/user/preview/{username}
|
|
1419
|
-
* @response `200`
|
|
1427
|
+
* @response `200` OK
|
|
1420
1428
|
*/
|
|
1421
1429
|
function getPreview(username) {
|
|
1422
1430
|
return this.http.createUrl("/account/user/preview/" + username);
|
|
@@ -1429,7 +1437,7 @@ let AccountPreviewService = /*#__PURE__*/function (_Service) {
|
|
|
1429
1437
|
* @operationId AccountPreviewController_UploadPreview
|
|
1430
1438
|
* @summary Set user preview image by link.
|
|
1431
1439
|
* @request POST:/account/user/preview/{username}
|
|
1432
|
-
* @response `200`
|
|
1440
|
+
* @response `200` OK
|
|
1433
1441
|
*/
|
|
1434
1442
|
|
|
1435
1443
|
}, {
|
|
@@ -1450,7 +1458,7 @@ let AccountPreviewService = /*#__PURE__*/function (_Service) {
|
|
|
1450
1458
|
* @operationId AccountPreviewController_DeletePreview
|
|
1451
1459
|
* @summary Delete user preview.
|
|
1452
1460
|
* @request DELETE:/account/user/preview/{username}
|
|
1453
|
-
* @response `200`
|
|
1461
|
+
* @response `200` OK
|
|
1454
1462
|
*/
|
|
1455
1463
|
|
|
1456
1464
|
}, {
|
|
@@ -1570,7 +1578,7 @@ let BulkOperationsService = /*#__PURE__*/function (_Service) {
|
|
|
1570
1578
|
* @operationId BulkOperationsController_BatchResourcesPermissionsSet
|
|
1571
1579
|
* @summary Perform resources set acl access batch operation.
|
|
1572
1580
|
* @request PUT:/bulk/resources/permissions
|
|
1573
|
-
* @response `200`
|
|
1581
|
+
* @response `200` OK
|
|
1574
1582
|
*/
|
|
1575
1583
|
function batchResourcesPermissionsSet(data) {
|
|
1576
1584
|
return this.http.put("/bulk/resources/permissions", data).json();
|
|
@@ -1628,7 +1636,7 @@ let CamerasService = /*#__PURE__*/function (_Service) {
|
|
|
1628
1636
|
* @operationId CamerasController_GetCameras
|
|
1629
1637
|
* @summary Get cameras list.
|
|
1630
1638
|
* @request GET:/cameras
|
|
1631
|
-
* @response `200`
|
|
1639
|
+
* @response `200` OK
|
|
1632
1640
|
*/
|
|
1633
1641
|
function getCameras(query) {
|
|
1634
1642
|
return this.http.get("/cameras", query).json();
|
|
@@ -1641,7 +1649,7 @@ let CamerasService = /*#__PURE__*/function (_Service) {
|
|
|
1641
1649
|
* @operationId CamerasController_GetArchiveFeed
|
|
1642
1650
|
* @summary Streams an FLV-over-HTTP archive feed starting at specific time.
|
|
1643
1651
|
* @request GET:/cameras/{cameraId}/archiveFeed
|
|
1644
|
-
* @response `200`
|
|
1652
|
+
* @response `200` OK
|
|
1645
1653
|
*/
|
|
1646
1654
|
|
|
1647
1655
|
}, {
|
|
@@ -1662,7 +1670,7 @@ let CamerasService = /*#__PURE__*/function (_Service) {
|
|
|
1662
1670
|
* @operationId CamerasController_GetArchiveTimeline
|
|
1663
1671
|
* @summary Returns a list of records available within a given timeframe.
|
|
1664
1672
|
* @request GET:/cameras/{cameraId}/archiveTimeline
|
|
1665
|
-
* @response `200`
|
|
1673
|
+
* @response `200` OK
|
|
1666
1674
|
*/
|
|
1667
1675
|
|
|
1668
1676
|
}, {
|
|
@@ -1683,7 +1691,7 @@ let CamerasService = /*#__PURE__*/function (_Service) {
|
|
|
1683
1691
|
* @operationId CamerasController_GetArchiveCalendar
|
|
1684
1692
|
* @summary Returns a list of records available within a given timeframe.
|
|
1685
1693
|
* @request GET:/cameras/{cameraId}/archiveCalendar
|
|
1686
|
-
* @response `200`
|
|
1694
|
+
* @response `200` OK
|
|
1687
1695
|
*/
|
|
1688
1696
|
|
|
1689
1697
|
}, {
|
|
@@ -1704,7 +1712,7 @@ let CamerasService = /*#__PURE__*/function (_Service) {
|
|
|
1704
1712
|
* @operationId CamerasController_GetArchiveSnapshot
|
|
1705
1713
|
* @summary Returns a JPEG image from the Camera’s archive.
|
|
1706
1714
|
* @request GET:/cameras/{cameraId}/archiveSnapshot
|
|
1707
|
-
* @response `200`
|
|
1715
|
+
* @response `200` OK
|
|
1708
1716
|
*/
|
|
1709
1717
|
|
|
1710
1718
|
}, {
|
|
@@ -1725,7 +1733,7 @@ let CamerasService = /*#__PURE__*/function (_Service) {
|
|
|
1725
1733
|
* @operationId CamerasController_GetLiveFeed
|
|
1726
1734
|
* @summary Streams live video feed from the Camera.
|
|
1727
1735
|
* @request GET:/cameras/{cameraId}/liveFeed
|
|
1728
|
-
* @response `200`
|
|
1736
|
+
* @response `200` OK
|
|
1729
1737
|
*/
|
|
1730
1738
|
|
|
1731
1739
|
}, {
|
|
@@ -1746,7 +1754,7 @@ let CamerasService = /*#__PURE__*/function (_Service) {
|
|
|
1746
1754
|
* @operationId CamerasController_GetLiveSnapshot
|
|
1747
1755
|
* @summary Returns a JPEG image from the Camera’s live feed.
|
|
1748
1756
|
* @request GET:/cameras/{cameraId}/liveSnapshot
|
|
1749
|
-
* @response `200`
|
|
1757
|
+
* @response `200` OK
|
|
1750
1758
|
*/
|
|
1751
1759
|
|
|
1752
1760
|
}, {
|
|
@@ -1762,7 +1770,7 @@ let CamerasService = /*#__PURE__*/function (_Service) {
|
|
|
1762
1770
|
* @operationId CamerasController_GetLivePreviewStream
|
|
1763
1771
|
* @summary Get live preview stream.
|
|
1764
1772
|
* @request GET:/cameras/{cameraId}/getLivePreviewsStream
|
|
1765
|
-
* @response `200`
|
|
1773
|
+
* @response `200` OK
|
|
1766
1774
|
*/
|
|
1767
1775
|
|
|
1768
1776
|
}, {
|
|
@@ -1822,7 +1830,7 @@ let ClientSettingsService = /*#__PURE__*/function (_Service) {
|
|
|
1822
1830
|
* @operationId ClientSettingsController_GetConfigurationsList
|
|
1823
1831
|
* @summary Get client configurations.
|
|
1824
1832
|
* @request GET:/settings/config
|
|
1825
|
-
* @response `200`
|
|
1833
|
+
* @response `200` OK
|
|
1826
1834
|
*/
|
|
1827
1835
|
function getConfigurationsList(query) {
|
|
1828
1836
|
return this.http.get("/settings/config", query).json();
|
|
@@ -1835,7 +1843,7 @@ let ClientSettingsService = /*#__PURE__*/function (_Service) {
|
|
|
1835
1843
|
* @operationId ClientSettingsController_GetConfiguration
|
|
1836
1844
|
* @summary Get config for urlPath.
|
|
1837
1845
|
* @request GET:/settings
|
|
1838
|
-
* @response `200`
|
|
1846
|
+
* @response `200` OK
|
|
1839
1847
|
*/
|
|
1840
1848
|
|
|
1841
1849
|
}, {
|
|
@@ -1851,7 +1859,7 @@ let ClientSettingsService = /*#__PURE__*/function (_Service) {
|
|
|
1851
1859
|
* @operationId ClientSettingsController_SetConfiguration
|
|
1852
1860
|
* @summary Set config for urlPath.
|
|
1853
1861
|
* @request POST:/settings
|
|
1854
|
-
* @response `200`
|
|
1862
|
+
* @response `200` OK
|
|
1855
1863
|
*/
|
|
1856
1864
|
|
|
1857
1865
|
}, {
|
|
@@ -1867,7 +1875,7 @@ let ClientSettingsService = /*#__PURE__*/function (_Service) {
|
|
|
1867
1875
|
* @operationId ClientSettingsController_RemoveConfiguration
|
|
1868
1876
|
* @summary Remove config for urlPath.
|
|
1869
1877
|
* @request DELETE:/settings
|
|
1870
|
-
* @response `200`
|
|
1878
|
+
* @response `200` OK
|
|
1871
1879
|
*/
|
|
1872
1880
|
|
|
1873
1881
|
}, {
|
|
@@ -1945,7 +1953,7 @@ let EqlTestService = /*#__PURE__*/function (_Service) {
|
|
|
1945
1953
|
* @operationId EqlTestController_GetQueryResult
|
|
1946
1954
|
* @summary Perform resources set acl access batch operation.
|
|
1947
1955
|
* @request POST:/eql/query
|
|
1948
|
-
* @response `200`
|
|
1956
|
+
* @response `200` OK
|
|
1949
1957
|
*/
|
|
1950
1958
|
function getQueryResult(data) {
|
|
1951
1959
|
return this.http.post("/eql/query", data).then(() => {});
|
|
@@ -1958,7 +1966,7 @@ let EqlTestService = /*#__PURE__*/function (_Service) {
|
|
|
1958
1966
|
* @operationId EqlTestController_GetQueryDescription
|
|
1959
1967
|
* @summary Get EQL result columns definitions.
|
|
1960
1968
|
* @request POST:/eql/description
|
|
1961
|
-
* @response `200`
|
|
1969
|
+
* @response `200` OK
|
|
1962
1970
|
*/
|
|
1963
1971
|
|
|
1964
1972
|
}, {
|
|
@@ -1974,7 +1982,7 @@ let EqlTestService = /*#__PURE__*/function (_Service) {
|
|
|
1974
1982
|
* @operationId EqlTestController_SetLayerParameterValue
|
|
1975
1983
|
* @summary Set EQL layer parameter.
|
|
1976
1984
|
* @request POST:/eql/setParam
|
|
1977
|
-
* @response `200`
|
|
1985
|
+
* @response `200` OK
|
|
1978
1986
|
*/
|
|
1979
1987
|
|
|
1980
1988
|
}, {
|
|
@@ -1990,7 +1998,7 @@ let EqlTestService = /*#__PURE__*/function (_Service) {
|
|
|
1990
1998
|
* @operationId EqlTestController_SetLayerParameters
|
|
1991
1999
|
* @summary Set EQL layer parameters.
|
|
1992
2000
|
* @request POST:/eql/setParams
|
|
1993
|
-
* @response `200`
|
|
2001
|
+
* @response `200` OK
|
|
1994
2002
|
*/
|
|
1995
2003
|
|
|
1996
2004
|
}, {
|
|
@@ -2006,7 +2014,7 @@ let EqlTestService = /*#__PURE__*/function (_Service) {
|
|
|
2006
2014
|
* @operationId EqlTestController_GetLayerParameters
|
|
2007
2015
|
* @summary Get EQL parameter.
|
|
2008
2016
|
* @request GET:/eql/getParam
|
|
2009
|
-
* @response `200`
|
|
2017
|
+
* @response `200` OK
|
|
2010
2018
|
*/
|
|
2011
2019
|
|
|
2012
2020
|
}, {
|
|
@@ -2022,7 +2030,7 @@ let EqlTestService = /*#__PURE__*/function (_Service) {
|
|
|
2022
2030
|
* @operationId EqlTestController_GetLayerParameters_1
|
|
2023
2031
|
* @summary Get all EQL parameters.
|
|
2024
2032
|
* @request GET:/eql/getParams
|
|
2025
|
-
* @response `200`
|
|
2033
|
+
* @response `200` OK
|
|
2026
2034
|
*/
|
|
2027
2035
|
|
|
2028
2036
|
}, {
|
|
@@ -2038,7 +2046,7 @@ let EqlTestService = /*#__PURE__*/function (_Service) {
|
|
|
2038
2046
|
* @operationId EqlTestController_RemoveLayerParameterValue
|
|
2039
2047
|
* @summary Remove EQL layer parameter.
|
|
2040
2048
|
* @request DELETE:/eql/removeParam
|
|
2041
|
-
* @response `200`
|
|
2049
|
+
* @response `200` OK
|
|
2042
2050
|
*/
|
|
2043
2051
|
|
|
2044
2052
|
}, {
|
|
@@ -2093,7 +2101,7 @@ let ExternalProvidersService = /*#__PURE__*/function (_Service) {
|
|
|
2093
2101
|
* @operationId ExternalProvidersController_VkLogin
|
|
2094
2102
|
* @summary The external login by vk.
|
|
2095
2103
|
* @request GET:/account/external/login/vk
|
|
2096
|
-
* @response `200`
|
|
2104
|
+
* @response `200` OK
|
|
2097
2105
|
*/
|
|
2098
2106
|
function vkLogin() {
|
|
2099
2107
|
return this.http.createUrl("/account/external/login/vk");
|
|
@@ -2106,7 +2114,7 @@ let ExternalProvidersService = /*#__PURE__*/function (_Service) {
|
|
|
2106
2114
|
* @operationId ExternalProvidersController_GoogleLogin
|
|
2107
2115
|
* @summary The external login by google.
|
|
2108
2116
|
* @request GET:/account/external/login/google
|
|
2109
|
-
* @response `200`
|
|
2117
|
+
* @response `200` OK
|
|
2110
2118
|
*/
|
|
2111
2119
|
|
|
2112
2120
|
}, {
|
|
@@ -2122,7 +2130,7 @@ let ExternalProvidersService = /*#__PURE__*/function (_Service) {
|
|
|
2122
2130
|
* @operationId ExternalProvidersController_FacebookLogin
|
|
2123
2131
|
* @summary The external login by facebook.
|
|
2124
2132
|
* @request GET:/account/external/login/facebook
|
|
2125
|
-
* @response `200`
|
|
2133
|
+
* @response `200` OK
|
|
2126
2134
|
*/
|
|
2127
2135
|
|
|
2128
2136
|
}, {
|
|
@@ -2138,7 +2146,7 @@ let ExternalProvidersService = /*#__PURE__*/function (_Service) {
|
|
|
2138
2146
|
* @operationId ExternalProvidersController_LoginCallback
|
|
2139
2147
|
* @summary The external login callback.
|
|
2140
2148
|
* @request GET:/account/external/login/callback
|
|
2141
|
-
* @response `200`
|
|
2149
|
+
* @response `200` OK
|
|
2142
2150
|
*/
|
|
2143
2151
|
|
|
2144
2152
|
}, {
|
|
@@ -2154,7 +2162,7 @@ let ExternalProvidersService = /*#__PURE__*/function (_Service) {
|
|
|
2154
2162
|
* @operationId ExternalProvidersController_UnbindVk
|
|
2155
2163
|
* @summary Unbind external login from current user account (google).
|
|
2156
2164
|
* @request DELETE:/account/external/unbind/vk
|
|
2157
|
-
* @response `200`
|
|
2165
|
+
* @response `200` OK
|
|
2158
2166
|
*/
|
|
2159
2167
|
|
|
2160
2168
|
}, {
|
|
@@ -2170,7 +2178,7 @@ let ExternalProvidersService = /*#__PURE__*/function (_Service) {
|
|
|
2170
2178
|
* @operationId ExternalProvidersController_UnbindGoogle
|
|
2171
2179
|
* @summary Unbind external login from current user account (google).
|
|
2172
2180
|
* @request DELETE:/account/external/unbind/google
|
|
2173
|
-
* @response `200`
|
|
2181
|
+
* @response `200` OK
|
|
2174
2182
|
*/
|
|
2175
2183
|
|
|
2176
2184
|
}, {
|
|
@@ -2186,7 +2194,7 @@ let ExternalProvidersService = /*#__PURE__*/function (_Service) {
|
|
|
2186
2194
|
* @operationId ExternalProvidersController_UnbindFacebook
|
|
2187
2195
|
* @summary Unbind external login from current user account (google).
|
|
2188
2196
|
* @request DELETE:/account/external/unbind/facebook
|
|
2189
|
-
* @response `200`
|
|
2197
|
+
* @response `200` OK
|
|
2190
2198
|
*/
|
|
2191
2199
|
|
|
2192
2200
|
}, {
|
|
@@ -2202,7 +2210,7 @@ let ExternalProvidersService = /*#__PURE__*/function (_Service) {
|
|
|
2202
2210
|
* @operationId ExternalProvidersController_BindVk
|
|
2203
2211
|
* @summary The external login by vk.
|
|
2204
2212
|
* @request GET:/account/external/bind/vk
|
|
2205
|
-
* @response `200`
|
|
2213
|
+
* @response `200` OK
|
|
2206
2214
|
*/
|
|
2207
2215
|
|
|
2208
2216
|
}, {
|
|
@@ -2218,7 +2226,7 @@ let ExternalProvidersService = /*#__PURE__*/function (_Service) {
|
|
|
2218
2226
|
* @operationId ExternalProvidersController_BindGoogle
|
|
2219
2227
|
* @summary The external login by vk.
|
|
2220
2228
|
* @request GET:/account/external/bind/google
|
|
2221
|
-
* @response `200`
|
|
2229
|
+
* @response `200` OK
|
|
2222
2230
|
*/
|
|
2223
2231
|
|
|
2224
2232
|
}, {
|
|
@@ -2234,7 +2242,7 @@ let ExternalProvidersService = /*#__PURE__*/function (_Service) {
|
|
|
2234
2242
|
* @operationId ExternalProvidersController_BindFacebook
|
|
2235
2243
|
* @summary The external login by vk.
|
|
2236
2244
|
* @request GET:/account/external/bind/facebook
|
|
2237
|
-
* @response `200`
|
|
2245
|
+
* @response `200` OK
|
|
2238
2246
|
*/
|
|
2239
2247
|
|
|
2240
2248
|
}, {
|
|
@@ -2250,7 +2258,7 @@ let ExternalProvidersService = /*#__PURE__*/function (_Service) {
|
|
|
2250
2258
|
* @operationId ExternalProvidersController_BindCallback
|
|
2251
2259
|
* @summary Bind external login to current user account.
|
|
2252
2260
|
* @request GET:/account/external/bind/callback
|
|
2253
|
-
* @response `200`
|
|
2261
|
+
* @response `200` OK
|
|
2254
2262
|
*/
|
|
2255
2263
|
|
|
2256
2264
|
}, {
|
|
@@ -2358,7 +2366,7 @@ let FeedbackService = /*#__PURE__*/function (_Service) {
|
|
|
2358
2366
|
* @operationId FeedbackController_IncreaseResourcesLimit
|
|
2359
2367
|
* @summary Increase resources limit request.
|
|
2360
2368
|
* @request POST:/feedback/limits
|
|
2361
|
-
* @response `200`
|
|
2369
|
+
* @response `200` OK
|
|
2362
2370
|
*/
|
|
2363
2371
|
function increaseResourcesLimit(query) {
|
|
2364
2372
|
return this.http.post("/feedback/limits", null, query).json();
|
|
@@ -2371,7 +2379,7 @@ let FeedbackService = /*#__PURE__*/function (_Service) {
|
|
|
2371
2379
|
* @operationId FeedbackController_MoreSymbols
|
|
2372
2380
|
* @summary More symbols request.
|
|
2373
2381
|
* @request POST:/feedback/symbol
|
|
2374
|
-
* @response `200`
|
|
2382
|
+
* @response `200` OK
|
|
2375
2383
|
*/
|
|
2376
2384
|
|
|
2377
2385
|
}, {
|
|
@@ -2387,7 +2395,7 @@ let FeedbackService = /*#__PURE__*/function (_Service) {
|
|
|
2387
2395
|
* @operationId FeedbackController_Feedback
|
|
2388
2396
|
* @summary Feedback request.
|
|
2389
2397
|
* @request POST:/feedback
|
|
2390
|
-
* @response `200`
|
|
2398
|
+
* @response `200` OK
|
|
2391
2399
|
*/
|
|
2392
2400
|
|
|
2393
2401
|
}, {
|
|
@@ -2449,7 +2457,7 @@ let StaticContentService = /*#__PURE__*/function (_Service) {
|
|
|
2449
2457
|
* @operationId StaticContentServiceController_DownloadFile
|
|
2450
2458
|
* @summary Returns a file stream by fileId.
|
|
2451
2459
|
* @request GET:/upload/file
|
|
2452
|
-
* @response `200`
|
|
2460
|
+
* @response `200` OK
|
|
2453
2461
|
*/
|
|
2454
2462
|
function downloadFile(query) {
|
|
2455
2463
|
return this.http.get("/upload/file", query).blob();
|
|
@@ -2462,7 +2470,7 @@ let StaticContentService = /*#__PURE__*/function (_Service) {
|
|
|
2462
2470
|
* @operationId StaticContentServiceController_UploadFile
|
|
2463
2471
|
* @summary Upload file to temporary session storage.
|
|
2464
2472
|
* @request POST:/upload/file
|
|
2465
|
-
* @response `200`
|
|
2473
|
+
* @response `200` OK
|
|
2466
2474
|
*/
|
|
2467
2475
|
|
|
2468
2476
|
}, {
|
|
@@ -2478,7 +2486,7 @@ let StaticContentService = /*#__PURE__*/function (_Service) {
|
|
|
2478
2486
|
* @operationId StaticContentServiceController_DeleteFile
|
|
2479
2487
|
* @summary Delete file from temporary session storage.
|
|
2480
2488
|
* @request DELETE:/upload/file
|
|
2481
|
-
* @response `200`
|
|
2489
|
+
* @response `200` OK
|
|
2482
2490
|
*/
|
|
2483
2491
|
|
|
2484
2492
|
}, {
|
|
@@ -2494,7 +2502,7 @@ let StaticContentService = /*#__PURE__*/function (_Service) {
|
|
|
2494
2502
|
* @operationId StaticContentServiceController_GetFileInfo
|
|
2495
2503
|
* @summary Returns a file info download by url.
|
|
2496
2504
|
* @request GET:/upload/fileInfo
|
|
2497
|
-
* @response `200`
|
|
2505
|
+
* @response `200` OK
|
|
2498
2506
|
*/
|
|
2499
2507
|
|
|
2500
2508
|
}, {
|
|
@@ -2559,7 +2567,7 @@ let FiltersService = /*#__PURE__*/function (_Service) {
|
|
|
2559
2567
|
* @operationId FiltersServiceController_Get
|
|
2560
2568
|
* @summary Returns the filter by its id.
|
|
2561
2569
|
* @request GET:/filters/{id}
|
|
2562
|
-
* @response `200`
|
|
2570
|
+
* @response `200` OK
|
|
2563
2571
|
*/
|
|
2564
2572
|
function get(id) {
|
|
2565
2573
|
return this.http.get("/filters/" + id).text();
|
|
@@ -2572,7 +2580,7 @@ let FiltersService = /*#__PURE__*/function (_Service) {
|
|
|
2572
2580
|
* @operationId FiltersServiceController_Update
|
|
2573
2581
|
* @summary Replaces a filter and gives it a new id.
|
|
2574
2582
|
* @request POST:/filters/{id}
|
|
2575
|
-
* @response `200`
|
|
2583
|
+
* @response `200` OK
|
|
2576
2584
|
*/
|
|
2577
2585
|
|
|
2578
2586
|
}, {
|
|
@@ -2588,7 +2596,7 @@ let FiltersService = /*#__PURE__*/function (_Service) {
|
|
|
2588
2596
|
* @operationId FiltersServiceController_Create
|
|
2589
2597
|
* @summary Creates a new filter.
|
|
2590
2598
|
* @request POST:/filters
|
|
2591
|
-
* @response `200`
|
|
2599
|
+
* @response `200` OK
|
|
2592
2600
|
*/
|
|
2593
2601
|
|
|
2594
2602
|
}, {
|
|
@@ -2643,7 +2651,7 @@ let GeneralService = /*#__PURE__*/function (_Service) {
|
|
|
2643
2651
|
* @operationId GeneralController_GetServerInfo
|
|
2644
2652
|
* @summary Returns basic information about the server.
|
|
2645
2653
|
* @request GET:/
|
|
2646
|
-
* @response `200`
|
|
2654
|
+
* @response `200` OK
|
|
2647
2655
|
*/
|
|
2648
2656
|
function getServerInfo() {
|
|
2649
2657
|
return this.http.get("/").json();
|
|
@@ -2656,7 +2664,7 @@ let GeneralService = /*#__PURE__*/function (_Service) {
|
|
|
2656
2664
|
* @operationId GeneralController_GetFunctionsList
|
|
2657
2665
|
* @summary Returns list of available functions.
|
|
2658
2666
|
* @request GET:/functions
|
|
2659
|
-
* @response `200`
|
|
2667
|
+
* @response `200` OK
|
|
2660
2668
|
*/
|
|
2661
2669
|
|
|
2662
2670
|
}, {
|
|
@@ -2714,7 +2722,7 @@ let GeocodeService = /*#__PURE__*/function (_Service) {
|
|
|
2714
2722
|
* @operationId GeocodeServiceController_Geocode
|
|
2715
2723
|
* @summary Returns geocode geometry.
|
|
2716
2724
|
* @request GET:/geocode/{providerName}
|
|
2717
|
-
* @response `200`
|
|
2725
|
+
* @response `200` OK
|
|
2718
2726
|
*/
|
|
2719
2727
|
function geocode(_ref) {
|
|
2720
2728
|
let {
|
|
@@ -2732,7 +2740,7 @@ let GeocodeService = /*#__PURE__*/function (_Service) {
|
|
|
2732
2740
|
* @operationId GeocodeServiceController_GeocodeByPoint
|
|
2733
2741
|
* @summary Returns geocode address from point geometry.
|
|
2734
2742
|
* @request GET:/geocode/{providerName}/geocodeByPoint
|
|
2735
|
-
* @response `200`
|
|
2743
|
+
* @response `200` OK
|
|
2736
2744
|
*/
|
|
2737
2745
|
|
|
2738
2746
|
}, {
|
|
@@ -2753,7 +2761,7 @@ let GeocodeService = /*#__PURE__*/function (_Service) {
|
|
|
2753
2761
|
* @operationId GeocodeServiceController_Suggest
|
|
2754
2762
|
* @summary Returns geocode suggest.
|
|
2755
2763
|
* @request GET:/geocode/{providerName}/suggest
|
|
2756
|
-
* @response `200`
|
|
2764
|
+
* @response `200` OK
|
|
2757
2765
|
*/
|
|
2758
2766
|
|
|
2759
2767
|
}, {
|
|
@@ -2830,7 +2838,7 @@ let IceRouterService = /*#__PURE__*/function (_Service) {
|
|
|
2830
2838
|
* @operationId IceRouterController_StartTask
|
|
2831
2839
|
* @summary Start route build between start and end points.
|
|
2832
2840
|
* @request POST:/ice-router/tasks
|
|
2833
|
-
* @response `200`
|
|
2841
|
+
* @response `200` OK
|
|
2834
2842
|
*/
|
|
2835
2843
|
function startTask(data) {
|
|
2836
2844
|
return this.http.post("/ice-router/tasks", data).text();
|
|
@@ -2843,7 +2851,7 @@ let IceRouterService = /*#__PURE__*/function (_Service) {
|
|
|
2843
2851
|
* @operationId IceRouterController_GetResult
|
|
2844
2852
|
* @summary Get task result.
|
|
2845
2853
|
* @request GET:/ice-router/tasks/{id}
|
|
2846
|
-
* @response `200`
|
|
2854
|
+
* @response `200` OK
|
|
2847
2855
|
*/
|
|
2848
2856
|
|
|
2849
2857
|
}, {
|
|
@@ -2898,7 +2906,7 @@ let ImportService = /*#__PURE__*/function (_Service) {
|
|
|
2898
2906
|
* @operationId ImportServiceController_GetDataSchema
|
|
2899
2907
|
* @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.
|
|
2900
2908
|
* @request GET:/import/dataSchema
|
|
2901
|
-
* @response `200`
|
|
2909
|
+
* @response `200` OK
|
|
2902
2910
|
*/
|
|
2903
2911
|
function getDataSchema(query) {
|
|
2904
2912
|
return this.http.get("/import/dataSchema", query).json();
|
|
@@ -2911,7 +2919,7 @@ let ImportService = /*#__PURE__*/function (_Service) {
|
|
|
2911
2919
|
* @operationId ImportServiceController_GetFeaturesCount
|
|
2912
2920
|
* @summary Returns the features count of the given file in temporary static storage.
|
|
2913
2921
|
* @request POST:/import/count
|
|
2914
|
-
* @response `200`
|
|
2922
|
+
* @response `200` OK
|
|
2915
2923
|
*/
|
|
2916
2924
|
|
|
2917
2925
|
}, {
|
|
@@ -2927,7 +2935,7 @@ let ImportService = /*#__PURE__*/function (_Service) {
|
|
|
2927
2935
|
* @operationId ImportServiceController_ReadPart
|
|
2928
2936
|
* @summary Returns the features of the given file in temporary static storage.
|
|
2929
2937
|
* @request GET:/import/read
|
|
2930
|
-
* @response `200`
|
|
2938
|
+
* @response `200` OK
|
|
2931
2939
|
*/
|
|
2932
2940
|
|
|
2933
2941
|
}, {
|
|
@@ -2943,7 +2951,7 @@ let ImportService = /*#__PURE__*/function (_Service) {
|
|
|
2943
2951
|
* @operationId ImportServiceController_GetExternalWmsLayers
|
|
2944
2952
|
* @summary Get list of external WMS layers.
|
|
2945
2953
|
* @request GET:/import/wms
|
|
2946
|
-
* @response `200`
|
|
2954
|
+
* @response `200` OK
|
|
2947
2955
|
*/
|
|
2948
2956
|
|
|
2949
2957
|
}, {
|
|
@@ -2959,7 +2967,7 @@ let ImportService = /*#__PURE__*/function (_Service) {
|
|
|
2959
2967
|
* @operationId ImportServiceController_GetExternalPbfLayers
|
|
2960
2968
|
* @summary Get list of external PBF layers.
|
|
2961
2969
|
* @request GET:/import/pbf
|
|
2962
|
-
* @response `200`
|
|
2970
|
+
* @response `200` OK
|
|
2963
2971
|
*/
|
|
2964
2972
|
|
|
2965
2973
|
}, {
|
|
@@ -2975,7 +2983,7 @@ let ImportService = /*#__PURE__*/function (_Service) {
|
|
|
2975
2983
|
* @operationId ImportServiceController_GetExternalPbfFeatures
|
|
2976
2984
|
* @summary Get features list in external PBF layer.
|
|
2977
2985
|
* @request GET:/import/pbf/features
|
|
2978
|
-
* @response `200`
|
|
2986
|
+
* @response `200` OK
|
|
2979
2987
|
*/
|
|
2980
2988
|
|
|
2981
2989
|
}, {
|
|
@@ -2991,7 +2999,7 @@ let ImportService = /*#__PURE__*/function (_Service) {
|
|
|
2991
2999
|
* @operationId ImportServiceController_GetExternalArcgisFSLayers
|
|
2992
3000
|
* @summary Get list of external ArcGis FeatureServer layers.
|
|
2993
3001
|
* @request GET:/import/arcgisfeatureservice
|
|
2994
|
-
* @response `200`
|
|
3002
|
+
* @response `200` OK
|
|
2995
3003
|
*/
|
|
2996
3004
|
|
|
2997
3005
|
}, {
|
|
@@ -3007,7 +3015,7 @@ let ImportService = /*#__PURE__*/function (_Service) {
|
|
|
3007
3015
|
* @operationId ImportServiceController_GetExternalArcGisLayers
|
|
3008
3016
|
* @summary Get list of external ArcGis MapServer layers.
|
|
3009
3017
|
* @request GET:/import/arcgismapservice
|
|
3010
|
-
* @response `200`
|
|
3018
|
+
* @response `200` OK
|
|
3011
3019
|
*/
|
|
3012
3020
|
|
|
3013
3021
|
}, {
|
|
@@ -3023,7 +3031,7 @@ let ImportService = /*#__PURE__*/function (_Service) {
|
|
|
3023
3031
|
* @operationId ImportServiceController_GetRasterAttributes
|
|
3024
3032
|
* @summary Parse raster attributes from file name.
|
|
3025
3033
|
* @request GET:/import/rasterAttributes
|
|
3026
|
-
* @response `200`
|
|
3034
|
+
* @response `200` OK
|
|
3027
3035
|
*/
|
|
3028
3036
|
|
|
3029
3037
|
}, {
|
|
@@ -3039,7 +3047,7 @@ let ImportService = /*#__PURE__*/function (_Service) {
|
|
|
3039
3047
|
* @operationId ImportServiceController_GetRasterMeta
|
|
3040
3048
|
* @summary Get raster meta data.
|
|
3041
3049
|
* @request GET:/import/rasterMeta
|
|
3042
|
-
* @response `200`
|
|
3050
|
+
* @response `200` OK
|
|
3043
3051
|
*/
|
|
3044
3052
|
|
|
3045
3053
|
}, {
|
|
@@ -3114,7 +3122,7 @@ let LayersService = /*#__PURE__*/function (_Service) {
|
|
|
3114
3122
|
* @operationId LayersController_GetLayersList
|
|
3115
3123
|
* @summary Returns list of the available layers.
|
|
3116
3124
|
* @request GET:/layers
|
|
3117
|
-
* @response `200`
|
|
3125
|
+
* @response `200` OK
|
|
3118
3126
|
*/
|
|
3119
3127
|
function getLayersList(query) {
|
|
3120
3128
|
return this.http.get("/layers", query).json();
|
|
@@ -3127,7 +3135,7 @@ let LayersService = /*#__PURE__*/function (_Service) {
|
|
|
3127
3135
|
* @operationId LayersController_SetPermissionsBatch
|
|
3128
3136
|
* @summary Overrides multiply resources permissions in single batch.
|
|
3129
3137
|
* @request PUT:/layers
|
|
3130
|
-
* @response `200`
|
|
3138
|
+
* @response `200` OK
|
|
3131
3139
|
*/
|
|
3132
3140
|
|
|
3133
3141
|
}, {
|
|
@@ -3143,7 +3151,7 @@ let LayersService = /*#__PURE__*/function (_Service) {
|
|
|
3143
3151
|
* @operationId LayersController_DeleteResources
|
|
3144
3152
|
* @summary Bulk delete resources.
|
|
3145
3153
|
* @request DELETE:/layers
|
|
3146
|
-
* @response `200`
|
|
3154
|
+
* @response `200` OK
|
|
3147
3155
|
*/
|
|
3148
3156
|
|
|
3149
3157
|
}, {
|
|
@@ -3159,7 +3167,7 @@ let LayersService = /*#__PURE__*/function (_Service) {
|
|
|
3159
3167
|
* @operationId LayersController_GetLayerInfoAsync
|
|
3160
3168
|
* @summary Returns the layer information.
|
|
3161
3169
|
* @request GET:/layers/{name}
|
|
3162
|
-
* @response `200`
|
|
3170
|
+
* @response `200` OK
|
|
3163
3171
|
*/
|
|
3164
3172
|
|
|
3165
3173
|
}, {
|
|
@@ -3175,7 +3183,7 @@ let LayersService = /*#__PURE__*/function (_Service) {
|
|
|
3175
3183
|
* @operationId LayersController_DeleteResource
|
|
3176
3184
|
* @summary Deletes resource.
|
|
3177
3185
|
* @request DELETE:/layers/{name}
|
|
3178
|
-
* @response `200`
|
|
3186
|
+
* @response `200` OK
|
|
3179
3187
|
*/
|
|
3180
3188
|
|
|
3181
3189
|
}, {
|
|
@@ -3191,7 +3199,7 @@ let LayersService = /*#__PURE__*/function (_Service) {
|
|
|
3191
3199
|
* @operationId LayersController_GetLayersInfoAsync
|
|
3192
3200
|
* @summary Returns the layers information.
|
|
3193
3201
|
* @request GET:/layers/batchInfo
|
|
3194
|
-
* @response `200`
|
|
3202
|
+
* @response `200` OK
|
|
3195
3203
|
*/
|
|
3196
3204
|
|
|
3197
3205
|
}, {
|
|
@@ -3243,7 +3251,7 @@ let LayersService = /*#__PURE__*/function (_Service) {
|
|
|
3243
3251
|
* @operationId LayersController_PublishRouteService
|
|
3244
3252
|
* @summary Creates new Route Service.
|
|
3245
3253
|
* @request POST:/layers#type=RouteService
|
|
3246
|
-
* @response `200`
|
|
3254
|
+
* @response `200` OK
|
|
3247
3255
|
*/
|
|
3248
3256
|
|
|
3249
3257
|
}, {
|
|
@@ -3261,7 +3269,7 @@ let LayersService = /*#__PURE__*/function (_Service) {
|
|
|
3261
3269
|
* @operationId LayersController_PublishLinearService
|
|
3262
3270
|
* @summary Creates new Linear Service.
|
|
3263
3271
|
* @request POST:/layers#type=LinearService
|
|
3264
|
-
* @response `200`
|
|
3272
|
+
* @response `200` OK
|
|
3265
3273
|
*/
|
|
3266
3274
|
|
|
3267
3275
|
}, {
|
|
@@ -3565,7 +3573,7 @@ let LayersService = /*#__PURE__*/function (_Service) {
|
|
|
3565
3573
|
* @operationId LayersController_GetFeatures
|
|
3566
3574
|
* @summary Returns list of the layer features.
|
|
3567
3575
|
* @request POST:/layers/{name}/features/query
|
|
3568
|
-
* @response `200`
|
|
3576
|
+
* @response `200` OK
|
|
3569
3577
|
*/
|
|
3570
3578
|
|
|
3571
3579
|
}, {
|
|
@@ -3581,7 +3589,7 @@ let LayersService = /*#__PURE__*/function (_Service) {
|
|
|
3581
3589
|
* @operationId LayersController_GetFeatures_1
|
|
3582
3590
|
* @summary Returns list of the layer features.
|
|
3583
3591
|
* @request GET:/layers/{name}/features
|
|
3584
|
-
* @response `200`
|
|
3592
|
+
* @response `200` OK
|
|
3585
3593
|
*/
|
|
3586
3594
|
|
|
3587
3595
|
}, {
|
|
@@ -3602,7 +3610,7 @@ let LayersService = /*#__PURE__*/function (_Service) {
|
|
|
3602
3610
|
* @operationId LayersController_DeleteFeature
|
|
3603
3611
|
* @summary Deletes feature by id.
|
|
3604
3612
|
* @request DELETE:/layers/{name}/features
|
|
3605
|
-
* @response `200`
|
|
3613
|
+
* @response `200` OK
|
|
3606
3614
|
*/
|
|
3607
3615
|
|
|
3608
3616
|
}, {
|
|
@@ -3623,7 +3631,7 @@ let LayersService = /*#__PURE__*/function (_Service) {
|
|
|
3623
3631
|
* @operationId LayersController_CreateFeatures
|
|
3624
3632
|
* @summary Creates features list of type.SPCore.Connectors.Connectors.Base.Models.Features.FeatureDc.
|
|
3625
3633
|
* @request POST:/layers/{name}/features
|
|
3626
|
-
* @response `200`
|
|
3634
|
+
* @response `200` OK
|
|
3627
3635
|
*/
|
|
3628
3636
|
|
|
3629
3637
|
}, {
|
|
@@ -3639,7 +3647,7 @@ let LayersService = /*#__PURE__*/function (_Service) {
|
|
|
3639
3647
|
* @operationId LayersController_UpdateFeature
|
|
3640
3648
|
* @summary Updates features list SPCore.Connectors.Connectors.Base.Models.Features.FeatureDc.
|
|
3641
3649
|
* @request PATCH:/layers/{name}/features
|
|
3642
|
-
* @response `200`
|
|
3650
|
+
* @response `200` OK
|
|
3643
3651
|
*/
|
|
3644
3652
|
|
|
3645
3653
|
}, {
|
|
@@ -3655,7 +3663,7 @@ let LayersService = /*#__PURE__*/function (_Service) {
|
|
|
3655
3663
|
* @operationId LayersController_FeaturesContains
|
|
3656
3664
|
* @summary Gets filtered features with given filter.
|
|
3657
3665
|
* @request GET:/layers/{name}/features/contains
|
|
3658
|
-
* @response `200`
|
|
3666
|
+
* @response `200` OK
|
|
3659
3667
|
*/
|
|
3660
3668
|
|
|
3661
3669
|
}, {
|
|
@@ -3676,7 +3684,7 @@ let LayersService = /*#__PURE__*/function (_Service) {
|
|
|
3676
3684
|
* @operationId LayersController_GetByIdAsync
|
|
3677
3685
|
* @summary Gets feature by id.
|
|
3678
3686
|
* @request GET:/layers/{name}/features/{id}
|
|
3679
|
-
* @response `200`
|
|
3687
|
+
* @response `200` OK
|
|
3680
3688
|
*/
|
|
3681
3689
|
|
|
3682
3690
|
}, {
|
|
@@ -3698,7 +3706,7 @@ let LayersService = /*#__PURE__*/function (_Service) {
|
|
|
3698
3706
|
* @operationId LayersController_Unite
|
|
3699
3707
|
* @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.
|
|
3700
3708
|
* @request POST:/layers/{name}/features/{id}/unite
|
|
3701
|
-
* @response `200`
|
|
3709
|
+
* @response `200` OK
|
|
3702
3710
|
*/
|
|
3703
3711
|
|
|
3704
3712
|
}, {
|
|
@@ -3720,7 +3728,7 @@ let LayersService = /*#__PURE__*/function (_Service) {
|
|
|
3720
3728
|
* @operationId LayersController_Subtract
|
|
3721
3729
|
* @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.
|
|
3722
3730
|
* @request POST:/layers/{name}/features/{id}/subtract
|
|
3723
|
-
* @response `200`
|
|
3731
|
+
* @response `200` OK
|
|
3724
3732
|
*/
|
|
3725
3733
|
|
|
3726
3734
|
}, {
|
|
@@ -3742,7 +3750,7 @@ let LayersService = /*#__PURE__*/function (_Service) {
|
|
|
3742
3750
|
* @operationId LayersController_GetTilesLayerImage
|
|
3743
3751
|
* @summary Render tile with input indexes.
|
|
3744
3752
|
* @request GET:/layers/{name}/tile/{z}/{x}/{y}
|
|
3745
|
-
* @response `200`
|
|
3753
|
+
* @response `200` OK
|
|
3746
3754
|
*/
|
|
3747
3755
|
|
|
3748
3756
|
}, {
|
|
@@ -3766,7 +3774,7 @@ let LayersService = /*#__PURE__*/function (_Service) {
|
|
|
3766
3774
|
* @operationId LayersController_GetLayerImage
|
|
3767
3775
|
* @summary Renders the layer to the image of the requested size.
|
|
3768
3776
|
* @request GET:/layers/{name}/export
|
|
3769
|
-
* @response `200`
|
|
3777
|
+
* @response `200` OK
|
|
3770
3778
|
*/
|
|
3771
3779
|
|
|
3772
3780
|
}, {
|
|
@@ -3787,7 +3795,7 @@ let LayersService = /*#__PURE__*/function (_Service) {
|
|
|
3787
3795
|
* @operationId LayersController_GetLayerExtent
|
|
3788
3796
|
* @summary Returns the extent of the layer.
|
|
3789
3797
|
* @request GET:/layers/{name}/extent
|
|
3790
|
-
* @response `200`
|
|
3798
|
+
* @response `200` OK
|
|
3791
3799
|
*/
|
|
3792
3800
|
|
|
3793
3801
|
}, {
|
|
@@ -3808,7 +3816,7 @@ let LayersService = /*#__PURE__*/function (_Service) {
|
|
|
3808
3816
|
* @operationId LayersController_GetByGeometryAsync
|
|
3809
3817
|
* @summary Gets the features within the given geometry.
|
|
3810
3818
|
* @request GET:/layers/{name}/features/getByGeometry
|
|
3811
|
-
* @response `200`
|
|
3819
|
+
* @response `200` OK
|
|
3812
3820
|
*/
|
|
3813
3821
|
|
|
3814
3822
|
}, {
|
|
@@ -3829,7 +3837,7 @@ let LayersService = /*#__PURE__*/function (_Service) {
|
|
|
3829
3837
|
* @operationId LayersController_GetByGeometryAsync_1
|
|
3830
3838
|
* @summary Gets the features within the given geometry.
|
|
3831
3839
|
* @request POST:/layers/{name}/features/getByGeometry
|
|
3832
|
-
* @response `200`
|
|
3840
|
+
* @response `200` OK
|
|
3833
3841
|
*/
|
|
3834
3842
|
|
|
3835
3843
|
}, {
|
|
@@ -3850,7 +3858,7 @@ let LayersService = /*#__PURE__*/function (_Service) {
|
|
|
3850
3858
|
* @operationId LayersController_DeleteFeatures
|
|
3851
3859
|
* @summary Delete a list of features by given ids. Example: ids=1,2,3.
|
|
3852
3860
|
* @request DELETE:/layers/{name}/features/deleteByIds
|
|
3853
|
-
* @response `200`
|
|
3861
|
+
* @response `200` OK
|
|
3854
3862
|
*/
|
|
3855
3863
|
|
|
3856
3864
|
}, {
|
|
@@ -3871,7 +3879,7 @@ let LayersService = /*#__PURE__*/function (_Service) {
|
|
|
3871
3879
|
* @operationId LayersController_DeleteByCondition
|
|
3872
3880
|
* @summary Delete a list of features by condition with exclude given ids.
|
|
3873
3881
|
* @request DELETE:/layers/{name}/features/deleteByCondition
|
|
3874
|
-
* @response `200`
|
|
3882
|
+
* @response `200` OK
|
|
3875
3883
|
*/
|
|
3876
3884
|
|
|
3877
3885
|
}, {
|
|
@@ -3892,7 +3900,7 @@ let LayersService = /*#__PURE__*/function (_Service) {
|
|
|
3892
3900
|
* @operationId LayersController_GetByGeometryAsync_2
|
|
3893
3901
|
* @summary Gets the features by click position.
|
|
3894
3902
|
* @request GET:/layers/{name}/features/getByGeometryByClick
|
|
3895
|
-
* @response `200`
|
|
3903
|
+
* @response `200` OK
|
|
3896
3904
|
*/
|
|
3897
3905
|
|
|
3898
3906
|
}, {
|
|
@@ -3913,7 +3921,7 @@ let LayersService = /*#__PURE__*/function (_Service) {
|
|
|
3913
3921
|
* @operationId LayersController_Classify
|
|
3914
3922
|
* @summary Returns the classified attribute values that correspond to the given number of classes.
|
|
3915
3923
|
* @request GET:/layers/{name}/classify
|
|
3916
|
-
* @response `200`
|
|
3924
|
+
* @response `200` OK
|
|
3917
3925
|
*/
|
|
3918
3926
|
|
|
3919
3927
|
}, {
|
|
@@ -3934,7 +3942,7 @@ let LayersService = /*#__PURE__*/function (_Service) {
|
|
|
3934
3942
|
* @operationId LayersController_Distincts
|
|
3935
3943
|
* @summary Returns distinct attribute values and their count.
|
|
3936
3944
|
* @request GET:/layers/{name}/distincts
|
|
3937
|
-
* @response `200`
|
|
3945
|
+
* @response `200` OK
|
|
3938
3946
|
*/
|
|
3939
3947
|
|
|
3940
3948
|
}, {
|
|
@@ -3955,7 +3963,7 @@ let LayersService = /*#__PURE__*/function (_Service) {
|
|
|
3955
3963
|
* @operationId LayersController_AggregateAttribute
|
|
3956
3964
|
* @summary Returns aggregated value of given attribute aggregationAttributeName within a given groups groups.
|
|
3957
3965
|
* @request GET:/layers/{name}/aggregate-values
|
|
3958
|
-
* @response `200`
|
|
3966
|
+
* @response `200` OK
|
|
3959
3967
|
*/
|
|
3960
3968
|
|
|
3961
3969
|
}, {
|
|
@@ -3976,7 +3984,7 @@ let LayersService = /*#__PURE__*/function (_Service) {
|
|
|
3976
3984
|
* @operationId LayersController_GetFilteredFeaturesCount
|
|
3977
3985
|
* @summary Get features count according layer filter of the given name.
|
|
3978
3986
|
* @request GET:/layers/{name}/features/count
|
|
3979
|
-
* @response `200`
|
|
3987
|
+
* @response `200` OK
|
|
3980
3988
|
*/
|
|
3981
3989
|
|
|
3982
3990
|
}, {
|
|
@@ -3997,7 +4005,7 @@ let LayersService = /*#__PURE__*/function (_Service) {
|
|
|
3997
4005
|
* @operationId LayersController_GetFilteredFeaturesCount_1
|
|
3998
4006
|
* @summary Get features count according layer filter of the given name.
|
|
3999
4007
|
* @request POST:/layers/{name}/features/count
|
|
4000
|
-
* @response `200`
|
|
4008
|
+
* @response `200` OK
|
|
4001
4009
|
*/
|
|
4002
4010
|
|
|
4003
4011
|
}, {
|
|
@@ -4013,7 +4021,7 @@ let LayersService = /*#__PURE__*/function (_Service) {
|
|
|
4013
4021
|
* @operationId LayersController_EditAttributes
|
|
4014
4022
|
* @summary Edit attributes with editInfo.
|
|
4015
4023
|
* @request POST:/layers/{name}/features/edit-attributes
|
|
4016
|
-
* @response `200`
|
|
4024
|
+
* @response `200` OK
|
|
4017
4025
|
*/
|
|
4018
4026
|
|
|
4019
4027
|
}, {
|
|
@@ -4029,7 +4037,7 @@ let LayersService = /*#__PURE__*/function (_Service) {
|
|
|
4029
4037
|
* @operationId LayersController_SelectFeatures
|
|
4030
4038
|
* @summary Selects features from the given layers by the visual point on the map.
|
|
4031
4039
|
* @request GET:/layers/features/select
|
|
4032
|
-
* @response `200`
|
|
4040
|
+
* @response `200` OK
|
|
4033
4041
|
*/
|
|
4034
4042
|
|
|
4035
4043
|
}, {
|
|
@@ -4045,7 +4053,7 @@ let LayersService = /*#__PURE__*/function (_Service) {
|
|
|
4045
4053
|
* @operationId LayersController_ValidateExpression
|
|
4046
4054
|
* @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.
|
|
4047
4055
|
* @request GET:/layers/{layerName}/validateExpression
|
|
4048
|
-
* @response `200`
|
|
4056
|
+
* @response `200` OK
|
|
4049
4057
|
* @response `400` Bad Request
|
|
4050
4058
|
*/
|
|
4051
4059
|
|
|
@@ -4067,7 +4075,7 @@ let LayersService = /*#__PURE__*/function (_Service) {
|
|
|
4067
4075
|
* @operationId LayersController_GetRasterMeta
|
|
4068
4076
|
* @summary Get raster metadata.
|
|
4069
4077
|
* @request GET:/layers/{name}/{id}/metadata
|
|
4070
|
-
* @response `200`
|
|
4078
|
+
* @response `200` OK
|
|
4071
4079
|
*/
|
|
4072
4080
|
|
|
4073
4081
|
}, {
|
|
@@ -4089,7 +4097,7 @@ let LayersService = /*#__PURE__*/function (_Service) {
|
|
|
4089
4097
|
* @operationId LayersController_CreateRoute
|
|
4090
4098
|
* @summary Create new route (feature) from source features.
|
|
4091
4099
|
* @request POST:/layers/{name}/createRoute
|
|
4092
|
-
* @response `200`
|
|
4100
|
+
* @response `200` OK
|
|
4093
4101
|
*/
|
|
4094
4102
|
|
|
4095
4103
|
}, {
|
|
@@ -4105,7 +4113,7 @@ let LayersService = /*#__PURE__*/function (_Service) {
|
|
|
4105
4113
|
* @operationId LayersController_ApplyStyle
|
|
4106
4114
|
* @summary Create data layout and image layout for given style.
|
|
4107
4115
|
* @request PUT:/layers/{name}/style
|
|
4108
|
-
* @response `200`
|
|
4116
|
+
* @response `200` OK
|
|
4109
4117
|
*/
|
|
4110
4118
|
|
|
4111
4119
|
}, {
|
|
@@ -4121,7 +4129,7 @@ let LayersService = /*#__PURE__*/function (_Service) {
|
|
|
4121
4129
|
* @operationId LayersController_GetStyle
|
|
4122
4130
|
* @summary Get style of the given layer.
|
|
4123
4131
|
* @request GET:/layers/{name}/style
|
|
4124
|
-
* @response `200`
|
|
4132
|
+
* @response `200` OK
|
|
4125
4133
|
*/
|
|
4126
4134
|
|
|
4127
4135
|
}, {
|
|
@@ -4137,7 +4145,7 @@ let LayersService = /*#__PURE__*/function (_Service) {
|
|
|
4137
4145
|
* @operationId LayersController_GetImageLayout
|
|
4138
4146
|
* @summary Get date layout.
|
|
4139
4147
|
* @request GET:/layers/{name}/style/sprite.png
|
|
4140
|
-
* @response `200`
|
|
4148
|
+
* @response `200` OK
|
|
4141
4149
|
*/
|
|
4142
4150
|
|
|
4143
4151
|
}, {
|
|
@@ -4153,7 +4161,7 @@ let LayersService = /*#__PURE__*/function (_Service) {
|
|
|
4153
4161
|
* @operationId LayersController_GetDataLayout
|
|
4154
4162
|
* @summary Get image layout.
|
|
4155
4163
|
* @request GET:/layers/{name}/style/sprite.json
|
|
4156
|
-
* @response `200`
|
|
4164
|
+
* @response `200` OK
|
|
4157
4165
|
*/
|
|
4158
4166
|
|
|
4159
4167
|
}, {
|
|
@@ -4169,7 +4177,7 @@ let LayersService = /*#__PURE__*/function (_Service) {
|
|
|
4169
4177
|
* @operationId LayersController_GetPreview
|
|
4170
4178
|
* @summary Gets preview of resource.
|
|
4171
4179
|
* @request GET:/layers/{name}/preview
|
|
4172
|
-
* @response `200`
|
|
4180
|
+
* @response `200` OK
|
|
4173
4181
|
*/
|
|
4174
4182
|
|
|
4175
4183
|
}, {
|
|
@@ -4185,7 +4193,7 @@ let LayersService = /*#__PURE__*/function (_Service) {
|
|
|
4185
4193
|
* @operationId LayersController_SetPreview
|
|
4186
4194
|
* @summary Sets preview to the resource.
|
|
4187
4195
|
* @request POST:/layers/{name}/preview
|
|
4188
|
-
* @response `200`
|
|
4196
|
+
* @response `200` OK
|
|
4189
4197
|
*/
|
|
4190
4198
|
|
|
4191
4199
|
}, {
|
|
@@ -4201,7 +4209,7 @@ let LayersService = /*#__PURE__*/function (_Service) {
|
|
|
4201
4209
|
* @operationId LayersController_DeletePreview
|
|
4202
4210
|
* @summary Delete resource preview.
|
|
4203
4211
|
* @request DELETE:/layers/{name}/preview
|
|
4204
|
-
* @response `200`
|
|
4212
|
+
* @response `200` OK
|
|
4205
4213
|
*/
|
|
4206
4214
|
|
|
4207
4215
|
}, {
|
|
@@ -4217,7 +4225,7 @@ let LayersService = /*#__PURE__*/function (_Service) {
|
|
|
4217
4225
|
* @operationId LayersController_IsExistsAsync
|
|
4218
4226
|
* @summary Check is resource exists.
|
|
4219
4227
|
* @request GET:/layers/{name}/exists
|
|
4220
|
-
* @response `200`
|
|
4228
|
+
* @response `200` OK
|
|
4221
4229
|
*/
|
|
4222
4230
|
|
|
4223
4231
|
}, {
|
|
@@ -4233,7 +4241,7 @@ let LayersService = /*#__PURE__*/function (_Service) {
|
|
|
4233
4241
|
* @operationId LayersController_GetResourceDependencies
|
|
4234
4242
|
* @summary Get resource dependencies.
|
|
4235
4243
|
* @request GET:/layers/{name}/dependencies
|
|
4236
|
-
* @response `200`
|
|
4244
|
+
* @response `200` OK
|
|
4237
4245
|
*/
|
|
4238
4246
|
|
|
4239
4247
|
}, {
|
|
@@ -4249,7 +4257,7 @@ let LayersService = /*#__PURE__*/function (_Service) {
|
|
|
4249
4257
|
* @operationId LayersController_GetResourceReferences
|
|
4250
4258
|
* @summary Returns the resource dependency information.
|
|
4251
4259
|
* @request GET:/layers/{name}/references
|
|
4252
|
-
* @response `200`
|
|
4260
|
+
* @response `200` OK
|
|
4253
4261
|
*/
|
|
4254
4262
|
|
|
4255
4263
|
}, {
|
|
@@ -4265,7 +4273,7 @@ let LayersService = /*#__PURE__*/function (_Service) {
|
|
|
4265
4273
|
* @operationId LayersController_GetPermissions
|
|
4266
4274
|
* @summary Returns resource permissions.
|
|
4267
4275
|
* @request GET:/layers/{name}/permissions
|
|
4268
|
-
* @response `200`
|
|
4276
|
+
* @response `200` OK
|
|
4269
4277
|
*/
|
|
4270
4278
|
|
|
4271
4279
|
}, {
|
|
@@ -4281,7 +4289,7 @@ let LayersService = /*#__PURE__*/function (_Service) {
|
|
|
4281
4289
|
* @operationId LayersController_AddPermissions
|
|
4282
4290
|
* @summary Adds permissions for the layer, combining existing permissions with the given one.
|
|
4283
4291
|
* @request POST:/layers/{name}/permissions
|
|
4284
|
-
* @response `200`
|
|
4292
|
+
* @response `200` OK
|
|
4285
4293
|
*/
|
|
4286
4294
|
|
|
4287
4295
|
}, {
|
|
@@ -4297,7 +4305,7 @@ let LayersService = /*#__PURE__*/function (_Service) {
|
|
|
4297
4305
|
* @operationId LayersController_SetPermissions
|
|
4298
4306
|
* @summary Replaces existing access control list for the layer with the given one.
|
|
4299
4307
|
* @request PUT:/layers/{name}/permissions
|
|
4300
|
-
* @response `200`
|
|
4308
|
+
* @response `200` OK
|
|
4301
4309
|
*/
|
|
4302
4310
|
|
|
4303
4311
|
}, {
|
|
@@ -4313,7 +4321,7 @@ let LayersService = /*#__PURE__*/function (_Service) {
|
|
|
4313
4321
|
* @operationId LayersController_RemovePermissions
|
|
4314
4322
|
* @summary Removes permissions for the layer for the given role.
|
|
4315
4323
|
* @request DELETE:/layers/{name}/permissions/{role}
|
|
4316
|
-
* @response `200`
|
|
4324
|
+
* @response `200` OK
|
|
4317
4325
|
*/
|
|
4318
4326
|
|
|
4319
4327
|
}, {
|
|
@@ -4676,7 +4684,7 @@ let NamespaceService = /*#__PURE__*/function (_Service) {
|
|
|
4676
4684
|
* @operationId NamespaceController_GetNamespacesAsync
|
|
4677
4685
|
* @summary Returns the list of existing namespaces, that correspond to the given conditions.
|
|
4678
4686
|
* @request GET:/namespaces
|
|
4679
|
-
* @response `200`
|
|
4687
|
+
* @response `200` OK
|
|
4680
4688
|
*/
|
|
4681
4689
|
function getNamespaces(query) {
|
|
4682
4690
|
return this.http.get("/namespaces", query).json();
|
|
@@ -4689,7 +4697,7 @@ let NamespaceService = /*#__PURE__*/function (_Service) {
|
|
|
4689
4697
|
* @operationId NamespaceController_CreateNamespace
|
|
4690
4698
|
* @summary Creates a new namespace.
|
|
4691
4699
|
* @request POST:/namespaces
|
|
4692
|
-
* @response `200`
|
|
4700
|
+
* @response `200` OK
|
|
4693
4701
|
*/
|
|
4694
4702
|
|
|
4695
4703
|
}, {
|
|
@@ -4705,7 +4713,7 @@ let NamespaceService = /*#__PURE__*/function (_Service) {
|
|
|
4705
4713
|
* @operationId NamespaceController_GetNamespaceAsync
|
|
4706
4714
|
* @summary Get namespace information.
|
|
4707
4715
|
* @request GET:/namespaces/{namespace}
|
|
4708
|
-
* @response `200`
|
|
4716
|
+
* @response `200` OK
|
|
4709
4717
|
*/
|
|
4710
4718
|
|
|
4711
4719
|
}, {
|
|
@@ -4721,7 +4729,7 @@ let NamespaceService = /*#__PURE__*/function (_Service) {
|
|
|
4721
4729
|
* @operationId NamespaceController_RemoveNamespaceAsync
|
|
4722
4730
|
* @summary Remove namespace.
|
|
4723
4731
|
* @request DELETE:/namespaces/{namespace}
|
|
4724
|
-
* @response `200`
|
|
4732
|
+
* @response `200` OK
|
|
4725
4733
|
*/
|
|
4726
4734
|
|
|
4727
4735
|
}, {
|
|
@@ -4776,7 +4784,7 @@ let NotificationService = /*#__PURE__*/function (_Service) {
|
|
|
4776
4784
|
* @operationId NotificationServiceController_GetSubscriptionList
|
|
4777
4785
|
* @summary Returns a list of notification tags that the current session is subscribed to.
|
|
4778
4786
|
* @request GET:/notifications/subscribes
|
|
4779
|
-
* @response `200`
|
|
4787
|
+
* @response `200` OK
|
|
4780
4788
|
*/
|
|
4781
4789
|
function getSubscriptionList() {
|
|
4782
4790
|
return this.http.get("/notifications/subscribes").json();
|
|
@@ -4789,7 +4797,7 @@ let NotificationService = /*#__PURE__*/function (_Service) {
|
|
|
4789
4797
|
* @operationId NotificationServiceController_SubscribeOperation
|
|
4790
4798
|
* @summary Subscribe current session by subscribe tag. A subscribed session will receive all notifications added for the specified tag.
|
|
4791
4799
|
* @request POST:/notifications/subscribes
|
|
4792
|
-
* @response `200`
|
|
4800
|
+
* @response `200` OK
|
|
4793
4801
|
*/
|
|
4794
4802
|
|
|
4795
4803
|
}, {
|
|
@@ -4805,7 +4813,7 @@ let NotificationService = /*#__PURE__*/function (_Service) {
|
|
|
4805
4813
|
* @operationId NotificationServiceController_UnsubscribeOperation
|
|
4806
4814
|
* @summary Unsubscribe from receiving notifications that come for the specified tag.
|
|
4807
4815
|
* @request DELETE:/notifications/subscribes
|
|
4808
|
-
* @response `200`
|
|
4816
|
+
* @response `200` OK
|
|
4809
4817
|
*/
|
|
4810
4818
|
|
|
4811
4819
|
}, {
|
|
@@ -4821,7 +4829,7 @@ let NotificationService = /*#__PURE__*/function (_Service) {
|
|
|
4821
4829
|
* @operationId NotificationServiceController_SubscribeListOperation
|
|
4822
4830
|
* @summary Subscribe current session by subscribe tags. A subscribed session will receive all notifications added for the specified tags.
|
|
4823
4831
|
* @request POST:/notifications/subscribe-list
|
|
4824
|
-
* @response `200`
|
|
4832
|
+
* @response `200` OK
|
|
4825
4833
|
*/
|
|
4826
4834
|
|
|
4827
4835
|
}, {
|
|
@@ -4837,7 +4845,7 @@ let NotificationService = /*#__PURE__*/function (_Service) {
|
|
|
4837
4845
|
* @operationId NotificationServiceController_UnsubscribeListOperation
|
|
4838
4846
|
* @summary Unsubscribe from receiving notifications that come for the specified tags.
|
|
4839
4847
|
* @request POST:/notifications/unsubscribe-list
|
|
4840
|
-
* @response `200`
|
|
4848
|
+
* @response `200` OK
|
|
4841
4849
|
*/
|
|
4842
4850
|
|
|
4843
4851
|
}, {
|
|
@@ -4906,8 +4914,8 @@ let Notification = /*#__PURE__*/function (_NotificationService) {
|
|
|
4906
4914
|
|| event.code === 4002
|
|
4907
4915
|
/* InvalidSession */
|
|
4908
4916
|
) {
|
|
4909
|
-
|
|
4910
|
-
|
|
4917
|
+
_this.connectStatus = ConnectionStatus.SessionClosed;
|
|
4918
|
+
} else if (_this.reconnectTries < _this.MAX_WS_RECONNECT_TRIES) {
|
|
4911
4919
|
_this.connectStatus = ConnectionStatus.Break;
|
|
4912
4920
|
_this.reconnectTries++;
|
|
4913
4921
|
|
|
@@ -5084,7 +5092,7 @@ let PrintService = /*#__PURE__*/function (_Service) {
|
|
|
5084
5092
|
* @operationId PrintController_Print
|
|
5085
5093
|
* @summary Print map with template.
|
|
5086
5094
|
* @request POST:/print/print
|
|
5087
|
-
* @response `200`
|
|
5095
|
+
* @response `200` OK
|
|
5088
5096
|
*/
|
|
5089
5097
|
function print(data) {
|
|
5090
5098
|
return this.http.post("/print/print", data).blob();
|
|
@@ -5097,7 +5105,7 @@ let PrintService = /*#__PURE__*/function (_Service) {
|
|
|
5097
5105
|
* @operationId PrintController_PrintToHtml
|
|
5098
5106
|
* @summary Print map with template to html string.
|
|
5099
5107
|
* @request POST:/print/printHtml
|
|
5100
|
-
* @response `200`
|
|
5108
|
+
* @response `200` OK
|
|
5101
5109
|
*/
|
|
5102
5110
|
|
|
5103
5111
|
}, {
|
|
@@ -5113,7 +5121,7 @@ let PrintService = /*#__PURE__*/function (_Service) {
|
|
|
5113
5121
|
* @operationId PrintController_UploadTemplate
|
|
5114
5122
|
* @summary Upload template on server.
|
|
5115
5123
|
* @request POST:/print/templates
|
|
5116
|
-
* @response `200`
|
|
5124
|
+
* @response `200` OK
|
|
5117
5125
|
*/
|
|
5118
5126
|
|
|
5119
5127
|
}, {
|
|
@@ -5129,7 +5137,7 @@ let PrintService = /*#__PURE__*/function (_Service) {
|
|
|
5129
5137
|
* @operationId PrintController_GetTemplates
|
|
5130
5138
|
* @summary Get all templates from server.
|
|
5131
5139
|
* @request GET:/print/templates
|
|
5132
|
-
* @response `200`
|
|
5140
|
+
* @response `200` OK
|
|
5133
5141
|
*/
|
|
5134
5142
|
|
|
5135
5143
|
}, {
|
|
@@ -5145,7 +5153,7 @@ let PrintService = /*#__PURE__*/function (_Service) {
|
|
|
5145
5153
|
* @operationId PrintController_DeleteTemplate
|
|
5146
5154
|
* @summary Delete template from server.
|
|
5147
5155
|
* @request DELETE:/print/templates/{name}
|
|
5148
|
-
* @response `200`
|
|
5156
|
+
* @response `200` OK
|
|
5149
5157
|
*/
|
|
5150
5158
|
|
|
5151
5159
|
}, {
|
|
@@ -5161,7 +5169,7 @@ let PrintService = /*#__PURE__*/function (_Service) {
|
|
|
5161
5169
|
* @operationId PrintController_GetTemplate
|
|
5162
5170
|
* @summary Get template from server.
|
|
5163
5171
|
* @request GET:/print/templates/{name}
|
|
5164
|
-
* @response `200`
|
|
5172
|
+
* @response `200` OK
|
|
5165
5173
|
*/
|
|
5166
5174
|
|
|
5167
5175
|
}, {
|
|
@@ -5216,7 +5224,7 @@ let ProjectsService = /*#__PURE__*/function (_Service) {
|
|
|
5216
5224
|
* @operationId ProjectsController_GetProjectsList
|
|
5217
5225
|
* @summary Returns the list of projects.
|
|
5218
5226
|
* @request GET:/projects
|
|
5219
|
-
* @response `200`
|
|
5227
|
+
* @response `200` OK
|
|
5220
5228
|
*/
|
|
5221
5229
|
function getProjectsList(query) {
|
|
5222
5230
|
return this.http.get("/projects", query).json();
|
|
@@ -5229,7 +5237,7 @@ let ProjectsService = /*#__PURE__*/function (_Service) {
|
|
|
5229
5237
|
* @operationId ProjectsController_CreateProject
|
|
5230
5238
|
* @summary Creates a new project.
|
|
5231
5239
|
* @request POST:/projects
|
|
5232
|
-
* @response `200`
|
|
5240
|
+
* @response `200` OK
|
|
5233
5241
|
*/
|
|
5234
5242
|
|
|
5235
5243
|
}, {
|
|
@@ -5245,7 +5253,7 @@ let ProjectsService = /*#__PURE__*/function (_Service) {
|
|
|
5245
5253
|
* @operationId ProjectsController_SetPermissionsBatch
|
|
5246
5254
|
* @summary Overrides multiply resources permissions in single batch.
|
|
5247
5255
|
* @request PUT:/projects
|
|
5248
|
-
* @response `200`
|
|
5256
|
+
* @response `200` OK
|
|
5249
5257
|
*/
|
|
5250
5258
|
|
|
5251
5259
|
}, {
|
|
@@ -5261,7 +5269,7 @@ let ProjectsService = /*#__PURE__*/function (_Service) {
|
|
|
5261
5269
|
* @operationId ProjectsController_DeleteResources
|
|
5262
5270
|
* @summary Bulk delete resources.
|
|
5263
5271
|
* @request DELETE:/projects
|
|
5264
|
-
* @response `200`
|
|
5272
|
+
* @response `200` OK
|
|
5265
5273
|
*/
|
|
5266
5274
|
|
|
5267
5275
|
}, {
|
|
@@ -5277,7 +5285,7 @@ let ProjectsService = /*#__PURE__*/function (_Service) {
|
|
|
5277
5285
|
* @operationId ProjectsController_UpdateProject
|
|
5278
5286
|
* @summary Update table.
|
|
5279
5287
|
* @request PATCH:/projects/{name}
|
|
5280
|
-
* @response `200`
|
|
5288
|
+
* @response `200` OK
|
|
5281
5289
|
*/
|
|
5282
5290
|
|
|
5283
5291
|
}, {
|
|
@@ -5293,7 +5301,7 @@ let ProjectsService = /*#__PURE__*/function (_Service) {
|
|
|
5293
5301
|
* @operationId ProjectsController_GetProjectInfo
|
|
5294
5302
|
* @summary Returns the project and it's content information.
|
|
5295
5303
|
* @request GET:/projects/{name}
|
|
5296
|
-
* @response `200`
|
|
5304
|
+
* @response `200` OK
|
|
5297
5305
|
*/
|
|
5298
5306
|
|
|
5299
5307
|
}, {
|
|
@@ -5309,7 +5317,7 @@ let ProjectsService = /*#__PURE__*/function (_Service) {
|
|
|
5309
5317
|
* @operationId ProjectsController_DeleteResource
|
|
5310
5318
|
* @summary Deletes resource.
|
|
5311
5319
|
* @request DELETE:/projects/{name}
|
|
5312
|
-
* @response `200`
|
|
5320
|
+
* @response `200` OK
|
|
5313
5321
|
*/
|
|
5314
5322
|
|
|
5315
5323
|
}, {
|
|
@@ -5325,7 +5333,7 @@ let ProjectsService = /*#__PURE__*/function (_Service) {
|
|
|
5325
5333
|
* @operationId ProjectsController_GetProjectsInfoAsync
|
|
5326
5334
|
* @summary Returns the projects information.
|
|
5327
5335
|
* @request GET:/projects/batchInfo
|
|
5328
|
-
* @response `200`
|
|
5336
|
+
* @response `200` OK
|
|
5329
5337
|
*/
|
|
5330
5338
|
|
|
5331
5339
|
}, {
|
|
@@ -5341,7 +5349,7 @@ let ProjectsService = /*#__PURE__*/function (_Service) {
|
|
|
5341
5349
|
* @operationId ProjectsController_GetProjectLayersExtendedInfo
|
|
5342
5350
|
* @summary Gets extended project info with layers info.
|
|
5343
5351
|
* @request GET:/projects/{name}/extended-info
|
|
5344
|
-
* @response `200`
|
|
5352
|
+
* @response `200` OK
|
|
5345
5353
|
*/
|
|
5346
5354
|
|
|
5347
5355
|
}, {
|
|
@@ -5357,7 +5365,7 @@ let ProjectsService = /*#__PURE__*/function (_Service) {
|
|
|
5357
5365
|
* @operationId ProjectsController_GetTilesLayerImage
|
|
5358
5366
|
* @summary Render tile.
|
|
5359
5367
|
* @request GET:/projects/{name}/tile/{z}/{x}/{y}
|
|
5360
|
-
* @response `200`
|
|
5368
|
+
* @response `200` OK
|
|
5361
5369
|
*/
|
|
5362
5370
|
|
|
5363
5371
|
}, {
|
|
@@ -5373,7 +5381,7 @@ let ProjectsService = /*#__PURE__*/function (_Service) {
|
|
|
5373
5381
|
* @operationId ProjectsController_GetPreview
|
|
5374
5382
|
* @summary Gets preview of resource.
|
|
5375
5383
|
* @request GET:/projects/{name}/preview
|
|
5376
|
-
* @response `200`
|
|
5384
|
+
* @response `200` OK
|
|
5377
5385
|
*/
|
|
5378
5386
|
|
|
5379
5387
|
}, {
|
|
@@ -5389,7 +5397,7 @@ let ProjectsService = /*#__PURE__*/function (_Service) {
|
|
|
5389
5397
|
* @operationId ProjectsController_SetPreview
|
|
5390
5398
|
* @summary Sets preview to the resource.
|
|
5391
5399
|
* @request POST:/projects/{name}/preview
|
|
5392
|
-
* @response `200`
|
|
5400
|
+
* @response `200` OK
|
|
5393
5401
|
*/
|
|
5394
5402
|
|
|
5395
5403
|
}, {
|
|
@@ -5405,7 +5413,7 @@ let ProjectsService = /*#__PURE__*/function (_Service) {
|
|
|
5405
5413
|
* @operationId ProjectsController_DeletePreview
|
|
5406
5414
|
* @summary Delete resource preview.
|
|
5407
5415
|
* @request DELETE:/projects/{name}/preview
|
|
5408
|
-
* @response `200`
|
|
5416
|
+
* @response `200` OK
|
|
5409
5417
|
*/
|
|
5410
5418
|
|
|
5411
5419
|
}, {
|
|
@@ -5421,7 +5429,7 @@ let ProjectsService = /*#__PURE__*/function (_Service) {
|
|
|
5421
5429
|
* @operationId ProjectsController_IsExistsAsync
|
|
5422
5430
|
* @summary Check is resource exists.
|
|
5423
5431
|
* @request GET:/projects/{name}/exists
|
|
5424
|
-
* @response `200`
|
|
5432
|
+
* @response `200` OK
|
|
5425
5433
|
*/
|
|
5426
5434
|
|
|
5427
5435
|
}, {
|
|
@@ -5437,7 +5445,7 @@ let ProjectsService = /*#__PURE__*/function (_Service) {
|
|
|
5437
5445
|
* @operationId ProjectsController_GetResourceDependencies
|
|
5438
5446
|
* @summary Get resource dependencies.
|
|
5439
5447
|
* @request GET:/projects/{name}/dependencies
|
|
5440
|
-
* @response `200`
|
|
5448
|
+
* @response `200` OK
|
|
5441
5449
|
*/
|
|
5442
5450
|
|
|
5443
5451
|
}, {
|
|
@@ -5453,7 +5461,7 @@ let ProjectsService = /*#__PURE__*/function (_Service) {
|
|
|
5453
5461
|
* @operationId ProjectsController_GetResourceReferences
|
|
5454
5462
|
* @summary Returns the resource dependency information.
|
|
5455
5463
|
* @request GET:/projects/{name}/references
|
|
5456
|
-
* @response `200`
|
|
5464
|
+
* @response `200` OK
|
|
5457
5465
|
*/
|
|
5458
5466
|
|
|
5459
5467
|
}, {
|
|
@@ -5469,7 +5477,7 @@ let ProjectsService = /*#__PURE__*/function (_Service) {
|
|
|
5469
5477
|
* @operationId ProjectsController_GetPermissions
|
|
5470
5478
|
* @summary Returns resource permissions.
|
|
5471
5479
|
* @request GET:/projects/{name}/permissions
|
|
5472
|
-
* @response `200`
|
|
5480
|
+
* @response `200` OK
|
|
5473
5481
|
*/
|
|
5474
5482
|
|
|
5475
5483
|
}, {
|
|
@@ -5485,7 +5493,7 @@ let ProjectsService = /*#__PURE__*/function (_Service) {
|
|
|
5485
5493
|
* @operationId ProjectsController_AddPermissions
|
|
5486
5494
|
* @summary Adds permissions for the layer, combining existing permissions with the given one.
|
|
5487
5495
|
* @request POST:/projects/{name}/permissions
|
|
5488
|
-
* @response `200`
|
|
5496
|
+
* @response `200` OK
|
|
5489
5497
|
*/
|
|
5490
5498
|
|
|
5491
5499
|
}, {
|
|
@@ -5501,7 +5509,7 @@ let ProjectsService = /*#__PURE__*/function (_Service) {
|
|
|
5501
5509
|
* @operationId ProjectsController_SetPermissions
|
|
5502
5510
|
* @summary Replaces existing access control list for the layer with the given one.
|
|
5503
5511
|
* @request PUT:/projects/{name}/permissions
|
|
5504
|
-
* @response `200`
|
|
5512
|
+
* @response `200` OK
|
|
5505
5513
|
*/
|
|
5506
5514
|
|
|
5507
5515
|
}, {
|
|
@@ -5517,7 +5525,7 @@ let ProjectsService = /*#__PURE__*/function (_Service) {
|
|
|
5517
5525
|
* @operationId ProjectsController_RemovePermissions
|
|
5518
5526
|
* @summary Removes permissions for the layer for the given role.
|
|
5519
5527
|
* @request DELETE:/projects/{name}/permissions/{role}
|
|
5520
|
-
* @response `200`
|
|
5528
|
+
* @response `200` OK
|
|
5521
5529
|
*/
|
|
5522
5530
|
|
|
5523
5531
|
}, {
|
|
@@ -5620,7 +5628,7 @@ let ResourceCatalogService = /*#__PURE__*/function (_Service) {
|
|
|
5620
5628
|
* @operationId ResourceCatalogController_CheckLimits
|
|
5621
5629
|
* @summary Get limits of workspace.
|
|
5622
5630
|
* @request GET:/resources/checkLimits
|
|
5623
|
-
* @response `200`
|
|
5631
|
+
* @response `200` OK
|
|
5624
5632
|
*/
|
|
5625
5633
|
function checkLimits(query) {
|
|
5626
5634
|
return this.http.get("/resources/checkLimits", query).json();
|
|
@@ -5633,7 +5641,7 @@ let ResourceCatalogService = /*#__PURE__*/function (_Service) {
|
|
|
5633
5641
|
* @operationId ResourceCatalogController_CopyResources
|
|
5634
5642
|
* @summary Copy a set of resources.
|
|
5635
5643
|
* @request POST:/resources/copy
|
|
5636
|
-
* @response `200`
|
|
5644
|
+
* @response `200` OK
|
|
5637
5645
|
*/
|
|
5638
5646
|
|
|
5639
5647
|
}, {
|
|
@@ -5741,12 +5749,12 @@ let Resources = /*#__PURE__*/function () {
|
|
|
5741
5749
|
}, {
|
|
5742
5750
|
key: "getDependentNames",
|
|
5743
5751
|
value: function getDependentNames(deps, depType) {
|
|
5744
|
-
return deps.filter(
|
|
5752
|
+
return deps.filter(_ref => {
|
|
5745
5753
|
let {
|
|
5746
5754
|
type
|
|
5747
5755
|
} = _ref;
|
|
5748
5756
|
return type === depType;
|
|
5749
|
-
}).map(
|
|
5757
|
+
}).map(_ref2 => {
|
|
5750
5758
|
let {
|
|
5751
5759
|
name
|
|
5752
5760
|
} = _ref2;
|
|
@@ -5786,7 +5794,7 @@ let SchedulerService = /*#__PURE__*/function (_Service) {
|
|
|
5786
5794
|
* @operationId SchedulerServiceController_GetTaskList
|
|
5787
5795
|
* @summary Returns the list of the planned and complete server tasks.
|
|
5788
5796
|
* @request GET:/scheduler/tasks
|
|
5789
|
-
* @response `200`
|
|
5797
|
+
* @response `200` OK
|
|
5790
5798
|
*/
|
|
5791
5799
|
function getTaskList(query) {
|
|
5792
5800
|
return this.http.get("/scheduler/tasks", query).json();
|
|
@@ -5799,7 +5807,7 @@ let SchedulerService = /*#__PURE__*/function (_Service) {
|
|
|
5799
5807
|
* @operationId SchedulerServiceController_GetTaskInfo
|
|
5800
5808
|
* @summary Returns the information about the server task.
|
|
5801
5809
|
* @request GET:/scheduler/tasks/{id}
|
|
5802
|
-
* @response `200`
|
|
5810
|
+
* @response `200` OK
|
|
5803
5811
|
*/
|
|
5804
5812
|
|
|
5805
5813
|
}, {
|
|
@@ -5815,7 +5823,7 @@ let SchedulerService = /*#__PURE__*/function (_Service) {
|
|
|
5815
5823
|
* @operationId SchedulerServiceController_GetTaskProgress
|
|
5816
5824
|
* @summary Returns the progress of server task.
|
|
5817
5825
|
* @request GET:/scheduler/tasks/{id}/progress
|
|
5818
|
-
* @response `200`
|
|
5826
|
+
* @response `200` OK
|
|
5819
5827
|
*/
|
|
5820
5828
|
|
|
5821
5829
|
}, {
|
|
@@ -5831,7 +5839,7 @@ let SchedulerService = /*#__PURE__*/function (_Service) {
|
|
|
5831
5839
|
* @operationId SchedulerServiceController_CancelTask
|
|
5832
5840
|
* @summary Cancel task execution by given id.
|
|
5833
5841
|
* @request POST:/scheduler/tasks/{id}/cancel
|
|
5834
|
-
* @response `200`
|
|
5842
|
+
* @response `200` OK
|
|
5835
5843
|
*/
|
|
5836
5844
|
|
|
5837
5845
|
}, {
|
|
@@ -5847,7 +5855,7 @@ let SchedulerService = /*#__PURE__*/function (_Service) {
|
|
|
5847
5855
|
* @operationId SchedulerServiceController_StartCopyTask
|
|
5848
5856
|
* @summary Plans the execution of a 'copy' server task.
|
|
5849
5857
|
* @request POST:/scheduler/tasks#type=copy
|
|
5850
|
-
* @response `200`
|
|
5858
|
+
* @response `200` OK
|
|
5851
5859
|
*/
|
|
5852
5860
|
|
|
5853
5861
|
}, {
|
|
@@ -5865,7 +5873,7 @@ let SchedulerService = /*#__PURE__*/function (_Service) {
|
|
|
5865
5873
|
* @operationId SchedulerServiceController_StartAggregateTask
|
|
5866
5874
|
* @summary Plans the execution of a 'aggregate' server task.
|
|
5867
5875
|
* @request POST:/scheduler/tasks#type=aggregate
|
|
5868
|
-
* @response `200`
|
|
5876
|
+
* @response `200` OK
|
|
5869
5877
|
*/
|
|
5870
5878
|
|
|
5871
5879
|
}, {
|
|
@@ -5883,7 +5891,7 @@ let SchedulerService = /*#__PURE__*/function (_Service) {
|
|
|
5883
5891
|
* @operationId SchedulerServiceController_StartBufferTask
|
|
5884
5892
|
* @summary Plans the execution of a 'buffer' server task.
|
|
5885
5893
|
* @request POST:/scheduler/tasks#type=buffer
|
|
5886
|
-
* @response `200`
|
|
5894
|
+
* @response `200` OK
|
|
5887
5895
|
*/
|
|
5888
5896
|
|
|
5889
5897
|
}, {
|
|
@@ -5901,7 +5909,7 @@ let SchedulerService = /*#__PURE__*/function (_Service) {
|
|
|
5901
5909
|
* @operationId SchedulerServiceController_StartPrintTask
|
|
5902
5910
|
* @summary Plans the execution of a 'print' server task.
|
|
5903
5911
|
* @request POST:/scheduler/tasks#type=print
|
|
5904
|
-
* @response `200`
|
|
5912
|
+
* @response `200` OK
|
|
5905
5913
|
*/
|
|
5906
5914
|
|
|
5907
5915
|
}, {
|
|
@@ -5919,7 +5927,7 @@ let SchedulerService = /*#__PURE__*/function (_Service) {
|
|
|
5919
5927
|
* @operationId SchedulerServiceController_StartTilingTask
|
|
5920
5928
|
* @summary Plans the execution of a 'tiling' server task.
|
|
5921
5929
|
* @request POST:/scheduler/tasks#type=tiling
|
|
5922
|
-
* @response `200`
|
|
5930
|
+
* @response `200` OK
|
|
5923
5931
|
*/
|
|
5924
5932
|
|
|
5925
5933
|
}, {
|
|
@@ -5937,7 +5945,7 @@ let SchedulerService = /*#__PURE__*/function (_Service) {
|
|
|
5937
5945
|
* @operationId SchedulerServiceController_StartTilingTask_1
|
|
5938
5946
|
* @summary Plans the execution of a 'rasterVrt' server task.
|
|
5939
5947
|
* @request POST:/scheduler/tasks#type=rasterVrt
|
|
5940
|
-
* @response `200`
|
|
5948
|
+
* @response `200` OK
|
|
5941
5949
|
*/
|
|
5942
5950
|
|
|
5943
5951
|
}, {
|
|
@@ -5955,7 +5963,7 @@ let SchedulerService = /*#__PURE__*/function (_Service) {
|
|
|
5955
5963
|
* @operationId SchedulerServiceController_StartNetCdfTask
|
|
5956
5964
|
* @summary Plans the execution of a 'netcdf' server task.
|
|
5957
5965
|
* @request POST:/scheduler/tasks#type=netcdf
|
|
5958
|
-
* @response `200`
|
|
5966
|
+
* @response `200` OK
|
|
5959
5967
|
*/
|
|
5960
5968
|
|
|
5961
5969
|
}, {
|
|
@@ -5973,7 +5981,7 @@ let SchedulerService = /*#__PURE__*/function (_Service) {
|
|
|
5973
5981
|
* @operationId SchedulerServiceController_StartRouteTask
|
|
5974
5982
|
* @summary Plans the execution of a 'availability area build' server task.
|
|
5975
5983
|
* @request POST:/scheduler/tasks#type=route
|
|
5976
|
-
* @response `200`
|
|
5984
|
+
* @response `200` OK
|
|
5977
5985
|
*/
|
|
5978
5986
|
|
|
5979
5987
|
}, {
|
|
@@ -5991,7 +5999,7 @@ let SchedulerService = /*#__PURE__*/function (_Service) {
|
|
|
5991
5999
|
* @operationId SchedulerServiceController_StartUnionTask
|
|
5992
6000
|
* @summary Plans the execution of a 'union' server task.
|
|
5993
6001
|
* @request POST:/scheduler/tasks#type=union
|
|
5994
|
-
* @response `200`
|
|
6002
|
+
* @response `200` OK
|
|
5995
6003
|
*/
|
|
5996
6004
|
|
|
5997
6005
|
}, {
|
|
@@ -6009,7 +6017,7 @@ let SchedulerService = /*#__PURE__*/function (_Service) {
|
|
|
6009
6017
|
* @operationId SchedulerServiceController_StartOverlayTask
|
|
6010
6018
|
* @summary Plans the execution of a 'subtraction' server task.
|
|
6011
6019
|
* @request POST:/scheduler/tasks#type=overlay
|
|
6012
|
-
* @response `200`
|
|
6020
|
+
* @response `200` OK
|
|
6013
6021
|
*/
|
|
6014
6022
|
|
|
6015
6023
|
}, {
|
|
@@ -6027,7 +6035,7 @@ let SchedulerService = /*#__PURE__*/function (_Service) {
|
|
|
6027
6035
|
* @operationId SchedulerServiceController_StartFilterCopyTask
|
|
6028
6036
|
* @summary Plans the execution of a 'filter copy' server task.
|
|
6029
6037
|
* @request POST:/scheduler/tasks#type=filterCopy
|
|
6030
|
-
* @response `200`
|
|
6038
|
+
* @response `200` OK
|
|
6031
6039
|
*/
|
|
6032
6040
|
|
|
6033
6041
|
}, {
|
|
@@ -6045,7 +6053,7 @@ let SchedulerService = /*#__PURE__*/function (_Service) {
|
|
|
6045
6053
|
* @operationId SchedulerServiceController_StartPipelineTask
|
|
6046
6054
|
* @summary Plans the execution of a 'pipeline' server task.
|
|
6047
6055
|
* @request POST:/scheduler/tasks#type=pipeline
|
|
6048
|
-
* @response `200`
|
|
6056
|
+
* @response `200` OK
|
|
6049
6057
|
*/
|
|
6050
6058
|
|
|
6051
6059
|
}, {
|
|
@@ -6063,7 +6071,7 @@ let SchedulerService = /*#__PURE__*/function (_Service) {
|
|
|
6063
6071
|
* @operationId SchedulerServiceController_StartEditAttributesBatch
|
|
6064
6072
|
* @summary Plans the execution of a 'edit attributes' server task.
|
|
6065
6073
|
* @request POST:/scheduler/tasks#type=editAttributes
|
|
6066
|
-
* @response `200`
|
|
6074
|
+
* @response `200` OK
|
|
6067
6075
|
*/
|
|
6068
6076
|
|
|
6069
6077
|
}, {
|
|
@@ -6081,7 +6089,7 @@ let SchedulerService = /*#__PURE__*/function (_Service) {
|
|
|
6081
6089
|
* @operationId SchedulerServiceController_UniversalSearchTask
|
|
6082
6090
|
* @summary Plans the execution of a 'edit attributes' server task.
|
|
6083
6091
|
* @request POST:/scheduler/tasks#type=universalSearch
|
|
6084
|
-
* @response `200`
|
|
6092
|
+
* @response `200` OK
|
|
6085
6093
|
*/
|
|
6086
6094
|
|
|
6087
6095
|
}, {
|
|
@@ -6202,7 +6210,7 @@ let Scheduler = /*#__PURE__*/function (_SchedulerService) {
|
|
|
6202
6210
|
const taskProgress = await this.getTaskProgress(id);
|
|
6203
6211
|
this.resolveTaskStatus(taskProgress, resolve, reject);
|
|
6204
6212
|
|
|
6205
|
-
const taskResultCallback = async
|
|
6213
|
+
const taskResultCallback = async _ref => {
|
|
6206
6214
|
let {
|
|
6207
6215
|
data
|
|
6208
6216
|
} = _ref;
|
|
@@ -6273,7 +6281,7 @@ let SecurityService = /*#__PURE__*/function (_Service) {
|
|
|
6273
6281
|
* @operationId SecurityServiceController_FindUserByNameByRoles
|
|
6274
6282
|
* @summary Get users list with given roles list.
|
|
6275
6283
|
* @request GET:/security/findUsersWithRoles
|
|
6276
|
-
* @response `200`
|
|
6284
|
+
* @response `200` OK
|
|
6277
6285
|
*/
|
|
6278
6286
|
function findUserByNameByRoles(query) {
|
|
6279
6287
|
return this.http.get("/security/findUsersWithRoles", query).json();
|
|
@@ -6286,7 +6294,7 @@ let SecurityService = /*#__PURE__*/function (_Service) {
|
|
|
6286
6294
|
* @operationId SecurityServiceController_GetUsersAndRoles
|
|
6287
6295
|
* @summary Get users and roles list by filter.
|
|
6288
6296
|
* @request GET:/security/usersandroles
|
|
6289
|
-
* @response `200`
|
|
6297
|
+
* @response `200` OK
|
|
6290
6298
|
*/
|
|
6291
6299
|
|
|
6292
6300
|
}, {
|
|
@@ -6302,7 +6310,7 @@ let SecurityService = /*#__PURE__*/function (_Service) {
|
|
|
6302
6310
|
* @operationId SecurityServiceController_FindUserByName
|
|
6303
6311
|
* @summary Returns the list of users found by username.
|
|
6304
6312
|
* @request GET:/security/users
|
|
6305
|
-
* @response `200`
|
|
6313
|
+
* @response `200` OK
|
|
6306
6314
|
*/
|
|
6307
6315
|
|
|
6308
6316
|
}, {
|
|
@@ -6318,7 +6326,7 @@ let SecurityService = /*#__PURE__*/function (_Service) {
|
|
|
6318
6326
|
* @operationId SecurityServiceController_GetPolicyList
|
|
6319
6327
|
* @summary Returns the list of server authorization policies of the given type.
|
|
6320
6328
|
* @request GET:/security/policies
|
|
6321
|
-
* @response `200`
|
|
6329
|
+
* @response `200` OK
|
|
6322
6330
|
*/
|
|
6323
6331
|
|
|
6324
6332
|
}, {
|
|
@@ -6334,7 +6342,7 @@ let SecurityService = /*#__PURE__*/function (_Service) {
|
|
|
6334
6342
|
* @operationId SecurityServiceController_RemovePolicy
|
|
6335
6343
|
* @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.
|
|
6336
6344
|
* @request DELETE:/security/policies
|
|
6337
|
-
* @response `200`
|
|
6345
|
+
* @response `200` OK
|
|
6338
6346
|
*/
|
|
6339
6347
|
|
|
6340
6348
|
}, {
|
|
@@ -6350,7 +6358,7 @@ let SecurityService = /*#__PURE__*/function (_Service) {
|
|
|
6350
6358
|
* @operationId SecurityServiceController_SetPolicy
|
|
6351
6359
|
* @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.
|
|
6352
6360
|
* @request POST:/security/policies
|
|
6353
|
-
* @response `200`
|
|
6361
|
+
* @response `200` OK
|
|
6354
6362
|
*/
|
|
6355
6363
|
|
|
6356
6364
|
}, {
|
|
@@ -6425,7 +6433,7 @@ let StatisticService = /*#__PURE__*/function (_Service) {
|
|
|
6425
6433
|
* @operationId StatisticController_StatisticsDb
|
|
6426
6434
|
* @summary Calculates statistics for layer attribute.
|
|
6427
6435
|
* @request GET:/statistics
|
|
6428
|
-
* @response `200`
|
|
6436
|
+
* @response `200` OK
|
|
6429
6437
|
*/
|
|
6430
6438
|
function statisticsDb(query) {
|
|
6431
6439
|
return this.http.get("/statistics", query).json();
|
|
@@ -6438,7 +6446,7 @@ let StatisticService = /*#__PURE__*/function (_Service) {
|
|
|
6438
6446
|
* @operationId StatisticController_StatisticsDb_1
|
|
6439
6447
|
* @summary Calculates statistics for layer attribute.
|
|
6440
6448
|
* @request POST:/statistics
|
|
6441
|
-
* @response `200`
|
|
6449
|
+
* @response `200` OK
|
|
6442
6450
|
*/
|
|
6443
6451
|
|
|
6444
6452
|
}, {
|
|
@@ -6454,7 +6462,7 @@ let StatisticService = /*#__PURE__*/function (_Service) {
|
|
|
6454
6462
|
* @operationId StatisticController_Classify
|
|
6455
6463
|
* @summary Returns the classified attribute values that correspond to the given number of classes and given condition.
|
|
6456
6464
|
* @request GET:/statistics/classify
|
|
6457
|
-
* @response `200`
|
|
6465
|
+
* @response `200` OK
|
|
6458
6466
|
*/
|
|
6459
6467
|
|
|
6460
6468
|
}, {
|
|
@@ -6470,7 +6478,7 @@ let StatisticService = /*#__PURE__*/function (_Service) {
|
|
|
6470
6478
|
* @operationId StatisticController_Classify_1
|
|
6471
6479
|
* @summary Returns the classified attribute values that correspond to the given number of classes and given condition.
|
|
6472
6480
|
* @request POST:/statistics/classify
|
|
6473
|
-
* @response `200`
|
|
6481
|
+
* @response `200` OK
|
|
6474
6482
|
*/
|
|
6475
6483
|
|
|
6476
6484
|
}, {
|
|
@@ -6486,7 +6494,7 @@ let StatisticService = /*#__PURE__*/function (_Service) {
|
|
|
6486
6494
|
* @operationId StatisticController_SumOfProduct
|
|
6487
6495
|
* @summary Sum of product.
|
|
6488
6496
|
* @request GET:/statistics/sumOfProduct
|
|
6489
|
-
* @response `200`
|
|
6497
|
+
* @response `200` OK
|
|
6490
6498
|
*/
|
|
6491
6499
|
|
|
6492
6500
|
}, {
|
|
@@ -6502,7 +6510,7 @@ let StatisticService = /*#__PURE__*/function (_Service) {
|
|
|
6502
6510
|
* @operationId StatisticController_SumOfProduct_1
|
|
6503
6511
|
* @summary Sum of product.
|
|
6504
6512
|
* @request POST:/statistics/sumOfProduct
|
|
6505
|
-
* @response `200`
|
|
6513
|
+
* @response `200` OK
|
|
6506
6514
|
*/
|
|
6507
6515
|
|
|
6508
6516
|
}, {
|
|
@@ -6579,7 +6587,7 @@ let StyleService = /*#__PURE__*/function (_Service) {
|
|
|
6579
6587
|
* @operationId StyleServiceController_GetStyle
|
|
6580
6588
|
* @summary Returns the style by its id.
|
|
6581
6589
|
* @request GET:/styles/{id}
|
|
6582
|
-
* @response `200`
|
|
6590
|
+
* @response `200` OK
|
|
6583
6591
|
*/
|
|
6584
6592
|
function getStyle(id) {
|
|
6585
6593
|
return this.http.get("/styles/" + id).json();
|
|
@@ -6592,7 +6600,7 @@ let StyleService = /*#__PURE__*/function (_Service) {
|
|
|
6592
6600
|
* @operationId StyleServiceController_UpdateStyle
|
|
6593
6601
|
* @summary Replaces a style and gives it a new id.
|
|
6594
6602
|
* @request POST:/styles/{id}
|
|
6595
|
-
* @response `200`
|
|
6603
|
+
* @response `200` OK
|
|
6596
6604
|
*/
|
|
6597
6605
|
|
|
6598
6606
|
}, {
|
|
@@ -6608,7 +6616,7 @@ let StyleService = /*#__PURE__*/function (_Service) {
|
|
|
6608
6616
|
* @operationId StyleServiceController_CreateStyle
|
|
6609
6617
|
* @summary Creates a new style.
|
|
6610
6618
|
* @request POST:/styles
|
|
6611
|
-
* @response `200`
|
|
6619
|
+
* @response `200` OK
|
|
6612
6620
|
*/
|
|
6613
6621
|
|
|
6614
6622
|
}, {
|
|
@@ -6624,7 +6632,7 @@ let StyleService = /*#__PURE__*/function (_Service) {
|
|
|
6624
6632
|
* @operationId StyleServiceController_GetAllFonts
|
|
6625
6633
|
* @summary Gets all installed fonts.
|
|
6626
6634
|
* @request GET:/styles/fonts
|
|
6627
|
-
* @response `200`
|
|
6635
|
+
* @response `200` OK
|
|
6628
6636
|
*/
|
|
6629
6637
|
|
|
6630
6638
|
}, {
|
|
@@ -6640,7 +6648,7 @@ let StyleService = /*#__PURE__*/function (_Service) {
|
|
|
6640
6648
|
* @operationId StyleServiceController_AddFont
|
|
6641
6649
|
* @summary Install new font.
|
|
6642
6650
|
* @request POST:/styles/fonts
|
|
6643
|
-
* @response `200`
|
|
6651
|
+
* @response `200` OK
|
|
6644
6652
|
*/
|
|
6645
6653
|
|
|
6646
6654
|
}, {
|
|
@@ -6656,7 +6664,7 @@ let StyleService = /*#__PURE__*/function (_Service) {
|
|
|
6656
6664
|
* @operationId StyleServiceController_RemoveFont
|
|
6657
6665
|
* @summary Remove installed font.
|
|
6658
6666
|
* @request DELETE:/styles/fonts
|
|
6659
|
-
* @response `200`
|
|
6667
|
+
* @response `200` OK
|
|
6660
6668
|
*/
|
|
6661
6669
|
|
|
6662
6670
|
}, {
|
|
@@ -6715,7 +6723,7 @@ let TablesService = /*#__PURE__*/function (_Service) {
|
|
|
6715
6723
|
* @operationId TablesController_GetTableList
|
|
6716
6724
|
* @summary Returns the list of tables in data service.
|
|
6717
6725
|
* @request GET:/tables
|
|
6718
|
-
* @response `200`
|
|
6726
|
+
* @response `200` OK
|
|
6719
6727
|
*/
|
|
6720
6728
|
function getTableList(query) {
|
|
6721
6729
|
return this.http.get("/tables", query).json();
|
|
@@ -6728,7 +6736,7 @@ let TablesService = /*#__PURE__*/function (_Service) {
|
|
|
6728
6736
|
* @operationId TablesController_CreateTable
|
|
6729
6737
|
* @summary Creates a new table.
|
|
6730
6738
|
* @request POST:/tables
|
|
6731
|
-
* @response `200`
|
|
6739
|
+
* @response `200` OK
|
|
6732
6740
|
*/
|
|
6733
6741
|
|
|
6734
6742
|
}, {
|
|
@@ -6744,7 +6752,7 @@ let TablesService = /*#__PURE__*/function (_Service) {
|
|
|
6744
6752
|
* @operationId TablesController_SetPermissionsBatch
|
|
6745
6753
|
* @summary Overrides multiply resources permissions in single batch.
|
|
6746
6754
|
* @request PUT:/tables
|
|
6747
|
-
* @response `200`
|
|
6755
|
+
* @response `200` OK
|
|
6748
6756
|
*/
|
|
6749
6757
|
|
|
6750
6758
|
}, {
|
|
@@ -6760,7 +6768,7 @@ let TablesService = /*#__PURE__*/function (_Service) {
|
|
|
6760
6768
|
* @operationId TablesController_DeleteResources
|
|
6761
6769
|
* @summary Bulk delete resources.
|
|
6762
6770
|
* @request DELETE:/tables
|
|
6763
|
-
* @response `200`
|
|
6771
|
+
* @response `200` OK
|
|
6764
6772
|
*/
|
|
6765
6773
|
|
|
6766
6774
|
}, {
|
|
@@ -6776,7 +6784,7 @@ let TablesService = /*#__PURE__*/function (_Service) {
|
|
|
6776
6784
|
* @operationId TablesController_UpdateTable
|
|
6777
6785
|
* @summary Update exists table.
|
|
6778
6786
|
* @request PATCH:/tables/{name}
|
|
6779
|
-
* @response `200`
|
|
6787
|
+
* @response `200` OK
|
|
6780
6788
|
*/
|
|
6781
6789
|
|
|
6782
6790
|
}, {
|
|
@@ -6792,7 +6800,7 @@ let TablesService = /*#__PURE__*/function (_Service) {
|
|
|
6792
6800
|
* @operationId TablesController_PutTable
|
|
6793
6801
|
* @summary Override exists table.
|
|
6794
6802
|
* @request PUT:/tables/{name}
|
|
6795
|
-
* @response `200`
|
|
6803
|
+
* @response `200` OK
|
|
6796
6804
|
*/
|
|
6797
6805
|
|
|
6798
6806
|
}, {
|
|
@@ -6808,7 +6816,7 @@ let TablesService = /*#__PURE__*/function (_Service) {
|
|
|
6808
6816
|
* @operationId TablesController_GetTableInfo
|
|
6809
6817
|
* @summary Returns the table information and schema.
|
|
6810
6818
|
* @request GET:/tables/{name}
|
|
6811
|
-
* @response `200`
|
|
6819
|
+
* @response `200` OK
|
|
6812
6820
|
*/
|
|
6813
6821
|
|
|
6814
6822
|
}, {
|
|
@@ -6824,7 +6832,7 @@ let TablesService = /*#__PURE__*/function (_Service) {
|
|
|
6824
6832
|
* @operationId TablesController_DeleteResource
|
|
6825
6833
|
* @summary Deletes resource.
|
|
6826
6834
|
* @request DELETE:/tables/{name}
|
|
6827
|
-
* @response `200`
|
|
6835
|
+
* @response `200` OK
|
|
6828
6836
|
*/
|
|
6829
6837
|
|
|
6830
6838
|
}, {
|
|
@@ -6840,7 +6848,7 @@ let TablesService = /*#__PURE__*/function (_Service) {
|
|
|
6840
6848
|
* @operationId TablesController_GetTablesInfoAsync
|
|
6841
6849
|
* @summary Returns the tables information.
|
|
6842
6850
|
* @request GET:/tables/batchInfo
|
|
6843
|
-
* @response `200`
|
|
6851
|
+
* @response `200` OK
|
|
6844
6852
|
*/
|
|
6845
6853
|
|
|
6846
6854
|
}, {
|
|
@@ -6856,7 +6864,7 @@ let TablesService = /*#__PURE__*/function (_Service) {
|
|
|
6856
6864
|
* @operationId TablesController_GetTableData
|
|
6857
6865
|
* @summary Retrieves the data from the table.
|
|
6858
6866
|
* @request GET:/tables/{name}/data
|
|
6859
|
-
* @response `200`
|
|
6867
|
+
* @response `200` OK
|
|
6860
6868
|
*/
|
|
6861
6869
|
|
|
6862
6870
|
}, {
|
|
@@ -6877,7 +6885,7 @@ let TablesService = /*#__PURE__*/function (_Service) {
|
|
|
6877
6885
|
* @operationId TablesController_WriteTableData
|
|
6878
6886
|
* @summary Adds the data to the table.
|
|
6879
6887
|
* @request POST:/tables/{name}/data
|
|
6880
|
-
* @response `200`
|
|
6888
|
+
* @response `200` OK
|
|
6881
6889
|
*/
|
|
6882
6890
|
|
|
6883
6891
|
}, {
|
|
@@ -6893,7 +6901,7 @@ let TablesService = /*#__PURE__*/function (_Service) {
|
|
|
6893
6901
|
* @operationId TablesController_UpdateTableData
|
|
6894
6902
|
* @summary Updates the data in the table.
|
|
6895
6903
|
* @request PATCH:/tables/{name}/data
|
|
6896
|
-
* @response `200`
|
|
6904
|
+
* @response `200` OK
|
|
6897
6905
|
*/
|
|
6898
6906
|
|
|
6899
6907
|
}, {
|
|
@@ -6914,7 +6922,7 @@ let TablesService = /*#__PURE__*/function (_Service) {
|
|
|
6914
6922
|
* @operationId TablesController_DeleteTableData
|
|
6915
6923
|
* @summary Delete data rows from the table.
|
|
6916
6924
|
* @request DELETE:/tables/{name}/data
|
|
6917
|
-
* @response `200`
|
|
6925
|
+
* @response `200` OK
|
|
6918
6926
|
*/
|
|
6919
6927
|
|
|
6920
6928
|
}, {
|
|
@@ -6935,7 +6943,7 @@ let TablesService = /*#__PURE__*/function (_Service) {
|
|
|
6935
6943
|
* @operationId TablesController_GetUniqueDataRowsAsync
|
|
6936
6944
|
* @summary Returns a single data row for each unique value defined by uniqueColumn.
|
|
6937
6945
|
* @request GET:/tables/{name}/data/unique-values
|
|
6938
|
-
* @response `200`
|
|
6946
|
+
* @response `200` OK
|
|
6939
6947
|
*/
|
|
6940
6948
|
|
|
6941
6949
|
}, {
|
|
@@ -6956,7 +6964,7 @@ let TablesService = /*#__PURE__*/function (_Service) {
|
|
|
6956
6964
|
* @operationId TablesController_MapTable
|
|
6957
6965
|
* @summary Map table to exists table.
|
|
6958
6966
|
* @request POST:/tables/map-table
|
|
6959
|
-
* @response `200`
|
|
6967
|
+
* @response `200` OK
|
|
6960
6968
|
*/
|
|
6961
6969
|
|
|
6962
6970
|
}, {
|
|
@@ -6972,7 +6980,7 @@ let TablesService = /*#__PURE__*/function (_Service) {
|
|
|
6972
6980
|
* @operationId TablesController_UnmapTableAsync
|
|
6973
6981
|
* @summary Unmap datasource from table.
|
|
6974
6982
|
* @request DELETE:/tables/map-table/{name}
|
|
6975
|
-
* @response `200`
|
|
6983
|
+
* @response `200` OK
|
|
6976
6984
|
*/
|
|
6977
6985
|
|
|
6978
6986
|
}, {
|
|
@@ -6988,7 +6996,7 @@ let TablesService = /*#__PURE__*/function (_Service) {
|
|
|
6988
6996
|
* @operationId TablesController_GetPreview
|
|
6989
6997
|
* @summary Gets preview of resource.
|
|
6990
6998
|
* @request GET:/tables/{name}/preview
|
|
6991
|
-
* @response `200`
|
|
6999
|
+
* @response `200` OK
|
|
6992
7000
|
*/
|
|
6993
7001
|
|
|
6994
7002
|
}, {
|
|
@@ -7004,7 +7012,7 @@ let TablesService = /*#__PURE__*/function (_Service) {
|
|
|
7004
7012
|
* @operationId TablesController_SetPreview
|
|
7005
7013
|
* @summary Sets preview to the resource.
|
|
7006
7014
|
* @request POST:/tables/{name}/preview
|
|
7007
|
-
* @response `200`
|
|
7015
|
+
* @response `200` OK
|
|
7008
7016
|
*/
|
|
7009
7017
|
|
|
7010
7018
|
}, {
|
|
@@ -7020,7 +7028,7 @@ let TablesService = /*#__PURE__*/function (_Service) {
|
|
|
7020
7028
|
* @operationId TablesController_DeletePreview
|
|
7021
7029
|
* @summary Delete resource preview.
|
|
7022
7030
|
* @request DELETE:/tables/{name}/preview
|
|
7023
|
-
* @response `200`
|
|
7031
|
+
* @response `200` OK
|
|
7024
7032
|
*/
|
|
7025
7033
|
|
|
7026
7034
|
}, {
|
|
@@ -7036,7 +7044,7 @@ let TablesService = /*#__PURE__*/function (_Service) {
|
|
|
7036
7044
|
* @operationId TablesController_IsExistsAsync
|
|
7037
7045
|
* @summary Check is resource exists.
|
|
7038
7046
|
* @request GET:/tables/{name}/exists
|
|
7039
|
-
* @response `200`
|
|
7047
|
+
* @response `200` OK
|
|
7040
7048
|
*/
|
|
7041
7049
|
|
|
7042
7050
|
}, {
|
|
@@ -7052,7 +7060,7 @@ let TablesService = /*#__PURE__*/function (_Service) {
|
|
|
7052
7060
|
* @operationId TablesController_GetResourceDependencies
|
|
7053
7061
|
* @summary Get resource dependencies.
|
|
7054
7062
|
* @request GET:/tables/{name}/dependencies
|
|
7055
|
-
* @response `200`
|
|
7063
|
+
* @response `200` OK
|
|
7056
7064
|
*/
|
|
7057
7065
|
|
|
7058
7066
|
}, {
|
|
@@ -7068,7 +7076,7 @@ let TablesService = /*#__PURE__*/function (_Service) {
|
|
|
7068
7076
|
* @operationId TablesController_GetResourceReferences
|
|
7069
7077
|
* @summary Returns the resource dependency information.
|
|
7070
7078
|
* @request GET:/tables/{name}/references
|
|
7071
|
-
* @response `200`
|
|
7079
|
+
* @response `200` OK
|
|
7072
7080
|
*/
|
|
7073
7081
|
|
|
7074
7082
|
}, {
|
|
@@ -7084,7 +7092,7 @@ let TablesService = /*#__PURE__*/function (_Service) {
|
|
|
7084
7092
|
* @operationId TablesController_GetPermissions
|
|
7085
7093
|
* @summary Returns resource permissions.
|
|
7086
7094
|
* @request GET:/tables/{name}/permissions
|
|
7087
|
-
* @response `200`
|
|
7095
|
+
* @response `200` OK
|
|
7088
7096
|
*/
|
|
7089
7097
|
|
|
7090
7098
|
}, {
|
|
@@ -7100,7 +7108,7 @@ let TablesService = /*#__PURE__*/function (_Service) {
|
|
|
7100
7108
|
* @operationId TablesController_AddPermissions
|
|
7101
7109
|
* @summary Adds permissions for the layer, combining existing permissions with the given one.
|
|
7102
7110
|
* @request POST:/tables/{name}/permissions
|
|
7103
|
-
* @response `200`
|
|
7111
|
+
* @response `200` OK
|
|
7104
7112
|
*/
|
|
7105
7113
|
|
|
7106
7114
|
}, {
|
|
@@ -7116,7 +7124,7 @@ let TablesService = /*#__PURE__*/function (_Service) {
|
|
|
7116
7124
|
* @operationId TablesController_SetPermissions
|
|
7117
7125
|
* @summary Replaces existing access control list for the layer with the given one.
|
|
7118
7126
|
* @request PUT:/tables/{name}/permissions
|
|
7119
|
-
* @response `200`
|
|
7127
|
+
* @response `200` OK
|
|
7120
7128
|
*/
|
|
7121
7129
|
|
|
7122
7130
|
}, {
|
|
@@ -7132,7 +7140,7 @@ let TablesService = /*#__PURE__*/function (_Service) {
|
|
|
7132
7140
|
* @operationId TablesController_RemovePermissions
|
|
7133
7141
|
* @summary Removes permissions for the layer for the given role.
|
|
7134
7142
|
* @request DELETE:/tables/{name}/permissions/{role}
|
|
7135
|
-
* @response `200`
|
|
7143
|
+
* @response `200` OK
|
|
7136
7144
|
*/
|
|
7137
7145
|
|
|
7138
7146
|
}, {
|
|
@@ -7262,7 +7270,7 @@ let VectorTileService = /*#__PURE__*/function (_Service) {
|
|
|
7262
7270
|
* @operationId VectorTileServiceController_GetVectorTile
|
|
7263
7271
|
* @summary Get vector tile from visible project layers or single layer.
|
|
7264
7272
|
* @request GET:/vt/{name}/{z}/{x}/{y}.pbf
|
|
7265
|
-
* @response `200`
|
|
7273
|
+
* @response `200` OK
|
|
7266
7274
|
*/
|
|
7267
7275
|
function getVectorTile(_ref) {
|
|
7268
7276
|
let {
|
|
@@ -7881,47 +7889,47 @@ function isFeatureLayer(layer) {
|
|
|
7881
7889
|
|
|
7882
7890
|
/**
|
|
7883
7891
|
*
|
|
7884
|
-
|
|
7892
|
+
|
|
7885
7893
|
None
|
|
7886
|
-
|
|
7894
|
+
|
|
7887
7895
|
Array
|
|
7888
|
-
|
|
7896
|
+
|
|
7889
7897
|
Min
|
|
7890
|
-
|
|
7898
|
+
|
|
7891
7899
|
Max
|
|
7892
|
-
|
|
7900
|
+
|
|
7893
7901
|
Avg
|
|
7894
|
-
|
|
7902
|
+
|
|
7895
7903
|
Sum
|
|
7896
|
-
|
|
7904
|
+
|
|
7897
7905
|
Extent
|
|
7898
|
-
|
|
7906
|
+
|
|
7899
7907
|
H3
|
|
7900
|
-
|
|
7908
|
+
|
|
7901
7909
|
Count
|
|
7902
|
-
|
|
7910
|
+
|
|
7903
7911
|
TotalCount
|
|
7904
|
-
|
|
7912
|
+
|
|
7905
7913
|
DistinctCount
|
|
7906
|
-
|
|
7914
|
+
|
|
7907
7915
|
First
|
|
7908
|
-
|
|
7916
|
+
|
|
7909
7917
|
Last
|
|
7910
|
-
|
|
7918
|
+
|
|
7911
7919
|
Median
|
|
7912
|
-
|
|
7920
|
+
|
|
7913
7921
|
Mod
|
|
7914
|
-
|
|
7922
|
+
|
|
7915
7923
|
StdDeviation
|
|
7916
|
-
|
|
7924
|
+
|
|
7917
7925
|
SumOfProduct
|
|
7918
|
-
|
|
7926
|
+
|
|
7919
7927
|
OnlyValue
|
|
7920
|
-
|
|
7928
|
+
|
|
7921
7929
|
WeightedAvg
|
|
7922
|
-
|
|
7930
|
+
|
|
7923
7931
|
DensityIndicators
|
|
7924
|
-
|
|
7932
|
+
|
|
7925
7933
|
DividedSum
|
|
7926
7934
|
*/
|
|
7927
7935
|
var AggregationFunction;
|
|
@@ -7951,13 +7959,13 @@ var AggregationFunction;
|
|
|
7951
7959
|
})(AggregationFunction || (AggregationFunction = {}));
|
|
7952
7960
|
/**
|
|
7953
7961
|
*
|
|
7954
|
-
|
|
7962
|
+
|
|
7955
7963
|
None
|
|
7956
|
-
|
|
7964
|
+
|
|
7957
7965
|
SelectFromHandBook
|
|
7958
|
-
|
|
7966
|
+
|
|
7959
7967
|
SelectFromRange
|
|
7960
|
-
|
|
7968
|
+
|
|
7961
7969
|
ViewHandBook
|
|
7962
7970
|
*/
|
|
7963
7971
|
|
|
@@ -7972,31 +7980,31 @@ var AttributeSelectorType;
|
|
|
7972
7980
|
})(AttributeSelectorType || (AttributeSelectorType = {}));
|
|
7973
7981
|
/**
|
|
7974
7982
|
*
|
|
7975
|
-
|
|
7983
|
+
|
|
7976
7984
|
Unknown
|
|
7977
|
-
|
|
7985
|
+
|
|
7978
7986
|
String
|
|
7979
|
-
|
|
7987
|
+
|
|
7980
7988
|
Int32
|
|
7981
|
-
|
|
7989
|
+
|
|
7982
7990
|
Int64
|
|
7983
|
-
|
|
7991
|
+
|
|
7984
7992
|
Double
|
|
7985
|
-
|
|
7993
|
+
|
|
7986
7994
|
DateTime
|
|
7987
|
-
|
|
7995
|
+
|
|
7988
7996
|
Boolean
|
|
7989
|
-
|
|
7997
|
+
|
|
7990
7998
|
Point
|
|
7991
|
-
|
|
7999
|
+
|
|
7992
8000
|
Polyline
|
|
7993
|
-
|
|
8001
|
+
|
|
7994
8002
|
MultiPolygon
|
|
7995
|
-
|
|
8003
|
+
|
|
7996
8004
|
Multipoint
|
|
7997
|
-
|
|
8005
|
+
|
|
7998
8006
|
H3Index
|
|
7999
|
-
|
|
8007
|
+
|
|
8000
8008
|
Json
|
|
8001
8009
|
*/
|
|
8002
8010
|
|
|
@@ -8020,15 +8028,15 @@ var AttributeType;
|
|
|
8020
8028
|
})(AttributeType || (AttributeType = {}));
|
|
8021
8029
|
/**
|
|
8022
8030
|
* Describes classification methods.
|
|
8023
|
-
|
|
8031
|
+
|
|
8024
8032
|
none
|
|
8025
|
-
|
|
8033
|
+
|
|
8026
8034
|
naturalBreaks
|
|
8027
|
-
|
|
8035
|
+
|
|
8028
8036
|
equalInterval
|
|
8029
|
-
|
|
8037
|
+
|
|
8030
8038
|
quantile
|
|
8031
|
-
|
|
8039
|
+
|
|
8032
8040
|
unique
|
|
8033
8041
|
*/
|
|
8034
8042
|
|
|
@@ -8044,11 +8052,11 @@ var ClassificationType;
|
|
|
8044
8052
|
})(ClassificationType || (ClassificationType = {}));
|
|
8045
8053
|
/**
|
|
8046
8054
|
*
|
|
8047
|
-
|
|
8055
|
+
|
|
8048
8056
|
decimal
|
|
8049
|
-
|
|
8057
|
+
|
|
8050
8058
|
dateTime
|
|
8051
|
-
|
|
8059
|
+
|
|
8052
8060
|
text
|
|
8053
8061
|
*/
|
|
8054
8062
|
|
|
@@ -8062,55 +8070,55 @@ var ClassifyAttributeType;
|
|
|
8062
8070
|
})(ClassifyAttributeType || (ClassifyAttributeType = {}));
|
|
8063
8071
|
/**
|
|
8064
8072
|
*
|
|
8065
|
-
|
|
8073
|
+
|
|
8066
8074
|
Unknown
|
|
8067
|
-
|
|
8075
|
+
|
|
8068
8076
|
SerializeError
|
|
8069
|
-
|
|
8077
|
+
|
|
8070
8078
|
InvalidDataService
|
|
8071
|
-
|
|
8079
|
+
|
|
8072
8080
|
InvalidConfiguration
|
|
8073
|
-
|
|
8081
|
+
|
|
8074
8082
|
InvalidDataServiceName
|
|
8075
|
-
|
|
8083
|
+
|
|
8076
8084
|
InvalidTableName
|
|
8077
|
-
|
|
8085
|
+
|
|
8078
8086
|
InvalidLayerName
|
|
8079
|
-
|
|
8087
|
+
|
|
8080
8088
|
ResourceNotFound
|
|
8081
|
-
|
|
8089
|
+
|
|
8082
8090
|
InvalidCondition
|
|
8083
|
-
|
|
8091
|
+
|
|
8084
8092
|
InvalidAttributes
|
|
8085
|
-
|
|
8093
|
+
|
|
8086
8094
|
InvalidIdAttribute
|
|
8087
|
-
|
|
8095
|
+
|
|
8088
8096
|
InvalidGeometryAttribute
|
|
8089
|
-
|
|
8097
|
+
|
|
8090
8098
|
InvalidGeometryAttributeType
|
|
8091
|
-
|
|
8099
|
+
|
|
8092
8100
|
InvalidColumnName
|
|
8093
|
-
|
|
8101
|
+
|
|
8094
8102
|
InvalidIdColumnSettings
|
|
8095
|
-
|
|
8103
|
+
|
|
8096
8104
|
ColumnNotExistsInTable
|
|
8097
|
-
|
|
8105
|
+
|
|
8098
8106
|
InvalidStyle
|
|
8099
|
-
|
|
8107
|
+
|
|
8100
8108
|
InvalidLayerType
|
|
8101
|
-
|
|
8109
|
+
|
|
8102
8110
|
ColumnLoadingError
|
|
8103
|
-
|
|
8111
|
+
|
|
8104
8112
|
InvalidAttributeFormat
|
|
8105
|
-
|
|
8113
|
+
|
|
8106
8114
|
DataSourceNotFound
|
|
8107
|
-
|
|
8115
|
+
|
|
8108
8116
|
DuplicateColumns
|
|
8109
|
-
|
|
8117
|
+
|
|
8110
8118
|
DuplicateAttributes
|
|
8111
|
-
|
|
8119
|
+
|
|
8112
8120
|
TableWithoutColumns
|
|
8113
|
-
|
|
8121
|
+
|
|
8114
8122
|
InvalidTableReferenceConfiguration
|
|
8115
8123
|
*/
|
|
8116
8124
|
|
|
@@ -8146,15 +8154,15 @@ var ConfigurationErrorEnum;
|
|
|
8146
8154
|
})(ConfigurationErrorEnum || (ConfigurationErrorEnum = {}));
|
|
8147
8155
|
/**
|
|
8148
8156
|
* Type of the error.
|
|
8149
|
-
|
|
8157
|
+
|
|
8150
8158
|
ResourceLimitExceeded
|
|
8151
|
-
|
|
8159
|
+
|
|
8152
8160
|
ResourceNotFound
|
|
8153
|
-
|
|
8161
|
+
|
|
8154
8162
|
InternalError
|
|
8155
|
-
|
|
8163
|
+
|
|
8156
8164
|
BadRequest
|
|
8157
|
-
|
|
8165
|
+
|
|
8158
8166
|
DuplicateContent
|
|
8159
8167
|
*/
|
|
8160
8168
|
|
|
@@ -8205,9 +8213,9 @@ var ErrorType;
|
|
|
8205
8213
|
})(ErrorType || (ErrorType = {}));
|
|
8206
8214
|
/**
|
|
8207
8215
|
* Type of the feature.
|
|
8208
|
-
|
|
8216
|
+
|
|
8209
8217
|
Unknown
|
|
8210
|
-
|
|
8218
|
+
|
|
8211
8219
|
GeometricFeature
|
|
8212
8220
|
*/
|
|
8213
8221
|
|
|
@@ -8220,11 +8228,11 @@ var FeatureType;
|
|
|
8220
8228
|
})(FeatureType || (FeatureType = {}));
|
|
8221
8229
|
/**
|
|
8222
8230
|
* Sets whether font should be styled.
|
|
8223
|
-
|
|
8231
|
+
|
|
8224
8232
|
normal
|
|
8225
|
-
|
|
8233
|
+
|
|
8226
8234
|
oblique
|
|
8227
|
-
|
|
8235
|
+
|
|
8228
8236
|
italic
|
|
8229
8237
|
*/
|
|
8230
8238
|
|
|
@@ -8238,27 +8246,27 @@ var FontStyle;
|
|
|
8238
8246
|
})(FontStyle || (FontStyle = {}));
|
|
8239
8247
|
/**
|
|
8240
8248
|
* Specifies the weight (or boldness) of the font.
|
|
8241
|
-
|
|
8249
|
+
|
|
8242
8250
|
Thin
|
|
8243
|
-
|
|
8251
|
+
|
|
8244
8252
|
ExtraLight
|
|
8245
|
-
|
|
8253
|
+
|
|
8246
8254
|
Light
|
|
8247
|
-
|
|
8255
|
+
|
|
8248
8256
|
SemiLight
|
|
8249
|
-
|
|
8257
|
+
|
|
8250
8258
|
Normal
|
|
8251
|
-
|
|
8259
|
+
|
|
8252
8260
|
Medium
|
|
8253
|
-
|
|
8261
|
+
|
|
8254
8262
|
DemiBold
|
|
8255
|
-
|
|
8263
|
+
|
|
8256
8264
|
Bold
|
|
8257
|
-
|
|
8265
|
+
|
|
8258
8266
|
ExtraBold
|
|
8259
|
-
|
|
8267
|
+
|
|
8260
8268
|
Black
|
|
8261
|
-
|
|
8269
|
+
|
|
8262
8270
|
ExtraBlack
|
|
8263
8271
|
*/
|
|
8264
8272
|
|
|
@@ -8280,17 +8288,17 @@ var FontWeight;
|
|
|
8280
8288
|
})(FontWeight || (FontWeight = {}));
|
|
8281
8289
|
/**
|
|
8282
8290
|
*
|
|
8283
|
-
|
|
8291
|
+
|
|
8284
8292
|
unknown
|
|
8285
|
-
|
|
8293
|
+
|
|
8286
8294
|
point
|
|
8287
|
-
|
|
8295
|
+
|
|
8288
8296
|
polyline
|
|
8289
|
-
|
|
8297
|
+
|
|
8290
8298
|
multipolygon
|
|
8291
|
-
|
|
8299
|
+
|
|
8292
8300
|
envelope
|
|
8293
|
-
|
|
8301
|
+
|
|
8294
8302
|
multipoint
|
|
8295
8303
|
*/
|
|
8296
8304
|
|
|
@@ -8307,13 +8315,13 @@ var GeometryType;
|
|
|
8307
8315
|
})(GeometryType || (GeometryType = {}));
|
|
8308
8316
|
/**
|
|
8309
8317
|
* Resource group.
|
|
8310
|
-
|
|
8318
|
+
|
|
8311
8319
|
my
|
|
8312
|
-
|
|
8320
|
+
|
|
8313
8321
|
role
|
|
8314
|
-
|
|
8322
|
+
|
|
8315
8323
|
public
|
|
8316
|
-
|
|
8324
|
+
|
|
8317
8325
|
all
|
|
8318
8326
|
*/
|
|
8319
8327
|
|
|
@@ -8328,13 +8336,13 @@ var Group;
|
|
|
8328
8336
|
})(Group || (Group = {}));
|
|
8329
8337
|
/**
|
|
8330
8338
|
* Specifies the settings of line cap. This is applied to the beginning and end of each non-closed line.
|
|
8331
|
-
|
|
8339
|
+
|
|
8332
8340
|
Flat
|
|
8333
|
-
|
|
8341
|
+
|
|
8334
8342
|
Square
|
|
8335
|
-
|
|
8343
|
+
|
|
8336
8344
|
Round
|
|
8337
|
-
|
|
8345
|
+
|
|
8338
8346
|
Triangle
|
|
8339
8347
|
*/
|
|
8340
8348
|
|
|
@@ -8349,29 +8357,29 @@ var LineCapStyle;
|
|
|
8349
8357
|
})(LineCapStyle || (LineCapStyle = {}));
|
|
8350
8358
|
/**
|
|
8351
8359
|
* Type of the line ending.
|
|
8352
|
-
|
|
8360
|
+
|
|
8353
8361
|
none
|
|
8354
|
-
|
|
8362
|
+
|
|
8355
8363
|
arrow
|
|
8356
|
-
|
|
8364
|
+
|
|
8357
8365
|
filledArrow
|
|
8358
|
-
|
|
8366
|
+
|
|
8359
8367
|
square
|
|
8360
|
-
|
|
8368
|
+
|
|
8361
8369
|
filledSquare
|
|
8362
|
-
|
|
8370
|
+
|
|
8363
8371
|
circle
|
|
8364
|
-
|
|
8372
|
+
|
|
8365
8373
|
filledCircle
|
|
8366
|
-
|
|
8374
|
+
|
|
8367
8375
|
diamond
|
|
8368
|
-
|
|
8376
|
+
|
|
8369
8377
|
filledDiamond
|
|
8370
|
-
|
|
8378
|
+
|
|
8371
8379
|
roundSquare
|
|
8372
|
-
|
|
8380
|
+
|
|
8373
8381
|
filledRoundSquare
|
|
8374
|
-
|
|
8382
|
+
|
|
8375
8383
|
svg
|
|
8376
8384
|
*/
|
|
8377
8385
|
|
|
@@ -8394,11 +8402,11 @@ var LineEndingType;
|
|
|
8394
8402
|
})(LineEndingType || (LineEndingType = {}));
|
|
8395
8403
|
/**
|
|
8396
8404
|
* Specifies the settings of lines join. This is applied to corners in lines and rectangles.
|
|
8397
|
-
|
|
8405
|
+
|
|
8398
8406
|
Miter
|
|
8399
|
-
|
|
8407
|
+
|
|
8400
8408
|
Bevel
|
|
8401
|
-
|
|
8409
|
+
|
|
8402
8410
|
Round
|
|
8403
8411
|
*/
|
|
8404
8412
|
|
|
@@ -8412,11 +8420,11 @@ var LineJoinType;
|
|
|
8412
8420
|
})(LineJoinType || (LineJoinType = {}));
|
|
8413
8421
|
/**
|
|
8414
8422
|
*
|
|
8415
|
-
|
|
8423
|
+
|
|
8416
8424
|
All
|
|
8417
|
-
|
|
8425
|
+
|
|
8418
8426
|
Directory
|
|
8419
|
-
|
|
8427
|
+
|
|
8420
8428
|
File
|
|
8421
8429
|
*/
|
|
8422
8430
|
|
|
@@ -8430,15 +8438,15 @@ var ObjectTypeFilter;
|
|
|
8430
8438
|
})(ObjectTypeFilter || (ObjectTypeFilter = {}));
|
|
8431
8439
|
/**
|
|
8432
8440
|
*
|
|
8433
|
-
|
|
8441
|
+
|
|
8434
8442
|
Unknown
|
|
8435
|
-
|
|
8443
|
+
|
|
8436
8444
|
union
|
|
8437
|
-
|
|
8445
|
+
|
|
8438
8446
|
intersection
|
|
8439
|
-
|
|
8447
|
+
|
|
8440
8448
|
subtraction
|
|
8441
|
-
|
|
8449
|
+
|
|
8442
8450
|
symDifference
|
|
8443
8451
|
*/
|
|
8444
8452
|
|
|
@@ -8454,11 +8462,11 @@ var Operation;
|
|
|
8454
8462
|
})(Operation || (Operation = {}));
|
|
8455
8463
|
/**
|
|
8456
8464
|
*
|
|
8457
|
-
|
|
8465
|
+
|
|
8458
8466
|
My
|
|
8459
|
-
|
|
8467
|
+
|
|
8460
8468
|
All
|
|
8461
|
-
|
|
8469
|
+
|
|
8462
8470
|
Other
|
|
8463
8471
|
*/
|
|
8464
8472
|
|
|
@@ -8472,9 +8480,9 @@ var OwnerFilter;
|
|
|
8472
8480
|
})(OwnerFilter || (OwnerFilter = {}));
|
|
8473
8481
|
/**
|
|
8474
8482
|
* Influences the y direction of the tile coordinates. The global-mercator (aka Spherical Mercator) profile is assumed.
|
|
8475
|
-
|
|
8483
|
+
|
|
8476
8484
|
xyz
|
|
8477
|
-
|
|
8485
|
+
|
|
8478
8486
|
tms
|
|
8479
8487
|
*/
|
|
8480
8488
|
|
|
@@ -8487,19 +8495,19 @@ var PbfSchema;
|
|
|
8487
8495
|
})(PbfSchema || (PbfSchema = {}));
|
|
8488
8496
|
/**
|
|
8489
8497
|
*
|
|
8490
|
-
|
|
8498
|
+
|
|
8491
8499
|
none
|
|
8492
|
-
|
|
8500
|
+
|
|
8493
8501
|
configure
|
|
8494
|
-
|
|
8502
|
+
|
|
8495
8503
|
write
|
|
8496
|
-
|
|
8504
|
+
|
|
8497
8505
|
read
|
|
8498
|
-
|
|
8506
|
+
|
|
8499
8507
|
read,configure
|
|
8500
|
-
|
|
8508
|
+
|
|
8501
8509
|
read,write
|
|
8502
|
-
|
|
8510
|
+
|
|
8503
8511
|
read,write,configure
|
|
8504
8512
|
*/
|
|
8505
8513
|
|
|
@@ -8517,19 +8525,19 @@ var Permissions;
|
|
|
8517
8525
|
})(Permissions || (Permissions = {}));
|
|
8518
8526
|
/**
|
|
8519
8527
|
* Type of the authorization policy.
|
|
8520
|
-
|
|
8528
|
+
|
|
8521
8529
|
Unknown
|
|
8522
|
-
|
|
8530
|
+
|
|
8523
8531
|
CreateTable
|
|
8524
|
-
|
|
8532
|
+
|
|
8525
8533
|
CreateLayer
|
|
8526
|
-
|
|
8534
|
+
|
|
8527
8535
|
CreateProject
|
|
8528
|
-
|
|
8536
|
+
|
|
8529
8537
|
MaxFeaturesInOneTable
|
|
8530
|
-
|
|
8538
|
+
|
|
8531
8539
|
MaxObjectsToExport
|
|
8532
|
-
|
|
8540
|
+
|
|
8533
8541
|
MaxUploadContentSize
|
|
8534
8542
|
*/
|
|
8535
8543
|
|
|
@@ -8547,11 +8555,11 @@ var PolicyType;
|
|
|
8547
8555
|
})(PolicyType || (PolicyType = {}));
|
|
8548
8556
|
/**
|
|
8549
8557
|
* Stream quality.
|
|
8550
|
-
|
|
8558
|
+
|
|
8551
8559
|
Low
|
|
8552
|
-
|
|
8560
|
+
|
|
8553
8561
|
Medium
|
|
8554
|
-
|
|
8562
|
+
|
|
8555
8563
|
High
|
|
8556
8564
|
*/
|
|
8557
8565
|
|
|
@@ -8565,17 +8573,17 @@ var Quality;
|
|
|
8565
8573
|
})(Quality || (Quality = {}));
|
|
8566
8574
|
/**
|
|
8567
8575
|
*
|
|
8568
|
-
|
|
8576
|
+
|
|
8569
8577
|
OneToMany
|
|
8570
|
-
|
|
8578
|
+
|
|
8571
8579
|
OneToOne
|
|
8572
|
-
|
|
8580
|
+
|
|
8573
8581
|
Intersect
|
|
8574
|
-
|
|
8582
|
+
|
|
8575
8583
|
RightJoin
|
|
8576
|
-
|
|
8584
|
+
|
|
8577
8585
|
FullJoin
|
|
8578
|
-
|
|
8586
|
+
|
|
8579
8587
|
CrossJoin
|
|
8580
8588
|
*/
|
|
8581
8589
|
|
|
@@ -8592,19 +8600,19 @@ var ReferenceJoinType;
|
|
|
8592
8600
|
})(ReferenceJoinType || (ReferenceJoinType = {}));
|
|
8593
8601
|
/**
|
|
8594
8602
|
*
|
|
8595
|
-
|
|
8603
|
+
|
|
8596
8604
|
Unknown
|
|
8597
|
-
|
|
8605
|
+
|
|
8598
8606
|
table
|
|
8599
|
-
|
|
8607
|
+
|
|
8600
8608
|
layer
|
|
8601
|
-
|
|
8609
|
+
|
|
8602
8610
|
project
|
|
8603
|
-
|
|
8611
|
+
|
|
8604
8612
|
file
|
|
8605
|
-
|
|
8613
|
+
|
|
8606
8614
|
feature
|
|
8607
|
-
|
|
8615
|
+
|
|
8608
8616
|
tag
|
|
8609
8617
|
*/
|
|
8610
8618
|
|
|
@@ -8630,21 +8638,21 @@ var ResourceTypeLink;
|
|
|
8630
8638
|
})(ResourceTypeLink || (ResourceTypeLink = {}));
|
|
8631
8639
|
/**
|
|
8632
8640
|
* Status of the server task.
|
|
8633
|
-
|
|
8641
|
+
|
|
8634
8642
|
None
|
|
8635
|
-
|
|
8643
|
+
|
|
8636
8644
|
Scheduled
|
|
8637
|
-
|
|
8645
|
+
|
|
8638
8646
|
Planning
|
|
8639
|
-
|
|
8647
|
+
|
|
8640
8648
|
Executing
|
|
8641
|
-
|
|
8649
|
+
|
|
8642
8650
|
Completed
|
|
8643
|
-
|
|
8651
|
+
|
|
8644
8652
|
Failed
|
|
8645
|
-
|
|
8653
|
+
|
|
8646
8654
|
Canceled
|
|
8647
|
-
|
|
8655
|
+
|
|
8648
8656
|
Timeout
|
|
8649
8657
|
*/
|
|
8650
8658
|
|
|
@@ -8663,11 +8671,11 @@ var ServerTaskStatus;
|
|
|
8663
8671
|
})(ServerTaskStatus || (ServerTaskStatus = {}));
|
|
8664
8672
|
/**
|
|
8665
8673
|
*
|
|
8666
|
-
|
|
8674
|
+
|
|
8667
8675
|
Basic
|
|
8668
|
-
|
|
8676
|
+
|
|
8669
8677
|
PreserveTopology
|
|
8670
|
-
|
|
8678
|
+
|
|
8671
8679
|
VW
|
|
8672
8680
|
*/
|
|
8673
8681
|
|
|
@@ -8681,13 +8689,13 @@ var SimplifyType;
|
|
|
8681
8689
|
})(SimplifyType || (SimplifyType = {}));
|
|
8682
8690
|
/**
|
|
8683
8691
|
*
|
|
8684
|
-
|
|
8692
|
+
|
|
8685
8693
|
None
|
|
8686
|
-
|
|
8694
|
+
|
|
8687
8695
|
Image
|
|
8688
|
-
|
|
8696
|
+
|
|
8689
8697
|
PkkCode
|
|
8690
|
-
|
|
8698
|
+
|
|
8691
8699
|
Attachments
|
|
8692
8700
|
*/
|
|
8693
8701
|
|
|
@@ -8702,9 +8710,9 @@ var StringSubType;
|
|
|
8702
8710
|
})(StringSubType || (StringSubType = {}));
|
|
8703
8711
|
/**
|
|
8704
8712
|
* Task owner group.
|
|
8705
|
-
|
|
8713
|
+
|
|
8706
8714
|
my
|
|
8707
|
-
|
|
8715
|
+
|
|
8708
8716
|
all
|
|
8709
8717
|
*/
|
|
8710
8718
|
|
|
@@ -8717,13 +8725,13 @@ var TaskGroup;
|
|
|
8717
8725
|
})(TaskGroup || (TaskGroup = {}));
|
|
8718
8726
|
/**
|
|
8719
8727
|
* Sets the horizontal alignment of text.
|
|
8720
|
-
|
|
8728
|
+
|
|
8721
8729
|
right
|
|
8722
|
-
|
|
8730
|
+
|
|
8723
8731
|
left
|
|
8724
|
-
|
|
8732
|
+
|
|
8725
8733
|
center
|
|
8726
|
-
|
|
8734
|
+
|
|
8727
8735
|
justified
|
|
8728
8736
|
*/
|
|
8729
8737
|
|
|
@@ -8738,11 +8746,11 @@ var TextAlignment;
|
|
|
8738
8746
|
})(TextAlignment || (TextAlignment = {}));
|
|
8739
8747
|
/**
|
|
8740
8748
|
* Sets the vertical alignment of text.
|
|
8741
|
-
|
|
8749
|
+
|
|
8742
8750
|
top
|
|
8743
|
-
|
|
8751
|
+
|
|
8744
8752
|
bottom
|
|
8745
|
-
|
|
8753
|
+
|
|
8746
8754
|
middle
|
|
8747
8755
|
*/
|
|
8748
8756
|
|