@evergis/api 4.1.56-alpha.2 → 4.1.56-alpha.4
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 +232 -74
- package/dist/api.esm.js +31 -1
- package/dist/api.esm.js.map +1 -1
- package/dist/index.js +30 -0
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
|
@@ -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
|
/**
|
|
@@ -3743,16 +3852,6 @@ export type ProxyServiceInfoDc = ServiceInfoDc & {
|
|
|
3743
3852
|
layers: string[];
|
|
3744
3853
|
/** Data contract for layer legend. */
|
|
3745
3854
|
legend?: ProxyLayerLegendDc;
|
|
3746
|
-
/** Copyright text. */
|
|
3747
|
-
copyrightText?: string | null;
|
|
3748
|
-
/** Client data storage. Storage isn't used by server. */
|
|
3749
|
-
clientData?: any;
|
|
3750
|
-
/** Client style data storage. Storage isn't used by server. */
|
|
3751
|
-
clientStyle?: any;
|
|
3752
|
-
/** Card configuration. Storage isn't used by server. */
|
|
3753
|
-
cardConfiguration?: any;
|
|
3754
|
-
/** Edit configuration. Storage isn't used by server. */
|
|
3755
|
-
editConfiguration?: any;
|
|
3756
3855
|
};
|
|
3757
3856
|
/**
|
|
3758
3857
|
* Represents the information required to publish a layer service, including its metadata, configuration, and
|
|
@@ -3794,6 +3893,26 @@ export interface PushResponse {
|
|
|
3794
3893
|
* Configuration for the python service.
|
|
3795
3894
|
*/
|
|
3796
3895
|
export type PythonServiceConfigurationDc = ProxyServiceConfigurationDc & {
|
|
3896
|
+
/**
|
|
3897
|
+
* Specifies the available types of layer services that can be used within the application.
|
|
3898
|
+
*
|
|
3899
|
+
* QueryLayerService
|
|
3900
|
+
*
|
|
3901
|
+
* LinearLayerService
|
|
3902
|
+
*
|
|
3903
|
+
* MapboxLayerService
|
|
3904
|
+
*
|
|
3905
|
+
* PostgresTileLayerService
|
|
3906
|
+
*
|
|
3907
|
+
* ProxyLayerService
|
|
3908
|
+
*
|
|
3909
|
+
* PythonLayerService
|
|
3910
|
+
*
|
|
3911
|
+
* RemoteTileLayerService
|
|
3912
|
+
*
|
|
3913
|
+
* RouteLayerService
|
|
3914
|
+
*/
|
|
3915
|
+
layerType?: LayerServiceType;
|
|
3797
3916
|
/** PythonResourceId. */
|
|
3798
3917
|
pythonResourceId?: string | null;
|
|
3799
3918
|
/** Description python script method. */
|
|
@@ -3898,6 +4017,26 @@ export interface QueryHistoryDc {
|
|
|
3898
4017
|
* Configuration of a postgres feature layer service.
|
|
3899
4018
|
*/
|
|
3900
4019
|
export type QueryLayerServiceConfigurationDc = ServiceConfigurationBaseDc & {
|
|
4020
|
+
/**
|
|
4021
|
+
* Specifies the available types of layer services that can be used within the application.
|
|
4022
|
+
*
|
|
4023
|
+
* QueryLayerService
|
|
4024
|
+
*
|
|
4025
|
+
* LinearLayerService
|
|
4026
|
+
*
|
|
4027
|
+
* MapboxLayerService
|
|
4028
|
+
*
|
|
4029
|
+
* PostgresTileLayerService
|
|
4030
|
+
*
|
|
4031
|
+
* ProxyLayerService
|
|
4032
|
+
*
|
|
4033
|
+
* PythonLayerService
|
|
4034
|
+
*
|
|
4035
|
+
* RemoteTileLayerService
|
|
4036
|
+
*
|
|
4037
|
+
* RouteLayerService
|
|
4038
|
+
*/
|
|
4039
|
+
layerType?: LayerServiceType;
|
|
3901
4040
|
/** Data source name. */
|
|
3902
4041
|
ds?: string | null;
|
|
3903
4042
|
/** Additional data source connection. */
|
|
@@ -4057,14 +4196,6 @@ export type QueryLayerServiceInfoDc = ServiceInfoDc & {
|
|
|
4057
4196
|
layerDefinition: LayerDefinitionDc;
|
|
4058
4197
|
/** Provides data source type. */
|
|
4059
4198
|
dataSourceType?: string | null;
|
|
4060
|
-
/** Client data storage. Storage isn't used by server. */
|
|
4061
|
-
clientData?: any;
|
|
4062
|
-
/** Client style data storage. Storage isn't used by server. */
|
|
4063
|
-
clientStyle?: any;
|
|
4064
|
-
/** Card configuration. Storage isn't used by server. */
|
|
4065
|
-
cardConfiguration?: any;
|
|
4066
|
-
/** Edit configuration. Storage isn't used by server. */
|
|
4067
|
-
editConfiguration?: any;
|
|
4068
4199
|
};
|
|
4069
4200
|
export interface QueryTokenDc {
|
|
4070
4201
|
username?: string;
|
|
@@ -4264,6 +4395,26 @@ export declare enum RemoteTaskStatus {
|
|
|
4264
4395
|
* Configuration for the remote tile service.
|
|
4265
4396
|
*/
|
|
4266
4397
|
export type RemoteTileServiceConfigurationDc = ServiceConfigurationBaseDc & {
|
|
4398
|
+
/**
|
|
4399
|
+
* Specifies the available types of layer services that can be used within the application.
|
|
4400
|
+
*
|
|
4401
|
+
* QueryLayerService
|
|
4402
|
+
*
|
|
4403
|
+
* LinearLayerService
|
|
4404
|
+
*
|
|
4405
|
+
* MapboxLayerService
|
|
4406
|
+
*
|
|
4407
|
+
* PostgresTileLayerService
|
|
4408
|
+
*
|
|
4409
|
+
* ProxyLayerService
|
|
4410
|
+
*
|
|
4411
|
+
* PythonLayerService
|
|
4412
|
+
*
|
|
4413
|
+
* RemoteTileLayerService
|
|
4414
|
+
*
|
|
4415
|
+
* RouteLayerService
|
|
4416
|
+
*/
|
|
4417
|
+
layerType?: LayerServiceType;
|
|
4267
4418
|
/** Tile info structure. */
|
|
4268
4419
|
tileInfo?: TileInfoDc;
|
|
4269
4420
|
/**
|
|
@@ -4303,20 +4454,12 @@ export type RemoteTileServiceConfigurationDc = ServiceConfigurationBaseDc & {
|
|
|
4303
4454
|
export type RemoteTileServiceInfoDc = ServiceInfoDc & {
|
|
4304
4455
|
/** Tile info structure. */
|
|
4305
4456
|
tileInfo: TileInfoDc;
|
|
4306
|
-
/** Copyright text. */
|
|
4307
|
-
copyrightText?: string | null;
|
|
4308
4457
|
/** SourceBatch server address. */
|
|
4309
4458
|
sourceUrl?: string | null;
|
|
4310
4459
|
/** Mask for getting tiles in default form www.{s}.tiles.com/{z}/{x}/{y}.png. */
|
|
4311
4460
|
sourceUrlMask?: string | null;
|
|
4312
4461
|
/** SourceBatch servers, what can be placed at source url mask, instead {s}. */
|
|
4313
4462
|
sourceServers?: string[] | null;
|
|
4314
|
-
/** Client data storage. Storage isn't used by server. */
|
|
4315
|
-
clientData?: any;
|
|
4316
|
-
/** Card configuration. Storage isn't used by server. */
|
|
4317
|
-
cardConfiguration?: any;
|
|
4318
|
-
/** Edit configuration. Storage isn't used by server. */
|
|
4319
|
-
editConfiguration?: any;
|
|
4320
4463
|
};
|
|
4321
4464
|
/**
|
|
4322
4465
|
* Provides resource and its acl.
|
|
@@ -4645,6 +4788,26 @@ export interface RollbackResponse {
|
|
|
4645
4788
|
* Route service configuration Dc.
|
|
4646
4789
|
*/
|
|
4647
4790
|
export type RouteServiceConfigurationDc = ServiceConfigurationBaseDc & {
|
|
4791
|
+
/**
|
|
4792
|
+
* Specifies the available types of layer services that can be used within the application.
|
|
4793
|
+
*
|
|
4794
|
+
* QueryLayerService
|
|
4795
|
+
*
|
|
4796
|
+
* LinearLayerService
|
|
4797
|
+
*
|
|
4798
|
+
* MapboxLayerService
|
|
4799
|
+
*
|
|
4800
|
+
* PostgresTileLayerService
|
|
4801
|
+
*
|
|
4802
|
+
* ProxyLayerService
|
|
4803
|
+
*
|
|
4804
|
+
* PythonLayerService
|
|
4805
|
+
*
|
|
4806
|
+
* RemoteTileLayerService
|
|
4807
|
+
*
|
|
4808
|
+
* RouteLayerService
|
|
4809
|
+
*/
|
|
4810
|
+
layerType?: LayerServiceType;
|
|
4648
4811
|
/** Configuration of the attributes of the layer. */
|
|
4649
4812
|
attributesConfiguration: AttributesConfigurationDc | EqlAttributesConfigurationDc;
|
|
4650
4813
|
/** Client style data storage. Storage isn't used by server. */
|
|
@@ -4749,6 +4912,26 @@ export interface SearchedUserDc {
|
|
|
4749
4912
|
* Common fields for service configurations.
|
|
4750
4913
|
*/
|
|
4751
4914
|
export interface ServiceConfigurationBaseDc {
|
|
4915
|
+
/**
|
|
4916
|
+
* Specifies the available types of layer services that can be used within the application.
|
|
4917
|
+
*
|
|
4918
|
+
* QueryLayerService
|
|
4919
|
+
*
|
|
4920
|
+
* LinearLayerService
|
|
4921
|
+
*
|
|
4922
|
+
* MapboxLayerService
|
|
4923
|
+
*
|
|
4924
|
+
* PostgresTileLayerService
|
|
4925
|
+
*
|
|
4926
|
+
* ProxyLayerService
|
|
4927
|
+
*
|
|
4928
|
+
* PythonLayerService
|
|
4929
|
+
*
|
|
4930
|
+
* RemoteTileLayerService
|
|
4931
|
+
*
|
|
4932
|
+
* RouteLayerService
|
|
4933
|
+
*/
|
|
4934
|
+
layerType: LayerServiceType;
|
|
4752
4935
|
/**
|
|
4753
4936
|
* Name of the service.
|
|
4754
4937
|
* @minLength 1
|
|
@@ -4787,65 +4970,48 @@ export interface ServiceConfigurationBaseDc {
|
|
|
4787
4970
|
/**
|
|
4788
4971
|
* The `ServiceInfoDc` provides information about the service.
|
|
4789
4972
|
*/
|
|
4790
|
-
export type ServiceInfoDc =
|
|
4973
|
+
export type ServiceInfoDc = BaseResourceInfoDc & {
|
|
4791
4974
|
/**
|
|
4792
4975
|
* The type of the resource.
|
|
4793
4976
|
* @minLength 1
|
|
4794
4977
|
*/
|
|
4795
4978
|
type: string;
|
|
4979
|
+
/** The category of the service. */
|
|
4980
|
+
categories?: string[] | null;
|
|
4796
4981
|
/**
|
|
4797
|
-
* Filtering condition for the objects in the service. If no condition set or if no such property is available
|
|
4798
|
-
* for the given service type, null is returned.
|
|
4799
|
-
*/
|
|
4800
|
-
condition?: string | null;
|
|
4801
|
-
/**
|
|
4802
|
-
*
|
|
4803
|
-
*
|
|
4804
|
-
* Unknown
|
|
4805
|
-
*
|
|
4806
|
-
* Point
|
|
4807
|
-
*
|
|
4808
|
-
* LineString
|
|
4809
4982
|
*
|
|
4810
|
-
* Polygon
|
|
4811
|
-
*
|
|
4812
|
-
* MultiPoint
|
|
4813
4983
|
*
|
|
4814
|
-
*
|
|
4815
|
-
*
|
|
4816
|
-
* MultiPolygon
|
|
4817
|
-
*
|
|
4818
|
-
* GeometryCollection
|
|
4819
|
-
*
|
|
4820
|
-
* CircularString
|
|
4821
|
-
*
|
|
4822
|
-
* CompoundCurve
|
|
4823
|
-
*
|
|
4824
|
-
* CurvePolygon
|
|
4984
|
+
* none
|
|
4825
4985
|
*
|
|
4826
|
-
*
|
|
4986
|
+
* configure
|
|
4827
4987
|
*
|
|
4828
|
-
*
|
|
4988
|
+
* write
|
|
4829
4989
|
*
|
|
4830
|
-
*
|
|
4990
|
+
* read
|
|
4831
4991
|
*
|
|
4832
|
-
*
|
|
4992
|
+
* read,configure
|
|
4833
4993
|
*
|
|
4834
|
-
*
|
|
4994
|
+
* read,write
|
|
4835
4995
|
*
|
|
4836
|
-
*
|
|
4996
|
+
* read,write,configure
|
|
4837
4997
|
*/
|
|
4838
|
-
|
|
4998
|
+
permissions?: Permissions;
|
|
4839
4999
|
/**
|
|
4840
|
-
*
|
|
4841
|
-
*
|
|
4842
|
-
* @format int32
|
|
5000
|
+
* The date when resource was created.
|
|
5001
|
+
* @format date-time
|
|
4843
5002
|
*/
|
|
4844
|
-
|
|
4845
|
-
/**
|
|
4846
|
-
|
|
5003
|
+
createdDate?: string;
|
|
5004
|
+
/**
|
|
5005
|
+
* The date when resource was last modified.
|
|
5006
|
+
* @format date-time
|
|
5007
|
+
*/
|
|
5008
|
+
changedDate?: string | null;
|
|
5009
|
+
/** Resource id in resources catalog. */
|
|
5010
|
+
resourceId?: string | null;
|
|
4847
5011
|
/** Configuration of the service. */
|
|
4848
5012
|
configuration?: LinearServiceConfigurationDc | PbfServiceConfigurationDc | PostgresTileCatalogServiceConfigurationDc | ProxyServiceConfigurationDc | PythonServiceConfigurationDc | QueryLayerServiceConfigurationDc | RemoteTileServiceConfigurationDc | RouteServiceConfigurationDc | null;
|
|
5013
|
+
/** Access control list for a security object. */
|
|
5014
|
+
acl?: AccessControlListDc;
|
|
4849
5015
|
};
|
|
4850
5016
|
/**
|
|
4851
5017
|
* An entry in the service list response.
|
|
@@ -5821,14 +5987,6 @@ export type TileCatalogServiceInfoDc = ServiceInfoDc & {
|
|
|
5821
5987
|
layerDefinition: LayerDefinitionDc;
|
|
5822
5988
|
/** Tile info structure. */
|
|
5823
5989
|
tileInfo: TileInfoDc;
|
|
5824
|
-
/** Copyright text. */
|
|
5825
|
-
copyrightText?: string | null;
|
|
5826
|
-
/** Client data storage. Storage isn't used by server. */
|
|
5827
|
-
clientData?: any;
|
|
5828
|
-
/** Card configuration. Storage isn't used by server. */
|
|
5829
|
-
cardConfiguration?: any;
|
|
5830
|
-
/** Edit configuration. Storage isn't used by server. */
|
|
5831
|
-
editConfiguration?: any;
|
|
5832
5990
|
};
|
|
5833
5991
|
/**
|
|
5834
5992
|
* Configuration of a table for tile catalog layer.
|
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
|