@evergis/api 5.0.9-alpha.1 → 5.0.9-alpha.3
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 +123 -20
- package/dist/api.esm.js +19 -1
- package/dist/api.esm.js.map +1 -1
- package/dist/index.js +18 -0
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
|
@@ -319,18 +319,30 @@ export interface AttributeConfigurationDc {
|
|
|
319
319
|
* @default true
|
|
320
320
|
*/
|
|
321
321
|
isDisplayed?: boolean;
|
|
322
|
-
/**
|
|
323
|
-
* If false, the attribute must have non-null value.
|
|
324
|
-
* @default false
|
|
325
|
-
*/
|
|
322
|
+
/** If false, the attribute must have non-null value. */
|
|
326
323
|
isNullable?: boolean;
|
|
327
|
-
/**
|
|
328
|
-
* Ensures that the data in the attribute is unique across all rows in a table.
|
|
329
|
-
* @default false
|
|
330
|
-
*/
|
|
324
|
+
/** Ensures that the data in the attribute is unique across all rows in a table. */
|
|
331
325
|
isUnique?: boolean;
|
|
326
|
+
/** Whether the value of the attribute is autoincremented in table. */
|
|
327
|
+
isAutoincrement?: boolean;
|
|
332
328
|
/** Client data storage. Storage isn't used by server. */
|
|
333
329
|
clientData?: any;
|
|
330
|
+
/** Id of table given attribute is referenced. */
|
|
331
|
+
referenceId?: string;
|
|
332
|
+
/** A set of layer references. */
|
|
333
|
+
layerReferenceId?: string[];
|
|
334
|
+
/**
|
|
335
|
+
*
|
|
336
|
+
*
|
|
337
|
+
* None
|
|
338
|
+
*
|
|
339
|
+
* SelectFromHandBook
|
|
340
|
+
*
|
|
341
|
+
* SelectFromRange
|
|
342
|
+
*
|
|
343
|
+
* ViewHandBook
|
|
344
|
+
*/
|
|
345
|
+
attributeSelectorType?: AttributeSelectorType;
|
|
334
346
|
/** Information about an attribute icon. */
|
|
335
347
|
icon?: AttributeIconDc;
|
|
336
348
|
}
|
|
@@ -476,6 +488,23 @@ export declare enum AttributeIconType {
|
|
|
476
488
|
/**
|
|
477
489
|
*
|
|
478
490
|
|
|
491
|
+
None
|
|
492
|
+
|
|
493
|
+
SelectFromHandBook
|
|
494
|
+
|
|
495
|
+
SelectFromRange
|
|
496
|
+
|
|
497
|
+
ViewHandBook
|
|
498
|
+
*/
|
|
499
|
+
export declare enum AttributeSelectorType {
|
|
500
|
+
None = "None",
|
|
501
|
+
SelectFromHandBook = "SelectFromHandBook",
|
|
502
|
+
SelectFromRange = "SelectFromRange",
|
|
503
|
+
ViewHandBook = "ViewHandBook"
|
|
504
|
+
}
|
|
505
|
+
/**
|
|
506
|
+
*
|
|
507
|
+
|
|
479
508
|
Unknown
|
|
480
509
|
|
|
481
510
|
String
|
|
@@ -539,10 +568,55 @@ export interface AttributesConfigurationDc {
|
|
|
539
568
|
idAttribute: string;
|
|
540
569
|
/** The name of the attribute that contains the feature geometry. */
|
|
541
570
|
geometryAttribute?: string;
|
|
571
|
+
/**
|
|
572
|
+
*
|
|
573
|
+
*
|
|
574
|
+
* Unknown
|
|
575
|
+
*
|
|
576
|
+
* Point
|
|
577
|
+
*
|
|
578
|
+
* LineString
|
|
579
|
+
*
|
|
580
|
+
* Polygon
|
|
581
|
+
*
|
|
582
|
+
* MultiPoint
|
|
583
|
+
*
|
|
584
|
+
* MultiLineString
|
|
585
|
+
*
|
|
586
|
+
* MultiPolygon
|
|
587
|
+
*
|
|
588
|
+
* GeometryCollection
|
|
589
|
+
*
|
|
590
|
+
* CircularString
|
|
591
|
+
*
|
|
592
|
+
* CompoundCurve
|
|
593
|
+
*
|
|
594
|
+
* CurvePolygon
|
|
595
|
+
*
|
|
596
|
+
* MultiCurve
|
|
597
|
+
*
|
|
598
|
+
* MultiSurface
|
|
599
|
+
*
|
|
600
|
+
* Curve
|
|
601
|
+
*
|
|
602
|
+
* Surface
|
|
603
|
+
*
|
|
604
|
+
* PolyhedralSurface
|
|
605
|
+
*
|
|
606
|
+
* TIN
|
|
607
|
+
*/
|
|
608
|
+
geometryType?: OgcGeometryType;
|
|
609
|
+
/**
|
|
610
|
+
* Geometry spatial reference.
|
|
611
|
+
* @format int32
|
|
612
|
+
*/
|
|
613
|
+
srId?: number;
|
|
542
614
|
/** The name of the attribute that is used for setting feature name (optional). */
|
|
543
615
|
titleAttribute?: string;
|
|
544
616
|
/** Name of the attribute that contains the ordering of the feature. */
|
|
545
617
|
orderAttribute?: string;
|
|
618
|
+
/** The name of the table in data source service, that contains the data for this layer. */
|
|
619
|
+
tableName?: string;
|
|
546
620
|
/** Configuration of the attributes of the layer. */
|
|
547
621
|
attributes?: (AttributeConfigurationDc | CalculatedAttributeConfigurationDc | GeometryAttributeConfigurationDc | StringAttributeConfigurationDc)[];
|
|
548
622
|
/** Configuration of layer references. Isn't used by server. */
|
|
@@ -984,10 +1058,7 @@ export interface ColumnDescriptionDc {
|
|
|
984
1058
|
* @default true
|
|
985
1059
|
*/
|
|
986
1060
|
isNullable?: boolean;
|
|
987
|
-
/**
|
|
988
|
-
* Allows column with type Int32 or Int64 be autoincrement (SERIAL, BIGSERIAL).
|
|
989
|
-
* @default false
|
|
990
|
-
*/
|
|
1061
|
+
/** Allows column with type Int32 or Int64 be autoincrement (SERIAL, BIGSERIAL). */
|
|
991
1062
|
autoincrement?: boolean;
|
|
992
1063
|
/**
|
|
993
1064
|
* Spatial reference identifier type in geometry type column.
|
|
@@ -2070,6 +2141,44 @@ export type GeometryAttributeConfigurationDc = AttributeConfigurationDc & {
|
|
|
2070
2141
|
* Calculated
|
|
2071
2142
|
*/
|
|
2072
2143
|
attributeConfigurationType?: AttributeConfigurationType;
|
|
2144
|
+
/**
|
|
2145
|
+
*
|
|
2146
|
+
*
|
|
2147
|
+
* Unknown
|
|
2148
|
+
*
|
|
2149
|
+
* Point
|
|
2150
|
+
*
|
|
2151
|
+
* LineString
|
|
2152
|
+
*
|
|
2153
|
+
* Polygon
|
|
2154
|
+
*
|
|
2155
|
+
* MultiPoint
|
|
2156
|
+
*
|
|
2157
|
+
* MultiLineString
|
|
2158
|
+
*
|
|
2159
|
+
* MultiPolygon
|
|
2160
|
+
*
|
|
2161
|
+
* GeometryCollection
|
|
2162
|
+
*
|
|
2163
|
+
* CircularString
|
|
2164
|
+
*
|
|
2165
|
+
* CompoundCurve
|
|
2166
|
+
*
|
|
2167
|
+
* CurvePolygon
|
|
2168
|
+
*
|
|
2169
|
+
* MultiCurve
|
|
2170
|
+
*
|
|
2171
|
+
* MultiSurface
|
|
2172
|
+
*
|
|
2173
|
+
* Curve
|
|
2174
|
+
*
|
|
2175
|
+
* Surface
|
|
2176
|
+
*
|
|
2177
|
+
* PolyhedralSurface
|
|
2178
|
+
*
|
|
2179
|
+
* TIN
|
|
2180
|
+
*/
|
|
2181
|
+
geometryType?: OgcGeometryType;
|
|
2073
2182
|
/**
|
|
2074
2183
|
* Spatial reference identifier type in geometry type column.
|
|
2075
2184
|
* @format int32
|
|
@@ -3576,15 +3685,9 @@ export interface ProjectContentItemDc {
|
|
|
3576
3685
|
* @default true
|
|
3577
3686
|
*/
|
|
3578
3687
|
isVisible?: boolean;
|
|
3579
|
-
/**
|
|
3580
|
-
* Checks if list of children is expanded.
|
|
3581
|
-
* @default false
|
|
3582
|
-
*/
|
|
3688
|
+
/** Checks if list of children is expanded. */
|
|
3583
3689
|
isExpanded?: boolean;
|
|
3584
|
-
/**
|
|
3585
|
-
* Checks if legend is expanded.
|
|
3586
|
-
* @default false
|
|
3587
|
-
*/
|
|
3690
|
+
/** Checks if legend is expanded. */
|
|
3588
3691
|
isLegendExpanded?: boolean;
|
|
3589
3692
|
/**
|
|
3590
3693
|
* Minimum scale resolution.
|
package/dist/api.esm.js
CHANGED
|
@@ -3144,6 +3144,24 @@ var AttributeIconType;
|
|
|
3144
3144
|
/**
|
|
3145
3145
|
*
|
|
3146
3146
|
|
|
3147
|
+
None
|
|
3148
|
+
|
|
3149
|
+
SelectFromHandBook
|
|
3150
|
+
|
|
3151
|
+
SelectFromRange
|
|
3152
|
+
|
|
3153
|
+
ViewHandBook
|
|
3154
|
+
*/
|
|
3155
|
+
var AttributeSelectorType;
|
|
3156
|
+
(function (AttributeSelectorType) {
|
|
3157
|
+
AttributeSelectorType["None"] = "None";
|
|
3158
|
+
AttributeSelectorType["SelectFromHandBook"] = "SelectFromHandBook";
|
|
3159
|
+
AttributeSelectorType["SelectFromRange"] = "SelectFromRange";
|
|
3160
|
+
AttributeSelectorType["ViewHandBook"] = "ViewHandBook";
|
|
3161
|
+
})(AttributeSelectorType || (AttributeSelectorType = {}));
|
|
3162
|
+
/**
|
|
3163
|
+
*
|
|
3164
|
+
|
|
3147
3165
|
Unknown
|
|
3148
3166
|
|
|
3149
3167
|
String
|
|
@@ -5875,5 +5893,5 @@ class VectorTileService extends Service {
|
|
|
5875
5893
|
class VectorTiles extends VectorTileService {
|
|
5876
5894
|
}
|
|
5877
5895
|
|
|
5878
|
-
export { AccessMode, Account, AccountPreview, AggregationFunction, Api, ApiEvent, AttributeConfigurationType, AttributeIconType, 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, LayerServiceType, 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, TableConfigurationType, Tables, TaskResourceSubType, TaskResourceUpdateType, Tools, UrlPath, VectorTiles, WorkerMethodType, WorkerSettingsFieldType, addSubDomainToLocation, errorHandler, formDataFromFile, generateId, getFetchingUrlPath, isHTTPError, isHandledError, isProjectContentItems, isString, isTileLayerService, parseJwt, promiseAllIgnoreErrors, stripUselessSlashes, toFormData, unique, useToken };
|
|
5896
|
+
export { AccessMode, Account, AccountPreview, AggregationFunction, Api, ApiEvent, AttributeConfigurationType, 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, LayerServiceType, 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, TableConfigurationType, Tables, TaskResourceSubType, TaskResourceUpdateType, Tools, UrlPath, VectorTiles, WorkerMethodType, WorkerSettingsFieldType, addSubDomainToLocation, errorHandler, formDataFromFile, generateId, getFetchingUrlPath, isHTTPError, isHandledError, isProjectContentItems, isString, isTileLayerService, parseJwt, promiseAllIgnoreErrors, stripUselessSlashes, toFormData, unique, useToken };
|
|
5879
5897
|
//# sourceMappingURL=api.esm.js.map
|