pl-api: add missing categories

Signed-off-by: marcin mikołajczak <git@mkljczk.pl>
This commit is contained in:
marcin mikołajczak 2024-11-29 18:11:34 +01:00
parent bc65755862
commit f4fc004c2b
2 changed files with 6 additions and 0 deletions

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 };