@evergis/api 3.0.196 → 3.0.198
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__/DataSourceService.d.ts +31 -0
- package/dist/__generated__/EqlService.d.ts +1 -1
- package/dist/__generated__/LayersService.d.ts +2 -2
- package/dist/__generated__/StatisticService.d.ts +2 -2
- package/dist/__generated__/TablesService.d.ts +2 -2
- package/dist/__generated__/data-contracts.d.ts +117 -13
- package/dist/api.cjs.development.js +17 -7
- 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 +42 -12
- package/dist/api.esm.js.map +1 -1
- package/dist/services/Statistic.d.ts +2 -2
- package/package.json +2 -2
package/dist/api.esm.js
CHANGED
|
@@ -2072,7 +2072,7 @@ let EqlService = /*#__PURE__*/function (_Service) {
|
|
|
2072
2072
|
* @response `200` OK
|
|
2073
2073
|
*/
|
|
2074
2074
|
function getQueryResult(data) {
|
|
2075
|
-
return this.http.post("/eql/query", data).
|
|
2075
|
+
return this.http.post("/eql/query", data).json();
|
|
2076
2076
|
}
|
|
2077
2077
|
/**
|
|
2078
2078
|
* No description
|
|
@@ -8133,6 +8133,27 @@ var AggregationFunction;
|
|
|
8133
8133
|
/**
|
|
8134
8134
|
*
|
|
8135
8135
|
|
|
8136
|
+
Unknown
|
|
8137
|
+
|
|
8138
|
+
Icon
|
|
8139
|
+
|
|
8140
|
+
PNG
|
|
8141
|
+
|
|
8142
|
+
SVG
|
|
8143
|
+
*/
|
|
8144
|
+
|
|
8145
|
+
|
|
8146
|
+
var AttributeIconType;
|
|
8147
|
+
|
|
8148
|
+
(function (AttributeIconType) {
|
|
8149
|
+
AttributeIconType["Unknown"] = "Unknown";
|
|
8150
|
+
AttributeIconType["Icon"] = "Icon";
|
|
8151
|
+
AttributeIconType["PNG"] = "PNG";
|
|
8152
|
+
AttributeIconType["SVG"] = "SVG";
|
|
8153
|
+
})(AttributeIconType || (AttributeIconType = {}));
|
|
8154
|
+
/**
|
|
8155
|
+
*
|
|
8156
|
+
|
|
8136
8157
|
None
|
|
8137
8158
|
|
|
8138
8159
|
SelectFromHandBook
|
|
@@ -8370,6 +8391,18 @@ var ConfigurationErrorEnum;
|
|
|
8370
8391
|
ConfigurationErrorEnum["InvalidTableReferenceConfiguration"] = "InvalidTableReferenceConfiguration";
|
|
8371
8392
|
})(ConfigurationErrorEnum || (ConfigurationErrorEnum = {}));
|
|
8372
8393
|
/**
|
|
8394
|
+
* Data source type.
|
|
8395
|
+
|
|
8396
|
+
Postgres
|
|
8397
|
+
*/
|
|
8398
|
+
|
|
8399
|
+
|
|
8400
|
+
var DataSourceType;
|
|
8401
|
+
|
|
8402
|
+
(function (DataSourceType) {
|
|
8403
|
+
DataSourceType["Postgres"] = "Postgres";
|
|
8404
|
+
})(DataSourceType || (DataSourceType = {}));
|
|
8405
|
+
/**
|
|
8373
8406
|
* Type of the error.
|
|
8374
8407
|
|
|
8375
8408
|
ResourceLimitExceeded
|
|
@@ -8660,26 +8693,23 @@ var Operation;
|
|
|
8660
8693
|
Operation["SymDifference"] = "symDifference";
|
|
8661
8694
|
})(Operation || (Operation = {}));
|
|
8662
8695
|
/**
|
|
8663
|
-
*
|
|
8696
|
+
* Filter exists resources by owner.
|
|
8664
8697
|
|
|
8665
8698
|
My
|
|
8666
8699
|
|
|
8667
8700
|
Shared
|
|
8668
8701
|
|
|
8669
8702
|
Public
|
|
8670
|
-
|
|
8671
|
-
All
|
|
8672
8703
|
*/
|
|
8673
8704
|
|
|
8674
8705
|
|
|
8675
|
-
var
|
|
8706
|
+
var OwnerFilterDc;
|
|
8676
8707
|
|
|
8677
|
-
(function (
|
|
8678
|
-
|
|
8679
|
-
|
|
8680
|
-
|
|
8681
|
-
|
|
8682
|
-
})(OwnerFilter || (OwnerFilter = {}));
|
|
8708
|
+
(function (OwnerFilterDc) {
|
|
8709
|
+
OwnerFilterDc["My"] = "My";
|
|
8710
|
+
OwnerFilterDc["Shared"] = "Shared";
|
|
8711
|
+
OwnerFilterDc["Public"] = "Public";
|
|
8712
|
+
})(OwnerFilterDc || (OwnerFilterDc = {}));
|
|
8683
8713
|
/**
|
|
8684
8714
|
* Influences the y direction of the tile coordinates. The global-mercator (aka Spherical Mercator) profile is assumed.
|
|
8685
8715
|
|
|
@@ -9007,5 +9037,5 @@ var TextVerticalAlignment;
|
|
|
9007
9037
|
TextVerticalAlignment["Middle"] = "middle";
|
|
9008
9038
|
})(TextVerticalAlignment || (TextVerticalAlignment = {}));
|
|
9009
9039
|
|
|
9010
|
-
export { Account, AccountPreview, AggregationFunction, Api, ApiEvent, AttributeSelectorType, AttributeType, AuthorizationGrant, BulkOperations, Cameras, CatalogResourceType, ClassificationType, ClassifyAttributeType, ClientSettings, ConfigurationErrorEnum, ConnectionStatus, DependencyType, Eql, ErrorDetailsType, ErrorReason, ErrorType, EvergisDynamicLayer, EvergisTileLayer, External, FeatureType, Feedback, FileUpload, Filters, FontStyle, FontWeight, GEOCODE_PROVIDER, General, Geocode, GeometryType, Group, HttpClient, IceRouter, Import, Layers, LayersManager, LineCapStyle, LineEndingType, LineJoinType, Names, Namespace, Notification, NotificationEvent, Operation,
|
|
9040
|
+
export { Account, AccountPreview, AggregationFunction, Api, ApiEvent, AttributeIconType, AttributeSelectorType, AttributeType, AuthorizationGrant, BulkOperations, Cameras, CatalogResourceType, ClassificationType, ClassifyAttributeType, ClientSettings, ConfigurationErrorEnum, ConnectionStatus, DataSourceType, DependencyType, Eql, ErrorDetailsType, ErrorReason, ErrorType, EvergisDynamicLayer, EvergisTileLayer, External, FeatureType, Feedback, FileUpload, Filters, FontStyle, FontWeight, GEOCODE_PROVIDER, General, Geocode, GeometryType, Group, HttpClient, IceRouter, Import, Layers, LayersManager, LineCapStyle, LineEndingType, LineJoinType, Names, Namespace, Notification, NotificationEvent, Operation, OwnerFilterDc, PbfSchema, Permissions, PolicyType, PortalSettings, Print, Projects, Quality, ResourceCatalog, ResourceSeparator, ResourceSubTypeFilter, ResourceType, ResourceTypeFilter, ResourceTypeLink, Resources, ResponseType, Scheduler, Security, ServerTaskStatus, SimplifyType, SpatialProcessor, Statistic, StringSubType, Styles, Tables, TaskGroup, TextAlignment, TextVerticalAlignment, Tools, UrlPath, VectorTiles, addSubDomainToLocation, errorHandler, formDataFromFile, generateId, isEvergisDynamicLayer, isEvergisTileLayer, isFeatureLayer, isHTTPError, isHandledError, isLayer, isProjectContentItems, isString, isTileLayerService, promiseAllIgnoreErrors, stripUselessSlashes, toFormData, unique };
|
|
9011
9041
|
//# sourceMappingURL=api.esm.js.map
|