n_a_types 3.0.27 → 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 +18 -1
  2. package/package.json +1 -1
package/V3.ts CHANGED
@@ -240,7 +240,24 @@ export type ClimbLog = {
240
240
  climb: {
241
241
  id: number;
242
242
  climbName: string;
243
- 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
244
261
  };
245
262
  userStarRating: number | null;
246
263
  numberOfAttempts: number | null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "n_a_types",
3
- "version": "3.0.27",
3
+ "version": "3.0.28",
4
4
  "description": "types",
5
5
  "main": "index.ts",
6
6
  "author": "",