import type { FunnelUserAttribution } from '../../../runtime/funnel-attribution.js'; import type { SdkApiUser } from '../users/types.js'; export type BootstrapProfile = { email?: string; name?: string; attribution?: FunnelUserAttribution; }; export type SessionBootstrapResponse = { checkoutIdentityToken?: unknown; user?: SdkApiUser; user_id?: unknown; };