frontend-rw #1

Merged
marcin merged 347 commits from frontend-rw into develop 2024-12-05 15:32:18 -08:00
2 changed files with 6 additions and 0 deletions
Showing only changes of commit f4fc004c2b - Show all commits

View file

@ -8,6 +8,9 @@ enum GroupRoles {
USER = 'user'
}
/**
* @category Entity types
*/
type GroupRole =`${GroupRoles}`;
/**

View file

@ -149,6 +149,9 @@ const groupedNotificationsResultsSchema = v.object({
notification_groups: filteredArray(notificationGroupSchema),
});
/**
* @category Entity types
*/
type GroupedNotificationsResults = v.InferOutput<typeof groupedNotificationsResultsSchema>;
export { notificationGroupSchema, groupedNotificationsResultsSchema, type NotificationGroup, type GroupedNotificationsResults };