@bash-app/bash-common 29.19.36 → 29.20.1

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.19.36",
3
+ "version": "29.20.1",
4
4
  "description": "Common data and scripts to use on the frontend and backend",
5
5
  "type": "module",
6
6
  "main": "src/index.ts",
@@ -33,6 +33,7 @@ import {
33
33
  ServiceRatesAssociation,
34
34
  ServiceRate,
35
35
  ServiceDailyRates,
36
+ ServiceHourlyRates,
36
37
  ServiceSpecialRates,
37
38
  ServiceAddon,
38
39
  ServicePackage,
@@ -305,7 +306,8 @@ export interface ServiceSpecialRatesExt extends ServiceSpecialRates {
305
306
  }
306
307
 
307
308
  export interface ServiceRatesAssociationExt extends ServiceRatesAssociation {
308
- serviceGeneralRates?: ServiceRate;
309
+ // serviceGeneralRates?: ServiceRate;
310
+ serviceHourlyRates?: ServiceHourlyRates;
309
311
  serviceDailyRates?: ServiceDailyRates;
310
312
  serviceSpecialRates?: ServiceSpecialRates;
311
313