@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 +1 -1
- package/src/extendedSchemas.ts +4 -2
package/package.json
CHANGED
package/src/extendedSchemas.ts
CHANGED
|
@@ -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
|
|
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:
|
|
196
|
+
packages: {
|
|
197
|
+
include: SERVICE_PACKAGE_DATA_TO_INCLUDE
|
|
198
|
+
},
|
|
197
199
|
} satisfies Prisma.ServiceRatesAssociationInclude;
|
|
198
200
|
|
|
199
201
|
export interface BashNotificationExt extends BashNotification {
|