Skip to content

Commit

Permalink
1.11.5 update (#50)
Browse files Browse the repository at this point in the history
  • Loading branch information
mayk-zoom authored May 23, 2024
1 parent cbc163c commit c504700
Show file tree
Hide file tree
Showing 31 changed files with 85 additions and 56 deletions.
2 changes: 1 addition & 1 deletion dist/index.esm.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/index.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/index.umd.js

Large diffs are not rendered by default.

Binary file modified dist/lib/audio.encode.wasm
Binary file not shown.
Binary file modified dist/lib/audio.simd.wasm
Binary file not shown.
4 changes: 2 additions & 2 deletions dist/lib/audio_simd.min.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions dist/lib/js_audio_level_worklet_process.min.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions dist/lib/js_audio_process.min.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions dist/lib/js_audio_worklet.min.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions dist/lib/js_audio_worklet_process.min.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions dist/lib/js_audio_worklet_simd.min.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions dist/lib/js_media.min.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions dist/lib/js_sharing_audio_worklet.min.js

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions dist/lib/sharing_m.min.js

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions dist/lib/sharing_mtsimd.min.js

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions dist/lib/sharing_s.min.js

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions dist/lib/sharing_simd.min.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions dist/lib/vb.min.js

Large diffs are not rendered by default.

Binary file modified dist/lib/video.decode.wasm
Binary file not shown.
Binary file modified dist/lib/video.mt.wasm
Binary file not shown.
Binary file modified dist/lib/video.mtsimd.wasm
Binary file not shown.
Binary file modified dist/lib/video.simd.wasm
Binary file not shown.
6 changes: 3 additions & 3 deletions dist/lib/video_m.min.js

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions dist/lib/video_mtsimd.min.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions dist/lib/video_s.min.js

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions dist/lib/video_share_mtsimd.min.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions dist/lib/video_simd.min.js

Large diffs are not rendered by default.

13 changes: 12 additions & 1 deletion dist/types/event-callback.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1808,7 +1808,7 @@ export declare function event_subsession_broadcast_voice(payload: {
});

/**
* Occurs when the CRC(Cloud Room Connector) device call state changes.
* Occurs when the CRC (Cloud Room Connector) device call state changes.
*
* ```javascript
* client.on('crc-call-out-state-change', (payload) => {
Expand Down Expand Up @@ -1836,3 +1836,14 @@ export declare function event_crc_device_call_state_change(payload: {
*/
uuid: string;
}): void;
/**
* Occurs when the current audio volume changes.
* @param payload
* @category Audio
*/
export declare function event_current_audio_level_change(payload: {
/**
* Volume level,range from 0 to 9.
*/
level: number;
}): void;
18 changes: 13 additions & 5 deletions dist/types/media.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -255,11 +255,15 @@ export interface CaptureVideoOption {
*/
cameraId?: typeof MobileVideoFacingMode | string;
/**
* Customized width of capture, default is 640p.
* Customized width of capture.
* > ***Note***: Only applicable for specifying the custom width for cameras with resolutions that are not in the standard 16:9 or 4:3 aspect ratios.
* > If you need HD (720P) or full HD (1080P) resolution, use the `hd` or `fullHd` options.
*/
captureWidth?: number;
/**
* Customized height of capture, default is 360p.
* Customized height of capture.
* > ***Note***: Only applicable for specifying the custom height for cameras with resolutions that are not in the standard 16:9 or 4:3 aspect ratios.
* > If you need HD (720P) or full HD (1080P) resolution, use the `hd` or `fullHd` options.
*/
captureHeight?: number;
/**
Expand Down Expand Up @@ -981,7 +985,7 @@ export declare namespace Stream {
/**
* Adjusts someone's audio locally. This operation doesn't affect other participants' audio.
* @param userId User ID.
* @param volume Its range is an integer between 0-100.
* @param volume The volume, an integer between 0-100.
*
* @category Audio
*/
Expand Down Expand Up @@ -1037,7 +1041,7 @@ export declare namespace Stream {
): ExecutedResult;

/**
* Call out CRC(Cloud Room Connector) device
* Call out CRC (Cloud Room Connector) device
*
* ```javascript
* client.on('crc-call-out-state-change',(payload)=>{
Expand All @@ -1055,7 +1059,7 @@ export declare namespace Stream {
): ExecutedResult | Promise<string>;
/**
*
* Cancel the CRC(Cloud Room Connector) call out request before it is complete.
* Cancel the CRC (Cloud Room Connector) call out request before it is complete.
*
* @param ipAddress IP Address
* @param protocol Protocol H323|SIP
Expand Down Expand Up @@ -1745,6 +1749,10 @@ export declare namespace Stream {
* @category Video
*/
function getVideoMaskStatus(): MaskOption;
/**
* Whether the self video is mirrored
*/
function isVideoMirrored(): boolean;

// -------------------------------------------------[share]-----------------------------------------------------------

Expand Down
10 changes: 10 additions & 0 deletions dist/types/videoclient.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,7 @@ import {
event_crc_device_call_state_change,
event_subsession_broadcast_voice,
event_subsession_invite_to_back_to_main_session,
event_current_audio_level_change,
} from './event-callback';
// import AIClient from '../src/summary';

Expand Down Expand Up @@ -839,6 +840,15 @@ export declare namespace VideoClient {
event: 'crc-call-out-state-change',
listener: typeof event_crc_device_call_state_change,
): void;
/**
*
* @param event
* @param listener Details in {@link event_current_audio_level_change}
*/
function on(
event: 'current-audio-level-change',
listener: typeof event_current_audio_level_change,
): void;
/**
* Removes the event handler.
* @param event Event name.
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@zoom/videosdk",
"version": "1.11.0",
"version": "1.11.5",
"description": "Zoom Web Video SDK",
"main": "dist/index.js",
"module": "dist/index.esm.js",
Expand Down

0 comments on commit c504700

Please sign in to comment.