RubyGems
npm
PyPI
Organizations
Log in
Sign up
npm
hububb-models
Versions diffs
1.0.57 → 1.0.58
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.
Files changed (3)
hide
show
package/package.json
+1
-1
package/src/models/reservation/reservation.d.ts
+1
-0
package/src/models/reservation/reservation.ts
+1
-0
package/package.json
CHANGED
Viewed
@@ -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",
package/src/models/reservation/reservation.d.ts
CHANGED
Viewed
@@ -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;
package/src/models/reservation/reservation.ts
CHANGED
Viewed
@@ -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;