@evergis/api 3.0.191 → 3.0.192

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, ListResourcesDto, MoveResourceDc, ResourceAclDc, SearchResourcesDto, SearchResourcesParams, SetPermissionsPayload } from './data-contracts';
1
+ import { AccessControlListDc, CatalogResourceDc, CreateDirectoryDc, CreateFilePayload, GetAllParams, GetTagsParams, ListResourcesDto, MoveResourceDc, PatchResourceDc, PutTagsPayload, ResourceAclDc, SearchResourcesDto, SearchResourcesParams, SetPermissionsPayload } from './data-contracts';
2
2
  import { Service } from './Service';
3
3
  /**
4
4
  * @title Spatial Processing Core API
@@ -28,6 +28,28 @@ export declare class CatalogService extends Service {
28
28
  * @response `200` OK
29
29
  */
30
30
  postGetAll(data: ListResourcesDto): Promise<CatalogResourceDc[]>;
31
+ /**
32
+ * No description
33
+ *
34
+ * @tags Catalog
35
+ * @name GetTags
36
+ * @operationId CatalogController_GetTags
37
+ * @summary Get all tags of given user.
38
+ * @request GET:/resources/tags
39
+ * @response `200` OK
40
+ */
41
+ getTags(query: GetTagsParams): Promise<CatalogResourceDc[]>;
42
+ /**
43
+ * No description
44
+ *
45
+ * @tags Catalog
46
+ * @name PutTags
47
+ * @operationId CatalogController_PutTags
48
+ * @summary Put tags to resource.
49
+ * @request PUT:/resources/{resourceId}/tags
50
+ * @response `200` OK
51
+ */
52
+ putTags(resourceId: string, data: PutTagsPayload): Promise<CatalogResourceDc>;
31
53
  /**
32
54
  * No description
33
55
  *
@@ -50,6 +72,17 @@ export declare class CatalogService extends Service {
50
72
  * @response `200` OK
51
73
  */
52
74
  getResource(resourceId: string): Promise<CatalogResourceDc>;
75
+ /**
76
+ * No description
77
+ *
78
+ * @tags Catalog
79
+ * @name PatchResource
80
+ * @operationId CatalogController_PatchResource
81
+ * @summary Update directory.
82
+ * @request PATCH:/resources/{resourceId}
83
+ * @response `200` OK
84
+ */
85
+ patchResource(resourceId: string, data: PatchResourceDc): Promise<CatalogResourceDc>;
53
86
  /**
54
87
  * No description
55
88
  *
@@ -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, GetRasterMetaParams7, 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, GetBulkFeaturesPayload, GetByGeometryGetParams, GetByGeometryParams, GetByGeometryPostParams, GetByGeometryPostPayload, GetByIdParams, GetFeatures1Params, GetFeaturesParametersDc, GetFeaturesParametersFromLayersDc, GetFilteredFeaturesCountDc, GetFilteredFeaturesCountParams, GetLayerExtentParams, GetLayerImageParams, GetLayersInfoParams, GetLayersListParams, GetRasterMetaParams9, GetTilesLayerImageParams, LayerUpdateInfo, LayerUpdateInfoDc, LinearServiceConfigurationDc, LocalTileServiceConfigurationDc, NetCdfMetaDc, PagedBulkFeaturesListDc, 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
@@ -6,6 +6,28 @@ import { Service } from './Service';
6
6
  * @baseUrl /sp
7
7
  */
8
8
  export declare class LayersService extends Service {
9
+ /**
10
+ * No description
11
+ *
12
+ * @tags Layers
13
+ * @name GetBulkFeatures
14
+ * @operationId LayersController_GetBulkFeatures
15
+ * @summary Returns list of the layer features.
16
+ * @request POST:/bulk/layers/features/query
17
+ * @response `200` OK
18
+ */
19
+ getBulkFeatures(data: GetBulkFeaturesPayload): Promise<PagedBulkFeaturesListDc[]>;
20
+ /**
21
+ * No description
22
+ *
23
+ * @tags Layers
24
+ * @name GetFeaturesFromLayers
25
+ * @operationId LayersController_GetFeaturesFromLayers
26
+ * @summary Returns list of the layer features.
27
+ * @request POST:/layers/features/query
28
+ * @response `200` OK
29
+ */
30
+ getFeaturesFromLayers(data: GetFeaturesParametersFromLayersDc): Promise<PagedBulkFeaturesListDc[]>;
9
31
  /**
10
32
  * No description
11
33
  *
@@ -578,7 +600,7 @@ export declare class LayersService extends Service {
578
600
  * @request GET:/layers/{name}/{id}/metadata
579
601
  * @response `200` OK
580
602
  */
581
- getRasterMeta({ name, id, ...query }: GetRasterMetaParams7): Promise<(RasterMetaDc | NetCdfMetaDc)[]>;
603
+ getRasterMeta({ name, id, ...query }: GetRasterMetaParams9): Promise<(RasterMetaDc | NetCdfMetaDc)[]>;
582
604
  /**
583
605
  * No description
584
606
  *
@@ -1,4 +1,4 @@
1
- import { AccessControlListDc, BulkOperationResultDc, DeleteResourcesParams4, ExtendedProjectInfoDc, ExtendedProjectLayersInfo, FileUploadResponse, GetProjectsInfoParams, GetProjectsListParams, PagedListProjectInfoDc, ProjectsListDc, ResourceDependenciesDc, SetPermissionsBatchBody, SetPreviewBody } from './data-contracts';
1
+ import { AccessControlListDc, BulkOperationResultDc, DeleteResourcesParams5, 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: DeleteResourcesParams4): Promise<BulkOperationResultDc[]>;
52
+ deleteResources(query: DeleteResourcesParams5): Promise<BulkOperationResultDc[]>;
53
53
  /**
54
54
  * No description
55
55
  *
@@ -1,4 +1,4 @@
1
- import { ClassifyDc, ClassifyParams2, GetClassifyDc, GetStatisticsDc, GetSumOfProductDc, StatisticsDbParams, StatisticsDc, SumOfProductParams } from './data-contracts';
1
+ import { ClassifyDc, ClassifyParams5, 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: ClassifyParams2): Promise<ClassifyDc>;
41
+ classify(query: ClassifyParams5): Promise<ClassifyDc>;
42
42
  /**
43
43
  * No description
44
44
  *
@@ -1,4 +1,4 @@
1
- import { AccessControlListDc, BulkOperationResultDc, DeleteResourcesParams5, 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, DeleteResourcesParams2, 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: DeleteResourcesParams5): Promise<BulkOperationResultDc[]>;
52
+ deleteResources(query: DeleteResourcesParams2): Promise<BulkOperationResultDc[]>;
53
53
  /**
54
54
  * No description
55
55
  *
@@ -1,4 +1,4 @@
1
- import { GetAllParams6, PagedListTagInfoDc } from './data-contracts';
1
+ import { GetAllParams9, 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: GetAllParams6): Promise<PagedListTagInfoDc>;
19
+ getAll(query: GetAllParams9): Promise<PagedListTagInfoDc>;
20
20
  /**
21
21
  * No description
22
22
  *
@@ -1,4 +1,4 @@
1
- import { GetCapabilities1Params, GetCapabilitiesParams6, GetFeatureInfoParams, GetLegendGraphicParams, GetMapParams } from './data-contracts';
1
+ import { GetCapabilities1Params, GetCapabilitiesParams3, 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: GetCapabilitiesParams6): Promise<void>;
19
+ getCapabilities(query: GetCapabilitiesParams3): Promise<void>;
20
20
  /**
21
21
  * No description
22
22
  *
@@ -662,8 +662,6 @@ export interface AttributesConfigurationDc {
662
662
  tableName?: string;
663
663
  /** Configuration of the attributes of the layer. */
664
664
  attributes?: (AttributeConfigurationDc | EqlAttributeConfigurationDc)[];
665
- /** Configurations of the related tables. */
666
- tableReferences?: TableReferenceConfigurationDc[];
667
665
  /** Configuration of layer references. */
668
666
  layerReferences?: LayerReferenceConfigurationDc[];
669
667
  /** Values ranges. */
@@ -1408,7 +1406,7 @@ export interface CreateDirectoryDc {
1408
1406
  description?: string;
1409
1407
  /** A set of tags. */
1410
1408
  tags?: string[];
1411
- /** If true root folder will created as temporary. */
1409
+ /** If true root folder will create as temporary. */
1412
1410
  isTemporary?: boolean;
1413
1411
  }
1414
1412
  /**
@@ -2402,6 +2400,44 @@ export declare enum GeometryType {
2402
2400
  Envelope = "envelope",
2403
2401
  Multipoint = "multipoint"
2404
2402
  }
2403
+ /**
2404
+ * Get features from layer paramaters.
2405
+ */
2406
+ export interface GetBulkFeaturesParametersDc {
2407
+ /** Layer name. */
2408
+ layerName?: string;
2409
+ /** Sets features filtering query. */
2410
+ query?: string;
2411
+ /** Id of override data filter to apply to the layer. If not set, the default filter is used. */
2412
+ dataFilterId?: string;
2413
+ /**
2414
+ * Features count have to skip.
2415
+ * @format int32
2416
+ */
2417
+ offset?: number;
2418
+ /**
2419
+ * Features limit per response.
2420
+ * @format int32
2421
+ */
2422
+ limit?: number;
2423
+ /**
2424
+ * Spatial reference of returned features.
2425
+ * @format int32
2426
+ */
2427
+ wkid?: number;
2428
+ /** If set to true, the geometry will not be returned for features. */
2429
+ withGeom?: boolean;
2430
+ /**
2431
+ * Comma separated list of attributes by which to sort the resulting feature list.
2432
+ * If the attribute name is preceded with the "-" sign, sorting by this attribute will be
2433
+ * in descending order.
2434
+ */
2435
+ sort?: string[];
2436
+ /** Comma separated list of features ids. */
2437
+ ids?: string[];
2438
+ /** Comma separated list of attributes to be returned. If not set, all attributes are returned. */
2439
+ attributes?: string[];
2440
+ }
2405
2441
  /**
2406
2442
  * Get classified attribute values data contract.
2407
2443
  */
@@ -2483,6 +2519,44 @@ export interface GetFeaturesParametersDc {
2483
2519
  /** Comma separated list of attributes to be returned. If not set, all attributes are returned. */
2484
2520
  attributes?: string[];
2485
2521
  }
2522
+ /**
2523
+ * Get features parameters from one or many layers.
2524
+ */
2525
+ export interface GetFeaturesParametersFromLayersDc {
2526
+ /** Enumerable of layer names. */
2527
+ layerNames?: string[];
2528
+ /** Sets features filtering query. */
2529
+ query?: string;
2530
+ /** Id of override data filter to apply to the layer. If not set, the default filter is used. */
2531
+ dataFilterId?: string;
2532
+ /**
2533
+ * Features count have to skip.
2534
+ * @format int32
2535
+ */
2536
+ offset?: number;
2537
+ /**
2538
+ * Features limit per response.
2539
+ * @format int32
2540
+ */
2541
+ limit?: number;
2542
+ /**
2543
+ * Spatial reference of returned features.
2544
+ * @format int32
2545
+ */
2546
+ wkid?: number;
2547
+ /** If set to true, the geometry will not be returned for features. */
2548
+ withGeom?: boolean;
2549
+ /**
2550
+ * Comma separated list of attributes by which to sort the resulting feature list.
2551
+ * If the attribute name is preceded with the "-" sign, sorting by this attribute will be
2552
+ * in descending order.
2553
+ */
2554
+ sort?: string[];
2555
+ /** Comma separated list of features ids. */
2556
+ ids?: string[];
2557
+ /** Comma separated list of attributes to be returned. If not set, all attributes are returned. */
2558
+ attributes?: string[];
2559
+ }
2486
2560
  /**
2487
2561
  * Get features count with layer filter condition data contract.
2488
2562
  */
@@ -3109,7 +3183,7 @@ export declare type LinearServiceConfigurationDc = ServiceConfigurationBaseDc &
3109
3183
  * Search resources.
3110
3184
  */
3111
3185
  export interface ListResourcesDto {
3112
- /** Id of the parent. */
3186
+ /** Parent id. */
3113
3187
  parentId?: string;
3114
3188
  /**
3115
3189
  * Text filer support sql like symbols
@@ -3130,6 +3204,8 @@ export interface ListResourcesDto {
3130
3204
  resourceTypes?: CatalogResourceType[];
3131
3205
  /** Resources subtypes filter. */
3132
3206
  subtypes?: string[];
3207
+ /** Tags filter. */
3208
+ tagsFilter?: TagsFilterDto;
3133
3209
  }
3134
3210
  /**
3135
3211
  * Configuration for the local tile service.
@@ -3205,6 +3281,12 @@ export declare type MaskedImagePolygonSymbolDc = SymbolDc & {
3205
3281
  imageMask?: string | null;
3206
3282
  maskedColor?: ParameterDcColor;
3207
3283
  };
3284
+ /**
3285
+ * Configuration of a table for feature layer.
3286
+ */
3287
+ export declare type MaterializedViewConfigurationDc = TableConfigurationBaseDc & {
3288
+ type?: string | null;
3289
+ };
3208
3290
  /**
3209
3291
  * Base template model data contract.
3210
3292
  */
@@ -3308,6 +3390,12 @@ export declare enum OwnerFilter {
3308
3390
  Shared = "Shared",
3309
3391
  Public = "Public"
3310
3392
  }
3393
+ /**
3394
+ * Features list definition.
3395
+ */
3396
+ export declare type PagedBulkFeaturesListDc = PagedListFeatureDc & {
3397
+ layerName?: string | null;
3398
+ };
3311
3399
  /**
3312
3400
  * Features list definition.
3313
3401
  */
@@ -3496,6 +3584,17 @@ export interface ParameterDcString {
3496
3584
  /** Type of the parameter. Possible values are "simple", "byAttribute", "scale". */
3497
3585
  type?: string;
3498
3586
  }
3587
+ /**
3588
+ * Patch resource request.
3589
+ */
3590
+ export interface PatchResourceDc {
3591
+ /** Description of the directory. */
3592
+ name?: string;
3593
+ /** Description of the directory. */
3594
+ description?: string;
3595
+ /** A set of tags. */
3596
+ tags?: string[];
3597
+ }
3499
3598
  /**
3500
3599
  * Provides image pattern brush properties.
3501
3600
  */
@@ -4323,29 +4422,6 @@ export interface RasterVrtFeatureSourceDc {
4323
4422
  */
4324
4423
  id: number;
4325
4424
  }
4326
- /**
4327
- *
4328
-
4329
- OneToMany
4330
-
4331
- OneToOne
4332
-
4333
- Intersect
4334
-
4335
- RightJoin
4336
-
4337
- FullJoin
4338
-
4339
- CrossJoin
4340
- */
4341
- export declare enum ReferenceJoinType {
4342
- OneToMany = "OneToMany",
4343
- OneToOne = "OneToOne",
4344
- Intersect = "Intersect",
4345
- RightJoin = "RightJoin",
4346
- FullJoin = "FullJoin",
4347
- CrossJoin = "CrossJoin"
4348
- }
4349
4425
  /**
4350
4426
  * Data contract for register new user.
4351
4427
  */
@@ -4674,7 +4750,7 @@ export interface SearchResourcesDto {
4674
4750
  */
4675
4751
  ownerFilter?: OwnerFilter;
4676
4752
  /** Tags filter. */
4677
- tags?: string[];
4753
+ tagsFilter?: TagsFilterDto;
4678
4754
  /** Resources types filter. */
4679
4755
  resourceTypes?: CatalogResourceType[];
4680
4756
  /** Resources subtypes filter. */
@@ -5442,47 +5518,12 @@ export declare type TableInfoDc = ResourceInfoDc & {
5442
5518
  rowCount?: number;
5443
5519
  geometries?: GeometryType[] | null;
5444
5520
  type?: string | null;
5445
- configuration?: DefaultTableConfigurationDc | RouteTableConfigurationDc | TileCatalogTableConfigurationDc | ViewConfigurationDc | null;
5521
+ configuration?: DefaultTableConfigurationDc | MaterializedViewConfigurationDc | RouteTableConfigurationDc | TileCatalogTableConfigurationDc | ViewConfigurationDc | null;
5446
5522
  };
5447
5523
  /**
5448
5524
  * The `TableListDc` class provides list of tables info SPCore.Connectors.Connectors.Base.Models.Data.TableInfoDc.
5449
5525
  */
5450
5526
  export declare type TableListDc = PagedListTableInfoDc & object;
5451
- /**
5452
- * Configuration of a related table for feature layer.
5453
- */
5454
- export interface TableReferenceConfigurationDc {
5455
- /** The name of the table. */
5456
- tableName: string;
5457
- /** The column name in the base table that is used for foreign key relationship. */
5458
- referenceColumn: string;
5459
- /** The column name in the related table that is used for foreign key relationship. */
5460
- targetColumn: string;
5461
- /** Configuration of the attributes that get values from this table. */
5462
- attributes: (AttributeConfigurationDc | EqlAttributeConfigurationDc)[];
5463
- /** Child related tables configurations. */
5464
- tableReferences?: TableReferenceConfigurationDc[];
5465
- /**
5466
- *
5467
- *
5468
- * OneToMany
5469
- *
5470
- * OneToOne
5471
- *
5472
- * Intersect
5473
- *
5474
- * RightJoin
5475
- *
5476
- * FullJoin
5477
- *
5478
- * CrossJoin
5479
- */
5480
- joinType?: ReferenceJoinType;
5481
- /** Condition to referenced table. */
5482
- condition?: string;
5483
- /** Table reference unique id. */
5484
- referenceId?: string;
5485
- }
5486
5527
  /**
5487
5528
  * Data storage that allows accessing features directly from the tables.
5488
5529
  */
@@ -5499,6 +5540,18 @@ export interface TagInfoDc {
5499
5540
  /** If sets true. */
5500
5541
  isSystem?: boolean;
5501
5542
  }
5543
+ /**
5544
+ * Tags filter.
5545
+ */
5546
+ export interface TagsFilterDto {
5547
+ /** Tags set. */
5548
+ tags?: string[];
5549
+ /**
5550
+ * AND vs OR. The AND operator displays a record if all the conditions are TRUE.
5551
+ * The OR operator displays a record if any of the conditions are TRUE.
5552
+ */
5553
+ useAnd?: boolean;
5554
+ }
5502
5555
  /**
5503
5556
  * Task owner group.
5504
5557
 
@@ -6560,6 +6613,21 @@ export interface GetAllParams {
6560
6613
  */
6561
6614
  ownerFilter?: OwnerFilter;
6562
6615
  }
6616
+ export interface GetTagsParams {
6617
+ /** Text filter. */
6618
+ filter?: string;
6619
+ /**
6620
+ * Limit response page.
6621
+ * @format int32
6622
+ */
6623
+ limit?: number;
6624
+ /**
6625
+ * Offset objects from start.
6626
+ * @format int32
6627
+ */
6628
+ offset?: number;
6629
+ }
6630
+ export declare type PutTagsPayload = string[];
6563
6631
  export interface SearchResourcesParams {
6564
6632
  /**
6565
6633
  * Limit response page.
@@ -6584,7 +6652,7 @@ export interface CreateFilePayload {
6584
6652
  file?: File;
6585
6653
  /**
6586
6654
  * Rewrite flag
6587
- * If true - rewrite file if exist. If false - return error.
6655
+ * If true - rewrite file if exists. If false - return error.
6588
6656
  */
6589
6657
  rewrite?: boolean;
6590
6658
  /** Description of the file. */
@@ -6634,7 +6702,7 @@ export interface SetLayerParameterValueParams {
6634
6702
  /** Layer parameter value. */
6635
6703
  value?: string;
6636
6704
  }
6637
- export declare type SetLayerParametersPayload = Record<string, string>;
6705
+ export declare type SetLayerParametersPayload = Record<string, any>;
6638
6706
  export interface SetLayerParametersParams {
6639
6707
  /** Layer name. */
6640
6708
  layerName?: string;
@@ -6806,6 +6874,7 @@ export interface GetRasterMetaParams {
6806
6874
  /** Raster filename. */
6807
6875
  fileName?: string;
6808
6876
  }
6877
+ export declare type GetBulkFeaturesPayload = GetBulkFeaturesParametersDc[];
6809
6878
  export interface GetLayersListParams {
6810
6879
  /**
6811
6880
  * Full text query filter that allow to query in alias and name fields.
@@ -7270,7 +7339,7 @@ export interface ValidateExpressionParams {
7270
7339
  /** Layer name. */
7271
7340
  layerName: string;
7272
7341
  }
7273
- export interface GetRasterMetaParams7 {
7342
+ export interface GetRasterMetaParams9 {
7274
7343
  /**
7275
7344
  * Min value for build histogram.
7276
7345
  * @format double
@@ -7397,7 +7466,7 @@ export interface GetProjectsListParams {
7397
7466
  tags?: string[];
7398
7467
  }
7399
7468
  export declare type SetPermissionsBatchBody = ResourceAclDc[];
7400
- export interface DeleteResourcesParams4 {
7469
+ export interface DeleteResourcesParams5 {
7401
7470
  /** Resource names. */
7402
7471
  names?: string[];
7403
7472
  }
@@ -7680,7 +7749,7 @@ export interface StatisticsDbParams {
7680
7749
  */
7681
7750
  types?: AggregationFunction[];
7682
7751
  }
7683
- export interface ClassifyParams2 {
7752
+ export interface ClassifyParams5 {
7684
7753
  /** Layer name. */
7685
7754
  name: string;
7686
7755
  /** Attribute name. */
@@ -7813,7 +7882,7 @@ export interface GetTableListParams {
7813
7882
  acl?: string;
7814
7883
  }
7815
7884
  export declare type SetPermissionsBatchInput = ResourceAclDc[];
7816
- export interface DeleteResourcesParams5 {
7885
+ export interface DeleteResourcesParams2 {
7817
7886
  /** Resource names. */
7818
7887
  names?: string[];
7819
7888
  }
@@ -7881,7 +7950,7 @@ export interface SetPreviewInput {
7881
7950
  /** @format binary */
7882
7951
  file?: File;
7883
7952
  }
7884
- export interface GetAllParams6 {
7953
+ export interface GetAllParams9 {
7885
7954
  /** Text filter. */
7886
7955
  filter?: string;
7887
7956
  /**
@@ -7970,7 +8039,7 @@ export interface GetPublicCapabilitiesParams {
7970
8039
  /** When omitted or not supported by server, server shall return service metadata document using the MIME type "text/xml". */
7971
8040
  AcceptFormats?: string[];
7972
8041
  }
7973
- export interface GetCapabilitiesParams6 {
8042
+ export interface GetCapabilitiesParams3 {
7974
8043
  /** Output format of service metadata. */
7975
8044
  Format?: string;
7976
8045
  /** Must be WMS. */
@@ -577,6 +577,38 @@ let CatalogService = /*#__PURE__*/function (_Service) {
577
577
  value: function postGetAll(data) {
578
578
  return this.http.post("/resources", data).json();
579
579
  }
580
+ /**
581
+ * No description
582
+ *
583
+ * @tags Catalog
584
+ * @name GetTags
585
+ * @operationId CatalogController_GetTags
586
+ * @summary Get all tags of given user.
587
+ * @request GET:/resources/tags
588
+ * @response `200` OK
589
+ */
590
+
591
+ }, {
592
+ key: "getTags",
593
+ value: function getTags(query) {
594
+ return this.http.get("/resources/tags", query).json();
595
+ }
596
+ /**
597
+ * No description
598
+ *
599
+ * @tags Catalog
600
+ * @name PutTags
601
+ * @operationId CatalogController_PutTags
602
+ * @summary Put tags to resource.
603
+ * @request PUT:/resources/{resourceId}/tags
604
+ * @response `200` OK
605
+ */
606
+
607
+ }, {
608
+ key: "putTags",
609
+ value: function putTags(resourceId, data) {
610
+ return this.http.put("/resources/" + resourceId + "/tags", data).json();
611
+ }
580
612
  /**
581
613
  * No description
582
614
  *
@@ -609,6 +641,22 @@ let CatalogService = /*#__PURE__*/function (_Service) {
609
641
  value: function getResource(resourceId) {
610
642
  return this.http.get("/resources/" + resourceId).json();
611
643
  }
644
+ /**
645
+ * No description
646
+ *
647
+ * @tags Catalog
648
+ * @name PatchResource
649
+ * @operationId CatalogController_PatchResource
650
+ * @summary Update directory.
651
+ * @request PATCH:/resources/{resourceId}
652
+ * @response `200` OK
653
+ */
654
+
655
+ }, {
656
+ key: "patchResource",
657
+ value: function patchResource(resourceId, data) {
658
+ return this.http.patch("/resources/" + resourceId, data).json();
659
+ }
612
660
  /**
613
661
  * No description
614
662
  *
@@ -3140,8 +3188,37 @@ let LayersService = /*#__PURE__*/function (_Service) {
3140
3188
  }
3141
3189
 
3142
3190
  _createClass(LayersService, [{
3143
- key: "getLayersList",
3191
+ key: "getBulkFeatures",
3144
3192
  value:
3193
+ /**
3194
+ * No description
3195
+ *
3196
+ * @tags Layers
3197
+ * @name GetBulkFeatures
3198
+ * @operationId LayersController_GetBulkFeatures
3199
+ * @summary Returns list of the layer features.
3200
+ * @request POST:/bulk/layers/features/query
3201
+ * @response `200` OK
3202
+ */
3203
+ function getBulkFeatures(data) {
3204
+ return this.http.post("/bulk/layers/features/query", data).json();
3205
+ }
3206
+ /**
3207
+ * No description
3208
+ *
3209
+ * @tags Layers
3210
+ * @name GetFeaturesFromLayers
3211
+ * @operationId LayersController_GetFeaturesFromLayers
3212
+ * @summary Returns list of the layer features.
3213
+ * @request POST:/layers/features/query
3214
+ * @response `200` OK
3215
+ */
3216
+
3217
+ }, {
3218
+ key: "getFeaturesFromLayers",
3219
+ value: function getFeaturesFromLayers(data) {
3220
+ return this.http.post("/layers/features/query", data).json();
3221
+ }
3145
3222
  /**
3146
3223
  * No description
3147
3224
  *
@@ -3152,7 +3229,10 @@ let LayersService = /*#__PURE__*/function (_Service) {
3152
3229
  * @request GET:/layers
3153
3230
  * @response `200` OK
3154
3231
  */
3155
- function getLayersList(query) {
3232
+
3233
+ }, {
3234
+ key: "getLayersList",
3235
+ value: function getLayersList(query) {
3156
3236
  return this.http.get("/layers", query).json();
3157
3237
  }
3158
3238
  /**
@@ -8148,15 +8228,6 @@ function isFeatureLayer(layer) {
8148
8228
  Quality["High"] = "High";
8149
8229
  })(exports.Quality || (exports.Quality = {}));
8150
8230
 
8151
- (function (ReferenceJoinType) {
8152
- ReferenceJoinType["OneToMany"] = "OneToMany";
8153
- ReferenceJoinType["OneToOne"] = "OneToOne";
8154
- ReferenceJoinType["Intersect"] = "Intersect";
8155
- ReferenceJoinType["RightJoin"] = "RightJoin";
8156
- ReferenceJoinType["FullJoin"] = "FullJoin";
8157
- ReferenceJoinType["CrossJoin"] = "CrossJoin";
8158
- })(exports.ReferenceJoinType || (exports.ReferenceJoinType = {}));
8159
-
8160
8231
  (function (ResourceType) {
8161
8232
  ResourceType["Unknown"] = "Unknown";
8162
8233
  ResourceType["Table"] = "table";