@bash-app/bash-common 26.1.1 → 26.1.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bash-app/bash-common",
3
- "version": "26.1.1",
3
+ "version": "26.1.2",
4
4
  "description": "Common data and scripts to use on the frontend and backend",
5
5
  "type": "module",
6
6
  "main": "src/index.ts",
@@ -189,10 +189,10 @@ export const SERVICE_LINK_DATA_TO_INCLUDE = {
189
189
 
190
190
  export interface VenueExt extends Venue {
191
191
  service?: Service;
192
- availableDateTimes: Availability[];
192
+ availableDateTimes?: Availability[];
193
193
  targetAudience?: TargetAudience | null;
194
- links: ServiceLinkExt[];
195
- serviceRange: ServiceRange;
194
+ links?: ServiceLinkExt[];
195
+ serviceRange?: ServiceRange;
196
196
  media?: Media[];
197
197
  amountOfGuests?: AmountOfGuests | null; // Reflecting the correct relation with AmountOfGuests
198
198
  }