Spaces:
Paused
Paused
File size: 224 Bytes
8523e75 | 1 2 3 4 5 6 7 | import type { SidebarBadges } from "@paperclipai/shared";
import { api } from "./client";
export const sidebarBadgesApi = {
get: (companyId: string) => api.get<SidebarBadges>(`/companies/${companyId}/sidebar-badges`),
};
|