n_a_types 3.0.26 → 3.0.27

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.
Files changed (2) hide show
  1. package/V3.ts +2 -0
  2. package/package.json +1 -1
package/V3.ts CHANGED
@@ -9,6 +9,7 @@ import type { GeoJSONFeature, GeoJSONMultiPolygon } from "zod-geojson";
9
9
  export type GeojsonFeaturePolygon = GeoJSONFeature;
10
10
  export type ClimbLogAttemptType = 'FLASH' | 'REDPOINT' | 'ONSIGHT' | 'ATTEMPT';
11
11
  export type GradeFeedbackTag = 'SOFT' | 'SOLID' | 'SANDBAG';
12
+ export type MapInfoAreaType = 'PRIVATE_LAND' | 'PUBLIC_LAND' | 'OTHER_ACCESS_CONCERN'
12
13
 
13
14
  ///GUIDEBOOK FETCH
14
15
  export type Guidebook = {
@@ -44,6 +45,7 @@ export type Guidebook = {
44
45
  infoSheetBody: string;
45
46
  infoExternalWebLink: string | null;
46
47
  guidebookId: number | null;
48
+ mapInfoAreaType: MapInfoAreaType
47
49
  boundaryPolyline: LatLong[];
48
50
  }[]
49
51
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "n_a_types",
3
- "version": "3.0.26",
3
+ "version": "3.0.27",
4
4
  "description": "types",
5
5
  "main": "index.ts",
6
6
  "author": "",