@evergis/api 4.1.24 → 4.1.27

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.
@@ -1420,6 +1420,10 @@ export interface CreateUserDc {
1420
1420
  * Create view from query layer data contract.
1421
1421
  */
1422
1422
  export interface CreateViewFromQueryDc {
1423
+ /** Add gid column. */
1424
+ addGidColumn?: boolean;
1425
+ /** Gid column name. */
1426
+ gidColumnName?: string;
1423
1427
  /** Is view materialized. */
1424
1428
  isMaterialized?: boolean;
1425
1429
  /** Recreate view if exists. */
@@ -1435,6 +1439,10 @@ export interface CreateViewFromQueryDc {
1435
1439
  * Create view from query layer data contract.
1436
1440
  */
1437
1441
  export interface CreateViewFromQueryLayerDc {
1442
+ /** Add gid column. */
1443
+ addGidColumn?: boolean;
1444
+ /** Gid column name. */
1445
+ gidColumnName?: string;
1438
1446
  /** Is view materialized. */
1439
1447
  isMaterialized?: boolean;
1440
1448
  /** Recreate view if exists. */
@@ -2001,7 +2009,7 @@ export interface ExternalLayerInfoDc {
2001
2009
  /**
2002
2010
  * The `FailedServiceInfoDc` describes Everpoint.Sdk.Layers.Abstractions.Models.FailedServiceInfo data contact.
2003
2011
  */
2004
- export interface FailedServiceInfoDc {
2012
+ export type FailedServiceInfoDc = ServiceInfoDc & {
2005
2013
  /**
2006
2014
  *
2007
2015
  *
@@ -2056,118 +2064,7 @@ export interface FailedServiceInfoDc {
2056
2064
  * InvalidTableReferenceConfiguration
2057
2065
  */
2058
2066
  errorType?: ConfigurationErrorEnum;
2059
- /**
2060
- * The type of the resource.
2061
- * @minLength 1
2062
- */
2063
- type: string;
2064
- /**
2065
- * Minimum resolution that this service will be rendered on. If no resolution limits are set for the top-level
2066
- * style of the service, or if no such property is available for this type of the service, 0 is returned.
2067
- * @format double
2068
- */
2069
- minResolution?: number;
2070
- /**
2071
- * Maximum resolution that this service will be rendered on. If no resolution limits are set for the top-level
2072
- * style of the service, or if no such property is available for this type of the service, 0 is returned.
2073
- * @format double
2074
- */
2075
- maxResolution?: number;
2076
- /**
2077
- * Filtering condition for the objects in the service. If no condition set or if no such property is available
2078
- * for the given service type, null is returned.
2079
- */
2080
- condition?: string;
2081
- /**
2082
- *
2083
- *
2084
- * unknown
2085
- *
2086
- * point
2087
- *
2088
- * polyline
2089
- *
2090
- * polygon
2091
- *
2092
- * envelope
2093
- *
2094
- * multipoint
2095
- *
2096
- * line
2097
- *
2098
- * ring
2099
- *
2100
- * multipolygon
2101
- *
2102
- * collection
2103
- */
2104
- geometryType: GeometryType;
2105
- /**
2106
- * Number of objects in the layer. If the count cannot be calculated or the layer does not contain objects,
2107
- * 0 is returned.
2108
- * @format int32
2109
- */
2110
- objectCount?: number;
2111
- /** The category of the service. */
2112
- categories?: string[];
2113
- /** Configuration of the service. */
2114
- configuration?: LinearServiceConfigurationDc | PbfServiceConfigurationDc | PostgresTileCatalogServiceConfigurationDc | ProxyServiceConfigurationDc | PythonServiceConfigurationDc | QueryLayerServiceConfigurationDc | RemoteTileServiceConfigurationDc | RouteServiceConfigurationDc;
2115
- /**
2116
- * Name of the resource including its namespaces (names of the service managers that contain this service).
2117
- * @minLength 1
2118
- */
2119
- name: string;
2120
- /** Resource alias. */
2121
- alias?: string;
2122
- /** Resource owner. */
2123
- owner?: string;
2124
- /** Resource description. */
2125
- description?: string;
2126
- /**
2127
- * The date when resource was created.
2128
- * @format date-time
2129
- */
2130
- createdDate?: string;
2131
- /**
2132
- * The date when resource was last modified.
2133
- * @format date-time
2134
- */
2135
- changedDate?: string;
2136
- /**
2137
- *
2138
- *
2139
- * none
2140
- *
2141
- * configure
2142
- *
2143
- * write
2144
- *
2145
- * read
2146
- *
2147
- * read,configure
2148
- *
2149
- * read,write
2150
- *
2151
- * read,write,configure
2152
- */
2153
- permissions?: Permissions;
2154
- /** Access control list for a security object. */
2155
- acl?: AccessControlListDc;
2156
- /**
2157
- * Base64 encoded image - icon of the resource. Usually shown next to the resource name in lists and legends.
2158
- * @minLength 0
2159
- * @maxLength 102400
2160
- */
2161
- icon?: string;
2162
- /** Is set true resource is not visible in catalog. Can be changed only by owner or user with admin access. */
2163
- invisibleInCatalog?: boolean;
2164
- /** Parent id in resources catalog. */
2165
- parentId?: string;
2166
- /** Resource id in resources catalog. */
2167
- resourceId?: string;
2168
- /** Resource tags. */
2169
- tags?: string[];
2170
- }
2067
+ };
2171
2068
  /**
2172
2069
  * Feature object definition.
2173
2070
  */
@@ -2184,131 +2081,22 @@ export interface FeatureDc {
2184
2081
  /**
2185
2082
  * Service info for a feature layer service.
2186
2083
  */
2187
- export interface FeatureLayerServiceInfoDc {
2084
+ export type FeatureLayerServiceInfoDc = ServiceInfoDc & {
2188
2085
  /** Information about the layer attributes and their configuration. */
2189
2086
  layerDefinition: LayerDefinitionDc;
2190
2087
  /** Provides data source type. */
2191
- dataSourceType?: string;
2088
+ dataSourceType?: string | null;
2192
2089
  /** Copyright text. */
2193
- copyrightText?: string;
2090
+ copyrightText?: string | null;
2194
2091
  /** Client data storage. Storage isn't used by server. */
2195
2092
  clientData?: any;
2196
2093
  /** Client style data storage. Storage isn't used by server. */
2197
2094
  clientStyle?: any;
2198
2095
  /** Card configuration. Storage isn't used by server. */
2199
2096
  cardConfiguration?: any;
2200
- /**
2201
- * The type of the resource.
2202
- * @minLength 1
2203
- */
2204
- type: string;
2205
- /**
2206
- * Minimum resolution that this service will be rendered on. If no resolution limits are set for the top-level
2207
- * style of the service, or if no such property is available for this type of the service, 0 is returned.
2208
- * @format double
2209
- */
2210
- minResolution?: number;
2211
- /**
2212
- * Maximum resolution that this service will be rendered on. If no resolution limits are set for the top-level
2213
- * style of the service, or if no such property is available for this type of the service, 0 is returned.
2214
- * @format double
2215
- */
2216
- maxResolution?: number;
2217
- /**
2218
- * Filtering condition for the objects in the service. If no condition set or if no such property is available
2219
- * for the given service type, null is returned.
2220
- */
2221
- condition?: string;
2222
- /**
2223
- *
2224
- *
2225
- * unknown
2226
- *
2227
- * point
2228
- *
2229
- * polyline
2230
- *
2231
- * polygon
2232
- *
2233
- * envelope
2234
- *
2235
- * multipoint
2236
- *
2237
- * line
2238
- *
2239
- * ring
2240
- *
2241
- * multipolygon
2242
- *
2243
- * collection
2244
- */
2245
- geometryType: GeometryType;
2246
- /**
2247
- * Number of objects in the layer. If the count cannot be calculated or the layer does not contain objects,
2248
- * 0 is returned.
2249
- * @format int32
2250
- */
2251
- objectCount?: number;
2252
- /** The category of the service. */
2253
- categories?: string[];
2254
- /** Configuration of the service. */
2255
- configuration?: LinearServiceConfigurationDc | PbfServiceConfigurationDc | PostgresTileCatalogServiceConfigurationDc | ProxyServiceConfigurationDc | PythonServiceConfigurationDc | QueryLayerServiceConfigurationDc | RemoteTileServiceConfigurationDc | RouteServiceConfigurationDc;
2256
- /**
2257
- * Name of the resource including its namespaces (names of the service managers that contain this service).
2258
- * @minLength 1
2259
- */
2260
- name: string;
2261
- /** Resource alias. */
2262
- alias?: string;
2263
- /** Resource owner. */
2264
- owner?: string;
2265
- /** Resource description. */
2266
- description?: string;
2267
- /**
2268
- * The date when resource was created.
2269
- * @format date-time
2270
- */
2271
- createdDate?: string;
2272
- /**
2273
- * The date when resource was last modified.
2274
- * @format date-time
2275
- */
2276
- changedDate?: string;
2277
- /**
2278
- *
2279
- *
2280
- * none
2281
- *
2282
- * configure
2283
- *
2284
- * write
2285
- *
2286
- * read
2287
- *
2288
- * read,configure
2289
- *
2290
- * read,write
2291
- *
2292
- * read,write,configure
2293
- */
2294
- permissions?: Permissions;
2295
- /** Access control list for a security object. */
2296
- acl?: AccessControlListDc;
2297
- /**
2298
- * Base64 encoded image - icon of the resource. Usually shown next to the resource name in lists and legends.
2299
- * @minLength 0
2300
- * @maxLength 102400
2301
- */
2302
- icon?: string;
2303
- /** Is set true resource is not visible in catalog. Can be changed only by owner or user with admin access. */
2304
- invisibleInCatalog?: boolean;
2305
- /** Parent id in resources catalog. */
2306
- parentId?: string;
2307
- /** Resource id in resources catalog. */
2308
- resourceId?: string;
2309
- /** Resource tags. */
2310
- tags?: string[];
2311
- }
2097
+ /** Edit configuration. Storage isn't used by server. */
2098
+ editConfiguration?: any;
2099
+ };
2312
2100
  /**
2313
2101
  * The result of uploading a file.
2314
2102
  */
@@ -3646,6 +3434,8 @@ export interface ProjectConfigurationDc {
3646
3434
  dashboardConfiguration?: any;
3647
3435
  /** Developer configuration. */
3648
3436
  devConfiguration?: any;
3437
+ /** Edit configuration. Storage isn't used by server. */
3438
+ editConfiguration?: any;
3649
3439
  /** Project information. Storage isn't used by server. */
3650
3440
  projectInfo?: any;
3651
3441
  /** Project content items configurations. */
@@ -3811,7 +3601,7 @@ export type ProxyServiceConfigurationDc = ServiceConfigurationBaseDc & {
3811
3601
  /**
3812
3602
  * Service info for a Proxy service.
3813
3603
  */
3814
- export interface ProxyServiceInfoDc {
3604
+ export type ProxyServiceInfoDc = ServiceInfoDc & {
3815
3605
  /** Information about the layer attributes and their configuration. */
3816
3606
  layerDefinition?: LayerDefinitionDc;
3817
3607
  /**
@@ -3829,125 +3619,16 @@ export interface ProxyServiceInfoDc {
3829
3619
  /** Data contract for layer legend. */
3830
3620
  legend?: ProxyLayerLegendDc;
3831
3621
  /** Copyright text. */
3832
- copyrightText?: string;
3622
+ copyrightText?: string | null;
3833
3623
  /** Client data storage. Storage isn't used by server. */
3834
3624
  clientData?: any;
3835
3625
  /** Client style data storage. Storage isn't used by server. */
3836
3626
  clientStyle?: any;
3837
3627
  /** Card configuration. Storage isn't used by server. */
3838
3628
  cardConfiguration?: any;
3839
- /**
3840
- * The type of the resource.
3841
- * @minLength 1
3842
- */
3843
- type: string;
3844
- /**
3845
- * Minimum resolution that this service will be rendered on. If no resolution limits are set for the top-level
3846
- * style of the service, or if no such property is available for this type of the service, 0 is returned.
3847
- * @format double
3848
- */
3849
- minResolution?: number;
3850
- /**
3851
- * Maximum resolution that this service will be rendered on. If no resolution limits are set for the top-level
3852
- * style of the service, or if no such property is available for this type of the service, 0 is returned.
3853
- * @format double
3854
- */
3855
- maxResolution?: number;
3856
- /**
3857
- * Filtering condition for the objects in the service. If no condition set or if no such property is available
3858
- * for the given service type, null is returned.
3859
- */
3860
- condition?: string;
3861
- /**
3862
- *
3863
- *
3864
- * unknown
3865
- *
3866
- * point
3867
- *
3868
- * polyline
3869
- *
3870
- * polygon
3871
- *
3872
- * envelope
3873
- *
3874
- * multipoint
3875
- *
3876
- * line
3877
- *
3878
- * ring
3879
- *
3880
- * multipolygon
3881
- *
3882
- * collection
3883
- */
3884
- geometryType: GeometryType;
3885
- /**
3886
- * Number of objects in the layer. If the count cannot be calculated or the layer does not contain objects,
3887
- * 0 is returned.
3888
- * @format int32
3889
- */
3890
- objectCount?: number;
3891
- /** The category of the service. */
3892
- categories?: string[];
3893
- /** Configuration of the service. */
3894
- configuration?: LinearServiceConfigurationDc | PbfServiceConfigurationDc | PostgresTileCatalogServiceConfigurationDc | ProxyServiceConfigurationDc | PythonServiceConfigurationDc | QueryLayerServiceConfigurationDc | RemoteTileServiceConfigurationDc | RouteServiceConfigurationDc;
3895
- /**
3896
- * Name of the resource including its namespaces (names of the service managers that contain this service).
3897
- * @minLength 1
3898
- */
3899
- name: string;
3900
- /** Resource alias. */
3901
- alias?: string;
3902
- /** Resource owner. */
3903
- owner?: string;
3904
- /** Resource description. */
3905
- description?: string;
3906
- /**
3907
- * The date when resource was created.
3908
- * @format date-time
3909
- */
3910
- createdDate?: string;
3911
- /**
3912
- * The date when resource was last modified.
3913
- * @format date-time
3914
- */
3915
- changedDate?: string;
3916
- /**
3917
- *
3918
- *
3919
- * none
3920
- *
3921
- * configure
3922
- *
3923
- * write
3924
- *
3925
- * read
3926
- *
3927
- * read,configure
3928
- *
3929
- * read,write
3930
- *
3931
- * read,write,configure
3932
- */
3933
- permissions?: Permissions;
3934
- /** Access control list for a security object. */
3935
- acl?: AccessControlListDc;
3936
- /**
3937
- * Base64 encoded image - icon of the resource. Usually shown next to the resource name in lists and legends.
3938
- * @minLength 0
3939
- * @maxLength 102400
3940
- */
3941
- icon?: string;
3942
- /** Is set true resource is not visible in catalog. Can be changed only by owner or user with admin access. */
3943
- invisibleInCatalog?: boolean;
3944
- /** Parent id in resources catalog. */
3945
- parentId?: string;
3946
- /** Resource id in resources catalog. */
3947
- resourceId?: string;
3948
- /** Resource tags. */
3949
- tags?: string[];
3950
- }
3629
+ /** Edit configuration. Storage isn't used by server. */
3630
+ editConfiguration?: any;
3631
+ };
3951
3632
  /**
3952
3633
  * Configuration for the python service.
3953
3634
  */
@@ -4222,131 +3903,22 @@ export interface QueryLayerServiceEqlParameterQueryValueConfigurationDc {
4222
3903
  /**
4223
3904
  * Service info for a feature layer service.
4224
3905
  */
4225
- export interface QueryLayerServiceInfoDc {
3906
+ export type QueryLayerServiceInfoDc = ServiceInfoDc & {
4226
3907
  /** Information about the layer attributes and their configuration. */
4227
3908
  layerDefinition: LayerDefinitionDc;
4228
3909
  /** Provides data source type. */
4229
- dataSourceType?: string;
3910
+ dataSourceType?: string | null;
4230
3911
  /** Copyright text. */
4231
- copyrightText?: string;
3912
+ copyrightText?: string | null;
4232
3913
  /** Client data storage. Storage isn't used by server. */
4233
3914
  clientData?: any;
4234
3915
  /** Client style data storage. Storage isn't used by server. */
4235
3916
  clientStyle?: any;
4236
3917
  /** Card configuration. Storage isn't used by server. */
4237
3918
  cardConfiguration?: any;
4238
- /**
4239
- * The type of the resource.
4240
- * @minLength 1
4241
- */
4242
- type: string;
4243
- /**
4244
- * Minimum resolution that this service will be rendered on. If no resolution limits are set for the top-level
4245
- * style of the service, or if no such property is available for this type of the service, 0 is returned.
4246
- * @format double
4247
- */
4248
- minResolution?: number;
4249
- /**
4250
- * Maximum resolution that this service will be rendered on. If no resolution limits are set for the top-level
4251
- * style of the service, or if no such property is available for this type of the service, 0 is returned.
4252
- * @format double
4253
- */
4254
- maxResolution?: number;
4255
- /**
4256
- * Filtering condition for the objects in the service. If no condition set or if no such property is available
4257
- * for the given service type, null is returned.
4258
- */
4259
- condition?: string;
4260
- /**
4261
- *
4262
- *
4263
- * unknown
4264
- *
4265
- * point
4266
- *
4267
- * polyline
4268
- *
4269
- * polygon
4270
- *
4271
- * envelope
4272
- *
4273
- * multipoint
4274
- *
4275
- * line
4276
- *
4277
- * ring
4278
- *
4279
- * multipolygon
4280
- *
4281
- * collection
4282
- */
4283
- geometryType: GeometryType;
4284
- /**
4285
- * Number of objects in the layer. If the count cannot be calculated or the layer does not contain objects,
4286
- * 0 is returned.
4287
- * @format int32
4288
- */
4289
- objectCount?: number;
4290
- /** The category of the service. */
4291
- categories?: string[];
4292
- /** Configuration of the service. */
4293
- configuration?: LinearServiceConfigurationDc | PbfServiceConfigurationDc | PostgresTileCatalogServiceConfigurationDc | ProxyServiceConfigurationDc | PythonServiceConfigurationDc | QueryLayerServiceConfigurationDc | RemoteTileServiceConfigurationDc | RouteServiceConfigurationDc;
4294
- /**
4295
- * Name of the resource including its namespaces (names of the service managers that contain this service).
4296
- * @minLength 1
4297
- */
4298
- name: string;
4299
- /** Resource alias. */
4300
- alias?: string;
4301
- /** Resource owner. */
4302
- owner?: string;
4303
- /** Resource description. */
4304
- description?: string;
4305
- /**
4306
- * The date when resource was created.
4307
- * @format date-time
4308
- */
4309
- createdDate?: string;
4310
- /**
4311
- * The date when resource was last modified.
4312
- * @format date-time
4313
- */
4314
- changedDate?: string;
4315
- /**
4316
- *
4317
- *
4318
- * none
4319
- *
4320
- * configure
4321
- *
4322
- * write
4323
- *
4324
- * read
4325
- *
4326
- * read,configure
4327
- *
4328
- * read,write
4329
- *
4330
- * read,write,configure
4331
- */
4332
- permissions?: Permissions;
4333
- /** Access control list for a security object. */
4334
- acl?: AccessControlListDc;
4335
- /**
4336
- * Base64 encoded image - icon of the resource. Usually shown next to the resource name in lists and legends.
4337
- * @minLength 0
4338
- * @maxLength 102400
4339
- */
4340
- icon?: string;
4341
- /** Is set true resource is not visible in catalog. Can be changed only by owner or user with admin access. */
4342
- invisibleInCatalog?: boolean;
4343
- /** Parent id in resources catalog. */
4344
- parentId?: string;
4345
- /** Resource id in resources catalog. */
4346
- resourceId?: string;
4347
- /** Resource tags. */
4348
- tags?: string[];
4349
- }
3919
+ /** Edit configuration. Storage isn't used by server. */
3920
+ editConfiguration?: any;
3921
+ };
4350
3922
  export interface QueryTokenDc {
4351
3923
  username?: string;
4352
3924
  token?: string;
@@ -4581,133 +4153,24 @@ export type RemoteTileServiceConfigurationDc = ServiceConfigurationBaseDc & {
4581
4153
  /**
4582
4154
  * Service info for a tile service.
4583
4155
  */
4584
- export interface RemoteTileServiceInfoDc {
4156
+ export type RemoteTileServiceInfoDc = ServiceInfoDc & {
4585
4157
  /** Tile info structure. */
4586
4158
  tileInfo: TileInfoDc;
4587
4159
  /** Copyright text. */
4588
- copyrightText?: string;
4160
+ copyrightText?: string | null;
4589
4161
  /** SourceBatch server address. */
4590
- sourceUrl?: string;
4162
+ sourceUrl?: string | null;
4591
4163
  /** Mask for getting tiles in default form www.{s}.tiles.com/{z}/{x}/{y}.png. */
4592
- sourceUrlMask?: string;
4164
+ sourceUrlMask?: string | null;
4593
4165
  /** SourceBatch servers, what can be placed at source url mask, instead {s}. */
4594
- sourceServers?: string[];
4166
+ sourceServers?: string[] | null;
4595
4167
  /** Client data storage. Storage isn't used by server. */
4596
4168
  clientData?: any;
4597
4169
  /** Card configuration. Storage isn't used by server. */
4598
4170
  cardConfiguration?: any;
4599
- /**
4600
- * The type of the resource.
4601
- * @minLength 1
4602
- */
4603
- type: string;
4604
- /**
4605
- * Minimum resolution that this service will be rendered on. If no resolution limits are set for the top-level
4606
- * style of the service, or if no such property is available for this type of the service, 0 is returned.
4607
- * @format double
4608
- */
4609
- minResolution?: number;
4610
- /**
4611
- * Maximum resolution that this service will be rendered on. If no resolution limits are set for the top-level
4612
- * style of the service, or if no such property is available for this type of the service, 0 is returned.
4613
- * @format double
4614
- */
4615
- maxResolution?: number;
4616
- /**
4617
- * Filtering condition for the objects in the service. If no condition set or if no such property is available
4618
- * for the given service type, null is returned.
4619
- */
4620
- condition?: string;
4621
- /**
4622
- *
4623
- *
4624
- * unknown
4625
- *
4626
- * point
4627
- *
4628
- * polyline
4629
- *
4630
- * polygon
4631
- *
4632
- * envelope
4633
- *
4634
- * multipoint
4635
- *
4636
- * line
4637
- *
4638
- * ring
4639
- *
4640
- * multipolygon
4641
- *
4642
- * collection
4643
- */
4644
- geometryType: GeometryType;
4645
- /**
4646
- * Number of objects in the layer. If the count cannot be calculated or the layer does not contain objects,
4647
- * 0 is returned.
4648
- * @format int32
4649
- */
4650
- objectCount?: number;
4651
- /** The category of the service. */
4652
- categories?: string[];
4653
- /** Configuration of the service. */
4654
- configuration?: LinearServiceConfigurationDc | PbfServiceConfigurationDc | PostgresTileCatalogServiceConfigurationDc | ProxyServiceConfigurationDc | PythonServiceConfigurationDc | QueryLayerServiceConfigurationDc | RemoteTileServiceConfigurationDc | RouteServiceConfigurationDc;
4655
- /**
4656
- * Name of the resource including its namespaces (names of the service managers that contain this service).
4657
- * @minLength 1
4658
- */
4659
- name: string;
4660
- /** Resource alias. */
4661
- alias?: string;
4662
- /** Resource owner. */
4663
- owner?: string;
4664
- /** Resource description. */
4665
- description?: string;
4666
- /**
4667
- * The date when resource was created.
4668
- * @format date-time
4669
- */
4670
- createdDate?: string;
4671
- /**
4672
- * The date when resource was last modified.
4673
- * @format date-time
4674
- */
4675
- changedDate?: string;
4676
- /**
4677
- *
4678
- *
4679
- * none
4680
- *
4681
- * configure
4682
- *
4683
- * write
4684
- *
4685
- * read
4686
- *
4687
- * read,configure
4688
- *
4689
- * read,write
4690
- *
4691
- * read,write,configure
4692
- */
4693
- permissions?: Permissions;
4694
- /** Access control list for a security object. */
4695
- acl?: AccessControlListDc;
4696
- /**
4697
- * Base64 encoded image - icon of the resource. Usually shown next to the resource name in lists and legends.
4698
- * @minLength 0
4699
- * @maxLength 102400
4700
- */
4701
- icon?: string;
4702
- /** Is set true resource is not visible in catalog. Can be changed only by owner or user with admin access. */
4703
- invisibleInCatalog?: boolean;
4704
- /** Parent id in resources catalog. */
4705
- parentId?: string;
4706
- /** Resource id in resources catalog. */
4707
- resourceId?: string;
4708
- /** Resource tags. */
4709
- tags?: string[];
4710
- }
4171
+ /** Edit configuration. Storage isn't used by server. */
4172
+ editConfiguration?: any;
4173
+ };
4711
4174
  /**
4712
4175
  * Provides resource and its acl.
4713
4176
  */
@@ -5094,6 +4557,8 @@ export interface ServiceConfigurationBaseDc {
5094
4557
  clientData?: any;
5095
4558
  /** Card configuration. Storage isn't used by server. */
5096
4559
  cardConfiguration?: any;
4560
+ /** Edit configuration. Storage isn't used by server. */
4561
+ editConfiguration?: any;
5097
4562
  /** Parent resource id. */
5098
4563
  parentId?: string;
5099
4564
  }
@@ -5587,21 +5052,76 @@ export interface TableConfigurationBaseDc {
5587
5052
  /**
5588
5053
  * Table description.
5589
5054
  */
5590
- export type TableInfoDc = ResourceInfoDc & {
5055
+ export interface TableInfoDc {
5591
5056
  /** System table name. */
5592
- systemName?: string | null;
5057
+ systemName?: string;
5593
5058
  /**
5594
5059
  * Row count.
5595
5060
  * @format int64
5596
5061
  */
5597
5062
  rowCount?: number;
5598
5063
  /** The geometry of the table. */
5599
- geometries?: GeometryType[] | null;
5064
+ geometries?: GeometryType[];
5600
5065
  /** The type of the table. */
5601
- type?: string | null;
5066
+ type?: string;
5602
5067
  /** Configuration of the table. */
5603
- configuration?: DefaultTableConfigurationDc | MaterializedViewConfigurationDc | RouteTableConfigurationDc | TileCatalogTableConfigurationDc | ViewConfigurationDc | null;
5604
- };
5068
+ configuration?: DefaultTableConfigurationDc | MaterializedViewConfigurationDc | RouteTableConfigurationDc | TileCatalogTableConfigurationDc | ViewConfigurationDc;
5069
+ /**
5070
+ * Name of the resource including its namespaces (names of the service managers that contain this service).
5071
+ * @minLength 1
5072
+ */
5073
+ name: string;
5074
+ /** Resource alias. */
5075
+ alias?: string;
5076
+ /** Resource owner. */
5077
+ owner?: string;
5078
+ /** Resource description. */
5079
+ description?: string;
5080
+ /**
5081
+ * The date when resource was created.
5082
+ * @format date-time
5083
+ */
5084
+ createdDate?: string;
5085
+ /**
5086
+ * The date when resource was last modified.
5087
+ * @format date-time
5088
+ */
5089
+ changedDate?: string;
5090
+ /**
5091
+ *
5092
+ *
5093
+ * none
5094
+ *
5095
+ * configure
5096
+ *
5097
+ * write
5098
+ *
5099
+ * read
5100
+ *
5101
+ * read,configure
5102
+ *
5103
+ * read,write
5104
+ *
5105
+ * read,write,configure
5106
+ */
5107
+ permissions?: Permissions;
5108
+ /** Access control list for a security object. */
5109
+ acl?: AccessControlListDc;
5110
+ /**
5111
+ * Base64 encoded image - icon of the resource. Usually shown next to the resource name in lists and legends.
5112
+ * @minLength 0
5113
+ * @maxLength 102400
5114
+ */
5115
+ icon?: string;
5116
+ /** Is set true resource is not visible in catalog. Can be changed only by owner or user with admin access. */
5117
+ invisibleInCatalog?: boolean;
5118
+ /** Parent id in resources catalog. */
5119
+ parentId?: string;
5120
+ /** Resource id in resources catalog. */
5121
+ resourceId?: string;
5122
+ /** Resource tags. */
5123
+ tags?: string[];
5124
+ }
5605
5125
  /**
5606
5126
  * Tags filter.
5607
5127
  */
@@ -5848,6 +5368,8 @@ export interface TaskPrototypeDto {
5848
5368
  id?: string;
5849
5369
  /** User. */
5850
5370
  user?: string;
5371
+ /** Description. */
5372
+ description?: string;
5851
5373
  /**
5852
5374
  * CreatedAt.
5853
5375
  * @format date-time
@@ -6028,129 +5550,20 @@ export interface TestConnectionInfoDc {
6028
5550
  /**
6029
5551
  * Service info for a tile catalog layer service.
6030
5552
  */
6031
- export interface TileCatalogServiceInfoDc {
5553
+ export type TileCatalogServiceInfoDc = ServiceInfoDc & {
6032
5554
  /** Information about the layer attributes and their configuration. */
6033
5555
  layerDefinition: LayerDefinitionDc;
6034
5556
  /** Tile info structure. */
6035
5557
  tileInfo: TileInfoDc;
6036
5558
  /** Copyright text. */
6037
- copyrightText?: string;
5559
+ copyrightText?: string | null;
6038
5560
  /** Client data storage. Storage isn't used by server. */
6039
5561
  clientData?: any;
6040
5562
  /** Card configuration. Storage isn't used by server. */
6041
5563
  cardConfiguration?: any;
6042
- /**
6043
- * The type of the resource.
6044
- * @minLength 1
6045
- */
6046
- type: string;
6047
- /**
6048
- * Minimum resolution that this service will be rendered on. If no resolution limits are set for the top-level
6049
- * style of the service, or if no such property is available for this type of the service, 0 is returned.
6050
- * @format double
6051
- */
6052
- minResolution?: number;
6053
- /**
6054
- * Maximum resolution that this service will be rendered on. If no resolution limits are set for the top-level
6055
- * style of the service, or if no such property is available for this type of the service, 0 is returned.
6056
- * @format double
6057
- */
6058
- maxResolution?: number;
6059
- /**
6060
- * Filtering condition for the objects in the service. If no condition set or if no such property is available
6061
- * for the given service type, null is returned.
6062
- */
6063
- condition?: string;
6064
- /**
6065
- *
6066
- *
6067
- * unknown
6068
- *
6069
- * point
6070
- *
6071
- * polyline
6072
- *
6073
- * polygon
6074
- *
6075
- * envelope
6076
- *
6077
- * multipoint
6078
- *
6079
- * line
6080
- *
6081
- * ring
6082
- *
6083
- * multipolygon
6084
- *
6085
- * collection
6086
- */
6087
- geometryType: GeometryType;
6088
- /**
6089
- * Number of objects in the layer. If the count cannot be calculated or the layer does not contain objects,
6090
- * 0 is returned.
6091
- * @format int32
6092
- */
6093
- objectCount?: number;
6094
- /** The category of the service. */
6095
- categories?: string[];
6096
- /** Configuration of the service. */
6097
- configuration?: LinearServiceConfigurationDc | PbfServiceConfigurationDc | PostgresTileCatalogServiceConfigurationDc | ProxyServiceConfigurationDc | PythonServiceConfigurationDc | QueryLayerServiceConfigurationDc | RemoteTileServiceConfigurationDc | RouteServiceConfigurationDc;
6098
- /**
6099
- * Name of the resource including its namespaces (names of the service managers that contain this service).
6100
- * @minLength 1
6101
- */
6102
- name: string;
6103
- /** Resource alias. */
6104
- alias?: string;
6105
- /** Resource owner. */
6106
- owner?: string;
6107
- /** Resource description. */
6108
- description?: string;
6109
- /**
6110
- * The date when resource was created.
6111
- * @format date-time
6112
- */
6113
- createdDate?: string;
6114
- /**
6115
- * The date when resource was last modified.
6116
- * @format date-time
6117
- */
6118
- changedDate?: string;
6119
- /**
6120
- *
6121
- *
6122
- * none
6123
- *
6124
- * configure
6125
- *
6126
- * write
6127
- *
6128
- * read
6129
- *
6130
- * read,configure
6131
- *
6132
- * read,write
6133
- *
6134
- * read,write,configure
6135
- */
6136
- permissions?: Permissions;
6137
- /** Access control list for a security object. */
6138
- acl?: AccessControlListDc;
6139
- /**
6140
- * Base64 encoded image - icon of the resource. Usually shown next to the resource name in lists and legends.
6141
- * @minLength 0
6142
- * @maxLength 102400
6143
- */
6144
- icon?: string;
6145
- /** Is set true resource is not visible in catalog. Can be changed only by owner or user with admin access. */
6146
- invisibleInCatalog?: boolean;
6147
- /** Parent id in resources catalog. */
6148
- parentId?: string;
6149
- /** Resource id in resources catalog. */
6150
- resourceId?: string;
6151
- /** Resource tags. */
6152
- tags?: string[];
6153
- }
5564
+ /** Edit configuration. Storage isn't used by server. */
5565
+ editConfiguration?: any;
5566
+ };
6154
5567
  /**
6155
5568
  * Configuration of a table for tile catalog layer.
6156
5569
  */