@dra2020/dra-types 1.8.21 → 1.8.22

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
@@ -16,6 +16,7 @@ export declare type UserLayerMetaIndex = {
16
16
  export declare type LayerType = 'layer' | 'map' | 'restriction';
17
17
  export interface UserLayerRef {
18
18
  id: string;
19
+ name?: string;
19
20
  layerType?: LayerType;
20
21
  geojsonName?: string;
21
22
  blockmapName?: string;
package/lib/layer.ts CHANGED
@@ -21,6 +21,7 @@ export type LayerType = 'layer' | 'map' | 'restriction';
21
21
  export interface UserLayerRef
22
22
  {
23
23
  id: string,
24
+ name?: string,
24
25
  layerType?: LayerType,
25
26
  geojsonName?: string,
26
27
  blockmapName?: string,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dra2020/dra-types",
3
- "version": "1.8.21",
3
+ "version": "1.8.22",
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",