hububb-models 1.0.56 → 1.0.58

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.56",
3
+ "version": "1.0.58",
4
4
  "description": "Models for Hububb application",
5
5
  "main": "index.js",
6
6
  "types": "./src/index.d.ts",
@@ -1,6 +1,7 @@
1
1
  import { Timestamp } from "@firebase/firestore-types";
2
2
  export interface Reservation {
3
3
  id: string;
4
+ createdAt?: Timestamp;
4
5
  externalId?: string;
5
6
  checkIn?: Timestamp;
6
7
  checkOut?: Timestamp;
@@ -11,6 +12,7 @@ export interface Reservation {
11
12
  externalId?: string;
12
13
  fullName?: string;
13
14
  email?: string;
15
+ ids?: string[];
14
16
  };
15
17
  listing?: {
16
18
  id?: string;
@@ -2,6 +2,7 @@ import { Timestamp } from "@firebase/firestore-types";
2
2
 
3
3
  export interface Reservation {
4
4
  id: string;
5
+ createdAt?: Timestamp;
5
6
  externalId?: string;
6
7
  checkIn?: Timestamp;
7
8
  checkOut?: Timestamp;
@@ -12,6 +13,7 @@ export interface Reservation {
12
13
  externalId?: string;
13
14
  fullName?: string;
14
15
  email?: string;
16
+ ids?: string[];
15
17
  };
16
18
  listing?: {
17
19
  id?: string;