@evergis/api 5.0.9-alpha.0 → 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 +59 -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,8 +572,12 @@ 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)[];
|
|
579
|
+
/** Configuration of layer references. Isn't used by server. */
|
|
580
|
+
layerReferences?: LayerReferenceConfigurationDc[];
|
|
548
581
|
}
|
|
549
582
|
/**
|
|
550
583
|
*
|
|
@@ -982,10 +1015,7 @@ export interface ColumnDescriptionDc {
|
|
|
982
1015
|
* @default true
|
|
983
1016
|
*/
|
|
984
1017
|
isNullable?: boolean;
|
|
985
|
-
/**
|
|
986
|
-
* Allows column with type Int32 or Int64 be autoincrement (SERIAL, BIGSERIAL).
|
|
987
|
-
* @default false
|
|
988
|
-
*/
|
|
1018
|
+
/** Allows column with type Int32 or Int64 be autoincrement (SERIAL, BIGSERIAL). */
|
|
989
1019
|
autoincrement?: boolean;
|
|
990
1020
|
/**
|
|
991
1021
|
* Spatial reference identifier type in geometry type column.
|
|
@@ -2473,6 +2503,21 @@ export interface IncreaseResourcesLimitDc {
|
|
|
2473
2503
|
/** Request justification. */
|
|
2474
2504
|
justification?: string;
|
|
2475
2505
|
}
|
|
2506
|
+
/**
|
|
2507
|
+
* Layer reference configuration. Isn't used by server.
|
|
2508
|
+
*/
|
|
2509
|
+
export interface LayerReferenceConfigurationDc {
|
|
2510
|
+
/** Name of the layer. */
|
|
2511
|
+
layerName?: string;
|
|
2512
|
+
/** Condition to apply. */
|
|
2513
|
+
condition?: string;
|
|
2514
|
+
/** Attribute name in base layer. */
|
|
2515
|
+
referenceAttribute?: string;
|
|
2516
|
+
/** Attribute name in target layer. */
|
|
2517
|
+
targetAttribute?: string;
|
|
2518
|
+
/** Id of the reference. */
|
|
2519
|
+
referenceId?: string;
|
|
2520
|
+
}
|
|
2476
2521
|
/**
|
|
2477
2522
|
* Specifies the available types of layer services that can be used within the application.
|
|
2478
2523
|
|
|
@@ -3559,15 +3604,9 @@ export interface ProjectContentItemDc {
|
|
|
3559
3604
|
* @default true
|
|
3560
3605
|
*/
|
|
3561
3606
|
isVisible?: boolean;
|
|
3562
|
-
/**
|
|
3563
|
-
* Checks if list of children is expanded.
|
|
3564
|
-
* @default false
|
|
3565
|
-
*/
|
|
3607
|
+
/** Checks if list of children is expanded. */
|
|
3566
3608
|
isExpanded?: boolean;
|
|
3567
|
-
/**
|
|
3568
|
-
* Checks if legend is expanded.
|
|
3569
|
-
* @default false
|
|
3570
|
-
*/
|
|
3609
|
+
/** Checks if legend is expanded. */
|
|
3571
3610
|
isLegendExpanded?: boolean;
|
|
3572
3611
|
/**
|
|
3573
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
|