@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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bash-app/bash-common",
3
- "version": "14.2.0",
3
+ "version": "14.3.0",
4
4
  "description": "Common data and scripts to use on the frontend and backend",
5
5
  "type": "module",
6
6
  "main": "src/index.ts",
@@ -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