@kohost/api-client 3.3.0 → 3.3.1

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.
@@ -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
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kohost/api-client",
3
- "version": "3.3.0",
3
+ "version": "3.3.1",
4
4
  "description": "API client, models, schemas, commands, and events for Kohost applications",
5
5
  "author": "Ian Rogers",
6
6
  "readme": "README.md",