@kohost/api-client 3.3.0 → 3.3.2
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/dist/cjs/Commands/CreateShortLink.js +2 -2
- package/dist/cjs/schemas/reservation.json +5 -0
- package/dist/esm/Commands.js +3 -3
- package/dist/esm/Commands.js.map +2 -2
- package/dist/esm/Models.js +5 -0
- package/dist/esm/Models.js.map +2 -2
- package/dist/esm/utils.js +5 -0
- package/dist/esm/utils.js.map +2 -2
- package/dist/types/Commands/CreateShortLink.d.ts +2 -2
- package/dist/types/schemas/ReservationSchema.d.ts +4 -0
- package/dist/types/schemas/UserSchema.d.ts +4 -0
- package/package.json +1 -1
|
@@ -63,6 +63,10 @@ export interface Reservation {
|
|
|
63
63
|
sharedGuests?: string[];
|
|
64
64
|
spaceCategory?: string;
|
|
65
65
|
space?: string | null;
|
|
66
|
+
/**
|
|
67
|
+
* Used when there was a space assigned and it changes
|
|
68
|
+
*/
|
|
69
|
+
previousSpace?: string | null;
|
|
66
70
|
/**
|
|
67
71
|
* reserved - confirmed by both parties, before check-in
|
|
68
72
|
* checkedIn - checked in
|
|
@@ -250,6 +250,10 @@ export interface Reservation {
|
|
|
250
250
|
sharedGuests?: string[];
|
|
251
251
|
spaceCategory?: string;
|
|
252
252
|
space?: string | null;
|
|
253
|
+
/**
|
|
254
|
+
* Used when there was a space assigned and it changes
|
|
255
|
+
*/
|
|
256
|
+
previousSpace?: string | null;
|
|
253
257
|
/**
|
|
254
258
|
* reserved - confirmed by both parties, before check-in
|
|
255
259
|
* checkedIn - checked in
|