@evergis/api 3.0.65 → 3.0.66
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/__generated__/ProjectsService.d.ts +2 -2
- package/dist/__generated__/StatisticService.d.ts +20 -0
- package/dist/__generated__/TablesService.d.ts +2 -2
- package/dist/__generated__/WmsServerService.d.ts +2 -2
- package/dist/__generated__/data-contracts.d.ts +149 -2
- package/dist/api.cjs.development.js +13 -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 +40 -1
- package/dist/api.esm.js.map +1 -1
- package/package.json +2 -2
package/dist/api.esm.js
CHANGED
|
@@ -6586,6 +6586,45 @@ var ServerTaskStatus;
|
|
|
6586
6586
|
ServerTaskStatus["Timeout"] = "Timeout";
|
|
6587
6587
|
})(ServerTaskStatus || (ServerTaskStatus = {}));
|
|
6588
6588
|
/**
|
|
6589
|
+
* Describes statistics methods.
|
|
6590
|
+
|
|
6591
|
+
min
|
|
6592
|
+
|
|
6593
|
+
max
|
|
6594
|
+
|
|
6595
|
+
avg
|
|
6596
|
+
|
|
6597
|
+
med
|
|
6598
|
+
|
|
6599
|
+
mod
|
|
6600
|
+
|
|
6601
|
+
sum
|
|
6602
|
+
|
|
6603
|
+
sumOfProduct
|
|
6604
|
+
|
|
6605
|
+
count
|
|
6606
|
+
|
|
6607
|
+
firstLast
|
|
6608
|
+
|
|
6609
|
+
standardDeviation
|
|
6610
|
+
*/
|
|
6611
|
+
|
|
6612
|
+
|
|
6613
|
+
var StatisticsType;
|
|
6614
|
+
|
|
6615
|
+
(function (StatisticsType) {
|
|
6616
|
+
StatisticsType["Min"] = "min";
|
|
6617
|
+
StatisticsType["Max"] = "max";
|
|
6618
|
+
StatisticsType["Avg"] = "avg";
|
|
6619
|
+
StatisticsType["Med"] = "med";
|
|
6620
|
+
StatisticsType["Mod"] = "mod";
|
|
6621
|
+
StatisticsType["Sum"] = "sum";
|
|
6622
|
+
StatisticsType["SumOfProduct"] = "sumOfProduct";
|
|
6623
|
+
StatisticsType["Count"] = "count";
|
|
6624
|
+
StatisticsType["FirstLast"] = "firstLast";
|
|
6625
|
+
StatisticsType["StandardDeviation"] = "standardDeviation";
|
|
6626
|
+
})(StatisticsType || (StatisticsType = {}));
|
|
6627
|
+
/**
|
|
6589
6628
|
* The `StringSubType` provides information about string attribute subtype.
|
|
6590
6629
|
|
|
6591
6630
|
None
|
|
@@ -6629,5 +6668,5 @@ var TextVerticalAlignment;
|
|
|
6629
6668
|
TextVerticalAlignment["Middle"] = "middle";
|
|
6630
6669
|
})(TextVerticalAlignment || (TextVerticalAlignment = {}));
|
|
6631
6670
|
|
|
6632
|
-
export { API_USER_INFO_KEY, Account, AccountPreview, AggregationFunction, Api, ApiEvent, AttributeType, BulkOperations, ClassificationType, 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, StringSubType, Styles, Tables, TextAlignment, TextVerticalAlignment, Tools, UrlPath, addSubDomainToLocation, errorHandler, formDataFromFile, generateId, isEvergisDynamicLayer, isEvergisTileLayer, isFeatureLayer, isHTTPError, isHandledError, isLayer, isProjectContentItems, isString, isTileLayerService, promiseAllIgnoreErrors, stripUselessSlashes, toFormData, unique };
|
|
6671
|
+
export { API_USER_INFO_KEY, Account, AccountPreview, AggregationFunction, Api, ApiEvent, AttributeType, BulkOperations, ClassificationType, 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, StatisticsType, StringSubType, Styles, Tables, TextAlignment, TextVerticalAlignment, Tools, UrlPath, addSubDomainToLocation, errorHandler, formDataFromFile, generateId, isEvergisDynamicLayer, isEvergisTileLayer, isFeatureLayer, isHTTPError, isHandledError, isLayer, isProjectContentItems, isString, isTileLayerService, promiseAllIgnoreErrors, stripUselessSlashes, toFormData, unique };
|
|
6633
6672
|
//# sourceMappingURL=api.esm.js.map
|