import { AccountScore } from "."; import { Company } from "./company"; /** * RawProfile contains the raw data from the Edge API, * including the account and company data. * * This is the raw data from Koala that has not been anonymized, * and is only available when you opt-in to the RawProfile option * in the Edge API. * * All data for the RawProfile will be available in the browser, * so expect that this data will be available to anyone who can * inspect the `ko.edge` object in the browser. */ export interface RawProfile { id: string; account: { company: Company; auto_icp_account_score?: AccountScore; }; }