n_a_types 3.0.22 → 3.0.23

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 +5 -3
  2. package/package.json +1 -1
package/V3.ts CHANGED
@@ -217,14 +217,14 @@ export type ClimbMapGroup = {
217
217
  geojsonMultiPolygon: GeoJSONMultiPolygon | null
218
218
  }
219
219
 
220
- export type ClimbLogWithClimbData = {
220
+ export type ClimbLog = {
221
221
  id: string;
222
222
  attemptDate: string;
223
223
  createdAt: string;
224
224
  attemptType: ClimbLogAttemptType;
225
- notes: string | null;
226
225
  userId: string;
227
226
  climbId: number;
227
+ climbLogBodyText: string | null;
228
228
  climb: {
229
229
  id: number;
230
230
  climbName: string;
@@ -233,5 +233,7 @@ export type ClimbLogWithClimbData = {
233
233
  userStarRating: number | null;
234
234
  numberOfAttempts: number | null;
235
235
  locationString: string;
236
- User: { publicDisplayName: string | null }
236
+ User: { publicDisplayName: string | null };
237
+ isPrivate: boolean;
238
+ notes: string | null;
237
239
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "n_a_types",
3
- "version": "3.0.22",
3
+ "version": "3.0.23",
4
4
  "description": "types",
5
5
  "main": "index.ts",
6
6
  "author": "",