Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@

Historical list of changes in releases

## [v0.0.54] - 2026-02-09
* Add proper typing for iframe class attributes ([#8d06a79e](https://github.com/digitalsamba/embedded-sdk/commit/8d06a79e3cb4861b8769594ffd76208028187c50)).
* Support optional "publicRoomUrl" for invite overrides ([#5f9c7fb5](https://github.com/digitalsamba/embedded-sdk/commit/5f9c7fb52da37aea473876162298d13f9f7afe38)).
* Add new applySpokenLanguageToAll param to captions options ([#21f2bd54](https://github.com/digitalsamba/embedded-sdk/commit/21f2bd54e26c5541d23d89253b04d9f27bfc1c0b)).

## [v0.0.53] - 2026-01-12
* Add restreaming events ([#6c839585](https://github.com/digitalsamba/embedded-sdk/commit/6c839585476ab8e2bb2348d3386400bd674f9b2d)).

Expand Down
2 changes: 1 addition & 1 deletion dist/cjs/tsconfig.cjs.tsbuildinfo

Large diffs are not rendered by default.

19 changes: 4 additions & 15 deletions dist/cjs/types.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ export interface InitialRoomSettings {
mediaDevices?: MediaDeviceSettings;
requireRemoveUserConfirmation: boolean;
baseDomain?: string;
publicRoomUrl?: string;
mobileScreenshare?: boolean;
}
export interface QueuedEventListener {
Expand Down Expand Up @@ -57,21 +58,8 @@ export type InitOptions = {
templateParams?: TemplateParams;
};
export type FrameAttributes = {
align: string;
allow: string;
allowFullscreen: boolean;
frameBorder: string;
height: string;
longDesc: string;
marginHeight: string;
marginWidth: string;
name: string;
referrerPolicy: ReferrerPolicy;
scrolling: string;
src: string;
srcdoc: string;
width: string;
} & HTMLElement;
class?: string;
} & Partial<HTMLIFrameElement>;
export interface InstanceProperties {
frameAttributes?: Partial<FrameAttributes>;
reportErrors?: boolean;
Expand Down Expand Up @@ -104,6 +92,7 @@ type CaptionsFontSize = 'small' | 'medium' | 'large';
export interface CaptionsOptions {
spokenLanguage: CaptionsSpokenLanguage;
fontSize: CaptionsFontSize;
applySpokenLanguageToAll?: boolean;
}
export interface VirtualBackgroundItem {
id: string;
Expand Down
2 changes: 1 addition & 1 deletion dist/cjs/utils/vars.d.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { Stored } from '../types';
export declare const PACKAGE_VERSION = "0.0.53";
export declare const PACKAGE_VERSION = "0.0.54";
export declare const CONNECT_TIMEOUT = 10000;
export declare const internalEvents: Record<string, boolean>;
export declare enum LayoutMode {
Expand Down
2 changes: 1 addition & 1 deletion dist/cjs/utils/vars.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.getDefaultStoredState = exports.PermissionTypes = exports.LayoutMode = exports.internalEvents = exports.CONNECT_TIMEOUT = exports.PACKAGE_VERSION = void 0;
exports.PACKAGE_VERSION = '0.0.53';
exports.PACKAGE_VERSION = '0.0.54';
exports.CONNECT_TIMEOUT = 10000;
exports.internalEvents = {
roomJoined: true,
Expand Down
2 changes: 1 addition & 1 deletion dist/demo/index.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/esm/tsconfig.esm.tsbuildinfo

Large diffs are not rendered by default.

19 changes: 4 additions & 15 deletions dist/esm/types.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ export interface InitialRoomSettings {
mediaDevices?: MediaDeviceSettings;
requireRemoveUserConfirmation: boolean;
baseDomain?: string;
publicRoomUrl?: string;
mobileScreenshare?: boolean;
}
export interface QueuedEventListener {
Expand Down Expand Up @@ -57,21 +58,8 @@ export type InitOptions = {
templateParams?: TemplateParams;
};
export type FrameAttributes = {
align: string;
allow: string;
allowFullscreen: boolean;
frameBorder: string;
height: string;
longDesc: string;
marginHeight: string;
marginWidth: string;
name: string;
referrerPolicy: ReferrerPolicy;
scrolling: string;
src: string;
srcdoc: string;
width: string;
} & HTMLElement;
class?: string;
} & Partial<HTMLIFrameElement>;
export interface InstanceProperties {
frameAttributes?: Partial<FrameAttributes>;
reportErrors?: boolean;
Expand Down Expand Up @@ -104,6 +92,7 @@ type CaptionsFontSize = 'small' | 'medium' | 'large';
export interface CaptionsOptions {
spokenLanguage: CaptionsSpokenLanguage;
fontSize: CaptionsFontSize;
applySpokenLanguageToAll?: boolean;
}
export interface VirtualBackgroundItem {
id: string;
Expand Down
2 changes: 1 addition & 1 deletion dist/esm/utils/vars.d.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { Stored } from '../types';
export declare const PACKAGE_VERSION = "0.0.53";
export declare const PACKAGE_VERSION = "0.0.54";
export declare const CONNECT_TIMEOUT = 10000;
export declare const internalEvents: Record<string, boolean>;
export declare enum LayoutMode {
Expand Down
2 changes: 1 addition & 1 deletion dist/esm/utils/vars.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
export const PACKAGE_VERSION = '0.0.53';
export const PACKAGE_VERSION = '0.0.54';
export const CONNECT_TIMEOUT = 10000;
export const internalEvents = {
roomJoined: true,
Expand Down
2 changes: 1 addition & 1 deletion dist/types/tsconfig.types.tsbuildinfo

Large diffs are not rendered by default.

19 changes: 4 additions & 15 deletions dist/types/types.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ export interface InitialRoomSettings {
mediaDevices?: MediaDeviceSettings;
requireRemoveUserConfirmation: boolean;
baseDomain?: string;
publicRoomUrl?: string;
mobileScreenshare?: boolean;
}
export interface QueuedEventListener {
Expand Down Expand Up @@ -57,21 +58,8 @@ export type InitOptions = {
templateParams?: TemplateParams;
};
export type FrameAttributes = {
align: string;
allow: string;
allowFullscreen: boolean;
frameBorder: string;
height: string;
longDesc: string;
marginHeight: string;
marginWidth: string;
name: string;
referrerPolicy: ReferrerPolicy;
scrolling: string;
src: string;
srcdoc: string;
width: string;
} & HTMLElement;
class?: string;
} & Partial<HTMLIFrameElement>;
export interface InstanceProperties {
frameAttributes?: Partial<FrameAttributes>;
reportErrors?: boolean;
Expand Down Expand Up @@ -104,6 +92,7 @@ type CaptionsFontSize = 'small' | 'medium' | 'large';
export interface CaptionsOptions {
spokenLanguage: CaptionsSpokenLanguage;
fontSize: CaptionsFontSize;
applySpokenLanguageToAll?: boolean;
}
export interface VirtualBackgroundItem {
id: string;
Expand Down
2 changes: 1 addition & 1 deletion dist/types/utils/vars.d.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { Stored } from '../types';
export declare const PACKAGE_VERSION = "0.0.53";
export declare const PACKAGE_VERSION = "0.0.54";
export declare const CONNECT_TIMEOUT = 10000;
export declare const internalEvents: Record<string, boolean>;
export declare enum LayoutMode {
Expand Down
2 changes: 1 addition & 1 deletion dist/umd/index.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@digitalsamba/embedded-sdk",
"packageManager": "yarn@3.1.0",
"version": "0.0.53",
"version": "0.0.54",
"license": "BSD-2-Clause",
"scripts": {
"build": "node tools/version && npm run build:cjs && npm run build:esm && npm run build:umd && npm run build:types && npm run build:update-demo",
Expand Down
19 changes: 4 additions & 15 deletions src/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ export interface InitialRoomSettings {
requireRemoveUserConfirmation: boolean;

baseDomain?: string;
publicRoomUrl?: string;

mobileScreenshare?: boolean;
}
Expand Down Expand Up @@ -95,21 +96,8 @@ export type InitOptions = {
};

export type FrameAttributes = {
align: string;
allow: string;
allowFullscreen: boolean;
frameBorder: string;
height: string;
longDesc: string;
marginHeight: string;
marginWidth: string;
name: string;
referrerPolicy: ReferrerPolicy;
scrolling: string;
src: string;
srcdoc: string;
width: string;
} & HTMLElement;
class?: string;
} & Partial<HTMLIFrameElement>

export interface InstanceProperties {
frameAttributes?: Partial<FrameAttributes>;
Expand Down Expand Up @@ -299,6 +287,7 @@ type CaptionsFontSize = 'small' | 'medium' | 'large';
export interface CaptionsOptions {
spokenLanguage: CaptionsSpokenLanguage;
fontSize: CaptionsFontSize;
applySpokenLanguageToAll?: boolean;
}

export interface VirtualBackgroundItem {
Expand Down
2 changes: 1 addition & 1 deletion src/utils/vars.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { Stored } from '../types';

export const PACKAGE_VERSION = '0.0.53';
export const PACKAGE_VERSION = '0.0.54';

export const CONNECT_TIMEOUT = 10000;

Expand Down