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