n_a_types 3.0.14 → 3.0.15

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 +4 -0
  2. package/package.json +1 -1
package/V3.ts CHANGED
@@ -27,6 +27,7 @@ export type Guidebook = {
27
27
  heroImage: string;
28
28
  heroImageNew: Image | null;
29
29
  state: string;
30
+ additionalImages: Image[];
30
31
  accessTrailPolylines: TrailPolyline[];
31
32
  parkingInfo: POI[];
32
33
  digitalGuidePrice: number;
@@ -161,6 +162,8 @@ export type Image = {
161
162
  naturalHeight: number;
162
163
  blurhash: string | null;
163
164
  climbId: number | null;
165
+ guidebookId: number | null;
166
+
164
167
  }
165
168
 
166
169
  export type POI = {
@@ -175,6 +178,7 @@ export type POI = {
175
178
  ///PRODUCT DATA FETCH
176
179
  export type GuidebookProductData = {
177
180
  guidebooks: {
181
+ additionalImages: Image[],
178
182
  digitalVersionPublished: boolean,
179
183
  id: number;
180
184
  title: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "n_a_types",
3
- "version": "3.0.14",
3
+ "version": "3.0.15",
4
4
  "description": "types",
5
5
  "main": "index.ts",
6
6
  "author": "",