Skip to main content
Suki’s SDK versioning policy is based on the semantic versioning standard. For example, in version 1.2.3, 1 is the major version, 2 is the minor version, and 3 is the patch version. When we release a new SDK version for new features or bug fixes, we increment one of these three version components depending on the type of change introduced.
v2.1.0
Nov 2025

New Features

We’ve added Telehealth Audio Capture functionality to enhance remote patient care documentation. This feature allows the SDK to capture audio directly from separate tabs on a browser window hosting your telehealth session, ensuring accurate ambient clinical documentation during virtual visits via zoom, teams, etc
Telehealth
This feature is an opt-in setting and is disabled by default. To enable this feature, follow the steps in the Telehealth guide.
v2.0.4
Sep 2025

New Features

  • Added 6 new auth events and 5 new ambient events to the EmitterEvents type. Refer to the emitterevents-type for more information. These events will help you monitor the state of the ambient session and handle responses accordingly
  • Offline mode now supports a 15-second buffer to handle temporary connection problems. This gives you time to show a notification in your UI, like Connection unstable, before the session goes fully offline
  • Feedback mechanism is also available in Web SDK. You can use this mechanism to collect user feedback on AI-generated content
v2.0.3
June 2025

Features

  • Added an option to pass the providerId during initialisation of the SDK. This officially adds support for Bearer auth types
main.js
import { initialize } from "@suki-sdk/js";

initialize({
  partnerId: "your-partner-id",
  partnerToken: "your-partner-token",
  providerId: "provider-id"
});
App.tsx
import { useSuki } from "@suki-sdk/react";

const { init } = useSuki();

useEffect(() => {
  init({
    partnerId: "your-partner-id",
    partnerToken: "your-partner-token",
    providerId: "provider-id"
  });
}, []);

Bug Fixes

  • Fixed incorrect flags, isAmbientInProgress and isAmbientPaused flags in the ambient:update events
  • Fixed resetting the value of activeAmbientId in useSuki hook after a session has been submitted or cancelled

Additional Changes

  • Removed insert script option from the sections in the note page
v2.0.2
May 2025

Features

  • Support for Problem Based Charting with LOINC code.
    Added isPBNSection property to sections in the ambientOptions. Read more here
    {
      "ambientOptions": {
        "sections": [
          {
            "loinc": "10164-2", // History of Present Illness
            "isPBNSection": true
          }
        ]
      }
    }
    
v2.0.1
May 2025

Additional changes

  • Updated uiOptions default values to match the latest UI configuration
    • uiOptions.showCloseButton is now true by default
    • uiOptions.showStartAmbientButton is now true by default
    • uiOptions.showCreateEmptyNoteButton is now false by default
    • uiOptions.sectionEditing.enableDictation is now true by default
    • uiOptions.sectionEditing.enableCopy is now true by default
    • uiOptions.sectionEditing.insertScript is now true by default
v2.0.0
April 2025

Major Changes

  • Automated user registration — reduces manual work and accelerates onboarding with programmatic organization and user creation
  • LOINC code integration — standardizes note sections, improving quality, scalability, and onboarding efficiency
  • Expanded theme options — enhances customization flexibility with additional theme properties. Refer to the themeing guide for more examples
v1.0.3
Feburary 2025
Bug fixes
v1.0.2
December 2024
Bug fixes
v1.0.1
December 2024
Bug fixes
v1.0.0
December 2024
  • Enhanced user experience & visual improvements
  • Faster note generation
  • Improved stability
v0.5.0
July 2024
Clinical note creation by listening to provider-patient conversations