@evergis/api 4.1.55-alpha.0 → 4.1.55-alpha.1
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__/data-contracts.d.ts +41 -55
- package/dist/api.esm.js +5 -38
- package/dist/api.esm.js.map +1 -1
- package/dist/index.js +4 -37
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
|
@@ -379,9 +379,9 @@ export interface AttributeDefinitionDc {
|
|
|
379
379
|
*
|
|
380
380
|
* Polygon
|
|
381
381
|
*
|
|
382
|
-
*
|
|
382
|
+
* MultiPoint
|
|
383
383
|
*
|
|
384
|
-
*
|
|
384
|
+
* MultiLineString
|
|
385
385
|
*
|
|
386
386
|
* H3Index
|
|
387
387
|
*
|
|
@@ -622,9 +622,9 @@ LineString
|
|
|
622
622
|
|
|
623
623
|
Polygon
|
|
624
624
|
|
|
625
|
-
|
|
625
|
+
MultiPoint
|
|
626
626
|
|
|
627
|
-
|
|
627
|
+
MultiLineString
|
|
628
628
|
|
|
629
629
|
H3Index
|
|
630
630
|
|
|
@@ -645,8 +645,8 @@ export declare enum AttributeType {
|
|
|
645
645
|
Point = "Point",
|
|
646
646
|
LineString = "LineString",
|
|
647
647
|
Polygon = "Polygon",
|
|
648
|
-
|
|
649
|
-
|
|
648
|
+
MultiPoint = "MultiPoint",
|
|
649
|
+
MultiLineString = "MultiLineString",
|
|
650
650
|
H3Index = "H3Index",
|
|
651
651
|
Json = "Json",
|
|
652
652
|
MultiPolygon = "MultiPolygon",
|
|
@@ -972,9 +972,9 @@ export interface ColumnDescriptionDc {
|
|
|
972
972
|
*
|
|
973
973
|
* Polygon
|
|
974
974
|
*
|
|
975
|
-
*
|
|
975
|
+
* MultiPoint
|
|
976
976
|
*
|
|
977
|
-
*
|
|
977
|
+
* MultiLineString
|
|
978
978
|
*
|
|
979
979
|
* H3Index
|
|
980
980
|
*
|
|
@@ -1622,9 +1622,9 @@ export type EqlAttributeConfigurationDc = AttributeConfigurationDc & {
|
|
|
1622
1622
|
*
|
|
1623
1623
|
* Polygon
|
|
1624
1624
|
*
|
|
1625
|
-
*
|
|
1625
|
+
* MultiPoint
|
|
1626
1626
|
*
|
|
1627
|
-
*
|
|
1627
|
+
* MultiLineString
|
|
1628
1628
|
*
|
|
1629
1629
|
* H3Index
|
|
1630
1630
|
*
|
|
@@ -1833,9 +1833,9 @@ export interface ExpressionValidationResultDc {
|
|
|
1833
1833
|
*
|
|
1834
1834
|
* Polygon
|
|
1835
1835
|
*
|
|
1836
|
-
*
|
|
1836
|
+
* MultiPoint
|
|
1837
1837
|
*
|
|
1838
|
-
*
|
|
1838
|
+
* MultiLineString
|
|
1839
1839
|
*
|
|
1840
1840
|
* H3Index
|
|
1841
1841
|
*
|
|
@@ -2004,6 +2004,8 @@ export type FailedServiceInfoDc = ServiceInfoDc & {
|
|
|
2004
2004
|
* InvalidTableReferenceConfiguration
|
|
2005
2005
|
*/
|
|
2006
2006
|
errorType?: ConfigurationErrorEnum;
|
|
2007
|
+
/** Type of error that occurred during initialization. */
|
|
2008
|
+
error?: string | null;
|
|
2007
2009
|
};
|
|
2008
2010
|
/**
|
|
2009
2011
|
* Feature object definition.
|
|
@@ -2062,38 +2064,6 @@ export interface FilterResponseDc {
|
|
|
2062
2064
|
/** Id of the filter. */
|
|
2063
2065
|
id?: string;
|
|
2064
2066
|
}
|
|
2065
|
-
/**
|
|
2066
|
-
*
|
|
2067
|
-
|
|
2068
|
-
Point
|
|
2069
|
-
|
|
2070
|
-
MultiPoint
|
|
2071
|
-
|
|
2072
|
-
LineString
|
|
2073
|
-
|
|
2074
|
-
MultiLineString
|
|
2075
|
-
|
|
2076
|
-
Polygon
|
|
2077
|
-
|
|
2078
|
-
MultiPolygon
|
|
2079
|
-
|
|
2080
|
-
GeometryCollection
|
|
2081
|
-
|
|
2082
|
-
Feature
|
|
2083
|
-
|
|
2084
|
-
FeatureCollection
|
|
2085
|
-
*/
|
|
2086
|
-
export declare enum GeoJsonObjectType {
|
|
2087
|
-
Point = "Point",
|
|
2088
|
-
MultiPoint = "MultiPoint",
|
|
2089
|
-
LineString = "LineString",
|
|
2090
|
-
MultiLineString = "MultiLineString",
|
|
2091
|
-
Polygon = "Polygon",
|
|
2092
|
-
MultiPolygon = "MultiPolygon",
|
|
2093
|
-
GeometryCollection = "GeometryCollection",
|
|
2094
|
-
Feature = "Feature",
|
|
2095
|
-
FeatureCollection = "FeatureCollection"
|
|
2096
|
-
}
|
|
2097
2067
|
/**
|
|
2098
2068
|
* Geocode result.
|
|
2099
2069
|
*/
|
|
@@ -2653,7 +2623,7 @@ export interface LayerUpdateInfoDc {
|
|
|
2653
2623
|
deletedIds?: string[];
|
|
2654
2624
|
}
|
|
2655
2625
|
/**
|
|
2656
|
-
*
|
|
2626
|
+
* MultiLineString geometry object definition.
|
|
2657
2627
|
*/
|
|
2658
2628
|
export type LineStringDc = GeometryDc & {
|
|
2659
2629
|
/**
|
|
@@ -2879,7 +2849,7 @@ export interface MoveResourceDc {
|
|
|
2879
2849
|
rewrite?: boolean;
|
|
2880
2850
|
}
|
|
2881
2851
|
/**
|
|
2882
|
-
*
|
|
2852
|
+
* MultiLineString geometry object definition.
|
|
2883
2853
|
*/
|
|
2884
2854
|
export type MultiLineStringDc = GeometryDc & {
|
|
2885
2855
|
/**
|
|
@@ -3946,25 +3916,41 @@ export type QueryLayerServiceConfigurationDc = ServiceConfigurationBaseDc & {
|
|
|
3946
3916
|
/**
|
|
3947
3917
|
*
|
|
3948
3918
|
*
|
|
3949
|
-
*
|
|
3919
|
+
* Unknown
|
|
3950
3920
|
*
|
|
3951
|
-
*
|
|
3921
|
+
* Point
|
|
3952
3922
|
*
|
|
3953
3923
|
* LineString
|
|
3954
3924
|
*
|
|
3955
|
-
* MultiLineString
|
|
3956
|
-
*
|
|
3957
3925
|
* Polygon
|
|
3958
3926
|
*
|
|
3927
|
+
* MultiPoint
|
|
3928
|
+
*
|
|
3929
|
+
* MultiLineString
|
|
3930
|
+
*
|
|
3959
3931
|
* MultiPolygon
|
|
3960
3932
|
*
|
|
3961
3933
|
* GeometryCollection
|
|
3962
3934
|
*
|
|
3963
|
-
*
|
|
3935
|
+
* CircularString
|
|
3964
3936
|
*
|
|
3965
|
-
*
|
|
3937
|
+
* CompoundCurve
|
|
3938
|
+
*
|
|
3939
|
+
* CurvePolygon
|
|
3940
|
+
*
|
|
3941
|
+
* MultiCurve
|
|
3942
|
+
*
|
|
3943
|
+
* MultiSurface
|
|
3944
|
+
*
|
|
3945
|
+
* Curve
|
|
3946
|
+
*
|
|
3947
|
+
* Surface
|
|
3948
|
+
*
|
|
3949
|
+
* PolyhedralSurface
|
|
3950
|
+
*
|
|
3951
|
+
* TIN
|
|
3966
3952
|
*/
|
|
3967
|
-
geometryType?:
|
|
3953
|
+
geometryType?: OgcGeometryType;
|
|
3968
3954
|
/** Configuration of the attribute set in a feature layer. */
|
|
3969
3955
|
attributesConfiguration?: EqlAttributesConfigurationDc;
|
|
3970
3956
|
/** Client style data storage. Storage isn't used by server. */
|
|
@@ -4010,9 +3996,9 @@ export interface QueryLayerServiceEqlParameterConfigurationDc {
|
|
|
4010
3996
|
*
|
|
4011
3997
|
* Polygon
|
|
4012
3998
|
*
|
|
4013
|
-
*
|
|
3999
|
+
* MultiPoint
|
|
4014
4000
|
*
|
|
4015
|
-
*
|
|
4001
|
+
* MultiLineString
|
|
4016
4002
|
*
|
|
4017
4003
|
* H3Index
|
|
4018
4004
|
*
|
package/dist/api.esm.js
CHANGED
|
@@ -5313,9 +5313,9 @@ LineString
|
|
|
5313
5313
|
|
|
5314
5314
|
Polygon
|
|
5315
5315
|
|
|
5316
|
-
|
|
5316
|
+
MultiPoint
|
|
5317
5317
|
|
|
5318
|
-
|
|
5318
|
+
MultiLineString
|
|
5319
5319
|
|
|
5320
5320
|
H3Index
|
|
5321
5321
|
|
|
@@ -5337,8 +5337,8 @@ var AttributeType;
|
|
|
5337
5337
|
AttributeType["Point"] = "Point";
|
|
5338
5338
|
AttributeType["LineString"] = "LineString";
|
|
5339
5339
|
AttributeType["Polygon"] = "Polygon";
|
|
5340
|
-
AttributeType["
|
|
5341
|
-
AttributeType["
|
|
5340
|
+
AttributeType["MultiPoint"] = "MultiPoint";
|
|
5341
|
+
AttributeType["MultiLineString"] = "MultiLineString";
|
|
5342
5342
|
AttributeType["H3Index"] = "H3Index";
|
|
5343
5343
|
AttributeType["Json"] = "Json";
|
|
5344
5344
|
AttributeType["MultiPolygon"] = "MultiPolygon";
|
|
@@ -5623,39 +5623,6 @@ var ErrorType;
|
|
|
5623
5623
|
/**
|
|
5624
5624
|
*
|
|
5625
5625
|
|
|
5626
|
-
Point
|
|
5627
|
-
|
|
5628
|
-
MultiPoint
|
|
5629
|
-
|
|
5630
|
-
LineString
|
|
5631
|
-
|
|
5632
|
-
MultiLineString
|
|
5633
|
-
|
|
5634
|
-
Polygon
|
|
5635
|
-
|
|
5636
|
-
MultiPolygon
|
|
5637
|
-
|
|
5638
|
-
GeometryCollection
|
|
5639
|
-
|
|
5640
|
-
Feature
|
|
5641
|
-
|
|
5642
|
-
FeatureCollection
|
|
5643
|
-
*/
|
|
5644
|
-
var GeoJsonObjectType;
|
|
5645
|
-
(function (GeoJsonObjectType) {
|
|
5646
|
-
GeoJsonObjectType["Point"] = "Point";
|
|
5647
|
-
GeoJsonObjectType["MultiPoint"] = "MultiPoint";
|
|
5648
|
-
GeoJsonObjectType["LineString"] = "LineString";
|
|
5649
|
-
GeoJsonObjectType["MultiLineString"] = "MultiLineString";
|
|
5650
|
-
GeoJsonObjectType["Polygon"] = "Polygon";
|
|
5651
|
-
GeoJsonObjectType["MultiPolygon"] = "MultiPolygon";
|
|
5652
|
-
GeoJsonObjectType["GeometryCollection"] = "GeometryCollection";
|
|
5653
|
-
GeoJsonObjectType["Feature"] = "Feature";
|
|
5654
|
-
GeoJsonObjectType["FeatureCollection"] = "FeatureCollection";
|
|
5655
|
-
})(GeoJsonObjectType || (GeoJsonObjectType = {}));
|
|
5656
|
-
/**
|
|
5657
|
-
*
|
|
5658
|
-
|
|
5659
5626
|
Unknown
|
|
5660
5627
|
|
|
5661
5628
|
Point
|
|
@@ -6047,5 +6014,5 @@ var WorkerSettingsFieldType;
|
|
|
6047
6014
|
WorkerSettingsFieldType["AttributeArray"] = "AttributeArray";
|
|
6048
6015
|
})(WorkerSettingsFieldType || (WorkerSettingsFieldType = {}));
|
|
6049
6016
|
|
|
6050
|
-
export { AccessMode, Account, AccountPreview, AggregationFunction, Api, ApiEvent, AttributeIconType, AttributeSelectorType, AttributeType, AuthorizationGrant, BulkOperations, CatalogResourceType, ClassificationType, ClassifyAttributeType, ClientSettings, ConfigurationErrorEnum, ConflictResolutionStrategy, ConnectionStatus, DataSourceConnectionType, DataSourceType, DependencyType, Eql, ErrorDetailsType, ErrorReason, ErrorType, External, Feedback, FileUpload, Filters, GEOCODE_PROVIDER,
|
|
6017
|
+
export { AccessMode, Account, AccountPreview, AggregationFunction, Api, ApiEvent, AttributeIconType, AttributeSelectorType, AttributeType, AuthorizationGrant, BulkOperations, CatalogResourceType, ClassificationType, ClassifyAttributeType, ClientSettings, ConfigurationErrorEnum, ConflictResolutionStrategy, ConnectionStatus, DataSourceConnectionType, DataSourceType, DependencyType, Eql, ErrorDetailsType, ErrorReason, ErrorType, External, Feedback, FileUpload, Filters, GEOCODE_PROVIDER, Geocode, HttpClient, Import, Layers, Names, Notification, NotificationEvent, OgcGeometryType, PbfSchema, Permissions, PolicyType, PortalSettings, Projects, RemoteTaskManager, RemoteTaskStatus, ResourceSeparator, ResourceSubTypeFilter, ResourceType, ResourceTypeFilter, ResourceTypeLink, Resources, ResponseType, STORAGE_REFRESH_TOKEN_KEY, STORAGE_TOKEN_KEY, Security, SimplifyType, Statistic, StringSubType, Tables, TaskResourceSubType, Tools, UrlPath, VectorTiles, WorkerMethodType, WorkerSettingsFieldType, addSubDomainToLocation, errorHandler, formDataFromFile, generateId, getFetchingUrlPath, isHTTPError, isHandledError, isProjectContentItems, isString, isTileLayerService, parseJwt, promiseAllIgnoreErrors, stripUselessSlashes, toFormData, unique, useToken };
|
|
6051
6018
|
//# sourceMappingURL=api.esm.js.map
|