n_a_types 3.0.8 → 3.0.10
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 +11 -1
- 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 = {
|
|
@@ -140,6 +144,8 @@ export type Image = {
|
|
|
140
144
|
s3Key: string;
|
|
141
145
|
s3URL: string;
|
|
142
146
|
description: string | null;
|
|
147
|
+
naturalWidth: number;
|
|
148
|
+
naturalHeight: number;
|
|
143
149
|
blurhash: string | null;
|
|
144
150
|
climbId: number | null;
|
|
145
151
|
}
|
|
@@ -168,5 +174,9 @@ export type GuidebookProductData = {
|
|
|
168
174
|
state: string;
|
|
169
175
|
accessTrailPolylines: TrailPolyline[];
|
|
170
176
|
digitalGuidePrice: number;
|
|
177
|
+
coverImageNew: Image | null;
|
|
178
|
+
heroImageNew: Image | null;
|
|
179
|
+
coverImageS3Key: string | null;
|
|
180
|
+
heroImageS3Key: string | null;
|
|
171
181
|
}[], apiVersion: number;
|
|
172
182
|
}
|