@evergis/api 3.0.185 → 3.0.187

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.
@@ -1,4 +1,4 @@
1
- import { AccessControlListDc, CatalogResourceDc, CreateDirectoryDc, CreateFilePayload, GetAllParams, MoveResourceDc, SearchResourcesDto, SearchResourcesParams } from './data-contracts';
1
+ import { AccessControlListDc, CatalogResourceDc, CreateDirectoryDc, CreateFilePayload, GetAllParams, ListResourcesDto, MoveResourceDc, ResourceAclDc, SearchResourcesDto, SearchResourcesParams, SetPermissionsPayload } from './data-contracts';
2
2
  import { Service } from './Service';
3
3
  /**
4
4
  * @title Spatial Processing Core API
@@ -17,6 +17,17 @@ export declare class CatalogService extends Service {
17
17
  * @response `200` OK
18
18
  */
19
19
  getAll(query: GetAllParams): Promise<CatalogResourceDc[]>;
20
+ /**
21
+ * No description
22
+ *
23
+ * @tags Catalog
24
+ * @name PostGetAll
25
+ * @operationId CatalogController_PostGetAll
26
+ * @summary Get all resource with given.
27
+ * @request POST:/resources
28
+ * @response `200` OK
29
+ */
30
+ postGetAll(data: ListResourcesDto): Promise<CatalogResourceDc[]>;
20
31
  /**
21
32
  * No description
22
33
  *
@@ -94,6 +105,17 @@ export declare class CatalogService extends Service {
94
105
  * @response `200` OK
95
106
  */
96
107
  getPermissions(resourceId: string): Promise<AccessControlListDc>;
108
+ /**
109
+ * No description
110
+ *
111
+ * @tags Catalog
112
+ * @name SetPermissions1
113
+ * @operationId CatalogController_SetPermissions_1
114
+ * @summary Set permissions to the resource.
115
+ * @request PUT:/resources/{resourceId}/permissions
116
+ * @response `200` OK
117
+ */
118
+ setPermissions1(resourceId: string, data: AccessControlListDc): Promise<AccessControlListDc>;
97
119
  /**
98
120
  * No description
99
121
  *
@@ -101,10 +123,10 @@ export declare class CatalogService extends Service {
101
123
  * @name SetPermissions
102
124
  * @operationId CatalogController_SetPermissions
103
125
  * @summary Set permissions to the resource.
104
- * @request PUT:/resources/{resourceId}/permissions
126
+ * @request PUT:/resources/permissions
105
127
  * @response `200` OK
106
128
  */
107
- setPermissions(resourceId: string, data: AccessControlListDc): Promise<AccessControlListDc>;
129
+ setPermissions(data: SetPermissionsPayload): Promise<ResourceAclDc[]>;
108
130
  /**
109
131
  * No description
110
132
  *
@@ -1,4 +1,4 @@
1
- import { AccessControlListDc, AggregateAttributeParams, AggregationDataResultDc, AttributeDistinctsDc, BulkOperationResultDc, ClassifyDc, ClassifyParams, CompositeServiceConfigurationDc, CompositeServiceInfoDc, CreateFeaturesPayload, DeleteByConditionParams, DeleteFeatureParams, DeleteFeaturesParams, DeleteResourcesParams, DistinctsParams, EditAttributesInfoDc, EnvelopeDc, ExpressionValidationResultDc, FeatureDc, FeatureLayerServiceInfoDc, FeaturesContainsParams, FeatureSelectionDc, FeaturesListDc, FileUploadResponse, GetByGeometryGetParams, GetByGeometryParams, GetByGeometryPostParams, GetByGeometryPostPayload, GetByIdParams, GetFeatures1Params, GetFeaturesParametersDc, GetFilteredFeaturesCountDc, GetFilteredFeaturesCountParams, GetLayerExtentParams, GetLayerImageParams, GetLayersInfoParams, GetLayersListParams, GetRasterMetaParams8, GetTilesLayerImageParams, LayerUpdateInfo, LayerUpdateInfoDc, LinearServiceConfigurationDc, LocalTileServiceConfigurationDc, NetCdfMetaDc, PagedFeaturesListDc, PbfServiceConfigurationDc, PbfServiceInfoDc, PostgresLayerServiceConfigurationDc, PostgresTileCatalogServiceConfigurationDc, ProxyServiceInfoDc, PublishProxyServicePayload, QueryLayerServiceConfigurationDc, QueryLayerServiceInfoDc, RasterMetaDc, RemoteTileServiceConfigurationDc, RemoteTileServiceInfo, RemoteTileServiceInfoDc, ResourceDependenciesDc, ResourceInfoDc, RouteFeatureDc, RouteServiceConfigurationDc, SelectFeaturesParams, ServiceInfoDc, ServiceListDc, SetPermissionsBatchPayload, SetPreviewPayload, SimpleSymbolDc, StyleDc, StyledLayerServiceConfigurationDc, SubtractParams, SubtractPayload, TileServiceInfoDc, UniteParams, UnitePayload, UpdateFeaturePayload, UpdateProxyServicePayload, ValidateExpressionParams } from './data-contracts';
1
+ import { AccessControlListDc, AggregateAttributeParams, AggregationDataResultDc, AttributeDistinctsDc, BulkOperationResultDc, ClassifyDc, ClassifyParams, CompositeServiceConfigurationDc, CompositeServiceInfoDc, CreateFeaturesPayload, DeleteByConditionParams, DeleteFeatureParams, DeleteFeaturesParams, DeleteResourcesParams, DistinctsParams, EditAttributesInfoDc, EnvelopeDc, ExpressionValidationResultDc, FeatureDc, FeatureLayerServiceInfoDc, FeaturesContainsParams, FeatureSelectionDc, FeaturesListDc, FileUploadResponse, GetByGeometryGetParams, GetByGeometryParams, GetByGeometryPostParams, GetByGeometryPostPayload, GetByIdParams, GetFeatures1Params, GetFeaturesParametersDc, GetFilteredFeaturesCountDc, GetFilteredFeaturesCountParams, GetLayerExtentParams, GetLayerImageParams, GetLayersInfoParams, GetLayersListParams, GetRasterMetaParams3, GetTilesLayerImageParams, LayerUpdateInfo, LayerUpdateInfoDc, LinearServiceConfigurationDc, LocalTileServiceConfigurationDc, NetCdfMetaDc, PagedFeaturesListDc, PbfServiceConfigurationDc, PbfServiceInfoDc, PostgresLayerServiceConfigurationDc, PostgresTileCatalogServiceConfigurationDc, ProxyServiceInfoDc, PublishProxyServicePayload, QueryLayerServiceConfigurationDc, QueryLayerServiceInfoDc, RasterMetaDc, RemoteTileServiceConfigurationDc, RemoteTileServiceInfo, RemoteTileServiceInfoDc, ResourceDependenciesDc, ResourceInfoDc, RouteFeatureDc, RouteServiceConfigurationDc, SelectFeaturesParams, ServiceInfoDc, ServiceListDc, SetPermissionsBatchPayload, SetPreviewPayload, SimpleSymbolDc, StyleDc, StyledLayerServiceConfigurationDc, SubtractParams, SubtractPayload, TileServiceInfoDc, UniteParams, UnitePayload, UpdateFeaturePayload, UpdateProxyServicePayload, ValidateExpressionParams } from './data-contracts';
2
2
  import { Service } from './Service';
3
3
  /**
4
4
  * @title Spatial Processing Core API
@@ -578,7 +578,7 @@ export declare class LayersService extends Service {
578
578
  * @request GET:/layers/{name}/{id}/metadata
579
579
  * @response `200` OK
580
580
  */
581
- getRasterMeta({ name, id, ...query }: GetRasterMetaParams8): Promise<(RasterMetaDc | NetCdfMetaDc)[]>;
581
+ getRasterMeta({ name, id, ...query }: GetRasterMetaParams3): Promise<(RasterMetaDc | NetCdfMetaDc)[]>;
582
582
  /**
583
583
  * No description
584
584
  *
@@ -633,7 +633,7 @@ export declare class LayersService extends Service {
633
633
  * @request GET:/layers/{name}/style/sprite.json
634
634
  * @response `200` OK
635
635
  */
636
- getDataLayout(name: string): Promise<Blob>;
636
+ getDataLayout(name: string): Promise<void>;
637
637
  /**
638
638
  * No description
639
639
  *
@@ -1,4 +1,4 @@
1
- import { AccessControlListDc, BulkOperationResultDc, DeleteResourcesParams9, ExtendedProjectInfoDc, ExtendedProjectLayersInfo, FileUploadResponse, GetProjectsInfoParams, GetProjectsListParams, PagedListProjectInfoDc, ProjectsListDc, ResourceDependenciesDc, SetPermissionsBatchBody, SetPreviewBody } from './data-contracts';
1
+ import { AccessControlListDc, BulkOperationResultDc, DeleteResourcesParams8, ExtendedProjectInfoDc, ExtendedProjectLayersInfo, FileUploadResponse, GetProjectsInfoParams, GetProjectsListParams, PagedListProjectInfoDc, ProjectsListDc, ResourceDependenciesDc, SetPermissionsBatchBody, SetPreviewBody } from './data-contracts';
2
2
  import { Service } from './Service';
3
3
  /**
4
4
  * @title Spatial Processing Core API
@@ -49,7 +49,7 @@ export declare class ProjectsService extends Service {
49
49
  * @request DELETE:/projects
50
50
  * @response `200` OK
51
51
  */
52
- deleteResources(query: DeleteResourcesParams9): Promise<BulkOperationResultDc[]>;
52
+ deleteResources(query: DeleteResourcesParams8): Promise<BulkOperationResultDc[]>;
53
53
  /**
54
54
  * No description
55
55
  *
@@ -1,4 +1,4 @@
1
- import { ClassifyDc, ClassifyParams1, GetClassifyDc, GetStatisticsDc, GetSumOfProductDc, StatisticsDbParams, StatisticsDc, SumOfProductParams } from './data-contracts';
1
+ import { ClassifyDc, ClassifyParams8, GetClassifyDc, GetStatisticsDc, GetSumOfProductDc, StatisticsDbParams, StatisticsDc, SumOfProductParams } from './data-contracts';
2
2
  import { Service } from './Service';
3
3
  /**
4
4
  * @title Spatial Processing Core API
@@ -38,7 +38,7 @@ export declare class StatisticService extends Service {
38
38
  * @request GET:/statistics/classify
39
39
  * @response `200` OK
40
40
  */
41
- classify(query: ClassifyParams1): Promise<ClassifyDc>;
41
+ classify(query: ClassifyParams8): Promise<ClassifyDc>;
42
42
  /**
43
43
  * No description
44
44
  *
@@ -1,4 +1,4 @@
1
- import { AccessControlListDc, BulkOperationResultDc, DeleteResourcesParams9, DeleteTableDataParams, DetailedTableInfoDc, FileUploadResponse, GetTableDataParams, GetTableListParams, GetTablesInfoParams, GetUniqueDataRowsParams, MapTableInfoDc, MapTableParams, PagedListIEnumerable1, PagedListTableInfoDc, ResourceDependenciesDc, SetPermissionsBatchInput, SetPreviewInput, TableListDc, UpdateTableDataParams, UpdateTableDataPayload, UpdateTableDc, WriteTableDataPayload } from './data-contracts';
1
+ import { AccessControlListDc, BulkOperationResultDc, DeleteResourcesParams1, DeleteTableDataParams, DetailedTableInfoDc, FileUploadResponse, GetTableDataParams, GetTableListParams, GetTablesInfoParams, GetUniqueDataRowsParams, MapTableInfoDc, MapTableParams, PagedListIEnumerable1, PagedListTableInfoDc, ResourceDependenciesDc, SetPermissionsBatchInput, SetPreviewInput, TableListDc, UpdateTableDataParams, UpdateTableDataPayload, UpdateTableDc, WriteTableDataPayload } from './data-contracts';
2
2
  import { Service } from './Service';
3
3
  /**
4
4
  * @title Spatial Processing Core API
@@ -49,7 +49,7 @@ export declare class TablesService extends Service {
49
49
  * @request DELETE:/tables
50
50
  * @response `200` OK
51
51
  */
52
- deleteResources(query: DeleteResourcesParams9): Promise<BulkOperationResultDc[]>;
52
+ deleteResources(query: DeleteResourcesParams1): Promise<BulkOperationResultDc[]>;
53
53
  /**
54
54
  * No description
55
55
  *
@@ -1,4 +1,4 @@
1
- import { GetAllParams3, PagedListTagInfoDc } from './data-contracts';
1
+ import { GetAllParams8, PagedListTagInfoDc } from './data-contracts';
2
2
  import { Service } from './Service';
3
3
  /**
4
4
  * @title Spatial Processing Core API
@@ -16,7 +16,7 @@ export declare class TagsService extends Service {
16
16
  * @request GET:/tags
17
17
  * @response `200` OK
18
18
  */
19
- getAll(query: GetAllParams3): Promise<PagedListTagInfoDc>;
19
+ getAll(query: GetAllParams8): Promise<PagedListTagInfoDc>;
20
20
  /**
21
21
  * No description
22
22
  *
@@ -1,4 +1,4 @@
1
- import { GetCapabilities1Params, GetCapabilitiesParams9, GetFeatureInfoParams, GetLegendGraphicParams, GetMapParams } from './data-contracts';
1
+ import { GetCapabilities1Params, GetCapabilitiesParams8, GetFeatureInfoParams, GetLegendGraphicParams, GetMapParams } from './data-contracts';
2
2
  import { Service } from './Service';
3
3
  /**
4
4
  * @title Spatial Processing Core API
@@ -16,7 +16,7 @@ export declare class WmsServerService extends Service {
16
16
  * @request GET:/wms#REQUEST=GetCapabilities
17
17
  * @response `200` OK
18
18
  */
19
- getCapabilities(query: GetCapabilitiesParams9): Promise<void>;
19
+ getCapabilities(query: GetCapabilitiesParams8): Promise<void>;
20
20
  /**
21
21
  * No description
22
22
  *
@@ -798,16 +798,32 @@ export interface CameraListDc {
798
798
  * Resource catalog item.
799
799
  */
800
800
  export interface CatalogResourceDc {
801
- /**
802
- * Id of the resource.
803
- * @format uuid
804
- */
801
+ /** Resource id. */
805
802
  resourceId?: string;
803
+ /** System name. */
804
+ systemName?: string;
805
+ /** Parent resource id. */
806
+ parentId?: string;
806
807
  /**
807
- * Id of the resource.
808
- * @format uuid
808
+ *
809
+ *
810
+ * None
811
+ *
812
+ * Map
813
+ *
814
+ * Layer
815
+ *
816
+ * Table
817
+ *
818
+ * File
819
+ *
820
+ * TaskPrototype
809
821
  */
810
- parentId?: string;
822
+ type?: CatalogResourceType;
823
+ /** Resource subtype. */
824
+ subtype?: string;
825
+ /** Geometry type. */
826
+ geometryType?: string[];
811
827
  /** Path to the resource. */
812
828
  name?: string;
813
829
  /** Description of the resource. */
@@ -819,10 +835,14 @@ export interface CatalogResourceDc {
819
835
  size?: number;
820
836
  /** Content type. */
821
837
  contentType?: string;
838
+ /** Check if resource has children. */
839
+ hasChildren?: boolean;
822
840
  /** Check if resource is directory. */
823
841
  isDirectory?: boolean;
824
842
  /** Check if resource is temporary. */
825
843
  isTemporary?: boolean;
844
+ /** Check if resource is system. */
845
+ isSystem?: boolean;
826
846
  /** Owner of the resource. */
827
847
  owner?: string;
828
848
  /** Resource path. */
@@ -837,6 +857,31 @@ export interface CatalogResourceDc {
837
857
  * @format date-time
838
858
  */
839
859
  createdAt?: string;
860
+ /** Resource tags. */
861
+ tags?: string[];
862
+ }
863
+ /**
864
+ *
865
+
866
+ None
867
+
868
+ Map
869
+
870
+ Layer
871
+
872
+ Table
873
+
874
+ File
875
+
876
+ TaskPrototype
877
+ */
878
+ export declare enum CatalogResourceType {
879
+ None = "None",
880
+ Map = "Map",
881
+ Layer = "Layer",
882
+ Table = "Table",
883
+ File = "File",
884
+ TaskPrototype = "TaskPrototype"
840
885
  }
841
886
  /**
842
887
  * Ending with an empty circle.
@@ -1168,6 +1213,8 @@ export interface CompositeServiceInfoDc {
1168
1213
  icon?: string;
1169
1214
  /** Is set true resource is not visible in catalog. Can be changed only by owner or user with admin access. */
1170
1215
  invisibleInCatalog?: boolean;
1216
+ /** Parent id in resources catalog. */
1217
+ parentId?: string;
1171
1218
  }
1172
1219
  /**
1173
1220
  * Composite symbol.
@@ -1351,10 +1398,7 @@ export declare type CopyTaskParametersDc = FeatureTaskParametersDc & {
1351
1398
  * Create directory request.
1352
1399
  */
1353
1400
  export interface CreateDirectoryDc {
1354
- /**
1355
- * Id of parent resource.
1356
- * @format uuid
1357
- */
1401
+ /** Parent resource id. */
1358
1402
  parentId?: string;
1359
1403
  /** Path to the directory. */
1360
1404
  name?: string;
@@ -1697,13 +1741,6 @@ export interface ExtendedProjectLayersInfo {
1697
1741
  /** A collection of layers info. */
1698
1742
  layersInfo?: ServiceListItemDc[];
1699
1743
  }
1700
- /**
1701
- * Extended resource info data contract.
1702
- */
1703
- export declare type ExtendedResourceInfoDc = ResourceInfoDc & {
1704
- publishedDate?: string;
1705
- usedByUsers?: string[] | null;
1706
- };
1707
1744
  /**
1708
1745
  * Extended user information.
1709
1746
  */
@@ -1926,6 +1963,8 @@ export interface FailedServiceInfoDc {
1926
1963
  icon?: string;
1927
1964
  /** Is set true resource is not visible in catalog. Can be changed only by owner or user with admin access. */
1928
1965
  invisibleInCatalog?: boolean;
1966
+ /** Parent id in resources catalog. */
1967
+ parentId?: string;
1929
1968
  }
1930
1969
  /**
1931
1970
  * Feature object definition.
@@ -2043,6 +2082,8 @@ export interface FeatureLayerServiceInfoDc {
2043
2082
  icon?: string;
2044
2083
  /** Is set true resource is not visible in catalog. Can be changed only by owner or user with admin access. */
2045
2084
  invisibleInCatalog?: boolean;
2085
+ /** Parent id in resources catalog. */
2086
+ parentId?: string;
2046
2087
  }
2047
2088
  export interface FeatureSelectionDc {
2048
2089
  layerName: string;
@@ -3064,6 +3105,32 @@ export declare type LinearServiceConfigurationDc = ServiceConfigurationBaseDc &
3064
3105
  featuresLimit?: number;
3065
3106
  extentOffset?: number;
3066
3107
  };
3108
+ /**
3109
+ * Search resources.
3110
+ */
3111
+ export interface ListResourcesDto {
3112
+ /** Id of the parent. */
3113
+ parentId?: string;
3114
+ /**
3115
+ * Text filer support sql like symbols
3116
+ * (for example start with 'text*', contains 'text', end with '*text'.
3117
+ */
3118
+ filter?: string;
3119
+ /**
3120
+ *
3121
+ *
3122
+ * My
3123
+ *
3124
+ * Shared
3125
+ *
3126
+ * Public
3127
+ */
3128
+ ownerFilter?: OwnerFilter;
3129
+ /** Resources types filter. */
3130
+ resourceTypes?: CatalogResourceType[];
3131
+ /** Resources subtypes filter. */
3132
+ subtypes?: string[];
3133
+ }
3067
3134
  /**
3068
3135
  * Configuration for the local tile service.
3069
3136
  */
@@ -3149,10 +3216,7 @@ export interface ModelElementDc {
3149
3216
  * Move resource dto.
3150
3217
  */
3151
3218
  export interface MoveResourceDc {
3152
- /**
3153
- * Target resource to copy.
3154
- * @format uuid
3155
- */
3219
+ /** Target resource to copy. */
3156
3220
  targetResource?: string;
3157
3221
  /** Name of target resource. */
3158
3222
  newName?: string;
@@ -3205,20 +3269,6 @@ export declare type ObjectId = object;
3205
3269
  /**
3206
3270
  *
3207
3271
 
3208
- All
3209
-
3210
- Directory
3211
-
3212
- File
3213
- */
3214
- export declare enum ObjectTypeFilter {
3215
- All = "All",
3216
- Directory = "Directory",
3217
- File = "File"
3218
- }
3219
- /**
3220
- *
3221
-
3222
3272
  Unknown
3223
3273
 
3224
3274
  union
@@ -3249,14 +3299,14 @@ export declare type OverlayTaskParametersDc = FeatureTaskParametersDc & {
3249
3299
 
3250
3300
  My
3251
3301
 
3252
- All
3302
+ Shared
3253
3303
 
3254
- Other
3304
+ Public
3255
3305
  */
3256
3306
  export declare enum OwnerFilter {
3257
3307
  My = "My",
3258
- All = "All",
3259
- Other = "Other"
3308
+ Shared = "Shared",
3309
+ Public = "Public"
3260
3310
  }
3261
3311
  /**
3262
3312
  * Features list definition.
@@ -3905,6 +3955,8 @@ export interface ProxyServiceInfoDc {
3905
3955
  icon?: string;
3906
3956
  /** Is set true resource is not visible in catalog. Can be changed only by owner or user with admin access. */
3907
3957
  invisibleInCatalog?: boolean;
3958
+ /** Parent id in resources catalog. */
3959
+ parentId?: string;
3908
3960
  }
3909
3961
  /**
3910
3962
  * Stream quality.
@@ -4087,6 +4139,8 @@ export interface QueryLayerServiceInfoDc {
4087
4139
  icon?: string;
4088
4140
  /** Is set true resource is not visible in catalog. Can be changed only by owner or user with admin access. */
4089
4141
  invisibleInCatalog?: boolean;
4142
+ /** Parent id in resources catalog. */
4143
+ parentId?: string;
4090
4144
  }
4091
4145
  /**
4092
4146
  * Raster band cfg.
@@ -4403,6 +4457,8 @@ export interface ResourceInfoDc {
4403
4457
  icon?: string;
4404
4458
  /** Is set true resource is not visible in catalog. Can be changed only by owner or user with admin access. */
4405
4459
  invisibleInCatalog?: boolean;
4460
+ /** Parent id in resources catalog. */
4461
+ parentId?: string;
4406
4462
  }
4407
4463
  /**
4408
4464
  *
@@ -4580,14 +4636,11 @@ export declare type ScaleBarElementDc = ModelElementDc & {
4580
4636
  * Search resources.
4581
4637
  */
4582
4638
  export interface SearchResourcesDto {
4583
- /**
4584
- * Id of the parent.
4585
- * @format uuid
4586
- */
4639
+ /** Id of the parent. */
4587
4640
  parentId?: string;
4588
4641
  /**
4589
4642
  * Text filer support sql like symbols
4590
- * (for example start with 'text*', contains '*text*', end with '*text'.
4643
+ * (for example start with 'text*', contains 'text', end with '*text'.
4591
4644
  */
4592
4645
  filter?: string;
4593
4646
  /**
@@ -4595,23 +4648,17 @@ export interface SearchResourcesDto {
4595
4648
  *
4596
4649
  * My
4597
4650
  *
4598
- * All
4651
+ * Shared
4599
4652
  *
4600
- * Other
4653
+ * Public
4601
4654
  */
4602
4655
  ownerFilter?: OwnerFilter;
4603
4656
  /** Tags filter. */
4604
4657
  tags?: string[];
4605
- /**
4606
- *
4607
- *
4608
- * All
4609
- *
4610
- * Directory
4611
- *
4612
- * File
4613
- */
4614
- objectFilter?: ObjectTypeFilter;
4658
+ /** Resources types filter. */
4659
+ resourceTypes?: CatalogResourceType[];
4660
+ /** Resources subtypes filter. */
4661
+ subtypes?: string[];
4615
4662
  }
4616
4663
  /**
4617
4664
  * Result data.
@@ -5793,6 +5840,8 @@ export interface TileCatalogServiceInfoDc {
5793
5840
  icon?: string;
5794
5841
  /** Is set true resource is not visible in catalog. Can be changed only by owner or user with admin access. */
5795
5842
  invisibleInCatalog?: boolean;
5843
+ /** Parent id in resources catalog. */
5844
+ parentId?: string;
5796
5845
  }
5797
5846
  /**
5798
5847
  * Configuration of a table for tile catalog layer.
@@ -5970,6 +6019,8 @@ export interface TileServiceInfoDc {
5970
6019
  icon?: string;
5971
6020
  /** Is set true resource is not visible in catalog. Can be changed only by owner or user with admin access. */
5972
6021
  invisibleInCatalog?: boolean;
6022
+ /** Parent id in resources catalog. */
6023
+ parentId?: string;
5973
6024
  }
5974
6025
  /**
5975
6026
  * The description of the tile feature layer service as a server task data storage.
@@ -6476,19 +6527,16 @@ export interface GetLivePreviewStreamParams {
6476
6527
  cameraId: string;
6477
6528
  }
6478
6529
  export interface GetAllParams {
6479
- /**
6480
- * Parent resource id.
6481
- * @format uuid
6482
- */
6530
+ /** Parent resource id. */
6483
6531
  parentId?: string;
6484
6532
  /**
6485
6533
  * Resources owner filter.
6486
6534
  *
6487
6535
  * My
6488
6536
  *
6489
- * All
6537
+ * Shared
6490
6538
  *
6491
- * Other
6539
+ * Public
6492
6540
  */
6493
6541
  ownerFilter?: OwnerFilter;
6494
6542
  }
@@ -6521,14 +6569,16 @@ export interface CreateFilePayload {
6521
6569
  rewrite?: boolean;
6522
6570
  /** Description of the file. */
6523
6571
  description?: string;
6524
- /**
6525
- * Id of the parent resource.
6526
- * @format uuid
6527
- */
6572
+ /** Id of the parent resource. */
6528
6573
  parentId?: string;
6529
6574
  /** Owner of the file. */
6530
6575
  owner?: string;
6576
+ /** Check if file is temporary. */
6577
+ isTemporary?: boolean;
6578
+ /** A set of tags. */
6579
+ tags?: string[];
6531
6580
  }
6581
+ export declare type SetPermissionsPayload = ResourceAclDc[];
6532
6582
  export interface GetConfigurationsListParams {
6533
6583
  /**
6534
6584
  * Offset.
@@ -7200,7 +7250,7 @@ export interface ValidateExpressionParams {
7200
7250
  /** Layer name. */
7201
7251
  layerName: string;
7202
7252
  }
7203
- export interface GetRasterMetaParams8 {
7253
+ export interface GetRasterMetaParams3 {
7204
7254
  /**
7205
7255
  * Min value for build histogram.
7206
7256
  * @format double
@@ -7327,7 +7377,7 @@ export interface GetProjectsListParams {
7327
7377
  tags?: string[];
7328
7378
  }
7329
7379
  export declare type SetPermissionsBatchBody = ResourceAclDc[];
7330
- export interface DeleteResourcesParams9 {
7380
+ export interface DeleteResourcesParams8 {
7331
7381
  /** Resource names. */
7332
7382
  names?: string[];
7333
7383
  }
@@ -7510,15 +7560,6 @@ export interface UploadFilePayload {
7510
7560
  * If true - rewrite file if exist. If false - return error.
7511
7561
  */
7512
7562
  rewrite?: boolean;
7513
- /** Description of the file. */
7514
- description?: string;
7515
- /**
7516
- * Id of the parent resource.
7517
- * @format uuid
7518
- */
7519
- parentId?: string;
7520
- /** Owner of the file. */
7521
- owner?: string;
7522
7563
  }
7523
7564
  export interface DeleteFileParams {
7524
7565
  /** File id to delete. */
@@ -7582,7 +7623,7 @@ export interface StatisticsDbParams {
7582
7623
  */
7583
7624
  types?: AggregationFunction[];
7584
7625
  }
7585
- export interface ClassifyParams1 {
7626
+ export interface ClassifyParams8 {
7586
7627
  /** Layer name. */
7587
7628
  name: string;
7588
7629
  /** Attribute name. */
@@ -7715,6 +7756,10 @@ export interface GetTableListParams {
7715
7756
  acl?: string;
7716
7757
  }
7717
7758
  export declare type SetPermissionsBatchInput = ResourceAclDc[];
7759
+ export interface DeleteResourcesParams1 {
7760
+ /** Resource names. */
7761
+ names?: string[];
7762
+ }
7718
7763
  export interface GetTablesInfoParams {
7719
7764
  /** Table names. */
7720
7765
  tableNames?: string[];
@@ -7779,7 +7824,7 @@ export interface SetPreviewInput {
7779
7824
  /** @format binary */
7780
7825
  file?: File;
7781
7826
  }
7782
- export interface GetAllParams3 {
7827
+ export interface GetAllParams8 {
7783
7828
  /** Text filter. */
7784
7829
  filter?: string;
7785
7830
  /**
@@ -7868,7 +7913,7 @@ export interface GetPublicCapabilitiesParams {
7868
7913
  /** When omitted or not supported by server, server shall return service metadata document using the MIME type "text/xml". */
7869
7914
  AcceptFormats?: string[];
7870
7915
  }
7871
- export interface GetCapabilitiesParams9 {
7916
+ export interface GetCapabilitiesParams8 {
7872
7917
  /** Output format of service metadata. */
7873
7918
  Format?: string;
7874
7919
  /** Must be WMS. */