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