const getNotifications = apiFactory({
  url: ({ namespace }: { namespace: string }) =>
    `/api/v2/namespaces/${namespace}/notifications`,
  method: "GET",
  schema: NotificationListSchema,