Skip to main content
Web SDK v3.X.X+: Pass a SukiAuthManager instance from @suki-sdk/core using the authManager field on initialize or init instead of supplying partner fields only on those calls.Refer to Migrating to Web SDK v3 for more details.
InitOptions type represents the configuration options for initializing the SDK. The code snippet below shows how to use the InitOptions type to create an init options object.
JavaScript
type InitOptions = PartnerDetails & {
  enableDebug?: boolean;
  logLevel?: LogLevel;
  isTestMode?: boolean;
  theme?: ThemeOptions;
};

Properties

The following properties are available on the InitOptions type: Extends: PartnerDetails
Last modified on May 22, 2026