@exclusive-website/types 1.7.8 → 1.7.9

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/dist/types.d.ts CHANGED
@@ -95,7 +95,7 @@ export interface ModelReadDto {
95
95
  phoneNumber: string;
96
96
  isClir: boolean;
97
97
  contactMethods: ContactMethod[];
98
- schedule: DaySchedule;
98
+ schedule: DaySchedule[];
99
99
  seenCounter: number;
100
100
  created: Date;
101
101
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@exclusive-website/types",
3
- "version": "1.7.8",
3
+ "version": "1.7.9",
4
4
  "description": "A collection of shared types (DTOs and DBEs) for the organization",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
package/src/types.ts CHANGED
@@ -121,7 +121,7 @@ export interface ModelReadDto {
121
121
  phoneNumber: string;
122
122
  isClir: boolean;
123
123
  contactMethods: ContactMethod[];
124
- schedule: DaySchedule;
124
+ schedule: DaySchedule[];
125
125
  seenCounter: number;
126
126
  created: Date;
127
127
  }