export const endpoints = {
  auth: {
    sendOtp: "/otp/v1/send",
    verifyOtp: "/otp/v1/verify",
  },
  packages: {
    list: "/wp/v2/package",
    detail: (id: string | number) => `/wp/v2/package/${id}`,
  },
  pages: {
    list: "/wp/v2/pages",
    detail: (id: string | number) => `/wp/v2/pages/${id}`,
  },
  users: {
    // Returns the live backer record (incl. Status) for an email.
    getCurrent: "/zoho/v1/get-algobrix-backers",
  },
} as const;
