n_a_types 3.0.10 → 3.0.12

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 +8 -0
  2. package/package.json +1 -1
package/V3.ts CHANGED
@@ -48,6 +48,7 @@ export type Area = {
48
48
  sectionId: number | null;
49
49
  guidebookId: number;
50
50
  pano: string;
51
+ panoNew: Image | null;
51
52
  latitude: number | null;
52
53
  longitude: number | null;
53
54
  overview: string | null;
@@ -56,6 +57,7 @@ export type Area = {
56
57
  aspect: string | null;
57
58
  swipeDirection: AreaSwipeDirection;
58
59
  accessClosureDescription: string | null;
60
+ imageS3Key: string | null;
59
61
  }
60
62
 
61
63
  export type ClimbImageGroup = {
@@ -82,6 +84,8 @@ export type ClimbImageGroup = {
82
84
  areaName: string;
83
85
  sortOrder: number;
84
86
  anchors: Coord[];
87
+ imageNew: Image;
88
+ imageS3Key: string;
85
89
  }
86
90
 
87
91
  export type Climb = {
@@ -99,6 +103,8 @@ export type Climb = {
99
103
  areaName: string;
100
104
  sortOrder: number;
101
105
  anchors: Coord[];
106
+ imageNew: Image;
107
+ imageS3Key: string;
102
108
  }) | null,
103
109
  primaryClimbImageGroupid: number | null,
104
110
  climbImageGroups: ({
@@ -115,6 +121,8 @@ export type Climb = {
115
121
  areaName: string;
116
122
  sortOrder: number;
117
123
  anchors: Coord[];
124
+ imageS3Key: string;
125
+ imageNew: Image;
118
126
  })[];
119
127
  id: number;
120
128
  climbName: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "n_a_types",
3
- "version": "3.0.10",
3
+ "version": "3.0.12",
4
4
  "description": "types",
5
5
  "main": "index.ts",
6
6
  "author": "",