@bash-app/bash-common 23.1.0 → 23.1.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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bash-app/bash-common",
3
- "version": "23.1.0",
3
+ "version": "23.1.1",
4
4
  "description": "Common data and scripts to use on the frontend and backend",
5
5
  "type": "module",
6
6
  "main": "src/index.ts",
@@ -211,7 +211,6 @@ export const VENUE_DATA_TO_INCLUDE = {
211
211
 
212
212
  export const VOLUNTEER_DATA_TO_INCLUDE = {
213
213
  business: true,
214
- availableDateTimes: true,
215
214
  links: {
216
215
  include: {
217
216
  serviceLinks: true,
@@ -234,7 +233,7 @@ export interface OrganizationExt extends Organization {
234
233
  }
235
234
 
236
235
  export interface VolunteerServiceExt extends VolunteerService {
237
- serviceRange?: ServiceRange;
236
+ serviceRange?: ServiceRange | null;
238
237
  media?: Media[];
239
238
  links?: Link[];
240
239
  availableDateTimes?: Availability[];