n_a_types 3.0.26 → 3.0.28

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 +20 -1
  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
  }
@@ -238,7 +240,24 @@ export type ClimbLog = {
238
240
  climb: {
239
241
  id: number;
240
242
  climbName: string;
241
- grade: string | null
243
+ grade: string | null;
244
+ primaryClimbImageGroup: ({
245
+ climbPaths: {
246
+ id: number;
247
+ climbId: number | null;
248
+ climbImageGroupId: number | null;
249
+ climbVariation: number;
250
+ climbTopoImageSVGPathCoords: Coord[];
251
+ }[];
252
+ id: number;
253
+ image: string;
254
+ areaId: number | null;
255
+ areaName: string;
256
+ sortOrder: number;
257
+ anchors: Coord[];
258
+ imageNew: Image;
259
+ imageS3Key: string;
260
+ }) | null
242
261
  };
243
262
  userStarRating: number | null;
244
263
  numberOfAttempts: number | null;
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.28",
4
4
  "description": "types",
5
5
  "main": "index.ts",
6
6
  "author": "",