@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 +1 -1
- package/src/extendedSchemas.ts +2 -1
package/package.json
CHANGED
package/src/extendedSchemas.ts
CHANGED
|
@@ -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 {
|