@bash-app/bash-common 29.8.0 → 29.9.0
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/definitions.ts +5 -4
package/package.json
CHANGED
package/src/definitions.ts
CHANGED
|
@@ -5,6 +5,7 @@ import {
|
|
|
5
5
|
Contact,
|
|
6
6
|
DayOfWeek,
|
|
7
7
|
Prisma,
|
|
8
|
+
Rate,
|
|
8
9
|
Ticket,
|
|
9
10
|
TicketTier,
|
|
10
11
|
User,
|
|
@@ -203,10 +204,10 @@ export interface NumberOfHoursForDate {
|
|
|
203
204
|
// availableHours: NumberOfHoursForDate[];
|
|
204
205
|
// }
|
|
205
206
|
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
207
|
+
export interface AvailableHoursForRateForDate {
|
|
208
|
+
rate: Rate,
|
|
209
|
+
availableHoursForDate: NumberOfHoursForDate;
|
|
210
|
+
}
|
|
210
211
|
|
|
211
212
|
// export interface AvailableHoursForRate {
|
|
212
213
|
// rate: Rate;
|