@bash-app/bash-common 29.19.25 → 29.19.26
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 +3 -2
package/package.json
CHANGED
package/src/extendedSchemas.ts
CHANGED
|
@@ -35,6 +35,7 @@ import {
|
|
|
35
35
|
ServiceDailyRates,
|
|
36
36
|
ServiceSpecialRates,
|
|
37
37
|
ServiceAddon,
|
|
38
|
+
ServicePackage,
|
|
38
39
|
} from "@prisma/client";
|
|
39
40
|
import { SERVICE_LINK_DATA_TO_INCLUDE, UnionFromArray } from "./definitions";
|
|
40
41
|
|
|
@@ -278,14 +279,14 @@ export interface ServiceExt extends Service {
|
|
|
278
279
|
|
|
279
280
|
// googleReviews: GoogleReview[];
|
|
280
281
|
}
|
|
281
|
-
export interface ServicePackageExt extends
|
|
282
|
+
export interface ServicePackageExt extends ServicePackage {
|
|
282
283
|
serviceAddons: ServiceAddon[]
|
|
283
284
|
}
|
|
284
285
|
|
|
285
286
|
export interface ServiceDailyRatesExt extends ServiceDailyRates {
|
|
286
287
|
serviceRate?: ServiceRate;
|
|
287
288
|
}
|
|
288
|
-
export interface ServiceSpecialRatesExt extends
|
|
289
|
+
export interface ServiceSpecialRatesExt extends ServiceSpecialRates {
|
|
289
290
|
serviceRate?: ServiceRate;
|
|
290
291
|
}
|
|
291
292
|
|