@bash-app/bash-common 5.2.0 → 5.3.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bash-app/bash-common",
3
- "version": "5.2.0",
3
+ "version": "5.3.0",
4
4
  "description": "Common data and scripts to use on the frontend and backend",
5
5
  "type": "module",
6
6
  "main": "src/index.ts",
@@ -100,12 +100,13 @@ export interface InvitationExt extends Invitation {
100
100
  creator: User;
101
101
  sentTo: User;
102
102
  tickets: Ticket[];
103
+ associatedBash?: AssociatedBash;
103
104
  }
104
105
 
105
106
  export const INVITATION_DATA_TO_INCLUDE = {
106
107
  creator: true,
107
108
  sentTo: true,
108
- tickets: true
109
+ tickets: true,
109
110
  }
110
111
 
111
112
  export interface InvitationExtraData extends Invitation {