n_a_types 3.0.19 → 3.0.20

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 +6 -1
  2. package/package.json +1 -1
package/V3.ts CHANGED
@@ -218,7 +218,7 @@ export type ClimbMapGroup = {
218
218
  geojsonMultiPolygon: GeoJSONMultiPolygon | null
219
219
  }
220
220
 
221
- export type ClimbLog = {
221
+ export type ClimbLogWithClimbData = {
222
222
  id: string;
223
223
  attemptDate: string;
224
224
  createdAt: string;
@@ -226,4 +226,9 @@ export type ClimbLog = {
226
226
  notes: string | null;
227
227
  userId: string;
228
228
  climbId: number;
229
+ climb: {
230
+ id: number;
231
+ climbName: string;
232
+ grade: string | null
233
+ }
229
234
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "n_a_types",
3
- "version": "3.0.19",
3
+ "version": "3.0.20",
4
4
  "description": "types",
5
5
  "main": "index.ts",
6
6
  "author": "",