@the-inkwell/shared 0.1.161 → 0.1.162

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@the-inkwell/shared",
3
- "version": "0.1.161",
3
+ "version": "0.1.162",
4
4
  "description": "Shared code for Inkwell",
5
5
  "license": "ISC",
6
6
  "author": "Inkwell (Rob Yedlin & Saimon Alam)",
@@ -34,8 +34,6 @@ export default interface Persons {
34
34
 
35
35
  photoUrl: string | null;
36
36
 
37
- googlePlaceId: string | null;
38
-
39
37
  lat: number | null;
40
38
 
41
39
  lon: number | null;
@@ -114,8 +112,6 @@ export interface PersonsInitializer {
114
112
 
115
113
  photoUrl?: string | null;
116
114
 
117
- googlePlaceId?: string | null;
118
-
119
115
  lat?: number | null;
120
116
 
121
117
  lon?: number | null;
@@ -193,8 +189,6 @@ export interface PersonsMutator {
193
189
 
194
190
  photoUrl?: string | null;
195
191
 
196
- googlePlaceId?: string | null;
197
-
198
192
  lat?: number | null;
199
193
 
200
194
  lon?: number | null;
@@ -21,8 +21,6 @@ export default interface Positions {
21
21
 
22
22
  location: string | null;
23
23
 
24
- googlePlaceId: string | null;
25
-
26
24
  lat: number | null;
27
25
 
28
26
  lon: number | null;
@@ -61,8 +59,6 @@ export interface PositionsInitializer {
61
59
 
62
60
  location?: string | null;
63
61
 
64
- googlePlaceId?: string | null;
65
-
66
62
  lat?: number | null;
67
63
 
68
64
  lon?: number | null;
@@ -101,8 +97,6 @@ export interface PositionsMutator {
101
97
 
102
98
  location?: string | null;
103
99
 
104
- googlePlaceId?: string | null;
105
-
106
100
  lat?: number | null;
107
101
 
108
102
  lon?: number | null;