[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-openai-zoom-meeting-sdk-web-client-view":3,"mdc--6oddzx-key":36,"related-org-openai-zoom-meeting-sdk-web-client-view":10722,"related-repo-openai-zoom-meeting-sdk-web-client-view":10927},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":11,"stars":25,"repoUrl":26,"updatedAt":27,"license":28,"forks":29,"topics":30,"repo":31,"sourceUrl":34,"mdContent":35},"zoom-meeting-sdk-web-client-view","integrate Zoom Meeting SDK web client","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":8},"openai","OpenAI","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fopenai.png",[12,16,19,22],{"name":13,"slug":14,"type":15},"Web Development","web-development","tag",{"name":17,"slug":18,"type":15},"Meetings","meetings",{"name":20,"slug":21,"type":15},"SDK","sdk",{"name":23,"slug":24,"type":15},"Zoom","zoom",3992,"https:\u002F\u002Fgithub.com\u002Fopenai\u002Fplugins","2026-06-30T19:00:57.102",null,465,[],{"repoUrl":26,"stars":25,"forks":29,"topics":32,"description":33},[],"OpenAI Plugins","https:\u002F\u002Fgithub.com\u002Fopenai\u002Fplugins\u002Ftree\u002FHEAD\u002Fplugins\u002Fzoom\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.\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\u002Findex.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":37,"body":38},{"name":4,"description":6},{"type":39,"children":40},"root",[41,49,55,62,76,216,222,229,267,327,333,620,626,1917,1923,1929,1982,1988,2612,2618,2976,2982,3078,3084,3473,3479,3553,3559,3564,3688,3694,3840,3846,3920,3925,3997,4003,4009,4605,4611,4754,4760,5288,5294,5672,5678,6056,6062,6196,6202,6832,6838,6844,7202,7208,7474,7480,7586,7592,7750,7756,8216,8222,8380,8386,8621,8627,8730,8736,8869,8874,9367,9373,9722,9728,10052,10058,10277,10283,10372,10378,10383,10410,10415,10421,10440,10551,10557,10578,10610,10631,10637,10697,10703,10716],{"type":42,"tag":43,"props":44,"children":45},"element","h1",{"id":4},[46],{"type":47,"value":48},"text","Zoom Meeting SDK Web - Client View",{"type":42,"tag":50,"props":51,"children":52},"p",{},[53],{"type":47,"value":54},"Full-page Zoom meeting experience embedded in your web application. Client View provides the familiar Zoom interface with minimal customization needed.",{"type":42,"tag":56,"props":57,"children":59},"h2",{"id":58},"overview",[60],{"type":47,"value":61},"Overview",{"type":42,"tag":50,"props":63,"children":64},{},[65,67,74],{"type":47,"value":66},"Client View uses the ",{"type":42,"tag":68,"props":69,"children":71},"code",{"className":70},[],[72],{"type":47,"value":73},"ZoomMtg",{"type":47,"value":75}," global singleton to render a full-page meeting experience identical to the Zoom Web Client.",{"type":42,"tag":77,"props":78,"children":79},"table",{},[80,99],{"type":42,"tag":81,"props":82,"children":83},"thead",{},[84],{"type":42,"tag":85,"props":86,"children":87},"tr",{},[88,94],{"type":42,"tag":89,"props":90,"children":91},"th",{},[92],{"type":47,"value":93},"Aspect",{"type":42,"tag":89,"props":95,"children":96},{},[97],{"type":47,"value":98},"Details",{"type":42,"tag":100,"props":101,"children":102},"tbody",{},[103,126,142,158,180,200],{"type":42,"tag":85,"props":104,"children":105},{},[106,116],{"type":42,"tag":107,"props":108,"children":109},"td",{},[110],{"type":42,"tag":111,"props":112,"children":113},"strong",{},[114],{"type":47,"value":115},"API Object",{"type":42,"tag":107,"props":117,"children":118},{},[119,124],{"type":42,"tag":68,"props":120,"children":122},{"className":121},[],[123],{"type":47,"value":73},{"type":47,"value":125}," (global singleton)",{"type":42,"tag":85,"props":127,"children":128},{},[129,137],{"type":42,"tag":107,"props":130,"children":131},{},[132],{"type":42,"tag":111,"props":133,"children":134},{},[135],{"type":47,"value":136},"API Style",{"type":42,"tag":107,"props":138,"children":139},{},[140],{"type":47,"value":141},"Callback-based",{"type":42,"tag":85,"props":143,"children":144},{},[145,153],{"type":42,"tag":107,"props":146,"children":147},{},[148],{"type":42,"tag":111,"props":149,"children":150},{},[151],{"type":47,"value":152},"UI",{"type":42,"tag":107,"props":154,"children":155},{},[156],{"type":47,"value":157},"Full-page takeover",{"type":42,"tag":85,"props":159,"children":160},{},[161,169],{"type":42,"tag":107,"props":162,"children":163},{},[164],{"type":42,"tag":111,"props":165,"children":166},{},[167],{"type":47,"value":168},"Password param",{"type":42,"tag":107,"props":170,"children":171},{},[172,178],{"type":42,"tag":68,"props":173,"children":175},{"className":174},[],[176],{"type":47,"value":177},"passWord",{"type":47,"value":179}," (capital W)",{"type":42,"tag":85,"props":181,"children":182},{},[183,191],{"type":42,"tag":107,"props":184,"children":185},{},[186],{"type":42,"tag":111,"props":187,"children":188},{},[189],{"type":47,"value":190},"Events",{"type":42,"tag":107,"props":192,"children":193},{},[194],{"type":42,"tag":68,"props":195,"children":197},{"className":196},[],[198],{"type":47,"value":199},"inMeetingServiceListener()",{"type":42,"tag":85,"props":201,"children":202},{},[203,211],{"type":42,"tag":107,"props":204,"children":205},{},[206],{"type":42,"tag":111,"props":207,"children":208},{},[209],{"type":47,"value":210},"Best For",{"type":42,"tag":107,"props":212,"children":213},{},[214],{"type":47,"value":215},"Quick integration, standard Zoom UI",{"type":42,"tag":56,"props":217,"children":219},{"id":218},"installation",[220],{"type":47,"value":221},"Installation",{"type":42,"tag":223,"props":224,"children":226},"h3",{"id":225},"npm",[227],{"type":47,"value":228},"NPM",{"type":42,"tag":230,"props":231,"children":236},"pre",{"className":232,"code":233,"language":234,"meta":235,"style":235},"language-bash shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","npm install @zoom\u002Fmeetingsdk --save\n","bash","",[237],{"type":42,"tag":68,"props":238,"children":239},{"__ignoreMap":235},[240],{"type":42,"tag":241,"props":242,"children":245},"span",{"class":243,"line":244},"line",1,[246,251,257,262],{"type":42,"tag":241,"props":247,"children":249},{"style":248},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[250],{"type":47,"value":225},{"type":42,"tag":241,"props":252,"children":254},{"style":253},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[255],{"type":47,"value":256}," install",{"type":42,"tag":241,"props":258,"children":259},{"style":253},[260],{"type":47,"value":261}," @zoom\u002Fmeetingsdk",{"type":42,"tag":241,"props":263,"children":264},{"style":253},[265],{"type":47,"value":266}," --save\n",{"type":42,"tag":230,"props":268,"children":272},{"className":269,"code":270,"language":271,"meta":235,"style":235},"language-javascript shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","import { ZoomMtg } from '@zoom\u002Fmeetingsdk';\n","javascript",[273],{"type":42,"tag":68,"props":274,"children":275},{"__ignoreMap":235},[276],{"type":42,"tag":241,"props":277,"children":278},{"class":243,"line":244},[279,285,291,297,302,307,312,317,322],{"type":42,"tag":241,"props":280,"children":282},{"style":281},"--shiki-light:#39ADB5;--shiki-light-font-style:italic;--shiki-default:#89DDFF;--shiki-default-font-style:italic;--shiki-dark:#89DDFF;--shiki-dark-font-style:italic",[283],{"type":47,"value":284},"import",{"type":42,"tag":241,"props":286,"children":288},{"style":287},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[289],{"type":47,"value":290}," {",{"type":42,"tag":241,"props":292,"children":294},{"style":293},"--shiki-light:#90A4AE;--shiki-default:#EEFFFF;--shiki-dark:#BABED8",[295],{"type":47,"value":296}," ZoomMtg",{"type":42,"tag":241,"props":298,"children":299},{"style":287},[300],{"type":47,"value":301}," }",{"type":42,"tag":241,"props":303,"children":304},{"style":281},[305],{"type":47,"value":306}," from",{"type":42,"tag":241,"props":308,"children":309},{"style":287},[310],{"type":47,"value":311}," '",{"type":42,"tag":241,"props":313,"children":314},{"style":253},[315],{"type":47,"value":316},"@zoom\u002Fmeetingsdk",{"type":42,"tag":241,"props":318,"children":319},{"style":287},[320],{"type":47,"value":321},"'",{"type":42,"tag":241,"props":323,"children":324},{"style":287},[325],{"type":47,"value":326},";\n",{"type":42,"tag":223,"props":328,"children":330},{"id":329},"cdn",[331],{"type":47,"value":332},"CDN",{"type":42,"tag":230,"props":334,"children":338},{"className":335,"code":336,"language":337,"meta":235,"style":235},"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",[339],{"type":42,"tag":68,"props":340,"children":341},{"__ignoreMap":235},[342,395,440,485,530,575],{"type":42,"tag":241,"props":343,"children":344},{"class":243,"line":244},[345,350,356,362,367,372,377,381,386,390],{"type":42,"tag":241,"props":346,"children":347},{"style":287},[348],{"type":47,"value":349},"\u003C",{"type":42,"tag":241,"props":351,"children":353},{"style":352},"--shiki-light:#E53935;--shiki-default:#F07178;--shiki-dark:#F07178",[354],{"type":47,"value":355},"script",{"type":42,"tag":241,"props":357,"children":359},{"style":358},"--shiki-light:#9C3EDA;--shiki-default:#C792EA;--shiki-dark:#C792EA",[360],{"type":47,"value":361}," src",{"type":42,"tag":241,"props":363,"children":364},{"style":287},[365],{"type":47,"value":366},"=",{"type":42,"tag":241,"props":368,"children":369},{"style":287},[370],{"type":47,"value":371},"\"",{"type":42,"tag":241,"props":373,"children":374},{"style":253},[375],{"type":47,"value":376},"https:\u002F\u002Fsource.zoom.us\u002F{VERSION}\u002Flib\u002Fvendor\u002Freact.min.js",{"type":42,"tag":241,"props":378,"children":379},{"style":287},[380],{"type":47,"value":371},{"type":42,"tag":241,"props":382,"children":383},{"style":287},[384],{"type":47,"value":385},">\u003C\u002F",{"type":42,"tag":241,"props":387,"children":388},{"style":352},[389],{"type":47,"value":355},{"type":42,"tag":241,"props":391,"children":392},{"style":287},[393],{"type":47,"value":394},">\n",{"type":42,"tag":241,"props":396,"children":398},{"class":243,"line":397},2,[399,403,407,411,415,419,424,428,432,436],{"type":42,"tag":241,"props":400,"children":401},{"style":287},[402],{"type":47,"value":349},{"type":42,"tag":241,"props":404,"children":405},{"style":352},[406],{"type":47,"value":355},{"type":42,"tag":241,"props":408,"children":409},{"style":358},[410],{"type":47,"value":361},{"type":42,"tag":241,"props":412,"children":413},{"style":287},[414],{"type":47,"value":366},{"type":42,"tag":241,"props":416,"children":417},{"style":287},[418],{"type":47,"value":371},{"type":42,"tag":241,"props":420,"children":421},{"style":253},[422],{"type":47,"value":423},"https:\u002F\u002Fsource.zoom.us\u002F{VERSION}\u002Flib\u002Fvendor\u002Freact-dom.min.js",{"type":42,"tag":241,"props":425,"children":426},{"style":287},[427],{"type":47,"value":371},{"type":42,"tag":241,"props":429,"children":430},{"style":287},[431],{"type":47,"value":385},{"type":42,"tag":241,"props":433,"children":434},{"style":352},[435],{"type":47,"value":355},{"type":42,"tag":241,"props":437,"children":438},{"style":287},[439],{"type":47,"value":394},{"type":42,"tag":241,"props":441,"children":443},{"class":243,"line":442},3,[444,448,452,456,460,464,469,473,477,481],{"type":42,"tag":241,"props":445,"children":446},{"style":287},[447],{"type":47,"value":349},{"type":42,"tag":241,"props":449,"children":450},{"style":352},[451],{"type":47,"value":355},{"type":42,"tag":241,"props":453,"children":454},{"style":358},[455],{"type":47,"value":361},{"type":42,"tag":241,"props":457,"children":458},{"style":287},[459],{"type":47,"value":366},{"type":42,"tag":241,"props":461,"children":462},{"style":287},[463],{"type":47,"value":371},{"type":42,"tag":241,"props":465,"children":466},{"style":253},[467],{"type":47,"value":468},"https:\u002F\u002Fsource.zoom.us\u002F{VERSION}\u002Flib\u002Fvendor\u002Fredux.min.js",{"type":42,"tag":241,"props":470,"children":471},{"style":287},[472],{"type":47,"value":371},{"type":42,"tag":241,"props":474,"children":475},{"style":287},[476],{"type":47,"value":385},{"type":42,"tag":241,"props":478,"children":479},{"style":352},[480],{"type":47,"value":355},{"type":42,"tag":241,"props":482,"children":483},{"style":287},[484],{"type":47,"value":394},{"type":42,"tag":241,"props":486,"children":488},{"class":243,"line":487},4,[489,493,497,501,505,509,514,518,522,526],{"type":42,"tag":241,"props":490,"children":491},{"style":287},[492],{"type":47,"value":349},{"type":42,"tag":241,"props":494,"children":495},{"style":352},[496],{"type":47,"value":355},{"type":42,"tag":241,"props":498,"children":499},{"style":358},[500],{"type":47,"value":361},{"type":42,"tag":241,"props":502,"children":503},{"style":287},[504],{"type":47,"value":366},{"type":42,"tag":241,"props":506,"children":507},{"style":287},[508],{"type":47,"value":371},{"type":42,"tag":241,"props":510,"children":511},{"style":253},[512],{"type":47,"value":513},"https:\u002F\u002Fsource.zoom.us\u002F{VERSION}\u002Flib\u002Fvendor\u002Fredux-thunk.min.js",{"type":42,"tag":241,"props":515,"children":516},{"style":287},[517],{"type":47,"value":371},{"type":42,"tag":241,"props":519,"children":520},{"style":287},[521],{"type":47,"value":385},{"type":42,"tag":241,"props":523,"children":524},{"style":352},[525],{"type":47,"value":355},{"type":42,"tag":241,"props":527,"children":528},{"style":287},[529],{"type":47,"value":394},{"type":42,"tag":241,"props":531,"children":533},{"class":243,"line":532},5,[534,538,542,546,550,554,559,563,567,571],{"type":42,"tag":241,"props":535,"children":536},{"style":287},[537],{"type":47,"value":349},{"type":42,"tag":241,"props":539,"children":540},{"style":352},[541],{"type":47,"value":355},{"type":42,"tag":241,"props":543,"children":544},{"style":358},[545],{"type":47,"value":361},{"type":42,"tag":241,"props":547,"children":548},{"style":287},[549],{"type":47,"value":366},{"type":42,"tag":241,"props":551,"children":552},{"style":287},[553],{"type":47,"value":371},{"type":42,"tag":241,"props":555,"children":556},{"style":253},[557],{"type":47,"value":558},"https:\u002F\u002Fsource.zoom.us\u002F{VERSION}\u002Flib\u002Fvendor\u002Flodash.min.js",{"type":42,"tag":241,"props":560,"children":561},{"style":287},[562],{"type":47,"value":371},{"type":42,"tag":241,"props":564,"children":565},{"style":287},[566],{"type":47,"value":385},{"type":42,"tag":241,"props":568,"children":569},{"style":352},[570],{"type":47,"value":355},{"type":42,"tag":241,"props":572,"children":573},{"style":287},[574],{"type":47,"value":394},{"type":42,"tag":241,"props":576,"children":578},{"class":243,"line":577},6,[579,583,587,591,595,599,604,608,612,616],{"type":42,"tag":241,"props":580,"children":581},{"style":287},[582],{"type":47,"value":349},{"type":42,"tag":241,"props":584,"children":585},{"style":352},[586],{"type":47,"value":355},{"type":42,"tag":241,"props":588,"children":589},{"style":358},[590],{"type":47,"value":361},{"type":42,"tag":241,"props":592,"children":593},{"style":287},[594],{"type":47,"value":366},{"type":42,"tag":241,"props":596,"children":597},{"style":287},[598],{"type":47,"value":371},{"type":42,"tag":241,"props":600,"children":601},{"style":253},[602],{"type":47,"value":603},"https:\u002F\u002Fsource.zoom.us\u002Fzoom-meeting-{VERSION}.min.js",{"type":42,"tag":241,"props":605,"children":606},{"style":287},[607],{"type":47,"value":371},{"type":42,"tag":241,"props":609,"children":610},{"style":287},[611],{"type":47,"value":385},{"type":42,"tag":241,"props":613,"children":614},{"style":352},[615],{"type":47,"value":355},{"type":42,"tag":241,"props":617,"children":618},{"style":287},[619],{"type":47,"value":394},{"type":42,"tag":56,"props":621,"children":623},{"id":622},"complete-initialization-flow",[624],{"type":47,"value":625},"Complete Initialization Flow",{"type":42,"tag":230,"props":627,"children":629},{"className":269,"code":628,"language":271,"meta":235,"style":235},"\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",[630],{"type":42,"tag":68,"props":631,"children":632},{"__ignoreMap":235},[633,642,706,715,723,731,738,747,773,798,806,815,867,910,918,927,954,986,1009,1045,1071,1113,1121,1130,1153,1175,1197,1219,1241,1277,1319,1327,1336,1371,1396,1487,1504,1513,1586,1595,1603,1612,1621,1670,1716,1762,1770,1804,1813,1883,1900],{"type":42,"tag":241,"props":634,"children":635},{"class":243,"line":244},[636],{"type":42,"tag":241,"props":637,"children":639},{"style":638},"--shiki-light:#90A4AE;--shiki-light-font-style:italic;--shiki-default:#546E7A;--shiki-default-font-style:italic;--shiki-dark:#676E95;--shiki-dark-font-style:italic",[640],{"type":47,"value":641},"\u002F\u002F Step 1: Check browser compatibility\n",{"type":42,"tag":241,"props":643,"children":644},{"class":243,"line":397},[645,650,655,661,666,670,675,679,684,688,692,697,702],{"type":42,"tag":241,"props":646,"children":647},{"style":293},[648],{"type":47,"value":649},"console",{"type":42,"tag":241,"props":651,"children":652},{"style":287},[653],{"type":47,"value":654},".",{"type":42,"tag":241,"props":656,"children":658},{"style":657},"--shiki-light:#6182B8;--shiki-default:#82AAFF;--shiki-dark:#82AAFF",[659],{"type":47,"value":660},"log",{"type":42,"tag":241,"props":662,"children":663},{"style":293},[664],{"type":47,"value":665},"(",{"type":42,"tag":241,"props":667,"children":668},{"style":287},[669],{"type":47,"value":321},{"type":42,"tag":241,"props":671,"children":672},{"style":253},[673],{"type":47,"value":674},"Requirements:",{"type":42,"tag":241,"props":676,"children":677},{"style":287},[678],{"type":47,"value":321},{"type":42,"tag":241,"props":680,"children":681},{"style":287},[682],{"type":47,"value":683},",",{"type":42,"tag":241,"props":685,"children":686},{"style":293},[687],{"type":47,"value":296},{"type":42,"tag":241,"props":689,"children":690},{"style":287},[691],{"type":47,"value":654},{"type":42,"tag":241,"props":693,"children":694},{"style":657},[695],{"type":47,"value":696},"checkSystemRequirements",{"type":42,"tag":241,"props":698,"children":699},{"style":293},[700],{"type":47,"value":701},"())",{"type":42,"tag":241,"props":703,"children":704},{"style":287},[705],{"type":47,"value":326},{"type":42,"tag":241,"props":707,"children":708},{"class":243,"line":442},[709],{"type":42,"tag":241,"props":710,"children":712},{"emptyLinePlaceholder":711},true,[713],{"type":47,"value":714},"\n",{"type":42,"tag":241,"props":716,"children":717},{"class":243,"line":487},[718],{"type":42,"tag":241,"props":719,"children":720},{"style":638},[721],{"type":47,"value":722},"\u002F\u002F Step 2: Set CDN path (optional - for China or custom hosting)\n",{"type":42,"tag":241,"props":724,"children":725},{"class":243,"line":532},[726],{"type":42,"tag":241,"props":727,"children":728},{"style":638},[729],{"type":47,"value":730},"\u002F\u002F ZoomMtg.setZoomJSLib('https:\u002F\u002Fsource.zoom.us\u002F{VERSION}\u002Flib', '\u002Fav');\n",{"type":42,"tag":241,"props":732,"children":733},{"class":243,"line":577},[734],{"type":42,"tag":241,"props":735,"children":736},{"emptyLinePlaceholder":711},[737],{"type":47,"value":714},{"type":42,"tag":241,"props":739,"children":741},{"class":243,"line":740},7,[742],{"type":42,"tag":241,"props":743,"children":744},{"style":638},[745],{"type":47,"value":746},"\u002F\u002F Step 3: Preload WebAssembly modules\n",{"type":42,"tag":241,"props":748,"children":750},{"class":243,"line":749},8,[751,755,759,764,769],{"type":42,"tag":241,"props":752,"children":753},{"style":293},[754],{"type":47,"value":73},{"type":42,"tag":241,"props":756,"children":757},{"style":287},[758],{"type":47,"value":654},{"type":42,"tag":241,"props":760,"children":761},{"style":657},[762],{"type":47,"value":763},"preLoadWasm",{"type":42,"tag":241,"props":765,"children":766},{"style":293},[767],{"type":47,"value":768},"()",{"type":42,"tag":241,"props":770,"children":771},{"style":287},[772],{"type":47,"value":326},{"type":42,"tag":241,"props":774,"children":776},{"class":243,"line":775},9,[777,781,785,790,794],{"type":42,"tag":241,"props":778,"children":779},{"style":293},[780],{"type":47,"value":73},{"type":42,"tag":241,"props":782,"children":783},{"style":287},[784],{"type":47,"value":654},{"type":42,"tag":241,"props":786,"children":787},{"style":657},[788],{"type":47,"value":789},"prepareWebSDK",{"type":42,"tag":241,"props":791,"children":792},{"style":293},[793],{"type":47,"value":768},{"type":42,"tag":241,"props":795,"children":796},{"style":287},[797],{"type":47,"value":326},{"type":42,"tag":241,"props":799,"children":801},{"class":243,"line":800},10,[802],{"type":42,"tag":241,"props":803,"children":804},{"emptyLinePlaceholder":711},[805],{"type":47,"value":714},{"type":42,"tag":241,"props":807,"children":809},{"class":243,"line":808},11,[810],{"type":42,"tag":241,"props":811,"children":812},{"style":638},[813],{"type":47,"value":814},"\u002F\u002F Step 4: Load language resources\n",{"type":42,"tag":241,"props":816,"children":818},{"class":243,"line":817},12,[819,823,827,832,836,841,845,849,854,858,863],{"type":42,"tag":241,"props":820,"children":821},{"style":293},[822],{"type":47,"value":73},{"type":42,"tag":241,"props":824,"children":825},{"style":287},[826],{"type":47,"value":654},{"type":42,"tag":241,"props":828,"children":829},{"style":293},[830],{"type":47,"value":831},"i18n",{"type":42,"tag":241,"props":833,"children":834},{"style":287},[835],{"type":47,"value":654},{"type":42,"tag":241,"props":837,"children":838},{"style":657},[839],{"type":47,"value":840},"load",{"type":42,"tag":241,"props":842,"children":843},{"style":293},[844],{"type":47,"value":665},{"type":42,"tag":241,"props":846,"children":847},{"style":287},[848],{"type":47,"value":321},{"type":42,"tag":241,"props":850,"children":851},{"style":253},[852],{"type":47,"value":853},"en-US",{"type":42,"tag":241,"props":855,"children":856},{"style":287},[857],{"type":47,"value":321},{"type":42,"tag":241,"props":859,"children":860},{"style":293},[861],{"type":47,"value":862},")",{"type":42,"tag":241,"props":864,"children":865},{"style":287},[866],{"type":47,"value":326},{"type":42,"tag":241,"props":868,"children":870},{"class":243,"line":869},13,[871,875,879,883,887,892,896,900,905],{"type":42,"tag":241,"props":872,"children":873},{"style":293},[874],{"type":47,"value":73},{"type":42,"tag":241,"props":876,"children":877},{"style":287},[878],{"type":47,"value":654},{"type":42,"tag":241,"props":880,"children":881},{"style":293},[882],{"type":47,"value":831},{"type":42,"tag":241,"props":884,"children":885},{"style":287},[886],{"type":47,"value":654},{"type":42,"tag":241,"props":888,"children":889},{"style":657},[890],{"type":47,"value":891},"onLoad",{"type":42,"tag":241,"props":893,"children":894},{"style":293},[895],{"type":47,"value":665},{"type":42,"tag":241,"props":897,"children":898},{"style":287},[899],{"type":47,"value":768},{"type":42,"tag":241,"props":901,"children":902},{"style":358},[903],{"type":47,"value":904}," =>",{"type":42,"tag":241,"props":906,"children":907},{"style":287},[908],{"type":47,"value":909}," {\n",{"type":42,"tag":241,"props":911,"children":913},{"class":243,"line":912},14,[914],{"type":42,"tag":241,"props":915,"children":916},{"emptyLinePlaceholder":711},[917],{"type":47,"value":714},{"type":42,"tag":241,"props":919,"children":921},{"class":243,"line":920},15,[922],{"type":42,"tag":241,"props":923,"children":924},{"style":638},[925],{"type":47,"value":926},"  \u002F\u002F Step 5: Initialize SDK\n",{"type":42,"tag":241,"props":928,"children":930},{"class":243,"line":929},16,[931,936,940,945,949],{"type":42,"tag":241,"props":932,"children":933},{"style":293},[934],{"type":47,"value":935},"  ZoomMtg",{"type":42,"tag":241,"props":937,"children":938},{"style":287},[939],{"type":47,"value":654},{"type":42,"tag":241,"props":941,"children":942},{"style":657},[943],{"type":47,"value":944},"init",{"type":42,"tag":241,"props":946,"children":947},{"style":352},[948],{"type":47,"value":665},{"type":42,"tag":241,"props":950,"children":951},{"style":287},[952],{"type":47,"value":953},"{\n",{"type":42,"tag":241,"props":955,"children":957},{"class":243,"line":956},17,[958,963,968,972,977,981],{"type":42,"tag":241,"props":959,"children":960},{"style":352},[961],{"type":47,"value":962},"    leaveUrl",{"type":42,"tag":241,"props":964,"children":965},{"style":287},[966],{"type":47,"value":967},":",{"type":42,"tag":241,"props":969,"children":970},{"style":287},[971],{"type":47,"value":311},{"type":42,"tag":241,"props":973,"children":974},{"style":253},[975],{"type":47,"value":976},"\u002Fmeeting-ended",{"type":42,"tag":241,"props":978,"children":979},{"style":287},[980],{"type":47,"value":321},{"type":42,"tag":241,"props":982,"children":983},{"style":287},[984],{"type":47,"value":985},",\n",{"type":42,"tag":241,"props":987,"children":989},{"class":243,"line":988},18,[990,995,999,1005],{"type":42,"tag":241,"props":991,"children":992},{"style":352},[993],{"type":47,"value":994},"    patchJsMedia",{"type":42,"tag":241,"props":996,"children":997},{"style":287},[998],{"type":47,"value":967},{"type":42,"tag":241,"props":1000,"children":1002},{"style":1001},"--shiki-light:#FF5370;--shiki-default:#FF9CAC;--shiki-dark:#FF9CAC",[1003],{"type":47,"value":1004}," true",{"type":42,"tag":241,"props":1006,"children":1007},{"style":287},[1008],{"type":47,"value":985},{"type":42,"tag":241,"props":1010,"children":1012},{"class":243,"line":1011},19,[1013,1018,1022,1027,1032,1036,1041],{"type":42,"tag":241,"props":1014,"children":1015},{"style":352},[1016],{"type":47,"value":1017},"    disableCORP",{"type":42,"tag":241,"props":1019,"children":1020},{"style":287},[1021],{"type":47,"value":967},{"type":42,"tag":241,"props":1023,"children":1024},{"style":287},[1025],{"type":47,"value":1026}," !",{"type":42,"tag":241,"props":1028,"children":1029},{"style":293},[1030],{"type":47,"value":1031},"window",{"type":42,"tag":241,"props":1033,"children":1034},{"style":287},[1035],{"type":47,"value":654},{"type":42,"tag":241,"props":1037,"children":1038},{"style":293},[1039],{"type":47,"value":1040},"crossOriginIsolated",{"type":42,"tag":241,"props":1042,"children":1043},{"style":287},[1044],{"type":47,"value":985},{"type":42,"tag":241,"props":1046,"children":1048},{"class":243,"line":1047},20,[1049,1054,1058,1063,1067],{"type":42,"tag":241,"props":1050,"children":1051},{"style":657},[1052],{"type":47,"value":1053},"    success",{"type":42,"tag":241,"props":1055,"children":1056},{"style":287},[1057],{"type":47,"value":967},{"type":42,"tag":241,"props":1059,"children":1060},{"style":287},[1061],{"type":47,"value":1062}," ()",{"type":42,"tag":241,"props":1064,"children":1065},{"style":358},[1066],{"type":47,"value":904},{"type":42,"tag":241,"props":1068,"children":1069},{"style":287},[1070],{"type":47,"value":909},{"type":42,"tag":241,"props":1072,"children":1074},{"class":243,"line":1073},21,[1075,1080,1084,1088,1092,1096,1101,1105,1109],{"type":42,"tag":241,"props":1076,"children":1077},{"style":293},[1078],{"type":47,"value":1079},"      console",{"type":42,"tag":241,"props":1081,"children":1082},{"style":287},[1083],{"type":47,"value":654},{"type":42,"tag":241,"props":1085,"children":1086},{"style":657},[1087],{"type":47,"value":660},{"type":42,"tag":241,"props":1089,"children":1090},{"style":352},[1091],{"type":47,"value":665},{"type":42,"tag":241,"props":1093,"children":1094},{"style":287},[1095],{"type":47,"value":321},{"type":42,"tag":241,"props":1097,"children":1098},{"style":253},[1099],{"type":47,"value":1100},"SDK initialized",{"type":42,"tag":241,"props":1102,"children":1103},{"style":287},[1104],{"type":47,"value":321},{"type":42,"tag":241,"props":1106,"children":1107},{"style":352},[1108],{"type":47,"value":862},{"type":42,"tag":241,"props":1110,"children":1111},{"style":287},[1112],{"type":47,"value":326},{"type":42,"tag":241,"props":1114,"children":1116},{"class":243,"line":1115},22,[1117],{"type":42,"tag":241,"props":1118,"children":1119},{"emptyLinePlaceholder":711},[1120],{"type":47,"value":714},{"type":42,"tag":241,"props":1122,"children":1124},{"class":243,"line":1123},23,[1125],{"type":42,"tag":241,"props":1126,"children":1127},{"style":638},[1128],{"type":47,"value":1129},"      \u002F\u002F Step 6: Join meeting\n",{"type":42,"tag":241,"props":1131,"children":1133},{"class":243,"line":1132},24,[1134,1139,1144,1149],{"type":42,"tag":241,"props":1135,"children":1136},{"style":358},[1137],{"type":47,"value":1138},"      const",{"type":42,"tag":241,"props":1140,"children":1141},{"style":293},[1142],{"type":47,"value":1143}," joinPayload",{"type":42,"tag":241,"props":1145,"children":1146},{"style":287},[1147],{"type":47,"value":1148}," =",{"type":42,"tag":241,"props":1150,"children":1151},{"style":287},[1152],{"type":47,"value":909},{"type":42,"tag":241,"props":1154,"children":1156},{"class":243,"line":1155},25,[1157,1162,1166,1171],{"type":42,"tag":241,"props":1158,"children":1159},{"style":352},[1160],{"type":47,"value":1161},"        signature",{"type":42,"tag":241,"props":1163,"children":1164},{"style":287},[1165],{"type":47,"value":967},{"type":42,"tag":241,"props":1167,"children":1168},{"style":293},[1169],{"type":47,"value":1170}," signature",{"type":42,"tag":241,"props":1172,"children":1173},{"style":287},[1174],{"type":47,"value":985},{"type":42,"tag":241,"props":1176,"children":1178},{"class":243,"line":1177},26,[1179,1184,1188,1193],{"type":42,"tag":241,"props":1180,"children":1181},{"style":352},[1182],{"type":47,"value":1183},"        meetingNumber",{"type":42,"tag":241,"props":1185,"children":1186},{"style":287},[1187],{"type":47,"value":967},{"type":42,"tag":241,"props":1189,"children":1190},{"style":293},[1191],{"type":47,"value":1192}," meetingNumber",{"type":42,"tag":241,"props":1194,"children":1195},{"style":287},[1196],{"type":47,"value":985},{"type":42,"tag":241,"props":1198,"children":1200},{"class":243,"line":1199},27,[1201,1206,1210,1215],{"type":42,"tag":241,"props":1202,"children":1203},{"style":352},[1204],{"type":47,"value":1205},"        userName",{"type":42,"tag":241,"props":1207,"children":1208},{"style":287},[1209],{"type":47,"value":967},{"type":42,"tag":241,"props":1211,"children":1212},{"style":293},[1213],{"type":47,"value":1214}," userName",{"type":42,"tag":241,"props":1216,"children":1217},{"style":287},[1218],{"type":47,"value":985},{"type":42,"tag":241,"props":1220,"children":1222},{"class":243,"line":1221},28,[1223,1228,1232,1237],{"type":42,"tag":241,"props":1224,"children":1225},{"style":352},[1226],{"type":47,"value":1227},"        passWord",{"type":42,"tag":241,"props":1229,"children":1230},{"style":287},[1231],{"type":47,"value":967},{"type":42,"tag":241,"props":1233,"children":1234},{"style":293},[1235],{"type":47,"value":1236}," passWord",{"type":42,"tag":241,"props":1238,"children":1239},{"style":287},[1240],{"type":47,"value":985},{"type":42,"tag":241,"props":1242,"children":1244},{"class":243,"line":1243},29,[1245,1250,1254,1259,1265,1269,1273],{"type":42,"tag":241,"props":1246,"children":1247},{"style":657},[1248],{"type":47,"value":1249},"        success",{"type":42,"tag":241,"props":1251,"children":1252},{"style":287},[1253],{"type":47,"value":967},{"type":42,"tag":241,"props":1255,"children":1256},{"style":287},[1257],{"type":47,"value":1258}," (",{"type":42,"tag":241,"props":1260,"children":1262},{"style":1261},"--shiki-light:#90A4AE;--shiki-light-font-style:italic;--shiki-default:#EEFFFF;--shiki-default-font-style:italic;--shiki-dark:#BABED8;--shiki-dark-font-style:italic",[1263],{"type":47,"value":1264},"res",{"type":42,"tag":241,"props":1266,"children":1267},{"style":287},[1268],{"type":47,"value":862},{"type":42,"tag":241,"props":1270,"children":1271},{"style":358},[1272],{"type":47,"value":904},{"type":42,"tag":241,"props":1274,"children":1275},{"style":287},[1276],{"type":47,"value":909},{"type":42,"tag":241,"props":1278,"children":1280},{"class":243,"line":1279},30,[1281,1286,1290,1294,1298,1302,1307,1311,1315],{"type":42,"tag":241,"props":1282,"children":1283},{"style":293},[1284],{"type":47,"value":1285},"          console",{"type":42,"tag":241,"props":1287,"children":1288},{"style":287},[1289],{"type":47,"value":654},{"type":42,"tag":241,"props":1291,"children":1292},{"style":657},[1293],{"type":47,"value":660},{"type":42,"tag":241,"props":1295,"children":1296},{"style":352},[1297],{"type":47,"value":665},{"type":42,"tag":241,"props":1299,"children":1300},{"style":287},[1301],{"type":47,"value":321},{"type":42,"tag":241,"props":1303,"children":1304},{"style":253},[1305],{"type":47,"value":1306},"Joined meeting",{"type":42,"tag":241,"props":1308,"children":1309},{"style":287},[1310],{"type":47,"value":321},{"type":42,"tag":241,"props":1312,"children":1313},{"style":352},[1314],{"type":47,"value":862},{"type":42,"tag":241,"props":1316,"children":1317},{"style":287},[1318],{"type":47,"value":326},{"type":42,"tag":241,"props":1320,"children":1322},{"class":243,"line":1321},31,[1323],{"type":42,"tag":241,"props":1324,"children":1325},{"emptyLinePlaceholder":711},[1326],{"type":47,"value":714},{"type":42,"tag":241,"props":1328,"children":1330},{"class":243,"line":1329},32,[1331],{"type":42,"tag":241,"props":1332,"children":1333},{"style":638},[1334],{"type":47,"value":1335},"          \u002F\u002F Step 7: Post-join operations\n",{"type":42,"tag":241,"props":1337,"children":1339},{"class":243,"line":1338},33,[1340,1345,1349,1354,1358,1363,1367],{"type":42,"tag":241,"props":1341,"children":1342},{"style":293},[1343],{"type":47,"value":1344},"          ZoomMtg",{"type":42,"tag":241,"props":1346,"children":1347},{"style":287},[1348],{"type":47,"value":654},{"type":42,"tag":241,"props":1350,"children":1351},{"style":657},[1352],{"type":47,"value":1353},"getAttendeeslist",{"type":42,"tag":241,"props":1355,"children":1356},{"style":352},[1357],{"type":47,"value":665},{"type":42,"tag":241,"props":1359,"children":1360},{"style":287},[1361],{"type":47,"value":1362},"{}",{"type":42,"tag":241,"props":1364,"children":1365},{"style":352},[1366],{"type":47,"value":862},{"type":42,"tag":241,"props":1368,"children":1369},{"style":287},[1370],{"type":47,"value":326},{"type":42,"tag":241,"props":1372,"children":1374},{"class":243,"line":1373},34,[1375,1379,1383,1388,1392],{"type":42,"tag":241,"props":1376,"children":1377},{"style":293},[1378],{"type":47,"value":1344},{"type":42,"tag":241,"props":1380,"children":1381},{"style":287},[1382],{"type":47,"value":654},{"type":42,"tag":241,"props":1384,"children":1385},{"style":657},[1386],{"type":47,"value":1387},"getCurrentUser",{"type":42,"tag":241,"props":1389,"children":1390},{"style":352},[1391],{"type":47,"value":665},{"type":42,"tag":241,"props":1393,"children":1394},{"style":287},[1395],{"type":47,"value":953},{"type":42,"tag":241,"props":1397,"children":1399},{"class":243,"line":1398},35,[1400,1405,1409,1413,1417,1421,1425,1430,1434,1438,1442,1446,1451,1455,1459,1464,1468,1473,1477,1482],{"type":42,"tag":241,"props":1401,"children":1402},{"style":657},[1403],{"type":47,"value":1404},"            success",{"type":42,"tag":241,"props":1406,"children":1407},{"style":287},[1408],{"type":47,"value":967},{"type":42,"tag":241,"props":1410,"children":1411},{"style":287},[1412],{"type":47,"value":1258},{"type":42,"tag":241,"props":1414,"children":1415},{"style":1261},[1416],{"type":47,"value":1264},{"type":42,"tag":241,"props":1418,"children":1419},{"style":287},[1420],{"type":47,"value":862},{"type":42,"tag":241,"props":1422,"children":1423},{"style":358},[1424],{"type":47,"value":904},{"type":42,"tag":241,"props":1426,"children":1427},{"style":293},[1428],{"type":47,"value":1429}," console",{"type":42,"tag":241,"props":1431,"children":1432},{"style":287},[1433],{"type":47,"value":654},{"type":42,"tag":241,"props":1435,"children":1436},{"style":657},[1437],{"type":47,"value":660},{"type":42,"tag":241,"props":1439,"children":1440},{"style":352},[1441],{"type":47,"value":665},{"type":42,"tag":241,"props":1443,"children":1444},{"style":287},[1445],{"type":47,"value":321},{"type":42,"tag":241,"props":1447,"children":1448},{"style":253},[1449],{"type":47,"value":1450},"Current user:",{"type":42,"tag":241,"props":1452,"children":1453},{"style":287},[1454],{"type":47,"value":321},{"type":42,"tag":241,"props":1456,"children":1457},{"style":287},[1458],{"type":47,"value":683},{"type":42,"tag":241,"props":1460,"children":1461},{"style":293},[1462],{"type":47,"value":1463}," res",{"type":42,"tag":241,"props":1465,"children":1466},{"style":287},[1467],{"type":47,"value":654},{"type":42,"tag":241,"props":1469,"children":1470},{"style":293},[1471],{"type":47,"value":1472},"result",{"type":42,"tag":241,"props":1474,"children":1475},{"style":287},[1476],{"type":47,"value":654},{"type":42,"tag":241,"props":1478,"children":1479},{"style":293},[1480],{"type":47,"value":1481},"currentUser",{"type":42,"tag":241,"props":1483,"children":1484},{"style":352},[1485],{"type":47,"value":1486},")\n",{"type":42,"tag":241,"props":1488,"children":1490},{"class":243,"line":1489},36,[1491,1496,1500],{"type":42,"tag":241,"props":1492,"children":1493},{"style":287},[1494],{"type":47,"value":1495},"          }",{"type":42,"tag":241,"props":1497,"children":1498},{"style":352},[1499],{"type":47,"value":862},{"type":42,"tag":241,"props":1501,"children":1502},{"style":287},[1503],{"type":47,"value":326},{"type":42,"tag":241,"props":1505,"children":1507},{"class":243,"line":1506},37,[1508],{"type":42,"tag":241,"props":1509,"children":1510},{"style":287},[1511],{"type":47,"value":1512},"        },\n",{"type":42,"tag":241,"props":1514,"children":1516},{"class":243,"line":1515},38,[1517,1522,1526,1530,1535,1539,1543,1547,1551,1556,1560,1564,1569,1573,1577,1582],{"type":42,"tag":241,"props":1518,"children":1519},{"style":657},[1520],{"type":47,"value":1521},"        error",{"type":42,"tag":241,"props":1523,"children":1524},{"style":287},[1525],{"type":47,"value":967},{"type":42,"tag":241,"props":1527,"children":1528},{"style":287},[1529],{"type":47,"value":1258},{"type":42,"tag":241,"props":1531,"children":1532},{"style":1261},[1533],{"type":47,"value":1534},"err",{"type":42,"tag":241,"props":1536,"children":1537},{"style":287},[1538],{"type":47,"value":862},{"type":42,"tag":241,"props":1540,"children":1541},{"style":358},[1542],{"type":47,"value":904},{"type":42,"tag":241,"props":1544,"children":1545},{"style":293},[1546],{"type":47,"value":1429},{"type":42,"tag":241,"props":1548,"children":1549},{"style":287},[1550],{"type":47,"value":654},{"type":42,"tag":241,"props":1552,"children":1553},{"style":657},[1554],{"type":47,"value":1555},"error",{"type":42,"tag":241,"props":1557,"children":1558},{"style":352},[1559],{"type":47,"value":665},{"type":42,"tag":241,"props":1561,"children":1562},{"style":287},[1563],{"type":47,"value":321},{"type":42,"tag":241,"props":1565,"children":1566},{"style":253},[1567],{"type":47,"value":1568},"Join failed:",{"type":42,"tag":241,"props":1570,"children":1571},{"style":287},[1572],{"type":47,"value":321},{"type":42,"tag":241,"props":1574,"children":1575},{"style":287},[1576],{"type":47,"value":683},{"type":42,"tag":241,"props":1578,"children":1579},{"style":293},[1580],{"type":47,"value":1581}," err",{"type":42,"tag":241,"props":1583,"children":1584},{"style":352},[1585],{"type":47,"value":1486},{"type":42,"tag":241,"props":1587,"children":1589},{"class":243,"line":1588},39,[1590],{"type":42,"tag":241,"props":1591,"children":1592},{"style":287},[1593],{"type":47,"value":1594},"      };\n",{"type":42,"tag":241,"props":1596,"children":1598},{"class":243,"line":1597},40,[1599],{"type":42,"tag":241,"props":1600,"children":1601},{"emptyLinePlaceholder":711},[1602],{"type":47,"value":714},{"type":42,"tag":241,"props":1604,"children":1606},{"class":243,"line":1605},41,[1607],{"type":42,"tag":241,"props":1608,"children":1609},{"style":638},[1610],{"type":47,"value":1611},"      \u002F\u002F IMPORTANT: only include optional fields when they have real values\n",{"type":42,"tag":241,"props":1613,"children":1615},{"class":243,"line":1614},42,[1616],{"type":42,"tag":241,"props":1617,"children":1618},{"style":638},[1619],{"type":47,"value":1620},"      \u002F\u002F Passing undefined for some optional fields can cause runtime join errors\n",{"type":42,"tag":241,"props":1622,"children":1624},{"class":243,"line":1623},43,[1625,1630,1634,1639,1644,1649,1653,1657,1661,1666],{"type":42,"tag":241,"props":1626,"children":1627},{"style":281},[1628],{"type":47,"value":1629},"      if",{"type":42,"tag":241,"props":1631,"children":1632},{"style":352},[1633],{"type":47,"value":1258},{"type":42,"tag":241,"props":1635,"children":1636},{"style":293},[1637],{"type":47,"value":1638},"userEmail",{"type":42,"tag":241,"props":1640,"children":1641},{"style":352},[1642],{"type":47,"value":1643},") ",{"type":42,"tag":241,"props":1645,"children":1646},{"style":293},[1647],{"type":47,"value":1648},"joinPayload",{"type":42,"tag":241,"props":1650,"children":1651},{"style":287},[1652],{"type":47,"value":654},{"type":42,"tag":241,"props":1654,"children":1655},{"style":293},[1656],{"type":47,"value":1638},{"type":42,"tag":241,"props":1658,"children":1659},{"style":287},[1660],{"type":47,"value":1148},{"type":42,"tag":241,"props":1662,"children":1663},{"style":293},[1664],{"type":47,"value":1665}," userEmail",{"type":42,"tag":241,"props":1667,"children":1668},{"style":287},[1669],{"type":47,"value":326},{"type":42,"tag":241,"props":1671,"children":1673},{"class":243,"line":1672},44,[1674,1678,1682,1687,1691,1695,1699,1703,1707,1712],{"type":42,"tag":241,"props":1675,"children":1676},{"style":281},[1677],{"type":47,"value":1629},{"type":42,"tag":241,"props":1679,"children":1680},{"style":352},[1681],{"type":47,"value":1258},{"type":42,"tag":241,"props":1683,"children":1684},{"style":293},[1685],{"type":47,"value":1686},"tk",{"type":42,"tag":241,"props":1688,"children":1689},{"style":352},[1690],{"type":47,"value":1643},{"type":42,"tag":241,"props":1692,"children":1693},{"style":293},[1694],{"type":47,"value":1648},{"type":42,"tag":241,"props":1696,"children":1697},{"style":287},[1698],{"type":47,"value":654},{"type":42,"tag":241,"props":1700,"children":1701},{"style":293},[1702],{"type":47,"value":1686},{"type":42,"tag":241,"props":1704,"children":1705},{"style":287},[1706],{"type":47,"value":1148},{"type":42,"tag":241,"props":1708,"children":1709},{"style":293},[1710],{"type":47,"value":1711}," tk",{"type":42,"tag":241,"props":1713,"children":1714},{"style":287},[1715],{"type":47,"value":326},{"type":42,"tag":241,"props":1717,"children":1719},{"class":243,"line":1718},45,[1720,1724,1728,1733,1737,1741,1745,1749,1753,1758],{"type":42,"tag":241,"props":1721,"children":1722},{"style":281},[1723],{"type":47,"value":1629},{"type":42,"tag":241,"props":1725,"children":1726},{"style":352},[1727],{"type":47,"value":1258},{"type":42,"tag":241,"props":1729,"children":1730},{"style":293},[1731],{"type":47,"value":1732},"zak",{"type":42,"tag":241,"props":1734,"children":1735},{"style":352},[1736],{"type":47,"value":1643},{"type":42,"tag":241,"props":1738,"children":1739},{"style":293},[1740],{"type":47,"value":1648},{"type":42,"tag":241,"props":1742,"children":1743},{"style":287},[1744],{"type":47,"value":654},{"type":42,"tag":241,"props":1746,"children":1747},{"style":293},[1748],{"type":47,"value":1732},{"type":42,"tag":241,"props":1750,"children":1751},{"style":287},[1752],{"type":47,"value":1148},{"type":42,"tag":241,"props":1754,"children":1755},{"style":293},[1756],{"type":47,"value":1757}," zak",{"type":42,"tag":241,"props":1759,"children":1760},{"style":287},[1761],{"type":47,"value":326},{"type":42,"tag":241,"props":1763,"children":1765},{"class":243,"line":1764},46,[1766],{"type":42,"tag":241,"props":1767,"children":1768},{"emptyLinePlaceholder":711},[1769],{"type":47,"value":714},{"type":42,"tag":241,"props":1771,"children":1773},{"class":243,"line":1772},47,[1774,1779,1783,1788,1792,1796,1800],{"type":42,"tag":241,"props":1775,"children":1776},{"style":293},[1777],{"type":47,"value":1778},"      ZoomMtg",{"type":42,"tag":241,"props":1780,"children":1781},{"style":287},[1782],{"type":47,"value":654},{"type":42,"tag":241,"props":1784,"children":1785},{"style":657},[1786],{"type":47,"value":1787},"join",{"type":42,"tag":241,"props":1789,"children":1790},{"style":352},[1791],{"type":47,"value":665},{"type":42,"tag":241,"props":1793,"children":1794},{"style":293},[1795],{"type":47,"value":1648},{"type":42,"tag":241,"props":1797,"children":1798},{"style":352},[1799],{"type":47,"value":862},{"type":42,"tag":241,"props":1801,"children":1802},{"style":287},[1803],{"type":47,"value":326},{"type":42,"tag":241,"props":1805,"children":1807},{"class":243,"line":1806},48,[1808],{"type":42,"tag":241,"props":1809,"children":1810},{"style":287},[1811],{"type":47,"value":1812},"    },\n",{"type":42,"tag":241,"props":1814,"children":1816},{"class":243,"line":1815},49,[1817,1822,1826,1830,1834,1838,1842,1846,1850,1854,1858,1862,1867,1871,1875,1879],{"type":42,"tag":241,"props":1818,"children":1819},{"style":657},[1820],{"type":47,"value":1821},"    error",{"type":42,"tag":241,"props":1823,"children":1824},{"style":287},[1825],{"type":47,"value":967},{"type":42,"tag":241,"props":1827,"children":1828},{"style":287},[1829],{"type":47,"value":1258},{"type":42,"tag":241,"props":1831,"children":1832},{"style":1261},[1833],{"type":47,"value":1534},{"type":42,"tag":241,"props":1835,"children":1836},{"style":287},[1837],{"type":47,"value":862},{"type":42,"tag":241,"props":1839,"children":1840},{"style":358},[1841],{"type":47,"value":904},{"type":42,"tag":241,"props":1843,"children":1844},{"style":293},[1845],{"type":47,"value":1429},{"type":42,"tag":241,"props":1847,"children":1848},{"style":287},[1849],{"type":47,"value":654},{"type":42,"tag":241,"props":1851,"children":1852},{"style":657},[1853],{"type":47,"value":1555},{"type":42,"tag":241,"props":1855,"children":1856},{"style":352},[1857],{"type":47,"value":665},{"type":42,"tag":241,"props":1859,"children":1860},{"style":287},[1861],{"type":47,"value":321},{"type":42,"tag":241,"props":1863,"children":1864},{"style":253},[1865],{"type":47,"value":1866},"Init failed:",{"type":42,"tag":241,"props":1868,"children":1869},{"style":287},[1870],{"type":47,"value":321},{"type":42,"tag":241,"props":1872,"children":1873},{"style":287},[1874],{"type":47,"value":683},{"type":42,"tag":241,"props":1876,"children":1877},{"style":293},[1878],{"type":47,"value":1581},{"type":42,"tag":241,"props":1880,"children":1881},{"style":352},[1882],{"type":47,"value":1486},{"type":42,"tag":241,"props":1884,"children":1886},{"class":243,"line":1885},50,[1887,1892,1896],{"type":42,"tag":241,"props":1888,"children":1889},{"style":287},[1890],{"type":47,"value":1891},"  }",{"type":42,"tag":241,"props":1893,"children":1894},{"style":352},[1895],{"type":47,"value":862},{"type":42,"tag":241,"props":1897,"children":1898},{"style":287},[1899],{"type":47,"value":326},{"type":42,"tag":241,"props":1901,"children":1903},{"class":243,"line":1902},51,[1904,1909,1913],{"type":42,"tag":241,"props":1905,"children":1906},{"style":287},[1907],{"type":47,"value":1908},"}",{"type":42,"tag":241,"props":1910,"children":1911},{"style":293},[1912],{"type":47,"value":862},{"type":42,"tag":241,"props":1914,"children":1915},{"style":287},[1916],{"type":47,"value":326},{"type":42,"tag":56,"props":1918,"children":1920},{"id":1919},"zoommtginit-all-options",[1921],{"type":47,"value":1922},"ZoomMtg.init() - All Options",{"type":42,"tag":223,"props":1924,"children":1926},{"id":1925},"required",[1927],{"type":47,"value":1928},"Required",{"type":42,"tag":77,"props":1930,"children":1931},{},[1932,1953],{"type":42,"tag":81,"props":1933,"children":1934},{},[1935],{"type":42,"tag":85,"props":1936,"children":1937},{},[1938,1943,1948],{"type":42,"tag":89,"props":1939,"children":1940},{},[1941],{"type":47,"value":1942},"Parameter",{"type":42,"tag":89,"props":1944,"children":1945},{},[1946],{"type":47,"value":1947},"Type",{"type":42,"tag":89,"props":1949,"children":1950},{},[1951],{"type":47,"value":1952},"Description",{"type":42,"tag":100,"props":1954,"children":1955},{},[1956],{"type":42,"tag":85,"props":1957,"children":1958},{},[1959,1968,1977],{"type":42,"tag":107,"props":1960,"children":1961},{},[1962],{"type":42,"tag":68,"props":1963,"children":1965},{"className":1964},[],[1966],{"type":47,"value":1967},"leaveUrl",{"type":42,"tag":107,"props":1969,"children":1970},{},[1971],{"type":42,"tag":68,"props":1972,"children":1974},{"className":1973},[],[1975],{"type":47,"value":1976},"string",{"type":42,"tag":107,"props":1978,"children":1979},{},[1980],{"type":47,"value":1981},"URL to redirect after leaving meeting",{"type":42,"tag":223,"props":1983,"children":1985},{"id":1984},"ui-customization",[1986],{"type":47,"value":1987},"UI Customization",{"type":42,"tag":77,"props":1989,"children":1990},{},[1991,2014],{"type":42,"tag":81,"props":1992,"children":1993},{},[1994],{"type":42,"tag":85,"props":1995,"children":1996},{},[1997,2001,2005,2010],{"type":42,"tag":89,"props":1998,"children":1999},{},[2000],{"type":47,"value":1942},{"type":42,"tag":89,"props":2002,"children":2003},{},[2004],{"type":47,"value":1947},{"type":42,"tag":89,"props":2006,"children":2007},{},[2008],{"type":47,"value":2009},"Default",{"type":42,"tag":89,"props":2011,"children":2012},{},[2013],{"type":47,"value":1952},{"type":42,"tag":100,"props":2015,"children":2016},{},[2017,2052,2086,2119,2152,2185,2218,2251,2284,2317,2350,2383,2428,2461,2494,2527,2560],{"type":42,"tag":85,"props":2018,"children":2019},{},[2020,2029,2038,2047],{"type":42,"tag":107,"props":2021,"children":2022},{},[2023],{"type":42,"tag":68,"props":2024,"children":2026},{"className":2025},[],[2027],{"type":47,"value":2028},"showMeetingHeader",{"type":42,"tag":107,"props":2030,"children":2031},{},[2032],{"type":42,"tag":68,"props":2033,"children":2035},{"className":2034},[],[2036],{"type":47,"value":2037},"boolean",{"type":42,"tag":107,"props":2039,"children":2040},{},[2041],{"type":42,"tag":68,"props":2042,"children":2044},{"className":2043},[],[2045],{"type":47,"value":2046},"true",{"type":42,"tag":107,"props":2048,"children":2049},{},[2050],{"type":47,"value":2051},"Show meeting number and topic",{"type":42,"tag":85,"props":2053,"children":2054},{},[2055,2064,2072,2081],{"type":42,"tag":107,"props":2056,"children":2057},{},[2058],{"type":42,"tag":68,"props":2059,"children":2061},{"className":2060},[],[2062],{"type":47,"value":2063},"disableInvite",{"type":42,"tag":107,"props":2065,"children":2066},{},[2067],{"type":42,"tag":68,"props":2068,"children":2070},{"className":2069},[],[2071],{"type":47,"value":2037},{"type":42,"tag":107,"props":2073,"children":2074},{},[2075],{"type":42,"tag":68,"props":2076,"children":2078},{"className":2077},[],[2079],{"type":47,"value":2080},"false",{"type":42,"tag":107,"props":2082,"children":2083},{},[2084],{"type":47,"value":2085},"Hide invite button",{"type":42,"tag":85,"props":2087,"children":2088},{},[2089,2098,2106,2114],{"type":42,"tag":107,"props":2090,"children":2091},{},[2092],{"type":42,"tag":68,"props":2093,"children":2095},{"className":2094},[],[2096],{"type":47,"value":2097},"disableCallOut",{"type":42,"tag":107,"props":2099,"children":2100},{},[2101],{"type":42,"tag":68,"props":2102,"children":2104},{"className":2103},[],[2105],{"type":47,"value":2037},{"type":42,"tag":107,"props":2107,"children":2108},{},[2109],{"type":42,"tag":68,"props":2110,"children":2112},{"className":2111},[],[2113],{"type":47,"value":2080},{"type":42,"tag":107,"props":2115,"children":2116},{},[2117],{"type":47,"value":2118},"Hide call out option",{"type":42,"tag":85,"props":2120,"children":2121},{},[2122,2131,2139,2147],{"type":42,"tag":107,"props":2123,"children":2124},{},[2125],{"type":42,"tag":68,"props":2126,"children":2128},{"className":2127},[],[2129],{"type":47,"value":2130},"disableRecord",{"type":42,"tag":107,"props":2132,"children":2133},{},[2134],{"type":42,"tag":68,"props":2135,"children":2137},{"className":2136},[],[2138],{"type":47,"value":2037},{"type":42,"tag":107,"props":2140,"children":2141},{},[2142],{"type":42,"tag":68,"props":2143,"children":2145},{"className":2144},[],[2146],{"type":47,"value":2080},{"type":42,"tag":107,"props":2148,"children":2149},{},[2150],{"type":47,"value":2151},"Hide record button",{"type":42,"tag":85,"props":2153,"children":2154},{},[2155,2164,2172,2180],{"type":42,"tag":107,"props":2156,"children":2157},{},[2158],{"type":42,"tag":68,"props":2159,"children":2161},{"className":2160},[],[2162],{"type":47,"value":2163},"disableJoinAudio",{"type":42,"tag":107,"props":2165,"children":2166},{},[2167],{"type":42,"tag":68,"props":2168,"children":2170},{"className":2169},[],[2171],{"type":47,"value":2037},{"type":42,"tag":107,"props":2173,"children":2174},{},[2175],{"type":42,"tag":68,"props":2176,"children":2178},{"className":2177},[],[2179],{"type":47,"value":2080},{"type":42,"tag":107,"props":2181,"children":2182},{},[2183],{"type":47,"value":2184},"Hide join audio option",{"type":42,"tag":85,"props":2186,"children":2187},{},[2188,2197,2205,2213],{"type":42,"tag":107,"props":2189,"children":2190},{},[2191],{"type":42,"tag":68,"props":2192,"children":2194},{"className":2193},[],[2195],{"type":47,"value":2196},"disablePreview",{"type":42,"tag":107,"props":2198,"children":2199},{},[2200],{"type":42,"tag":68,"props":2201,"children":2203},{"className":2202},[],[2204],{"type":47,"value":2037},{"type":42,"tag":107,"props":2206,"children":2207},{},[2208],{"type":42,"tag":68,"props":2209,"children":2211},{"className":2210},[],[2212],{"type":47,"value":2080},{"type":42,"tag":107,"props":2214,"children":2215},{},[2216],{"type":47,"value":2217},"Skip audio\u002Fvideo preview",{"type":42,"tag":85,"props":2219,"children":2220},{},[2221,2230,2238,2246],{"type":42,"tag":107,"props":2222,"children":2223},{},[2224],{"type":42,"tag":68,"props":2225,"children":2227},{"className":2226},[],[2228],{"type":47,"value":2229},"audioPanelAlwaysOpen",{"type":42,"tag":107,"props":2231,"children":2232},{},[2233],{"type":42,"tag":68,"props":2234,"children":2236},{"className":2235},[],[2237],{"type":47,"value":2037},{"type":42,"tag":107,"props":2239,"children":2240},{},[2241],{"type":42,"tag":68,"props":2242,"children":2244},{"className":2243},[],[2245],{"type":47,"value":2080},{"type":42,"tag":107,"props":2247,"children":2248},{},[2249],{"type":47,"value":2250},"Keep audio panel open",{"type":42,"tag":85,"props":2252,"children":2253},{},[2254,2263,2271,2279],{"type":42,"tag":107,"props":2255,"children":2256},{},[2257],{"type":42,"tag":68,"props":2258,"children":2260},{"className":2259},[],[2261],{"type":47,"value":2262},"showPureSharingContent",{"type":42,"tag":107,"props":2264,"children":2265},{},[2266],{"type":42,"tag":68,"props":2267,"children":2269},{"className":2268},[],[2270],{"type":47,"value":2037},{"type":42,"tag":107,"props":2272,"children":2273},{},[2274],{"type":42,"tag":68,"props":2275,"children":2277},{"className":2276},[],[2278],{"type":47,"value":2080},{"type":42,"tag":107,"props":2280,"children":2281},{},[2282],{"type":47,"value":2283},"Prevent overlays on shared content",{"type":42,"tag":85,"props":2285,"children":2286},{},[2287,2296,2304,2312],{"type":42,"tag":107,"props":2288,"children":2289},{},[2290],{"type":42,"tag":68,"props":2291,"children":2293},{"className":2292},[],[2294],{"type":47,"value":2295},"videoHeader",{"type":42,"tag":107,"props":2297,"children":2298},{},[2299],{"type":42,"tag":68,"props":2300,"children":2302},{"className":2301},[],[2303],{"type":47,"value":2037},{"type":42,"tag":107,"props":2305,"children":2306},{},[2307],{"type":42,"tag":68,"props":2308,"children":2310},{"className":2309},[],[2311],{"type":47,"value":2046},{"type":42,"tag":107,"props":2313,"children":2314},{},[2315],{"type":47,"value":2316},"Show video tile header",{"type":42,"tag":85,"props":2318,"children":2319},{},[2320,2329,2337,2345],{"type":42,"tag":107,"props":2321,"children":2322},{},[2323],{"type":42,"tag":68,"props":2324,"children":2326},{"className":2325},[],[2327],{"type":47,"value":2328},"isLockBottom",{"type":42,"tag":107,"props":2330,"children":2331},{},[2332],{"type":42,"tag":68,"props":2333,"children":2335},{"className":2334},[],[2336],{"type":47,"value":2037},{"type":42,"tag":107,"props":2338,"children":2339},{},[2340],{"type":42,"tag":68,"props":2341,"children":2343},{"className":2342},[],[2344],{"type":47,"value":2046},{"type":42,"tag":107,"props":2346,"children":2347},{},[2348],{"type":47,"value":2349},"Show\u002Fhide footer",{"type":42,"tag":85,"props":2351,"children":2352},{},[2353,2362,2370,2378],{"type":42,"tag":107,"props":2354,"children":2355},{},[2356],{"type":42,"tag":68,"props":2357,"children":2359},{"className":2358},[],[2360],{"type":47,"value":2361},"videoDrag",{"type":42,"tag":107,"props":2363,"children":2364},{},[2365],{"type":42,"tag":68,"props":2366,"children":2368},{"className":2367},[],[2369],{"type":47,"value":2037},{"type":42,"tag":107,"props":2371,"children":2372},{},[2373],{"type":42,"tag":68,"props":2374,"children":2376},{"className":2375},[],[2377],{"type":47,"value":2046},{"type":42,"tag":107,"props":2379,"children":2380},{},[2381],{"type":47,"value":2382},"Enable drag video tiles",{"type":42,"tag":85,"props":2384,"children":2385},{},[2386,2395,2403,2412],{"type":42,"tag":107,"props":2387,"children":2388},{},[2389],{"type":42,"tag":68,"props":2390,"children":2392},{"className":2391},[],[2393],{"type":47,"value":2394},"sharingMode",{"type":42,"tag":107,"props":2396,"children":2397},{},[2398],{"type":42,"tag":68,"props":2399,"children":2401},{"className":2400},[],[2402],{"type":47,"value":1976},{"type":42,"tag":107,"props":2404,"children":2405},{},[2406],{"type":42,"tag":68,"props":2407,"children":2409},{"className":2408},[],[2410],{"type":47,"value":2411},"'both'",{"type":42,"tag":107,"props":2413,"children":2414},{},[2415,2420,2422],{"type":42,"tag":68,"props":2416,"children":2418},{"className":2417},[],[2419],{"type":47,"value":2411},{"type":47,"value":2421}," or ",{"type":42,"tag":68,"props":2423,"children":2425},{"className":2424},[],[2426],{"type":47,"value":2427},"'fit'",{"type":42,"tag":85,"props":2429,"children":2430},{},[2431,2440,2448,2456],{"type":42,"tag":107,"props":2432,"children":2433},{},[2434],{"type":42,"tag":68,"props":2435,"children":2437},{"className":2436},[],[2438],{"type":47,"value":2439},"screenShare",{"type":42,"tag":107,"props":2441,"children":2442},{},[2443],{"type":42,"tag":68,"props":2444,"children":2446},{"className":2445},[],[2447],{"type":47,"value":2037},{"type":42,"tag":107,"props":2449,"children":2450},{},[2451],{"type":42,"tag":68,"props":2452,"children":2454},{"className":2453},[],[2455],{"type":47,"value":2046},{"type":42,"tag":107,"props":2457,"children":2458},{},[2459],{"type":47,"value":2460},"Enable browser URL sharing",{"type":42,"tag":85,"props":2462,"children":2463},{},[2464,2473,2481,2489],{"type":42,"tag":107,"props":2465,"children":2466},{},[2467],{"type":42,"tag":68,"props":2468,"children":2470},{"className":2469},[],[2471],{"type":47,"value":2472},"hideShareAudioOption",{"type":42,"tag":107,"props":2474,"children":2475},{},[2476],{"type":42,"tag":68,"props":2477,"children":2479},{"className":2478},[],[2480],{"type":47,"value":2037},{"type":42,"tag":107,"props":2482,"children":2483},{},[2484],{"type":42,"tag":68,"props":2485,"children":2487},{"className":2486},[],[2488],{"type":47,"value":2080},{"type":42,"tag":107,"props":2490,"children":2491},{},[2492],{"type":47,"value":2493},"Hide \"Share tab audio\" checkbox",{"type":42,"tag":85,"props":2495,"children":2496},{},[2497,2506,2514,2522],{"type":42,"tag":107,"props":2498,"children":2499},{},[2500],{"type":42,"tag":68,"props":2501,"children":2503},{"className":2502},[],[2504],{"type":47,"value":2505},"disablePictureInPicture",{"type":42,"tag":107,"props":2507,"children":2508},{},[2509],{"type":42,"tag":68,"props":2510,"children":2512},{"className":2511},[],[2513],{"type":47,"value":2037},{"type":42,"tag":107,"props":2515,"children":2516},{},[2517],{"type":42,"tag":68,"props":2518,"children":2520},{"className":2519},[],[2521],{"type":47,"value":2080},{"type":42,"tag":107,"props":2523,"children":2524},{},[2525],{"type":47,"value":2526},"Disable PiP mode",{"type":42,"tag":85,"props":2528,"children":2529},{},[2530,2539,2547,2555],{"type":42,"tag":107,"props":2531,"children":2532},{},[2533],{"type":42,"tag":68,"props":2534,"children":2536},{"className":2535},[],[2537],{"type":47,"value":2538},"disableZoomLogo",{"type":42,"tag":107,"props":2540,"children":2541},{},[2542],{"type":42,"tag":68,"props":2543,"children":2545},{"className":2544},[],[2546],{"type":47,"value":2037},{"type":42,"tag":107,"props":2548,"children":2549},{},[2550],{"type":42,"tag":68,"props":2551,"children":2553},{"className":2552},[],[2554],{"type":47,"value":2080},{"type":42,"tag":107,"props":2556,"children":2557},{},[2558],{"type":47,"value":2559},"Remove Zoom logo (deprecated)",{"type":42,"tag":85,"props":2561,"children":2562},{},[2563,2572,2580,2589],{"type":42,"tag":107,"props":2564,"children":2565},{},[2566],{"type":42,"tag":68,"props":2567,"children":2569},{"className":2568},[],[2570],{"type":47,"value":2571},"defaultView",{"type":42,"tag":107,"props":2573,"children":2574},{},[2575],{"type":42,"tag":68,"props":2576,"children":2578},{"className":2577},[],[2579],{"type":47,"value":1976},{"type":42,"tag":107,"props":2581,"children":2582},{},[2583],{"type":42,"tag":68,"props":2584,"children":2586},{"className":2585},[],[2587],{"type":47,"value":2588},"'speaker'",{"type":42,"tag":107,"props":2590,"children":2591},{},[2592,2598,2600,2605,2606],{"type":42,"tag":68,"props":2593,"children":2595},{"className":2594},[],[2596],{"type":47,"value":2597},"'gallery'",{"type":47,"value":2599},", ",{"type":42,"tag":68,"props":2601,"children":2603},{"className":2602},[],[2604],{"type":47,"value":2588},{"type":47,"value":2599},{"type":42,"tag":68,"props":2607,"children":2609},{"className":2608},[],[2610],{"type":47,"value":2611},"'multiSpeaker'",{"type":42,"tag":223,"props":2613,"children":2615},{"id":2614},"feature-toggles",[2616],{"type":47,"value":2617},"Feature Toggles",{"type":42,"tag":77,"props":2619,"children":2620},{},[2621,2643],{"type":42,"tag":81,"props":2622,"children":2623},{},[2624],{"type":42,"tag":85,"props":2625,"children":2626},{},[2627,2631,2635,2639],{"type":42,"tag":89,"props":2628,"children":2629},{},[2630],{"type":47,"value":1942},{"type":42,"tag":89,"props":2632,"children":2633},{},[2634],{"type":47,"value":1947},{"type":42,"tag":89,"props":2636,"children":2637},{},[2638],{"type":47,"value":2009},{"type":42,"tag":89,"props":2640,"children":2641},{},[2642],{"type":47,"value":1952},{"type":42,"tag":100,"props":2644,"children":2645},{},[2646,2679,2712,2745,2778,2811,2844,2877,2910,2943],{"type":42,"tag":85,"props":2647,"children":2648},{},[2649,2658,2666,2674],{"type":42,"tag":107,"props":2650,"children":2651},{},[2652],{"type":42,"tag":68,"props":2653,"children":2655},{"className":2654},[],[2656],{"type":47,"value":2657},"isSupportAV",{"type":42,"tag":107,"props":2659,"children":2660},{},[2661],{"type":42,"tag":68,"props":2662,"children":2664},{"className":2663},[],[2665],{"type":47,"value":2037},{"type":42,"tag":107,"props":2667,"children":2668},{},[2669],{"type":42,"tag":68,"props":2670,"children":2672},{"className":2671},[],[2673],{"type":47,"value":2046},{"type":42,"tag":107,"props":2675,"children":2676},{},[2677],{"type":47,"value":2678},"Enable audio\u002Fvideo",{"type":42,"tag":85,"props":2680,"children":2681},{},[2682,2691,2699,2707],{"type":42,"tag":107,"props":2683,"children":2684},{},[2685],{"type":42,"tag":68,"props":2686,"children":2688},{"className":2687},[],[2689],{"type":47,"value":2690},"isSupportChat",{"type":42,"tag":107,"props":2692,"children":2693},{},[2694],{"type":42,"tag":68,"props":2695,"children":2697},{"className":2696},[],[2698],{"type":47,"value":2037},{"type":42,"tag":107,"props":2700,"children":2701},{},[2702],{"type":42,"tag":68,"props":2703,"children":2705},{"className":2704},[],[2706],{"type":47,"value":2046},{"type":42,"tag":107,"props":2708,"children":2709},{},[2710],{"type":47,"value":2711},"Enable in-meeting chat",{"type":42,"tag":85,"props":2713,"children":2714},{},[2715,2724,2732,2740],{"type":42,"tag":107,"props":2716,"children":2717},{},[2718],{"type":42,"tag":68,"props":2719,"children":2721},{"className":2720},[],[2722],{"type":47,"value":2723},"isSupportQA",{"type":42,"tag":107,"props":2725,"children":2726},{},[2727],{"type":42,"tag":68,"props":2728,"children":2730},{"className":2729},[],[2731],{"type":47,"value":2037},{"type":42,"tag":107,"props":2733,"children":2734},{},[2735],{"type":42,"tag":68,"props":2736,"children":2738},{"className":2737},[],[2739],{"type":47,"value":2046},{"type":42,"tag":107,"props":2741,"children":2742},{},[2743],{"type":47,"value":2744},"Enable webinar Q&A",{"type":42,"tag":85,"props":2746,"children":2747},{},[2748,2757,2765,2773],{"type":42,"tag":107,"props":2749,"children":2750},{},[2751],{"type":42,"tag":68,"props":2752,"children":2754},{"className":2753},[],[2755],{"type":47,"value":2756},"isSupportCC",{"type":42,"tag":107,"props":2758,"children":2759},{},[2760],{"type":42,"tag":68,"props":2761,"children":2763},{"className":2762},[],[2764],{"type":47,"value":2037},{"type":42,"tag":107,"props":2766,"children":2767},{},[2768],{"type":42,"tag":68,"props":2769,"children":2771},{"className":2770},[],[2772],{"type":47,"value":2046},{"type":42,"tag":107,"props":2774,"children":2775},{},[2776],{"type":47,"value":2777},"Enable closed captions",{"type":42,"tag":85,"props":2779,"children":2780},{},[2781,2790,2798,2806],{"type":42,"tag":107,"props":2782,"children":2783},{},[2784],{"type":42,"tag":68,"props":2785,"children":2787},{"className":2786},[],[2788],{"type":47,"value":2789},"isSupportPolling",{"type":42,"tag":107,"props":2791,"children":2792},{},[2793],{"type":42,"tag":68,"props":2794,"children":2796},{"className":2795},[],[2797],{"type":47,"value":2037},{"type":42,"tag":107,"props":2799,"children":2800},{},[2801],{"type":42,"tag":68,"props":2802,"children":2804},{"className":2803},[],[2805],{"type":47,"value":2046},{"type":42,"tag":107,"props":2807,"children":2808},{},[2809],{"type":47,"value":2810},"Enable polling",{"type":42,"tag":85,"props":2812,"children":2813},{},[2814,2823,2831,2839],{"type":42,"tag":107,"props":2815,"children":2816},{},[2817],{"type":42,"tag":68,"props":2818,"children":2820},{"className":2819},[],[2821],{"type":47,"value":2822},"isSupportBreakout",{"type":42,"tag":107,"props":2824,"children":2825},{},[2826],{"type":42,"tag":68,"props":2827,"children":2829},{"className":2828},[],[2830],{"type":47,"value":2037},{"type":42,"tag":107,"props":2832,"children":2833},{},[2834],{"type":42,"tag":68,"props":2835,"children":2837},{"className":2836},[],[2838],{"type":47,"value":2046},{"type":42,"tag":107,"props":2840,"children":2841},{},[2842],{"type":47,"value":2843},"Enable breakout rooms",{"type":42,"tag":85,"props":2845,"children":2846},{},[2847,2856,2864,2872],{"type":42,"tag":107,"props":2848,"children":2849},{},[2850],{"type":42,"tag":68,"props":2851,"children":2853},{"className":2852},[],[2854],{"type":47,"value":2855},"isSupportNonverbal",{"type":42,"tag":107,"props":2857,"children":2858},{},[2859],{"type":42,"tag":68,"props":2860,"children":2862},{"className":2861},[],[2863],{"type":47,"value":2037},{"type":42,"tag":107,"props":2865,"children":2866},{},[2867],{"type":42,"tag":68,"props":2868,"children":2870},{"className":2869},[],[2871],{"type":47,"value":2046},{"type":42,"tag":107,"props":2873,"children":2874},{},[2875],{"type":47,"value":2876},"Enable nonverbal feedback",{"type":42,"tag":85,"props":2878,"children":2879},{},[2880,2889,2897,2905],{"type":42,"tag":107,"props":2881,"children":2882},{},[2883],{"type":42,"tag":68,"props":2884,"children":2886},{"className":2885},[],[2887],{"type":47,"value":2888},"isSupportSimulive",{"type":42,"tag":107,"props":2890,"children":2891},{},[2892],{"type":42,"tag":68,"props":2893,"children":2895},{"className":2894},[],[2896],{"type":47,"value":2037},{"type":42,"tag":107,"props":2898,"children":2899},{},[2900],{"type":42,"tag":68,"props":2901,"children":2903},{"className":2902},[],[2904],{"type":47,"value":2080},{"type":42,"tag":107,"props":2906,"children":2907},{},[2908],{"type":47,"value":2909},"Enable Simulive",{"type":42,"tag":85,"props":2911,"children":2912},{},[2913,2922,2930,2938],{"type":42,"tag":107,"props":2914,"children":2915},{},[2916],{"type":42,"tag":68,"props":2917,"children":2919},{"className":2918},[],[2920],{"type":47,"value":2921},"disableVoIP",{"type":42,"tag":107,"props":2923,"children":2924},{},[2925],{"type":42,"tag":68,"props":2926,"children":2928},{"className":2927},[],[2929],{"type":47,"value":2037},{"type":42,"tag":107,"props":2931,"children":2932},{},[2933],{"type":42,"tag":68,"props":2934,"children":2936},{"className":2935},[],[2937],{"type":47,"value":2080},{"type":42,"tag":107,"props":2939,"children":2940},{},[2941],{"type":47,"value":2942},"Disable VoIP",{"type":42,"tag":85,"props":2944,"children":2945},{},[2946,2955,2963,2971],{"type":42,"tag":107,"props":2947,"children":2948},{},[2949],{"type":42,"tag":68,"props":2950,"children":2952},{"className":2951},[],[2953],{"type":47,"value":2954},"disableReport",{"type":42,"tag":107,"props":2956,"children":2957},{},[2958],{"type":42,"tag":68,"props":2959,"children":2961},{"className":2960},[],[2962],{"type":47,"value":2037},{"type":42,"tag":107,"props":2964,"children":2965},{},[2966],{"type":42,"tag":68,"props":2967,"children":2969},{"className":2968},[],[2970],{"type":47,"value":2080},{"type":42,"tag":107,"props":2972,"children":2973},{},[2974],{"type":47,"value":2975},"Disable report feature",{"type":42,"tag":223,"props":2977,"children":2979},{"id":2978},"video-quality",[2980],{"type":47,"value":2981},"Video Quality",{"type":42,"tag":77,"props":2983,"children":2984},{},[2985,3007],{"type":42,"tag":81,"props":2986,"children":2987},{},[2988],{"type":42,"tag":85,"props":2989,"children":2990},{},[2991,2995,2999,3003],{"type":42,"tag":89,"props":2992,"children":2993},{},[2994],{"type":47,"value":1942},{"type":42,"tag":89,"props":2996,"children":2997},{},[2998],{"type":47,"value":1947},{"type":42,"tag":89,"props":3000,"children":3001},{},[3002],{"type":47,"value":2009},{"type":42,"tag":89,"props":3004,"children":3005},{},[3006],{"type":47,"value":1952},{"type":42,"tag":100,"props":3008,"children":3009},{},[3010,3045],{"type":42,"tag":85,"props":3011,"children":3012},{},[3013,3022,3030,3040],{"type":42,"tag":107,"props":3014,"children":3015},{},[3016],{"type":42,"tag":68,"props":3017,"children":3019},{"className":3018},[],[3020],{"type":47,"value":3021},"enableHD",{"type":42,"tag":107,"props":3023,"children":3024},{},[3025],{"type":42,"tag":68,"props":3026,"children":3028},{"className":3027},[],[3029],{"type":47,"value":2037},{"type":42,"tag":107,"props":3031,"children":3032},{},[3033,3038],{"type":42,"tag":68,"props":3034,"children":3036},{"className":3035},[],[3037],{"type":47,"value":2046},{"type":47,"value":3039}," (≥2.8.0)",{"type":42,"tag":107,"props":3041,"children":3042},{},[3043],{"type":47,"value":3044},"Enable 720p video",{"type":42,"tag":85,"props":3046,"children":3047},{},[3048,3057,3065,3073],{"type":42,"tag":107,"props":3049,"children":3050},{},[3051],{"type":42,"tag":68,"props":3052,"children":3054},{"className":3053},[],[3055],{"type":47,"value":3056},"enableFullHD",{"type":42,"tag":107,"props":3058,"children":3059},{},[3060],{"type":42,"tag":68,"props":3061,"children":3063},{"className":3062},[],[3064],{"type":47,"value":2037},{"type":42,"tag":107,"props":3066,"children":3067},{},[3068],{"type":42,"tag":68,"props":3069,"children":3071},{"className":3070},[],[3072],{"type":47,"value":2080},{"type":42,"tag":107,"props":3074,"children":3075},{},[3076],{"type":47,"value":3077},"Enable 1080p for webinar attendees",{"type":42,"tag":223,"props":3079,"children":3081},{"id":3080},"advanced",[3082],{"type":47,"value":3083},"Advanced",{"type":42,"tag":77,"props":3085,"children":3086},{},[3087,3109],{"type":42,"tag":81,"props":3088,"children":3089},{},[3090],{"type":42,"tag":85,"props":3091,"children":3092},{},[3093,3097,3101,3105],{"type":42,"tag":89,"props":3094,"children":3095},{},[3096],{"type":47,"value":1942},{"type":42,"tag":89,"props":3098,"children":3099},{},[3100],{"type":47,"value":1947},{"type":42,"tag":89,"props":3102,"children":3103},{},[3104],{"type":47,"value":2009},{"type":42,"tag":89,"props":3106,"children":3107},{},[3108],{"type":47,"value":1952},{"type":42,"tag":100,"props":3110,"children":3111},{},[3112,3145,3178,3211,3245,3275,3304,3337,3370,3405,3438],{"type":42,"tag":85,"props":3113,"children":3114},{},[3115,3124,3132,3140],{"type":42,"tag":107,"props":3116,"children":3117},{},[3118],{"type":42,"tag":68,"props":3119,"children":3121},{"className":3120},[],[3122],{"type":47,"value":3123},"debug",{"type":42,"tag":107,"props":3125,"children":3126},{},[3127],{"type":42,"tag":68,"props":3128,"children":3130},{"className":3129},[],[3131],{"type":47,"value":2037},{"type":42,"tag":107,"props":3133,"children":3134},{},[3135],{"type":42,"tag":68,"props":3136,"children":3138},{"className":3137},[],[3139],{"type":47,"value":2080},{"type":42,"tag":107,"props":3141,"children":3142},{},[3143],{"type":47,"value":3144},"Enable debug logging",{"type":42,"tag":85,"props":3146,"children":3147},{},[3148,3157,3165,3173],{"type":42,"tag":107,"props":3149,"children":3150},{},[3151],{"type":42,"tag":68,"props":3152,"children":3154},{"className":3153},[],[3155],{"type":47,"value":3156},"patchJsMedia",{"type":42,"tag":107,"props":3158,"children":3159},{},[3160],{"type":42,"tag":68,"props":3161,"children":3163},{"className":3162},[],[3164],{"type":47,"value":2037},{"type":42,"tag":107,"props":3166,"children":3167},{},[3168],{"type":42,"tag":68,"props":3169,"children":3171},{"className":3170},[],[3172],{"type":47,"value":2080},{"type":42,"tag":107,"props":3174,"children":3175},{},[3176],{"type":47,"value":3177},"Auto-apply media fixes",{"type":42,"tag":85,"props":3179,"children":3180},{},[3181,3190,3198,3206],{"type":42,"tag":107,"props":3182,"children":3183},{},[3184],{"type":42,"tag":68,"props":3185,"children":3187},{"className":3186},[],[3188],{"type":47,"value":3189},"disableCORP",{"type":42,"tag":107,"props":3191,"children":3192},{},[3193],{"type":42,"tag":68,"props":3194,"children":3196},{"className":3195},[],[3197],{"type":47,"value":2037},{"type":42,"tag":107,"props":3199,"children":3200},{},[3201],{"type":42,"tag":68,"props":3202,"children":3204},{"className":3203},[],[3205],{"type":47,"value":2080},{"type":42,"tag":107,"props":3207,"children":3208},{},[3209],{"type":47,"value":3210},"Disable web isolation",{"type":42,"tag":85,"props":3212,"children":3213},{},[3214,3223,3231,3240],{"type":42,"tag":107,"props":3215,"children":3216},{},[3217],{"type":42,"tag":68,"props":3218,"children":3220},{"className":3219},[],[3221],{"type":47,"value":3222},"helper",{"type":42,"tag":107,"props":3224,"children":3225},{},[3226],{"type":42,"tag":68,"props":3227,"children":3229},{"className":3228},[],[3230],{"type":47,"value":1976},{"type":42,"tag":107,"props":3232,"children":3233},{},[3234],{"type":42,"tag":68,"props":3235,"children":3237},{"className":3236},[],[3238],{"type":47,"value":3239},"''",{"type":42,"tag":107,"props":3241,"children":3242},{},[3243],{"type":47,"value":3244},"Path to helper.html",{"type":42,"tag":85,"props":3246,"children":3247},{},[3248,3257,3265,3270],{"type":42,"tag":107,"props":3249,"children":3250},{},[3251],{"type":42,"tag":68,"props":3252,"children":3254},{"className":3253},[],[3255],{"type":47,"value":3256},"externalLinkPage",{"type":42,"tag":107,"props":3258,"children":3259},{},[3260],{"type":42,"tag":68,"props":3261,"children":3263},{"className":3262},[],[3264],{"type":47,"value":1976},{"type":42,"tag":107,"props":3266,"children":3267},{},[3268],{"type":47,"value":3269},"-",{"type":42,"tag":107,"props":3271,"children":3272},{},[3273],{"type":47,"value":3274},"Page for external links",{"type":42,"tag":85,"props":3276,"children":3277},{},[3278,3287,3295,3299],{"type":42,"tag":107,"props":3279,"children":3280},{},[3281],{"type":42,"tag":68,"props":3282,"children":3284},{"className":3283},[],[3285],{"type":47,"value":3286},"webEndpoint",{"type":42,"tag":107,"props":3288,"children":3289},{},[3290],{"type":42,"tag":68,"props":3291,"children":3293},{"className":3292},[],[3294],{"type":47,"value":1976},{"type":42,"tag":107,"props":3296,"children":3297},{},[3298],{"type":47,"value":3269},{"type":42,"tag":107,"props":3300,"children":3301},{},[3302],{"type":47,"value":3303},"For ZFG environments",{"type":42,"tag":85,"props":3305,"children":3306},{},[3307,3316,3324,3332],{"type":42,"tag":107,"props":3308,"children":3309},{},[3310],{"type":42,"tag":68,"props":3311,"children":3313},{"className":3312},[],[3314],{"type":47,"value":3315},"leaveOnPageUnload",{"type":42,"tag":107,"props":3317,"children":3318},{},[3319],{"type":42,"tag":68,"props":3320,"children":3322},{"className":3321},[],[3323],{"type":47,"value":2037},{"type":42,"tag":107,"props":3325,"children":3326},{},[3327],{"type":42,"tag":68,"props":3328,"children":3330},{"className":3329},[],[3331],{"type":47,"value":2080},{"type":42,"tag":107,"props":3333,"children":3334},{},[3335],{"type":47,"value":3336},"Auto cleanup on page close",{"type":42,"tag":85,"props":3338,"children":3339},{},[3340,3349,3357,3365],{"type":42,"tag":107,"props":3341,"children":3342},{},[3343],{"type":42,"tag":68,"props":3344,"children":3346},{"className":3345},[],[3347],{"type":47,"value":3348},"isShowJoiningErrorDialog",{"type":42,"tag":107,"props":3350,"children":3351},{},[3352],{"type":42,"tag":68,"props":3353,"children":3355},{"className":3354},[],[3356],{"type":47,"value":2037},{"type":42,"tag":107,"props":3358,"children":3359},{},[3360],{"type":42,"tag":68,"props":3361,"children":3363},{"className":3362},[],[3364],{"type":47,"value":2046},{"type":42,"tag":107,"props":3366,"children":3367},{},[3368],{"type":47,"value":3369},"Show error dialog on join failure",{"type":42,"tag":85,"props":3371,"children":3372},{},[3373,3382,3391,3400],{"type":42,"tag":107,"props":3374,"children":3375},{},[3376],{"type":42,"tag":68,"props":3377,"children":3379},{"className":3378},[],[3380],{"type":47,"value":3381},"meetingInfo",{"type":42,"tag":107,"props":3383,"children":3384},{},[3385],{"type":42,"tag":68,"props":3386,"children":3388},{"className":3387},[],[3389],{"type":47,"value":3390},"Array\u003Cstring>",{"type":42,"tag":107,"props":3392,"children":3393},{},[3394],{"type":42,"tag":68,"props":3395,"children":3397},{"className":3396},[],[3398],{"type":47,"value":3399},"[...]",{"type":42,"tag":107,"props":3401,"children":3402},{},[3403],{"type":47,"value":3404},"Meeting info to display",{"type":42,"tag":85,"props":3406,"children":3407},{},[3408,3417,3425,3433],{"type":42,"tag":107,"props":3409,"children":3410},{},[3411],{"type":42,"tag":68,"props":3412,"children":3414},{"className":3413},[],[3415],{"type":47,"value":3416},"inviteUrlFormat",{"type":42,"tag":107,"props":3418,"children":3419},{},[3420],{"type":42,"tag":68,"props":3421,"children":3423},{"className":3422},[],[3424],{"type":47,"value":1976},{"type":42,"tag":107,"props":3426,"children":3427},{},[3428],{"type":42,"tag":68,"props":3429,"children":3431},{"className":3430},[],[3432],{"type":47,"value":3239},{"type":42,"tag":107,"props":3434,"children":3435},{},[3436],{"type":47,"value":3437},"Custom invite URL format",{"type":42,"tag":85,"props":3439,"children":3440},{},[3441,3450,3459,3468],{"type":42,"tag":107,"props":3442,"children":3443},{},[3444],{"type":42,"tag":68,"props":3445,"children":3447},{"className":3446},[],[3448],{"type":47,"value":3449},"loginWindow",{"type":42,"tag":107,"props":3451,"children":3452},{},[3453],{"type":42,"tag":68,"props":3454,"children":3456},{"className":3455},[],[3457],{"type":47,"value":3458},"object",{"type":42,"tag":107,"props":3460,"children":3461},{},[3462],{"type":42,"tag":68,"props":3463,"children":3465},{"className":3464},[],[3466],{"type":47,"value":3467},"{width: 400, height: 380}",{"type":42,"tag":107,"props":3469,"children":3470},{},[3471],{"type":47,"value":3472},"Login popup size",{"type":42,"tag":223,"props":3474,"children":3476},{"id":3475},"callbacks",[3477],{"type":47,"value":3478},"Callbacks",{"type":42,"tag":77,"props":3480,"children":3481},{},[3482,3500],{"type":42,"tag":81,"props":3483,"children":3484},{},[3485],{"type":42,"tag":85,"props":3486,"children":3487},{},[3488,3492,3496],{"type":42,"tag":89,"props":3489,"children":3490},{},[3491],{"type":47,"value":1942},{"type":42,"tag":89,"props":3493,"children":3494},{},[3495],{"type":47,"value":1947},{"type":42,"tag":89,"props":3497,"children":3498},{},[3499],{"type":47,"value":1952},{"type":42,"tag":100,"props":3501,"children":3502},{},[3503,3529],{"type":42,"tag":85,"props":3504,"children":3505},{},[3506,3515,3524],{"type":42,"tag":107,"props":3507,"children":3508},{},[3509],{"type":42,"tag":68,"props":3510,"children":3512},{"className":3511},[],[3513],{"type":47,"value":3514},"success",{"type":42,"tag":107,"props":3516,"children":3517},{},[3518],{"type":42,"tag":68,"props":3519,"children":3521},{"className":3520},[],[3522],{"type":47,"value":3523},"Function",{"type":42,"tag":107,"props":3525,"children":3526},{},[3527],{"type":47,"value":3528},"Called on successful init",{"type":42,"tag":85,"props":3530,"children":3531},{},[3532,3540,3548],{"type":42,"tag":107,"props":3533,"children":3534},{},[3535],{"type":42,"tag":68,"props":3536,"children":3538},{"className":3537},[],[3539],{"type":47,"value":1555},{"type":42,"tag":107,"props":3541,"children":3542},{},[3543],{"type":42,"tag":68,"props":3544,"children":3546},{"className":3545},[],[3547],{"type":47,"value":3523},{"type":42,"tag":107,"props":3549,"children":3550},{},[3551],{"type":47,"value":3552},"Called on init failure",{"type":42,"tag":56,"props":3554,"children":3556},{"id":3555},"zoommtgjoin-all-options",[3557],{"type":47,"value":3558},"ZoomMtg.join() - All Options",{"type":42,"tag":223,"props":3560,"children":3562},{"id":3561},"required-1",[3563],{"type":47,"value":1928},{"type":42,"tag":77,"props":3565,"children":3566},{},[3567,3585],{"type":42,"tag":81,"props":3568,"children":3569},{},[3570],{"type":42,"tag":85,"props":3571,"children":3572},{},[3573,3577,3581],{"type":42,"tag":89,"props":3574,"children":3575},{},[3576],{"type":47,"value":1942},{"type":42,"tag":89,"props":3578,"children":3579},{},[3580],{"type":47,"value":1947},{"type":42,"tag":89,"props":3582,"children":3583},{},[3584],{"type":47,"value":1952},{"type":42,"tag":100,"props":3586,"children":3587},{},[3588,3613,3639,3664],{"type":42,"tag":85,"props":3589,"children":3590},{},[3591,3600,3608],{"type":42,"tag":107,"props":3592,"children":3593},{},[3594],{"type":42,"tag":68,"props":3595,"children":3597},{"className":3596},[],[3598],{"type":47,"value":3599},"signature",{"type":42,"tag":107,"props":3601,"children":3602},{},[3603],{"type":42,"tag":68,"props":3604,"children":3606},{"className":3605},[],[3607],{"type":47,"value":1976},{"type":42,"tag":107,"props":3609,"children":3610},{},[3611],{"type":47,"value":3612},"SDK JWT from backend (v5.0+: must include appKey prefix)",{"type":42,"tag":85,"props":3614,"children":3615},{},[3616,3625,3634],{"type":42,"tag":107,"props":3617,"children":3618},{},[3619],{"type":42,"tag":68,"props":3620,"children":3622},{"className":3621},[],[3623],{"type":47,"value":3624},"meetingNumber",{"type":42,"tag":107,"props":3626,"children":3627},{},[3628],{"type":42,"tag":68,"props":3629,"children":3631},{"className":3630},[],[3632],{"type":47,"value":3633},"string | number",{"type":42,"tag":107,"props":3635,"children":3636},{},[3637],{"type":47,"value":3638},"Meeting or webinar number",{"type":42,"tag":85,"props":3640,"children":3641},{},[3642,3651,3659],{"type":42,"tag":107,"props":3643,"children":3644},{},[3645],{"type":42,"tag":68,"props":3646,"children":3648},{"className":3647},[],[3649],{"type":47,"value":3650},"userName",{"type":42,"tag":107,"props":3652,"children":3653},{},[3654],{"type":42,"tag":68,"props":3655,"children":3657},{"className":3656},[],[3658],{"type":47,"value":1976},{"type":42,"tag":107,"props":3660,"children":3661},{},[3662],{"type":47,"value":3663},"Display name",{"type":42,"tag":85,"props":3665,"children":3666},{},[3667,3675,3683],{"type":42,"tag":107,"props":3668,"children":3669},{},[3670],{"type":42,"tag":68,"props":3671,"children":3673},{"className":3672},[],[3674],{"type":47,"value":177},{"type":42,"tag":107,"props":3676,"children":3677},{},[3678],{"type":42,"tag":68,"props":3679,"children":3681},{"className":3680},[],[3682],{"type":47,"value":1976},{"type":42,"tag":107,"props":3684,"children":3685},{},[3686],{"type":47,"value":3687},"Meeting password (capital W!)",{"type":42,"tag":223,"props":3689,"children":3691},{"id":3690},"authentication",[3692],{"type":47,"value":3693},"Authentication",{"type":42,"tag":77,"props":3695,"children":3696},{},[3697,3720],{"type":42,"tag":81,"props":3698,"children":3699},{},[3700],{"type":42,"tag":85,"props":3701,"children":3702},{},[3703,3707,3711,3716],{"type":42,"tag":89,"props":3704,"children":3705},{},[3706],{"type":47,"value":1942},{"type":42,"tag":89,"props":3708,"children":3709},{},[3710],{"type":47,"value":1947},{"type":42,"tag":89,"props":3712,"children":3713},{},[3714],{"type":47,"value":3715},"When Required",{"type":42,"tag":89,"props":3717,"children":3718},{},[3719],{"type":47,"value":1952},{"type":42,"tag":100,"props":3721,"children":3722},{},[3723,3752,3781,3810],{"type":42,"tag":85,"props":3724,"children":3725},{},[3726,3734,3742,3747],{"type":42,"tag":107,"props":3727,"children":3728},{},[3729],{"type":42,"tag":68,"props":3730,"children":3732},{"className":3731},[],[3733],{"type":47,"value":1732},{"type":42,"tag":107,"props":3735,"children":3736},{},[3737],{"type":42,"tag":68,"props":3738,"children":3740},{"className":3739},[],[3741],{"type":47,"value":1976},{"type":42,"tag":107,"props":3743,"children":3744},{},[3745],{"type":47,"value":3746},"Starting as host",{"type":42,"tag":107,"props":3748,"children":3749},{},[3750],{"type":47,"value":3751},"Host's Zoom Access Key",{"type":42,"tag":85,"props":3753,"children":3754},{},[3755,3763,3771,3776],{"type":42,"tag":107,"props":3756,"children":3757},{},[3758],{"type":42,"tag":68,"props":3759,"children":3761},{"className":3760},[],[3762],{"type":47,"value":1686},{"type":42,"tag":107,"props":3764,"children":3765},{},[3766],{"type":42,"tag":68,"props":3767,"children":3769},{"className":3768},[],[3770],{"type":47,"value":1976},{"type":42,"tag":107,"props":3772,"children":3773},{},[3774],{"type":47,"value":3775},"Registration required",{"type":42,"tag":107,"props":3777,"children":3778},{},[3779],{"type":47,"value":3780},"Registrant token",{"type":42,"tag":85,"props":3782,"children":3783},{},[3784,3792,3800,3805],{"type":42,"tag":107,"props":3785,"children":3786},{},[3787],{"type":42,"tag":68,"props":3788,"children":3790},{"className":3789},[],[3791],{"type":47,"value":1638},{"type":42,"tag":107,"props":3793,"children":3794},{},[3795],{"type":42,"tag":68,"props":3796,"children":3798},{"className":3797},[],[3799],{"type":47,"value":1976},{"type":42,"tag":107,"props":3801,"children":3802},{},[3803],{"type":47,"value":3804},"Webinars",{"type":42,"tag":107,"props":3806,"children":3807},{},[3808],{"type":47,"value":3809},"User email",{"type":42,"tag":85,"props":3811,"children":3812},{},[3813,3822,3830,3835],{"type":42,"tag":107,"props":3814,"children":3815},{},[3816],{"type":42,"tag":68,"props":3817,"children":3819},{"className":3818},[],[3820],{"type":47,"value":3821},"obfToken",{"type":42,"tag":107,"props":3823,"children":3824},{},[3825],{"type":42,"tag":68,"props":3826,"children":3828},{"className":3827},[],[3829],{"type":47,"value":1976},{"type":42,"tag":107,"props":3831,"children":3832},{},[3833],{"type":47,"value":3834},"March 2026+",{"type":42,"tag":107,"props":3836,"children":3837},{},[3838],{"type":47,"value":3839},"App Privilege Token",{"type":42,"tag":223,"props":3841,"children":3843},{"id":3842},"optional",[3844],{"type":47,"value":3845},"Optional",{"type":42,"tag":77,"props":3847,"children":3848},{},[3849,3867],{"type":42,"tag":81,"props":3850,"children":3851},{},[3852],{"type":42,"tag":85,"props":3853,"children":3854},{},[3855,3859,3863],{"type":42,"tag":89,"props":3856,"children":3857},{},[3858],{"type":47,"value":1942},{"type":42,"tag":89,"props":3860,"children":3861},{},[3862],{"type":47,"value":1947},{"type":42,"tag":89,"props":3864,"children":3865},{},[3866],{"type":47,"value":1952},{"type":42,"tag":100,"props":3868,"children":3869},{},[3870,3895],{"type":42,"tag":85,"props":3871,"children":3872},{},[3873,3882,3890],{"type":42,"tag":107,"props":3874,"children":3875},{},[3876],{"type":42,"tag":68,"props":3877,"children":3879},{"className":3878},[],[3880],{"type":47,"value":3881},"customerKey",{"type":42,"tag":107,"props":3883,"children":3884},{},[3885],{"type":42,"tag":68,"props":3886,"children":3888},{"className":3887},[],[3889],{"type":47,"value":1976},{"type":42,"tag":107,"props":3891,"children":3892},{},[3893],{"type":47,"value":3894},"Custom ID (max 36 chars)",{"type":42,"tag":85,"props":3896,"children":3897},{},[3898,3907,3915],{"type":42,"tag":107,"props":3899,"children":3900},{},[3901],{"type":42,"tag":68,"props":3902,"children":3904},{"className":3903},[],[3905],{"type":47,"value":3906},"recordingToken",{"type":42,"tag":107,"props":3908,"children":3909},{},[3910],{"type":42,"tag":68,"props":3911,"children":3913},{"className":3912},[],[3914],{"type":47,"value":1976},{"type":42,"tag":107,"props":3916,"children":3917},{},[3918],{"type":47,"value":3919},"Local recording permission",{"type":42,"tag":223,"props":3921,"children":3923},{"id":3922},"callbacks-1",[3924],{"type":47,"value":3478},{"type":42,"tag":77,"props":3926,"children":3927},{},[3928,3946],{"type":42,"tag":81,"props":3929,"children":3930},{},[3931],{"type":42,"tag":85,"props":3932,"children":3933},{},[3934,3938,3942],{"type":42,"tag":89,"props":3935,"children":3936},{},[3937],{"type":47,"value":1942},{"type":42,"tag":89,"props":3939,"children":3940},{},[3941],{"type":47,"value":1947},{"type":42,"tag":89,"props":3943,"children":3944},{},[3945],{"type":47,"value":1952},{"type":42,"tag":100,"props":3947,"children":3948},{},[3949,3973],{"type":42,"tag":85,"props":3950,"children":3951},{},[3952,3960,3968],{"type":42,"tag":107,"props":3953,"children":3954},{},[3955],{"type":42,"tag":68,"props":3956,"children":3958},{"className":3957},[],[3959],{"type":47,"value":3514},{"type":42,"tag":107,"props":3961,"children":3962},{},[3963],{"type":42,"tag":68,"props":3964,"children":3966},{"className":3965},[],[3967],{"type":47,"value":3523},{"type":42,"tag":107,"props":3969,"children":3970},{},[3971],{"type":47,"value":3972},"Called on successful join",{"type":42,"tag":85,"props":3974,"children":3975},{},[3976,3984,3992],{"type":42,"tag":107,"props":3977,"children":3978},{},[3979],{"type":42,"tag":68,"props":3980,"children":3982},{"className":3981},[],[3983],{"type":47,"value":1555},{"type":42,"tag":107,"props":3985,"children":3986},{},[3987],{"type":42,"tag":68,"props":3988,"children":3990},{"className":3989},[],[3991],{"type":47,"value":3523},{"type":42,"tag":107,"props":3993,"children":3994},{},[3995],{"type":47,"value":3996},"Called on join failure",{"type":42,"tag":56,"props":3998,"children":4000},{"id":3999},"event-listeners",[4001],{"type":47,"value":4002},"Event Listeners",{"type":42,"tag":223,"props":4004,"children":4006},{"id":4005},"user-events",[4007],{"type":47,"value":4008},"User Events",{"type":42,"tag":230,"props":4010,"children":4012},{"className":269,"code":4011,"language":271,"meta":235,"style":235},"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",[4013],{"type":42,"tag":68,"props":4014,"children":4015},{"__ignoreMap":235},[4016,4074,4124,4132,4147,4154,4210,4258,4266,4274,4282,4290,4298,4306,4314,4322,4330,4338,4353,4360,4416,4464,4479,4486,4542,4590],{"type":42,"tag":241,"props":4017,"children":4018},{"class":243,"line":244},[4019,4023,4027,4032,4036,4040,4045,4049,4053,4057,4062,4066,4070],{"type":42,"tag":241,"props":4020,"children":4021},{"style":293},[4022],{"type":47,"value":73},{"type":42,"tag":241,"props":4024,"children":4025},{"style":287},[4026],{"type":47,"value":654},{"type":42,"tag":241,"props":4028,"children":4029},{"style":657},[4030],{"type":47,"value":4031},"inMeetingServiceListener",{"type":42,"tag":241,"props":4033,"children":4034},{"style":293},[4035],{"type":47,"value":665},{"type":42,"tag":241,"props":4037,"children":4038},{"style":287},[4039],{"type":47,"value":321},{"type":42,"tag":241,"props":4041,"children":4042},{"style":253},[4043],{"type":47,"value":4044},"onUserJoin",{"type":42,"tag":241,"props":4046,"children":4047},{"style":287},[4048],{"type":47,"value":321},{"type":42,"tag":241,"props":4050,"children":4051},{"style":287},[4052],{"type":47,"value":683},{"type":42,"tag":241,"props":4054,"children":4055},{"style":287},[4056],{"type":47,"value":1258},{"type":42,"tag":241,"props":4058,"children":4059},{"style":1261},[4060],{"type":47,"value":4061},"data",{"type":42,"tag":241,"props":4063,"children":4064},{"style":287},[4065],{"type":47,"value":862},{"type":42,"tag":241,"props":4067,"children":4068},{"style":358},[4069],{"type":47,"value":904},{"type":42,"tag":241,"props":4071,"children":4072},{"style":287},[4073],{"type":47,"value":909},{"type":42,"tag":241,"props":4075,"children":4076},{"class":243,"line":397},[4077,4082,4086,4090,4094,4098,4103,4107,4111,4116,4120],{"type":42,"tag":241,"props":4078,"children":4079},{"style":293},[4080],{"type":47,"value":4081},"  console",{"type":42,"tag":241,"props":4083,"children":4084},{"style":287},[4085],{"type":47,"value":654},{"type":42,"tag":241,"props":4087,"children":4088},{"style":657},[4089],{"type":47,"value":660},{"type":42,"tag":241,"props":4091,"children":4092},{"style":352},[4093],{"type":47,"value":665},{"type":42,"tag":241,"props":4095,"children":4096},{"style":287},[4097],{"type":47,"value":321},{"type":42,"tag":241,"props":4099,"children":4100},{"style":253},[4101],{"type":47,"value":4102},"User joined:",{"type":42,"tag":241,"props":4104,"children":4105},{"style":287},[4106],{"type":47,"value":321},{"type":42,"tag":241,"props":4108,"children":4109},{"style":287},[4110],{"type":47,"value":683},{"type":42,"tag":241,"props":4112,"children":4113},{"style":293},[4114],{"type":47,"value":4115}," data",{"type":42,"tag":241,"props":4117,"children":4118},{"style":352},[4119],{"type":47,"value":862},{"type":42,"tag":241,"props":4121,"children":4122},{"style":287},[4123],{"type":47,"value":326},{"type":42,"tag":241,"props":4125,"children":4126},{"class":243,"line":442},[4127],{"type":42,"tag":241,"props":4128,"children":4129},{"style":638},[4130],{"type":47,"value":4131},"  \u002F\u002F { userId, userName, ... }\n",{"type":42,"tag":241,"props":4133,"children":4134},{"class":243,"line":487},[4135,4139,4143],{"type":42,"tag":241,"props":4136,"children":4137},{"style":287},[4138],{"type":47,"value":1908},{"type":42,"tag":241,"props":4140,"children":4141},{"style":293},[4142],{"type":47,"value":862},{"type":42,"tag":241,"props":4144,"children":4145},{"style":287},[4146],{"type":47,"value":326},{"type":42,"tag":241,"props":4148,"children":4149},{"class":243,"line":532},[4150],{"type":42,"tag":241,"props":4151,"children":4152},{"emptyLinePlaceholder":711},[4153],{"type":47,"value":714},{"type":42,"tag":241,"props":4155,"children":4156},{"class":243,"line":577},[4157,4161,4165,4169,4173,4177,4182,4186,4190,4194,4198,4202,4206],{"type":42,"tag":241,"props":4158,"children":4159},{"style":293},[4160],{"type":47,"value":73},{"type":42,"tag":241,"props":4162,"children":4163},{"style":287},[4164],{"type":47,"value":654},{"type":42,"tag":241,"props":4166,"children":4167},{"style":657},[4168],{"type":47,"value":4031},{"type":42,"tag":241,"props":4170,"children":4171},{"style":293},[4172],{"type":47,"value":665},{"type":42,"tag":241,"props":4174,"children":4175},{"style":287},[4176],{"type":47,"value":321},{"type":42,"tag":241,"props":4178,"children":4179},{"style":253},[4180],{"type":47,"value":4181},"onUserLeave",{"type":42,"tag":241,"props":4183,"children":4184},{"style":287},[4185],{"type":47,"value":321},{"type":42,"tag":241,"props":4187,"children":4188},{"style":287},[4189],{"type":47,"value":683},{"type":42,"tag":241,"props":4191,"children":4192},{"style":287},[4193],{"type":47,"value":1258},{"type":42,"tag":241,"props":4195,"children":4196},{"style":1261},[4197],{"type":47,"value":4061},{"type":42,"tag":241,"props":4199,"children":4200},{"style":287},[4201],{"type":47,"value":862},{"type":42,"tag":241,"props":4203,"children":4204},{"style":358},[4205],{"type":47,"value":904},{"type":42,"tag":241,"props":4207,"children":4208},{"style":287},[4209],{"type":47,"value":909},{"type":42,"tag":241,"props":4211,"children":4212},{"class":243,"line":740},[4213,4217,4221,4225,4229,4233,4238,4242,4246,4250,4254],{"type":42,"tag":241,"props":4214,"children":4215},{"style":293},[4216],{"type":47,"value":4081},{"type":42,"tag":241,"props":4218,"children":4219},{"style":287},[4220],{"type":47,"value":654},{"type":42,"tag":241,"props":4222,"children":4223},{"style":657},[4224],{"type":47,"value":660},{"type":42,"tag":241,"props":4226,"children":4227},{"style":352},[4228],{"type":47,"value":665},{"type":42,"tag":241,"props":4230,"children":4231},{"style":287},[4232],{"type":47,"value":321},{"type":42,"tag":241,"props":4234,"children":4235},{"style":253},[4236],{"type":47,"value":4237},"User left:",{"type":42,"tag":241,"props":4239,"children":4240},{"style":287},[4241],{"type":47,"value":321},{"type":42,"tag":241,"props":4243,"children":4244},{"style":287},[4245],{"type":47,"value":683},{"type":42,"tag":241,"props":4247,"children":4248},{"style":293},[4249],{"type":47,"value":4115},{"type":42,"tag":241,"props":4251,"children":4252},{"style":352},[4253],{"type":47,"value":862},{"type":42,"tag":241,"props":4255,"children":4256},{"style":287},[4257],{"type":47,"value":326},{"type":42,"tag":241,"props":4259,"children":4260},{"class":243,"line":749},[4261],{"type":42,"tag":241,"props":4262,"children":4263},{"style":638},[4264],{"type":47,"value":4265},"  \u002F\u002F Reason codes:\n",{"type":42,"tag":241,"props":4267,"children":4268},{"class":243,"line":775},[4269],{"type":42,"tag":241,"props":4270,"children":4271},{"style":638},[4272],{"type":47,"value":4273},"  \u002F\u002F 0: OTHER\n",{"type":42,"tag":241,"props":4275,"children":4276},{"class":243,"line":800},[4277],{"type":42,"tag":241,"props":4278,"children":4279},{"style":638},[4280],{"type":47,"value":4281},"  \u002F\u002F 1: HOST_ENDED_MEETING\n",{"type":42,"tag":241,"props":4283,"children":4284},{"class":243,"line":808},[4285],{"type":42,"tag":241,"props":4286,"children":4287},{"style":638},[4288],{"type":47,"value":4289},"  \u002F\u002F 2: SELF_LEAVE_FROM_IN_MEETING\n",{"type":42,"tag":241,"props":4291,"children":4292},{"class":243,"line":817},[4293],{"type":42,"tag":241,"props":4294,"children":4295},{"style":638},[4296],{"type":47,"value":4297},"  \u002F\u002F 3: SELF_LEAVE_FROM_WAITING_ROOM\n",{"type":42,"tag":241,"props":4299,"children":4300},{"class":243,"line":869},[4301],{"type":42,"tag":241,"props":4302,"children":4303},{"style":638},[4304],{"type":47,"value":4305},"  \u002F\u002F 4: SELF_LEAVE_FROM_WAITING_FOR_HOST_START\n",{"type":42,"tag":241,"props":4307,"children":4308},{"class":243,"line":912},[4309],{"type":42,"tag":241,"props":4310,"children":4311},{"style":638},[4312],{"type":47,"value":4313},"  \u002F\u002F 5: MEETING_TRANSFER\n",{"type":42,"tag":241,"props":4315,"children":4316},{"class":243,"line":920},[4317],{"type":42,"tag":241,"props":4318,"children":4319},{"style":638},[4320],{"type":47,"value":4321},"  \u002F\u002F 6: KICK_OUT_FROM_MEETING\n",{"type":42,"tag":241,"props":4323,"children":4324},{"class":243,"line":929},[4325],{"type":42,"tag":241,"props":4326,"children":4327},{"style":638},[4328],{"type":47,"value":4329},"  \u002F\u002F 7: KICK_OUT_FROM_WAITING_ROOM\n",{"type":42,"tag":241,"props":4331,"children":4332},{"class":243,"line":956},[4333],{"type":42,"tag":241,"props":4334,"children":4335},{"style":638},[4336],{"type":47,"value":4337},"  \u002F\u002F 8: LEAVE_FROM_DISCLAIMER\n",{"type":42,"tag":241,"props":4339,"children":4340},{"class":243,"line":988},[4341,4345,4349],{"type":42,"tag":241,"props":4342,"children":4343},{"style":287},[4344],{"type":47,"value":1908},{"type":42,"tag":241,"props":4346,"children":4347},{"style":293},[4348],{"type":47,"value":862},{"type":42,"tag":241,"props":4350,"children":4351},{"style":287},[4352],{"type":47,"value":326},{"type":42,"tag":241,"props":4354,"children":4355},{"class":243,"line":1011},[4356],{"type":42,"tag":241,"props":4357,"children":4358},{"emptyLinePlaceholder":711},[4359],{"type":47,"value":714},{"type":42,"tag":241,"props":4361,"children":4362},{"class":243,"line":1047},[4363,4367,4371,4375,4379,4383,4388,4392,4396,4400,4404,4408,4412],{"type":42,"tag":241,"props":4364,"children":4365},{"style":293},[4366],{"type":47,"value":73},{"type":42,"tag":241,"props":4368,"children":4369},{"style":287},[4370],{"type":47,"value":654},{"type":42,"tag":241,"props":4372,"children":4373},{"style":657},[4374],{"type":47,"value":4031},{"type":42,"tag":241,"props":4376,"children":4377},{"style":293},[4378],{"type":47,"value":665},{"type":42,"tag":241,"props":4380,"children":4381},{"style":287},[4382],{"type":47,"value":321},{"type":42,"tag":241,"props":4384,"children":4385},{"style":253},[4386],{"type":47,"value":4387},"onUserUpdate",{"type":42,"tag":241,"props":4389,"children":4390},{"style":287},[4391],{"type":47,"value":321},{"type":42,"tag":241,"props":4393,"children":4394},{"style":287},[4395],{"type":47,"value":683},{"type":42,"tag":241,"props":4397,"children":4398},{"style":287},[4399],{"type":47,"value":1258},{"type":42,"tag":241,"props":4401,"children":4402},{"style":1261},[4403],{"type":47,"value":4061},{"type":42,"tag":241,"props":4405,"children":4406},{"style":287},[4407],{"type":47,"value":862},{"type":42,"tag":241,"props":4409,"children":4410},{"style":358},[4411],{"type":47,"value":904},{"type":42,"tag":241,"props":4413,"children":4414},{"style":287},[4415],{"type":47,"value":909},{"type":42,"tag":241,"props":4417,"children":4418},{"class":243,"line":1073},[4419,4423,4427,4431,4435,4439,4444,4448,4452,4456,4460],{"type":42,"tag":241,"props":4420,"children":4421},{"style":293},[4422],{"type":47,"value":4081},{"type":42,"tag":241,"props":4424,"children":4425},{"style":287},[4426],{"type":47,"value":654},{"type":42,"tag":241,"props":4428,"children":4429},{"style":657},[4430],{"type":47,"value":660},{"type":42,"tag":241,"props":4432,"children":4433},{"style":352},[4434],{"type":47,"value":665},{"type":42,"tag":241,"props":4436,"children":4437},{"style":287},[4438],{"type":47,"value":321},{"type":42,"tag":241,"props":4440,"children":4441},{"style":253},[4442],{"type":47,"value":4443},"User updated:",{"type":42,"tag":241,"props":4445,"children":4446},{"style":287},[4447],{"type":47,"value":321},{"type":42,"tag":241,"props":4449,"children":4450},{"style":287},[4451],{"type":47,"value":683},{"type":42,"tag":241,"props":4453,"children":4454},{"style":293},[4455],{"type":47,"value":4115},{"type":42,"tag":241,"props":4457,"children":4458},{"style":352},[4459],{"type":47,"value":862},{"type":42,"tag":241,"props":4461,"children":4462},{"style":287},[4463],{"type":47,"value":326},{"type":42,"tag":241,"props":4465,"children":4466},{"class":243,"line":1115},[4467,4471,4475],{"type":42,"tag":241,"props":4468,"children":4469},{"style":287},[4470],{"type":47,"value":1908},{"type":42,"tag":241,"props":4472,"children":4473},{"style":293},[4474],{"type":47,"value":862},{"type":42,"tag":241,"props":4476,"children":4477},{"style":287},[4478],{"type":47,"value":326},{"type":42,"tag":241,"props":4480,"children":4481},{"class":243,"line":1123},[4482],{"type":42,"tag":241,"props":4483,"children":4484},{"emptyLinePlaceholder":711},[4485],{"type":47,"value":714},{"type":42,"tag":241,"props":4487,"children":4488},{"class":243,"line":1132},[4489,4493,4497,4501,4505,4509,4514,4518,4522,4526,4530,4534,4538],{"type":42,"tag":241,"props":4490,"children":4491},{"style":293},[4492],{"type":47,"value":73},{"type":42,"tag":241,"props":4494,"children":4495},{"style":287},[4496],{"type":47,"value":654},{"type":42,"tag":241,"props":4498,"children":4499},{"style":657},[4500],{"type":47,"value":4031},{"type":42,"tag":241,"props":4502,"children":4503},{"style":293},[4504],{"type":47,"value":665},{"type":42,"tag":241,"props":4506,"children":4507},{"style":287},[4508],{"type":47,"value":321},{"type":42,"tag":241,"props":4510,"children":4511},{"style":253},[4512],{"type":47,"value":4513},"onUserIsInWaitingRoom",{"type":42,"tag":241,"props":4515,"children":4516},{"style":287},[4517],{"type":47,"value":321},{"type":42,"tag":241,"props":4519,"children":4520},{"style":287},[4521],{"type":47,"value":683},{"type":42,"tag":241,"props":4523,"children":4524},{"style":287},[4525],{"type":47,"value":1258},{"type":42,"tag":241,"props":4527,"children":4528},{"style":1261},[4529],{"type":47,"value":4061},{"type":42,"tag":241,"props":4531,"children":4532},{"style":287},[4533],{"type":47,"value":862},{"type":42,"tag":241,"props":4535,"children":4536},{"style":358},[4537],{"type":47,"value":904},{"type":42,"tag":241,"props":4539,"children":4540},{"style":287},[4541],{"type":47,"value":909},{"type":42,"tag":241,"props":4543,"children":4544},{"class":243,"line":1155},[4545,4549,4553,4557,4561,4565,4570,4574,4578,4582,4586],{"type":42,"tag":241,"props":4546,"children":4547},{"style":293},[4548],{"type":47,"value":4081},{"type":42,"tag":241,"props":4550,"children":4551},{"style":287},[4552],{"type":47,"value":654},{"type":42,"tag":241,"props":4554,"children":4555},{"style":657},[4556],{"type":47,"value":660},{"type":42,"tag":241,"props":4558,"children":4559},{"style":352},[4560],{"type":47,"value":665},{"type":42,"tag":241,"props":4562,"children":4563},{"style":287},[4564],{"type":47,"value":321},{"type":42,"tag":241,"props":4566,"children":4567},{"style":253},[4568],{"type":47,"value":4569},"User in waiting room:",{"type":42,"tag":241,"props":4571,"children":4572},{"style":287},[4573],{"type":47,"value":321},{"type":42,"tag":241,"props":4575,"children":4576},{"style":287},[4577],{"type":47,"value":683},{"type":42,"tag":241,"props":4579,"children":4580},{"style":293},[4581],{"type":47,"value":4115},{"type":42,"tag":241,"props":4583,"children":4584},{"style":352},[4585],{"type":47,"value":862},{"type":42,"tag":241,"props":4587,"children":4588},{"style":287},[4589],{"type":47,"value":326},{"type":42,"tag":241,"props":4591,"children":4592},{"class":243,"line":1177},[4593,4597,4601],{"type":42,"tag":241,"props":4594,"children":4595},{"style":287},[4596],{"type":47,"value":1908},{"type":42,"tag":241,"props":4598,"children":4599},{"style":293},[4600],{"type":47,"value":862},{"type":42,"tag":241,"props":4602,"children":4603},{"style":287},[4604],{"type":47,"value":326},{"type":42,"tag":223,"props":4606,"children":4608},{"id":4607},"meeting-status",[4609],{"type":47,"value":4610},"Meeting Status",{"type":42,"tag":230,"props":4612,"children":4614},{"className":269,"code":4613,"language":271,"meta":235,"style":235},"ZoomMtg.inMeetingServiceListener('onMeetingStatus', (data) => {\n  \u002F\u002F status: 1=connecting, 2=connected, 3=disconnected, 4=reconnecting\n  console.log('Status:', data.status);\n});\n",[4615],{"type":42,"tag":68,"props":4616,"children":4617},{"__ignoreMap":235},[4618,4674,4682,4739],{"type":42,"tag":241,"props":4619,"children":4620},{"class":243,"line":244},[4621,4625,4629,4633,4637,4641,4646,4650,4654,4658,4662,4666,4670],{"type":42,"tag":241,"props":4622,"children":4623},{"style":293},[4624],{"type":47,"value":73},{"type":42,"tag":241,"props":4626,"children":4627},{"style":287},[4628],{"type":47,"value":654},{"type":42,"tag":241,"props":4630,"children":4631},{"style":657},[4632],{"type":47,"value":4031},{"type":42,"tag":241,"props":4634,"children":4635},{"style":293},[4636],{"type":47,"value":665},{"type":42,"tag":241,"props":4638,"children":4639},{"style":287},[4640],{"type":47,"value":321},{"type":42,"tag":241,"props":4642,"children":4643},{"style":253},[4644],{"type":47,"value":4645},"onMeetingStatus",{"type":42,"tag":241,"props":4647,"children":4648},{"style":287},[4649],{"type":47,"value":321},{"type":42,"tag":241,"props":4651,"children":4652},{"style":287},[4653],{"type":47,"value":683},{"type":42,"tag":241,"props":4655,"children":4656},{"style":287},[4657],{"type":47,"value":1258},{"type":42,"tag":241,"props":4659,"children":4660},{"style":1261},[4661],{"type":47,"value":4061},{"type":42,"tag":241,"props":4663,"children":4664},{"style":287},[4665],{"type":47,"value":862},{"type":42,"tag":241,"props":4667,"children":4668},{"style":358},[4669],{"type":47,"value":904},{"type":42,"tag":241,"props":4671,"children":4672},{"style":287},[4673],{"type":47,"value":909},{"type":42,"tag":241,"props":4675,"children":4676},{"class":243,"line":397},[4677],{"type":42,"tag":241,"props":4678,"children":4679},{"style":638},[4680],{"type":47,"value":4681},"  \u002F\u002F status: 1=connecting, 2=connected, 3=disconnected, 4=reconnecting\n",{"type":42,"tag":241,"props":4683,"children":4684},{"class":243,"line":442},[4685,4689,4693,4697,4701,4705,4710,4714,4718,4722,4726,4731,4735],{"type":42,"tag":241,"props":4686,"children":4687},{"style":293},[4688],{"type":47,"value":4081},{"type":42,"tag":241,"props":4690,"children":4691},{"style":287},[4692],{"type":47,"value":654},{"type":42,"tag":241,"props":4694,"children":4695},{"style":657},[4696],{"type":47,"value":660},{"type":42,"tag":241,"props":4698,"children":4699},{"style":352},[4700],{"type":47,"value":665},{"type":42,"tag":241,"props":4702,"children":4703},{"style":287},[4704],{"type":47,"value":321},{"type":42,"tag":241,"props":4706,"children":4707},{"style":253},[4708],{"type":47,"value":4709},"Status:",{"type":42,"tag":241,"props":4711,"children":4712},{"style":287},[4713],{"type":47,"value":321},{"type":42,"tag":241,"props":4715,"children":4716},{"style":287},[4717],{"type":47,"value":683},{"type":42,"tag":241,"props":4719,"children":4720},{"style":293},[4721],{"type":47,"value":4115},{"type":42,"tag":241,"props":4723,"children":4724},{"style":287},[4725],{"type":47,"value":654},{"type":42,"tag":241,"props":4727,"children":4728},{"style":293},[4729],{"type":47,"value":4730},"status",{"type":42,"tag":241,"props":4732,"children":4733},{"style":352},[4734],{"type":47,"value":862},{"type":42,"tag":241,"props":4736,"children":4737},{"style":287},[4738],{"type":47,"value":326},{"type":42,"tag":241,"props":4740,"children":4741},{"class":243,"line":487},[4742,4746,4750],{"type":42,"tag":241,"props":4743,"children":4744},{"style":287},[4745],{"type":47,"value":1908},{"type":42,"tag":241,"props":4747,"children":4748},{"style":293},[4749],{"type":47,"value":862},{"type":42,"tag":241,"props":4751,"children":4752},{"style":287},[4753],{"type":47,"value":326},{"type":42,"tag":223,"props":4755,"children":4757},{"id":4756},"audiovideo-events",[4758],{"type":47,"value":4759},"Audio\u002FVideo Events",{"type":42,"tag":230,"props":4761,"children":4763},{"className":269,"code":4762,"language":271,"meta":235,"style":235},"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",[4764],{"type":42,"tag":68,"props":4765,"children":4766},{"__ignoreMap":235},[4767,4823,4831,4879,4894,4901,4957,4965,4973,5021,5036,5043,5099,5147,5162,5169,5225,5273],{"type":42,"tag":241,"props":4768,"children":4769},{"class":243,"line":244},[4770,4774,4778,4782,4786,4790,4795,4799,4803,4807,4811,4815,4819],{"type":42,"tag":241,"props":4771,"children":4772},{"style":293},[4773],{"type":47,"value":73},{"type":42,"tag":241,"props":4775,"children":4776},{"style":287},[4777],{"type":47,"value":654},{"type":42,"tag":241,"props":4779,"children":4780},{"style":657},[4781],{"type":47,"value":4031},{"type":42,"tag":241,"props":4783,"children":4784},{"style":293},[4785],{"type":47,"value":665},{"type":42,"tag":241,"props":4787,"children":4788},{"style":287},[4789],{"type":47,"value":321},{"type":42,"tag":241,"props":4791,"children":4792},{"style":253},[4793],{"type":47,"value":4794},"onActiveSpeaker",{"type":42,"tag":241,"props":4796,"children":4797},{"style":287},[4798],{"type":47,"value":321},{"type":42,"tag":241,"props":4800,"children":4801},{"style":287},[4802],{"type":47,"value":683},{"type":42,"tag":241,"props":4804,"children":4805},{"style":287},[4806],{"type":47,"value":1258},{"type":42,"tag":241,"props":4808,"children":4809},{"style":1261},[4810],{"type":47,"value":4061},{"type":42,"tag":241,"props":4812,"children":4813},{"style":287},[4814],{"type":47,"value":862},{"type":42,"tag":241,"props":4816,"children":4817},{"style":358},[4818],{"type":47,"value":904},{"type":42,"tag":241,"props":4820,"children":4821},{"style":287},[4822],{"type":47,"value":909},{"type":42,"tag":241,"props":4824,"children":4825},{"class":243,"line":397},[4826],{"type":42,"tag":241,"props":4827,"children":4828},{"style":638},[4829],{"type":47,"value":4830},"  \u002F\u002F [{userId, userName}]\n",{"type":42,"tag":241,"props":4832,"children":4833},{"class":243,"line":442},[4834,4838,4842,4846,4850,4854,4859,4863,4867,4871,4875],{"type":42,"tag":241,"props":4835,"children":4836},{"style":293},[4837],{"type":47,"value":4081},{"type":42,"tag":241,"props":4839,"children":4840},{"style":287},[4841],{"type":47,"value":654},{"type":42,"tag":241,"props":4843,"children":4844},{"style":657},[4845],{"type":47,"value":660},{"type":42,"tag":241,"props":4847,"children":4848},{"style":352},[4849],{"type":47,"value":665},{"type":42,"tag":241,"props":4851,"children":4852},{"style":287},[4853],{"type":47,"value":321},{"type":42,"tag":241,"props":4855,"children":4856},{"style":253},[4857],{"type":47,"value":4858},"Active speaker:",{"type":42,"tag":241,"props":4860,"children":4861},{"style":287},[4862],{"type":47,"value":321},{"type":42,"tag":241,"props":4864,"children":4865},{"style":287},[4866],{"type":47,"value":683},{"type":42,"tag":241,"props":4868,"children":4869},{"style":293},[4870],{"type":47,"value":4115},{"type":42,"tag":241,"props":4872,"children":4873},{"style":352},[4874],{"type":47,"value":862},{"type":42,"tag":241,"props":4876,"children":4877},{"style":287},[4878],{"type":47,"value":326},{"type":42,"tag":241,"props":4880,"children":4881},{"class":243,"line":487},[4882,4886,4890],{"type":42,"tag":241,"props":4883,"children":4884},{"style":287},[4885],{"type":47,"value":1908},{"type":42,"tag":241,"props":4887,"children":4888},{"style":293},[4889],{"type":47,"value":862},{"type":42,"tag":241,"props":4891,"children":4892},{"style":287},[4893],{"type":47,"value":326},{"type":42,"tag":241,"props":4895,"children":4896},{"class":243,"line":532},[4897],{"type":42,"tag":241,"props":4898,"children":4899},{"emptyLinePlaceholder":711},[4900],{"type":47,"value":714},{"type":42,"tag":241,"props":4902,"children":4903},{"class":243,"line":577},[4904,4908,4912,4916,4920,4924,4929,4933,4937,4941,4945,4949,4953],{"type":42,"tag":241,"props":4905,"children":4906},{"style":293},[4907],{"type":47,"value":73},{"type":42,"tag":241,"props":4909,"children":4910},{"style":287},[4911],{"type":47,"value":654},{"type":42,"tag":241,"props":4913,"children":4914},{"style":657},[4915],{"type":47,"value":4031},{"type":42,"tag":241,"props":4917,"children":4918},{"style":293},[4919],{"type":47,"value":665},{"type":42,"tag":241,"props":4921,"children":4922},{"style":287},[4923],{"type":47,"value":321},{"type":42,"tag":241,"props":4925,"children":4926},{"style":253},[4927],{"type":47,"value":4928},"onNetworkQualityChange",{"type":42,"tag":241,"props":4930,"children":4931},{"style":287},[4932],{"type":47,"value":321},{"type":42,"tag":241,"props":4934,"children":4935},{"style":287},[4936],{"type":47,"value":683},{"type":42,"tag":241,"props":4938,"children":4939},{"style":287},[4940],{"type":47,"value":1258},{"type":42,"tag":241,"props":4942,"children":4943},{"style":1261},[4944],{"type":47,"value":4061},{"type":42,"tag":241,"props":4946,"children":4947},{"style":287},[4948],{"type":47,"value":862},{"type":42,"tag":241,"props":4950,"children":4951},{"style":358},[4952],{"type":47,"value":904},{"type":42,"tag":241,"props":4954,"children":4955},{"style":287},[4956],{"type":47,"value":909},{"type":42,"tag":241,"props":4958,"children":4959},{"class":243,"line":740},[4960],{"type":42,"tag":241,"props":4961,"children":4962},{"style":638},[4963],{"type":47,"value":4964},"  \u002F\u002F {level: 0-5, userId, type: 'uplink'}\n",{"type":42,"tag":241,"props":4966,"children":4967},{"class":243,"line":749},[4968],{"type":42,"tag":241,"props":4969,"children":4970},{"style":638},[4971],{"type":47,"value":4972},"  \u002F\u002F 0-1=bad, 2=normal, 3-5=good\n",{"type":42,"tag":241,"props":4974,"children":4975},{"class":243,"line":775},[4976,4980,4984,4988,4992,4996,5001,5005,5009,5013,5017],{"type":42,"tag":241,"props":4977,"children":4978},{"style":293},[4979],{"type":47,"value":4081},{"type":42,"tag":241,"props":4981,"children":4982},{"style":287},[4983],{"type":47,"value":654},{"type":42,"tag":241,"props":4985,"children":4986},{"style":657},[4987],{"type":47,"value":660},{"type":42,"tag":241,"props":4989,"children":4990},{"style":352},[4991],{"type":47,"value":665},{"type":42,"tag":241,"props":4993,"children":4994},{"style":287},[4995],{"type":47,"value":321},{"type":42,"tag":241,"props":4997,"children":4998},{"style":253},[4999],{"type":47,"value":5000},"Network quality:",{"type":42,"tag":241,"props":5002,"children":5003},{"style":287},[5004],{"type":47,"value":321},{"type":42,"tag":241,"props":5006,"children":5007},{"style":287},[5008],{"type":47,"value":683},{"type":42,"tag":241,"props":5010,"children":5011},{"style":293},[5012],{"type":47,"value":4115},{"type":42,"tag":241,"props":5014,"children":5015},{"style":352},[5016],{"type":47,"value":862},{"type":42,"tag":241,"props":5018,"children":5019},{"style":287},[5020],{"type":47,"value":326},{"type":42,"tag":241,"props":5022,"children":5023},{"class":243,"line":800},[5024,5028,5032],{"type":42,"tag":241,"props":5025,"children":5026},{"style":287},[5027],{"type":47,"value":1908},{"type":42,"tag":241,"props":5029,"children":5030},{"style":293},[5031],{"type":47,"value":862},{"type":42,"tag":241,"props":5033,"children":5034},{"style":287},[5035],{"type":47,"value":326},{"type":42,"tag":241,"props":5037,"children":5038},{"class":243,"line":808},[5039],{"type":42,"tag":241,"props":5040,"children":5041},{"emptyLinePlaceholder":711},[5042],{"type":47,"value":714},{"type":42,"tag":241,"props":5044,"children":5045},{"class":243,"line":817},[5046,5050,5054,5058,5062,5066,5071,5075,5079,5083,5087,5091,5095],{"type":42,"tag":241,"props":5047,"children":5048},{"style":293},[5049],{"type":47,"value":73},{"type":42,"tag":241,"props":5051,"children":5052},{"style":287},[5053],{"type":47,"value":654},{"type":42,"tag":241,"props":5055,"children":5056},{"style":657},[5057],{"type":47,"value":4031},{"type":42,"tag":241,"props":5059,"children":5060},{"style":293},[5061],{"type":47,"value":665},{"type":42,"tag":241,"props":5063,"children":5064},{"style":287},[5065],{"type":47,"value":321},{"type":42,"tag":241,"props":5067,"children":5068},{"style":253},[5069],{"type":47,"value":5070},"onAudioQos",{"type":42,"tag":241,"props":5072,"children":5073},{"style":287},[5074],{"type":47,"value":321},{"type":42,"tag":241,"props":5076,"children":5077},{"style":287},[5078],{"type":47,"value":683},{"type":42,"tag":241,"props":5080,"children":5081},{"style":287},[5082],{"type":47,"value":1258},{"type":42,"tag":241,"props":5084,"children":5085},{"style":1261},[5086],{"type":47,"value":4061},{"type":42,"tag":241,"props":5088,"children":5089},{"style":287},[5090],{"type":47,"value":862},{"type":42,"tag":241,"props":5092,"children":5093},{"style":358},[5094],{"type":47,"value":904},{"type":42,"tag":241,"props":5096,"children":5097},{"style":287},[5098],{"type":47,"value":909},{"type":42,"tag":241,"props":5100,"children":5101},{"class":243,"line":869},[5102,5106,5110,5114,5118,5122,5127,5131,5135,5139,5143],{"type":42,"tag":241,"props":5103,"children":5104},{"style":293},[5105],{"type":47,"value":4081},{"type":42,"tag":241,"props":5107,"children":5108},{"style":287},[5109],{"type":47,"value":654},{"type":42,"tag":241,"props":5111,"children":5112},{"style":657},[5113],{"type":47,"value":660},{"type":42,"tag":241,"props":5115,"children":5116},{"style":352},[5117],{"type":47,"value":665},{"type":42,"tag":241,"props":5119,"children":5120},{"style":287},[5121],{"type":47,"value":321},{"type":42,"tag":241,"props":5123,"children":5124},{"style":253},[5125],{"type":47,"value":5126},"Audio QoS:",{"type":42,"tag":241,"props":5128,"children":5129},{"style":287},[5130],{"type":47,"value":321},{"type":42,"tag":241,"props":5132,"children":5133},{"style":287},[5134],{"type":47,"value":683},{"type":42,"tag":241,"props":5136,"children":5137},{"style":293},[5138],{"type":47,"value":4115},{"type":42,"tag":241,"props":5140,"children":5141},{"style":352},[5142],{"type":47,"value":862},{"type":42,"tag":241,"props":5144,"children":5145},{"style":287},[5146],{"type":47,"value":326},{"type":42,"tag":241,"props":5148,"children":5149},{"class":243,"line":912},[5150,5154,5158],{"type":42,"tag":241,"props":5151,"children":5152},{"style":287},[5153],{"type":47,"value":1908},{"type":42,"tag":241,"props":5155,"children":5156},{"style":293},[5157],{"type":47,"value":862},{"type":42,"tag":241,"props":5159,"children":5160},{"style":287},[5161],{"type":47,"value":326},{"type":42,"tag":241,"props":5163,"children":5164},{"class":243,"line":920},[5165],{"type":42,"tag":241,"props":5166,"children":5167},{"emptyLinePlaceholder":711},[5168],{"type":47,"value":714},{"type":42,"tag":241,"props":5170,"children":5171},{"class":243,"line":929},[5172,5176,5180,5184,5188,5192,5197,5201,5205,5209,5213,5217,5221],{"type":42,"tag":241,"props":5173,"children":5174},{"style":293},[5175],{"type":47,"value":73},{"type":42,"tag":241,"props":5177,"children":5178},{"style":287},[5179],{"type":47,"value":654},{"type":42,"tag":241,"props":5181,"children":5182},{"style":657},[5183],{"type":47,"value":4031},{"type":42,"tag":241,"props":5185,"children":5186},{"style":293},[5187],{"type":47,"value":665},{"type":42,"tag":241,"props":5189,"children":5190},{"style":287},[5191],{"type":47,"value":321},{"type":42,"tag":241,"props":5193,"children":5194},{"style":253},[5195],{"type":47,"value":5196},"onVideoQos",{"type":42,"tag":241,"props":5198,"children":5199},{"style":287},[5200],{"type":47,"value":321},{"type":42,"tag":241,"props":5202,"children":5203},{"style":287},[5204],{"type":47,"value":683},{"type":42,"tag":241,"props":5206,"children":5207},{"style":287},[5208],{"type":47,"value":1258},{"type":42,"tag":241,"props":5210,"children":5211},{"style":1261},[5212],{"type":47,"value":4061},{"type":42,"tag":241,"props":5214,"children":5215},{"style":287},[5216],{"type":47,"value":862},{"type":42,"tag":241,"props":5218,"children":5219},{"style":358},[5220],{"type":47,"value":904},{"type":42,"tag":241,"props":5222,"children":5223},{"style":287},[5224],{"type":47,"value":909},{"type":42,"tag":241,"props":5226,"children":5227},{"class":243,"line":956},[5228,5232,5236,5240,5244,5248,5253,5257,5261,5265,5269],{"type":42,"tag":241,"props":5229,"children":5230},{"style":293},[5231],{"type":47,"value":4081},{"type":42,"tag":241,"props":5233,"children":5234},{"style":287},[5235],{"type":47,"value":654},{"type":42,"tag":241,"props":5237,"children":5238},{"style":657},[5239],{"type":47,"value":660},{"type":42,"tag":241,"props":5241,"children":5242},{"style":352},[5243],{"type":47,"value":665},{"type":42,"tag":241,"props":5245,"children":5246},{"style":287},[5247],{"type":47,"value":321},{"type":42,"tag":241,"props":5249,"children":5250},{"style":253},[5251],{"type":47,"value":5252},"Video QoS:",{"type":42,"tag":241,"props":5254,"children":5255},{"style":287},[5256],{"type":47,"value":321},{"type":42,"tag":241,"props":5258,"children":5259},{"style":287},[5260],{"type":47,"value":683},{"type":42,"tag":241,"props":5262,"children":5263},{"style":293},[5264],{"type":47,"value":4115},{"type":42,"tag":241,"props":5266,"children":5267},{"style":352},[5268],{"type":47,"value":862},{"type":42,"tag":241,"props":5270,"children":5271},{"style":287},[5272],{"type":47,"value":326},{"type":42,"tag":241,"props":5274,"children":5275},{"class":243,"line":988},[5276,5280,5284],{"type":42,"tag":241,"props":5277,"children":5278},{"style":287},[5279],{"type":47,"value":1908},{"type":42,"tag":241,"props":5281,"children":5282},{"style":293},[5283],{"type":47,"value":862},{"type":42,"tag":241,"props":5285,"children":5286},{"style":287},[5287],{"type":47,"value":326},{"type":42,"tag":223,"props":5289,"children":5291},{"id":5290},"chat-communication",[5292],{"type":47,"value":5293},"Chat & Communication",{"type":42,"tag":230,"props":5295,"children":5297},{"className":269,"code":5296,"language":271,"meta":235,"style":235},"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",[5298],{"type":42,"tag":68,"props":5299,"children":5300},{"__ignoreMap":235},[5301,5357,5405,5420,5427,5483,5531,5546,5553,5609,5657],{"type":42,"tag":241,"props":5302,"children":5303},{"class":243,"line":244},[5304,5308,5312,5316,5320,5324,5329,5333,5337,5341,5345,5349,5353],{"type":42,"tag":241,"props":5305,"children":5306},{"style":293},[5307],{"type":47,"value":73},{"type":42,"tag":241,"props":5309,"children":5310},{"style":287},[5311],{"type":47,"value":654},{"type":42,"tag":241,"props":5313,"children":5314},{"style":657},[5315],{"type":47,"value":4031},{"type":42,"tag":241,"props":5317,"children":5318},{"style":293},[5319],{"type":47,"value":665},{"type":42,"tag":241,"props":5321,"children":5322},{"style":287},[5323],{"type":47,"value":321},{"type":42,"tag":241,"props":5325,"children":5326},{"style":253},[5327],{"type":47,"value":5328},"onReceiveChatMsg",{"type":42,"tag":241,"props":5330,"children":5331},{"style":287},[5332],{"type":47,"value":321},{"type":42,"tag":241,"props":5334,"children":5335},{"style":287},[5336],{"type":47,"value":683},{"type":42,"tag":241,"props":5338,"children":5339},{"style":287},[5340],{"type":47,"value":1258},{"type":42,"tag":241,"props":5342,"children":5343},{"style":1261},[5344],{"type":47,"value":4061},{"type":42,"tag":241,"props":5346,"children":5347},{"style":287},[5348],{"type":47,"value":862},{"type":42,"tag":241,"props":5350,"children":5351},{"style":358},[5352],{"type":47,"value":904},{"type":42,"tag":241,"props":5354,"children":5355},{"style":287},[5356],{"type":47,"value":909},{"type":42,"tag":241,"props":5358,"children":5359},{"class":243,"line":397},[5360,5364,5368,5372,5376,5380,5385,5389,5393,5397,5401],{"type":42,"tag":241,"props":5361,"children":5362},{"style":293},[5363],{"type":47,"value":4081},{"type":42,"tag":241,"props":5365,"children":5366},{"style":287},[5367],{"type":47,"value":654},{"type":42,"tag":241,"props":5369,"children":5370},{"style":657},[5371],{"type":47,"value":660},{"type":42,"tag":241,"props":5373,"children":5374},{"style":352},[5375],{"type":47,"value":665},{"type":42,"tag":241,"props":5377,"children":5378},{"style":287},[5379],{"type":47,"value":321},{"type":42,"tag":241,"props":5381,"children":5382},{"style":253},[5383],{"type":47,"value":5384},"Chat message:",{"type":42,"tag":241,"props":5386,"children":5387},{"style":287},[5388],{"type":47,"value":321},{"type":42,"tag":241,"props":5390,"children":5391},{"style":287},[5392],{"type":47,"value":683},{"type":42,"tag":241,"props":5394,"children":5395},{"style":293},[5396],{"type":47,"value":4115},{"type":42,"tag":241,"props":5398,"children":5399},{"style":352},[5400],{"type":47,"value":862},{"type":42,"tag":241,"props":5402,"children":5403},{"style":287},[5404],{"type":47,"value":326},{"type":42,"tag":241,"props":5406,"children":5407},{"class":243,"line":442},[5408,5412,5416],{"type":42,"tag":241,"props":5409,"children":5410},{"style":287},[5411],{"type":47,"value":1908},{"type":42,"tag":241,"props":5413,"children":5414},{"style":293},[5415],{"type":47,"value":862},{"type":42,"tag":241,"props":5417,"children":5418},{"style":287},[5419],{"type":47,"value":326},{"type":42,"tag":241,"props":5421,"children":5422},{"class":243,"line":487},[5423],{"type":42,"tag":241,"props":5424,"children":5425},{"emptyLinePlaceholder":711},[5426],{"type":47,"value":714},{"type":42,"tag":241,"props":5428,"children":5429},{"class":243,"line":532},[5430,5434,5438,5442,5446,5450,5455,5459,5463,5467,5471,5475,5479],{"type":42,"tag":241,"props":5431,"children":5432},{"style":293},[5433],{"type":47,"value":73},{"type":42,"tag":241,"props":5435,"children":5436},{"style":287},[5437],{"type":47,"value":654},{"type":42,"tag":241,"props":5439,"children":5440},{"style":657},[5441],{"type":47,"value":4031},{"type":42,"tag":241,"props":5443,"children":5444},{"style":293},[5445],{"type":47,"value":665},{"type":42,"tag":241,"props":5447,"children":5448},{"style":287},[5449],{"type":47,"value":321},{"type":42,"tag":241,"props":5451,"children":5452},{"style":253},[5453],{"type":47,"value":5454},"onReceiveTranscriptionMsg",{"type":42,"tag":241,"props":5456,"children":5457},{"style":287},[5458],{"type":47,"value":321},{"type":42,"tag":241,"props":5460,"children":5461},{"style":287},[5462],{"type":47,"value":683},{"type":42,"tag":241,"props":5464,"children":5465},{"style":287},[5466],{"type":47,"value":1258},{"type":42,"tag":241,"props":5468,"children":5469},{"style":1261},[5470],{"type":47,"value":4061},{"type":42,"tag":241,"props":5472,"children":5473},{"style":287},[5474],{"type":47,"value":862},{"type":42,"tag":241,"props":5476,"children":5477},{"style":358},[5478],{"type":47,"value":904},{"type":42,"tag":241,"props":5480,"children":5481},{"style":287},[5482],{"type":47,"value":909},{"type":42,"tag":241,"props":5484,"children":5485},{"class":243,"line":577},[5486,5490,5494,5498,5502,5506,5511,5515,5519,5523,5527],{"type":42,"tag":241,"props":5487,"children":5488},{"style":293},[5489],{"type":47,"value":4081},{"type":42,"tag":241,"props":5491,"children":5492},{"style":287},[5493],{"type":47,"value":654},{"type":42,"tag":241,"props":5495,"children":5496},{"style":657},[5497],{"type":47,"value":660},{"type":42,"tag":241,"props":5499,"children":5500},{"style":352},[5501],{"type":47,"value":665},{"type":42,"tag":241,"props":5503,"children":5504},{"style":287},[5505],{"type":47,"value":321},{"type":42,"tag":241,"props":5507,"children":5508},{"style":253},[5509],{"type":47,"value":5510},"Transcription:",{"type":42,"tag":241,"props":5512,"children":5513},{"style":287},[5514],{"type":47,"value":321},{"type":42,"tag":241,"props":5516,"children":5517},{"style":287},[5518],{"type":47,"value":683},{"type":42,"tag":241,"props":5520,"children":5521},{"style":293},[5522],{"type":47,"value":4115},{"type":42,"tag":241,"props":5524,"children":5525},{"style":352},[5526],{"type":47,"value":862},{"type":42,"tag":241,"props":5528,"children":5529},{"style":287},[5530],{"type":47,"value":326},{"type":42,"tag":241,"props":5532,"children":5533},{"class":243,"line":740},[5534,5538,5542],{"type":42,"tag":241,"props":5535,"children":5536},{"style":287},[5537],{"type":47,"value":1908},{"type":42,"tag":241,"props":5539,"children":5540},{"style":293},[5541],{"type":47,"value":862},{"type":42,"tag":241,"props":5543,"children":5544},{"style":287},[5545],{"type":47,"value":326},{"type":42,"tag":241,"props":5547,"children":5548},{"class":243,"line":749},[5549],{"type":42,"tag":241,"props":5550,"children":5551},{"emptyLinePlaceholder":711},[5552],{"type":47,"value":714},{"type":42,"tag":241,"props":5554,"children":5555},{"class":243,"line":775},[5556,5560,5564,5568,5572,5576,5581,5585,5589,5593,5597,5601,5605],{"type":42,"tag":241,"props":5557,"children":5558},{"style":293},[5559],{"type":47,"value":73},{"type":42,"tag":241,"props":5561,"children":5562},{"style":287},[5563],{"type":47,"value":654},{"type":42,"tag":241,"props":5565,"children":5566},{"style":657},[5567],{"type":47,"value":4031},{"type":42,"tag":241,"props":5569,"children":5570},{"style":293},[5571],{"type":47,"value":665},{"type":42,"tag":241,"props":5573,"children":5574},{"style":287},[5575],{"type":47,"value":321},{"type":42,"tag":241,"props":5577,"children":5578},{"style":253},[5579],{"type":47,"value":5580},"onReceiveTranslateMsg",{"type":42,"tag":241,"props":5582,"children":5583},{"style":287},[5584],{"type":47,"value":321},{"type":42,"tag":241,"props":5586,"children":5587},{"style":287},[5588],{"type":47,"value":683},{"type":42,"tag":241,"props":5590,"children":5591},{"style":287},[5592],{"type":47,"value":1258},{"type":42,"tag":241,"props":5594,"children":5595},{"style":1261},[5596],{"type":47,"value":4061},{"type":42,"tag":241,"props":5598,"children":5599},{"style":287},[5600],{"type":47,"value":862},{"type":42,"tag":241,"props":5602,"children":5603},{"style":358},[5604],{"type":47,"value":904},{"type":42,"tag":241,"props":5606,"children":5607},{"style":287},[5608],{"type":47,"value":909},{"type":42,"tag":241,"props":5610,"children":5611},{"class":243,"line":800},[5612,5616,5620,5624,5628,5632,5637,5641,5645,5649,5653],{"type":42,"tag":241,"props":5613,"children":5614},{"style":293},[5615],{"type":47,"value":4081},{"type":42,"tag":241,"props":5617,"children":5618},{"style":287},[5619],{"type":47,"value":654},{"type":42,"tag":241,"props":5621,"children":5622},{"style":657},[5623],{"type":47,"value":660},{"type":42,"tag":241,"props":5625,"children":5626},{"style":352},[5627],{"type":47,"value":665},{"type":42,"tag":241,"props":5629,"children":5630},{"style":287},[5631],{"type":47,"value":321},{"type":42,"tag":241,"props":5633,"children":5634},{"style":253},[5635],{"type":47,"value":5636},"Translation:",{"type":42,"tag":241,"props":5638,"children":5639},{"style":287},[5640],{"type":47,"value":321},{"type":42,"tag":241,"props":5642,"children":5643},{"style":287},[5644],{"type":47,"value":683},{"type":42,"tag":241,"props":5646,"children":5647},{"style":293},[5648],{"type":47,"value":4115},{"type":42,"tag":241,"props":5650,"children":5651},{"style":352},[5652],{"type":47,"value":862},{"type":42,"tag":241,"props":5654,"children":5655},{"style":287},[5656],{"type":47,"value":326},{"type":42,"tag":241,"props":5658,"children":5659},{"class":243,"line":808},[5660,5664,5668],{"type":42,"tag":241,"props":5661,"children":5662},{"style":287},[5663],{"type":47,"value":1908},{"type":42,"tag":241,"props":5665,"children":5666},{"style":293},[5667],{"type":47,"value":862},{"type":42,"tag":241,"props":5669,"children":5670},{"style":287},[5671],{"type":47,"value":326},{"type":42,"tag":223,"props":5673,"children":5675},{"id":5674},"recording-sharing",[5676],{"type":47,"value":5677},"Recording & Sharing",{"type":42,"tag":230,"props":5679,"children":5681},{"className":269,"code":5680,"language":271,"meta":235,"style":235},"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",[5682],{"type":42,"tag":68,"props":5683,"children":5684},{"__ignoreMap":235},[5685,5741,5789,5804,5811,5867,5915,5930,5937,5993,6041],{"type":42,"tag":241,"props":5686,"children":5687},{"class":243,"line":244},[5688,5692,5696,5700,5704,5708,5713,5717,5721,5725,5729,5733,5737],{"type":42,"tag":241,"props":5689,"children":5690},{"style":293},[5691],{"type":47,"value":73},{"type":42,"tag":241,"props":5693,"children":5694},{"style":287},[5695],{"type":47,"value":654},{"type":42,"tag":241,"props":5697,"children":5698},{"style":657},[5699],{"type":47,"value":4031},{"type":42,"tag":241,"props":5701,"children":5702},{"style":293},[5703],{"type":47,"value":665},{"type":42,"tag":241,"props":5705,"children":5706},{"style":287},[5707],{"type":47,"value":321},{"type":42,"tag":241,"props":5709,"children":5710},{"style":253},[5711],{"type":47,"value":5712},"onRecordingChange",{"type":42,"tag":241,"props":5714,"children":5715},{"style":287},[5716],{"type":47,"value":321},{"type":42,"tag":241,"props":5718,"children":5719},{"style":287},[5720],{"type":47,"value":683},{"type":42,"tag":241,"props":5722,"children":5723},{"style":287},[5724],{"type":47,"value":1258},{"type":42,"tag":241,"props":5726,"children":5727},{"style":1261},[5728],{"type":47,"value":4061},{"type":42,"tag":241,"props":5730,"children":5731},{"style":287},[5732],{"type":47,"value":862},{"type":42,"tag":241,"props":5734,"children":5735},{"style":358},[5736],{"type":47,"value":904},{"type":42,"tag":241,"props":5738,"children":5739},{"style":287},[5740],{"type":47,"value":909},{"type":42,"tag":241,"props":5742,"children":5743},{"class":243,"line":397},[5744,5748,5752,5756,5760,5764,5769,5773,5777,5781,5785],{"type":42,"tag":241,"props":5745,"children":5746},{"style":293},[5747],{"type":47,"value":4081},{"type":42,"tag":241,"props":5749,"children":5750},{"style":287},[5751],{"type":47,"value":654},{"type":42,"tag":241,"props":5753,"children":5754},{"style":657},[5755],{"type":47,"value":660},{"type":42,"tag":241,"props":5757,"children":5758},{"style":352},[5759],{"type":47,"value":665},{"type":42,"tag":241,"props":5761,"children":5762},{"style":287},[5763],{"type":47,"value":321},{"type":42,"tag":241,"props":5765,"children":5766},{"style":253},[5767],{"type":47,"value":5768},"Recording status:",{"type":42,"tag":241,"props":5770,"children":5771},{"style":287},[5772],{"type":47,"value":321},{"type":42,"tag":241,"props":5774,"children":5775},{"style":287},[5776],{"type":47,"value":683},{"type":42,"tag":241,"props":5778,"children":5779},{"style":293},[5780],{"type":47,"value":4115},{"type":42,"tag":241,"props":5782,"children":5783},{"style":352},[5784],{"type":47,"value":862},{"type":42,"tag":241,"props":5786,"children":5787},{"style":287},[5788],{"type":47,"value":326},{"type":42,"tag":241,"props":5790,"children":5791},{"class":243,"line":442},[5792,5796,5800],{"type":42,"tag":241,"props":5793,"children":5794},{"style":287},[5795],{"type":47,"value":1908},{"type":42,"tag":241,"props":5797,"children":5798},{"style":293},[5799],{"type":47,"value":862},{"type":42,"tag":241,"props":5801,"children":5802},{"style":287},[5803],{"type":47,"value":326},{"type":42,"tag":241,"props":5805,"children":5806},{"class":243,"line":487},[5807],{"type":42,"tag":241,"props":5808,"children":5809},{"emptyLinePlaceholder":711},[5810],{"type":47,"value":714},{"type":42,"tag":241,"props":5812,"children":5813},{"class":243,"line":532},[5814,5818,5822,5826,5830,5834,5839,5843,5847,5851,5855,5859,5863],{"type":42,"tag":241,"props":5815,"children":5816},{"style":293},[5817],{"type":47,"value":73},{"type":42,"tag":241,"props":5819,"children":5820},{"style":287},[5821],{"type":47,"value":654},{"type":42,"tag":241,"props":5823,"children":5824},{"style":657},[5825],{"type":47,"value":4031},{"type":42,"tag":241,"props":5827,"children":5828},{"style":293},[5829],{"type":47,"value":665},{"type":42,"tag":241,"props":5831,"children":5832},{"style":287},[5833],{"type":47,"value":321},{"type":42,"tag":241,"props":5835,"children":5836},{"style":253},[5837],{"type":47,"value":5838},"onShareContentChange",{"type":42,"tag":241,"props":5840,"children":5841},{"style":287},[5842],{"type":47,"value":321},{"type":42,"tag":241,"props":5844,"children":5845},{"style":287},[5846],{"type":47,"value":683},{"type":42,"tag":241,"props":5848,"children":5849},{"style":287},[5850],{"type":47,"value":1258},{"type":42,"tag":241,"props":5852,"children":5853},{"style":1261},[5854],{"type":47,"value":4061},{"type":42,"tag":241,"props":5856,"children":5857},{"style":287},[5858],{"type":47,"value":862},{"type":42,"tag":241,"props":5860,"children":5861},{"style":358},[5862],{"type":47,"value":904},{"type":42,"tag":241,"props":5864,"children":5865},{"style":287},[5866],{"type":47,"value":909},{"type":42,"tag":241,"props":5868,"children":5869},{"class":243,"line":577},[5870,5874,5878,5882,5886,5890,5895,5899,5903,5907,5911],{"type":42,"tag":241,"props":5871,"children":5872},{"style":293},[5873],{"type":47,"value":4081},{"type":42,"tag":241,"props":5875,"children":5876},{"style":287},[5877],{"type":47,"value":654},{"type":42,"tag":241,"props":5879,"children":5880},{"style":657},[5881],{"type":47,"value":660},{"type":42,"tag":241,"props":5883,"children":5884},{"style":352},[5885],{"type":47,"value":665},{"type":42,"tag":241,"props":5887,"children":5888},{"style":287},[5889],{"type":47,"value":321},{"type":42,"tag":241,"props":5891,"children":5892},{"style":253},[5893],{"type":47,"value":5894},"Share content:",{"type":42,"tag":241,"props":5896,"children":5897},{"style":287},[5898],{"type":47,"value":321},{"type":42,"tag":241,"props":5900,"children":5901},{"style":287},[5902],{"type":47,"value":683},{"type":42,"tag":241,"props":5904,"children":5905},{"style":293},[5906],{"type":47,"value":4115},{"type":42,"tag":241,"props":5908,"children":5909},{"style":352},[5910],{"type":47,"value":862},{"type":42,"tag":241,"props":5912,"children":5913},{"style":287},[5914],{"type":47,"value":326},{"type":42,"tag":241,"props":5916,"children":5917},{"class":243,"line":740},[5918,5922,5926],{"type":42,"tag":241,"props":5919,"children":5920},{"style":287},[5921],{"type":47,"value":1908},{"type":42,"tag":241,"props":5923,"children":5924},{"style":293},[5925],{"type":47,"value":862},{"type":42,"tag":241,"props":5927,"children":5928},{"style":287},[5929],{"type":47,"value":326},{"type":42,"tag":241,"props":5931,"children":5932},{"class":243,"line":749},[5933],{"type":42,"tag":241,"props":5934,"children":5935},{"emptyLinePlaceholder":711},[5936],{"type":47,"value":714},{"type":42,"tag":241,"props":5938,"children":5939},{"class":243,"line":775},[5940,5944,5948,5952,5956,5960,5965,5969,5973,5977,5981,5985,5989],{"type":42,"tag":241,"props":5941,"children":5942},{"style":293},[5943],{"type":47,"value":73},{"type":42,"tag":241,"props":5945,"children":5946},{"style":287},[5947],{"type":47,"value":654},{"type":42,"tag":241,"props":5949,"children":5950},{"style":657},[5951],{"type":47,"value":4031},{"type":42,"tag":241,"props":5953,"children":5954},{"style":293},[5955],{"type":47,"value":665},{"type":42,"tag":241,"props":5957,"children":5958},{"style":287},[5959],{"type":47,"value":321},{"type":42,"tag":241,"props":5961,"children":5962},{"style":253},[5963],{"type":47,"value":5964},"receiveSharingChannelReady",{"type":42,"tag":241,"props":5966,"children":5967},{"style":287},[5968],{"type":47,"value":321},{"type":42,"tag":241,"props":5970,"children":5971},{"style":287},[5972],{"type":47,"value":683},{"type":42,"tag":241,"props":5974,"children":5975},{"style":287},[5976],{"type":47,"value":1258},{"type":42,"tag":241,"props":5978,"children":5979},{"style":1261},[5980],{"type":47,"value":4061},{"type":42,"tag":241,"props":5982,"children":5983},{"style":287},[5984],{"type":47,"value":862},{"type":42,"tag":241,"props":5986,"children":5987},{"style":358},[5988],{"type":47,"value":904},{"type":42,"tag":241,"props":5990,"children":5991},{"style":287},[5992],{"type":47,"value":909},{"type":42,"tag":241,"props":5994,"children":5995},{"class":243,"line":800},[5996,6000,6004,6008,6012,6016,6021,6025,6029,6033,6037],{"type":42,"tag":241,"props":5997,"children":5998},{"style":293},[5999],{"type":47,"value":4081},{"type":42,"tag":241,"props":6001,"children":6002},{"style":287},[6003],{"type":47,"value":654},{"type":42,"tag":241,"props":6005,"children":6006},{"style":657},[6007],{"type":47,"value":660},{"type":42,"tag":241,"props":6009,"children":6010},{"style":352},[6011],{"type":47,"value":665},{"type":42,"tag":241,"props":6013,"children":6014},{"style":287},[6015],{"type":47,"value":321},{"type":42,"tag":241,"props":6017,"children":6018},{"style":253},[6019],{"type":47,"value":6020},"Sharing channel ready:",{"type":42,"tag":241,"props":6022,"children":6023},{"style":287},[6024],{"type":47,"value":321},{"type":42,"tag":241,"props":6026,"children":6027},{"style":287},[6028],{"type":47,"value":683},{"type":42,"tag":241,"props":6030,"children":6031},{"style":293},[6032],{"type":47,"value":4115},{"type":42,"tag":241,"props":6034,"children":6035},{"style":352},[6036],{"type":47,"value":862},{"type":42,"tag":241,"props":6038,"children":6039},{"style":287},[6040],{"type":47,"value":326},{"type":42,"tag":241,"props":6042,"children":6043},{"class":243,"line":808},[6044,6048,6052],{"type":42,"tag":241,"props":6045,"children":6046},{"style":287},[6047],{"type":47,"value":1908},{"type":42,"tag":241,"props":6049,"children":6050},{"style":293},[6051],{"type":47,"value":862},{"type":42,"tag":241,"props":6053,"children":6054},{"style":287},[6055],{"type":47,"value":326},{"type":42,"tag":223,"props":6057,"children":6059},{"id":6058},"breakout-rooms",[6060],{"type":47,"value":6061},"Breakout Rooms",{"type":42,"tag":230,"props":6063,"children":6065},{"className":269,"code":6064,"language":271,"meta":235,"style":235},"ZoomMtg.inMeetingServiceListener('onRoomStatusChange', (data) => {\n  \u002F\u002F status: 2=InProgress, 3=Closing, 4=Closed\n  console.log('Breakout room status:', data);\n});\n",[6066],{"type":42,"tag":68,"props":6067,"children":6068},{"__ignoreMap":235},[6069,6125,6133,6181],{"type":42,"tag":241,"props":6070,"children":6071},{"class":243,"line":244},[6072,6076,6080,6084,6088,6092,6097,6101,6105,6109,6113,6117,6121],{"type":42,"tag":241,"props":6073,"children":6074},{"style":293},[6075],{"type":47,"value":73},{"type":42,"tag":241,"props":6077,"children":6078},{"style":287},[6079],{"type":47,"value":654},{"type":42,"tag":241,"props":6081,"children":6082},{"style":657},[6083],{"type":47,"value":4031},{"type":42,"tag":241,"props":6085,"children":6086},{"style":293},[6087],{"type":47,"value":665},{"type":42,"tag":241,"props":6089,"children":6090},{"style":287},[6091],{"type":47,"value":321},{"type":42,"tag":241,"props":6093,"children":6094},{"style":253},[6095],{"type":47,"value":6096},"onRoomStatusChange",{"type":42,"tag":241,"props":6098,"children":6099},{"style":287},[6100],{"type":47,"value":321},{"type":42,"tag":241,"props":6102,"children":6103},{"style":287},[6104],{"type":47,"value":683},{"type":42,"tag":241,"props":6106,"children":6107},{"style":287},[6108],{"type":47,"value":1258},{"type":42,"tag":241,"props":6110,"children":6111},{"style":1261},[6112],{"type":47,"value":4061},{"type":42,"tag":241,"props":6114,"children":6115},{"style":287},[6116],{"type":47,"value":862},{"type":42,"tag":241,"props":6118,"children":6119},{"style":358},[6120],{"type":47,"value":904},{"type":42,"tag":241,"props":6122,"children":6123},{"style":287},[6124],{"type":47,"value":909},{"type":42,"tag":241,"props":6126,"children":6127},{"class":243,"line":397},[6128],{"type":42,"tag":241,"props":6129,"children":6130},{"style":638},[6131],{"type":47,"value":6132},"  \u002F\u002F status: 2=InProgress, 3=Closing, 4=Closed\n",{"type":42,"tag":241,"props":6134,"children":6135},{"class":243,"line":442},[6136,6140,6144,6148,6152,6156,6161,6165,6169,6173,6177],{"type":42,"tag":241,"props":6137,"children":6138},{"style":293},[6139],{"type":47,"value":4081},{"type":42,"tag":241,"props":6141,"children":6142},{"style":287},[6143],{"type":47,"value":654},{"type":42,"tag":241,"props":6145,"children":6146},{"style":657},[6147],{"type":47,"value":660},{"type":42,"tag":241,"props":6149,"children":6150},{"style":352},[6151],{"type":47,"value":665},{"type":42,"tag":241,"props":6153,"children":6154},{"style":287},[6155],{"type":47,"value":321},{"type":42,"tag":241,"props":6157,"children":6158},{"style":253},[6159],{"type":47,"value":6160},"Breakout room status:",{"type":42,"tag":241,"props":6162,"children":6163},{"style":287},[6164],{"type":47,"value":321},{"type":42,"tag":241,"props":6166,"children":6167},{"style":287},[6168],{"type":47,"value":683},{"type":42,"tag":241,"props":6170,"children":6171},{"style":293},[6172],{"type":47,"value":4115},{"type":42,"tag":241,"props":6174,"children":6175},{"style":352},[6176],{"type":47,"value":862},{"type":42,"tag":241,"props":6178,"children":6179},{"style":287},[6180],{"type":47,"value":326},{"type":42,"tag":241,"props":6182,"children":6183},{"class":243,"line":487},[6184,6188,6192],{"type":42,"tag":241,"props":6185,"children":6186},{"style":287},[6187],{"type":47,"value":1908},{"type":42,"tag":241,"props":6189,"children":6190},{"style":293},[6191],{"type":47,"value":862},{"type":42,"tag":241,"props":6193,"children":6194},{"style":287},[6195],{"type":47,"value":326},{"type":42,"tag":223,"props":6197,"children":6199},{"id":6198},"other-events",[6200],{"type":47,"value":6201},"Other Events",{"type":42,"tag":230,"props":6203,"children":6205},{"className":269,"code":6204,"language":271,"meta":235,"style":235},"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",[6206],{"type":42,"tag":68,"props":6207,"children":6208},{"__ignoreMap":235},[6209,6265,6313,6328,6335,6391,6439,6454,6461,6517,6565,6580,6587,6643,6691,6706,6713,6769,6817],{"type":42,"tag":241,"props":6210,"children":6211},{"class":243,"line":244},[6212,6216,6220,6224,6228,6232,6237,6241,6245,6249,6253,6257,6261],{"type":42,"tag":241,"props":6213,"children":6214},{"style":293},[6215],{"type":47,"value":73},{"type":42,"tag":241,"props":6217,"children":6218},{"style":287},[6219],{"type":47,"value":654},{"type":42,"tag":241,"props":6221,"children":6222},{"style":657},[6223],{"type":47,"value":4031},{"type":42,"tag":241,"props":6225,"children":6226},{"style":293},[6227],{"type":47,"value":665},{"type":42,"tag":241,"props":6229,"children":6230},{"style":287},[6231],{"type":47,"value":321},{"type":42,"tag":241,"props":6233,"children":6234},{"style":253},[6235],{"type":47,"value":6236},"onJoinSpeed",{"type":42,"tag":241,"props":6238,"children":6239},{"style":287},[6240],{"type":47,"value":321},{"type":42,"tag":241,"props":6242,"children":6243},{"style":287},[6244],{"type":47,"value":683},{"type":42,"tag":241,"props":6246,"children":6247},{"style":287},[6248],{"type":47,"value":1258},{"type":42,"tag":241,"props":6250,"children":6251},{"style":1261},[6252],{"type":47,"value":4061},{"type":42,"tag":241,"props":6254,"children":6255},{"style":287},[6256],{"type":47,"value":862},{"type":42,"tag":241,"props":6258,"children":6259},{"style":358},[6260],{"type":47,"value":904},{"type":42,"tag":241,"props":6262,"children":6263},{"style":287},[6264],{"type":47,"value":909},{"type":42,"tag":241,"props":6266,"children":6267},{"class":243,"line":397},[6268,6272,6276,6280,6284,6288,6293,6297,6301,6305,6309],{"type":42,"tag":241,"props":6269,"children":6270},{"style":293},[6271],{"type":47,"value":4081},{"type":42,"tag":241,"props":6273,"children":6274},{"style":287},[6275],{"type":47,"value":654},{"type":42,"tag":241,"props":6277,"children":6278},{"style":657},[6279],{"type":47,"value":660},{"type":42,"tag":241,"props":6281,"children":6282},{"style":352},[6283],{"type":47,"value":665},{"type":42,"tag":241,"props":6285,"children":6286},{"style":287},[6287],{"type":47,"value":321},{"type":42,"tag":241,"props":6289,"children":6290},{"style":253},[6291],{"type":47,"value":6292},"Join metrics:",{"type":42,"tag":241,"props":6294,"children":6295},{"style":287},[6296],{"type":47,"value":321},{"type":42,"tag":241,"props":6298,"children":6299},{"style":287},[6300],{"type":47,"value":683},{"type":42,"tag":241,"props":6302,"children":6303},{"style":293},[6304],{"type":47,"value":4115},{"type":42,"tag":241,"props":6306,"children":6307},{"style":352},[6308],{"type":47,"value":862},{"type":42,"tag":241,"props":6310,"children":6311},{"style":287},[6312],{"type":47,"value":326},{"type":42,"tag":241,"props":6314,"children":6315},{"class":243,"line":442},[6316,6320,6324],{"type":42,"tag":241,"props":6317,"children":6318},{"style":287},[6319],{"type":47,"value":1908},{"type":42,"tag":241,"props":6321,"children":6322},{"style":293},[6323],{"type":47,"value":862},{"type":42,"tag":241,"props":6325,"children":6326},{"style":287},[6327],{"type":47,"value":326},{"type":42,"tag":241,"props":6329,"children":6330},{"class":243,"line":487},[6331],{"type":42,"tag":241,"props":6332,"children":6333},{"emptyLinePlaceholder":711},[6334],{"type":47,"value":714},{"type":42,"tag":241,"props":6336,"children":6337},{"class":243,"line":532},[6338,6342,6346,6350,6354,6358,6363,6367,6371,6375,6379,6383,6387],{"type":42,"tag":241,"props":6339,"children":6340},{"style":293},[6341],{"type":47,"value":73},{"type":42,"tag":241,"props":6343,"children":6344},{"style":287},[6345],{"type":47,"value":654},{"type":42,"tag":241,"props":6347,"children":6348},{"style":657},[6349],{"type":47,"value":4031},{"type":42,"tag":241,"props":6351,"children":6352},{"style":293},[6353],{"type":47,"value":665},{"type":42,"tag":241,"props":6355,"children":6356},{"style":287},[6357],{"type":47,"value":321},{"type":42,"tag":241,"props":6359,"children":6360},{"style":253},[6361],{"type":47,"value":6362},"onVbStatusChange",{"type":42,"tag":241,"props":6364,"children":6365},{"style":287},[6366],{"type":47,"value":321},{"type":42,"tag":241,"props":6368,"children":6369},{"style":287},[6370],{"type":47,"value":683},{"type":42,"tag":241,"props":6372,"children":6373},{"style":287},[6374],{"type":47,"value":1258},{"type":42,"tag":241,"props":6376,"children":6377},{"style":1261},[6378],{"type":47,"value":4061},{"type":42,"tag":241,"props":6380,"children":6381},{"style":287},[6382],{"type":47,"value":862},{"type":42,"tag":241,"props":6384,"children":6385},{"style":358},[6386],{"type":47,"value":904},{"type":42,"tag":241,"props":6388,"children":6389},{"style":287},[6390],{"type":47,"value":909},{"type":42,"tag":241,"props":6392,"children":6393},{"class":243,"line":577},[6394,6398,6402,6406,6410,6414,6419,6423,6427,6431,6435],{"type":42,"tag":241,"props":6395,"children":6396},{"style":293},[6397],{"type":47,"value":4081},{"type":42,"tag":241,"props":6399,"children":6400},{"style":287},[6401],{"type":47,"value":654},{"type":42,"tag":241,"props":6403,"children":6404},{"style":657},[6405],{"type":47,"value":660},{"type":42,"tag":241,"props":6407,"children":6408},{"style":352},[6409],{"type":47,"value":665},{"type":42,"tag":241,"props":6411,"children":6412},{"style":287},[6413],{"type":47,"value":321},{"type":42,"tag":241,"props":6415,"children":6416},{"style":253},[6417],{"type":47,"value":6418},"Virtual background status:",{"type":42,"tag":241,"props":6420,"children":6421},{"style":287},[6422],{"type":47,"value":321},{"type":42,"tag":241,"props":6424,"children":6425},{"style":287},[6426],{"type":47,"value":683},{"type":42,"tag":241,"props":6428,"children":6429},{"style":293},[6430],{"type":47,"value":4115},{"type":42,"tag":241,"props":6432,"children":6433},{"style":352},[6434],{"type":47,"value":862},{"type":42,"tag":241,"props":6436,"children":6437},{"style":287},[6438],{"type":47,"value":326},{"type":42,"tag":241,"props":6440,"children":6441},{"class":243,"line":740},[6442,6446,6450],{"type":42,"tag":241,"props":6443,"children":6444},{"style":287},[6445],{"type":47,"value":1908},{"type":42,"tag":241,"props":6447,"children":6448},{"style":293},[6449],{"type":47,"value":862},{"type":42,"tag":241,"props":6451,"children":6452},{"style":287},[6453],{"type":47,"value":326},{"type":42,"tag":241,"props":6455,"children":6456},{"class":243,"line":749},[6457],{"type":42,"tag":241,"props":6458,"children":6459},{"emptyLinePlaceholder":711},[6460],{"type":47,"value":714},{"type":42,"tag":241,"props":6462,"children":6463},{"class":243,"line":775},[6464,6468,6472,6476,6480,6484,6489,6493,6497,6501,6505,6509,6513],{"type":42,"tag":241,"props":6465,"children":6466},{"style":293},[6467],{"type":47,"value":73},{"type":42,"tag":241,"props":6469,"children":6470},{"style":287},[6471],{"type":47,"value":654},{"type":42,"tag":241,"props":6473,"children":6474},{"style":657},[6475],{"type":47,"value":4031},{"type":42,"tag":241,"props":6477,"children":6478},{"style":293},[6479],{"type":47,"value":665},{"type":42,"tag":241,"props":6481,"children":6482},{"style":287},[6483],{"type":47,"value":321},{"type":42,"tag":241,"props":6485,"children":6486},{"style":253},[6487],{"type":47,"value":6488},"onFocusModeStatusChange",{"type":42,"tag":241,"props":6490,"children":6491},{"style":287},[6492],{"type":47,"value":321},{"type":42,"tag":241,"props":6494,"children":6495},{"style":287},[6496],{"type":47,"value":683},{"type":42,"tag":241,"props":6498,"children":6499},{"style":287},[6500],{"type":47,"value":1258},{"type":42,"tag":241,"props":6502,"children":6503},{"style":1261},[6504],{"type":47,"value":4061},{"type":42,"tag":241,"props":6506,"children":6507},{"style":287},[6508],{"type":47,"value":862},{"type":42,"tag":241,"props":6510,"children":6511},{"style":358},[6512],{"type":47,"value":904},{"type":42,"tag":241,"props":6514,"children":6515},{"style":287},[6516],{"type":47,"value":909},{"type":42,"tag":241,"props":6518,"children":6519},{"class":243,"line":800},[6520,6524,6528,6532,6536,6540,6545,6549,6553,6557,6561],{"type":42,"tag":241,"props":6521,"children":6522},{"style":293},[6523],{"type":47,"value":4081},{"type":42,"tag":241,"props":6525,"children":6526},{"style":287},[6527],{"type":47,"value":654},{"type":42,"tag":241,"props":6529,"children":6530},{"style":657},[6531],{"type":47,"value":660},{"type":42,"tag":241,"props":6533,"children":6534},{"style":352},[6535],{"type":47,"value":665},{"type":42,"tag":241,"props":6537,"children":6538},{"style":287},[6539],{"type":47,"value":321},{"type":42,"tag":241,"props":6541,"children":6542},{"style":253},[6543],{"type":47,"value":6544},"Focus mode:",{"type":42,"tag":241,"props":6546,"children":6547},{"style":287},[6548],{"type":47,"value":321},{"type":42,"tag":241,"props":6550,"children":6551},{"style":287},[6552],{"type":47,"value":683},{"type":42,"tag":241,"props":6554,"children":6555},{"style":293},[6556],{"type":47,"value":4115},{"type":42,"tag":241,"props":6558,"children":6559},{"style":352},[6560],{"type":47,"value":862},{"type":42,"tag":241,"props":6562,"children":6563},{"style":287},[6564],{"type":47,"value":326},{"type":42,"tag":241,"props":6566,"children":6567},{"class":243,"line":808},[6568,6572,6576],{"type":42,"tag":241,"props":6569,"children":6570},{"style":287},[6571],{"type":47,"value":1908},{"type":42,"tag":241,"props":6573,"children":6574},{"style":293},[6575],{"type":47,"value":862},{"type":42,"tag":241,"props":6577,"children":6578},{"style":287},[6579],{"type":47,"value":326},{"type":42,"tag":241,"props":6581,"children":6582},{"class":243,"line":817},[6583],{"type":42,"tag":241,"props":6584,"children":6585},{"emptyLinePlaceholder":711},[6586],{"type":47,"value":714},{"type":42,"tag":241,"props":6588,"children":6589},{"class":243,"line":869},[6590,6594,6598,6602,6606,6610,6615,6619,6623,6627,6631,6635,6639],{"type":42,"tag":241,"props":6591,"children":6592},{"style":293},[6593],{"type":47,"value":73},{"type":42,"tag":241,"props":6595,"children":6596},{"style":287},[6597],{"type":47,"value":654},{"type":42,"tag":241,"props":6599,"children":6600},{"style":657},[6601],{"type":47,"value":4031},{"type":42,"tag":241,"props":6603,"children":6604},{"style":293},[6605],{"type":47,"value":665},{"type":42,"tag":241,"props":6607,"children":6608},{"style":287},[6609],{"type":47,"value":321},{"type":42,"tag":241,"props":6611,"children":6612},{"style":253},[6613],{"type":47,"value":6614},"onPictureInPicture",{"type":42,"tag":241,"props":6616,"children":6617},{"style":287},[6618],{"type":47,"value":321},{"type":42,"tag":241,"props":6620,"children":6621},{"style":287},[6622],{"type":47,"value":683},{"type":42,"tag":241,"props":6624,"children":6625},{"style":287},[6626],{"type":47,"value":1258},{"type":42,"tag":241,"props":6628,"children":6629},{"style":1261},[6630],{"type":47,"value":4061},{"type":42,"tag":241,"props":6632,"children":6633},{"style":287},[6634],{"type":47,"value":862},{"type":42,"tag":241,"props":6636,"children":6637},{"style":358},[6638],{"type":47,"value":904},{"type":42,"tag":241,"props":6640,"children":6641},{"style":287},[6642],{"type":47,"value":909},{"type":42,"tag":241,"props":6644,"children":6645},{"class":243,"line":912},[6646,6650,6654,6658,6662,6666,6671,6675,6679,6683,6687],{"type":42,"tag":241,"props":6647,"children":6648},{"style":293},[6649],{"type":47,"value":4081},{"type":42,"tag":241,"props":6651,"children":6652},{"style":287},[6653],{"type":47,"value":654},{"type":42,"tag":241,"props":6655,"children":6656},{"style":657},[6657],{"type":47,"value":660},{"type":42,"tag":241,"props":6659,"children":6660},{"style":352},[6661],{"type":47,"value":665},{"type":42,"tag":241,"props":6663,"children":6664},{"style":287},[6665],{"type":47,"value":321},{"type":42,"tag":241,"props":6667,"children":6668},{"style":253},[6669],{"type":47,"value":6670},"PiP status:",{"type":42,"tag":241,"props":6672,"children":6673},{"style":287},[6674],{"type":47,"value":321},{"type":42,"tag":241,"props":6676,"children":6677},{"style":287},[6678],{"type":47,"value":683},{"type":42,"tag":241,"props":6680,"children":6681},{"style":293},[6682],{"type":47,"value":4115},{"type":42,"tag":241,"props":6684,"children":6685},{"style":352},[6686],{"type":47,"value":862},{"type":42,"tag":241,"props":6688,"children":6689},{"style":287},[6690],{"type":47,"value":326},{"type":42,"tag":241,"props":6692,"children":6693},{"class":243,"line":920},[6694,6698,6702],{"type":42,"tag":241,"props":6695,"children":6696},{"style":287},[6697],{"type":47,"value":1908},{"type":42,"tag":241,"props":6699,"children":6700},{"style":293},[6701],{"type":47,"value":862},{"type":42,"tag":241,"props":6703,"children":6704},{"style":287},[6705],{"type":47,"value":326},{"type":42,"tag":241,"props":6707,"children":6708},{"class":243,"line":929},[6709],{"type":42,"tag":241,"props":6710,"children":6711},{"emptyLinePlaceholder":711},[6712],{"type":47,"value":714},{"type":42,"tag":241,"props":6714,"children":6715},{"class":243,"line":956},[6716,6720,6724,6728,6732,6736,6741,6745,6749,6753,6757,6761,6765],{"type":42,"tag":241,"props":6717,"children":6718},{"style":293},[6719],{"type":47,"value":73},{"type":42,"tag":241,"props":6721,"children":6722},{"style":287},[6723],{"type":47,"value":654},{"type":42,"tag":241,"props":6725,"children":6726},{"style":657},[6727],{"type":47,"value":4031},{"type":42,"tag":241,"props":6729,"children":6730},{"style":293},[6731],{"type":47,"value":665},{"type":42,"tag":241,"props":6733,"children":6734},{"style":287},[6735],{"type":47,"value":321},{"type":42,"tag":241,"props":6737,"children":6738},{"style":253},[6739],{"type":47,"value":6740},"onClaimStatus",{"type":42,"tag":241,"props":6742,"children":6743},{"style":287},[6744],{"type":47,"value":321},{"type":42,"tag":241,"props":6746,"children":6747},{"style":287},[6748],{"type":47,"value":683},{"type":42,"tag":241,"props":6750,"children":6751},{"style":287},[6752],{"type":47,"value":1258},{"type":42,"tag":241,"props":6754,"children":6755},{"style":1261},[6756],{"type":47,"value":4061},{"type":42,"tag":241,"props":6758,"children":6759},{"style":287},[6760],{"type":47,"value":862},{"type":42,"tag":241,"props":6762,"children":6763},{"style":358},[6764],{"type":47,"value":904},{"type":42,"tag":241,"props":6766,"children":6767},{"style":287},[6768],{"type":47,"value":909},{"type":42,"tag":241,"props":6770,"children":6771},{"class":243,"line":988},[6772,6776,6780,6784,6788,6792,6797,6801,6805,6809,6813],{"type":42,"tag":241,"props":6773,"children":6774},{"style":293},[6775],{"type":47,"value":4081},{"type":42,"tag":241,"props":6777,"children":6778},{"style":287},[6779],{"type":47,"value":654},{"type":42,"tag":241,"props":6781,"children":6782},{"style":657},[6783],{"type":47,"value":660},{"type":42,"tag":241,"props":6785,"children":6786},{"style":352},[6787],{"type":47,"value":665},{"type":42,"tag":241,"props":6789,"children":6790},{"style":287},[6791],{"type":47,"value":321},{"type":42,"tag":241,"props":6793,"children":6794},{"style":253},[6795],{"type":47,"value":6796},"Host claim status:",{"type":42,"tag":241,"props":6798,"children":6799},{"style":287},[6800],{"type":47,"value":321},{"type":42,"tag":241,"props":6802,"children":6803},{"style":287},[6804],{"type":47,"value":683},{"type":42,"tag":241,"props":6806,"children":6807},{"style":293},[6808],{"type":47,"value":4115},{"type":42,"tag":241,"props":6810,"children":6811},{"style":352},[6812],{"type":47,"value":862},{"type":42,"tag":241,"props":6814,"children":6815},{"style":287},[6816],{"type":47,"value":326},{"type":42,"tag":241,"props":6818,"children":6819},{"class":243,"line":1011},[6820,6824,6828],{"type":42,"tag":241,"props":6821,"children":6822},{"style":287},[6823],{"type":47,"value":1908},{"type":42,"tag":241,"props":6825,"children":6826},{"style":293},[6827],{"type":47,"value":862},{"type":42,"tag":241,"props":6829,"children":6830},{"style":287},[6831],{"type":47,"value":326},{"type":42,"tag":56,"props":6833,"children":6835},{"id":6834},"common-methods",[6836],{"type":47,"value":6837},"Common Methods",{"type":42,"tag":223,"props":6839,"children":6841},{"id":6840},"meeting-info",[6842],{"type":47,"value":6843},"Meeting Info",{"type":42,"tag":230,"props":6845,"children":6847},{"className":269,"code":6846,"language":271,"meta":235,"style":235},"\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",[6848],{"type":42,"tag":68,"props":6849,"children":6850},{"__ignoreMap":235},[6851,6859,6882,6944,6959,6966,6974,7005,7012,7020,7044,7088,7103,7110,7118,7142,7187],{"type":42,"tag":241,"props":6852,"children":6853},{"class":243,"line":244},[6854],{"type":42,"tag":241,"props":6855,"children":6856},{"style":638},[6857],{"type":47,"value":6858},"\u002F\u002F Get current user\n",{"type":42,"tag":241,"props":6860,"children":6861},{"class":243,"line":397},[6862,6866,6870,6874,6878],{"type":42,"tag":241,"props":6863,"children":6864},{"style":293},[6865],{"type":47,"value":73},{"type":42,"tag":241,"props":6867,"children":6868},{"style":287},[6869],{"type":47,"value":654},{"type":42,"tag":241,"props":6871,"children":6872},{"style":657},[6873],{"type":47,"value":1387},{"type":42,"tag":241,"props":6875,"children":6876},{"style":293},[6877],{"type":47,"value":665},{"type":42,"tag":241,"props":6879,"children":6880},{"style":287},[6881],{"type":47,"value":953},{"type":42,"tag":241,"props":6883,"children":6884},{"class":243,"line":442},[6885,6890,6894,6898,6902,6906,6910,6914,6918,6922,6927,6931,6935,6939],{"type":42,"tag":241,"props":6886,"children":6887},{"style":657},[6888],{"type":47,"value":6889},"  success",{"type":42,"tag":241,"props":6891,"children":6892},{"style":287},[6893],{"type":47,"value":967},{"type":42,"tag":241,"props":6895,"children":6896},{"style":287},[6897],{"type":47,"value":1258},{"type":42,"tag":241,"props":6899,"children":6900},{"style":1261},[6901],{"type":47,"value":1264},{"type":42,"tag":241,"props":6903,"children":6904},{"style":287},[6905],{"type":47,"value":862},{"type":42,"tag":241,"props":6907,"children":6908},{"style":358},[6909],{"type":47,"value":904},{"type":42,"tag":241,"props":6911,"children":6912},{"style":293},[6913],{"type":47,"value":1429},{"type":42,"tag":241,"props":6915,"children":6916},{"style":287},[6917],{"type":47,"value":654},{"type":42,"tag":241,"props":6919,"children":6920},{"style":657},[6921],{"type":47,"value":660},{"type":42,"tag":241,"props":6923,"children":6924},{"style":293},[6925],{"type":47,"value":6926},"(res",{"type":42,"tag":241,"props":6928,"children":6929},{"style":287},[6930],{"type":47,"value":654},{"type":42,"tag":241,"props":6932,"children":6933},{"style":293},[6934],{"type":47,"value":1472},{"type":42,"tag":241,"props":6936,"children":6937},{"style":287},[6938],{"type":47,"value":654},{"type":42,"tag":241,"props":6940,"children":6941},{"style":293},[6942],{"type":47,"value":6943},"currentUser)\n",{"type":42,"tag":241,"props":6945,"children":6946},{"class":243,"line":487},[6947,6951,6955],{"type":42,"tag":241,"props":6948,"children":6949},{"style":287},[6950],{"type":47,"value":1908},{"type":42,"tag":241,"props":6952,"children":6953},{"style":293},[6954],{"type":47,"value":862},{"type":42,"tag":241,"props":6956,"children":6957},{"style":287},[6958],{"type":47,"value":326},{"type":42,"tag":241,"props":6960,"children":6961},{"class":243,"line":532},[6962],{"type":42,"tag":241,"props":6963,"children":6964},{"emptyLinePlaceholder":711},[6965],{"type":47,"value":714},{"type":42,"tag":241,"props":6967,"children":6968},{"class":243,"line":577},[6969],{"type":42,"tag":241,"props":6970,"children":6971},{"style":638},[6972],{"type":47,"value":6973},"\u002F\u002F Get all attendees\n",{"type":42,"tag":241,"props":6975,"children":6976},{"class":243,"line":740},[6977,6981,6985,6989,6993,6997,7001],{"type":42,"tag":241,"props":6978,"children":6979},{"style":293},[6980],{"type":47,"value":73},{"type":42,"tag":241,"props":6982,"children":6983},{"style":287},[6984],{"type":47,"value":654},{"type":42,"tag":241,"props":6986,"children":6987},{"style":657},[6988],{"type":47,"value":1353},{"type":42,"tag":241,"props":6990,"children":6991},{"style":293},[6992],{"type":47,"value":665},{"type":42,"tag":241,"props":6994,"children":6995},{"style":287},[6996],{"type":47,"value":1362},{"type":42,"tag":241,"props":6998,"children":6999},{"style":293},[7000],{"type":47,"value":862},{"type":42,"tag":241,"props":7002,"children":7003},{"style":287},[7004],{"type":47,"value":326},{"type":42,"tag":241,"props":7006,"children":7007},{"class":243,"line":749},[7008],{"type":42,"tag":241,"props":7009,"children":7010},{"emptyLinePlaceholder":711},[7011],{"type":47,"value":714},{"type":42,"tag":241,"props":7013,"children":7014},{"class":243,"line":775},[7015],{"type":42,"tag":241,"props":7016,"children":7017},{"style":638},[7018],{"type":47,"value":7019},"\u002F\u002F Get meeting info\n",{"type":42,"tag":241,"props":7021,"children":7022},{"class":243,"line":800},[7023,7027,7031,7036,7040],{"type":42,"tag":241,"props":7024,"children":7025},{"style":293},[7026],{"type":47,"value":73},{"type":42,"tag":241,"props":7028,"children":7029},{"style":287},[7030],{"type":47,"value":654},{"type":42,"tag":241,"props":7032,"children":7033},{"style":657},[7034],{"type":47,"value":7035},"getCurrentMeetingInfo",{"type":42,"tag":241,"props":7037,"children":7038},{"style":293},[7039],{"type":47,"value":665},{"type":42,"tag":241,"props":7041,"children":7042},{"style":287},[7043],{"type":47,"value":953},{"type":42,"tag":241,"props":7045,"children":7046},{"class":243,"line":808},[7047,7051,7055,7059,7063,7067,7071,7075,7079,7083],{"type":42,"tag":241,"props":7048,"children":7049},{"style":657},[7050],{"type":47,"value":6889},{"type":42,"tag":241,"props":7052,"children":7053},{"style":287},[7054],{"type":47,"value":967},{"type":42,"tag":241,"props":7056,"children":7057},{"style":287},[7058],{"type":47,"value":1258},{"type":42,"tag":241,"props":7060,"children":7061},{"style":1261},[7062],{"type":47,"value":1264},{"type":42,"tag":241,"props":7064,"children":7065},{"style":287},[7066],{"type":47,"value":862},{"type":42,"tag":241,"props":7068,"children":7069},{"style":358},[7070],{"type":47,"value":904},{"type":42,"tag":241,"props":7072,"children":7073},{"style":293},[7074],{"type":47,"value":1429},{"type":42,"tag":241,"props":7076,"children":7077},{"style":287},[7078],{"type":47,"value":654},{"type":42,"tag":241,"props":7080,"children":7081},{"style":657},[7082],{"type":47,"value":660},{"type":42,"tag":241,"props":7084,"children":7085},{"style":293},[7086],{"type":47,"value":7087},"(res)\n",{"type":42,"tag":241,"props":7089,"children":7090},{"class":243,"line":817},[7091,7095,7099],{"type":42,"tag":241,"props":7092,"children":7093},{"style":287},[7094],{"type":47,"value":1908},{"type":42,"tag":241,"props":7096,"children":7097},{"style":293},[7098],{"type":47,"value":862},{"type":42,"tag":241,"props":7100,"children":7101},{"style":287},[7102],{"type":47,"value":326},{"type":42,"tag":241,"props":7104,"children":7105},{"class":243,"line":869},[7106],{"type":42,"tag":241,"props":7107,"children":7108},{"emptyLinePlaceholder":711},[7109],{"type":47,"value":714},{"type":42,"tag":241,"props":7111,"children":7112},{"class":243,"line":912},[7113],{"type":42,"tag":241,"props":7114,"children":7115},{"style":638},[7116],{"type":47,"value":7117},"\u002F\u002F Get SDK version\n",{"type":42,"tag":241,"props":7119,"children":7120},{"class":243,"line":920},[7121,7125,7129,7134,7138],{"type":42,"tag":241,"props":7122,"children":7123},{"style":293},[7124],{"type":47,"value":73},{"type":42,"tag":241,"props":7126,"children":7127},{"style":287},[7128],{"type":47,"value":654},{"type":42,"tag":241,"props":7130,"children":7131},{"style":657},[7132],{"type":47,"value":7133},"getWebSDKVersion",{"type":42,"tag":241,"props":7135,"children":7136},{"style":293},[7137],{"type":47,"value":665},{"type":42,"tag":241,"props":7139,"children":7140},{"style":287},[7141],{"type":47,"value":953},{"type":42,"tag":241,"props":7143,"children":7144},{"class":243,"line":929},[7145,7149,7153,7157,7162,7166,7170,7174,7178,7182],{"type":42,"tag":241,"props":7146,"children":7147},{"style":657},[7148],{"type":47,"value":6889},{"type":42,"tag":241,"props":7150,"children":7151},{"style":287},[7152],{"type":47,"value":967},{"type":42,"tag":241,"props":7154,"children":7155},{"style":287},[7156],{"type":47,"value":1258},{"type":42,"tag":241,"props":7158,"children":7159},{"style":1261},[7160],{"type":47,"value":7161},"version",{"type":42,"tag":241,"props":7163,"children":7164},{"style":287},[7165],{"type":47,"value":862},{"type":42,"tag":241,"props":7167,"children":7168},{"style":358},[7169],{"type":47,"value":904},{"type":42,"tag":241,"props":7171,"children":7172},{"style":293},[7173],{"type":47,"value":1429},{"type":42,"tag":241,"props":7175,"children":7176},{"style":287},[7177],{"type":47,"value":654},{"type":42,"tag":241,"props":7179,"children":7180},{"style":657},[7181],{"type":47,"value":660},{"type":42,"tag":241,"props":7183,"children":7184},{"style":293},[7185],{"type":47,"value":7186},"(version)\n",{"type":42,"tag":241,"props":7188,"children":7189},{"class":243,"line":956},[7190,7194,7198],{"type":42,"tag":241,"props":7191,"children":7192},{"style":287},[7193],{"type":47,"value":1908},{"type":42,"tag":241,"props":7195,"children":7196},{"style":293},[7197],{"type":47,"value":862},{"type":42,"tag":241,"props":7199,"children":7200},{"style":287},[7201],{"type":47,"value":326},{"type":42,"tag":223,"props":7203,"children":7205},{"id":7204},"audiovideo-control",[7206],{"type":47,"value":7207},"Audio\u002FVideo Control",{"type":42,"tag":230,"props":7209,"children":7211},{"className":269,"code":7210,"language":271,"meta":235,"style":235},"\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",[7212],{"type":42,"tag":68,"props":7213,"children":7214},{"__ignoreMap":235},[7215,7223,7282,7289,7297,7346,7353,7361,7410,7417,7425],{"type":42,"tag":241,"props":7216,"children":7217},{"class":243,"line":244},[7218],{"type":42,"tag":241,"props":7219,"children":7220},{"style":638},[7221],{"type":47,"value":7222},"\u002F\u002F Mute\u002Funmute specific user\n",{"type":42,"tag":241,"props":7224,"children":7225},{"class":243,"line":397},[7226,7230,7234,7239,7243,7248,7253,7257,7262,7266,7270,7274,7278],{"type":42,"tag":241,"props":7227,"children":7228},{"style":293},[7229],{"type":47,"value":73},{"type":42,"tag":241,"props":7231,"children":7232},{"style":287},[7233],{"type":47,"value":654},{"type":42,"tag":241,"props":7235,"children":7236},{"style":657},[7237],{"type":47,"value":7238},"mute",{"type":42,"tag":241,"props":7240,"children":7241},{"style":293},[7242],{"type":47,"value":665},{"type":42,"tag":241,"props":7244,"children":7245},{"style":287},[7246],{"type":47,"value":7247},"{",{"type":42,"tag":241,"props":7249,"children":7250},{"style":293},[7251],{"type":47,"value":7252}," userId",{"type":42,"tag":241,"props":7254,"children":7255},{"style":287},[7256],{"type":47,"value":683},{"type":42,"tag":241,"props":7258,"children":7259},{"style":352},[7260],{"type":47,"value":7261}," mute",{"type":42,"tag":241,"props":7263,"children":7264},{"style":287},[7265],{"type":47,"value":967},{"type":42,"tag":241,"props":7267,"children":7268},{"style":1001},[7269],{"type":47,"value":1004},{"type":42,"tag":241,"props":7271,"children":7272},{"style":287},[7273],{"type":47,"value":301},{"type":42,"tag":241,"props":7275,"children":7276},{"style":293},[7277],{"type":47,"value":862},{"type":42,"tag":241,"props":7279,"children":7280},{"style":287},[7281],{"type":47,"value":326},{"type":42,"tag":241,"props":7283,"children":7284},{"class":243,"line":442},[7285],{"type":42,"tag":241,"props":7286,"children":7287},{"emptyLinePlaceholder":711},[7288],{"type":47,"value":714},{"type":42,"tag":241,"props":7290,"children":7291},{"class":243,"line":487},[7292],{"type":42,"tag":241,"props":7293,"children":7294},{"style":638},[7295],{"type":47,"value":7296},"\u002F\u002F Mute\u002Funmute all\n",{"type":42,"tag":241,"props":7298,"children":7299},{"class":243,"line":532},[7300,7304,7308,7313,7317,7321,7326,7330,7334,7338,7342],{"type":42,"tag":241,"props":7301,"children":7302},{"style":293},[7303],{"type":47,"value":73},{"type":42,"tag":241,"props":7305,"children":7306},{"style":287},[7307],{"type":47,"value":654},{"type":42,"tag":241,"props":7309,"children":7310},{"style":657},[7311],{"type":47,"value":7312},"muteAll",{"type":42,"tag":241,"props":7314,"children":7315},{"style":293},[7316],{"type":47,"value":665},{"type":42,"tag":241,"props":7318,"children":7319},{"style":287},[7320],{"type":47,"value":7247},{"type":42,"tag":241,"props":7322,"children":7323},{"style":352},[7324],{"type":47,"value":7325}," muteAll",{"type":42,"tag":241,"props":7327,"children":7328},{"style":287},[7329],{"type":47,"value":967},{"type":42,"tag":241,"props":7331,"children":7332},{"style":1001},[7333],{"type":47,"value":1004},{"type":42,"tag":241,"props":7335,"children":7336},{"style":287},[7337],{"type":47,"value":301},{"type":42,"tag":241,"props":7339,"children":7340},{"style":293},[7341],{"type":47,"value":862},{"type":42,"tag":241,"props":7343,"children":7344},{"style":287},[7345],{"type":47,"value":326},{"type":42,"tag":241,"props":7347,"children":7348},{"class":243,"line":577},[7349],{"type":42,"tag":241,"props":7350,"children":7351},{"emptyLinePlaceholder":711},[7352],{"type":47,"value":714},{"type":42,"tag":241,"props":7354,"children":7355},{"class":243,"line":740},[7356],{"type":42,"tag":241,"props":7357,"children":7358},{"style":638},[7359],{"type":47,"value":7360},"\u002F\u002F Stop incoming audio\n",{"type":42,"tag":241,"props":7362,"children":7363},{"class":243,"line":749},[7364,7368,7372,7377,7381,7385,7390,7394,7398,7402,7406],{"type":42,"tag":241,"props":7365,"children":7366},{"style":293},[7367],{"type":47,"value":73},{"type":42,"tag":241,"props":7369,"children":7370},{"style":287},[7371],{"type":47,"value":654},{"type":42,"tag":241,"props":7373,"children":7374},{"style":657},[7375],{"type":47,"value":7376},"stopIncomingAudio",{"type":42,"tag":241,"props":7378,"children":7379},{"style":293},[7380],{"type":47,"value":665},{"type":42,"tag":241,"props":7382,"children":7383},{"style":287},[7384],{"type":47,"value":7247},{"type":42,"tag":241,"props":7386,"children":7387},{"style":352},[7388],{"type":47,"value":7389}," stop",{"type":42,"tag":241,"props":7391,"children":7392},{"style":287},[7393],{"type":47,"value":967},{"type":42,"tag":241,"props":7395,"children":7396},{"style":1001},[7397],{"type":47,"value":1004},{"type":42,"tag":241,"props":7399,"children":7400},{"style":287},[7401],{"type":47,"value":301},{"type":42,"tag":241,"props":7403,"children":7404},{"style":293},[7405],{"type":47,"value":862},{"type":42,"tag":241,"props":7407,"children":7408},{"style":287},[7409],{"type":47,"value":326},{"type":42,"tag":241,"props":7411,"children":7412},{"class":243,"line":775},[7413],{"type":42,"tag":241,"props":7414,"children":7415},{"emptyLinePlaceholder":711},[7416],{"type":47,"value":714},{"type":42,"tag":241,"props":7418,"children":7419},{"class":243,"line":800},[7420],{"type":42,"tag":241,"props":7421,"children":7422},{"style":638},[7423],{"type":47,"value":7424},"\u002F\u002F Mirror video\n",{"type":42,"tag":241,"props":7426,"children":7427},{"class":243,"line":808},[7428,7432,7436,7441,7445,7449,7454,7458,7462,7466,7470],{"type":42,"tag":241,"props":7429,"children":7430},{"style":293},[7431],{"type":47,"value":73},{"type":42,"tag":241,"props":7433,"children":7434},{"style":287},[7435],{"type":47,"value":654},{"type":42,"tag":241,"props":7437,"children":7438},{"style":657},[7439],{"type":47,"value":7440},"mirrorVideo",{"type":42,"tag":241,"props":7442,"children":7443},{"style":293},[7444],{"type":47,"value":665},{"type":42,"tag":241,"props":7446,"children":7447},{"style":287},[7448],{"type":47,"value":7247},{"type":42,"tag":241,"props":7450,"children":7451},{"style":352},[7452],{"type":47,"value":7453}," mirror",{"type":42,"tag":241,"props":7455,"children":7456},{"style":287},[7457],{"type":47,"value":967},{"type":42,"tag":241,"props":7459,"children":7460},{"style":1001},[7461],{"type":47,"value":1004},{"type":42,"tag":241,"props":7463,"children":7464},{"style":287},[7465],{"type":47,"value":301},{"type":42,"tag":241,"props":7467,"children":7468},{"style":293},[7469],{"type":47,"value":862},{"type":42,"tag":241,"props":7471,"children":7472},{"style":287},[7473],{"type":47,"value":326},{"type":42,"tag":223,"props":7475,"children":7477},{"id":7476},"chat",[7478],{"type":47,"value":7479},"Chat",{"type":42,"tag":230,"props":7481,"children":7483},{"className":269,"code":7482,"language":271,"meta":235,"style":235},"\u002F\u002F Send chat message\nZoomMtg.sendChat({\n  message: 'Hello!',\n  userId: 0  \u002F\u002F 0 = everyone\n});\n",[7484],{"type":42,"tag":68,"props":7485,"children":7486},{"__ignoreMap":235},[7487,7495,7519,7548,7571],{"type":42,"tag":241,"props":7488,"children":7489},{"class":243,"line":244},[7490],{"type":42,"tag":241,"props":7491,"children":7492},{"style":638},[7493],{"type":47,"value":7494},"\u002F\u002F Send chat message\n",{"type":42,"tag":241,"props":7496,"children":7497},{"class":243,"line":397},[7498,7502,7506,7511,7515],{"type":42,"tag":241,"props":7499,"children":7500},{"style":293},[7501],{"type":47,"value":73},{"type":42,"tag":241,"props":7503,"children":7504},{"style":287},[7505],{"type":47,"value":654},{"type":42,"tag":241,"props":7507,"children":7508},{"style":657},[7509],{"type":47,"value":7510},"sendChat",{"type":42,"tag":241,"props":7512,"children":7513},{"style":293},[7514],{"type":47,"value":665},{"type":42,"tag":241,"props":7516,"children":7517},{"style":287},[7518],{"type":47,"value":953},{"type":42,"tag":241,"props":7520,"children":7521},{"class":243,"line":442},[7522,7527,7531,7535,7540,7544],{"type":42,"tag":241,"props":7523,"children":7524},{"style":352},[7525],{"type":47,"value":7526},"  message",{"type":42,"tag":241,"props":7528,"children":7529},{"style":287},[7530],{"type":47,"value":967},{"type":42,"tag":241,"props":7532,"children":7533},{"style":287},[7534],{"type":47,"value":311},{"type":42,"tag":241,"props":7536,"children":7537},{"style":253},[7538],{"type":47,"value":7539},"Hello!",{"type":42,"tag":241,"props":7541,"children":7542},{"style":287},[7543],{"type":47,"value":321},{"type":42,"tag":241,"props":7545,"children":7546},{"style":287},[7547],{"type":47,"value":985},{"type":42,"tag":241,"props":7549,"children":7550},{"class":243,"line":487},[7551,7556,7560,7566],{"type":42,"tag":241,"props":7552,"children":7553},{"style":352},[7554],{"type":47,"value":7555},"  userId",{"type":42,"tag":241,"props":7557,"children":7558},{"style":287},[7559],{"type":47,"value":967},{"type":42,"tag":241,"props":7561,"children":7563},{"style":7562},"--shiki-light:#F76D47;--shiki-default:#F78C6C;--shiki-dark:#F78C6C",[7564],{"type":47,"value":7565}," 0",{"type":42,"tag":241,"props":7567,"children":7568},{"style":638},[7569],{"type":47,"value":7570},"  \u002F\u002F 0 = everyone\n",{"type":42,"tag":241,"props":7572,"children":7573},{"class":243,"line":532},[7574,7578,7582],{"type":42,"tag":241,"props":7575,"children":7576},{"style":287},[7577],{"type":47,"value":1908},{"type":42,"tag":241,"props":7579,"children":7580},{"style":293},[7581],{"type":47,"value":862},{"type":42,"tag":241,"props":7583,"children":7584},{"style":287},[7585],{"type":47,"value":326},{"type":42,"tag":223,"props":7587,"children":7589},{"id":7588},"meeting-control",[7590],{"type":47,"value":7591},"Meeting Control",{"type":42,"tag":230,"props":7593,"children":7595},{"className":269,"code":7594,"language":271,"meta":235,"style":235},"\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",[7596],{"type":42,"tag":68,"props":7597,"children":7598},{"__ignoreMap":235},[7599,7607,7639,7646,7654,7686,7693,7701],{"type":42,"tag":241,"props":7600,"children":7601},{"class":243,"line":244},[7602],{"type":42,"tag":241,"props":7603,"children":7604},{"style":638},[7605],{"type":47,"value":7606},"\u002F\u002F Leave meeting\n",{"type":42,"tag":241,"props":7608,"children":7609},{"class":243,"line":397},[7610,7614,7618,7623,7627,7631,7635],{"type":42,"tag":241,"props":7611,"children":7612},{"style":293},[7613],{"type":47,"value":73},{"type":42,"tag":241,"props":7615,"children":7616},{"style":287},[7617],{"type":47,"value":654},{"type":42,"tag":241,"props":7619,"children":7620},{"style":657},[7621],{"type":47,"value":7622},"leaveMeeting",{"type":42,"tag":241,"props":7624,"children":7625},{"style":293},[7626],{"type":47,"value":665},{"type":42,"tag":241,"props":7628,"children":7629},{"style":287},[7630],{"type":47,"value":1362},{"type":42,"tag":241,"props":7632,"children":7633},{"style":293},[7634],{"type":47,"value":862},{"type":42,"tag":241,"props":7636,"children":7637},{"style":287},[7638],{"type":47,"value":326},{"type":42,"tag":241,"props":7640,"children":7641},{"class":243,"line":442},[7642],{"type":42,"tag":241,"props":7643,"children":7644},{"emptyLinePlaceholder":711},[7645],{"type":47,"value":714},{"type":42,"tag":241,"props":7647,"children":7648},{"class":243,"line":487},[7649],{"type":42,"tag":241,"props":7650,"children":7651},{"style":638},[7652],{"type":47,"value":7653},"\u002F\u002F End meeting (host only)\n",{"type":42,"tag":241,"props":7655,"children":7656},{"class":243,"line":532},[7657,7661,7665,7670,7674,7678,7682],{"type":42,"tag":241,"props":7658,"children":7659},{"style":293},[7660],{"type":47,"value":73},{"type":42,"tag":241,"props":7662,"children":7663},{"style":287},[7664],{"type":47,"value":654},{"type":42,"tag":241,"props":7666,"children":7667},{"style":657},[7668],{"type":47,"value":7669},"endMeeting",{"type":42,"tag":241,"props":7671,"children":7672},{"style":293},[7673],{"type":47,"value":665},{"type":42,"tag":241,"props":7675,"children":7676},{"style":287},[7677],{"type":47,"value":1362},{"type":42,"tag":241,"props":7679,"children":7680},{"style":293},[7681],{"type":47,"value":862},{"type":42,"tag":241,"props":7683,"children":7684},{"style":287},[7685],{"type":47,"value":326},{"type":42,"tag":241,"props":7687,"children":7688},{"class":243,"line":577},[7689],{"type":42,"tag":241,"props":7690,"children":7691},{"emptyLinePlaceholder":711},[7692],{"type":47,"value":714},{"type":42,"tag":241,"props":7694,"children":7695},{"class":243,"line":740},[7696],{"type":42,"tag":241,"props":7697,"children":7698},{"style":638},[7699],{"type":47,"value":7700},"\u002F\u002F Lock meeting\n",{"type":42,"tag":241,"props":7702,"children":7703},{"class":243,"line":749},[7704,7708,7712,7717,7721,7725,7730,7734,7738,7742,7746],{"type":42,"tag":241,"props":7705,"children":7706},{"style":293},[7707],{"type":47,"value":73},{"type":42,"tag":241,"props":7709,"children":7710},{"style":287},[7711],{"type":47,"value":654},{"type":42,"tag":241,"props":7713,"children":7714},{"style":657},[7715],{"type":47,"value":7716},"lockMeeting",{"type":42,"tag":241,"props":7718,"children":7719},{"style":293},[7720],{"type":47,"value":665},{"type":42,"tag":241,"props":7722,"children":7723},{"style":287},[7724],{"type":47,"value":7247},{"type":42,"tag":241,"props":7726,"children":7727},{"style":352},[7728],{"type":47,"value":7729}," lock",{"type":42,"tag":241,"props":7731,"children":7732},{"style":287},[7733],{"type":47,"value":967},{"type":42,"tag":241,"props":7735,"children":7736},{"style":1001},[7737],{"type":47,"value":1004},{"type":42,"tag":241,"props":7739,"children":7740},{"style":287},[7741],{"type":47,"value":301},{"type":42,"tag":241,"props":7743,"children":7744},{"style":293},[7745],{"type":47,"value":862},{"type":42,"tag":241,"props":7747,"children":7748},{"style":287},[7749],{"type":47,"value":326},{"type":42,"tag":223,"props":7751,"children":7753},{"id":7752},"host-controls",[7754],{"type":47,"value":7755},"Host Controls",{"type":42,"tag":230,"props":7757,"children":7759},{"className":269,"code":7758,"language":271,"meta":235,"style":235},"\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",[7760],{"type":42,"tag":68,"props":7761,"children":7762},{"__ignoreMap":235},[7763,7771,7812,7819,7827,7867,7874,7882,7922,7929,7937,7977,7984,7992,8049,8056,8064,8122,8129,8137,8169,8176,8184],{"type":42,"tag":241,"props":7764,"children":7765},{"class":243,"line":244},[7766],{"type":42,"tag":241,"props":7767,"children":7768},{"style":638},[7769],{"type":47,"value":7770},"\u002F\u002F Make host\n",{"type":42,"tag":241,"props":7772,"children":7773},{"class":243,"line":397},[7774,7778,7782,7787,7791,7795,7800,7804,7808],{"type":42,"tag":241,"props":7775,"children":7776},{"style":293},[7777],{"type":47,"value":73},{"type":42,"tag":241,"props":7779,"children":7780},{"style":287},[7781],{"type":47,"value":654},{"type":42,"tag":241,"props":7783,"children":7784},{"style":657},[7785],{"type":47,"value":7786},"makeHost",{"type":42,"tag":241,"props":7788,"children":7789},{"style":293},[7790],{"type":47,"value":665},{"type":42,"tag":241,"props":7792,"children":7793},{"style":287},[7794],{"type":47,"value":7247},{"type":42,"tag":241,"props":7796,"children":7797},{"style":293},[7798],{"type":47,"value":7799}," userId ",{"type":42,"tag":241,"props":7801,"children":7802},{"style":287},[7803],{"type":47,"value":1908},{"type":42,"tag":241,"props":7805,"children":7806},{"style":293},[7807],{"type":47,"value":862},{"type":42,"tag":241,"props":7809,"children":7810},{"style":287},[7811],{"type":47,"value":326},{"type":42,"tag":241,"props":7813,"children":7814},{"class":243,"line":442},[7815],{"type":42,"tag":241,"props":7816,"children":7817},{"emptyLinePlaceholder":711},[7818],{"type":47,"value":714},{"type":42,"tag":241,"props":7820,"children":7821},{"class":243,"line":487},[7822],{"type":42,"tag":241,"props":7823,"children":7824},{"style":638},[7825],{"type":47,"value":7826},"\u002F\u002F Make co-host\n",{"type":42,"tag":241,"props":7828,"children":7829},{"class":243,"line":532},[7830,7834,7838,7843,7847,7851,7855,7859,7863],{"type":42,"tag":241,"props":7831,"children":7832},{"style":293},[7833],{"type":47,"value":73},{"type":42,"tag":241,"props":7835,"children":7836},{"style":287},[7837],{"type":47,"value":654},{"type":42,"tag":241,"props":7839,"children":7840},{"style":657},[7841],{"type":47,"value":7842},"makeCoHost",{"type":42,"tag":241,"props":7844,"children":7845},{"style":293},[7846],{"type":47,"value":665},{"type":42,"tag":241,"props":7848,"children":7849},{"style":287},[7850],{"type":47,"value":7247},{"type":42,"tag":241,"props":7852,"children":7853},{"style":293},[7854],{"type":47,"value":7799},{"type":42,"tag":241,"props":7856,"children":7857},{"style":287},[7858],{"type":47,"value":1908},{"type":42,"tag":241,"props":7860,"children":7861},{"style":293},[7862],{"type":47,"value":862},{"type":42,"tag":241,"props":7864,"children":7865},{"style":287},[7866],{"type":47,"value":326},{"type":42,"tag":241,"props":7868,"children":7869},{"class":243,"line":577},[7870],{"type":42,"tag":241,"props":7871,"children":7872},{"emptyLinePlaceholder":711},[7873],{"type":47,"value":714},{"type":42,"tag":241,"props":7875,"children":7876},{"class":243,"line":740},[7877],{"type":42,"tag":241,"props":7878,"children":7879},{"style":638},[7880],{"type":47,"value":7881},"\u002F\u002F Remove co-host\n",{"type":42,"tag":241,"props":7883,"children":7884},{"class":243,"line":749},[7885,7889,7893,7898,7902,7906,7910,7914,7918],{"type":42,"tag":241,"props":7886,"children":7887},{"style":293},[7888],{"type":47,"value":73},{"type":42,"tag":241,"props":7890,"children":7891},{"style":287},[7892],{"type":47,"value":654},{"type":42,"tag":241,"props":7894,"children":7895},{"style":657},[7896],{"type":47,"value":7897},"withdrawCoHost",{"type":42,"tag":241,"props":7899,"children":7900},{"style":293},[7901],{"type":47,"value":665},{"type":42,"tag":241,"props":7903,"children":7904},{"style":287},[7905],{"type":47,"value":7247},{"type":42,"tag":241,"props":7907,"children":7908},{"style":293},[7909],{"type":47,"value":7799},{"type":42,"tag":241,"props":7911,"children":7912},{"style":287},[7913],{"type":47,"value":1908},{"type":42,"tag":241,"props":7915,"children":7916},{"style":293},[7917],{"type":47,"value":862},{"type":42,"tag":241,"props":7919,"children":7920},{"style":287},[7921],{"type":47,"value":326},{"type":42,"tag":241,"props":7923,"children":7924},{"class":243,"line":775},[7925],{"type":42,"tag":241,"props":7926,"children":7927},{"emptyLinePlaceholder":711},[7928],{"type":47,"value":714},{"type":42,"tag":241,"props":7930,"children":7931},{"class":243,"line":800},[7932],{"type":42,"tag":241,"props":7933,"children":7934},{"style":638},[7935],{"type":47,"value":7936},"\u002F\u002F Remove participant\n",{"type":42,"tag":241,"props":7938,"children":7939},{"class":243,"line":808},[7940,7944,7948,7953,7957,7961,7965,7969,7973],{"type":42,"tag":241,"props":7941,"children":7942},{"style":293},[7943],{"type":47,"value":73},{"type":42,"tag":241,"props":7945,"children":7946},{"style":287},[7947],{"type":47,"value":654},{"type":42,"tag":241,"props":7949,"children":7950},{"style":657},[7951],{"type":47,"value":7952},"expel",{"type":42,"tag":241,"props":7954,"children":7955},{"style":293},[7956],{"type":47,"value":665},{"type":42,"tag":241,"props":7958,"children":7959},{"style":287},[7960],{"type":47,"value":7247},{"type":42,"tag":241,"props":7962,"children":7963},{"style":293},[7964],{"type":47,"value":7799},{"type":42,"tag":241,"props":7966,"children":7967},{"style":287},[7968],{"type":47,"value":1908},{"type":42,"tag":241,"props":7970,"children":7971},{"style":293},[7972],{"type":47,"value":862},{"type":42,"tag":241,"props":7974,"children":7975},{"style":287},[7976],{"type":47,"value":326},{"type":42,"tag":241,"props":7978,"children":7979},{"class":243,"line":817},[7980],{"type":42,"tag":241,"props":7981,"children":7982},{"emptyLinePlaceholder":711},[7983],{"type":47,"value":714},{"type":42,"tag":241,"props":7985,"children":7986},{"class":243,"line":869},[7987],{"type":42,"tag":241,"props":7988,"children":7989},{"style":638},[7990],{"type":47,"value":7991},"\u002F\u002F Put on hold\n",{"type":42,"tag":241,"props":7993,"children":7994},{"class":243,"line":912},[7995,7999,8003,8008,8012,8016,8020,8024,8029,8033,8037,8041,8045],{"type":42,"tag":241,"props":7996,"children":7997},{"style":293},[7998],{"type":47,"value":73},{"type":42,"tag":241,"props":8000,"children":8001},{"style":287},[8002],{"type":47,"value":654},{"type":42,"tag":241,"props":8004,"children":8005},{"style":657},[8006],{"type":47,"value":8007},"putOnHold",{"type":42,"tag":241,"props":8009,"children":8010},{"style":293},[8011],{"type":47,"value":665},{"type":42,"tag":241,"props":8013,"children":8014},{"style":287},[8015],{"type":47,"value":7247},{"type":42,"tag":241,"props":8017,"children":8018},{"style":293},[8019],{"type":47,"value":7252},{"type":42,"tag":241,"props":8021,"children":8022},{"style":287},[8023],{"type":47,"value":683},{"type":42,"tag":241,"props":8025,"children":8026},{"style":352},[8027],{"type":47,"value":8028}," bHold",{"type":42,"tag":241,"props":8030,"children":8031},{"style":287},[8032],{"type":47,"value":967},{"type":42,"tag":241,"props":8034,"children":8035},{"style":1001},[8036],{"type":47,"value":1004},{"type":42,"tag":241,"props":8038,"children":8039},{"style":287},[8040],{"type":47,"value":301},{"type":42,"tag":241,"props":8042,"children":8043},{"style":293},[8044],{"type":47,"value":862},{"type":42,"tag":241,"props":8046,"children":8047},{"style":287},[8048],{"type":47,"value":326},{"type":42,"tag":241,"props":8050,"children":8051},{"class":243,"line":920},[8052],{"type":42,"tag":241,"props":8053,"children":8054},{"emptyLinePlaceholder":711},[8055],{"type":47,"value":714},{"type":42,"tag":241,"props":8057,"children":8058},{"class":243,"line":929},[8059],{"type":42,"tag":241,"props":8060,"children":8061},{"style":638},[8062],{"type":47,"value":8063},"\u002F\u002F Claim host with host key\n",{"type":42,"tag":241,"props":8065,"children":8066},{"class":243,"line":956},[8067,8071,8075,8080,8084,8088,8093,8097,8101,8106,8110,8114,8118],{"type":42,"tag":241,"props":8068,"children":8069},{"style":293},[8070],{"type":47,"value":73},{"type":42,"tag":241,"props":8072,"children":8073},{"style":287},[8074],{"type":47,"value":654},{"type":42,"tag":241,"props":8076,"children":8077},{"style":657},[8078],{"type":47,"value":8079},"claimHostWithHostKey",{"type":42,"tag":241,"props":8081,"children":8082},{"style":293},[8083],{"type":47,"value":665},{"type":42,"tag":241,"props":8085,"children":8086},{"style":287},[8087],{"type":47,"value":7247},{"type":42,"tag":241,"props":8089,"children":8090},{"style":352},[8091],{"type":47,"value":8092}," hostKey",{"type":42,"tag":241,"props":8094,"children":8095},{"style":287},[8096],{"type":47,"value":967},{"type":42,"tag":241,"props":8098,"children":8099},{"style":287},[8100],{"type":47,"value":311},{"type":42,"tag":241,"props":8102,"children":8103},{"style":253},[8104],{"type":47,"value":8105},"123456",{"type":42,"tag":241,"props":8107,"children":8108},{"style":287},[8109],{"type":47,"value":321},{"type":42,"tag":241,"props":8111,"children":8112},{"style":287},[8113],{"type":47,"value":301},{"type":42,"tag":241,"props":8115,"children":8116},{"style":293},[8117],{"type":47,"value":862},{"type":42,"tag":241,"props":8119,"children":8120},{"style":287},[8121],{"type":47,"value":326},{"type":42,"tag":241,"props":8123,"children":8124},{"class":243,"line":988},[8125],{"type":42,"tag":241,"props":8126,"children":8127},{"emptyLinePlaceholder":711},[8128],{"type":47,"value":714},{"type":42,"tag":241,"props":8130,"children":8131},{"class":243,"line":1011},[8132],{"type":42,"tag":241,"props":8133,"children":8134},{"style":638},[8135],{"type":47,"value":8136},"\u002F\u002F Reclaim host\n",{"type":42,"tag":241,"props":8138,"children":8139},{"class":243,"line":1047},[8140,8144,8148,8153,8157,8161,8165],{"type":42,"tag":241,"props":8141,"children":8142},{"style":293},[8143],{"type":47,"value":73},{"type":42,"tag":241,"props":8145,"children":8146},{"style":287},[8147],{"type":47,"value":654},{"type":42,"tag":241,"props":8149,"children":8150},{"style":657},[8151],{"type":47,"value":8152},"reclaimHost",{"type":42,"tag":241,"props":8154,"children":8155},{"style":293},[8156],{"type":47,"value":665},{"type":42,"tag":241,"props":8158,"children":8159},{"style":287},[8160],{"type":47,"value":1362},{"type":42,"tag":241,"props":8162,"children":8163},{"style":293},[8164],{"type":47,"value":862},{"type":42,"tag":241,"props":8166,"children":8167},{"style":287},[8168],{"type":47,"value":326},{"type":42,"tag":241,"props":8170,"children":8171},{"class":243,"line":1073},[8172],{"type":42,"tag":241,"props":8173,"children":8174},{"emptyLinePlaceholder":711},[8175],{"type":47,"value":714},{"type":42,"tag":241,"props":8177,"children":8178},{"class":243,"line":1115},[8179],{"type":42,"tag":241,"props":8180,"children":8181},{"style":638},[8182],{"type":47,"value":8183},"\u002F\u002F Admit all from waiting room\n",{"type":42,"tag":241,"props":8185,"children":8186},{"class":243,"line":1123},[8187,8191,8195,8200,8204,8208,8212],{"type":42,"tag":241,"props":8188,"children":8189},{"style":293},[8190],{"type":47,"value":73},{"type":42,"tag":241,"props":8192,"children":8193},{"style":287},[8194],{"type":47,"value":654},{"type":42,"tag":241,"props":8196,"children":8197},{"style":657},[8198],{"type":47,"value":8199},"admitAll",{"type":42,"tag":241,"props":8201,"children":8202},{"style":293},[8203],{"type":47,"value":665},{"type":42,"tag":241,"props":8205,"children":8206},{"style":287},[8207],{"type":47,"value":1362},{"type":42,"tag":241,"props":8209,"children":8210},{"style":293},[8211],{"type":47,"value":862},{"type":42,"tag":241,"props":8213,"children":8214},{"style":287},[8215],{"type":47,"value":326},{"type":42,"tag":223,"props":8217,"children":8219},{"id":8218},"raise-hand",[8220],{"type":47,"value":8221},"Raise Hand",{"type":42,"tag":230,"props":8223,"children":8225},{"className":269,"code":8224,"language":271,"meta":235,"style":235},"\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",[8226],{"type":42,"tag":68,"props":8227,"children":8228},{"__ignoreMap":235},[8229,8237,8277,8284,8292,8333,8340,8348],{"type":42,"tag":241,"props":8230,"children":8231},{"class":243,"line":244},[8232],{"type":42,"tag":241,"props":8233,"children":8234},{"style":638},[8235],{"type":47,"value":8236},"\u002F\u002F Raise hand\n",{"type":42,"tag":241,"props":8238,"children":8239},{"class":243,"line":397},[8240,8244,8248,8253,8257,8261,8265,8269,8273],{"type":42,"tag":241,"props":8241,"children":8242},{"style":293},[8243],{"type":47,"value":73},{"type":42,"tag":241,"props":8245,"children":8246},{"style":287},[8247],{"type":47,"value":654},{"type":42,"tag":241,"props":8249,"children":8250},{"style":657},[8251],{"type":47,"value":8252},"raiseHand",{"type":42,"tag":241,"props":8254,"children":8255},{"style":293},[8256],{"type":47,"value":665},{"type":42,"tag":241,"props":8258,"children":8259},{"style":287},[8260],{"type":47,"value":7247},{"type":42,"tag":241,"props":8262,"children":8263},{"style":293},[8264],{"type":47,"value":7799},{"type":42,"tag":241,"props":8266,"children":8267},{"style":287},[8268],{"type":47,"value":1908},{"type":42,"tag":241,"props":8270,"children":8271},{"style":293},[8272],{"type":47,"value":862},{"type":42,"tag":241,"props":8274,"children":8275},{"style":287},[8276],{"type":47,"value":326},{"type":42,"tag":241,"props":8278,"children":8279},{"class":243,"line":442},[8280],{"type":42,"tag":241,"props":8281,"children":8282},{"emptyLinePlaceholder":711},[8283],{"type":47,"value":714},{"type":42,"tag":241,"props":8285,"children":8286},{"class":243,"line":487},[8287],{"type":42,"tag":241,"props":8288,"children":8289},{"style":638},[8290],{"type":47,"value":8291},"\u002F\u002F Lower hand\n",{"type":42,"tag":241,"props":8293,"children":8294},{"class":243,"line":532},[8295,8299,8303,8308,8312,8316,8321,8325,8329],{"type":42,"tag":241,"props":8296,"children":8297},{"style":293},[8298],{"type":47,"value":73},{"type":42,"tag":241,"props":8300,"children":8301},{"style":287},[8302],{"type":47,"value":654},{"type":42,"tag":241,"props":8304,"children":8305},{"style":657},[8306],{"type":47,"value":8307},"lowerHand",{"type":42,"tag":241,"props":8309,"children":8310},{"style":293},[8311],{"type":47,"value":665},{"type":42,"tag":241,"props":8313,"children":8314},{"style":287},[8315],{"type":47,"value":7247},{"type":42,"tag":241,"props":8317,"children":8318},{"style":293},[8319],{"type":47,"value":8320}," oderId ",{"type":42,"tag":241,"props":8322,"children":8323},{"style":287},[8324],{"type":47,"value":1908},{"type":42,"tag":241,"props":8326,"children":8327},{"style":293},[8328],{"type":47,"value":862},{"type":42,"tag":241,"props":8330,"children":8331},{"style":287},[8332],{"type":47,"value":326},{"type":42,"tag":241,"props":8334,"children":8335},{"class":243,"line":577},[8336],{"type":42,"tag":241,"props":8337,"children":8338},{"emptyLinePlaceholder":711},[8339],{"type":47,"value":714},{"type":42,"tag":241,"props":8341,"children":8342},{"class":243,"line":740},[8343],{"type":42,"tag":241,"props":8344,"children":8345},{"style":638},[8346],{"type":47,"value":8347},"\u002F\u002F Lower all hands\n",{"type":42,"tag":241,"props":8349,"children":8350},{"class":243,"line":749},[8351,8355,8359,8364,8368,8372,8376],{"type":42,"tag":241,"props":8352,"children":8353},{"style":293},[8354],{"type":47,"value":73},{"type":42,"tag":241,"props":8356,"children":8357},{"style":287},[8358],{"type":47,"value":654},{"type":42,"tag":241,"props":8360,"children":8361},{"style":657},[8362],{"type":47,"value":8363},"lowerAllHands",{"type":42,"tag":241,"props":8365,"children":8366},{"style":293},[8367],{"type":47,"value":665},{"type":42,"tag":241,"props":8369,"children":8370},{"style":287},[8371],{"type":47,"value":1362},{"type":42,"tag":241,"props":8373,"children":8374},{"style":293},[8375],{"type":47,"value":862},{"type":42,"tag":241,"props":8377,"children":8378},{"style":287},[8379],{"type":47,"value":326},{"type":42,"tag":223,"props":8381,"children":8383},{"id":8382},"spotlight-pin",[8384],{"type":47,"value":8385},"Spotlight & Pin",{"type":42,"tag":230,"props":8387,"children":8389},{"className":269,"code":8388,"language":271,"meta":235,"style":235},"\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",[8390],{"type":42,"tag":68,"props":8391,"children":8392},{"__ignoreMap":235},[8393,8401,8474,8481,8489,8557,8564,8572],{"type":42,"tag":241,"props":8394,"children":8395},{"class":243,"line":244},[8396],{"type":42,"tag":241,"props":8397,"children":8398},{"style":638},[8399],{"type":47,"value":8400},"\u002F\u002F Spotlight video\n",{"type":42,"tag":241,"props":8402,"children":8403},{"class":243,"line":397},[8404,8408,8412,8417,8421,8425,8430,8434,8439,8443,8447,8452,8456,8460,8464,8469],{"type":42,"tag":241,"props":8405,"children":8406},{"style":293},[8407],{"type":47,"value":73},{"type":42,"tag":241,"props":8409,"children":8410},{"style":287},[8411],{"type":47,"value":654},{"type":42,"tag":241,"props":8413,"children":8414},{"style":657},[8415],{"type":47,"value":8416},"operateSpotlight",{"type":42,"tag":241,"props":8418,"children":8419},{"style":293},[8420],{"type":47,"value":665},{"type":42,"tag":241,"props":8422,"children":8423},{"style":287},[8424],{"type":47,"value":7247},{"type":42,"tag":241,"props":8426,"children":8427},{"style":293},[8428],{"type":47,"value":8429}," oderId",{"type":42,"tag":241,"props":8431,"children":8432},{"style":287},[8433],{"type":47,"value":683},{"type":42,"tag":241,"props":8435,"children":8436},{"style":352},[8437],{"type":47,"value":8438}," action",{"type":42,"tag":241,"props":8440,"children":8441},{"style":287},[8442],{"type":47,"value":967},{"type":42,"tag":241,"props":8444,"children":8445},{"style":287},[8446],{"type":47,"value":311},{"type":42,"tag":241,"props":8448,"children":8449},{"style":253},[8450],{"type":47,"value":8451},"add",{"type":42,"tag":241,"props":8453,"children":8454},{"style":287},[8455],{"type":47,"value":321},{"type":42,"tag":241,"props":8457,"children":8458},{"style":287},[8459],{"type":47,"value":301},{"type":42,"tag":241,"props":8461,"children":8462},{"style":293},[8463],{"type":47,"value":862},{"type":42,"tag":241,"props":8465,"children":8466},{"style":287},[8467],{"type":47,"value":8468},";",{"type":42,"tag":241,"props":8470,"children":8471},{"style":638},[8472],{"type":47,"value":8473}," \u002F\u002F or 'remove'\n",{"type":42,"tag":241,"props":8475,"children":8476},{"class":243,"line":442},[8477],{"type":42,"tag":241,"props":8478,"children":8479},{"emptyLinePlaceholder":711},[8480],{"type":47,"value":714},{"type":42,"tag":241,"props":8482,"children":8483},{"class":243,"line":487},[8484],{"type":42,"tag":241,"props":8485,"children":8486},{"style":638},[8487],{"type":47,"value":8488},"\u002F\u002F Pin video\n",{"type":42,"tag":241,"props":8490,"children":8491},{"class":243,"line":532},[8492,8496,8500,8505,8509,8513,8517,8521,8525,8529,8533,8537,8541,8545,8549,8553],{"type":42,"tag":241,"props":8493,"children":8494},{"style":293},[8495],{"type":47,"value":73},{"type":42,"tag":241,"props":8497,"children":8498},{"style":287},[8499],{"type":47,"value":654},{"type":42,"tag":241,"props":8501,"children":8502},{"style":657},[8503],{"type":47,"value":8504},"operatePin",{"type":42,"tag":241,"props":8506,"children":8507},{"style":293},[8508],{"type":47,"value":665},{"type":42,"tag":241,"props":8510,"children":8511},{"style":287},[8512],{"type":47,"value":7247},{"type":42,"tag":241,"props":8514,"children":8515},{"style":293},[8516],{"type":47,"value":8429},{"type":42,"tag":241,"props":8518,"children":8519},{"style":287},[8520],{"type":47,"value":683},{"type":42,"tag":241,"props":8522,"children":8523},{"style":352},[8524],{"type":47,"value":8438},{"type":42,"tag":241,"props":8526,"children":8527},{"style":287},[8528],{"type":47,"value":967},{"type":42,"tag":241,"props":8530,"children":8531},{"style":287},[8532],{"type":47,"value":311},{"type":42,"tag":241,"props":8534,"children":8535},{"style":253},[8536],{"type":47,"value":8451},{"type":42,"tag":241,"props":8538,"children":8539},{"style":287},[8540],{"type":47,"value":321},{"type":42,"tag":241,"props":8542,"children":8543},{"style":287},[8544],{"type":47,"value":301},{"type":42,"tag":241,"props":8546,"children":8547},{"style":293},[8548],{"type":47,"value":862},{"type":42,"tag":241,"props":8550,"children":8551},{"style":287},[8552],{"type":47,"value":8468},{"type":42,"tag":241,"props":8554,"children":8555},{"style":638},[8556],{"type":47,"value":8473},{"type":42,"tag":241,"props":8558,"children":8559},{"class":243,"line":577},[8560],{"type":42,"tag":241,"props":8561,"children":8562},{"emptyLinePlaceholder":711},[8563],{"type":47,"value":714},{"type":42,"tag":241,"props":8565,"children":8566},{"class":243,"line":740},[8567],{"type":42,"tag":241,"props":8568,"children":8569},{"style":638},[8570],{"type":47,"value":8571},"\u002F\u002F Allow multi-pin\n",{"type":42,"tag":241,"props":8573,"children":8574},{"class":243,"line":749},[8575,8579,8583,8588,8592,8596,8601,8605,8609,8613,8617],{"type":42,"tag":241,"props":8576,"children":8577},{"style":293},[8578],{"type":47,"value":73},{"type":42,"tag":241,"props":8580,"children":8581},{"style":287},[8582],{"type":47,"value":654},{"type":42,"tag":241,"props":8584,"children":8585},{"style":657},[8586],{"type":47,"value":8587},"allowMultiPin",{"type":42,"tag":241,"props":8589,"children":8590},{"style":293},[8591],{"type":47,"value":665},{"type":42,"tag":241,"props":8593,"children":8594},{"style":287},[8595],{"type":47,"value":7247},{"type":42,"tag":241,"props":8597,"children":8598},{"style":352},[8599],{"type":47,"value":8600}," allow",{"type":42,"tag":241,"props":8602,"children":8603},{"style":287},[8604],{"type":47,"value":967},{"type":42,"tag":241,"props":8606,"children":8607},{"style":1001},[8608],{"type":47,"value":1004},{"type":42,"tag":241,"props":8610,"children":8611},{"style":287},[8612],{"type":47,"value":301},{"type":42,"tag":241,"props":8614,"children":8615},{"style":293},[8616],{"type":47,"value":862},{"type":42,"tag":241,"props":8618,"children":8619},{"style":287},[8620],{"type":47,"value":326},{"type":42,"tag":223,"props":8622,"children":8624},{"id":8623},"screen-share",[8625],{"type":47,"value":8626},"Screen Share",{"type":42,"tag":230,"props":8628,"children":8630},{"className":269,"code":8629,"language":271,"meta":235,"style":235},"\u002F\u002F Start screen share\nZoomMtg.startScreenShare({});\n\n\u002F\u002F Share specific source (Electron)\nZoomMtg.shareSource({ source });\n",[8631],{"type":42,"tag":68,"props":8632,"children":8633},{"__ignoreMap":235},[8634,8642,8674,8681,8689],{"type":42,"tag":241,"props":8635,"children":8636},{"class":243,"line":244},[8637],{"type":42,"tag":241,"props":8638,"children":8639},{"style":638},[8640],{"type":47,"value":8641},"\u002F\u002F Start screen share\n",{"type":42,"tag":241,"props":8643,"children":8644},{"class":243,"line":397},[8645,8649,8653,8658,8662,8666,8670],{"type":42,"tag":241,"props":8646,"children":8647},{"style":293},[8648],{"type":47,"value":73},{"type":42,"tag":241,"props":8650,"children":8651},{"style":287},[8652],{"type":47,"value":654},{"type":42,"tag":241,"props":8654,"children":8655},{"style":657},[8656],{"type":47,"value":8657},"startScreenShare",{"type":42,"tag":241,"props":8659,"children":8660},{"style":293},[8661],{"type":47,"value":665},{"type":42,"tag":241,"props":8663,"children":8664},{"style":287},[8665],{"type":47,"value":1362},{"type":42,"tag":241,"props":8667,"children":8668},{"style":293},[8669],{"type":47,"value":862},{"type":42,"tag":241,"props":8671,"children":8672},{"style":287},[8673],{"type":47,"value":326},{"type":42,"tag":241,"props":8675,"children":8676},{"class":243,"line":442},[8677],{"type":42,"tag":241,"props":8678,"children":8679},{"emptyLinePlaceholder":711},[8680],{"type":47,"value":714},{"type":42,"tag":241,"props":8682,"children":8683},{"class":243,"line":487},[8684],{"type":42,"tag":241,"props":8685,"children":8686},{"style":638},[8687],{"type":47,"value":8688},"\u002F\u002F Share specific source (Electron)\n",{"type":42,"tag":241,"props":8690,"children":8691},{"class":243,"line":532},[8692,8696,8700,8705,8709,8713,8718,8722,8726],{"type":42,"tag":241,"props":8693,"children":8694},{"style":293},[8695],{"type":47,"value":73},{"type":42,"tag":241,"props":8697,"children":8698},{"style":287},[8699],{"type":47,"value":654},{"type":42,"tag":241,"props":8701,"children":8702},{"style":657},[8703],{"type":47,"value":8704},"shareSource",{"type":42,"tag":241,"props":8706,"children":8707},{"style":293},[8708],{"type":47,"value":665},{"type":42,"tag":241,"props":8710,"children":8711},{"style":287},[8712],{"type":47,"value":7247},{"type":42,"tag":241,"props":8714,"children":8715},{"style":293},[8716],{"type":47,"value":8717}," source ",{"type":42,"tag":241,"props":8719,"children":8720},{"style":287},[8721],{"type":47,"value":1908},{"type":42,"tag":241,"props":8723,"children":8724},{"style":293},[8725],{"type":47,"value":862},{"type":42,"tag":241,"props":8727,"children":8728},{"style":287},[8729],{"type":47,"value":326},{"type":42,"tag":223,"props":8731,"children":8733},{"id":8732},"recording",[8734],{"type":47,"value":8735},"Recording",{"type":42,"tag":230,"props":8737,"children":8739},{"className":269,"code":8738,"language":271,"meta":235,"style":235},"\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",[8740],{"type":42,"tag":68,"props":8741,"children":8742},{"__ignoreMap":235},[8743,8751,8805,8812,8820],{"type":42,"tag":241,"props":8744,"children":8745},{"class":243,"line":244},[8746],{"type":42,"tag":241,"props":8747,"children":8748},{"style":638},[8749],{"type":47,"value":8750},"\u002F\u002F Start\u002Fstop recording\n",{"type":42,"tag":241,"props":8752,"children":8753},{"class":243,"line":397},[8754,8758,8762,8767,8771,8775,8780,8784,8788,8792,8796,8800],{"type":42,"tag":241,"props":8755,"children":8756},{"style":293},[8757],{"type":47,"value":73},{"type":42,"tag":241,"props":8759,"children":8760},{"style":287},[8761],{"type":47,"value":654},{"type":42,"tag":241,"props":8763,"children":8764},{"style":657},[8765],{"type":47,"value":8766},"record",{"type":42,"tag":241,"props":8768,"children":8769},{"style":293},[8770],{"type":47,"value":665},{"type":42,"tag":241,"props":8772,"children":8773},{"style":287},[8774],{"type":47,"value":7247},{"type":42,"tag":241,"props":8776,"children":8777},{"style":352},[8778],{"type":47,"value":8779}," record",{"type":42,"tag":241,"props":8781,"children":8782},{"style":287},[8783],{"type":47,"value":967},{"type":42,"tag":241,"props":8785,"children":8786},{"style":1001},[8787],{"type":47,"value":1004},{"type":42,"tag":241,"props":8789,"children":8790},{"style":287},[8791],{"type":47,"value":301},{"type":42,"tag":241,"props":8793,"children":8794},{"style":293},[8795],{"type":47,"value":862},{"type":42,"tag":241,"props":8797,"children":8798},{"style":287},[8799],{"type":47,"value":8468},{"type":42,"tag":241,"props":8801,"children":8802},{"style":638},[8803],{"type":47,"value":8804}," \u002F\u002F or false\n",{"type":42,"tag":241,"props":8806,"children":8807},{"class":243,"line":442},[8808],{"type":42,"tag":241,"props":8809,"children":8810},{"emptyLinePlaceholder":711},[8811],{"type":47,"value":714},{"type":42,"tag":241,"props":8813,"children":8814},{"class":243,"line":487},[8815],{"type":42,"tag":241,"props":8816,"children":8817},{"style":638},[8818],{"type":47,"value":8819},"\u002F\u002F Show\u002Fhide record button\n",{"type":42,"tag":241,"props":8821,"children":8822},{"class":243,"line":532},[8823,8827,8831,8836,8840,8844,8849,8853,8857,8861,8865],{"type":42,"tag":241,"props":8824,"children":8825},{"style":293},[8826],{"type":47,"value":73},{"type":42,"tag":241,"props":8828,"children":8829},{"style":287},[8830],{"type":47,"value":654},{"type":42,"tag":241,"props":8832,"children":8833},{"style":657},[8834],{"type":47,"value":8835},"showRecordFunction",{"type":42,"tag":241,"props":8837,"children":8838},{"style":293},[8839],{"type":47,"value":665},{"type":42,"tag":241,"props":8841,"children":8842},{"style":287},[8843],{"type":47,"value":7247},{"type":42,"tag":241,"props":8845,"children":8846},{"style":352},[8847],{"type":47,"value":8848}," show",{"type":42,"tag":241,"props":8850,"children":8851},{"style":287},[8852],{"type":47,"value":967},{"type":42,"tag":241,"props":8854,"children":8855},{"style":1001},[8856],{"type":47,"value":1004},{"type":42,"tag":241,"props":8858,"children":8859},{"style":287},[8860],{"type":47,"value":301},{"type":42,"tag":241,"props":8862,"children":8863},{"style":293},[8864],{"type":47,"value":862},{"type":42,"tag":241,"props":8866,"children":8867},{"style":287},[8868],{"type":47,"value":326},{"type":42,"tag":223,"props":8870,"children":8872},{"id":8871},"breakout-rooms-1",[8873],{"type":47,"value":6061},{"type":42,"tag":230,"props":8875,"children":8877},{"className":269,"code":8876,"language":271,"meta":235,"style":235},"\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",[8878],{"type":42,"tag":68,"props":8879,"children":8880},{"__ignoreMap":235},[8881,8889,8913,8995,9010,9017,9025,9057,9064,9072,9104,9111,9119,9160,9167,9175,9207,9214,9222,9270,9277,9285,9309,9352],{"type":42,"tag":241,"props":8882,"children":8883},{"class":243,"line":244},[8884],{"type":42,"tag":241,"props":8885,"children":8886},{"style":638},[8887],{"type":47,"value":8888},"\u002F\u002F Create breakout room\n",{"type":42,"tag":241,"props":8890,"children":8891},{"class":243,"line":397},[8892,8896,8900,8905,8909],{"type":42,"tag":241,"props":8893,"children":8894},{"style":293},[8895],{"type":47,"value":73},{"type":42,"tag":241,"props":8897,"children":8898},{"style":287},[8899],{"type":47,"value":654},{"type":42,"tag":241,"props":8901,"children":8902},{"style":657},[8903],{"type":47,"value":8904},"createBreakoutRoom",{"type":42,"tag":241,"props":8906,"children":8907},{"style":293},[8908],{"type":47,"value":665},{"type":42,"tag":241,"props":8910,"children":8911},{"style":287},[8912],{"type":47,"value":953},{"type":42,"tag":241,"props":8914,"children":8915},{"class":243,"line":442},[8916,8921,8925,8930,8934,8939,8943,8947,8952,8956,8961,8965,8969,8973,8977,8982,8986,8990],{"type":42,"tag":241,"props":8917,"children":8918},{"style":352},[8919],{"type":47,"value":8920},"  rooms",{"type":42,"tag":241,"props":8922,"children":8923},{"style":287},[8924],{"type":47,"value":967},{"type":42,"tag":241,"props":8926,"children":8927},{"style":293},[8928],{"type":47,"value":8929}," [",{"type":42,"tag":241,"props":8931,"children":8932},{"style":287},[8933],{"type":47,"value":7247},{"type":42,"tag":241,"props":8935,"children":8936},{"style":352},[8937],{"type":47,"value":8938}," name",{"type":42,"tag":241,"props":8940,"children":8941},{"style":287},[8942],{"type":47,"value":967},{"type":42,"tag":241,"props":8944,"children":8945},{"style":287},[8946],{"type":47,"value":311},{"type":42,"tag":241,"props":8948,"children":8949},{"style":253},[8950],{"type":47,"value":8951},"Room 1",{"type":42,"tag":241,"props":8953,"children":8954},{"style":287},[8955],{"type":47,"value":321},{"type":42,"tag":241,"props":8957,"children":8958},{"style":287},[8959],{"type":47,"value":8960}," },",{"type":42,"tag":241,"props":8962,"children":8963},{"style":287},[8964],{"type":47,"value":290},{"type":42,"tag":241,"props":8966,"children":8967},{"style":352},[8968],{"type":47,"value":8938},{"type":42,"tag":241,"props":8970,"children":8971},{"style":287},[8972],{"type":47,"value":967},{"type":42,"tag":241,"props":8974,"children":8975},{"style":287},[8976],{"type":47,"value":311},{"type":42,"tag":241,"props":8978,"children":8979},{"style":253},[8980],{"type":47,"value":8981},"Room 2",{"type":42,"tag":241,"props":8983,"children":8984},{"style":287},[8985],{"type":47,"value":321},{"type":42,"tag":241,"props":8987,"children":8988},{"style":287},[8989],{"type":47,"value":301},{"type":42,"tag":241,"props":8991,"children":8992},{"style":293},[8993],{"type":47,"value":8994},"]\n",{"type":42,"tag":241,"props":8996,"children":8997},{"class":243,"line":487},[8998,9002,9006],{"type":42,"tag":241,"props":8999,"children":9000},{"style":287},[9001],{"type":47,"value":1908},{"type":42,"tag":241,"props":9003,"children":9004},{"style":293},[9005],{"type":47,"value":862},{"type":42,"tag":241,"props":9007,"children":9008},{"style":287},[9009],{"type":47,"value":326},{"type":42,"tag":241,"props":9011,"children":9012},{"class":243,"line":532},[9013],{"type":42,"tag":241,"props":9014,"children":9015},{"emptyLinePlaceholder":711},[9016],{"type":47,"value":714},{"type":42,"tag":241,"props":9018,"children":9019},{"class":243,"line":577},[9020],{"type":42,"tag":241,"props":9021,"children":9022},{"style":638},[9023],{"type":47,"value":9024},"\u002F\u002F Open breakout rooms\n",{"type":42,"tag":241,"props":9026,"children":9027},{"class":243,"line":740},[9028,9032,9036,9041,9045,9049,9053],{"type":42,"tag":241,"props":9029,"children":9030},{"style":293},[9031],{"type":47,"value":73},{"type":42,"tag":241,"props":9033,"children":9034},{"style":287},[9035],{"type":47,"value":654},{"type":42,"tag":241,"props":9037,"children":9038},{"style":657},[9039],{"type":47,"value":9040},"openBreakoutRooms",{"type":42,"tag":241,"props":9042,"children":9043},{"style":293},[9044],{"type":47,"value":665},{"type":42,"tag":241,"props":9046,"children":9047},{"style":287},[9048],{"type":47,"value":1362},{"type":42,"tag":241,"props":9050,"children":9051},{"style":293},[9052],{"type":47,"value":862},{"type":42,"tag":241,"props":9054,"children":9055},{"style":287},[9056],{"type":47,"value":326},{"type":42,"tag":241,"props":9058,"children":9059},{"class":243,"line":749},[9060],{"type":42,"tag":241,"props":9061,"children":9062},{"emptyLinePlaceholder":711},[9063],{"type":47,"value":714},{"type":42,"tag":241,"props":9065,"children":9066},{"class":243,"line":775},[9067],{"type":42,"tag":241,"props":9068,"children":9069},{"style":638},[9070],{"type":47,"value":9071},"\u002F\u002F Close breakout rooms\n",{"type":42,"tag":241,"props":9073,"children":9074},{"class":243,"line":800},[9075,9079,9083,9088,9092,9096,9100],{"type":42,"tag":241,"props":9076,"children":9077},{"style":293},[9078],{"type":47,"value":73},{"type":42,"tag":241,"props":9080,"children":9081},{"style":287},[9082],{"type":47,"value":654},{"type":42,"tag":241,"props":9084,"children":9085},{"style":657},[9086],{"type":47,"value":9087},"closeBreakoutRooms",{"type":42,"tag":241,"props":9089,"children":9090},{"style":293},[9091],{"type":47,"value":665},{"type":42,"tag":241,"props":9093,"children":9094},{"style":287},[9095],{"type":47,"value":1362},{"type":42,"tag":241,"props":9097,"children":9098},{"style":293},[9099],{"type":47,"value":862},{"type":42,"tag":241,"props":9101,"children":9102},{"style":287},[9103],{"type":47,"value":326},{"type":42,"tag":241,"props":9105,"children":9106},{"class":243,"line":808},[9107],{"type":42,"tag":241,"props":9108,"children":9109},{"emptyLinePlaceholder":711},[9110],{"type":47,"value":714},{"type":42,"tag":241,"props":9112,"children":9113},{"class":243,"line":817},[9114],{"type":42,"tag":241,"props":9115,"children":9116},{"style":638},[9117],{"type":47,"value":9118},"\u002F\u002F Join breakout room\n",{"type":42,"tag":241,"props":9120,"children":9121},{"class":243,"line":869},[9122,9126,9130,9135,9139,9143,9148,9152,9156],{"type":42,"tag":241,"props":9123,"children":9124},{"style":293},[9125],{"type":47,"value":73},{"type":42,"tag":241,"props":9127,"children":9128},{"style":287},[9129],{"type":47,"value":654},{"type":42,"tag":241,"props":9131,"children":9132},{"style":657},[9133],{"type":47,"value":9134},"joinBreakoutRoom",{"type":42,"tag":241,"props":9136,"children":9137},{"style":293},[9138],{"type":47,"value":665},{"type":42,"tag":241,"props":9140,"children":9141},{"style":287},[9142],{"type":47,"value":7247},{"type":42,"tag":241,"props":9144,"children":9145},{"style":293},[9146],{"type":47,"value":9147}," roomId ",{"type":42,"tag":241,"props":9149,"children":9150},{"style":287},[9151],{"type":47,"value":1908},{"type":42,"tag":241,"props":9153,"children":9154},{"style":293},[9155],{"type":47,"value":862},{"type":42,"tag":241,"props":9157,"children":9158},{"style":287},[9159],{"type":47,"value":326},{"type":42,"tag":241,"props":9161,"children":9162},{"class":243,"line":912},[9163],{"type":42,"tag":241,"props":9164,"children":9165},{"emptyLinePlaceholder":711},[9166],{"type":47,"value":714},{"type":42,"tag":241,"props":9168,"children":9169},{"class":243,"line":920},[9170],{"type":42,"tag":241,"props":9171,"children":9172},{"style":638},[9173],{"type":47,"value":9174},"\u002F\u002F Leave breakout room\n",{"type":42,"tag":241,"props":9176,"children":9177},{"class":243,"line":929},[9178,9182,9186,9191,9195,9199,9203],{"type":42,"tag":241,"props":9179,"children":9180},{"style":293},[9181],{"type":47,"value":73},{"type":42,"tag":241,"props":9183,"children":9184},{"style":287},[9185],{"type":47,"value":654},{"type":42,"tag":241,"props":9187,"children":9188},{"style":657},[9189],{"type":47,"value":9190},"leaveBreakoutRoom",{"type":42,"tag":241,"props":9192,"children":9193},{"style":293},[9194],{"type":47,"value":665},{"type":42,"tag":241,"props":9196,"children":9197},{"style":287},[9198],{"type":47,"value":1362},{"type":42,"tag":241,"props":9200,"children":9201},{"style":293},[9202],{"type":47,"value":862},{"type":42,"tag":241,"props":9204,"children":9205},{"style":287},[9206],{"type":47,"value":326},{"type":42,"tag":241,"props":9208,"children":9209},{"class":243,"line":956},[9210],{"type":42,"tag":241,"props":9211,"children":9212},{"emptyLinePlaceholder":711},[9213],{"type":47,"value":714},{"type":42,"tag":241,"props":9215,"children":9216},{"class":243,"line":988},[9217],{"type":42,"tag":241,"props":9218,"children":9219},{"style":638},[9220],{"type":47,"value":9221},"\u002F\u002F Move user to breakout room\n",{"type":42,"tag":241,"props":9223,"children":9224},{"class":243,"line":1011},[9225,9229,9233,9238,9242,9246,9250,9254,9258,9262,9266],{"type":42,"tag":241,"props":9226,"children":9227},{"style":293},[9228],{"type":47,"value":73},{"type":42,"tag":241,"props":9230,"children":9231},{"style":287},[9232],{"type":47,"value":654},{"type":42,"tag":241,"props":9234,"children":9235},{"style":657},[9236],{"type":47,"value":9237},"moveUserToBreakoutRoom",{"type":42,"tag":241,"props":9239,"children":9240},{"style":293},[9241],{"type":47,"value":665},{"type":42,"tag":241,"props":9243,"children":9244},{"style":287},[9245],{"type":47,"value":7247},{"type":42,"tag":241,"props":9247,"children":9248},{"style":293},[9249],{"type":47,"value":8429},{"type":42,"tag":241,"props":9251,"children":9252},{"style":287},[9253],{"type":47,"value":683},{"type":42,"tag":241,"props":9255,"children":9256},{"style":293},[9257],{"type":47,"value":9147},{"type":42,"tag":241,"props":9259,"children":9260},{"style":287},[9261],{"type":47,"value":1908},{"type":42,"tag":241,"props":9263,"children":9264},{"style":293},[9265],{"type":47,"value":862},{"type":42,"tag":241,"props":9267,"children":9268},{"style":287},[9269],{"type":47,"value":326},{"type":42,"tag":241,"props":9271,"children":9272},{"class":243,"line":1047},[9273],{"type":42,"tag":241,"props":9274,"children":9275},{"emptyLinePlaceholder":711},[9276],{"type":47,"value":714},{"type":42,"tag":241,"props":9278,"children":9279},{"class":243,"line":1073},[9280],{"type":42,"tag":241,"props":9281,"children":9282},{"style":638},[9283],{"type":47,"value":9284},"\u002F\u002F Get breakout room status\n",{"type":42,"tag":241,"props":9286,"children":9287},{"class":243,"line":1115},[9288,9292,9296,9301,9305],{"type":42,"tag":241,"props":9289,"children":9290},{"style":293},[9291],{"type":47,"value":73},{"type":42,"tag":241,"props":9293,"children":9294},{"style":287},[9295],{"type":47,"value":654},{"type":42,"tag":241,"props":9297,"children":9298},{"style":657},[9299],{"type":47,"value":9300},"getBreakoutRoomStatus",{"type":42,"tag":241,"props":9302,"children":9303},{"style":293},[9304],{"type":47,"value":665},{"type":42,"tag":241,"props":9306,"children":9307},{"style":287},[9308],{"type":47,"value":953},{"type":42,"tag":241,"props":9310,"children":9311},{"class":243,"line":1123},[9312,9316,9320,9324,9328,9332,9336,9340,9344,9348],{"type":42,"tag":241,"props":9313,"children":9314},{"style":657},[9315],{"type":47,"value":6889},{"type":42,"tag":241,"props":9317,"children":9318},{"style":287},[9319],{"type":47,"value":967},{"type":42,"tag":241,"props":9321,"children":9322},{"style":287},[9323],{"type":47,"value":1258},{"type":42,"tag":241,"props":9325,"children":9326},{"style":1261},[9327],{"type":47,"value":1264},{"type":42,"tag":241,"props":9329,"children":9330},{"style":287},[9331],{"type":47,"value":862},{"type":42,"tag":241,"props":9333,"children":9334},{"style":358},[9335],{"type":47,"value":904},{"type":42,"tag":241,"props":9337,"children":9338},{"style":293},[9339],{"type":47,"value":1429},{"type":42,"tag":241,"props":9341,"children":9342},{"style":287},[9343],{"type":47,"value":654},{"type":42,"tag":241,"props":9345,"children":9346},{"style":657},[9347],{"type":47,"value":660},{"type":42,"tag":241,"props":9349,"children":9350},{"style":293},[9351],{"type":47,"value":7087},{"type":42,"tag":241,"props":9353,"children":9354},{"class":243,"line":1132},[9355,9359,9363],{"type":42,"tag":241,"props":9356,"children":9357},{"style":287},[9358],{"type":47,"value":1908},{"type":42,"tag":241,"props":9360,"children":9361},{"style":293},[9362],{"type":47,"value":862},{"type":42,"tag":241,"props":9364,"children":9365},{"style":287},[9366],{"type":47,"value":326},{"type":42,"tag":223,"props":9368,"children":9370},{"id":9369},"virtual-background",[9371],{"type":47,"value":9372},"Virtual Background",{"type":42,"tag":230,"props":9374,"children":9376},{"className":269,"code":9375,"language":271,"meta":235,"style":235},"\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",[9377],{"type":42,"tag":68,"props":9378,"children":9379},{"__ignoreMap":235},[9380,9388,9412,9473,9488,9495,9503,9561,9568,9576,9600,9644,9659,9666,9674],{"type":42,"tag":241,"props":9381,"children":9382},{"class":243,"line":244},[9383],{"type":42,"tag":241,"props":9384,"children":9385},{"style":638},[9386],{"type":47,"value":9387},"\u002F\u002F Check support\n",{"type":42,"tag":241,"props":9389,"children":9390},{"class":243,"line":397},[9391,9395,9399,9404,9408],{"type":42,"tag":241,"props":9392,"children":9393},{"style":293},[9394],{"type":47,"value":73},{"type":42,"tag":241,"props":9396,"children":9397},{"style":287},[9398],{"type":47,"value":654},{"type":42,"tag":241,"props":9400,"children":9401},{"style":657},[9402],{"type":47,"value":9403},"isSupportVirtualBackground",{"type":42,"tag":241,"props":9405,"children":9406},{"style":293},[9407],{"type":47,"value":665},{"type":42,"tag":241,"props":9409,"children":9410},{"style":287},[9411],{"type":47,"value":953},{"type":42,"tag":241,"props":9413,"children":9414},{"class":243,"line":442},[9415,9419,9423,9427,9431,9435,9439,9443,9447,9451,9456,9460,9464,9468],{"type":42,"tag":241,"props":9416,"children":9417},{"style":657},[9418],{"type":47,"value":6889},{"type":42,"tag":241,"props":9420,"children":9421},{"style":287},[9422],{"type":47,"value":967},{"type":42,"tag":241,"props":9424,"children":9425},{"style":287},[9426],{"type":47,"value":1258},{"type":42,"tag":241,"props":9428,"children":9429},{"style":1261},[9430],{"type":47,"value":4061},{"type":42,"tag":241,"props":9432,"children":9433},{"style":287},[9434],{"type":47,"value":862},{"type":42,"tag":241,"props":9436,"children":9437},{"style":358},[9438],{"type":47,"value":904},{"type":42,"tag":241,"props":9440,"children":9441},{"style":293},[9442],{"type":47,"value":1429},{"type":42,"tag":241,"props":9444,"children":9445},{"style":287},[9446],{"type":47,"value":654},{"type":42,"tag":241,"props":9448,"children":9449},{"style":657},[9450],{"type":47,"value":660},{"type":42,"tag":241,"props":9452,"children":9453},{"style":293},[9454],{"type":47,"value":9455},"(data",{"type":42,"tag":241,"props":9457,"children":9458},{"style":287},[9459],{"type":47,"value":654},{"type":42,"tag":241,"props":9461,"children":9462},{"style":293},[9463],{"type":47,"value":1472},{"type":42,"tag":241,"props":9465,"children":9466},{"style":287},[9467],{"type":47,"value":654},{"type":42,"tag":241,"props":9469,"children":9470},{"style":293},[9471],{"type":47,"value":9472},"isSupport)\n",{"type":42,"tag":241,"props":9474,"children":9475},{"class":243,"line":487},[9476,9480,9484],{"type":42,"tag":241,"props":9477,"children":9478},{"style":287},[9479],{"type":47,"value":1908},{"type":42,"tag":241,"props":9481,"children":9482},{"style":293},[9483],{"type":47,"value":862},{"type":42,"tag":241,"props":9485,"children":9486},{"style":287},[9487],{"type":47,"value":326},{"type":42,"tag":241,"props":9489,"children":9490},{"class":243,"line":532},[9491],{"type":42,"tag":241,"props":9492,"children":9493},{"emptyLinePlaceholder":711},[9494],{"type":47,"value":714},{"type":42,"tag":241,"props":9496,"children":9497},{"class":243,"line":577},[9498],{"type":42,"tag":241,"props":9499,"children":9500},{"style":638},[9501],{"type":47,"value":9502},"\u002F\u002F Set virtual background\n",{"type":42,"tag":241,"props":9504,"children":9505},{"class":243,"line":740},[9506,9510,9514,9519,9523,9527,9532,9536,9540,9545,9549,9553,9557],{"type":42,"tag":241,"props":9507,"children":9508},{"style":293},[9509],{"type":47,"value":73},{"type":42,"tag":241,"props":9511,"children":9512},{"style":287},[9513],{"type":47,"value":654},{"type":42,"tag":241,"props":9515,"children":9516},{"style":657},[9517],{"type":47,"value":9518},"setVirtualBackground",{"type":42,"tag":241,"props":9520,"children":9521},{"style":293},[9522],{"type":47,"value":665},{"type":42,"tag":241,"props":9524,"children":9525},{"style":287},[9526],{"type":47,"value":7247},{"type":42,"tag":241,"props":9528,"children":9529},{"style":352},[9530],{"type":47,"value":9531}," imageUrl",{"type":42,"tag":241,"props":9533,"children":9534},{"style":287},[9535],{"type":47,"value":967},{"type":42,"tag":241,"props":9537,"children":9538},{"style":287},[9539],{"type":47,"value":311},{"type":42,"tag":241,"props":9541,"children":9542},{"style":253},[9543],{"type":47,"value":9544},"...",{"type":42,"tag":241,"props":9546,"children":9547},{"style":287},[9548],{"type":47,"value":321},{"type":42,"tag":241,"props":9550,"children":9551},{"style":287},[9552],{"type":47,"value":301},{"type":42,"tag":241,"props":9554,"children":9555},{"style":293},[9556],{"type":47,"value":862},{"type":42,"tag":241,"props":9558,"children":9559},{"style":287},[9560],{"type":47,"value":326},{"type":42,"tag":241,"props":9562,"children":9563},{"class":243,"line":749},[9564],{"type":42,"tag":241,"props":9565,"children":9566},{"emptyLinePlaceholder":711},[9567],{"type":47,"value":714},{"type":42,"tag":241,"props":9569,"children":9570},{"class":243,"line":775},[9571],{"type":42,"tag":241,"props":9572,"children":9573},{"style":638},[9574],{"type":47,"value":9575},"\u002F\u002F Get VB status\n",{"type":42,"tag":241,"props":9577,"children":9578},{"class":243,"line":800},[9579,9583,9587,9592,9596],{"type":42,"tag":241,"props":9580,"children":9581},{"style":293},[9582],{"type":47,"value":73},{"type":42,"tag":241,"props":9584,"children":9585},{"style":287},[9586],{"type":47,"value":654},{"type":42,"tag":241,"props":9588,"children":9589},{"style":657},[9590],{"type":47,"value":9591},"getVirtualBackgroundStatus",{"type":42,"tag":241,"props":9593,"children":9594},{"style":293},[9595],{"type":47,"value":665},{"type":42,"tag":241,"props":9597,"children":9598},{"style":287},[9599],{"type":47,"value":953},{"type":42,"tag":241,"props":9601,"children":9602},{"class":243,"line":808},[9603,9607,9611,9615,9619,9623,9627,9631,9635,9639],{"type":42,"tag":241,"props":9604,"children":9605},{"style":657},[9606],{"type":47,"value":6889},{"type":42,"tag":241,"props":9608,"children":9609},{"style":287},[9610],{"type":47,"value":967},{"type":42,"tag":241,"props":9612,"children":9613},{"style":287},[9614],{"type":47,"value":1258},{"type":42,"tag":241,"props":9616,"children":9617},{"style":1261},[9618],{"type":47,"value":4061},{"type":42,"tag":241,"props":9620,"children":9621},{"style":287},[9622],{"type":47,"value":862},{"type":42,"tag":241,"props":9624,"children":9625},{"style":358},[9626],{"type":47,"value":904},{"type":42,"tag":241,"props":9628,"children":9629},{"style":293},[9630],{"type":47,"value":1429},{"type":42,"tag":241,"props":9632,"children":9633},{"style":287},[9634],{"type":47,"value":654},{"type":42,"tag":241,"props":9636,"children":9637},{"style":657},[9638],{"type":47,"value":660},{"type":42,"tag":241,"props":9640,"children":9641},{"style":293},[9642],{"type":47,"value":9643},"(data)\n",{"type":42,"tag":241,"props":9645,"children":9646},{"class":243,"line":817},[9647,9651,9655],{"type":42,"tag":241,"props":9648,"children":9649},{"style":287},[9650],{"type":47,"value":1908},{"type":42,"tag":241,"props":9652,"children":9653},{"style":293},[9654],{"type":47,"value":862},{"type":42,"tag":241,"props":9656,"children":9657},{"style":287},[9658],{"type":47,"value":326},{"type":42,"tag":241,"props":9660,"children":9661},{"class":243,"line":869},[9662],{"type":42,"tag":241,"props":9663,"children":9664},{"emptyLinePlaceholder":711},[9665],{"type":47,"value":714},{"type":42,"tag":241,"props":9667,"children":9668},{"class":243,"line":912},[9669],{"type":42,"tag":241,"props":9670,"children":9671},{"style":638},[9672],{"type":47,"value":9673},"\u002F\u002F Lock virtual background (host)\n",{"type":42,"tag":241,"props":9675,"children":9676},{"class":243,"line":920},[9677,9681,9685,9690,9694,9698,9702,9706,9710,9714,9718],{"type":42,"tag":241,"props":9678,"children":9679},{"style":293},[9680],{"type":47,"value":73},{"type":42,"tag":241,"props":9682,"children":9683},{"style":287},[9684],{"type":47,"value":654},{"type":42,"tag":241,"props":9686,"children":9687},{"style":657},[9688],{"type":47,"value":9689},"lockVirtualBackground",{"type":42,"tag":241,"props":9691,"children":9692},{"style":293},[9693],{"type":47,"value":665},{"type":42,"tag":241,"props":9695,"children":9696},{"style":287},[9697],{"type":47,"value":7247},{"type":42,"tag":241,"props":9699,"children":9700},{"style":352},[9701],{"type":47,"value":7729},{"type":42,"tag":241,"props":9703,"children":9704},{"style":287},[9705],{"type":47,"value":967},{"type":42,"tag":241,"props":9707,"children":9708},{"style":1001},[9709],{"type":47,"value":1004},{"type":42,"tag":241,"props":9711,"children":9712},{"style":287},[9713],{"type":47,"value":301},{"type":42,"tag":241,"props":9715,"children":9716},{"style":293},[9717],{"type":47,"value":862},{"type":42,"tag":241,"props":9719,"children":9720},{"style":287},[9721],{"type":47,"value":326},{"type":42,"tag":223,"props":9723,"children":9725},{"id":9724},"ui-control",[9726],{"type":47,"value":9727},"UI Control",{"type":42,"tag":230,"props":9729,"children":9731},{"className":269,"code":9730,"language":271,"meta":235,"style":235},"\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",[9732],{"type":42,"tag":68,"props":9733,"children":9734},{"__ignoreMap":235},[9735,9743,9790,9797,9805,9853,9860,9868,9916,9923,9931,9979,9986,9994],{"type":42,"tag":241,"props":9736,"children":9737},{"class":243,"line":244},[9738],{"type":42,"tag":241,"props":9739,"children":9740},{"style":638},[9741],{"type":47,"value":9742},"\u002F\u002F Show\u002Fhide meeting header\n",{"type":42,"tag":241,"props":9744,"children":9745},{"class":243,"line":397},[9746,9750,9754,9758,9762,9766,9770,9774,9778,9782,9786],{"type":42,"tag":241,"props":9747,"children":9748},{"style":293},[9749],{"type":47,"value":73},{"type":42,"tag":241,"props":9751,"children":9752},{"style":287},[9753],{"type":47,"value":654},{"type":42,"tag":241,"props":9755,"children":9756},{"style":657},[9757],{"type":47,"value":2028},{"type":42,"tag":241,"props":9759,"children":9760},{"style":293},[9761],{"type":47,"value":665},{"type":42,"tag":241,"props":9763,"children":9764},{"style":287},[9765],{"type":47,"value":7247},{"type":42,"tag":241,"props":9767,"children":9768},{"style":352},[9769],{"type":47,"value":8848},{"type":42,"tag":241,"props":9771,"children":9772},{"style":287},[9773],{"type":47,"value":967},{"type":42,"tag":241,"props":9775,"children":9776},{"style":1001},[9777],{"type":47,"value":1004},{"type":42,"tag":241,"props":9779,"children":9780},{"style":287},[9781],{"type":47,"value":301},{"type":42,"tag":241,"props":9783,"children":9784},{"style":293},[9785],{"type":47,"value":862},{"type":42,"tag":241,"props":9787,"children":9788},{"style":287},[9789],{"type":47,"value":326},{"type":42,"tag":241,"props":9791,"children":9792},{"class":243,"line":442},[9793],{"type":42,"tag":241,"props":9794,"children":9795},{"emptyLinePlaceholder":711},[9796],{"type":47,"value":714},{"type":42,"tag":241,"props":9798,"children":9799},{"class":243,"line":487},[9800],{"type":42,"tag":241,"props":9801,"children":9802},{"style":638},[9803],{"type":47,"value":9804},"\u002F\u002F Show\u002Fhide invite button\n",{"type":42,"tag":241,"props":9806,"children":9807},{"class":243,"line":532},[9808,9812,9816,9821,9825,9829,9833,9837,9841,9845,9849],{"type":42,"tag":241,"props":9809,"children":9810},{"style":293},[9811],{"type":47,"value":73},{"type":42,"tag":241,"props":9813,"children":9814},{"style":287},[9815],{"type":47,"value":654},{"type":42,"tag":241,"props":9817,"children":9818},{"style":657},[9819],{"type":47,"value":9820},"showInviteFunction",{"type":42,"tag":241,"props":9822,"children":9823},{"style":293},[9824],{"type":47,"value":665},{"type":42,"tag":241,"props":9826,"children":9827},{"style":287},[9828],{"type":47,"value":7247},{"type":42,"tag":241,"props":9830,"children":9831},{"style":352},[9832],{"type":47,"value":8848},{"type":42,"tag":241,"props":9834,"children":9835},{"style":287},[9836],{"type":47,"value":967},{"type":42,"tag":241,"props":9838,"children":9839},{"style":1001},[9840],{"type":47,"value":1004},{"type":42,"tag":241,"props":9842,"children":9843},{"style":287},[9844],{"type":47,"value":301},{"type":42,"tag":241,"props":9846,"children":9847},{"style":293},[9848],{"type":47,"value":862},{"type":42,"tag":241,"props":9850,"children":9851},{"style":287},[9852],{"type":47,"value":326},{"type":42,"tag":241,"props":9854,"children":9855},{"class":243,"line":577},[9856],{"type":42,"tag":241,"props":9857,"children":9858},{"emptyLinePlaceholder":711},[9859],{"type":47,"value":714},{"type":42,"tag":241,"props":9861,"children":9862},{"class":243,"line":740},[9863],{"type":42,"tag":241,"props":9864,"children":9865},{"style":638},[9866],{"type":47,"value":9867},"\u002F\u002F Show\u002Fhide join audio button\n",{"type":42,"tag":241,"props":9869,"children":9870},{"class":243,"line":749},[9871,9875,9879,9884,9888,9892,9896,9900,9904,9908,9912],{"type":42,"tag":241,"props":9872,"children":9873},{"style":293},[9874],{"type":47,"value":73},{"type":42,"tag":241,"props":9876,"children":9877},{"style":287},[9878],{"type":47,"value":654},{"type":42,"tag":241,"props":9880,"children":9881},{"style":657},[9882],{"type":47,"value":9883},"showJoinAudioFunction",{"type":42,"tag":241,"props":9885,"children":9886},{"style":293},[9887],{"type":47,"value":665},{"type":42,"tag":241,"props":9889,"children":9890},{"style":287},[9891],{"type":47,"value":7247},{"type":42,"tag":241,"props":9893,"children":9894},{"style":352},[9895],{"type":47,"value":8848},{"type":42,"tag":241,"props":9897,"children":9898},{"style":287},[9899],{"type":47,"value":967},{"type":42,"tag":241,"props":9901,"children":9902},{"style":1001},[9903],{"type":47,"value":1004},{"type":42,"tag":241,"props":9905,"children":9906},{"style":287},[9907],{"type":47,"value":301},{"type":42,"tag":241,"props":9909,"children":9910},{"style":293},[9911],{"type":47,"value":862},{"type":42,"tag":241,"props":9913,"children":9914},{"style":287},[9915],{"type":47,"value":326},{"type":42,"tag":241,"props":9917,"children":9918},{"class":243,"line":775},[9919],{"type":42,"tag":241,"props":9920,"children":9921},{"emptyLinePlaceholder":711},[9922],{"type":47,"value":714},{"type":42,"tag":241,"props":9924,"children":9925},{"class":243,"line":800},[9926],{"type":42,"tag":241,"props":9927,"children":9928},{"style":638},[9929],{"type":47,"value":9930},"\u002F\u002F Show\u002Fhide callout button\n",{"type":42,"tag":241,"props":9932,"children":9933},{"class":243,"line":808},[9934,9938,9942,9947,9951,9955,9959,9963,9967,9971,9975],{"type":42,"tag":241,"props":9935,"children":9936},{"style":293},[9937],{"type":47,"value":73},{"type":42,"tag":241,"props":9939,"children":9940},{"style":287},[9941],{"type":47,"value":654},{"type":42,"tag":241,"props":9943,"children":9944},{"style":657},[9945],{"type":47,"value":9946},"showCalloutFunction",{"type":42,"tag":241,"props":9948,"children":9949},{"style":293},[9950],{"type":47,"value":665},{"type":42,"tag":241,"props":9952,"children":9953},{"style":287},[9954],{"type":47,"value":7247},{"type":42,"tag":241,"props":9956,"children":9957},{"style":352},[9958],{"type":47,"value":8848},{"type":42,"tag":241,"props":9960,"children":9961},{"style":287},[9962],{"type":47,"value":967},{"type":42,"tag":241,"props":9964,"children":9965},{"style":1001},[9966],{"type":47,"value":1004},{"type":42,"tag":241,"props":9968,"children":9969},{"style":287},[9970],{"type":47,"value":301},{"type":42,"tag":241,"props":9972,"children":9973},{"style":293},[9974],{"type":47,"value":862},{"type":42,"tag":241,"props":9976,"children":9977},{"style":287},[9978],{"type":47,"value":326},{"type":42,"tag":241,"props":9980,"children":9981},{"class":243,"line":817},[9982],{"type":42,"tag":241,"props":9983,"children":9984},{"emptyLinePlaceholder":711},[9985],{"type":47,"value":714},{"type":42,"tag":241,"props":9987,"children":9988},{"class":243,"line":869},[9989],{"type":42,"tag":241,"props":9990,"children":9991},{"style":638},[9992],{"type":47,"value":9993},"\u002F\u002F Re-render with new options\n",{"type":42,"tag":241,"props":9995,"children":9996},{"class":243,"line":912},[9997,10001,10005,10010,10014,10018,10023,10027,10031,10036,10040,10044,10048],{"type":42,"tag":241,"props":9998,"children":9999},{"style":293},[10000],{"type":47,"value":73},{"type":42,"tag":241,"props":10002,"children":10003},{"style":287},[10004],{"type":47,"value":654},{"type":42,"tag":241,"props":10006,"children":10007},{"style":657},[10008],{"type":47,"value":10009},"reRender",{"type":42,"tag":241,"props":10011,"children":10012},{"style":293},[10013],{"type":47,"value":665},{"type":42,"tag":241,"props":10015,"children":10016},{"style":287},[10017],{"type":47,"value":7247},{"type":42,"tag":241,"props":10019,"children":10020},{"style":352},[10021],{"type":47,"value":10022}," lang",{"type":42,"tag":241,"props":10024,"children":10025},{"style":287},[10026],{"type":47,"value":967},{"type":42,"tag":241,"props":10028,"children":10029},{"style":287},[10030],{"type":47,"value":311},{"type":42,"tag":241,"props":10032,"children":10033},{"style":253},[10034],{"type":47,"value":10035},"de-DE",{"type":42,"tag":241,"props":10037,"children":10038},{"style":287},[10039],{"type":47,"value":321},{"type":42,"tag":241,"props":10041,"children":10042},{"style":287},[10043],{"type":47,"value":301},{"type":42,"tag":241,"props":10045,"children":10046},{"style":293},[10047],{"type":47,"value":862},{"type":42,"tag":241,"props":10049,"children":10050},{"style":287},[10051],{"type":47,"value":326},{"type":42,"tag":223,"props":10053,"children":10055},{"id":10054},"language",[10056],{"type":47,"value":10057},"Language",{"type":42,"tag":230,"props":10059,"children":10061},{"className":269,"code":10060,"language":271,"meta":235,"style":235},"\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",[10062],{"type":42,"tag":68,"props":10063,"children":10064},{"__ignoreMap":235},[10065,10073,10120,10127,10135,10183,10190,10198,10230,10237,10245],{"type":42,"tag":241,"props":10066,"children":10067},{"class":243,"line":244},[10068],{"type":42,"tag":241,"props":10069,"children":10070},{"style":638},[10071],{"type":47,"value":10072},"\u002F\u002F Load language\n",{"type":42,"tag":241,"props":10074,"children":10075},{"class":243,"line":397},[10076,10080,10084,10088,10092,10096,10100,10104,10108,10112,10116],{"type":42,"tag":241,"props":10077,"children":10078},{"style":293},[10079],{"type":47,"value":73},{"type":42,"tag":241,"props":10081,"children":10082},{"style":287},[10083],{"type":47,"value":654},{"type":42,"tag":241,"props":10085,"children":10086},{"style":293},[10087],{"type":47,"value":831},{"type":42,"tag":241,"props":10089,"children":10090},{"style":287},[10091],{"type":47,"value":654},{"type":42,"tag":241,"props":10093,"children":10094},{"style":657},[10095],{"type":47,"value":840},{"type":42,"tag":241,"props":10097,"children":10098},{"style":293},[10099],{"type":47,"value":665},{"type":42,"tag":241,"props":10101,"children":10102},{"style":287},[10103],{"type":47,"value":321},{"type":42,"tag":241,"props":10105,"children":10106},{"style":253},[10107],{"type":47,"value":10035},{"type":42,"tag":241,"props":10109,"children":10110},{"style":287},[10111],{"type":47,"value":321},{"type":42,"tag":241,"props":10113,"children":10114},{"style":293},[10115],{"type":47,"value":862},{"type":42,"tag":241,"props":10117,"children":10118},{"style":287},[10119],{"type":47,"value":326},{"type":42,"tag":241,"props":10121,"children":10122},{"class":243,"line":442},[10123],{"type":42,"tag":241,"props":10124,"children":10125},{"emptyLinePlaceholder":711},[10126],{"type":47,"value":714},{"type":42,"tag":241,"props":10128,"children":10129},{"class":243,"line":487},[10130],{"type":42,"tag":241,"props":10131,"children":10132},{"style":638},[10133],{"type":47,"value":10134},"\u002F\u002F Reload language\n",{"type":42,"tag":241,"props":10136,"children":10137},{"class":243,"line":532},[10138,10142,10146,10150,10154,10159,10163,10167,10171,10175,10179],{"type":42,"tag":241,"props":10139,"children":10140},{"style":293},[10141],{"type":47,"value":73},{"type":42,"tag":241,"props":10143,"children":10144},{"style":287},[10145],{"type":47,"value":654},{"type":42,"tag":241,"props":10147,"children":10148},{"style":293},[10149],{"type":47,"value":831},{"type":42,"tag":241,"props":10151,"children":10152},{"style":287},[10153],{"type":47,"value":654},{"type":42,"tag":241,"props":10155,"children":10156},{"style":657},[10157],{"type":47,"value":10158},"reload",{"type":42,"tag":241,"props":10160,"children":10161},{"style":293},[10162],{"type":47,"value":665},{"type":42,"tag":241,"props":10164,"children":10165},{"style":287},[10166],{"type":47,"value":321},{"type":42,"tag":241,"props":10168,"children":10169},{"style":253},[10170],{"type":47,"value":10035},{"type":42,"tag":241,"props":10172,"children":10173},{"style":287},[10174],{"type":47,"value":321},{"type":42,"tag":241,"props":10176,"children":10177},{"style":293},[10178],{"type":47,"value":862},{"type":42,"tag":241,"props":10180,"children":10181},{"style":287},[10182],{"type":47,"value":326},{"type":42,"tag":241,"props":10184,"children":10185},{"class":243,"line":577},[10186],{"type":42,"tag":241,"props":10187,"children":10188},{"emptyLinePlaceholder":711},[10189],{"type":47,"value":714},{"type":42,"tag":241,"props":10191,"children":10192},{"class":243,"line":740},[10193],{"type":42,"tag":241,"props":10194,"children":10195},{"style":638},[10196],{"type":47,"value":10197},"\u002F\u002F Get current language\n",{"type":42,"tag":241,"props":10199,"children":10200},{"class":243,"line":749},[10201,10205,10209,10213,10217,10222,10226],{"type":42,"tag":241,"props":10202,"children":10203},{"style":293},[10204],{"type":47,"value":73},{"type":42,"tag":241,"props":10206,"children":10207},{"style":287},[10208],{"type":47,"value":654},{"type":42,"tag":241,"props":10210,"children":10211},{"style":293},[10212],{"type":47,"value":831},{"type":42,"tag":241,"props":10214,"children":10215},{"style":287},[10216],{"type":47,"value":654},{"type":42,"tag":241,"props":10218,"children":10219},{"style":657},[10220],{"type":47,"value":10221},"getCurrentLang",{"type":42,"tag":241,"props":10223,"children":10224},{"style":293},[10225],{"type":47,"value":768},{"type":42,"tag":241,"props":10227,"children":10228},{"style":287},[10229],{"type":47,"value":326},{"type":42,"tag":241,"props":10231,"children":10232},{"class":243,"line":775},[10233],{"type":42,"tag":241,"props":10234,"children":10235},{"emptyLinePlaceholder":711},[10236],{"type":47,"value":714},{"type":42,"tag":241,"props":10238,"children":10239},{"class":243,"line":800},[10240],{"type":42,"tag":241,"props":10241,"children":10242},{"style":638},[10243],{"type":47,"value":10244},"\u002F\u002F Get all translations\n",{"type":42,"tag":241,"props":10246,"children":10247},{"class":243,"line":808},[10248,10252,10256,10260,10264,10269,10273],{"type":42,"tag":241,"props":10249,"children":10250},{"style":293},[10251],{"type":47,"value":73},{"type":42,"tag":241,"props":10253,"children":10254},{"style":287},[10255],{"type":47,"value":654},{"type":42,"tag":241,"props":10257,"children":10258},{"style":293},[10259],{"type":47,"value":831},{"type":42,"tag":241,"props":10261,"children":10262},{"style":287},[10263],{"type":47,"value":654},{"type":42,"tag":241,"props":10265,"children":10266},{"style":657},[10267],{"type":47,"value":10268},"getAll",{"type":42,"tag":241,"props":10270,"children":10271},{"style":293},[10272],{"type":47,"value":768},{"type":42,"tag":241,"props":10274,"children":10275},{"style":287},[10276],{"type":47,"value":326},{"type":42,"tag":56,"props":10278,"children":10280},{"id":10279},"rate-limits",[10281],{"type":47,"value":10282},"Rate Limits",{"type":42,"tag":77,"props":10284,"children":10285},{},[10286,10302],{"type":42,"tag":81,"props":10287,"children":10288},{},[10289],{"type":42,"tag":85,"props":10290,"children":10291},{},[10292,10297],{"type":42,"tag":89,"props":10293,"children":10294},{},[10295],{"type":47,"value":10296},"Method",{"type":42,"tag":89,"props":10298,"children":10299},{},[10300],{"type":47,"value":10301},"Limit",{"type":42,"tag":100,"props":10303,"children":10304},{},[10305,10322,10338,10355],{"type":42,"tag":85,"props":10306,"children":10307},{},[10308,10317],{"type":42,"tag":107,"props":10309,"children":10310},{},[10311],{"type":42,"tag":68,"props":10312,"children":10314},{"className":10313},[],[10315],{"type":47,"value":10316},"join()",{"type":42,"tag":107,"props":10318,"children":10319},{},[10320],{"type":47,"value":10321},"10 seconds",{"type":42,"tag":85,"props":10323,"children":10324},{},[10325,10334],{"type":42,"tag":107,"props":10326,"children":10327},{},[10328],{"type":42,"tag":68,"props":10329,"children":10331},{"className":10330},[],[10332],{"type":47,"value":10333},"callOut()",{"type":42,"tag":107,"props":10335,"children":10336},{},[10337],{"type":47,"value":10321},{"type":42,"tag":85,"props":10339,"children":10340},{},[10341,10350],{"type":42,"tag":107,"props":10342,"children":10343},{},[10344],{"type":42,"tag":68,"props":10345,"children":10347},{"className":10346},[],[10348],{"type":47,"value":10349},"mute()",{"type":42,"tag":107,"props":10351,"children":10352},{},[10353],{"type":47,"value":10354},"1 second",{"type":42,"tag":85,"props":10356,"children":10357},{},[10358,10367],{"type":42,"tag":107,"props":10359,"children":10360},{},[10361],{"type":42,"tag":68,"props":10362,"children":10364},{"className":10363},[],[10365],{"type":47,"value":10366},"muteAll()",{"type":42,"tag":107,"props":10368,"children":10369},{},[10370],{"type":47,"value":10371},"5 seconds",{"type":42,"tag":56,"props":10373,"children":10375},{"id":10374},"dom-elements",[10376],{"type":47,"value":10377},"DOM Elements",{"type":42,"tag":50,"props":10379,"children":10380},{},[10381],{"type":47,"value":10382},"The SDK automatically adds these elements:",{"type":42,"tag":10384,"props":10385,"children":10386},"ul",{},[10387,10399],{"type":42,"tag":10388,"props":10389,"children":10390},"li",{},[10391,10397],{"type":42,"tag":68,"props":10392,"children":10394},{"className":10393},[],[10395],{"type":47,"value":10396},"#zmmtg-root",{"type":47,"value":10398}," - Main meeting container",{"type":42,"tag":10388,"props":10400,"children":10401},{},[10402,10408],{"type":42,"tag":68,"props":10403,"children":10405},{"className":10404},[],[10406],{"type":47,"value":10407},"#aria-notify-area",{"type":47,"value":10409}," - Accessibility announcements",{"type":42,"tag":50,"props":10411,"children":10412},{},[10413],{"type":47,"value":10414},"Do NOT manually create or remove these.",{"type":42,"tag":223,"props":10416,"children":10418},{"id":10417},"spa-reactnext-overlay-gotcha",[10419],{"type":47,"value":10420},"SPA (React\u002FNext) Overlay Gotcha",{"type":42,"tag":50,"props":10422,"children":10423},{},[10424,10426,10431,10433,10438],{"type":47,"value":10425},"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":42,"tag":111,"props":10427,"children":10428},{},[10429],{"type":47,"value":10430},"behind",{"type":47,"value":10432}," your app layout. Ensure ",{"type":42,"tag":68,"props":10434,"children":10436},{"className":10435},[],[10437],{"type":47,"value":10396},{"type":47,"value":10439}," occupies the viewport and is above other fixed elements:",{"type":42,"tag":230,"props":10441,"children":10445},{"className":10442,"code":10443,"language":10444,"meta":235,"style":235},"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",[10446],{"type":42,"tag":68,"props":10447,"children":10448},{"__ignoreMap":235},[10449,10466,10493,10518,10543],{"type":42,"tag":241,"props":10450,"children":10451},{"class":243,"line":244},[10452,10457,10462],{"type":42,"tag":241,"props":10453,"children":10454},{"style":287},[10455],{"type":47,"value":10456},"#",{"type":42,"tag":241,"props":10458,"children":10459},{"style":7562},[10460],{"type":47,"value":10461},"zmmtg-root",{"type":42,"tag":241,"props":10463,"children":10464},{"style":287},[10465],{"type":47,"value":909},{"type":42,"tag":241,"props":10467,"children":10468},{"class":243,"line":397},[10469,10475,10479,10484,10489],{"type":42,"tag":241,"props":10470,"children":10472},{"style":10471},"--shiki-light:#8796B0;--shiki-default:#B2CCD6;--shiki-dark:#B2CCD6",[10473],{"type":47,"value":10474},"  position",{"type":42,"tag":241,"props":10476,"children":10477},{"style":287},[10478],{"type":47,"value":967},{"type":42,"tag":241,"props":10480,"children":10481},{"style":293},[10482],{"type":47,"value":10483}," fixed ",{"type":42,"tag":241,"props":10485,"children":10486},{"style":7562},[10487],{"type":47,"value":10488},"!important",{"type":42,"tag":241,"props":10490,"children":10491},{"style":287},[10492],{"type":47,"value":326},{"type":42,"tag":241,"props":10494,"children":10495},{"class":243,"line":442},[10496,10501,10505,10509,10514],{"type":42,"tag":241,"props":10497,"children":10498},{"style":10471},[10499],{"type":47,"value":10500},"  inset",{"type":42,"tag":241,"props":10502,"children":10503},{"style":287},[10504],{"type":47,"value":967},{"type":42,"tag":241,"props":10506,"children":10507},{"style":7562},[10508],{"type":47,"value":7565},{"type":42,"tag":241,"props":10510,"children":10511},{"style":7562},[10512],{"type":47,"value":10513}," !important",{"type":42,"tag":241,"props":10515,"children":10516},{"style":287},[10517],{"type":47,"value":326},{"type":42,"tag":241,"props":10519,"children":10520},{"class":243,"line":487},[10521,10526,10530,10535,10539],{"type":42,"tag":241,"props":10522,"children":10523},{"style":10471},[10524],{"type":47,"value":10525},"  z-index",{"type":42,"tag":241,"props":10527,"children":10528},{"style":287},[10529],{"type":47,"value":967},{"type":42,"tag":241,"props":10531,"children":10532},{"style":7562},[10533],{"type":47,"value":10534}," 9999",{"type":42,"tag":241,"props":10536,"children":10537},{"style":7562},[10538],{"type":47,"value":10513},{"type":42,"tag":241,"props":10540,"children":10541},{"style":287},[10542],{"type":47,"value":326},{"type":42,"tag":241,"props":10544,"children":10545},{"class":243,"line":532},[10546],{"type":42,"tag":241,"props":10547,"children":10548},{"style":287},[10549],{"type":47,"value":10550},"}\n",{"type":42,"tag":223,"props":10552,"children":10554},{"id":10553},"join-payload-sanitization-gotcha",[10555],{"type":47,"value":10556},"Join Payload Sanitization Gotcha",{"type":42,"tag":50,"props":10558,"children":10559},{},[10560,10562,10568,10570,10576],{"type":47,"value":10561},"If ",{"type":42,"tag":68,"props":10563,"children":10565},{"className":10564},[],[10566],{"type":47,"value":10567},"ZoomMtg.join()",{"type":47,"value":10569}," succeeds partially but the screen turns black and console shows errors like ",{"type":42,"tag":68,"props":10571,"children":10573},{"className":10572},[],[10574],{"type":47,"value":10575},"Cannot read properties of undefined (reading 'toString')",{"type":47,"value":10577},", sanitize optional fields before calling join.",{"type":42,"tag":50,"props":10579,"children":10580},{},[10581,10583,10589,10591,10596,10597,10602,10603,10608],{"type":47,"value":10582},"Do not pass optional keys with ",{"type":42,"tag":68,"props":10584,"children":10586},{"className":10585},[],[10587],{"type":47,"value":10588},"undefined",{"type":47,"value":10590}," values (",{"type":42,"tag":68,"props":10592,"children":10594},{"className":10593},[],[10595],{"type":47,"value":1638},{"type":47,"value":2599},{"type":42,"tag":68,"props":10598,"children":10600},{"className":10599},[],[10601],{"type":47,"value":1686},{"type":47,"value":2599},{"type":42,"tag":68,"props":10604,"children":10606},{"className":10605},[],[10607],{"type":47,"value":1732},{"type":47,"value":10609},", etc.). Build a payload and only attach those keys when they are non-empty strings.",{"type":42,"tag":50,"props":10611,"children":10612},{},[10613,10615,10621,10623,10629],{"type":47,"value":10614},"Also prefer ",{"type":42,"tag":68,"props":10616,"children":10618},{"className":10617},[],[10619],{"type":47,"value":10620},"defaultView: 'speaker'",{"type":47,"value":10622}," during ",{"type":42,"tag":68,"props":10624,"children":10626},{"className":10625},[],[10627],{"type":47,"value":10628},"ZoomMtg.init()",{"type":47,"value":10630}," unless you have SharedArrayBuffer\u002Fgallery-view prerequisites fully configured.",{"type":42,"tag":56,"props":10632,"children":10634},{"id":10633},"resources",[10635],{"type":47,"value":10636},"Resources",{"type":42,"tag":10384,"props":10638,"children":10639},{},[10640,10650,10659,10668,10677,10686],{"type":42,"tag":10388,"props":10641,"children":10642},{},[10643],{"type":42,"tag":10644,"props":10645,"children":10647},"a",{"href":10646},"..\u002FSKILL.md",[10648],{"type":47,"value":10649},"Main Web SDK Skill",{"type":42,"tag":10388,"props":10651,"children":10652},{},[10653],{"type":42,"tag":10644,"props":10654,"children":10656},{"href":10655},"references\u002Findex.md",[10657],{"type":47,"value":10658},"Reference Index",{"type":42,"tag":10388,"props":10660,"children":10661},{},[10662],{"type":42,"tag":10644,"props":10663,"children":10665},{"href":10664},"..\u002Ftroubleshooting\u002Ferror-codes.md",[10666],{"type":47,"value":10667},"Error Codes",{"type":42,"tag":10388,"props":10669,"children":10670},{},[10671],{"type":42,"tag":10644,"props":10672,"children":10674},{"href":10673},"..\u002Ftroubleshooting\u002Fcommon-issues.md",[10675],{"type":47,"value":10676},"Common Issues",{"type":42,"tag":10388,"props":10678,"children":10679},{},[10680],{"type":42,"tag":10644,"props":10681,"children":10683},{"href":10682},"..\u002Fconcepts\u002Fsharedarraybuffer.md",[10684],{"type":47,"value":10685},"SharedArrayBuffer Setup",{"type":42,"tag":10388,"props":10687,"children":10688},{},[10689],{"type":42,"tag":10644,"props":10690,"children":10694},{"href":10691,"rel":10692},"https:\u002F\u002Fmarketplacefront.zoom.us\u002Fsdk\u002Fmeeting\u002Fweb\u002Findex.html",[10693],"nofollow",[10695],{"type":47,"value":10696},"Official API Reference",{"type":42,"tag":56,"props":10698,"children":10700},{"id":10699},"operations",[10701],{"type":47,"value":10702},"Operations",{"type":42,"tag":10384,"props":10704,"children":10705},{},[10706],{"type":42,"tag":10388,"props":10707,"children":10708},{},[10709,10714],{"type":42,"tag":10644,"props":10710,"children":10712},{"href":10711},"RUNBOOK.md",[10713],{"type":47,"value":10711},{"type":47,"value":10715}," - 5-minute preflight and debugging checklist.",{"type":42,"tag":10717,"props":10718,"children":10719},"style",{},[10720],{"type":47,"value":10721},"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":10723,"total":10926},[10724,10745,10766,10783,10799,10818,10837,10853,10869,10883,10895,10910],{"slug":10725,"name":10725,"fn":10726,"description":10727,"org":10728,"tags":10729,"stars":10742,"repoUrl":10743,"updatedAt":10744},"prior-auth-packet-builder","build healthcare prior authorization packets","Build a concise prior authorization packet from local case files and payer policy docs.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[10730,10733,10736,10739],{"name":10731,"slug":10732,"type":15},"Documents","documents",{"name":10734,"slug":10735,"type":15},"Healthcare","healthcare",{"name":10737,"slug":10738,"type":15},"Insurance","insurance",{"name":10740,"slug":10741,"type":15},"Regulatory Compliance","regulatory-compliance",28169,"https:\u002F\u002Fgithub.com\u002Fopenai\u002Fopenai-agents-python","2026-04-16T05:11:39.180399",{"slug":10746,"name":10746,"fn":10747,"description":10748,"org":10749,"tags":10750,"stars":10763,"repoUrl":10764,"updatedAt":10765},"aspnet-core","build ASP.NET Core web applications","Build, review, refactor, or architect ASP.NET Core web applications using current official guidance for .NET web development. Use when working on Blazor Web Apps, Razor Pages, MVC, Minimal APIs, controller-based Web APIs, SignalR, gRPC, middleware, dependency injection, configuration, authentication, authorization, testing, performance, deployment, or ASP.NET Core upgrades.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[10751,10754,10756,10759,10762],{"name":10752,"slug":10753,"type":15},".NET","dotnet",{"name":10755,"slug":10746,"type":15},"ASP.NET Core",{"name":10757,"slug":10758,"type":15},"Blazor","blazor",{"name":10760,"slug":10761,"type":15},"C#","csharp",{"name":13,"slug":14,"type":15},23787,"https:\u002F\u002Fgithub.com\u002Fopenai\u002Fskills","2026-04-12T05:07:02.819491",{"slug":10767,"name":10767,"fn":10768,"description":10769,"org":10770,"tags":10771,"stars":10763,"repoUrl":10764,"updatedAt":10782},"chatgpt-apps","build ChatGPT Apps SDK applications","Build, scaffold, refactor, and troubleshoot ChatGPT Apps SDK applications that combine an MCP server and widget UI. Use when Codex needs to design tools, register UI resources, wire the MCP Apps bridge or ChatGPT compatibility APIs, apply Apps SDK metadata or CSP or domain settings, or produce a docs-aligned project scaffold. Prefer a docs-first workflow by invoking the openai-docs skill or OpenAI developer docs MCP tools before generating code.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[10772,10775,10778,10781],{"name":10773,"slug":10774,"type":15},"Apps SDK","apps-sdk",{"name":10776,"slug":10777,"type":15},"ChatGPT","chatgpt",{"name":10779,"slug":10780,"type":15},"MCP","mcp",{"name":9,"slug":8,"type":15},"2026-04-12T05:07:05.468097",{"slug":10784,"name":10784,"fn":10785,"description":10786,"org":10787,"tags":10788,"stars":10763,"repoUrl":10764,"updatedAt":10798},"cli-creator","build CLIs from API docs","Build a composable CLI for Codex from API docs, an OpenAPI spec, existing curl examples, an SDK, a web app, an admin tool, or a local script. Use when the user wants Codex to create a command-line tool that can run from any repo, expose composable read\u002Fwrite commands, return stable JSON, manage auth, and pair with a companion skill.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[10789,10792,10795],{"name":10790,"slug":10791,"type":15},"API Development","api-development",{"name":10793,"slug":10794,"type":15},"CLI","cli",{"name":10796,"slug":10797,"type":15},"Codex","codex","2026-04-12T05:07:04.132762",{"slug":10800,"name":10800,"fn":10801,"description":10802,"org":10803,"tags":10804,"stars":10763,"repoUrl":10764,"updatedAt":10817},"cloudflare-deploy","deploy projects to Cloudflare","Deploy applications and infrastructure to Cloudflare using Workers, Pages, and related platform services. Use when the user asks to deploy, host, publish, or set up a project on Cloudflare.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[10805,10808,10811,10814],{"name":10806,"slug":10807,"type":15},"Cloudflare","cloudflare",{"name":10809,"slug":10810,"type":15},"Cloudflare Pages","cloudflare-pages",{"name":10812,"slug":10813,"type":15},"Cloudflare Workers","cloudflare-workers",{"name":10815,"slug":10816,"type":15},"Deployment","deployment","2026-04-12T05:07:14.275118",{"slug":10819,"name":10819,"fn":10820,"description":10821,"org":10822,"tags":10823,"stars":10763,"repoUrl":10764,"updatedAt":10836},"define-goal","define and set measurable project goals","Help the user define a concrete, measurable goal before starting work, especially when they ask to use the goal tool, create a goal, set an objective, clarify success criteria, or turn a fuzzy intention into a quantitative outcome. Use this skill for goal creation and goal refinement only; it does not manage durable snapshots, decision logs, or long-running execution artifacts.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[10824,10827,10830,10833],{"name":10825,"slug":10826,"type":15},"Productivity","productivity",{"name":10828,"slug":10829,"type":15},"Project Management","project-management",{"name":10831,"slug":10832,"type":15},"Strategy","strategy",{"name":10834,"slug":10835,"type":15},"Task Management","task-management","2026-05-23T06:17:16.870838",{"slug":10838,"name":10838,"fn":10839,"description":10840,"org":10841,"tags":10842,"stars":10763,"repoUrl":10764,"updatedAt":10852},"figma","translate Figma designs into code","Use the Figma MCP server to fetch design context, screenshots, variables, and assets from Figma, and to translate Figma nodes into production code. Trigger when a task involves Figma URLs, node IDs, design-to-code implementation, or Figma MCP setup and troubleshooting.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[10843,10846,10848,10851],{"name":10844,"slug":10845,"type":15},"Design","design",{"name":10847,"slug":10838,"type":15},"Figma",{"name":10849,"slug":10850,"type":15},"Frontend","frontend",{"name":10779,"slug":10780,"type":15},"2026-04-12T05:06:47.939943",{"slug":10854,"name":10854,"fn":10855,"description":10856,"org":10857,"tags":10858,"stars":10763,"repoUrl":10764,"updatedAt":10868},"figma-code-connect-components","connect Figma designs to code components","Connects Figma design components to code components using Code Connect mapping tools. Use when user says \"code connect\", \"connect this component to code\", \"map this component\", \"link component to code\", \"create code connect mapping\", or wants to establish mappings between Figma designs and code implementations. For canvas writes via `use_figma`, use `figma-use`.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[10859,10860,10863,10864,10865],{"name":10844,"slug":10845,"type":15},{"name":10861,"slug":10862,"type":15},"Design System","design-system",{"name":10847,"slug":10838,"type":15},{"name":10849,"slug":10850,"type":15},{"name":10866,"slug":10867,"type":15},"UI Components","ui-components","2026-05-10T05:59:52.971881",{"slug":10870,"name":10870,"fn":10871,"description":10872,"org":10873,"tags":10874,"stars":10763,"repoUrl":10764,"updatedAt":10882},"figma-create-design-system-rules","generate design system rules from Figma","Generates custom design system rules for the user's codebase. Use when user says \"create design system rules\", \"generate rules for my project\", \"set up design rules\", \"customize design system guidelines\", or wants to establish project-specific conventions for Figma-to-code workflows. Requires Figma MCP server connection.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[10875,10876,10877,10880,10881],{"name":10844,"slug":10845,"type":15},{"name":10861,"slug":10862,"type":15},{"name":10878,"slug":10879,"type":15},"Documentation","documentation",{"name":10847,"slug":10838,"type":15},{"name":10849,"slug":10850,"type":15},"2026-05-16T06:07:47.821474",{"slug":10884,"name":10884,"fn":10885,"description":10886,"org":10887,"tags":10888,"stars":10763,"repoUrl":10764,"updatedAt":10894},"figma-implement-design","translate Figma designs into application code","Translates Figma designs into production-ready application code with 1:1 visual fidelity. Use when implementing UI code from Figma files, when user mentions \"implement design\", \"generate code\", \"implement component\", provides Figma URLs, or asks to build components matching Figma specs. For Figma canvas writes via `use_figma`, use `figma-use`.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[10889,10890,10891,10892,10893],{"name":10844,"slug":10845,"type":15},{"name":10847,"slug":10838,"type":15},{"name":10849,"slug":10850,"type":15},{"name":10866,"slug":10867,"type":15},{"name":13,"slug":14,"type":15},"2026-05-16T06:07:40.583615",{"slug":10896,"name":10896,"fn":10897,"description":10898,"org":10899,"tags":10900,"stars":10763,"repoUrl":10764,"updatedAt":10909},"hatch-pet","create animated pets for Codex","Create, repair, validate, visually QA, and package Codex-compatible animated pets and pet spritesheets from character art, generated images, company or prospect brand cues, or visual references. Use when a user wants a lightweight-worker Codex pet workflow, a non-pixel custom pet style, a prospect or company mascot pet, or a full 8x9 animated pet atlas with transparent unused cells, QA contact sheets, and pet.json packaging. This skill composes the installed $imagegen system skill for visual generation and uses bundled scripts for deterministic spritesheet assembly.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[10901,10904,10905,10908],{"name":10902,"slug":10903,"type":15},"Animation","animation",{"name":10796,"slug":10797,"type":15},{"name":10906,"slug":10907,"type":15},"Creative","creative",{"name":10844,"slug":10845,"type":15},"2026-05-02T05:31:48.48485",{"slug":10911,"name":10911,"fn":10912,"description":10913,"org":10914,"tags":10915,"stars":10763,"repoUrl":10764,"updatedAt":10925},"imagegen","generate and edit raster images","Generate or edit raster images when the task benefits from AI-created bitmap visuals such as photos, illustrations, textures, sprites, mockups, or transparent-background cutouts. Use when Codex should create a brand-new image, transform an existing image, or derive visual variants from references, and the output should be a bitmap asset rather than repo-native code or vector. Do not use when the task is better handled by editing existing SVG\u002Fvector\u002Fcode-native assets, extending an established icon or logo system, or building the visual directly in HTML\u002FCSS\u002Fcanvas.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[10916,10917,10918,10921,10924],{"name":10906,"slug":10907,"type":15},{"name":10844,"slug":10845,"type":15},{"name":10919,"slug":10920,"type":15},"Image Generation","image-generation",{"name":10922,"slug":10923,"type":15},"Images","images",{"name":9,"slug":8,"type":15},"2026-05-15T06:23:24.312127",675,{"items":10928,"total":11039},[10929,10945,10961,10973,10989,11007,11027],{"slug":10930,"name":10930,"fn":10931,"description":10932,"org":10933,"tags":10934,"stars":25,"repoUrl":26,"updatedAt":27},"accessibility-and-inclusive-visualization","make data visualizations accessible","Make data visualizations accessible and inclusive. Use when the user needs chart or diagram accessibility guidance, text alternatives for complex visuals, color and contrast review, keyboard support, reduced-motion behavior for animation or parallax, or an accessibility QA workflow for exported figures, UML-like diagrams, and dashboards.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[10935,10938,10941,10944],{"name":10936,"slug":10937,"type":15},"Accessibility","accessibility",{"name":10939,"slug":10940,"type":15},"Charts","charts",{"name":10942,"slug":10943,"type":15},"Data Visualization","data-visualization",{"name":10844,"slug":10845,"type":15},{"slug":10946,"name":10946,"fn":10947,"description":10948,"org":10949,"tags":10950,"stars":25,"repoUrl":26,"updatedAt":10960},"agent-browser","automate browser interactions for agents","Browser automation CLI for AI agents. Use when the user needs to interact with websites, verify dev server output, test web apps, navigate pages, fill forms, click buttons, take screenshots, extract data, or automate any browser task. Also triggers when a dev server starts so you can verify it visually.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[10951,10954,10957],{"name":10952,"slug":10953,"type":15},"Agents","agents",{"name":10955,"slug":10956,"type":15},"Browser Automation","browser-automation",{"name":10958,"slug":10959,"type":15},"Testing","testing","2026-04-06T18:41:03.44016",{"slug":10962,"name":10962,"fn":10963,"description":10964,"org":10965,"tags":10966,"stars":25,"repoUrl":26,"updatedAt":10972},"agent-browser-verify","verify dev server output with automated browser","Automated browser verification for dev servers. Triggers when a dev server starts to run a visual gut-check with agent-browser — verifies the page loads, checks for console errors, validates key UI elements, and reports pass\u002Ffail before continuing.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[10967,10968,10971],{"name":10955,"slug":10956,"type":15},{"name":10969,"slug":10970,"type":15},"Local Development","local-development",{"name":10958,"slug":10959,"type":15},"2026-04-06T18:41:17.526867",{"slug":10974,"name":10974,"fn":10975,"description":10976,"org":10977,"tags":10978,"stars":25,"repoUrl":26,"updatedAt":10988},"agents-sdk","build AI agents on Cloudflare Workers","Build AI agents on Cloudflare Workers using the Agents SDK. Load when creating stateful agents, durable workflows, real-time WebSocket apps, scheduled tasks, MCP servers, or chat applications. Covers Agent class, state management, callable RPC, Workflows integration, and React hooks. Biases towards retrieval from Cloudflare docs over pre-trained knowledge.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[10979,10980,10981,10982,10985],{"name":10952,"slug":10953,"type":15},{"name":10812,"slug":10813,"type":15},{"name":20,"slug":21,"type":15},{"name":10983,"slug":10984,"type":15},"Serverless","serverless",{"name":10986,"slug":10987,"type":15},"WebSockets","websockets","2026-04-06T18:39:51.717063",{"slug":10990,"name":10990,"fn":10991,"description":10992,"org":10993,"tags":10994,"stars":25,"repoUrl":26,"updatedAt":11006},"ai-elements","build chat UIs with AI Elements","AI Elements component library guidance — pre-built React components for AI interfaces built on shadcn\u002Fui. Use when building chat UIs, message displays, tool call rendering, streaming responses, reasoning panels, or any AI-native interface with the AI SDK.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[10995,10996,10999,11002,11003],{"name":10849,"slug":10850,"type":15},{"name":10997,"slug":10998,"type":15},"React","react",{"name":11000,"slug":11001,"type":15},"shadcn\u002Fui","shadcn-ui",{"name":10866,"slug":10867,"type":15},{"name":11004,"slug":11005,"type":15},"Vercel","vercel","2026-04-06T18:40:59.619419",{"slug":11008,"name":11008,"fn":11009,"description":11010,"org":11011,"tags":11012,"stars":25,"repoUrl":26,"updatedAt":11026},"ai-gateway","configure Vercel AI Gateway","Vercel AI Gateway expert guidance. Use when configuring model routing, provider failover, cost tracking, or managing multiple AI providers through a unified API.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[11013,11016,11019,11022,11025],{"name":11014,"slug":11015,"type":15},"AI Infrastructure","ai-infrastructure",{"name":11017,"slug":11018,"type":15},"Cost Optimization","cost-optimization",{"name":11020,"slug":11021,"type":15},"LLM","llm",{"name":11023,"slug":11024,"type":15},"Performance","performance",{"name":11004,"slug":11005,"type":15},"2026-04-06T18:40:44.377464",{"slug":11028,"name":11028,"fn":11029,"description":11030,"org":11031,"tags":11032,"stars":25,"repoUrl":26,"updatedAt":11038},"ai-generation-persistence","implement persistence patterns for AI generations","AI generation persistence patterns — unique IDs, addressable URLs, database storage, and cost tracking for every LLM generation",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[11033,11034,11037],{"name":11017,"slug":11018,"type":15},{"name":11035,"slug":11036,"type":15},"Database","database",{"name":11020,"slug":11021,"type":15},"2026-04-06T18:41:08.513425",600]