@dra2020/dra-types 1.8.19 → 1.8.20

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/layer.d.ts CHANGED
@@ -13,11 +13,12 @@ export interface UserLayerMeta {
13
13
  export declare type UserLayerMetaIndex = {
14
14
  [id: string]: UserLayerMeta;
15
15
  };
16
- export declare type LayerType = 'layer' | 'map';
16
+ export declare type LayerType = 'layer' | 'map' | 'restriction';
17
17
  export interface UserLayerRef {
18
18
  id: string;
19
19
  layerType?: LayerType;
20
20
  geojsonName?: string;
21
+ blockmapName?: string;
21
22
  fill: boolean;
22
23
  stroke: boolean;
23
24
  label: boolean;
package/lib/layer.ts CHANGED
@@ -16,13 +16,14 @@ export type UserLayerMetaIndex = {
16
16
  [id: string]: UserLayerMeta
17
17
  }
18
18
 
19
- export type LayerType = 'layer' | 'map';
19
+ export type LayerType = 'layer' | 'map' | 'restriction';
20
20
 
21
21
  export interface UserLayerRef
22
22
  {
23
23
  id: string,
24
24
  layerType?: LayerType,
25
25
  geojsonName?: string,
26
+ blockmapName?: string,
26
27
  fill: boolean,
27
28
  stroke: boolean,
28
29
  label: boolean,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dra2020/dra-types",
3
- "version": "1.8.19",
3
+ "version": "1.8.20",
4
4
  "description": "Shared types used between client, server and tools.",
5
5
  "main": "dist/dra-types.js",
6
6
  "types": "./dist/all.d.ts",