@evergis/api 4.0.4 → 4.0.7
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/Api.d.ts +1 -4
- package/dist/__generated__/EqlService.d.ts +12 -1
- package/dist/__generated__/GeneralService.d.ts +1 -12
- package/dist/__generated__/LayersService.d.ts +36 -223
- package/dist/__generated__/ProjectsService.d.ts +7 -84
- package/dist/__generated__/PythonService.d.ts +2 -46
- package/dist/__generated__/QueryTokenAccessService.d.ts +11 -4
- package/dist/__generated__/RemoteTaskManagerService.d.ts +65 -131
- package/dist/__generated__/StatisticService.d.ts +2 -2
- package/dist/__generated__/TablesService.d.ts +2 -101
- package/dist/__generated__/WmsServerService.d.ts +2 -2
- package/dist/__generated__/data-contracts.d.ts +759 -1290
- package/dist/api.cjs.development.js +378 -1336
- 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 +362 -1311
- package/dist/api.esm.js.map +1 -1
- package/dist/services/FileUpload.d.ts +3 -3
- package/dist/services/Layers.d.ts +4 -10
- package/dist/services/Projects.d.ts +1 -2
- package/dist/services/Tables.d.ts +1 -2
- package/dist/services/VectorTiles.d.ts +1 -1
- package/dist/services/index.d.ts +0 -1
- package/package.json +2 -2
- package/dist/__generated__/NamespaceService.d.ts +0 -53
- package/dist/__generated__/NavigationService.d.ts +0 -20
- package/dist/__generated__/S3Service.d.ts +0 -86
- package/dist/__generated__/StaticContentService.d.ts +0 -53
- package/dist/__generated__/TagsService.d.ts +0 -31
- package/dist/__generated__/UniversalSearchService.d.ts +0 -31
- package/dist/services/Namespace.d.ts +0 -3
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
2
|
-
export declare class FileUpload extends
|
|
3
|
-
upload(file: File, rewrite?: boolean): Promise<import("..").
|
|
1
|
+
import { CatalogService } from '../__generated__/CatalogService';
|
|
2
|
+
export declare class FileUpload extends CatalogService {
|
|
3
|
+
upload(file: File, rewrite?: boolean): Promise<import("..").CatalogResourceDc>;
|
|
4
4
|
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { RemoteTileServiceConfigurationDc, ServiceListDc, ServiceInfoDc, ResourceDependenciesDc, TableInfoDc, GetLayersListParams, QueryLayerServiceConfigurationDc, PublishProxyServicePayload, UpdateProxyServicePayload } from '../__generated__/data-contracts';
|
|
2
2
|
import { LayersService } from '../__generated__/LayersService';
|
|
3
3
|
import { ResourceService } from '../interfaces/ResourceService';
|
|
4
4
|
declare type GetListParams = Omit<GetLayersListParams, 'types'>;
|
|
@@ -11,23 +11,17 @@ export declare type LayersWithDeps = {
|
|
|
11
11
|
tables: TableInfoDc[];
|
|
12
12
|
};
|
|
13
13
|
};
|
|
14
|
-
export declare class Layers extends LayersService implements ResourceService {
|
|
14
|
+
export declare class Layers extends LayersService implements Partial<ResourceService> {
|
|
15
15
|
getLayerInfos(layers: string[]): Promise<ServiceInfoDc[]>;
|
|
16
16
|
getLayersDeps(layers: string[]): Promise<ResourceDependenciesDc[]>;
|
|
17
17
|
getBasemaps(params: GetListParams): Promise<ServiceListDc>;
|
|
18
|
-
createSubLayer(configuration: StyledLayerServiceConfigurationDc): Promise<import("../__generated__/data-contracts").FeatureLayerServiceInfoDc>;
|
|
19
|
-
createTileLayer({ remote, ...configuration }: CreateTileLayerParams): Promise<import("../__generated__/data-contracts").TileServiceInfoDc | import("../__generated__/data-contracts").RemoteTileServiceInfoDc>;
|
|
20
|
-
updateTileLayer({ remote, ...configuration }: CreateTileLayerParams): Promise<import("../__generated__/data-contracts").TileServiceInfoDc | import("../__generated__/data-contracts").RemoteTileServiceInfoDc> | Promise<import("../__generated__/data-contracts").RemoteTileServiceInfo>;
|
|
21
|
-
uploadPreview(name: string, file: File): Promise<FileUploadResponse>;
|
|
22
18
|
findOne(name: string): Promise<import("../__generated__/data-contracts").ResourceInfoDc | ServiceInfoDc>;
|
|
23
19
|
findMany(layerNames: string[], projectNames?: string[]): Promise<(import("../__generated__/data-contracts").ResourceInfoDc | ServiceInfoDc)[]>;
|
|
24
20
|
findAll(params: GetLayersListParams): Promise<ServiceListDc>;
|
|
25
|
-
create(configuration: PostgresLayerServiceConfigurationDc): Promise<import("../__generated__/data-contracts").FeatureLayerServiceInfoDc>;
|
|
26
|
-
update(configuration: PostgresLayerServiceConfigurationDc): Promise<import("../__generated__/data-contracts").FeatureLayerServiceInfoDc>;
|
|
27
21
|
createQueryLayer(configuration: QueryLayerServiceConfigurationDc): Promise<import("../__generated__/data-contracts").QueryLayerServiceInfoDc>;
|
|
28
22
|
updateQueryLayer(configuration: QueryLayerServiceConfigurationDc): Promise<import("../__generated__/data-contracts").QueryLayerServiceInfoDc>;
|
|
29
|
-
createProxyLayer(configuration: PublishProxyServicePayload): Promise<import("../__generated__/data-contracts").ProxyServiceInfoDc | import("../__generated__/data-contracts").PbfServiceInfoDc>;
|
|
30
|
-
updateProxyLayer(configuration: UpdateProxyServicePayload): Promise<import("../__generated__/data-contracts").ProxyServiceInfoDc | import("../__generated__/data-contracts").PbfServiceInfoDc>;
|
|
23
|
+
createProxyLayer(configuration: PublishProxyServicePayload): Promise<import("../__generated__/data-contracts").ProxyServiceInfoDc | import("../__generated__/data-contracts").PythonServiceInfoDc | import("../__generated__/data-contracts").PbfServiceInfoDc>;
|
|
24
|
+
updateProxyLayer(configuration: UpdateProxyServicePayload): Promise<import("../__generated__/data-contracts").ProxyServiceInfoDc | import("../__generated__/data-contracts").PythonServiceInfoDc | import("../__generated__/data-contracts").PbfServiceInfoDc>;
|
|
31
25
|
remove(name: string): Promise<string>;
|
|
32
26
|
}
|
|
33
27
|
export declare function isTileLayerService(layer: ServiceInfoDc): boolean | "";
|
|
@@ -1,10 +1,9 @@
|
|
|
1
1
|
import { ProjectsService } from '../__generated__/ProjectsService';
|
|
2
|
-
import { ExtendedProjectInfoDc,
|
|
2
|
+
import { ExtendedProjectInfoDc, ProjectContentItemDc, ResourceDependenciesDc, ServiceInfoDc, TableInfoDc, GetProjectsListParams } from '../__generated__/data-contracts';
|
|
3
3
|
import { ResourceService } from '../interfaces/ResourceService';
|
|
4
4
|
export declare class Projects extends ProjectsService implements ResourceService {
|
|
5
5
|
getProjectInfos(projects: string[]): Promise<ExtendedProjectInfoDc[]>;
|
|
6
6
|
getProjectsDeps(proejcts: string[]): Promise<ResourceDependenciesDc[]>;
|
|
7
|
-
uploadPreview(name: string, file: File): Promise<FileUploadResponse>;
|
|
8
7
|
findOne(name: string): Promise<ExtendedProjectInfoDc>;
|
|
9
8
|
findAll(params: GetProjectsListParams): Promise<import("../__generated__/data-contracts").PagedListProjectInfoDc | import("../__generated__/data-contracts").ProjectsListDc>;
|
|
10
9
|
create(resource: ExtendedProjectInfoDc): Promise<ExtendedProjectInfoDc>;
|
|
@@ -1,9 +1,8 @@
|
|
|
1
1
|
import { TablesService } from '../__generated__/TablesService';
|
|
2
|
-
import { DetailedTableInfoDc,
|
|
2
|
+
import { DetailedTableInfoDc, TableInfoDc, UpdateTableDc, GetTableListParams } from '../__generated__/data-contracts';
|
|
3
3
|
import { ResourceService } from '../interfaces/ResourceService';
|
|
4
4
|
export declare class Tables extends TablesService implements ResourceService {
|
|
5
5
|
getTableInfos(tables: string[]): Promise<TableInfoDc[]>;
|
|
6
|
-
uploadPreview(name: string, file: File): Promise<FileUploadResponse>;
|
|
7
6
|
findOne(name: string): Promise<DetailedTableInfoDc>;
|
|
8
7
|
findAll(params: GetTableListParams): Promise<import("../__generated__/data-contracts").PagedListTableInfoDc | import("../__generated__/data-contracts").TableListDc>;
|
|
9
8
|
create(resource: DetailedTableInfoDc): Promise<DetailedTableInfoDc>;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import { VectorTileService } from "../__generated__/VectorTileService";
|
|
2
2
|
export declare class VectorTiles extends VectorTileService {
|
|
3
|
-
getVt(name: string, z: number, x: number, y: number
|
|
3
|
+
getVt(name: string, z: number, x: number, y: number): Promise<void>;
|
|
4
4
|
}
|
package/dist/services/index.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "4.0.
|
|
2
|
+
"version": "4.0.7",
|
|
3
3
|
"license": "MIT",
|
|
4
4
|
"main": "dist/index.js",
|
|
5
5
|
"typings": "dist/index.d.ts",
|
|
@@ -45,5 +45,5 @@
|
|
|
45
45
|
"devDependencies": {
|
|
46
46
|
"@evergis/sgis": "^0.5.0-alpha.68"
|
|
47
47
|
},
|
|
48
|
-
"gitHead": "
|
|
48
|
+
"gitHead": "a0f0d52e35a666cd69e879fabfbe82f1018c7ef9"
|
|
49
49
|
}
|
|
@@ -1,53 +0,0 @@
|
|
|
1
|
-
import { CreateNamespaceParams, GetNamespacesParams, NamespaceInfoDc, PagedListNamespaceInfoDc } from './data-contracts';
|
|
2
|
-
import { Service } from './Service';
|
|
3
|
-
/**
|
|
4
|
-
* @title Spatial Processing Core API
|
|
5
|
-
* @version 1.5.1.0
|
|
6
|
-
* @baseUrl /sp
|
|
7
|
-
*/
|
|
8
|
-
export declare class NamespaceService extends Service {
|
|
9
|
-
/**
|
|
10
|
-
* No description
|
|
11
|
-
*
|
|
12
|
-
* @tags Namespace
|
|
13
|
-
* @name GetNamespaces
|
|
14
|
-
* @operationId NamespaceController_GetNamespacesAsync
|
|
15
|
-
* @summary Returns the list of existing namespaces, that correspond to the given conditions.
|
|
16
|
-
* @request GET:/namespaces
|
|
17
|
-
* @response `200` OK
|
|
18
|
-
*/
|
|
19
|
-
getNamespaces(query: GetNamespacesParams): Promise<PagedListNamespaceInfoDc>;
|
|
20
|
-
/**
|
|
21
|
-
* No description
|
|
22
|
-
*
|
|
23
|
-
* @tags Namespace
|
|
24
|
-
* @name CreateNamespace
|
|
25
|
-
* @operationId NamespaceController_CreateNamespace
|
|
26
|
-
* @summary Creates a new namespace.
|
|
27
|
-
* @request POST:/namespaces
|
|
28
|
-
* @response `200` OK
|
|
29
|
-
*/
|
|
30
|
-
createNamespace(query: CreateNamespaceParams): Promise<NamespaceInfoDc>;
|
|
31
|
-
/**
|
|
32
|
-
* No description
|
|
33
|
-
*
|
|
34
|
-
* @tags Namespace
|
|
35
|
-
* @name GetNamespace
|
|
36
|
-
* @operationId NamespaceController_GetNamespaceAsync
|
|
37
|
-
* @summary Get namespace information.
|
|
38
|
-
* @request GET:/namespaces/{namespace}
|
|
39
|
-
* @response `200` OK
|
|
40
|
-
*/
|
|
41
|
-
getNamespace(namespace: string): Promise<NamespaceInfoDc>;
|
|
42
|
-
/**
|
|
43
|
-
* No description
|
|
44
|
-
*
|
|
45
|
-
* @tags Namespace
|
|
46
|
-
* @name RemoveNamespace
|
|
47
|
-
* @operationId NamespaceController_RemoveNamespaceAsync
|
|
48
|
-
* @summary Remove namespace.
|
|
49
|
-
* @request DELETE:/namespaces/{namespace}
|
|
50
|
-
* @response `200` OK
|
|
51
|
-
*/
|
|
52
|
-
removeNamespace(namespace: string): Promise<void>;
|
|
53
|
-
}
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
import { GetRoutesParams } from './data-contracts';
|
|
2
|
-
import { Service } from './Service';
|
|
3
|
-
/**
|
|
4
|
-
* @title Spatial Processing Core API
|
|
5
|
-
* @version 1.5.1.0
|
|
6
|
-
* @baseUrl /sp
|
|
7
|
-
*/
|
|
8
|
-
export declare class NavigationService extends Service {
|
|
9
|
-
/**
|
|
10
|
-
* No description
|
|
11
|
-
*
|
|
12
|
-
* @tags Navigation
|
|
13
|
-
* @name GetRoutes
|
|
14
|
-
* @operationId NavigationController_GetRoutes
|
|
15
|
-
* @summary Build routes according coordinates.
|
|
16
|
-
* @request GET:/navigation/routes/{profile}/{coordinates}
|
|
17
|
-
* @response `200` OK
|
|
18
|
-
*/
|
|
19
|
-
getRoutes({ profile, coordinates, ...query }: GetRoutesParams): Promise<object>;
|
|
20
|
-
}
|
|
@@ -1,86 +0,0 @@
|
|
|
1
|
-
import { CreateResourcePayload, CreateStorageParams, GetResourceParams, GetStorageObjectsParams, GetUrlParams, RemoveObjectFromStorageParams } from './data-contracts';
|
|
2
|
-
import { Service } from './Service';
|
|
3
|
-
/**
|
|
4
|
-
* @title Spatial Processing Core API
|
|
5
|
-
* @version 1.5.1.0
|
|
6
|
-
* @baseUrl /sp
|
|
7
|
-
*/
|
|
8
|
-
export declare class S3Service extends Service {
|
|
9
|
-
/**
|
|
10
|
-
* No description
|
|
11
|
-
*
|
|
12
|
-
* @tags S3
|
|
13
|
-
* @name GetResource
|
|
14
|
-
* @operationId S3Controller_GetResource
|
|
15
|
-
* @summary Get objects from s3 storage.
|
|
16
|
-
* @request GET:/storages/{storageName}/objects
|
|
17
|
-
* @response `200` OK
|
|
18
|
-
*/
|
|
19
|
-
getResource({ storageName, ...query }: GetResourceParams): Promise<Blob>;
|
|
20
|
-
/**
|
|
21
|
-
* No description
|
|
22
|
-
*
|
|
23
|
-
* @tags S3
|
|
24
|
-
* @name CreateResource
|
|
25
|
-
* @operationId S3Controller_CreateResource
|
|
26
|
-
* @summary Create or update objects.
|
|
27
|
-
* @request POST:/storages/{storageName}/objects
|
|
28
|
-
* @response `200` OK
|
|
29
|
-
*/
|
|
30
|
-
createResource(storageName: string, data: CreateResourcePayload | FormData): Promise<void>;
|
|
31
|
-
/**
|
|
32
|
-
* No description
|
|
33
|
-
*
|
|
34
|
-
* @tags S3
|
|
35
|
-
* @name RemoveObjectFromStorage
|
|
36
|
-
* @operationId S3Controller_RemoveObjectFromStorage
|
|
37
|
-
* @summary Delete objects from s3 storage.
|
|
38
|
-
* @request DELETE:/storages/{storageName}/objects
|
|
39
|
-
* @response `200` OK
|
|
40
|
-
*/
|
|
41
|
-
removeObjectFromStorage({ storageName, ...query }: RemoveObjectFromStorageParams): Promise<void>;
|
|
42
|
-
/**
|
|
43
|
-
* No description
|
|
44
|
-
*
|
|
45
|
-
* @tags S3
|
|
46
|
-
* @name GetUrl
|
|
47
|
-
* @operationId S3Controller_GetUrl
|
|
48
|
-
* @summary Get url to object.
|
|
49
|
-
* @request GET:/storages/{storageName}/objects/url
|
|
50
|
-
* @response `200` OK
|
|
51
|
-
*/
|
|
52
|
-
getUrl({ storageName, ...query }: GetUrlParams): Promise<void>;
|
|
53
|
-
/**
|
|
54
|
-
* No description
|
|
55
|
-
*
|
|
56
|
-
* @tags S3
|
|
57
|
-
* @name GetStorageObjects
|
|
58
|
-
* @operationId S3Controller_GetStorageObjects
|
|
59
|
-
* @summary Get storage objects.
|
|
60
|
-
* @request GET:/storages/{storageName}
|
|
61
|
-
* @response `200` OK
|
|
62
|
-
*/
|
|
63
|
-
getStorageObjects({ storageName, ...query }: GetStorageObjectsParams): Promise<void>;
|
|
64
|
-
/**
|
|
65
|
-
* No description
|
|
66
|
-
*
|
|
67
|
-
* @tags S3
|
|
68
|
-
* @name DeleteStorage
|
|
69
|
-
* @operationId S3Controller_DeleteStorage
|
|
70
|
-
* @summary Delete storage.
|
|
71
|
-
* @request DELETE:/storages/{storageName}
|
|
72
|
-
* @response `200` OK
|
|
73
|
-
*/
|
|
74
|
-
deleteStorage(storageName: string): Promise<void>;
|
|
75
|
-
/**
|
|
76
|
-
* No description
|
|
77
|
-
*
|
|
78
|
-
* @tags S3
|
|
79
|
-
* @name CreateStorage
|
|
80
|
-
* @operationId S3Controller_CreateStorage
|
|
81
|
-
* @summary Create a new storage.
|
|
82
|
-
* @request POST:/storages
|
|
83
|
-
* @response `200` OK
|
|
84
|
-
*/
|
|
85
|
-
createStorage(query: CreateStorageParams): Promise<void>;
|
|
86
|
-
}
|
|
@@ -1,53 +0,0 @@
|
|
|
1
|
-
import { DeleteFileParams, DownloadFileParams, FileUploadInfoDc, FileUploadResponse, GetFileInfoParams, UploadFilePayload } from './data-contracts';
|
|
2
|
-
import { Service } from './Service';
|
|
3
|
-
/**
|
|
4
|
-
* @title Spatial Processing Core API
|
|
5
|
-
* @version 1.5.1.0
|
|
6
|
-
* @baseUrl /sp
|
|
7
|
-
*/
|
|
8
|
-
export declare class StaticContentService extends Service {
|
|
9
|
-
/**
|
|
10
|
-
* No description
|
|
11
|
-
*
|
|
12
|
-
* @tags StaticContentService
|
|
13
|
-
* @name DownloadFile
|
|
14
|
-
* @operationId StaticContentServiceController_DownloadFile
|
|
15
|
-
* @summary Returns a file stream by fileId.
|
|
16
|
-
* @request GET:/upload/file
|
|
17
|
-
* @response `200` OK
|
|
18
|
-
*/
|
|
19
|
-
downloadFile(query: DownloadFileParams): Promise<Blob>;
|
|
20
|
-
/**
|
|
21
|
-
* No description
|
|
22
|
-
*
|
|
23
|
-
* @tags StaticContentService
|
|
24
|
-
* @name UploadFile
|
|
25
|
-
* @operationId StaticContentServiceController_UploadFile
|
|
26
|
-
* @summary Upload file to temporary session storage.
|
|
27
|
-
* @request POST:/upload/file
|
|
28
|
-
* @response `200` OK
|
|
29
|
-
*/
|
|
30
|
-
uploadFile(data: UploadFilePayload | FormData): Promise<FileUploadResponse>;
|
|
31
|
-
/**
|
|
32
|
-
* No description
|
|
33
|
-
*
|
|
34
|
-
* @tags StaticContentService
|
|
35
|
-
* @name DeleteFile
|
|
36
|
-
* @operationId StaticContentServiceController_DeleteFile
|
|
37
|
-
* @summary Delete file from temporary session storage.
|
|
38
|
-
* @request DELETE:/upload/file
|
|
39
|
-
* @response `200` OK
|
|
40
|
-
*/
|
|
41
|
-
deleteFile(query: DeleteFileParams): Promise<void>;
|
|
42
|
-
/**
|
|
43
|
-
* No description
|
|
44
|
-
*
|
|
45
|
-
* @tags StaticContentService
|
|
46
|
-
* @name GetFileInfo
|
|
47
|
-
* @operationId StaticContentServiceController_GetFileInfo
|
|
48
|
-
* @summary Returns a file info download by url.
|
|
49
|
-
* @request GET:/upload/fileInfo
|
|
50
|
-
* @response `200` OK
|
|
51
|
-
*/
|
|
52
|
-
getFileInfo(query: GetFileInfoParams): Promise<FileUploadInfoDc>;
|
|
53
|
-
}
|
|
@@ -1,31 +0,0 @@
|
|
|
1
|
-
import { GetAllParams, PagedListTagInfoDc } from './data-contracts';
|
|
2
|
-
import { Service } from './Service';
|
|
3
|
-
/**
|
|
4
|
-
* @title Spatial Processing Core API
|
|
5
|
-
* @version 1.5.1.0
|
|
6
|
-
* @baseUrl /sp
|
|
7
|
-
*/
|
|
8
|
-
export declare class TagsService extends Service {
|
|
9
|
-
/**
|
|
10
|
-
* No description
|
|
11
|
-
*
|
|
12
|
-
* @tags Tags
|
|
13
|
-
* @name GetAll
|
|
14
|
-
* @operationId TagsController_GetAll
|
|
15
|
-
* @summary Gets all tag according a filter.
|
|
16
|
-
* @request GET:/tags
|
|
17
|
-
* @response `200` OK
|
|
18
|
-
*/
|
|
19
|
-
getAll(query: GetAllParams): Promise<PagedListTagInfoDc>;
|
|
20
|
-
/**
|
|
21
|
-
* No description
|
|
22
|
-
*
|
|
23
|
-
* @tags Tags
|
|
24
|
-
* @name Delete
|
|
25
|
-
* @operationId TagsController_Delete
|
|
26
|
-
* @summary Delete tag with given name.
|
|
27
|
-
* @request DELETE:/tags/{name}
|
|
28
|
-
* @response `200` OK
|
|
29
|
-
*/
|
|
30
|
-
delete(name: string): Promise<void>;
|
|
31
|
-
}
|
|
@@ -1,31 +0,0 @@
|
|
|
1
|
-
import { PagedListSearchResultDc, SearchResultDc, SearchResultDcGetSearchResultParams } from './data-contracts';
|
|
2
|
-
import { Service } from './Service';
|
|
3
|
-
/**
|
|
4
|
-
* @title Spatial Processing Core API
|
|
5
|
-
* @version 1.5.1.0
|
|
6
|
-
* @baseUrl /sp
|
|
7
|
-
*/
|
|
8
|
-
export declare class UniversalSearchService extends Service {
|
|
9
|
-
/**
|
|
10
|
-
* No description
|
|
11
|
-
*
|
|
12
|
-
* @tags UniversalSearch
|
|
13
|
-
* @name SearchResultDcGetSearchResult
|
|
14
|
-
* @operationId UniversalSearchController_SearchResultDcGetSearchResult
|
|
15
|
-
* @summary Returns search result.
|
|
16
|
-
* @request GET:/search/{taskId}/{layerName}
|
|
17
|
-
* @response `200` OK
|
|
18
|
-
*/
|
|
19
|
-
searchResultDcGetSearchResult({ taskId, layerName, ...query }: SearchResultDcGetSearchResultParams): Promise<PagedListSearchResultDc>;
|
|
20
|
-
/**
|
|
21
|
-
* No description
|
|
22
|
-
*
|
|
23
|
-
* @tags UniversalSearch
|
|
24
|
-
* @name GetSearchResult
|
|
25
|
-
* @operationId UniversalSearchController_GetSearchResult
|
|
26
|
-
* @summary Returns search result.
|
|
27
|
-
* @request GET:/search/{taskId}
|
|
28
|
-
* @response `200` OK
|
|
29
|
-
*/
|
|
30
|
-
getSearchResult(taskId: string): Promise<SearchResultDc[]>;
|
|
31
|
-
}
|