hububb-models 1.0.51 → 1.0.52

Sign up to get free protection for your applications and to get access to all the features.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "hububb-models",
3
- "version": "1.0.51",
3
+ "version": "1.0.52",
4
4
  "description": "Models for Hububb application",
5
5
  "main": "index.js",
6
6
  "types": "./src/index.d.ts",
@@ -1,6 +1,10 @@
1
1
  import { Timestamp } from "@firebase/firestore-types";
2
2
  export interface Listing {
3
3
  id?: string;
4
+ _geo: {
5
+ lat: number;
6
+ lng: number;
7
+ };
4
8
  guestyId?: string;
5
9
  accountId?: string;
6
10
  createdAt: Timestamp;
@@ -2,6 +2,10 @@ import { Timestamp } from "@firebase/firestore-types";
2
2
 
3
3
  export interface Listing {
4
4
  id?: string;
5
+ _geo: {
6
+ lat: number;
7
+ lng: number;
8
+ };
5
9
  guestyId?: string;
6
10
  accountId?: string;
7
11
  createdAt: Timestamp;