@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 +1 -1
- package/src/extendedSchemas.ts +3 -3
package/package.json
CHANGED
package/src/extendedSchemas.ts
CHANGED
|
@@ -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
|
|
192
|
+
availableDateTimes?: Availability[];
|
|
193
193
|
targetAudience?: TargetAudience | null;
|
|
194
|
-
links
|
|
195
|
-
serviceRange
|
|
194
|
+
links?: ServiceLinkExt[];
|
|
195
|
+
serviceRange?: ServiceRange;
|
|
196
196
|
media?: Media[];
|
|
197
197
|
amountOfGuests?: AmountOfGuests | null; // Reflecting the correct relation with AmountOfGuests
|
|
198
198
|
}
|