[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-anthropic-zoom-meeting-sdk-web-client-view":3,"mdc--qlbrc0-key":37,"related-repo-anthropic-zoom-meeting-sdk-web-client-view":10732,"related-org-anthropic-zoom-meeting-sdk-web-client-view":10851},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":12,"stars":26,"repoUrl":27,"updatedAt":28,"license":29,"forks":30,"topics":31,"repo":32,"sourceUrl":35,"mdContent":36},"zoom-meeting-sdk-web-client-view","embed Zoom Meeting SDK Client View","Zoom Meeting SDK Web - Client View. Full-page Zoom meeting experience with the familiar Zoom interface.\nUses ZoomMtg global singleton with callback-based API. Ideal for quick integration with minimal\ncustomization. Provides the same UI as Zoom Web Client.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},"anthropic","Anthropic","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fanthropic.png","anthropics",[13,17,20,23],{"name":14,"slug":15,"type":16},"Web Development","web-development","tag",{"name":18,"slug":19,"type":16},"SDK","sdk",{"name":21,"slug":22,"type":16},"Zoom","zoom",{"name":24,"slug":25,"type":16},"Frontend","frontend",22885,"https:\u002F\u002Fgithub.com\u002Fanthropics\u002Fknowledge-work-plugins","2026-04-10T04:57:23.484489",null,2736,[],{"repoUrl":27,"stars":26,"forks":30,"topics":33,"description":34},[],"Open source repository of plugins primarily intended for knowledge workers to use in Claude Cowork","https:\u002F\u002Fgithub.com\u002Fanthropics\u002Fknowledge-work-plugins\u002Ftree\u002FHEAD\u002Fpartner-built\u002Fzoom-plugin\u002Fskills\u002Fmeeting-sdk\u002Fweb\u002Fclient-view","---\nname: zoom-meeting-sdk-web-client-view\ndescription: |\n  Zoom Meeting SDK Web - Client View. Full-page Zoom meeting experience with the familiar Zoom interface.\n  Uses ZoomMtg global singleton with callback-based API. Ideal for quick integration with minimal\n  customization. Provides the same UI as Zoom Web Client.\nuser-invocable: false\ntriggers:\n  - \"meeting sdk client view\"\n  - \"zoommtg\"\n  - \"full page zoom ui\"\n  - \"password\"\n  - \"preparewebsdk\"\n---\n\n# Zoom Meeting SDK Web - Client View\n\nFull-page Zoom meeting experience embedded in your web application. Client View provides the familiar Zoom interface with minimal customization needed.\n\n## Overview\n\nClient View uses the `ZoomMtg` global singleton to render a full-page meeting experience identical to the Zoom Web Client.\n\n| Aspect | Details |\n|--------|---------|\n| **API Object** | `ZoomMtg` (global singleton) |\n| **API Style** | Callback-based |\n| **UI** | Full-page takeover |\n| **Password param** | `passWord` (capital W) |\n| **Events** | `inMeetingServiceListener()` |\n| **Best For** | Quick integration, standard Zoom UI |\n\n## Installation\n\n### NPM\n\n```bash\nnpm install @zoom\u002Fmeetingsdk --save\n```\n\n```javascript\nimport { ZoomMtg } from '@zoom\u002Fmeetingsdk';\n```\n\n### CDN\n\n```html\n\u003Cscript src=\"https:\u002F\u002Fsource.zoom.us\u002F{VERSION}\u002Flib\u002Fvendor\u002Freact.min.js\">\u003C\u002Fscript>\n\u003Cscript src=\"https:\u002F\u002Fsource.zoom.us\u002F{VERSION}\u002Flib\u002Fvendor\u002Freact-dom.min.js\">\u003C\u002Fscript>\n\u003Cscript src=\"https:\u002F\u002Fsource.zoom.us\u002F{VERSION}\u002Flib\u002Fvendor\u002Fredux.min.js\">\u003C\u002Fscript>\n\u003Cscript src=\"https:\u002F\u002Fsource.zoom.us\u002F{VERSION}\u002Flib\u002Fvendor\u002Fredux-thunk.min.js\">\u003C\u002Fscript>\n\u003Cscript src=\"https:\u002F\u002Fsource.zoom.us\u002F{VERSION}\u002Flib\u002Fvendor\u002Flodash.min.js\">\u003C\u002Fscript>\n\u003Cscript src=\"https:\u002F\u002Fsource.zoom.us\u002Fzoom-meeting-{VERSION}.min.js\">\u003C\u002Fscript>\n```\n\n## Complete Initialization Flow\n\n```javascript\n\u002F\u002F Step 1: Check browser compatibility\nconsole.log('Requirements:', ZoomMtg.checkSystemRequirements());\n\n\u002F\u002F Step 2: Set CDN path (optional - for China or custom hosting)\n\u002F\u002F ZoomMtg.setZoomJSLib('https:\u002F\u002Fsource.zoom.us\u002F{VERSION}\u002Flib', '\u002Fav');\n\n\u002F\u002F Step 3: Preload WebAssembly modules\nZoomMtg.preLoadWasm();\nZoomMtg.prepareWebSDK();\n\n\u002F\u002F Step 4: Load language resources\nZoomMtg.i18n.load('en-US');\nZoomMtg.i18n.onLoad(() => {\n  \n  \u002F\u002F Step 5: Initialize SDK\n  ZoomMtg.init({\n    leaveUrl: '\u002Fmeeting-ended',\n    patchJsMedia: true,\n    disableCORP: !window.crossOriginIsolated,\n    success: () => {\n      console.log('SDK initialized');\n      \n      \u002F\u002F Step 6: Join meeting\n      const joinPayload = {\n        signature: signature,\n        meetingNumber: meetingNumber,\n        userName: userName,\n        passWord: passWord,\n        success: (res) => {\n          console.log('Joined meeting');\n\n          \u002F\u002F Step 7: Post-join operations\n          ZoomMtg.getAttendeeslist({});\n          ZoomMtg.getCurrentUser({\n            success: (res) => console.log('Current user:', res.result.currentUser)\n          });\n        },\n        error: (err) => console.error('Join failed:', err)\n      };\n\n      \u002F\u002F IMPORTANT: only include optional fields when they have real values\n      \u002F\u002F Passing undefined for some optional fields can cause runtime join errors\n      if (userEmail) joinPayload.userEmail = userEmail;\n      if (tk) joinPayload.tk = tk;\n      if (zak) joinPayload.zak = zak;\n\n      ZoomMtg.join(joinPayload);\n    },\n    error: (err) => console.error('Init failed:', err)\n  });\n});\n```\n\n## ZoomMtg.init() - All Options\n\n### Required\n\n| Parameter | Type | Description |\n|-----------|------|-------------|\n| `leaveUrl` | `string` | URL to redirect after leaving meeting |\n\n### UI Customization\n\n| Parameter | Type | Default | Description |\n|-----------|------|---------|-------------|\n| `showMeetingHeader` | `boolean` | `true` | Show meeting number and topic |\n| `disableInvite` | `boolean` | `false` | Hide invite button |\n| `disableCallOut` | `boolean` | `false` | Hide call out option |\n| `disableRecord` | `boolean` | `false` | Hide record button |\n| `disableJoinAudio` | `boolean` | `false` | Hide join audio option |\n| `disablePreview` | `boolean` | `false` | Skip audio\u002Fvideo preview |\n| `audioPanelAlwaysOpen` | `boolean` | `false` | Keep audio panel open |\n| `showPureSharingContent` | `boolean` | `false` | Prevent overlays on shared content |\n| `videoHeader` | `boolean` | `true` | Show video tile header |\n| `isLockBottom` | `boolean` | `true` | Show\u002Fhide footer |\n| `videoDrag` | `boolean` | `true` | Enable drag video tiles |\n| `sharingMode` | `string` | `'both'` | `'both'` or `'fit'` |\n| `screenShare` | `boolean` | `true` | Enable browser URL sharing |\n| `hideShareAudioOption` | `boolean` | `false` | Hide \"Share tab audio\" checkbox |\n| `disablePictureInPicture` | `boolean` | `false` | Disable PiP mode |\n| `disableZoomLogo` | `boolean` | `false` | Remove Zoom logo (deprecated) |\n| `defaultView` | `string` | `'speaker'` | `'gallery'`, `'speaker'`, `'multiSpeaker'` |\n\n### Feature Toggles\n\n| Parameter | Type | Default | Description |\n|-----------|------|---------|-------------|\n| `isSupportAV` | `boolean` | `true` | Enable audio\u002Fvideo |\n| `isSupportChat` | `boolean` | `true` | Enable in-meeting chat |\n| `isSupportQA` | `boolean` | `true` | Enable webinar Q&A |\n| `isSupportCC` | `boolean` | `true` | Enable closed captions |\n| `isSupportPolling` | `boolean` | `true` | Enable polling |\n| `isSupportBreakout` | `boolean` | `true` | Enable breakout rooms |\n| `isSupportNonverbal` | `boolean` | `true` | Enable nonverbal feedback |\n| `isSupportSimulive` | `boolean` | `false` | Enable Simulive |\n| `disableVoIP` | `boolean` | `false` | Disable VoIP |\n| `disableReport` | `boolean` | `false` | Disable report feature |\n\n### Video Quality\n\n| Parameter | Type | Default | Description |\n|-----------|------|---------|-------------|\n| `enableHD` | `boolean` | `true` (≥2.8.0) | Enable 720p video |\n| `enableFullHD` | `boolean` | `false` | Enable 1080p for webinar attendees |\n\n### Advanced\n\n| Parameter | Type | Default | Description |\n|-----------|------|---------|-------------|\n| `debug` | `boolean` | `false` | Enable debug logging |\n| `patchJsMedia` | `boolean` | `false` | Auto-apply media fixes |\n| `disableCORP` | `boolean` | `false` | Disable web isolation |\n| `helper` | `string` | `''` | Path to helper.html |\n| `externalLinkPage` | `string` | - | Page for external links |\n| `webEndpoint` | `string` | - | For ZFG environments |\n| `leaveOnPageUnload` | `boolean` | `false` | Auto cleanup on page close |\n| `isShowJoiningErrorDialog` | `boolean` | `true` | Show error dialog on join failure |\n| `meetingInfo` | `Array\u003Cstring>` | `[...]` | Meeting info to display |\n| `inviteUrlFormat` | `string` | `''` | Custom invite URL format |\n| `loginWindow` | `object` | `{width: 400, height: 380}` | Login popup size |\n\n### Callbacks\n\n| Parameter | Type | Description |\n|-----------|------|-------------|\n| `success` | `Function` | Called on successful init |\n| `error` | `Function` | Called on init failure |\n\n## ZoomMtg.join() - All Options\n\n### Required\n\n| Parameter | Type | Description |\n|-----------|------|-------------|\n| `signature` | `string` | SDK JWT from backend (v5.0+: must include appKey prefix) |\n| `meetingNumber` | `string \\| number` | Meeting or webinar number |\n| `userName` | `string` | Display name |\n| `passWord` | `string` | Meeting password (capital W!) |\n\n### Authentication\n\n| Parameter | Type | When Required | Description |\n|-----------|------|---------------|-------------|\n| `zak` | `string` | Starting as host | Host's Zoom Access Key |\n| `tk` | `string` | Registration required | Registrant token |\n| `userEmail` | `string` | Webinars | User email |\n| `obfToken` | `string` | March 2026+ | App Privilege Token |\n\n### Optional\n\n| Parameter | Type | Description |\n|-----------|------|-------------|\n| `customerKey` | `string` | Custom ID (max 36 chars) |\n| `recordingToken` | `string` | Local recording permission |\n\n### Callbacks\n\n| Parameter | Type | Description |\n|-----------|------|-------------|\n| `success` | `Function` | Called on successful join |\n| `error` | `Function` | Called on join failure |\n\n## Event Listeners\n\n### User Events\n\n```javascript\nZoomMtg.inMeetingServiceListener('onUserJoin', (data) => {\n  console.log('User joined:', data);\n  \u002F\u002F { userId, userName, ... }\n});\n\nZoomMtg.inMeetingServiceListener('onUserLeave', (data) => {\n  console.log('User left:', data);\n  \u002F\u002F Reason codes:\n  \u002F\u002F 0: OTHER\n  \u002F\u002F 1: HOST_ENDED_MEETING\n  \u002F\u002F 2: SELF_LEAVE_FROM_IN_MEETING\n  \u002F\u002F 3: SELF_LEAVE_FROM_WAITING_ROOM\n  \u002F\u002F 4: SELF_LEAVE_FROM_WAITING_FOR_HOST_START\n  \u002F\u002F 5: MEETING_TRANSFER\n  \u002F\u002F 6: KICK_OUT_FROM_MEETING\n  \u002F\u002F 7: KICK_OUT_FROM_WAITING_ROOM\n  \u002F\u002F 8: LEAVE_FROM_DISCLAIMER\n});\n\nZoomMtg.inMeetingServiceListener('onUserUpdate', (data) => {\n  console.log('User updated:', data);\n});\n\nZoomMtg.inMeetingServiceListener('onUserIsInWaitingRoom', (data) => {\n  console.log('User in waiting room:', data);\n});\n```\n\n### Meeting Status\n\n```javascript\nZoomMtg.inMeetingServiceListener('onMeetingStatus', (data) => {\n  \u002F\u002F status: 1=connecting, 2=connected, 3=disconnected, 4=reconnecting\n  console.log('Status:', data.status);\n});\n```\n\n### Audio\u002FVideo Events\n\n```javascript\nZoomMtg.inMeetingServiceListener('onActiveSpeaker', (data) => {\n  \u002F\u002F [{userId, userName}]\n  console.log('Active speaker:', data);\n});\n\nZoomMtg.inMeetingServiceListener('onNetworkQualityChange', (data) => {\n  \u002F\u002F {level: 0-5, userId, type: 'uplink'}\n  \u002F\u002F 0-1=bad, 2=normal, 3-5=good\n  console.log('Network quality:', data);\n});\n\nZoomMtg.inMeetingServiceListener('onAudioQos', (data) => {\n  console.log('Audio QoS:', data);\n});\n\nZoomMtg.inMeetingServiceListener('onVideoQos', (data) => {\n  console.log('Video QoS:', data);\n});\n```\n\n### Chat & Communication\n\n```javascript\nZoomMtg.inMeetingServiceListener('onReceiveChatMsg', (data) => {\n  console.log('Chat message:', data);\n});\n\nZoomMtg.inMeetingServiceListener('onReceiveTranscriptionMsg', (data) => {\n  console.log('Transcription:', data);\n});\n\nZoomMtg.inMeetingServiceListener('onReceiveTranslateMsg', (data) => {\n  console.log('Translation:', data);\n});\n```\n\n### Recording & Sharing\n\n```javascript\nZoomMtg.inMeetingServiceListener('onRecordingChange', (data) => {\n  console.log('Recording status:', data);\n});\n\nZoomMtg.inMeetingServiceListener('onShareContentChange', (data) => {\n  console.log('Share content:', data);\n});\n\nZoomMtg.inMeetingServiceListener('receiveSharingChannelReady', (data) => {\n  console.log('Sharing channel ready:', data);\n});\n```\n\n### Breakout Rooms\n\n```javascript\nZoomMtg.inMeetingServiceListener('onRoomStatusChange', (data) => {\n  \u002F\u002F status: 2=InProgress, 3=Closing, 4=Closed\n  console.log('Breakout room status:', data);\n});\n```\n\n### Other Events\n\n```javascript\nZoomMtg.inMeetingServiceListener('onJoinSpeed', (data) => {\n  console.log('Join metrics:', data);\n});\n\nZoomMtg.inMeetingServiceListener('onVbStatusChange', (data) => {\n  console.log('Virtual background status:', data);\n});\n\nZoomMtg.inMeetingServiceListener('onFocusModeStatusChange', (data) => {\n  console.log('Focus mode:', data);\n});\n\nZoomMtg.inMeetingServiceListener('onPictureInPicture', (data) => {\n  console.log('PiP status:', data);\n});\n\nZoomMtg.inMeetingServiceListener('onClaimStatus', (data) => {\n  console.log('Host claim status:', data);\n});\n```\n\n## Common Methods\n\n### Meeting Info\n\n```javascript\n\u002F\u002F Get current user\nZoomMtg.getCurrentUser({\n  success: (res) => console.log(res.result.currentUser)\n});\n\n\u002F\u002F Get all attendees\nZoomMtg.getAttendeeslist({});\n\n\u002F\u002F Get meeting info\nZoomMtg.getCurrentMeetingInfo({\n  success: (res) => console.log(res)\n});\n\n\u002F\u002F Get SDK version\nZoomMtg.getWebSDKVersion({\n  success: (version) => console.log(version)\n});\n```\n\n### Audio\u002FVideo Control\n\n```javascript\n\u002F\u002F Mute\u002Funmute specific user\nZoomMtg.mute({ userId, mute: true });\n\n\u002F\u002F Mute\u002Funmute all\nZoomMtg.muteAll({ muteAll: true });\n\n\u002F\u002F Stop incoming audio\nZoomMtg.stopIncomingAudio({ stop: true });\n\n\u002F\u002F Mirror video\nZoomMtg.mirrorVideo({ mirror: true });\n```\n\n### Chat\n\n```javascript\n\u002F\u002F Send chat message\nZoomMtg.sendChat({\n  message: 'Hello!',\n  userId: 0  \u002F\u002F 0 = everyone\n});\n```\n\n### Meeting Control\n\n```javascript\n\u002F\u002F Leave meeting\nZoomMtg.leaveMeeting({});\n\n\u002F\u002F End meeting (host only)\nZoomMtg.endMeeting({});\n\n\u002F\u002F Lock meeting\nZoomMtg.lockMeeting({ lock: true });\n```\n\n### Host Controls\n\n```javascript\n\u002F\u002F Make host\nZoomMtg.makeHost({ userId });\n\n\u002F\u002F Make co-host\nZoomMtg.makeCoHost({ userId });\n\n\u002F\u002F Remove co-host\nZoomMtg.withdrawCoHost({ userId });\n\n\u002F\u002F Remove participant\nZoomMtg.expel({ userId });\n\n\u002F\u002F Put on hold\nZoomMtg.putOnHold({ userId, bHold: true });\n\n\u002F\u002F Claim host with host key\nZoomMtg.claimHostWithHostKey({ hostKey: '123456' });\n\n\u002F\u002F Reclaim host\nZoomMtg.reclaimHost({});\n\n\u002F\u002F Admit all from waiting room\nZoomMtg.admitAll({});\n```\n\n### Raise Hand\n\n```javascript\n\u002F\u002F Raise hand\nZoomMtg.raiseHand({ userId });\n\n\u002F\u002F Lower hand\nZoomMtg.lowerHand({ oderId });\n\n\u002F\u002F Lower all hands\nZoomMtg.lowerAllHands({});\n```\n\n### Spotlight & Pin\n\n```javascript\n\u002F\u002F Spotlight video\nZoomMtg.operateSpotlight({ oderId, action: 'add' }); \u002F\u002F or 'remove'\n\n\u002F\u002F Pin video\nZoomMtg.operatePin({ oderId, action: 'add' }); \u002F\u002F or 'remove'\n\n\u002F\u002F Allow multi-pin\nZoomMtg.allowMultiPin({ allow: true });\n```\n\n### Screen Share\n\n```javascript\n\u002F\u002F Start screen share\nZoomMtg.startScreenShare({});\n\n\u002F\u002F Share specific source (Electron)\nZoomMtg.shareSource({ source });\n```\n\n### Recording\n\n```javascript\n\u002F\u002F Start\u002Fstop recording\nZoomMtg.record({ record: true }); \u002F\u002F or false\n\n\u002F\u002F Show\u002Fhide record button\nZoomMtg.showRecordFunction({ show: true });\n```\n\n### Breakout Rooms\n\n```javascript\n\u002F\u002F Create breakout room\nZoomMtg.createBreakoutRoom({\n  rooms: [{ name: 'Room 1' }, { name: 'Room 2' }]\n});\n\n\u002F\u002F Open breakout rooms\nZoomMtg.openBreakoutRooms({});\n\n\u002F\u002F Close breakout rooms\nZoomMtg.closeBreakoutRooms({});\n\n\u002F\u002F Join breakout room\nZoomMtg.joinBreakoutRoom({ roomId });\n\n\u002F\u002F Leave breakout room\nZoomMtg.leaveBreakoutRoom({});\n\n\u002F\u002F Move user to breakout room\nZoomMtg.moveUserToBreakoutRoom({ oderId, roomId });\n\n\u002F\u002F Get breakout room status\nZoomMtg.getBreakoutRoomStatus({\n  success: (res) => console.log(res)\n});\n```\n\n### Virtual Background\n\n```javascript\n\u002F\u002F Check support\nZoomMtg.isSupportVirtualBackground({\n  success: (data) => console.log(data.result.isSupport)\n});\n\n\u002F\u002F Set virtual background\nZoomMtg.setVirtualBackground({ imageUrl: '...' });\n\n\u002F\u002F Get VB status\nZoomMtg.getVirtualBackgroundStatus({\n  success: (data) => console.log(data)\n});\n\n\u002F\u002F Lock virtual background (host)\nZoomMtg.lockVirtualBackground({ lock: true });\n```\n\n### UI Control\n\n```javascript\n\u002F\u002F Show\u002Fhide meeting header\nZoomMtg.showMeetingHeader({ show: true });\n\n\u002F\u002F Show\u002Fhide invite button\nZoomMtg.showInviteFunction({ show: true });\n\n\u002F\u002F Show\u002Fhide join audio button\nZoomMtg.showJoinAudioFunction({ show: true });\n\n\u002F\u002F Show\u002Fhide callout button\nZoomMtg.showCalloutFunction({ show: true });\n\n\u002F\u002F Re-render with new options\nZoomMtg.reRender({ lang: 'de-DE' });\n```\n\n### Language\n\n```javascript\n\u002F\u002F Load language\nZoomMtg.i18n.load('de-DE');\n\n\u002F\u002F Reload language\nZoomMtg.i18n.reload('de-DE');\n\n\u002F\u002F Get current language\nZoomMtg.i18n.getCurrentLang();\n\n\u002F\u002F Get all translations\nZoomMtg.i18n.getAll();\n```\n\n## Rate Limits\n\n| Method | Limit |\n|--------|-------|\n| `join()` | 10 seconds |\n| `callOut()` | 10 seconds |\n| `mute()` | 1 second |\n| `muteAll()` | 5 seconds |\n\n## DOM Elements\n\nThe SDK automatically adds these elements:\n- `#zmmtg-root` - Main meeting container\n- `#aria-notify-area` - Accessibility announcements\n\nDo NOT manually create or remove these.\n\n### SPA (React\u002FNext) Overlay Gotcha\n\nIf you \"join\" but see a blank\u002Fblack area or your app shell instead of the meeting UI, the Zoom UI can be rendering **behind** your app layout. Ensure `#zmmtg-root` occupies the viewport and is above other fixed elements:\n\n```css\n#zmmtg-root {\n  position: fixed !important;\n  inset: 0 !important;\n  z-index: 9999 !important;\n}\n```\n\n### Join Payload Sanitization Gotcha\n\nIf `ZoomMtg.join()` succeeds partially but the screen turns black and console shows errors like `Cannot read properties of undefined (reading 'toString')`, sanitize optional fields before calling join.\n\nDo not pass optional keys with `undefined` values (`userEmail`, `tk`, `zak`, etc.). Build a payload and only attach those keys when they are non-empty strings.\n\nAlso prefer `defaultView: 'speaker'` during `ZoomMtg.init()` unless you have SharedArrayBuffer\u002Fgallery-view prerequisites fully configured.\n\n## Resources\n\n- [Main Web SDK Skill](..\u002FSKILL.md)\n- [Reference Index](references\u002FREADME.md)\n- [Error Codes](..\u002Ftroubleshooting\u002Ferror-codes.md)\n- [Common Issues](..\u002Ftroubleshooting\u002Fcommon-issues.md)\n- [SharedArrayBuffer Setup](..\u002Fconcepts\u002Fsharedarraybuffer.md)\n- [Official API Reference](https:\u002F\u002Fmarketplacefront.zoom.us\u002Fsdk\u002Fmeeting\u002Fweb\u002Findex.html)\n\n## Operations\n\n- [RUNBOOK.md](RUNBOOK.md) - 5-minute preflight and debugging checklist.\n",{"data":38,"body":46},{"name":4,"description":6,"user-invocable":39,"triggers":40},false,[41,42,43,44,45],"meeting sdk client view","zoommtg","full page zoom ui","password","preparewebsdk",{"type":47,"children":48},"root",[49,57,63,70,84,224,230,237,275,335,341,628,634,1927,1933,1939,1992,1998,2622,2628,2986,2992,3088,3094,3483,3489,3563,3569,3574,3698,3704,3850,3856,3930,3935,4007,4013,4019,4615,4621,4764,4770,5298,5304,5682,5688,6066,6072,6206,6212,6842,6848,6854,7212,7218,7484,7490,7596,7602,7760,7766,8226,8232,8390,8396,8631,8637,8740,8746,8879,8884,9377,9383,9732,9738,10062,10068,10287,10293,10382,10388,10393,10420,10425,10431,10450,10561,10567,10588,10620,10641,10647,10707,10713,10726],{"type":50,"tag":51,"props":52,"children":53},"element","h1",{"id":4},[54],{"type":55,"value":56},"text","Zoom Meeting SDK Web - Client View",{"type":50,"tag":58,"props":59,"children":60},"p",{},[61],{"type":55,"value":62},"Full-page Zoom meeting experience embedded in your web application. Client View provides the familiar Zoom interface with minimal customization needed.",{"type":50,"tag":64,"props":65,"children":67},"h2",{"id":66},"overview",[68],{"type":55,"value":69},"Overview",{"type":50,"tag":58,"props":71,"children":72},{},[73,75,82],{"type":55,"value":74},"Client View uses the ",{"type":50,"tag":76,"props":77,"children":79},"code",{"className":78},[],[80],{"type":55,"value":81},"ZoomMtg",{"type":55,"value":83}," global singleton to render a full-page meeting experience identical to the Zoom Web Client.",{"type":50,"tag":85,"props":86,"children":87},"table",{},[88,107],{"type":50,"tag":89,"props":90,"children":91},"thead",{},[92],{"type":50,"tag":93,"props":94,"children":95},"tr",{},[96,102],{"type":50,"tag":97,"props":98,"children":99},"th",{},[100],{"type":55,"value":101},"Aspect",{"type":50,"tag":97,"props":103,"children":104},{},[105],{"type":55,"value":106},"Details",{"type":50,"tag":108,"props":109,"children":110},"tbody",{},[111,134,150,166,188,208],{"type":50,"tag":93,"props":112,"children":113},{},[114,124],{"type":50,"tag":115,"props":116,"children":117},"td",{},[118],{"type":50,"tag":119,"props":120,"children":121},"strong",{},[122],{"type":55,"value":123},"API Object",{"type":50,"tag":115,"props":125,"children":126},{},[127,132],{"type":50,"tag":76,"props":128,"children":130},{"className":129},[],[131],{"type":55,"value":81},{"type":55,"value":133}," (global singleton)",{"type":50,"tag":93,"props":135,"children":136},{},[137,145],{"type":50,"tag":115,"props":138,"children":139},{},[140],{"type":50,"tag":119,"props":141,"children":142},{},[143],{"type":55,"value":144},"API Style",{"type":50,"tag":115,"props":146,"children":147},{},[148],{"type":55,"value":149},"Callback-based",{"type":50,"tag":93,"props":151,"children":152},{},[153,161],{"type":50,"tag":115,"props":154,"children":155},{},[156],{"type":50,"tag":119,"props":157,"children":158},{},[159],{"type":55,"value":160},"UI",{"type":50,"tag":115,"props":162,"children":163},{},[164],{"type":55,"value":165},"Full-page takeover",{"type":50,"tag":93,"props":167,"children":168},{},[169,177],{"type":50,"tag":115,"props":170,"children":171},{},[172],{"type":50,"tag":119,"props":173,"children":174},{},[175],{"type":55,"value":176},"Password param",{"type":50,"tag":115,"props":178,"children":179},{},[180,186],{"type":50,"tag":76,"props":181,"children":183},{"className":182},[],[184],{"type":55,"value":185},"passWord",{"type":55,"value":187}," (capital W)",{"type":50,"tag":93,"props":189,"children":190},{},[191,199],{"type":50,"tag":115,"props":192,"children":193},{},[194],{"type":50,"tag":119,"props":195,"children":196},{},[197],{"type":55,"value":198},"Events",{"type":50,"tag":115,"props":200,"children":201},{},[202],{"type":50,"tag":76,"props":203,"children":205},{"className":204},[],[206],{"type":55,"value":207},"inMeetingServiceListener()",{"type":50,"tag":93,"props":209,"children":210},{},[211,219],{"type":50,"tag":115,"props":212,"children":213},{},[214],{"type":50,"tag":119,"props":215,"children":216},{},[217],{"type":55,"value":218},"Best For",{"type":50,"tag":115,"props":220,"children":221},{},[222],{"type":55,"value":223},"Quick integration, standard Zoom UI",{"type":50,"tag":64,"props":225,"children":227},{"id":226},"installation",[228],{"type":55,"value":229},"Installation",{"type":50,"tag":231,"props":232,"children":234},"h3",{"id":233},"npm",[235],{"type":55,"value":236},"NPM",{"type":50,"tag":238,"props":239,"children":244},"pre",{"className":240,"code":241,"language":242,"meta":243,"style":243},"language-bash shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","npm install @zoom\u002Fmeetingsdk --save\n","bash","",[245],{"type":50,"tag":76,"props":246,"children":247},{"__ignoreMap":243},[248],{"type":50,"tag":249,"props":250,"children":253},"span",{"class":251,"line":252},"line",1,[254,259,265,270],{"type":50,"tag":249,"props":255,"children":257},{"style":256},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[258],{"type":55,"value":233},{"type":50,"tag":249,"props":260,"children":262},{"style":261},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[263],{"type":55,"value":264}," install",{"type":50,"tag":249,"props":266,"children":267},{"style":261},[268],{"type":55,"value":269}," @zoom\u002Fmeetingsdk",{"type":50,"tag":249,"props":271,"children":272},{"style":261},[273],{"type":55,"value":274}," --save\n",{"type":50,"tag":238,"props":276,"children":280},{"className":277,"code":278,"language":279,"meta":243,"style":243},"language-javascript shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","import { ZoomMtg } from '@zoom\u002Fmeetingsdk';\n","javascript",[281],{"type":50,"tag":76,"props":282,"children":283},{"__ignoreMap":243},[284],{"type":50,"tag":249,"props":285,"children":286},{"class":251,"line":252},[287,293,299,305,310,315,320,325,330],{"type":50,"tag":249,"props":288,"children":290},{"style":289},"--shiki-light:#39ADB5;--shiki-light-font-style:italic;--shiki-default:#89DDFF;--shiki-default-font-style:italic;--shiki-dark:#89DDFF;--shiki-dark-font-style:italic",[291],{"type":55,"value":292},"import",{"type":50,"tag":249,"props":294,"children":296},{"style":295},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[297],{"type":55,"value":298}," {",{"type":50,"tag":249,"props":300,"children":302},{"style":301},"--shiki-light:#90A4AE;--shiki-default:#EEFFFF;--shiki-dark:#BABED8",[303],{"type":55,"value":304}," ZoomMtg",{"type":50,"tag":249,"props":306,"children":307},{"style":295},[308],{"type":55,"value":309}," }",{"type":50,"tag":249,"props":311,"children":312},{"style":289},[313],{"type":55,"value":314}," from",{"type":50,"tag":249,"props":316,"children":317},{"style":295},[318],{"type":55,"value":319}," '",{"type":50,"tag":249,"props":321,"children":322},{"style":261},[323],{"type":55,"value":324},"@zoom\u002Fmeetingsdk",{"type":50,"tag":249,"props":326,"children":327},{"style":295},[328],{"type":55,"value":329},"'",{"type":50,"tag":249,"props":331,"children":332},{"style":295},[333],{"type":55,"value":334},";\n",{"type":50,"tag":231,"props":336,"children":338},{"id":337},"cdn",[339],{"type":55,"value":340},"CDN",{"type":50,"tag":238,"props":342,"children":346},{"className":343,"code":344,"language":345,"meta":243,"style":243},"language-html shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","\u003Cscript src=\"https:\u002F\u002Fsource.zoom.us\u002F{VERSION}\u002Flib\u002Fvendor\u002Freact.min.js\">\u003C\u002Fscript>\n\u003Cscript src=\"https:\u002F\u002Fsource.zoom.us\u002F{VERSION}\u002Flib\u002Fvendor\u002Freact-dom.min.js\">\u003C\u002Fscript>\n\u003Cscript src=\"https:\u002F\u002Fsource.zoom.us\u002F{VERSION}\u002Flib\u002Fvendor\u002Fredux.min.js\">\u003C\u002Fscript>\n\u003Cscript src=\"https:\u002F\u002Fsource.zoom.us\u002F{VERSION}\u002Flib\u002Fvendor\u002Fredux-thunk.min.js\">\u003C\u002Fscript>\n\u003Cscript src=\"https:\u002F\u002Fsource.zoom.us\u002F{VERSION}\u002Flib\u002Fvendor\u002Flodash.min.js\">\u003C\u002Fscript>\n\u003Cscript src=\"https:\u002F\u002Fsource.zoom.us\u002Fzoom-meeting-{VERSION}.min.js\">\u003C\u002Fscript>\n","html",[347],{"type":50,"tag":76,"props":348,"children":349},{"__ignoreMap":243},[350,403,448,493,538,583],{"type":50,"tag":249,"props":351,"children":352},{"class":251,"line":252},[353,358,364,370,375,380,385,389,394,398],{"type":50,"tag":249,"props":354,"children":355},{"style":295},[356],{"type":55,"value":357},"\u003C",{"type":50,"tag":249,"props":359,"children":361},{"style":360},"--shiki-light:#E53935;--shiki-default:#F07178;--shiki-dark:#F07178",[362],{"type":55,"value":363},"script",{"type":50,"tag":249,"props":365,"children":367},{"style":366},"--shiki-light:#9C3EDA;--shiki-default:#C792EA;--shiki-dark:#C792EA",[368],{"type":55,"value":369}," src",{"type":50,"tag":249,"props":371,"children":372},{"style":295},[373],{"type":55,"value":374},"=",{"type":50,"tag":249,"props":376,"children":377},{"style":295},[378],{"type":55,"value":379},"\"",{"type":50,"tag":249,"props":381,"children":382},{"style":261},[383],{"type":55,"value":384},"https:\u002F\u002Fsource.zoom.us\u002F{VERSION}\u002Flib\u002Fvendor\u002Freact.min.js",{"type":50,"tag":249,"props":386,"children":387},{"style":295},[388],{"type":55,"value":379},{"type":50,"tag":249,"props":390,"children":391},{"style":295},[392],{"type":55,"value":393},">\u003C\u002F",{"type":50,"tag":249,"props":395,"children":396},{"style":360},[397],{"type":55,"value":363},{"type":50,"tag":249,"props":399,"children":400},{"style":295},[401],{"type":55,"value":402},">\n",{"type":50,"tag":249,"props":404,"children":406},{"class":251,"line":405},2,[407,411,415,419,423,427,432,436,440,444],{"type":50,"tag":249,"props":408,"children":409},{"style":295},[410],{"type":55,"value":357},{"type":50,"tag":249,"props":412,"children":413},{"style":360},[414],{"type":55,"value":363},{"type":50,"tag":249,"props":416,"children":417},{"style":366},[418],{"type":55,"value":369},{"type":50,"tag":249,"props":420,"children":421},{"style":295},[422],{"type":55,"value":374},{"type":50,"tag":249,"props":424,"children":425},{"style":295},[426],{"type":55,"value":379},{"type":50,"tag":249,"props":428,"children":429},{"style":261},[430],{"type":55,"value":431},"https:\u002F\u002Fsource.zoom.us\u002F{VERSION}\u002Flib\u002Fvendor\u002Freact-dom.min.js",{"type":50,"tag":249,"props":433,"children":434},{"style":295},[435],{"type":55,"value":379},{"type":50,"tag":249,"props":437,"children":438},{"style":295},[439],{"type":55,"value":393},{"type":50,"tag":249,"props":441,"children":442},{"style":360},[443],{"type":55,"value":363},{"type":50,"tag":249,"props":445,"children":446},{"style":295},[447],{"type":55,"value":402},{"type":50,"tag":249,"props":449,"children":451},{"class":251,"line":450},3,[452,456,460,464,468,472,477,481,485,489],{"type":50,"tag":249,"props":453,"children":454},{"style":295},[455],{"type":55,"value":357},{"type":50,"tag":249,"props":457,"children":458},{"style":360},[459],{"type":55,"value":363},{"type":50,"tag":249,"props":461,"children":462},{"style":366},[463],{"type":55,"value":369},{"type":50,"tag":249,"props":465,"children":466},{"style":295},[467],{"type":55,"value":374},{"type":50,"tag":249,"props":469,"children":470},{"style":295},[471],{"type":55,"value":379},{"type":50,"tag":249,"props":473,"children":474},{"style":261},[475],{"type":55,"value":476},"https:\u002F\u002Fsource.zoom.us\u002F{VERSION}\u002Flib\u002Fvendor\u002Fredux.min.js",{"type":50,"tag":249,"props":478,"children":479},{"style":295},[480],{"type":55,"value":379},{"type":50,"tag":249,"props":482,"children":483},{"style":295},[484],{"type":55,"value":393},{"type":50,"tag":249,"props":486,"children":487},{"style":360},[488],{"type":55,"value":363},{"type":50,"tag":249,"props":490,"children":491},{"style":295},[492],{"type":55,"value":402},{"type":50,"tag":249,"props":494,"children":496},{"class":251,"line":495},4,[497,501,505,509,513,517,522,526,530,534],{"type":50,"tag":249,"props":498,"children":499},{"style":295},[500],{"type":55,"value":357},{"type":50,"tag":249,"props":502,"children":503},{"style":360},[504],{"type":55,"value":363},{"type":50,"tag":249,"props":506,"children":507},{"style":366},[508],{"type":55,"value":369},{"type":50,"tag":249,"props":510,"children":511},{"style":295},[512],{"type":55,"value":374},{"type":50,"tag":249,"props":514,"children":515},{"style":295},[516],{"type":55,"value":379},{"type":50,"tag":249,"props":518,"children":519},{"style":261},[520],{"type":55,"value":521},"https:\u002F\u002Fsource.zoom.us\u002F{VERSION}\u002Flib\u002Fvendor\u002Fredux-thunk.min.js",{"type":50,"tag":249,"props":523,"children":524},{"style":295},[525],{"type":55,"value":379},{"type":50,"tag":249,"props":527,"children":528},{"style":295},[529],{"type":55,"value":393},{"type":50,"tag":249,"props":531,"children":532},{"style":360},[533],{"type":55,"value":363},{"type":50,"tag":249,"props":535,"children":536},{"style":295},[537],{"type":55,"value":402},{"type":50,"tag":249,"props":539,"children":541},{"class":251,"line":540},5,[542,546,550,554,558,562,567,571,575,579],{"type":50,"tag":249,"props":543,"children":544},{"style":295},[545],{"type":55,"value":357},{"type":50,"tag":249,"props":547,"children":548},{"style":360},[549],{"type":55,"value":363},{"type":50,"tag":249,"props":551,"children":552},{"style":366},[553],{"type":55,"value":369},{"type":50,"tag":249,"props":555,"children":556},{"style":295},[557],{"type":55,"value":374},{"type":50,"tag":249,"props":559,"children":560},{"style":295},[561],{"type":55,"value":379},{"type":50,"tag":249,"props":563,"children":564},{"style":261},[565],{"type":55,"value":566},"https:\u002F\u002Fsource.zoom.us\u002F{VERSION}\u002Flib\u002Fvendor\u002Flodash.min.js",{"type":50,"tag":249,"props":568,"children":569},{"style":295},[570],{"type":55,"value":379},{"type":50,"tag":249,"props":572,"children":573},{"style":295},[574],{"type":55,"value":393},{"type":50,"tag":249,"props":576,"children":577},{"style":360},[578],{"type":55,"value":363},{"type":50,"tag":249,"props":580,"children":581},{"style":295},[582],{"type":55,"value":402},{"type":50,"tag":249,"props":584,"children":586},{"class":251,"line":585},6,[587,591,595,599,603,607,612,616,620,624],{"type":50,"tag":249,"props":588,"children":589},{"style":295},[590],{"type":55,"value":357},{"type":50,"tag":249,"props":592,"children":593},{"style":360},[594],{"type":55,"value":363},{"type":50,"tag":249,"props":596,"children":597},{"style":366},[598],{"type":55,"value":369},{"type":50,"tag":249,"props":600,"children":601},{"style":295},[602],{"type":55,"value":374},{"type":50,"tag":249,"props":604,"children":605},{"style":295},[606],{"type":55,"value":379},{"type":50,"tag":249,"props":608,"children":609},{"style":261},[610],{"type":55,"value":611},"https:\u002F\u002Fsource.zoom.us\u002Fzoom-meeting-{VERSION}.min.js",{"type":50,"tag":249,"props":613,"children":614},{"style":295},[615],{"type":55,"value":379},{"type":50,"tag":249,"props":617,"children":618},{"style":295},[619],{"type":55,"value":393},{"type":50,"tag":249,"props":621,"children":622},{"style":360},[623],{"type":55,"value":363},{"type":50,"tag":249,"props":625,"children":626},{"style":295},[627],{"type":55,"value":402},{"type":50,"tag":64,"props":629,"children":631},{"id":630},"complete-initialization-flow",[632],{"type":55,"value":633},"Complete Initialization Flow",{"type":50,"tag":238,"props":635,"children":637},{"className":277,"code":636,"language":279,"meta":243,"style":243},"\u002F\u002F Step 1: Check browser compatibility\nconsole.log('Requirements:', ZoomMtg.checkSystemRequirements());\n\n\u002F\u002F Step 2: Set CDN path (optional - for China or custom hosting)\n\u002F\u002F ZoomMtg.setZoomJSLib('https:\u002F\u002Fsource.zoom.us\u002F{VERSION}\u002Flib', '\u002Fav');\n\n\u002F\u002F Step 3: Preload WebAssembly modules\nZoomMtg.preLoadWasm();\nZoomMtg.prepareWebSDK();\n\n\u002F\u002F Step 4: Load language resources\nZoomMtg.i18n.load('en-US');\nZoomMtg.i18n.onLoad(() => {\n  \n  \u002F\u002F Step 5: Initialize SDK\n  ZoomMtg.init({\n    leaveUrl: '\u002Fmeeting-ended',\n    patchJsMedia: true,\n    disableCORP: !window.crossOriginIsolated,\n    success: () => {\n      console.log('SDK initialized');\n      \n      \u002F\u002F Step 6: Join meeting\n      const joinPayload = {\n        signature: signature,\n        meetingNumber: meetingNumber,\n        userName: userName,\n        passWord: passWord,\n        success: (res) => {\n          console.log('Joined meeting');\n\n          \u002F\u002F Step 7: Post-join operations\n          ZoomMtg.getAttendeeslist({});\n          ZoomMtg.getCurrentUser({\n            success: (res) => console.log('Current user:', res.result.currentUser)\n          });\n        },\n        error: (err) => console.error('Join failed:', err)\n      };\n\n      \u002F\u002F IMPORTANT: only include optional fields when they have real values\n      \u002F\u002F Passing undefined for some optional fields can cause runtime join errors\n      if (userEmail) joinPayload.userEmail = userEmail;\n      if (tk) joinPayload.tk = tk;\n      if (zak) joinPayload.zak = zak;\n\n      ZoomMtg.join(joinPayload);\n    },\n    error: (err) => console.error('Init failed:', err)\n  });\n});\n",[638],{"type":50,"tag":76,"props":639,"children":640},{"__ignoreMap":243},[641,650,714,723,731,739,746,755,781,806,814,823,875,918,927,936,963,995,1018,1054,1080,1122,1131,1140,1163,1185,1207,1229,1251,1287,1329,1337,1346,1381,1406,1497,1514,1523,1596,1605,1613,1622,1631,1680,1726,1772,1780,1814,1823,1893,1910],{"type":50,"tag":249,"props":642,"children":643},{"class":251,"line":252},[644],{"type":50,"tag":249,"props":645,"children":647},{"style":646},"--shiki-light:#90A4AE;--shiki-light-font-style:italic;--shiki-default:#546E7A;--shiki-default-font-style:italic;--shiki-dark:#676E95;--shiki-dark-font-style:italic",[648],{"type":55,"value":649},"\u002F\u002F Step 1: Check browser compatibility\n",{"type":50,"tag":249,"props":651,"children":652},{"class":251,"line":405},[653,658,663,669,674,678,683,687,692,696,700,705,710],{"type":50,"tag":249,"props":654,"children":655},{"style":301},[656],{"type":55,"value":657},"console",{"type":50,"tag":249,"props":659,"children":660},{"style":295},[661],{"type":55,"value":662},".",{"type":50,"tag":249,"props":664,"children":666},{"style":665},"--shiki-light:#6182B8;--shiki-default:#82AAFF;--shiki-dark:#82AAFF",[667],{"type":55,"value":668},"log",{"type":50,"tag":249,"props":670,"children":671},{"style":301},[672],{"type":55,"value":673},"(",{"type":50,"tag":249,"props":675,"children":676},{"style":295},[677],{"type":55,"value":329},{"type":50,"tag":249,"props":679,"children":680},{"style":261},[681],{"type":55,"value":682},"Requirements:",{"type":50,"tag":249,"props":684,"children":685},{"style":295},[686],{"type":55,"value":329},{"type":50,"tag":249,"props":688,"children":689},{"style":295},[690],{"type":55,"value":691},",",{"type":50,"tag":249,"props":693,"children":694},{"style":301},[695],{"type":55,"value":304},{"type":50,"tag":249,"props":697,"children":698},{"style":295},[699],{"type":55,"value":662},{"type":50,"tag":249,"props":701,"children":702},{"style":665},[703],{"type":55,"value":704},"checkSystemRequirements",{"type":50,"tag":249,"props":706,"children":707},{"style":301},[708],{"type":55,"value":709},"())",{"type":50,"tag":249,"props":711,"children":712},{"style":295},[713],{"type":55,"value":334},{"type":50,"tag":249,"props":715,"children":716},{"class":251,"line":450},[717],{"type":50,"tag":249,"props":718,"children":720},{"emptyLinePlaceholder":719},true,[721],{"type":55,"value":722},"\n",{"type":50,"tag":249,"props":724,"children":725},{"class":251,"line":495},[726],{"type":50,"tag":249,"props":727,"children":728},{"style":646},[729],{"type":55,"value":730},"\u002F\u002F Step 2: Set CDN path (optional - for China or custom hosting)\n",{"type":50,"tag":249,"props":732,"children":733},{"class":251,"line":540},[734],{"type":50,"tag":249,"props":735,"children":736},{"style":646},[737],{"type":55,"value":738},"\u002F\u002F ZoomMtg.setZoomJSLib('https:\u002F\u002Fsource.zoom.us\u002F{VERSION}\u002Flib', '\u002Fav');\n",{"type":50,"tag":249,"props":740,"children":741},{"class":251,"line":585},[742],{"type":50,"tag":249,"props":743,"children":744},{"emptyLinePlaceholder":719},[745],{"type":55,"value":722},{"type":50,"tag":249,"props":747,"children":749},{"class":251,"line":748},7,[750],{"type":50,"tag":249,"props":751,"children":752},{"style":646},[753],{"type":55,"value":754},"\u002F\u002F Step 3: Preload WebAssembly modules\n",{"type":50,"tag":249,"props":756,"children":758},{"class":251,"line":757},8,[759,763,767,772,777],{"type":50,"tag":249,"props":760,"children":761},{"style":301},[762],{"type":55,"value":81},{"type":50,"tag":249,"props":764,"children":765},{"style":295},[766],{"type":55,"value":662},{"type":50,"tag":249,"props":768,"children":769},{"style":665},[770],{"type":55,"value":771},"preLoadWasm",{"type":50,"tag":249,"props":773,"children":774},{"style":301},[775],{"type":55,"value":776},"()",{"type":50,"tag":249,"props":778,"children":779},{"style":295},[780],{"type":55,"value":334},{"type":50,"tag":249,"props":782,"children":784},{"class":251,"line":783},9,[785,789,793,798,802],{"type":50,"tag":249,"props":786,"children":787},{"style":301},[788],{"type":55,"value":81},{"type":50,"tag":249,"props":790,"children":791},{"style":295},[792],{"type":55,"value":662},{"type":50,"tag":249,"props":794,"children":795},{"style":665},[796],{"type":55,"value":797},"prepareWebSDK",{"type":50,"tag":249,"props":799,"children":800},{"style":301},[801],{"type":55,"value":776},{"type":50,"tag":249,"props":803,"children":804},{"style":295},[805],{"type":55,"value":334},{"type":50,"tag":249,"props":807,"children":809},{"class":251,"line":808},10,[810],{"type":50,"tag":249,"props":811,"children":812},{"emptyLinePlaceholder":719},[813],{"type":55,"value":722},{"type":50,"tag":249,"props":815,"children":817},{"class":251,"line":816},11,[818],{"type":50,"tag":249,"props":819,"children":820},{"style":646},[821],{"type":55,"value":822},"\u002F\u002F Step 4: Load language resources\n",{"type":50,"tag":249,"props":824,"children":826},{"class":251,"line":825},12,[827,831,835,840,844,849,853,857,862,866,871],{"type":50,"tag":249,"props":828,"children":829},{"style":301},[830],{"type":55,"value":81},{"type":50,"tag":249,"props":832,"children":833},{"style":295},[834],{"type":55,"value":662},{"type":50,"tag":249,"props":836,"children":837},{"style":301},[838],{"type":55,"value":839},"i18n",{"type":50,"tag":249,"props":841,"children":842},{"style":295},[843],{"type":55,"value":662},{"type":50,"tag":249,"props":845,"children":846},{"style":665},[847],{"type":55,"value":848},"load",{"type":50,"tag":249,"props":850,"children":851},{"style":301},[852],{"type":55,"value":673},{"type":50,"tag":249,"props":854,"children":855},{"style":295},[856],{"type":55,"value":329},{"type":50,"tag":249,"props":858,"children":859},{"style":261},[860],{"type":55,"value":861},"en-US",{"type":50,"tag":249,"props":863,"children":864},{"style":295},[865],{"type":55,"value":329},{"type":50,"tag":249,"props":867,"children":868},{"style":301},[869],{"type":55,"value":870},")",{"type":50,"tag":249,"props":872,"children":873},{"style":295},[874],{"type":55,"value":334},{"type":50,"tag":249,"props":876,"children":878},{"class":251,"line":877},13,[879,883,887,891,895,900,904,908,913],{"type":50,"tag":249,"props":880,"children":881},{"style":301},[882],{"type":55,"value":81},{"type":50,"tag":249,"props":884,"children":885},{"style":295},[886],{"type":55,"value":662},{"type":50,"tag":249,"props":888,"children":889},{"style":301},[890],{"type":55,"value":839},{"type":50,"tag":249,"props":892,"children":893},{"style":295},[894],{"type":55,"value":662},{"type":50,"tag":249,"props":896,"children":897},{"style":665},[898],{"type":55,"value":899},"onLoad",{"type":50,"tag":249,"props":901,"children":902},{"style":301},[903],{"type":55,"value":673},{"type":50,"tag":249,"props":905,"children":906},{"style":295},[907],{"type":55,"value":776},{"type":50,"tag":249,"props":909,"children":910},{"style":366},[911],{"type":55,"value":912}," =>",{"type":50,"tag":249,"props":914,"children":915},{"style":295},[916],{"type":55,"value":917}," {\n",{"type":50,"tag":249,"props":919,"children":921},{"class":251,"line":920},14,[922],{"type":50,"tag":249,"props":923,"children":924},{"style":360},[925],{"type":55,"value":926},"  \n",{"type":50,"tag":249,"props":928,"children":930},{"class":251,"line":929},15,[931],{"type":50,"tag":249,"props":932,"children":933},{"style":646},[934],{"type":55,"value":935},"  \u002F\u002F Step 5: Initialize SDK\n",{"type":50,"tag":249,"props":937,"children":939},{"class":251,"line":938},16,[940,945,949,954,958],{"type":50,"tag":249,"props":941,"children":942},{"style":301},[943],{"type":55,"value":944},"  ZoomMtg",{"type":50,"tag":249,"props":946,"children":947},{"style":295},[948],{"type":55,"value":662},{"type":50,"tag":249,"props":950,"children":951},{"style":665},[952],{"type":55,"value":953},"init",{"type":50,"tag":249,"props":955,"children":956},{"style":360},[957],{"type":55,"value":673},{"type":50,"tag":249,"props":959,"children":960},{"style":295},[961],{"type":55,"value":962},"{\n",{"type":50,"tag":249,"props":964,"children":966},{"class":251,"line":965},17,[967,972,977,981,986,990],{"type":50,"tag":249,"props":968,"children":969},{"style":360},[970],{"type":55,"value":971},"    leaveUrl",{"type":50,"tag":249,"props":973,"children":974},{"style":295},[975],{"type":55,"value":976},":",{"type":50,"tag":249,"props":978,"children":979},{"style":295},[980],{"type":55,"value":319},{"type":50,"tag":249,"props":982,"children":983},{"style":261},[984],{"type":55,"value":985},"\u002Fmeeting-ended",{"type":50,"tag":249,"props":987,"children":988},{"style":295},[989],{"type":55,"value":329},{"type":50,"tag":249,"props":991,"children":992},{"style":295},[993],{"type":55,"value":994},",\n",{"type":50,"tag":249,"props":996,"children":998},{"class":251,"line":997},18,[999,1004,1008,1014],{"type":50,"tag":249,"props":1000,"children":1001},{"style":360},[1002],{"type":55,"value":1003},"    patchJsMedia",{"type":50,"tag":249,"props":1005,"children":1006},{"style":295},[1007],{"type":55,"value":976},{"type":50,"tag":249,"props":1009,"children":1011},{"style":1010},"--shiki-light:#FF5370;--shiki-default:#FF9CAC;--shiki-dark:#FF9CAC",[1012],{"type":55,"value":1013}," true",{"type":50,"tag":249,"props":1015,"children":1016},{"style":295},[1017],{"type":55,"value":994},{"type":50,"tag":249,"props":1019,"children":1021},{"class":251,"line":1020},19,[1022,1027,1031,1036,1041,1045,1050],{"type":50,"tag":249,"props":1023,"children":1024},{"style":360},[1025],{"type":55,"value":1026},"    disableCORP",{"type":50,"tag":249,"props":1028,"children":1029},{"style":295},[1030],{"type":55,"value":976},{"type":50,"tag":249,"props":1032,"children":1033},{"style":295},[1034],{"type":55,"value":1035}," !",{"type":50,"tag":249,"props":1037,"children":1038},{"style":301},[1039],{"type":55,"value":1040},"window",{"type":50,"tag":249,"props":1042,"children":1043},{"style":295},[1044],{"type":55,"value":662},{"type":50,"tag":249,"props":1046,"children":1047},{"style":301},[1048],{"type":55,"value":1049},"crossOriginIsolated",{"type":50,"tag":249,"props":1051,"children":1052},{"style":295},[1053],{"type":55,"value":994},{"type":50,"tag":249,"props":1055,"children":1057},{"class":251,"line":1056},20,[1058,1063,1067,1072,1076],{"type":50,"tag":249,"props":1059,"children":1060},{"style":665},[1061],{"type":55,"value":1062},"    success",{"type":50,"tag":249,"props":1064,"children":1065},{"style":295},[1066],{"type":55,"value":976},{"type":50,"tag":249,"props":1068,"children":1069},{"style":295},[1070],{"type":55,"value":1071}," ()",{"type":50,"tag":249,"props":1073,"children":1074},{"style":366},[1075],{"type":55,"value":912},{"type":50,"tag":249,"props":1077,"children":1078},{"style":295},[1079],{"type":55,"value":917},{"type":50,"tag":249,"props":1081,"children":1083},{"class":251,"line":1082},21,[1084,1089,1093,1097,1101,1105,1110,1114,1118],{"type":50,"tag":249,"props":1085,"children":1086},{"style":301},[1087],{"type":55,"value":1088},"      console",{"type":50,"tag":249,"props":1090,"children":1091},{"style":295},[1092],{"type":55,"value":662},{"type":50,"tag":249,"props":1094,"children":1095},{"style":665},[1096],{"type":55,"value":668},{"type":50,"tag":249,"props":1098,"children":1099},{"style":360},[1100],{"type":55,"value":673},{"type":50,"tag":249,"props":1102,"children":1103},{"style":295},[1104],{"type":55,"value":329},{"type":50,"tag":249,"props":1106,"children":1107},{"style":261},[1108],{"type":55,"value":1109},"SDK initialized",{"type":50,"tag":249,"props":1111,"children":1112},{"style":295},[1113],{"type":55,"value":329},{"type":50,"tag":249,"props":1115,"children":1116},{"style":360},[1117],{"type":55,"value":870},{"type":50,"tag":249,"props":1119,"children":1120},{"style":295},[1121],{"type":55,"value":334},{"type":50,"tag":249,"props":1123,"children":1125},{"class":251,"line":1124},22,[1126],{"type":50,"tag":249,"props":1127,"children":1128},{"style":360},[1129],{"type":55,"value":1130},"      \n",{"type":50,"tag":249,"props":1132,"children":1134},{"class":251,"line":1133},23,[1135],{"type":50,"tag":249,"props":1136,"children":1137},{"style":646},[1138],{"type":55,"value":1139},"      \u002F\u002F Step 6: Join meeting\n",{"type":50,"tag":249,"props":1141,"children":1143},{"class":251,"line":1142},24,[1144,1149,1154,1159],{"type":50,"tag":249,"props":1145,"children":1146},{"style":366},[1147],{"type":55,"value":1148},"      const",{"type":50,"tag":249,"props":1150,"children":1151},{"style":301},[1152],{"type":55,"value":1153}," joinPayload",{"type":50,"tag":249,"props":1155,"children":1156},{"style":295},[1157],{"type":55,"value":1158}," =",{"type":50,"tag":249,"props":1160,"children":1161},{"style":295},[1162],{"type":55,"value":917},{"type":50,"tag":249,"props":1164,"children":1166},{"class":251,"line":1165},25,[1167,1172,1176,1181],{"type":50,"tag":249,"props":1168,"children":1169},{"style":360},[1170],{"type":55,"value":1171},"        signature",{"type":50,"tag":249,"props":1173,"children":1174},{"style":295},[1175],{"type":55,"value":976},{"type":50,"tag":249,"props":1177,"children":1178},{"style":301},[1179],{"type":55,"value":1180}," signature",{"type":50,"tag":249,"props":1182,"children":1183},{"style":295},[1184],{"type":55,"value":994},{"type":50,"tag":249,"props":1186,"children":1188},{"class":251,"line":1187},26,[1189,1194,1198,1203],{"type":50,"tag":249,"props":1190,"children":1191},{"style":360},[1192],{"type":55,"value":1193},"        meetingNumber",{"type":50,"tag":249,"props":1195,"children":1196},{"style":295},[1197],{"type":55,"value":976},{"type":50,"tag":249,"props":1199,"children":1200},{"style":301},[1201],{"type":55,"value":1202}," meetingNumber",{"type":50,"tag":249,"props":1204,"children":1205},{"style":295},[1206],{"type":55,"value":994},{"type":50,"tag":249,"props":1208,"children":1210},{"class":251,"line":1209},27,[1211,1216,1220,1225],{"type":50,"tag":249,"props":1212,"children":1213},{"style":360},[1214],{"type":55,"value":1215},"        userName",{"type":50,"tag":249,"props":1217,"children":1218},{"style":295},[1219],{"type":55,"value":976},{"type":50,"tag":249,"props":1221,"children":1222},{"style":301},[1223],{"type":55,"value":1224}," userName",{"type":50,"tag":249,"props":1226,"children":1227},{"style":295},[1228],{"type":55,"value":994},{"type":50,"tag":249,"props":1230,"children":1232},{"class":251,"line":1231},28,[1233,1238,1242,1247],{"type":50,"tag":249,"props":1234,"children":1235},{"style":360},[1236],{"type":55,"value":1237},"        passWord",{"type":50,"tag":249,"props":1239,"children":1240},{"style":295},[1241],{"type":55,"value":976},{"type":50,"tag":249,"props":1243,"children":1244},{"style":301},[1245],{"type":55,"value":1246}," passWord",{"type":50,"tag":249,"props":1248,"children":1249},{"style":295},[1250],{"type":55,"value":994},{"type":50,"tag":249,"props":1252,"children":1254},{"class":251,"line":1253},29,[1255,1260,1264,1269,1275,1279,1283],{"type":50,"tag":249,"props":1256,"children":1257},{"style":665},[1258],{"type":55,"value":1259},"        success",{"type":50,"tag":249,"props":1261,"children":1262},{"style":295},[1263],{"type":55,"value":976},{"type":50,"tag":249,"props":1265,"children":1266},{"style":295},[1267],{"type":55,"value":1268}," (",{"type":50,"tag":249,"props":1270,"children":1272},{"style":1271},"--shiki-light:#90A4AE;--shiki-light-font-style:italic;--shiki-default:#EEFFFF;--shiki-default-font-style:italic;--shiki-dark:#BABED8;--shiki-dark-font-style:italic",[1273],{"type":55,"value":1274},"res",{"type":50,"tag":249,"props":1276,"children":1277},{"style":295},[1278],{"type":55,"value":870},{"type":50,"tag":249,"props":1280,"children":1281},{"style":366},[1282],{"type":55,"value":912},{"type":50,"tag":249,"props":1284,"children":1285},{"style":295},[1286],{"type":55,"value":917},{"type":50,"tag":249,"props":1288,"children":1290},{"class":251,"line":1289},30,[1291,1296,1300,1304,1308,1312,1317,1321,1325],{"type":50,"tag":249,"props":1292,"children":1293},{"style":301},[1294],{"type":55,"value":1295},"          console",{"type":50,"tag":249,"props":1297,"children":1298},{"style":295},[1299],{"type":55,"value":662},{"type":50,"tag":249,"props":1301,"children":1302},{"style":665},[1303],{"type":55,"value":668},{"type":50,"tag":249,"props":1305,"children":1306},{"style":360},[1307],{"type":55,"value":673},{"type":50,"tag":249,"props":1309,"children":1310},{"style":295},[1311],{"type":55,"value":329},{"type":50,"tag":249,"props":1313,"children":1314},{"style":261},[1315],{"type":55,"value":1316},"Joined meeting",{"type":50,"tag":249,"props":1318,"children":1319},{"style":295},[1320],{"type":55,"value":329},{"type":50,"tag":249,"props":1322,"children":1323},{"style":360},[1324],{"type":55,"value":870},{"type":50,"tag":249,"props":1326,"children":1327},{"style":295},[1328],{"type":55,"value":334},{"type":50,"tag":249,"props":1330,"children":1332},{"class":251,"line":1331},31,[1333],{"type":50,"tag":249,"props":1334,"children":1335},{"emptyLinePlaceholder":719},[1336],{"type":55,"value":722},{"type":50,"tag":249,"props":1338,"children":1340},{"class":251,"line":1339},32,[1341],{"type":50,"tag":249,"props":1342,"children":1343},{"style":646},[1344],{"type":55,"value":1345},"          \u002F\u002F Step 7: Post-join operations\n",{"type":50,"tag":249,"props":1347,"children":1349},{"class":251,"line":1348},33,[1350,1355,1359,1364,1368,1373,1377],{"type":50,"tag":249,"props":1351,"children":1352},{"style":301},[1353],{"type":55,"value":1354},"          ZoomMtg",{"type":50,"tag":249,"props":1356,"children":1357},{"style":295},[1358],{"type":55,"value":662},{"type":50,"tag":249,"props":1360,"children":1361},{"style":665},[1362],{"type":55,"value":1363},"getAttendeeslist",{"type":50,"tag":249,"props":1365,"children":1366},{"style":360},[1367],{"type":55,"value":673},{"type":50,"tag":249,"props":1369,"children":1370},{"style":295},[1371],{"type":55,"value":1372},"{}",{"type":50,"tag":249,"props":1374,"children":1375},{"style":360},[1376],{"type":55,"value":870},{"type":50,"tag":249,"props":1378,"children":1379},{"style":295},[1380],{"type":55,"value":334},{"type":50,"tag":249,"props":1382,"children":1384},{"class":251,"line":1383},34,[1385,1389,1393,1398,1402],{"type":50,"tag":249,"props":1386,"children":1387},{"style":301},[1388],{"type":55,"value":1354},{"type":50,"tag":249,"props":1390,"children":1391},{"style":295},[1392],{"type":55,"value":662},{"type":50,"tag":249,"props":1394,"children":1395},{"style":665},[1396],{"type":55,"value":1397},"getCurrentUser",{"type":50,"tag":249,"props":1399,"children":1400},{"style":360},[1401],{"type":55,"value":673},{"type":50,"tag":249,"props":1403,"children":1404},{"style":295},[1405],{"type":55,"value":962},{"type":50,"tag":249,"props":1407,"children":1409},{"class":251,"line":1408},35,[1410,1415,1419,1423,1427,1431,1435,1440,1444,1448,1452,1456,1461,1465,1469,1474,1478,1483,1487,1492],{"type":50,"tag":249,"props":1411,"children":1412},{"style":665},[1413],{"type":55,"value":1414},"            success",{"type":50,"tag":249,"props":1416,"children":1417},{"style":295},[1418],{"type":55,"value":976},{"type":50,"tag":249,"props":1420,"children":1421},{"style":295},[1422],{"type":55,"value":1268},{"type":50,"tag":249,"props":1424,"children":1425},{"style":1271},[1426],{"type":55,"value":1274},{"type":50,"tag":249,"props":1428,"children":1429},{"style":295},[1430],{"type":55,"value":870},{"type":50,"tag":249,"props":1432,"children":1433},{"style":366},[1434],{"type":55,"value":912},{"type":50,"tag":249,"props":1436,"children":1437},{"style":301},[1438],{"type":55,"value":1439}," console",{"type":50,"tag":249,"props":1441,"children":1442},{"style":295},[1443],{"type":55,"value":662},{"type":50,"tag":249,"props":1445,"children":1446},{"style":665},[1447],{"type":55,"value":668},{"type":50,"tag":249,"props":1449,"children":1450},{"style":360},[1451],{"type":55,"value":673},{"type":50,"tag":249,"props":1453,"children":1454},{"style":295},[1455],{"type":55,"value":329},{"type":50,"tag":249,"props":1457,"children":1458},{"style":261},[1459],{"type":55,"value":1460},"Current user:",{"type":50,"tag":249,"props":1462,"children":1463},{"style":295},[1464],{"type":55,"value":329},{"type":50,"tag":249,"props":1466,"children":1467},{"style":295},[1468],{"type":55,"value":691},{"type":50,"tag":249,"props":1470,"children":1471},{"style":301},[1472],{"type":55,"value":1473}," res",{"type":50,"tag":249,"props":1475,"children":1476},{"style":295},[1477],{"type":55,"value":662},{"type":50,"tag":249,"props":1479,"children":1480},{"style":301},[1481],{"type":55,"value":1482},"result",{"type":50,"tag":249,"props":1484,"children":1485},{"style":295},[1486],{"type":55,"value":662},{"type":50,"tag":249,"props":1488,"children":1489},{"style":301},[1490],{"type":55,"value":1491},"currentUser",{"type":50,"tag":249,"props":1493,"children":1494},{"style":360},[1495],{"type":55,"value":1496},")\n",{"type":50,"tag":249,"props":1498,"children":1500},{"class":251,"line":1499},36,[1501,1506,1510],{"type":50,"tag":249,"props":1502,"children":1503},{"style":295},[1504],{"type":55,"value":1505},"          }",{"type":50,"tag":249,"props":1507,"children":1508},{"style":360},[1509],{"type":55,"value":870},{"type":50,"tag":249,"props":1511,"children":1512},{"style":295},[1513],{"type":55,"value":334},{"type":50,"tag":249,"props":1515,"children":1517},{"class":251,"line":1516},37,[1518],{"type":50,"tag":249,"props":1519,"children":1520},{"style":295},[1521],{"type":55,"value":1522},"        },\n",{"type":50,"tag":249,"props":1524,"children":1526},{"class":251,"line":1525},38,[1527,1532,1536,1540,1545,1549,1553,1557,1561,1566,1570,1574,1579,1583,1587,1592],{"type":50,"tag":249,"props":1528,"children":1529},{"style":665},[1530],{"type":55,"value":1531},"        error",{"type":50,"tag":249,"props":1533,"children":1534},{"style":295},[1535],{"type":55,"value":976},{"type":50,"tag":249,"props":1537,"children":1538},{"style":295},[1539],{"type":55,"value":1268},{"type":50,"tag":249,"props":1541,"children":1542},{"style":1271},[1543],{"type":55,"value":1544},"err",{"type":50,"tag":249,"props":1546,"children":1547},{"style":295},[1548],{"type":55,"value":870},{"type":50,"tag":249,"props":1550,"children":1551},{"style":366},[1552],{"type":55,"value":912},{"type":50,"tag":249,"props":1554,"children":1555},{"style":301},[1556],{"type":55,"value":1439},{"type":50,"tag":249,"props":1558,"children":1559},{"style":295},[1560],{"type":55,"value":662},{"type":50,"tag":249,"props":1562,"children":1563},{"style":665},[1564],{"type":55,"value":1565},"error",{"type":50,"tag":249,"props":1567,"children":1568},{"style":360},[1569],{"type":55,"value":673},{"type":50,"tag":249,"props":1571,"children":1572},{"style":295},[1573],{"type":55,"value":329},{"type":50,"tag":249,"props":1575,"children":1576},{"style":261},[1577],{"type":55,"value":1578},"Join failed:",{"type":50,"tag":249,"props":1580,"children":1581},{"style":295},[1582],{"type":55,"value":329},{"type":50,"tag":249,"props":1584,"children":1585},{"style":295},[1586],{"type":55,"value":691},{"type":50,"tag":249,"props":1588,"children":1589},{"style":301},[1590],{"type":55,"value":1591}," err",{"type":50,"tag":249,"props":1593,"children":1594},{"style":360},[1595],{"type":55,"value":1496},{"type":50,"tag":249,"props":1597,"children":1599},{"class":251,"line":1598},39,[1600],{"type":50,"tag":249,"props":1601,"children":1602},{"style":295},[1603],{"type":55,"value":1604},"      };\n",{"type":50,"tag":249,"props":1606,"children":1608},{"class":251,"line":1607},40,[1609],{"type":50,"tag":249,"props":1610,"children":1611},{"emptyLinePlaceholder":719},[1612],{"type":55,"value":722},{"type":50,"tag":249,"props":1614,"children":1616},{"class":251,"line":1615},41,[1617],{"type":50,"tag":249,"props":1618,"children":1619},{"style":646},[1620],{"type":55,"value":1621},"      \u002F\u002F IMPORTANT: only include optional fields when they have real values\n",{"type":50,"tag":249,"props":1623,"children":1625},{"class":251,"line":1624},42,[1626],{"type":50,"tag":249,"props":1627,"children":1628},{"style":646},[1629],{"type":55,"value":1630},"      \u002F\u002F Passing undefined for some optional fields can cause runtime join errors\n",{"type":50,"tag":249,"props":1632,"children":1634},{"class":251,"line":1633},43,[1635,1640,1644,1649,1654,1659,1663,1667,1671,1676],{"type":50,"tag":249,"props":1636,"children":1637},{"style":289},[1638],{"type":55,"value":1639},"      if",{"type":50,"tag":249,"props":1641,"children":1642},{"style":360},[1643],{"type":55,"value":1268},{"type":50,"tag":249,"props":1645,"children":1646},{"style":301},[1647],{"type":55,"value":1648},"userEmail",{"type":50,"tag":249,"props":1650,"children":1651},{"style":360},[1652],{"type":55,"value":1653},") ",{"type":50,"tag":249,"props":1655,"children":1656},{"style":301},[1657],{"type":55,"value":1658},"joinPayload",{"type":50,"tag":249,"props":1660,"children":1661},{"style":295},[1662],{"type":55,"value":662},{"type":50,"tag":249,"props":1664,"children":1665},{"style":301},[1666],{"type":55,"value":1648},{"type":50,"tag":249,"props":1668,"children":1669},{"style":295},[1670],{"type":55,"value":1158},{"type":50,"tag":249,"props":1672,"children":1673},{"style":301},[1674],{"type":55,"value":1675}," userEmail",{"type":50,"tag":249,"props":1677,"children":1678},{"style":295},[1679],{"type":55,"value":334},{"type":50,"tag":249,"props":1681,"children":1683},{"class":251,"line":1682},44,[1684,1688,1692,1697,1701,1705,1709,1713,1717,1722],{"type":50,"tag":249,"props":1685,"children":1686},{"style":289},[1687],{"type":55,"value":1639},{"type":50,"tag":249,"props":1689,"children":1690},{"style":360},[1691],{"type":55,"value":1268},{"type":50,"tag":249,"props":1693,"children":1694},{"style":301},[1695],{"type":55,"value":1696},"tk",{"type":50,"tag":249,"props":1698,"children":1699},{"style":360},[1700],{"type":55,"value":1653},{"type":50,"tag":249,"props":1702,"children":1703},{"style":301},[1704],{"type":55,"value":1658},{"type":50,"tag":249,"props":1706,"children":1707},{"style":295},[1708],{"type":55,"value":662},{"type":50,"tag":249,"props":1710,"children":1711},{"style":301},[1712],{"type":55,"value":1696},{"type":50,"tag":249,"props":1714,"children":1715},{"style":295},[1716],{"type":55,"value":1158},{"type":50,"tag":249,"props":1718,"children":1719},{"style":301},[1720],{"type":55,"value":1721}," tk",{"type":50,"tag":249,"props":1723,"children":1724},{"style":295},[1725],{"type":55,"value":334},{"type":50,"tag":249,"props":1727,"children":1729},{"class":251,"line":1728},45,[1730,1734,1738,1743,1747,1751,1755,1759,1763,1768],{"type":50,"tag":249,"props":1731,"children":1732},{"style":289},[1733],{"type":55,"value":1639},{"type":50,"tag":249,"props":1735,"children":1736},{"style":360},[1737],{"type":55,"value":1268},{"type":50,"tag":249,"props":1739,"children":1740},{"style":301},[1741],{"type":55,"value":1742},"zak",{"type":50,"tag":249,"props":1744,"children":1745},{"style":360},[1746],{"type":55,"value":1653},{"type":50,"tag":249,"props":1748,"children":1749},{"style":301},[1750],{"type":55,"value":1658},{"type":50,"tag":249,"props":1752,"children":1753},{"style":295},[1754],{"type":55,"value":662},{"type":50,"tag":249,"props":1756,"children":1757},{"style":301},[1758],{"type":55,"value":1742},{"type":50,"tag":249,"props":1760,"children":1761},{"style":295},[1762],{"type":55,"value":1158},{"type":50,"tag":249,"props":1764,"children":1765},{"style":301},[1766],{"type":55,"value":1767}," zak",{"type":50,"tag":249,"props":1769,"children":1770},{"style":295},[1771],{"type":55,"value":334},{"type":50,"tag":249,"props":1773,"children":1775},{"class":251,"line":1774},46,[1776],{"type":50,"tag":249,"props":1777,"children":1778},{"emptyLinePlaceholder":719},[1779],{"type":55,"value":722},{"type":50,"tag":249,"props":1781,"children":1783},{"class":251,"line":1782},47,[1784,1789,1793,1798,1802,1806,1810],{"type":50,"tag":249,"props":1785,"children":1786},{"style":301},[1787],{"type":55,"value":1788},"      ZoomMtg",{"type":50,"tag":249,"props":1790,"children":1791},{"style":295},[1792],{"type":55,"value":662},{"type":50,"tag":249,"props":1794,"children":1795},{"style":665},[1796],{"type":55,"value":1797},"join",{"type":50,"tag":249,"props":1799,"children":1800},{"style":360},[1801],{"type":55,"value":673},{"type":50,"tag":249,"props":1803,"children":1804},{"style":301},[1805],{"type":55,"value":1658},{"type":50,"tag":249,"props":1807,"children":1808},{"style":360},[1809],{"type":55,"value":870},{"type":50,"tag":249,"props":1811,"children":1812},{"style":295},[1813],{"type":55,"value":334},{"type":50,"tag":249,"props":1815,"children":1817},{"class":251,"line":1816},48,[1818],{"type":50,"tag":249,"props":1819,"children":1820},{"style":295},[1821],{"type":55,"value":1822},"    },\n",{"type":50,"tag":249,"props":1824,"children":1826},{"class":251,"line":1825},49,[1827,1832,1836,1840,1844,1848,1852,1856,1860,1864,1868,1872,1877,1881,1885,1889],{"type":50,"tag":249,"props":1828,"children":1829},{"style":665},[1830],{"type":55,"value":1831},"    error",{"type":50,"tag":249,"props":1833,"children":1834},{"style":295},[1835],{"type":55,"value":976},{"type":50,"tag":249,"props":1837,"children":1838},{"style":295},[1839],{"type":55,"value":1268},{"type":50,"tag":249,"props":1841,"children":1842},{"style":1271},[1843],{"type":55,"value":1544},{"type":50,"tag":249,"props":1845,"children":1846},{"style":295},[1847],{"type":55,"value":870},{"type":50,"tag":249,"props":1849,"children":1850},{"style":366},[1851],{"type":55,"value":912},{"type":50,"tag":249,"props":1853,"children":1854},{"style":301},[1855],{"type":55,"value":1439},{"type":50,"tag":249,"props":1857,"children":1858},{"style":295},[1859],{"type":55,"value":662},{"type":50,"tag":249,"props":1861,"children":1862},{"style":665},[1863],{"type":55,"value":1565},{"type":50,"tag":249,"props":1865,"children":1866},{"style":360},[1867],{"type":55,"value":673},{"type":50,"tag":249,"props":1869,"children":1870},{"style":295},[1871],{"type":55,"value":329},{"type":50,"tag":249,"props":1873,"children":1874},{"style":261},[1875],{"type":55,"value":1876},"Init failed:",{"type":50,"tag":249,"props":1878,"children":1879},{"style":295},[1880],{"type":55,"value":329},{"type":50,"tag":249,"props":1882,"children":1883},{"style":295},[1884],{"type":55,"value":691},{"type":50,"tag":249,"props":1886,"children":1887},{"style":301},[1888],{"type":55,"value":1591},{"type":50,"tag":249,"props":1890,"children":1891},{"style":360},[1892],{"type":55,"value":1496},{"type":50,"tag":249,"props":1894,"children":1896},{"class":251,"line":1895},50,[1897,1902,1906],{"type":50,"tag":249,"props":1898,"children":1899},{"style":295},[1900],{"type":55,"value":1901},"  }",{"type":50,"tag":249,"props":1903,"children":1904},{"style":360},[1905],{"type":55,"value":870},{"type":50,"tag":249,"props":1907,"children":1908},{"style":295},[1909],{"type":55,"value":334},{"type":50,"tag":249,"props":1911,"children":1913},{"class":251,"line":1912},51,[1914,1919,1923],{"type":50,"tag":249,"props":1915,"children":1916},{"style":295},[1917],{"type":55,"value":1918},"}",{"type":50,"tag":249,"props":1920,"children":1921},{"style":301},[1922],{"type":55,"value":870},{"type":50,"tag":249,"props":1924,"children":1925},{"style":295},[1926],{"type":55,"value":334},{"type":50,"tag":64,"props":1928,"children":1930},{"id":1929},"zoommtginit-all-options",[1931],{"type":55,"value":1932},"ZoomMtg.init() - All Options",{"type":50,"tag":231,"props":1934,"children":1936},{"id":1935},"required",[1937],{"type":55,"value":1938},"Required",{"type":50,"tag":85,"props":1940,"children":1941},{},[1942,1963],{"type":50,"tag":89,"props":1943,"children":1944},{},[1945],{"type":50,"tag":93,"props":1946,"children":1947},{},[1948,1953,1958],{"type":50,"tag":97,"props":1949,"children":1950},{},[1951],{"type":55,"value":1952},"Parameter",{"type":50,"tag":97,"props":1954,"children":1955},{},[1956],{"type":55,"value":1957},"Type",{"type":50,"tag":97,"props":1959,"children":1960},{},[1961],{"type":55,"value":1962},"Description",{"type":50,"tag":108,"props":1964,"children":1965},{},[1966],{"type":50,"tag":93,"props":1967,"children":1968},{},[1969,1978,1987],{"type":50,"tag":115,"props":1970,"children":1971},{},[1972],{"type":50,"tag":76,"props":1973,"children":1975},{"className":1974},[],[1976],{"type":55,"value":1977},"leaveUrl",{"type":50,"tag":115,"props":1979,"children":1980},{},[1981],{"type":50,"tag":76,"props":1982,"children":1984},{"className":1983},[],[1985],{"type":55,"value":1986},"string",{"type":50,"tag":115,"props":1988,"children":1989},{},[1990],{"type":55,"value":1991},"URL to redirect after leaving meeting",{"type":50,"tag":231,"props":1993,"children":1995},{"id":1994},"ui-customization",[1996],{"type":55,"value":1997},"UI Customization",{"type":50,"tag":85,"props":1999,"children":2000},{},[2001,2024],{"type":50,"tag":89,"props":2002,"children":2003},{},[2004],{"type":50,"tag":93,"props":2005,"children":2006},{},[2007,2011,2015,2020],{"type":50,"tag":97,"props":2008,"children":2009},{},[2010],{"type":55,"value":1952},{"type":50,"tag":97,"props":2012,"children":2013},{},[2014],{"type":55,"value":1957},{"type":50,"tag":97,"props":2016,"children":2017},{},[2018],{"type":55,"value":2019},"Default",{"type":50,"tag":97,"props":2021,"children":2022},{},[2023],{"type":55,"value":1962},{"type":50,"tag":108,"props":2025,"children":2026},{},[2027,2062,2096,2129,2162,2195,2228,2261,2294,2327,2360,2393,2438,2471,2504,2537,2570],{"type":50,"tag":93,"props":2028,"children":2029},{},[2030,2039,2048,2057],{"type":50,"tag":115,"props":2031,"children":2032},{},[2033],{"type":50,"tag":76,"props":2034,"children":2036},{"className":2035},[],[2037],{"type":55,"value":2038},"showMeetingHeader",{"type":50,"tag":115,"props":2040,"children":2041},{},[2042],{"type":50,"tag":76,"props":2043,"children":2045},{"className":2044},[],[2046],{"type":55,"value":2047},"boolean",{"type":50,"tag":115,"props":2049,"children":2050},{},[2051],{"type":50,"tag":76,"props":2052,"children":2054},{"className":2053},[],[2055],{"type":55,"value":2056},"true",{"type":50,"tag":115,"props":2058,"children":2059},{},[2060],{"type":55,"value":2061},"Show meeting number and topic",{"type":50,"tag":93,"props":2063,"children":2064},{},[2065,2074,2082,2091],{"type":50,"tag":115,"props":2066,"children":2067},{},[2068],{"type":50,"tag":76,"props":2069,"children":2071},{"className":2070},[],[2072],{"type":55,"value":2073},"disableInvite",{"type":50,"tag":115,"props":2075,"children":2076},{},[2077],{"type":50,"tag":76,"props":2078,"children":2080},{"className":2079},[],[2081],{"type":55,"value":2047},{"type":50,"tag":115,"props":2083,"children":2084},{},[2085],{"type":50,"tag":76,"props":2086,"children":2088},{"className":2087},[],[2089],{"type":55,"value":2090},"false",{"type":50,"tag":115,"props":2092,"children":2093},{},[2094],{"type":55,"value":2095},"Hide invite button",{"type":50,"tag":93,"props":2097,"children":2098},{},[2099,2108,2116,2124],{"type":50,"tag":115,"props":2100,"children":2101},{},[2102],{"type":50,"tag":76,"props":2103,"children":2105},{"className":2104},[],[2106],{"type":55,"value":2107},"disableCallOut",{"type":50,"tag":115,"props":2109,"children":2110},{},[2111],{"type":50,"tag":76,"props":2112,"children":2114},{"className":2113},[],[2115],{"type":55,"value":2047},{"type":50,"tag":115,"props":2117,"children":2118},{},[2119],{"type":50,"tag":76,"props":2120,"children":2122},{"className":2121},[],[2123],{"type":55,"value":2090},{"type":50,"tag":115,"props":2125,"children":2126},{},[2127],{"type":55,"value":2128},"Hide call out option",{"type":50,"tag":93,"props":2130,"children":2131},{},[2132,2141,2149,2157],{"type":50,"tag":115,"props":2133,"children":2134},{},[2135],{"type":50,"tag":76,"props":2136,"children":2138},{"className":2137},[],[2139],{"type":55,"value":2140},"disableRecord",{"type":50,"tag":115,"props":2142,"children":2143},{},[2144],{"type":50,"tag":76,"props":2145,"children":2147},{"className":2146},[],[2148],{"type":55,"value":2047},{"type":50,"tag":115,"props":2150,"children":2151},{},[2152],{"type":50,"tag":76,"props":2153,"children":2155},{"className":2154},[],[2156],{"type":55,"value":2090},{"type":50,"tag":115,"props":2158,"children":2159},{},[2160],{"type":55,"value":2161},"Hide record button",{"type":50,"tag":93,"props":2163,"children":2164},{},[2165,2174,2182,2190],{"type":50,"tag":115,"props":2166,"children":2167},{},[2168],{"type":50,"tag":76,"props":2169,"children":2171},{"className":2170},[],[2172],{"type":55,"value":2173},"disableJoinAudio",{"type":50,"tag":115,"props":2175,"children":2176},{},[2177],{"type":50,"tag":76,"props":2178,"children":2180},{"className":2179},[],[2181],{"type":55,"value":2047},{"type":50,"tag":115,"props":2183,"children":2184},{},[2185],{"type":50,"tag":76,"props":2186,"children":2188},{"className":2187},[],[2189],{"type":55,"value":2090},{"type":50,"tag":115,"props":2191,"children":2192},{},[2193],{"type":55,"value":2194},"Hide join audio option",{"type":50,"tag":93,"props":2196,"children":2197},{},[2198,2207,2215,2223],{"type":50,"tag":115,"props":2199,"children":2200},{},[2201],{"type":50,"tag":76,"props":2202,"children":2204},{"className":2203},[],[2205],{"type":55,"value":2206},"disablePreview",{"type":50,"tag":115,"props":2208,"children":2209},{},[2210],{"type":50,"tag":76,"props":2211,"children":2213},{"className":2212},[],[2214],{"type":55,"value":2047},{"type":50,"tag":115,"props":2216,"children":2217},{},[2218],{"type":50,"tag":76,"props":2219,"children":2221},{"className":2220},[],[2222],{"type":55,"value":2090},{"type":50,"tag":115,"props":2224,"children":2225},{},[2226],{"type":55,"value":2227},"Skip audio\u002Fvideo preview",{"type":50,"tag":93,"props":2229,"children":2230},{},[2231,2240,2248,2256],{"type":50,"tag":115,"props":2232,"children":2233},{},[2234],{"type":50,"tag":76,"props":2235,"children":2237},{"className":2236},[],[2238],{"type":55,"value":2239},"audioPanelAlwaysOpen",{"type":50,"tag":115,"props":2241,"children":2242},{},[2243],{"type":50,"tag":76,"props":2244,"children":2246},{"className":2245},[],[2247],{"type":55,"value":2047},{"type":50,"tag":115,"props":2249,"children":2250},{},[2251],{"type":50,"tag":76,"props":2252,"children":2254},{"className":2253},[],[2255],{"type":55,"value":2090},{"type":50,"tag":115,"props":2257,"children":2258},{},[2259],{"type":55,"value":2260},"Keep audio panel open",{"type":50,"tag":93,"props":2262,"children":2263},{},[2264,2273,2281,2289],{"type":50,"tag":115,"props":2265,"children":2266},{},[2267],{"type":50,"tag":76,"props":2268,"children":2270},{"className":2269},[],[2271],{"type":55,"value":2272},"showPureSharingContent",{"type":50,"tag":115,"props":2274,"children":2275},{},[2276],{"type":50,"tag":76,"props":2277,"children":2279},{"className":2278},[],[2280],{"type":55,"value":2047},{"type":50,"tag":115,"props":2282,"children":2283},{},[2284],{"type":50,"tag":76,"props":2285,"children":2287},{"className":2286},[],[2288],{"type":55,"value":2090},{"type":50,"tag":115,"props":2290,"children":2291},{},[2292],{"type":55,"value":2293},"Prevent overlays on shared content",{"type":50,"tag":93,"props":2295,"children":2296},{},[2297,2306,2314,2322],{"type":50,"tag":115,"props":2298,"children":2299},{},[2300],{"type":50,"tag":76,"props":2301,"children":2303},{"className":2302},[],[2304],{"type":55,"value":2305},"videoHeader",{"type":50,"tag":115,"props":2307,"children":2308},{},[2309],{"type":50,"tag":76,"props":2310,"children":2312},{"className":2311},[],[2313],{"type":55,"value":2047},{"type":50,"tag":115,"props":2315,"children":2316},{},[2317],{"type":50,"tag":76,"props":2318,"children":2320},{"className":2319},[],[2321],{"type":55,"value":2056},{"type":50,"tag":115,"props":2323,"children":2324},{},[2325],{"type":55,"value":2326},"Show video tile header",{"type":50,"tag":93,"props":2328,"children":2329},{},[2330,2339,2347,2355],{"type":50,"tag":115,"props":2331,"children":2332},{},[2333],{"type":50,"tag":76,"props":2334,"children":2336},{"className":2335},[],[2337],{"type":55,"value":2338},"isLockBottom",{"type":50,"tag":115,"props":2340,"children":2341},{},[2342],{"type":50,"tag":76,"props":2343,"children":2345},{"className":2344},[],[2346],{"type":55,"value":2047},{"type":50,"tag":115,"props":2348,"children":2349},{},[2350],{"type":50,"tag":76,"props":2351,"children":2353},{"className":2352},[],[2354],{"type":55,"value":2056},{"type":50,"tag":115,"props":2356,"children":2357},{},[2358],{"type":55,"value":2359},"Show\u002Fhide footer",{"type":50,"tag":93,"props":2361,"children":2362},{},[2363,2372,2380,2388],{"type":50,"tag":115,"props":2364,"children":2365},{},[2366],{"type":50,"tag":76,"props":2367,"children":2369},{"className":2368},[],[2370],{"type":55,"value":2371},"videoDrag",{"type":50,"tag":115,"props":2373,"children":2374},{},[2375],{"type":50,"tag":76,"props":2376,"children":2378},{"className":2377},[],[2379],{"type":55,"value":2047},{"type":50,"tag":115,"props":2381,"children":2382},{},[2383],{"type":50,"tag":76,"props":2384,"children":2386},{"className":2385},[],[2387],{"type":55,"value":2056},{"type":50,"tag":115,"props":2389,"children":2390},{},[2391],{"type":55,"value":2392},"Enable drag video tiles",{"type":50,"tag":93,"props":2394,"children":2395},{},[2396,2405,2413,2422],{"type":50,"tag":115,"props":2397,"children":2398},{},[2399],{"type":50,"tag":76,"props":2400,"children":2402},{"className":2401},[],[2403],{"type":55,"value":2404},"sharingMode",{"type":50,"tag":115,"props":2406,"children":2407},{},[2408],{"type":50,"tag":76,"props":2409,"children":2411},{"className":2410},[],[2412],{"type":55,"value":1986},{"type":50,"tag":115,"props":2414,"children":2415},{},[2416],{"type":50,"tag":76,"props":2417,"children":2419},{"className":2418},[],[2420],{"type":55,"value":2421},"'both'",{"type":50,"tag":115,"props":2423,"children":2424},{},[2425,2430,2432],{"type":50,"tag":76,"props":2426,"children":2428},{"className":2427},[],[2429],{"type":55,"value":2421},{"type":55,"value":2431}," or ",{"type":50,"tag":76,"props":2433,"children":2435},{"className":2434},[],[2436],{"type":55,"value":2437},"'fit'",{"type":50,"tag":93,"props":2439,"children":2440},{},[2441,2450,2458,2466],{"type":50,"tag":115,"props":2442,"children":2443},{},[2444],{"type":50,"tag":76,"props":2445,"children":2447},{"className":2446},[],[2448],{"type":55,"value":2449},"screenShare",{"type":50,"tag":115,"props":2451,"children":2452},{},[2453],{"type":50,"tag":76,"props":2454,"children":2456},{"className":2455},[],[2457],{"type":55,"value":2047},{"type":50,"tag":115,"props":2459,"children":2460},{},[2461],{"type":50,"tag":76,"props":2462,"children":2464},{"className":2463},[],[2465],{"type":55,"value":2056},{"type":50,"tag":115,"props":2467,"children":2468},{},[2469],{"type":55,"value":2470},"Enable browser URL sharing",{"type":50,"tag":93,"props":2472,"children":2473},{},[2474,2483,2491,2499],{"type":50,"tag":115,"props":2475,"children":2476},{},[2477],{"type":50,"tag":76,"props":2478,"children":2480},{"className":2479},[],[2481],{"type":55,"value":2482},"hideShareAudioOption",{"type":50,"tag":115,"props":2484,"children":2485},{},[2486],{"type":50,"tag":76,"props":2487,"children":2489},{"className":2488},[],[2490],{"type":55,"value":2047},{"type":50,"tag":115,"props":2492,"children":2493},{},[2494],{"type":50,"tag":76,"props":2495,"children":2497},{"className":2496},[],[2498],{"type":55,"value":2090},{"type":50,"tag":115,"props":2500,"children":2501},{},[2502],{"type":55,"value":2503},"Hide \"Share tab audio\" checkbox",{"type":50,"tag":93,"props":2505,"children":2506},{},[2507,2516,2524,2532],{"type":50,"tag":115,"props":2508,"children":2509},{},[2510],{"type":50,"tag":76,"props":2511,"children":2513},{"className":2512},[],[2514],{"type":55,"value":2515},"disablePictureInPicture",{"type":50,"tag":115,"props":2517,"children":2518},{},[2519],{"type":50,"tag":76,"props":2520,"children":2522},{"className":2521},[],[2523],{"type":55,"value":2047},{"type":50,"tag":115,"props":2525,"children":2526},{},[2527],{"type":50,"tag":76,"props":2528,"children":2530},{"className":2529},[],[2531],{"type":55,"value":2090},{"type":50,"tag":115,"props":2533,"children":2534},{},[2535],{"type":55,"value":2536},"Disable PiP mode",{"type":50,"tag":93,"props":2538,"children":2539},{},[2540,2549,2557,2565],{"type":50,"tag":115,"props":2541,"children":2542},{},[2543],{"type":50,"tag":76,"props":2544,"children":2546},{"className":2545},[],[2547],{"type":55,"value":2548},"disableZoomLogo",{"type":50,"tag":115,"props":2550,"children":2551},{},[2552],{"type":50,"tag":76,"props":2553,"children":2555},{"className":2554},[],[2556],{"type":55,"value":2047},{"type":50,"tag":115,"props":2558,"children":2559},{},[2560],{"type":50,"tag":76,"props":2561,"children":2563},{"className":2562},[],[2564],{"type":55,"value":2090},{"type":50,"tag":115,"props":2566,"children":2567},{},[2568],{"type":55,"value":2569},"Remove Zoom logo (deprecated)",{"type":50,"tag":93,"props":2571,"children":2572},{},[2573,2582,2590,2599],{"type":50,"tag":115,"props":2574,"children":2575},{},[2576],{"type":50,"tag":76,"props":2577,"children":2579},{"className":2578},[],[2580],{"type":55,"value":2581},"defaultView",{"type":50,"tag":115,"props":2583,"children":2584},{},[2585],{"type":50,"tag":76,"props":2586,"children":2588},{"className":2587},[],[2589],{"type":55,"value":1986},{"type":50,"tag":115,"props":2591,"children":2592},{},[2593],{"type":50,"tag":76,"props":2594,"children":2596},{"className":2595},[],[2597],{"type":55,"value":2598},"'speaker'",{"type":50,"tag":115,"props":2600,"children":2601},{},[2602,2608,2610,2615,2616],{"type":50,"tag":76,"props":2603,"children":2605},{"className":2604},[],[2606],{"type":55,"value":2607},"'gallery'",{"type":55,"value":2609},", ",{"type":50,"tag":76,"props":2611,"children":2613},{"className":2612},[],[2614],{"type":55,"value":2598},{"type":55,"value":2609},{"type":50,"tag":76,"props":2617,"children":2619},{"className":2618},[],[2620],{"type":55,"value":2621},"'multiSpeaker'",{"type":50,"tag":231,"props":2623,"children":2625},{"id":2624},"feature-toggles",[2626],{"type":55,"value":2627},"Feature Toggles",{"type":50,"tag":85,"props":2629,"children":2630},{},[2631,2653],{"type":50,"tag":89,"props":2632,"children":2633},{},[2634],{"type":50,"tag":93,"props":2635,"children":2636},{},[2637,2641,2645,2649],{"type":50,"tag":97,"props":2638,"children":2639},{},[2640],{"type":55,"value":1952},{"type":50,"tag":97,"props":2642,"children":2643},{},[2644],{"type":55,"value":1957},{"type":50,"tag":97,"props":2646,"children":2647},{},[2648],{"type":55,"value":2019},{"type":50,"tag":97,"props":2650,"children":2651},{},[2652],{"type":55,"value":1962},{"type":50,"tag":108,"props":2654,"children":2655},{},[2656,2689,2722,2755,2788,2821,2854,2887,2920,2953],{"type":50,"tag":93,"props":2657,"children":2658},{},[2659,2668,2676,2684],{"type":50,"tag":115,"props":2660,"children":2661},{},[2662],{"type":50,"tag":76,"props":2663,"children":2665},{"className":2664},[],[2666],{"type":55,"value":2667},"isSupportAV",{"type":50,"tag":115,"props":2669,"children":2670},{},[2671],{"type":50,"tag":76,"props":2672,"children":2674},{"className":2673},[],[2675],{"type":55,"value":2047},{"type":50,"tag":115,"props":2677,"children":2678},{},[2679],{"type":50,"tag":76,"props":2680,"children":2682},{"className":2681},[],[2683],{"type":55,"value":2056},{"type":50,"tag":115,"props":2685,"children":2686},{},[2687],{"type":55,"value":2688},"Enable audio\u002Fvideo",{"type":50,"tag":93,"props":2690,"children":2691},{},[2692,2701,2709,2717],{"type":50,"tag":115,"props":2693,"children":2694},{},[2695],{"type":50,"tag":76,"props":2696,"children":2698},{"className":2697},[],[2699],{"type":55,"value":2700},"isSupportChat",{"type":50,"tag":115,"props":2702,"children":2703},{},[2704],{"type":50,"tag":76,"props":2705,"children":2707},{"className":2706},[],[2708],{"type":55,"value":2047},{"type":50,"tag":115,"props":2710,"children":2711},{},[2712],{"type":50,"tag":76,"props":2713,"children":2715},{"className":2714},[],[2716],{"type":55,"value":2056},{"type":50,"tag":115,"props":2718,"children":2719},{},[2720],{"type":55,"value":2721},"Enable in-meeting chat",{"type":50,"tag":93,"props":2723,"children":2724},{},[2725,2734,2742,2750],{"type":50,"tag":115,"props":2726,"children":2727},{},[2728],{"type":50,"tag":76,"props":2729,"children":2731},{"className":2730},[],[2732],{"type":55,"value":2733},"isSupportQA",{"type":50,"tag":115,"props":2735,"children":2736},{},[2737],{"type":50,"tag":76,"props":2738,"children":2740},{"className":2739},[],[2741],{"type":55,"value":2047},{"type":50,"tag":115,"props":2743,"children":2744},{},[2745],{"type":50,"tag":76,"props":2746,"children":2748},{"className":2747},[],[2749],{"type":55,"value":2056},{"type":50,"tag":115,"props":2751,"children":2752},{},[2753],{"type":55,"value":2754},"Enable webinar Q&A",{"type":50,"tag":93,"props":2756,"children":2757},{},[2758,2767,2775,2783],{"type":50,"tag":115,"props":2759,"children":2760},{},[2761],{"type":50,"tag":76,"props":2762,"children":2764},{"className":2763},[],[2765],{"type":55,"value":2766},"isSupportCC",{"type":50,"tag":115,"props":2768,"children":2769},{},[2770],{"type":50,"tag":76,"props":2771,"children":2773},{"className":2772},[],[2774],{"type":55,"value":2047},{"type":50,"tag":115,"props":2776,"children":2777},{},[2778],{"type":50,"tag":76,"props":2779,"children":2781},{"className":2780},[],[2782],{"type":55,"value":2056},{"type":50,"tag":115,"props":2784,"children":2785},{},[2786],{"type":55,"value":2787},"Enable closed captions",{"type":50,"tag":93,"props":2789,"children":2790},{},[2791,2800,2808,2816],{"type":50,"tag":115,"props":2792,"children":2793},{},[2794],{"type":50,"tag":76,"props":2795,"children":2797},{"className":2796},[],[2798],{"type":55,"value":2799},"isSupportPolling",{"type":50,"tag":115,"props":2801,"children":2802},{},[2803],{"type":50,"tag":76,"props":2804,"children":2806},{"className":2805},[],[2807],{"type":55,"value":2047},{"type":50,"tag":115,"props":2809,"children":2810},{},[2811],{"type":50,"tag":76,"props":2812,"children":2814},{"className":2813},[],[2815],{"type":55,"value":2056},{"type":50,"tag":115,"props":2817,"children":2818},{},[2819],{"type":55,"value":2820},"Enable polling",{"type":50,"tag":93,"props":2822,"children":2823},{},[2824,2833,2841,2849],{"type":50,"tag":115,"props":2825,"children":2826},{},[2827],{"type":50,"tag":76,"props":2828,"children":2830},{"className":2829},[],[2831],{"type":55,"value":2832},"isSupportBreakout",{"type":50,"tag":115,"props":2834,"children":2835},{},[2836],{"type":50,"tag":76,"props":2837,"children":2839},{"className":2838},[],[2840],{"type":55,"value":2047},{"type":50,"tag":115,"props":2842,"children":2843},{},[2844],{"type":50,"tag":76,"props":2845,"children":2847},{"className":2846},[],[2848],{"type":55,"value":2056},{"type":50,"tag":115,"props":2850,"children":2851},{},[2852],{"type":55,"value":2853},"Enable breakout rooms",{"type":50,"tag":93,"props":2855,"children":2856},{},[2857,2866,2874,2882],{"type":50,"tag":115,"props":2858,"children":2859},{},[2860],{"type":50,"tag":76,"props":2861,"children":2863},{"className":2862},[],[2864],{"type":55,"value":2865},"isSupportNonverbal",{"type":50,"tag":115,"props":2867,"children":2868},{},[2869],{"type":50,"tag":76,"props":2870,"children":2872},{"className":2871},[],[2873],{"type":55,"value":2047},{"type":50,"tag":115,"props":2875,"children":2876},{},[2877],{"type":50,"tag":76,"props":2878,"children":2880},{"className":2879},[],[2881],{"type":55,"value":2056},{"type":50,"tag":115,"props":2883,"children":2884},{},[2885],{"type":55,"value":2886},"Enable nonverbal feedback",{"type":50,"tag":93,"props":2888,"children":2889},{},[2890,2899,2907,2915],{"type":50,"tag":115,"props":2891,"children":2892},{},[2893],{"type":50,"tag":76,"props":2894,"children":2896},{"className":2895},[],[2897],{"type":55,"value":2898},"isSupportSimulive",{"type":50,"tag":115,"props":2900,"children":2901},{},[2902],{"type":50,"tag":76,"props":2903,"children":2905},{"className":2904},[],[2906],{"type":55,"value":2047},{"type":50,"tag":115,"props":2908,"children":2909},{},[2910],{"type":50,"tag":76,"props":2911,"children":2913},{"className":2912},[],[2914],{"type":55,"value":2090},{"type":50,"tag":115,"props":2916,"children":2917},{},[2918],{"type":55,"value":2919},"Enable Simulive",{"type":50,"tag":93,"props":2921,"children":2922},{},[2923,2932,2940,2948],{"type":50,"tag":115,"props":2924,"children":2925},{},[2926],{"type":50,"tag":76,"props":2927,"children":2929},{"className":2928},[],[2930],{"type":55,"value":2931},"disableVoIP",{"type":50,"tag":115,"props":2933,"children":2934},{},[2935],{"type":50,"tag":76,"props":2936,"children":2938},{"className":2937},[],[2939],{"type":55,"value":2047},{"type":50,"tag":115,"props":2941,"children":2942},{},[2943],{"type":50,"tag":76,"props":2944,"children":2946},{"className":2945},[],[2947],{"type":55,"value":2090},{"type":50,"tag":115,"props":2949,"children":2950},{},[2951],{"type":55,"value":2952},"Disable VoIP",{"type":50,"tag":93,"props":2954,"children":2955},{},[2956,2965,2973,2981],{"type":50,"tag":115,"props":2957,"children":2958},{},[2959],{"type":50,"tag":76,"props":2960,"children":2962},{"className":2961},[],[2963],{"type":55,"value":2964},"disableReport",{"type":50,"tag":115,"props":2966,"children":2967},{},[2968],{"type":50,"tag":76,"props":2969,"children":2971},{"className":2970},[],[2972],{"type":55,"value":2047},{"type":50,"tag":115,"props":2974,"children":2975},{},[2976],{"type":50,"tag":76,"props":2977,"children":2979},{"className":2978},[],[2980],{"type":55,"value":2090},{"type":50,"tag":115,"props":2982,"children":2983},{},[2984],{"type":55,"value":2985},"Disable report feature",{"type":50,"tag":231,"props":2987,"children":2989},{"id":2988},"video-quality",[2990],{"type":55,"value":2991},"Video Quality",{"type":50,"tag":85,"props":2993,"children":2994},{},[2995,3017],{"type":50,"tag":89,"props":2996,"children":2997},{},[2998],{"type":50,"tag":93,"props":2999,"children":3000},{},[3001,3005,3009,3013],{"type":50,"tag":97,"props":3002,"children":3003},{},[3004],{"type":55,"value":1952},{"type":50,"tag":97,"props":3006,"children":3007},{},[3008],{"type":55,"value":1957},{"type":50,"tag":97,"props":3010,"children":3011},{},[3012],{"type":55,"value":2019},{"type":50,"tag":97,"props":3014,"children":3015},{},[3016],{"type":55,"value":1962},{"type":50,"tag":108,"props":3018,"children":3019},{},[3020,3055],{"type":50,"tag":93,"props":3021,"children":3022},{},[3023,3032,3040,3050],{"type":50,"tag":115,"props":3024,"children":3025},{},[3026],{"type":50,"tag":76,"props":3027,"children":3029},{"className":3028},[],[3030],{"type":55,"value":3031},"enableHD",{"type":50,"tag":115,"props":3033,"children":3034},{},[3035],{"type":50,"tag":76,"props":3036,"children":3038},{"className":3037},[],[3039],{"type":55,"value":2047},{"type":50,"tag":115,"props":3041,"children":3042},{},[3043,3048],{"type":50,"tag":76,"props":3044,"children":3046},{"className":3045},[],[3047],{"type":55,"value":2056},{"type":55,"value":3049}," (≥2.8.0)",{"type":50,"tag":115,"props":3051,"children":3052},{},[3053],{"type":55,"value":3054},"Enable 720p video",{"type":50,"tag":93,"props":3056,"children":3057},{},[3058,3067,3075,3083],{"type":50,"tag":115,"props":3059,"children":3060},{},[3061],{"type":50,"tag":76,"props":3062,"children":3064},{"className":3063},[],[3065],{"type":55,"value":3066},"enableFullHD",{"type":50,"tag":115,"props":3068,"children":3069},{},[3070],{"type":50,"tag":76,"props":3071,"children":3073},{"className":3072},[],[3074],{"type":55,"value":2047},{"type":50,"tag":115,"props":3076,"children":3077},{},[3078],{"type":50,"tag":76,"props":3079,"children":3081},{"className":3080},[],[3082],{"type":55,"value":2090},{"type":50,"tag":115,"props":3084,"children":3085},{},[3086],{"type":55,"value":3087},"Enable 1080p for webinar attendees",{"type":50,"tag":231,"props":3089,"children":3091},{"id":3090},"advanced",[3092],{"type":55,"value":3093},"Advanced",{"type":50,"tag":85,"props":3095,"children":3096},{},[3097,3119],{"type":50,"tag":89,"props":3098,"children":3099},{},[3100],{"type":50,"tag":93,"props":3101,"children":3102},{},[3103,3107,3111,3115],{"type":50,"tag":97,"props":3104,"children":3105},{},[3106],{"type":55,"value":1952},{"type":50,"tag":97,"props":3108,"children":3109},{},[3110],{"type":55,"value":1957},{"type":50,"tag":97,"props":3112,"children":3113},{},[3114],{"type":55,"value":2019},{"type":50,"tag":97,"props":3116,"children":3117},{},[3118],{"type":55,"value":1962},{"type":50,"tag":108,"props":3120,"children":3121},{},[3122,3155,3188,3221,3255,3285,3314,3347,3380,3415,3448],{"type":50,"tag":93,"props":3123,"children":3124},{},[3125,3134,3142,3150],{"type":50,"tag":115,"props":3126,"children":3127},{},[3128],{"type":50,"tag":76,"props":3129,"children":3131},{"className":3130},[],[3132],{"type":55,"value":3133},"debug",{"type":50,"tag":115,"props":3135,"children":3136},{},[3137],{"type":50,"tag":76,"props":3138,"children":3140},{"className":3139},[],[3141],{"type":55,"value":2047},{"type":50,"tag":115,"props":3143,"children":3144},{},[3145],{"type":50,"tag":76,"props":3146,"children":3148},{"className":3147},[],[3149],{"type":55,"value":2090},{"type":50,"tag":115,"props":3151,"children":3152},{},[3153],{"type":55,"value":3154},"Enable debug logging",{"type":50,"tag":93,"props":3156,"children":3157},{},[3158,3167,3175,3183],{"type":50,"tag":115,"props":3159,"children":3160},{},[3161],{"type":50,"tag":76,"props":3162,"children":3164},{"className":3163},[],[3165],{"type":55,"value":3166},"patchJsMedia",{"type":50,"tag":115,"props":3168,"children":3169},{},[3170],{"type":50,"tag":76,"props":3171,"children":3173},{"className":3172},[],[3174],{"type":55,"value":2047},{"type":50,"tag":115,"props":3176,"children":3177},{},[3178],{"type":50,"tag":76,"props":3179,"children":3181},{"className":3180},[],[3182],{"type":55,"value":2090},{"type":50,"tag":115,"props":3184,"children":3185},{},[3186],{"type":55,"value":3187},"Auto-apply media fixes",{"type":50,"tag":93,"props":3189,"children":3190},{},[3191,3200,3208,3216],{"type":50,"tag":115,"props":3192,"children":3193},{},[3194],{"type":50,"tag":76,"props":3195,"children":3197},{"className":3196},[],[3198],{"type":55,"value":3199},"disableCORP",{"type":50,"tag":115,"props":3201,"children":3202},{},[3203],{"type":50,"tag":76,"props":3204,"children":3206},{"className":3205},[],[3207],{"type":55,"value":2047},{"type":50,"tag":115,"props":3209,"children":3210},{},[3211],{"type":50,"tag":76,"props":3212,"children":3214},{"className":3213},[],[3215],{"type":55,"value":2090},{"type":50,"tag":115,"props":3217,"children":3218},{},[3219],{"type":55,"value":3220},"Disable web isolation",{"type":50,"tag":93,"props":3222,"children":3223},{},[3224,3233,3241,3250],{"type":50,"tag":115,"props":3225,"children":3226},{},[3227],{"type":50,"tag":76,"props":3228,"children":3230},{"className":3229},[],[3231],{"type":55,"value":3232},"helper",{"type":50,"tag":115,"props":3234,"children":3235},{},[3236],{"type":50,"tag":76,"props":3237,"children":3239},{"className":3238},[],[3240],{"type":55,"value":1986},{"type":50,"tag":115,"props":3242,"children":3243},{},[3244],{"type":50,"tag":76,"props":3245,"children":3247},{"className":3246},[],[3248],{"type":55,"value":3249},"''",{"type":50,"tag":115,"props":3251,"children":3252},{},[3253],{"type":55,"value":3254},"Path to helper.html",{"type":50,"tag":93,"props":3256,"children":3257},{},[3258,3267,3275,3280],{"type":50,"tag":115,"props":3259,"children":3260},{},[3261],{"type":50,"tag":76,"props":3262,"children":3264},{"className":3263},[],[3265],{"type":55,"value":3266},"externalLinkPage",{"type":50,"tag":115,"props":3268,"children":3269},{},[3270],{"type":50,"tag":76,"props":3271,"children":3273},{"className":3272},[],[3274],{"type":55,"value":1986},{"type":50,"tag":115,"props":3276,"children":3277},{},[3278],{"type":55,"value":3279},"-",{"type":50,"tag":115,"props":3281,"children":3282},{},[3283],{"type":55,"value":3284},"Page for external links",{"type":50,"tag":93,"props":3286,"children":3287},{},[3288,3297,3305,3309],{"type":50,"tag":115,"props":3289,"children":3290},{},[3291],{"type":50,"tag":76,"props":3292,"children":3294},{"className":3293},[],[3295],{"type":55,"value":3296},"webEndpoint",{"type":50,"tag":115,"props":3298,"children":3299},{},[3300],{"type":50,"tag":76,"props":3301,"children":3303},{"className":3302},[],[3304],{"type":55,"value":1986},{"type":50,"tag":115,"props":3306,"children":3307},{},[3308],{"type":55,"value":3279},{"type":50,"tag":115,"props":3310,"children":3311},{},[3312],{"type":55,"value":3313},"For ZFG environments",{"type":50,"tag":93,"props":3315,"children":3316},{},[3317,3326,3334,3342],{"type":50,"tag":115,"props":3318,"children":3319},{},[3320],{"type":50,"tag":76,"props":3321,"children":3323},{"className":3322},[],[3324],{"type":55,"value":3325},"leaveOnPageUnload",{"type":50,"tag":115,"props":3327,"children":3328},{},[3329],{"type":50,"tag":76,"props":3330,"children":3332},{"className":3331},[],[3333],{"type":55,"value":2047},{"type":50,"tag":115,"props":3335,"children":3336},{},[3337],{"type":50,"tag":76,"props":3338,"children":3340},{"className":3339},[],[3341],{"type":55,"value":2090},{"type":50,"tag":115,"props":3343,"children":3344},{},[3345],{"type":55,"value":3346},"Auto cleanup on page close",{"type":50,"tag":93,"props":3348,"children":3349},{},[3350,3359,3367,3375],{"type":50,"tag":115,"props":3351,"children":3352},{},[3353],{"type":50,"tag":76,"props":3354,"children":3356},{"className":3355},[],[3357],{"type":55,"value":3358},"isShowJoiningErrorDialog",{"type":50,"tag":115,"props":3360,"children":3361},{},[3362],{"type":50,"tag":76,"props":3363,"children":3365},{"className":3364},[],[3366],{"type":55,"value":2047},{"type":50,"tag":115,"props":3368,"children":3369},{},[3370],{"type":50,"tag":76,"props":3371,"children":3373},{"className":3372},[],[3374],{"type":55,"value":2056},{"type":50,"tag":115,"props":3376,"children":3377},{},[3378],{"type":55,"value":3379},"Show error dialog on join failure",{"type":50,"tag":93,"props":3381,"children":3382},{},[3383,3392,3401,3410],{"type":50,"tag":115,"props":3384,"children":3385},{},[3386],{"type":50,"tag":76,"props":3387,"children":3389},{"className":3388},[],[3390],{"type":55,"value":3391},"meetingInfo",{"type":50,"tag":115,"props":3393,"children":3394},{},[3395],{"type":50,"tag":76,"props":3396,"children":3398},{"className":3397},[],[3399],{"type":55,"value":3400},"Array\u003Cstring>",{"type":50,"tag":115,"props":3402,"children":3403},{},[3404],{"type":50,"tag":76,"props":3405,"children":3407},{"className":3406},[],[3408],{"type":55,"value":3409},"[...]",{"type":50,"tag":115,"props":3411,"children":3412},{},[3413],{"type":55,"value":3414},"Meeting info to display",{"type":50,"tag":93,"props":3416,"children":3417},{},[3418,3427,3435,3443],{"type":50,"tag":115,"props":3419,"children":3420},{},[3421],{"type":50,"tag":76,"props":3422,"children":3424},{"className":3423},[],[3425],{"type":55,"value":3426},"inviteUrlFormat",{"type":50,"tag":115,"props":3428,"children":3429},{},[3430],{"type":50,"tag":76,"props":3431,"children":3433},{"className":3432},[],[3434],{"type":55,"value":1986},{"type":50,"tag":115,"props":3436,"children":3437},{},[3438],{"type":50,"tag":76,"props":3439,"children":3441},{"className":3440},[],[3442],{"type":55,"value":3249},{"type":50,"tag":115,"props":3444,"children":3445},{},[3446],{"type":55,"value":3447},"Custom invite URL format",{"type":50,"tag":93,"props":3449,"children":3450},{},[3451,3460,3469,3478],{"type":50,"tag":115,"props":3452,"children":3453},{},[3454],{"type":50,"tag":76,"props":3455,"children":3457},{"className":3456},[],[3458],{"type":55,"value":3459},"loginWindow",{"type":50,"tag":115,"props":3461,"children":3462},{},[3463],{"type":50,"tag":76,"props":3464,"children":3466},{"className":3465},[],[3467],{"type":55,"value":3468},"object",{"type":50,"tag":115,"props":3470,"children":3471},{},[3472],{"type":50,"tag":76,"props":3473,"children":3475},{"className":3474},[],[3476],{"type":55,"value":3477},"{width: 400, height: 380}",{"type":50,"tag":115,"props":3479,"children":3480},{},[3481],{"type":55,"value":3482},"Login popup size",{"type":50,"tag":231,"props":3484,"children":3486},{"id":3485},"callbacks",[3487],{"type":55,"value":3488},"Callbacks",{"type":50,"tag":85,"props":3490,"children":3491},{},[3492,3510],{"type":50,"tag":89,"props":3493,"children":3494},{},[3495],{"type":50,"tag":93,"props":3496,"children":3497},{},[3498,3502,3506],{"type":50,"tag":97,"props":3499,"children":3500},{},[3501],{"type":55,"value":1952},{"type":50,"tag":97,"props":3503,"children":3504},{},[3505],{"type":55,"value":1957},{"type":50,"tag":97,"props":3507,"children":3508},{},[3509],{"type":55,"value":1962},{"type":50,"tag":108,"props":3511,"children":3512},{},[3513,3539],{"type":50,"tag":93,"props":3514,"children":3515},{},[3516,3525,3534],{"type":50,"tag":115,"props":3517,"children":3518},{},[3519],{"type":50,"tag":76,"props":3520,"children":3522},{"className":3521},[],[3523],{"type":55,"value":3524},"success",{"type":50,"tag":115,"props":3526,"children":3527},{},[3528],{"type":50,"tag":76,"props":3529,"children":3531},{"className":3530},[],[3532],{"type":55,"value":3533},"Function",{"type":50,"tag":115,"props":3535,"children":3536},{},[3537],{"type":55,"value":3538},"Called on successful init",{"type":50,"tag":93,"props":3540,"children":3541},{},[3542,3550,3558],{"type":50,"tag":115,"props":3543,"children":3544},{},[3545],{"type":50,"tag":76,"props":3546,"children":3548},{"className":3547},[],[3549],{"type":55,"value":1565},{"type":50,"tag":115,"props":3551,"children":3552},{},[3553],{"type":50,"tag":76,"props":3554,"children":3556},{"className":3555},[],[3557],{"type":55,"value":3533},{"type":50,"tag":115,"props":3559,"children":3560},{},[3561],{"type":55,"value":3562},"Called on init failure",{"type":50,"tag":64,"props":3564,"children":3566},{"id":3565},"zoommtgjoin-all-options",[3567],{"type":55,"value":3568},"ZoomMtg.join() - All Options",{"type":50,"tag":231,"props":3570,"children":3572},{"id":3571},"required-1",[3573],{"type":55,"value":1938},{"type":50,"tag":85,"props":3575,"children":3576},{},[3577,3595],{"type":50,"tag":89,"props":3578,"children":3579},{},[3580],{"type":50,"tag":93,"props":3581,"children":3582},{},[3583,3587,3591],{"type":50,"tag":97,"props":3584,"children":3585},{},[3586],{"type":55,"value":1952},{"type":50,"tag":97,"props":3588,"children":3589},{},[3590],{"type":55,"value":1957},{"type":50,"tag":97,"props":3592,"children":3593},{},[3594],{"type":55,"value":1962},{"type":50,"tag":108,"props":3596,"children":3597},{},[3598,3623,3649,3674],{"type":50,"tag":93,"props":3599,"children":3600},{},[3601,3610,3618],{"type":50,"tag":115,"props":3602,"children":3603},{},[3604],{"type":50,"tag":76,"props":3605,"children":3607},{"className":3606},[],[3608],{"type":55,"value":3609},"signature",{"type":50,"tag":115,"props":3611,"children":3612},{},[3613],{"type":50,"tag":76,"props":3614,"children":3616},{"className":3615},[],[3617],{"type":55,"value":1986},{"type":50,"tag":115,"props":3619,"children":3620},{},[3621],{"type":55,"value":3622},"SDK JWT from backend (v5.0+: must include appKey prefix)",{"type":50,"tag":93,"props":3624,"children":3625},{},[3626,3635,3644],{"type":50,"tag":115,"props":3627,"children":3628},{},[3629],{"type":50,"tag":76,"props":3630,"children":3632},{"className":3631},[],[3633],{"type":55,"value":3634},"meetingNumber",{"type":50,"tag":115,"props":3636,"children":3637},{},[3638],{"type":50,"tag":76,"props":3639,"children":3641},{"className":3640},[],[3642],{"type":55,"value":3643},"string | number",{"type":50,"tag":115,"props":3645,"children":3646},{},[3647],{"type":55,"value":3648},"Meeting or webinar number",{"type":50,"tag":93,"props":3650,"children":3651},{},[3652,3661,3669],{"type":50,"tag":115,"props":3653,"children":3654},{},[3655],{"type":50,"tag":76,"props":3656,"children":3658},{"className":3657},[],[3659],{"type":55,"value":3660},"userName",{"type":50,"tag":115,"props":3662,"children":3663},{},[3664],{"type":50,"tag":76,"props":3665,"children":3667},{"className":3666},[],[3668],{"type":55,"value":1986},{"type":50,"tag":115,"props":3670,"children":3671},{},[3672],{"type":55,"value":3673},"Display name",{"type":50,"tag":93,"props":3675,"children":3676},{},[3677,3685,3693],{"type":50,"tag":115,"props":3678,"children":3679},{},[3680],{"type":50,"tag":76,"props":3681,"children":3683},{"className":3682},[],[3684],{"type":55,"value":185},{"type":50,"tag":115,"props":3686,"children":3687},{},[3688],{"type":50,"tag":76,"props":3689,"children":3691},{"className":3690},[],[3692],{"type":55,"value":1986},{"type":50,"tag":115,"props":3694,"children":3695},{},[3696],{"type":55,"value":3697},"Meeting password (capital W!)",{"type":50,"tag":231,"props":3699,"children":3701},{"id":3700},"authentication",[3702],{"type":55,"value":3703},"Authentication",{"type":50,"tag":85,"props":3705,"children":3706},{},[3707,3730],{"type":50,"tag":89,"props":3708,"children":3709},{},[3710],{"type":50,"tag":93,"props":3711,"children":3712},{},[3713,3717,3721,3726],{"type":50,"tag":97,"props":3714,"children":3715},{},[3716],{"type":55,"value":1952},{"type":50,"tag":97,"props":3718,"children":3719},{},[3720],{"type":55,"value":1957},{"type":50,"tag":97,"props":3722,"children":3723},{},[3724],{"type":55,"value":3725},"When Required",{"type":50,"tag":97,"props":3727,"children":3728},{},[3729],{"type":55,"value":1962},{"type":50,"tag":108,"props":3731,"children":3732},{},[3733,3762,3791,3820],{"type":50,"tag":93,"props":3734,"children":3735},{},[3736,3744,3752,3757],{"type":50,"tag":115,"props":3737,"children":3738},{},[3739],{"type":50,"tag":76,"props":3740,"children":3742},{"className":3741},[],[3743],{"type":55,"value":1742},{"type":50,"tag":115,"props":3745,"children":3746},{},[3747],{"type":50,"tag":76,"props":3748,"children":3750},{"className":3749},[],[3751],{"type":55,"value":1986},{"type":50,"tag":115,"props":3753,"children":3754},{},[3755],{"type":55,"value":3756},"Starting as host",{"type":50,"tag":115,"props":3758,"children":3759},{},[3760],{"type":55,"value":3761},"Host's Zoom Access Key",{"type":50,"tag":93,"props":3763,"children":3764},{},[3765,3773,3781,3786],{"type":50,"tag":115,"props":3766,"children":3767},{},[3768],{"type":50,"tag":76,"props":3769,"children":3771},{"className":3770},[],[3772],{"type":55,"value":1696},{"type":50,"tag":115,"props":3774,"children":3775},{},[3776],{"type":50,"tag":76,"props":3777,"children":3779},{"className":3778},[],[3780],{"type":55,"value":1986},{"type":50,"tag":115,"props":3782,"children":3783},{},[3784],{"type":55,"value":3785},"Registration required",{"type":50,"tag":115,"props":3787,"children":3788},{},[3789],{"type":55,"value":3790},"Registrant token",{"type":50,"tag":93,"props":3792,"children":3793},{},[3794,3802,3810,3815],{"type":50,"tag":115,"props":3795,"children":3796},{},[3797],{"type":50,"tag":76,"props":3798,"children":3800},{"className":3799},[],[3801],{"type":55,"value":1648},{"type":50,"tag":115,"props":3803,"children":3804},{},[3805],{"type":50,"tag":76,"props":3806,"children":3808},{"className":3807},[],[3809],{"type":55,"value":1986},{"type":50,"tag":115,"props":3811,"children":3812},{},[3813],{"type":55,"value":3814},"Webinars",{"type":50,"tag":115,"props":3816,"children":3817},{},[3818],{"type":55,"value":3819},"User email",{"type":50,"tag":93,"props":3821,"children":3822},{},[3823,3832,3840,3845],{"type":50,"tag":115,"props":3824,"children":3825},{},[3826],{"type":50,"tag":76,"props":3827,"children":3829},{"className":3828},[],[3830],{"type":55,"value":3831},"obfToken",{"type":50,"tag":115,"props":3833,"children":3834},{},[3835],{"type":50,"tag":76,"props":3836,"children":3838},{"className":3837},[],[3839],{"type":55,"value":1986},{"type":50,"tag":115,"props":3841,"children":3842},{},[3843],{"type":55,"value":3844},"March 2026+",{"type":50,"tag":115,"props":3846,"children":3847},{},[3848],{"type":55,"value":3849},"App Privilege Token",{"type":50,"tag":231,"props":3851,"children":3853},{"id":3852},"optional",[3854],{"type":55,"value":3855},"Optional",{"type":50,"tag":85,"props":3857,"children":3858},{},[3859,3877],{"type":50,"tag":89,"props":3860,"children":3861},{},[3862],{"type":50,"tag":93,"props":3863,"children":3864},{},[3865,3869,3873],{"type":50,"tag":97,"props":3866,"children":3867},{},[3868],{"type":55,"value":1952},{"type":50,"tag":97,"props":3870,"children":3871},{},[3872],{"type":55,"value":1957},{"type":50,"tag":97,"props":3874,"children":3875},{},[3876],{"type":55,"value":1962},{"type":50,"tag":108,"props":3878,"children":3879},{},[3880,3905],{"type":50,"tag":93,"props":3881,"children":3882},{},[3883,3892,3900],{"type":50,"tag":115,"props":3884,"children":3885},{},[3886],{"type":50,"tag":76,"props":3887,"children":3889},{"className":3888},[],[3890],{"type":55,"value":3891},"customerKey",{"type":50,"tag":115,"props":3893,"children":3894},{},[3895],{"type":50,"tag":76,"props":3896,"children":3898},{"className":3897},[],[3899],{"type":55,"value":1986},{"type":50,"tag":115,"props":3901,"children":3902},{},[3903],{"type":55,"value":3904},"Custom ID (max 36 chars)",{"type":50,"tag":93,"props":3906,"children":3907},{},[3908,3917,3925],{"type":50,"tag":115,"props":3909,"children":3910},{},[3911],{"type":50,"tag":76,"props":3912,"children":3914},{"className":3913},[],[3915],{"type":55,"value":3916},"recordingToken",{"type":50,"tag":115,"props":3918,"children":3919},{},[3920],{"type":50,"tag":76,"props":3921,"children":3923},{"className":3922},[],[3924],{"type":55,"value":1986},{"type":50,"tag":115,"props":3926,"children":3927},{},[3928],{"type":55,"value":3929},"Local recording permission",{"type":50,"tag":231,"props":3931,"children":3933},{"id":3932},"callbacks-1",[3934],{"type":55,"value":3488},{"type":50,"tag":85,"props":3936,"children":3937},{},[3938,3956],{"type":50,"tag":89,"props":3939,"children":3940},{},[3941],{"type":50,"tag":93,"props":3942,"children":3943},{},[3944,3948,3952],{"type":50,"tag":97,"props":3945,"children":3946},{},[3947],{"type":55,"value":1952},{"type":50,"tag":97,"props":3949,"children":3950},{},[3951],{"type":55,"value":1957},{"type":50,"tag":97,"props":3953,"children":3954},{},[3955],{"type":55,"value":1962},{"type":50,"tag":108,"props":3957,"children":3958},{},[3959,3983],{"type":50,"tag":93,"props":3960,"children":3961},{},[3962,3970,3978],{"type":50,"tag":115,"props":3963,"children":3964},{},[3965],{"type":50,"tag":76,"props":3966,"children":3968},{"className":3967},[],[3969],{"type":55,"value":3524},{"type":50,"tag":115,"props":3971,"children":3972},{},[3973],{"type":50,"tag":76,"props":3974,"children":3976},{"className":3975},[],[3977],{"type":55,"value":3533},{"type":50,"tag":115,"props":3979,"children":3980},{},[3981],{"type":55,"value":3982},"Called on successful join",{"type":50,"tag":93,"props":3984,"children":3985},{},[3986,3994,4002],{"type":50,"tag":115,"props":3987,"children":3988},{},[3989],{"type":50,"tag":76,"props":3990,"children":3992},{"className":3991},[],[3993],{"type":55,"value":1565},{"type":50,"tag":115,"props":3995,"children":3996},{},[3997],{"type":50,"tag":76,"props":3998,"children":4000},{"className":3999},[],[4001],{"type":55,"value":3533},{"type":50,"tag":115,"props":4003,"children":4004},{},[4005],{"type":55,"value":4006},"Called on join failure",{"type":50,"tag":64,"props":4008,"children":4010},{"id":4009},"event-listeners",[4011],{"type":55,"value":4012},"Event Listeners",{"type":50,"tag":231,"props":4014,"children":4016},{"id":4015},"user-events",[4017],{"type":55,"value":4018},"User Events",{"type":50,"tag":238,"props":4020,"children":4022},{"className":277,"code":4021,"language":279,"meta":243,"style":243},"ZoomMtg.inMeetingServiceListener('onUserJoin', (data) => {\n  console.log('User joined:', data);\n  \u002F\u002F { userId, userName, ... }\n});\n\nZoomMtg.inMeetingServiceListener('onUserLeave', (data) => {\n  console.log('User left:', data);\n  \u002F\u002F Reason codes:\n  \u002F\u002F 0: OTHER\n  \u002F\u002F 1: HOST_ENDED_MEETING\n  \u002F\u002F 2: SELF_LEAVE_FROM_IN_MEETING\n  \u002F\u002F 3: SELF_LEAVE_FROM_WAITING_ROOM\n  \u002F\u002F 4: SELF_LEAVE_FROM_WAITING_FOR_HOST_START\n  \u002F\u002F 5: MEETING_TRANSFER\n  \u002F\u002F 6: KICK_OUT_FROM_MEETING\n  \u002F\u002F 7: KICK_OUT_FROM_WAITING_ROOM\n  \u002F\u002F 8: LEAVE_FROM_DISCLAIMER\n});\n\nZoomMtg.inMeetingServiceListener('onUserUpdate', (data) => {\n  console.log('User updated:', data);\n});\n\nZoomMtg.inMeetingServiceListener('onUserIsInWaitingRoom', (data) => {\n  console.log('User in waiting room:', data);\n});\n",[4023],{"type":50,"tag":76,"props":4024,"children":4025},{"__ignoreMap":243},[4026,4084,4134,4142,4157,4164,4220,4268,4276,4284,4292,4300,4308,4316,4324,4332,4340,4348,4363,4370,4426,4474,4489,4496,4552,4600],{"type":50,"tag":249,"props":4027,"children":4028},{"class":251,"line":252},[4029,4033,4037,4042,4046,4050,4055,4059,4063,4067,4072,4076,4080],{"type":50,"tag":249,"props":4030,"children":4031},{"style":301},[4032],{"type":55,"value":81},{"type":50,"tag":249,"props":4034,"children":4035},{"style":295},[4036],{"type":55,"value":662},{"type":50,"tag":249,"props":4038,"children":4039},{"style":665},[4040],{"type":55,"value":4041},"inMeetingServiceListener",{"type":50,"tag":249,"props":4043,"children":4044},{"style":301},[4045],{"type":55,"value":673},{"type":50,"tag":249,"props":4047,"children":4048},{"style":295},[4049],{"type":55,"value":329},{"type":50,"tag":249,"props":4051,"children":4052},{"style":261},[4053],{"type":55,"value":4054},"onUserJoin",{"type":50,"tag":249,"props":4056,"children":4057},{"style":295},[4058],{"type":55,"value":329},{"type":50,"tag":249,"props":4060,"children":4061},{"style":295},[4062],{"type":55,"value":691},{"type":50,"tag":249,"props":4064,"children":4065},{"style":295},[4066],{"type":55,"value":1268},{"type":50,"tag":249,"props":4068,"children":4069},{"style":1271},[4070],{"type":55,"value":4071},"data",{"type":50,"tag":249,"props":4073,"children":4074},{"style":295},[4075],{"type":55,"value":870},{"type":50,"tag":249,"props":4077,"children":4078},{"style":366},[4079],{"type":55,"value":912},{"type":50,"tag":249,"props":4081,"children":4082},{"style":295},[4083],{"type":55,"value":917},{"type":50,"tag":249,"props":4085,"children":4086},{"class":251,"line":405},[4087,4092,4096,4100,4104,4108,4113,4117,4121,4126,4130],{"type":50,"tag":249,"props":4088,"children":4089},{"style":301},[4090],{"type":55,"value":4091},"  console",{"type":50,"tag":249,"props":4093,"children":4094},{"style":295},[4095],{"type":55,"value":662},{"type":50,"tag":249,"props":4097,"children":4098},{"style":665},[4099],{"type":55,"value":668},{"type":50,"tag":249,"props":4101,"children":4102},{"style":360},[4103],{"type":55,"value":673},{"type":50,"tag":249,"props":4105,"children":4106},{"style":295},[4107],{"type":55,"value":329},{"type":50,"tag":249,"props":4109,"children":4110},{"style":261},[4111],{"type":55,"value":4112},"User joined:",{"type":50,"tag":249,"props":4114,"children":4115},{"style":295},[4116],{"type":55,"value":329},{"type":50,"tag":249,"props":4118,"children":4119},{"style":295},[4120],{"type":55,"value":691},{"type":50,"tag":249,"props":4122,"children":4123},{"style":301},[4124],{"type":55,"value":4125}," data",{"type":50,"tag":249,"props":4127,"children":4128},{"style":360},[4129],{"type":55,"value":870},{"type":50,"tag":249,"props":4131,"children":4132},{"style":295},[4133],{"type":55,"value":334},{"type":50,"tag":249,"props":4135,"children":4136},{"class":251,"line":450},[4137],{"type":50,"tag":249,"props":4138,"children":4139},{"style":646},[4140],{"type":55,"value":4141},"  \u002F\u002F { userId, userName, ... }\n",{"type":50,"tag":249,"props":4143,"children":4144},{"class":251,"line":495},[4145,4149,4153],{"type":50,"tag":249,"props":4146,"children":4147},{"style":295},[4148],{"type":55,"value":1918},{"type":50,"tag":249,"props":4150,"children":4151},{"style":301},[4152],{"type":55,"value":870},{"type":50,"tag":249,"props":4154,"children":4155},{"style":295},[4156],{"type":55,"value":334},{"type":50,"tag":249,"props":4158,"children":4159},{"class":251,"line":540},[4160],{"type":50,"tag":249,"props":4161,"children":4162},{"emptyLinePlaceholder":719},[4163],{"type":55,"value":722},{"type":50,"tag":249,"props":4165,"children":4166},{"class":251,"line":585},[4167,4171,4175,4179,4183,4187,4192,4196,4200,4204,4208,4212,4216],{"type":50,"tag":249,"props":4168,"children":4169},{"style":301},[4170],{"type":55,"value":81},{"type":50,"tag":249,"props":4172,"children":4173},{"style":295},[4174],{"type":55,"value":662},{"type":50,"tag":249,"props":4176,"children":4177},{"style":665},[4178],{"type":55,"value":4041},{"type":50,"tag":249,"props":4180,"children":4181},{"style":301},[4182],{"type":55,"value":673},{"type":50,"tag":249,"props":4184,"children":4185},{"style":295},[4186],{"type":55,"value":329},{"type":50,"tag":249,"props":4188,"children":4189},{"style":261},[4190],{"type":55,"value":4191},"onUserLeave",{"type":50,"tag":249,"props":4193,"children":4194},{"style":295},[4195],{"type":55,"value":329},{"type":50,"tag":249,"props":4197,"children":4198},{"style":295},[4199],{"type":55,"value":691},{"type":50,"tag":249,"props":4201,"children":4202},{"style":295},[4203],{"type":55,"value":1268},{"type":50,"tag":249,"props":4205,"children":4206},{"style":1271},[4207],{"type":55,"value":4071},{"type":50,"tag":249,"props":4209,"children":4210},{"style":295},[4211],{"type":55,"value":870},{"type":50,"tag":249,"props":4213,"children":4214},{"style":366},[4215],{"type":55,"value":912},{"type":50,"tag":249,"props":4217,"children":4218},{"style":295},[4219],{"type":55,"value":917},{"type":50,"tag":249,"props":4221,"children":4222},{"class":251,"line":748},[4223,4227,4231,4235,4239,4243,4248,4252,4256,4260,4264],{"type":50,"tag":249,"props":4224,"children":4225},{"style":301},[4226],{"type":55,"value":4091},{"type":50,"tag":249,"props":4228,"children":4229},{"style":295},[4230],{"type":55,"value":662},{"type":50,"tag":249,"props":4232,"children":4233},{"style":665},[4234],{"type":55,"value":668},{"type":50,"tag":249,"props":4236,"children":4237},{"style":360},[4238],{"type":55,"value":673},{"type":50,"tag":249,"props":4240,"children":4241},{"style":295},[4242],{"type":55,"value":329},{"type":50,"tag":249,"props":4244,"children":4245},{"style":261},[4246],{"type":55,"value":4247},"User left:",{"type":50,"tag":249,"props":4249,"children":4250},{"style":295},[4251],{"type":55,"value":329},{"type":50,"tag":249,"props":4253,"children":4254},{"style":295},[4255],{"type":55,"value":691},{"type":50,"tag":249,"props":4257,"children":4258},{"style":301},[4259],{"type":55,"value":4125},{"type":50,"tag":249,"props":4261,"children":4262},{"style":360},[4263],{"type":55,"value":870},{"type":50,"tag":249,"props":4265,"children":4266},{"style":295},[4267],{"type":55,"value":334},{"type":50,"tag":249,"props":4269,"children":4270},{"class":251,"line":757},[4271],{"type":50,"tag":249,"props":4272,"children":4273},{"style":646},[4274],{"type":55,"value":4275},"  \u002F\u002F Reason codes:\n",{"type":50,"tag":249,"props":4277,"children":4278},{"class":251,"line":783},[4279],{"type":50,"tag":249,"props":4280,"children":4281},{"style":646},[4282],{"type":55,"value":4283},"  \u002F\u002F 0: OTHER\n",{"type":50,"tag":249,"props":4285,"children":4286},{"class":251,"line":808},[4287],{"type":50,"tag":249,"props":4288,"children":4289},{"style":646},[4290],{"type":55,"value":4291},"  \u002F\u002F 1: HOST_ENDED_MEETING\n",{"type":50,"tag":249,"props":4293,"children":4294},{"class":251,"line":816},[4295],{"type":50,"tag":249,"props":4296,"children":4297},{"style":646},[4298],{"type":55,"value":4299},"  \u002F\u002F 2: SELF_LEAVE_FROM_IN_MEETING\n",{"type":50,"tag":249,"props":4301,"children":4302},{"class":251,"line":825},[4303],{"type":50,"tag":249,"props":4304,"children":4305},{"style":646},[4306],{"type":55,"value":4307},"  \u002F\u002F 3: SELF_LEAVE_FROM_WAITING_ROOM\n",{"type":50,"tag":249,"props":4309,"children":4310},{"class":251,"line":877},[4311],{"type":50,"tag":249,"props":4312,"children":4313},{"style":646},[4314],{"type":55,"value":4315},"  \u002F\u002F 4: SELF_LEAVE_FROM_WAITING_FOR_HOST_START\n",{"type":50,"tag":249,"props":4317,"children":4318},{"class":251,"line":920},[4319],{"type":50,"tag":249,"props":4320,"children":4321},{"style":646},[4322],{"type":55,"value":4323},"  \u002F\u002F 5: MEETING_TRANSFER\n",{"type":50,"tag":249,"props":4325,"children":4326},{"class":251,"line":929},[4327],{"type":50,"tag":249,"props":4328,"children":4329},{"style":646},[4330],{"type":55,"value":4331},"  \u002F\u002F 6: KICK_OUT_FROM_MEETING\n",{"type":50,"tag":249,"props":4333,"children":4334},{"class":251,"line":938},[4335],{"type":50,"tag":249,"props":4336,"children":4337},{"style":646},[4338],{"type":55,"value":4339},"  \u002F\u002F 7: KICK_OUT_FROM_WAITING_ROOM\n",{"type":50,"tag":249,"props":4341,"children":4342},{"class":251,"line":965},[4343],{"type":50,"tag":249,"props":4344,"children":4345},{"style":646},[4346],{"type":55,"value":4347},"  \u002F\u002F 8: LEAVE_FROM_DISCLAIMER\n",{"type":50,"tag":249,"props":4349,"children":4350},{"class":251,"line":997},[4351,4355,4359],{"type":50,"tag":249,"props":4352,"children":4353},{"style":295},[4354],{"type":55,"value":1918},{"type":50,"tag":249,"props":4356,"children":4357},{"style":301},[4358],{"type":55,"value":870},{"type":50,"tag":249,"props":4360,"children":4361},{"style":295},[4362],{"type":55,"value":334},{"type":50,"tag":249,"props":4364,"children":4365},{"class":251,"line":1020},[4366],{"type":50,"tag":249,"props":4367,"children":4368},{"emptyLinePlaceholder":719},[4369],{"type":55,"value":722},{"type":50,"tag":249,"props":4371,"children":4372},{"class":251,"line":1056},[4373,4377,4381,4385,4389,4393,4398,4402,4406,4410,4414,4418,4422],{"type":50,"tag":249,"props":4374,"children":4375},{"style":301},[4376],{"type":55,"value":81},{"type":50,"tag":249,"props":4378,"children":4379},{"style":295},[4380],{"type":55,"value":662},{"type":50,"tag":249,"props":4382,"children":4383},{"style":665},[4384],{"type":55,"value":4041},{"type":50,"tag":249,"props":4386,"children":4387},{"style":301},[4388],{"type":55,"value":673},{"type":50,"tag":249,"props":4390,"children":4391},{"style":295},[4392],{"type":55,"value":329},{"type":50,"tag":249,"props":4394,"children":4395},{"style":261},[4396],{"type":55,"value":4397},"onUserUpdate",{"type":50,"tag":249,"props":4399,"children":4400},{"style":295},[4401],{"type":55,"value":329},{"type":50,"tag":249,"props":4403,"children":4404},{"style":295},[4405],{"type":55,"value":691},{"type":50,"tag":249,"props":4407,"children":4408},{"style":295},[4409],{"type":55,"value":1268},{"type":50,"tag":249,"props":4411,"children":4412},{"style":1271},[4413],{"type":55,"value":4071},{"type":50,"tag":249,"props":4415,"children":4416},{"style":295},[4417],{"type":55,"value":870},{"type":50,"tag":249,"props":4419,"children":4420},{"style":366},[4421],{"type":55,"value":912},{"type":50,"tag":249,"props":4423,"children":4424},{"style":295},[4425],{"type":55,"value":917},{"type":50,"tag":249,"props":4427,"children":4428},{"class":251,"line":1082},[4429,4433,4437,4441,4445,4449,4454,4458,4462,4466,4470],{"type":50,"tag":249,"props":4430,"children":4431},{"style":301},[4432],{"type":55,"value":4091},{"type":50,"tag":249,"props":4434,"children":4435},{"style":295},[4436],{"type":55,"value":662},{"type":50,"tag":249,"props":4438,"children":4439},{"style":665},[4440],{"type":55,"value":668},{"type":50,"tag":249,"props":4442,"children":4443},{"style":360},[4444],{"type":55,"value":673},{"type":50,"tag":249,"props":4446,"children":4447},{"style":295},[4448],{"type":55,"value":329},{"type":50,"tag":249,"props":4450,"children":4451},{"style":261},[4452],{"type":55,"value":4453},"User updated:",{"type":50,"tag":249,"props":4455,"children":4456},{"style":295},[4457],{"type":55,"value":329},{"type":50,"tag":249,"props":4459,"children":4460},{"style":295},[4461],{"type":55,"value":691},{"type":50,"tag":249,"props":4463,"children":4464},{"style":301},[4465],{"type":55,"value":4125},{"type":50,"tag":249,"props":4467,"children":4468},{"style":360},[4469],{"type":55,"value":870},{"type":50,"tag":249,"props":4471,"children":4472},{"style":295},[4473],{"type":55,"value":334},{"type":50,"tag":249,"props":4475,"children":4476},{"class":251,"line":1124},[4477,4481,4485],{"type":50,"tag":249,"props":4478,"children":4479},{"style":295},[4480],{"type":55,"value":1918},{"type":50,"tag":249,"props":4482,"children":4483},{"style":301},[4484],{"type":55,"value":870},{"type":50,"tag":249,"props":4486,"children":4487},{"style":295},[4488],{"type":55,"value":334},{"type":50,"tag":249,"props":4490,"children":4491},{"class":251,"line":1133},[4492],{"type":50,"tag":249,"props":4493,"children":4494},{"emptyLinePlaceholder":719},[4495],{"type":55,"value":722},{"type":50,"tag":249,"props":4497,"children":4498},{"class":251,"line":1142},[4499,4503,4507,4511,4515,4519,4524,4528,4532,4536,4540,4544,4548],{"type":50,"tag":249,"props":4500,"children":4501},{"style":301},[4502],{"type":55,"value":81},{"type":50,"tag":249,"props":4504,"children":4505},{"style":295},[4506],{"type":55,"value":662},{"type":50,"tag":249,"props":4508,"children":4509},{"style":665},[4510],{"type":55,"value":4041},{"type":50,"tag":249,"props":4512,"children":4513},{"style":301},[4514],{"type":55,"value":673},{"type":50,"tag":249,"props":4516,"children":4517},{"style":295},[4518],{"type":55,"value":329},{"type":50,"tag":249,"props":4520,"children":4521},{"style":261},[4522],{"type":55,"value":4523},"onUserIsInWaitingRoom",{"type":50,"tag":249,"props":4525,"children":4526},{"style":295},[4527],{"type":55,"value":329},{"type":50,"tag":249,"props":4529,"children":4530},{"style":295},[4531],{"type":55,"value":691},{"type":50,"tag":249,"props":4533,"children":4534},{"style":295},[4535],{"type":55,"value":1268},{"type":50,"tag":249,"props":4537,"children":4538},{"style":1271},[4539],{"type":55,"value":4071},{"type":50,"tag":249,"props":4541,"children":4542},{"style":295},[4543],{"type":55,"value":870},{"type":50,"tag":249,"props":4545,"children":4546},{"style":366},[4547],{"type":55,"value":912},{"type":50,"tag":249,"props":4549,"children":4550},{"style":295},[4551],{"type":55,"value":917},{"type":50,"tag":249,"props":4553,"children":4554},{"class":251,"line":1165},[4555,4559,4563,4567,4571,4575,4580,4584,4588,4592,4596],{"type":50,"tag":249,"props":4556,"children":4557},{"style":301},[4558],{"type":55,"value":4091},{"type":50,"tag":249,"props":4560,"children":4561},{"style":295},[4562],{"type":55,"value":662},{"type":50,"tag":249,"props":4564,"children":4565},{"style":665},[4566],{"type":55,"value":668},{"type":50,"tag":249,"props":4568,"children":4569},{"style":360},[4570],{"type":55,"value":673},{"type":50,"tag":249,"props":4572,"children":4573},{"style":295},[4574],{"type":55,"value":329},{"type":50,"tag":249,"props":4576,"children":4577},{"style":261},[4578],{"type":55,"value":4579},"User in waiting room:",{"type":50,"tag":249,"props":4581,"children":4582},{"style":295},[4583],{"type":55,"value":329},{"type":50,"tag":249,"props":4585,"children":4586},{"style":295},[4587],{"type":55,"value":691},{"type":50,"tag":249,"props":4589,"children":4590},{"style":301},[4591],{"type":55,"value":4125},{"type":50,"tag":249,"props":4593,"children":4594},{"style":360},[4595],{"type":55,"value":870},{"type":50,"tag":249,"props":4597,"children":4598},{"style":295},[4599],{"type":55,"value":334},{"type":50,"tag":249,"props":4601,"children":4602},{"class":251,"line":1187},[4603,4607,4611],{"type":50,"tag":249,"props":4604,"children":4605},{"style":295},[4606],{"type":55,"value":1918},{"type":50,"tag":249,"props":4608,"children":4609},{"style":301},[4610],{"type":55,"value":870},{"type":50,"tag":249,"props":4612,"children":4613},{"style":295},[4614],{"type":55,"value":334},{"type":50,"tag":231,"props":4616,"children":4618},{"id":4617},"meeting-status",[4619],{"type":55,"value":4620},"Meeting Status",{"type":50,"tag":238,"props":4622,"children":4624},{"className":277,"code":4623,"language":279,"meta":243,"style":243},"ZoomMtg.inMeetingServiceListener('onMeetingStatus', (data) => {\n  \u002F\u002F status: 1=connecting, 2=connected, 3=disconnected, 4=reconnecting\n  console.log('Status:', data.status);\n});\n",[4625],{"type":50,"tag":76,"props":4626,"children":4627},{"__ignoreMap":243},[4628,4684,4692,4749],{"type":50,"tag":249,"props":4629,"children":4630},{"class":251,"line":252},[4631,4635,4639,4643,4647,4651,4656,4660,4664,4668,4672,4676,4680],{"type":50,"tag":249,"props":4632,"children":4633},{"style":301},[4634],{"type":55,"value":81},{"type":50,"tag":249,"props":4636,"children":4637},{"style":295},[4638],{"type":55,"value":662},{"type":50,"tag":249,"props":4640,"children":4641},{"style":665},[4642],{"type":55,"value":4041},{"type":50,"tag":249,"props":4644,"children":4645},{"style":301},[4646],{"type":55,"value":673},{"type":50,"tag":249,"props":4648,"children":4649},{"style":295},[4650],{"type":55,"value":329},{"type":50,"tag":249,"props":4652,"children":4653},{"style":261},[4654],{"type":55,"value":4655},"onMeetingStatus",{"type":50,"tag":249,"props":4657,"children":4658},{"style":295},[4659],{"type":55,"value":329},{"type":50,"tag":249,"props":4661,"children":4662},{"style":295},[4663],{"type":55,"value":691},{"type":50,"tag":249,"props":4665,"children":4666},{"style":295},[4667],{"type":55,"value":1268},{"type":50,"tag":249,"props":4669,"children":4670},{"style":1271},[4671],{"type":55,"value":4071},{"type":50,"tag":249,"props":4673,"children":4674},{"style":295},[4675],{"type":55,"value":870},{"type":50,"tag":249,"props":4677,"children":4678},{"style":366},[4679],{"type":55,"value":912},{"type":50,"tag":249,"props":4681,"children":4682},{"style":295},[4683],{"type":55,"value":917},{"type":50,"tag":249,"props":4685,"children":4686},{"class":251,"line":405},[4687],{"type":50,"tag":249,"props":4688,"children":4689},{"style":646},[4690],{"type":55,"value":4691},"  \u002F\u002F status: 1=connecting, 2=connected, 3=disconnected, 4=reconnecting\n",{"type":50,"tag":249,"props":4693,"children":4694},{"class":251,"line":450},[4695,4699,4703,4707,4711,4715,4720,4724,4728,4732,4736,4741,4745],{"type":50,"tag":249,"props":4696,"children":4697},{"style":301},[4698],{"type":55,"value":4091},{"type":50,"tag":249,"props":4700,"children":4701},{"style":295},[4702],{"type":55,"value":662},{"type":50,"tag":249,"props":4704,"children":4705},{"style":665},[4706],{"type":55,"value":668},{"type":50,"tag":249,"props":4708,"children":4709},{"style":360},[4710],{"type":55,"value":673},{"type":50,"tag":249,"props":4712,"children":4713},{"style":295},[4714],{"type":55,"value":329},{"type":50,"tag":249,"props":4716,"children":4717},{"style":261},[4718],{"type":55,"value":4719},"Status:",{"type":50,"tag":249,"props":4721,"children":4722},{"style":295},[4723],{"type":55,"value":329},{"type":50,"tag":249,"props":4725,"children":4726},{"style":295},[4727],{"type":55,"value":691},{"type":50,"tag":249,"props":4729,"children":4730},{"style":301},[4731],{"type":55,"value":4125},{"type":50,"tag":249,"props":4733,"children":4734},{"style":295},[4735],{"type":55,"value":662},{"type":50,"tag":249,"props":4737,"children":4738},{"style":301},[4739],{"type":55,"value":4740},"status",{"type":50,"tag":249,"props":4742,"children":4743},{"style":360},[4744],{"type":55,"value":870},{"type":50,"tag":249,"props":4746,"children":4747},{"style":295},[4748],{"type":55,"value":334},{"type":50,"tag":249,"props":4750,"children":4751},{"class":251,"line":495},[4752,4756,4760],{"type":50,"tag":249,"props":4753,"children":4754},{"style":295},[4755],{"type":55,"value":1918},{"type":50,"tag":249,"props":4757,"children":4758},{"style":301},[4759],{"type":55,"value":870},{"type":50,"tag":249,"props":4761,"children":4762},{"style":295},[4763],{"type":55,"value":334},{"type":50,"tag":231,"props":4765,"children":4767},{"id":4766},"audiovideo-events",[4768],{"type":55,"value":4769},"Audio\u002FVideo Events",{"type":50,"tag":238,"props":4771,"children":4773},{"className":277,"code":4772,"language":279,"meta":243,"style":243},"ZoomMtg.inMeetingServiceListener('onActiveSpeaker', (data) => {\n  \u002F\u002F [{userId, userName}]\n  console.log('Active speaker:', data);\n});\n\nZoomMtg.inMeetingServiceListener('onNetworkQualityChange', (data) => {\n  \u002F\u002F {level: 0-5, userId, type: 'uplink'}\n  \u002F\u002F 0-1=bad, 2=normal, 3-5=good\n  console.log('Network quality:', data);\n});\n\nZoomMtg.inMeetingServiceListener('onAudioQos', (data) => {\n  console.log('Audio QoS:', data);\n});\n\nZoomMtg.inMeetingServiceListener('onVideoQos', (data) => {\n  console.log('Video QoS:', data);\n});\n",[4774],{"type":50,"tag":76,"props":4775,"children":4776},{"__ignoreMap":243},[4777,4833,4841,4889,4904,4911,4967,4975,4983,5031,5046,5053,5109,5157,5172,5179,5235,5283],{"type":50,"tag":249,"props":4778,"children":4779},{"class":251,"line":252},[4780,4784,4788,4792,4796,4800,4805,4809,4813,4817,4821,4825,4829],{"type":50,"tag":249,"props":4781,"children":4782},{"style":301},[4783],{"type":55,"value":81},{"type":50,"tag":249,"props":4785,"children":4786},{"style":295},[4787],{"type":55,"value":662},{"type":50,"tag":249,"props":4789,"children":4790},{"style":665},[4791],{"type":55,"value":4041},{"type":50,"tag":249,"props":4793,"children":4794},{"style":301},[4795],{"type":55,"value":673},{"type":50,"tag":249,"props":4797,"children":4798},{"style":295},[4799],{"type":55,"value":329},{"type":50,"tag":249,"props":4801,"children":4802},{"style":261},[4803],{"type":55,"value":4804},"onActiveSpeaker",{"type":50,"tag":249,"props":4806,"children":4807},{"style":295},[4808],{"type":55,"value":329},{"type":50,"tag":249,"props":4810,"children":4811},{"style":295},[4812],{"type":55,"value":691},{"type":50,"tag":249,"props":4814,"children":4815},{"style":295},[4816],{"type":55,"value":1268},{"type":50,"tag":249,"props":4818,"children":4819},{"style":1271},[4820],{"type":55,"value":4071},{"type":50,"tag":249,"props":4822,"children":4823},{"style":295},[4824],{"type":55,"value":870},{"type":50,"tag":249,"props":4826,"children":4827},{"style":366},[4828],{"type":55,"value":912},{"type":50,"tag":249,"props":4830,"children":4831},{"style":295},[4832],{"type":55,"value":917},{"type":50,"tag":249,"props":4834,"children":4835},{"class":251,"line":405},[4836],{"type":50,"tag":249,"props":4837,"children":4838},{"style":646},[4839],{"type":55,"value":4840},"  \u002F\u002F [{userId, userName}]\n",{"type":50,"tag":249,"props":4842,"children":4843},{"class":251,"line":450},[4844,4848,4852,4856,4860,4864,4869,4873,4877,4881,4885],{"type":50,"tag":249,"props":4845,"children":4846},{"style":301},[4847],{"type":55,"value":4091},{"type":50,"tag":249,"props":4849,"children":4850},{"style":295},[4851],{"type":55,"value":662},{"type":50,"tag":249,"props":4853,"children":4854},{"style":665},[4855],{"type":55,"value":668},{"type":50,"tag":249,"props":4857,"children":4858},{"style":360},[4859],{"type":55,"value":673},{"type":50,"tag":249,"props":4861,"children":4862},{"style":295},[4863],{"type":55,"value":329},{"type":50,"tag":249,"props":4865,"children":4866},{"style":261},[4867],{"type":55,"value":4868},"Active speaker:",{"type":50,"tag":249,"props":4870,"children":4871},{"style":295},[4872],{"type":55,"value":329},{"type":50,"tag":249,"props":4874,"children":4875},{"style":295},[4876],{"type":55,"value":691},{"type":50,"tag":249,"props":4878,"children":4879},{"style":301},[4880],{"type":55,"value":4125},{"type":50,"tag":249,"props":4882,"children":4883},{"style":360},[4884],{"type":55,"value":870},{"type":50,"tag":249,"props":4886,"children":4887},{"style":295},[4888],{"type":55,"value":334},{"type":50,"tag":249,"props":4890,"children":4891},{"class":251,"line":495},[4892,4896,4900],{"type":50,"tag":249,"props":4893,"children":4894},{"style":295},[4895],{"type":55,"value":1918},{"type":50,"tag":249,"props":4897,"children":4898},{"style":301},[4899],{"type":55,"value":870},{"type":50,"tag":249,"props":4901,"children":4902},{"style":295},[4903],{"type":55,"value":334},{"type":50,"tag":249,"props":4905,"children":4906},{"class":251,"line":540},[4907],{"type":50,"tag":249,"props":4908,"children":4909},{"emptyLinePlaceholder":719},[4910],{"type":55,"value":722},{"type":50,"tag":249,"props":4912,"children":4913},{"class":251,"line":585},[4914,4918,4922,4926,4930,4934,4939,4943,4947,4951,4955,4959,4963],{"type":50,"tag":249,"props":4915,"children":4916},{"style":301},[4917],{"type":55,"value":81},{"type":50,"tag":249,"props":4919,"children":4920},{"style":295},[4921],{"type":55,"value":662},{"type":50,"tag":249,"props":4923,"children":4924},{"style":665},[4925],{"type":55,"value":4041},{"type":50,"tag":249,"props":4927,"children":4928},{"style":301},[4929],{"type":55,"value":673},{"type":50,"tag":249,"props":4931,"children":4932},{"style":295},[4933],{"type":55,"value":329},{"type":50,"tag":249,"props":4935,"children":4936},{"style":261},[4937],{"type":55,"value":4938},"onNetworkQualityChange",{"type":50,"tag":249,"props":4940,"children":4941},{"style":295},[4942],{"type":55,"value":329},{"type":50,"tag":249,"props":4944,"children":4945},{"style":295},[4946],{"type":55,"value":691},{"type":50,"tag":249,"props":4948,"children":4949},{"style":295},[4950],{"type":55,"value":1268},{"type":50,"tag":249,"props":4952,"children":4953},{"style":1271},[4954],{"type":55,"value":4071},{"type":50,"tag":249,"props":4956,"children":4957},{"style":295},[4958],{"type":55,"value":870},{"type":50,"tag":249,"props":4960,"children":4961},{"style":366},[4962],{"type":55,"value":912},{"type":50,"tag":249,"props":4964,"children":4965},{"style":295},[4966],{"type":55,"value":917},{"type":50,"tag":249,"props":4968,"children":4969},{"class":251,"line":748},[4970],{"type":50,"tag":249,"props":4971,"children":4972},{"style":646},[4973],{"type":55,"value":4974},"  \u002F\u002F {level: 0-5, userId, type: 'uplink'}\n",{"type":50,"tag":249,"props":4976,"children":4977},{"class":251,"line":757},[4978],{"type":50,"tag":249,"props":4979,"children":4980},{"style":646},[4981],{"type":55,"value":4982},"  \u002F\u002F 0-1=bad, 2=normal, 3-5=good\n",{"type":50,"tag":249,"props":4984,"children":4985},{"class":251,"line":783},[4986,4990,4994,4998,5002,5006,5011,5015,5019,5023,5027],{"type":50,"tag":249,"props":4987,"children":4988},{"style":301},[4989],{"type":55,"value":4091},{"type":50,"tag":249,"props":4991,"children":4992},{"style":295},[4993],{"type":55,"value":662},{"type":50,"tag":249,"props":4995,"children":4996},{"style":665},[4997],{"type":55,"value":668},{"type":50,"tag":249,"props":4999,"children":5000},{"style":360},[5001],{"type":55,"value":673},{"type":50,"tag":249,"props":5003,"children":5004},{"style":295},[5005],{"type":55,"value":329},{"type":50,"tag":249,"props":5007,"children":5008},{"style":261},[5009],{"type":55,"value":5010},"Network quality:",{"type":50,"tag":249,"props":5012,"children":5013},{"style":295},[5014],{"type":55,"value":329},{"type":50,"tag":249,"props":5016,"children":5017},{"style":295},[5018],{"type":55,"value":691},{"type":50,"tag":249,"props":5020,"children":5021},{"style":301},[5022],{"type":55,"value":4125},{"type":50,"tag":249,"props":5024,"children":5025},{"style":360},[5026],{"type":55,"value":870},{"type":50,"tag":249,"props":5028,"children":5029},{"style":295},[5030],{"type":55,"value":334},{"type":50,"tag":249,"props":5032,"children":5033},{"class":251,"line":808},[5034,5038,5042],{"type":50,"tag":249,"props":5035,"children":5036},{"style":295},[5037],{"type":55,"value":1918},{"type":50,"tag":249,"props":5039,"children":5040},{"style":301},[5041],{"type":55,"value":870},{"type":50,"tag":249,"props":5043,"children":5044},{"style":295},[5045],{"type":55,"value":334},{"type":50,"tag":249,"props":5047,"children":5048},{"class":251,"line":816},[5049],{"type":50,"tag":249,"props":5050,"children":5051},{"emptyLinePlaceholder":719},[5052],{"type":55,"value":722},{"type":50,"tag":249,"props":5054,"children":5055},{"class":251,"line":825},[5056,5060,5064,5068,5072,5076,5081,5085,5089,5093,5097,5101,5105],{"type":50,"tag":249,"props":5057,"children":5058},{"style":301},[5059],{"type":55,"value":81},{"type":50,"tag":249,"props":5061,"children":5062},{"style":295},[5063],{"type":55,"value":662},{"type":50,"tag":249,"props":5065,"children":5066},{"style":665},[5067],{"type":55,"value":4041},{"type":50,"tag":249,"props":5069,"children":5070},{"style":301},[5071],{"type":55,"value":673},{"type":50,"tag":249,"props":5073,"children":5074},{"style":295},[5075],{"type":55,"value":329},{"type":50,"tag":249,"props":5077,"children":5078},{"style":261},[5079],{"type":55,"value":5080},"onAudioQos",{"type":50,"tag":249,"props":5082,"children":5083},{"style":295},[5084],{"type":55,"value":329},{"type":50,"tag":249,"props":5086,"children":5087},{"style":295},[5088],{"type":55,"value":691},{"type":50,"tag":249,"props":5090,"children":5091},{"style":295},[5092],{"type":55,"value":1268},{"type":50,"tag":249,"props":5094,"children":5095},{"style":1271},[5096],{"type":55,"value":4071},{"type":50,"tag":249,"props":5098,"children":5099},{"style":295},[5100],{"type":55,"value":870},{"type":50,"tag":249,"props":5102,"children":5103},{"style":366},[5104],{"type":55,"value":912},{"type":50,"tag":249,"props":5106,"children":5107},{"style":295},[5108],{"type":55,"value":917},{"type":50,"tag":249,"props":5110,"children":5111},{"class":251,"line":877},[5112,5116,5120,5124,5128,5132,5137,5141,5145,5149,5153],{"type":50,"tag":249,"props":5113,"children":5114},{"style":301},[5115],{"type":55,"value":4091},{"type":50,"tag":249,"props":5117,"children":5118},{"style":295},[5119],{"type":55,"value":662},{"type":50,"tag":249,"props":5121,"children":5122},{"style":665},[5123],{"type":55,"value":668},{"type":50,"tag":249,"props":5125,"children":5126},{"style":360},[5127],{"type":55,"value":673},{"type":50,"tag":249,"props":5129,"children":5130},{"style":295},[5131],{"type":55,"value":329},{"type":50,"tag":249,"props":5133,"children":5134},{"style":261},[5135],{"type":55,"value":5136},"Audio QoS:",{"type":50,"tag":249,"props":5138,"children":5139},{"style":295},[5140],{"type":55,"value":329},{"type":50,"tag":249,"props":5142,"children":5143},{"style":295},[5144],{"type":55,"value":691},{"type":50,"tag":249,"props":5146,"children":5147},{"style":301},[5148],{"type":55,"value":4125},{"type":50,"tag":249,"props":5150,"children":5151},{"style":360},[5152],{"type":55,"value":870},{"type":50,"tag":249,"props":5154,"children":5155},{"style":295},[5156],{"type":55,"value":334},{"type":50,"tag":249,"props":5158,"children":5159},{"class":251,"line":920},[5160,5164,5168],{"type":50,"tag":249,"props":5161,"children":5162},{"style":295},[5163],{"type":55,"value":1918},{"type":50,"tag":249,"props":5165,"children":5166},{"style":301},[5167],{"type":55,"value":870},{"type":50,"tag":249,"props":5169,"children":5170},{"style":295},[5171],{"type":55,"value":334},{"type":50,"tag":249,"props":5173,"children":5174},{"class":251,"line":929},[5175],{"type":50,"tag":249,"props":5176,"children":5177},{"emptyLinePlaceholder":719},[5178],{"type":55,"value":722},{"type":50,"tag":249,"props":5180,"children":5181},{"class":251,"line":938},[5182,5186,5190,5194,5198,5202,5207,5211,5215,5219,5223,5227,5231],{"type":50,"tag":249,"props":5183,"children":5184},{"style":301},[5185],{"type":55,"value":81},{"type":50,"tag":249,"props":5187,"children":5188},{"style":295},[5189],{"type":55,"value":662},{"type":50,"tag":249,"props":5191,"children":5192},{"style":665},[5193],{"type":55,"value":4041},{"type":50,"tag":249,"props":5195,"children":5196},{"style":301},[5197],{"type":55,"value":673},{"type":50,"tag":249,"props":5199,"children":5200},{"style":295},[5201],{"type":55,"value":329},{"type":50,"tag":249,"props":5203,"children":5204},{"style":261},[5205],{"type":55,"value":5206},"onVideoQos",{"type":50,"tag":249,"props":5208,"children":5209},{"style":295},[5210],{"type":55,"value":329},{"type":50,"tag":249,"props":5212,"children":5213},{"style":295},[5214],{"type":55,"value":691},{"type":50,"tag":249,"props":5216,"children":5217},{"style":295},[5218],{"type":55,"value":1268},{"type":50,"tag":249,"props":5220,"children":5221},{"style":1271},[5222],{"type":55,"value":4071},{"type":50,"tag":249,"props":5224,"children":5225},{"style":295},[5226],{"type":55,"value":870},{"type":50,"tag":249,"props":5228,"children":5229},{"style":366},[5230],{"type":55,"value":912},{"type":50,"tag":249,"props":5232,"children":5233},{"style":295},[5234],{"type":55,"value":917},{"type":50,"tag":249,"props":5236,"children":5237},{"class":251,"line":965},[5238,5242,5246,5250,5254,5258,5263,5267,5271,5275,5279],{"type":50,"tag":249,"props":5239,"children":5240},{"style":301},[5241],{"type":55,"value":4091},{"type":50,"tag":249,"props":5243,"children":5244},{"style":295},[5245],{"type":55,"value":662},{"type":50,"tag":249,"props":5247,"children":5248},{"style":665},[5249],{"type":55,"value":668},{"type":50,"tag":249,"props":5251,"children":5252},{"style":360},[5253],{"type":55,"value":673},{"type":50,"tag":249,"props":5255,"children":5256},{"style":295},[5257],{"type":55,"value":329},{"type":50,"tag":249,"props":5259,"children":5260},{"style":261},[5261],{"type":55,"value":5262},"Video QoS:",{"type":50,"tag":249,"props":5264,"children":5265},{"style":295},[5266],{"type":55,"value":329},{"type":50,"tag":249,"props":5268,"children":5269},{"style":295},[5270],{"type":55,"value":691},{"type":50,"tag":249,"props":5272,"children":5273},{"style":301},[5274],{"type":55,"value":4125},{"type":50,"tag":249,"props":5276,"children":5277},{"style":360},[5278],{"type":55,"value":870},{"type":50,"tag":249,"props":5280,"children":5281},{"style":295},[5282],{"type":55,"value":334},{"type":50,"tag":249,"props":5284,"children":5285},{"class":251,"line":997},[5286,5290,5294],{"type":50,"tag":249,"props":5287,"children":5288},{"style":295},[5289],{"type":55,"value":1918},{"type":50,"tag":249,"props":5291,"children":5292},{"style":301},[5293],{"type":55,"value":870},{"type":50,"tag":249,"props":5295,"children":5296},{"style":295},[5297],{"type":55,"value":334},{"type":50,"tag":231,"props":5299,"children":5301},{"id":5300},"chat-communication",[5302],{"type":55,"value":5303},"Chat & Communication",{"type":50,"tag":238,"props":5305,"children":5307},{"className":277,"code":5306,"language":279,"meta":243,"style":243},"ZoomMtg.inMeetingServiceListener('onReceiveChatMsg', (data) => {\n  console.log('Chat message:', data);\n});\n\nZoomMtg.inMeetingServiceListener('onReceiveTranscriptionMsg', (data) => {\n  console.log('Transcription:', data);\n});\n\nZoomMtg.inMeetingServiceListener('onReceiveTranslateMsg', (data) => {\n  console.log('Translation:', data);\n});\n",[5308],{"type":50,"tag":76,"props":5309,"children":5310},{"__ignoreMap":243},[5311,5367,5415,5430,5437,5493,5541,5556,5563,5619,5667],{"type":50,"tag":249,"props":5312,"children":5313},{"class":251,"line":252},[5314,5318,5322,5326,5330,5334,5339,5343,5347,5351,5355,5359,5363],{"type":50,"tag":249,"props":5315,"children":5316},{"style":301},[5317],{"type":55,"value":81},{"type":50,"tag":249,"props":5319,"children":5320},{"style":295},[5321],{"type":55,"value":662},{"type":50,"tag":249,"props":5323,"children":5324},{"style":665},[5325],{"type":55,"value":4041},{"type":50,"tag":249,"props":5327,"children":5328},{"style":301},[5329],{"type":55,"value":673},{"type":50,"tag":249,"props":5331,"children":5332},{"style":295},[5333],{"type":55,"value":329},{"type":50,"tag":249,"props":5335,"children":5336},{"style":261},[5337],{"type":55,"value":5338},"onReceiveChatMsg",{"type":50,"tag":249,"props":5340,"children":5341},{"style":295},[5342],{"type":55,"value":329},{"type":50,"tag":249,"props":5344,"children":5345},{"style":295},[5346],{"type":55,"value":691},{"type":50,"tag":249,"props":5348,"children":5349},{"style":295},[5350],{"type":55,"value":1268},{"type":50,"tag":249,"props":5352,"children":5353},{"style":1271},[5354],{"type":55,"value":4071},{"type":50,"tag":249,"props":5356,"children":5357},{"style":295},[5358],{"type":55,"value":870},{"type":50,"tag":249,"props":5360,"children":5361},{"style":366},[5362],{"type":55,"value":912},{"type":50,"tag":249,"props":5364,"children":5365},{"style":295},[5366],{"type":55,"value":917},{"type":50,"tag":249,"props":5368,"children":5369},{"class":251,"line":405},[5370,5374,5378,5382,5386,5390,5395,5399,5403,5407,5411],{"type":50,"tag":249,"props":5371,"children":5372},{"style":301},[5373],{"type":55,"value":4091},{"type":50,"tag":249,"props":5375,"children":5376},{"style":295},[5377],{"type":55,"value":662},{"type":50,"tag":249,"props":5379,"children":5380},{"style":665},[5381],{"type":55,"value":668},{"type":50,"tag":249,"props":5383,"children":5384},{"style":360},[5385],{"type":55,"value":673},{"type":50,"tag":249,"props":5387,"children":5388},{"style":295},[5389],{"type":55,"value":329},{"type":50,"tag":249,"props":5391,"children":5392},{"style":261},[5393],{"type":55,"value":5394},"Chat message:",{"type":50,"tag":249,"props":5396,"children":5397},{"style":295},[5398],{"type":55,"value":329},{"type":50,"tag":249,"props":5400,"children":5401},{"style":295},[5402],{"type":55,"value":691},{"type":50,"tag":249,"props":5404,"children":5405},{"style":301},[5406],{"type":55,"value":4125},{"type":50,"tag":249,"props":5408,"children":5409},{"style":360},[5410],{"type":55,"value":870},{"type":50,"tag":249,"props":5412,"children":5413},{"style":295},[5414],{"type":55,"value":334},{"type":50,"tag":249,"props":5416,"children":5417},{"class":251,"line":450},[5418,5422,5426],{"type":50,"tag":249,"props":5419,"children":5420},{"style":295},[5421],{"type":55,"value":1918},{"type":50,"tag":249,"props":5423,"children":5424},{"style":301},[5425],{"type":55,"value":870},{"type":50,"tag":249,"props":5427,"children":5428},{"style":295},[5429],{"type":55,"value":334},{"type":50,"tag":249,"props":5431,"children":5432},{"class":251,"line":495},[5433],{"type":50,"tag":249,"props":5434,"children":5435},{"emptyLinePlaceholder":719},[5436],{"type":55,"value":722},{"type":50,"tag":249,"props":5438,"children":5439},{"class":251,"line":540},[5440,5444,5448,5452,5456,5460,5465,5469,5473,5477,5481,5485,5489],{"type":50,"tag":249,"props":5441,"children":5442},{"style":301},[5443],{"type":55,"value":81},{"type":50,"tag":249,"props":5445,"children":5446},{"style":295},[5447],{"type":55,"value":662},{"type":50,"tag":249,"props":5449,"children":5450},{"style":665},[5451],{"type":55,"value":4041},{"type":50,"tag":249,"props":5453,"children":5454},{"style":301},[5455],{"type":55,"value":673},{"type":50,"tag":249,"props":5457,"children":5458},{"style":295},[5459],{"type":55,"value":329},{"type":50,"tag":249,"props":5461,"children":5462},{"style":261},[5463],{"type":55,"value":5464},"onReceiveTranscriptionMsg",{"type":50,"tag":249,"props":5466,"children":5467},{"style":295},[5468],{"type":55,"value":329},{"type":50,"tag":249,"props":5470,"children":5471},{"style":295},[5472],{"type":55,"value":691},{"type":50,"tag":249,"props":5474,"children":5475},{"style":295},[5476],{"type":55,"value":1268},{"type":50,"tag":249,"props":5478,"children":5479},{"style":1271},[5480],{"type":55,"value":4071},{"type":50,"tag":249,"props":5482,"children":5483},{"style":295},[5484],{"type":55,"value":870},{"type":50,"tag":249,"props":5486,"children":5487},{"style":366},[5488],{"type":55,"value":912},{"type":50,"tag":249,"props":5490,"children":5491},{"style":295},[5492],{"type":55,"value":917},{"type":50,"tag":249,"props":5494,"children":5495},{"class":251,"line":585},[5496,5500,5504,5508,5512,5516,5521,5525,5529,5533,5537],{"type":50,"tag":249,"props":5497,"children":5498},{"style":301},[5499],{"type":55,"value":4091},{"type":50,"tag":249,"props":5501,"children":5502},{"style":295},[5503],{"type":55,"value":662},{"type":50,"tag":249,"props":5505,"children":5506},{"style":665},[5507],{"type":55,"value":668},{"type":50,"tag":249,"props":5509,"children":5510},{"style":360},[5511],{"type":55,"value":673},{"type":50,"tag":249,"props":5513,"children":5514},{"style":295},[5515],{"type":55,"value":329},{"type":50,"tag":249,"props":5517,"children":5518},{"style":261},[5519],{"type":55,"value":5520},"Transcription:",{"type":50,"tag":249,"props":5522,"children":5523},{"style":295},[5524],{"type":55,"value":329},{"type":50,"tag":249,"props":5526,"children":5527},{"style":295},[5528],{"type":55,"value":691},{"type":50,"tag":249,"props":5530,"children":5531},{"style":301},[5532],{"type":55,"value":4125},{"type":50,"tag":249,"props":5534,"children":5535},{"style":360},[5536],{"type":55,"value":870},{"type":50,"tag":249,"props":5538,"children":5539},{"style":295},[5540],{"type":55,"value":334},{"type":50,"tag":249,"props":5542,"children":5543},{"class":251,"line":748},[5544,5548,5552],{"type":50,"tag":249,"props":5545,"children":5546},{"style":295},[5547],{"type":55,"value":1918},{"type":50,"tag":249,"props":5549,"children":5550},{"style":301},[5551],{"type":55,"value":870},{"type":50,"tag":249,"props":5553,"children":5554},{"style":295},[5555],{"type":55,"value":334},{"type":50,"tag":249,"props":5557,"children":5558},{"class":251,"line":757},[5559],{"type":50,"tag":249,"props":5560,"children":5561},{"emptyLinePlaceholder":719},[5562],{"type":55,"value":722},{"type":50,"tag":249,"props":5564,"children":5565},{"class":251,"line":783},[5566,5570,5574,5578,5582,5586,5591,5595,5599,5603,5607,5611,5615],{"type":50,"tag":249,"props":5567,"children":5568},{"style":301},[5569],{"type":55,"value":81},{"type":50,"tag":249,"props":5571,"children":5572},{"style":295},[5573],{"type":55,"value":662},{"type":50,"tag":249,"props":5575,"children":5576},{"style":665},[5577],{"type":55,"value":4041},{"type":50,"tag":249,"props":5579,"children":5580},{"style":301},[5581],{"type":55,"value":673},{"type":50,"tag":249,"props":5583,"children":5584},{"style":295},[5585],{"type":55,"value":329},{"type":50,"tag":249,"props":5587,"children":5588},{"style":261},[5589],{"type":55,"value":5590},"onReceiveTranslateMsg",{"type":50,"tag":249,"props":5592,"children":5593},{"style":295},[5594],{"type":55,"value":329},{"type":50,"tag":249,"props":5596,"children":5597},{"style":295},[5598],{"type":55,"value":691},{"type":50,"tag":249,"props":5600,"children":5601},{"style":295},[5602],{"type":55,"value":1268},{"type":50,"tag":249,"props":5604,"children":5605},{"style":1271},[5606],{"type":55,"value":4071},{"type":50,"tag":249,"props":5608,"children":5609},{"style":295},[5610],{"type":55,"value":870},{"type":50,"tag":249,"props":5612,"children":5613},{"style":366},[5614],{"type":55,"value":912},{"type":50,"tag":249,"props":5616,"children":5617},{"style":295},[5618],{"type":55,"value":917},{"type":50,"tag":249,"props":5620,"children":5621},{"class":251,"line":808},[5622,5626,5630,5634,5638,5642,5647,5651,5655,5659,5663],{"type":50,"tag":249,"props":5623,"children":5624},{"style":301},[5625],{"type":55,"value":4091},{"type":50,"tag":249,"props":5627,"children":5628},{"style":295},[5629],{"type":55,"value":662},{"type":50,"tag":249,"props":5631,"children":5632},{"style":665},[5633],{"type":55,"value":668},{"type":50,"tag":249,"props":5635,"children":5636},{"style":360},[5637],{"type":55,"value":673},{"type":50,"tag":249,"props":5639,"children":5640},{"style":295},[5641],{"type":55,"value":329},{"type":50,"tag":249,"props":5643,"children":5644},{"style":261},[5645],{"type":55,"value":5646},"Translation:",{"type":50,"tag":249,"props":5648,"children":5649},{"style":295},[5650],{"type":55,"value":329},{"type":50,"tag":249,"props":5652,"children":5653},{"style":295},[5654],{"type":55,"value":691},{"type":50,"tag":249,"props":5656,"children":5657},{"style":301},[5658],{"type":55,"value":4125},{"type":50,"tag":249,"props":5660,"children":5661},{"style":360},[5662],{"type":55,"value":870},{"type":50,"tag":249,"props":5664,"children":5665},{"style":295},[5666],{"type":55,"value":334},{"type":50,"tag":249,"props":5668,"children":5669},{"class":251,"line":816},[5670,5674,5678],{"type":50,"tag":249,"props":5671,"children":5672},{"style":295},[5673],{"type":55,"value":1918},{"type":50,"tag":249,"props":5675,"children":5676},{"style":301},[5677],{"type":55,"value":870},{"type":50,"tag":249,"props":5679,"children":5680},{"style":295},[5681],{"type":55,"value":334},{"type":50,"tag":231,"props":5683,"children":5685},{"id":5684},"recording-sharing",[5686],{"type":55,"value":5687},"Recording & Sharing",{"type":50,"tag":238,"props":5689,"children":5691},{"className":277,"code":5690,"language":279,"meta":243,"style":243},"ZoomMtg.inMeetingServiceListener('onRecordingChange', (data) => {\n  console.log('Recording status:', data);\n});\n\nZoomMtg.inMeetingServiceListener('onShareContentChange', (data) => {\n  console.log('Share content:', data);\n});\n\nZoomMtg.inMeetingServiceListener('receiveSharingChannelReady', (data) => {\n  console.log('Sharing channel ready:', data);\n});\n",[5692],{"type":50,"tag":76,"props":5693,"children":5694},{"__ignoreMap":243},[5695,5751,5799,5814,5821,5877,5925,5940,5947,6003,6051],{"type":50,"tag":249,"props":5696,"children":5697},{"class":251,"line":252},[5698,5702,5706,5710,5714,5718,5723,5727,5731,5735,5739,5743,5747],{"type":50,"tag":249,"props":5699,"children":5700},{"style":301},[5701],{"type":55,"value":81},{"type":50,"tag":249,"props":5703,"children":5704},{"style":295},[5705],{"type":55,"value":662},{"type":50,"tag":249,"props":5707,"children":5708},{"style":665},[5709],{"type":55,"value":4041},{"type":50,"tag":249,"props":5711,"children":5712},{"style":301},[5713],{"type":55,"value":673},{"type":50,"tag":249,"props":5715,"children":5716},{"style":295},[5717],{"type":55,"value":329},{"type":50,"tag":249,"props":5719,"children":5720},{"style":261},[5721],{"type":55,"value":5722},"onRecordingChange",{"type":50,"tag":249,"props":5724,"children":5725},{"style":295},[5726],{"type":55,"value":329},{"type":50,"tag":249,"props":5728,"children":5729},{"style":295},[5730],{"type":55,"value":691},{"type":50,"tag":249,"props":5732,"children":5733},{"style":295},[5734],{"type":55,"value":1268},{"type":50,"tag":249,"props":5736,"children":5737},{"style":1271},[5738],{"type":55,"value":4071},{"type":50,"tag":249,"props":5740,"children":5741},{"style":295},[5742],{"type":55,"value":870},{"type":50,"tag":249,"props":5744,"children":5745},{"style":366},[5746],{"type":55,"value":912},{"type":50,"tag":249,"props":5748,"children":5749},{"style":295},[5750],{"type":55,"value":917},{"type":50,"tag":249,"props":5752,"children":5753},{"class":251,"line":405},[5754,5758,5762,5766,5770,5774,5779,5783,5787,5791,5795],{"type":50,"tag":249,"props":5755,"children":5756},{"style":301},[5757],{"type":55,"value":4091},{"type":50,"tag":249,"props":5759,"children":5760},{"style":295},[5761],{"type":55,"value":662},{"type":50,"tag":249,"props":5763,"children":5764},{"style":665},[5765],{"type":55,"value":668},{"type":50,"tag":249,"props":5767,"children":5768},{"style":360},[5769],{"type":55,"value":673},{"type":50,"tag":249,"props":5771,"children":5772},{"style":295},[5773],{"type":55,"value":329},{"type":50,"tag":249,"props":5775,"children":5776},{"style":261},[5777],{"type":55,"value":5778},"Recording status:",{"type":50,"tag":249,"props":5780,"children":5781},{"style":295},[5782],{"type":55,"value":329},{"type":50,"tag":249,"props":5784,"children":5785},{"style":295},[5786],{"type":55,"value":691},{"type":50,"tag":249,"props":5788,"children":5789},{"style":301},[5790],{"type":55,"value":4125},{"type":50,"tag":249,"props":5792,"children":5793},{"style":360},[5794],{"type":55,"value":870},{"type":50,"tag":249,"props":5796,"children":5797},{"style":295},[5798],{"type":55,"value":334},{"type":50,"tag":249,"props":5800,"children":5801},{"class":251,"line":450},[5802,5806,5810],{"type":50,"tag":249,"props":5803,"children":5804},{"style":295},[5805],{"type":55,"value":1918},{"type":50,"tag":249,"props":5807,"children":5808},{"style":301},[5809],{"type":55,"value":870},{"type":50,"tag":249,"props":5811,"children":5812},{"style":295},[5813],{"type":55,"value":334},{"type":50,"tag":249,"props":5815,"children":5816},{"class":251,"line":495},[5817],{"type":50,"tag":249,"props":5818,"children":5819},{"emptyLinePlaceholder":719},[5820],{"type":55,"value":722},{"type":50,"tag":249,"props":5822,"children":5823},{"class":251,"line":540},[5824,5828,5832,5836,5840,5844,5849,5853,5857,5861,5865,5869,5873],{"type":50,"tag":249,"props":5825,"children":5826},{"style":301},[5827],{"type":55,"value":81},{"type":50,"tag":249,"props":5829,"children":5830},{"style":295},[5831],{"type":55,"value":662},{"type":50,"tag":249,"props":5833,"children":5834},{"style":665},[5835],{"type":55,"value":4041},{"type":50,"tag":249,"props":5837,"children":5838},{"style":301},[5839],{"type":55,"value":673},{"type":50,"tag":249,"props":5841,"children":5842},{"style":295},[5843],{"type":55,"value":329},{"type":50,"tag":249,"props":5845,"children":5846},{"style":261},[5847],{"type":55,"value":5848},"onShareContentChange",{"type":50,"tag":249,"props":5850,"children":5851},{"style":295},[5852],{"type":55,"value":329},{"type":50,"tag":249,"props":5854,"children":5855},{"style":295},[5856],{"type":55,"value":691},{"type":50,"tag":249,"props":5858,"children":5859},{"style":295},[5860],{"type":55,"value":1268},{"type":50,"tag":249,"props":5862,"children":5863},{"style":1271},[5864],{"type":55,"value":4071},{"type":50,"tag":249,"props":5866,"children":5867},{"style":295},[5868],{"type":55,"value":870},{"type":50,"tag":249,"props":5870,"children":5871},{"style":366},[5872],{"type":55,"value":912},{"type":50,"tag":249,"props":5874,"children":5875},{"style":295},[5876],{"type":55,"value":917},{"type":50,"tag":249,"props":5878,"children":5879},{"class":251,"line":585},[5880,5884,5888,5892,5896,5900,5905,5909,5913,5917,5921],{"type":50,"tag":249,"props":5881,"children":5882},{"style":301},[5883],{"type":55,"value":4091},{"type":50,"tag":249,"props":5885,"children":5886},{"style":295},[5887],{"type":55,"value":662},{"type":50,"tag":249,"props":5889,"children":5890},{"style":665},[5891],{"type":55,"value":668},{"type":50,"tag":249,"props":5893,"children":5894},{"style":360},[5895],{"type":55,"value":673},{"type":50,"tag":249,"props":5897,"children":5898},{"style":295},[5899],{"type":55,"value":329},{"type":50,"tag":249,"props":5901,"children":5902},{"style":261},[5903],{"type":55,"value":5904},"Share content:",{"type":50,"tag":249,"props":5906,"children":5907},{"style":295},[5908],{"type":55,"value":329},{"type":50,"tag":249,"props":5910,"children":5911},{"style":295},[5912],{"type":55,"value":691},{"type":50,"tag":249,"props":5914,"children":5915},{"style":301},[5916],{"type":55,"value":4125},{"type":50,"tag":249,"props":5918,"children":5919},{"style":360},[5920],{"type":55,"value":870},{"type":50,"tag":249,"props":5922,"children":5923},{"style":295},[5924],{"type":55,"value":334},{"type":50,"tag":249,"props":5926,"children":5927},{"class":251,"line":748},[5928,5932,5936],{"type":50,"tag":249,"props":5929,"children":5930},{"style":295},[5931],{"type":55,"value":1918},{"type":50,"tag":249,"props":5933,"children":5934},{"style":301},[5935],{"type":55,"value":870},{"type":50,"tag":249,"props":5937,"children":5938},{"style":295},[5939],{"type":55,"value":334},{"type":50,"tag":249,"props":5941,"children":5942},{"class":251,"line":757},[5943],{"type":50,"tag":249,"props":5944,"children":5945},{"emptyLinePlaceholder":719},[5946],{"type":55,"value":722},{"type":50,"tag":249,"props":5948,"children":5949},{"class":251,"line":783},[5950,5954,5958,5962,5966,5970,5975,5979,5983,5987,5991,5995,5999],{"type":50,"tag":249,"props":5951,"children":5952},{"style":301},[5953],{"type":55,"value":81},{"type":50,"tag":249,"props":5955,"children":5956},{"style":295},[5957],{"type":55,"value":662},{"type":50,"tag":249,"props":5959,"children":5960},{"style":665},[5961],{"type":55,"value":4041},{"type":50,"tag":249,"props":5963,"children":5964},{"style":301},[5965],{"type":55,"value":673},{"type":50,"tag":249,"props":5967,"children":5968},{"style":295},[5969],{"type":55,"value":329},{"type":50,"tag":249,"props":5971,"children":5972},{"style":261},[5973],{"type":55,"value":5974},"receiveSharingChannelReady",{"type":50,"tag":249,"props":5976,"children":5977},{"style":295},[5978],{"type":55,"value":329},{"type":50,"tag":249,"props":5980,"children":5981},{"style":295},[5982],{"type":55,"value":691},{"type":50,"tag":249,"props":5984,"children":5985},{"style":295},[5986],{"type":55,"value":1268},{"type":50,"tag":249,"props":5988,"children":5989},{"style":1271},[5990],{"type":55,"value":4071},{"type":50,"tag":249,"props":5992,"children":5993},{"style":295},[5994],{"type":55,"value":870},{"type":50,"tag":249,"props":5996,"children":5997},{"style":366},[5998],{"type":55,"value":912},{"type":50,"tag":249,"props":6000,"children":6001},{"style":295},[6002],{"type":55,"value":917},{"type":50,"tag":249,"props":6004,"children":6005},{"class":251,"line":808},[6006,6010,6014,6018,6022,6026,6031,6035,6039,6043,6047],{"type":50,"tag":249,"props":6007,"children":6008},{"style":301},[6009],{"type":55,"value":4091},{"type":50,"tag":249,"props":6011,"children":6012},{"style":295},[6013],{"type":55,"value":662},{"type":50,"tag":249,"props":6015,"children":6016},{"style":665},[6017],{"type":55,"value":668},{"type":50,"tag":249,"props":6019,"children":6020},{"style":360},[6021],{"type":55,"value":673},{"type":50,"tag":249,"props":6023,"children":6024},{"style":295},[6025],{"type":55,"value":329},{"type":50,"tag":249,"props":6027,"children":6028},{"style":261},[6029],{"type":55,"value":6030},"Sharing channel ready:",{"type":50,"tag":249,"props":6032,"children":6033},{"style":295},[6034],{"type":55,"value":329},{"type":50,"tag":249,"props":6036,"children":6037},{"style":295},[6038],{"type":55,"value":691},{"type":50,"tag":249,"props":6040,"children":6041},{"style":301},[6042],{"type":55,"value":4125},{"type":50,"tag":249,"props":6044,"children":6045},{"style":360},[6046],{"type":55,"value":870},{"type":50,"tag":249,"props":6048,"children":6049},{"style":295},[6050],{"type":55,"value":334},{"type":50,"tag":249,"props":6052,"children":6053},{"class":251,"line":816},[6054,6058,6062],{"type":50,"tag":249,"props":6055,"children":6056},{"style":295},[6057],{"type":55,"value":1918},{"type":50,"tag":249,"props":6059,"children":6060},{"style":301},[6061],{"type":55,"value":870},{"type":50,"tag":249,"props":6063,"children":6064},{"style":295},[6065],{"type":55,"value":334},{"type":50,"tag":231,"props":6067,"children":6069},{"id":6068},"breakout-rooms",[6070],{"type":55,"value":6071},"Breakout Rooms",{"type":50,"tag":238,"props":6073,"children":6075},{"className":277,"code":6074,"language":279,"meta":243,"style":243},"ZoomMtg.inMeetingServiceListener('onRoomStatusChange', (data) => {\n  \u002F\u002F status: 2=InProgress, 3=Closing, 4=Closed\n  console.log('Breakout room status:', data);\n});\n",[6076],{"type":50,"tag":76,"props":6077,"children":6078},{"__ignoreMap":243},[6079,6135,6143,6191],{"type":50,"tag":249,"props":6080,"children":6081},{"class":251,"line":252},[6082,6086,6090,6094,6098,6102,6107,6111,6115,6119,6123,6127,6131],{"type":50,"tag":249,"props":6083,"children":6084},{"style":301},[6085],{"type":55,"value":81},{"type":50,"tag":249,"props":6087,"children":6088},{"style":295},[6089],{"type":55,"value":662},{"type":50,"tag":249,"props":6091,"children":6092},{"style":665},[6093],{"type":55,"value":4041},{"type":50,"tag":249,"props":6095,"children":6096},{"style":301},[6097],{"type":55,"value":673},{"type":50,"tag":249,"props":6099,"children":6100},{"style":295},[6101],{"type":55,"value":329},{"type":50,"tag":249,"props":6103,"children":6104},{"style":261},[6105],{"type":55,"value":6106},"onRoomStatusChange",{"type":50,"tag":249,"props":6108,"children":6109},{"style":295},[6110],{"type":55,"value":329},{"type":50,"tag":249,"props":6112,"children":6113},{"style":295},[6114],{"type":55,"value":691},{"type":50,"tag":249,"props":6116,"children":6117},{"style":295},[6118],{"type":55,"value":1268},{"type":50,"tag":249,"props":6120,"children":6121},{"style":1271},[6122],{"type":55,"value":4071},{"type":50,"tag":249,"props":6124,"children":6125},{"style":295},[6126],{"type":55,"value":870},{"type":50,"tag":249,"props":6128,"children":6129},{"style":366},[6130],{"type":55,"value":912},{"type":50,"tag":249,"props":6132,"children":6133},{"style":295},[6134],{"type":55,"value":917},{"type":50,"tag":249,"props":6136,"children":6137},{"class":251,"line":405},[6138],{"type":50,"tag":249,"props":6139,"children":6140},{"style":646},[6141],{"type":55,"value":6142},"  \u002F\u002F status: 2=InProgress, 3=Closing, 4=Closed\n",{"type":50,"tag":249,"props":6144,"children":6145},{"class":251,"line":450},[6146,6150,6154,6158,6162,6166,6171,6175,6179,6183,6187],{"type":50,"tag":249,"props":6147,"children":6148},{"style":301},[6149],{"type":55,"value":4091},{"type":50,"tag":249,"props":6151,"children":6152},{"style":295},[6153],{"type":55,"value":662},{"type":50,"tag":249,"props":6155,"children":6156},{"style":665},[6157],{"type":55,"value":668},{"type":50,"tag":249,"props":6159,"children":6160},{"style":360},[6161],{"type":55,"value":673},{"type":50,"tag":249,"props":6163,"children":6164},{"style":295},[6165],{"type":55,"value":329},{"type":50,"tag":249,"props":6167,"children":6168},{"style":261},[6169],{"type":55,"value":6170},"Breakout room status:",{"type":50,"tag":249,"props":6172,"children":6173},{"style":295},[6174],{"type":55,"value":329},{"type":50,"tag":249,"props":6176,"children":6177},{"style":295},[6178],{"type":55,"value":691},{"type":50,"tag":249,"props":6180,"children":6181},{"style":301},[6182],{"type":55,"value":4125},{"type":50,"tag":249,"props":6184,"children":6185},{"style":360},[6186],{"type":55,"value":870},{"type":50,"tag":249,"props":6188,"children":6189},{"style":295},[6190],{"type":55,"value":334},{"type":50,"tag":249,"props":6192,"children":6193},{"class":251,"line":495},[6194,6198,6202],{"type":50,"tag":249,"props":6195,"children":6196},{"style":295},[6197],{"type":55,"value":1918},{"type":50,"tag":249,"props":6199,"children":6200},{"style":301},[6201],{"type":55,"value":870},{"type":50,"tag":249,"props":6203,"children":6204},{"style":295},[6205],{"type":55,"value":334},{"type":50,"tag":231,"props":6207,"children":6209},{"id":6208},"other-events",[6210],{"type":55,"value":6211},"Other Events",{"type":50,"tag":238,"props":6213,"children":6215},{"className":277,"code":6214,"language":279,"meta":243,"style":243},"ZoomMtg.inMeetingServiceListener('onJoinSpeed', (data) => {\n  console.log('Join metrics:', data);\n});\n\nZoomMtg.inMeetingServiceListener('onVbStatusChange', (data) => {\n  console.log('Virtual background status:', data);\n});\n\nZoomMtg.inMeetingServiceListener('onFocusModeStatusChange', (data) => {\n  console.log('Focus mode:', data);\n});\n\nZoomMtg.inMeetingServiceListener('onPictureInPicture', (data) => {\n  console.log('PiP status:', data);\n});\n\nZoomMtg.inMeetingServiceListener('onClaimStatus', (data) => {\n  console.log('Host claim status:', data);\n});\n",[6216],{"type":50,"tag":76,"props":6217,"children":6218},{"__ignoreMap":243},[6219,6275,6323,6338,6345,6401,6449,6464,6471,6527,6575,6590,6597,6653,6701,6716,6723,6779,6827],{"type":50,"tag":249,"props":6220,"children":6221},{"class":251,"line":252},[6222,6226,6230,6234,6238,6242,6247,6251,6255,6259,6263,6267,6271],{"type":50,"tag":249,"props":6223,"children":6224},{"style":301},[6225],{"type":55,"value":81},{"type":50,"tag":249,"props":6227,"children":6228},{"style":295},[6229],{"type":55,"value":662},{"type":50,"tag":249,"props":6231,"children":6232},{"style":665},[6233],{"type":55,"value":4041},{"type":50,"tag":249,"props":6235,"children":6236},{"style":301},[6237],{"type":55,"value":673},{"type":50,"tag":249,"props":6239,"children":6240},{"style":295},[6241],{"type":55,"value":329},{"type":50,"tag":249,"props":6243,"children":6244},{"style":261},[6245],{"type":55,"value":6246},"onJoinSpeed",{"type":50,"tag":249,"props":6248,"children":6249},{"style":295},[6250],{"type":55,"value":329},{"type":50,"tag":249,"props":6252,"children":6253},{"style":295},[6254],{"type":55,"value":691},{"type":50,"tag":249,"props":6256,"children":6257},{"style":295},[6258],{"type":55,"value":1268},{"type":50,"tag":249,"props":6260,"children":6261},{"style":1271},[6262],{"type":55,"value":4071},{"type":50,"tag":249,"props":6264,"children":6265},{"style":295},[6266],{"type":55,"value":870},{"type":50,"tag":249,"props":6268,"children":6269},{"style":366},[6270],{"type":55,"value":912},{"type":50,"tag":249,"props":6272,"children":6273},{"style":295},[6274],{"type":55,"value":917},{"type":50,"tag":249,"props":6276,"children":6277},{"class":251,"line":405},[6278,6282,6286,6290,6294,6298,6303,6307,6311,6315,6319],{"type":50,"tag":249,"props":6279,"children":6280},{"style":301},[6281],{"type":55,"value":4091},{"type":50,"tag":249,"props":6283,"children":6284},{"style":295},[6285],{"type":55,"value":662},{"type":50,"tag":249,"props":6287,"children":6288},{"style":665},[6289],{"type":55,"value":668},{"type":50,"tag":249,"props":6291,"children":6292},{"style":360},[6293],{"type":55,"value":673},{"type":50,"tag":249,"props":6295,"children":6296},{"style":295},[6297],{"type":55,"value":329},{"type":50,"tag":249,"props":6299,"children":6300},{"style":261},[6301],{"type":55,"value":6302},"Join metrics:",{"type":50,"tag":249,"props":6304,"children":6305},{"style":295},[6306],{"type":55,"value":329},{"type":50,"tag":249,"props":6308,"children":6309},{"style":295},[6310],{"type":55,"value":691},{"type":50,"tag":249,"props":6312,"children":6313},{"style":301},[6314],{"type":55,"value":4125},{"type":50,"tag":249,"props":6316,"children":6317},{"style":360},[6318],{"type":55,"value":870},{"type":50,"tag":249,"props":6320,"children":6321},{"style":295},[6322],{"type":55,"value":334},{"type":50,"tag":249,"props":6324,"children":6325},{"class":251,"line":450},[6326,6330,6334],{"type":50,"tag":249,"props":6327,"children":6328},{"style":295},[6329],{"type":55,"value":1918},{"type":50,"tag":249,"props":6331,"children":6332},{"style":301},[6333],{"type":55,"value":870},{"type":50,"tag":249,"props":6335,"children":6336},{"style":295},[6337],{"type":55,"value":334},{"type":50,"tag":249,"props":6339,"children":6340},{"class":251,"line":495},[6341],{"type":50,"tag":249,"props":6342,"children":6343},{"emptyLinePlaceholder":719},[6344],{"type":55,"value":722},{"type":50,"tag":249,"props":6346,"children":6347},{"class":251,"line":540},[6348,6352,6356,6360,6364,6368,6373,6377,6381,6385,6389,6393,6397],{"type":50,"tag":249,"props":6349,"children":6350},{"style":301},[6351],{"type":55,"value":81},{"type":50,"tag":249,"props":6353,"children":6354},{"style":295},[6355],{"type":55,"value":662},{"type":50,"tag":249,"props":6357,"children":6358},{"style":665},[6359],{"type":55,"value":4041},{"type":50,"tag":249,"props":6361,"children":6362},{"style":301},[6363],{"type":55,"value":673},{"type":50,"tag":249,"props":6365,"children":6366},{"style":295},[6367],{"type":55,"value":329},{"type":50,"tag":249,"props":6369,"children":6370},{"style":261},[6371],{"type":55,"value":6372},"onVbStatusChange",{"type":50,"tag":249,"props":6374,"children":6375},{"style":295},[6376],{"type":55,"value":329},{"type":50,"tag":249,"props":6378,"children":6379},{"style":295},[6380],{"type":55,"value":691},{"type":50,"tag":249,"props":6382,"children":6383},{"style":295},[6384],{"type":55,"value":1268},{"type":50,"tag":249,"props":6386,"children":6387},{"style":1271},[6388],{"type":55,"value":4071},{"type":50,"tag":249,"props":6390,"children":6391},{"style":295},[6392],{"type":55,"value":870},{"type":50,"tag":249,"props":6394,"children":6395},{"style":366},[6396],{"type":55,"value":912},{"type":50,"tag":249,"props":6398,"children":6399},{"style":295},[6400],{"type":55,"value":917},{"type":50,"tag":249,"props":6402,"children":6403},{"class":251,"line":585},[6404,6408,6412,6416,6420,6424,6429,6433,6437,6441,6445],{"type":50,"tag":249,"props":6405,"children":6406},{"style":301},[6407],{"type":55,"value":4091},{"type":50,"tag":249,"props":6409,"children":6410},{"style":295},[6411],{"type":55,"value":662},{"type":50,"tag":249,"props":6413,"children":6414},{"style":665},[6415],{"type":55,"value":668},{"type":50,"tag":249,"props":6417,"children":6418},{"style":360},[6419],{"type":55,"value":673},{"type":50,"tag":249,"props":6421,"children":6422},{"style":295},[6423],{"type":55,"value":329},{"type":50,"tag":249,"props":6425,"children":6426},{"style":261},[6427],{"type":55,"value":6428},"Virtual background status:",{"type":50,"tag":249,"props":6430,"children":6431},{"style":295},[6432],{"type":55,"value":329},{"type":50,"tag":249,"props":6434,"children":6435},{"style":295},[6436],{"type":55,"value":691},{"type":50,"tag":249,"props":6438,"children":6439},{"style":301},[6440],{"type":55,"value":4125},{"type":50,"tag":249,"props":6442,"children":6443},{"style":360},[6444],{"type":55,"value":870},{"type":50,"tag":249,"props":6446,"children":6447},{"style":295},[6448],{"type":55,"value":334},{"type":50,"tag":249,"props":6450,"children":6451},{"class":251,"line":748},[6452,6456,6460],{"type":50,"tag":249,"props":6453,"children":6454},{"style":295},[6455],{"type":55,"value":1918},{"type":50,"tag":249,"props":6457,"children":6458},{"style":301},[6459],{"type":55,"value":870},{"type":50,"tag":249,"props":6461,"children":6462},{"style":295},[6463],{"type":55,"value":334},{"type":50,"tag":249,"props":6465,"children":6466},{"class":251,"line":757},[6467],{"type":50,"tag":249,"props":6468,"children":6469},{"emptyLinePlaceholder":719},[6470],{"type":55,"value":722},{"type":50,"tag":249,"props":6472,"children":6473},{"class":251,"line":783},[6474,6478,6482,6486,6490,6494,6499,6503,6507,6511,6515,6519,6523],{"type":50,"tag":249,"props":6475,"children":6476},{"style":301},[6477],{"type":55,"value":81},{"type":50,"tag":249,"props":6479,"children":6480},{"style":295},[6481],{"type":55,"value":662},{"type":50,"tag":249,"props":6483,"children":6484},{"style":665},[6485],{"type":55,"value":4041},{"type":50,"tag":249,"props":6487,"children":6488},{"style":301},[6489],{"type":55,"value":673},{"type":50,"tag":249,"props":6491,"children":6492},{"style":295},[6493],{"type":55,"value":329},{"type":50,"tag":249,"props":6495,"children":6496},{"style":261},[6497],{"type":55,"value":6498},"onFocusModeStatusChange",{"type":50,"tag":249,"props":6500,"children":6501},{"style":295},[6502],{"type":55,"value":329},{"type":50,"tag":249,"props":6504,"children":6505},{"style":295},[6506],{"type":55,"value":691},{"type":50,"tag":249,"props":6508,"children":6509},{"style":295},[6510],{"type":55,"value":1268},{"type":50,"tag":249,"props":6512,"children":6513},{"style":1271},[6514],{"type":55,"value":4071},{"type":50,"tag":249,"props":6516,"children":6517},{"style":295},[6518],{"type":55,"value":870},{"type":50,"tag":249,"props":6520,"children":6521},{"style":366},[6522],{"type":55,"value":912},{"type":50,"tag":249,"props":6524,"children":6525},{"style":295},[6526],{"type":55,"value":917},{"type":50,"tag":249,"props":6528,"children":6529},{"class":251,"line":808},[6530,6534,6538,6542,6546,6550,6555,6559,6563,6567,6571],{"type":50,"tag":249,"props":6531,"children":6532},{"style":301},[6533],{"type":55,"value":4091},{"type":50,"tag":249,"props":6535,"children":6536},{"style":295},[6537],{"type":55,"value":662},{"type":50,"tag":249,"props":6539,"children":6540},{"style":665},[6541],{"type":55,"value":668},{"type":50,"tag":249,"props":6543,"children":6544},{"style":360},[6545],{"type":55,"value":673},{"type":50,"tag":249,"props":6547,"children":6548},{"style":295},[6549],{"type":55,"value":329},{"type":50,"tag":249,"props":6551,"children":6552},{"style":261},[6553],{"type":55,"value":6554},"Focus mode:",{"type":50,"tag":249,"props":6556,"children":6557},{"style":295},[6558],{"type":55,"value":329},{"type":50,"tag":249,"props":6560,"children":6561},{"style":295},[6562],{"type":55,"value":691},{"type":50,"tag":249,"props":6564,"children":6565},{"style":301},[6566],{"type":55,"value":4125},{"type":50,"tag":249,"props":6568,"children":6569},{"style":360},[6570],{"type":55,"value":870},{"type":50,"tag":249,"props":6572,"children":6573},{"style":295},[6574],{"type":55,"value":334},{"type":50,"tag":249,"props":6576,"children":6577},{"class":251,"line":816},[6578,6582,6586],{"type":50,"tag":249,"props":6579,"children":6580},{"style":295},[6581],{"type":55,"value":1918},{"type":50,"tag":249,"props":6583,"children":6584},{"style":301},[6585],{"type":55,"value":870},{"type":50,"tag":249,"props":6587,"children":6588},{"style":295},[6589],{"type":55,"value":334},{"type":50,"tag":249,"props":6591,"children":6592},{"class":251,"line":825},[6593],{"type":50,"tag":249,"props":6594,"children":6595},{"emptyLinePlaceholder":719},[6596],{"type":55,"value":722},{"type":50,"tag":249,"props":6598,"children":6599},{"class":251,"line":877},[6600,6604,6608,6612,6616,6620,6625,6629,6633,6637,6641,6645,6649],{"type":50,"tag":249,"props":6601,"children":6602},{"style":301},[6603],{"type":55,"value":81},{"type":50,"tag":249,"props":6605,"children":6606},{"style":295},[6607],{"type":55,"value":662},{"type":50,"tag":249,"props":6609,"children":6610},{"style":665},[6611],{"type":55,"value":4041},{"type":50,"tag":249,"props":6613,"children":6614},{"style":301},[6615],{"type":55,"value":673},{"type":50,"tag":249,"props":6617,"children":6618},{"style":295},[6619],{"type":55,"value":329},{"type":50,"tag":249,"props":6621,"children":6622},{"style":261},[6623],{"type":55,"value":6624},"onPictureInPicture",{"type":50,"tag":249,"props":6626,"children":6627},{"style":295},[6628],{"type":55,"value":329},{"type":50,"tag":249,"props":6630,"children":6631},{"style":295},[6632],{"type":55,"value":691},{"type":50,"tag":249,"props":6634,"children":6635},{"style":295},[6636],{"type":55,"value":1268},{"type":50,"tag":249,"props":6638,"children":6639},{"style":1271},[6640],{"type":55,"value":4071},{"type":50,"tag":249,"props":6642,"children":6643},{"style":295},[6644],{"type":55,"value":870},{"type":50,"tag":249,"props":6646,"children":6647},{"style":366},[6648],{"type":55,"value":912},{"type":50,"tag":249,"props":6650,"children":6651},{"style":295},[6652],{"type":55,"value":917},{"type":50,"tag":249,"props":6654,"children":6655},{"class":251,"line":920},[6656,6660,6664,6668,6672,6676,6681,6685,6689,6693,6697],{"type":50,"tag":249,"props":6657,"children":6658},{"style":301},[6659],{"type":55,"value":4091},{"type":50,"tag":249,"props":6661,"children":6662},{"style":295},[6663],{"type":55,"value":662},{"type":50,"tag":249,"props":6665,"children":6666},{"style":665},[6667],{"type":55,"value":668},{"type":50,"tag":249,"props":6669,"children":6670},{"style":360},[6671],{"type":55,"value":673},{"type":50,"tag":249,"props":6673,"children":6674},{"style":295},[6675],{"type":55,"value":329},{"type":50,"tag":249,"props":6677,"children":6678},{"style":261},[6679],{"type":55,"value":6680},"PiP status:",{"type":50,"tag":249,"props":6682,"children":6683},{"style":295},[6684],{"type":55,"value":329},{"type":50,"tag":249,"props":6686,"children":6687},{"style":295},[6688],{"type":55,"value":691},{"type":50,"tag":249,"props":6690,"children":6691},{"style":301},[6692],{"type":55,"value":4125},{"type":50,"tag":249,"props":6694,"children":6695},{"style":360},[6696],{"type":55,"value":870},{"type":50,"tag":249,"props":6698,"children":6699},{"style":295},[6700],{"type":55,"value":334},{"type":50,"tag":249,"props":6702,"children":6703},{"class":251,"line":929},[6704,6708,6712],{"type":50,"tag":249,"props":6705,"children":6706},{"style":295},[6707],{"type":55,"value":1918},{"type":50,"tag":249,"props":6709,"children":6710},{"style":301},[6711],{"type":55,"value":870},{"type":50,"tag":249,"props":6713,"children":6714},{"style":295},[6715],{"type":55,"value":334},{"type":50,"tag":249,"props":6717,"children":6718},{"class":251,"line":938},[6719],{"type":50,"tag":249,"props":6720,"children":6721},{"emptyLinePlaceholder":719},[6722],{"type":55,"value":722},{"type":50,"tag":249,"props":6724,"children":6725},{"class":251,"line":965},[6726,6730,6734,6738,6742,6746,6751,6755,6759,6763,6767,6771,6775],{"type":50,"tag":249,"props":6727,"children":6728},{"style":301},[6729],{"type":55,"value":81},{"type":50,"tag":249,"props":6731,"children":6732},{"style":295},[6733],{"type":55,"value":662},{"type":50,"tag":249,"props":6735,"children":6736},{"style":665},[6737],{"type":55,"value":4041},{"type":50,"tag":249,"props":6739,"children":6740},{"style":301},[6741],{"type":55,"value":673},{"type":50,"tag":249,"props":6743,"children":6744},{"style":295},[6745],{"type":55,"value":329},{"type":50,"tag":249,"props":6747,"children":6748},{"style":261},[6749],{"type":55,"value":6750},"onClaimStatus",{"type":50,"tag":249,"props":6752,"children":6753},{"style":295},[6754],{"type":55,"value":329},{"type":50,"tag":249,"props":6756,"children":6757},{"style":295},[6758],{"type":55,"value":691},{"type":50,"tag":249,"props":6760,"children":6761},{"style":295},[6762],{"type":55,"value":1268},{"type":50,"tag":249,"props":6764,"children":6765},{"style":1271},[6766],{"type":55,"value":4071},{"type":50,"tag":249,"props":6768,"children":6769},{"style":295},[6770],{"type":55,"value":870},{"type":50,"tag":249,"props":6772,"children":6773},{"style":366},[6774],{"type":55,"value":912},{"type":50,"tag":249,"props":6776,"children":6777},{"style":295},[6778],{"type":55,"value":917},{"type":50,"tag":249,"props":6780,"children":6781},{"class":251,"line":997},[6782,6786,6790,6794,6798,6802,6807,6811,6815,6819,6823],{"type":50,"tag":249,"props":6783,"children":6784},{"style":301},[6785],{"type":55,"value":4091},{"type":50,"tag":249,"props":6787,"children":6788},{"style":295},[6789],{"type":55,"value":662},{"type":50,"tag":249,"props":6791,"children":6792},{"style":665},[6793],{"type":55,"value":668},{"type":50,"tag":249,"props":6795,"children":6796},{"style":360},[6797],{"type":55,"value":673},{"type":50,"tag":249,"props":6799,"children":6800},{"style":295},[6801],{"type":55,"value":329},{"type":50,"tag":249,"props":6803,"children":6804},{"style":261},[6805],{"type":55,"value":6806},"Host claim status:",{"type":50,"tag":249,"props":6808,"children":6809},{"style":295},[6810],{"type":55,"value":329},{"type":50,"tag":249,"props":6812,"children":6813},{"style":295},[6814],{"type":55,"value":691},{"type":50,"tag":249,"props":6816,"children":6817},{"style":301},[6818],{"type":55,"value":4125},{"type":50,"tag":249,"props":6820,"children":6821},{"style":360},[6822],{"type":55,"value":870},{"type":50,"tag":249,"props":6824,"children":6825},{"style":295},[6826],{"type":55,"value":334},{"type":50,"tag":249,"props":6828,"children":6829},{"class":251,"line":1020},[6830,6834,6838],{"type":50,"tag":249,"props":6831,"children":6832},{"style":295},[6833],{"type":55,"value":1918},{"type":50,"tag":249,"props":6835,"children":6836},{"style":301},[6837],{"type":55,"value":870},{"type":50,"tag":249,"props":6839,"children":6840},{"style":295},[6841],{"type":55,"value":334},{"type":50,"tag":64,"props":6843,"children":6845},{"id":6844},"common-methods",[6846],{"type":55,"value":6847},"Common Methods",{"type":50,"tag":231,"props":6849,"children":6851},{"id":6850},"meeting-info",[6852],{"type":55,"value":6853},"Meeting Info",{"type":50,"tag":238,"props":6855,"children":6857},{"className":277,"code":6856,"language":279,"meta":243,"style":243},"\u002F\u002F Get current user\nZoomMtg.getCurrentUser({\n  success: (res) => console.log(res.result.currentUser)\n});\n\n\u002F\u002F Get all attendees\nZoomMtg.getAttendeeslist({});\n\n\u002F\u002F Get meeting info\nZoomMtg.getCurrentMeetingInfo({\n  success: (res) => console.log(res)\n});\n\n\u002F\u002F Get SDK version\nZoomMtg.getWebSDKVersion({\n  success: (version) => console.log(version)\n});\n",[6858],{"type":50,"tag":76,"props":6859,"children":6860},{"__ignoreMap":243},[6861,6869,6892,6954,6969,6976,6984,7015,7022,7030,7054,7098,7113,7120,7128,7152,7197],{"type":50,"tag":249,"props":6862,"children":6863},{"class":251,"line":252},[6864],{"type":50,"tag":249,"props":6865,"children":6866},{"style":646},[6867],{"type":55,"value":6868},"\u002F\u002F Get current user\n",{"type":50,"tag":249,"props":6870,"children":6871},{"class":251,"line":405},[6872,6876,6880,6884,6888],{"type":50,"tag":249,"props":6873,"children":6874},{"style":301},[6875],{"type":55,"value":81},{"type":50,"tag":249,"props":6877,"children":6878},{"style":295},[6879],{"type":55,"value":662},{"type":50,"tag":249,"props":6881,"children":6882},{"style":665},[6883],{"type":55,"value":1397},{"type":50,"tag":249,"props":6885,"children":6886},{"style":301},[6887],{"type":55,"value":673},{"type":50,"tag":249,"props":6889,"children":6890},{"style":295},[6891],{"type":55,"value":962},{"type":50,"tag":249,"props":6893,"children":6894},{"class":251,"line":450},[6895,6900,6904,6908,6912,6916,6920,6924,6928,6932,6937,6941,6945,6949],{"type":50,"tag":249,"props":6896,"children":6897},{"style":665},[6898],{"type":55,"value":6899},"  success",{"type":50,"tag":249,"props":6901,"children":6902},{"style":295},[6903],{"type":55,"value":976},{"type":50,"tag":249,"props":6905,"children":6906},{"style":295},[6907],{"type":55,"value":1268},{"type":50,"tag":249,"props":6909,"children":6910},{"style":1271},[6911],{"type":55,"value":1274},{"type":50,"tag":249,"props":6913,"children":6914},{"style":295},[6915],{"type":55,"value":870},{"type":50,"tag":249,"props":6917,"children":6918},{"style":366},[6919],{"type":55,"value":912},{"type":50,"tag":249,"props":6921,"children":6922},{"style":301},[6923],{"type":55,"value":1439},{"type":50,"tag":249,"props":6925,"children":6926},{"style":295},[6927],{"type":55,"value":662},{"type":50,"tag":249,"props":6929,"children":6930},{"style":665},[6931],{"type":55,"value":668},{"type":50,"tag":249,"props":6933,"children":6934},{"style":301},[6935],{"type":55,"value":6936},"(res",{"type":50,"tag":249,"props":6938,"children":6939},{"style":295},[6940],{"type":55,"value":662},{"type":50,"tag":249,"props":6942,"children":6943},{"style":301},[6944],{"type":55,"value":1482},{"type":50,"tag":249,"props":6946,"children":6947},{"style":295},[6948],{"type":55,"value":662},{"type":50,"tag":249,"props":6950,"children":6951},{"style":301},[6952],{"type":55,"value":6953},"currentUser)\n",{"type":50,"tag":249,"props":6955,"children":6956},{"class":251,"line":495},[6957,6961,6965],{"type":50,"tag":249,"props":6958,"children":6959},{"style":295},[6960],{"type":55,"value":1918},{"type":50,"tag":249,"props":6962,"children":6963},{"style":301},[6964],{"type":55,"value":870},{"type":50,"tag":249,"props":6966,"children":6967},{"style":295},[6968],{"type":55,"value":334},{"type":50,"tag":249,"props":6970,"children":6971},{"class":251,"line":540},[6972],{"type":50,"tag":249,"props":6973,"children":6974},{"emptyLinePlaceholder":719},[6975],{"type":55,"value":722},{"type":50,"tag":249,"props":6977,"children":6978},{"class":251,"line":585},[6979],{"type":50,"tag":249,"props":6980,"children":6981},{"style":646},[6982],{"type":55,"value":6983},"\u002F\u002F Get all attendees\n",{"type":50,"tag":249,"props":6985,"children":6986},{"class":251,"line":748},[6987,6991,6995,6999,7003,7007,7011],{"type":50,"tag":249,"props":6988,"children":6989},{"style":301},[6990],{"type":55,"value":81},{"type":50,"tag":249,"props":6992,"children":6993},{"style":295},[6994],{"type":55,"value":662},{"type":50,"tag":249,"props":6996,"children":6997},{"style":665},[6998],{"type":55,"value":1363},{"type":50,"tag":249,"props":7000,"children":7001},{"style":301},[7002],{"type":55,"value":673},{"type":50,"tag":249,"props":7004,"children":7005},{"style":295},[7006],{"type":55,"value":1372},{"type":50,"tag":249,"props":7008,"children":7009},{"style":301},[7010],{"type":55,"value":870},{"type":50,"tag":249,"props":7012,"children":7013},{"style":295},[7014],{"type":55,"value":334},{"type":50,"tag":249,"props":7016,"children":7017},{"class":251,"line":757},[7018],{"type":50,"tag":249,"props":7019,"children":7020},{"emptyLinePlaceholder":719},[7021],{"type":55,"value":722},{"type":50,"tag":249,"props":7023,"children":7024},{"class":251,"line":783},[7025],{"type":50,"tag":249,"props":7026,"children":7027},{"style":646},[7028],{"type":55,"value":7029},"\u002F\u002F Get meeting info\n",{"type":50,"tag":249,"props":7031,"children":7032},{"class":251,"line":808},[7033,7037,7041,7046,7050],{"type":50,"tag":249,"props":7034,"children":7035},{"style":301},[7036],{"type":55,"value":81},{"type":50,"tag":249,"props":7038,"children":7039},{"style":295},[7040],{"type":55,"value":662},{"type":50,"tag":249,"props":7042,"children":7043},{"style":665},[7044],{"type":55,"value":7045},"getCurrentMeetingInfo",{"type":50,"tag":249,"props":7047,"children":7048},{"style":301},[7049],{"type":55,"value":673},{"type":50,"tag":249,"props":7051,"children":7052},{"style":295},[7053],{"type":55,"value":962},{"type":50,"tag":249,"props":7055,"children":7056},{"class":251,"line":816},[7057,7061,7065,7069,7073,7077,7081,7085,7089,7093],{"type":50,"tag":249,"props":7058,"children":7059},{"style":665},[7060],{"type":55,"value":6899},{"type":50,"tag":249,"props":7062,"children":7063},{"style":295},[7064],{"type":55,"value":976},{"type":50,"tag":249,"props":7066,"children":7067},{"style":295},[7068],{"type":55,"value":1268},{"type":50,"tag":249,"props":7070,"children":7071},{"style":1271},[7072],{"type":55,"value":1274},{"type":50,"tag":249,"props":7074,"children":7075},{"style":295},[7076],{"type":55,"value":870},{"type":50,"tag":249,"props":7078,"children":7079},{"style":366},[7080],{"type":55,"value":912},{"type":50,"tag":249,"props":7082,"children":7083},{"style":301},[7084],{"type":55,"value":1439},{"type":50,"tag":249,"props":7086,"children":7087},{"style":295},[7088],{"type":55,"value":662},{"type":50,"tag":249,"props":7090,"children":7091},{"style":665},[7092],{"type":55,"value":668},{"type":50,"tag":249,"props":7094,"children":7095},{"style":301},[7096],{"type":55,"value":7097},"(res)\n",{"type":50,"tag":249,"props":7099,"children":7100},{"class":251,"line":825},[7101,7105,7109],{"type":50,"tag":249,"props":7102,"children":7103},{"style":295},[7104],{"type":55,"value":1918},{"type":50,"tag":249,"props":7106,"children":7107},{"style":301},[7108],{"type":55,"value":870},{"type":50,"tag":249,"props":7110,"children":7111},{"style":295},[7112],{"type":55,"value":334},{"type":50,"tag":249,"props":7114,"children":7115},{"class":251,"line":877},[7116],{"type":50,"tag":249,"props":7117,"children":7118},{"emptyLinePlaceholder":719},[7119],{"type":55,"value":722},{"type":50,"tag":249,"props":7121,"children":7122},{"class":251,"line":920},[7123],{"type":50,"tag":249,"props":7124,"children":7125},{"style":646},[7126],{"type":55,"value":7127},"\u002F\u002F Get SDK version\n",{"type":50,"tag":249,"props":7129,"children":7130},{"class":251,"line":929},[7131,7135,7139,7144,7148],{"type":50,"tag":249,"props":7132,"children":7133},{"style":301},[7134],{"type":55,"value":81},{"type":50,"tag":249,"props":7136,"children":7137},{"style":295},[7138],{"type":55,"value":662},{"type":50,"tag":249,"props":7140,"children":7141},{"style":665},[7142],{"type":55,"value":7143},"getWebSDKVersion",{"type":50,"tag":249,"props":7145,"children":7146},{"style":301},[7147],{"type":55,"value":673},{"type":50,"tag":249,"props":7149,"children":7150},{"style":295},[7151],{"type":55,"value":962},{"type":50,"tag":249,"props":7153,"children":7154},{"class":251,"line":938},[7155,7159,7163,7167,7172,7176,7180,7184,7188,7192],{"type":50,"tag":249,"props":7156,"children":7157},{"style":665},[7158],{"type":55,"value":6899},{"type":50,"tag":249,"props":7160,"children":7161},{"style":295},[7162],{"type":55,"value":976},{"type":50,"tag":249,"props":7164,"children":7165},{"style":295},[7166],{"type":55,"value":1268},{"type":50,"tag":249,"props":7168,"children":7169},{"style":1271},[7170],{"type":55,"value":7171},"version",{"type":50,"tag":249,"props":7173,"children":7174},{"style":295},[7175],{"type":55,"value":870},{"type":50,"tag":249,"props":7177,"children":7178},{"style":366},[7179],{"type":55,"value":912},{"type":50,"tag":249,"props":7181,"children":7182},{"style":301},[7183],{"type":55,"value":1439},{"type":50,"tag":249,"props":7185,"children":7186},{"style":295},[7187],{"type":55,"value":662},{"type":50,"tag":249,"props":7189,"children":7190},{"style":665},[7191],{"type":55,"value":668},{"type":50,"tag":249,"props":7193,"children":7194},{"style":301},[7195],{"type":55,"value":7196},"(version)\n",{"type":50,"tag":249,"props":7198,"children":7199},{"class":251,"line":965},[7200,7204,7208],{"type":50,"tag":249,"props":7201,"children":7202},{"style":295},[7203],{"type":55,"value":1918},{"type":50,"tag":249,"props":7205,"children":7206},{"style":301},[7207],{"type":55,"value":870},{"type":50,"tag":249,"props":7209,"children":7210},{"style":295},[7211],{"type":55,"value":334},{"type":50,"tag":231,"props":7213,"children":7215},{"id":7214},"audiovideo-control",[7216],{"type":55,"value":7217},"Audio\u002FVideo Control",{"type":50,"tag":238,"props":7219,"children":7221},{"className":277,"code":7220,"language":279,"meta":243,"style":243},"\u002F\u002F Mute\u002Funmute specific user\nZoomMtg.mute({ userId, mute: true });\n\n\u002F\u002F Mute\u002Funmute all\nZoomMtg.muteAll({ muteAll: true });\n\n\u002F\u002F Stop incoming audio\nZoomMtg.stopIncomingAudio({ stop: true });\n\n\u002F\u002F Mirror video\nZoomMtg.mirrorVideo({ mirror: true });\n",[7222],{"type":50,"tag":76,"props":7223,"children":7224},{"__ignoreMap":243},[7225,7233,7292,7299,7307,7356,7363,7371,7420,7427,7435],{"type":50,"tag":249,"props":7226,"children":7227},{"class":251,"line":252},[7228],{"type":50,"tag":249,"props":7229,"children":7230},{"style":646},[7231],{"type":55,"value":7232},"\u002F\u002F Mute\u002Funmute specific user\n",{"type":50,"tag":249,"props":7234,"children":7235},{"class":251,"line":405},[7236,7240,7244,7249,7253,7258,7263,7267,7272,7276,7280,7284,7288],{"type":50,"tag":249,"props":7237,"children":7238},{"style":301},[7239],{"type":55,"value":81},{"type":50,"tag":249,"props":7241,"children":7242},{"style":295},[7243],{"type":55,"value":662},{"type":50,"tag":249,"props":7245,"children":7246},{"style":665},[7247],{"type":55,"value":7248},"mute",{"type":50,"tag":249,"props":7250,"children":7251},{"style":301},[7252],{"type":55,"value":673},{"type":50,"tag":249,"props":7254,"children":7255},{"style":295},[7256],{"type":55,"value":7257},"{",{"type":50,"tag":249,"props":7259,"children":7260},{"style":301},[7261],{"type":55,"value":7262}," userId",{"type":50,"tag":249,"props":7264,"children":7265},{"style":295},[7266],{"type":55,"value":691},{"type":50,"tag":249,"props":7268,"children":7269},{"style":360},[7270],{"type":55,"value":7271}," mute",{"type":50,"tag":249,"props":7273,"children":7274},{"style":295},[7275],{"type":55,"value":976},{"type":50,"tag":249,"props":7277,"children":7278},{"style":1010},[7279],{"type":55,"value":1013},{"type":50,"tag":249,"props":7281,"children":7282},{"style":295},[7283],{"type":55,"value":309},{"type":50,"tag":249,"props":7285,"children":7286},{"style":301},[7287],{"type":55,"value":870},{"type":50,"tag":249,"props":7289,"children":7290},{"style":295},[7291],{"type":55,"value":334},{"type":50,"tag":249,"props":7293,"children":7294},{"class":251,"line":450},[7295],{"type":50,"tag":249,"props":7296,"children":7297},{"emptyLinePlaceholder":719},[7298],{"type":55,"value":722},{"type":50,"tag":249,"props":7300,"children":7301},{"class":251,"line":495},[7302],{"type":50,"tag":249,"props":7303,"children":7304},{"style":646},[7305],{"type":55,"value":7306},"\u002F\u002F Mute\u002Funmute all\n",{"type":50,"tag":249,"props":7308,"children":7309},{"class":251,"line":540},[7310,7314,7318,7323,7327,7331,7336,7340,7344,7348,7352],{"type":50,"tag":249,"props":7311,"children":7312},{"style":301},[7313],{"type":55,"value":81},{"type":50,"tag":249,"props":7315,"children":7316},{"style":295},[7317],{"type":55,"value":662},{"type":50,"tag":249,"props":7319,"children":7320},{"style":665},[7321],{"type":55,"value":7322},"muteAll",{"type":50,"tag":249,"props":7324,"children":7325},{"style":301},[7326],{"type":55,"value":673},{"type":50,"tag":249,"props":7328,"children":7329},{"style":295},[7330],{"type":55,"value":7257},{"type":50,"tag":249,"props":7332,"children":7333},{"style":360},[7334],{"type":55,"value":7335}," muteAll",{"type":50,"tag":249,"props":7337,"children":7338},{"style":295},[7339],{"type":55,"value":976},{"type":50,"tag":249,"props":7341,"children":7342},{"style":1010},[7343],{"type":55,"value":1013},{"type":50,"tag":249,"props":7345,"children":7346},{"style":295},[7347],{"type":55,"value":309},{"type":50,"tag":249,"props":7349,"children":7350},{"style":301},[7351],{"type":55,"value":870},{"type":50,"tag":249,"props":7353,"children":7354},{"style":295},[7355],{"type":55,"value":334},{"type":50,"tag":249,"props":7357,"children":7358},{"class":251,"line":585},[7359],{"type":50,"tag":249,"props":7360,"children":7361},{"emptyLinePlaceholder":719},[7362],{"type":55,"value":722},{"type":50,"tag":249,"props":7364,"children":7365},{"class":251,"line":748},[7366],{"type":50,"tag":249,"props":7367,"children":7368},{"style":646},[7369],{"type":55,"value":7370},"\u002F\u002F Stop incoming audio\n",{"type":50,"tag":249,"props":7372,"children":7373},{"class":251,"line":757},[7374,7378,7382,7387,7391,7395,7400,7404,7408,7412,7416],{"type":50,"tag":249,"props":7375,"children":7376},{"style":301},[7377],{"type":55,"value":81},{"type":50,"tag":249,"props":7379,"children":7380},{"style":295},[7381],{"type":55,"value":662},{"type":50,"tag":249,"props":7383,"children":7384},{"style":665},[7385],{"type":55,"value":7386},"stopIncomingAudio",{"type":50,"tag":249,"props":7388,"children":7389},{"style":301},[7390],{"type":55,"value":673},{"type":50,"tag":249,"props":7392,"children":7393},{"style":295},[7394],{"type":55,"value":7257},{"type":50,"tag":249,"props":7396,"children":7397},{"style":360},[7398],{"type":55,"value":7399}," stop",{"type":50,"tag":249,"props":7401,"children":7402},{"style":295},[7403],{"type":55,"value":976},{"type":50,"tag":249,"props":7405,"children":7406},{"style":1010},[7407],{"type":55,"value":1013},{"type":50,"tag":249,"props":7409,"children":7410},{"style":295},[7411],{"type":55,"value":309},{"type":50,"tag":249,"props":7413,"children":7414},{"style":301},[7415],{"type":55,"value":870},{"type":50,"tag":249,"props":7417,"children":7418},{"style":295},[7419],{"type":55,"value":334},{"type":50,"tag":249,"props":7421,"children":7422},{"class":251,"line":783},[7423],{"type":50,"tag":249,"props":7424,"children":7425},{"emptyLinePlaceholder":719},[7426],{"type":55,"value":722},{"type":50,"tag":249,"props":7428,"children":7429},{"class":251,"line":808},[7430],{"type":50,"tag":249,"props":7431,"children":7432},{"style":646},[7433],{"type":55,"value":7434},"\u002F\u002F Mirror video\n",{"type":50,"tag":249,"props":7436,"children":7437},{"class":251,"line":816},[7438,7442,7446,7451,7455,7459,7464,7468,7472,7476,7480],{"type":50,"tag":249,"props":7439,"children":7440},{"style":301},[7441],{"type":55,"value":81},{"type":50,"tag":249,"props":7443,"children":7444},{"style":295},[7445],{"type":55,"value":662},{"type":50,"tag":249,"props":7447,"children":7448},{"style":665},[7449],{"type":55,"value":7450},"mirrorVideo",{"type":50,"tag":249,"props":7452,"children":7453},{"style":301},[7454],{"type":55,"value":673},{"type":50,"tag":249,"props":7456,"children":7457},{"style":295},[7458],{"type":55,"value":7257},{"type":50,"tag":249,"props":7460,"children":7461},{"style":360},[7462],{"type":55,"value":7463}," mirror",{"type":50,"tag":249,"props":7465,"children":7466},{"style":295},[7467],{"type":55,"value":976},{"type":50,"tag":249,"props":7469,"children":7470},{"style":1010},[7471],{"type":55,"value":1013},{"type":50,"tag":249,"props":7473,"children":7474},{"style":295},[7475],{"type":55,"value":309},{"type":50,"tag":249,"props":7477,"children":7478},{"style":301},[7479],{"type":55,"value":870},{"type":50,"tag":249,"props":7481,"children":7482},{"style":295},[7483],{"type":55,"value":334},{"type":50,"tag":231,"props":7485,"children":7487},{"id":7486},"chat",[7488],{"type":55,"value":7489},"Chat",{"type":50,"tag":238,"props":7491,"children":7493},{"className":277,"code":7492,"language":279,"meta":243,"style":243},"\u002F\u002F Send chat message\nZoomMtg.sendChat({\n  message: 'Hello!',\n  userId: 0  \u002F\u002F 0 = everyone\n});\n",[7494],{"type":50,"tag":76,"props":7495,"children":7496},{"__ignoreMap":243},[7497,7505,7529,7558,7581],{"type":50,"tag":249,"props":7498,"children":7499},{"class":251,"line":252},[7500],{"type":50,"tag":249,"props":7501,"children":7502},{"style":646},[7503],{"type":55,"value":7504},"\u002F\u002F Send chat message\n",{"type":50,"tag":249,"props":7506,"children":7507},{"class":251,"line":405},[7508,7512,7516,7521,7525],{"type":50,"tag":249,"props":7509,"children":7510},{"style":301},[7511],{"type":55,"value":81},{"type":50,"tag":249,"props":7513,"children":7514},{"style":295},[7515],{"type":55,"value":662},{"type":50,"tag":249,"props":7517,"children":7518},{"style":665},[7519],{"type":55,"value":7520},"sendChat",{"type":50,"tag":249,"props":7522,"children":7523},{"style":301},[7524],{"type":55,"value":673},{"type":50,"tag":249,"props":7526,"children":7527},{"style":295},[7528],{"type":55,"value":962},{"type":50,"tag":249,"props":7530,"children":7531},{"class":251,"line":450},[7532,7537,7541,7545,7550,7554],{"type":50,"tag":249,"props":7533,"children":7534},{"style":360},[7535],{"type":55,"value":7536},"  message",{"type":50,"tag":249,"props":7538,"children":7539},{"style":295},[7540],{"type":55,"value":976},{"type":50,"tag":249,"props":7542,"children":7543},{"style":295},[7544],{"type":55,"value":319},{"type":50,"tag":249,"props":7546,"children":7547},{"style":261},[7548],{"type":55,"value":7549},"Hello!",{"type":50,"tag":249,"props":7551,"children":7552},{"style":295},[7553],{"type":55,"value":329},{"type":50,"tag":249,"props":7555,"children":7556},{"style":295},[7557],{"type":55,"value":994},{"type":50,"tag":249,"props":7559,"children":7560},{"class":251,"line":495},[7561,7566,7570,7576],{"type":50,"tag":249,"props":7562,"children":7563},{"style":360},[7564],{"type":55,"value":7565},"  userId",{"type":50,"tag":249,"props":7567,"children":7568},{"style":295},[7569],{"type":55,"value":976},{"type":50,"tag":249,"props":7571,"children":7573},{"style":7572},"--shiki-light:#F76D47;--shiki-default:#F78C6C;--shiki-dark:#F78C6C",[7574],{"type":55,"value":7575}," 0",{"type":50,"tag":249,"props":7577,"children":7578},{"style":646},[7579],{"type":55,"value":7580},"  \u002F\u002F 0 = everyone\n",{"type":50,"tag":249,"props":7582,"children":7583},{"class":251,"line":540},[7584,7588,7592],{"type":50,"tag":249,"props":7585,"children":7586},{"style":295},[7587],{"type":55,"value":1918},{"type":50,"tag":249,"props":7589,"children":7590},{"style":301},[7591],{"type":55,"value":870},{"type":50,"tag":249,"props":7593,"children":7594},{"style":295},[7595],{"type":55,"value":334},{"type":50,"tag":231,"props":7597,"children":7599},{"id":7598},"meeting-control",[7600],{"type":55,"value":7601},"Meeting Control",{"type":50,"tag":238,"props":7603,"children":7605},{"className":277,"code":7604,"language":279,"meta":243,"style":243},"\u002F\u002F Leave meeting\nZoomMtg.leaveMeeting({});\n\n\u002F\u002F End meeting (host only)\nZoomMtg.endMeeting({});\n\n\u002F\u002F Lock meeting\nZoomMtg.lockMeeting({ lock: true });\n",[7606],{"type":50,"tag":76,"props":7607,"children":7608},{"__ignoreMap":243},[7609,7617,7649,7656,7664,7696,7703,7711],{"type":50,"tag":249,"props":7610,"children":7611},{"class":251,"line":252},[7612],{"type":50,"tag":249,"props":7613,"children":7614},{"style":646},[7615],{"type":55,"value":7616},"\u002F\u002F Leave meeting\n",{"type":50,"tag":249,"props":7618,"children":7619},{"class":251,"line":405},[7620,7624,7628,7633,7637,7641,7645],{"type":50,"tag":249,"props":7621,"children":7622},{"style":301},[7623],{"type":55,"value":81},{"type":50,"tag":249,"props":7625,"children":7626},{"style":295},[7627],{"type":55,"value":662},{"type":50,"tag":249,"props":7629,"children":7630},{"style":665},[7631],{"type":55,"value":7632},"leaveMeeting",{"type":50,"tag":249,"props":7634,"children":7635},{"style":301},[7636],{"type":55,"value":673},{"type":50,"tag":249,"props":7638,"children":7639},{"style":295},[7640],{"type":55,"value":1372},{"type":50,"tag":249,"props":7642,"children":7643},{"style":301},[7644],{"type":55,"value":870},{"type":50,"tag":249,"props":7646,"children":7647},{"style":295},[7648],{"type":55,"value":334},{"type":50,"tag":249,"props":7650,"children":7651},{"class":251,"line":450},[7652],{"type":50,"tag":249,"props":7653,"children":7654},{"emptyLinePlaceholder":719},[7655],{"type":55,"value":722},{"type":50,"tag":249,"props":7657,"children":7658},{"class":251,"line":495},[7659],{"type":50,"tag":249,"props":7660,"children":7661},{"style":646},[7662],{"type":55,"value":7663},"\u002F\u002F End meeting (host only)\n",{"type":50,"tag":249,"props":7665,"children":7666},{"class":251,"line":540},[7667,7671,7675,7680,7684,7688,7692],{"type":50,"tag":249,"props":7668,"children":7669},{"style":301},[7670],{"type":55,"value":81},{"type":50,"tag":249,"props":7672,"children":7673},{"style":295},[7674],{"type":55,"value":662},{"type":50,"tag":249,"props":7676,"children":7677},{"style":665},[7678],{"type":55,"value":7679},"endMeeting",{"type":50,"tag":249,"props":7681,"children":7682},{"style":301},[7683],{"type":55,"value":673},{"type":50,"tag":249,"props":7685,"children":7686},{"style":295},[7687],{"type":55,"value":1372},{"type":50,"tag":249,"props":7689,"children":7690},{"style":301},[7691],{"type":55,"value":870},{"type":50,"tag":249,"props":7693,"children":7694},{"style":295},[7695],{"type":55,"value":334},{"type":50,"tag":249,"props":7697,"children":7698},{"class":251,"line":585},[7699],{"type":50,"tag":249,"props":7700,"children":7701},{"emptyLinePlaceholder":719},[7702],{"type":55,"value":722},{"type":50,"tag":249,"props":7704,"children":7705},{"class":251,"line":748},[7706],{"type":50,"tag":249,"props":7707,"children":7708},{"style":646},[7709],{"type":55,"value":7710},"\u002F\u002F Lock meeting\n",{"type":50,"tag":249,"props":7712,"children":7713},{"class":251,"line":757},[7714,7718,7722,7727,7731,7735,7740,7744,7748,7752,7756],{"type":50,"tag":249,"props":7715,"children":7716},{"style":301},[7717],{"type":55,"value":81},{"type":50,"tag":249,"props":7719,"children":7720},{"style":295},[7721],{"type":55,"value":662},{"type":50,"tag":249,"props":7723,"children":7724},{"style":665},[7725],{"type":55,"value":7726},"lockMeeting",{"type":50,"tag":249,"props":7728,"children":7729},{"style":301},[7730],{"type":55,"value":673},{"type":50,"tag":249,"props":7732,"children":7733},{"style":295},[7734],{"type":55,"value":7257},{"type":50,"tag":249,"props":7736,"children":7737},{"style":360},[7738],{"type":55,"value":7739}," lock",{"type":50,"tag":249,"props":7741,"children":7742},{"style":295},[7743],{"type":55,"value":976},{"type":50,"tag":249,"props":7745,"children":7746},{"style":1010},[7747],{"type":55,"value":1013},{"type":50,"tag":249,"props":7749,"children":7750},{"style":295},[7751],{"type":55,"value":309},{"type":50,"tag":249,"props":7753,"children":7754},{"style":301},[7755],{"type":55,"value":870},{"type":50,"tag":249,"props":7757,"children":7758},{"style":295},[7759],{"type":55,"value":334},{"type":50,"tag":231,"props":7761,"children":7763},{"id":7762},"host-controls",[7764],{"type":55,"value":7765},"Host Controls",{"type":50,"tag":238,"props":7767,"children":7769},{"className":277,"code":7768,"language":279,"meta":243,"style":243},"\u002F\u002F Make host\nZoomMtg.makeHost({ userId });\n\n\u002F\u002F Make co-host\nZoomMtg.makeCoHost({ userId });\n\n\u002F\u002F Remove co-host\nZoomMtg.withdrawCoHost({ userId });\n\n\u002F\u002F Remove participant\nZoomMtg.expel({ userId });\n\n\u002F\u002F Put on hold\nZoomMtg.putOnHold({ userId, bHold: true });\n\n\u002F\u002F Claim host with host key\nZoomMtg.claimHostWithHostKey({ hostKey: '123456' });\n\n\u002F\u002F Reclaim host\nZoomMtg.reclaimHost({});\n\n\u002F\u002F Admit all from waiting room\nZoomMtg.admitAll({});\n",[7770],{"type":50,"tag":76,"props":7771,"children":7772},{"__ignoreMap":243},[7773,7781,7822,7829,7837,7877,7884,7892,7932,7939,7947,7987,7994,8002,8059,8066,8074,8132,8139,8147,8179,8186,8194],{"type":50,"tag":249,"props":7774,"children":7775},{"class":251,"line":252},[7776],{"type":50,"tag":249,"props":7777,"children":7778},{"style":646},[7779],{"type":55,"value":7780},"\u002F\u002F Make host\n",{"type":50,"tag":249,"props":7782,"children":7783},{"class":251,"line":405},[7784,7788,7792,7797,7801,7805,7810,7814,7818],{"type":50,"tag":249,"props":7785,"children":7786},{"style":301},[7787],{"type":55,"value":81},{"type":50,"tag":249,"props":7789,"children":7790},{"style":295},[7791],{"type":55,"value":662},{"type":50,"tag":249,"props":7793,"children":7794},{"style":665},[7795],{"type":55,"value":7796},"makeHost",{"type":50,"tag":249,"props":7798,"children":7799},{"style":301},[7800],{"type":55,"value":673},{"type":50,"tag":249,"props":7802,"children":7803},{"style":295},[7804],{"type":55,"value":7257},{"type":50,"tag":249,"props":7806,"children":7807},{"style":301},[7808],{"type":55,"value":7809}," userId ",{"type":50,"tag":249,"props":7811,"children":7812},{"style":295},[7813],{"type":55,"value":1918},{"type":50,"tag":249,"props":7815,"children":7816},{"style":301},[7817],{"type":55,"value":870},{"type":50,"tag":249,"props":7819,"children":7820},{"style":295},[7821],{"type":55,"value":334},{"type":50,"tag":249,"props":7823,"children":7824},{"class":251,"line":450},[7825],{"type":50,"tag":249,"props":7826,"children":7827},{"emptyLinePlaceholder":719},[7828],{"type":55,"value":722},{"type":50,"tag":249,"props":7830,"children":7831},{"class":251,"line":495},[7832],{"type":50,"tag":249,"props":7833,"children":7834},{"style":646},[7835],{"type":55,"value":7836},"\u002F\u002F Make co-host\n",{"type":50,"tag":249,"props":7838,"children":7839},{"class":251,"line":540},[7840,7844,7848,7853,7857,7861,7865,7869,7873],{"type":50,"tag":249,"props":7841,"children":7842},{"style":301},[7843],{"type":55,"value":81},{"type":50,"tag":249,"props":7845,"children":7846},{"style":295},[7847],{"type":55,"value":662},{"type":50,"tag":249,"props":7849,"children":7850},{"style":665},[7851],{"type":55,"value":7852},"makeCoHost",{"type":50,"tag":249,"props":7854,"children":7855},{"style":301},[7856],{"type":55,"value":673},{"type":50,"tag":249,"props":7858,"children":7859},{"style":295},[7860],{"type":55,"value":7257},{"type":50,"tag":249,"props":7862,"children":7863},{"style":301},[7864],{"type":55,"value":7809},{"type":50,"tag":249,"props":7866,"children":7867},{"style":295},[7868],{"type":55,"value":1918},{"type":50,"tag":249,"props":7870,"children":7871},{"style":301},[7872],{"type":55,"value":870},{"type":50,"tag":249,"props":7874,"children":7875},{"style":295},[7876],{"type":55,"value":334},{"type":50,"tag":249,"props":7878,"children":7879},{"class":251,"line":585},[7880],{"type":50,"tag":249,"props":7881,"children":7882},{"emptyLinePlaceholder":719},[7883],{"type":55,"value":722},{"type":50,"tag":249,"props":7885,"children":7886},{"class":251,"line":748},[7887],{"type":50,"tag":249,"props":7888,"children":7889},{"style":646},[7890],{"type":55,"value":7891},"\u002F\u002F Remove co-host\n",{"type":50,"tag":249,"props":7893,"children":7894},{"class":251,"line":757},[7895,7899,7903,7908,7912,7916,7920,7924,7928],{"type":50,"tag":249,"props":7896,"children":7897},{"style":301},[7898],{"type":55,"value":81},{"type":50,"tag":249,"props":7900,"children":7901},{"style":295},[7902],{"type":55,"value":662},{"type":50,"tag":249,"props":7904,"children":7905},{"style":665},[7906],{"type":55,"value":7907},"withdrawCoHost",{"type":50,"tag":249,"props":7909,"children":7910},{"style":301},[7911],{"type":55,"value":673},{"type":50,"tag":249,"props":7913,"children":7914},{"style":295},[7915],{"type":55,"value":7257},{"type":50,"tag":249,"props":7917,"children":7918},{"style":301},[7919],{"type":55,"value":7809},{"type":50,"tag":249,"props":7921,"children":7922},{"style":295},[7923],{"type":55,"value":1918},{"type":50,"tag":249,"props":7925,"children":7926},{"style":301},[7927],{"type":55,"value":870},{"type":50,"tag":249,"props":7929,"children":7930},{"style":295},[7931],{"type":55,"value":334},{"type":50,"tag":249,"props":7933,"children":7934},{"class":251,"line":783},[7935],{"type":50,"tag":249,"props":7936,"children":7937},{"emptyLinePlaceholder":719},[7938],{"type":55,"value":722},{"type":50,"tag":249,"props":7940,"children":7941},{"class":251,"line":808},[7942],{"type":50,"tag":249,"props":7943,"children":7944},{"style":646},[7945],{"type":55,"value":7946},"\u002F\u002F Remove participant\n",{"type":50,"tag":249,"props":7948,"children":7949},{"class":251,"line":816},[7950,7954,7958,7963,7967,7971,7975,7979,7983],{"type":50,"tag":249,"props":7951,"children":7952},{"style":301},[7953],{"type":55,"value":81},{"type":50,"tag":249,"props":7955,"children":7956},{"style":295},[7957],{"type":55,"value":662},{"type":50,"tag":249,"props":7959,"children":7960},{"style":665},[7961],{"type":55,"value":7962},"expel",{"type":50,"tag":249,"props":7964,"children":7965},{"style":301},[7966],{"type":55,"value":673},{"type":50,"tag":249,"props":7968,"children":7969},{"style":295},[7970],{"type":55,"value":7257},{"type":50,"tag":249,"props":7972,"children":7973},{"style":301},[7974],{"type":55,"value":7809},{"type":50,"tag":249,"props":7976,"children":7977},{"style":295},[7978],{"type":55,"value":1918},{"type":50,"tag":249,"props":7980,"children":7981},{"style":301},[7982],{"type":55,"value":870},{"type":50,"tag":249,"props":7984,"children":7985},{"style":295},[7986],{"type":55,"value":334},{"type":50,"tag":249,"props":7988,"children":7989},{"class":251,"line":825},[7990],{"type":50,"tag":249,"props":7991,"children":7992},{"emptyLinePlaceholder":719},[7993],{"type":55,"value":722},{"type":50,"tag":249,"props":7995,"children":7996},{"class":251,"line":877},[7997],{"type":50,"tag":249,"props":7998,"children":7999},{"style":646},[8000],{"type":55,"value":8001},"\u002F\u002F Put on hold\n",{"type":50,"tag":249,"props":8003,"children":8004},{"class":251,"line":920},[8005,8009,8013,8018,8022,8026,8030,8034,8039,8043,8047,8051,8055],{"type":50,"tag":249,"props":8006,"children":8007},{"style":301},[8008],{"type":55,"value":81},{"type":50,"tag":249,"props":8010,"children":8011},{"style":295},[8012],{"type":55,"value":662},{"type":50,"tag":249,"props":8014,"children":8015},{"style":665},[8016],{"type":55,"value":8017},"putOnHold",{"type":50,"tag":249,"props":8019,"children":8020},{"style":301},[8021],{"type":55,"value":673},{"type":50,"tag":249,"props":8023,"children":8024},{"style":295},[8025],{"type":55,"value":7257},{"type":50,"tag":249,"props":8027,"children":8028},{"style":301},[8029],{"type":55,"value":7262},{"type":50,"tag":249,"props":8031,"children":8032},{"style":295},[8033],{"type":55,"value":691},{"type":50,"tag":249,"props":8035,"children":8036},{"style":360},[8037],{"type":55,"value":8038}," bHold",{"type":50,"tag":249,"props":8040,"children":8041},{"style":295},[8042],{"type":55,"value":976},{"type":50,"tag":249,"props":8044,"children":8045},{"style":1010},[8046],{"type":55,"value":1013},{"type":50,"tag":249,"props":8048,"children":8049},{"style":295},[8050],{"type":55,"value":309},{"type":50,"tag":249,"props":8052,"children":8053},{"style":301},[8054],{"type":55,"value":870},{"type":50,"tag":249,"props":8056,"children":8057},{"style":295},[8058],{"type":55,"value":334},{"type":50,"tag":249,"props":8060,"children":8061},{"class":251,"line":929},[8062],{"type":50,"tag":249,"props":8063,"children":8064},{"emptyLinePlaceholder":719},[8065],{"type":55,"value":722},{"type":50,"tag":249,"props":8067,"children":8068},{"class":251,"line":938},[8069],{"type":50,"tag":249,"props":8070,"children":8071},{"style":646},[8072],{"type":55,"value":8073},"\u002F\u002F Claim host with host key\n",{"type":50,"tag":249,"props":8075,"children":8076},{"class":251,"line":965},[8077,8081,8085,8090,8094,8098,8103,8107,8111,8116,8120,8124,8128],{"type":50,"tag":249,"props":8078,"children":8079},{"style":301},[8080],{"type":55,"value":81},{"type":50,"tag":249,"props":8082,"children":8083},{"style":295},[8084],{"type":55,"value":662},{"type":50,"tag":249,"props":8086,"children":8087},{"style":665},[8088],{"type":55,"value":8089},"claimHostWithHostKey",{"type":50,"tag":249,"props":8091,"children":8092},{"style":301},[8093],{"type":55,"value":673},{"type":50,"tag":249,"props":8095,"children":8096},{"style":295},[8097],{"type":55,"value":7257},{"type":50,"tag":249,"props":8099,"children":8100},{"style":360},[8101],{"type":55,"value":8102}," hostKey",{"type":50,"tag":249,"props":8104,"children":8105},{"style":295},[8106],{"type":55,"value":976},{"type":50,"tag":249,"props":8108,"children":8109},{"style":295},[8110],{"type":55,"value":319},{"type":50,"tag":249,"props":8112,"children":8113},{"style":261},[8114],{"type":55,"value":8115},"123456",{"type":50,"tag":249,"props":8117,"children":8118},{"style":295},[8119],{"type":55,"value":329},{"type":50,"tag":249,"props":8121,"children":8122},{"style":295},[8123],{"type":55,"value":309},{"type":50,"tag":249,"props":8125,"children":8126},{"style":301},[8127],{"type":55,"value":870},{"type":50,"tag":249,"props":8129,"children":8130},{"style":295},[8131],{"type":55,"value":334},{"type":50,"tag":249,"props":8133,"children":8134},{"class":251,"line":997},[8135],{"type":50,"tag":249,"props":8136,"children":8137},{"emptyLinePlaceholder":719},[8138],{"type":55,"value":722},{"type":50,"tag":249,"props":8140,"children":8141},{"class":251,"line":1020},[8142],{"type":50,"tag":249,"props":8143,"children":8144},{"style":646},[8145],{"type":55,"value":8146},"\u002F\u002F Reclaim host\n",{"type":50,"tag":249,"props":8148,"children":8149},{"class":251,"line":1056},[8150,8154,8158,8163,8167,8171,8175],{"type":50,"tag":249,"props":8151,"children":8152},{"style":301},[8153],{"type":55,"value":81},{"type":50,"tag":249,"props":8155,"children":8156},{"style":295},[8157],{"type":55,"value":662},{"type":50,"tag":249,"props":8159,"children":8160},{"style":665},[8161],{"type":55,"value":8162},"reclaimHost",{"type":50,"tag":249,"props":8164,"children":8165},{"style":301},[8166],{"type":55,"value":673},{"type":50,"tag":249,"props":8168,"children":8169},{"style":295},[8170],{"type":55,"value":1372},{"type":50,"tag":249,"props":8172,"children":8173},{"style":301},[8174],{"type":55,"value":870},{"type":50,"tag":249,"props":8176,"children":8177},{"style":295},[8178],{"type":55,"value":334},{"type":50,"tag":249,"props":8180,"children":8181},{"class":251,"line":1082},[8182],{"type":50,"tag":249,"props":8183,"children":8184},{"emptyLinePlaceholder":719},[8185],{"type":55,"value":722},{"type":50,"tag":249,"props":8187,"children":8188},{"class":251,"line":1124},[8189],{"type":50,"tag":249,"props":8190,"children":8191},{"style":646},[8192],{"type":55,"value":8193},"\u002F\u002F Admit all from waiting room\n",{"type":50,"tag":249,"props":8195,"children":8196},{"class":251,"line":1133},[8197,8201,8205,8210,8214,8218,8222],{"type":50,"tag":249,"props":8198,"children":8199},{"style":301},[8200],{"type":55,"value":81},{"type":50,"tag":249,"props":8202,"children":8203},{"style":295},[8204],{"type":55,"value":662},{"type":50,"tag":249,"props":8206,"children":8207},{"style":665},[8208],{"type":55,"value":8209},"admitAll",{"type":50,"tag":249,"props":8211,"children":8212},{"style":301},[8213],{"type":55,"value":673},{"type":50,"tag":249,"props":8215,"children":8216},{"style":295},[8217],{"type":55,"value":1372},{"type":50,"tag":249,"props":8219,"children":8220},{"style":301},[8221],{"type":55,"value":870},{"type":50,"tag":249,"props":8223,"children":8224},{"style":295},[8225],{"type":55,"value":334},{"type":50,"tag":231,"props":8227,"children":8229},{"id":8228},"raise-hand",[8230],{"type":55,"value":8231},"Raise Hand",{"type":50,"tag":238,"props":8233,"children":8235},{"className":277,"code":8234,"language":279,"meta":243,"style":243},"\u002F\u002F Raise hand\nZoomMtg.raiseHand({ userId });\n\n\u002F\u002F Lower hand\nZoomMtg.lowerHand({ oderId });\n\n\u002F\u002F Lower all hands\nZoomMtg.lowerAllHands({});\n",[8236],{"type":50,"tag":76,"props":8237,"children":8238},{"__ignoreMap":243},[8239,8247,8287,8294,8302,8343,8350,8358],{"type":50,"tag":249,"props":8240,"children":8241},{"class":251,"line":252},[8242],{"type":50,"tag":249,"props":8243,"children":8244},{"style":646},[8245],{"type":55,"value":8246},"\u002F\u002F Raise hand\n",{"type":50,"tag":249,"props":8248,"children":8249},{"class":251,"line":405},[8250,8254,8258,8263,8267,8271,8275,8279,8283],{"type":50,"tag":249,"props":8251,"children":8252},{"style":301},[8253],{"type":55,"value":81},{"type":50,"tag":249,"props":8255,"children":8256},{"style":295},[8257],{"type":55,"value":662},{"type":50,"tag":249,"props":8259,"children":8260},{"style":665},[8261],{"type":55,"value":8262},"raiseHand",{"type":50,"tag":249,"props":8264,"children":8265},{"style":301},[8266],{"type":55,"value":673},{"type":50,"tag":249,"props":8268,"children":8269},{"style":295},[8270],{"type":55,"value":7257},{"type":50,"tag":249,"props":8272,"children":8273},{"style":301},[8274],{"type":55,"value":7809},{"type":50,"tag":249,"props":8276,"children":8277},{"style":295},[8278],{"type":55,"value":1918},{"type":50,"tag":249,"props":8280,"children":8281},{"style":301},[8282],{"type":55,"value":870},{"type":50,"tag":249,"props":8284,"children":8285},{"style":295},[8286],{"type":55,"value":334},{"type":50,"tag":249,"props":8288,"children":8289},{"class":251,"line":450},[8290],{"type":50,"tag":249,"props":8291,"children":8292},{"emptyLinePlaceholder":719},[8293],{"type":55,"value":722},{"type":50,"tag":249,"props":8295,"children":8296},{"class":251,"line":495},[8297],{"type":50,"tag":249,"props":8298,"children":8299},{"style":646},[8300],{"type":55,"value":8301},"\u002F\u002F Lower hand\n",{"type":50,"tag":249,"props":8303,"children":8304},{"class":251,"line":540},[8305,8309,8313,8318,8322,8326,8331,8335,8339],{"type":50,"tag":249,"props":8306,"children":8307},{"style":301},[8308],{"type":55,"value":81},{"type":50,"tag":249,"props":8310,"children":8311},{"style":295},[8312],{"type":55,"value":662},{"type":50,"tag":249,"props":8314,"children":8315},{"style":665},[8316],{"type":55,"value":8317},"lowerHand",{"type":50,"tag":249,"props":8319,"children":8320},{"style":301},[8321],{"type":55,"value":673},{"type":50,"tag":249,"props":8323,"children":8324},{"style":295},[8325],{"type":55,"value":7257},{"type":50,"tag":249,"props":8327,"children":8328},{"style":301},[8329],{"type":55,"value":8330}," oderId ",{"type":50,"tag":249,"props":8332,"children":8333},{"style":295},[8334],{"type":55,"value":1918},{"type":50,"tag":249,"props":8336,"children":8337},{"style":301},[8338],{"type":55,"value":870},{"type":50,"tag":249,"props":8340,"children":8341},{"style":295},[8342],{"type":55,"value":334},{"type":50,"tag":249,"props":8344,"children":8345},{"class":251,"line":585},[8346],{"type":50,"tag":249,"props":8347,"children":8348},{"emptyLinePlaceholder":719},[8349],{"type":55,"value":722},{"type":50,"tag":249,"props":8351,"children":8352},{"class":251,"line":748},[8353],{"type":50,"tag":249,"props":8354,"children":8355},{"style":646},[8356],{"type":55,"value":8357},"\u002F\u002F Lower all hands\n",{"type":50,"tag":249,"props":8359,"children":8360},{"class":251,"line":757},[8361,8365,8369,8374,8378,8382,8386],{"type":50,"tag":249,"props":8362,"children":8363},{"style":301},[8364],{"type":55,"value":81},{"type":50,"tag":249,"props":8366,"children":8367},{"style":295},[8368],{"type":55,"value":662},{"type":50,"tag":249,"props":8370,"children":8371},{"style":665},[8372],{"type":55,"value":8373},"lowerAllHands",{"type":50,"tag":249,"props":8375,"children":8376},{"style":301},[8377],{"type":55,"value":673},{"type":50,"tag":249,"props":8379,"children":8380},{"style":295},[8381],{"type":55,"value":1372},{"type":50,"tag":249,"props":8383,"children":8384},{"style":301},[8385],{"type":55,"value":870},{"type":50,"tag":249,"props":8387,"children":8388},{"style":295},[8389],{"type":55,"value":334},{"type":50,"tag":231,"props":8391,"children":8393},{"id":8392},"spotlight-pin",[8394],{"type":55,"value":8395},"Spotlight & Pin",{"type":50,"tag":238,"props":8397,"children":8399},{"className":277,"code":8398,"language":279,"meta":243,"style":243},"\u002F\u002F Spotlight video\nZoomMtg.operateSpotlight({ oderId, action: 'add' }); \u002F\u002F or 'remove'\n\n\u002F\u002F Pin video\nZoomMtg.operatePin({ oderId, action: 'add' }); \u002F\u002F or 'remove'\n\n\u002F\u002F Allow multi-pin\nZoomMtg.allowMultiPin({ allow: true });\n",[8400],{"type":50,"tag":76,"props":8401,"children":8402},{"__ignoreMap":243},[8403,8411,8484,8491,8499,8567,8574,8582],{"type":50,"tag":249,"props":8404,"children":8405},{"class":251,"line":252},[8406],{"type":50,"tag":249,"props":8407,"children":8408},{"style":646},[8409],{"type":55,"value":8410},"\u002F\u002F Spotlight video\n",{"type":50,"tag":249,"props":8412,"children":8413},{"class":251,"line":405},[8414,8418,8422,8427,8431,8435,8440,8444,8449,8453,8457,8462,8466,8470,8474,8479],{"type":50,"tag":249,"props":8415,"children":8416},{"style":301},[8417],{"type":55,"value":81},{"type":50,"tag":249,"props":8419,"children":8420},{"style":295},[8421],{"type":55,"value":662},{"type":50,"tag":249,"props":8423,"children":8424},{"style":665},[8425],{"type":55,"value":8426},"operateSpotlight",{"type":50,"tag":249,"props":8428,"children":8429},{"style":301},[8430],{"type":55,"value":673},{"type":50,"tag":249,"props":8432,"children":8433},{"style":295},[8434],{"type":55,"value":7257},{"type":50,"tag":249,"props":8436,"children":8437},{"style":301},[8438],{"type":55,"value":8439}," oderId",{"type":50,"tag":249,"props":8441,"children":8442},{"style":295},[8443],{"type":55,"value":691},{"type":50,"tag":249,"props":8445,"children":8446},{"style":360},[8447],{"type":55,"value":8448}," action",{"type":50,"tag":249,"props":8450,"children":8451},{"style":295},[8452],{"type":55,"value":976},{"type":50,"tag":249,"props":8454,"children":8455},{"style":295},[8456],{"type":55,"value":319},{"type":50,"tag":249,"props":8458,"children":8459},{"style":261},[8460],{"type":55,"value":8461},"add",{"type":50,"tag":249,"props":8463,"children":8464},{"style":295},[8465],{"type":55,"value":329},{"type":50,"tag":249,"props":8467,"children":8468},{"style":295},[8469],{"type":55,"value":309},{"type":50,"tag":249,"props":8471,"children":8472},{"style":301},[8473],{"type":55,"value":870},{"type":50,"tag":249,"props":8475,"children":8476},{"style":295},[8477],{"type":55,"value":8478},";",{"type":50,"tag":249,"props":8480,"children":8481},{"style":646},[8482],{"type":55,"value":8483}," \u002F\u002F or 'remove'\n",{"type":50,"tag":249,"props":8485,"children":8486},{"class":251,"line":450},[8487],{"type":50,"tag":249,"props":8488,"children":8489},{"emptyLinePlaceholder":719},[8490],{"type":55,"value":722},{"type":50,"tag":249,"props":8492,"children":8493},{"class":251,"line":495},[8494],{"type":50,"tag":249,"props":8495,"children":8496},{"style":646},[8497],{"type":55,"value":8498},"\u002F\u002F Pin video\n",{"type":50,"tag":249,"props":8500,"children":8501},{"class":251,"line":540},[8502,8506,8510,8515,8519,8523,8527,8531,8535,8539,8543,8547,8551,8555,8559,8563],{"type":50,"tag":249,"props":8503,"children":8504},{"style":301},[8505],{"type":55,"value":81},{"type":50,"tag":249,"props":8507,"children":8508},{"style":295},[8509],{"type":55,"value":662},{"type":50,"tag":249,"props":8511,"children":8512},{"style":665},[8513],{"type":55,"value":8514},"operatePin",{"type":50,"tag":249,"props":8516,"children":8517},{"style":301},[8518],{"type":55,"value":673},{"type":50,"tag":249,"props":8520,"children":8521},{"style":295},[8522],{"type":55,"value":7257},{"type":50,"tag":249,"props":8524,"children":8525},{"style":301},[8526],{"type":55,"value":8439},{"type":50,"tag":249,"props":8528,"children":8529},{"style":295},[8530],{"type":55,"value":691},{"type":50,"tag":249,"props":8532,"children":8533},{"style":360},[8534],{"type":55,"value":8448},{"type":50,"tag":249,"props":8536,"children":8537},{"style":295},[8538],{"type":55,"value":976},{"type":50,"tag":249,"props":8540,"children":8541},{"style":295},[8542],{"type":55,"value":319},{"type":50,"tag":249,"props":8544,"children":8545},{"style":261},[8546],{"type":55,"value":8461},{"type":50,"tag":249,"props":8548,"children":8549},{"style":295},[8550],{"type":55,"value":329},{"type":50,"tag":249,"props":8552,"children":8553},{"style":295},[8554],{"type":55,"value":309},{"type":50,"tag":249,"props":8556,"children":8557},{"style":301},[8558],{"type":55,"value":870},{"type":50,"tag":249,"props":8560,"children":8561},{"style":295},[8562],{"type":55,"value":8478},{"type":50,"tag":249,"props":8564,"children":8565},{"style":646},[8566],{"type":55,"value":8483},{"type":50,"tag":249,"props":8568,"children":8569},{"class":251,"line":585},[8570],{"type":50,"tag":249,"props":8571,"children":8572},{"emptyLinePlaceholder":719},[8573],{"type":55,"value":722},{"type":50,"tag":249,"props":8575,"children":8576},{"class":251,"line":748},[8577],{"type":50,"tag":249,"props":8578,"children":8579},{"style":646},[8580],{"type":55,"value":8581},"\u002F\u002F Allow multi-pin\n",{"type":50,"tag":249,"props":8583,"children":8584},{"class":251,"line":757},[8585,8589,8593,8598,8602,8606,8611,8615,8619,8623,8627],{"type":50,"tag":249,"props":8586,"children":8587},{"style":301},[8588],{"type":55,"value":81},{"type":50,"tag":249,"props":8590,"children":8591},{"style":295},[8592],{"type":55,"value":662},{"type":50,"tag":249,"props":8594,"children":8595},{"style":665},[8596],{"type":55,"value":8597},"allowMultiPin",{"type":50,"tag":249,"props":8599,"children":8600},{"style":301},[8601],{"type":55,"value":673},{"type":50,"tag":249,"props":8603,"children":8604},{"style":295},[8605],{"type":55,"value":7257},{"type":50,"tag":249,"props":8607,"children":8608},{"style":360},[8609],{"type":55,"value":8610}," allow",{"type":50,"tag":249,"props":8612,"children":8613},{"style":295},[8614],{"type":55,"value":976},{"type":50,"tag":249,"props":8616,"children":8617},{"style":1010},[8618],{"type":55,"value":1013},{"type":50,"tag":249,"props":8620,"children":8621},{"style":295},[8622],{"type":55,"value":309},{"type":50,"tag":249,"props":8624,"children":8625},{"style":301},[8626],{"type":55,"value":870},{"type":50,"tag":249,"props":8628,"children":8629},{"style":295},[8630],{"type":55,"value":334},{"type":50,"tag":231,"props":8632,"children":8634},{"id":8633},"screen-share",[8635],{"type":55,"value":8636},"Screen Share",{"type":50,"tag":238,"props":8638,"children":8640},{"className":277,"code":8639,"language":279,"meta":243,"style":243},"\u002F\u002F Start screen share\nZoomMtg.startScreenShare({});\n\n\u002F\u002F Share specific source (Electron)\nZoomMtg.shareSource({ source });\n",[8641],{"type":50,"tag":76,"props":8642,"children":8643},{"__ignoreMap":243},[8644,8652,8684,8691,8699],{"type":50,"tag":249,"props":8645,"children":8646},{"class":251,"line":252},[8647],{"type":50,"tag":249,"props":8648,"children":8649},{"style":646},[8650],{"type":55,"value":8651},"\u002F\u002F Start screen share\n",{"type":50,"tag":249,"props":8653,"children":8654},{"class":251,"line":405},[8655,8659,8663,8668,8672,8676,8680],{"type":50,"tag":249,"props":8656,"children":8657},{"style":301},[8658],{"type":55,"value":81},{"type":50,"tag":249,"props":8660,"children":8661},{"style":295},[8662],{"type":55,"value":662},{"type":50,"tag":249,"props":8664,"children":8665},{"style":665},[8666],{"type":55,"value":8667},"startScreenShare",{"type":50,"tag":249,"props":8669,"children":8670},{"style":301},[8671],{"type":55,"value":673},{"type":50,"tag":249,"props":8673,"children":8674},{"style":295},[8675],{"type":55,"value":1372},{"type":50,"tag":249,"props":8677,"children":8678},{"style":301},[8679],{"type":55,"value":870},{"type":50,"tag":249,"props":8681,"children":8682},{"style":295},[8683],{"type":55,"value":334},{"type":50,"tag":249,"props":8685,"children":8686},{"class":251,"line":450},[8687],{"type":50,"tag":249,"props":8688,"children":8689},{"emptyLinePlaceholder":719},[8690],{"type":55,"value":722},{"type":50,"tag":249,"props":8692,"children":8693},{"class":251,"line":495},[8694],{"type":50,"tag":249,"props":8695,"children":8696},{"style":646},[8697],{"type":55,"value":8698},"\u002F\u002F Share specific source (Electron)\n",{"type":50,"tag":249,"props":8700,"children":8701},{"class":251,"line":540},[8702,8706,8710,8715,8719,8723,8728,8732,8736],{"type":50,"tag":249,"props":8703,"children":8704},{"style":301},[8705],{"type":55,"value":81},{"type":50,"tag":249,"props":8707,"children":8708},{"style":295},[8709],{"type":55,"value":662},{"type":50,"tag":249,"props":8711,"children":8712},{"style":665},[8713],{"type":55,"value":8714},"shareSource",{"type":50,"tag":249,"props":8716,"children":8717},{"style":301},[8718],{"type":55,"value":673},{"type":50,"tag":249,"props":8720,"children":8721},{"style":295},[8722],{"type":55,"value":7257},{"type":50,"tag":249,"props":8724,"children":8725},{"style":301},[8726],{"type":55,"value":8727}," source ",{"type":50,"tag":249,"props":8729,"children":8730},{"style":295},[8731],{"type":55,"value":1918},{"type":50,"tag":249,"props":8733,"children":8734},{"style":301},[8735],{"type":55,"value":870},{"type":50,"tag":249,"props":8737,"children":8738},{"style":295},[8739],{"type":55,"value":334},{"type":50,"tag":231,"props":8741,"children":8743},{"id":8742},"recording",[8744],{"type":55,"value":8745},"Recording",{"type":50,"tag":238,"props":8747,"children":8749},{"className":277,"code":8748,"language":279,"meta":243,"style":243},"\u002F\u002F Start\u002Fstop recording\nZoomMtg.record({ record: true }); \u002F\u002F or false\n\n\u002F\u002F Show\u002Fhide record button\nZoomMtg.showRecordFunction({ show: true });\n",[8750],{"type":50,"tag":76,"props":8751,"children":8752},{"__ignoreMap":243},[8753,8761,8815,8822,8830],{"type":50,"tag":249,"props":8754,"children":8755},{"class":251,"line":252},[8756],{"type":50,"tag":249,"props":8757,"children":8758},{"style":646},[8759],{"type":55,"value":8760},"\u002F\u002F Start\u002Fstop recording\n",{"type":50,"tag":249,"props":8762,"children":8763},{"class":251,"line":405},[8764,8768,8772,8777,8781,8785,8790,8794,8798,8802,8806,8810],{"type":50,"tag":249,"props":8765,"children":8766},{"style":301},[8767],{"type":55,"value":81},{"type":50,"tag":249,"props":8769,"children":8770},{"style":295},[8771],{"type":55,"value":662},{"type":50,"tag":249,"props":8773,"children":8774},{"style":665},[8775],{"type":55,"value":8776},"record",{"type":50,"tag":249,"props":8778,"children":8779},{"style":301},[8780],{"type":55,"value":673},{"type":50,"tag":249,"props":8782,"children":8783},{"style":295},[8784],{"type":55,"value":7257},{"type":50,"tag":249,"props":8786,"children":8787},{"style":360},[8788],{"type":55,"value":8789}," record",{"type":50,"tag":249,"props":8791,"children":8792},{"style":295},[8793],{"type":55,"value":976},{"type":50,"tag":249,"props":8795,"children":8796},{"style":1010},[8797],{"type":55,"value":1013},{"type":50,"tag":249,"props":8799,"children":8800},{"style":295},[8801],{"type":55,"value":309},{"type":50,"tag":249,"props":8803,"children":8804},{"style":301},[8805],{"type":55,"value":870},{"type":50,"tag":249,"props":8807,"children":8808},{"style":295},[8809],{"type":55,"value":8478},{"type":50,"tag":249,"props":8811,"children":8812},{"style":646},[8813],{"type":55,"value":8814}," \u002F\u002F or false\n",{"type":50,"tag":249,"props":8816,"children":8817},{"class":251,"line":450},[8818],{"type":50,"tag":249,"props":8819,"children":8820},{"emptyLinePlaceholder":719},[8821],{"type":55,"value":722},{"type":50,"tag":249,"props":8823,"children":8824},{"class":251,"line":495},[8825],{"type":50,"tag":249,"props":8826,"children":8827},{"style":646},[8828],{"type":55,"value":8829},"\u002F\u002F Show\u002Fhide record button\n",{"type":50,"tag":249,"props":8831,"children":8832},{"class":251,"line":540},[8833,8837,8841,8846,8850,8854,8859,8863,8867,8871,8875],{"type":50,"tag":249,"props":8834,"children":8835},{"style":301},[8836],{"type":55,"value":81},{"type":50,"tag":249,"props":8838,"children":8839},{"style":295},[8840],{"type":55,"value":662},{"type":50,"tag":249,"props":8842,"children":8843},{"style":665},[8844],{"type":55,"value":8845},"showRecordFunction",{"type":50,"tag":249,"props":8847,"children":8848},{"style":301},[8849],{"type":55,"value":673},{"type":50,"tag":249,"props":8851,"children":8852},{"style":295},[8853],{"type":55,"value":7257},{"type":50,"tag":249,"props":8855,"children":8856},{"style":360},[8857],{"type":55,"value":8858}," show",{"type":50,"tag":249,"props":8860,"children":8861},{"style":295},[8862],{"type":55,"value":976},{"type":50,"tag":249,"props":8864,"children":8865},{"style":1010},[8866],{"type":55,"value":1013},{"type":50,"tag":249,"props":8868,"children":8869},{"style":295},[8870],{"type":55,"value":309},{"type":50,"tag":249,"props":8872,"children":8873},{"style":301},[8874],{"type":55,"value":870},{"type":50,"tag":249,"props":8876,"children":8877},{"style":295},[8878],{"type":55,"value":334},{"type":50,"tag":231,"props":8880,"children":8882},{"id":8881},"breakout-rooms-1",[8883],{"type":55,"value":6071},{"type":50,"tag":238,"props":8885,"children":8887},{"className":277,"code":8886,"language":279,"meta":243,"style":243},"\u002F\u002F Create breakout room\nZoomMtg.createBreakoutRoom({\n  rooms: [{ name: 'Room 1' }, { name: 'Room 2' }]\n});\n\n\u002F\u002F Open breakout rooms\nZoomMtg.openBreakoutRooms({});\n\n\u002F\u002F Close breakout rooms\nZoomMtg.closeBreakoutRooms({});\n\n\u002F\u002F Join breakout room\nZoomMtg.joinBreakoutRoom({ roomId });\n\n\u002F\u002F Leave breakout room\nZoomMtg.leaveBreakoutRoom({});\n\n\u002F\u002F Move user to breakout room\nZoomMtg.moveUserToBreakoutRoom({ oderId, roomId });\n\n\u002F\u002F Get breakout room status\nZoomMtg.getBreakoutRoomStatus({\n  success: (res) => console.log(res)\n});\n",[8888],{"type":50,"tag":76,"props":8889,"children":8890},{"__ignoreMap":243},[8891,8899,8923,9005,9020,9027,9035,9067,9074,9082,9114,9121,9129,9170,9177,9185,9217,9224,9232,9280,9287,9295,9319,9362],{"type":50,"tag":249,"props":8892,"children":8893},{"class":251,"line":252},[8894],{"type":50,"tag":249,"props":8895,"children":8896},{"style":646},[8897],{"type":55,"value":8898},"\u002F\u002F Create breakout room\n",{"type":50,"tag":249,"props":8900,"children":8901},{"class":251,"line":405},[8902,8906,8910,8915,8919],{"type":50,"tag":249,"props":8903,"children":8904},{"style":301},[8905],{"type":55,"value":81},{"type":50,"tag":249,"props":8907,"children":8908},{"style":295},[8909],{"type":55,"value":662},{"type":50,"tag":249,"props":8911,"children":8912},{"style":665},[8913],{"type":55,"value":8914},"createBreakoutRoom",{"type":50,"tag":249,"props":8916,"children":8917},{"style":301},[8918],{"type":55,"value":673},{"type":50,"tag":249,"props":8920,"children":8921},{"style":295},[8922],{"type":55,"value":962},{"type":50,"tag":249,"props":8924,"children":8925},{"class":251,"line":450},[8926,8931,8935,8940,8944,8949,8953,8957,8962,8966,8971,8975,8979,8983,8987,8992,8996,9000],{"type":50,"tag":249,"props":8927,"children":8928},{"style":360},[8929],{"type":55,"value":8930},"  rooms",{"type":50,"tag":249,"props":8932,"children":8933},{"style":295},[8934],{"type":55,"value":976},{"type":50,"tag":249,"props":8936,"children":8937},{"style":301},[8938],{"type":55,"value":8939}," [",{"type":50,"tag":249,"props":8941,"children":8942},{"style":295},[8943],{"type":55,"value":7257},{"type":50,"tag":249,"props":8945,"children":8946},{"style":360},[8947],{"type":55,"value":8948}," name",{"type":50,"tag":249,"props":8950,"children":8951},{"style":295},[8952],{"type":55,"value":976},{"type":50,"tag":249,"props":8954,"children":8955},{"style":295},[8956],{"type":55,"value":319},{"type":50,"tag":249,"props":8958,"children":8959},{"style":261},[8960],{"type":55,"value":8961},"Room 1",{"type":50,"tag":249,"props":8963,"children":8964},{"style":295},[8965],{"type":55,"value":329},{"type":50,"tag":249,"props":8967,"children":8968},{"style":295},[8969],{"type":55,"value":8970}," },",{"type":50,"tag":249,"props":8972,"children":8973},{"style":295},[8974],{"type":55,"value":298},{"type":50,"tag":249,"props":8976,"children":8977},{"style":360},[8978],{"type":55,"value":8948},{"type":50,"tag":249,"props":8980,"children":8981},{"style":295},[8982],{"type":55,"value":976},{"type":50,"tag":249,"props":8984,"children":8985},{"style":295},[8986],{"type":55,"value":319},{"type":50,"tag":249,"props":8988,"children":8989},{"style":261},[8990],{"type":55,"value":8991},"Room 2",{"type":50,"tag":249,"props":8993,"children":8994},{"style":295},[8995],{"type":55,"value":329},{"type":50,"tag":249,"props":8997,"children":8998},{"style":295},[8999],{"type":55,"value":309},{"type":50,"tag":249,"props":9001,"children":9002},{"style":301},[9003],{"type":55,"value":9004},"]\n",{"type":50,"tag":249,"props":9006,"children":9007},{"class":251,"line":495},[9008,9012,9016],{"type":50,"tag":249,"props":9009,"children":9010},{"style":295},[9011],{"type":55,"value":1918},{"type":50,"tag":249,"props":9013,"children":9014},{"style":301},[9015],{"type":55,"value":870},{"type":50,"tag":249,"props":9017,"children":9018},{"style":295},[9019],{"type":55,"value":334},{"type":50,"tag":249,"props":9021,"children":9022},{"class":251,"line":540},[9023],{"type":50,"tag":249,"props":9024,"children":9025},{"emptyLinePlaceholder":719},[9026],{"type":55,"value":722},{"type":50,"tag":249,"props":9028,"children":9029},{"class":251,"line":585},[9030],{"type":50,"tag":249,"props":9031,"children":9032},{"style":646},[9033],{"type":55,"value":9034},"\u002F\u002F Open breakout rooms\n",{"type":50,"tag":249,"props":9036,"children":9037},{"class":251,"line":748},[9038,9042,9046,9051,9055,9059,9063],{"type":50,"tag":249,"props":9039,"children":9040},{"style":301},[9041],{"type":55,"value":81},{"type":50,"tag":249,"props":9043,"children":9044},{"style":295},[9045],{"type":55,"value":662},{"type":50,"tag":249,"props":9047,"children":9048},{"style":665},[9049],{"type":55,"value":9050},"openBreakoutRooms",{"type":50,"tag":249,"props":9052,"children":9053},{"style":301},[9054],{"type":55,"value":673},{"type":50,"tag":249,"props":9056,"children":9057},{"style":295},[9058],{"type":55,"value":1372},{"type":50,"tag":249,"props":9060,"children":9061},{"style":301},[9062],{"type":55,"value":870},{"type":50,"tag":249,"props":9064,"children":9065},{"style":295},[9066],{"type":55,"value":334},{"type":50,"tag":249,"props":9068,"children":9069},{"class":251,"line":757},[9070],{"type":50,"tag":249,"props":9071,"children":9072},{"emptyLinePlaceholder":719},[9073],{"type":55,"value":722},{"type":50,"tag":249,"props":9075,"children":9076},{"class":251,"line":783},[9077],{"type":50,"tag":249,"props":9078,"children":9079},{"style":646},[9080],{"type":55,"value":9081},"\u002F\u002F Close breakout rooms\n",{"type":50,"tag":249,"props":9083,"children":9084},{"class":251,"line":808},[9085,9089,9093,9098,9102,9106,9110],{"type":50,"tag":249,"props":9086,"children":9087},{"style":301},[9088],{"type":55,"value":81},{"type":50,"tag":249,"props":9090,"children":9091},{"style":295},[9092],{"type":55,"value":662},{"type":50,"tag":249,"props":9094,"children":9095},{"style":665},[9096],{"type":55,"value":9097},"closeBreakoutRooms",{"type":50,"tag":249,"props":9099,"children":9100},{"style":301},[9101],{"type":55,"value":673},{"type":50,"tag":249,"props":9103,"children":9104},{"style":295},[9105],{"type":55,"value":1372},{"type":50,"tag":249,"props":9107,"children":9108},{"style":301},[9109],{"type":55,"value":870},{"type":50,"tag":249,"props":9111,"children":9112},{"style":295},[9113],{"type":55,"value":334},{"type":50,"tag":249,"props":9115,"children":9116},{"class":251,"line":816},[9117],{"type":50,"tag":249,"props":9118,"children":9119},{"emptyLinePlaceholder":719},[9120],{"type":55,"value":722},{"type":50,"tag":249,"props":9122,"children":9123},{"class":251,"line":825},[9124],{"type":50,"tag":249,"props":9125,"children":9126},{"style":646},[9127],{"type":55,"value":9128},"\u002F\u002F Join breakout room\n",{"type":50,"tag":249,"props":9130,"children":9131},{"class":251,"line":877},[9132,9136,9140,9145,9149,9153,9158,9162,9166],{"type":50,"tag":249,"props":9133,"children":9134},{"style":301},[9135],{"type":55,"value":81},{"type":50,"tag":249,"props":9137,"children":9138},{"style":295},[9139],{"type":55,"value":662},{"type":50,"tag":249,"props":9141,"children":9142},{"style":665},[9143],{"type":55,"value":9144},"joinBreakoutRoom",{"type":50,"tag":249,"props":9146,"children":9147},{"style":301},[9148],{"type":55,"value":673},{"type":50,"tag":249,"props":9150,"children":9151},{"style":295},[9152],{"type":55,"value":7257},{"type":50,"tag":249,"props":9154,"children":9155},{"style":301},[9156],{"type":55,"value":9157}," roomId ",{"type":50,"tag":249,"props":9159,"children":9160},{"style":295},[9161],{"type":55,"value":1918},{"type":50,"tag":249,"props":9163,"children":9164},{"style":301},[9165],{"type":55,"value":870},{"type":50,"tag":249,"props":9167,"children":9168},{"style":295},[9169],{"type":55,"value":334},{"type":50,"tag":249,"props":9171,"children":9172},{"class":251,"line":920},[9173],{"type":50,"tag":249,"props":9174,"children":9175},{"emptyLinePlaceholder":719},[9176],{"type":55,"value":722},{"type":50,"tag":249,"props":9178,"children":9179},{"class":251,"line":929},[9180],{"type":50,"tag":249,"props":9181,"children":9182},{"style":646},[9183],{"type":55,"value":9184},"\u002F\u002F Leave breakout room\n",{"type":50,"tag":249,"props":9186,"children":9187},{"class":251,"line":938},[9188,9192,9196,9201,9205,9209,9213],{"type":50,"tag":249,"props":9189,"children":9190},{"style":301},[9191],{"type":55,"value":81},{"type":50,"tag":249,"props":9193,"children":9194},{"style":295},[9195],{"type":55,"value":662},{"type":50,"tag":249,"props":9197,"children":9198},{"style":665},[9199],{"type":55,"value":9200},"leaveBreakoutRoom",{"type":50,"tag":249,"props":9202,"children":9203},{"style":301},[9204],{"type":55,"value":673},{"type":50,"tag":249,"props":9206,"children":9207},{"style":295},[9208],{"type":55,"value":1372},{"type":50,"tag":249,"props":9210,"children":9211},{"style":301},[9212],{"type":55,"value":870},{"type":50,"tag":249,"props":9214,"children":9215},{"style":295},[9216],{"type":55,"value":334},{"type":50,"tag":249,"props":9218,"children":9219},{"class":251,"line":965},[9220],{"type":50,"tag":249,"props":9221,"children":9222},{"emptyLinePlaceholder":719},[9223],{"type":55,"value":722},{"type":50,"tag":249,"props":9225,"children":9226},{"class":251,"line":997},[9227],{"type":50,"tag":249,"props":9228,"children":9229},{"style":646},[9230],{"type":55,"value":9231},"\u002F\u002F Move user to breakout room\n",{"type":50,"tag":249,"props":9233,"children":9234},{"class":251,"line":1020},[9235,9239,9243,9248,9252,9256,9260,9264,9268,9272,9276],{"type":50,"tag":249,"props":9236,"children":9237},{"style":301},[9238],{"type":55,"value":81},{"type":50,"tag":249,"props":9240,"children":9241},{"style":295},[9242],{"type":55,"value":662},{"type":50,"tag":249,"props":9244,"children":9245},{"style":665},[9246],{"type":55,"value":9247},"moveUserToBreakoutRoom",{"type":50,"tag":249,"props":9249,"children":9250},{"style":301},[9251],{"type":55,"value":673},{"type":50,"tag":249,"props":9253,"children":9254},{"style":295},[9255],{"type":55,"value":7257},{"type":50,"tag":249,"props":9257,"children":9258},{"style":301},[9259],{"type":55,"value":8439},{"type":50,"tag":249,"props":9261,"children":9262},{"style":295},[9263],{"type":55,"value":691},{"type":50,"tag":249,"props":9265,"children":9266},{"style":301},[9267],{"type":55,"value":9157},{"type":50,"tag":249,"props":9269,"children":9270},{"style":295},[9271],{"type":55,"value":1918},{"type":50,"tag":249,"props":9273,"children":9274},{"style":301},[9275],{"type":55,"value":870},{"type":50,"tag":249,"props":9277,"children":9278},{"style":295},[9279],{"type":55,"value":334},{"type":50,"tag":249,"props":9281,"children":9282},{"class":251,"line":1056},[9283],{"type":50,"tag":249,"props":9284,"children":9285},{"emptyLinePlaceholder":719},[9286],{"type":55,"value":722},{"type":50,"tag":249,"props":9288,"children":9289},{"class":251,"line":1082},[9290],{"type":50,"tag":249,"props":9291,"children":9292},{"style":646},[9293],{"type":55,"value":9294},"\u002F\u002F Get breakout room status\n",{"type":50,"tag":249,"props":9296,"children":9297},{"class":251,"line":1124},[9298,9302,9306,9311,9315],{"type":50,"tag":249,"props":9299,"children":9300},{"style":301},[9301],{"type":55,"value":81},{"type":50,"tag":249,"props":9303,"children":9304},{"style":295},[9305],{"type":55,"value":662},{"type":50,"tag":249,"props":9307,"children":9308},{"style":665},[9309],{"type":55,"value":9310},"getBreakoutRoomStatus",{"type":50,"tag":249,"props":9312,"children":9313},{"style":301},[9314],{"type":55,"value":673},{"type":50,"tag":249,"props":9316,"children":9317},{"style":295},[9318],{"type":55,"value":962},{"type":50,"tag":249,"props":9320,"children":9321},{"class":251,"line":1133},[9322,9326,9330,9334,9338,9342,9346,9350,9354,9358],{"type":50,"tag":249,"props":9323,"children":9324},{"style":665},[9325],{"type":55,"value":6899},{"type":50,"tag":249,"props":9327,"children":9328},{"style":295},[9329],{"type":55,"value":976},{"type":50,"tag":249,"props":9331,"children":9332},{"style":295},[9333],{"type":55,"value":1268},{"type":50,"tag":249,"props":9335,"children":9336},{"style":1271},[9337],{"type":55,"value":1274},{"type":50,"tag":249,"props":9339,"children":9340},{"style":295},[9341],{"type":55,"value":870},{"type":50,"tag":249,"props":9343,"children":9344},{"style":366},[9345],{"type":55,"value":912},{"type":50,"tag":249,"props":9347,"children":9348},{"style":301},[9349],{"type":55,"value":1439},{"type":50,"tag":249,"props":9351,"children":9352},{"style":295},[9353],{"type":55,"value":662},{"type":50,"tag":249,"props":9355,"children":9356},{"style":665},[9357],{"type":55,"value":668},{"type":50,"tag":249,"props":9359,"children":9360},{"style":301},[9361],{"type":55,"value":7097},{"type":50,"tag":249,"props":9363,"children":9364},{"class":251,"line":1142},[9365,9369,9373],{"type":50,"tag":249,"props":9366,"children":9367},{"style":295},[9368],{"type":55,"value":1918},{"type":50,"tag":249,"props":9370,"children":9371},{"style":301},[9372],{"type":55,"value":870},{"type":50,"tag":249,"props":9374,"children":9375},{"style":295},[9376],{"type":55,"value":334},{"type":50,"tag":231,"props":9378,"children":9380},{"id":9379},"virtual-background",[9381],{"type":55,"value":9382},"Virtual Background",{"type":50,"tag":238,"props":9384,"children":9386},{"className":277,"code":9385,"language":279,"meta":243,"style":243},"\u002F\u002F Check support\nZoomMtg.isSupportVirtualBackground({\n  success: (data) => console.log(data.result.isSupport)\n});\n\n\u002F\u002F Set virtual background\nZoomMtg.setVirtualBackground({ imageUrl: '...' });\n\n\u002F\u002F Get VB status\nZoomMtg.getVirtualBackgroundStatus({\n  success: (data) => console.log(data)\n});\n\n\u002F\u002F Lock virtual background (host)\nZoomMtg.lockVirtualBackground({ lock: true });\n",[9387],{"type":50,"tag":76,"props":9388,"children":9389},{"__ignoreMap":243},[9390,9398,9422,9483,9498,9505,9513,9571,9578,9586,9610,9654,9669,9676,9684],{"type":50,"tag":249,"props":9391,"children":9392},{"class":251,"line":252},[9393],{"type":50,"tag":249,"props":9394,"children":9395},{"style":646},[9396],{"type":55,"value":9397},"\u002F\u002F Check support\n",{"type":50,"tag":249,"props":9399,"children":9400},{"class":251,"line":405},[9401,9405,9409,9414,9418],{"type":50,"tag":249,"props":9402,"children":9403},{"style":301},[9404],{"type":55,"value":81},{"type":50,"tag":249,"props":9406,"children":9407},{"style":295},[9408],{"type":55,"value":662},{"type":50,"tag":249,"props":9410,"children":9411},{"style":665},[9412],{"type":55,"value":9413},"isSupportVirtualBackground",{"type":50,"tag":249,"props":9415,"children":9416},{"style":301},[9417],{"type":55,"value":673},{"type":50,"tag":249,"props":9419,"children":9420},{"style":295},[9421],{"type":55,"value":962},{"type":50,"tag":249,"props":9423,"children":9424},{"class":251,"line":450},[9425,9429,9433,9437,9441,9445,9449,9453,9457,9461,9466,9470,9474,9478],{"type":50,"tag":249,"props":9426,"children":9427},{"style":665},[9428],{"type":55,"value":6899},{"type":50,"tag":249,"props":9430,"children":9431},{"style":295},[9432],{"type":55,"value":976},{"type":50,"tag":249,"props":9434,"children":9435},{"style":295},[9436],{"type":55,"value":1268},{"type":50,"tag":249,"props":9438,"children":9439},{"style":1271},[9440],{"type":55,"value":4071},{"type":50,"tag":249,"props":9442,"children":9443},{"style":295},[9444],{"type":55,"value":870},{"type":50,"tag":249,"props":9446,"children":9447},{"style":366},[9448],{"type":55,"value":912},{"type":50,"tag":249,"props":9450,"children":9451},{"style":301},[9452],{"type":55,"value":1439},{"type":50,"tag":249,"props":9454,"children":9455},{"style":295},[9456],{"type":55,"value":662},{"type":50,"tag":249,"props":9458,"children":9459},{"style":665},[9460],{"type":55,"value":668},{"type":50,"tag":249,"props":9462,"children":9463},{"style":301},[9464],{"type":55,"value":9465},"(data",{"type":50,"tag":249,"props":9467,"children":9468},{"style":295},[9469],{"type":55,"value":662},{"type":50,"tag":249,"props":9471,"children":9472},{"style":301},[9473],{"type":55,"value":1482},{"type":50,"tag":249,"props":9475,"children":9476},{"style":295},[9477],{"type":55,"value":662},{"type":50,"tag":249,"props":9479,"children":9480},{"style":301},[9481],{"type":55,"value":9482},"isSupport)\n",{"type":50,"tag":249,"props":9484,"children":9485},{"class":251,"line":495},[9486,9490,9494],{"type":50,"tag":249,"props":9487,"children":9488},{"style":295},[9489],{"type":55,"value":1918},{"type":50,"tag":249,"props":9491,"children":9492},{"style":301},[9493],{"type":55,"value":870},{"type":50,"tag":249,"props":9495,"children":9496},{"style":295},[9497],{"type":55,"value":334},{"type":50,"tag":249,"props":9499,"children":9500},{"class":251,"line":540},[9501],{"type":50,"tag":249,"props":9502,"children":9503},{"emptyLinePlaceholder":719},[9504],{"type":55,"value":722},{"type":50,"tag":249,"props":9506,"children":9507},{"class":251,"line":585},[9508],{"type":50,"tag":249,"props":9509,"children":9510},{"style":646},[9511],{"type":55,"value":9512},"\u002F\u002F Set virtual background\n",{"type":50,"tag":249,"props":9514,"children":9515},{"class":251,"line":748},[9516,9520,9524,9529,9533,9537,9542,9546,9550,9555,9559,9563,9567],{"type":50,"tag":249,"props":9517,"children":9518},{"style":301},[9519],{"type":55,"value":81},{"type":50,"tag":249,"props":9521,"children":9522},{"style":295},[9523],{"type":55,"value":662},{"type":50,"tag":249,"props":9525,"children":9526},{"style":665},[9527],{"type":55,"value":9528},"setVirtualBackground",{"type":50,"tag":249,"props":9530,"children":9531},{"style":301},[9532],{"type":55,"value":673},{"type":50,"tag":249,"props":9534,"children":9535},{"style":295},[9536],{"type":55,"value":7257},{"type":50,"tag":249,"props":9538,"children":9539},{"style":360},[9540],{"type":55,"value":9541}," imageUrl",{"type":50,"tag":249,"props":9543,"children":9544},{"style":295},[9545],{"type":55,"value":976},{"type":50,"tag":249,"props":9547,"children":9548},{"style":295},[9549],{"type":55,"value":319},{"type":50,"tag":249,"props":9551,"children":9552},{"style":261},[9553],{"type":55,"value":9554},"...",{"type":50,"tag":249,"props":9556,"children":9557},{"style":295},[9558],{"type":55,"value":329},{"type":50,"tag":249,"props":9560,"children":9561},{"style":295},[9562],{"type":55,"value":309},{"type":50,"tag":249,"props":9564,"children":9565},{"style":301},[9566],{"type":55,"value":870},{"type":50,"tag":249,"props":9568,"children":9569},{"style":295},[9570],{"type":55,"value":334},{"type":50,"tag":249,"props":9572,"children":9573},{"class":251,"line":757},[9574],{"type":50,"tag":249,"props":9575,"children":9576},{"emptyLinePlaceholder":719},[9577],{"type":55,"value":722},{"type":50,"tag":249,"props":9579,"children":9580},{"class":251,"line":783},[9581],{"type":50,"tag":249,"props":9582,"children":9583},{"style":646},[9584],{"type":55,"value":9585},"\u002F\u002F Get VB status\n",{"type":50,"tag":249,"props":9587,"children":9588},{"class":251,"line":808},[9589,9593,9597,9602,9606],{"type":50,"tag":249,"props":9590,"children":9591},{"style":301},[9592],{"type":55,"value":81},{"type":50,"tag":249,"props":9594,"children":9595},{"style":295},[9596],{"type":55,"value":662},{"type":50,"tag":249,"props":9598,"children":9599},{"style":665},[9600],{"type":55,"value":9601},"getVirtualBackgroundStatus",{"type":50,"tag":249,"props":9603,"children":9604},{"style":301},[9605],{"type":55,"value":673},{"type":50,"tag":249,"props":9607,"children":9608},{"style":295},[9609],{"type":55,"value":962},{"type":50,"tag":249,"props":9611,"children":9612},{"class":251,"line":816},[9613,9617,9621,9625,9629,9633,9637,9641,9645,9649],{"type":50,"tag":249,"props":9614,"children":9615},{"style":665},[9616],{"type":55,"value":6899},{"type":50,"tag":249,"props":9618,"children":9619},{"style":295},[9620],{"type":55,"value":976},{"type":50,"tag":249,"props":9622,"children":9623},{"style":295},[9624],{"type":55,"value":1268},{"type":50,"tag":249,"props":9626,"children":9627},{"style":1271},[9628],{"type":55,"value":4071},{"type":50,"tag":249,"props":9630,"children":9631},{"style":295},[9632],{"type":55,"value":870},{"type":50,"tag":249,"props":9634,"children":9635},{"style":366},[9636],{"type":55,"value":912},{"type":50,"tag":249,"props":9638,"children":9639},{"style":301},[9640],{"type":55,"value":1439},{"type":50,"tag":249,"props":9642,"children":9643},{"style":295},[9644],{"type":55,"value":662},{"type":50,"tag":249,"props":9646,"children":9647},{"style":665},[9648],{"type":55,"value":668},{"type":50,"tag":249,"props":9650,"children":9651},{"style":301},[9652],{"type":55,"value":9653},"(data)\n",{"type":50,"tag":249,"props":9655,"children":9656},{"class":251,"line":825},[9657,9661,9665],{"type":50,"tag":249,"props":9658,"children":9659},{"style":295},[9660],{"type":55,"value":1918},{"type":50,"tag":249,"props":9662,"children":9663},{"style":301},[9664],{"type":55,"value":870},{"type":50,"tag":249,"props":9666,"children":9667},{"style":295},[9668],{"type":55,"value":334},{"type":50,"tag":249,"props":9670,"children":9671},{"class":251,"line":877},[9672],{"type":50,"tag":249,"props":9673,"children":9674},{"emptyLinePlaceholder":719},[9675],{"type":55,"value":722},{"type":50,"tag":249,"props":9677,"children":9678},{"class":251,"line":920},[9679],{"type":50,"tag":249,"props":9680,"children":9681},{"style":646},[9682],{"type":55,"value":9683},"\u002F\u002F Lock virtual background (host)\n",{"type":50,"tag":249,"props":9685,"children":9686},{"class":251,"line":929},[9687,9691,9695,9700,9704,9708,9712,9716,9720,9724,9728],{"type":50,"tag":249,"props":9688,"children":9689},{"style":301},[9690],{"type":55,"value":81},{"type":50,"tag":249,"props":9692,"children":9693},{"style":295},[9694],{"type":55,"value":662},{"type":50,"tag":249,"props":9696,"children":9697},{"style":665},[9698],{"type":55,"value":9699},"lockVirtualBackground",{"type":50,"tag":249,"props":9701,"children":9702},{"style":301},[9703],{"type":55,"value":673},{"type":50,"tag":249,"props":9705,"children":9706},{"style":295},[9707],{"type":55,"value":7257},{"type":50,"tag":249,"props":9709,"children":9710},{"style":360},[9711],{"type":55,"value":7739},{"type":50,"tag":249,"props":9713,"children":9714},{"style":295},[9715],{"type":55,"value":976},{"type":50,"tag":249,"props":9717,"children":9718},{"style":1010},[9719],{"type":55,"value":1013},{"type":50,"tag":249,"props":9721,"children":9722},{"style":295},[9723],{"type":55,"value":309},{"type":50,"tag":249,"props":9725,"children":9726},{"style":301},[9727],{"type":55,"value":870},{"type":50,"tag":249,"props":9729,"children":9730},{"style":295},[9731],{"type":55,"value":334},{"type":50,"tag":231,"props":9733,"children":9735},{"id":9734},"ui-control",[9736],{"type":55,"value":9737},"UI Control",{"type":50,"tag":238,"props":9739,"children":9741},{"className":277,"code":9740,"language":279,"meta":243,"style":243},"\u002F\u002F Show\u002Fhide meeting header\nZoomMtg.showMeetingHeader({ show: true });\n\n\u002F\u002F Show\u002Fhide invite button\nZoomMtg.showInviteFunction({ show: true });\n\n\u002F\u002F Show\u002Fhide join audio button\nZoomMtg.showJoinAudioFunction({ show: true });\n\n\u002F\u002F Show\u002Fhide callout button\nZoomMtg.showCalloutFunction({ show: true });\n\n\u002F\u002F Re-render with new options\nZoomMtg.reRender({ lang: 'de-DE' });\n",[9742],{"type":50,"tag":76,"props":9743,"children":9744},{"__ignoreMap":243},[9745,9753,9800,9807,9815,9863,9870,9878,9926,9933,9941,9989,9996,10004],{"type":50,"tag":249,"props":9746,"children":9747},{"class":251,"line":252},[9748],{"type":50,"tag":249,"props":9749,"children":9750},{"style":646},[9751],{"type":55,"value":9752},"\u002F\u002F Show\u002Fhide meeting header\n",{"type":50,"tag":249,"props":9754,"children":9755},{"class":251,"line":405},[9756,9760,9764,9768,9772,9776,9780,9784,9788,9792,9796],{"type":50,"tag":249,"props":9757,"children":9758},{"style":301},[9759],{"type":55,"value":81},{"type":50,"tag":249,"props":9761,"children":9762},{"style":295},[9763],{"type":55,"value":662},{"type":50,"tag":249,"props":9765,"children":9766},{"style":665},[9767],{"type":55,"value":2038},{"type":50,"tag":249,"props":9769,"children":9770},{"style":301},[9771],{"type":55,"value":673},{"type":50,"tag":249,"props":9773,"children":9774},{"style":295},[9775],{"type":55,"value":7257},{"type":50,"tag":249,"props":9777,"children":9778},{"style":360},[9779],{"type":55,"value":8858},{"type":50,"tag":249,"props":9781,"children":9782},{"style":295},[9783],{"type":55,"value":976},{"type":50,"tag":249,"props":9785,"children":9786},{"style":1010},[9787],{"type":55,"value":1013},{"type":50,"tag":249,"props":9789,"children":9790},{"style":295},[9791],{"type":55,"value":309},{"type":50,"tag":249,"props":9793,"children":9794},{"style":301},[9795],{"type":55,"value":870},{"type":50,"tag":249,"props":9797,"children":9798},{"style":295},[9799],{"type":55,"value":334},{"type":50,"tag":249,"props":9801,"children":9802},{"class":251,"line":450},[9803],{"type":50,"tag":249,"props":9804,"children":9805},{"emptyLinePlaceholder":719},[9806],{"type":55,"value":722},{"type":50,"tag":249,"props":9808,"children":9809},{"class":251,"line":495},[9810],{"type":50,"tag":249,"props":9811,"children":9812},{"style":646},[9813],{"type":55,"value":9814},"\u002F\u002F Show\u002Fhide invite button\n",{"type":50,"tag":249,"props":9816,"children":9817},{"class":251,"line":540},[9818,9822,9826,9831,9835,9839,9843,9847,9851,9855,9859],{"type":50,"tag":249,"props":9819,"children":9820},{"style":301},[9821],{"type":55,"value":81},{"type":50,"tag":249,"props":9823,"children":9824},{"style":295},[9825],{"type":55,"value":662},{"type":50,"tag":249,"props":9827,"children":9828},{"style":665},[9829],{"type":55,"value":9830},"showInviteFunction",{"type":50,"tag":249,"props":9832,"children":9833},{"style":301},[9834],{"type":55,"value":673},{"type":50,"tag":249,"props":9836,"children":9837},{"style":295},[9838],{"type":55,"value":7257},{"type":50,"tag":249,"props":9840,"children":9841},{"style":360},[9842],{"type":55,"value":8858},{"type":50,"tag":249,"props":9844,"children":9845},{"style":295},[9846],{"type":55,"value":976},{"type":50,"tag":249,"props":9848,"children":9849},{"style":1010},[9850],{"type":55,"value":1013},{"type":50,"tag":249,"props":9852,"children":9853},{"style":295},[9854],{"type":55,"value":309},{"type":50,"tag":249,"props":9856,"children":9857},{"style":301},[9858],{"type":55,"value":870},{"type":50,"tag":249,"props":9860,"children":9861},{"style":295},[9862],{"type":55,"value":334},{"type":50,"tag":249,"props":9864,"children":9865},{"class":251,"line":585},[9866],{"type":50,"tag":249,"props":9867,"children":9868},{"emptyLinePlaceholder":719},[9869],{"type":55,"value":722},{"type":50,"tag":249,"props":9871,"children":9872},{"class":251,"line":748},[9873],{"type":50,"tag":249,"props":9874,"children":9875},{"style":646},[9876],{"type":55,"value":9877},"\u002F\u002F Show\u002Fhide join audio button\n",{"type":50,"tag":249,"props":9879,"children":9880},{"class":251,"line":757},[9881,9885,9889,9894,9898,9902,9906,9910,9914,9918,9922],{"type":50,"tag":249,"props":9882,"children":9883},{"style":301},[9884],{"type":55,"value":81},{"type":50,"tag":249,"props":9886,"children":9887},{"style":295},[9888],{"type":55,"value":662},{"type":50,"tag":249,"props":9890,"children":9891},{"style":665},[9892],{"type":55,"value":9893},"showJoinAudioFunction",{"type":50,"tag":249,"props":9895,"children":9896},{"style":301},[9897],{"type":55,"value":673},{"type":50,"tag":249,"props":9899,"children":9900},{"style":295},[9901],{"type":55,"value":7257},{"type":50,"tag":249,"props":9903,"children":9904},{"style":360},[9905],{"type":55,"value":8858},{"type":50,"tag":249,"props":9907,"children":9908},{"style":295},[9909],{"type":55,"value":976},{"type":50,"tag":249,"props":9911,"children":9912},{"style":1010},[9913],{"type":55,"value":1013},{"type":50,"tag":249,"props":9915,"children":9916},{"style":295},[9917],{"type":55,"value":309},{"type":50,"tag":249,"props":9919,"children":9920},{"style":301},[9921],{"type":55,"value":870},{"type":50,"tag":249,"props":9923,"children":9924},{"style":295},[9925],{"type":55,"value":334},{"type":50,"tag":249,"props":9927,"children":9928},{"class":251,"line":783},[9929],{"type":50,"tag":249,"props":9930,"children":9931},{"emptyLinePlaceholder":719},[9932],{"type":55,"value":722},{"type":50,"tag":249,"props":9934,"children":9935},{"class":251,"line":808},[9936],{"type":50,"tag":249,"props":9937,"children":9938},{"style":646},[9939],{"type":55,"value":9940},"\u002F\u002F Show\u002Fhide callout button\n",{"type":50,"tag":249,"props":9942,"children":9943},{"class":251,"line":816},[9944,9948,9952,9957,9961,9965,9969,9973,9977,9981,9985],{"type":50,"tag":249,"props":9945,"children":9946},{"style":301},[9947],{"type":55,"value":81},{"type":50,"tag":249,"props":9949,"children":9950},{"style":295},[9951],{"type":55,"value":662},{"type":50,"tag":249,"props":9953,"children":9954},{"style":665},[9955],{"type":55,"value":9956},"showCalloutFunction",{"type":50,"tag":249,"props":9958,"children":9959},{"style":301},[9960],{"type":55,"value":673},{"type":50,"tag":249,"props":9962,"children":9963},{"style":295},[9964],{"type":55,"value":7257},{"type":50,"tag":249,"props":9966,"children":9967},{"style":360},[9968],{"type":55,"value":8858},{"type":50,"tag":249,"props":9970,"children":9971},{"style":295},[9972],{"type":55,"value":976},{"type":50,"tag":249,"props":9974,"children":9975},{"style":1010},[9976],{"type":55,"value":1013},{"type":50,"tag":249,"props":9978,"children":9979},{"style":295},[9980],{"type":55,"value":309},{"type":50,"tag":249,"props":9982,"children":9983},{"style":301},[9984],{"type":55,"value":870},{"type":50,"tag":249,"props":9986,"children":9987},{"style":295},[9988],{"type":55,"value":334},{"type":50,"tag":249,"props":9990,"children":9991},{"class":251,"line":825},[9992],{"type":50,"tag":249,"props":9993,"children":9994},{"emptyLinePlaceholder":719},[9995],{"type":55,"value":722},{"type":50,"tag":249,"props":9997,"children":9998},{"class":251,"line":877},[9999],{"type":50,"tag":249,"props":10000,"children":10001},{"style":646},[10002],{"type":55,"value":10003},"\u002F\u002F Re-render with new options\n",{"type":50,"tag":249,"props":10005,"children":10006},{"class":251,"line":920},[10007,10011,10015,10020,10024,10028,10033,10037,10041,10046,10050,10054,10058],{"type":50,"tag":249,"props":10008,"children":10009},{"style":301},[10010],{"type":55,"value":81},{"type":50,"tag":249,"props":10012,"children":10013},{"style":295},[10014],{"type":55,"value":662},{"type":50,"tag":249,"props":10016,"children":10017},{"style":665},[10018],{"type":55,"value":10019},"reRender",{"type":50,"tag":249,"props":10021,"children":10022},{"style":301},[10023],{"type":55,"value":673},{"type":50,"tag":249,"props":10025,"children":10026},{"style":295},[10027],{"type":55,"value":7257},{"type":50,"tag":249,"props":10029,"children":10030},{"style":360},[10031],{"type":55,"value":10032}," lang",{"type":50,"tag":249,"props":10034,"children":10035},{"style":295},[10036],{"type":55,"value":976},{"type":50,"tag":249,"props":10038,"children":10039},{"style":295},[10040],{"type":55,"value":319},{"type":50,"tag":249,"props":10042,"children":10043},{"style":261},[10044],{"type":55,"value":10045},"de-DE",{"type":50,"tag":249,"props":10047,"children":10048},{"style":295},[10049],{"type":55,"value":329},{"type":50,"tag":249,"props":10051,"children":10052},{"style":295},[10053],{"type":55,"value":309},{"type":50,"tag":249,"props":10055,"children":10056},{"style":301},[10057],{"type":55,"value":870},{"type":50,"tag":249,"props":10059,"children":10060},{"style":295},[10061],{"type":55,"value":334},{"type":50,"tag":231,"props":10063,"children":10065},{"id":10064},"language",[10066],{"type":55,"value":10067},"Language",{"type":50,"tag":238,"props":10069,"children":10071},{"className":277,"code":10070,"language":279,"meta":243,"style":243},"\u002F\u002F Load language\nZoomMtg.i18n.load('de-DE');\n\n\u002F\u002F Reload language\nZoomMtg.i18n.reload('de-DE');\n\n\u002F\u002F Get current language\nZoomMtg.i18n.getCurrentLang();\n\n\u002F\u002F Get all translations\nZoomMtg.i18n.getAll();\n",[10072],{"type":50,"tag":76,"props":10073,"children":10074},{"__ignoreMap":243},[10075,10083,10130,10137,10145,10193,10200,10208,10240,10247,10255],{"type":50,"tag":249,"props":10076,"children":10077},{"class":251,"line":252},[10078],{"type":50,"tag":249,"props":10079,"children":10080},{"style":646},[10081],{"type":55,"value":10082},"\u002F\u002F Load language\n",{"type":50,"tag":249,"props":10084,"children":10085},{"class":251,"line":405},[10086,10090,10094,10098,10102,10106,10110,10114,10118,10122,10126],{"type":50,"tag":249,"props":10087,"children":10088},{"style":301},[10089],{"type":55,"value":81},{"type":50,"tag":249,"props":10091,"children":10092},{"style":295},[10093],{"type":55,"value":662},{"type":50,"tag":249,"props":10095,"children":10096},{"style":301},[10097],{"type":55,"value":839},{"type":50,"tag":249,"props":10099,"children":10100},{"style":295},[10101],{"type":55,"value":662},{"type":50,"tag":249,"props":10103,"children":10104},{"style":665},[10105],{"type":55,"value":848},{"type":50,"tag":249,"props":10107,"children":10108},{"style":301},[10109],{"type":55,"value":673},{"type":50,"tag":249,"props":10111,"children":10112},{"style":295},[10113],{"type":55,"value":329},{"type":50,"tag":249,"props":10115,"children":10116},{"style":261},[10117],{"type":55,"value":10045},{"type":50,"tag":249,"props":10119,"children":10120},{"style":295},[10121],{"type":55,"value":329},{"type":50,"tag":249,"props":10123,"children":10124},{"style":301},[10125],{"type":55,"value":870},{"type":50,"tag":249,"props":10127,"children":10128},{"style":295},[10129],{"type":55,"value":334},{"type":50,"tag":249,"props":10131,"children":10132},{"class":251,"line":450},[10133],{"type":50,"tag":249,"props":10134,"children":10135},{"emptyLinePlaceholder":719},[10136],{"type":55,"value":722},{"type":50,"tag":249,"props":10138,"children":10139},{"class":251,"line":495},[10140],{"type":50,"tag":249,"props":10141,"children":10142},{"style":646},[10143],{"type":55,"value":10144},"\u002F\u002F Reload language\n",{"type":50,"tag":249,"props":10146,"children":10147},{"class":251,"line":540},[10148,10152,10156,10160,10164,10169,10173,10177,10181,10185,10189],{"type":50,"tag":249,"props":10149,"children":10150},{"style":301},[10151],{"type":55,"value":81},{"type":50,"tag":249,"props":10153,"children":10154},{"style":295},[10155],{"type":55,"value":662},{"type":50,"tag":249,"props":10157,"children":10158},{"style":301},[10159],{"type":55,"value":839},{"type":50,"tag":249,"props":10161,"children":10162},{"style":295},[10163],{"type":55,"value":662},{"type":50,"tag":249,"props":10165,"children":10166},{"style":665},[10167],{"type":55,"value":10168},"reload",{"type":50,"tag":249,"props":10170,"children":10171},{"style":301},[10172],{"type":55,"value":673},{"type":50,"tag":249,"props":10174,"children":10175},{"style":295},[10176],{"type":55,"value":329},{"type":50,"tag":249,"props":10178,"children":10179},{"style":261},[10180],{"type":55,"value":10045},{"type":50,"tag":249,"props":10182,"children":10183},{"style":295},[10184],{"type":55,"value":329},{"type":50,"tag":249,"props":10186,"children":10187},{"style":301},[10188],{"type":55,"value":870},{"type":50,"tag":249,"props":10190,"children":10191},{"style":295},[10192],{"type":55,"value":334},{"type":50,"tag":249,"props":10194,"children":10195},{"class":251,"line":585},[10196],{"type":50,"tag":249,"props":10197,"children":10198},{"emptyLinePlaceholder":719},[10199],{"type":55,"value":722},{"type":50,"tag":249,"props":10201,"children":10202},{"class":251,"line":748},[10203],{"type":50,"tag":249,"props":10204,"children":10205},{"style":646},[10206],{"type":55,"value":10207},"\u002F\u002F Get current language\n",{"type":50,"tag":249,"props":10209,"children":10210},{"class":251,"line":757},[10211,10215,10219,10223,10227,10232,10236],{"type":50,"tag":249,"props":10212,"children":10213},{"style":301},[10214],{"type":55,"value":81},{"type":50,"tag":249,"props":10216,"children":10217},{"style":295},[10218],{"type":55,"value":662},{"type":50,"tag":249,"props":10220,"children":10221},{"style":301},[10222],{"type":55,"value":839},{"type":50,"tag":249,"props":10224,"children":10225},{"style":295},[10226],{"type":55,"value":662},{"type":50,"tag":249,"props":10228,"children":10229},{"style":665},[10230],{"type":55,"value":10231},"getCurrentLang",{"type":50,"tag":249,"props":10233,"children":10234},{"style":301},[10235],{"type":55,"value":776},{"type":50,"tag":249,"props":10237,"children":10238},{"style":295},[10239],{"type":55,"value":334},{"type":50,"tag":249,"props":10241,"children":10242},{"class":251,"line":783},[10243],{"type":50,"tag":249,"props":10244,"children":10245},{"emptyLinePlaceholder":719},[10246],{"type":55,"value":722},{"type":50,"tag":249,"props":10248,"children":10249},{"class":251,"line":808},[10250],{"type":50,"tag":249,"props":10251,"children":10252},{"style":646},[10253],{"type":55,"value":10254},"\u002F\u002F Get all translations\n",{"type":50,"tag":249,"props":10256,"children":10257},{"class":251,"line":816},[10258,10262,10266,10270,10274,10279,10283],{"type":50,"tag":249,"props":10259,"children":10260},{"style":301},[10261],{"type":55,"value":81},{"type":50,"tag":249,"props":10263,"children":10264},{"style":295},[10265],{"type":55,"value":662},{"type":50,"tag":249,"props":10267,"children":10268},{"style":301},[10269],{"type":55,"value":839},{"type":50,"tag":249,"props":10271,"children":10272},{"style":295},[10273],{"type":55,"value":662},{"type":50,"tag":249,"props":10275,"children":10276},{"style":665},[10277],{"type":55,"value":10278},"getAll",{"type":50,"tag":249,"props":10280,"children":10281},{"style":301},[10282],{"type":55,"value":776},{"type":50,"tag":249,"props":10284,"children":10285},{"style":295},[10286],{"type":55,"value":334},{"type":50,"tag":64,"props":10288,"children":10290},{"id":10289},"rate-limits",[10291],{"type":55,"value":10292},"Rate Limits",{"type":50,"tag":85,"props":10294,"children":10295},{},[10296,10312],{"type":50,"tag":89,"props":10297,"children":10298},{},[10299],{"type":50,"tag":93,"props":10300,"children":10301},{},[10302,10307],{"type":50,"tag":97,"props":10303,"children":10304},{},[10305],{"type":55,"value":10306},"Method",{"type":50,"tag":97,"props":10308,"children":10309},{},[10310],{"type":55,"value":10311},"Limit",{"type":50,"tag":108,"props":10313,"children":10314},{},[10315,10332,10348,10365],{"type":50,"tag":93,"props":10316,"children":10317},{},[10318,10327],{"type":50,"tag":115,"props":10319,"children":10320},{},[10321],{"type":50,"tag":76,"props":10322,"children":10324},{"className":10323},[],[10325],{"type":55,"value":10326},"join()",{"type":50,"tag":115,"props":10328,"children":10329},{},[10330],{"type":55,"value":10331},"10 seconds",{"type":50,"tag":93,"props":10333,"children":10334},{},[10335,10344],{"type":50,"tag":115,"props":10336,"children":10337},{},[10338],{"type":50,"tag":76,"props":10339,"children":10341},{"className":10340},[],[10342],{"type":55,"value":10343},"callOut()",{"type":50,"tag":115,"props":10345,"children":10346},{},[10347],{"type":55,"value":10331},{"type":50,"tag":93,"props":10349,"children":10350},{},[10351,10360],{"type":50,"tag":115,"props":10352,"children":10353},{},[10354],{"type":50,"tag":76,"props":10355,"children":10357},{"className":10356},[],[10358],{"type":55,"value":10359},"mute()",{"type":50,"tag":115,"props":10361,"children":10362},{},[10363],{"type":55,"value":10364},"1 second",{"type":50,"tag":93,"props":10366,"children":10367},{},[10368,10377],{"type":50,"tag":115,"props":10369,"children":10370},{},[10371],{"type":50,"tag":76,"props":10372,"children":10374},{"className":10373},[],[10375],{"type":55,"value":10376},"muteAll()",{"type":50,"tag":115,"props":10378,"children":10379},{},[10380],{"type":55,"value":10381},"5 seconds",{"type":50,"tag":64,"props":10383,"children":10385},{"id":10384},"dom-elements",[10386],{"type":55,"value":10387},"DOM Elements",{"type":50,"tag":58,"props":10389,"children":10390},{},[10391],{"type":55,"value":10392},"The SDK automatically adds these elements:",{"type":50,"tag":10394,"props":10395,"children":10396},"ul",{},[10397,10409],{"type":50,"tag":10398,"props":10399,"children":10400},"li",{},[10401,10407],{"type":50,"tag":76,"props":10402,"children":10404},{"className":10403},[],[10405],{"type":55,"value":10406},"#zmmtg-root",{"type":55,"value":10408}," - Main meeting container",{"type":50,"tag":10398,"props":10410,"children":10411},{},[10412,10418],{"type":50,"tag":76,"props":10413,"children":10415},{"className":10414},[],[10416],{"type":55,"value":10417},"#aria-notify-area",{"type":55,"value":10419}," - Accessibility announcements",{"type":50,"tag":58,"props":10421,"children":10422},{},[10423],{"type":55,"value":10424},"Do NOT manually create or remove these.",{"type":50,"tag":231,"props":10426,"children":10428},{"id":10427},"spa-reactnext-overlay-gotcha",[10429],{"type":55,"value":10430},"SPA (React\u002FNext) Overlay Gotcha",{"type":50,"tag":58,"props":10432,"children":10433},{},[10434,10436,10441,10443,10448],{"type":55,"value":10435},"If you \"join\" but see a blank\u002Fblack area or your app shell instead of the meeting UI, the Zoom UI can be rendering ",{"type":50,"tag":119,"props":10437,"children":10438},{},[10439],{"type":55,"value":10440},"behind",{"type":55,"value":10442}," your app layout. Ensure ",{"type":50,"tag":76,"props":10444,"children":10446},{"className":10445},[],[10447],{"type":55,"value":10406},{"type":55,"value":10449}," occupies the viewport and is above other fixed elements:",{"type":50,"tag":238,"props":10451,"children":10455},{"className":10452,"code":10453,"language":10454,"meta":243,"style":243},"language-css shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","#zmmtg-root {\n  position: fixed !important;\n  inset: 0 !important;\n  z-index: 9999 !important;\n}\n","css",[10456],{"type":50,"tag":76,"props":10457,"children":10458},{"__ignoreMap":243},[10459,10476,10503,10528,10553],{"type":50,"tag":249,"props":10460,"children":10461},{"class":251,"line":252},[10462,10467,10472],{"type":50,"tag":249,"props":10463,"children":10464},{"style":295},[10465],{"type":55,"value":10466},"#",{"type":50,"tag":249,"props":10468,"children":10469},{"style":7572},[10470],{"type":55,"value":10471},"zmmtg-root",{"type":50,"tag":249,"props":10473,"children":10474},{"style":295},[10475],{"type":55,"value":917},{"type":50,"tag":249,"props":10477,"children":10478},{"class":251,"line":405},[10479,10485,10489,10494,10499],{"type":50,"tag":249,"props":10480,"children":10482},{"style":10481},"--shiki-light:#8796B0;--shiki-default:#B2CCD6;--shiki-dark:#B2CCD6",[10483],{"type":55,"value":10484},"  position",{"type":50,"tag":249,"props":10486,"children":10487},{"style":295},[10488],{"type":55,"value":976},{"type":50,"tag":249,"props":10490,"children":10491},{"style":301},[10492],{"type":55,"value":10493}," fixed ",{"type":50,"tag":249,"props":10495,"children":10496},{"style":7572},[10497],{"type":55,"value":10498},"!important",{"type":50,"tag":249,"props":10500,"children":10501},{"style":295},[10502],{"type":55,"value":334},{"type":50,"tag":249,"props":10504,"children":10505},{"class":251,"line":450},[10506,10511,10515,10519,10524],{"type":50,"tag":249,"props":10507,"children":10508},{"style":10481},[10509],{"type":55,"value":10510},"  inset",{"type":50,"tag":249,"props":10512,"children":10513},{"style":295},[10514],{"type":55,"value":976},{"type":50,"tag":249,"props":10516,"children":10517},{"style":7572},[10518],{"type":55,"value":7575},{"type":50,"tag":249,"props":10520,"children":10521},{"style":7572},[10522],{"type":55,"value":10523}," !important",{"type":50,"tag":249,"props":10525,"children":10526},{"style":295},[10527],{"type":55,"value":334},{"type":50,"tag":249,"props":10529,"children":10530},{"class":251,"line":495},[10531,10536,10540,10545,10549],{"type":50,"tag":249,"props":10532,"children":10533},{"style":10481},[10534],{"type":55,"value":10535},"  z-index",{"type":50,"tag":249,"props":10537,"children":10538},{"style":295},[10539],{"type":55,"value":976},{"type":50,"tag":249,"props":10541,"children":10542},{"style":7572},[10543],{"type":55,"value":10544}," 9999",{"type":50,"tag":249,"props":10546,"children":10547},{"style":7572},[10548],{"type":55,"value":10523},{"type":50,"tag":249,"props":10550,"children":10551},{"style":295},[10552],{"type":55,"value":334},{"type":50,"tag":249,"props":10554,"children":10555},{"class":251,"line":540},[10556],{"type":50,"tag":249,"props":10557,"children":10558},{"style":295},[10559],{"type":55,"value":10560},"}\n",{"type":50,"tag":231,"props":10562,"children":10564},{"id":10563},"join-payload-sanitization-gotcha",[10565],{"type":55,"value":10566},"Join Payload Sanitization Gotcha",{"type":50,"tag":58,"props":10568,"children":10569},{},[10570,10572,10578,10580,10586],{"type":55,"value":10571},"If ",{"type":50,"tag":76,"props":10573,"children":10575},{"className":10574},[],[10576],{"type":55,"value":10577},"ZoomMtg.join()",{"type":55,"value":10579}," succeeds partially but the screen turns black and console shows errors like ",{"type":50,"tag":76,"props":10581,"children":10583},{"className":10582},[],[10584],{"type":55,"value":10585},"Cannot read properties of undefined (reading 'toString')",{"type":55,"value":10587},", sanitize optional fields before calling join.",{"type":50,"tag":58,"props":10589,"children":10590},{},[10591,10593,10599,10601,10606,10607,10612,10613,10618],{"type":55,"value":10592},"Do not pass optional keys with ",{"type":50,"tag":76,"props":10594,"children":10596},{"className":10595},[],[10597],{"type":55,"value":10598},"undefined",{"type":55,"value":10600}," values (",{"type":50,"tag":76,"props":10602,"children":10604},{"className":10603},[],[10605],{"type":55,"value":1648},{"type":55,"value":2609},{"type":50,"tag":76,"props":10608,"children":10610},{"className":10609},[],[10611],{"type":55,"value":1696},{"type":55,"value":2609},{"type":50,"tag":76,"props":10614,"children":10616},{"className":10615},[],[10617],{"type":55,"value":1742},{"type":55,"value":10619},", etc.). Build a payload and only attach those keys when they are non-empty strings.",{"type":50,"tag":58,"props":10621,"children":10622},{},[10623,10625,10631,10633,10639],{"type":55,"value":10624},"Also prefer ",{"type":50,"tag":76,"props":10626,"children":10628},{"className":10627},[],[10629],{"type":55,"value":10630},"defaultView: 'speaker'",{"type":55,"value":10632}," during ",{"type":50,"tag":76,"props":10634,"children":10636},{"className":10635},[],[10637],{"type":55,"value":10638},"ZoomMtg.init()",{"type":55,"value":10640}," unless you have SharedArrayBuffer\u002Fgallery-view prerequisites fully configured.",{"type":50,"tag":64,"props":10642,"children":10644},{"id":10643},"resources",[10645],{"type":55,"value":10646},"Resources",{"type":50,"tag":10394,"props":10648,"children":10649},{},[10650,10660,10669,10678,10687,10696],{"type":50,"tag":10398,"props":10651,"children":10652},{},[10653],{"type":50,"tag":10654,"props":10655,"children":10657},"a",{"href":10656},"..\u002FSKILL.md",[10658],{"type":55,"value":10659},"Main Web SDK Skill",{"type":50,"tag":10398,"props":10661,"children":10662},{},[10663],{"type":50,"tag":10654,"props":10664,"children":10666},{"href":10665},"references\u002FREADME.md",[10667],{"type":55,"value":10668},"Reference Index",{"type":50,"tag":10398,"props":10670,"children":10671},{},[10672],{"type":50,"tag":10654,"props":10673,"children":10675},{"href":10674},"..\u002Ftroubleshooting\u002Ferror-codes.md",[10676],{"type":55,"value":10677},"Error Codes",{"type":50,"tag":10398,"props":10679,"children":10680},{},[10681],{"type":50,"tag":10654,"props":10682,"children":10684},{"href":10683},"..\u002Ftroubleshooting\u002Fcommon-issues.md",[10685],{"type":55,"value":10686},"Common Issues",{"type":50,"tag":10398,"props":10688,"children":10689},{},[10690],{"type":50,"tag":10654,"props":10691,"children":10693},{"href":10692},"..\u002Fconcepts\u002Fsharedarraybuffer.md",[10694],{"type":55,"value":10695},"SharedArrayBuffer Setup",{"type":50,"tag":10398,"props":10697,"children":10698},{},[10699],{"type":50,"tag":10654,"props":10700,"children":10704},{"href":10701,"rel":10702},"https:\u002F\u002Fmarketplacefront.zoom.us\u002Fsdk\u002Fmeeting\u002Fweb\u002Findex.html",[10703],"nofollow",[10705],{"type":55,"value":10706},"Official API Reference",{"type":50,"tag":64,"props":10708,"children":10710},{"id":10709},"operations",[10711],{"type":55,"value":10712},"Operations",{"type":50,"tag":10394,"props":10714,"children":10715},{},[10716],{"type":50,"tag":10398,"props":10717,"children":10718},{},[10719,10724],{"type":50,"tag":10654,"props":10720,"children":10722},{"href":10721},"RUNBOOK.md",[10723],{"type":55,"value":10721},{"type":55,"value":10725}," - 5-minute preflight and debugging checklist.",{"type":50,"tag":10727,"props":10728,"children":10729},"style",{},[10730],{"type":55,"value":10731},"html .light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html.light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html .default .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}html.dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}",{"items":10733,"total":10850},[10734,10750,10766,10782,10800,10819,10835],{"slug":10735,"name":10735,"fn":10736,"description":10737,"org":10738,"tags":10739,"stars":26,"repoUrl":27,"updatedAt":10749},"accessibility-review","run WCAG accessibility audits","Run a WCAG 2.1 AA accessibility audit on a design or page. Trigger with \"audit accessibility\", \"check a11y\", \"is this accessible?\", or when reviewing a design for color contrast, keyboard navigation, touch target size, or screen reader behavior before handoff.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[10740,10743,10746],{"name":10741,"slug":10742,"type":16},"Accessibility","accessibility",{"name":10744,"slug":10745,"type":16},"Design","design",{"name":10747,"slug":10748,"type":16},"WCAG","wcag","2026-04-06T17:58:05.682394",{"slug":10751,"name":10751,"fn":10752,"description":10753,"org":10754,"tags":10755,"stars":26,"repoUrl":27,"updatedAt":10765},"account-research","research accounts for sales intel","Research a company or person and get actionable sales intel. Works standalone with web search, supercharged when you connect enrichment tools or your CRM. Trigger with \"research [company]\", \"look up [person]\", \"intel on [prospect]\", \"who is [name] at [company]\", or \"tell me about [company]\".",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[10756,10759,10762],{"name":10757,"slug":10758,"type":16},"CRM","crm",{"name":10760,"slug":10761,"type":16},"Research","research",{"name":10763,"slug":10764,"type":16},"Sales","sales","2026-04-06T17:56:41.410418",{"slug":10767,"name":10767,"fn":10768,"description":10769,"org":10770,"tags":10771,"stars":26,"repoUrl":27,"updatedAt":10781},"analyze","answer data questions and run analyses","Answer data questions -- from quick lookups to full analyses. Use when looking up a single metric, investigating what's driving a trend or drop, comparing segments over time, or preparing a formal data report for stakeholders.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[10772,10775,10778],{"name":10773,"slug":10774,"type":16},"Analytics","analytics",{"name":10776,"slug":10777,"type":16},"Data Analysis","data-analysis",{"name":10779,"slug":10780,"type":16},"SQL","sql","2026-04-06T17:57:21.593647",{"slug":10783,"name":10783,"fn":10784,"description":10785,"org":10786,"tags":10787,"stars":26,"repoUrl":27,"updatedAt":10799},"architecture","create and evaluate architecture decision records","Create or evaluate an architecture decision record (ADR). Use when choosing between technologies (e.g., Kafka vs SQS), documenting a design decision with trade-offs and consequences, reviewing a system design proposal, or designing a new component from requirements and constraints.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[10788,10791,10793,10796],{"name":10789,"slug":10790,"type":16},"ADR","adr",{"name":10792,"slug":10783,"type":16},"Architecture",{"name":10794,"slug":10795,"type":16},"Documentation","documentation",{"name":10797,"slug":10798,"type":16},"Engineering","engineering","2026-04-06T17:57:49.26444",{"slug":10801,"name":10801,"fn":10802,"description":10803,"org":10804,"tags":10805,"stars":26,"repoUrl":27,"updatedAt":10818},"audit-support","support SOX 404 control testing","Support SOX 404 compliance with control testing methodology, sample selection, and documentation standards. Use when generating testing workpapers, selecting audit samples, classifying control deficiencies, or preparing for internal or external audits.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[10806,10809,10812,10815],{"name":10807,"slug":10808,"type":16},"Audit","audit",{"name":10810,"slug":10811,"type":16},"Finance","finance",{"name":10813,"slug":10814,"type":16},"Regulatory Compliance","regulatory-compliance",{"name":10816,"slug":10817,"type":16},"SOX","sox","2026-04-06T17:57:36.714815",{"slug":10820,"name":10820,"fn":10821,"description":10822,"org":10823,"tags":10824,"stars":26,"repoUrl":27,"updatedAt":10834},"brand-review","review content against brand voice","Review content against your brand voice, style guide, and messaging pillars, flagging deviations by severity with specific before\u002Fafter fixes. Use when checking a draft before it ships, when auditing copy for voice consistency and terminology, or when screening for unsubstantiated claims, missing disclaimers, and other legal flags.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[10825,10828,10831],{"name":10826,"slug":10827,"type":16},"Branding","branding",{"name":10829,"slug":10830,"type":16},"Marketing","marketing",{"name":10832,"slug":10833,"type":16},"Writing","writing","2026-04-06T17:58:19.548331",{"slug":10836,"name":10836,"fn":10837,"description":10838,"org":10839,"tags":10840,"stars":26,"repoUrl":27,"updatedAt":10849},"brand-voice-enforcement","enforce brand voice in content","This skill applies brand guidelines to content creation. It should be used when the user asks to \"write an email\", \"draft a proposal\", \"create a pitch deck\", \"write a LinkedIn post\", \"draft a presentation\", \"write a Slack message\", \"draft sales content\", or any content creation request where brand voice should be applied. Also triggers on \"on-brand\", \"brand voice\", \"enforce voice\", \"apply brand guidelines\", \"brand-aligned content\", \"write in our voice\", \"use our brand tone\", \"make this sound like us\", \"rewrite this in our tone\", or \"this doesn't sound on-brand\". Not for generating guidelines from scratch (use guideline-generation) or discovering brand materials (use discover-brand).\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[10841,10842,10845,10848],{"name":10826,"slug":10827,"type":16},{"name":10843,"slug":10844,"type":16},"Communications","communications",{"name":10846,"slug":10847,"type":16},"Content Creation","content-creation",{"name":10832,"slug":10833,"type":16},"2026-04-06T18:00:23.528956",200,{"items":10852,"total":11026},[10853,10871,10883,10895,10914,10925,10946,10964,10974,10989,10997,11010],{"slug":10854,"name":10854,"fn":10855,"description":10856,"org":10857,"tags":10858,"stars":10868,"repoUrl":10869,"updatedAt":10870},"algorithmic-art","create algorithmic art with p5.js","Creating algorithmic art using p5.js with seeded randomness and interactive parameter exploration. Use this when users request creating art using code, generative art, algorithmic art, flow fields, or particle systems. Create original algorithmic art rather than copying existing artists' work to avoid copyright violations.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[10859,10862,10863,10866],{"name":10860,"slug":10861,"type":16},"Creative","creative",{"name":10744,"slug":10745,"type":16},{"name":10864,"slug":10865,"type":16},"Generative Art","generative-art",{"name":10867,"slug":279,"type":16},"JavaScript",161831,"https:\u002F\u002Fgithub.com\u002Fanthropics\u002Fskills","2026-04-06T17:56:15.455818",{"slug":10872,"name":10872,"fn":10873,"description":10874,"org":10875,"tags":10876,"stars":10868,"repoUrl":10869,"updatedAt":10882},"brand-guidelines","apply Anthropic brand colors and typography","Applies Anthropic's official brand colors and typography to any sort of artifact that may benefit from having Anthropic's look-and-feel. Use it when brand colors or style guidelines, visual formatting, or company design standards apply.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[10877,10878,10879],{"name":10826,"slug":10827,"type":16},{"name":10744,"slug":10745,"type":16},{"name":10880,"slug":10881,"type":16},"Typography","typography","2026-04-06T17:56:05.042852",{"slug":10884,"name":10884,"fn":10885,"description":10886,"org":10887,"tags":10888,"stars":10868,"repoUrl":10869,"updatedAt":10894},"canvas-design","create posters and visual art as PNG or PDF","Create beautiful visual art in .png and .pdf documents using design philosophy. You should use this skill when the user asks to create a poster, piece of art, design, or other static piece. Create original visual designs, never copying existing artists' work to avoid copyright violations.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[10889,10890,10891],{"name":10860,"slug":10861,"type":16},{"name":10744,"slug":10745,"type":16},{"name":10892,"slug":10893,"type":16},"PDF","pdf","2026-04-06T17:56:03.794732",{"slug":10896,"name":10896,"fn":10897,"description":10898,"org":10899,"tags":10900,"stars":10868,"repoUrl":10869,"updatedAt":10913},"claude-api","build apps with the Claude API","Reference for the Claude API \u002F Anthropic SDK — model ids, pricing, params, streaming, tool use, MCP, agents, caching, token counting, model migration.\nTRIGGER — read BEFORE opening the target file; don't skip because it \"looks like a one-liner\" — whenever: the prompt names Claude\u002FAnthropic in any form (Claude, Anthropic, Fable, Opus, Sonnet, Haiku, `anthropic`, `@anthropic-ai`, `claude-*`, `us.anthropic.*`, `[1m]`); the user asks about an LLM (pricing\u002Fmodel choice\u002Flimits\u002Fcaching) — never answer from memory; OR the task is LLM-shaped with provider unstated (agent\u002FMCP\u002Ftool-definition\u002Fmulti-agent\u002FRAG\u002FLLM-judge\u002Fcomputer-use; generate\u002Fsummarize\u002Fextract\u002Fclassify\u002Frewrite\u002Fconverse over NL; debugging refusals\u002Fcutoffs\u002Fstreaming\u002Ftool-calls\u002Ftokens).\nSKIP only when another provider is being worked on (overrides all triggers): OpenAI\u002FGPT\u002FGemini\u002FLlama\u002FMistral\u002FCohere\u002FOllama named in the query; OR `grep -rE 'openai|langchain_openai|google.generativeai|genai|mistralai|cohere|ollama'` over the project hits (run this grep FIRST if no provider named — don't Read the file).",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[10901,10904,10905,10908,10910],{"name":10902,"slug":10903,"type":16},"Agents","agents",{"name":9,"slug":8,"type":16},{"name":10906,"slug":10907,"type":16},"Anthropic SDK","anthropic-sdk",{"name":10909,"slug":10896,"type":16},"Claude API",{"name":10911,"slug":10912,"type":16},"LLM","llm","2026-07-28T05:36:08.213335",{"slug":10915,"name":10915,"fn":10916,"description":10917,"org":10918,"tags":10919,"stars":10868,"repoUrl":10869,"updatedAt":10924},"doc-coauthoring","co-author documentation and technical specs","Guide users through a structured workflow for co-authoring documentation. Use when user wants to write documentation, proposals, technical specs, decision docs, or similar structured content. This workflow helps users efficiently transfer context, refine content through iteration, and verify the doc works for readers. Trigger when user mentions writing docs, creating proposals, drafting specs, or similar documentation tasks.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[10920,10921],{"name":10794,"slug":10795,"type":16},{"name":10922,"slug":10923,"type":16},"Technical Writing","technical-writing","2026-04-06T17:56:14.18897",{"slug":10926,"name":10926,"fn":10927,"description":10928,"org":10929,"tags":10930,"stars":10868,"repoUrl":10869,"updatedAt":10945},"docx","create and edit Word documents","Use this skill whenever the user wants to create, read, edit, or manipulate Word documents (.docx files) or Word templates (.dotx files). Triggers include: any mention of 'Word doc', 'word document', '.docx', '.dotx', or requests to produce professional documents with formatting like tables of contents, headings, page numbers, or letterheads. Also use when extracting or reorganizing content from .docx or .dotx files, inserting or replacing images in documents, performing find-and-replace in Word files, working with tracked changes or comments, or converting content into a polished Word document. If the user asks for a 'report', 'memo', 'letter', 'template', or similar deliverable as a Word or .docx file, use this skill. Do NOT use for PDFs, spreadsheets, Google Docs, or general coding tasks unrelated to document generation.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[10931,10934,10936,10939,10942],{"name":10932,"slug":10933,"type":16},"Documents","documents",{"name":10935,"slug":10926,"type":16},"DOCX",{"name":10937,"slug":10938,"type":16},"Office","office",{"name":10940,"slug":10941,"type":16},"Templates","templates",{"name":10943,"slug":10944,"type":16},"Word","word","2026-07-18T05:16:23.136271",{"slug":10947,"name":10947,"fn":10948,"description":10949,"org":10950,"tags":10951,"stars":10868,"repoUrl":10869,"updatedAt":10963},"frontend-design","design production-grade frontend interfaces","Guidance for distinctive, intentional visual design when building new UI or reshaping an existing one. Helps with aesthetic direction, typography, and making choices that don't read as templated defaults.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[10952,10953,10954,10957,10960],{"name":10744,"slug":10745,"type":16},{"name":24,"slug":25,"type":16},{"name":10955,"slug":10956,"type":16},"React","react",{"name":10958,"slug":10959,"type":16},"Tailwind CSS","tailwind-css",{"name":10961,"slug":10962,"type":16},"UI Components","ui-components","2026-04-06T17:56:16.723469",{"slug":10965,"name":10965,"fn":10966,"description":10967,"org":10968,"tags":10969,"stars":10868,"repoUrl":10869,"updatedAt":10973},"internal-comms","write internal company communications","A set of resources to help me write all kinds of internal communications, using the formats that my company likes to use. Claude should use this skill whenever asked to write some sort of internal communications (status reports, leadership updates, 3P updates, company newsletters, FAQs, incident reports, project updates, etc.).",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[10970,10971,10972],{"name":10843,"slug":10844,"type":16},{"name":10940,"slug":10941,"type":16},{"name":10832,"slug":10833,"type":16},"2026-04-06T17:56:20.695522",{"slug":10975,"name":10975,"fn":10976,"description":10977,"org":10978,"tags":10979,"stars":10868,"repoUrl":10869,"updatedAt":10988},"mcp-builder","build MCP servers","Guide for creating high-quality MCP (Model Context Protocol) servers that enable LLMs to interact with external services through well-designed tools. Use when building MCP servers to integrate external APIs or services, whether in Python (FastMCP) or Node\u002FTypeScript (MCP SDK).",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[10980,10981,10984,10985],{"name":10902,"slug":10903,"type":16},{"name":10982,"slug":10983,"type":16},"API Development","api-development",{"name":10911,"slug":10912,"type":16},{"name":10986,"slug":10987,"type":16},"MCP","mcp","2026-04-06T17:56:10.357665",{"slug":10893,"name":10893,"fn":10990,"description":10991,"org":10992,"tags":10993,"stars":10868,"repoUrl":10869,"updatedAt":10996},"read edit and manipulate PDF files","Use this skill whenever the user wants to do anything with PDF files. This includes reading or extracting text\u002Ftables from PDFs, combining or merging multiple PDFs into one, splitting PDFs apart, rotating pages, adding watermarks, creating new PDFs, filling PDF forms, encrypting\u002Fdecrypting PDFs, extracting images, and OCR on scanned PDFs to make them searchable. If the user mentions a .pdf file or asks to produce one, use this skill.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[10994,10995],{"name":10932,"slug":10933,"type":16},{"name":10892,"slug":10893,"type":16},"2026-04-06T17:56:02.483316",{"slug":10998,"name":10998,"fn":10999,"description":11000,"org":11001,"tags":11002,"stars":10868,"repoUrl":10869,"updatedAt":11009},"pptx","create and edit PowerPoint presentations","Use this skill any time a .pptx or .potx file is involved in any way — as input, output, or both. This includes: creating slide decks, pitch decks, or presentations; reading, parsing, or extracting text from any .pptx or .potx file (even if the extracted content will be used elsewhere, like in an email or summary); editing, modifying, or updating existing presentations; combining or splitting slide files; working with templates (.potx), layouts, speaker notes, or comments. Trigger whenever the user mentions \"deck,\" \"slides,\" \"presentation,\" or references a .pptx or .potx filename, regardless of what they plan to do with the content afterward. If a .pptx or .potx file needs to be opened, created, or touched, use this skill.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[11003,11006],{"name":11004,"slug":11005,"type":16},"PowerPoint","powerpoint",{"name":11007,"slug":11008,"type":16},"Presentations","presentations","2026-07-18T05:16:24.1471",{"slug":11011,"name":11011,"fn":11012,"description":11013,"org":11014,"tags":11015,"stars":10868,"repoUrl":10869,"updatedAt":11025},"skill-creator","create and optimize agent skills","Create new skills, modify and improve existing skills, and measure skill performance. Use when users want to create a skill from scratch, edit, or optimize an existing skill, run evals to test a skill, benchmark skill performance with variance analysis, or optimize a skill's description for better triggering accuracy.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[11016,11017,11018,11021,11024],{"name":10902,"slug":10903,"type":16},{"name":10794,"slug":10795,"type":16},{"name":11019,"slug":11020,"type":16},"Evals","evals",{"name":11022,"slug":11023,"type":16},"Performance","performance",{"name":10922,"slug":10923,"type":16},"2026-04-19T06:45:40.804",490]