@connectedxm/client 6.6.0 → 6.6.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.
Files changed (2) hide show
  1. package/dist/index.d.ts +3 -4
  2. package/package.json +1 -1
package/dist/index.d.ts CHANGED
@@ -2110,7 +2110,6 @@ interface EventRoomType extends BaseEventRoomType {
2110
2110
  interface BaseRoom {
2111
2111
  id: string;
2112
2112
  roomName: string;
2113
- reservationId: string | null;
2114
2113
  }
2115
2114
  interface Room extends BaseRoom {
2116
2115
  roomTypes: BaseEventRoomType[];
@@ -2122,10 +2121,10 @@ interface BaseEventRoomTypeReservation {
2122
2121
  end: string | null;
2123
2122
  eventRoomTypeId: string;
2124
2123
  eventRoomType: BaseEventRoomType;
2125
- roomName: string;
2124
+ roomId: string | null;
2125
+ room: BaseRoom | null;
2126
2126
  }
2127
2127
  interface EventRoomTypeReservation extends BaseEventRoomTypeReservation {
2128
- room: BaseRoom;
2129
2128
  createdAt: string;
2130
2129
  updatedAt: string;
2131
2130
  }
@@ -3074,7 +3073,7 @@ interface UpdateSelfEventRegistrationReservationsParams extends MutationParams {
3074
3073
  eventRoomTypeId: string;
3075
3074
  start?: Date | string;
3076
3075
  end?: Date | string;
3077
- roomName?: string;
3076
+ roomId?: string;
3078
3077
  };
3079
3078
  }[];
3080
3079
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@connectedxm/client",
3
- "version": "6.6.0",
3
+ "version": "6.6.1",
4
4
  "description": "Client API javascript SDK",
5
5
  "author": "ConnectedXM Inc.",
6
6
  "type": "module",