@bash-app/bash-common 14.2.0 → 14.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 +5 -0
package/package.json
CHANGED
package/src/extendedSchemas.ts
CHANGED
|
@@ -117,6 +117,7 @@ export interface VenueExt extends Venue {
|
|
|
117
117
|
}
|
|
118
118
|
|
|
119
119
|
export const VENUE_DATA_TO_INCLUDE = {
|
|
120
|
+
service: true,
|
|
120
121
|
availableDateTimes: true,
|
|
121
122
|
}
|
|
122
123
|
|
|
@@ -127,6 +128,7 @@ export interface ServiceExt extends Service {
|
|
|
127
128
|
serviceRange: ServiceRange;
|
|
128
129
|
targetAudience: ServiceTargetAudience;
|
|
129
130
|
serviceLinks?: ServiceLinkExt[];
|
|
131
|
+
venues: VenueExt[];
|
|
130
132
|
}
|
|
131
133
|
|
|
132
134
|
export interface ServiceLinkExt extends ServiceLink {
|
|
@@ -146,6 +148,9 @@ export const SERVICE_DATA_TO_INCLUDE = {
|
|
|
146
148
|
serviceRange: true,
|
|
147
149
|
serviceLinks: {
|
|
148
150
|
include: SERVICE_LINK_DATA_TO_INCLUDE
|
|
151
|
+
},
|
|
152
|
+
venues: {
|
|
153
|
+
include: VENUE_DATA_TO_INCLUDE
|
|
149
154
|
}
|
|
150
155
|
}
|
|
151
156
|
|