@bash-app/bash-common 29.19.27 → 29.19.28
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 +2 -2
package/package.json
CHANGED
package/src/extendedSchemas.ts
CHANGED
|
@@ -275,12 +275,12 @@ export interface ServiceExt extends Service {
|
|
|
275
275
|
venue?: Venue;
|
|
276
276
|
organization?: Organization;
|
|
277
277
|
|
|
278
|
-
serviceRatesAssociation?: ServiceRatesAssociationExt;
|
|
278
|
+
serviceRatesAssociation?: ServiceRatesAssociationExt | null;
|
|
279
279
|
|
|
280
280
|
// googleReviews: GoogleReview[];
|
|
281
281
|
}
|
|
282
282
|
export interface ServicePackageExt extends ServicePackage {
|
|
283
|
-
serviceAddons: ServiceAddon[]
|
|
283
|
+
serviceAddons: ServiceAddon[];
|
|
284
284
|
}
|
|
285
285
|
|
|
286
286
|
export interface ServiceDailyRatesExt extends ServiceDailyRates {
|