pl-api: add missing categories
Signed-off-by: marcin mikołajczak <git@mkljczk.pl>
This commit is contained in:
parent
bc65755862
commit
f4fc004c2b
2 changed files with 6 additions and 0 deletions
|
@ -8,6 +8,9 @@ enum GroupRoles {
|
||||||
USER = 'user'
|
USER = 'user'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @category Entity types
|
||||||
|
*/
|
||||||
type GroupRole =`${GroupRoles}`;
|
type GroupRole =`${GroupRoles}`;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -149,6 +149,9 @@ const groupedNotificationsResultsSchema = v.object({
|
||||||
notification_groups: filteredArray(notificationGroupSchema),
|
notification_groups: filteredArray(notificationGroupSchema),
|
||||||
});
|
});
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @category Entity types
|
||||||
|
*/
|
||||||
type GroupedNotificationsResults = v.InferOutput<typeof groupedNotificationsResultsSchema>;
|
type GroupedNotificationsResults = v.InferOutput<typeof groupedNotificationsResultsSchema>;
|
||||||
|
|
||||||
export { notificationGroupSchema, groupedNotificationsResultsSchema, type NotificationGroup, type GroupedNotificationsResults };
|
export { notificationGroupSchema, groupedNotificationsResultsSchema, type NotificationGroup, type GroupedNotificationsResults };
|
||||||
|
|
Loading…
Reference in a new issue