import type * as Vital from "../../../../index.js"; /** * @example * { * userId: "user_id", * provider: "apple_health_kit" * } */ export interface DemoConnectionCreationPayload { /** Vital user ID */ userId: string; /** Demo provider. For more information, please check out our docs (https://docs.tryvital.io/wearables/providers/test_data) */ provider: Vital.DemoProviders; }