@evergis/api 3.0.108 → 3.0.110
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/Api.d.ts +2 -1
- package/dist/__generated__/AccountPreviewService.d.ts +1 -1
- package/dist/__generated__/AccountService.d.ts +1 -1
- package/dist/__generated__/BulkOperationsService.d.ts +1 -1
- package/dist/__generated__/ClientSettingsService.d.ts +1 -1
- package/dist/__generated__/ExternalProvidersService.d.ts +1 -1
- package/dist/__generated__/FeedbackService.d.ts +1 -1
- package/dist/__generated__/FiltersService.d.ts +1 -1
- package/dist/__generated__/GeneralService.d.ts +1 -1
- package/dist/__generated__/GeocodeService.d.ts +1 -1
- package/dist/__generated__/IceRouterService.d.ts +1 -1
- package/dist/__generated__/ImportService.d.ts +1 -1
- package/dist/__generated__/LayersService.d.ts +1 -1
- package/dist/__generated__/NamespaceService.d.ts +1 -1
- package/dist/__generated__/NotificationService.d.ts +1 -1
- package/dist/__generated__/PrintService.d.ts +1 -1
- package/dist/__generated__/ProjectsService.d.ts +3 -3
- package/dist/__generated__/ResourceCatalogService.d.ts +1 -1
- package/dist/__generated__/S3Service.d.ts +1 -1
- package/dist/__generated__/SchedulerService.d.ts +1 -1
- package/dist/__generated__/SecurityService.d.ts +1 -1
- package/dist/__generated__/StaticContentService.d.ts +1 -1
- package/dist/__generated__/StatisticService.d.ts +3 -3
- package/dist/__generated__/StyleService.d.ts +1 -1
- package/dist/__generated__/TablesService.d.ts +3 -3
- package/dist/__generated__/TagsService.d.ts +1 -1
- package/dist/__generated__/ToolsService.d.ts +1 -1
- package/dist/__generated__/WfsServerService.d.ts +1 -1
- package/dist/__generated__/WmsServerService.d.ts +3 -3
- package/dist/__generated__/WmtsService.d.ts +1 -1
- package/dist/__generated__/data-contracts.d.ts +242 -174
- package/dist/api.cjs.development.js +131 -40
- 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 +301 -187
- package/dist/api.esm.js.map +1 -1
- package/dist/layers/EvergisTileLayer.d.ts +1 -0
- package/dist/services/Filters.d.ts +3 -0
- package/dist/services/index.d.ts +1 -0
- package/package.json +3 -3
package/dist/api.esm.js
CHANGED
|
@@ -29,9 +29,6 @@ function _defineProperties(target, props) {
|
|
|
29
29
|
function _createClass(Constructor, protoProps, staticProps) {
|
|
30
30
|
if (protoProps) _defineProperties(Constructor.prototype, protoProps);
|
|
31
31
|
if (staticProps) _defineProperties(Constructor, staticProps);
|
|
32
|
-
Object.defineProperty(Constructor, "prototype", {
|
|
33
|
-
writable: false
|
|
34
|
-
});
|
|
35
32
|
return Constructor;
|
|
36
33
|
}
|
|
37
34
|
|
|
@@ -65,9 +62,6 @@ function _inherits(subClass, superClass) {
|
|
|
65
62
|
configurable: true
|
|
66
63
|
}
|
|
67
64
|
});
|
|
68
|
-
Object.defineProperty(subClass, "prototype", {
|
|
69
|
-
writable: false
|
|
70
|
-
});
|
|
71
65
|
if (superClass) _setPrototypeOf(subClass, superClass);
|
|
72
66
|
}
|
|
73
67
|
|
|
@@ -126,8 +120,6 @@ function _assertThisInitialized(self) {
|
|
|
126
120
|
function _possibleConstructorReturn(self, call) {
|
|
127
121
|
if (call && (typeof call === "object" || typeof call === "function")) {
|
|
128
122
|
return call;
|
|
129
|
-
} else if (call !== void 0) {
|
|
130
|
-
throw new TypeError("Derived constructors may only return object or undefined");
|
|
131
123
|
}
|
|
132
124
|
|
|
133
125
|
return _assertThisInitialized(self);
|
|
@@ -161,7 +153,7 @@ function _superPropBase(object, property) {
|
|
|
161
153
|
return object;
|
|
162
154
|
}
|
|
163
155
|
|
|
164
|
-
function _get() {
|
|
156
|
+
function _get(target, property, receiver) {
|
|
165
157
|
if (typeof Reflect !== "undefined" && Reflect.get) {
|
|
166
158
|
_get = Reflect.get;
|
|
167
159
|
} else {
|
|
@@ -172,14 +164,14 @@ function _get() {
|
|
|
172
164
|
var desc = Object.getOwnPropertyDescriptor(base, property);
|
|
173
165
|
|
|
174
166
|
if (desc.get) {
|
|
175
|
-
return desc.get.call(
|
|
167
|
+
return desc.get.call(receiver);
|
|
176
168
|
}
|
|
177
169
|
|
|
178
170
|
return desc.value;
|
|
179
171
|
};
|
|
180
172
|
}
|
|
181
173
|
|
|
182
|
-
return _get
|
|
174
|
+
return _get(target, property, receiver || target);
|
|
183
175
|
}
|
|
184
176
|
|
|
185
177
|
let HttpClient = /*#__PURE__*/function () {
|
|
@@ -322,7 +314,7 @@ let Service = /*#__PURE__*/_createClass(function Service(http) {
|
|
|
322
314
|
|
|
323
315
|
/**
|
|
324
316
|
* @title Spatial Processing Core API
|
|
325
|
-
* @version
|
|
317
|
+
* @version 1.0.0
|
|
326
318
|
* @baseUrl /sp
|
|
327
319
|
*/
|
|
328
320
|
|
|
@@ -374,7 +366,7 @@ let BulkOperations = /*#__PURE__*/function (_BulkOperationsServic) {
|
|
|
374
366
|
|
|
375
367
|
/**
|
|
376
368
|
* @title Spatial Processing Core API
|
|
377
|
-
* @version
|
|
369
|
+
* @version 1.0.0
|
|
378
370
|
* @baseUrl /sp
|
|
379
371
|
*/
|
|
380
372
|
|
|
@@ -526,7 +518,7 @@ let Security = /*#__PURE__*/function (_SecurityService) {
|
|
|
526
518
|
|
|
527
519
|
/**
|
|
528
520
|
* @title Spatial Processing Core API
|
|
529
|
-
* @version
|
|
521
|
+
* @version 1.0.0
|
|
530
522
|
* @baseUrl /sp
|
|
531
523
|
*/
|
|
532
524
|
|
|
@@ -636,7 +628,91 @@ let FileUpload = /*#__PURE__*/function (_StaticContentService) {
|
|
|
636
628
|
|
|
637
629
|
/**
|
|
638
630
|
* @title Spatial Processing Core API
|
|
639
|
-
* @version
|
|
631
|
+
* @version 1.0.0
|
|
632
|
+
* @baseUrl /sp
|
|
633
|
+
*/
|
|
634
|
+
|
|
635
|
+
let FiltersService = /*#__PURE__*/function (_Service) {
|
|
636
|
+
_inherits(FiltersService, _Service);
|
|
637
|
+
|
|
638
|
+
var _super = /*#__PURE__*/_createSuper(FiltersService);
|
|
639
|
+
|
|
640
|
+
function FiltersService() {
|
|
641
|
+
_classCallCheck(this, FiltersService);
|
|
642
|
+
|
|
643
|
+
return _super.apply(this, arguments);
|
|
644
|
+
}
|
|
645
|
+
|
|
646
|
+
_createClass(FiltersService, [{
|
|
647
|
+
key: "get",
|
|
648
|
+
value:
|
|
649
|
+
/**
|
|
650
|
+
* No description
|
|
651
|
+
*
|
|
652
|
+
* @tags FiltersService
|
|
653
|
+
* @name Get
|
|
654
|
+
* @operationId FiltersServiceController_Get
|
|
655
|
+
* @summary Returns the filter by its id.
|
|
656
|
+
* @request GET:/filters/{id}
|
|
657
|
+
* @response `200` Success
|
|
658
|
+
*/
|
|
659
|
+
function get(id) {
|
|
660
|
+
return this.http.get("/filters/" + id).text();
|
|
661
|
+
}
|
|
662
|
+
/**
|
|
663
|
+
* No description
|
|
664
|
+
*
|
|
665
|
+
* @tags FiltersService
|
|
666
|
+
* @name Update
|
|
667
|
+
* @operationId FiltersServiceController_Update
|
|
668
|
+
* @summary Replaces a filter and gives it a new id.
|
|
669
|
+
* @request POST:/filters/{id}
|
|
670
|
+
* @response `200` Success
|
|
671
|
+
*/
|
|
672
|
+
|
|
673
|
+
}, {
|
|
674
|
+
key: "update",
|
|
675
|
+
value: function update(id, data) {
|
|
676
|
+
return this.http.post("/filters/" + id, data).json();
|
|
677
|
+
}
|
|
678
|
+
/**
|
|
679
|
+
* No description
|
|
680
|
+
*
|
|
681
|
+
* @tags FiltersService
|
|
682
|
+
* @name Create
|
|
683
|
+
* @operationId FiltersServiceController_Create
|
|
684
|
+
* @summary Creates a new filter.
|
|
685
|
+
* @request POST:/filters
|
|
686
|
+
* @response `200` Success
|
|
687
|
+
*/
|
|
688
|
+
|
|
689
|
+
}, {
|
|
690
|
+
key: "create",
|
|
691
|
+
value: function create(data) {
|
|
692
|
+
return this.http.post("/filters", data).json();
|
|
693
|
+
}
|
|
694
|
+
}]);
|
|
695
|
+
|
|
696
|
+
return FiltersService;
|
|
697
|
+
}(Service);
|
|
698
|
+
|
|
699
|
+
let Filters = /*#__PURE__*/function (_FiltersService) {
|
|
700
|
+
_inherits(Filters, _FiltersService);
|
|
701
|
+
|
|
702
|
+
var _super = /*#__PURE__*/_createSuper(Filters);
|
|
703
|
+
|
|
704
|
+
function Filters() {
|
|
705
|
+
_classCallCheck(this, Filters);
|
|
706
|
+
|
|
707
|
+
return _super.apply(this, arguments);
|
|
708
|
+
}
|
|
709
|
+
|
|
710
|
+
return _createClass(Filters);
|
|
711
|
+
}(FiltersService);
|
|
712
|
+
|
|
713
|
+
/**
|
|
714
|
+
* @title Spatial Processing Core API
|
|
715
|
+
* @version 1.0.0
|
|
640
716
|
* @baseUrl /sp
|
|
641
717
|
*/
|
|
642
718
|
|
|
@@ -752,7 +828,7 @@ let Import = /*#__PURE__*/function (_ImportService) {
|
|
|
752
828
|
|
|
753
829
|
/**
|
|
754
830
|
* @title Spatial Processing Core API
|
|
755
|
-
* @version
|
|
831
|
+
* @version 1.0.0
|
|
756
832
|
* @baseUrl /sp
|
|
757
833
|
*/
|
|
758
834
|
|
|
@@ -891,8 +967,8 @@ let Notification = /*#__PURE__*/function (_NotificationService) {
|
|
|
891
967
|
|| event.code === 4002
|
|
892
968
|
/* InvalidSession */
|
|
893
969
|
) {
|
|
894
|
-
|
|
895
|
-
|
|
970
|
+
_this.connectStatus = ConnectionStatus.SessionClosed;
|
|
971
|
+
} else if (_this.reconnectTries < _this.MAX_WS_RECONNECT_TRIES) {
|
|
896
972
|
_this.connectStatus = ConnectionStatus.Break;
|
|
897
973
|
_this.reconnectTries++;
|
|
898
974
|
|
|
@@ -1010,7 +1086,7 @@ let NotificationEvent = /*#__PURE__*/_createClass(function NotificationEvent(dat
|
|
|
1010
1086
|
|
|
1011
1087
|
/**
|
|
1012
1088
|
* @title Spatial Processing Core API
|
|
1013
|
-
* @version
|
|
1089
|
+
* @version 1.0.0
|
|
1014
1090
|
* @baseUrl /sp
|
|
1015
1091
|
*/
|
|
1016
1092
|
|
|
@@ -1398,7 +1474,7 @@ let Scheduler = /*#__PURE__*/function (_SchedulerService) {
|
|
|
1398
1474
|
const taskProgress = await this.getTaskProgress(id);
|
|
1399
1475
|
this.resolveTaskStatus(taskProgress, resolve, reject);
|
|
1400
1476
|
|
|
1401
|
-
const taskResultCallback = async _ref => {
|
|
1477
|
+
const taskResultCallback = async (_ref) => {
|
|
1402
1478
|
let {
|
|
1403
1479
|
data
|
|
1404
1480
|
} = _ref;
|
|
@@ -1462,7 +1538,7 @@ const _excluded = ["name"],
|
|
|
1462
1538
|
_excluded19 = ["layerName"];
|
|
1463
1539
|
/**
|
|
1464
1540
|
* @title Spatial Processing Core API
|
|
1465
|
-
* @version
|
|
1541
|
+
* @version 1.0.0
|
|
1466
1542
|
* @baseUrl /sp
|
|
1467
1543
|
*/
|
|
1468
1544
|
|
|
@@ -2602,7 +2678,7 @@ const _excluded$2 = ["name"],
|
|
|
2602
2678
|
_excluded4$1 = ["name"];
|
|
2603
2679
|
/**
|
|
2604
2680
|
* @title Spatial Processing Core API
|
|
2605
|
-
* @version
|
|
2681
|
+
* @version 1.0.0
|
|
2606
2682
|
* @baseUrl /sp
|
|
2607
2683
|
*/
|
|
2608
2684
|
|
|
@@ -3082,7 +3158,7 @@ let Tables = /*#__PURE__*/function (_TablesService) {
|
|
|
3082
3158
|
|
|
3083
3159
|
/**
|
|
3084
3160
|
* @title Spatial Processing Core API
|
|
3085
|
-
* @version
|
|
3161
|
+
* @version 1.0.0
|
|
3086
3162
|
* @baseUrl /sp
|
|
3087
3163
|
*/
|
|
3088
3164
|
|
|
@@ -3540,12 +3616,12 @@ let Resources = /*#__PURE__*/function () {
|
|
|
3540
3616
|
}, {
|
|
3541
3617
|
key: "getDependentNames",
|
|
3542
3618
|
value: function getDependentNames(deps, depType) {
|
|
3543
|
-
return deps.filter(_ref => {
|
|
3619
|
+
return deps.filter((_ref) => {
|
|
3544
3620
|
let {
|
|
3545
3621
|
type
|
|
3546
3622
|
} = _ref;
|
|
3547
3623
|
return type === depType;
|
|
3548
|
-
}).map(_ref2 => {
|
|
3624
|
+
}).map((_ref2) => {
|
|
3549
3625
|
let {
|
|
3550
3626
|
name
|
|
3551
3627
|
} = _ref2;
|
|
@@ -3559,7 +3635,7 @@ let Resources = /*#__PURE__*/function () {
|
|
|
3559
3635
|
|
|
3560
3636
|
/**
|
|
3561
3637
|
* @title Spatial Processing Core API
|
|
3562
|
-
* @version
|
|
3638
|
+
* @version 1.0.0
|
|
3563
3639
|
* @baseUrl /sp
|
|
3564
3640
|
*/
|
|
3565
3641
|
|
|
@@ -3694,7 +3770,7 @@ const _excluded$3 = ["providerName"],
|
|
|
3694
3770
|
_excluded3$2 = ["providerName"];
|
|
3695
3771
|
/**
|
|
3696
3772
|
* @title Spatial Processing Core API
|
|
3697
|
-
* @version
|
|
3773
|
+
* @version 1.0.0
|
|
3698
3774
|
* @baseUrl /sp
|
|
3699
3775
|
*/
|
|
3700
3776
|
|
|
@@ -3810,7 +3886,7 @@ let Geocode = /*#__PURE__*/function (_GeocodeService) {
|
|
|
3810
3886
|
|
|
3811
3887
|
/**
|
|
3812
3888
|
* @title Spatial Processing Core API
|
|
3813
|
-
* @version
|
|
3889
|
+
* @version 1.0.0
|
|
3814
3890
|
* @baseUrl /sp
|
|
3815
3891
|
*/
|
|
3816
3892
|
|
|
@@ -3878,7 +3954,7 @@ let ResourceCatalog = /*#__PURE__*/function (_ResourceCatalogServi) {
|
|
|
3878
3954
|
|
|
3879
3955
|
/**
|
|
3880
3956
|
* @title Spatial Processing Core API
|
|
3881
|
-
* @version
|
|
3957
|
+
* @version 1.0.0
|
|
3882
3958
|
* @baseUrl /sp
|
|
3883
3959
|
*/
|
|
3884
3960
|
|
|
@@ -3912,7 +3988,7 @@ let Tools = /*#__PURE__*/function (_ToolsService) {
|
|
|
3912
3988
|
|
|
3913
3989
|
/**
|
|
3914
3990
|
* @title Spatial Processing Core API
|
|
3915
|
-
* @version
|
|
3991
|
+
* @version 1.0.0
|
|
3916
3992
|
* @baseUrl /sp
|
|
3917
3993
|
*/
|
|
3918
3994
|
|
|
@@ -4012,7 +4088,7 @@ let General = /*#__PURE__*/function (_GeneralService) {
|
|
|
4012
4088
|
|
|
4013
4089
|
/**
|
|
4014
4090
|
* @title Spatial Processing Core API
|
|
4015
|
-
* @version
|
|
4091
|
+
* @version 1.0.0
|
|
4016
4092
|
* @baseUrl /sp
|
|
4017
4093
|
*/
|
|
4018
4094
|
|
|
@@ -4112,7 +4188,7 @@ let Namespace = /*#__PURE__*/function (_NamespaceService) {
|
|
|
4112
4188
|
|
|
4113
4189
|
/**
|
|
4114
4190
|
* @title Spatial Processing Core API
|
|
4115
|
-
* @version
|
|
4191
|
+
* @version 1.0.0
|
|
4116
4192
|
* @baseUrl /sp
|
|
4117
4193
|
*/
|
|
4118
4194
|
|
|
@@ -4788,7 +4864,7 @@ let Account = /*#__PURE__*/function (_AccountService) {
|
|
|
4788
4864
|
const _excluded$4 = ["username"];
|
|
4789
4865
|
/**
|
|
4790
4866
|
* @title Spatial Processing Core API
|
|
4791
|
-
* @version
|
|
4867
|
+
* @version 1.0.0
|
|
4792
4868
|
* @baseUrl /sp
|
|
4793
4869
|
*/
|
|
4794
4870
|
|
|
@@ -4942,7 +5018,7 @@ let AccountPreview = /*#__PURE__*/function (_AccountPreviewServic) {
|
|
|
4942
5018
|
|
|
4943
5019
|
/**
|
|
4944
5020
|
* @title Spatial Processing Core API
|
|
4945
|
-
* @version
|
|
5021
|
+
* @version 1.0.0
|
|
4946
5022
|
* @baseUrl /sp
|
|
4947
5023
|
*/
|
|
4948
5024
|
|
|
@@ -5207,7 +5283,7 @@ let External = /*#__PURE__*/function (_ExternalProvidersSer) {
|
|
|
5207
5283
|
|
|
5208
5284
|
/**
|
|
5209
5285
|
* @title Spatial Processing Core API
|
|
5210
|
-
* @version
|
|
5286
|
+
* @version 1.0.0
|
|
5211
5287
|
* @baseUrl /sp
|
|
5212
5288
|
*/
|
|
5213
5289
|
|
|
@@ -5533,7 +5609,7 @@ let Names = /*#__PURE__*/function () {
|
|
|
5533
5609
|
|
|
5534
5610
|
/**
|
|
5535
5611
|
* @title Spatial Processing Core API
|
|
5536
|
-
* @version
|
|
5612
|
+
* @version 1.0.0
|
|
5537
5613
|
* @baseUrl /sp
|
|
5538
5614
|
*/
|
|
5539
5615
|
|
|
@@ -5601,7 +5677,7 @@ let IceRouter = /*#__PURE__*/function (_IceRouterService) {
|
|
|
5601
5677
|
|
|
5602
5678
|
/**
|
|
5603
5679
|
* @title Spatial Processing Core API
|
|
5604
|
-
* @version
|
|
5680
|
+
* @version 1.0.0
|
|
5605
5681
|
* @baseUrl /sp
|
|
5606
5682
|
*/
|
|
5607
5683
|
|
|
@@ -5697,7 +5773,7 @@ let Statistic = /*#__PURE__*/function (_StatisticService) {
|
|
|
5697
5773
|
|
|
5698
5774
|
/**
|
|
5699
5775
|
* @title Spatial Processing Core API
|
|
5700
|
-
* @version
|
|
5776
|
+
* @version 1.0.0
|
|
5701
5777
|
* @baseUrl /sp
|
|
5702
5778
|
*/
|
|
5703
5779
|
|
|
@@ -5788,7 +5864,7 @@ let Feedback = /*#__PURE__*/function (_FeedbackService) {
|
|
|
5788
5864
|
|
|
5789
5865
|
/**
|
|
5790
5866
|
* @title Spatial Processing Core API
|
|
5791
|
-
* @version
|
|
5867
|
+
* @version 1.0.0
|
|
5792
5868
|
* @baseUrl /sp
|
|
5793
5869
|
*/
|
|
5794
5870
|
|
|
@@ -5986,6 +6062,7 @@ let Api = /*#__PURE__*/function (_EventEmitter) {
|
|
|
5986
6062
|
_this.notification = new Notification(_this.http, _assertThisInitialized(_this));
|
|
5987
6063
|
_this.scheduler = new Scheduler(_this.http);
|
|
5988
6064
|
_this.file = new FileUpload(_this.http);
|
|
6065
|
+
_this.filters = new Filters(_this.http);
|
|
5989
6066
|
_this.import = new Import(_this.http);
|
|
5990
6067
|
_this.geocode = new Geocode(_this.http);
|
|
5991
6068
|
_this.print = new Print(_this.http);
|
|
@@ -6126,7 +6203,8 @@ let EvergisTileLayer = /*#__PURE__*/function (_TileLayer) {
|
|
|
6126
6203
|
_classCallCheck(this, EvergisTileLayer);
|
|
6127
6204
|
|
|
6128
6205
|
_this = _super.call(this, '', {
|
|
6129
|
-
crs: configuration.crs
|
|
6206
|
+
crs: configuration.crs,
|
|
6207
|
+
opacity: configuration.opacity
|
|
6130
6208
|
});
|
|
6131
6209
|
_this.api = api;
|
|
6132
6210
|
_this.name = configuration.name;
|
|
@@ -6441,45 +6519,45 @@ function isFeatureLayer(layer) {
|
|
|
6441
6519
|
|
|
6442
6520
|
/**
|
|
6443
6521
|
*
|
|
6444
|
-
|
|
6522
|
+
|
|
6445
6523
|
None
|
|
6446
|
-
|
|
6524
|
+
|
|
6447
6525
|
Array
|
|
6448
|
-
|
|
6526
|
+
|
|
6449
6527
|
Min
|
|
6450
|
-
|
|
6528
|
+
|
|
6451
6529
|
Max
|
|
6452
|
-
|
|
6530
|
+
|
|
6453
6531
|
Avg
|
|
6454
|
-
|
|
6532
|
+
|
|
6455
6533
|
Sum
|
|
6456
|
-
|
|
6534
|
+
|
|
6457
6535
|
Extent
|
|
6458
|
-
|
|
6536
|
+
|
|
6459
6537
|
Count
|
|
6460
|
-
|
|
6538
|
+
|
|
6461
6539
|
TotalCount
|
|
6462
|
-
|
|
6540
|
+
|
|
6463
6541
|
DistinctCount
|
|
6464
|
-
|
|
6542
|
+
|
|
6465
6543
|
First
|
|
6466
|
-
|
|
6544
|
+
|
|
6467
6545
|
Last
|
|
6468
|
-
|
|
6546
|
+
|
|
6469
6547
|
Median
|
|
6470
|
-
|
|
6548
|
+
|
|
6471
6549
|
Mod
|
|
6472
|
-
|
|
6550
|
+
|
|
6473
6551
|
StdDeviation
|
|
6474
|
-
|
|
6552
|
+
|
|
6475
6553
|
SumOfProduct
|
|
6476
|
-
|
|
6554
|
+
|
|
6477
6555
|
OnlyValue
|
|
6478
|
-
|
|
6556
|
+
|
|
6479
6557
|
WeightedAvg
|
|
6480
|
-
|
|
6558
|
+
|
|
6481
6559
|
DensityIndicators
|
|
6482
|
-
|
|
6560
|
+
|
|
6483
6561
|
DividedSum
|
|
6484
6562
|
*/
|
|
6485
6563
|
var AggregationFunction;
|
|
@@ -6508,27 +6586,27 @@ var AggregationFunction;
|
|
|
6508
6586
|
})(AggregationFunction || (AggregationFunction = {}));
|
|
6509
6587
|
/**
|
|
6510
6588
|
* Types of the attributes that are supported by the system.
|
|
6511
|
-
|
|
6589
|
+
|
|
6512
6590
|
Unknown
|
|
6513
|
-
|
|
6591
|
+
|
|
6514
6592
|
String
|
|
6515
|
-
|
|
6593
|
+
|
|
6516
6594
|
Int32
|
|
6517
|
-
|
|
6595
|
+
|
|
6518
6596
|
Int64
|
|
6519
|
-
|
|
6597
|
+
|
|
6520
6598
|
Double
|
|
6521
|
-
|
|
6599
|
+
|
|
6522
6600
|
DateTime
|
|
6523
|
-
|
|
6601
|
+
|
|
6524
6602
|
Boolean
|
|
6525
|
-
|
|
6603
|
+
|
|
6526
6604
|
Point
|
|
6527
|
-
|
|
6605
|
+
|
|
6528
6606
|
Polyline
|
|
6529
|
-
|
|
6607
|
+
|
|
6530
6608
|
Polygon
|
|
6531
|
-
|
|
6609
|
+
|
|
6532
6610
|
Multipoint
|
|
6533
6611
|
*/
|
|
6534
6612
|
|
|
@@ -6550,15 +6628,15 @@ var AttributeType;
|
|
|
6550
6628
|
})(AttributeType || (AttributeType = {}));
|
|
6551
6629
|
/**
|
|
6552
6630
|
* Describes classification methods.
|
|
6553
|
-
|
|
6631
|
+
|
|
6554
6632
|
none
|
|
6555
|
-
|
|
6633
|
+
|
|
6556
6634
|
naturalBreaks
|
|
6557
|
-
|
|
6635
|
+
|
|
6558
6636
|
equalInterval
|
|
6559
|
-
|
|
6637
|
+
|
|
6560
6638
|
quantile
|
|
6561
|
-
|
|
6639
|
+
|
|
6562
6640
|
unique
|
|
6563
6641
|
*/
|
|
6564
6642
|
|
|
@@ -6574,11 +6652,11 @@ var ClassificationType;
|
|
|
6574
6652
|
})(ClassificationType || (ClassificationType = {}));
|
|
6575
6653
|
/**
|
|
6576
6654
|
* Type of attribute.
|
|
6577
|
-
|
|
6655
|
+
|
|
6578
6656
|
decimal
|
|
6579
|
-
|
|
6657
|
+
|
|
6580
6658
|
dateTime
|
|
6581
|
-
|
|
6659
|
+
|
|
6582
6660
|
text
|
|
6583
6661
|
*/
|
|
6584
6662
|
|
|
@@ -6592,52 +6670,54 @@ var ClassifyAttributeType;
|
|
|
6592
6670
|
})(ClassifyAttributeType || (ClassifyAttributeType = {}));
|
|
6593
6671
|
/**
|
|
6594
6672
|
* Types of errors that can occur during layer initialize.
|
|
6595
|
-
|
|
6673
|
+
|
|
6596
6674
|
Unknown
|
|
6597
|
-
|
|
6675
|
+
|
|
6598
6676
|
SerializeError
|
|
6599
|
-
|
|
6677
|
+
|
|
6600
6678
|
InvalidDataService
|
|
6601
|
-
|
|
6679
|
+
|
|
6602
6680
|
InvalidConfiguration
|
|
6603
|
-
|
|
6681
|
+
|
|
6604
6682
|
InvalidDataServiceName
|
|
6605
|
-
|
|
6683
|
+
|
|
6606
6684
|
InvalidTableName
|
|
6607
|
-
|
|
6685
|
+
|
|
6608
6686
|
InvalidLayerName
|
|
6609
|
-
|
|
6687
|
+
|
|
6610
6688
|
ResourceNotFound
|
|
6611
|
-
|
|
6689
|
+
|
|
6612
6690
|
InvalidCondition
|
|
6613
|
-
|
|
6691
|
+
|
|
6614
6692
|
InvalidAttributes
|
|
6615
|
-
|
|
6693
|
+
|
|
6616
6694
|
InvalidIdAttribute
|
|
6617
|
-
|
|
6695
|
+
|
|
6618
6696
|
InvalidGeometryAttribute
|
|
6619
|
-
|
|
6697
|
+
|
|
6620
6698
|
InvalidGeometryAttributeType
|
|
6621
|
-
|
|
6699
|
+
|
|
6622
6700
|
InvalidColumnName
|
|
6623
|
-
|
|
6701
|
+
|
|
6624
6702
|
InvalidIdColumnSettings
|
|
6625
|
-
|
|
6703
|
+
|
|
6626
6704
|
ColumnNotExistsInTable
|
|
6627
|
-
|
|
6705
|
+
|
|
6628
6706
|
InvalidStyle
|
|
6629
|
-
|
|
6707
|
+
|
|
6630
6708
|
InvalidLayerType
|
|
6631
|
-
|
|
6709
|
+
|
|
6632
6710
|
ColumnLoadingError
|
|
6633
|
-
|
|
6711
|
+
|
|
6634
6712
|
InvalidAttributeFormat
|
|
6635
|
-
|
|
6713
|
+
|
|
6636
6714
|
DataSourceNotFound
|
|
6637
|
-
|
|
6715
|
+
|
|
6638
6716
|
DuplicateColumns
|
|
6639
|
-
|
|
6717
|
+
|
|
6640
6718
|
TableWithoutColumns
|
|
6719
|
+
|
|
6720
|
+
InvalidTableReferenceConfiguration
|
|
6641
6721
|
*/
|
|
6642
6722
|
|
|
6643
6723
|
|
|
@@ -6667,18 +6747,19 @@ var ConfigurationErrorEnum;
|
|
|
6667
6747
|
ConfigurationErrorEnum["DataSourceNotFound"] = "DataSourceNotFound";
|
|
6668
6748
|
ConfigurationErrorEnum["DuplicateColumns"] = "DuplicateColumns";
|
|
6669
6749
|
ConfigurationErrorEnum["TableWithoutColumns"] = "TableWithoutColumns";
|
|
6750
|
+
ConfigurationErrorEnum["InvalidTableReferenceConfiguration"] = "InvalidTableReferenceConfiguration";
|
|
6670
6751
|
})(ConfigurationErrorEnum || (ConfigurationErrorEnum = {}));
|
|
6671
6752
|
/**
|
|
6672
6753
|
* Type of the error.
|
|
6673
|
-
|
|
6754
|
+
|
|
6674
6755
|
ResourceLimitExceeded
|
|
6675
|
-
|
|
6756
|
+
|
|
6676
6757
|
ResourceNotFound
|
|
6677
|
-
|
|
6758
|
+
|
|
6678
6759
|
InternalError
|
|
6679
|
-
|
|
6760
|
+
|
|
6680
6761
|
BadRequest
|
|
6681
|
-
|
|
6762
|
+
|
|
6682
6763
|
DuplicateContent
|
|
6683
6764
|
*/
|
|
6684
6765
|
|
|
@@ -6733,9 +6814,9 @@ var ErrorType;
|
|
|
6733
6814
|
})(ErrorType || (ErrorType = {}));
|
|
6734
6815
|
/**
|
|
6735
6816
|
* Type of the feature.
|
|
6736
|
-
|
|
6817
|
+
|
|
6737
6818
|
Unknown
|
|
6738
|
-
|
|
6819
|
+
|
|
6739
6820
|
GeometricFeature
|
|
6740
6821
|
*/
|
|
6741
6822
|
|
|
@@ -6748,11 +6829,11 @@ var FeatureType;
|
|
|
6748
6829
|
})(FeatureType || (FeatureType = {}));
|
|
6749
6830
|
/**
|
|
6750
6831
|
* Sets whether font should be styled.
|
|
6751
|
-
|
|
6832
|
+
|
|
6752
6833
|
normal
|
|
6753
|
-
|
|
6834
|
+
|
|
6754
6835
|
oblique
|
|
6755
|
-
|
|
6836
|
+
|
|
6756
6837
|
italic
|
|
6757
6838
|
*/
|
|
6758
6839
|
|
|
@@ -6766,27 +6847,27 @@ var FontStyle;
|
|
|
6766
6847
|
})(FontStyle || (FontStyle = {}));
|
|
6767
6848
|
/**
|
|
6768
6849
|
* Specifies the weight (or boldness) of the font.
|
|
6769
|
-
|
|
6850
|
+
|
|
6770
6851
|
Thin
|
|
6771
|
-
|
|
6852
|
+
|
|
6772
6853
|
ExtraLight
|
|
6773
|
-
|
|
6854
|
+
|
|
6774
6855
|
Light
|
|
6775
|
-
|
|
6856
|
+
|
|
6776
6857
|
SemiLight
|
|
6777
|
-
|
|
6858
|
+
|
|
6778
6859
|
Normal
|
|
6779
|
-
|
|
6860
|
+
|
|
6780
6861
|
Medium
|
|
6781
|
-
|
|
6862
|
+
|
|
6782
6863
|
DemiBold
|
|
6783
|
-
|
|
6864
|
+
|
|
6784
6865
|
Bold
|
|
6785
|
-
|
|
6866
|
+
|
|
6786
6867
|
ExtraBold
|
|
6787
|
-
|
|
6868
|
+
|
|
6788
6869
|
Black
|
|
6789
|
-
|
|
6870
|
+
|
|
6790
6871
|
ExtraBlack
|
|
6791
6872
|
*/
|
|
6792
6873
|
|
|
@@ -6808,17 +6889,17 @@ var FontWeight;
|
|
|
6808
6889
|
})(FontWeight || (FontWeight = {}));
|
|
6809
6890
|
/**
|
|
6810
6891
|
*
|
|
6811
|
-
|
|
6892
|
+
|
|
6812
6893
|
unknown
|
|
6813
|
-
|
|
6894
|
+
|
|
6814
6895
|
point
|
|
6815
|
-
|
|
6896
|
+
|
|
6816
6897
|
polyline
|
|
6817
|
-
|
|
6898
|
+
|
|
6818
6899
|
polygon
|
|
6819
|
-
|
|
6900
|
+
|
|
6820
6901
|
envelope
|
|
6821
|
-
|
|
6902
|
+
|
|
6822
6903
|
multipoint
|
|
6823
6904
|
*/
|
|
6824
6905
|
|
|
@@ -6835,13 +6916,13 @@ var GeometryType;
|
|
|
6835
6916
|
})(GeometryType || (GeometryType = {}));
|
|
6836
6917
|
/**
|
|
6837
6918
|
* Resource group.
|
|
6838
|
-
|
|
6919
|
+
|
|
6839
6920
|
my
|
|
6840
|
-
|
|
6921
|
+
|
|
6841
6922
|
role
|
|
6842
|
-
|
|
6923
|
+
|
|
6843
6924
|
public
|
|
6844
|
-
|
|
6925
|
+
|
|
6845
6926
|
all
|
|
6846
6927
|
*/
|
|
6847
6928
|
|
|
@@ -6857,9 +6938,9 @@ var Group;
|
|
|
6857
6938
|
/**
|
|
6858
6939
|
* The size of the line ending in a SPCore.Kernel.Rendering.Symbols.SimplePolylineSymbol. The values sent here can be one
|
|
6859
6940
|
of the preset values, or a number representing the size of the ending in pixels for 1px wide lines.
|
|
6860
|
-
|
|
6941
|
+
|
|
6861
6942
|
small
|
|
6862
|
-
|
|
6943
|
+
|
|
6863
6944
|
large
|
|
6864
6945
|
*/
|
|
6865
6946
|
|
|
@@ -6872,19 +6953,19 @@ var LineEndingSize;
|
|
|
6872
6953
|
})(LineEndingSize || (LineEndingSize = {}));
|
|
6873
6954
|
/**
|
|
6874
6955
|
* Type of the line ending.
|
|
6875
|
-
|
|
6956
|
+
|
|
6876
6957
|
none
|
|
6877
|
-
|
|
6958
|
+
|
|
6878
6959
|
arrow
|
|
6879
|
-
|
|
6960
|
+
|
|
6880
6961
|
filledArrow
|
|
6881
|
-
|
|
6962
|
+
|
|
6882
6963
|
square
|
|
6883
|
-
|
|
6964
|
+
|
|
6884
6965
|
filledSquare
|
|
6885
|
-
|
|
6966
|
+
|
|
6886
6967
|
circle
|
|
6887
|
-
|
|
6968
|
+
|
|
6888
6969
|
filledCircle
|
|
6889
6970
|
*/
|
|
6890
6971
|
|
|
@@ -6902,15 +6983,15 @@ var LineEndingType;
|
|
|
6902
6983
|
})(LineEndingType || (LineEndingType = {}));
|
|
6903
6984
|
/**
|
|
6904
6985
|
*
|
|
6905
|
-
|
|
6986
|
+
|
|
6906
6987
|
Unknown
|
|
6907
|
-
|
|
6988
|
+
|
|
6908
6989
|
union
|
|
6909
|
-
|
|
6990
|
+
|
|
6910
6991
|
intersection
|
|
6911
|
-
|
|
6992
|
+
|
|
6912
6993
|
subtraction
|
|
6913
|
-
|
|
6994
|
+
|
|
6914
6995
|
symDifference
|
|
6915
6996
|
*/
|
|
6916
6997
|
|
|
@@ -6926,19 +7007,19 @@ var Operation;
|
|
|
6926
7007
|
})(Operation || (Operation = {}));
|
|
6927
7008
|
/**
|
|
6928
7009
|
* User permissions for server security objects (services, projects etc.)
|
|
6929
|
-
|
|
7010
|
+
|
|
6930
7011
|
none
|
|
6931
|
-
|
|
7012
|
+
|
|
6932
7013
|
configure
|
|
6933
|
-
|
|
7014
|
+
|
|
6934
7015
|
write
|
|
6935
|
-
|
|
7016
|
+
|
|
6936
7017
|
read
|
|
6937
|
-
|
|
7018
|
+
|
|
6938
7019
|
read,configure
|
|
6939
|
-
|
|
7020
|
+
|
|
6940
7021
|
read,write
|
|
6941
|
-
|
|
7022
|
+
|
|
6942
7023
|
read,write,configure
|
|
6943
7024
|
*/
|
|
6944
7025
|
|
|
@@ -6956,19 +7037,19 @@ var Permissions;
|
|
|
6956
7037
|
})(Permissions || (Permissions = {}));
|
|
6957
7038
|
/**
|
|
6958
7039
|
* Type of the authorization policy.
|
|
6959
|
-
|
|
7040
|
+
|
|
6960
7041
|
Unknown
|
|
6961
|
-
|
|
7042
|
+
|
|
6962
7043
|
CreateTable
|
|
6963
|
-
|
|
7044
|
+
|
|
6964
7045
|
CreateLayer
|
|
6965
|
-
|
|
7046
|
+
|
|
6966
7047
|
CreateProject
|
|
6967
|
-
|
|
7048
|
+
|
|
6968
7049
|
MaxFeaturesInOneTable
|
|
6969
|
-
|
|
7050
|
+
|
|
6970
7051
|
MaxObjectsToExport
|
|
6971
|
-
|
|
7052
|
+
|
|
6972
7053
|
MaxUploadContentSize
|
|
6973
7054
|
*/
|
|
6974
7055
|
|
|
@@ -6985,20 +7066,38 @@ var PolicyType;
|
|
|
6985
7066
|
PolicyType["MaxUploadContentSize"] = "MaxUploadContentSize";
|
|
6986
7067
|
})(PolicyType || (PolicyType = {}));
|
|
6987
7068
|
/**
|
|
7069
|
+
* Types of table reference.
|
|
7070
|
+
|
|
7071
|
+
OneToMany
|
|
7072
|
+
|
|
7073
|
+
OneToOne
|
|
7074
|
+
|
|
7075
|
+
Intersect
|
|
7076
|
+
*/
|
|
7077
|
+
|
|
7078
|
+
|
|
7079
|
+
var ReferenceJoinType;
|
|
7080
|
+
|
|
7081
|
+
(function (ReferenceJoinType) {
|
|
7082
|
+
ReferenceJoinType["OneToMany"] = "OneToMany";
|
|
7083
|
+
ReferenceJoinType["OneToOne"] = "OneToOne";
|
|
7084
|
+
ReferenceJoinType["Intersect"] = "Intersect";
|
|
7085
|
+
})(ReferenceJoinType || (ReferenceJoinType = {}));
|
|
7086
|
+
/**
|
|
6988
7087
|
* The `ResourceType` represents resource manager supports types.
|
|
6989
|
-
|
|
7088
|
+
|
|
6990
7089
|
Unknown
|
|
6991
|
-
|
|
7090
|
+
|
|
6992
7091
|
table
|
|
6993
|
-
|
|
7092
|
+
|
|
6994
7093
|
layer
|
|
6995
|
-
|
|
7094
|
+
|
|
6996
7095
|
project
|
|
6997
|
-
|
|
7096
|
+
|
|
6998
7097
|
file
|
|
6999
|
-
|
|
7098
|
+
|
|
7000
7099
|
feature
|
|
7001
|
-
|
|
7100
|
+
|
|
7002
7101
|
tag
|
|
7003
7102
|
*/
|
|
7004
7103
|
|
|
@@ -7024,21 +7123,21 @@ var ResourceTypeLink;
|
|
|
7024
7123
|
})(ResourceTypeLink || (ResourceTypeLink = {}));
|
|
7025
7124
|
/**
|
|
7026
7125
|
* Status of the server task.
|
|
7027
|
-
|
|
7126
|
+
|
|
7028
7127
|
None
|
|
7029
|
-
|
|
7128
|
+
|
|
7030
7129
|
Scheduled
|
|
7031
|
-
|
|
7130
|
+
|
|
7032
7131
|
Planning
|
|
7033
|
-
|
|
7132
|
+
|
|
7034
7133
|
Executing
|
|
7035
|
-
|
|
7134
|
+
|
|
7036
7135
|
Completed
|
|
7037
|
-
|
|
7136
|
+
|
|
7038
7137
|
Failed
|
|
7039
|
-
|
|
7138
|
+
|
|
7040
7139
|
Canceled
|
|
7041
|
-
|
|
7140
|
+
|
|
7042
7141
|
Timeout
|
|
7043
7142
|
*/
|
|
7044
7143
|
|
|
@@ -7057,11 +7156,11 @@ var ServerTaskStatus;
|
|
|
7057
7156
|
})(ServerTaskStatus || (ServerTaskStatus = {}));
|
|
7058
7157
|
/**
|
|
7059
7158
|
* The `StringSubType` provides information about string attribute subtype.
|
|
7060
|
-
|
|
7159
|
+
|
|
7061
7160
|
None
|
|
7062
|
-
|
|
7161
|
+
|
|
7063
7162
|
Image
|
|
7064
|
-
|
|
7163
|
+
|
|
7065
7164
|
PkkCode
|
|
7066
7165
|
*/
|
|
7067
7166
|
|
|
@@ -7074,14 +7173,29 @@ var StringSubType;
|
|
|
7074
7173
|
StringSubType["PkkCode"] = "PkkCode";
|
|
7075
7174
|
})(StringSubType || (StringSubType = {}));
|
|
7076
7175
|
/**
|
|
7176
|
+
* Task owner group.
|
|
7177
|
+
|
|
7178
|
+
my
|
|
7179
|
+
|
|
7180
|
+
all
|
|
7181
|
+
*/
|
|
7182
|
+
|
|
7183
|
+
|
|
7184
|
+
var TaskGroup;
|
|
7185
|
+
|
|
7186
|
+
(function (TaskGroup) {
|
|
7187
|
+
TaskGroup["My"] = "my";
|
|
7188
|
+
TaskGroup["All"] = "all";
|
|
7189
|
+
})(TaskGroup || (TaskGroup = {}));
|
|
7190
|
+
/**
|
|
7077
7191
|
* Sets the horizontal alignment of text.
|
|
7078
|
-
|
|
7192
|
+
|
|
7079
7193
|
right
|
|
7080
|
-
|
|
7194
|
+
|
|
7081
7195
|
left
|
|
7082
|
-
|
|
7196
|
+
|
|
7083
7197
|
center
|
|
7084
|
-
|
|
7198
|
+
|
|
7085
7199
|
justified
|
|
7086
7200
|
*/
|
|
7087
7201
|
|
|
@@ -7096,11 +7210,11 @@ var TextAlignment;
|
|
|
7096
7210
|
})(TextAlignment || (TextAlignment = {}));
|
|
7097
7211
|
/**
|
|
7098
7212
|
* Sets the vertical alignment of text.
|
|
7099
|
-
|
|
7213
|
+
|
|
7100
7214
|
top
|
|
7101
|
-
|
|
7215
|
+
|
|
7102
7216
|
bottom
|
|
7103
|
-
|
|
7217
|
+
|
|
7104
7218
|
middle
|
|
7105
7219
|
*/
|
|
7106
7220
|
|
|
@@ -7113,5 +7227,5 @@ var TextVerticalAlignment;
|
|
|
7113
7227
|
TextVerticalAlignment["Middle"] = "middle";
|
|
7114
7228
|
})(TextVerticalAlignment || (TextVerticalAlignment = {}));
|
|
7115
7229
|
|
|
7116
|
-
export { Account, AccountPreview, AggregationFunction, Api, ApiEvent, AttributeType, BulkOperations, ClassificationType, ClassifyAttributeType, ClientSettings, ConfigurationErrorEnum, ConnectionStatus, DependencyType, ErrorDetailsType, ErrorReason, ErrorType, EvergisDynamicLayer, EvergisTileLayer, External, FeatureType, Feedback, FileUpload, FontStyle, FontWeight, GEOCODE_PROVIDER, General, Geocode, GeometryType, Group, HttpClient, IceRouter, Import, Layers, LayersManager, LineEndingSize, LineEndingType, Names, Namespace, Notification, NotificationEvent, Operation, Permissions, PolicyType, PortalSettings, Projects, ResourceCatalog, ResourceSeparator, ResourceType, ResourceTypeLink, Resources, Scheduler, Security, ServerTaskStatus, SpatialProcessor, Statistic, StringSubType, Styles, Tables, TextAlignment, TextVerticalAlignment, Tools, UrlPath, addSubDomainToLocation, errorHandler, formDataFromFile, generateId, isEvergisDynamicLayer, isEvergisTileLayer, isFeatureLayer, isHTTPError, isHandledError, isLayer, isProjectContentItems, isString, isTileLayerService, promiseAllIgnoreErrors, stripUselessSlashes, toFormData, unique };
|
|
7230
|
+
export { Account, AccountPreview, AggregationFunction, Api, ApiEvent, AttributeType, BulkOperations, ClassificationType, ClassifyAttributeType, ClientSettings, ConfigurationErrorEnum, ConnectionStatus, DependencyType, ErrorDetailsType, ErrorReason, ErrorType, EvergisDynamicLayer, EvergisTileLayer, External, FeatureType, Feedback, FileUpload, Filters, FontStyle, FontWeight, GEOCODE_PROVIDER, General, Geocode, GeometryType, Group, HttpClient, IceRouter, Import, Layers, LayersManager, LineEndingSize, LineEndingType, Names, Namespace, Notification, NotificationEvent, Operation, Permissions, PolicyType, PortalSettings, Projects, ReferenceJoinType, ResourceCatalog, ResourceSeparator, ResourceType, ResourceTypeLink, Resources, Scheduler, Security, ServerTaskStatus, SpatialProcessor, Statistic, StringSubType, Styles, Tables, TaskGroup, TextAlignment, TextVerticalAlignment, Tools, UrlPath, addSubDomainToLocation, errorHandler, formDataFromFile, generateId, isEvergisDynamicLayer, isEvergisTileLayer, isFeatureLayer, isHTTPError, isHandledError, isLayer, isProjectContentItems, isString, isTileLayerService, promiseAllIgnoreErrors, stripUselessSlashes, toFormData, unique };
|
|
7117
7231
|
//# sourceMappingURL=api.esm.js.map
|