n_a_types 3.0.8 → 3.0.9

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 +9 -1
  2. package/package.json +1 -1
package/V3.ts CHANGED
@@ -16,14 +16,18 @@ export type Guidebook = {
16
16
  title: string;
17
17
  author: string;
18
18
  coverImage: string;
19
+ coverImageNew: Image | null;
19
20
  description: string;
20
21
  isFreeSampleGuidebook: boolean;
21
22
  version: number;
22
23
  heroImage: string;
24
+ heroImageNew: Image | null;
23
25
  state: string;
24
26
  accessTrailPolylines: TrailPolyline[];
25
27
  parkingInfo: POI[];
26
- digitalGuidePrice: number
28
+ digitalGuidePrice: number;
29
+ coverImageS3Key: string | null;
30
+ heroImageS3Key: string | null;
27
31
  }
28
32
 
29
33
  export type Section = {
@@ -168,5 +172,9 @@ export type GuidebookProductData = {
168
172
  state: string;
169
173
  accessTrailPolylines: TrailPolyline[];
170
174
  digitalGuidePrice: number;
175
+ coverImageNew: Image | null;
176
+ heroImageNew: Image | null;
177
+ coverImageS3Key: string | null;
178
+ heroImageS3Key: string | null;
171
179
  }[], apiVersion: number;
172
180
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "n_a_types",
3
- "version": "3.0.8",
3
+ "version": "3.0.9",
4
4
  "description": "types",
5
5
  "main": "index.ts",
6
6
  "author": "",