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.
Files changed (2) hide show
  1. package/V3.ts +6 -0
  2. 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
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "n_a_types",
3
- "version": "3.0.16",
3
+ "version": "3.0.18",
4
4
  "description": "types",
5
5
  "main": "index.ts",
6
6
  "author": "",