RubyGems
npm
PyPI
Organizations
Log in
Sign up
npm
hububb-models
Versions diffs
1.0.44 → 1.0.46
hububb-models 1.0.44 → 1.0.46
Sign up to get
free
protection for your applications and to get access to all the features.
Files changed (5)
hide
show
package/package.json
+1
-1
package/src/models/listing/listing.d.ts
+1
-0
package/src/models/listing/listing.ts
+1
-0
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.
44
",
3
+
"version": "1.0.
46
",
4
4
"description": "Models for Hububb application",
5
5
"main": "index.js",
6
6
"types": "./src/index.d.ts",
package/src/models/listing/listing.d.ts
CHANGED
Viewed
@@ -79,6 +79,7 @@ export interface Listing {
79
79
keyMethod?: "unlock" | "open";
80
80
externalId?: string;
81
81
requestToBook?: boolean;
82
+
nickname?: string;
82
83
}
83
84
export interface Door {
84
85
id?: string;
package/src/models/listing/listing.ts
CHANGED
Viewed
@@ -83,6 +83,7 @@ export interface Listing {
83
83
keyMethod?: "unlock" | "open";
84
84
externalId?: string;
85
85
requestToBook?: boolean;
86
+
nickname?: string;
86
87
}
87
88
export interface Door {
88
89
id?: string;
package/src/models/reservation/reservation.d.ts
CHANGED
Viewed
@@ -16,6 +16,7 @@ export interface Reservation {
16
16
id?: string;
17
17
externalId?: string;
18
18
title?: string;
19
+
picture?: string;
19
20
};
20
21
klevio?: {
21
22
keyId?: string;
package/src/models/reservation/reservation.ts
CHANGED
Viewed
@@ -17,6 +17,7 @@ export interface Reservation {
17
17
id?: string;
18
18
externalId?: string;
19
19
title?: string;
20
+
picture?: string;
20
21
};
21
22
klevio?: {
22
23
keyId?: string;