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