@evergis/api 3.0.73 → 3.0.76
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/Api.d.ts +2 -1
- package/dist/__generated__/FeedbackService.d.ts +12 -1
- package/dist/__generated__/FiltersService.d.ts +42 -0
- package/dist/__generated__/ProjectsService.d.ts +2 -2
- package/dist/__generated__/StatisticService.d.ts +14 -3
- package/dist/__generated__/TablesService.d.ts +2 -2
- package/dist/__generated__/WmsServerService.d.ts +2 -2
- package/dist/__generated__/data-contracts.d.ts +77 -23
- package/dist/api.cjs.development.js +111 -2
- 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 +111 -3
- package/dist/api.esm.js.map +1 -1
- package/dist/services/Feedback.d.ts +5 -0
- package/dist/services/index.d.ts +1 -0
- package/package.json +2 -2
package/dist/api.esm.js
CHANGED
|
@@ -5549,14 +5549,30 @@ let StatisticService = /*#__PURE__*/function (_Service) {
|
|
|
5549
5549
|
* @name Classify
|
|
5550
5550
|
* @operationId StatisticController_Classify
|
|
5551
5551
|
* @summary Returns the classified attribute values that correspond to the given number of classes and given condition.
|
|
5552
|
-
* @request GET:/classify
|
|
5552
|
+
* @request GET:/statistics/classify
|
|
5553
5553
|
* @response `200` Success
|
|
5554
5554
|
*/
|
|
5555
5555
|
|
|
5556
5556
|
}, {
|
|
5557
5557
|
key: "classify",
|
|
5558
5558
|
value: function classify(query) {
|
|
5559
|
-
return this.http.get("/classify", query).json();
|
|
5559
|
+
return this.http.get("/statistics/classify", query).json();
|
|
5560
|
+
}
|
|
5561
|
+
/**
|
|
5562
|
+
* No description
|
|
5563
|
+
*
|
|
5564
|
+
* @tags Statistic
|
|
5565
|
+
* @name SumOfProduct
|
|
5566
|
+
* @operationId StatisticController_SumOfProduct
|
|
5567
|
+
* @summary Sum of product.
|
|
5568
|
+
* @request GET:/statistics/sumOfProduct
|
|
5569
|
+
* @response `200` Success
|
|
5570
|
+
*/
|
|
5571
|
+
|
|
5572
|
+
}, {
|
|
5573
|
+
key: "sumOfProduct",
|
|
5574
|
+
value: function sumOfProduct(query) {
|
|
5575
|
+
return this.http.get("/statistics/sumOfProduct", query).json();
|
|
5560
5576
|
}
|
|
5561
5577
|
}]);
|
|
5562
5578
|
|
|
@@ -5589,6 +5605,97 @@ let Statistic = /*#__PURE__*/function (_StatisticService) {
|
|
|
5589
5605
|
return Statistic;
|
|
5590
5606
|
}(StatisticService);
|
|
5591
5607
|
|
|
5608
|
+
/**
|
|
5609
|
+
* @title Spatial Processing Core API
|
|
5610
|
+
* @version v0.6.0
|
|
5611
|
+
* @baseUrl /sp
|
|
5612
|
+
*/
|
|
5613
|
+
|
|
5614
|
+
let FeedbackService = /*#__PURE__*/function (_Service) {
|
|
5615
|
+
_inherits(FeedbackService, _Service);
|
|
5616
|
+
|
|
5617
|
+
var _super = /*#__PURE__*/_createSuper(FeedbackService);
|
|
5618
|
+
|
|
5619
|
+
function FeedbackService() {
|
|
5620
|
+
_classCallCheck(this, FeedbackService);
|
|
5621
|
+
|
|
5622
|
+
return _super.apply(this, arguments);
|
|
5623
|
+
}
|
|
5624
|
+
|
|
5625
|
+
_createClass(FeedbackService, [{
|
|
5626
|
+
key: "increaseResourcesLimit",
|
|
5627
|
+
value:
|
|
5628
|
+
/**
|
|
5629
|
+
* No description
|
|
5630
|
+
*
|
|
5631
|
+
* @tags Feedback
|
|
5632
|
+
* @name IncreaseResourcesLimit
|
|
5633
|
+
* @operationId FeedbackController_IncreaseResourcesLimit
|
|
5634
|
+
* @summary Increase resources limit request.
|
|
5635
|
+
* @request POST:/feedback/limits
|
|
5636
|
+
* @response `200` Success
|
|
5637
|
+
*/
|
|
5638
|
+
function increaseResourcesLimit(query) {
|
|
5639
|
+
return this.http.post("/feedback/limits", null, query).json();
|
|
5640
|
+
}
|
|
5641
|
+
/**
|
|
5642
|
+
* No description
|
|
5643
|
+
*
|
|
5644
|
+
* @tags Feedback
|
|
5645
|
+
* @name MoreSymbols
|
|
5646
|
+
* @operationId FeedbackController_MoreSymbols
|
|
5647
|
+
* @summary More symbols request.
|
|
5648
|
+
* @request POST:/feedback/symbol
|
|
5649
|
+
* @response `200` Success
|
|
5650
|
+
*/
|
|
5651
|
+
|
|
5652
|
+
}, {
|
|
5653
|
+
key: "moreSymbols",
|
|
5654
|
+
value: function moreSymbols(query) {
|
|
5655
|
+
return this.http.post("/feedback/symbol", null, query).json();
|
|
5656
|
+
}
|
|
5657
|
+
/**
|
|
5658
|
+
* No description
|
|
5659
|
+
*
|
|
5660
|
+
* @tags Feedback
|
|
5661
|
+
* @name Feedback
|
|
5662
|
+
* @operationId FeedbackController_Feedback
|
|
5663
|
+
* @summary Feedback request.
|
|
5664
|
+
* @request POST:/feedback
|
|
5665
|
+
* @response `200` Success
|
|
5666
|
+
*/
|
|
5667
|
+
|
|
5668
|
+
}, {
|
|
5669
|
+
key: "feedback",
|
|
5670
|
+
value: function feedback(query, data) {
|
|
5671
|
+
return this.http.post("/feedback", toFormData(data), query).json();
|
|
5672
|
+
}
|
|
5673
|
+
}]);
|
|
5674
|
+
|
|
5675
|
+
return FeedbackService;
|
|
5676
|
+
}(Service);
|
|
5677
|
+
|
|
5678
|
+
let Feedback = /*#__PURE__*/function (_FeedbackService) {
|
|
5679
|
+
_inherits(Feedback, _FeedbackService);
|
|
5680
|
+
|
|
5681
|
+
var _super = /*#__PURE__*/_createSuper(Feedback);
|
|
5682
|
+
|
|
5683
|
+
function Feedback() {
|
|
5684
|
+
_classCallCheck(this, Feedback);
|
|
5685
|
+
|
|
5686
|
+
return _super.apply(this, arguments);
|
|
5687
|
+
}
|
|
5688
|
+
|
|
5689
|
+
_createClass(Feedback, [{
|
|
5690
|
+
key: "postFeedback",
|
|
5691
|
+
value: function postFeedback(query, data) {
|
|
5692
|
+
return this.feedback(query, data);
|
|
5693
|
+
}
|
|
5694
|
+
}]);
|
|
5695
|
+
|
|
5696
|
+
return Feedback;
|
|
5697
|
+
}(FeedbackService);
|
|
5698
|
+
|
|
5592
5699
|
/**
|
|
5593
5700
|
* @title Spatial Processing Core API
|
|
5594
5701
|
* @version v0.6.0
|
|
@@ -5808,6 +5915,7 @@ let Api = /*#__PURE__*/function (_EventEmitter) {
|
|
|
5808
5915
|
_this.portalSettings = new PortalSettings(_this.http);
|
|
5809
5916
|
_this.iceRouter = new IceRouter(_this.http);
|
|
5810
5917
|
_this.statistic = new Statistic(_this.http);
|
|
5918
|
+
_this.feedback = new Feedback(_this.http);
|
|
5811
5919
|
_this.names = new Names({
|
|
5812
5920
|
account: _this.account
|
|
5813
5921
|
});
|
|
@@ -6780,5 +6888,5 @@ var TextVerticalAlignment;
|
|
|
6780
6888
|
TextVerticalAlignment["Middle"] = "middle";
|
|
6781
6889
|
})(TextVerticalAlignment || (TextVerticalAlignment = {}));
|
|
6782
6890
|
|
|
6783
|
-
export { API_USER_INFO_KEY, Account, AccountPreview, AggregationFunction, Api, ApiEvent, AttributeType, BulkOperations, ClassificationType, ClassifyAttributeType, ClientSettings, ConfigurationErrorEnum, ConnectionStatus, DependencyType, ErrorDetailsType, ErrorReason, ErrorType, EvergisDynamicLayer, EvergisTileLayer, External, FeatureType, 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 };
|
|
6891
|
+
export { API_USER_INFO_KEY, 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 };
|
|
6784
6892
|
//# sourceMappingURL=api.esm.js.map
|