@kiminix/tp-client 1.29.0 → 1.30.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README
CHANGED
|
@@ -8,6 +8,7 @@
|
|
|
8
8
|
|
|
9
9
|
## local dev & test
|
|
10
10
|
- run `npm build`
|
|
11
|
-
- then in the project you want to use this package run
|
|
11
|
+
- then in the project you want to use this package run
|
|
12
|
+
`npm i /Users/kamoun/workspace/tayara.promo/webapps/tp-client`
|
|
12
13
|
|
|
13
14
|
|
|
@@ -8,11 +8,12 @@ export interface BusinessOfReservation {
|
|
|
8
8
|
address: string;
|
|
9
9
|
}
|
|
10
10
|
export interface User {
|
|
11
|
-
id
|
|
12
|
-
firstname
|
|
13
|
-
lastname
|
|
14
|
-
phone
|
|
15
|
-
|
|
11
|
+
id: string | undefined;
|
|
12
|
+
firstname: string | undefined;
|
|
13
|
+
lastname: string | undefined;
|
|
14
|
+
phone: string | undefined;
|
|
15
|
+
email: string | undefined;
|
|
16
|
+
verifiedPhone: boolean;
|
|
16
17
|
}
|
|
17
18
|
export interface GuestDetails {
|
|
18
19
|
number: number;
|