@evergis/api 4.1.56-alpha.2 → 4.1.56-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.
@@ -2581,6 +2581,35 @@ export interface LayerReferenceConfigurationDc {
2581
2581
  referenceId?: string;
2582
2582
  }
2583
2583
  /**
2584
+ * Specifies the available types of layer services that can be used within the application.
2585
+
2586
+ QueryLayerService
2587
+
2588
+ LinearLayerService
2589
+
2590
+ MapboxLayerService
2591
+
2592
+ PostgresTileLayerService
2593
+
2594
+ ProxyLayerService
2595
+
2596
+ PythonLayerService
2597
+
2598
+ RemoteTileLayerService
2599
+
2600
+ RouteLayerService
2601
+ */
2602
+ export declare enum LayerServiceType {
2603
+ QueryLayerService = "QueryLayerService",
2604
+ LinearLayerService = "LinearLayerService",
2605
+ MapboxLayerService = "MapboxLayerService",
2606
+ PostgresTileLayerService = "PostgresTileLayerService",
2607
+ ProxyLayerService = "ProxyLayerService",
2608
+ PythonLayerService = "PythonLayerService",
2609
+ RemoteTileLayerService = "RemoteTileLayerService",
2610
+ RouteLayerService = "RouteLayerService"
2611
+ }
2612
+ /**
2584
2613
  * Information about layer update.
2585
2614
  Includes ids of modified features and their bbox.
2586
2615
  */
@@ -2648,6 +2677,26 @@ export type LineStringDc = GeometryDc & {
2648
2677
  * Linear service configuration Dc.
2649
2678
  */
2650
2679
  export type LinearServiceConfigurationDc = ServiceConfigurationBaseDc & {
2680
+ /**
2681
+ * Specifies the available types of layer services that can be used within the application.
2682
+ *
2683
+ * QueryLayerService
2684
+ *
2685
+ * LinearLayerService
2686
+ *
2687
+ * MapboxLayerService
2688
+ *
2689
+ * PostgresTileLayerService
2690
+ *
2691
+ * ProxyLayerService
2692
+ *
2693
+ * PythonLayerService
2694
+ *
2695
+ * RemoteTileLayerService
2696
+ *
2697
+ * RouteLayerService
2698
+ */
2699
+ layerType?: LayerServiceType;
2651
2700
  /** Configuration of the attributes of the layer. */
2652
2701
  attributesConfiguration: AttributesConfigurationDc | EqlAttributesConfigurationDc;
2653
2702
  /** Condition to filter returned features. */
@@ -3227,6 +3276,26 @@ export declare enum PbfSchema {
3227
3276
  * Configuration for the mapbox PBF/MVT service.
3228
3277
  */
3229
3278
  export type PbfServiceConfigurationDc = ProxyServiceConfigurationDc & {
3279
+ /**
3280
+ * Specifies the available types of layer services that can be used within the application.
3281
+ *
3282
+ * QueryLayerService
3283
+ *
3284
+ * LinearLayerService
3285
+ *
3286
+ * MapboxLayerService
3287
+ *
3288
+ * PostgresTileLayerService
3289
+ *
3290
+ * ProxyLayerService
3291
+ *
3292
+ * PythonLayerService
3293
+ *
3294
+ * RemoteTileLayerService
3295
+ *
3296
+ * RouteLayerService
3297
+ */
3298
+ layerType?: LayerServiceType;
3230
3299
  /**
3231
3300
  * Influences the y direction of the tile coordinates. The global-mercator (aka Spherical Mercator) profile is assumed.
3232
3301
  *
@@ -3483,6 +3552,26 @@ export type PostgresDataSourceInfoDc = DataSourceInfoDc & {
3483
3552
  * Configuration of a postgres tile catalog service.
3484
3553
  */
3485
3554
  export type PostgresTileCatalogServiceConfigurationDc = ServiceConfigurationBaseDc & {
3555
+ /**
3556
+ * Specifies the available types of layer services that can be used within the application.
3557
+ *
3558
+ * QueryLayerService
3559
+ *
3560
+ * LinearLayerService
3561
+ *
3562
+ * MapboxLayerService
3563
+ *
3564
+ * PostgresTileLayerService
3565
+ *
3566
+ * ProxyLayerService
3567
+ *
3568
+ * PythonLayerService
3569
+ *
3570
+ * RemoteTileLayerService
3571
+ *
3572
+ * RouteLayerService
3573
+ */
3574
+ layerType?: LayerServiceType;
3486
3575
  /** Configuration of the attributes of the layer. */
3487
3576
  attributesConfiguration: AttributesConfigurationDc | EqlAttributesConfigurationDc;
3488
3577
  /** Client style data storage. Storage isn't used by server. */
@@ -3676,6 +3765,26 @@ export interface ProxyLayerLegendItemDc {
3676
3765
  * Configuration for the proxy service.
3677
3766
  */
3678
3767
  export type ProxyServiceConfigurationDc = ServiceConfigurationBaseDc & {
3768
+ /**
3769
+ * Specifies the available types of layer services that can be used within the application.
3770
+ *
3771
+ * QueryLayerService
3772
+ *
3773
+ * LinearLayerService
3774
+ *
3775
+ * MapboxLayerService
3776
+ *
3777
+ * PostgresTileLayerService
3778
+ *
3779
+ * ProxyLayerService
3780
+ *
3781
+ * PythonLayerService
3782
+ *
3783
+ * RemoteTileLayerService
3784
+ *
3785
+ * RouteLayerService
3786
+ */
3787
+ layerType?: LayerServiceType;
3679
3788
  /** Resource id. */
3680
3789
  resourceId?: string | null;
3681
3790
  /**
@@ -3794,6 +3903,26 @@ export interface PushResponse {
3794
3903
  * Configuration for the python service.
3795
3904
  */
3796
3905
  export type PythonServiceConfigurationDc = ProxyServiceConfigurationDc & {
3906
+ /**
3907
+ * Specifies the available types of layer services that can be used within the application.
3908
+ *
3909
+ * QueryLayerService
3910
+ *
3911
+ * LinearLayerService
3912
+ *
3913
+ * MapboxLayerService
3914
+ *
3915
+ * PostgresTileLayerService
3916
+ *
3917
+ * ProxyLayerService
3918
+ *
3919
+ * PythonLayerService
3920
+ *
3921
+ * RemoteTileLayerService
3922
+ *
3923
+ * RouteLayerService
3924
+ */
3925
+ layerType?: LayerServiceType;
3797
3926
  /** PythonResourceId. */
3798
3927
  pythonResourceId?: string | null;
3799
3928
  /** Description python script method. */
@@ -3898,6 +4027,26 @@ export interface QueryHistoryDc {
3898
4027
  * Configuration of a postgres feature layer service.
3899
4028
  */
3900
4029
  export type QueryLayerServiceConfigurationDc = ServiceConfigurationBaseDc & {
4030
+ /**
4031
+ * Specifies the available types of layer services that can be used within the application.
4032
+ *
4033
+ * QueryLayerService
4034
+ *
4035
+ * LinearLayerService
4036
+ *
4037
+ * MapboxLayerService
4038
+ *
4039
+ * PostgresTileLayerService
4040
+ *
4041
+ * ProxyLayerService
4042
+ *
4043
+ * PythonLayerService
4044
+ *
4045
+ * RemoteTileLayerService
4046
+ *
4047
+ * RouteLayerService
4048
+ */
4049
+ layerType?: LayerServiceType;
3901
4050
  /** Data source name. */
3902
4051
  ds?: string | null;
3903
4052
  /** Additional data source connection. */
@@ -4264,6 +4413,26 @@ export declare enum RemoteTaskStatus {
4264
4413
  * Configuration for the remote tile service.
4265
4414
  */
4266
4415
  export type RemoteTileServiceConfigurationDc = ServiceConfigurationBaseDc & {
4416
+ /**
4417
+ * Specifies the available types of layer services that can be used within the application.
4418
+ *
4419
+ * QueryLayerService
4420
+ *
4421
+ * LinearLayerService
4422
+ *
4423
+ * MapboxLayerService
4424
+ *
4425
+ * PostgresTileLayerService
4426
+ *
4427
+ * ProxyLayerService
4428
+ *
4429
+ * PythonLayerService
4430
+ *
4431
+ * RemoteTileLayerService
4432
+ *
4433
+ * RouteLayerService
4434
+ */
4435
+ layerType?: LayerServiceType;
4267
4436
  /** Tile info structure. */
4268
4437
  tileInfo?: TileInfoDc;
4269
4438
  /**
@@ -4645,6 +4814,26 @@ export interface RollbackResponse {
4645
4814
  * Route service configuration Dc.
4646
4815
  */
4647
4816
  export type RouteServiceConfigurationDc = ServiceConfigurationBaseDc & {
4817
+ /**
4818
+ * Specifies the available types of layer services that can be used within the application.
4819
+ *
4820
+ * QueryLayerService
4821
+ *
4822
+ * LinearLayerService
4823
+ *
4824
+ * MapboxLayerService
4825
+ *
4826
+ * PostgresTileLayerService
4827
+ *
4828
+ * ProxyLayerService
4829
+ *
4830
+ * PythonLayerService
4831
+ *
4832
+ * RemoteTileLayerService
4833
+ *
4834
+ * RouteLayerService
4835
+ */
4836
+ layerType?: LayerServiceType;
4648
4837
  /** Configuration of the attributes of the layer. */
4649
4838
  attributesConfiguration: AttributesConfigurationDc | EqlAttributesConfigurationDc;
4650
4839
  /** Client style data storage. Storage isn't used by server. */
@@ -4749,6 +4938,26 @@ export interface SearchedUserDc {
4749
4938
  * Common fields for service configurations.
4750
4939
  */
4751
4940
  export interface ServiceConfigurationBaseDc {
4941
+ /**
4942
+ * Specifies the available types of layer services that can be used within the application.
4943
+ *
4944
+ * QueryLayerService
4945
+ *
4946
+ * LinearLayerService
4947
+ *
4948
+ * MapboxLayerService
4949
+ *
4950
+ * PostgresTileLayerService
4951
+ *
4952
+ * ProxyLayerService
4953
+ *
4954
+ * PythonLayerService
4955
+ *
4956
+ * RemoteTileLayerService
4957
+ *
4958
+ * RouteLayerService
4959
+ */
4960
+ layerType: LayerServiceType;
4752
4961
  /**
4753
4962
  * Name of the service.
4754
4963
  * @minLength 1
package/dist/api.esm.js CHANGED
@@ -5445,6 +5445,36 @@ var ErrorType;
5445
5445
  ErrorType["EmailNotSet"] = "EmailNotSet";
5446
5446
  })(ErrorType || (ErrorType = {}));
5447
5447
  /**
5448
+ * Specifies the available types of layer services that can be used within the application.
5449
+
5450
+ QueryLayerService
5451
+
5452
+ LinearLayerService
5453
+
5454
+ MapboxLayerService
5455
+
5456
+ PostgresTileLayerService
5457
+
5458
+ ProxyLayerService
5459
+
5460
+ PythonLayerService
5461
+
5462
+ RemoteTileLayerService
5463
+
5464
+ RouteLayerService
5465
+ */
5466
+ var LayerServiceType;
5467
+ (function (LayerServiceType) {
5468
+ LayerServiceType["QueryLayerService"] = "QueryLayerService";
5469
+ LayerServiceType["LinearLayerService"] = "LinearLayerService";
5470
+ LayerServiceType["MapboxLayerService"] = "MapboxLayerService";
5471
+ LayerServiceType["PostgresTileLayerService"] = "PostgresTileLayerService";
5472
+ LayerServiceType["ProxyLayerService"] = "ProxyLayerService";
5473
+ LayerServiceType["PythonLayerService"] = "PythonLayerService";
5474
+ LayerServiceType["RemoteTileLayerService"] = "RemoteTileLayerService";
5475
+ LayerServiceType["RouteLayerService"] = "RouteLayerService";
5476
+ })(LayerServiceType || (LayerServiceType = {}));
5477
+ /**
5448
5478
  *
5449
5479
 
5450
5480
  Unknown
@@ -5838,5 +5868,5 @@ var WorkerSettingsFieldType;
5838
5868
  WorkerSettingsFieldType["AttributeArray"] = "AttributeArray";
5839
5869
  })(WorkerSettingsFieldType || (WorkerSettingsFieldType = {}));
5840
5870
 
5841
- 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 };
5871
+ 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, 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, Tables, TaskResourceSubType, Tools, UrlPath, VectorTiles, WorkerMethodType, WorkerSettingsFieldType, addSubDomainToLocation, errorHandler, formDataFromFile, generateId, getFetchingUrlPath, isHTTPError, isHandledError, isProjectContentItems, isString, isTileLayerService, parseJwt, promiseAllIgnoreErrors, stripUselessSlashes, toFormData, unique, useToken };
5842
5872
  //# sourceMappingURL=api.esm.js.map