n_a_types 3.0.17 → 3.0.18
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 +6 -3
- package/package.json +1 -1
package/V3.ts
CHANGED
|
@@ -33,7 +33,8 @@ export type Guidebook = {
|
|
|
33
33
|
digitalGuidePrice: number;
|
|
34
34
|
coverImageS3Key: string | null;
|
|
35
35
|
heroImageS3Key: string | null;
|
|
36
|
-
swipeDirection
|
|
36
|
+
swipeDirection: AreaSwipeDirection;
|
|
37
|
+
longDescription: string | null;
|
|
37
38
|
}
|
|
38
39
|
|
|
39
40
|
export type Section = {
|
|
@@ -41,7 +42,7 @@ export type Section = {
|
|
|
41
42
|
sectionName: string;
|
|
42
43
|
guidebookId: number | null;
|
|
43
44
|
bookSectionNumber: number;
|
|
44
|
-
swipeDirection
|
|
45
|
+
swipeDirection: AreaSwipeDirection;
|
|
45
46
|
id: number;
|
|
46
47
|
}
|
|
47
48
|
|
|
@@ -203,12 +204,14 @@ export type GuidebookProductData = {
|
|
|
203
204
|
heroImageS3Key: string | null;
|
|
204
205
|
latitude: number | null;
|
|
205
206
|
longitude: number | null;
|
|
206
|
-
swipeDirection
|
|
207
|
+
swipeDirection: AreaSwipeDirection;
|
|
208
|
+
longDescription: string | null
|
|
207
209
|
}[], apiVersion: number;
|
|
208
210
|
}
|
|
209
211
|
|
|
210
212
|
export type ClimbMapGroup = {
|
|
211
213
|
id: string,
|
|
214
|
+
areaId: number,
|
|
212
215
|
climbs: { id: number }[],
|
|
213
216
|
geojsonMultiPolygon: GeoJSONMultiPolygon | null
|
|
214
217
|
}
|