@bash-app/bash-common 13.1.0 → 13.2.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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bash-app/bash-common",
3
- "version": "13.1.0",
3
+ "version": "13.2.0",
4
4
  "description": "Common data and scripts to use on the frontend and backend",
5
5
  "type": "module",
6
6
  "main": "src/index.ts",
@@ -123,9 +123,22 @@ export interface ServiceExt extends Service {
123
123
  additionalInfo?: string;
124
124
  features?: string[];
125
125
  venueTypes?: string[];
126
- hours?: string;
127
- availability?: string;
128
- specialDates?: string;
126
+ hours?: {
127
+ [key: string]: {
128
+ open: string;
129
+ close: string;
130
+ };
131
+ };
132
+ availability?: {
133
+ startDate: string;
134
+ endDate: string;
135
+ startTime: string;
136
+ endTime: string;
137
+ };
138
+ specialDates?: Array<{
139
+ date: string;
140
+ description: string;
141
+ }>;
129
142
  }
130
143
 
131
144
  export interface ServiceLinkExt extends ServiceLink {