@evergis/api 3.0.174 → 3.0.176
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 +20 -20
- package/README.md +21 -21
- package/dist/Api.d.ts +4 -4
- package/dist/__generated__/EqlTestService.d.ts +45 -1
- package/dist/__generated__/LayersService.d.ts +2 -2
- package/dist/__generated__/ProjectsService.d.ts +2 -2
- package/dist/__generated__/TablesService.d.ts +2 -2
- package/dist/__generated__/WmsServerService.d.ts +2 -2
- package/dist/__generated__/data-contracts.d.ts +205 -184
- package/dist/api.cjs.development.js +4286 -4117
- 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 +4479 -4312
- package/dist/api.esm.js.map +1 -1
- package/dist/services/EqlTest.d.ts +3 -0
- package/dist/services/Layers.d.ts +3 -1
- package/dist/services/index.d.ts +30 -28
- package/package.json +2 -2
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { PostgresLayerServiceConfigurationDc, RemoteTileServiceConfigurationDc, ServiceListDc, StyledLayerServiceConfigurationDc, ServiceInfoDc, FileUploadResponse, ResourceDependenciesDc, TableInfoDc, GetLayersListParams } from '../__generated__/data-contracts';
|
|
1
|
+
import { PostgresLayerServiceConfigurationDc, RemoteTileServiceConfigurationDc, ServiceListDc, StyledLayerServiceConfigurationDc, ServiceInfoDc, FileUploadResponse, ResourceDependenciesDc, TableInfoDc, GetLayersListParams, QueryLayerServiceConfigurationDc } 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'>;
|
|
@@ -22,6 +22,8 @@ export declare class Layers extends LayersService implements ResourceService {
|
|
|
22
22
|
findAll(params: GetLayersListParams): Promise<ServiceListDc>;
|
|
23
23
|
create(configuration: PostgresLayerServiceConfigurationDc): Promise<import("../__generated__/data-contracts").FeatureLayerServiceInfoDc>;
|
|
24
24
|
update(configuration: PostgresLayerServiceConfigurationDc): Promise<import("../__generated__/data-contracts").FeatureLayerServiceInfoDc>;
|
|
25
|
+
createQueryLayer(configuration: QueryLayerServiceConfigurationDc): Promise<import("../__generated__/data-contracts").QueryLayerServiceInfoDc>;
|
|
26
|
+
updateQueryLayer(configuration: QueryLayerServiceConfigurationDc): Promise<import("../__generated__/data-contracts").QueryLayerServiceInfoDc>;
|
|
25
27
|
remove(name: string): Promise<string>;
|
|
26
28
|
}
|
|
27
29
|
export declare function isTileLayerService(layer: ServiceInfoDc): boolean | "";
|
package/dist/services/index.d.ts
CHANGED
|
@@ -1,28 +1,30 @@
|
|
|
1
|
-
export * from
|
|
2
|
-
export * from
|
|
3
|
-
export * from
|
|
4
|
-
export * from
|
|
5
|
-
export * from
|
|
6
|
-
export * from
|
|
7
|
-
export * from
|
|
8
|
-
export * from
|
|
9
|
-
export * from
|
|
10
|
-
export * from
|
|
11
|
-
export * from
|
|
12
|
-
export * from
|
|
13
|
-
export * from
|
|
14
|
-
export * from
|
|
15
|
-
export * from
|
|
16
|
-
export * from
|
|
17
|
-
export * from
|
|
18
|
-
export * from
|
|
19
|
-
export * from
|
|
20
|
-
export * from
|
|
21
|
-
export * from
|
|
22
|
-
export * from
|
|
23
|
-
export * from
|
|
24
|
-
export * from
|
|
25
|
-
export * from
|
|
26
|
-
export * from
|
|
27
|
-
export * from
|
|
28
|
-
export * from
|
|
1
|
+
export * from "./Account";
|
|
2
|
+
export * from "./AccountPreview";
|
|
3
|
+
export * from "./BulkOperations";
|
|
4
|
+
export * from "./Cameras";
|
|
5
|
+
export * from "./ClientSettings";
|
|
6
|
+
export * from "./EqlTest";
|
|
7
|
+
export * from "./External";
|
|
8
|
+
export * from "./Feedback";
|
|
9
|
+
export * from "./FileUpload";
|
|
10
|
+
export * from "./Filters";
|
|
11
|
+
export * from "./General";
|
|
12
|
+
export * from "./Geocode";
|
|
13
|
+
export * from "./IceRouter";
|
|
14
|
+
export * from "./Import";
|
|
15
|
+
export * from "./Layers";
|
|
16
|
+
export * from "./Names";
|
|
17
|
+
export * from "./Namespace";
|
|
18
|
+
export * from "./Notification";
|
|
19
|
+
export * from "./PortalSettings";
|
|
20
|
+
export * from "./Print";
|
|
21
|
+
export * from "./Projects";
|
|
22
|
+
export * from "./ResourceCatalog";
|
|
23
|
+
export * from "./Resources";
|
|
24
|
+
export * from "./Scheduler";
|
|
25
|
+
export * from "./Security";
|
|
26
|
+
export * from "./Statistic";
|
|
27
|
+
export * from "./Styles";
|
|
28
|
+
export * from "./Tables";
|
|
29
|
+
export * from "./Tools";
|
|
30
|
+
export * from "./VectorTiles";
|
package/package.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "3.0.
|
|
2
|
+
"version": "3.0.176",
|
|
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.65"
|
|
47
47
|
},
|
|
48
|
-
"gitHead": "
|
|
48
|
+
"gitHead": "14ddbc130bdfd6bfde7f86fba6b6c0d1d1fa87f5"
|
|
49
49
|
}
|