From 417b377427664c85ecbf56af0ee4701d5dbb3575 Mon Sep 17 00:00:00 2001 From: Guilherme Leme Date: Fri, 6 Dec 2024 16:03:08 -0300 Subject: [PATCH 01/15] [sendDisplayNotification] - Added possibility for the plugin developer block the notifications, so none are displayed to the user --- .../component.tsx | 9 +++++++++ src/ui-commands/notification/commands.ts | 14 +++++++++++++- src/ui-commands/notification/enums.ts | 1 + src/ui-commands/notification/types.ts | 5 +++++ 4 files changed, 28 insertions(+), 1 deletion(-) diff --git a/samples/sample-action-button-dropdown-plugin/src/components/sample-action-button-dropdown-plugin-item/component.tsx b/samples/sample-action-button-dropdown-plugin/src/components/sample-action-button-dropdown-plugin-item/component.tsx index 26f3ca19..fc004a10 100644 --- a/samples/sample-action-button-dropdown-plugin/src/components/sample-action-button-dropdown-plugin-item/component.tsx +++ b/samples/sample-action-button-dropdown-plugin/src/components/sample-action-button-dropdown-plugin-item/component.tsx @@ -128,6 +128,15 @@ function SampleActionButtonDropdownPlugin( handleFetchPresentationData(currentPresentation); }, }), + new ActionButtonDropdownOption({ + label: 'Stop notifications', + icon: 'copy', + tooltip: 'this is a button injected by plugin', + allowed: true, + onClick: () => { + pluginApi.uiCommands.notification.setDisplayNotifications(false); + }, + }), new ActionButtonDropdownOption({ label: showingGenericContentInPresentationArea ? 'Return previous presentation content' : 'Set different content in presentation area', icon: 'copy', diff --git a/src/ui-commands/notification/commands.ts b/src/ui-commands/notification/commands.ts index 07ebbefe..c388f5c2 100644 --- a/src/ui-commands/notification/commands.ts +++ b/src/ui-commands/notification/commands.ts @@ -1,5 +1,5 @@ import { NotificationEnum } from './enums'; -import { SendNotificationCommandArguments } from './types'; +import { SendNotificationCommandArguments, SetDisplayNotificationsArguments } from './types'; export const notification = { /** @@ -14,4 +14,16 @@ export const notification = { }), ); }, + /** + * Decides if notifications stop being displayed. + */ + setDisplayNotifications: (isNotificationDisplaying: boolean) => { + window.dispatchEvent( + new CustomEvent< + SetDisplayNotificationsArguments + >(NotificationEnum.SET_DISPLAY, { + detail: { isNotificationDisplaying }, + }), + ); + }, }; diff --git a/src/ui-commands/notification/enums.ts b/src/ui-commands/notification/enums.ts index 1d4519d3..3e0f7c21 100644 --- a/src/ui-commands/notification/enums.ts +++ b/src/ui-commands/notification/enums.ts @@ -1,5 +1,6 @@ export enum NotificationEnum { SEND = 'SEND_NOTIFICATION', + SET_DISPLAY = 'SET_DISPLAY' } export enum NotificationTypeUiCommand { diff --git a/src/ui-commands/notification/types.ts b/src/ui-commands/notification/types.ts index 8159c8f0..6c6cc7ed 100644 --- a/src/ui-commands/notification/types.ts +++ b/src/ui-commands/notification/types.ts @@ -15,6 +15,11 @@ export interface SendNotificationCommandArguments { small?: boolean; } +export interface SetDisplayNotificationsArguments { + isNotificationDisplaying: boolean; +} + export interface UiCommandsNotificationObject { send: (information: SendNotificationCommandArguments) => void; + setDisplayNotifications: (isNotificationDisplaying: boolean) => void; } From 1cd94d640a80af2704e5a959a60baeb1747732eb Mon Sep 17 00:00:00 2001 From: Guilherme Leme Date: Wed, 11 Dec 2024 13:21:22 -0300 Subject: [PATCH 02/15] [self-view-disabled] - Added ui command setSelfViewDisabledAllDevices to disable self view to all devices that a user has --- .../component.tsx | 21 ++++++++++++++- src/ui-commands/camera/commands.ts | 27 +++++++++++++++++++ src/ui-commands/camera/enums.ts | 3 +++ src/ui-commands/camera/types.ts | 9 +++++++ src/ui-commands/commands.ts | 2 ++ src/ui-commands/types.ts | 2 ++ 6 files changed, 63 insertions(+), 1 deletion(-) create mode 100644 src/ui-commands/camera/commands.ts create mode 100644 src/ui-commands/camera/enums.ts create mode 100644 src/ui-commands/camera/types.ts diff --git a/samples/sample-action-button-dropdown-plugin/src/components/sample-action-button-dropdown-plugin-item/component.tsx b/samples/sample-action-button-dropdown-plugin/src/components/sample-action-button-dropdown-plugin-item/component.tsx index 26f3ca19..ad924590 100644 --- a/samples/sample-action-button-dropdown-plugin/src/components/sample-action-button-dropdown-plugin-item/component.tsx +++ b/samples/sample-action-button-dropdown-plugin/src/components/sample-action-button-dropdown-plugin-item/component.tsx @@ -41,6 +41,7 @@ function SampleActionButtonDropdownPlugin( isOpen: true, }]); + const [isSelfViewDisabled, setIsSelfViewDisabled] = useState(false); const { data: isMeetingBreakoutFromGraphql } = pluginApi.useCustomSubscription< IsMeetingBreakoutGraphqlResponse>(IS_MEETING_BREAKOUT); @@ -135,9 +136,27 @@ function SampleActionButtonDropdownPlugin( allowed: true, onClick: handleChangePresentationAreaContent, }), + new ActionButtonDropdownOption({ + label: !(isSelfViewDisabled) ? 'Disable camera self view' : 'Enable self view', + icon: 'desktop', + tooltip: 'this is a button injected by plugin', + allowed: true, + onClick: !(isSelfViewDisabled) ? () => { + setIsSelfViewDisabled(true); + pluginApi.uiCommands.camera.setSelfViewDisableAllDevices({ + isSelfViewDisabledAllDevices: true, + }); + } : () => { + setIsSelfViewDisabled(false); + pluginApi.uiCommands.camera.setSelfViewDisableAllDevices({ + isSelfViewDisabledAllDevices: false, + }); + }, + }), ]); } - }, [currentPresentation, currentUser, showingGenericContentInPresentationArea]); + }, [currentPresentation, currentUser, + showingGenericContentInPresentationArea, isSelfViewDisabled]); return ( { + const { + isSelfViewDisabledAllDevices, + } = setSelfViewDisableAllDevicesCommandArguments; + window.dispatchEvent( + new CustomEvent< + SetSelfViewDisableAllDevicesCommandArguments + >(CameraEnum.SET_SELF_VIEW_DISABLED_ALL_DEVICES, { + detail: { + isSelfViewDisabledAllDevices, + }, + }), + ); + }, +}; diff --git a/src/ui-commands/camera/enums.ts b/src/ui-commands/camera/enums.ts new file mode 100644 index 00000000..0596d516 --- /dev/null +++ b/src/ui-commands/camera/enums.ts @@ -0,0 +1,3 @@ +export enum CameraEnum { + SET_SELF_VIEW_DISABLED_ALL_DEVICES = 'SET_SELF_VIEW_DISABLED_ALL_DEVICES_COMMAND', +} diff --git a/src/ui-commands/camera/types.ts b/src/ui-commands/camera/types.ts new file mode 100644 index 00000000..316d449d --- /dev/null +++ b/src/ui-commands/camera/types.ts @@ -0,0 +1,9 @@ +export interface SetSelfViewDisableAllDevicesCommandArguments { + isSelfViewDisabledAllDevices: boolean; +} + +export interface UiCommandsCameraObject { + setSelfViewDisableAllDevices: ( + setSelfViewDisableAllDevicesCommandArguments: SetSelfViewDisableAllDevicesCommandArguments + ) => void; +} diff --git a/src/ui-commands/commands.ts b/src/ui-commands/commands.ts index 4c493ec3..a6c1c3d9 100644 --- a/src/ui-commands/commands.ts +++ b/src/ui-commands/commands.ts @@ -5,8 +5,10 @@ import { presentationArea } from './presentation-area/commands'; import { userStatus } from './user-status/commands'; import { conference } from './conference/commands'; import { notification } from './notification/commands'; +import { camera } from './camera/commands'; export const uiCommands = { + camera, chat, externalVideo, sidekickOptionsContainer, diff --git a/src/ui-commands/types.ts b/src/ui-commands/types.ts index e2ea18a9..c99f0355 100644 --- a/src/ui-commands/types.ts +++ b/src/ui-commands/types.ts @@ -5,8 +5,10 @@ import { UiCommandsPresentationAreaObject } from './presentation-area/types'; import { UiCommandsUserStatusObject } from './user-status/types'; import { UiCommandsConferenceObject } from './conference/types'; import { UiCommandsNotificationObject } from './notification/types'; +import { UiCommandsCameraObject } from './camera/types'; export interface UiCommands { + camera: UiCommandsCameraObject; chat: UiCommandsChatObject; externalVideo: UiCommandsExternalVideoObject; sidekickOptionsContainer: UiCommandsSidekickOptionsContainerObject; From a8e2341eae1289154770803e5e2fa8ea39a29c3d Mon Sep 17 00:00:00 2001 From: Guilherme Leme Date: Fri, 13 Dec 2024 09:52:56 -0300 Subject: [PATCH 03/15] [self-view-disabled] - added cameras to useCurrentUser and added selfViewDisabled for specific streamID --- .../component.tsx | 4 +-- .../domain/users/current-user/types.ts | 8 ++++- src/ui-commands/camera/commands.ts | 31 +++++++++++++++++-- src/ui-commands/camera/enums.ts | 1 + src/ui-commands/camera/types.ts | 8 +++++ 5 files changed, 46 insertions(+), 6 deletions(-) diff --git a/samples/sample-action-button-dropdown-plugin/src/components/sample-action-button-dropdown-plugin-item/component.tsx b/samples/sample-action-button-dropdown-plugin/src/components/sample-action-button-dropdown-plugin-item/component.tsx index ad924590..1e881364 100644 --- a/samples/sample-action-button-dropdown-plugin/src/components/sample-action-button-dropdown-plugin-item/component.tsx +++ b/samples/sample-action-button-dropdown-plugin/src/components/sample-action-button-dropdown-plugin-item/component.tsx @@ -51,8 +51,8 @@ function SampleActionButtonDropdownPlugin( icon: 'presentation', type: NotificationTypeUiCommand.INFO, options: { - // helpLabel: 'teste help label', // this is not necessary - // helpLink: 'teste help link', + // helpLabel: 'test help label', // this is not necessary + // helpLink: 'test help link', autoClose: 20000, }, content: 'Content of my notification', diff --git a/src/data-consumption/domain/users/current-user/types.ts b/src/data-consumption/domain/users/current-user/types.ts index 192a1184..8548b609 100644 --- a/src/data-consumption/domain/users/current-user/types.ts +++ b/src/data-consumption/domain/users/current-user/types.ts @@ -1,10 +1,16 @@ import { GraphqlResponseWrapper } from '../../../../core'; +export interface Camera { + streamId: string; +} + export interface CurrentUserData { userId: string; + extId: string; name: string; role: string; - presenter: boolean + presenter: boolean; + cameras: Camera[]; } export type UseCurrentUserFunction = () => GraphqlResponseWrapper | undefined; diff --git a/src/ui-commands/camera/commands.ts b/src/ui-commands/camera/commands.ts index bcb86f04..a55be81c 100644 --- a/src/ui-commands/camera/commands.ts +++ b/src/ui-commands/camera/commands.ts @@ -1,12 +1,12 @@ import { CameraEnum } from './enums'; -import { SetSelfViewDisableAllDevicesCommandArguments } from './types'; +import { SetSelfViewDisableAllDevicesCommandArguments, SetSelfViewDisableCommandArguments } from './types'; export const camera = { /** - * Sets the displayNavBar to true (show it) or false (hide it). + * Sets the self-view camera disabled/enabled for all cameras. * * @param setSelfViewDisableAllDevicesCommandArguments: object with a - * boolean that tells whether to display the navbar + * boolean that tells whether to enable or not the self-view camera for all devices */ setSelfViewDisableAllDevices: ( setSelfViewDisableAllDevicesCommandArguments: SetSelfViewDisableAllDevicesCommandArguments, @@ -24,4 +24,29 @@ export const camera = { }), ); }, + + /** + * Sets the self-view camera disabled/enabled for specific camera. + * + * @param setSelfViewDisableCommandArguments: object with a + * boolean that tells whether to enable or not the self-view camera for specific device + */ + setSelfViewDisable: ( + setSelfViewDisableCommandArguments: SetSelfViewDisableCommandArguments, + ) => { + const { + isSelfViewDisabled, + streamId, + } = setSelfViewDisableCommandArguments; + window.dispatchEvent( + new CustomEvent< + SetSelfViewDisableCommandArguments + >(CameraEnum.SET_SELF_VIEW_DISABLED, { + detail: { + isSelfViewDisabled, + streamId, + }, + }), + ); + }, }; diff --git a/src/ui-commands/camera/enums.ts b/src/ui-commands/camera/enums.ts index 0596d516..875069b2 100644 --- a/src/ui-commands/camera/enums.ts +++ b/src/ui-commands/camera/enums.ts @@ -1,3 +1,4 @@ export enum CameraEnum { SET_SELF_VIEW_DISABLED_ALL_DEVICES = 'SET_SELF_VIEW_DISABLED_ALL_DEVICES_COMMAND', + SET_SELF_VIEW_DISABLED = 'SET_SELF_VIEW_DISABLED_COMMAND', } diff --git a/src/ui-commands/camera/types.ts b/src/ui-commands/camera/types.ts index 316d449d..2c130feb 100644 --- a/src/ui-commands/camera/types.ts +++ b/src/ui-commands/camera/types.ts @@ -2,8 +2,16 @@ export interface SetSelfViewDisableAllDevicesCommandArguments { isSelfViewDisabledAllDevices: boolean; } +export interface SetSelfViewDisableCommandArguments { + isSelfViewDisabled: boolean; + streamId: string; +} + export interface UiCommandsCameraObject { setSelfViewDisableAllDevices: ( setSelfViewDisableAllDevicesCommandArguments: SetSelfViewDisableAllDevicesCommandArguments ) => void; + setSelfViewDisable: ( + setSelfViewDisableAllDevicesCommandArguments: SetSelfViewDisableCommandArguments + ) => void; } From 110c6de2998334ce88daec1bfab14490c62bd1cc Mon Sep 17 00:00:00 2001 From: Guilherme Leme Date: Fri, 13 Dec 2024 13:52:42 -0300 Subject: [PATCH 04/15] [sendDisplayNotification] - changed the name of the ui-command --- .../component.tsx | 2 +- src/ui-commands/notification/commands.ts | 10 +++++----- src/ui-commands/notification/enums.ts | 4 ++-- src/ui-commands/notification/types.ts | 6 +++--- 4 files changed, 11 insertions(+), 11 deletions(-) diff --git a/samples/sample-action-button-dropdown-plugin/src/components/sample-action-button-dropdown-plugin-item/component.tsx b/samples/sample-action-button-dropdown-plugin/src/components/sample-action-button-dropdown-plugin-item/component.tsx index 729d60d9..54afac99 100644 --- a/samples/sample-action-button-dropdown-plugin/src/components/sample-action-button-dropdown-plugin-item/component.tsx +++ b/samples/sample-action-button-dropdown-plugin/src/components/sample-action-button-dropdown-plugin-item/component.tsx @@ -149,7 +149,7 @@ function SampleActionButtonDropdownPlugin( tooltip: 'this is a button injected by plugin', allowed: true, onClick: () => { - pluginApi.uiCommands.notification.setDisplayNotifications(false); + pluginApi.uiCommands.notification.setEnabledDisplayNotifications(false); }, }), new ActionButtonDropdownOption({ diff --git a/src/ui-commands/notification/commands.ts b/src/ui-commands/notification/commands.ts index c388f5c2..f9b819bc 100644 --- a/src/ui-commands/notification/commands.ts +++ b/src/ui-commands/notification/commands.ts @@ -1,5 +1,5 @@ import { NotificationEnum } from './enums'; -import { SendNotificationCommandArguments, SetDisplayNotificationsArguments } from './types'; +import { SendNotificationCommandArguments, SetEnableDisplayNotificationsArguments } from './types'; export const notification = { /** @@ -17,12 +17,12 @@ export const notification = { /** * Decides if notifications stop being displayed. */ - setDisplayNotifications: (isNotificationDisplaying: boolean) => { + setEnabledDisplayNotifications: (isNotificationDisplayEnabled: boolean) => { window.dispatchEvent( new CustomEvent< - SetDisplayNotificationsArguments - >(NotificationEnum.SET_DISPLAY, { - detail: { isNotificationDisplaying }, + SetEnableDisplayNotificationsArguments + >(NotificationEnum.SET_ENABLED_DISPLAY, { + detail: { isNotificationDisplayEnabled }, }), ); }, diff --git a/src/ui-commands/notification/enums.ts b/src/ui-commands/notification/enums.ts index 3e0f7c21..7052d607 100644 --- a/src/ui-commands/notification/enums.ts +++ b/src/ui-commands/notification/enums.ts @@ -1,6 +1,6 @@ export enum NotificationEnum { - SEND = 'SEND_NOTIFICATION', - SET_DISPLAY = 'SET_DISPLAY' + SEND = 'SEND_NOTIFICATION_COMMAND', + SET_ENABLED_DISPLAY = 'SET_ENABLED_DISPLAY_COMMAND' } export enum NotificationTypeUiCommand { diff --git a/src/ui-commands/notification/types.ts b/src/ui-commands/notification/types.ts index 6c6cc7ed..6bb25427 100644 --- a/src/ui-commands/notification/types.ts +++ b/src/ui-commands/notification/types.ts @@ -15,11 +15,11 @@ export interface SendNotificationCommandArguments { small?: boolean; } -export interface SetDisplayNotificationsArguments { - isNotificationDisplaying: boolean; +export interface SetEnableDisplayNotificationsArguments { + isNotificationDisplayEnabled: boolean; } export interface UiCommandsNotificationObject { send: (information: SendNotificationCommandArguments) => void; - setDisplayNotifications: (isNotificationDisplaying: boolean) => void; + setEnabledDisplayNotifications: (isNotificationDisplayEnabled: boolean) => void; } From 3b119fc44d12931bc2bd53c87ff9a7a7b53d1642 Mon Sep 17 00:00:00 2001 From: Guilherme Leme Date: Wed, 22 Jan 2025 15:33:45 -0300 Subject: [PATCH 05/15] [self-view-disabled] - Changes in review --- .../sample-action-button-dropdown-plugin-item/component.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/samples/sample-action-button-dropdown-plugin/src/components/sample-action-button-dropdown-plugin-item/component.tsx b/samples/sample-action-button-dropdown-plugin/src/components/sample-action-button-dropdown-plugin-item/component.tsx index a8babf19..ad90eda1 100644 --- a/samples/sample-action-button-dropdown-plugin/src/components/sample-action-button-dropdown-plugin-item/component.tsx +++ b/samples/sample-action-button-dropdown-plugin/src/components/sample-action-button-dropdown-plugin-item/component.tsx @@ -199,7 +199,8 @@ function SampleActionButtonDropdownPlugin( }), ]); } - }, [currentPresentation, currentUser, showingGenericContentInPresentationArea]); + }, [currentPresentation, currentUser, isSelfViewDisabled, + showingGenericContentInPresentationArea]); return ( Date: Thu, 23 Jan 2025 09:19:58 -0500 Subject: [PATCH 06/15] docs: use npm ci in production build in README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 223e0209..80b76e58 100644 --- a/README.md +++ b/README.md @@ -94,7 +94,7 @@ follow these steps: ```bash cd $HOME/src/bigbluebutton-html-plugin-sdk/samples/sample-action-button-dropdown-plugin -npm install +npm ci npm run build-bundle ``` From 08bc4e6ba4e3e8af51cae544bf32daf586594bad Mon Sep 17 00:00:00 2001 From: Tiago Jacobs Date: Tue, 28 Jan 2025 22:30:22 -0300 Subject: [PATCH 07/15] Bump version to 0.0.71 --- package-lock.json | 4 ++-- package.json | 2 +- .../package-lock.json | 15 ++++++++------- .../package.json | 2 +- .../sample-actions-bar-plugin/package-lock.json | 9 +++++---- samples/sample-actions-bar-plugin/package.json | 2 +- .../package-lock.json | 15 ++++++++------- .../package.json | 2 +- .../package-lock.json | 15 ++++++++------- .../package.json | 2 +- .../package-lock.json | 15 ++++++++------- .../sample-custom-subscription-hook/package.json | 2 +- .../sample-data-channel-plugin/package-lock.json | 15 ++++++++------- samples/sample-data-channel-plugin/package.json | 2 +- .../package-lock.json | 15 ++++++++------- .../sample-dom-element-manipulation/package.json | 2 +- .../package-lock.json | 15 ++++++++------- .../sample-floating-window-plugin/package.json | 2 +- .../package-lock.json | 9 +++++---- .../package.json | 2 +- samples/sample-nav-bar-plugin/package-lock.json | 15 ++++++++------- samples/sample-nav-bar-plugin/package.json | 2 +- .../package-lock.json | 15 ++++++++------- .../sample-options-dropdown-plugin/package.json | 2 +- .../package-lock.json | 15 ++++++++------- .../package.json | 2 +- .../package-lock.json | 15 ++++++++------- .../package.json | 2 +- .../package-lock.json | 9 +++++---- .../sample-server-commands-plugin/package.json | 2 +- .../sample-ui-commands-plugin/package-lock.json | 15 ++++++++------- samples/sample-ui-commands-plugin/package.json | 2 +- samples/sample-ui-events-plugin/package-lock.json | 15 ++++++++------- samples/sample-ui-events-plugin/package.json | 2 +- samples/sample-use-meeting/package-lock.json | 15 ++++++++------- samples/sample-use-meeting/package.json | 2 +- .../package-lock.json | 15 ++++++++------- .../package.json | 2 +- .../package-lock.json | 15 ++++++++------- .../sample-user-list-dropdown-plugin/package.json | 2 +- .../package-lock.json | 15 ++++++++------- .../package.json | 2 +- 42 files changed, 174 insertions(+), 154 deletions(-) diff --git a/package-lock.json b/package-lock.json index 6d3eba6f..fac22254 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "bigbluebutton-html-plugin-sdk", - "version": "0.0.70", + "version": "0.0.71", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "bigbluebutton-html-plugin-sdk", - "version": "0.0.70", + "version": "0.0.71", "license": "LGPL-3.0", "dependencies": { "@apollo/client": "^3.8.7", diff --git a/package.json b/package.json index 33ed4431..4753aa17 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "bigbluebutton-html-plugin-sdk", - "version": "0.0.70", + "version": "0.0.71", "homepage": "https://github.com/bigbluebutton/bigbluebutton-html-plugin-sdk", "main": "dist/cjs/index.js", "module": "dist/esm/index.js", diff --git a/samples/sample-action-button-dropdown-plugin/package-lock.json b/samples/sample-action-button-dropdown-plugin/package-lock.json index 4db35149..39eb4528 100644 --- a/samples/sample-action-button-dropdown-plugin/package-lock.json +++ b/samples/sample-action-button-dropdown-plugin/package-lock.json @@ -14,7 +14,7 @@ "@types/react": "^18.2.13", "@types/react-dom": "^18.2.6", "babel-plugin-syntax-dynamic-import": "^6.18.0", - "bigbluebutton-html-plugin-sdk": "0.0.70", + "bigbluebutton-html-plugin-sdk": "0.0.71", "path": "^0.12.7", "react": "^18.2.0", "react-dom": "^18.2.0", @@ -3468,9 +3468,10 @@ "dev": true }, "node_modules/bigbluebutton-html-plugin-sdk": { - "version": "0.0.70", - "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.70.tgz", - "integrity": "sha512-TxNaRin5wQPVETB0l2vwidogWqlfYxRsdBvOsuldu8i/wREA+K+jIGfdRwRZaO2BhpIy+HlpPKwlIPYg7fOaDw==", + "version": "0.0.71", + "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.71.tgz", + "integrity": "sha512-mnrKaGOQb6dlNjYERHb5Y0hbs5wXp7h82fDRxbdZErny1+gxg/yMYPEv3fj2EXj6miWXOXoIcshqRbZZZgto+w==", + "license": "LGPL-3.0", "dependencies": { "@apollo/client": "^3.8.7", "@browser-bunyan/console-formatted-stream": "^1.8.0", @@ -12270,9 +12271,9 @@ "dev": true }, "bigbluebutton-html-plugin-sdk": { - "version": "0.0.70", - "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.70.tgz", - "integrity": "sha512-TxNaRin5wQPVETB0l2vwidogWqlfYxRsdBvOsuldu8i/wREA+K+jIGfdRwRZaO2BhpIy+HlpPKwlIPYg7fOaDw==", + "version": "0.0.71", + "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.71.tgz", + "integrity": "sha512-mnrKaGOQb6dlNjYERHb5Y0hbs5wXp7h82fDRxbdZErny1+gxg/yMYPEv3fj2EXj6miWXOXoIcshqRbZZZgto+w==", "requires": { "@apollo/client": "^3.8.7", "@browser-bunyan/console-formatted-stream": "^1.8.0", diff --git a/samples/sample-action-button-dropdown-plugin/package.json b/samples/sample-action-button-dropdown-plugin/package.json index 5cd96b89..84cbaf8d 100644 --- a/samples/sample-action-button-dropdown-plugin/package.json +++ b/samples/sample-action-button-dropdown-plugin/package.json @@ -10,7 +10,7 @@ "@types/react": "^18.2.13", "@types/react-dom": "^18.2.6", "babel-plugin-syntax-dynamic-import": "^6.18.0", - "bigbluebutton-html-plugin-sdk": "0.0.70", + "bigbluebutton-html-plugin-sdk": "0.0.71", "path": "^0.12.7", "react": "^18.2.0", "react-dom": "^18.2.0", diff --git a/samples/sample-actions-bar-plugin/package-lock.json b/samples/sample-actions-bar-plugin/package-lock.json index 888d82c4..9cae05ce 100644 --- a/samples/sample-actions-bar-plugin/package-lock.json +++ b/samples/sample-actions-bar-plugin/package-lock.json @@ -14,7 +14,7 @@ "@types/react": "^18.2.13", "@types/react-dom": "^18.2.6", "babel-plugin-syntax-dynamic-import": "^6.18.0", - "bigbluebutton-html-plugin-sdk": "0.0.70", + "bigbluebutton-html-plugin-sdk": "0.0.71", "path": "^0.12.7", "react": "^18.2.0", "react-dom": "^18.2.0", @@ -3635,9 +3635,10 @@ "dev": true }, "node_modules/bigbluebutton-html-plugin-sdk": { - "version": "0.0.70", - "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.70.tgz", - "integrity": "sha512-TxNaRin5wQPVETB0l2vwidogWqlfYxRsdBvOsuldu8i/wREA+K+jIGfdRwRZaO2BhpIy+HlpPKwlIPYg7fOaDw==", + "version": "0.0.71", + "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.71.tgz", + "integrity": "sha512-mnrKaGOQb6dlNjYERHb5Y0hbs5wXp7h82fDRxbdZErny1+gxg/yMYPEv3fj2EXj6miWXOXoIcshqRbZZZgto+w==", + "license": "LGPL-3.0", "dependencies": { "@apollo/client": "^3.8.7", "@browser-bunyan/console-formatted-stream": "^1.8.0", diff --git a/samples/sample-actions-bar-plugin/package.json b/samples/sample-actions-bar-plugin/package.json index c20848ad..61f73efb 100644 --- a/samples/sample-actions-bar-plugin/package.json +++ b/samples/sample-actions-bar-plugin/package.json @@ -10,7 +10,7 @@ "@types/react": "^18.2.13", "@types/react-dom": "^18.2.6", "babel-plugin-syntax-dynamic-import": "^6.18.0", - "bigbluebutton-html-plugin-sdk": "0.0.70", + "bigbluebutton-html-plugin-sdk": "0.0.71", "path": "^0.12.7", "react": "^18.2.0", "react-dom": "^18.2.0", diff --git a/samples/sample-audio-settings-dropdown-plugin/package-lock.json b/samples/sample-audio-settings-dropdown-plugin/package-lock.json index 25af6c86..6cbeb623 100644 --- a/samples/sample-audio-settings-dropdown-plugin/package-lock.json +++ b/samples/sample-audio-settings-dropdown-plugin/package-lock.json @@ -14,7 +14,7 @@ "@types/react": "^18.2.13", "@types/react-dom": "^18.2.6", "babel-plugin-syntax-dynamic-import": "^6.18.0", - "bigbluebutton-html-plugin-sdk": "0.0.70", + "bigbluebutton-html-plugin-sdk": "0.0.71", "browser-bunyan": "^1.8.0", "path": "^0.12.7", "react": "^18.2.0", @@ -3409,9 +3409,10 @@ "dev": true }, "node_modules/bigbluebutton-html-plugin-sdk": { - "version": "0.0.70", - "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.70.tgz", - "integrity": "sha512-TxNaRin5wQPVETB0l2vwidogWqlfYxRsdBvOsuldu8i/wREA+K+jIGfdRwRZaO2BhpIy+HlpPKwlIPYg7fOaDw==", + "version": "0.0.71", + "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.71.tgz", + "integrity": "sha512-mnrKaGOQb6dlNjYERHb5Y0hbs5wXp7h82fDRxbdZErny1+gxg/yMYPEv3fj2EXj6miWXOXoIcshqRbZZZgto+w==", + "license": "LGPL-3.0", "dependencies": { "@apollo/client": "^3.8.7", "@browser-bunyan/console-formatted-stream": "^1.8.0", @@ -11675,9 +11676,9 @@ "dev": true }, "bigbluebutton-html-plugin-sdk": { - "version": "0.0.70", - "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.70.tgz", - "integrity": "sha512-TxNaRin5wQPVETB0l2vwidogWqlfYxRsdBvOsuldu8i/wREA+K+jIGfdRwRZaO2BhpIy+HlpPKwlIPYg7fOaDw==", + "version": "0.0.71", + "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.71.tgz", + "integrity": "sha512-mnrKaGOQb6dlNjYERHb5Y0hbs5wXp7h82fDRxbdZErny1+gxg/yMYPEv3fj2EXj6miWXOXoIcshqRbZZZgto+w==", "requires": { "@apollo/client": "^3.8.7", "@browser-bunyan/console-formatted-stream": "^1.8.0", diff --git a/samples/sample-audio-settings-dropdown-plugin/package.json b/samples/sample-audio-settings-dropdown-plugin/package.json index 42f316ab..97e2831b 100644 --- a/samples/sample-audio-settings-dropdown-plugin/package.json +++ b/samples/sample-audio-settings-dropdown-plugin/package.json @@ -10,7 +10,7 @@ "@types/react": "^18.2.13", "@types/react-dom": "^18.2.6", "babel-plugin-syntax-dynamic-import": "^6.18.0", - "bigbluebutton-html-plugin-sdk": "0.0.70", + "bigbluebutton-html-plugin-sdk": "0.0.71", "browser-bunyan": "^1.8.0", "path": "^0.12.7", "react": "^18.2.0", diff --git a/samples/sample-camera-settings-dropdown-plugin/package-lock.json b/samples/sample-camera-settings-dropdown-plugin/package-lock.json index 4c0c3b28..36b4dd0e 100644 --- a/samples/sample-camera-settings-dropdown-plugin/package-lock.json +++ b/samples/sample-camera-settings-dropdown-plugin/package-lock.json @@ -14,7 +14,7 @@ "@types/react": "^18.2.13", "@types/react-dom": "^18.2.6", "babel-plugin-syntax-dynamic-import": "^6.18.0", - "bigbluebutton-html-plugin-sdk": "0.0.70", + "bigbluebutton-html-plugin-sdk": "0.0.71", "path": "^0.12.7", "react": "^18.2.0", "react-dom": "^18.2.0", @@ -3408,9 +3408,10 @@ "dev": true }, "node_modules/bigbluebutton-html-plugin-sdk": { - "version": "0.0.70", - "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.70.tgz", - "integrity": "sha512-TxNaRin5wQPVETB0l2vwidogWqlfYxRsdBvOsuldu8i/wREA+K+jIGfdRwRZaO2BhpIy+HlpPKwlIPYg7fOaDw==", + "version": "0.0.71", + "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.71.tgz", + "integrity": "sha512-mnrKaGOQb6dlNjYERHb5Y0hbs5wXp7h82fDRxbdZErny1+gxg/yMYPEv3fj2EXj6miWXOXoIcshqRbZZZgto+w==", + "license": "LGPL-3.0", "dependencies": { "@apollo/client": "^3.8.7", "@browser-bunyan/console-formatted-stream": "^1.8.0", @@ -11674,9 +11675,9 @@ "dev": true }, "bigbluebutton-html-plugin-sdk": { - "version": "0.0.70", - "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.70.tgz", - "integrity": "sha512-TxNaRin5wQPVETB0l2vwidogWqlfYxRsdBvOsuldu8i/wREA+K+jIGfdRwRZaO2BhpIy+HlpPKwlIPYg7fOaDw==", + "version": "0.0.71", + "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.71.tgz", + "integrity": "sha512-mnrKaGOQb6dlNjYERHb5Y0hbs5wXp7h82fDRxbdZErny1+gxg/yMYPEv3fj2EXj6miWXOXoIcshqRbZZZgto+w==", "requires": { "@apollo/client": "^3.8.7", "@browser-bunyan/console-formatted-stream": "^1.8.0", diff --git a/samples/sample-camera-settings-dropdown-plugin/package.json b/samples/sample-camera-settings-dropdown-plugin/package.json index c616d7a1..7945437c 100644 --- a/samples/sample-camera-settings-dropdown-plugin/package.json +++ b/samples/sample-camera-settings-dropdown-plugin/package.json @@ -10,7 +10,7 @@ "@types/react": "^18.2.13", "@types/react-dom": "^18.2.6", "babel-plugin-syntax-dynamic-import": "^6.18.0", - "bigbluebutton-html-plugin-sdk": "0.0.70", + "bigbluebutton-html-plugin-sdk": "0.0.71", "path": "^0.12.7", "react": "^18.2.0", "react-dom": "^18.2.0", diff --git a/samples/sample-custom-subscription-hook/package-lock.json b/samples/sample-custom-subscription-hook/package-lock.json index 9d682a7b..45a72bfd 100644 --- a/samples/sample-custom-subscription-hook/package-lock.json +++ b/samples/sample-custom-subscription-hook/package-lock.json @@ -14,7 +14,7 @@ "@types/react": "^18.2.13", "@types/react-dom": "^18.2.6", "babel-plugin-syntax-dynamic-import": "^6.18.0", - "bigbluebutton-html-plugin-sdk": "0.0.70", + "bigbluebutton-html-plugin-sdk": "0.0.71", "path": "^0.12.7", "react": "^18.2.0", "react-dom": "^18.2.0", @@ -3408,9 +3408,10 @@ "dev": true }, "node_modules/bigbluebutton-html-plugin-sdk": { - "version": "0.0.70", - "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.70.tgz", - "integrity": "sha512-TxNaRin5wQPVETB0l2vwidogWqlfYxRsdBvOsuldu8i/wREA+K+jIGfdRwRZaO2BhpIy+HlpPKwlIPYg7fOaDw==", + "version": "0.0.71", + "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.71.tgz", + "integrity": "sha512-mnrKaGOQb6dlNjYERHb5Y0hbs5wXp7h82fDRxbdZErny1+gxg/yMYPEv3fj2EXj6miWXOXoIcshqRbZZZgto+w==", + "license": "LGPL-3.0", "dependencies": { "@apollo/client": "^3.8.7", "@browser-bunyan/console-formatted-stream": "^1.8.0", @@ -11674,9 +11675,9 @@ "dev": true }, "bigbluebutton-html-plugin-sdk": { - "version": "0.0.70", - "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.70.tgz", - "integrity": "sha512-TxNaRin5wQPVETB0l2vwidogWqlfYxRsdBvOsuldu8i/wREA+K+jIGfdRwRZaO2BhpIy+HlpPKwlIPYg7fOaDw==", + "version": "0.0.71", + "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.71.tgz", + "integrity": "sha512-mnrKaGOQb6dlNjYERHb5Y0hbs5wXp7h82fDRxbdZErny1+gxg/yMYPEv3fj2EXj6miWXOXoIcshqRbZZZgto+w==", "requires": { "@apollo/client": "^3.8.7", "@browser-bunyan/console-formatted-stream": "^1.8.0", diff --git a/samples/sample-custom-subscription-hook/package.json b/samples/sample-custom-subscription-hook/package.json index f16eb00b..650ca8c2 100644 --- a/samples/sample-custom-subscription-hook/package.json +++ b/samples/sample-custom-subscription-hook/package.json @@ -10,7 +10,7 @@ "@types/react": "^18.2.13", "@types/react-dom": "^18.2.6", "babel-plugin-syntax-dynamic-import": "^6.18.0", - "bigbluebutton-html-plugin-sdk": "0.0.70", + "bigbluebutton-html-plugin-sdk": "0.0.71", "path": "^0.12.7", "react": "^18.2.0", "react-dom": "^18.2.0", diff --git a/samples/sample-data-channel-plugin/package-lock.json b/samples/sample-data-channel-plugin/package-lock.json index f70a1530..efa5a4a7 100644 --- a/samples/sample-data-channel-plugin/package-lock.json +++ b/samples/sample-data-channel-plugin/package-lock.json @@ -14,7 +14,7 @@ "@types/react": "^18.2.13", "@types/react-dom": "^18.2.6", "babel-plugin-syntax-dynamic-import": "^6.18.0", - "bigbluebutton-html-plugin-sdk": "0.0.70", + "bigbluebutton-html-plugin-sdk": "0.0.71", "browser-bunyan": "^1.8.0", "path": "^0.12.7", "react": "^18.2.0", @@ -3416,9 +3416,10 @@ "dev": true }, "node_modules/bigbluebutton-html-plugin-sdk": { - "version": "0.0.70", - "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.70.tgz", - "integrity": "sha512-TxNaRin5wQPVETB0l2vwidogWqlfYxRsdBvOsuldu8i/wREA+K+jIGfdRwRZaO2BhpIy+HlpPKwlIPYg7fOaDw==", + "version": "0.0.71", + "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.71.tgz", + "integrity": "sha512-mnrKaGOQb6dlNjYERHb5Y0hbs5wXp7h82fDRxbdZErny1+gxg/yMYPEv3fj2EXj6miWXOXoIcshqRbZZZgto+w==", + "license": "LGPL-3.0", "dependencies": { "@apollo/client": "^3.8.7", "@browser-bunyan/console-formatted-stream": "^1.8.0", @@ -11693,9 +11694,9 @@ "dev": true }, "bigbluebutton-html-plugin-sdk": { - "version": "0.0.70", - "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.70.tgz", - "integrity": "sha512-TxNaRin5wQPVETB0l2vwidogWqlfYxRsdBvOsuldu8i/wREA+K+jIGfdRwRZaO2BhpIy+HlpPKwlIPYg7fOaDw==", + "version": "0.0.71", + "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.71.tgz", + "integrity": "sha512-mnrKaGOQb6dlNjYERHb5Y0hbs5wXp7h82fDRxbdZErny1+gxg/yMYPEv3fj2EXj6miWXOXoIcshqRbZZZgto+w==", "requires": { "@apollo/client": "^3.8.7", "@browser-bunyan/console-formatted-stream": "^1.8.0", diff --git a/samples/sample-data-channel-plugin/package.json b/samples/sample-data-channel-plugin/package.json index cd9d7186..87b0a5b7 100644 --- a/samples/sample-data-channel-plugin/package.json +++ b/samples/sample-data-channel-plugin/package.json @@ -10,7 +10,7 @@ "@types/react": "^18.2.13", "@types/react-dom": "^18.2.6", "babel-plugin-syntax-dynamic-import": "^6.18.0", - "bigbluebutton-html-plugin-sdk": "0.0.70", + "bigbluebutton-html-plugin-sdk": "0.0.71", "path": "^0.12.7", "browser-bunyan": "^1.8.0", "react": "^18.2.0", diff --git a/samples/sample-dom-element-manipulation/package-lock.json b/samples/sample-dom-element-manipulation/package-lock.json index 6ef36ffc..912e6b23 100644 --- a/samples/sample-dom-element-manipulation/package-lock.json +++ b/samples/sample-dom-element-manipulation/package-lock.json @@ -14,7 +14,7 @@ "@types/react": "^18.2.13", "@types/react-dom": "^18.2.6", "babel-plugin-syntax-dynamic-import": "^6.18.0", - "bigbluebutton-html-plugin-sdk": "0.0.70", + "bigbluebutton-html-plugin-sdk": "0.0.71", "path": "^0.12.7", "react": "^18.2.0", "react-dom": "^18.2.0", @@ -3415,9 +3415,10 @@ "dev": true }, "node_modules/bigbluebutton-html-plugin-sdk": { - "version": "0.0.70", - "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.70.tgz", - "integrity": "sha512-TxNaRin5wQPVETB0l2vwidogWqlfYxRsdBvOsuldu8i/wREA+K+jIGfdRwRZaO2BhpIy+HlpPKwlIPYg7fOaDw==", + "version": "0.0.71", + "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.71.tgz", + "integrity": "sha512-mnrKaGOQb6dlNjYERHb5Y0hbs5wXp7h82fDRxbdZErny1+gxg/yMYPEv3fj2EXj6miWXOXoIcshqRbZZZgto+w==", + "license": "LGPL-3.0", "dependencies": { "@apollo/client": "^3.8.7", "@browser-bunyan/console-formatted-stream": "^1.8.0", @@ -11692,9 +11693,9 @@ "dev": true }, "bigbluebutton-html-plugin-sdk": { - "version": "0.0.70", - "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.70.tgz", - "integrity": "sha512-TxNaRin5wQPVETB0l2vwidogWqlfYxRsdBvOsuldu8i/wREA+K+jIGfdRwRZaO2BhpIy+HlpPKwlIPYg7fOaDw==", + "version": "0.0.71", + "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.71.tgz", + "integrity": "sha512-mnrKaGOQb6dlNjYERHb5Y0hbs5wXp7h82fDRxbdZErny1+gxg/yMYPEv3fj2EXj6miWXOXoIcshqRbZZZgto+w==", "requires": { "@apollo/client": "^3.8.7", "@browser-bunyan/console-formatted-stream": "^1.8.0", diff --git a/samples/sample-dom-element-manipulation/package.json b/samples/sample-dom-element-manipulation/package.json index 569b2815..aae006d0 100644 --- a/samples/sample-dom-element-manipulation/package.json +++ b/samples/sample-dom-element-manipulation/package.json @@ -10,7 +10,7 @@ "@types/react": "^18.2.13", "@types/react-dom": "^18.2.6", "babel-plugin-syntax-dynamic-import": "^6.18.0", - "bigbluebutton-html-plugin-sdk": "0.0.70", + "bigbluebutton-html-plugin-sdk": "0.0.71", "path": "^0.12.7", "react": "^18.2.0", "react-dom": "^18.2.0", diff --git a/samples/sample-floating-window-plugin/package-lock.json b/samples/sample-floating-window-plugin/package-lock.json index 9674150d..4112afcb 100644 --- a/samples/sample-floating-window-plugin/package-lock.json +++ b/samples/sample-floating-window-plugin/package-lock.json @@ -14,7 +14,7 @@ "@types/react": "^18.2.13", "@types/react-dom": "^18.2.6", "babel-plugin-syntax-dynamic-import": "^6.18.0", - "bigbluebutton-html-plugin-sdk": "0.0.70", + "bigbluebutton-html-plugin-sdk": "0.0.71", "path": "^0.12.7", "react": "^18.2.0", "react-dom": "^18.2.0", @@ -3464,9 +3464,10 @@ "dev": true }, "node_modules/bigbluebutton-html-plugin-sdk": { - "version": "0.0.70", - "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.70.tgz", - "integrity": "sha512-TxNaRin5wQPVETB0l2vwidogWqlfYxRsdBvOsuldu8i/wREA+K+jIGfdRwRZaO2BhpIy+HlpPKwlIPYg7fOaDw==", + "version": "0.0.71", + "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.71.tgz", + "integrity": "sha512-mnrKaGOQb6dlNjYERHb5Y0hbs5wXp7h82fDRxbdZErny1+gxg/yMYPEv3fj2EXj6miWXOXoIcshqRbZZZgto+w==", + "license": "LGPL-3.0", "dependencies": { "@apollo/client": "^3.8.7", "@browser-bunyan/console-formatted-stream": "^1.8.0", @@ -11821,9 +11822,9 @@ "dev": true }, "bigbluebutton-html-plugin-sdk": { - "version": "0.0.70", - "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.70.tgz", - "integrity": "sha512-TxNaRin5wQPVETB0l2vwidogWqlfYxRsdBvOsuldu8i/wREA+K+jIGfdRwRZaO2BhpIy+HlpPKwlIPYg7fOaDw==", + "version": "0.0.71", + "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.71.tgz", + "integrity": "sha512-mnrKaGOQb6dlNjYERHb5Y0hbs5wXp7h82fDRxbdZErny1+gxg/yMYPEv3fj2EXj6miWXOXoIcshqRbZZZgto+w==", "requires": { "@apollo/client": "^3.8.7", "@browser-bunyan/console-formatted-stream": "^1.8.0", diff --git a/samples/sample-floating-window-plugin/package.json b/samples/sample-floating-window-plugin/package.json index deea9e20..ba88bc12 100644 --- a/samples/sample-floating-window-plugin/package.json +++ b/samples/sample-floating-window-plugin/package.json @@ -10,7 +10,7 @@ "@types/react": "^18.2.13", "@types/react-dom": "^18.2.6", "babel-plugin-syntax-dynamic-import": "^6.18.0", - "bigbluebutton-html-plugin-sdk": "0.0.70", + "bigbluebutton-html-plugin-sdk": "0.0.71", "path": "^0.12.7", "react": "^18.2.0", "react-dom": "^18.2.0", diff --git a/samples/sample-generic-content-sidekick-plugin/package-lock.json b/samples/sample-generic-content-sidekick-plugin/package-lock.json index 3249958f..759cfd6a 100644 --- a/samples/sample-generic-content-sidekick-plugin/package-lock.json +++ b/samples/sample-generic-content-sidekick-plugin/package-lock.json @@ -14,7 +14,7 @@ "@types/react": "^18.2.13", "@types/react-dom": "^18.2.6", "babel-plugin-syntax-dynamic-import": "^6.18.0", - "bigbluebutton-html-plugin-sdk": "0.0.70", + "bigbluebutton-html-plugin-sdk": "0.0.71", "react": "^18.2.0", "react-dom": "^18.2.0" }, @@ -3620,9 +3620,10 @@ "dev": true }, "node_modules/bigbluebutton-html-plugin-sdk": { - "version": "0.0.70", - "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.70.tgz", - "integrity": "sha512-TxNaRin5wQPVETB0l2vwidogWqlfYxRsdBvOsuldu8i/wREA+K+jIGfdRwRZaO2BhpIy+HlpPKwlIPYg7fOaDw==", + "version": "0.0.71", + "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.71.tgz", + "integrity": "sha512-mnrKaGOQb6dlNjYERHb5Y0hbs5wXp7h82fDRxbdZErny1+gxg/yMYPEv3fj2EXj6miWXOXoIcshqRbZZZgto+w==", + "license": "LGPL-3.0", "dependencies": { "@apollo/client": "^3.8.7", "@browser-bunyan/console-formatted-stream": "^1.8.0", diff --git a/samples/sample-generic-content-sidekick-plugin/package.json b/samples/sample-generic-content-sidekick-plugin/package.json index 24a773ec..b79de586 100644 --- a/samples/sample-generic-content-sidekick-plugin/package.json +++ b/samples/sample-generic-content-sidekick-plugin/package.json @@ -10,7 +10,7 @@ "@types/react": "^18.2.13", "@types/react-dom": "^18.2.6", "babel-plugin-syntax-dynamic-import": "^6.18.0", - "bigbluebutton-html-plugin-sdk": "0.0.70", + "bigbluebutton-html-plugin-sdk": "0.0.71", "react": "^18.2.0", "react-dom": "^18.2.0" }, diff --git a/samples/sample-nav-bar-plugin/package-lock.json b/samples/sample-nav-bar-plugin/package-lock.json index e0947b35..460221bf 100644 --- a/samples/sample-nav-bar-plugin/package-lock.json +++ b/samples/sample-nav-bar-plugin/package-lock.json @@ -14,7 +14,7 @@ "@types/react": "^18.2.13", "@types/react-dom": "^18.2.6", "babel-plugin-syntax-dynamic-import": "^6.18.0", - "bigbluebutton-html-plugin-sdk": "0.0.70", + "bigbluebutton-html-plugin-sdk": "0.0.71", "browser-bunyan": "^1.8.0", "path": "^0.12.7", "react": "^18.2.0", @@ -3416,9 +3416,10 @@ "dev": true }, "node_modules/bigbluebutton-html-plugin-sdk": { - "version": "0.0.70", - "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.70.tgz", - "integrity": "sha512-TxNaRin5wQPVETB0l2vwidogWqlfYxRsdBvOsuldu8i/wREA+K+jIGfdRwRZaO2BhpIy+HlpPKwlIPYg7fOaDw==", + "version": "0.0.71", + "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.71.tgz", + "integrity": "sha512-mnrKaGOQb6dlNjYERHb5Y0hbs5wXp7h82fDRxbdZErny1+gxg/yMYPEv3fj2EXj6miWXOXoIcshqRbZZZgto+w==", + "license": "LGPL-3.0", "dependencies": { "@apollo/client": "^3.8.7", "@browser-bunyan/console-formatted-stream": "^1.8.0", @@ -11693,9 +11694,9 @@ "dev": true }, "bigbluebutton-html-plugin-sdk": { - "version": "0.0.70", - "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.70.tgz", - "integrity": "sha512-TxNaRin5wQPVETB0l2vwidogWqlfYxRsdBvOsuldu8i/wREA+K+jIGfdRwRZaO2BhpIy+HlpPKwlIPYg7fOaDw==", + "version": "0.0.71", + "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.71.tgz", + "integrity": "sha512-mnrKaGOQb6dlNjYERHb5Y0hbs5wXp7h82fDRxbdZErny1+gxg/yMYPEv3fj2EXj6miWXOXoIcshqRbZZZgto+w==", "requires": { "@apollo/client": "^3.8.7", "@browser-bunyan/console-formatted-stream": "^1.8.0", diff --git a/samples/sample-nav-bar-plugin/package.json b/samples/sample-nav-bar-plugin/package.json index 2cb94d4f..8945f97e 100644 --- a/samples/sample-nav-bar-plugin/package.json +++ b/samples/sample-nav-bar-plugin/package.json @@ -10,7 +10,7 @@ "@types/react": "^18.2.13", "@types/react-dom": "^18.2.6", "babel-plugin-syntax-dynamic-import": "^6.18.0", - "bigbluebutton-html-plugin-sdk": "0.0.70", + "bigbluebutton-html-plugin-sdk": "0.0.71", "path": "^0.12.7", "browser-bunyan": "^1.8.0", "react": "^18.2.0", diff --git a/samples/sample-options-dropdown-plugin/package-lock.json b/samples/sample-options-dropdown-plugin/package-lock.json index ec0a9da6..9f79ce54 100644 --- a/samples/sample-options-dropdown-plugin/package-lock.json +++ b/samples/sample-options-dropdown-plugin/package-lock.json @@ -14,7 +14,7 @@ "@types/react": "^18.2.13", "@types/react-dom": "^18.2.6", "babel-plugin-syntax-dynamic-import": "^6.18.0", - "bigbluebutton-html-plugin-sdk": "0.0.70", + "bigbluebutton-html-plugin-sdk": "0.0.71", "browser-bunyan": "^1.8.0", "path": "^0.12.7", "react": "^18.2.0", @@ -3416,9 +3416,10 @@ "dev": true }, "node_modules/bigbluebutton-html-plugin-sdk": { - "version": "0.0.70", - "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.70.tgz", - "integrity": "sha512-TxNaRin5wQPVETB0l2vwidogWqlfYxRsdBvOsuldu8i/wREA+K+jIGfdRwRZaO2BhpIy+HlpPKwlIPYg7fOaDw==", + "version": "0.0.71", + "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.71.tgz", + "integrity": "sha512-mnrKaGOQb6dlNjYERHb5Y0hbs5wXp7h82fDRxbdZErny1+gxg/yMYPEv3fj2EXj6miWXOXoIcshqRbZZZgto+w==", + "license": "LGPL-3.0", "dependencies": { "@apollo/client": "^3.8.7", "@browser-bunyan/console-formatted-stream": "^1.8.0", @@ -11693,9 +11694,9 @@ "dev": true }, "bigbluebutton-html-plugin-sdk": { - "version": "0.0.70", - "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.70.tgz", - "integrity": "sha512-TxNaRin5wQPVETB0l2vwidogWqlfYxRsdBvOsuldu8i/wREA+K+jIGfdRwRZaO2BhpIy+HlpPKwlIPYg7fOaDw==", + "version": "0.0.71", + "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.71.tgz", + "integrity": "sha512-mnrKaGOQb6dlNjYERHb5Y0hbs5wXp7h82fDRxbdZErny1+gxg/yMYPEv3fj2EXj6miWXOXoIcshqRbZZZgto+w==", "requires": { "@apollo/client": "^3.8.7", "@browser-bunyan/console-formatted-stream": "^1.8.0", diff --git a/samples/sample-options-dropdown-plugin/package.json b/samples/sample-options-dropdown-plugin/package.json index de421c5a..5f778aea 100644 --- a/samples/sample-options-dropdown-plugin/package.json +++ b/samples/sample-options-dropdown-plugin/package.json @@ -10,7 +10,7 @@ "@types/react": "^18.2.13", "@types/react-dom": "^18.2.6", "babel-plugin-syntax-dynamic-import": "^6.18.0", - "bigbluebutton-html-plugin-sdk": "0.0.70", + "bigbluebutton-html-plugin-sdk": "0.0.71", "path": "^0.12.7", "browser-bunyan": "^1.8.0", "react": "^18.2.0", diff --git a/samples/sample-presentation-dropdown-plugin/package-lock.json b/samples/sample-presentation-dropdown-plugin/package-lock.json index 542d816d..4010dd85 100644 --- a/samples/sample-presentation-dropdown-plugin/package-lock.json +++ b/samples/sample-presentation-dropdown-plugin/package-lock.json @@ -14,7 +14,7 @@ "@types/react": "^18.2.13", "@types/react-dom": "^18.2.6", "babel-plugin-syntax-dynamic-import": "^6.18.0", - "bigbluebutton-html-plugin-sdk": "0.0.70", + "bigbluebutton-html-plugin-sdk": "0.0.71", "path": "^0.12.7", "react": "^18.2.0", "react-dom": "^18.2.0", @@ -3415,9 +3415,10 @@ "dev": true }, "node_modules/bigbluebutton-html-plugin-sdk": { - "version": "0.0.70", - "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.70.tgz", - "integrity": "sha512-TxNaRin5wQPVETB0l2vwidogWqlfYxRsdBvOsuldu8i/wREA+K+jIGfdRwRZaO2BhpIy+HlpPKwlIPYg7fOaDw==", + "version": "0.0.71", + "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.71.tgz", + "integrity": "sha512-mnrKaGOQb6dlNjYERHb5Y0hbs5wXp7h82fDRxbdZErny1+gxg/yMYPEv3fj2EXj6miWXOXoIcshqRbZZZgto+w==", + "license": "LGPL-3.0", "dependencies": { "@apollo/client": "^3.8.7", "@browser-bunyan/console-formatted-stream": "^1.8.0", @@ -11692,9 +11693,9 @@ "dev": true }, "bigbluebutton-html-plugin-sdk": { - "version": "0.0.70", - "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.70.tgz", - "integrity": "sha512-TxNaRin5wQPVETB0l2vwidogWqlfYxRsdBvOsuldu8i/wREA+K+jIGfdRwRZaO2BhpIy+HlpPKwlIPYg7fOaDw==", + "version": "0.0.71", + "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.71.tgz", + "integrity": "sha512-mnrKaGOQb6dlNjYERHb5Y0hbs5wXp7h82fDRxbdZErny1+gxg/yMYPEv3fj2EXj6miWXOXoIcshqRbZZZgto+w==", "requires": { "@apollo/client": "^3.8.7", "@browser-bunyan/console-formatted-stream": "^1.8.0", diff --git a/samples/sample-presentation-dropdown-plugin/package.json b/samples/sample-presentation-dropdown-plugin/package.json index fa417ecc..4ca938b9 100644 --- a/samples/sample-presentation-dropdown-plugin/package.json +++ b/samples/sample-presentation-dropdown-plugin/package.json @@ -10,7 +10,7 @@ "@types/react": "^18.2.13", "@types/react-dom": "^18.2.6", "babel-plugin-syntax-dynamic-import": "^6.18.0", - "bigbluebutton-html-plugin-sdk": "0.0.70", + "bigbluebutton-html-plugin-sdk": "0.0.71", "path": "^0.12.7", "react": "^18.2.0", "react-dom": "^18.2.0", diff --git a/samples/sample-presentation-toolbar-plugin/package-lock.json b/samples/sample-presentation-toolbar-plugin/package-lock.json index f9d6a9ca..d9c889d1 100644 --- a/samples/sample-presentation-toolbar-plugin/package-lock.json +++ b/samples/sample-presentation-toolbar-plugin/package-lock.json @@ -14,7 +14,7 @@ "@types/react": "^18.2.13", "@types/react-dom": "^18.2.6", "babel-plugin-syntax-dynamic-import": "^6.18.0", - "bigbluebutton-html-plugin-sdk": "0.0.70", + "bigbluebutton-html-plugin-sdk": "0.0.71", "path": "^0.12.7", "react": "^18.2.0", "react-dom": "^18.2.0", @@ -3415,9 +3415,10 @@ "dev": true }, "node_modules/bigbluebutton-html-plugin-sdk": { - "version": "0.0.70", - "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.70.tgz", - "integrity": "sha512-TxNaRin5wQPVETB0l2vwidogWqlfYxRsdBvOsuldu8i/wREA+K+jIGfdRwRZaO2BhpIy+HlpPKwlIPYg7fOaDw==", + "version": "0.0.71", + "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.71.tgz", + "integrity": "sha512-mnrKaGOQb6dlNjYERHb5Y0hbs5wXp7h82fDRxbdZErny1+gxg/yMYPEv3fj2EXj6miWXOXoIcshqRbZZZgto+w==", + "license": "LGPL-3.0", "dependencies": { "@apollo/client": "^3.8.7", "@browser-bunyan/console-formatted-stream": "^1.8.0", @@ -11692,9 +11693,9 @@ "dev": true }, "bigbluebutton-html-plugin-sdk": { - "version": "0.0.70", - "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.70.tgz", - "integrity": "sha512-TxNaRin5wQPVETB0l2vwidogWqlfYxRsdBvOsuldu8i/wREA+K+jIGfdRwRZaO2BhpIy+HlpPKwlIPYg7fOaDw==", + "version": "0.0.71", + "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.71.tgz", + "integrity": "sha512-mnrKaGOQb6dlNjYERHb5Y0hbs5wXp7h82fDRxbdZErny1+gxg/yMYPEv3fj2EXj6miWXOXoIcshqRbZZZgto+w==", "requires": { "@apollo/client": "^3.8.7", "@browser-bunyan/console-formatted-stream": "^1.8.0", diff --git a/samples/sample-presentation-toolbar-plugin/package.json b/samples/sample-presentation-toolbar-plugin/package.json index 6152f1e3..9b737046 100644 --- a/samples/sample-presentation-toolbar-plugin/package.json +++ b/samples/sample-presentation-toolbar-plugin/package.json @@ -10,7 +10,7 @@ "@types/react": "^18.2.13", "@types/react-dom": "^18.2.6", "babel-plugin-syntax-dynamic-import": "^6.18.0", - "bigbluebutton-html-plugin-sdk": "0.0.70", + "bigbluebutton-html-plugin-sdk": "0.0.71", "path": "^0.12.7", "react": "^18.2.0", "react-dom": "^18.2.0", diff --git a/samples/sample-server-commands-plugin/package-lock.json b/samples/sample-server-commands-plugin/package-lock.json index e6ab4af2..532619ac 100644 --- a/samples/sample-server-commands-plugin/package-lock.json +++ b/samples/sample-server-commands-plugin/package-lock.json @@ -14,7 +14,7 @@ "@types/react": "^18.2.13", "@types/react-dom": "^18.2.6", "babel-plugin-syntax-dynamic-import": "^6.18.0", - "bigbluebutton-html-plugin-sdk": "0.0.70", + "bigbluebutton-html-plugin-sdk": "0.0.71", "path": "^0.12.7", "react": "^18.2.0", "react-dom": "^18.2.0", @@ -3457,9 +3457,10 @@ "dev": true }, "node_modules/bigbluebutton-html-plugin-sdk": { - "version": "0.0.70", - "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.70.tgz", - "integrity": "sha512-TxNaRin5wQPVETB0l2vwidogWqlfYxRsdBvOsuldu8i/wREA+K+jIGfdRwRZaO2BhpIy+HlpPKwlIPYg7fOaDw==", + "version": "0.0.71", + "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.71.tgz", + "integrity": "sha512-mnrKaGOQb6dlNjYERHb5Y0hbs5wXp7h82fDRxbdZErny1+gxg/yMYPEv3fj2EXj6miWXOXoIcshqRbZZZgto+w==", + "license": "LGPL-3.0", "dependencies": { "@apollo/client": "^3.8.7", "@browser-bunyan/console-formatted-stream": "^1.8.0", diff --git a/samples/sample-server-commands-plugin/package.json b/samples/sample-server-commands-plugin/package.json index 86bf53e2..77806587 100644 --- a/samples/sample-server-commands-plugin/package.json +++ b/samples/sample-server-commands-plugin/package.json @@ -10,7 +10,7 @@ "@types/react": "^18.2.13", "@types/react-dom": "^18.2.6", "babel-plugin-syntax-dynamic-import": "^6.18.0", - "bigbluebutton-html-plugin-sdk": "0.0.70", + "bigbluebutton-html-plugin-sdk": "0.0.71", "path": "^0.12.7", "react": "^18.2.0", "react-dom": "^18.2.0", diff --git a/samples/sample-ui-commands-plugin/package-lock.json b/samples/sample-ui-commands-plugin/package-lock.json index 24dfa302..b4522386 100644 --- a/samples/sample-ui-commands-plugin/package-lock.json +++ b/samples/sample-ui-commands-plugin/package-lock.json @@ -14,7 +14,7 @@ "@types/react": "^18.2.13", "@types/react-dom": "^18.2.6", "babel-plugin-syntax-dynamic-import": "^6.18.0", - "bigbluebutton-html-plugin-sdk": "0.0.70", + "bigbluebutton-html-plugin-sdk": "0.0.71", "path": "^0.12.7", "react": "^18.2.0", "react-dom": "^18.2.0", @@ -3425,9 +3425,10 @@ "dev": true }, "node_modules/bigbluebutton-html-plugin-sdk": { - "version": "0.0.70", - "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.70.tgz", - "integrity": "sha512-TxNaRin5wQPVETB0l2vwidogWqlfYxRsdBvOsuldu8i/wREA+K+jIGfdRwRZaO2BhpIy+HlpPKwlIPYg7fOaDw==", + "version": "0.0.71", + "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.71.tgz", + "integrity": "sha512-mnrKaGOQb6dlNjYERHb5Y0hbs5wXp7h82fDRxbdZErny1+gxg/yMYPEv3fj2EXj6miWXOXoIcshqRbZZZgto+w==", + "license": "LGPL-3.0", "dependencies": { "@apollo/client": "^3.8.7", "@browser-bunyan/console-formatted-stream": "^1.8.0", @@ -11721,9 +11722,9 @@ "dev": true }, "bigbluebutton-html-plugin-sdk": { - "version": "0.0.70", - "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.70.tgz", - "integrity": "sha512-TxNaRin5wQPVETB0l2vwidogWqlfYxRsdBvOsuldu8i/wREA+K+jIGfdRwRZaO2BhpIy+HlpPKwlIPYg7fOaDw==", + "version": "0.0.71", + "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.71.tgz", + "integrity": "sha512-mnrKaGOQb6dlNjYERHb5Y0hbs5wXp7h82fDRxbdZErny1+gxg/yMYPEv3fj2EXj6miWXOXoIcshqRbZZZgto+w==", "requires": { "@apollo/client": "^3.8.7", "@browser-bunyan/console-formatted-stream": "^1.8.0", diff --git a/samples/sample-ui-commands-plugin/package.json b/samples/sample-ui-commands-plugin/package.json index b88d2913..d7a05f50 100644 --- a/samples/sample-ui-commands-plugin/package.json +++ b/samples/sample-ui-commands-plugin/package.json @@ -10,7 +10,7 @@ "@types/react": "^18.2.13", "@types/react-dom": "^18.2.6", "babel-plugin-syntax-dynamic-import": "^6.18.0", - "bigbluebutton-html-plugin-sdk": "0.0.70", + "bigbluebutton-html-plugin-sdk": "0.0.71", "path": "^0.12.7", "react": "^18.2.0", "react-dom": "^18.2.0", diff --git a/samples/sample-ui-events-plugin/package-lock.json b/samples/sample-ui-events-plugin/package-lock.json index eec59f40..0b4bffc1 100644 --- a/samples/sample-ui-events-plugin/package-lock.json +++ b/samples/sample-ui-events-plugin/package-lock.json @@ -14,7 +14,7 @@ "@types/react": "^18.2.13", "@types/react-dom": "^18.2.6", "babel-plugin-syntax-dynamic-import": "^6.18.0", - "bigbluebutton-html-plugin-sdk": "0.0.70", + "bigbluebutton-html-plugin-sdk": "0.0.71", "path": "^0.12.7", "react": "^18.2.0", "react-dom": "^18.2.0", @@ -3425,9 +3425,10 @@ "dev": true }, "node_modules/bigbluebutton-html-plugin-sdk": { - "version": "0.0.70", - "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.70.tgz", - "integrity": "sha512-TxNaRin5wQPVETB0l2vwidogWqlfYxRsdBvOsuldu8i/wREA+K+jIGfdRwRZaO2BhpIy+HlpPKwlIPYg7fOaDw==", + "version": "0.0.71", + "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.71.tgz", + "integrity": "sha512-mnrKaGOQb6dlNjYERHb5Y0hbs5wXp7h82fDRxbdZErny1+gxg/yMYPEv3fj2EXj6miWXOXoIcshqRbZZZgto+w==", + "license": "LGPL-3.0", "dependencies": { "@apollo/client": "^3.8.7", "@browser-bunyan/console-formatted-stream": "^1.8.0", @@ -11721,9 +11722,9 @@ "dev": true }, "bigbluebutton-html-plugin-sdk": { - "version": "0.0.70", - "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.70.tgz", - "integrity": "sha512-TxNaRin5wQPVETB0l2vwidogWqlfYxRsdBvOsuldu8i/wREA+K+jIGfdRwRZaO2BhpIy+HlpPKwlIPYg7fOaDw==", + "version": "0.0.71", + "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.71.tgz", + "integrity": "sha512-mnrKaGOQb6dlNjYERHb5Y0hbs5wXp7h82fDRxbdZErny1+gxg/yMYPEv3fj2EXj6miWXOXoIcshqRbZZZgto+w==", "requires": { "@apollo/client": "^3.8.7", "@browser-bunyan/console-formatted-stream": "^1.8.0", diff --git a/samples/sample-ui-events-plugin/package.json b/samples/sample-ui-events-plugin/package.json index 2017c9d6..62d8ba12 100644 --- a/samples/sample-ui-events-plugin/package.json +++ b/samples/sample-ui-events-plugin/package.json @@ -10,7 +10,7 @@ "@types/react": "^18.2.13", "@types/react-dom": "^18.2.6", "babel-plugin-syntax-dynamic-import": "^6.18.0", - "bigbluebutton-html-plugin-sdk": "0.0.70", + "bigbluebutton-html-plugin-sdk": "0.0.71", "path": "^0.12.7", "react": "^18.2.0", "react-dom": "^18.2.0", diff --git a/samples/sample-use-meeting/package-lock.json b/samples/sample-use-meeting/package-lock.json index 8b134148..2b1bcd9c 100644 --- a/samples/sample-use-meeting/package-lock.json +++ b/samples/sample-use-meeting/package-lock.json @@ -14,7 +14,7 @@ "@types/react": "^18.2.13", "@types/react-dom": "^18.2.6", "babel-plugin-syntax-dynamic-import": "^6.18.0", - "bigbluebutton-html-plugin-sdk": "0.0.70", + "bigbluebutton-html-plugin-sdk": "0.0.71", "path": "^0.12.7", "react": "^18.2.0", "react-dom": "^18.2.0", @@ -3425,9 +3425,10 @@ "dev": true }, "node_modules/bigbluebutton-html-plugin-sdk": { - "version": "0.0.70", - "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.70.tgz", - "integrity": "sha512-TxNaRin5wQPVETB0l2vwidogWqlfYxRsdBvOsuldu8i/wREA+K+jIGfdRwRZaO2BhpIy+HlpPKwlIPYg7fOaDw==", + "version": "0.0.71", + "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.71.tgz", + "integrity": "sha512-mnrKaGOQb6dlNjYERHb5Y0hbs5wXp7h82fDRxbdZErny1+gxg/yMYPEv3fj2EXj6miWXOXoIcshqRbZZZgto+w==", + "license": "LGPL-3.0", "dependencies": { "@apollo/client": "^3.8.7", "@browser-bunyan/console-formatted-stream": "^1.8.0", @@ -11721,9 +11722,9 @@ "dev": true }, "bigbluebutton-html-plugin-sdk": { - "version": "0.0.70", - "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.70.tgz", - "integrity": "sha512-TxNaRin5wQPVETB0l2vwidogWqlfYxRsdBvOsuldu8i/wREA+K+jIGfdRwRZaO2BhpIy+HlpPKwlIPYg7fOaDw==", + "version": "0.0.71", + "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.71.tgz", + "integrity": "sha512-mnrKaGOQb6dlNjYERHb5Y0hbs5wXp7h82fDRxbdZErny1+gxg/yMYPEv3fj2EXj6miWXOXoIcshqRbZZZgto+w==", "requires": { "@apollo/client": "^3.8.7", "@browser-bunyan/console-formatted-stream": "^1.8.0", diff --git a/samples/sample-use-meeting/package.json b/samples/sample-use-meeting/package.json index ffbdbbfe..030f7c16 100644 --- a/samples/sample-use-meeting/package.json +++ b/samples/sample-use-meeting/package.json @@ -10,7 +10,7 @@ "@types/react": "^18.2.13", "@types/react-dom": "^18.2.6", "babel-plugin-syntax-dynamic-import": "^6.18.0", - "bigbluebutton-html-plugin-sdk": "0.0.70", + "bigbluebutton-html-plugin-sdk": "0.0.71", "path": "^0.12.7", "react": "^18.2.0", "react-dom": "^18.2.0", diff --git a/samples/sample-user-camera-dropdown-plugin/package-lock.json b/samples/sample-user-camera-dropdown-plugin/package-lock.json index c471a465..1e529cad 100644 --- a/samples/sample-user-camera-dropdown-plugin/package-lock.json +++ b/samples/sample-user-camera-dropdown-plugin/package-lock.json @@ -14,7 +14,7 @@ "@types/react": "^18.2.13", "@types/react-dom": "^18.2.6", "babel-plugin-syntax-dynamic-import": "^6.18.0", - "bigbluebutton-html-plugin-sdk": "0.0.70", + "bigbluebutton-html-plugin-sdk": "0.0.71", "path": "^0.12.7", "react": "^18.2.0", "react-dom": "^18.2.0", @@ -3415,9 +3415,10 @@ "dev": true }, "node_modules/bigbluebutton-html-plugin-sdk": { - "version": "0.0.70", - "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.70.tgz", - "integrity": "sha512-TxNaRin5wQPVETB0l2vwidogWqlfYxRsdBvOsuldu8i/wREA+K+jIGfdRwRZaO2BhpIy+HlpPKwlIPYg7fOaDw==", + "version": "0.0.71", + "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.71.tgz", + "integrity": "sha512-mnrKaGOQb6dlNjYERHb5Y0hbs5wXp7h82fDRxbdZErny1+gxg/yMYPEv3fj2EXj6miWXOXoIcshqRbZZZgto+w==", + "license": "LGPL-3.0", "dependencies": { "@apollo/client": "^3.8.7", "@browser-bunyan/console-formatted-stream": "^1.8.0", @@ -11692,9 +11693,9 @@ "dev": true }, "bigbluebutton-html-plugin-sdk": { - "version": "0.0.70", - "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.70.tgz", - "integrity": "sha512-TxNaRin5wQPVETB0l2vwidogWqlfYxRsdBvOsuldu8i/wREA+K+jIGfdRwRZaO2BhpIy+HlpPKwlIPYg7fOaDw==", + "version": "0.0.71", + "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.71.tgz", + "integrity": "sha512-mnrKaGOQb6dlNjYERHb5Y0hbs5wXp7h82fDRxbdZErny1+gxg/yMYPEv3fj2EXj6miWXOXoIcshqRbZZZgto+w==", "requires": { "@apollo/client": "^3.8.7", "@browser-bunyan/console-formatted-stream": "^1.8.0", diff --git a/samples/sample-user-camera-dropdown-plugin/package.json b/samples/sample-user-camera-dropdown-plugin/package.json index 7e60f06d..a3130053 100644 --- a/samples/sample-user-camera-dropdown-plugin/package.json +++ b/samples/sample-user-camera-dropdown-plugin/package.json @@ -10,7 +10,7 @@ "@types/react": "^18.2.13", "@types/react-dom": "^18.2.6", "babel-plugin-syntax-dynamic-import": "^6.18.0", - "bigbluebutton-html-plugin-sdk": "0.0.70", + "bigbluebutton-html-plugin-sdk": "0.0.71", "path": "^0.12.7", "react": "^18.2.0", "react-dom": "^18.2.0", diff --git a/samples/sample-user-list-dropdown-plugin/package-lock.json b/samples/sample-user-list-dropdown-plugin/package-lock.json index c900ab74..fe42c1c0 100644 --- a/samples/sample-user-list-dropdown-plugin/package-lock.json +++ b/samples/sample-user-list-dropdown-plugin/package-lock.json @@ -14,7 +14,7 @@ "@types/react": "^18.2.13", "@types/react-dom": "^18.2.6", "babel-plugin-syntax-dynamic-import": "^6.18.0", - "bigbluebutton-html-plugin-sdk": "0.0.70", + "bigbluebutton-html-plugin-sdk": "0.0.71", "path": "^0.12.7", "react": "^18.2.0", "react-dom": "^18.2.0", @@ -3475,9 +3475,10 @@ "dev": true }, "node_modules/bigbluebutton-html-plugin-sdk": { - "version": "0.0.70", - "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.70.tgz", - "integrity": "sha512-TxNaRin5wQPVETB0l2vwidogWqlfYxRsdBvOsuldu8i/wREA+K+jIGfdRwRZaO2BhpIy+HlpPKwlIPYg7fOaDw==", + "version": "0.0.71", + "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.71.tgz", + "integrity": "sha512-mnrKaGOQb6dlNjYERHb5Y0hbs5wXp7h82fDRxbdZErny1+gxg/yMYPEv3fj2EXj6miWXOXoIcshqRbZZZgto+w==", + "license": "LGPL-3.0", "dependencies": { "@apollo/client": "^3.8.7", "@browser-bunyan/console-formatted-stream": "^1.8.0", @@ -12288,9 +12289,9 @@ "dev": true }, "bigbluebutton-html-plugin-sdk": { - "version": "0.0.70", - "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.70.tgz", - "integrity": "sha512-TxNaRin5wQPVETB0l2vwidogWqlfYxRsdBvOsuldu8i/wREA+K+jIGfdRwRZaO2BhpIy+HlpPKwlIPYg7fOaDw==", + "version": "0.0.71", + "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.71.tgz", + "integrity": "sha512-mnrKaGOQb6dlNjYERHb5Y0hbs5wXp7h82fDRxbdZErny1+gxg/yMYPEv3fj2EXj6miWXOXoIcshqRbZZZgto+w==", "requires": { "@apollo/client": "^3.8.7", "@browser-bunyan/console-formatted-stream": "^1.8.0", diff --git a/samples/sample-user-list-dropdown-plugin/package.json b/samples/sample-user-list-dropdown-plugin/package.json index 9adc6400..a2fe4b3e 100644 --- a/samples/sample-user-list-dropdown-plugin/package.json +++ b/samples/sample-user-list-dropdown-plugin/package.json @@ -10,7 +10,7 @@ "@types/react": "^18.2.13", "@types/react-dom": "^18.2.6", "babel-plugin-syntax-dynamic-import": "^6.18.0", - "bigbluebutton-html-plugin-sdk": "0.0.70", + "bigbluebutton-html-plugin-sdk": "0.0.71", "path": "^0.12.7", "react": "^18.2.0", "react-dom": "^18.2.0", diff --git a/samples/sample-user-list-item-additional-information-plugin/package-lock.json b/samples/sample-user-list-item-additional-information-plugin/package-lock.json index 731b8ea0..b96c5649 100644 --- a/samples/sample-user-list-item-additional-information-plugin/package-lock.json +++ b/samples/sample-user-list-item-additional-information-plugin/package-lock.json @@ -14,7 +14,7 @@ "@types/react": "^18.2.13", "@types/react-dom": "^18.2.6", "babel-plugin-syntax-dynamic-import": "^6.18.0", - "bigbluebutton-html-plugin-sdk": "0.0.70", + "bigbluebutton-html-plugin-sdk": "0.0.71", "path": "^0.12.7", "react": "^18.2.0", "react-dom": "^18.2.0", @@ -3415,9 +3415,10 @@ "dev": true }, "node_modules/bigbluebutton-html-plugin-sdk": { - "version": "0.0.70", - "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.70.tgz", - "integrity": "sha512-TxNaRin5wQPVETB0l2vwidogWqlfYxRsdBvOsuldu8i/wREA+K+jIGfdRwRZaO2BhpIy+HlpPKwlIPYg7fOaDw==", + "version": "0.0.71", + "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.71.tgz", + "integrity": "sha512-mnrKaGOQb6dlNjYERHb5Y0hbs5wXp7h82fDRxbdZErny1+gxg/yMYPEv3fj2EXj6miWXOXoIcshqRbZZZgto+w==", + "license": "LGPL-3.0", "dependencies": { "@apollo/client": "^3.8.7", "@browser-bunyan/console-formatted-stream": "^1.8.0", @@ -11692,9 +11693,9 @@ "dev": true }, "bigbluebutton-html-plugin-sdk": { - "version": "0.0.70", - "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.70.tgz", - "integrity": "sha512-TxNaRin5wQPVETB0l2vwidogWqlfYxRsdBvOsuldu8i/wREA+K+jIGfdRwRZaO2BhpIy+HlpPKwlIPYg7fOaDw==", + "version": "0.0.71", + "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.71.tgz", + "integrity": "sha512-mnrKaGOQb6dlNjYERHb5Y0hbs5wXp7h82fDRxbdZErny1+gxg/yMYPEv3fj2EXj6miWXOXoIcshqRbZZZgto+w==", "requires": { "@apollo/client": "^3.8.7", "@browser-bunyan/console-formatted-stream": "^1.8.0", diff --git a/samples/sample-user-list-item-additional-information-plugin/package.json b/samples/sample-user-list-item-additional-information-plugin/package.json index bb45891e..2e4ccf62 100644 --- a/samples/sample-user-list-item-additional-information-plugin/package.json +++ b/samples/sample-user-list-item-additional-information-plugin/package.json @@ -10,7 +10,7 @@ "@types/react": "^18.2.13", "@types/react-dom": "^18.2.6", "babel-plugin-syntax-dynamic-import": "^6.18.0", - "bigbluebutton-html-plugin-sdk": "0.0.70", + "bigbluebutton-html-plugin-sdk": "0.0.71", "path": "^0.12.7", "react": "^18.2.0", "react-dom": "^18.2.0", From 6db8d3a124c2ac649cc5df76eff0f653c1b2998e Mon Sep 17 00:00:00 2001 From: Guilherme Leme Date: Mon, 3 Feb 2025 11:11:31 -0300 Subject: [PATCH 08/15] [enhance-documentation-1] - Added information on the remote-data-source API --- README.md | 27 ++++++++++++++++++++++----- 1 file changed, 22 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 223e0209..0c7a87be 100644 --- a/README.md +++ b/README.md @@ -142,7 +142,7 @@ Here is as complete `manifet.json` example with all possible configurations: { "name": "allUsers", "url": "${meta_pluginSettingsUserInformation}", - "fetchMode": "onMeetingCreate", + "fetchMode": "onMeetingCreate", // Possible values: "onMeetingCreate", "onDemand" "permissions": ["moderator", "viewer"] } ] @@ -397,21 +397,32 @@ This is possible by simply configuring the dataResource name in the manifest and { "name": "allUsers", "url": "${meta_pluginSettingsUserInformation}", - "fetchMode": "onMeetingCreate", - "permissions": ["moderator", "viewer"] + "fetchMode": "onMeetingCreate", // Possible values: "onMeetingCreate", "onDemand" + "permissions": ["moderator", "viewer"] // Possible values: "moderator", "viewer", "presenter" } ] } ``` -Then when creating the meeting send the following parameters along, adjusting to your needs and resources: +Going through each parameter to better understand it's structure: + +- `name`: It is the name of the remote data source, that is the name you'll use later on in the plugin when developing it; +- `url`: The Url to which the data will be fetched (it can be hard-coded in the `manifest.json`, but we recommend passing it as a `meta_` parameter); +- `fetchMode`: It tells the plugin-server if it should fetch the data only when creating the meeting, or everytime the function is called in the plugin portion; + - If one chooses `onMeetingCreate`, the data will be fetched when the create endpoint of the meeting is called, then it's cached in the plugin-server so that everytime the plugin wants that data, the plugin-server will respond with the cached data; + - On the other hand, if `onDemand` is selected, everytime the plugin calls this method, the plugin-server will fetch the data and then proxy it to the plugin; +- `permissions`: This tells the back-end which role of the meeting can access this remote data; + +Here is the `/create` parameters you would have to pass to make this remote-data-source api work: ``` meta_pluginSettingsUserInformation=https:///api/users pluginManifests=[{"url": "http:///your-plugin/manifest.json"}] ``` -In the plugin, just use the function like: +See that we send the `meta_` parameter, for more information, refer to the [meta parameters section](#meta_-parameters) + +Lastly, in the plugin, just use the function like: ```typescript pluginApi.getRemoteData('allUsers').then((response: Response) => { @@ -427,6 +438,12 @@ pluginApi.getRemoteData('allUsers').then((response: Response) => { }); ``` +### Meta_ parameters + +This is not part of the API, but it's a way of passing information to the manifest. Any value can be passed like this, one just needs to put something like `${meta_nameOfParameter}` in a specific config of the manifest, and in the `/create` call, set this meta-parameter to whatever is prefered, like `meta_nameOfParameter="A message for example"` + +This feature is mainly used for security purposes, see [external data section](#external-data-resources). But can be used for customization reasons as well. + ### Event persistence This feature will allow the developer to save an information (which is basically an event) in the `event.xml` file of the meeting if it's being recorded. From 74613a7c2db025a9ab16d6489d3816bfdb1f21eb Mon Sep 17 00:00:00 2001 From: Guilherme Pereira Leme <69865537+GuiLeme@users.noreply.github.com> Date: Mon, 3 Feb 2025 11:26:07 -0300 Subject: [PATCH 09/15] changes in review Co-authored-by: Anton Georgiev --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 0c7a87be..4d73338e 100644 --- a/README.md +++ b/README.md @@ -440,7 +440,7 @@ pluginApi.getRemoteData('allUsers').then((response: Response) => { ### Meta_ parameters -This is not part of the API, but it's a way of passing information to the manifest. Any value can be passed like this, one just needs to put something like `${meta_nameOfParameter}` in a specific config of the manifest, and in the `/create` call, set this meta-parameter to whatever is prefered, like `meta_nameOfParameter="A message for example"` +This is not part of the API, but it's a way of passing information to the manifest. Any value can be passed like this, one just needs to put something like `${meta_nameOfParameter}` in a specific config of the manifest, and in the `/create` call, set this meta-parameter to whatever is preferred, like `meta_nameOfParameter="Sample message"` This feature is mainly used for security purposes, see [external data section](#external-data-resources). But can be used for customization reasons as well. From 210ae32c12c5a37a4ac2bd91a7987af70391f504 Mon Sep 17 00:00:00 2001 From: Tiago Jacobs Date: Wed, 5 Feb 2025 22:33:17 -0300 Subject: [PATCH 10/15] Revert "feat(plugin): asset persistence" (#146) --- .../manifest.json | 6 +---- .../component.tsx | 14 ++--------- src/asset-persistence/enums.ts | 7 ------ src/asset-persistence/hook.ts | 23 ------------------- src/asset-persistence/types.ts | 14 ----------- src/core/api/BbbPluginSdk.ts | 12 ---------- src/core/api/types.ts | 8 ------- 7 files changed, 3 insertions(+), 81 deletions(-) delete mode 100644 src/asset-persistence/enums.ts delete mode 100644 src/asset-persistence/hook.ts delete mode 100644 src/asset-persistence/types.ts diff --git a/samples/sample-action-button-dropdown-plugin/manifest.json b/samples/sample-action-button-dropdown-plugin/manifest.json index a04ff4f8..bbb6ec40 100644 --- a/samples/sample-action-button-dropdown-plugin/manifest.json +++ b/samples/sample-action-button-dropdown-plugin/manifest.json @@ -3,9 +3,5 @@ "name": "SampleActionButtonDropdownPlugin", "javascriptEntrypointUrl": "SampleActionButtonDropdownPlugin.js", "localesBaseUrl": "https://cdn.dominio.com/pluginabc/", - "assetPersistence": { - "enabled": true, - "maxFileSize": 10000000, - "maxUploadSizePerUser": 100000000 - } + "enabledForBreakoutRooms": true } diff --git a/samples/sample-action-button-dropdown-plugin/src/components/sample-action-button-dropdown-plugin-item/component.tsx b/samples/sample-action-button-dropdown-plugin/src/components/sample-action-button-dropdown-plugin-item/component.tsx index 69d0d6b1..399b8034 100644 --- a/samples/sample-action-button-dropdown-plugin/src/components/sample-action-button-dropdown-plugin-item/component.tsx +++ b/samples/sample-action-button-dropdown-plugin/src/components/sample-action-button-dropdown-plugin-item/component.tsx @@ -1,6 +1,5 @@ import * as React from 'react'; import { useState, useEffect } from 'react'; -import { AssetType } from 'bigbluebutton-html-plugin-sdk/dist/cjs/asset-persistence/enums'; import * as ReactModal from 'react-modal'; import './style.css'; @@ -50,22 +49,13 @@ function SampleActionButtonDropdownPlugin( IsMeetingBreakoutGraphqlResponse>(IS_MEETING_BREAKOUT); useEffect(() => { - // This line is commented once it will upload a - // PDF everytime you enter a meeting - // (if you have presenter role). - // Uncomment them to test this feature! - pluginApi.persistAsset( - 'https://pdfobject.com/pdf/sample.pdf', - AssetType.PRESENTATION, - 'my-presentation.pdf', - ); pluginApi.uiCommands.notification.send({ message: 'Notification message', icon: 'presentation', type: NotificationTypeUiCommand.INFO, options: { - // helpLabel: 'test help label', // this is not necessary - // helpLink: 'test help link', + // helpLabel: 'teste help label', // this is not necessary + // helpLink: 'teste help link', autoClose: 20000, }, content: 'Content of my notification', diff --git a/src/asset-persistence/enums.ts b/src/asset-persistence/enums.ts deleted file mode 100644 index ebe5e97b..00000000 --- a/src/asset-persistence/enums.ts +++ /dev/null @@ -1,7 +0,0 @@ -export enum AssetPersistenceEvents { - ASSET_PERSISTED = 'PLUGIN_ASSET_PERSISTED', -} - -export enum AssetType { - PRESENTATION = 'PLUGIN_ASSET_PERSISTENCE_TYPE_PRESENTATION' -} diff --git a/src/asset-persistence/hook.ts b/src/asset-persistence/hook.ts deleted file mode 100644 index bd8cdafe..00000000 --- a/src/asset-persistence/hook.ts +++ /dev/null @@ -1,23 +0,0 @@ -import { - AssetPersistenceDetails, -} from './types'; -import { AssetPersistenceEvents, AssetType } from './enums'; - -export const persistAssetFunctionWrapper = ( - pluginName: string, - assetUrl: string, - typeOfAsset: AssetType, - assetName?: string, -) => { - window.dispatchEvent( - new CustomEvent< - AssetPersistenceDetails>(AssetPersistenceEvents.ASSET_PERSISTED, { - detail: { - pluginName, - assetUrl, - typeOfAsset, - assetName, - }, - }), - ); -}; diff --git a/src/asset-persistence/types.ts b/src/asset-persistence/types.ts deleted file mode 100644 index 0a90fca7..00000000 --- a/src/asset-persistence/types.ts +++ /dev/null @@ -1,14 +0,0 @@ -import { AssetType } from './enums'; - -export interface AssetPersistenceDetails { - pluginName: string; - assetUrl: string; - typeOfAsset: AssetType; - assetName?: string; -} - -export type PersistAssetFunction = ( - assetUrl: string, - typeOfAsset: AssetType, - assetName?: string, -) => void; diff --git a/src/core/api/BbbPluginSdk.ts b/src/core/api/BbbPluginSdk.ts index c556344c..33402820 100644 --- a/src/core/api/BbbPluginSdk.ts +++ b/src/core/api/BbbPluginSdk.ts @@ -48,8 +48,6 @@ import { sendGenericDataForLearningAnalyticsDashboard } from '../../learning-ana import { GenericDataForLearningAnalyticsDashboard } from '../../learning-analytics-dashboard/types'; import { getRemoteData } from '../../remote-data/utils'; import { persistEventFunctionWrapper } from '../../event-persistence/hooks'; -import { persistAssetFunctionWrapper } from '../../asset-persistence/hook'; -import { AssetType } from '../../asset-persistence/enums'; declare const window: PluginBrowserWindow; @@ -125,16 +123,6 @@ export abstract class BbbPluginSdk { eventName, payload, ); - pluginApi.persistAsset = ( - assetUrl: string, - typeOfAsset: AssetType, - assetName?: string, - ) => persistAssetFunctionWrapper( - pluginName, - assetUrl, - typeOfAsset, - assetName, - ); } else { throw new Error('Plugin name not set'); } diff --git a/src/core/api/types.ts b/src/core/api/types.ts index 7ca76d56..65515682 100644 --- a/src/core/api/types.ts +++ b/src/core/api/types.ts @@ -32,7 +32,6 @@ import { UseUserCameraDomElementsFunction } from '../../dom-element-manipulation import { ScreenshareHelperInterface, UserCameraHelperInterface } from '../../extensible-areas'; import { GetDataSource } from '../../remote-data/types'; import { PersistEventFunction } from '../../event-persistence/types'; -import { PersistAssetFunction } from '../../asset-persistence/types'; // Setter Functions for the API export type SetPresentationToolbarItems = (presentationToolbarItem: @@ -260,13 +259,6 @@ export interface PluginApi { * */ persistEvent?: PersistEventFunction; - /** - * Persists assets to the current meeting, e.g.: presentation. - * - * @param payload - payload to be persisted in `events.xml` - * - */ - persistAsset?: PersistAssetFunction; } export interface PluginBrowserWindow extends Window { From 7e4c40f216f307422845bc375ae370aa841a608b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 5 Feb 2025 22:33:29 -0300 Subject: [PATCH 11/15] Bump nanoid (#140) Bumps the npm_and_yarn group with 1 update in the /samples/sample-floating-window-plugin directory: [nanoid](https://github.com/ai/nanoid). Updates `nanoid` from 3.3.7 to 3.3.8 - [Release notes](https://github.com/ai/nanoid/releases) - [Changelog](https://github.com/ai/nanoid/blob/main/CHANGELOG.md) - [Commits](https://github.com/ai/nanoid/compare/3.3.7...3.3.8) --- updated-dependencies: - dependency-name: nanoid dependency-type: indirect dependency-group: npm_and_yarn ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .../sample-floating-window-plugin/package-lock.json | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/samples/sample-floating-window-plugin/package-lock.json b/samples/sample-floating-window-plugin/package-lock.json index 4112afcb..20642fdd 100644 --- a/samples/sample-floating-window-plugin/package-lock.json +++ b/samples/sample-floating-window-plugin/package-lock.json @@ -6739,9 +6739,9 @@ } }, "node_modules/nanoid": { - "version": "3.3.7", - "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.7.tgz", - "integrity": "sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==", + "version": "3.3.8", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.8.tgz", + "integrity": "sha512-WNLf5Sd8oZxOm+TzppcYk8gVOgP+l58xNy58D0nbUnOxOWRWvlcCV4kUF7ltmI6PsrLl/BgKEyS4mqsGChFN0w==", "funding": [ { "type": "github", @@ -14140,9 +14140,9 @@ } }, "nanoid": { - "version": "3.3.7", - "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.7.tgz", - "integrity": "sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==" + "version": "3.3.8", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.8.tgz", + "integrity": "sha512-WNLf5Sd8oZxOm+TzppcYk8gVOgP+l58xNy58D0nbUnOxOWRWvlcCV4kUF7ltmI6PsrLl/BgKEyS4mqsGChFN0w==" }, "natural-compare": { "version": "1.4.0", From 2ff14ecd072032c16a31d7a3d5a5977d11f1b1fb Mon Sep 17 00:00:00 2001 From: Tiago Daniel Jacobs Date: Wed, 5 Feb 2025 22:34:28 -0300 Subject: [PATCH 12/15] Bump version to 0.0.72 --- package-lock.json | 4 ++-- package.json | 2 +- .../package-lock.json | 15 +++++++-------- .../package.json | 2 +- .../sample-actions-bar-plugin/package-lock.json | 9 ++++----- samples/sample-actions-bar-plugin/package.json | 2 +- .../package-lock.json | 15 +++++++-------- .../package.json | 2 +- .../package-lock.json | 15 +++++++-------- .../package.json | 2 +- .../package-lock.json | 15 +++++++-------- .../sample-custom-subscription-hook/package.json | 2 +- .../sample-data-channel-plugin/package-lock.json | 15 +++++++-------- samples/sample-data-channel-plugin/package.json | 2 +- .../package-lock.json | 15 +++++++-------- .../sample-dom-element-manipulation/package.json | 2 +- .../package-lock.json | 15 +++++++-------- .../sample-floating-window-plugin/package.json | 2 +- .../package-lock.json | 9 ++++----- .../package.json | 2 +- samples/sample-nav-bar-plugin/package-lock.json | 15 +++++++-------- samples/sample-nav-bar-plugin/package.json | 2 +- .../package-lock.json | 15 +++++++-------- .../sample-options-dropdown-plugin/package.json | 2 +- .../package-lock.json | 15 +++++++-------- .../package.json | 2 +- .../package-lock.json | 15 +++++++-------- .../package.json | 2 +- .../package-lock.json | 9 ++++----- .../sample-server-commands-plugin/package.json | 2 +- .../sample-ui-commands-plugin/package-lock.json | 15 +++++++-------- samples/sample-ui-commands-plugin/package.json | 2 +- samples/sample-ui-events-plugin/package-lock.json | 15 +++++++-------- samples/sample-ui-events-plugin/package.json | 2 +- samples/sample-use-meeting/package-lock.json | 15 +++++++-------- samples/sample-use-meeting/package.json | 2 +- .../package-lock.json | 15 +++++++-------- .../package.json | 2 +- .../package-lock.json | 15 +++++++-------- .../sample-user-list-dropdown-plugin/package.json | 2 +- .../package-lock.json | 15 +++++++-------- .../package.json | 2 +- 42 files changed, 154 insertions(+), 174 deletions(-) diff --git a/package-lock.json b/package-lock.json index fac22254..56c7d181 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "bigbluebutton-html-plugin-sdk", - "version": "0.0.71", + "version": "0.0.72", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "bigbluebutton-html-plugin-sdk", - "version": "0.0.71", + "version": "0.0.72", "license": "LGPL-3.0", "dependencies": { "@apollo/client": "^3.8.7", diff --git a/package.json b/package.json index 4753aa17..d320fed4 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "bigbluebutton-html-plugin-sdk", - "version": "0.0.71", + "version": "0.0.72", "homepage": "https://github.com/bigbluebutton/bigbluebutton-html-plugin-sdk", "main": "dist/cjs/index.js", "module": "dist/esm/index.js", diff --git a/samples/sample-action-button-dropdown-plugin/package-lock.json b/samples/sample-action-button-dropdown-plugin/package-lock.json index 39eb4528..e19589e9 100644 --- a/samples/sample-action-button-dropdown-plugin/package-lock.json +++ b/samples/sample-action-button-dropdown-plugin/package-lock.json @@ -14,7 +14,7 @@ "@types/react": "^18.2.13", "@types/react-dom": "^18.2.6", "babel-plugin-syntax-dynamic-import": "^6.18.0", - "bigbluebutton-html-plugin-sdk": "0.0.71", + "bigbluebutton-html-plugin-sdk": "0.0.72", "path": "^0.12.7", "react": "^18.2.0", "react-dom": "^18.2.0", @@ -3468,10 +3468,9 @@ "dev": true }, "node_modules/bigbluebutton-html-plugin-sdk": { - "version": "0.0.71", - "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.71.tgz", - "integrity": "sha512-mnrKaGOQb6dlNjYERHb5Y0hbs5wXp7h82fDRxbdZErny1+gxg/yMYPEv3fj2EXj6miWXOXoIcshqRbZZZgto+w==", - "license": "LGPL-3.0", + "version": "0.0.72", + "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.72.tgz", + "integrity": "sha512-Vme+u/EZGnHSV2iEc3XGUgI1T1ILxCIb4VJ1/gRDIjeNQNHLTKXAZ3JPBSlSqAhtvYFEeyqK5VcbPCxRVKB5Sw==", "dependencies": { "@apollo/client": "^3.8.7", "@browser-bunyan/console-formatted-stream": "^1.8.0", @@ -12271,9 +12270,9 @@ "dev": true }, "bigbluebutton-html-plugin-sdk": { - "version": "0.0.71", - "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.71.tgz", - "integrity": "sha512-mnrKaGOQb6dlNjYERHb5Y0hbs5wXp7h82fDRxbdZErny1+gxg/yMYPEv3fj2EXj6miWXOXoIcshqRbZZZgto+w==", + "version": "0.0.72", + "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.72.tgz", + "integrity": "sha512-Vme+u/EZGnHSV2iEc3XGUgI1T1ILxCIb4VJ1/gRDIjeNQNHLTKXAZ3JPBSlSqAhtvYFEeyqK5VcbPCxRVKB5Sw==", "requires": { "@apollo/client": "^3.8.7", "@browser-bunyan/console-formatted-stream": "^1.8.0", diff --git a/samples/sample-action-button-dropdown-plugin/package.json b/samples/sample-action-button-dropdown-plugin/package.json index 84cbaf8d..6cc91b20 100644 --- a/samples/sample-action-button-dropdown-plugin/package.json +++ b/samples/sample-action-button-dropdown-plugin/package.json @@ -10,7 +10,7 @@ "@types/react": "^18.2.13", "@types/react-dom": "^18.2.6", "babel-plugin-syntax-dynamic-import": "^6.18.0", - "bigbluebutton-html-plugin-sdk": "0.0.71", + "bigbluebutton-html-plugin-sdk": "0.0.72", "path": "^0.12.7", "react": "^18.2.0", "react-dom": "^18.2.0", diff --git a/samples/sample-actions-bar-plugin/package-lock.json b/samples/sample-actions-bar-plugin/package-lock.json index 9cae05ce..d2954d63 100644 --- a/samples/sample-actions-bar-plugin/package-lock.json +++ b/samples/sample-actions-bar-plugin/package-lock.json @@ -14,7 +14,7 @@ "@types/react": "^18.2.13", "@types/react-dom": "^18.2.6", "babel-plugin-syntax-dynamic-import": "^6.18.0", - "bigbluebutton-html-plugin-sdk": "0.0.71", + "bigbluebutton-html-plugin-sdk": "0.0.72", "path": "^0.12.7", "react": "^18.2.0", "react-dom": "^18.2.0", @@ -3635,10 +3635,9 @@ "dev": true }, "node_modules/bigbluebutton-html-plugin-sdk": { - "version": "0.0.71", - "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.71.tgz", - "integrity": "sha512-mnrKaGOQb6dlNjYERHb5Y0hbs5wXp7h82fDRxbdZErny1+gxg/yMYPEv3fj2EXj6miWXOXoIcshqRbZZZgto+w==", - "license": "LGPL-3.0", + "version": "0.0.72", + "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.72.tgz", + "integrity": "sha512-Vme+u/EZGnHSV2iEc3XGUgI1T1ILxCIb4VJ1/gRDIjeNQNHLTKXAZ3JPBSlSqAhtvYFEeyqK5VcbPCxRVKB5Sw==", "dependencies": { "@apollo/client": "^3.8.7", "@browser-bunyan/console-formatted-stream": "^1.8.0", diff --git a/samples/sample-actions-bar-plugin/package.json b/samples/sample-actions-bar-plugin/package.json index 61f73efb..d58170c8 100644 --- a/samples/sample-actions-bar-plugin/package.json +++ b/samples/sample-actions-bar-plugin/package.json @@ -10,7 +10,7 @@ "@types/react": "^18.2.13", "@types/react-dom": "^18.2.6", "babel-plugin-syntax-dynamic-import": "^6.18.0", - "bigbluebutton-html-plugin-sdk": "0.0.71", + "bigbluebutton-html-plugin-sdk": "0.0.72", "path": "^0.12.7", "react": "^18.2.0", "react-dom": "^18.2.0", diff --git a/samples/sample-audio-settings-dropdown-plugin/package-lock.json b/samples/sample-audio-settings-dropdown-plugin/package-lock.json index 6cbeb623..df550853 100644 --- a/samples/sample-audio-settings-dropdown-plugin/package-lock.json +++ b/samples/sample-audio-settings-dropdown-plugin/package-lock.json @@ -14,7 +14,7 @@ "@types/react": "^18.2.13", "@types/react-dom": "^18.2.6", "babel-plugin-syntax-dynamic-import": "^6.18.0", - "bigbluebutton-html-plugin-sdk": "0.0.71", + "bigbluebutton-html-plugin-sdk": "0.0.72", "browser-bunyan": "^1.8.0", "path": "^0.12.7", "react": "^18.2.0", @@ -3409,10 +3409,9 @@ "dev": true }, "node_modules/bigbluebutton-html-plugin-sdk": { - "version": "0.0.71", - "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.71.tgz", - "integrity": "sha512-mnrKaGOQb6dlNjYERHb5Y0hbs5wXp7h82fDRxbdZErny1+gxg/yMYPEv3fj2EXj6miWXOXoIcshqRbZZZgto+w==", - "license": "LGPL-3.0", + "version": "0.0.72", + "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.72.tgz", + "integrity": "sha512-Vme+u/EZGnHSV2iEc3XGUgI1T1ILxCIb4VJ1/gRDIjeNQNHLTKXAZ3JPBSlSqAhtvYFEeyqK5VcbPCxRVKB5Sw==", "dependencies": { "@apollo/client": "^3.8.7", "@browser-bunyan/console-formatted-stream": "^1.8.0", @@ -11676,9 +11675,9 @@ "dev": true }, "bigbluebutton-html-plugin-sdk": { - "version": "0.0.71", - "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.71.tgz", - "integrity": "sha512-mnrKaGOQb6dlNjYERHb5Y0hbs5wXp7h82fDRxbdZErny1+gxg/yMYPEv3fj2EXj6miWXOXoIcshqRbZZZgto+w==", + "version": "0.0.72", + "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.72.tgz", + "integrity": "sha512-Vme+u/EZGnHSV2iEc3XGUgI1T1ILxCIb4VJ1/gRDIjeNQNHLTKXAZ3JPBSlSqAhtvYFEeyqK5VcbPCxRVKB5Sw==", "requires": { "@apollo/client": "^3.8.7", "@browser-bunyan/console-formatted-stream": "^1.8.0", diff --git a/samples/sample-audio-settings-dropdown-plugin/package.json b/samples/sample-audio-settings-dropdown-plugin/package.json index 97e2831b..dc394204 100644 --- a/samples/sample-audio-settings-dropdown-plugin/package.json +++ b/samples/sample-audio-settings-dropdown-plugin/package.json @@ -10,7 +10,7 @@ "@types/react": "^18.2.13", "@types/react-dom": "^18.2.6", "babel-plugin-syntax-dynamic-import": "^6.18.0", - "bigbluebutton-html-plugin-sdk": "0.0.71", + "bigbluebutton-html-plugin-sdk": "0.0.72", "browser-bunyan": "^1.8.0", "path": "^0.12.7", "react": "^18.2.0", diff --git a/samples/sample-camera-settings-dropdown-plugin/package-lock.json b/samples/sample-camera-settings-dropdown-plugin/package-lock.json index 36b4dd0e..40e59997 100644 --- a/samples/sample-camera-settings-dropdown-plugin/package-lock.json +++ b/samples/sample-camera-settings-dropdown-plugin/package-lock.json @@ -14,7 +14,7 @@ "@types/react": "^18.2.13", "@types/react-dom": "^18.2.6", "babel-plugin-syntax-dynamic-import": "^6.18.0", - "bigbluebutton-html-plugin-sdk": "0.0.71", + "bigbluebutton-html-plugin-sdk": "0.0.72", "path": "^0.12.7", "react": "^18.2.0", "react-dom": "^18.2.0", @@ -3408,10 +3408,9 @@ "dev": true }, "node_modules/bigbluebutton-html-plugin-sdk": { - "version": "0.0.71", - "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.71.tgz", - "integrity": "sha512-mnrKaGOQb6dlNjYERHb5Y0hbs5wXp7h82fDRxbdZErny1+gxg/yMYPEv3fj2EXj6miWXOXoIcshqRbZZZgto+w==", - "license": "LGPL-3.0", + "version": "0.0.72", + "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.72.tgz", + "integrity": "sha512-Vme+u/EZGnHSV2iEc3XGUgI1T1ILxCIb4VJ1/gRDIjeNQNHLTKXAZ3JPBSlSqAhtvYFEeyqK5VcbPCxRVKB5Sw==", "dependencies": { "@apollo/client": "^3.8.7", "@browser-bunyan/console-formatted-stream": "^1.8.0", @@ -11675,9 +11674,9 @@ "dev": true }, "bigbluebutton-html-plugin-sdk": { - "version": "0.0.71", - "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.71.tgz", - "integrity": "sha512-mnrKaGOQb6dlNjYERHb5Y0hbs5wXp7h82fDRxbdZErny1+gxg/yMYPEv3fj2EXj6miWXOXoIcshqRbZZZgto+w==", + "version": "0.0.72", + "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.72.tgz", + "integrity": "sha512-Vme+u/EZGnHSV2iEc3XGUgI1T1ILxCIb4VJ1/gRDIjeNQNHLTKXAZ3JPBSlSqAhtvYFEeyqK5VcbPCxRVKB5Sw==", "requires": { "@apollo/client": "^3.8.7", "@browser-bunyan/console-formatted-stream": "^1.8.0", diff --git a/samples/sample-camera-settings-dropdown-plugin/package.json b/samples/sample-camera-settings-dropdown-plugin/package.json index 7945437c..6b43bdcc 100644 --- a/samples/sample-camera-settings-dropdown-plugin/package.json +++ b/samples/sample-camera-settings-dropdown-plugin/package.json @@ -10,7 +10,7 @@ "@types/react": "^18.2.13", "@types/react-dom": "^18.2.6", "babel-plugin-syntax-dynamic-import": "^6.18.0", - "bigbluebutton-html-plugin-sdk": "0.0.71", + "bigbluebutton-html-plugin-sdk": "0.0.72", "path": "^0.12.7", "react": "^18.2.0", "react-dom": "^18.2.0", diff --git a/samples/sample-custom-subscription-hook/package-lock.json b/samples/sample-custom-subscription-hook/package-lock.json index 45a72bfd..f0c9a6d8 100644 --- a/samples/sample-custom-subscription-hook/package-lock.json +++ b/samples/sample-custom-subscription-hook/package-lock.json @@ -14,7 +14,7 @@ "@types/react": "^18.2.13", "@types/react-dom": "^18.2.6", "babel-plugin-syntax-dynamic-import": "^6.18.0", - "bigbluebutton-html-plugin-sdk": "0.0.71", + "bigbluebutton-html-plugin-sdk": "0.0.72", "path": "^0.12.7", "react": "^18.2.0", "react-dom": "^18.2.0", @@ -3408,10 +3408,9 @@ "dev": true }, "node_modules/bigbluebutton-html-plugin-sdk": { - "version": "0.0.71", - "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.71.tgz", - "integrity": "sha512-mnrKaGOQb6dlNjYERHb5Y0hbs5wXp7h82fDRxbdZErny1+gxg/yMYPEv3fj2EXj6miWXOXoIcshqRbZZZgto+w==", - "license": "LGPL-3.0", + "version": "0.0.72", + "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.72.tgz", + "integrity": "sha512-Vme+u/EZGnHSV2iEc3XGUgI1T1ILxCIb4VJ1/gRDIjeNQNHLTKXAZ3JPBSlSqAhtvYFEeyqK5VcbPCxRVKB5Sw==", "dependencies": { "@apollo/client": "^3.8.7", "@browser-bunyan/console-formatted-stream": "^1.8.0", @@ -11675,9 +11674,9 @@ "dev": true }, "bigbluebutton-html-plugin-sdk": { - "version": "0.0.71", - "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.71.tgz", - "integrity": "sha512-mnrKaGOQb6dlNjYERHb5Y0hbs5wXp7h82fDRxbdZErny1+gxg/yMYPEv3fj2EXj6miWXOXoIcshqRbZZZgto+w==", + "version": "0.0.72", + "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.72.tgz", + "integrity": "sha512-Vme+u/EZGnHSV2iEc3XGUgI1T1ILxCIb4VJ1/gRDIjeNQNHLTKXAZ3JPBSlSqAhtvYFEeyqK5VcbPCxRVKB5Sw==", "requires": { "@apollo/client": "^3.8.7", "@browser-bunyan/console-formatted-stream": "^1.8.0", diff --git a/samples/sample-custom-subscription-hook/package.json b/samples/sample-custom-subscription-hook/package.json index 650ca8c2..269ed1ab 100644 --- a/samples/sample-custom-subscription-hook/package.json +++ b/samples/sample-custom-subscription-hook/package.json @@ -10,7 +10,7 @@ "@types/react": "^18.2.13", "@types/react-dom": "^18.2.6", "babel-plugin-syntax-dynamic-import": "^6.18.0", - "bigbluebutton-html-plugin-sdk": "0.0.71", + "bigbluebutton-html-plugin-sdk": "0.0.72", "path": "^0.12.7", "react": "^18.2.0", "react-dom": "^18.2.0", diff --git a/samples/sample-data-channel-plugin/package-lock.json b/samples/sample-data-channel-plugin/package-lock.json index efa5a4a7..958b7f6c 100644 --- a/samples/sample-data-channel-plugin/package-lock.json +++ b/samples/sample-data-channel-plugin/package-lock.json @@ -14,7 +14,7 @@ "@types/react": "^18.2.13", "@types/react-dom": "^18.2.6", "babel-plugin-syntax-dynamic-import": "^6.18.0", - "bigbluebutton-html-plugin-sdk": "0.0.71", + "bigbluebutton-html-plugin-sdk": "0.0.72", "browser-bunyan": "^1.8.0", "path": "^0.12.7", "react": "^18.2.0", @@ -3416,10 +3416,9 @@ "dev": true }, "node_modules/bigbluebutton-html-plugin-sdk": { - "version": "0.0.71", - "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.71.tgz", - "integrity": "sha512-mnrKaGOQb6dlNjYERHb5Y0hbs5wXp7h82fDRxbdZErny1+gxg/yMYPEv3fj2EXj6miWXOXoIcshqRbZZZgto+w==", - "license": "LGPL-3.0", + "version": "0.0.72", + "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.72.tgz", + "integrity": "sha512-Vme+u/EZGnHSV2iEc3XGUgI1T1ILxCIb4VJ1/gRDIjeNQNHLTKXAZ3JPBSlSqAhtvYFEeyqK5VcbPCxRVKB5Sw==", "dependencies": { "@apollo/client": "^3.8.7", "@browser-bunyan/console-formatted-stream": "^1.8.0", @@ -11694,9 +11693,9 @@ "dev": true }, "bigbluebutton-html-plugin-sdk": { - "version": "0.0.71", - "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.71.tgz", - "integrity": "sha512-mnrKaGOQb6dlNjYERHb5Y0hbs5wXp7h82fDRxbdZErny1+gxg/yMYPEv3fj2EXj6miWXOXoIcshqRbZZZgto+w==", + "version": "0.0.72", + "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.72.tgz", + "integrity": "sha512-Vme+u/EZGnHSV2iEc3XGUgI1T1ILxCIb4VJ1/gRDIjeNQNHLTKXAZ3JPBSlSqAhtvYFEeyqK5VcbPCxRVKB5Sw==", "requires": { "@apollo/client": "^3.8.7", "@browser-bunyan/console-formatted-stream": "^1.8.0", diff --git a/samples/sample-data-channel-plugin/package.json b/samples/sample-data-channel-plugin/package.json index 87b0a5b7..554be2fa 100644 --- a/samples/sample-data-channel-plugin/package.json +++ b/samples/sample-data-channel-plugin/package.json @@ -10,7 +10,7 @@ "@types/react": "^18.2.13", "@types/react-dom": "^18.2.6", "babel-plugin-syntax-dynamic-import": "^6.18.0", - "bigbluebutton-html-plugin-sdk": "0.0.71", + "bigbluebutton-html-plugin-sdk": "0.0.72", "path": "^0.12.7", "browser-bunyan": "^1.8.0", "react": "^18.2.0", diff --git a/samples/sample-dom-element-manipulation/package-lock.json b/samples/sample-dom-element-manipulation/package-lock.json index 912e6b23..6de8584a 100644 --- a/samples/sample-dom-element-manipulation/package-lock.json +++ b/samples/sample-dom-element-manipulation/package-lock.json @@ -14,7 +14,7 @@ "@types/react": "^18.2.13", "@types/react-dom": "^18.2.6", "babel-plugin-syntax-dynamic-import": "^6.18.0", - "bigbluebutton-html-plugin-sdk": "0.0.71", + "bigbluebutton-html-plugin-sdk": "0.0.72", "path": "^0.12.7", "react": "^18.2.0", "react-dom": "^18.2.0", @@ -3415,10 +3415,9 @@ "dev": true }, "node_modules/bigbluebutton-html-plugin-sdk": { - "version": "0.0.71", - "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.71.tgz", - "integrity": "sha512-mnrKaGOQb6dlNjYERHb5Y0hbs5wXp7h82fDRxbdZErny1+gxg/yMYPEv3fj2EXj6miWXOXoIcshqRbZZZgto+w==", - "license": "LGPL-3.0", + "version": "0.0.72", + "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.72.tgz", + "integrity": "sha512-Vme+u/EZGnHSV2iEc3XGUgI1T1ILxCIb4VJ1/gRDIjeNQNHLTKXAZ3JPBSlSqAhtvYFEeyqK5VcbPCxRVKB5Sw==", "dependencies": { "@apollo/client": "^3.8.7", "@browser-bunyan/console-formatted-stream": "^1.8.0", @@ -11693,9 +11692,9 @@ "dev": true }, "bigbluebutton-html-plugin-sdk": { - "version": "0.0.71", - "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.71.tgz", - "integrity": "sha512-mnrKaGOQb6dlNjYERHb5Y0hbs5wXp7h82fDRxbdZErny1+gxg/yMYPEv3fj2EXj6miWXOXoIcshqRbZZZgto+w==", + "version": "0.0.72", + "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.72.tgz", + "integrity": "sha512-Vme+u/EZGnHSV2iEc3XGUgI1T1ILxCIb4VJ1/gRDIjeNQNHLTKXAZ3JPBSlSqAhtvYFEeyqK5VcbPCxRVKB5Sw==", "requires": { "@apollo/client": "^3.8.7", "@browser-bunyan/console-formatted-stream": "^1.8.0", diff --git a/samples/sample-dom-element-manipulation/package.json b/samples/sample-dom-element-manipulation/package.json index aae006d0..7ec91f66 100644 --- a/samples/sample-dom-element-manipulation/package.json +++ b/samples/sample-dom-element-manipulation/package.json @@ -10,7 +10,7 @@ "@types/react": "^18.2.13", "@types/react-dom": "^18.2.6", "babel-plugin-syntax-dynamic-import": "^6.18.0", - "bigbluebutton-html-plugin-sdk": "0.0.71", + "bigbluebutton-html-plugin-sdk": "0.0.72", "path": "^0.12.7", "react": "^18.2.0", "react-dom": "^18.2.0", diff --git a/samples/sample-floating-window-plugin/package-lock.json b/samples/sample-floating-window-plugin/package-lock.json index 20642fdd..242b716b 100644 --- a/samples/sample-floating-window-plugin/package-lock.json +++ b/samples/sample-floating-window-plugin/package-lock.json @@ -14,7 +14,7 @@ "@types/react": "^18.2.13", "@types/react-dom": "^18.2.6", "babel-plugin-syntax-dynamic-import": "^6.18.0", - "bigbluebutton-html-plugin-sdk": "0.0.71", + "bigbluebutton-html-plugin-sdk": "0.0.72", "path": "^0.12.7", "react": "^18.2.0", "react-dom": "^18.2.0", @@ -3464,10 +3464,9 @@ "dev": true }, "node_modules/bigbluebutton-html-plugin-sdk": { - "version": "0.0.71", - "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.71.tgz", - "integrity": "sha512-mnrKaGOQb6dlNjYERHb5Y0hbs5wXp7h82fDRxbdZErny1+gxg/yMYPEv3fj2EXj6miWXOXoIcshqRbZZZgto+w==", - "license": "LGPL-3.0", + "version": "0.0.72", + "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.72.tgz", + "integrity": "sha512-Vme+u/EZGnHSV2iEc3XGUgI1T1ILxCIb4VJ1/gRDIjeNQNHLTKXAZ3JPBSlSqAhtvYFEeyqK5VcbPCxRVKB5Sw==", "dependencies": { "@apollo/client": "^3.8.7", "@browser-bunyan/console-formatted-stream": "^1.8.0", @@ -11822,9 +11821,9 @@ "dev": true }, "bigbluebutton-html-plugin-sdk": { - "version": "0.0.71", - "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.71.tgz", - "integrity": "sha512-mnrKaGOQb6dlNjYERHb5Y0hbs5wXp7h82fDRxbdZErny1+gxg/yMYPEv3fj2EXj6miWXOXoIcshqRbZZZgto+w==", + "version": "0.0.72", + "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.72.tgz", + "integrity": "sha512-Vme+u/EZGnHSV2iEc3XGUgI1T1ILxCIb4VJ1/gRDIjeNQNHLTKXAZ3JPBSlSqAhtvYFEeyqK5VcbPCxRVKB5Sw==", "requires": { "@apollo/client": "^3.8.7", "@browser-bunyan/console-formatted-stream": "^1.8.0", diff --git a/samples/sample-floating-window-plugin/package.json b/samples/sample-floating-window-plugin/package.json index ba88bc12..4162bac1 100644 --- a/samples/sample-floating-window-plugin/package.json +++ b/samples/sample-floating-window-plugin/package.json @@ -10,7 +10,7 @@ "@types/react": "^18.2.13", "@types/react-dom": "^18.2.6", "babel-plugin-syntax-dynamic-import": "^6.18.0", - "bigbluebutton-html-plugin-sdk": "0.0.71", + "bigbluebutton-html-plugin-sdk": "0.0.72", "path": "^0.12.7", "react": "^18.2.0", "react-dom": "^18.2.0", diff --git a/samples/sample-generic-content-sidekick-plugin/package-lock.json b/samples/sample-generic-content-sidekick-plugin/package-lock.json index 759cfd6a..3ac2281b 100644 --- a/samples/sample-generic-content-sidekick-plugin/package-lock.json +++ b/samples/sample-generic-content-sidekick-plugin/package-lock.json @@ -14,7 +14,7 @@ "@types/react": "^18.2.13", "@types/react-dom": "^18.2.6", "babel-plugin-syntax-dynamic-import": "^6.18.0", - "bigbluebutton-html-plugin-sdk": "0.0.71", + "bigbluebutton-html-plugin-sdk": "0.0.72", "react": "^18.2.0", "react-dom": "^18.2.0" }, @@ -3620,10 +3620,9 @@ "dev": true }, "node_modules/bigbluebutton-html-plugin-sdk": { - "version": "0.0.71", - "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.71.tgz", - "integrity": "sha512-mnrKaGOQb6dlNjYERHb5Y0hbs5wXp7h82fDRxbdZErny1+gxg/yMYPEv3fj2EXj6miWXOXoIcshqRbZZZgto+w==", - "license": "LGPL-3.0", + "version": "0.0.72", + "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.72.tgz", + "integrity": "sha512-Vme+u/EZGnHSV2iEc3XGUgI1T1ILxCIb4VJ1/gRDIjeNQNHLTKXAZ3JPBSlSqAhtvYFEeyqK5VcbPCxRVKB5Sw==", "dependencies": { "@apollo/client": "^3.8.7", "@browser-bunyan/console-formatted-stream": "^1.8.0", diff --git a/samples/sample-generic-content-sidekick-plugin/package.json b/samples/sample-generic-content-sidekick-plugin/package.json index b79de586..5490d251 100644 --- a/samples/sample-generic-content-sidekick-plugin/package.json +++ b/samples/sample-generic-content-sidekick-plugin/package.json @@ -10,7 +10,7 @@ "@types/react": "^18.2.13", "@types/react-dom": "^18.2.6", "babel-plugin-syntax-dynamic-import": "^6.18.0", - "bigbluebutton-html-plugin-sdk": "0.0.71", + "bigbluebutton-html-plugin-sdk": "0.0.72", "react": "^18.2.0", "react-dom": "^18.2.0" }, diff --git a/samples/sample-nav-bar-plugin/package-lock.json b/samples/sample-nav-bar-plugin/package-lock.json index 460221bf..1e52ab73 100644 --- a/samples/sample-nav-bar-plugin/package-lock.json +++ b/samples/sample-nav-bar-plugin/package-lock.json @@ -14,7 +14,7 @@ "@types/react": "^18.2.13", "@types/react-dom": "^18.2.6", "babel-plugin-syntax-dynamic-import": "^6.18.0", - "bigbluebutton-html-plugin-sdk": "0.0.71", + "bigbluebutton-html-plugin-sdk": "0.0.72", "browser-bunyan": "^1.8.0", "path": "^0.12.7", "react": "^18.2.0", @@ -3416,10 +3416,9 @@ "dev": true }, "node_modules/bigbluebutton-html-plugin-sdk": { - "version": "0.0.71", - "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.71.tgz", - "integrity": "sha512-mnrKaGOQb6dlNjYERHb5Y0hbs5wXp7h82fDRxbdZErny1+gxg/yMYPEv3fj2EXj6miWXOXoIcshqRbZZZgto+w==", - "license": "LGPL-3.0", + "version": "0.0.72", + "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.72.tgz", + "integrity": "sha512-Vme+u/EZGnHSV2iEc3XGUgI1T1ILxCIb4VJ1/gRDIjeNQNHLTKXAZ3JPBSlSqAhtvYFEeyqK5VcbPCxRVKB5Sw==", "dependencies": { "@apollo/client": "^3.8.7", "@browser-bunyan/console-formatted-stream": "^1.8.0", @@ -11694,9 +11693,9 @@ "dev": true }, "bigbluebutton-html-plugin-sdk": { - "version": "0.0.71", - "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.71.tgz", - "integrity": "sha512-mnrKaGOQb6dlNjYERHb5Y0hbs5wXp7h82fDRxbdZErny1+gxg/yMYPEv3fj2EXj6miWXOXoIcshqRbZZZgto+w==", + "version": "0.0.72", + "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.72.tgz", + "integrity": "sha512-Vme+u/EZGnHSV2iEc3XGUgI1T1ILxCIb4VJ1/gRDIjeNQNHLTKXAZ3JPBSlSqAhtvYFEeyqK5VcbPCxRVKB5Sw==", "requires": { "@apollo/client": "^3.8.7", "@browser-bunyan/console-formatted-stream": "^1.8.0", diff --git a/samples/sample-nav-bar-plugin/package.json b/samples/sample-nav-bar-plugin/package.json index 8945f97e..403ef16b 100644 --- a/samples/sample-nav-bar-plugin/package.json +++ b/samples/sample-nav-bar-plugin/package.json @@ -10,7 +10,7 @@ "@types/react": "^18.2.13", "@types/react-dom": "^18.2.6", "babel-plugin-syntax-dynamic-import": "^6.18.0", - "bigbluebutton-html-plugin-sdk": "0.0.71", + "bigbluebutton-html-plugin-sdk": "0.0.72", "path": "^0.12.7", "browser-bunyan": "^1.8.0", "react": "^18.2.0", diff --git a/samples/sample-options-dropdown-plugin/package-lock.json b/samples/sample-options-dropdown-plugin/package-lock.json index 9f79ce54..ad68e4e0 100644 --- a/samples/sample-options-dropdown-plugin/package-lock.json +++ b/samples/sample-options-dropdown-plugin/package-lock.json @@ -14,7 +14,7 @@ "@types/react": "^18.2.13", "@types/react-dom": "^18.2.6", "babel-plugin-syntax-dynamic-import": "^6.18.0", - "bigbluebutton-html-plugin-sdk": "0.0.71", + "bigbluebutton-html-plugin-sdk": "0.0.72", "browser-bunyan": "^1.8.0", "path": "^0.12.7", "react": "^18.2.0", @@ -3416,10 +3416,9 @@ "dev": true }, "node_modules/bigbluebutton-html-plugin-sdk": { - "version": "0.0.71", - "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.71.tgz", - "integrity": "sha512-mnrKaGOQb6dlNjYERHb5Y0hbs5wXp7h82fDRxbdZErny1+gxg/yMYPEv3fj2EXj6miWXOXoIcshqRbZZZgto+w==", - "license": "LGPL-3.0", + "version": "0.0.72", + "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.72.tgz", + "integrity": "sha512-Vme+u/EZGnHSV2iEc3XGUgI1T1ILxCIb4VJ1/gRDIjeNQNHLTKXAZ3JPBSlSqAhtvYFEeyqK5VcbPCxRVKB5Sw==", "dependencies": { "@apollo/client": "^3.8.7", "@browser-bunyan/console-formatted-stream": "^1.8.0", @@ -11694,9 +11693,9 @@ "dev": true }, "bigbluebutton-html-plugin-sdk": { - "version": "0.0.71", - "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.71.tgz", - "integrity": "sha512-mnrKaGOQb6dlNjYERHb5Y0hbs5wXp7h82fDRxbdZErny1+gxg/yMYPEv3fj2EXj6miWXOXoIcshqRbZZZgto+w==", + "version": "0.0.72", + "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.72.tgz", + "integrity": "sha512-Vme+u/EZGnHSV2iEc3XGUgI1T1ILxCIb4VJ1/gRDIjeNQNHLTKXAZ3JPBSlSqAhtvYFEeyqK5VcbPCxRVKB5Sw==", "requires": { "@apollo/client": "^3.8.7", "@browser-bunyan/console-formatted-stream": "^1.8.0", diff --git a/samples/sample-options-dropdown-plugin/package.json b/samples/sample-options-dropdown-plugin/package.json index 5f778aea..4c4f94c4 100644 --- a/samples/sample-options-dropdown-plugin/package.json +++ b/samples/sample-options-dropdown-plugin/package.json @@ -10,7 +10,7 @@ "@types/react": "^18.2.13", "@types/react-dom": "^18.2.6", "babel-plugin-syntax-dynamic-import": "^6.18.0", - "bigbluebutton-html-plugin-sdk": "0.0.71", + "bigbluebutton-html-plugin-sdk": "0.0.72", "path": "^0.12.7", "browser-bunyan": "^1.8.0", "react": "^18.2.0", diff --git a/samples/sample-presentation-dropdown-plugin/package-lock.json b/samples/sample-presentation-dropdown-plugin/package-lock.json index 4010dd85..b2ad356a 100644 --- a/samples/sample-presentation-dropdown-plugin/package-lock.json +++ b/samples/sample-presentation-dropdown-plugin/package-lock.json @@ -14,7 +14,7 @@ "@types/react": "^18.2.13", "@types/react-dom": "^18.2.6", "babel-plugin-syntax-dynamic-import": "^6.18.0", - "bigbluebutton-html-plugin-sdk": "0.0.71", + "bigbluebutton-html-plugin-sdk": "0.0.72", "path": "^0.12.7", "react": "^18.2.0", "react-dom": "^18.2.0", @@ -3415,10 +3415,9 @@ "dev": true }, "node_modules/bigbluebutton-html-plugin-sdk": { - "version": "0.0.71", - "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.71.tgz", - "integrity": "sha512-mnrKaGOQb6dlNjYERHb5Y0hbs5wXp7h82fDRxbdZErny1+gxg/yMYPEv3fj2EXj6miWXOXoIcshqRbZZZgto+w==", - "license": "LGPL-3.0", + "version": "0.0.72", + "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.72.tgz", + "integrity": "sha512-Vme+u/EZGnHSV2iEc3XGUgI1T1ILxCIb4VJ1/gRDIjeNQNHLTKXAZ3JPBSlSqAhtvYFEeyqK5VcbPCxRVKB5Sw==", "dependencies": { "@apollo/client": "^3.8.7", "@browser-bunyan/console-formatted-stream": "^1.8.0", @@ -11693,9 +11692,9 @@ "dev": true }, "bigbluebutton-html-plugin-sdk": { - "version": "0.0.71", - "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.71.tgz", - "integrity": "sha512-mnrKaGOQb6dlNjYERHb5Y0hbs5wXp7h82fDRxbdZErny1+gxg/yMYPEv3fj2EXj6miWXOXoIcshqRbZZZgto+w==", + "version": "0.0.72", + "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.72.tgz", + "integrity": "sha512-Vme+u/EZGnHSV2iEc3XGUgI1T1ILxCIb4VJ1/gRDIjeNQNHLTKXAZ3JPBSlSqAhtvYFEeyqK5VcbPCxRVKB5Sw==", "requires": { "@apollo/client": "^3.8.7", "@browser-bunyan/console-formatted-stream": "^1.8.0", diff --git a/samples/sample-presentation-dropdown-plugin/package.json b/samples/sample-presentation-dropdown-plugin/package.json index 4ca938b9..73b0678c 100644 --- a/samples/sample-presentation-dropdown-plugin/package.json +++ b/samples/sample-presentation-dropdown-plugin/package.json @@ -10,7 +10,7 @@ "@types/react": "^18.2.13", "@types/react-dom": "^18.2.6", "babel-plugin-syntax-dynamic-import": "^6.18.0", - "bigbluebutton-html-plugin-sdk": "0.0.71", + "bigbluebutton-html-plugin-sdk": "0.0.72", "path": "^0.12.7", "react": "^18.2.0", "react-dom": "^18.2.0", diff --git a/samples/sample-presentation-toolbar-plugin/package-lock.json b/samples/sample-presentation-toolbar-plugin/package-lock.json index d9c889d1..a4bfa4bc 100644 --- a/samples/sample-presentation-toolbar-plugin/package-lock.json +++ b/samples/sample-presentation-toolbar-plugin/package-lock.json @@ -14,7 +14,7 @@ "@types/react": "^18.2.13", "@types/react-dom": "^18.2.6", "babel-plugin-syntax-dynamic-import": "^6.18.0", - "bigbluebutton-html-plugin-sdk": "0.0.71", + "bigbluebutton-html-plugin-sdk": "0.0.72", "path": "^0.12.7", "react": "^18.2.0", "react-dom": "^18.2.0", @@ -3415,10 +3415,9 @@ "dev": true }, "node_modules/bigbluebutton-html-plugin-sdk": { - "version": "0.0.71", - "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.71.tgz", - "integrity": "sha512-mnrKaGOQb6dlNjYERHb5Y0hbs5wXp7h82fDRxbdZErny1+gxg/yMYPEv3fj2EXj6miWXOXoIcshqRbZZZgto+w==", - "license": "LGPL-3.0", + "version": "0.0.72", + "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.72.tgz", + "integrity": "sha512-Vme+u/EZGnHSV2iEc3XGUgI1T1ILxCIb4VJ1/gRDIjeNQNHLTKXAZ3JPBSlSqAhtvYFEeyqK5VcbPCxRVKB5Sw==", "dependencies": { "@apollo/client": "^3.8.7", "@browser-bunyan/console-formatted-stream": "^1.8.0", @@ -11693,9 +11692,9 @@ "dev": true }, "bigbluebutton-html-plugin-sdk": { - "version": "0.0.71", - "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.71.tgz", - "integrity": "sha512-mnrKaGOQb6dlNjYERHb5Y0hbs5wXp7h82fDRxbdZErny1+gxg/yMYPEv3fj2EXj6miWXOXoIcshqRbZZZgto+w==", + "version": "0.0.72", + "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.72.tgz", + "integrity": "sha512-Vme+u/EZGnHSV2iEc3XGUgI1T1ILxCIb4VJ1/gRDIjeNQNHLTKXAZ3JPBSlSqAhtvYFEeyqK5VcbPCxRVKB5Sw==", "requires": { "@apollo/client": "^3.8.7", "@browser-bunyan/console-formatted-stream": "^1.8.0", diff --git a/samples/sample-presentation-toolbar-plugin/package.json b/samples/sample-presentation-toolbar-plugin/package.json index 9b737046..ecb32fcf 100644 --- a/samples/sample-presentation-toolbar-plugin/package.json +++ b/samples/sample-presentation-toolbar-plugin/package.json @@ -10,7 +10,7 @@ "@types/react": "^18.2.13", "@types/react-dom": "^18.2.6", "babel-plugin-syntax-dynamic-import": "^6.18.0", - "bigbluebutton-html-plugin-sdk": "0.0.71", + "bigbluebutton-html-plugin-sdk": "0.0.72", "path": "^0.12.7", "react": "^18.2.0", "react-dom": "^18.2.0", diff --git a/samples/sample-server-commands-plugin/package-lock.json b/samples/sample-server-commands-plugin/package-lock.json index 532619ac..00730ee0 100644 --- a/samples/sample-server-commands-plugin/package-lock.json +++ b/samples/sample-server-commands-plugin/package-lock.json @@ -14,7 +14,7 @@ "@types/react": "^18.2.13", "@types/react-dom": "^18.2.6", "babel-plugin-syntax-dynamic-import": "^6.18.0", - "bigbluebutton-html-plugin-sdk": "0.0.71", + "bigbluebutton-html-plugin-sdk": "0.0.72", "path": "^0.12.7", "react": "^18.2.0", "react-dom": "^18.2.0", @@ -3457,10 +3457,9 @@ "dev": true }, "node_modules/bigbluebutton-html-plugin-sdk": { - "version": "0.0.71", - "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.71.tgz", - "integrity": "sha512-mnrKaGOQb6dlNjYERHb5Y0hbs5wXp7h82fDRxbdZErny1+gxg/yMYPEv3fj2EXj6miWXOXoIcshqRbZZZgto+w==", - "license": "LGPL-3.0", + "version": "0.0.72", + "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.72.tgz", + "integrity": "sha512-Vme+u/EZGnHSV2iEc3XGUgI1T1ILxCIb4VJ1/gRDIjeNQNHLTKXAZ3JPBSlSqAhtvYFEeyqK5VcbPCxRVKB5Sw==", "dependencies": { "@apollo/client": "^3.8.7", "@browser-bunyan/console-formatted-stream": "^1.8.0", diff --git a/samples/sample-server-commands-plugin/package.json b/samples/sample-server-commands-plugin/package.json index 77806587..feef0e0d 100644 --- a/samples/sample-server-commands-plugin/package.json +++ b/samples/sample-server-commands-plugin/package.json @@ -10,7 +10,7 @@ "@types/react": "^18.2.13", "@types/react-dom": "^18.2.6", "babel-plugin-syntax-dynamic-import": "^6.18.0", - "bigbluebutton-html-plugin-sdk": "0.0.71", + "bigbluebutton-html-plugin-sdk": "0.0.72", "path": "^0.12.7", "react": "^18.2.0", "react-dom": "^18.2.0", diff --git a/samples/sample-ui-commands-plugin/package-lock.json b/samples/sample-ui-commands-plugin/package-lock.json index b4522386..6b96d1ad 100644 --- a/samples/sample-ui-commands-plugin/package-lock.json +++ b/samples/sample-ui-commands-plugin/package-lock.json @@ -14,7 +14,7 @@ "@types/react": "^18.2.13", "@types/react-dom": "^18.2.6", "babel-plugin-syntax-dynamic-import": "^6.18.0", - "bigbluebutton-html-plugin-sdk": "0.0.71", + "bigbluebutton-html-plugin-sdk": "0.0.72", "path": "^0.12.7", "react": "^18.2.0", "react-dom": "^18.2.0", @@ -3425,10 +3425,9 @@ "dev": true }, "node_modules/bigbluebutton-html-plugin-sdk": { - "version": "0.0.71", - "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.71.tgz", - "integrity": "sha512-mnrKaGOQb6dlNjYERHb5Y0hbs5wXp7h82fDRxbdZErny1+gxg/yMYPEv3fj2EXj6miWXOXoIcshqRbZZZgto+w==", - "license": "LGPL-3.0", + "version": "0.0.72", + "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.72.tgz", + "integrity": "sha512-Vme+u/EZGnHSV2iEc3XGUgI1T1ILxCIb4VJ1/gRDIjeNQNHLTKXAZ3JPBSlSqAhtvYFEeyqK5VcbPCxRVKB5Sw==", "dependencies": { "@apollo/client": "^3.8.7", "@browser-bunyan/console-formatted-stream": "^1.8.0", @@ -11722,9 +11721,9 @@ "dev": true }, "bigbluebutton-html-plugin-sdk": { - "version": "0.0.71", - "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.71.tgz", - "integrity": "sha512-mnrKaGOQb6dlNjYERHb5Y0hbs5wXp7h82fDRxbdZErny1+gxg/yMYPEv3fj2EXj6miWXOXoIcshqRbZZZgto+w==", + "version": "0.0.72", + "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.72.tgz", + "integrity": "sha512-Vme+u/EZGnHSV2iEc3XGUgI1T1ILxCIb4VJ1/gRDIjeNQNHLTKXAZ3JPBSlSqAhtvYFEeyqK5VcbPCxRVKB5Sw==", "requires": { "@apollo/client": "^3.8.7", "@browser-bunyan/console-formatted-stream": "^1.8.0", diff --git a/samples/sample-ui-commands-plugin/package.json b/samples/sample-ui-commands-plugin/package.json index d7a05f50..98aad72e 100644 --- a/samples/sample-ui-commands-plugin/package.json +++ b/samples/sample-ui-commands-plugin/package.json @@ -10,7 +10,7 @@ "@types/react": "^18.2.13", "@types/react-dom": "^18.2.6", "babel-plugin-syntax-dynamic-import": "^6.18.0", - "bigbluebutton-html-plugin-sdk": "0.0.71", + "bigbluebutton-html-plugin-sdk": "0.0.72", "path": "^0.12.7", "react": "^18.2.0", "react-dom": "^18.2.0", diff --git a/samples/sample-ui-events-plugin/package-lock.json b/samples/sample-ui-events-plugin/package-lock.json index 0b4bffc1..a6520804 100644 --- a/samples/sample-ui-events-plugin/package-lock.json +++ b/samples/sample-ui-events-plugin/package-lock.json @@ -14,7 +14,7 @@ "@types/react": "^18.2.13", "@types/react-dom": "^18.2.6", "babel-plugin-syntax-dynamic-import": "^6.18.0", - "bigbluebutton-html-plugin-sdk": "0.0.71", + "bigbluebutton-html-plugin-sdk": "0.0.72", "path": "^0.12.7", "react": "^18.2.0", "react-dom": "^18.2.0", @@ -3425,10 +3425,9 @@ "dev": true }, "node_modules/bigbluebutton-html-plugin-sdk": { - "version": "0.0.71", - "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.71.tgz", - "integrity": "sha512-mnrKaGOQb6dlNjYERHb5Y0hbs5wXp7h82fDRxbdZErny1+gxg/yMYPEv3fj2EXj6miWXOXoIcshqRbZZZgto+w==", - "license": "LGPL-3.0", + "version": "0.0.72", + "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.72.tgz", + "integrity": "sha512-Vme+u/EZGnHSV2iEc3XGUgI1T1ILxCIb4VJ1/gRDIjeNQNHLTKXAZ3JPBSlSqAhtvYFEeyqK5VcbPCxRVKB5Sw==", "dependencies": { "@apollo/client": "^3.8.7", "@browser-bunyan/console-formatted-stream": "^1.8.0", @@ -11722,9 +11721,9 @@ "dev": true }, "bigbluebutton-html-plugin-sdk": { - "version": "0.0.71", - "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.71.tgz", - "integrity": "sha512-mnrKaGOQb6dlNjYERHb5Y0hbs5wXp7h82fDRxbdZErny1+gxg/yMYPEv3fj2EXj6miWXOXoIcshqRbZZZgto+w==", + "version": "0.0.72", + "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.72.tgz", + "integrity": "sha512-Vme+u/EZGnHSV2iEc3XGUgI1T1ILxCIb4VJ1/gRDIjeNQNHLTKXAZ3JPBSlSqAhtvYFEeyqK5VcbPCxRVKB5Sw==", "requires": { "@apollo/client": "^3.8.7", "@browser-bunyan/console-formatted-stream": "^1.8.0", diff --git a/samples/sample-ui-events-plugin/package.json b/samples/sample-ui-events-plugin/package.json index 62d8ba12..63d4995a 100644 --- a/samples/sample-ui-events-plugin/package.json +++ b/samples/sample-ui-events-plugin/package.json @@ -10,7 +10,7 @@ "@types/react": "^18.2.13", "@types/react-dom": "^18.2.6", "babel-plugin-syntax-dynamic-import": "^6.18.0", - "bigbluebutton-html-plugin-sdk": "0.0.71", + "bigbluebutton-html-plugin-sdk": "0.0.72", "path": "^0.12.7", "react": "^18.2.0", "react-dom": "^18.2.0", diff --git a/samples/sample-use-meeting/package-lock.json b/samples/sample-use-meeting/package-lock.json index 2b1bcd9c..40badc69 100644 --- a/samples/sample-use-meeting/package-lock.json +++ b/samples/sample-use-meeting/package-lock.json @@ -14,7 +14,7 @@ "@types/react": "^18.2.13", "@types/react-dom": "^18.2.6", "babel-plugin-syntax-dynamic-import": "^6.18.0", - "bigbluebutton-html-plugin-sdk": "0.0.71", + "bigbluebutton-html-plugin-sdk": "0.0.72", "path": "^0.12.7", "react": "^18.2.0", "react-dom": "^18.2.0", @@ -3425,10 +3425,9 @@ "dev": true }, "node_modules/bigbluebutton-html-plugin-sdk": { - "version": "0.0.71", - "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.71.tgz", - "integrity": "sha512-mnrKaGOQb6dlNjYERHb5Y0hbs5wXp7h82fDRxbdZErny1+gxg/yMYPEv3fj2EXj6miWXOXoIcshqRbZZZgto+w==", - "license": "LGPL-3.0", + "version": "0.0.72", + "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.72.tgz", + "integrity": "sha512-Vme+u/EZGnHSV2iEc3XGUgI1T1ILxCIb4VJ1/gRDIjeNQNHLTKXAZ3JPBSlSqAhtvYFEeyqK5VcbPCxRVKB5Sw==", "dependencies": { "@apollo/client": "^3.8.7", "@browser-bunyan/console-formatted-stream": "^1.8.0", @@ -11722,9 +11721,9 @@ "dev": true }, "bigbluebutton-html-plugin-sdk": { - "version": "0.0.71", - "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.71.tgz", - "integrity": "sha512-mnrKaGOQb6dlNjYERHb5Y0hbs5wXp7h82fDRxbdZErny1+gxg/yMYPEv3fj2EXj6miWXOXoIcshqRbZZZgto+w==", + "version": "0.0.72", + "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.72.tgz", + "integrity": "sha512-Vme+u/EZGnHSV2iEc3XGUgI1T1ILxCIb4VJ1/gRDIjeNQNHLTKXAZ3JPBSlSqAhtvYFEeyqK5VcbPCxRVKB5Sw==", "requires": { "@apollo/client": "^3.8.7", "@browser-bunyan/console-formatted-stream": "^1.8.0", diff --git a/samples/sample-use-meeting/package.json b/samples/sample-use-meeting/package.json index 030f7c16..461eb776 100644 --- a/samples/sample-use-meeting/package.json +++ b/samples/sample-use-meeting/package.json @@ -10,7 +10,7 @@ "@types/react": "^18.2.13", "@types/react-dom": "^18.2.6", "babel-plugin-syntax-dynamic-import": "^6.18.0", - "bigbluebutton-html-plugin-sdk": "0.0.71", + "bigbluebutton-html-plugin-sdk": "0.0.72", "path": "^0.12.7", "react": "^18.2.0", "react-dom": "^18.2.0", diff --git a/samples/sample-user-camera-dropdown-plugin/package-lock.json b/samples/sample-user-camera-dropdown-plugin/package-lock.json index 1e529cad..0d8e0c07 100644 --- a/samples/sample-user-camera-dropdown-plugin/package-lock.json +++ b/samples/sample-user-camera-dropdown-plugin/package-lock.json @@ -14,7 +14,7 @@ "@types/react": "^18.2.13", "@types/react-dom": "^18.2.6", "babel-plugin-syntax-dynamic-import": "^6.18.0", - "bigbluebutton-html-plugin-sdk": "0.0.71", + "bigbluebutton-html-plugin-sdk": "0.0.72", "path": "^0.12.7", "react": "^18.2.0", "react-dom": "^18.2.0", @@ -3415,10 +3415,9 @@ "dev": true }, "node_modules/bigbluebutton-html-plugin-sdk": { - "version": "0.0.71", - "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.71.tgz", - "integrity": "sha512-mnrKaGOQb6dlNjYERHb5Y0hbs5wXp7h82fDRxbdZErny1+gxg/yMYPEv3fj2EXj6miWXOXoIcshqRbZZZgto+w==", - "license": "LGPL-3.0", + "version": "0.0.72", + "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.72.tgz", + "integrity": "sha512-Vme+u/EZGnHSV2iEc3XGUgI1T1ILxCIb4VJ1/gRDIjeNQNHLTKXAZ3JPBSlSqAhtvYFEeyqK5VcbPCxRVKB5Sw==", "dependencies": { "@apollo/client": "^3.8.7", "@browser-bunyan/console-formatted-stream": "^1.8.0", @@ -11693,9 +11692,9 @@ "dev": true }, "bigbluebutton-html-plugin-sdk": { - "version": "0.0.71", - "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.71.tgz", - "integrity": "sha512-mnrKaGOQb6dlNjYERHb5Y0hbs5wXp7h82fDRxbdZErny1+gxg/yMYPEv3fj2EXj6miWXOXoIcshqRbZZZgto+w==", + "version": "0.0.72", + "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.72.tgz", + "integrity": "sha512-Vme+u/EZGnHSV2iEc3XGUgI1T1ILxCIb4VJ1/gRDIjeNQNHLTKXAZ3JPBSlSqAhtvYFEeyqK5VcbPCxRVKB5Sw==", "requires": { "@apollo/client": "^3.8.7", "@browser-bunyan/console-formatted-stream": "^1.8.0", diff --git a/samples/sample-user-camera-dropdown-plugin/package.json b/samples/sample-user-camera-dropdown-plugin/package.json index a3130053..37ff9f07 100644 --- a/samples/sample-user-camera-dropdown-plugin/package.json +++ b/samples/sample-user-camera-dropdown-plugin/package.json @@ -10,7 +10,7 @@ "@types/react": "^18.2.13", "@types/react-dom": "^18.2.6", "babel-plugin-syntax-dynamic-import": "^6.18.0", - "bigbluebutton-html-plugin-sdk": "0.0.71", + "bigbluebutton-html-plugin-sdk": "0.0.72", "path": "^0.12.7", "react": "^18.2.0", "react-dom": "^18.2.0", diff --git a/samples/sample-user-list-dropdown-plugin/package-lock.json b/samples/sample-user-list-dropdown-plugin/package-lock.json index fe42c1c0..00822545 100644 --- a/samples/sample-user-list-dropdown-plugin/package-lock.json +++ b/samples/sample-user-list-dropdown-plugin/package-lock.json @@ -14,7 +14,7 @@ "@types/react": "^18.2.13", "@types/react-dom": "^18.2.6", "babel-plugin-syntax-dynamic-import": "^6.18.0", - "bigbluebutton-html-plugin-sdk": "0.0.71", + "bigbluebutton-html-plugin-sdk": "0.0.72", "path": "^0.12.7", "react": "^18.2.0", "react-dom": "^18.2.0", @@ -3475,10 +3475,9 @@ "dev": true }, "node_modules/bigbluebutton-html-plugin-sdk": { - "version": "0.0.71", - "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.71.tgz", - "integrity": "sha512-mnrKaGOQb6dlNjYERHb5Y0hbs5wXp7h82fDRxbdZErny1+gxg/yMYPEv3fj2EXj6miWXOXoIcshqRbZZZgto+w==", - "license": "LGPL-3.0", + "version": "0.0.72", + "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.72.tgz", + "integrity": "sha512-Vme+u/EZGnHSV2iEc3XGUgI1T1ILxCIb4VJ1/gRDIjeNQNHLTKXAZ3JPBSlSqAhtvYFEeyqK5VcbPCxRVKB5Sw==", "dependencies": { "@apollo/client": "^3.8.7", "@browser-bunyan/console-formatted-stream": "^1.8.0", @@ -12289,9 +12288,9 @@ "dev": true }, "bigbluebutton-html-plugin-sdk": { - "version": "0.0.71", - "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.71.tgz", - "integrity": "sha512-mnrKaGOQb6dlNjYERHb5Y0hbs5wXp7h82fDRxbdZErny1+gxg/yMYPEv3fj2EXj6miWXOXoIcshqRbZZZgto+w==", + "version": "0.0.72", + "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.72.tgz", + "integrity": "sha512-Vme+u/EZGnHSV2iEc3XGUgI1T1ILxCIb4VJ1/gRDIjeNQNHLTKXAZ3JPBSlSqAhtvYFEeyqK5VcbPCxRVKB5Sw==", "requires": { "@apollo/client": "^3.8.7", "@browser-bunyan/console-formatted-stream": "^1.8.0", diff --git a/samples/sample-user-list-dropdown-plugin/package.json b/samples/sample-user-list-dropdown-plugin/package.json index a2fe4b3e..fdfe3cc4 100644 --- a/samples/sample-user-list-dropdown-plugin/package.json +++ b/samples/sample-user-list-dropdown-plugin/package.json @@ -10,7 +10,7 @@ "@types/react": "^18.2.13", "@types/react-dom": "^18.2.6", "babel-plugin-syntax-dynamic-import": "^6.18.0", - "bigbluebutton-html-plugin-sdk": "0.0.71", + "bigbluebutton-html-plugin-sdk": "0.0.72", "path": "^0.12.7", "react": "^18.2.0", "react-dom": "^18.2.0", diff --git a/samples/sample-user-list-item-additional-information-plugin/package-lock.json b/samples/sample-user-list-item-additional-information-plugin/package-lock.json index b96c5649..cf1be782 100644 --- a/samples/sample-user-list-item-additional-information-plugin/package-lock.json +++ b/samples/sample-user-list-item-additional-information-plugin/package-lock.json @@ -14,7 +14,7 @@ "@types/react": "^18.2.13", "@types/react-dom": "^18.2.6", "babel-plugin-syntax-dynamic-import": "^6.18.0", - "bigbluebutton-html-plugin-sdk": "0.0.71", + "bigbluebutton-html-plugin-sdk": "0.0.72", "path": "^0.12.7", "react": "^18.2.0", "react-dom": "^18.2.0", @@ -3415,10 +3415,9 @@ "dev": true }, "node_modules/bigbluebutton-html-plugin-sdk": { - "version": "0.0.71", - "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.71.tgz", - "integrity": "sha512-mnrKaGOQb6dlNjYERHb5Y0hbs5wXp7h82fDRxbdZErny1+gxg/yMYPEv3fj2EXj6miWXOXoIcshqRbZZZgto+w==", - "license": "LGPL-3.0", + "version": "0.0.72", + "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.72.tgz", + "integrity": "sha512-Vme+u/EZGnHSV2iEc3XGUgI1T1ILxCIb4VJ1/gRDIjeNQNHLTKXAZ3JPBSlSqAhtvYFEeyqK5VcbPCxRVKB5Sw==", "dependencies": { "@apollo/client": "^3.8.7", "@browser-bunyan/console-formatted-stream": "^1.8.0", @@ -11693,9 +11692,9 @@ "dev": true }, "bigbluebutton-html-plugin-sdk": { - "version": "0.0.71", - "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.71.tgz", - "integrity": "sha512-mnrKaGOQb6dlNjYERHb5Y0hbs5wXp7h82fDRxbdZErny1+gxg/yMYPEv3fj2EXj6miWXOXoIcshqRbZZZgto+w==", + "version": "0.0.72", + "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.72.tgz", + "integrity": "sha512-Vme+u/EZGnHSV2iEc3XGUgI1T1ILxCIb4VJ1/gRDIjeNQNHLTKXAZ3JPBSlSqAhtvYFEeyqK5VcbPCxRVKB5Sw==", "requires": { "@apollo/client": "^3.8.7", "@browser-bunyan/console-formatted-stream": "^1.8.0", diff --git a/samples/sample-user-list-item-additional-information-plugin/package.json b/samples/sample-user-list-item-additional-information-plugin/package.json index 2e4ccf62..7b872e72 100644 --- a/samples/sample-user-list-item-additional-information-plugin/package.json +++ b/samples/sample-user-list-item-additional-information-plugin/package.json @@ -10,7 +10,7 @@ "@types/react": "^18.2.13", "@types/react-dom": "^18.2.6", "babel-plugin-syntax-dynamic-import": "^6.18.0", - "bigbluebutton-html-plugin-sdk": "0.0.71", + "bigbluebutton-html-plugin-sdk": "0.0.72", "path": "^0.12.7", "react": "^18.2.0", "react-dom": "^18.2.0", From b4dfc0437f2da3bbf6f2301a1c028aa8063d6a52 Mon Sep 17 00:00:00 2001 From: Guilherme Leme Date: Tue, 11 Feb 2025 17:35:53 -0300 Subject: [PATCH 13/15] [locale-messages] - Added new useLocaleMessages function to the pluginAPI. --- src/core/api/BbbPluginSdk.ts | 4 ++ src/core/api/types.ts | 2 + .../locale-messages/subscriptions.ts | 12 ++++++ .../locale-messages/types.ts | 32 ++++++++++++++ .../locale-messages/useLocaleMessages.ts | 43 +++++++++++++++++++ .../domain/settings/plugin-settings/utils.ts | 2 +- 6 files changed, 94 insertions(+), 1 deletion(-) create mode 100644 src/core/auxiliary/plugin-information/locale-messages/subscriptions.ts create mode 100644 src/core/auxiliary/plugin-information/locale-messages/types.ts create mode 100644 src/core/auxiliary/plugin-information/locale-messages/useLocaleMessages.ts diff --git a/src/core/api/BbbPluginSdk.ts b/src/core/api/BbbPluginSdk.ts index 33402820..c6158239 100644 --- a/src/core/api/BbbPluginSdk.ts +++ b/src/core/api/BbbPluginSdk.ts @@ -48,6 +48,7 @@ import { sendGenericDataForLearningAnalyticsDashboard } from '../../learning-ana import { GenericDataForLearningAnalyticsDashboard } from '../../learning-analytics-dashboard/types'; import { getRemoteData } from '../../remote-data/utils'; import { persistEventFunctionWrapper } from '../../event-persistence/hooks'; +import useLocaleMessagesAuxiliary from '../auxiliary/plugin-information/locale-messages/useLocaleMessages'; declare const window: PluginBrowserWindow; @@ -123,6 +124,9 @@ export abstract class BbbPluginSdk { eventName, payload, ); + pluginApi.useLocaleMessages = ( + fetchConfigs?: RequestInit, + ) => useLocaleMessagesAuxiliary({ pluginApi, fetchConfigs }); } else { throw new Error('Plugin name not set'); } diff --git a/src/core/api/types.ts b/src/core/api/types.ts index 65515682..13dcdfe9 100644 --- a/src/core/api/types.ts +++ b/src/core/api/types.ts @@ -32,6 +32,7 @@ import { UseUserCameraDomElementsFunction } from '../../dom-element-manipulation import { ScreenshareHelperInterface, UserCameraHelperInterface } from '../../extensible-areas'; import { GetDataSource } from '../../remote-data/types'; import { PersistEventFunction } from '../../event-persistence/types'; +import { UseLocaleMessagesFunction } from '../auxiliary/plugin-information/locale-messages/types'; // Setter Functions for the API export type SetPresentationToolbarItems = (presentationToolbarItem: @@ -237,6 +238,7 @@ export interface PluginApi { // --- Auxiliary functions --- getSessionToken?: GetSessionTokenFunction; getJoinUrl?: GetJoinUrlFunction; + useLocaleMessages?: UseLocaleMessagesFunction /** * Send data to the Learning analytics dashboard * diff --git a/src/core/auxiliary/plugin-information/locale-messages/subscriptions.ts b/src/core/auxiliary/plugin-information/locale-messages/subscriptions.ts new file mode 100644 index 00000000..4ca2697a --- /dev/null +++ b/src/core/auxiliary/plugin-information/locale-messages/subscriptions.ts @@ -0,0 +1,12 @@ +const GET_PLUGIN_INFORMATION = ` +subscription GetPluginInformation { + plugin { + javascriptEntrypointIntegrity + javascriptEntrypointUrl + localesBaseUrl + name + } +} +`; + +export { GET_PLUGIN_INFORMATION }; diff --git a/src/core/auxiliary/plugin-information/locale-messages/types.ts b/src/core/auxiliary/plugin-information/locale-messages/types.ts new file mode 100644 index 00000000..89cefbea --- /dev/null +++ b/src/core/auxiliary/plugin-information/locale-messages/types.ts @@ -0,0 +1,32 @@ +import { PluginApi } from 'src/core/api/types'; + +interface UseLocaleMessagesProps { + pluginApi: PluginApi; + fetchConfigs?: RequestInit; +} + +interface PluginInformationResult { + javascriptEntrypointIntegrity: string; + javascriptEntrypointUrl: string; + localesBaseUrl: string; +} + +interface GraphqlResponseWrapper { + plugin: PluginInformationResult[]; +} + +interface IntlMessages { + loading: boolean; + messages: Record; + currentLocale: string; +} + +type UseLocaleMessagesFunction = (fetchConfigs?: RequestInit) => IntlMessages; + +export { + UseLocaleMessagesProps, + PluginInformationResult, + GraphqlResponseWrapper, + IntlMessages, + UseLocaleMessagesFunction, +}; diff --git a/src/core/auxiliary/plugin-information/locale-messages/useLocaleMessages.ts b/src/core/auxiliary/plugin-information/locale-messages/useLocaleMessages.ts new file mode 100644 index 00000000..7db70538 --- /dev/null +++ b/src/core/auxiliary/plugin-information/locale-messages/useLocaleMessages.ts @@ -0,0 +1,43 @@ +import * as React from 'react'; +import { IntlLocaleUiDataNames } from '../../../../ui-data-hooks'; +import { pluginLogger } from '../../../../utils'; +import { GraphqlResponseWrapper, IntlMessages, UseLocaleMessagesProps } from './types'; +import { GET_PLUGIN_INFORMATION } from './subscriptions'; + +function useLocaleMessagesAuxiliary( + { pluginApi, fetchConfigs }: UseLocaleMessagesProps, +): IntlMessages { + const currentLocale = pluginApi.useUiData!(IntlLocaleUiDataNames.CURRENT_LOCALE, { + locale: 'en', + fallbackLocale: 'en', + }); + + const [loading, setLoading] = React.useState(true); + const [messages, setMessages] = React.useState>({}); + + const { data: pluginInformation } = pluginApi.useCustomSubscription!( + GET_PLUGIN_INFORMATION, + ); + + React.useEffect(() => { + if (pluginInformation && pluginInformation.plugin && currentLocale.locale) { + const { localesBaseUrl } = pluginInformation.plugin[0]; + const { locale } = currentLocale; + const localeUrl = `${localesBaseUrl}/${locale}.json`; + fetch(localeUrl, fetchConfigs).then((result) => result.json()).then((localeMessages) => { + setLoading(false); + setMessages(localeMessages); + }).catch((err) => { + setLoading(false); + pluginLogger.error(`Something went wrong while trying to fetch ${localeUrl}: `, err); + }); + } + }, [pluginInformation, currentLocale]); + return { + messages, + loading, + currentLocale: currentLocale.locale, + }; +} + +export default useLocaleMessagesAuxiliary; diff --git a/src/data-consumption/domain/settings/plugin-settings/utils.ts b/src/data-consumption/domain/settings/plugin-settings/utils.ts index d6654f30..8586fd6d 100644 --- a/src/data-consumption/domain/settings/plugin-settings/utils.ts +++ b/src/data-consumption/domain/settings/plugin-settings/utils.ts @@ -5,7 +5,7 @@ export const filterPluginSpecificSettings = ( completeSettings: GraphqlResponseWrapper, ) => { const pluginSettings = completeSettings - .data?.meeting_clientPluginSettings[0].settings; + .data?.meeting_clientPluginSettings[0]?.settings; return { ...completeSettings, data: pluginSettings, From e513912f95dec14a810430e53c8ebd54b547d5ff Mon Sep 17 00:00:00 2001 From: Guilherme Leme Date: Tue, 11 Feb 2025 17:45:15 -0300 Subject: [PATCH 14/15] [locale-messages] - added documentation for useLocaleMessages --- README.md | 3 ++- src/core/api/types.ts | 6 ++++++ 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 6c562915..41d3ec29 100644 --- a/README.md +++ b/README.md @@ -188,10 +188,11 @@ That being said, here are the extensible areas we have so far: Mind that no plugin will interfere into another's extensible area. So feel free to set whatever you need into a certain plugin with no worries. -### Getters available through the API: +### Auxiliar functions: - `getSessionToken`: returns the user session token located on the user's URL. - `getJoinUrl`: returns the join url associated with the parameters passed as an argument. Since it fetches the BigBlueButton API, this getter method is asynchronous. +- `useLocaleMessages`: returns the messages to be used in internationalization functions (recommend to use `react-intl`, as example, refer to official plugins) ### Realtime data consumption diff --git a/src/core/api/types.ts b/src/core/api/types.ts index 13dcdfe9..e050e465 100644 --- a/src/core/api/types.ts +++ b/src/core/api/types.ts @@ -238,6 +238,12 @@ export interface PluginApi { // --- Auxiliary functions --- getSessionToken?: GetSessionTokenFunction; getJoinUrl?: GetJoinUrlFunction; + /** + * Return messages to be used in the internacionalization functions (react-intl is recommended) + * + * @param fetchConfigs - fetch configuration object for the locale files (otional, + * usefull in dev environments). + */ useLocaleMessages?: UseLocaleMessagesFunction /** * Send data to the Learning analytics dashboard From b4d0f08ad3b0bb3bfa39747a705e6c3af5f5f7b8 Mon Sep 17 00:00:00 2001 From: Tiago Daniel Jacobs Date: Mon, 17 Feb 2025 10:04:12 -0300 Subject: [PATCH 15/15] Bump version to 0.0.73 --- package-lock.json | 4 ++-- package.json | 2 +- .../package-lock.json | 14 +++++++------- .../package.json | 2 +- .../sample-actions-bar-plugin/package-lock.json | 8 ++++---- samples/sample-actions-bar-plugin/package.json | 2 +- .../package-lock.json | 14 +++++++------- .../package.json | 2 +- .../package-lock.json | 14 +++++++------- .../package.json | 2 +- .../package-lock.json | 14 +++++++------- .../sample-custom-subscription-hook/package.json | 2 +- .../sample-data-channel-plugin/package-lock.json | 14 +++++++------- samples/sample-data-channel-plugin/package.json | 2 +- .../package-lock.json | 14 +++++++------- .../sample-dom-element-manipulation/package.json | 2 +- .../package-lock.json | 14 +++++++------- samples/sample-floating-window-plugin/package.json | 2 +- .../package-lock.json | 8 ++++---- .../package.json | 2 +- samples/sample-nav-bar-plugin/package-lock.json | 14 +++++++------- samples/sample-nav-bar-plugin/package.json | 2 +- .../package-lock.json | 14 +++++++------- .../sample-options-dropdown-plugin/package.json | 2 +- .../package-lock.json | 14 +++++++------- .../package.json | 2 +- .../package-lock.json | 14 +++++++------- .../package.json | 2 +- .../package-lock.json | 8 ++++---- samples/sample-server-commands-plugin/package.json | 2 +- .../sample-ui-commands-plugin/package-lock.json | 14 +++++++------- samples/sample-ui-commands-plugin/package.json | 2 +- samples/sample-ui-events-plugin/package-lock.json | 14 +++++++------- samples/sample-ui-events-plugin/package.json | 2 +- samples/sample-use-meeting/package-lock.json | 14 +++++++------- samples/sample-use-meeting/package.json | 2 +- .../package-lock.json | 14 +++++++------- .../package.json | 2 +- .../package-lock.json | 14 +++++++------- .../sample-user-list-dropdown-plugin/package.json | 2 +- .../package-lock.json | 14 +++++++------- .../package.json | 2 +- 42 files changed, 154 insertions(+), 154 deletions(-) diff --git a/package-lock.json b/package-lock.json index 56c7d181..3e792968 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "bigbluebutton-html-plugin-sdk", - "version": "0.0.72", + "version": "0.0.73", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "bigbluebutton-html-plugin-sdk", - "version": "0.0.72", + "version": "0.0.73", "license": "LGPL-3.0", "dependencies": { "@apollo/client": "^3.8.7", diff --git a/package.json b/package.json index d320fed4..e38a846c 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "bigbluebutton-html-plugin-sdk", - "version": "0.0.72", + "version": "0.0.73", "homepage": "https://github.com/bigbluebutton/bigbluebutton-html-plugin-sdk", "main": "dist/cjs/index.js", "module": "dist/esm/index.js", diff --git a/samples/sample-action-button-dropdown-plugin/package-lock.json b/samples/sample-action-button-dropdown-plugin/package-lock.json index e19589e9..110ad5ee 100644 --- a/samples/sample-action-button-dropdown-plugin/package-lock.json +++ b/samples/sample-action-button-dropdown-plugin/package-lock.json @@ -14,7 +14,7 @@ "@types/react": "^18.2.13", "@types/react-dom": "^18.2.6", "babel-plugin-syntax-dynamic-import": "^6.18.0", - "bigbluebutton-html-plugin-sdk": "0.0.72", + "bigbluebutton-html-plugin-sdk": "0.0.73", "path": "^0.12.7", "react": "^18.2.0", "react-dom": "^18.2.0", @@ -3468,9 +3468,9 @@ "dev": true }, "node_modules/bigbluebutton-html-plugin-sdk": { - "version": "0.0.72", - "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.72.tgz", - "integrity": "sha512-Vme+u/EZGnHSV2iEc3XGUgI1T1ILxCIb4VJ1/gRDIjeNQNHLTKXAZ3JPBSlSqAhtvYFEeyqK5VcbPCxRVKB5Sw==", + "version": "0.0.73", + "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.73.tgz", + "integrity": "sha512-upf5Np45+F26qlad1ZUDJFFyAFyPHF3cU81jskEUq2VoEzUCX8zjBVvIsksut79Slz/B622UbX8blGTm+s7/lw==", "dependencies": { "@apollo/client": "^3.8.7", "@browser-bunyan/console-formatted-stream": "^1.8.0", @@ -12270,9 +12270,9 @@ "dev": true }, "bigbluebutton-html-plugin-sdk": { - "version": "0.0.72", - "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.72.tgz", - "integrity": "sha512-Vme+u/EZGnHSV2iEc3XGUgI1T1ILxCIb4VJ1/gRDIjeNQNHLTKXAZ3JPBSlSqAhtvYFEeyqK5VcbPCxRVKB5Sw==", + "version": "0.0.73", + "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.73.tgz", + "integrity": "sha512-upf5Np45+F26qlad1ZUDJFFyAFyPHF3cU81jskEUq2VoEzUCX8zjBVvIsksut79Slz/B622UbX8blGTm+s7/lw==", "requires": { "@apollo/client": "^3.8.7", "@browser-bunyan/console-formatted-stream": "^1.8.0", diff --git a/samples/sample-action-button-dropdown-plugin/package.json b/samples/sample-action-button-dropdown-plugin/package.json index 6cc91b20..7ccc2220 100644 --- a/samples/sample-action-button-dropdown-plugin/package.json +++ b/samples/sample-action-button-dropdown-plugin/package.json @@ -10,7 +10,7 @@ "@types/react": "^18.2.13", "@types/react-dom": "^18.2.6", "babel-plugin-syntax-dynamic-import": "^6.18.0", - "bigbluebutton-html-plugin-sdk": "0.0.72", + "bigbluebutton-html-plugin-sdk": "0.0.73", "path": "^0.12.7", "react": "^18.2.0", "react-dom": "^18.2.0", diff --git a/samples/sample-actions-bar-plugin/package-lock.json b/samples/sample-actions-bar-plugin/package-lock.json index d2954d63..f8f98a21 100644 --- a/samples/sample-actions-bar-plugin/package-lock.json +++ b/samples/sample-actions-bar-plugin/package-lock.json @@ -14,7 +14,7 @@ "@types/react": "^18.2.13", "@types/react-dom": "^18.2.6", "babel-plugin-syntax-dynamic-import": "^6.18.0", - "bigbluebutton-html-plugin-sdk": "0.0.72", + "bigbluebutton-html-plugin-sdk": "0.0.73", "path": "^0.12.7", "react": "^18.2.0", "react-dom": "^18.2.0", @@ -3635,9 +3635,9 @@ "dev": true }, "node_modules/bigbluebutton-html-plugin-sdk": { - "version": "0.0.72", - "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.72.tgz", - "integrity": "sha512-Vme+u/EZGnHSV2iEc3XGUgI1T1ILxCIb4VJ1/gRDIjeNQNHLTKXAZ3JPBSlSqAhtvYFEeyqK5VcbPCxRVKB5Sw==", + "version": "0.0.73", + "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.73.tgz", + "integrity": "sha512-upf5Np45+F26qlad1ZUDJFFyAFyPHF3cU81jskEUq2VoEzUCX8zjBVvIsksut79Slz/B622UbX8blGTm+s7/lw==", "dependencies": { "@apollo/client": "^3.8.7", "@browser-bunyan/console-formatted-stream": "^1.8.0", diff --git a/samples/sample-actions-bar-plugin/package.json b/samples/sample-actions-bar-plugin/package.json index d58170c8..a49dc07b 100644 --- a/samples/sample-actions-bar-plugin/package.json +++ b/samples/sample-actions-bar-plugin/package.json @@ -10,7 +10,7 @@ "@types/react": "^18.2.13", "@types/react-dom": "^18.2.6", "babel-plugin-syntax-dynamic-import": "^6.18.0", - "bigbluebutton-html-plugin-sdk": "0.0.72", + "bigbluebutton-html-plugin-sdk": "0.0.73", "path": "^0.12.7", "react": "^18.2.0", "react-dom": "^18.2.0", diff --git a/samples/sample-audio-settings-dropdown-plugin/package-lock.json b/samples/sample-audio-settings-dropdown-plugin/package-lock.json index df550853..019f1c81 100644 --- a/samples/sample-audio-settings-dropdown-plugin/package-lock.json +++ b/samples/sample-audio-settings-dropdown-plugin/package-lock.json @@ -14,7 +14,7 @@ "@types/react": "^18.2.13", "@types/react-dom": "^18.2.6", "babel-plugin-syntax-dynamic-import": "^6.18.0", - "bigbluebutton-html-plugin-sdk": "0.0.72", + "bigbluebutton-html-plugin-sdk": "0.0.73", "browser-bunyan": "^1.8.0", "path": "^0.12.7", "react": "^18.2.0", @@ -3409,9 +3409,9 @@ "dev": true }, "node_modules/bigbluebutton-html-plugin-sdk": { - "version": "0.0.72", - "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.72.tgz", - "integrity": "sha512-Vme+u/EZGnHSV2iEc3XGUgI1T1ILxCIb4VJ1/gRDIjeNQNHLTKXAZ3JPBSlSqAhtvYFEeyqK5VcbPCxRVKB5Sw==", + "version": "0.0.73", + "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.73.tgz", + "integrity": "sha512-upf5Np45+F26qlad1ZUDJFFyAFyPHF3cU81jskEUq2VoEzUCX8zjBVvIsksut79Slz/B622UbX8blGTm+s7/lw==", "dependencies": { "@apollo/client": "^3.8.7", "@browser-bunyan/console-formatted-stream": "^1.8.0", @@ -11675,9 +11675,9 @@ "dev": true }, "bigbluebutton-html-plugin-sdk": { - "version": "0.0.72", - "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.72.tgz", - "integrity": "sha512-Vme+u/EZGnHSV2iEc3XGUgI1T1ILxCIb4VJ1/gRDIjeNQNHLTKXAZ3JPBSlSqAhtvYFEeyqK5VcbPCxRVKB5Sw==", + "version": "0.0.73", + "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.73.tgz", + "integrity": "sha512-upf5Np45+F26qlad1ZUDJFFyAFyPHF3cU81jskEUq2VoEzUCX8zjBVvIsksut79Slz/B622UbX8blGTm+s7/lw==", "requires": { "@apollo/client": "^3.8.7", "@browser-bunyan/console-formatted-stream": "^1.8.0", diff --git a/samples/sample-audio-settings-dropdown-plugin/package.json b/samples/sample-audio-settings-dropdown-plugin/package.json index dc394204..41dbcf59 100644 --- a/samples/sample-audio-settings-dropdown-plugin/package.json +++ b/samples/sample-audio-settings-dropdown-plugin/package.json @@ -10,7 +10,7 @@ "@types/react": "^18.2.13", "@types/react-dom": "^18.2.6", "babel-plugin-syntax-dynamic-import": "^6.18.0", - "bigbluebutton-html-plugin-sdk": "0.0.72", + "bigbluebutton-html-plugin-sdk": "0.0.73", "browser-bunyan": "^1.8.0", "path": "^0.12.7", "react": "^18.2.0", diff --git a/samples/sample-camera-settings-dropdown-plugin/package-lock.json b/samples/sample-camera-settings-dropdown-plugin/package-lock.json index 40e59997..e05ed275 100644 --- a/samples/sample-camera-settings-dropdown-plugin/package-lock.json +++ b/samples/sample-camera-settings-dropdown-plugin/package-lock.json @@ -14,7 +14,7 @@ "@types/react": "^18.2.13", "@types/react-dom": "^18.2.6", "babel-plugin-syntax-dynamic-import": "^6.18.0", - "bigbluebutton-html-plugin-sdk": "0.0.72", + "bigbluebutton-html-plugin-sdk": "0.0.73", "path": "^0.12.7", "react": "^18.2.0", "react-dom": "^18.2.0", @@ -3408,9 +3408,9 @@ "dev": true }, "node_modules/bigbluebutton-html-plugin-sdk": { - "version": "0.0.72", - "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.72.tgz", - "integrity": "sha512-Vme+u/EZGnHSV2iEc3XGUgI1T1ILxCIb4VJ1/gRDIjeNQNHLTKXAZ3JPBSlSqAhtvYFEeyqK5VcbPCxRVKB5Sw==", + "version": "0.0.73", + "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.73.tgz", + "integrity": "sha512-upf5Np45+F26qlad1ZUDJFFyAFyPHF3cU81jskEUq2VoEzUCX8zjBVvIsksut79Slz/B622UbX8blGTm+s7/lw==", "dependencies": { "@apollo/client": "^3.8.7", "@browser-bunyan/console-formatted-stream": "^1.8.0", @@ -11674,9 +11674,9 @@ "dev": true }, "bigbluebutton-html-plugin-sdk": { - "version": "0.0.72", - "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.72.tgz", - "integrity": "sha512-Vme+u/EZGnHSV2iEc3XGUgI1T1ILxCIb4VJ1/gRDIjeNQNHLTKXAZ3JPBSlSqAhtvYFEeyqK5VcbPCxRVKB5Sw==", + "version": "0.0.73", + "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.73.tgz", + "integrity": "sha512-upf5Np45+F26qlad1ZUDJFFyAFyPHF3cU81jskEUq2VoEzUCX8zjBVvIsksut79Slz/B622UbX8blGTm+s7/lw==", "requires": { "@apollo/client": "^3.8.7", "@browser-bunyan/console-formatted-stream": "^1.8.0", diff --git a/samples/sample-camera-settings-dropdown-plugin/package.json b/samples/sample-camera-settings-dropdown-plugin/package.json index 6b43bdcc..ef25c61a 100644 --- a/samples/sample-camera-settings-dropdown-plugin/package.json +++ b/samples/sample-camera-settings-dropdown-plugin/package.json @@ -10,7 +10,7 @@ "@types/react": "^18.2.13", "@types/react-dom": "^18.2.6", "babel-plugin-syntax-dynamic-import": "^6.18.0", - "bigbluebutton-html-plugin-sdk": "0.0.72", + "bigbluebutton-html-plugin-sdk": "0.0.73", "path": "^0.12.7", "react": "^18.2.0", "react-dom": "^18.2.0", diff --git a/samples/sample-custom-subscription-hook/package-lock.json b/samples/sample-custom-subscription-hook/package-lock.json index f0c9a6d8..3ab86aa9 100644 --- a/samples/sample-custom-subscription-hook/package-lock.json +++ b/samples/sample-custom-subscription-hook/package-lock.json @@ -14,7 +14,7 @@ "@types/react": "^18.2.13", "@types/react-dom": "^18.2.6", "babel-plugin-syntax-dynamic-import": "^6.18.0", - "bigbluebutton-html-plugin-sdk": "0.0.72", + "bigbluebutton-html-plugin-sdk": "0.0.73", "path": "^0.12.7", "react": "^18.2.0", "react-dom": "^18.2.0", @@ -3408,9 +3408,9 @@ "dev": true }, "node_modules/bigbluebutton-html-plugin-sdk": { - "version": "0.0.72", - "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.72.tgz", - "integrity": "sha512-Vme+u/EZGnHSV2iEc3XGUgI1T1ILxCIb4VJ1/gRDIjeNQNHLTKXAZ3JPBSlSqAhtvYFEeyqK5VcbPCxRVKB5Sw==", + "version": "0.0.73", + "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.73.tgz", + "integrity": "sha512-upf5Np45+F26qlad1ZUDJFFyAFyPHF3cU81jskEUq2VoEzUCX8zjBVvIsksut79Slz/B622UbX8blGTm+s7/lw==", "dependencies": { "@apollo/client": "^3.8.7", "@browser-bunyan/console-formatted-stream": "^1.8.0", @@ -11674,9 +11674,9 @@ "dev": true }, "bigbluebutton-html-plugin-sdk": { - "version": "0.0.72", - "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.72.tgz", - "integrity": "sha512-Vme+u/EZGnHSV2iEc3XGUgI1T1ILxCIb4VJ1/gRDIjeNQNHLTKXAZ3JPBSlSqAhtvYFEeyqK5VcbPCxRVKB5Sw==", + "version": "0.0.73", + "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.73.tgz", + "integrity": "sha512-upf5Np45+F26qlad1ZUDJFFyAFyPHF3cU81jskEUq2VoEzUCX8zjBVvIsksut79Slz/B622UbX8blGTm+s7/lw==", "requires": { "@apollo/client": "^3.8.7", "@browser-bunyan/console-formatted-stream": "^1.8.0", diff --git a/samples/sample-custom-subscription-hook/package.json b/samples/sample-custom-subscription-hook/package.json index 269ed1ab..0673a321 100644 --- a/samples/sample-custom-subscription-hook/package.json +++ b/samples/sample-custom-subscription-hook/package.json @@ -10,7 +10,7 @@ "@types/react": "^18.2.13", "@types/react-dom": "^18.2.6", "babel-plugin-syntax-dynamic-import": "^6.18.0", - "bigbluebutton-html-plugin-sdk": "0.0.72", + "bigbluebutton-html-plugin-sdk": "0.0.73", "path": "^0.12.7", "react": "^18.2.0", "react-dom": "^18.2.0", diff --git a/samples/sample-data-channel-plugin/package-lock.json b/samples/sample-data-channel-plugin/package-lock.json index 958b7f6c..813436d8 100644 --- a/samples/sample-data-channel-plugin/package-lock.json +++ b/samples/sample-data-channel-plugin/package-lock.json @@ -14,7 +14,7 @@ "@types/react": "^18.2.13", "@types/react-dom": "^18.2.6", "babel-plugin-syntax-dynamic-import": "^6.18.0", - "bigbluebutton-html-plugin-sdk": "0.0.72", + "bigbluebutton-html-plugin-sdk": "0.0.73", "browser-bunyan": "^1.8.0", "path": "^0.12.7", "react": "^18.2.0", @@ -3416,9 +3416,9 @@ "dev": true }, "node_modules/bigbluebutton-html-plugin-sdk": { - "version": "0.0.72", - "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.72.tgz", - "integrity": "sha512-Vme+u/EZGnHSV2iEc3XGUgI1T1ILxCIb4VJ1/gRDIjeNQNHLTKXAZ3JPBSlSqAhtvYFEeyqK5VcbPCxRVKB5Sw==", + "version": "0.0.73", + "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.73.tgz", + "integrity": "sha512-upf5Np45+F26qlad1ZUDJFFyAFyPHF3cU81jskEUq2VoEzUCX8zjBVvIsksut79Slz/B622UbX8blGTm+s7/lw==", "dependencies": { "@apollo/client": "^3.8.7", "@browser-bunyan/console-formatted-stream": "^1.8.0", @@ -11693,9 +11693,9 @@ "dev": true }, "bigbluebutton-html-plugin-sdk": { - "version": "0.0.72", - "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.72.tgz", - "integrity": "sha512-Vme+u/EZGnHSV2iEc3XGUgI1T1ILxCIb4VJ1/gRDIjeNQNHLTKXAZ3JPBSlSqAhtvYFEeyqK5VcbPCxRVKB5Sw==", + "version": "0.0.73", + "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.73.tgz", + "integrity": "sha512-upf5Np45+F26qlad1ZUDJFFyAFyPHF3cU81jskEUq2VoEzUCX8zjBVvIsksut79Slz/B622UbX8blGTm+s7/lw==", "requires": { "@apollo/client": "^3.8.7", "@browser-bunyan/console-formatted-stream": "^1.8.0", diff --git a/samples/sample-data-channel-plugin/package.json b/samples/sample-data-channel-plugin/package.json index 554be2fa..b0ff6781 100644 --- a/samples/sample-data-channel-plugin/package.json +++ b/samples/sample-data-channel-plugin/package.json @@ -10,7 +10,7 @@ "@types/react": "^18.2.13", "@types/react-dom": "^18.2.6", "babel-plugin-syntax-dynamic-import": "^6.18.0", - "bigbluebutton-html-plugin-sdk": "0.0.72", + "bigbluebutton-html-plugin-sdk": "0.0.73", "path": "^0.12.7", "browser-bunyan": "^1.8.0", "react": "^18.2.0", diff --git a/samples/sample-dom-element-manipulation/package-lock.json b/samples/sample-dom-element-manipulation/package-lock.json index 6de8584a..ebf95bfc 100644 --- a/samples/sample-dom-element-manipulation/package-lock.json +++ b/samples/sample-dom-element-manipulation/package-lock.json @@ -14,7 +14,7 @@ "@types/react": "^18.2.13", "@types/react-dom": "^18.2.6", "babel-plugin-syntax-dynamic-import": "^6.18.0", - "bigbluebutton-html-plugin-sdk": "0.0.72", + "bigbluebutton-html-plugin-sdk": "0.0.73", "path": "^0.12.7", "react": "^18.2.0", "react-dom": "^18.2.0", @@ -3415,9 +3415,9 @@ "dev": true }, "node_modules/bigbluebutton-html-plugin-sdk": { - "version": "0.0.72", - "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.72.tgz", - "integrity": "sha512-Vme+u/EZGnHSV2iEc3XGUgI1T1ILxCIb4VJ1/gRDIjeNQNHLTKXAZ3JPBSlSqAhtvYFEeyqK5VcbPCxRVKB5Sw==", + "version": "0.0.73", + "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.73.tgz", + "integrity": "sha512-upf5Np45+F26qlad1ZUDJFFyAFyPHF3cU81jskEUq2VoEzUCX8zjBVvIsksut79Slz/B622UbX8blGTm+s7/lw==", "dependencies": { "@apollo/client": "^3.8.7", "@browser-bunyan/console-formatted-stream": "^1.8.0", @@ -11692,9 +11692,9 @@ "dev": true }, "bigbluebutton-html-plugin-sdk": { - "version": "0.0.72", - "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.72.tgz", - "integrity": "sha512-Vme+u/EZGnHSV2iEc3XGUgI1T1ILxCIb4VJ1/gRDIjeNQNHLTKXAZ3JPBSlSqAhtvYFEeyqK5VcbPCxRVKB5Sw==", + "version": "0.0.73", + "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.73.tgz", + "integrity": "sha512-upf5Np45+F26qlad1ZUDJFFyAFyPHF3cU81jskEUq2VoEzUCX8zjBVvIsksut79Slz/B622UbX8blGTm+s7/lw==", "requires": { "@apollo/client": "^3.8.7", "@browser-bunyan/console-formatted-stream": "^1.8.0", diff --git a/samples/sample-dom-element-manipulation/package.json b/samples/sample-dom-element-manipulation/package.json index 7ec91f66..1b48ffc0 100644 --- a/samples/sample-dom-element-manipulation/package.json +++ b/samples/sample-dom-element-manipulation/package.json @@ -10,7 +10,7 @@ "@types/react": "^18.2.13", "@types/react-dom": "^18.2.6", "babel-plugin-syntax-dynamic-import": "^6.18.0", - "bigbluebutton-html-plugin-sdk": "0.0.72", + "bigbluebutton-html-plugin-sdk": "0.0.73", "path": "^0.12.7", "react": "^18.2.0", "react-dom": "^18.2.0", diff --git a/samples/sample-floating-window-plugin/package-lock.json b/samples/sample-floating-window-plugin/package-lock.json index 242b716b..40ae7232 100644 --- a/samples/sample-floating-window-plugin/package-lock.json +++ b/samples/sample-floating-window-plugin/package-lock.json @@ -14,7 +14,7 @@ "@types/react": "^18.2.13", "@types/react-dom": "^18.2.6", "babel-plugin-syntax-dynamic-import": "^6.18.0", - "bigbluebutton-html-plugin-sdk": "0.0.72", + "bigbluebutton-html-plugin-sdk": "0.0.73", "path": "^0.12.7", "react": "^18.2.0", "react-dom": "^18.2.0", @@ -3464,9 +3464,9 @@ "dev": true }, "node_modules/bigbluebutton-html-plugin-sdk": { - "version": "0.0.72", - "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.72.tgz", - "integrity": "sha512-Vme+u/EZGnHSV2iEc3XGUgI1T1ILxCIb4VJ1/gRDIjeNQNHLTKXAZ3JPBSlSqAhtvYFEeyqK5VcbPCxRVKB5Sw==", + "version": "0.0.73", + "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.73.tgz", + "integrity": "sha512-upf5Np45+F26qlad1ZUDJFFyAFyPHF3cU81jskEUq2VoEzUCX8zjBVvIsksut79Slz/B622UbX8blGTm+s7/lw==", "dependencies": { "@apollo/client": "^3.8.7", "@browser-bunyan/console-formatted-stream": "^1.8.0", @@ -11821,9 +11821,9 @@ "dev": true }, "bigbluebutton-html-plugin-sdk": { - "version": "0.0.72", - "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.72.tgz", - "integrity": "sha512-Vme+u/EZGnHSV2iEc3XGUgI1T1ILxCIb4VJ1/gRDIjeNQNHLTKXAZ3JPBSlSqAhtvYFEeyqK5VcbPCxRVKB5Sw==", + "version": "0.0.73", + "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.73.tgz", + "integrity": "sha512-upf5Np45+F26qlad1ZUDJFFyAFyPHF3cU81jskEUq2VoEzUCX8zjBVvIsksut79Slz/B622UbX8blGTm+s7/lw==", "requires": { "@apollo/client": "^3.8.7", "@browser-bunyan/console-formatted-stream": "^1.8.0", diff --git a/samples/sample-floating-window-plugin/package.json b/samples/sample-floating-window-plugin/package.json index 4162bac1..4971046b 100644 --- a/samples/sample-floating-window-plugin/package.json +++ b/samples/sample-floating-window-plugin/package.json @@ -10,7 +10,7 @@ "@types/react": "^18.2.13", "@types/react-dom": "^18.2.6", "babel-plugin-syntax-dynamic-import": "^6.18.0", - "bigbluebutton-html-plugin-sdk": "0.0.72", + "bigbluebutton-html-plugin-sdk": "0.0.73", "path": "^0.12.7", "react": "^18.2.0", "react-dom": "^18.2.0", diff --git a/samples/sample-generic-content-sidekick-plugin/package-lock.json b/samples/sample-generic-content-sidekick-plugin/package-lock.json index 3ac2281b..bc0630ee 100644 --- a/samples/sample-generic-content-sidekick-plugin/package-lock.json +++ b/samples/sample-generic-content-sidekick-plugin/package-lock.json @@ -14,7 +14,7 @@ "@types/react": "^18.2.13", "@types/react-dom": "^18.2.6", "babel-plugin-syntax-dynamic-import": "^6.18.0", - "bigbluebutton-html-plugin-sdk": "0.0.72", + "bigbluebutton-html-plugin-sdk": "0.0.73", "react": "^18.2.0", "react-dom": "^18.2.0" }, @@ -3620,9 +3620,9 @@ "dev": true }, "node_modules/bigbluebutton-html-plugin-sdk": { - "version": "0.0.72", - "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.72.tgz", - "integrity": "sha512-Vme+u/EZGnHSV2iEc3XGUgI1T1ILxCIb4VJ1/gRDIjeNQNHLTKXAZ3JPBSlSqAhtvYFEeyqK5VcbPCxRVKB5Sw==", + "version": "0.0.73", + "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.73.tgz", + "integrity": "sha512-upf5Np45+F26qlad1ZUDJFFyAFyPHF3cU81jskEUq2VoEzUCX8zjBVvIsksut79Slz/B622UbX8blGTm+s7/lw==", "dependencies": { "@apollo/client": "^3.8.7", "@browser-bunyan/console-formatted-stream": "^1.8.0", diff --git a/samples/sample-generic-content-sidekick-plugin/package.json b/samples/sample-generic-content-sidekick-plugin/package.json index 5490d251..96fbcbee 100644 --- a/samples/sample-generic-content-sidekick-plugin/package.json +++ b/samples/sample-generic-content-sidekick-plugin/package.json @@ -10,7 +10,7 @@ "@types/react": "^18.2.13", "@types/react-dom": "^18.2.6", "babel-plugin-syntax-dynamic-import": "^6.18.0", - "bigbluebutton-html-plugin-sdk": "0.0.72", + "bigbluebutton-html-plugin-sdk": "0.0.73", "react": "^18.2.0", "react-dom": "^18.2.0" }, diff --git a/samples/sample-nav-bar-plugin/package-lock.json b/samples/sample-nav-bar-plugin/package-lock.json index 1e52ab73..8d7a9896 100644 --- a/samples/sample-nav-bar-plugin/package-lock.json +++ b/samples/sample-nav-bar-plugin/package-lock.json @@ -14,7 +14,7 @@ "@types/react": "^18.2.13", "@types/react-dom": "^18.2.6", "babel-plugin-syntax-dynamic-import": "^6.18.0", - "bigbluebutton-html-plugin-sdk": "0.0.72", + "bigbluebutton-html-plugin-sdk": "0.0.73", "browser-bunyan": "^1.8.0", "path": "^0.12.7", "react": "^18.2.0", @@ -3416,9 +3416,9 @@ "dev": true }, "node_modules/bigbluebutton-html-plugin-sdk": { - "version": "0.0.72", - "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.72.tgz", - "integrity": "sha512-Vme+u/EZGnHSV2iEc3XGUgI1T1ILxCIb4VJ1/gRDIjeNQNHLTKXAZ3JPBSlSqAhtvYFEeyqK5VcbPCxRVKB5Sw==", + "version": "0.0.73", + "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.73.tgz", + "integrity": "sha512-upf5Np45+F26qlad1ZUDJFFyAFyPHF3cU81jskEUq2VoEzUCX8zjBVvIsksut79Slz/B622UbX8blGTm+s7/lw==", "dependencies": { "@apollo/client": "^3.8.7", "@browser-bunyan/console-formatted-stream": "^1.8.0", @@ -11693,9 +11693,9 @@ "dev": true }, "bigbluebutton-html-plugin-sdk": { - "version": "0.0.72", - "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.72.tgz", - "integrity": "sha512-Vme+u/EZGnHSV2iEc3XGUgI1T1ILxCIb4VJ1/gRDIjeNQNHLTKXAZ3JPBSlSqAhtvYFEeyqK5VcbPCxRVKB5Sw==", + "version": "0.0.73", + "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.73.tgz", + "integrity": "sha512-upf5Np45+F26qlad1ZUDJFFyAFyPHF3cU81jskEUq2VoEzUCX8zjBVvIsksut79Slz/B622UbX8blGTm+s7/lw==", "requires": { "@apollo/client": "^3.8.7", "@browser-bunyan/console-formatted-stream": "^1.8.0", diff --git a/samples/sample-nav-bar-plugin/package.json b/samples/sample-nav-bar-plugin/package.json index 403ef16b..a6f24272 100644 --- a/samples/sample-nav-bar-plugin/package.json +++ b/samples/sample-nav-bar-plugin/package.json @@ -10,7 +10,7 @@ "@types/react": "^18.2.13", "@types/react-dom": "^18.2.6", "babel-plugin-syntax-dynamic-import": "^6.18.0", - "bigbluebutton-html-plugin-sdk": "0.0.72", + "bigbluebutton-html-plugin-sdk": "0.0.73", "path": "^0.12.7", "browser-bunyan": "^1.8.0", "react": "^18.2.0", diff --git a/samples/sample-options-dropdown-plugin/package-lock.json b/samples/sample-options-dropdown-plugin/package-lock.json index ad68e4e0..095aa165 100644 --- a/samples/sample-options-dropdown-plugin/package-lock.json +++ b/samples/sample-options-dropdown-plugin/package-lock.json @@ -14,7 +14,7 @@ "@types/react": "^18.2.13", "@types/react-dom": "^18.2.6", "babel-plugin-syntax-dynamic-import": "^6.18.0", - "bigbluebutton-html-plugin-sdk": "0.0.72", + "bigbluebutton-html-plugin-sdk": "0.0.73", "browser-bunyan": "^1.8.0", "path": "^0.12.7", "react": "^18.2.0", @@ -3416,9 +3416,9 @@ "dev": true }, "node_modules/bigbluebutton-html-plugin-sdk": { - "version": "0.0.72", - "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.72.tgz", - "integrity": "sha512-Vme+u/EZGnHSV2iEc3XGUgI1T1ILxCIb4VJ1/gRDIjeNQNHLTKXAZ3JPBSlSqAhtvYFEeyqK5VcbPCxRVKB5Sw==", + "version": "0.0.73", + "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.73.tgz", + "integrity": "sha512-upf5Np45+F26qlad1ZUDJFFyAFyPHF3cU81jskEUq2VoEzUCX8zjBVvIsksut79Slz/B622UbX8blGTm+s7/lw==", "dependencies": { "@apollo/client": "^3.8.7", "@browser-bunyan/console-formatted-stream": "^1.8.0", @@ -11693,9 +11693,9 @@ "dev": true }, "bigbluebutton-html-plugin-sdk": { - "version": "0.0.72", - "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.72.tgz", - "integrity": "sha512-Vme+u/EZGnHSV2iEc3XGUgI1T1ILxCIb4VJ1/gRDIjeNQNHLTKXAZ3JPBSlSqAhtvYFEeyqK5VcbPCxRVKB5Sw==", + "version": "0.0.73", + "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.73.tgz", + "integrity": "sha512-upf5Np45+F26qlad1ZUDJFFyAFyPHF3cU81jskEUq2VoEzUCX8zjBVvIsksut79Slz/B622UbX8blGTm+s7/lw==", "requires": { "@apollo/client": "^3.8.7", "@browser-bunyan/console-formatted-stream": "^1.8.0", diff --git a/samples/sample-options-dropdown-plugin/package.json b/samples/sample-options-dropdown-plugin/package.json index 4c4f94c4..a543e404 100644 --- a/samples/sample-options-dropdown-plugin/package.json +++ b/samples/sample-options-dropdown-plugin/package.json @@ -10,7 +10,7 @@ "@types/react": "^18.2.13", "@types/react-dom": "^18.2.6", "babel-plugin-syntax-dynamic-import": "^6.18.0", - "bigbluebutton-html-plugin-sdk": "0.0.72", + "bigbluebutton-html-plugin-sdk": "0.0.73", "path": "^0.12.7", "browser-bunyan": "^1.8.0", "react": "^18.2.0", diff --git a/samples/sample-presentation-dropdown-plugin/package-lock.json b/samples/sample-presentation-dropdown-plugin/package-lock.json index b2ad356a..bc7162ca 100644 --- a/samples/sample-presentation-dropdown-plugin/package-lock.json +++ b/samples/sample-presentation-dropdown-plugin/package-lock.json @@ -14,7 +14,7 @@ "@types/react": "^18.2.13", "@types/react-dom": "^18.2.6", "babel-plugin-syntax-dynamic-import": "^6.18.0", - "bigbluebutton-html-plugin-sdk": "0.0.72", + "bigbluebutton-html-plugin-sdk": "0.0.73", "path": "^0.12.7", "react": "^18.2.0", "react-dom": "^18.2.0", @@ -3415,9 +3415,9 @@ "dev": true }, "node_modules/bigbluebutton-html-plugin-sdk": { - "version": "0.0.72", - "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.72.tgz", - "integrity": "sha512-Vme+u/EZGnHSV2iEc3XGUgI1T1ILxCIb4VJ1/gRDIjeNQNHLTKXAZ3JPBSlSqAhtvYFEeyqK5VcbPCxRVKB5Sw==", + "version": "0.0.73", + "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.73.tgz", + "integrity": "sha512-upf5Np45+F26qlad1ZUDJFFyAFyPHF3cU81jskEUq2VoEzUCX8zjBVvIsksut79Slz/B622UbX8blGTm+s7/lw==", "dependencies": { "@apollo/client": "^3.8.7", "@browser-bunyan/console-formatted-stream": "^1.8.0", @@ -11692,9 +11692,9 @@ "dev": true }, "bigbluebutton-html-plugin-sdk": { - "version": "0.0.72", - "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.72.tgz", - "integrity": "sha512-Vme+u/EZGnHSV2iEc3XGUgI1T1ILxCIb4VJ1/gRDIjeNQNHLTKXAZ3JPBSlSqAhtvYFEeyqK5VcbPCxRVKB5Sw==", + "version": "0.0.73", + "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.73.tgz", + "integrity": "sha512-upf5Np45+F26qlad1ZUDJFFyAFyPHF3cU81jskEUq2VoEzUCX8zjBVvIsksut79Slz/B622UbX8blGTm+s7/lw==", "requires": { "@apollo/client": "^3.8.7", "@browser-bunyan/console-formatted-stream": "^1.8.0", diff --git a/samples/sample-presentation-dropdown-plugin/package.json b/samples/sample-presentation-dropdown-plugin/package.json index 73b0678c..f9d9c0ab 100644 --- a/samples/sample-presentation-dropdown-plugin/package.json +++ b/samples/sample-presentation-dropdown-plugin/package.json @@ -10,7 +10,7 @@ "@types/react": "^18.2.13", "@types/react-dom": "^18.2.6", "babel-plugin-syntax-dynamic-import": "^6.18.0", - "bigbluebutton-html-plugin-sdk": "0.0.72", + "bigbluebutton-html-plugin-sdk": "0.0.73", "path": "^0.12.7", "react": "^18.2.0", "react-dom": "^18.2.0", diff --git a/samples/sample-presentation-toolbar-plugin/package-lock.json b/samples/sample-presentation-toolbar-plugin/package-lock.json index a4bfa4bc..c907afc2 100644 --- a/samples/sample-presentation-toolbar-plugin/package-lock.json +++ b/samples/sample-presentation-toolbar-plugin/package-lock.json @@ -14,7 +14,7 @@ "@types/react": "^18.2.13", "@types/react-dom": "^18.2.6", "babel-plugin-syntax-dynamic-import": "^6.18.0", - "bigbluebutton-html-plugin-sdk": "0.0.72", + "bigbluebutton-html-plugin-sdk": "0.0.73", "path": "^0.12.7", "react": "^18.2.0", "react-dom": "^18.2.0", @@ -3415,9 +3415,9 @@ "dev": true }, "node_modules/bigbluebutton-html-plugin-sdk": { - "version": "0.0.72", - "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.72.tgz", - "integrity": "sha512-Vme+u/EZGnHSV2iEc3XGUgI1T1ILxCIb4VJ1/gRDIjeNQNHLTKXAZ3JPBSlSqAhtvYFEeyqK5VcbPCxRVKB5Sw==", + "version": "0.0.73", + "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.73.tgz", + "integrity": "sha512-upf5Np45+F26qlad1ZUDJFFyAFyPHF3cU81jskEUq2VoEzUCX8zjBVvIsksut79Slz/B622UbX8blGTm+s7/lw==", "dependencies": { "@apollo/client": "^3.8.7", "@browser-bunyan/console-formatted-stream": "^1.8.0", @@ -11692,9 +11692,9 @@ "dev": true }, "bigbluebutton-html-plugin-sdk": { - "version": "0.0.72", - "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.72.tgz", - "integrity": "sha512-Vme+u/EZGnHSV2iEc3XGUgI1T1ILxCIb4VJ1/gRDIjeNQNHLTKXAZ3JPBSlSqAhtvYFEeyqK5VcbPCxRVKB5Sw==", + "version": "0.0.73", + "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.73.tgz", + "integrity": "sha512-upf5Np45+F26qlad1ZUDJFFyAFyPHF3cU81jskEUq2VoEzUCX8zjBVvIsksut79Slz/B622UbX8blGTm+s7/lw==", "requires": { "@apollo/client": "^3.8.7", "@browser-bunyan/console-formatted-stream": "^1.8.0", diff --git a/samples/sample-presentation-toolbar-plugin/package.json b/samples/sample-presentation-toolbar-plugin/package.json index ecb32fcf..dec6d42b 100644 --- a/samples/sample-presentation-toolbar-plugin/package.json +++ b/samples/sample-presentation-toolbar-plugin/package.json @@ -10,7 +10,7 @@ "@types/react": "^18.2.13", "@types/react-dom": "^18.2.6", "babel-plugin-syntax-dynamic-import": "^6.18.0", - "bigbluebutton-html-plugin-sdk": "0.0.72", + "bigbluebutton-html-plugin-sdk": "0.0.73", "path": "^0.12.7", "react": "^18.2.0", "react-dom": "^18.2.0", diff --git a/samples/sample-server-commands-plugin/package-lock.json b/samples/sample-server-commands-plugin/package-lock.json index 00730ee0..99511916 100644 --- a/samples/sample-server-commands-plugin/package-lock.json +++ b/samples/sample-server-commands-plugin/package-lock.json @@ -14,7 +14,7 @@ "@types/react": "^18.2.13", "@types/react-dom": "^18.2.6", "babel-plugin-syntax-dynamic-import": "^6.18.0", - "bigbluebutton-html-plugin-sdk": "0.0.72", + "bigbluebutton-html-plugin-sdk": "0.0.73", "path": "^0.12.7", "react": "^18.2.0", "react-dom": "^18.2.0", @@ -3457,9 +3457,9 @@ "dev": true }, "node_modules/bigbluebutton-html-plugin-sdk": { - "version": "0.0.72", - "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.72.tgz", - "integrity": "sha512-Vme+u/EZGnHSV2iEc3XGUgI1T1ILxCIb4VJ1/gRDIjeNQNHLTKXAZ3JPBSlSqAhtvYFEeyqK5VcbPCxRVKB5Sw==", + "version": "0.0.73", + "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.73.tgz", + "integrity": "sha512-upf5Np45+F26qlad1ZUDJFFyAFyPHF3cU81jskEUq2VoEzUCX8zjBVvIsksut79Slz/B622UbX8blGTm+s7/lw==", "dependencies": { "@apollo/client": "^3.8.7", "@browser-bunyan/console-formatted-stream": "^1.8.0", diff --git a/samples/sample-server-commands-plugin/package.json b/samples/sample-server-commands-plugin/package.json index feef0e0d..28a0fe2f 100644 --- a/samples/sample-server-commands-plugin/package.json +++ b/samples/sample-server-commands-plugin/package.json @@ -10,7 +10,7 @@ "@types/react": "^18.2.13", "@types/react-dom": "^18.2.6", "babel-plugin-syntax-dynamic-import": "^6.18.0", - "bigbluebutton-html-plugin-sdk": "0.0.72", + "bigbluebutton-html-plugin-sdk": "0.0.73", "path": "^0.12.7", "react": "^18.2.0", "react-dom": "^18.2.0", diff --git a/samples/sample-ui-commands-plugin/package-lock.json b/samples/sample-ui-commands-plugin/package-lock.json index 6b96d1ad..f666a1d2 100644 --- a/samples/sample-ui-commands-plugin/package-lock.json +++ b/samples/sample-ui-commands-plugin/package-lock.json @@ -14,7 +14,7 @@ "@types/react": "^18.2.13", "@types/react-dom": "^18.2.6", "babel-plugin-syntax-dynamic-import": "^6.18.0", - "bigbluebutton-html-plugin-sdk": "0.0.72", + "bigbluebutton-html-plugin-sdk": "0.0.73", "path": "^0.12.7", "react": "^18.2.0", "react-dom": "^18.2.0", @@ -3425,9 +3425,9 @@ "dev": true }, "node_modules/bigbluebutton-html-plugin-sdk": { - "version": "0.0.72", - "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.72.tgz", - "integrity": "sha512-Vme+u/EZGnHSV2iEc3XGUgI1T1ILxCIb4VJ1/gRDIjeNQNHLTKXAZ3JPBSlSqAhtvYFEeyqK5VcbPCxRVKB5Sw==", + "version": "0.0.73", + "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.73.tgz", + "integrity": "sha512-upf5Np45+F26qlad1ZUDJFFyAFyPHF3cU81jskEUq2VoEzUCX8zjBVvIsksut79Slz/B622UbX8blGTm+s7/lw==", "dependencies": { "@apollo/client": "^3.8.7", "@browser-bunyan/console-formatted-stream": "^1.8.0", @@ -11721,9 +11721,9 @@ "dev": true }, "bigbluebutton-html-plugin-sdk": { - "version": "0.0.72", - "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.72.tgz", - "integrity": "sha512-Vme+u/EZGnHSV2iEc3XGUgI1T1ILxCIb4VJ1/gRDIjeNQNHLTKXAZ3JPBSlSqAhtvYFEeyqK5VcbPCxRVKB5Sw==", + "version": "0.0.73", + "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.73.tgz", + "integrity": "sha512-upf5Np45+F26qlad1ZUDJFFyAFyPHF3cU81jskEUq2VoEzUCX8zjBVvIsksut79Slz/B622UbX8blGTm+s7/lw==", "requires": { "@apollo/client": "^3.8.7", "@browser-bunyan/console-formatted-stream": "^1.8.0", diff --git a/samples/sample-ui-commands-plugin/package.json b/samples/sample-ui-commands-plugin/package.json index 98aad72e..dc020560 100644 --- a/samples/sample-ui-commands-plugin/package.json +++ b/samples/sample-ui-commands-plugin/package.json @@ -10,7 +10,7 @@ "@types/react": "^18.2.13", "@types/react-dom": "^18.2.6", "babel-plugin-syntax-dynamic-import": "^6.18.0", - "bigbluebutton-html-plugin-sdk": "0.0.72", + "bigbluebutton-html-plugin-sdk": "0.0.73", "path": "^0.12.7", "react": "^18.2.0", "react-dom": "^18.2.0", diff --git a/samples/sample-ui-events-plugin/package-lock.json b/samples/sample-ui-events-plugin/package-lock.json index a6520804..d85f9dc2 100644 --- a/samples/sample-ui-events-plugin/package-lock.json +++ b/samples/sample-ui-events-plugin/package-lock.json @@ -14,7 +14,7 @@ "@types/react": "^18.2.13", "@types/react-dom": "^18.2.6", "babel-plugin-syntax-dynamic-import": "^6.18.0", - "bigbluebutton-html-plugin-sdk": "0.0.72", + "bigbluebutton-html-plugin-sdk": "0.0.73", "path": "^0.12.7", "react": "^18.2.0", "react-dom": "^18.2.0", @@ -3425,9 +3425,9 @@ "dev": true }, "node_modules/bigbluebutton-html-plugin-sdk": { - "version": "0.0.72", - "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.72.tgz", - "integrity": "sha512-Vme+u/EZGnHSV2iEc3XGUgI1T1ILxCIb4VJ1/gRDIjeNQNHLTKXAZ3JPBSlSqAhtvYFEeyqK5VcbPCxRVKB5Sw==", + "version": "0.0.73", + "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.73.tgz", + "integrity": "sha512-upf5Np45+F26qlad1ZUDJFFyAFyPHF3cU81jskEUq2VoEzUCX8zjBVvIsksut79Slz/B622UbX8blGTm+s7/lw==", "dependencies": { "@apollo/client": "^3.8.7", "@browser-bunyan/console-formatted-stream": "^1.8.0", @@ -11721,9 +11721,9 @@ "dev": true }, "bigbluebutton-html-plugin-sdk": { - "version": "0.0.72", - "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.72.tgz", - "integrity": "sha512-Vme+u/EZGnHSV2iEc3XGUgI1T1ILxCIb4VJ1/gRDIjeNQNHLTKXAZ3JPBSlSqAhtvYFEeyqK5VcbPCxRVKB5Sw==", + "version": "0.0.73", + "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.73.tgz", + "integrity": "sha512-upf5Np45+F26qlad1ZUDJFFyAFyPHF3cU81jskEUq2VoEzUCX8zjBVvIsksut79Slz/B622UbX8blGTm+s7/lw==", "requires": { "@apollo/client": "^3.8.7", "@browser-bunyan/console-formatted-stream": "^1.8.0", diff --git a/samples/sample-ui-events-plugin/package.json b/samples/sample-ui-events-plugin/package.json index 63d4995a..5a50044d 100644 --- a/samples/sample-ui-events-plugin/package.json +++ b/samples/sample-ui-events-plugin/package.json @@ -10,7 +10,7 @@ "@types/react": "^18.2.13", "@types/react-dom": "^18.2.6", "babel-plugin-syntax-dynamic-import": "^6.18.0", - "bigbluebutton-html-plugin-sdk": "0.0.72", + "bigbluebutton-html-plugin-sdk": "0.0.73", "path": "^0.12.7", "react": "^18.2.0", "react-dom": "^18.2.0", diff --git a/samples/sample-use-meeting/package-lock.json b/samples/sample-use-meeting/package-lock.json index 40badc69..5dcdcd28 100644 --- a/samples/sample-use-meeting/package-lock.json +++ b/samples/sample-use-meeting/package-lock.json @@ -14,7 +14,7 @@ "@types/react": "^18.2.13", "@types/react-dom": "^18.2.6", "babel-plugin-syntax-dynamic-import": "^6.18.0", - "bigbluebutton-html-plugin-sdk": "0.0.72", + "bigbluebutton-html-plugin-sdk": "0.0.73", "path": "^0.12.7", "react": "^18.2.0", "react-dom": "^18.2.0", @@ -3425,9 +3425,9 @@ "dev": true }, "node_modules/bigbluebutton-html-plugin-sdk": { - "version": "0.0.72", - "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.72.tgz", - "integrity": "sha512-Vme+u/EZGnHSV2iEc3XGUgI1T1ILxCIb4VJ1/gRDIjeNQNHLTKXAZ3JPBSlSqAhtvYFEeyqK5VcbPCxRVKB5Sw==", + "version": "0.0.73", + "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.73.tgz", + "integrity": "sha512-upf5Np45+F26qlad1ZUDJFFyAFyPHF3cU81jskEUq2VoEzUCX8zjBVvIsksut79Slz/B622UbX8blGTm+s7/lw==", "dependencies": { "@apollo/client": "^3.8.7", "@browser-bunyan/console-formatted-stream": "^1.8.0", @@ -11721,9 +11721,9 @@ "dev": true }, "bigbluebutton-html-plugin-sdk": { - "version": "0.0.72", - "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.72.tgz", - "integrity": "sha512-Vme+u/EZGnHSV2iEc3XGUgI1T1ILxCIb4VJ1/gRDIjeNQNHLTKXAZ3JPBSlSqAhtvYFEeyqK5VcbPCxRVKB5Sw==", + "version": "0.0.73", + "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.73.tgz", + "integrity": "sha512-upf5Np45+F26qlad1ZUDJFFyAFyPHF3cU81jskEUq2VoEzUCX8zjBVvIsksut79Slz/B622UbX8blGTm+s7/lw==", "requires": { "@apollo/client": "^3.8.7", "@browser-bunyan/console-formatted-stream": "^1.8.0", diff --git a/samples/sample-use-meeting/package.json b/samples/sample-use-meeting/package.json index 461eb776..59675494 100644 --- a/samples/sample-use-meeting/package.json +++ b/samples/sample-use-meeting/package.json @@ -10,7 +10,7 @@ "@types/react": "^18.2.13", "@types/react-dom": "^18.2.6", "babel-plugin-syntax-dynamic-import": "^6.18.0", - "bigbluebutton-html-plugin-sdk": "0.0.72", + "bigbluebutton-html-plugin-sdk": "0.0.73", "path": "^0.12.7", "react": "^18.2.0", "react-dom": "^18.2.0", diff --git a/samples/sample-user-camera-dropdown-plugin/package-lock.json b/samples/sample-user-camera-dropdown-plugin/package-lock.json index 0d8e0c07..a588a0fa 100644 --- a/samples/sample-user-camera-dropdown-plugin/package-lock.json +++ b/samples/sample-user-camera-dropdown-plugin/package-lock.json @@ -14,7 +14,7 @@ "@types/react": "^18.2.13", "@types/react-dom": "^18.2.6", "babel-plugin-syntax-dynamic-import": "^6.18.0", - "bigbluebutton-html-plugin-sdk": "0.0.72", + "bigbluebutton-html-plugin-sdk": "0.0.73", "path": "^0.12.7", "react": "^18.2.0", "react-dom": "^18.2.0", @@ -3415,9 +3415,9 @@ "dev": true }, "node_modules/bigbluebutton-html-plugin-sdk": { - "version": "0.0.72", - "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.72.tgz", - "integrity": "sha512-Vme+u/EZGnHSV2iEc3XGUgI1T1ILxCIb4VJ1/gRDIjeNQNHLTKXAZ3JPBSlSqAhtvYFEeyqK5VcbPCxRVKB5Sw==", + "version": "0.0.73", + "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.73.tgz", + "integrity": "sha512-upf5Np45+F26qlad1ZUDJFFyAFyPHF3cU81jskEUq2VoEzUCX8zjBVvIsksut79Slz/B622UbX8blGTm+s7/lw==", "dependencies": { "@apollo/client": "^3.8.7", "@browser-bunyan/console-formatted-stream": "^1.8.0", @@ -11692,9 +11692,9 @@ "dev": true }, "bigbluebutton-html-plugin-sdk": { - "version": "0.0.72", - "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.72.tgz", - "integrity": "sha512-Vme+u/EZGnHSV2iEc3XGUgI1T1ILxCIb4VJ1/gRDIjeNQNHLTKXAZ3JPBSlSqAhtvYFEeyqK5VcbPCxRVKB5Sw==", + "version": "0.0.73", + "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.73.tgz", + "integrity": "sha512-upf5Np45+F26qlad1ZUDJFFyAFyPHF3cU81jskEUq2VoEzUCX8zjBVvIsksut79Slz/B622UbX8blGTm+s7/lw==", "requires": { "@apollo/client": "^3.8.7", "@browser-bunyan/console-formatted-stream": "^1.8.0", diff --git a/samples/sample-user-camera-dropdown-plugin/package.json b/samples/sample-user-camera-dropdown-plugin/package.json index 37ff9f07..c883c40b 100644 --- a/samples/sample-user-camera-dropdown-plugin/package.json +++ b/samples/sample-user-camera-dropdown-plugin/package.json @@ -10,7 +10,7 @@ "@types/react": "^18.2.13", "@types/react-dom": "^18.2.6", "babel-plugin-syntax-dynamic-import": "^6.18.0", - "bigbluebutton-html-plugin-sdk": "0.0.72", + "bigbluebutton-html-plugin-sdk": "0.0.73", "path": "^0.12.7", "react": "^18.2.0", "react-dom": "^18.2.0", diff --git a/samples/sample-user-list-dropdown-plugin/package-lock.json b/samples/sample-user-list-dropdown-plugin/package-lock.json index 00822545..a573aab8 100644 --- a/samples/sample-user-list-dropdown-plugin/package-lock.json +++ b/samples/sample-user-list-dropdown-plugin/package-lock.json @@ -14,7 +14,7 @@ "@types/react": "^18.2.13", "@types/react-dom": "^18.2.6", "babel-plugin-syntax-dynamic-import": "^6.18.0", - "bigbluebutton-html-plugin-sdk": "0.0.72", + "bigbluebutton-html-plugin-sdk": "0.0.73", "path": "^0.12.7", "react": "^18.2.0", "react-dom": "^18.2.0", @@ -3475,9 +3475,9 @@ "dev": true }, "node_modules/bigbluebutton-html-plugin-sdk": { - "version": "0.0.72", - "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.72.tgz", - "integrity": "sha512-Vme+u/EZGnHSV2iEc3XGUgI1T1ILxCIb4VJ1/gRDIjeNQNHLTKXAZ3JPBSlSqAhtvYFEeyqK5VcbPCxRVKB5Sw==", + "version": "0.0.73", + "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.73.tgz", + "integrity": "sha512-upf5Np45+F26qlad1ZUDJFFyAFyPHF3cU81jskEUq2VoEzUCX8zjBVvIsksut79Slz/B622UbX8blGTm+s7/lw==", "dependencies": { "@apollo/client": "^3.8.7", "@browser-bunyan/console-formatted-stream": "^1.8.0", @@ -12288,9 +12288,9 @@ "dev": true }, "bigbluebutton-html-plugin-sdk": { - "version": "0.0.72", - "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.72.tgz", - "integrity": "sha512-Vme+u/EZGnHSV2iEc3XGUgI1T1ILxCIb4VJ1/gRDIjeNQNHLTKXAZ3JPBSlSqAhtvYFEeyqK5VcbPCxRVKB5Sw==", + "version": "0.0.73", + "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.73.tgz", + "integrity": "sha512-upf5Np45+F26qlad1ZUDJFFyAFyPHF3cU81jskEUq2VoEzUCX8zjBVvIsksut79Slz/B622UbX8blGTm+s7/lw==", "requires": { "@apollo/client": "^3.8.7", "@browser-bunyan/console-formatted-stream": "^1.8.0", diff --git a/samples/sample-user-list-dropdown-plugin/package.json b/samples/sample-user-list-dropdown-plugin/package.json index fdfe3cc4..e877c3e2 100644 --- a/samples/sample-user-list-dropdown-plugin/package.json +++ b/samples/sample-user-list-dropdown-plugin/package.json @@ -10,7 +10,7 @@ "@types/react": "^18.2.13", "@types/react-dom": "^18.2.6", "babel-plugin-syntax-dynamic-import": "^6.18.0", - "bigbluebutton-html-plugin-sdk": "0.0.72", + "bigbluebutton-html-plugin-sdk": "0.0.73", "path": "^0.12.7", "react": "^18.2.0", "react-dom": "^18.2.0", diff --git a/samples/sample-user-list-item-additional-information-plugin/package-lock.json b/samples/sample-user-list-item-additional-information-plugin/package-lock.json index cf1be782..5632e560 100644 --- a/samples/sample-user-list-item-additional-information-plugin/package-lock.json +++ b/samples/sample-user-list-item-additional-information-plugin/package-lock.json @@ -14,7 +14,7 @@ "@types/react": "^18.2.13", "@types/react-dom": "^18.2.6", "babel-plugin-syntax-dynamic-import": "^6.18.0", - "bigbluebutton-html-plugin-sdk": "0.0.72", + "bigbluebutton-html-plugin-sdk": "0.0.73", "path": "^0.12.7", "react": "^18.2.0", "react-dom": "^18.2.0", @@ -3415,9 +3415,9 @@ "dev": true }, "node_modules/bigbluebutton-html-plugin-sdk": { - "version": "0.0.72", - "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.72.tgz", - "integrity": "sha512-Vme+u/EZGnHSV2iEc3XGUgI1T1ILxCIb4VJ1/gRDIjeNQNHLTKXAZ3JPBSlSqAhtvYFEeyqK5VcbPCxRVKB5Sw==", + "version": "0.0.73", + "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.73.tgz", + "integrity": "sha512-upf5Np45+F26qlad1ZUDJFFyAFyPHF3cU81jskEUq2VoEzUCX8zjBVvIsksut79Slz/B622UbX8blGTm+s7/lw==", "dependencies": { "@apollo/client": "^3.8.7", "@browser-bunyan/console-formatted-stream": "^1.8.0", @@ -11692,9 +11692,9 @@ "dev": true }, "bigbluebutton-html-plugin-sdk": { - "version": "0.0.72", - "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.72.tgz", - "integrity": "sha512-Vme+u/EZGnHSV2iEc3XGUgI1T1ILxCIb4VJ1/gRDIjeNQNHLTKXAZ3JPBSlSqAhtvYFEeyqK5VcbPCxRVKB5Sw==", + "version": "0.0.73", + "resolved": "https://registry.npmjs.org/bigbluebutton-html-plugin-sdk/-/bigbluebutton-html-plugin-sdk-0.0.73.tgz", + "integrity": "sha512-upf5Np45+F26qlad1ZUDJFFyAFyPHF3cU81jskEUq2VoEzUCX8zjBVvIsksut79Slz/B622UbX8blGTm+s7/lw==", "requires": { "@apollo/client": "^3.8.7", "@browser-bunyan/console-formatted-stream": "^1.8.0", diff --git a/samples/sample-user-list-item-additional-information-plugin/package.json b/samples/sample-user-list-item-additional-information-plugin/package.json index 7b872e72..df528f4d 100644 --- a/samples/sample-user-list-item-additional-information-plugin/package.json +++ b/samples/sample-user-list-item-additional-information-plugin/package.json @@ -10,7 +10,7 @@ "@types/react": "^18.2.13", "@types/react-dom": "^18.2.6", "babel-plugin-syntax-dynamic-import": "^6.18.0", - "bigbluebutton-html-plugin-sdk": "0.0.72", + "bigbluebutton-html-plugin-sdk": "0.0.73", "path": "^0.12.7", "react": "^18.2.0", "react-dom": "^18.2.0",