@bash-app/bash-common 29.19.24 → 29.19.25

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": "29.19.24",
3
+ "version": "29.19.25",
4
4
  "description": "Common data and scripts to use on the frontend and backend",
5
5
  "type": "module",
6
6
  "main": "src/index.ts",
@@ -176,7 +176,7 @@ export const SERVICE_FULL_DATA_TO_INCLUDE = {
176
176
  ...createAllTrueObject(serviceKeysArray)
177
177
  } satisfies Prisma.ServiceInclude;
178
178
 
179
- export const SERVICE_PACKAGE_TO_INCLUDE = {
179
+ export const SERVICE_PACKAGE_DATA_TO_INCLUDE = {
180
180
  serviceAddons: true
181
181
  } satisfies Prisma.ServicePackageInclude;
182
182
 
@@ -193,7 +193,9 @@ export const SERVICE_RATES_ASSOCIATION_DATA_TO_INCLUDE = {
193
193
  serviceDailyRates: true,
194
194
  serviceSpecialRates: true,
195
195
  addons: true,
196
- packages: true
196
+ packages: {
197
+ include: SERVICE_PACKAGE_DATA_TO_INCLUDE
198
+ },
197
199
  } satisfies Prisma.ServiceRatesAssociationInclude;
198
200
 
199
201
  export interface BashNotificationExt extends BashNotification {