@evergis/api 4.0.1-alpha.0 → 4.0.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__/AccountPreviewService.d.ts +2 -2
- package/dist/__generated__/DataSourceService.d.ts +46 -2
- package/dist/__generated__/LayersService.d.ts +2 -2
- package/dist/__generated__/PythonService.d.ts +75 -0
- package/dist/__generated__/ResourceCatalogService.d.ts +28 -6
- package/dist/__generated__/StatisticService.d.ts +2 -2
- package/dist/__generated__/TablesService.d.ts +2 -2
- package/dist/__generated__/WmsServerService.d.ts +2 -2
- package/dist/__generated__/data-contracts.d.ts +234 -28
- package/dist/api.cjs.development.js +126 -101
- package/dist/api.cjs.development.js.map +1 -1
- package/dist/api.cjs.production.min.js +1 -1
- package/dist/api.cjs.production.min.js.map +1 -1
- package/dist/api.esm.js +126 -101
- package/dist/api.esm.js.map +1 -1
- package/dist/services/AccountPreview.d.ts +0 -11
- package/package.json +2 -2
|
@@ -247,17 +247,16 @@ export interface AggregationMappingDc {
|
|
|
247
247
|
* S3 data source settings.
|
|
248
248
|
*/
|
|
249
249
|
export declare type ArcGisDataSourceDc = DataSourceDc & {
|
|
250
|
+
type?: DataSourceType;
|
|
250
251
|
serviceUrl?: string | null;
|
|
251
|
-
|
|
252
|
-
|
|
252
|
+
params?: Record<string, string | null>;
|
|
253
|
+
headers?: Record<string, string | null>;
|
|
253
254
|
};
|
|
254
255
|
/**
|
|
255
256
|
* S3 data source info.
|
|
256
257
|
*/
|
|
257
258
|
export declare type ArcGisDataSourceInfoDc = DataSourceInfoDc & {
|
|
258
259
|
serviceUrl?: string | null;
|
|
259
|
-
username?: string | null;
|
|
260
|
-
password?: string | null;
|
|
261
260
|
};
|
|
262
261
|
/**
|
|
263
262
|
* Archive calendar response.
|
|
@@ -959,6 +958,8 @@ export interface CatalogResourceDc {
|
|
|
959
958
|
* @format int32
|
|
960
959
|
*/
|
|
961
960
|
srid?: number;
|
|
961
|
+
/** True if resource has children. */
|
|
962
|
+
hasChildren?: boolean;
|
|
962
963
|
}
|
|
963
964
|
/**
|
|
964
965
|
*
|
|
@@ -2067,6 +2068,8 @@ export interface ExtendedUserInfoDc {
|
|
|
2067
2068
|
* @format int32
|
|
2068
2069
|
*/
|
|
2069
2070
|
idModifyUser?: number;
|
|
2071
|
+
/** Gets or sets emoji. */
|
|
2072
|
+
emoji?: string;
|
|
2070
2073
|
/** Information about connected social networks. */
|
|
2071
2074
|
social?: SocialNetworkInfoDc[];
|
|
2072
2075
|
/** Username. */
|
|
@@ -2284,6 +2287,8 @@ export interface FeatureLayerServiceInfoDc {
|
|
|
2284
2287
|
copyrightText?: string;
|
|
2285
2288
|
/** Client data storage. Storage isn't used by server. */
|
|
2286
2289
|
clientData?: any;
|
|
2290
|
+
/** Card configuration. Storage isn't used by server. */
|
|
2291
|
+
cardConfiguration?: any;
|
|
2287
2292
|
/** The type of the resource. */
|
|
2288
2293
|
type: string;
|
|
2289
2294
|
/**
|
|
@@ -2638,6 +2643,8 @@ export interface GeocodeSuggestResultDc {
|
|
|
2638
2643
|
text?: string;
|
|
2639
2644
|
/** Source label. */
|
|
2640
2645
|
label?: string;
|
|
2646
|
+
/** Source id. */
|
|
2647
|
+
id?: string;
|
|
2641
2648
|
}
|
|
2642
2649
|
/**
|
|
2643
2650
|
* Geocode task.
|
|
@@ -2803,6 +2810,8 @@ export interface GetFeaturesParametersDc {
|
|
|
2803
2810
|
query?: string;
|
|
2804
2811
|
/** Id of override data filter to apply to the layer. If not set, the default filter is used. */
|
|
2805
2812
|
dataFilterId?: string;
|
|
2813
|
+
/** Click geometry. */
|
|
2814
|
+
ewktGeometry?: string;
|
|
2806
2815
|
/**
|
|
2807
2816
|
* Features count have to skip.
|
|
2808
2817
|
* @format int32
|
|
@@ -3686,6 +3695,21 @@ export declare type MaterializedViewConfigurationDc = TableConfigurationBaseDc &
|
|
|
3686
3695
|
eql?: string | null;
|
|
3687
3696
|
eqlParameters?: Record<string, any>;
|
|
3688
3697
|
};
|
|
3698
|
+
/**
|
|
3699
|
+
* MosRu data source.
|
|
3700
|
+
*/
|
|
3701
|
+
export declare type MosRuDataSourceDc = DataSourceDc & {
|
|
3702
|
+
type?: DataSourceType;
|
|
3703
|
+
serviceUrl?: string | null;
|
|
3704
|
+
accessToken?: string | null;
|
|
3705
|
+
};
|
|
3706
|
+
/**
|
|
3707
|
+
* MosRu data source info.
|
|
3708
|
+
*/
|
|
3709
|
+
export declare type MosRuDataSourceInfoDc = DataSourceInfoDc & {
|
|
3710
|
+
serviceUrl?: string | null;
|
|
3711
|
+
accessToken?: string | null;
|
|
3712
|
+
};
|
|
3689
3713
|
/**
|
|
3690
3714
|
* Move resource dto.
|
|
3691
3715
|
*/
|
|
@@ -3814,7 +3838,7 @@ export interface PagedListDataSourceInfoDc {
|
|
|
3814
3838
|
offset?: number;
|
|
3815
3839
|
/** @format int32 */
|
|
3816
3840
|
limit?: number;
|
|
3817
|
-
items?: (DataSourceInfoDc | ArcGisDataSourceInfoDc | PostgresDataSourceInfoDc | S3DataSourceInfoDc)[];
|
|
3841
|
+
items?: (DataSourceInfoDc | ArcGisDataSourceInfoDc | MosRuDataSourceInfoDc | PostgresDataSourceInfoDc | S3DataSourceInfoDc)[];
|
|
3818
3842
|
}
|
|
3819
3843
|
export interface PagedListExtendedUserInfoDc {
|
|
3820
3844
|
/** @format int64 */
|
|
@@ -4230,6 +4254,7 @@ export declare type PositionDc = number[];
|
|
|
4230
4254
|
* Postgres connection data source connection.
|
|
4231
4255
|
*/
|
|
4232
4256
|
export declare type PostgresDataSourceDc = DataSourceDc & {
|
|
4257
|
+
type?: DataSourceType;
|
|
4233
4258
|
host?: string | null;
|
|
4234
4259
|
userName?: string | null;
|
|
4235
4260
|
password?: string | null;
|
|
@@ -4308,6 +4333,10 @@ export interface ProjectConfigurationDc {
|
|
|
4308
4333
|
items?: ProjectContentItemDc[];
|
|
4309
4334
|
/** A collection of bookmarks of the map. */
|
|
4310
4335
|
bookmarks?: BookmarkDc[];
|
|
4336
|
+
/** Language of the project. */
|
|
4337
|
+
language?: string;
|
|
4338
|
+
/** Project configuration. */
|
|
4339
|
+
config?: any;
|
|
4311
4340
|
}
|
|
4312
4341
|
/**
|
|
4313
4342
|
* Project item description.
|
|
@@ -4344,6 +4373,8 @@ export interface ProjectContentItemDc {
|
|
|
4344
4373
|
isBasemap?: boolean;
|
|
4345
4374
|
/** Children items. */
|
|
4346
4375
|
children?: ProjectContentItemDc[];
|
|
4376
|
+
/** Layer type. */
|
|
4377
|
+
layerType?: string;
|
|
4347
4378
|
}
|
|
4348
4379
|
/**
|
|
4349
4380
|
* A project configuration data contract.
|
|
@@ -4387,8 +4418,10 @@ export interface ProxyLayerLegendItemDc {
|
|
|
4387
4418
|
* Configuration for the proxy service.
|
|
4388
4419
|
*/
|
|
4389
4420
|
export declare type ProxyServiceConfigurationDc = ServiceConfigurationBaseDc & {
|
|
4390
|
-
|
|
4391
|
-
|
|
4421
|
+
resourceId?: string | null;
|
|
4422
|
+
geometryType?: GeometryType;
|
|
4423
|
+
sourceType?: string | null;
|
|
4424
|
+
sourceUrl?: string | null;
|
|
4392
4425
|
minResolution?: number;
|
|
4393
4426
|
maxResolution?: number;
|
|
4394
4427
|
layers?: string[] | null;
|
|
@@ -4402,6 +4435,8 @@ export declare type ProxyServiceConfigurationDc = ServiceConfigurationBaseDc & {
|
|
|
4402
4435
|
* Service info for a Proxy service.
|
|
4403
4436
|
*/
|
|
4404
4437
|
export interface ProxyServiceInfoDc {
|
|
4438
|
+
/** Information about the layer attributes and their configuration. */
|
|
4439
|
+
layerDefinition?: LayerDefinitionDc;
|
|
4405
4440
|
/** Source system type, e.g. "ArcGIS". */
|
|
4406
4441
|
sourceType: string;
|
|
4407
4442
|
/** Source url path. Like http://sampleserver1.arcgisonline.com/ArcGIS/rest/services/Specialty/SuperTuesdaySample/MapServer. */
|
|
@@ -4508,6 +4543,21 @@ export interface ProxyServiceInfoDc {
|
|
|
4508
4543
|
/** Resource tags. */
|
|
4509
4544
|
tags?: string[];
|
|
4510
4545
|
}
|
|
4546
|
+
/**
|
|
4547
|
+
* PythonResourceCreateDto.
|
|
4548
|
+
*/
|
|
4549
|
+
export interface PythonResourceCreateDto {
|
|
4550
|
+
/** SystemName. */
|
|
4551
|
+
systemName?: string;
|
|
4552
|
+
/** Name. */
|
|
4553
|
+
name?: string;
|
|
4554
|
+
/** ParentId. */
|
|
4555
|
+
parentId?: string;
|
|
4556
|
+
/** Description. */
|
|
4557
|
+
description?: string;
|
|
4558
|
+
/** Tags. */
|
|
4559
|
+
tags?: string[];
|
|
4560
|
+
}
|
|
4511
4561
|
/**
|
|
4512
4562
|
* Stream quality.
|
|
4513
4563
|
|
|
@@ -4620,6 +4670,8 @@ export interface QueryLayerServiceInfoDc {
|
|
|
4620
4670
|
copyrightText?: string;
|
|
4621
4671
|
/** Client data storage. Storage isn't used by server. */
|
|
4622
4672
|
clientData?: any;
|
|
4673
|
+
/** Card configuration. Storage isn't used by server. */
|
|
4674
|
+
cardConfiguration?: any;
|
|
4623
4675
|
/** The type of the resource. */
|
|
4624
4676
|
type: string;
|
|
4625
4677
|
/**
|
|
@@ -4929,6 +4981,7 @@ export declare type RemoteTileServiceConfigurationDc = ServiceConfigurationBaseD
|
|
|
4929
4981
|
subDomains?: string[] | null;
|
|
4930
4982
|
allowDirectAccess?: boolean;
|
|
4931
4983
|
RequestTimeout?: number;
|
|
4984
|
+
useProxyHttpClient?: boolean;
|
|
4932
4985
|
};
|
|
4933
4986
|
export interface RemoteTileServiceInfo {
|
|
4934
4987
|
/** Description of a service in the Spatial Processor. */
|
|
@@ -5270,6 +5323,7 @@ export interface RoutingProviderInfoDc {
|
|
|
5270
5323
|
* S3 data source settings.
|
|
5271
5324
|
*/
|
|
5272
5325
|
export declare type S3DataSourceDc = DataSourceDc & {
|
|
5326
|
+
type?: DataSourceType;
|
|
5273
5327
|
endpoint?: string | null;
|
|
5274
5328
|
secretKey?: string | null;
|
|
5275
5329
|
accessKey?: string | null;
|
|
@@ -5314,6 +5368,23 @@ export interface ScaleBarElementDc {
|
|
|
5314
5368
|
/** Check what this model element enabled. */
|
|
5315
5369
|
enabled?: boolean;
|
|
5316
5370
|
}
|
|
5371
|
+
/**
|
|
5372
|
+
* ScriptConfiguration.
|
|
5373
|
+
*/
|
|
5374
|
+
export interface ScriptConfiguration {
|
|
5375
|
+
/** Gets or sets script. */
|
|
5376
|
+
script?: string;
|
|
5377
|
+
/** Gets or sets method. */
|
|
5378
|
+
method?: string;
|
|
5379
|
+
/** Gets or sets description. */
|
|
5380
|
+
description?: string;
|
|
5381
|
+
/** Parameters. */
|
|
5382
|
+
parameters?: ScriptParameter[];
|
|
5383
|
+
/** ScriptReturnType. */
|
|
5384
|
+
return?: ScriptReturnType;
|
|
5385
|
+
/** Script error message. */
|
|
5386
|
+
error?: string;
|
|
5387
|
+
}
|
|
5317
5388
|
/**
|
|
5318
5389
|
* Script data contract.
|
|
5319
5390
|
*/
|
|
@@ -5323,6 +5394,113 @@ export interface ScriptDc {
|
|
|
5323
5394
|
/** Description. */
|
|
5324
5395
|
description?: string;
|
|
5325
5396
|
}
|
|
5397
|
+
/**
|
|
5398
|
+
* ScriptParameter.
|
|
5399
|
+
*/
|
|
5400
|
+
export interface ScriptParameter {
|
|
5401
|
+
/** Name. */
|
|
5402
|
+
name?: string;
|
|
5403
|
+
/** Gets or sets description. */
|
|
5404
|
+
description?: string;
|
|
5405
|
+
/**
|
|
5406
|
+
*
|
|
5407
|
+
*
|
|
5408
|
+
* Integer
|
|
5409
|
+
*
|
|
5410
|
+
* Double
|
|
5411
|
+
*
|
|
5412
|
+
* String
|
|
5413
|
+
*
|
|
5414
|
+
* Extent
|
|
5415
|
+
*
|
|
5416
|
+
* Geometry
|
|
5417
|
+
*
|
|
5418
|
+
* IntergerArray
|
|
5419
|
+
*
|
|
5420
|
+
* DoubleArray
|
|
5421
|
+
*
|
|
5422
|
+
* StringArray
|
|
5423
|
+
*
|
|
5424
|
+
* Boolean
|
|
5425
|
+
*
|
|
5426
|
+
* SourceEql
|
|
5427
|
+
*
|
|
5428
|
+
* Layer
|
|
5429
|
+
*
|
|
5430
|
+
* Table
|
|
5431
|
+
*
|
|
5432
|
+
* Folder
|
|
5433
|
+
*
|
|
5434
|
+
* Json
|
|
5435
|
+
*
|
|
5436
|
+
* Expression
|
|
5437
|
+
*
|
|
5438
|
+
* Expressions
|
|
5439
|
+
*/
|
|
5440
|
+
type?: WorkerSettingsFieldType;
|
|
5441
|
+
/** Name. */
|
|
5442
|
+
default?: any;
|
|
5443
|
+
/** ScriptRange. */
|
|
5444
|
+
range?: ScriptRange;
|
|
5445
|
+
/** Name. */
|
|
5446
|
+
nullable?: boolean;
|
|
5447
|
+
}
|
|
5448
|
+
/**
|
|
5449
|
+
* ScriptRange.
|
|
5450
|
+
*/
|
|
5451
|
+
export interface ScriptRange {
|
|
5452
|
+
/** Name. */
|
|
5453
|
+
min?: any;
|
|
5454
|
+
/** Name. */
|
|
5455
|
+
max?: any;
|
|
5456
|
+
}
|
|
5457
|
+
/**
|
|
5458
|
+
* ScriptReturnType.
|
|
5459
|
+
*/
|
|
5460
|
+
export interface ScriptReturnType {
|
|
5461
|
+
/** Gets or sets description. */
|
|
5462
|
+
description?: string;
|
|
5463
|
+
/**
|
|
5464
|
+
*
|
|
5465
|
+
*
|
|
5466
|
+
* Integer
|
|
5467
|
+
*
|
|
5468
|
+
* Double
|
|
5469
|
+
*
|
|
5470
|
+
* String
|
|
5471
|
+
*
|
|
5472
|
+
* Extent
|
|
5473
|
+
*
|
|
5474
|
+
* Geometry
|
|
5475
|
+
*
|
|
5476
|
+
* IntergerArray
|
|
5477
|
+
*
|
|
5478
|
+
* DoubleArray
|
|
5479
|
+
*
|
|
5480
|
+
* StringArray
|
|
5481
|
+
*
|
|
5482
|
+
* Boolean
|
|
5483
|
+
*
|
|
5484
|
+
* SourceEql
|
|
5485
|
+
*
|
|
5486
|
+
* Layer
|
|
5487
|
+
*
|
|
5488
|
+
* Table
|
|
5489
|
+
*
|
|
5490
|
+
* Folder
|
|
5491
|
+
*
|
|
5492
|
+
* Json
|
|
5493
|
+
*
|
|
5494
|
+
* Expression
|
|
5495
|
+
*
|
|
5496
|
+
* Expressions
|
|
5497
|
+
*/
|
|
5498
|
+
type?: WorkerSettingsFieldType;
|
|
5499
|
+
/** Name. */
|
|
5500
|
+
default?: any;
|
|
5501
|
+
/** Name. */
|
|
5502
|
+
nullable?: boolean;
|
|
5503
|
+
}
|
|
5326
5504
|
/**
|
|
5327
5505
|
* Result data.
|
|
5328
5506
|
*/
|
|
@@ -6789,6 +6967,15 @@ export declare type ViewConfigurationDc = TableConfigurationBaseDc & {
|
|
|
6789
6967
|
eql?: string | null;
|
|
6790
6968
|
eqlParameters?: Record<string, any>;
|
|
6791
6969
|
};
|
|
6970
|
+
/**
|
|
6971
|
+
* S3 data source settings.
|
|
6972
|
+
*/
|
|
6973
|
+
export declare type WmsDataSourceDc = DataSourceDc & {
|
|
6974
|
+
type?: DataSourceType;
|
|
6975
|
+
serviceUrl?: string | null;
|
|
6976
|
+
params?: Record<string, string | null>;
|
|
6977
|
+
headers?: Record<string, string | null>;
|
|
6978
|
+
};
|
|
6792
6979
|
/**
|
|
6793
6980
|
*
|
|
6794
6981
|
|
|
@@ -6937,11 +7124,6 @@ export interface WorkspaceLimitsDc {
|
|
|
6937
7124
|
* @format int32
|
|
6938
7125
|
*/
|
|
6939
7126
|
maxFeaturesInOneTable?: number;
|
|
6940
|
-
/**
|
|
6941
|
-
* Max current features in one table.
|
|
6942
|
-
* @format int64
|
|
6943
|
-
*/
|
|
6944
|
-
currentFeaturesInOneTable?: number;
|
|
6945
7127
|
/**
|
|
6946
7128
|
* Max projects count in workspace.
|
|
6947
7129
|
* @format int32
|
|
@@ -6957,8 +7139,11 @@ export interface WorkspaceLimitsDc {
|
|
|
6957
7139
|
* @format int64
|
|
6958
7140
|
*/
|
|
6959
7141
|
maxObjectsToExport?: number;
|
|
6960
|
-
/**
|
|
6961
|
-
|
|
7142
|
+
/**
|
|
7143
|
+
* Maximum number of rows that a user can quering by eql parameter query.
|
|
7144
|
+
* @format int64
|
|
7145
|
+
*/
|
|
7146
|
+
maxEqlQueryParametersValues?: number;
|
|
6962
7147
|
/**
|
|
6963
7148
|
* Current table count.
|
|
6964
7149
|
* @format int64
|
|
@@ -7109,12 +7294,6 @@ export interface UploadPreviewPayload {
|
|
|
7109
7294
|
/** @format binary */
|
|
7110
7295
|
file?: File;
|
|
7111
7296
|
}
|
|
7112
|
-
export interface UploadPreviewParams {
|
|
7113
|
-
/** Image in base64 format. */
|
|
7114
|
-
base64Image?: string;
|
|
7115
|
-
/** User name. */
|
|
7116
|
-
username: string;
|
|
7117
|
-
}
|
|
7118
7297
|
export interface GetCamerasParams {
|
|
7119
7298
|
/**
|
|
7120
7299
|
* Page objects limit.
|
|
@@ -7566,6 +7745,8 @@ export declare type PublishProxyServicePayload = ProxyServiceConfigurationDc | P
|
|
|
7566
7745
|
*/
|
|
7567
7746
|
export declare type UpdateProxyServicePayload = ProxyServiceConfigurationDc | PbfServiceConfigurationDc;
|
|
7568
7747
|
export interface GetFeatures1Params {
|
|
7748
|
+
/** Click geometry. */
|
|
7749
|
+
ewktGeometry?: string;
|
|
7569
7750
|
/** Sets features filtering query. */
|
|
7570
7751
|
query?: string;
|
|
7571
7752
|
/** Id of override data filter to apply to the layer. If not set, the default filter is used. */
|
|
@@ -7965,7 +8146,7 @@ export interface ValidateExpressionParams {
|
|
|
7965
8146
|
/** Layer name. */
|
|
7966
8147
|
layerName: string;
|
|
7967
8148
|
}
|
|
7968
|
-
export interface
|
|
8149
|
+
export interface GetRasterMetaParams5 {
|
|
7969
8150
|
/**
|
|
7970
8151
|
* Min value for build histogram.
|
|
7971
8152
|
* @format double
|
|
@@ -8105,6 +8286,35 @@ export interface SetPreviewBody {
|
|
|
8105
8286
|
/** @format binary */
|
|
8106
8287
|
file?: File;
|
|
8107
8288
|
}
|
|
8289
|
+
export interface UpdatePythonConfigurationParams {
|
|
8290
|
+
/** ResourceId. */
|
|
8291
|
+
resourceId?: string;
|
|
8292
|
+
}
|
|
8293
|
+
export interface GetPythonConfigurationParams {
|
|
8294
|
+
/** ResourceId. */
|
|
8295
|
+
resourceId?: string;
|
|
8296
|
+
}
|
|
8297
|
+
export interface GetAutoConfigurationParams {
|
|
8298
|
+
/** ResourceId. */
|
|
8299
|
+
resourceId?: string;
|
|
8300
|
+
/** Script name. */
|
|
8301
|
+
scriptName?: string;
|
|
8302
|
+
/** Method name. */
|
|
8303
|
+
methodName?: string;
|
|
8304
|
+
}
|
|
8305
|
+
export interface GetAllScriptMethodsParams {
|
|
8306
|
+
/** ResourceId. */
|
|
8307
|
+
resourceId?: string;
|
|
8308
|
+
}
|
|
8309
|
+
export declare type RunScriptPayload = any;
|
|
8310
|
+
export interface RunScriptParams {
|
|
8311
|
+
/** Python resource id. */
|
|
8312
|
+
resourceId?: string;
|
|
8313
|
+
/** Script name. */
|
|
8314
|
+
scriptName?: string;
|
|
8315
|
+
/** Method name. */
|
|
8316
|
+
methodName?: string;
|
|
8317
|
+
}
|
|
8108
8318
|
export interface AddPayload {
|
|
8109
8319
|
/** Name. */
|
|
8110
8320
|
Name: string;
|
|
@@ -8181,10 +8391,6 @@ export interface GetTasksForPrototypeParams {
|
|
|
8181
8391
|
*/
|
|
8182
8392
|
id: string;
|
|
8183
8393
|
}
|
|
8184
|
-
export interface CheckLimitsParams {
|
|
8185
|
-
/** Workspace. */
|
|
8186
|
-
userName?: string;
|
|
8187
|
-
}
|
|
8188
8394
|
export declare type CopyResourcesPayload = CopyResourceDc[];
|
|
8189
8395
|
export interface GetResourceParams {
|
|
8190
8396
|
/** Object name. */
|
|
@@ -8363,7 +8569,7 @@ export interface StatisticsDbParams {
|
|
|
8363
8569
|
*/
|
|
8364
8570
|
types?: AggregationFunction[];
|
|
8365
8571
|
}
|
|
8366
|
-
export interface
|
|
8572
|
+
export interface ClassifyParams9 {
|
|
8367
8573
|
/** Layer name. */
|
|
8368
8574
|
name: string;
|
|
8369
8575
|
/** Attribute name. */
|
|
@@ -8496,7 +8702,7 @@ export interface GetTableListParams {
|
|
|
8496
8702
|
acl?: string;
|
|
8497
8703
|
}
|
|
8498
8704
|
export declare type SetPermissionsBatchInput = ResourceAclDc[];
|
|
8499
|
-
export interface
|
|
8705
|
+
export interface DeleteResourcesParams1 {
|
|
8500
8706
|
/** Resource names. */
|
|
8501
8707
|
names?: string[];
|
|
8502
8708
|
}
|
|
@@ -8653,7 +8859,7 @@ export interface GetPublicCapabilitiesParams {
|
|
|
8653
8859
|
/** When omitted or not supported by server, server shall return service metadata document using the MIME type "text/xml". */
|
|
8654
8860
|
AcceptFormats?: string[];
|
|
8655
8861
|
}
|
|
8656
|
-
export interface
|
|
8862
|
+
export interface GetCapabilitiesParams5 {
|
|
8657
8863
|
/** Output format of service metadata. */
|
|
8658
8864
|
Format?: string;
|
|
8659
8865
|
/** Must be WMS. */
|