@evergis/api 4.1.56-alpha.3 → 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.
@@ -3852,16 +3852,6 @@ export type ProxyServiceInfoDc = ServiceInfoDc & {
3852
3852
  layers: string[];
3853
3853
  /** Data contract for layer legend. */
3854
3854
  legend?: ProxyLayerLegendDc;
3855
- /** Copyright text. */
3856
- copyrightText?: string | null;
3857
- /** Client data storage. Storage isn't used by server. */
3858
- clientData?: any;
3859
- /** Client style data storage. Storage isn't used by server. */
3860
- clientStyle?: any;
3861
- /** Card configuration. Storage isn't used by server. */
3862
- cardConfiguration?: any;
3863
- /** Edit configuration. Storage isn't used by server. */
3864
- editConfiguration?: any;
3865
3855
  };
3866
3856
  /**
3867
3857
  * Represents the information required to publish a layer service, including its metadata, configuration, and
@@ -4206,14 +4196,6 @@ export type QueryLayerServiceInfoDc = ServiceInfoDc & {
4206
4196
  layerDefinition: LayerDefinitionDc;
4207
4197
  /** Provides data source type. */
4208
4198
  dataSourceType?: string | null;
4209
- /** Client data storage. Storage isn't used by server. */
4210
- clientData?: any;
4211
- /** Client style data storage. Storage isn't used by server. */
4212
- clientStyle?: any;
4213
- /** Card configuration. Storage isn't used by server. */
4214
- cardConfiguration?: any;
4215
- /** Edit configuration. Storage isn't used by server. */
4216
- editConfiguration?: any;
4217
4199
  };
4218
4200
  export interface QueryTokenDc {
4219
4201
  username?: string;
@@ -4472,20 +4454,12 @@ export type RemoteTileServiceConfigurationDc = ServiceConfigurationBaseDc & {
4472
4454
  export type RemoteTileServiceInfoDc = ServiceInfoDc & {
4473
4455
  /** Tile info structure. */
4474
4456
  tileInfo: TileInfoDc;
4475
- /** Copyright text. */
4476
- copyrightText?: string | null;
4477
4457
  /** SourceBatch server address. */
4478
4458
  sourceUrl?: string | null;
4479
4459
  /** Mask for getting tiles in default form www.{s}.tiles.com/{z}/{x}/{y}.png. */
4480
4460
  sourceUrlMask?: string | null;
4481
4461
  /** SourceBatch servers, what can be placed at source url mask, instead {s}. */
4482
4462
  sourceServers?: string[] | null;
4483
- /** Client data storage. Storage isn't used by server. */
4484
- clientData?: any;
4485
- /** Card configuration. Storage isn't used by server. */
4486
- cardConfiguration?: any;
4487
- /** Edit configuration. Storage isn't used by server. */
4488
- editConfiguration?: any;
4489
4463
  };
4490
4464
  /**
4491
4465
  * Provides resource and its acl.
@@ -4996,65 +4970,48 @@ export interface ServiceConfigurationBaseDc {
4996
4970
  /**
4997
4971
  * The `ServiceInfoDc` provides information about the service.
4998
4972
  */
4999
- export type ServiceInfoDc = ResourceInfoDc & {
4973
+ export type ServiceInfoDc = BaseResourceInfoDc & {
5000
4974
  /**
5001
4975
  * The type of the resource.
5002
4976
  * @minLength 1
5003
4977
  */
5004
4978
  type: string;
4979
+ /** The category of the service. */
4980
+ categories?: string[] | null;
5005
4981
  /**
5006
- * Filtering condition for the objects in the service. If no condition set or if no such property is available
5007
- * for the given service type, null is returned.
5008
- */
5009
- condition?: string | null;
5010
- /**
5011
- *
5012
- *
5013
- * Unknown
5014
- *
5015
- * Point
5016
- *
5017
- * LineString
5018
- *
5019
- * Polygon
5020
- *
5021
- * MultiPoint
5022
- *
5023
- * MultiLineString
5024
4982
  *
5025
- * MultiPolygon
5026
- *
5027
- * GeometryCollection
5028
4983
  *
5029
- * CircularString
5030
- *
5031
- * CompoundCurve
5032
- *
5033
- * CurvePolygon
4984
+ * none
5034
4985
  *
5035
- * MultiCurve
4986
+ * configure
5036
4987
  *
5037
- * MultiSurface
4988
+ * write
5038
4989
  *
5039
- * Curve
4990
+ * read
5040
4991
  *
5041
- * Surface
4992
+ * read,configure
5042
4993
  *
5043
- * PolyhedralSurface
4994
+ * read,write
5044
4995
  *
5045
- * TIN
4996
+ * read,write,configure
4997
+ */
4998
+ permissions?: Permissions;
4999
+ /**
5000
+ * The date when resource was created.
5001
+ * @format date-time
5046
5002
  */
5047
- geometryType: OgcGeometryType;
5003
+ createdDate?: string;
5048
5004
  /**
5049
- * Number of objects in the layer. If the count cannot be calculated or the layer does not contain objects,
5050
- * 0 is returned.
5051
- * @format int32
5005
+ * The date when resource was last modified.
5006
+ * @format date-time
5052
5007
  */
5053
- objectCount?: number;
5054
- /** The category of the service. */
5055
- categories?: string[] | null;
5008
+ changedDate?: string | null;
5009
+ /** Resource id in resources catalog. */
5010
+ resourceId?: string | null;
5056
5011
  /** Configuration of the service. */
5057
5012
  configuration?: LinearServiceConfigurationDc | PbfServiceConfigurationDc | PostgresTileCatalogServiceConfigurationDc | ProxyServiceConfigurationDc | PythonServiceConfigurationDc | QueryLayerServiceConfigurationDc | RemoteTileServiceConfigurationDc | RouteServiceConfigurationDc | null;
5013
+ /** Access control list for a security object. */
5014
+ acl?: AccessControlListDc;
5058
5015
  };
5059
5016
  /**
5060
5017
  * An entry in the service list response.
@@ -6030,14 +5987,6 @@ export type TileCatalogServiceInfoDc = ServiceInfoDc & {
6030
5987
  layerDefinition: LayerDefinitionDc;
6031
5988
  /** Tile info structure. */
6032
5989
  tileInfo: TileInfoDc;
6033
- /** Copyright text. */
6034
- copyrightText?: string | null;
6035
- /** Client data storage. Storage isn't used by server. */
6036
- clientData?: any;
6037
- /** Card configuration. Storage isn't used by server. */
6038
- cardConfiguration?: any;
6039
- /** Edit configuration. Storage isn't used by server. */
6040
- editConfiguration?: any;
6041
5990
  };
6042
5991
  /**
6043
5992
  * Configuration of a table for tile catalog layer.