@evergis/api 3.0.192 → 3.0.194

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/LICENSE CHANGED
@@ -1,21 +1,21 @@
1
- MIT License
2
-
3
- Copyright (c) 2020 Kirill Protasov
4
-
5
- Permission is hereby granted, free of charge, to any person obtaining a copy
6
- of this software and associated documentation files (the "Software"), to deal
7
- in the Software without restriction, including without limitation the rights
8
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
- copies of the Software, and to permit persons to whom the Software is
10
- furnished to do so, subject to the following conditions:
11
-
12
- The above copyright notice and this permission notice shall be included in all
13
- copies or substantial portions of the Software.
14
-
15
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
1
+ MIT License
2
+
3
+ Copyright (c) 2020 Kirill Protasov
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
21
  SOFTWARE.
package/README.md CHANGED
@@ -1,21 +1,21 @@
1
- # @evergis/api
2
-
3
- ```javascript
4
- import { Api } from '@evergis/api';
5
-
6
- const api = new Api({
7
- url: '/',
8
- });
9
- ```
10
-
11
- ## Possible Environment variables
12
-
13
- ```
14
-
15
- NODE_ENV = "development" | "test" | "production"
16
- URL = "string"
17
- LOGIN = "string"
18
- PASSWORD = "string"
19
- WORKSPACE = "string"
20
-
21
- ```
1
+ # @evergis/api
2
+
3
+ ```javascript
4
+ import { Api } from '@evergis/api';
5
+
6
+ const api = new Api({
7
+ url: '/',
8
+ });
9
+ ```
10
+
11
+ ## Possible Environment variables
12
+
13
+ ```
14
+
15
+ NODE_ENV = "development" | "test" | "production"
16
+ URL = "string"
17
+ LOGIN = "string"
18
+ PASSWORD = "string"
19
+ WORKSPACE = "string"
20
+
21
+ ```
package/dist/Api.d.ts CHANGED
@@ -6,8 +6,8 @@ import { QueryTokenAccessService } from './__generated__/QueryTokenAccessService
6
6
  import { SpatialReferencesService } from './__generated__/SpatialReferencesService';
7
7
  import { UniversalSearchService } from './__generated__/UniversalSearchService';
8
8
  import { CatalogService } from './__generated__/CatalogService';
9
- import { Account, AccountPreview, BulkOperations, Cameras, ClientSettings, External, EqlTest, Feedback, FileUpload, Filters, General, Geocode, IceRouter, Import, Layers, Names, Namespace, Notification, PortalSettings, Print, Projects, ResourceCatalog, Resources, Scheduler, Security, Statistic, Styles, Tables, Tools, VectorTiles } from './services';
10
- import { LoginDc } from './__generated__/data-contracts';
9
+ import { Account, AccountPreview, BulkOperations, Cameras, ClientSettings, External, Eql, Feedback, FileUpload, Filters, General, Geocode, IceRouter, Import, Layers, Names, Namespace, Notification, PortalSettings, Print, Projects, ResourceCatalog, Resources, Scheduler, Security, Statistic, Styles, Tables, Tools, VectorTiles } from './services';
10
+ import { AuthenticateParams, LoginDc } from './__generated__/data-contracts';
11
11
  export declare type ApiParams = {
12
12
  url: string;
13
13
  wsUrl?: string;
@@ -61,12 +61,13 @@ export declare class Api extends EventEmitter {
61
61
  readonly vectorTiles: VectorTiles;
62
62
  readonly universalSearch: UniversalSearchService;
63
63
  readonly spatialReference: SpatialReferencesService;
64
- readonly eqlTest: EqlTest;
64
+ readonly eql: Eql;
65
65
  readonly catalog: CatalogService;
66
66
  readonly queryToken: QueryTokenAccessService;
67
67
  constructor({ url, wsUrl, wsKeepAlive, snappingHubUrl, http, urlPath, httpOptions, }: ApiParams);
68
- init({ authParams, connectWs, initScheduler, fetchSettings, fetchUser, }: {
68
+ init({ authParams, authQueryParams, connectWs, initScheduler, fetchSettings, fetchUser, }: {
69
69
  authParams?: LoginDc;
70
+ authQueryParams?: AuthenticateParams;
70
71
  connectWs?: boolean;
71
72
  connectSignalR?: boolean;
72
73
  initScheduler?: boolean;
@@ -1,4 +1,4 @@
1
- import { ChangeEmailParams, ChangePasswordPayload, ConfirmChangeEmailParams, ConfirmEmail1Params, CreateRoleDc, CreateUserDc, CreateUserParams, ExtendedUserInfoDc, GetExtendedUsersParams, GetRolesParams, GetUsersParams, IsEmailExistsParams, IsUsernameExistsParams, LoginDc, PagedListExtendedUserInfoDc, PagedListRoleInfoDc, PagedListUserInfoDc, RegisterUserDc, ResetPasswordCallbackPayload, ResetPasswordParams, SetEmailPayload, UpdateRoleDc, UpdateUserDc, UsedProjectDc, UserInfoDc } from './data-contracts';
1
+ import { AuthenticateParams, ChangeEmailParams, ChangePasswordPayload, ConfirmChangeEmailParams, ConfirmEmail1Params, CreateRoleDc, CreateUserDc, CreateUserParams, ExtendedUserInfoDc, GetExtendedUsersParams, GetRolesParams, GetUsersParams, IsEmailExistsParams, IsUsernameExistsParams, LoginDc, PagedListExtendedUserInfoDc, PagedListRoleInfoDc, PagedListUserInfoDc, RegisterClientRequestDc, RegisterClientResponseDc, RegisterUserDc, ResetPasswordCallbackPayload, ResetPasswordParams, SetEmailPayload, TokenRequestDc, TokenResponseDc, UpdateRoleDc, UpdateUserDc, UsedProjectDc, UserInfoDc } from './data-contracts';
2
2
  import { Service } from './Service';
3
3
  /**
4
4
  * @title Spatial Processing Core API
@@ -258,7 +258,7 @@ export declare class AccountService extends Service {
258
258
  * @request POST:/account/login
259
259
  * @response `200` OK
260
260
  */
261
- authenticate(data: LoginDc): Promise<string>;
261
+ authenticate(query: AuthenticateParams, data: LoginDc): Promise<string>;
262
262
  /**
263
263
  * No description
264
264
  *
@@ -292,6 +292,39 @@ export declare class AccountService extends Service {
292
292
  * @response `200` OK
293
293
  */
294
294
  ldapLogin(data: LoginDc): Promise<void>;
295
+ /**
296
+ * No description
297
+ *
298
+ * @tags Account
299
+ * @name RegisterClient
300
+ * @operationId AccountController_RegisterClient
301
+ * @summary Register new client.
302
+ * @request POST:/account/oauth2/client
303
+ * @response `200` OK
304
+ */
305
+ registerClient(data: RegisterClientRequestDc): Promise<RegisterClientResponseDc>;
306
+ /**
307
+ * No description
308
+ *
309
+ * @tags Account
310
+ * @name UnbindClient
311
+ * @operationId AccountController_UnbindClient
312
+ * @summary Unbind client with id.
313
+ * @request DELETE:/account/oauth2/client/{clientId}
314
+ * @response `200` OK
315
+ */
316
+ unbindClient(clientId: string): Promise<void>;
317
+ /**
318
+ * No description
319
+ *
320
+ * @tags Account
321
+ * @name Token
322
+ * @operationId AccountController_Token
323
+ * @summary Get access token request.
324
+ * @request POST:/account/oauth2/token
325
+ * @response `200` OK
326
+ */
327
+ token(data: TokenRequestDc): Promise<TokenResponseDc>;
295
328
  /**
296
329
  * No description
297
330
  *
@@ -1,4 +1,4 @@
1
- import { AccessControlListDc, CatalogResourceDc, CreateDirectoryDc, CreateFilePayload, GetAllParams, GetTagsParams, ListResourcesDto, MoveResourceDc, PatchResourceDc, PutTagsPayload, ResourceAclDc, SearchResourcesDto, SearchResourcesParams, SetPermissionsPayload } from './data-contracts';
1
+ import { AccessControlListDc, CatalogResourceDc, CreateDirectoryDc, CreateFilePayload, GetAllParams, GetTagsParams, ListResourcesDto, MoveResourceDc, PagedResourcesListDc, PatchResourceDc, PostGetAllParams, PutTagsPayload, SearchResourcesDto, SearchResourcesParams, SetPermissionsPayload } from './data-contracts';
2
2
  import { Service } from './Service';
3
3
  /**
4
4
  * @title Spatial Processing Core API
@@ -27,7 +27,7 @@ export declare class CatalogService extends Service {
27
27
  * @request POST:/resources
28
28
  * @response `200` OK
29
29
  */
30
- postGetAll(data: ListResourcesDto): Promise<CatalogResourceDc[]>;
30
+ postGetAll(query: PostGetAllParams, data: ListResourcesDto): Promise<CatalogResourceDc[]>;
31
31
  /**
32
32
  * No description
33
33
  *
@@ -60,7 +60,7 @@ export declare class CatalogService extends Service {
60
60
  * @request POST:/resources/search
61
61
  * @response `200` OK
62
62
  */
63
- searchResources(query: SearchResourcesParams, data: SearchResourcesDto): Promise<CatalogResourceDc[]>;
63
+ searchResources(query: SearchResourcesParams, data: SearchResourcesDto): Promise<PagedResourcesListDc>;
64
64
  /**
65
65
  * No description
66
66
  *
@@ -148,7 +148,7 @@ export declare class CatalogService extends Service {
148
148
  * @request PUT:/resources/{resourceId}/permissions
149
149
  * @response `200` OK
150
150
  */
151
- setPermissions1(resourceId: string, data: AccessControlListDc): Promise<AccessControlListDc>;
151
+ setPermissions1(resourceId: string, data: AccessControlListDc): Promise<void>;
152
152
  /**
153
153
  * No description
154
154
  *
@@ -159,7 +159,7 @@ export declare class CatalogService extends Service {
159
159
  * @request PUT:/resources/permissions
160
160
  * @response `200` OK
161
161
  */
162
- setPermissions(data: SetPermissionsPayload): Promise<ResourceAclDc[]>;
162
+ setPermissions(data: SetPermissionsPayload): Promise<void>;
163
163
  /**
164
164
  * No description
165
165
  *
@@ -171,4 +171,15 @@ export declare class CatalogService extends Service {
171
171
  * @response `200` OK
172
172
  */
173
173
  downloadFile(resourceId: string): Promise<Blob>;
174
+ /**
175
+ * No description
176
+ *
177
+ * @tags Catalog
178
+ * @name CleanResources
179
+ * @operationId CatalogController_CleanResources
180
+ * @summary Clean user resources.
181
+ * @request POST:/resources/clean
182
+ * @response `200` OK
183
+ */
184
+ cleanResources(): Promise<void>;
174
185
  }
@@ -5,13 +5,13 @@ import { Service } from './Service';
5
5
  * @version 1.5.1.0
6
6
  * @baseUrl /sp
7
7
  */
8
- export declare class EqlTestService extends Service {
8
+ export declare class EqlService extends Service {
9
9
  /**
10
10
  * No description
11
11
  *
12
- * @tags EqlTest
12
+ * @tags Eql
13
13
  * @name GetQueryResult
14
- * @operationId EqlTestController_GetQueryResult
14
+ * @operationId EqlController_GetQueryResult
15
15
  * @summary Perform resources set acl access batch operation.
16
16
  * @request POST:/eql/query
17
17
  * @response `200` OK
@@ -20,9 +20,9 @@ export declare class EqlTestService extends Service {
20
20
  /**
21
21
  * No description
22
22
  *
23
- * @tags EqlTest
23
+ * @tags Eql
24
24
  * @name GetQueryDescription
25
- * @operationId EqlTestController_GetQueryDescription
25
+ * @operationId EqlController_GetQueryDescription
26
26
  * @summary Get EQL result columns definitions.
27
27
  * @request POST:/eql/description
28
28
  * @response `200` OK
@@ -31,9 +31,9 @@ export declare class EqlTestService extends Service {
31
31
  /**
32
32
  * No description
33
33
  *
34
- * @tags EqlTest
34
+ * @tags Eql
35
35
  * @name SetLayerParameterValue
36
- * @operationId EqlTestController_SetLayerParameterValue
36
+ * @operationId EqlController_SetLayerParameterValue
37
37
  * @summary Set EQL layer parameter.
38
38
  * @request POST:/eql/setParam
39
39
  * @response `200` OK
@@ -42,9 +42,9 @@ export declare class EqlTestService extends Service {
42
42
  /**
43
43
  * No description
44
44
  *
45
- * @tags EqlTest
45
+ * @tags Eql
46
46
  * @name SetLayerParameters
47
- * @operationId EqlTestController_SetLayerParameters
47
+ * @operationId EqlController_SetLayerParameters
48
48
  * @summary Set EQL layer parameters.
49
49
  * @request POST:/eql/setParams
50
50
  * @response `200` OK
@@ -53,9 +53,9 @@ export declare class EqlTestService extends Service {
53
53
  /**
54
54
  * No description
55
55
  *
56
- * @tags EqlTest
56
+ * @tags Eql
57
57
  * @name GetLayerParameters
58
- * @operationId EqlTestController_GetLayerParameters
58
+ * @operationId EqlController_GetLayerParameters
59
59
  * @summary Get EQL parameter.
60
60
  * @request GET:/eql/getParam
61
61
  * @response `200` OK
@@ -64,9 +64,9 @@ export declare class EqlTestService extends Service {
64
64
  /**
65
65
  * No description
66
66
  *
67
- * @tags EqlTest
67
+ * @tags Eql
68
68
  * @name GetLayerParameters1
69
- * @operationId EqlTestController_GetLayerParameters_1
69
+ * @operationId EqlController_GetLayerParameters_1
70
70
  * @summary Get all EQL parameters.
71
71
  * @request GET:/eql/getParams
72
72
  * @response `200` OK
@@ -75,9 +75,9 @@ export declare class EqlTestService extends Service {
75
75
  /**
76
76
  * No description
77
77
  *
78
- * @tags EqlTest
78
+ * @tags Eql
79
79
  * @name RemoveLayerParameterValue
80
- * @operationId EqlTestController_RemoveLayerParameterValue
80
+ * @operationId EqlController_RemoveLayerParameterValue
81
81
  * @summary Remove EQL layer parameter.
82
82
  * @request DELETE:/eql/removeParam
83
83
  * @response `200` OK
@@ -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, 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';
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, GetFilteredFeaturesCountDc, GetFilteredFeaturesCountParams, GetLayerExtentParams, GetLayerImageParams, GetLayersInfoParams, GetLayersListParams, GetRasterMetaParams3, 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
@@ -17,17 +17,6 @@ export declare class LayersService extends Service {
17
17
  * @response `200` OK
18
18
  */
19
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[]>;
31
20
  /**
32
21
  * No description
33
22
  *
@@ -600,7 +589,7 @@ export declare class LayersService extends Service {
600
589
  * @request GET:/layers/{name}/{id}/metadata
601
590
  * @response `200` OK
602
591
  */
603
- getRasterMeta({ name, id, ...query }: GetRasterMetaParams9): Promise<(RasterMetaDc | NetCdfMetaDc)[]>;
592
+ getRasterMeta({ name, id, ...query }: GetRasterMetaParams3): Promise<(RasterMetaDc | NetCdfMetaDc)[]>;
604
593
  /**
605
594
  * No description
606
595
  *
@@ -1,4 +1,4 @@
1
- import { AccessControlListDc, BulkOperationResultDc, DeleteResourcesParams5, ExtendedProjectInfoDc, ExtendedProjectLayersInfo, FileUploadResponse, GetProjectsInfoParams, GetProjectsListParams, PagedListProjectInfoDc, ProjectsListDc, ResourceDependenciesDc, SetPermissionsBatchBody, SetPreviewBody } from './data-contracts';
1
+ import { AccessControlListDc, BulkOperationResultDc, DeleteResourcesParams4, 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: DeleteResourcesParams5): Promise<BulkOperationResultDc[]>;
52
+ deleteResources(query: DeleteResourcesParams4): Promise<BulkOperationResultDc[]>;
53
53
  /**
54
54
  * No description
55
55
  *
@@ -1,4 +1,4 @@
1
- import { ClassifyDc, ClassifyParams5, GetClassifyDc, GetStatisticsDc, GetSumOfProductDc, StatisticsDbParams, StatisticsDc, SumOfProductParams } from './data-contracts';
1
+ import { ClassifyDc, ClassifyParams4, 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: ClassifyParams5): Promise<ClassifyDc>;
41
+ classify(query: ClassifyParams4): Promise<ClassifyDc>;
42
42
  /**
43
43
  * No description
44
44
  *
@@ -1,4 +1,4 @@
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';
1
+ import { AccessControlListDc, BulkOperationResultDc, CreateViewFromQueryLayerDc, DeleteResourcesParams10, 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,18 @@ export declare class TablesService extends Service {
49
49
  * @request DELETE:/tables
50
50
  * @response `200` OK
51
51
  */
52
- deleteResources(query: DeleteResourcesParams2): Promise<BulkOperationResultDc[]>;
52
+ deleteResources(query: DeleteResourcesParams10): Promise<BulkOperationResultDc[]>;
53
+ /**
54
+ * No description
55
+ *
56
+ * @tags Tables
57
+ * @name CreateViewFromQueryLayer
58
+ * @operationId TablesController_CreateViewFromQueryLayer
59
+ * @summary Creates a new view from query layer.
60
+ * @request POST:/tables/fromLayer
61
+ * @response `200` OK
62
+ */
63
+ createViewFromQueryLayer(data: CreateViewFromQueryLayerDc): Promise<DetailedTableInfoDc>;
53
64
  /**
54
65
  * No description
55
66
  *
@@ -1,4 +1,4 @@
1
- import { GetAllParams9, PagedListTagInfoDc } from './data-contracts';
1
+ import { GetAllParams3, 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: GetAllParams9): Promise<PagedListTagInfoDc>;
19
+ getAll(query: GetAllParams3): Promise<PagedListTagInfoDc>;
20
20
  /**
21
21
  * No description
22
22
  *
@@ -1,4 +1,4 @@
1
- import { GetSearchResultParams, PagedListSearchResultDc, SearchResultDc } from './data-contracts';
1
+ import { PagedListSearchResultDc, SearchResultDc, SearchResultDcGetSearchResultParams } from './data-contracts';
2
2
  import { Service } from './Service';
3
3
  /**
4
4
  * @title Spatial Processing Core API
@@ -10,22 +10,22 @@ export declare class UniversalSearchService extends Service {
10
10
  * No description
11
11
  *
12
12
  * @tags UniversalSearch
13
- * @name GetSearchResult
14
- * @operationId UniversalSearchController_GetSearchResult
13
+ * @name SearchResultDcGetSearchResult
14
+ * @operationId UniversalSearchController_SearchResultDcGetSearchResult
15
15
  * @summary Returns search result.
16
16
  * @request GET:/search/{taskId}/{layerName}
17
17
  * @response `200` OK
18
18
  */
19
- getSearchResult({ taskId, layerName, ...query }: GetSearchResultParams): Promise<PagedListSearchResultDc>;
19
+ searchResultDcGetSearchResult({ taskId, layerName, ...query }: SearchResultDcGetSearchResultParams): Promise<PagedListSearchResultDc>;
20
20
  /**
21
21
  * No description
22
22
  *
23
23
  * @tags UniversalSearch
24
- * @name GetSearchResult1
25
- * @operationId UniversalSearchController_GetSearchResult_1
24
+ * @name GetSearchResult
25
+ * @operationId UniversalSearchController_GetSearchResult
26
26
  * @summary Returns search result.
27
27
  * @request GET:/search/{taskId}
28
28
  * @response `200` OK
29
29
  */
30
- getSearchResult1(taskId: string): Promise<SearchResultDc[]>;
30
+ getSearchResult(taskId: string): Promise<SearchResultDc[]>;
31
31
  }
@@ -1,4 +1,4 @@
1
- import { GetCapabilities1Params, GetCapabilitiesParams3, GetFeatureInfoParams, GetLegendGraphicParams, GetMapParams } from './data-contracts';
1
+ import { GetCapabilities1Params, GetCapabilitiesParams7, 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: GetCapabilitiesParams3): Promise<void>;
19
+ getCapabilities(query: GetCapabilitiesParams7): Promise<void>;
20
20
  /**
21
21
  * No description
22
22
  *