Skip to content

Commit

Permalink
fix(types): customEventID can be number or string
Browse files Browse the repository at this point in the history
  • Loading branch information
MinhxNguyen7 committed Dec 7, 2024
1 parent 9dbda0d commit 6301c47
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/types/src/customevent.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ export const RepeatingCustomEventSchema = type({
start: 'string',
end: 'string',
days: 'boolean[]',
customEventID: 'string', // Unique only within the schedule.
customEventID: 'string | number', // Unique only within the schedule.
'color?': 'string',
'building?': 'string | undefined',
});
Expand Down

0 comments on commit 6301c47

Please sign in to comment.