n_a_types 3.0.25 → 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.
- package/V3.ts +11 -0
- 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 = {
|
|
@@ -37,6 +38,16 @@ export type Guidebook = {
|
|
|
37
38
|
heroImageS3Key: string | null;
|
|
38
39
|
swipeDirection: AreaSwipeDirection;
|
|
39
40
|
longDescription: string | null;
|
|
41
|
+
mapInfoAreas: {
|
|
42
|
+
id: string;
|
|
43
|
+
mapLabel: string;
|
|
44
|
+
infoSheetTitle: string;
|
|
45
|
+
infoSheetBody: string;
|
|
46
|
+
infoExternalWebLink: string | null;
|
|
47
|
+
guidebookId: number | null;
|
|
48
|
+
mapInfoAreaType: MapInfoAreaType
|
|
49
|
+
boundaryPolyline: LatLong[];
|
|
50
|
+
}[]
|
|
40
51
|
}
|
|
41
52
|
|
|
42
53
|
export type Section = {
|