import type * as Vital from "../index.js"; export interface ClientFacingBody { 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; /** Date of the specified record, formatted as ISO8601 datetime string in UTC 00:00. Deprecated in favour of calendar_date. */ date: Date; /** Date of the summary in the YYYY-mm-dd format. */ calendarDate: string; /** Weight in kg::kg */ weight?: number; /** Total body fat percentage::perc */ fat?: number; /** Water percentage in the body::perc */ waterPercentage?: number; /** Muscle mass percentage in the body::perc */ muscleMassPercentage?: number; /** Visceral fat index::scalar */ visceralFatIndex?: number; /** Bone mass percentage in the body::perc */ boneMassPercentage?: number; bodyMassIndex?: number; leanBodyMassKilogram?: number; waistCircumferenceCentimeter?: number; source: Vital.ClientFacingSource; createdAt: Date; updatedAt: Date; }