February 22, 2026

Version 0.0.17

New features

Dependents sync

authUpgradeProfileSync now accepts a dependents array to sync family members covered under the user’s insurance. Each dependent can be linked to a specific insurance plan by index.

1authUpgradeProfileSync: {
2 insurances: [
3 { partner_plan_id: "plan-uuid", member_id: "M001", group_id: "G100" },
4 ],
5 dependents: [
6 {
7 first_name: "Alex",
8 last_name: "Doe",
9 date_of_birth: "2015-06-01",
10 relationship_code: "19", // child
11 insurance_index: 0,
12 },
13 ],
14}

New exported type: AuthUpgradeDependent. See the Profile Sync guide for full details.

UI configuration options

createSunnyChat and attachSunnyChat now accept fontSize, fontFamily, and dimensions for widget customization:

1const chat = createSunnyChat({
2 // ...
3 fontSize: "14px",
4 fontFamily: "'Inter', sans-serif",
5 dimensions: {
6 width: "1200px",
7 height: "800px",
8 triggerMaxWidth: "500px",
9 },
10});

New exported type: VanillaChatDimensions.

Internal changes

  • Removed deprecated internal function. No public API changes.