@evergis/api 5.0.9-alpha.1 → 5.0.9-alpha.2
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 +42 -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
|
|
@@ -543,6 +572,8 @@ export interface AttributesConfigurationDc {
|
|
|
543
572
|
titleAttribute?: string;
|
|
544
573
|
/** Name of the attribute that contains the ordering of the feature. */
|
|
545
574
|
orderAttribute?: string;
|
|
575
|
+
/** The name of the table in data source service, that contains the data for this layer. */
|
|
576
|
+
tableName?: string;
|
|
546
577
|
/** Configuration of the attributes of the layer. */
|
|
547
578
|
attributes?: (AttributeConfigurationDc | CalculatedAttributeConfigurationDc | GeometryAttributeConfigurationDc | StringAttributeConfigurationDc)[];
|
|
548
579
|
/** Configuration of layer references. Isn't used by server. */
|
|
@@ -984,10 +1015,7 @@ export interface ColumnDescriptionDc {
|
|
|
984
1015
|
* @default true
|
|
985
1016
|
*/
|
|
986
1017
|
isNullable?: boolean;
|
|
987
|
-
/**
|
|
988
|
-
* Allows column with type Int32 or Int64 be autoincrement (SERIAL, BIGSERIAL).
|
|
989
|
-
* @default false
|
|
990
|
-
*/
|
|
1018
|
+
/** Allows column with type Int32 or Int64 be autoincrement (SERIAL, BIGSERIAL). */
|
|
991
1019
|
autoincrement?: boolean;
|
|
992
1020
|
/**
|
|
993
1021
|
* Spatial reference identifier type in geometry type column.
|
|
@@ -3576,15 +3604,9 @@ export interface ProjectContentItemDc {
|
|
|
3576
3604
|
* @default true
|
|
3577
3605
|
*/
|
|
3578
3606
|
isVisible?: boolean;
|
|
3579
|
-
/**
|
|
3580
|
-
* Checks if list of children is expanded.
|
|
3581
|
-
* @default false
|
|
3582
|
-
*/
|
|
3607
|
+
/** Checks if list of children is expanded. */
|
|
3583
3608
|
isExpanded?: boolean;
|
|
3584
|
-
/**
|
|
3585
|
-
* Checks if legend is expanded.
|
|
3586
|
-
* @default false
|
|
3587
|
-
*/
|
|
3609
|
+
/** Checks if legend is expanded. */
|
|
3588
3610
|
isLegendExpanded?: boolean;
|
|
3589
3611
|
/**
|
|
3590
3612
|
* 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
|