n_a_types 3.0.9 → 3.0.11

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
@@ -82,6 +82,8 @@ export type ClimbImageGroup = {
82
82
  areaName: string;
83
83
  sortOrder: number;
84
84
  anchors: Coord[];
85
+ imageNew: Image;
86
+ imageS3Key: string;
85
87
  }
86
88
 
87
89
  export type Climb = {
@@ -99,6 +101,8 @@ export type Climb = {
99
101
  areaName: string;
100
102
  sortOrder: number;
101
103
  anchors: Coord[];
104
+ imageNew: Image;
105
+ imageS3Key: string;
102
106
  }) | null,
103
107
  primaryClimbImageGroupid: number | null,
104
108
  climbImageGroups: ({
@@ -115,6 +119,8 @@ export type Climb = {
115
119
  areaName: string;
116
120
  sortOrder: number;
117
121
  anchors: Coord[];
122
+ imageS3Key: string;
123
+ imageNew: Image;
118
124
  })[];
119
125
  id: number;
120
126
  climbName: string;
@@ -144,6 +150,8 @@ export type Image = {
144
150
  s3Key: string;
145
151
  s3URL: string;
146
152
  description: string | null;
153
+ naturalWidth: number;
154
+ naturalHeight: number;
147
155
  blurhash: string | null;
148
156
  climbId: number | null;
149
157
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "n_a_types",
3
- "version": "3.0.9",
3
+ "version": "3.0.11",
4
4
  "description": "types",
5
5
  "main": "index.ts",
6
6
  "author": "",