Suki’s SDK versioning policy is based on the semantic versioning standard. For example, in version 4.3.2, 4 is the major version, 3 is the minor version, and 2 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.

versioning

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