import type * as Vital from "../index.js"; export interface ClientFacingProfile { id: string; /** User id returned by vital create user request. This id should be stored in your database against the user and used for all interactions with the vital api. */ userId: string; height?: number; birthDate?: string; wheelchairUse?: boolean; gender?: Vital.Gender; sex?: Vital.Sex; source: Vital.ClientFacingSource; createdAt: Date; updatedAt: Date; }