n_a_types 3.0.24 → 3.0.25
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 +4 -2
- package/package.json +1 -1
package/V3.ts
CHANGED
|
@@ -8,7 +8,6 @@ export type AreaSwipeDirection = 'LEFT_TO_RIGHT' | 'RIGHT_TO_LEFT';
|
|
|
8
8
|
import type { GeoJSONFeature, GeoJSONMultiPolygon } from "zod-geojson";
|
|
9
9
|
export type GeojsonFeaturePolygon = GeoJSONFeature;
|
|
10
10
|
export type ClimbLogAttemptType = 'FLASH' | 'REDPOINT' | 'ONSIGHT' | 'ATTEMPT';
|
|
11
|
-
|
|
12
11
|
export type GradeFeedbackTag = 'SOFT' | 'SOLID' | 'SANDBAG';
|
|
13
12
|
|
|
14
13
|
///GUIDEBOOK FETCH
|
|
@@ -250,5 +249,8 @@ export type ClimbFeedback = {
|
|
|
250
249
|
export type ClimbFeedbackAggregateData = {
|
|
251
250
|
climbId: number,
|
|
252
251
|
tags: Record<GradeFeedbackTag, number>,
|
|
253
|
-
averageUserStarRating:
|
|
252
|
+
averageUserStarRating: {
|
|
253
|
+
rating: number | null,
|
|
254
|
+
count: number
|
|
255
|
+
}
|
|
254
256
|
}
|