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
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

Historical list of changes in releases

## [v0.0.52] - 2025-09-29
* Add `audioOnly` property to RoomState interface ([#5c5731a7](https://github.com/digitalsamba/embedded-sdk/commit/5c5731a7047b7991c801ab0e309fcad95aa0d125)).
* Add new methods for managing mobile app screenshare ([#0842fb09](https://github.com/digitalsamba/embedded-sdk/commit/abc94b67d0151d6dbd704b8e90054c0933a8400e)).

## [v0.0.51] - 2025-08-18
* Batch multiple enumeration calls into a shared promise ([#2b666c9e](https://github.com/digitalsamba/embedded-sdk/commit/63a1e03d4e3da93d2051bc4ad6bae39546400184)).

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

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions dist/cjs/types.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -145,6 +145,7 @@ export type ActiveMediaDevices = Partial<Record<MediaDeviceKind, string>>;
export interface RoomState {
frameMuted: boolean;
appLanguage: string;
audioOnly: boolean;
media: {
videoEnabled: boolean;
audioEnabled: boolean;
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.51";
export declare const PACKAGE_VERSION = "0.0.52";
export declare const CONNECT_TIMEOUT = 10000;
export declare const internalEvents: Record<string, boolean>;
export declare enum LayoutMode {
Expand Down
3 changes: 2 additions & 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.51';
exports.PACKAGE_VERSION = '0.0.52';
exports.CONNECT_TIMEOUT = 10000;
exports.internalEvents = {
roomJoined: true,
Expand Down Expand Up @@ -41,6 +41,7 @@ const getDefaultStoredState = () => ({
roomState: {
appLanguage: 'en',
frameMuted: false,
audioOnly: false,
media: {
audioEnabled: false,
videoEnabled: false,
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.

1 change: 1 addition & 0 deletions dist/esm/types.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -145,6 +145,7 @@ export type ActiveMediaDevices = Partial<Record<MediaDeviceKind, string>>;
export interface RoomState {
frameMuted: boolean;
appLanguage: string;
audioOnly: boolean;
media: {
videoEnabled: boolean;
audioEnabled: boolean;
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.51";
export declare const PACKAGE_VERSION = "0.0.52";
export declare const CONNECT_TIMEOUT = 10000;
export declare const internalEvents: Record<string, boolean>;
export declare enum LayoutMode {
Expand Down
3 changes: 2 additions & 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.51';
export const PACKAGE_VERSION = '0.0.52';
export const CONNECT_TIMEOUT = 10000;
export const internalEvents = {
roomJoined: true,
Expand Down Expand Up @@ -38,6 +38,7 @@ export const getDefaultStoredState = () => ({
roomState: {
appLanguage: 'en',
frameMuted: false,
audioOnly: false,
media: {
audioEnabled: false,
videoEnabled: false,
Expand Down
2 changes: 1 addition & 1 deletion dist/types/tsconfig.types.tsbuildinfo

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions dist/types/types.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -145,6 +145,7 @@ export type ActiveMediaDevices = Partial<Record<MediaDeviceKind, string>>;
export interface RoomState {
frameMuted: boolean;
appLanguage: string;
audioOnly: boolean;
media: {
videoEnabled: boolean;
audioEnabled: boolean;
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.51";
export declare const PACKAGE_VERSION = "0.0.52";
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.51",
"version": "0.0.52",
"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
1 change: 1 addition & 0 deletions src/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -342,6 +342,7 @@ export type ActiveMediaDevices = Partial<Record<MediaDeviceKind, string>>;
export interface RoomState {
frameMuted: boolean;
appLanguage: string;
audioOnly: boolean;

media: {
videoEnabled: boolean;
Expand Down
3 changes: 2 additions & 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.51';
export const PACKAGE_VERSION = '0.0.52';

export const CONNECT_TIMEOUT = 10000;

Expand Down Expand Up @@ -43,6 +43,7 @@ export const getDefaultStoredState: () => Stored = () => ({
roomState: {
appLanguage: 'en',
frameMuted: false,
audioOnly: false,
media: {
audioEnabled: false,
videoEnabled: false,
Expand Down