hububb-models 1.0.57 → 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.57",
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;
@@ -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;