@bash-app/bash-common 29.20.2 → 29.20.3

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.20.2",
3
+ "version": "29.20.3",
4
4
  "description": "Common data and scripts to use on the frontend and backend",
5
5
  "type": "module",
6
6
  "main": "src/index.ts",
@@ -185,23 +185,23 @@ export const SERVICE_DAILYRATES_DATA_TO_INCLUDE = {
185
185
  serviceRate: true
186
186
  } satisfies Prisma.ServiceDailyRatesInclude;
187
187
 
188
- export const SERVICE_SPECIALRATES_DATA_TO_INCLUDE = {
189
- serviceRate: true
190
- } satisfies Prisma.ServiceSpecialRatesInclude;
191
-
192
- export const SERVICE_RATES_ASSOCIATION_DATA_TO_INCLUDE = {
193
- serviceGeneralRates: true,
194
- serviceDailyRates: {
195
- include: SERVICE_DAILYRATES_DATA_TO_INCLUDE
196
- },
197
- serviceSpecialRates: {
198
- include: SERVICE_SPECIALRATES_DATA_TO_INCLUDE
199
- },
200
- addons: true,
201
- packages: {
202
- include: SERVICE_PACKAGE_DATA_TO_INCLUDE
203
- },
204
- } satisfies Prisma.ServiceRatesAssociationInclude;
188
+ // export const SERVICE_SPECIALRATES_DATA_TO_INCLUDE = {
189
+ // serviceRate: true
190
+ // } satisfies Prisma.ServiceSpecialRatesInclude;
191
+
192
+ // export const SERVICE_RATES_ASSOCIATION_DATA_TO_INCLUDE = {
193
+ // serviceGeneralRates: true,
194
+ // serviceDailyRates: {
195
+ // include: SERVICE_DAILYRATES_DATA_TO_INCLUDE
196
+ // },
197
+ // serviceSpecialRates: {
198
+ // include: SERVICE_SPECIALRATES_DATA_TO_INCLUDE
199
+ // },
200
+ // addons: true,
201
+ // packages: {
202
+ // include: SERVICE_PACKAGE_DATA_TO_INCLUDE
203
+ // },
204
+ // } satisfies Prisma.ServiceRatesAssociationInclude;
205
205
 
206
206
  export interface BashNotificationExt extends BashNotification {
207
207
  creator?: PublicUser;