@bash-app/bash-common 29.19.26 → 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 +3 -3
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 {
|
|
@@ -295,8 +295,8 @@ export interface ServiceRatesAssociationExt extends ServiceRatesAssociation {
|
|
|
295
295
|
serviceDailyRates?: ServiceDailyRates;
|
|
296
296
|
serviceSpecialRates?: ServiceSpecialRates;
|
|
297
297
|
|
|
298
|
-
packages?: ServicePackageExt;
|
|
299
298
|
addons: ServiceAddon[];
|
|
299
|
+
packages: ServicePackageExt[];
|
|
300
300
|
}
|
|
301
301
|
|
|
302
302
|
|