Skip to content

Commit

Permalink
Merge pull request #28 from iotum/jerry_hu/fix-typo
Browse files Browse the repository at this point in the history
fix typo
  • Loading branch information
jerry2013 authored Jul 26, 2024
2 parents a5780d0 + 2f2787a commit 655598a
Show file tree
Hide file tree
Showing 16 changed files with 123 additions and 123 deletions.
4 changes: 2 additions & 2 deletions dist/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -114,11 +114,11 @@ declare module '@iotum/callbridge-js/dashboard' {
[/** Room Id */ id: string]: number;
};
};
'dashboard.NAVIGATE_TO_CALL ': {
'dashboard.NAVIGATE_TO_CALL': {
accessCode: string;
options: MeetingOptions;
};
'dashboard.NAVIGATE_TO_SCHEDULE ': {
'dashboard.NAVIGATE_TO_SCHEDULE': {
/** The meeting id to edit or copy. */
id?: number;
options: ScheduleOptions;
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@iotum/callbridge-js",
"description": "Loading wrapper for Callbridge",
"version": "1.0.11",
"version": "1.0.12",
"author": "Iotum (https://www.iotum.com)",
"license": "MIT",
"homepage": "https://www.callbridge.com/",
Expand Down
4 changes: 2 additions & 2 deletions src/dashboard.ts
Original file line number Diff line number Diff line change
Expand Up @@ -122,11 +122,11 @@ export default class Dashboard extends Widget<{
'dashboard.UNREAD_MESSAGES': {
rooms: { [/** Room Id */ id: string]: number };
};
'dashboard.NAVIGATE_TO_CALL ': {
'dashboard.NAVIGATE_TO_CALL': {
accessCode: string;
options: MeetingOptions;
};
'dashboard.NAVIGATE_TO_SCHEDULE ': {
'dashboard.NAVIGATE_TO_SCHEDULE': {
/** The meeting id to edit or copy. */
id?: number;
options: ScheduleOptions;
Expand Down
12 changes: 6 additions & 6 deletions wiki/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ Audio output settings.

#### Defined in

[room.ts:6](https://github.com/iotum/callbridge-js/blob/688b664/src/room.ts#L6)
[room.ts:6](https://github.com/iotum/callbridge-js/blob/c1b8887/src/room.ts#L6)

___

Expand All @@ -65,7 +65,7 @@ ___

#### Defined in

[dashboard.ts:86](https://github.com/iotum/callbridge-js/blob/688b664/src/dashboard.ts#L86)
[dashboard.ts:86](https://github.com/iotum/callbridge-js/blob/c1b8887/src/dashboard.ts#L86)

___

Expand All @@ -85,7 +85,7 @@ Livestream options.

#### Defined in

[livestream.ts:6](https://github.com/iotum/callbridge-js/blob/688b664/src/livestream.ts#L6)
[livestream.ts:6](https://github.com/iotum/callbridge-js/blob/c1b8887/src/livestream.ts#L6)

___

Expand Down Expand Up @@ -116,7 +116,7 @@ Meeting options.

#### Defined in

[meeting.ts:7](https://github.com/iotum/callbridge-js/blob/688b664/src/meeting.ts#L7)
[meeting.ts:7](https://github.com/iotum/callbridge-js/blob/c1b8887/src/meeting.ts#L7)

___

Expand All @@ -138,7 +138,7 @@ Dashboard service options.

#### Defined in

[dashboard.ts:59](https://github.com/iotum/callbridge-js/blob/688b664/src/dashboard.ts#L59)
[dashboard.ts:59](https://github.com/iotum/callbridge-js/blob/c1b8887/src/dashboard.ts#L59)

___

Expand All @@ -165,4 +165,4 @@ Widget options.

#### Defined in

[widget.ts:9](https://github.com/iotum/callbridge-js/blob/688b664/src/widget.ts#L9)
[widget.ts:9](https://github.com/iotum/callbridge-js/blob/c1b8887/src/widget.ts#L9)
44 changes: 22 additions & 22 deletions wiki/classes/Dashboard.md

Large diffs are not rendered by default.

22 changes: 11 additions & 11 deletions wiki/classes/Livestream.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ Callbridge Livesteam Viewer.

#### Defined in

[livestream.ts:28](https://github.com/iotum/callbridge-js/blob/688b664/src/livestream.ts#L28)
[livestream.ts:28](https://github.com/iotum/callbridge-js/blob/c1b8887/src/livestream.ts#L28)

## Accessors

Expand All @@ -72,7 +72,7 @@ Widget.instance

#### Defined in

[widget.ts:267](https://github.com/iotum/callbridge-js/blob/688b664/src/widget.ts#L267)
[widget.ts:267](https://github.com/iotum/callbridge-js/blob/c1b8887/src/widget.ts#L267)

___

Expand All @@ -92,7 +92,7 @@ Widget.isReady

#### Defined in

[widget.ts:260](https://github.com/iotum/callbridge-js/blob/688b664/src/widget.ts#L260)
[widget.ts:260](https://github.com/iotum/callbridge-js/blob/c1b8887/src/widget.ts#L260)

___

Expand All @@ -112,7 +112,7 @@ Widget.wnd

#### Defined in

[widget.ts:274](https://github.com/iotum/callbridge-js/blob/688b664/src/widget.ts#L274)
[widget.ts:274](https://github.com/iotum/callbridge-js/blob/c1b8887/src/widget.ts#L274)

## Methods

Expand Down Expand Up @@ -147,7 +147,7 @@ Returns true if the event had listeners, false otherwise.

#### Defined in

[widget.ts:313](https://github.com/iotum/callbridge-js/blob/688b664/src/widget.ts#L313)
[widget.ts:313](https://github.com/iotum/callbridge-js/blob/c1b8887/src/widget.ts#L313)

___

Expand Down Expand Up @@ -180,7 +180,7 @@ Removes the specified `listener` from the listener array for the event named `ev

#### Defined in

[widget.ts:294](https://github.com/iotum/callbridge-js/blob/688b664/src/widget.ts#L294)
[widget.ts:294](https://github.com/iotum/callbridge-js/blob/c1b8887/src/widget.ts#L294)

___

Expand Down Expand Up @@ -213,7 +213,7 @@ Adds the `listener` function to the end of the listeners array for the event nam

#### Defined in

[widget.ts:286](https://github.com/iotum/callbridge-js/blob/688b664/src/widget.ts#L286)
[widget.ts:286](https://github.com/iotum/callbridge-js/blob/c1b8887/src/widget.ts#L286)

___

Expand Down Expand Up @@ -247,7 +247,7 @@ The next time eventName is triggered, this listener is removed and then invoked.

#### Defined in

[widget.ts:303](https://github.com/iotum/callbridge-js/blob/688b664/src/widget.ts#L303)
[widget.ts:303](https://github.com/iotum/callbridge-js/blob/c1b8887/src/widget.ts#L303)

___

Expand Down Expand Up @@ -276,7 +276,7 @@ particularly when the instance was created by some other component or module.

#### Defined in

[widget.ts:323](https://github.com/iotum/callbridge-js/blob/688b664/src/widget.ts#L323)
[widget.ts:323](https://github.com/iotum/callbridge-js/blob/c1b8887/src/widget.ts#L323)

___

Expand Down Expand Up @@ -304,7 +304,7 @@ Not available for pop-up.

#### Defined in

[widget.ts:251](https://github.com/iotum/callbridge-js/blob/688b664/src/widget.ts#L251)
[widget.ts:251](https://github.com/iotum/callbridge-js/blob/c1b8887/src/widget.ts#L251)

___

Expand All @@ -324,4 +324,4 @@ Unloads the widget by removing the iframe or close the tab/window.

#### Defined in

[widget.ts:223](https://github.com/iotum/callbridge-js/blob/688b664/src/widget.ts#L223)
[widget.ts:223](https://github.com/iotum/callbridge-js/blob/c1b8887/src/widget.ts#L223)
40 changes: 20 additions & 20 deletions wiki/classes/Meeting.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ Callbridge Meeting Room.

#### Defined in

[meeting.ts:77](https://github.com/iotum/callbridge-js/blob/688b664/src/meeting.ts#L77)
[meeting.ts:77](https://github.com/iotum/callbridge-js/blob/c1b8887/src/meeting.ts#L77)

## Accessors

Expand All @@ -81,7 +81,7 @@ Room.instance

#### Defined in

[widget.ts:267](https://github.com/iotum/callbridge-js/blob/688b664/src/widget.ts#L267)
[widget.ts:267](https://github.com/iotum/callbridge-js/blob/c1b8887/src/widget.ts#L267)

___

Expand All @@ -101,7 +101,7 @@ Room.isReady

#### Defined in

[widget.ts:260](https://github.com/iotum/callbridge-js/blob/688b664/src/widget.ts#L260)
[widget.ts:260](https://github.com/iotum/callbridge-js/blob/c1b8887/src/widget.ts#L260)

___

Expand All @@ -121,7 +121,7 @@ Room.wnd

#### Defined in

[widget.ts:274](https://github.com/iotum/callbridge-js/blob/688b664/src/widget.ts#L274)
[widget.ts:274](https://github.com/iotum/callbridge-js/blob/c1b8887/src/widget.ts#L274)

## Methods

Expand All @@ -148,7 +148,7 @@ Adjusts the audio output volume and/or stereo position of a remote participant.

#### Defined in

[room.ts:161](https://github.com/iotum/callbridge-js/blob/688b664/src/room.ts#L161)
[room.ts:161](https://github.com/iotum/callbridge-js/blob/c1b8887/src/room.ts#L161)

___

Expand Down Expand Up @@ -183,7 +183,7 @@ Returns true if the event had listeners, false otherwise.

#### Defined in

[widget.ts:313](https://github.com/iotum/callbridge-js/blob/688b664/src/widget.ts#L313)
[widget.ts:313](https://github.com/iotum/callbridge-js/blob/c1b8887/src/widget.ts#L313)

___

Expand All @@ -209,7 +209,7 @@ Mutes a remote participant, requires Moderator.

#### Defined in

[room.ts:150](https://github.com/iotum/callbridge-js/blob/688b664/src/room.ts#L150)
[room.ts:150](https://github.com/iotum/callbridge-js/blob/c1b8887/src/room.ts#L150)

___

Expand Down Expand Up @@ -242,7 +242,7 @@ Removes the specified `listener` from the listener array for the event named `ev

#### Defined in

[widget.ts:294](https://github.com/iotum/callbridge-js/blob/688b664/src/widget.ts#L294)
[widget.ts:294](https://github.com/iotum/callbridge-js/blob/c1b8887/src/widget.ts#L294)

___

Expand Down Expand Up @@ -275,7 +275,7 @@ Adds the `listener` function to the end of the listeners array for the event nam

#### Defined in

[widget.ts:286](https://github.com/iotum/callbridge-js/blob/688b664/src/widget.ts#L286)
[widget.ts:286](https://github.com/iotum/callbridge-js/blob/c1b8887/src/widget.ts#L286)

___

Expand Down Expand Up @@ -309,7 +309,7 @@ The next time eventName is triggered, this listener is removed and then invoked.

#### Defined in

[widget.ts:303](https://github.com/iotum/callbridge-js/blob/688b664/src/widget.ts#L303)
[widget.ts:303](https://github.com/iotum/callbridge-js/blob/c1b8887/src/widget.ts#L303)

___

Expand Down Expand Up @@ -338,7 +338,7 @@ particularly when the instance was created by some other component or module.

#### Defined in

[widget.ts:323](https://github.com/iotum/callbridge-js/blob/688b664/src/widget.ts#L323)
[widget.ts:323](https://github.com/iotum/callbridge-js/blob/c1b8887/src/widget.ts#L323)

___

Expand All @@ -364,7 +364,7 @@ Manages the audio input device.

#### Defined in

[room.ts:92](https://github.com/iotum/callbridge-js/blob/688b664/src/room.ts#L92)
[room.ts:92](https://github.com/iotum/callbridge-js/blob/c1b8887/src/room.ts#L92)

___

Expand All @@ -390,7 +390,7 @@ Manages the audio output device.

#### Defined in

[room.ts:100](https://github.com/iotum/callbridge-js/blob/688b664/src/room.ts#L100)
[room.ts:100](https://github.com/iotum/callbridge-js/blob/c1b8887/src/room.ts#L100)

___

Expand All @@ -416,7 +416,7 @@ Manages my camera.

#### Defined in

[room.ts:108](https://github.com/iotum/callbridge-js/blob/688b664/src/room.ts#L108)
[room.ts:108](https://github.com/iotum/callbridge-js/blob/c1b8887/src/room.ts#L108)

___

Expand All @@ -442,7 +442,7 @@ Manages incoming video.

#### Defined in

[room.ts:124](https://github.com/iotum/callbridge-js/blob/688b664/src/room.ts#L124)
[room.ts:124](https://github.com/iotum/callbridge-js/blob/c1b8887/src/room.ts#L124)

___

Expand All @@ -468,7 +468,7 @@ Manages my microphone.

#### Defined in

[room.ts:116](https://github.com/iotum/callbridge-js/blob/688b664/src/room.ts#L116)
[room.ts:116](https://github.com/iotum/callbridge-js/blob/c1b8887/src/room.ts#L116)

___

Expand All @@ -494,7 +494,7 @@ Manages the video input device.

#### Defined in

[room.ts:84](https://github.com/iotum/callbridge-js/blob/688b664/src/room.ts#L84)
[room.ts:84](https://github.com/iotum/callbridge-js/blob/c1b8887/src/room.ts#L84)

___

Expand All @@ -520,7 +520,7 @@ Sets the global audio output volume.

#### Defined in

[room.ts:135](https://github.com/iotum/callbridge-js/blob/688b664/src/room.ts#L135)
[room.ts:135](https://github.com/iotum/callbridge-js/blob/c1b8887/src/room.ts#L135)

___

Expand Down Expand Up @@ -548,7 +548,7 @@ Not available for pop-up.

#### Defined in

[widget.ts:251](https://github.com/iotum/callbridge-js/blob/688b664/src/widget.ts#L251)
[widget.ts:251](https://github.com/iotum/callbridge-js/blob/c1b8887/src/widget.ts#L251)

___

Expand All @@ -568,4 +568,4 @@ Unloads the widget by removing the iframe or close the tab/window.

#### Defined in

[widget.ts:223](https://github.com/iotum/callbridge-js/blob/688b664/src/widget.ts#L223)
[widget.ts:223](https://github.com/iotum/callbridge-js/blob/c1b8887/src/widget.ts#L223)
Loading

0 comments on commit 655598a

Please sign in to comment.