hububb-models 1.0.32 → 1.0.33

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.32",
3
+ "version": "1.0.33",
4
4
  "description": "Models for Hububb application",
5
5
  "main": "index.js",
6
6
  "types": "./src/index.d.ts",
@@ -81,7 +81,7 @@ export interface Listing {
81
81
  noAptKey?: boolean;
82
82
  aptKey?: string;
83
83
  keyMethod?: "unlock" | "open";
84
- externalId?: number;
84
+ externalId?: string;
85
85
  }
86
86
  export interface Door {
87
87
  id?: string;
@@ -81,7 +81,7 @@ export interface Listing {
81
81
  noAptKey?: boolean;
82
82
  aptKey?: string;
83
83
  keyMethod?: "unlock" | "open";
84
- externalId?: number;
84
+ externalId?: string;
85
85
  }
86
86
  export interface Door {
87
87
  id?: string;
@@ -2,20 +2,20 @@ import { Timestamp } from "@firebase/firestore-types";
2
2
 
3
3
  export interface Reservation {
4
4
  id: string;
5
- externalId?: number;
5
+ externalId?: string;
6
6
  checkIn?: Timestamp;
7
7
  checkOut?: Timestamp;
8
8
  status?: string;
9
9
  statusDescription?: string;
10
10
  guest?: {
11
11
  id?: string;
12
- externalId?: number;
12
+ externalId?: string;
13
13
  fullName?: string;
14
14
  email?: string;
15
15
  };
16
16
  listing?: {
17
17
  id?: string;
18
- externalId?: number;
18
+ externalId?: string;
19
19
  title?: string;
20
20
  };
21
21
  klevio?: {
@@ -2,20 +2,20 @@ import { Timestamp } from "@firebase/firestore-types";
2
2
 
3
3
  export interface Reservation {
4
4
  id: string;
5
- externalId?: number;
5
+ externalId?: string;
6
6
  checkIn?: Timestamp;
7
7
  checkOut?: Timestamp;
8
8
  status?: string;
9
9
  statusDescription?: string;
10
10
  guest?: {
11
11
  id?: string;
12
- externalId?: number;
12
+ externalId?: string;
13
13
  fullName?: string;
14
14
  email?: string;
15
15
  };
16
16
  listing?: {
17
17
  id?: string;
18
- externalId?: number;
18
+ externalId?: string;
19
19
  title?: string;
20
20
  };
21
21
  klevio?: {