@exclusive-website/types 1.5.4 → 1.5.7

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
@@ -83,7 +83,7 @@ export interface ModelReadDto {
83
83
  phoneNumber: string;
84
84
  isClir: boolean;
85
85
  contactMethods: ContactMethod[];
86
- workingTime: DaySchedule[];
86
+ workingTime: ScheduleDTO;
87
87
  seenCounter: number;
88
88
  created: Date;
89
89
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@exclusive-website/types",
3
- "version": "1.5.4",
3
+ "version": "1.5.7",
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
@@ -107,7 +107,7 @@ export interface ModelReadDto {
107
107
  phoneNumber: string;
108
108
  isClir: boolean;
109
109
  contactMethods: ContactMethod[];
110
- workingTime: DaySchedule[];
110
+ workingTime: ScheduleDTO;
111
111
  seenCounter: number;
112
112
  created: Date;
113
113
  }