@evergis/api 3.0.73 → 3.0.74
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__/ProjectsService.d.ts +2 -2
- package/dist/__generated__/StatisticService.d.ts +2 -2
- package/dist/__generated__/TablesService.d.ts +2 -2
- package/dist/__generated__/WmsServerService.d.ts +2 -2
- package/dist/__generated__/data-contracts.d.ts +35 -23
- package/dist/api.cjs.development.js +93 -0
- 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 +93 -1
- 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
|
@@ -5589,6 +5589,97 @@ let Statistic = /*#__PURE__*/function (_StatisticService) {
|
|
|
5589
5589
|
return Statistic;
|
|
5590
5590
|
}(StatisticService);
|
|
5591
5591
|
|
|
5592
|
+
/**
|
|
5593
|
+
* @title Spatial Processing Core API
|
|
5594
|
+
* @version v0.6.0
|
|
5595
|
+
* @baseUrl /sp
|
|
5596
|
+
*/
|
|
5597
|
+
|
|
5598
|
+
let FeedbackService = /*#__PURE__*/function (_Service) {
|
|
5599
|
+
_inherits(FeedbackService, _Service);
|
|
5600
|
+
|
|
5601
|
+
var _super = /*#__PURE__*/_createSuper(FeedbackService);
|
|
5602
|
+
|
|
5603
|
+
function FeedbackService() {
|
|
5604
|
+
_classCallCheck(this, FeedbackService);
|
|
5605
|
+
|
|
5606
|
+
return _super.apply(this, arguments);
|
|
5607
|
+
}
|
|
5608
|
+
|
|
5609
|
+
_createClass(FeedbackService, [{
|
|
5610
|
+
key: "increaseResourcesLimit",
|
|
5611
|
+
value:
|
|
5612
|
+
/**
|
|
5613
|
+
* No description
|
|
5614
|
+
*
|
|
5615
|
+
* @tags Feedback
|
|
5616
|
+
* @name IncreaseResourcesLimit
|
|
5617
|
+
* @operationId FeedbackController_IncreaseResourcesLimit
|
|
5618
|
+
* @summary Increase resources limit request.
|
|
5619
|
+
* @request POST:/feedback/limits
|
|
5620
|
+
* @response `200` Success
|
|
5621
|
+
*/
|
|
5622
|
+
function increaseResourcesLimit(query) {
|
|
5623
|
+
return this.http.post("/feedback/limits", null, query).json();
|
|
5624
|
+
}
|
|
5625
|
+
/**
|
|
5626
|
+
* No description
|
|
5627
|
+
*
|
|
5628
|
+
* @tags Feedback
|
|
5629
|
+
* @name MoreSymbols
|
|
5630
|
+
* @operationId FeedbackController_MoreSymbols
|
|
5631
|
+
* @summary More symbols request.
|
|
5632
|
+
* @request POST:/feedback/symbol
|
|
5633
|
+
* @response `200` Success
|
|
5634
|
+
*/
|
|
5635
|
+
|
|
5636
|
+
}, {
|
|
5637
|
+
key: "moreSymbols",
|
|
5638
|
+
value: function moreSymbols(query) {
|
|
5639
|
+
return this.http.post("/feedback/symbol", null, query).json();
|
|
5640
|
+
}
|
|
5641
|
+
/**
|
|
5642
|
+
* No description
|
|
5643
|
+
*
|
|
5644
|
+
* @tags Feedback
|
|
5645
|
+
* @name Feedback
|
|
5646
|
+
* @operationId FeedbackController_Feedback
|
|
5647
|
+
* @summary Feedback request.
|
|
5648
|
+
* @request POST:/feedback
|
|
5649
|
+
* @response `200` Success
|
|
5650
|
+
*/
|
|
5651
|
+
|
|
5652
|
+
}, {
|
|
5653
|
+
key: "feedback",
|
|
5654
|
+
value: function feedback(query, data) {
|
|
5655
|
+
return this.http.post("/feedback", toFormData(data), query).json();
|
|
5656
|
+
}
|
|
5657
|
+
}]);
|
|
5658
|
+
|
|
5659
|
+
return FeedbackService;
|
|
5660
|
+
}(Service);
|
|
5661
|
+
|
|
5662
|
+
let Feedback = /*#__PURE__*/function (_FeedbackService) {
|
|
5663
|
+
_inherits(Feedback, _FeedbackService);
|
|
5664
|
+
|
|
5665
|
+
var _super = /*#__PURE__*/_createSuper(Feedback);
|
|
5666
|
+
|
|
5667
|
+
function Feedback() {
|
|
5668
|
+
_classCallCheck(this, Feedback);
|
|
5669
|
+
|
|
5670
|
+
return _super.apply(this, arguments);
|
|
5671
|
+
}
|
|
5672
|
+
|
|
5673
|
+
_createClass(Feedback, [{
|
|
5674
|
+
key: "postFeedback",
|
|
5675
|
+
value: function postFeedback(query, data) {
|
|
5676
|
+
return this.feedback(query, data);
|
|
5677
|
+
}
|
|
5678
|
+
}]);
|
|
5679
|
+
|
|
5680
|
+
return Feedback;
|
|
5681
|
+
}(FeedbackService);
|
|
5682
|
+
|
|
5592
5683
|
/**
|
|
5593
5684
|
* @title Spatial Processing Core API
|
|
5594
5685
|
* @version v0.6.0
|
|
@@ -5808,6 +5899,7 @@ let Api = /*#__PURE__*/function (_EventEmitter) {
|
|
|
5808
5899
|
_this.portalSettings = new PortalSettings(_this.http);
|
|
5809
5900
|
_this.iceRouter = new IceRouter(_this.http);
|
|
5810
5901
|
_this.statistic = new Statistic(_this.http);
|
|
5902
|
+
_this.feedback = new Feedback(_this.http);
|
|
5811
5903
|
_this.names = new Names({
|
|
5812
5904
|
account: _this.account
|
|
5813
5905
|
});
|
|
@@ -6780,5 +6872,5 @@ var TextVerticalAlignment;
|
|
|
6780
6872
|
TextVerticalAlignment["Middle"] = "middle";
|
|
6781
6873
|
})(TextVerticalAlignment || (TextVerticalAlignment = {}));
|
|
6782
6874
|
|
|
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 };
|
|
6875
|
+
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
6876
|
//# sourceMappingURL=api.esm.js.map
|