[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-openai-zoom-meeting-sdk-web":3,"mdc-yqx694-key":30,"related-org-openai-zoom-meeting-sdk-web":17994,"related-repo-openai-zoom-meeting-sdk-web":18199},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":11,"stars":19,"repoUrl":20,"updatedAt":21,"license":22,"forks":23,"topics":24,"repo":25,"sourceUrl":28,"mdContent":29},"zoom-meeting-sdk-web","embed Zoom meeting capabilities in web apps","Zoom Meeting SDK for Web - Embed Zoom meeting capabilities into web applications. Two integration\noptions: Client View (full-page, familiar Zoom UI) and Component View (embeddable, Promise-based API).\nIncludes SharedArrayBuffer setup for HD video, gallery view, and virtual backgrounds.\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],{"name":13,"slug":14,"type":15},"Web Development","web-development","tag",{"name":17,"slug":18,"type":15},"Zoom","zoom",3992,"https:\u002F\u002Fgithub.com\u002Fopenai\u002Fplugins","2026-06-30T19:00:57.102",null,465,[],{"repoUrl":20,"stars":19,"forks":23,"topics":26,"description":27},[],"OpenAI Plugins","https:\u002F\u002Fgithub.com\u002Fopenai\u002Fplugins\u002Ftree\u002FHEAD\u002Fplugins\u002Fzoom\u002Fskills\u002Fmeeting-sdk\u002Fweb","---\nname: zoom-meeting-sdk-web\ndescription: |\n  Zoom Meeting SDK for Web - Embed Zoom meeting capabilities into web applications. Two integration\n  options: Client View (full-page, familiar Zoom UI) and Component View (embeddable, Promise-based API).\n  Includes SharedArrayBuffer setup for HD video, gallery view, and virtual backgrounds.\n---\n\n# Zoom Meeting SDK (Web)\n\nEmbed Zoom meeting capabilities into web applications with two integration options: **Client View** (full-page) or **Component View** (embeddable).\n\n## How to Implement a Custom Video User Interface for a Zoom Meeting in a Web App\n\nUse **Meeting SDK Web Component View**.\n\nDo not use Video SDK for this question unless the user is explicitly building a non-meeting session\nproduct.\n\nMinimal architecture:\n\n```text\nBrowser page\n  -> fetch Meeting SDK signature from backend\n  -> ZoomMtgEmbedded.createClient()\n  -> client.init({ zoomAppRoot })\n  -> client.join({ signature, sdkKey, meetingNumber, userName, password })\n  -> apply layout\u002Fstyle\u002Fcustomize options around the embedded meeting container\n```\n\nMinimal implementation:\n\n```ts\nimport ZoomMtgEmbedded from '@zoom\u002Fmeetingsdk\u002Fembedded';\n\nconst client = ZoomMtgEmbedded.createClient();\n\nexport async function startEmbeddedMeeting(meetingNumber: string, userName: string, password: string) {\n  const sigRes = await fetch('\u002Fapi\u002Fsignature', {\n    method: 'POST',\n    headers: { 'Content-Type': 'application\u002Fjson' },\n    body: JSON.stringify({ meetingNumber, role: 0 }),\n  });\n\n  if (!sigRes.ok) throw new Error(`signature_fetch_failed:${sigRes.status}`);\n\n  const { signature, sdkKey } = await sigRes.json();\n\n  await client.init({\n    zoomAppRoot: document.getElementById('meetingSDKElement')!,\n    language: 'en-US',\n    patchJsMedia: true,\n    leaveOnPageUnload: true,\n    customize: {\n      video: { isResizable: true, popper: { disableDraggable: false } },\n    },\n  });\n\n  await client.join({\n    signature,\n    sdkKey,\n    meetingNumber,\n    userName,\n    password,\n  });\n}\n```\n\nCommon failure points:\n- wrong route: Video SDK instead of Meeting SDK Component View\n- missing backend signature endpoint\n- wrong password field (`password` here, not `passWord`)\n- missing OBF\u002FZAK requirements for meetings outside the app account\n- missing SharedArrayBuffer headers when higher-end meeting features are expected\n\n## Hard Routing Rule\n\nIf the user wants a **custom video user interface for a Zoom meeting in a web app**, route to\n**Component View**, not Video SDK.\n\n- **Meeting SDK Component View** = custom UI for a real Zoom meeting\n- **Video SDK Web** = custom UI for a non-meeting video session product\n\nFor the direct custom-meeting-UI path, start with\n[component-view\u002FSKILL.md](component-view\u002FSKILL.md).\n\n## New to Web SDK? Start Here!\n\n**The fastest way to master the SDK:**\n\n1. **Choose Your View** - [Client View vs Component View](#client-view-vs-component-view) - Understand the key architectural differences\n2. **Quick Start** - [Client View](#quick-start-client-view) or [Component View](#quick-start-component-view) - Get a working meeting in minutes\n3. **SharedArrayBuffer** - [concepts\u002Fsharedarraybuffer.md](concepts\u002Fsharedarraybuffer.md) - Required for HD video, gallery view, virtual backgrounds\n4. **Optional preflight diagnostics** - [..\u002F..\u002Fprobe-sdk\u002FSKILL.md](..\u002F..\u002Fprobe-sdk\u002FSKILL.md) - Validate browser\u002Fdevice\u002Fnetwork before join\n\n**Building a Custom Integration?**\n- Component View gives you Promise-based API and embeddable UI\n- Client View gives you the familiar full-page Zoom experience\n- For a custom meeting UI, prefer **Component View** first\n- Cross-product routing example: [..\u002F..\u002Fgeneral\u002Fuse-cases\u002Fcustom-meeting-ui-web.md](..\u002F..\u002Fgeneral\u002Fuse-cases\u002Fcustom-meeting-ui-web.md)\n- [Browser Support](concepts\u002Fbrowser-support.md) - Feature matrix by browser\n- Exact deep-dive path: [component-view\u002FSKILL.md](component-view\u002FSKILL.md)\n\n**Having issues?**\n- Join errors → Check signature generation and password spelling (`passWord` vs `password`)\n- HD video not working → Enable SharedArrayBuffer headers\n- Complete navigation → [SKILL.md](SKILL.md)\n\n## Prerequisites\n\n- Zoom app with Meeting SDK credentials from [Marketplace](https:\u002F\u002Fmarketplace.zoom.us\u002F)\n- SDK Key (Client ID) and Secret\n- Modern browser (Chrome, Firefox, Safari, Edge)\n- Backend auth endpoint for signature generation\n\n> **Need help with authentication?** See the **[zoom-oauth](..\u002F..\u002Foauth\u002FSKILL.md)** skill for JWT\u002Fsignature generation.\n>\n> **Want pre-join diagnostics?** Chain **[probe-sdk](..\u002F..\u002Fprobe-sdk\u002FSKILL.md)** before `init()`\u002F`join()` to gate low-readiness environments.\n\n## Optional Preflight Gate (Probe SDK)\n\nFor unstable first-join environments, run Probe SDK checks before calling `ZoomMtg.init()` or `client.join()`:\n\n1. Run Probe permissions\u002Fdevice\u002Fnetwork diagnostics.\n2. Apply readiness policy (`allow`, `warn`, `block`).\n3. Continue to Meeting SDK join only for `allow`\u002Fapproved `warn`.\n\nSee [..\u002F..\u002Fprobe-sdk\u002FSKILL.md](..\u002F..\u002Fprobe-sdk\u002FSKILL.md) and [..\u002F..\u002Fgeneral\u002Fuse-cases\u002Fprobe-sdk-preflight-readiness-gate.md](..\u002F..\u002Fgeneral\u002Fuse-cases\u002Fprobe-sdk-preflight-readiness-gate.md).\n\n## Client View vs Component View\n\n**CRITICAL DIFFERENCE**: These are two completely different APIs with different patterns!\n\n| Aspect | Client View | Component View |\n|--------|-------------|----------------|\n| **Object** | `ZoomMtg` (global singleton) | `ZoomMtgEmbedded.createClient()` (instance) |\n| **API Style** | Callbacks | Promises |\n| **UI** | Full-page takeover | Embeddable in any container |\n| **Password param** | `passWord` (capital W) | `password` (lowercase) |\n| **Events** | `inMeetingServiceListener()` | `on()`\u002F`off()` |\n| **Import (npm)** | `import { ZoomMtg } from '@zoom\u002Fmeetingsdk'` | `import ZoomMtgEmbedded from '@zoom\u002Fmeetingsdk\u002Fembedded'` |\n| **CDN** | `zoom-meeting-{VERSION}.min.js` | `zoom-meeting-embedded-{VERSION}.min.js` |\n| **Best For** | Quick integration, standard Zoom UI | Custom layouts, React\u002FVue apps |\n\n### When to Use Which\n\n**Use Client View when:**\n- You want the familiar Zoom meeting interface\n- Quick integration is priority over customization\n- Full-page meeting experience is acceptable\n\n**Use Component View when:**\n- You need to embed meetings in a specific area of your page\n- Building React\u002FVue\u002FAngular applications\n- You want Promise-based async\u002Fawait syntax\n- Custom positioning and resizing is required\n\n## Installation\n\n### NPM (Recommended)\n\n```bash\nnpm install @zoom\u002Fmeetingsdk --save\n```\n\n### CDN\n\n```html\n\u003C!-- Dependencies (required for both views) -->\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\n\u003C!-- Client View -->\n\u003Cscript src=\"https:\u002F\u002Fsource.zoom.us\u002Fzoom-meeting-{VERSION}.min.js\">\u003C\u002Fscript>\n\n\u003C!-- OR Component View -->\n\u003Cscript src=\"https:\u002F\u002Fsource.zoom.us\u002Fzoom-meeting-embedded-{VERSION}.min.js\">\u003C\u002Fscript>\n```\n\nReplace `{VERSION}` with the [latest version](https:\u002F\u002Fwww.npmjs.com\u002Fpackage\u002F@zoom\u002Fmeetingsdk) (e.g., `3.11.0`).\n\n## Quick Start (Client View)\n\n```javascript\nimport { ZoomMtg } from '@zoom\u002Fmeetingsdk';\n\n\u002F\u002F Step 1: Check browser compatibility\nconsole.log('System requirements:', ZoomMtg.checkSystemRequirements());\n\n\u002F\u002F Step 2: Preload WebAssembly for faster initialization\nZoomMtg.preLoadWasm();\nZoomMtg.prepareWebSDK();\n\n\u002F\u002F Step 3: Load language files (MUST complete before init)\nZoomMtg.i18n.load('en-US');\nZoomMtg.i18n.onLoad(() => {\n\n  \u002F\u002F Step 4: Initialize SDK\n  ZoomMtg.init({\n    leaveUrl: 'https:\u002F\u002Fyoursite.com\u002Fmeeting-ended',\n    disableCORP: !window.crossOriginIsolated, \u002F\u002F Auto-detect SharedArrayBuffer\n    patchJsMedia: true,           \u002F\u002F Auto-apply media dependency fixes\n    leaveOnPageUnload: true,      \u002F\u002F Clean up when page unloads\n    externalLinkPage: '.\u002Fexternal.html', \u002F\u002F Page for external links\n    success: () => {\n\n      \u002F\u002F Step 5: Join meeting (note: passWord with capital W!)\n      ZoomMtg.join({\n        signature: signature,       \u002F\u002F From your auth endpoint\n        meetingNumber: '1234567890',\n        userName: 'User Name',\n        passWord: 'meeting-password', \u002F\u002F Capital W!\n        success: (res) => {\n          console.log('Joined meeting:', res);\n\n          \u002F\u002F Post-join: Get meeting info\n          ZoomMtg.getAttendeeslist({});\n          ZoomMtg.getCurrentUser({\n            success: (res) => console.log('Current user:', res.result.currentUser)\n          });\n        },\n        error: (err) => {\n          console.error('Join error:', err);\n        }\n      });\n    },\n    error: (err) => {\n      console.error('Init error:', err);\n    }\n  });\n});\n```\n\n## Quick Start (Component View)\n\n```javascript\nimport ZoomMtgEmbedded from '@zoom\u002Fmeetingsdk\u002Fembedded';\n\n\u002F\u002F Create client instance (do this ONCE, not on every render!)\nconst client = ZoomMtgEmbedded.createClient();\n\nasync function startMeeting() {\n  try {\n    \u002F\u002F Initialize with container element\n    await client.init({\n      zoomAppRoot: document.getElementById('meetingSDKElement'),\n      language: 'en-US',\n      debug: true,                  \u002F\u002F Enable debug logging\n      patchJsMedia: true,           \u002F\u002F Auto-apply media fixes\n      leaveOnPageUnload: true,      \u002F\u002F Clean up on page unload\n    });\n\n    \u002F\u002F Join meeting (note: password lowercase!)\n    await client.join({\n      signature: signature,          \u002F\u002F From your auth endpoint\n      sdkKey: SDK_KEY,\n      meetingNumber: '1234567890',\n      userName: 'User Name',\n      password: 'meeting-password',  \u002F\u002F Lowercase!\n    });\n\n    console.log('Joined successfully!');\n  } catch (error) {\n    console.error('Failed to join:', error);\n  }\n}\n```\n\n## Authentication Endpoint (Required)\n\nBoth views require a JWT signature from a backend server. **Never expose your SDK Secret in frontend code!**\n\n```bash\n# Clone Zoom's official auth endpoint\ngit clone https:\u002F\u002Fgithub.com\u002Fzoom\u002Fmeetingsdk-auth-endpoint-sample --depth 1\ncd meetingsdk-auth-endpoint-sample\ncp .env.example .env\n# Edit .env with your SDK Key and Secret\nnpm install && npm run start\n```\n\n### Signature Generation\n\nThe signature encodes:\n- `sdkKey` (or `clientId` for newer apps)\n- `meetingNumber`\n- `role` (0 = participant, 1 = host)\n- `iat` (issued at timestamp)\n- `exp` (expiration timestamp)\n- `tokenExp` (token expiration)\n\n> **IMPORTANT (March 2026)**: Apps joining meetings outside their account will require an App Privilege Token (OBF) or ZAK token. See [Authorization Requirements](#authorization-requirements-2026-update).\n\n## Core Workflow\n\n```\n┌─────────────────┐    ┌─────────────────┐    ┌─────────────────┐\n│   Get Signature │───►│   init()        │───►│   join()        │\n│   (from backend)│    │   (SDK setup)   │    │   (enter mtg)   │\n└─────────────────┘    └─────────────────┘    └─────────────────┘\n                              │                       │\n                              ▼                       ▼\n                       success\u002Ferror            success\u002Ferror\n                        callback                 callback\n                     (or Promise resolve)    (or Promise resolve)\n```\n\n## Client View API Reference\n\n### ZoomMtg.init() - Key Options\n\n```javascript\nZoomMtg.init({\n  \u002F\u002F Required\n  leaveUrl: string,              \u002F\u002F URL to redirect after leaving\n\n  \u002F\u002F Display Options\n  showMeetingHeader: boolean,    \u002F\u002F Show meeting number\u002Ftopic (default: true)\n  disableInvite: boolean,        \u002F\u002F Hide invite button (default: false)\n  disableRecord: boolean,        \u002F\u002F Hide record button (default: false)\n  disableJoinAudio: boolean,     \u002F\u002F Hide join audio option (default: false)\n  disablePreview: boolean,       \u002F\u002F Skip A\u002FV preview (default: false)\n\n  \u002F\u002F HD Video (requires SharedArrayBuffer)\n  enableHD: boolean,             \u002F\u002F Enable 720p (default: true for >=2.8.0)\n  enableFullHD: boolean,         \u002F\u002F Enable 1080p for webinars (default: false)\n\n  \u002F\u002F View Options\n  defaultView: 'gallery' | 'speaker' | 'multiSpeaker',\n\n  \u002F\u002F Feature Toggles\n  isSupportChat: boolean,        \u002F\u002F Enable chat (default: true)\n  isSupportCC: boolean,          \u002F\u002F Enable closed captions (default: true)\n  isSupportBreakout: boolean,    \u002F\u002F Enable breakout rooms (default: true)\n  isSupportPolling: boolean,     \u002F\u002F Enable polling (default: true)\n  isSupportQA: boolean,          \u002F\u002F Enable Q&A for webinars (default: true)\n\n  \u002F\u002F Cross-Origin\n  disableCORP: boolean,          \u002F\u002F For dev without COOP\u002FCOEP headers\n\n  \u002F\u002F Callbacks\n  success: Function,\n  error: Function,\n});\n```\n\n### ZoomMtg.join() - Key Options\n\n```javascript\nZoomMtg.join({\n  \u002F\u002F Required\n  signature: string,             \u002F\u002F JWT signature from backend\n  meetingNumber: string | number,\n  userName: string,\n\n  \u002F\u002F Authentication\n  passWord: string,              \u002F\u002F Meeting password (capital W!)\n  zak: string,                   \u002F\u002F Host's ZAK token (required to start)\n  tk: string,                    \u002F\u002F Registration token (if required)\n  obfToken: string,              \u002F\u002F App Privilege Token (for 2026 requirement)\n\n  \u002F\u002F Optional\n  userEmail: string,             \u002F\u002F Required for webinars\n  customerKey: string,           \u002F\u002F Custom identifier (max 36 chars)\n\n  \u002F\u002F Callbacks\n  success: Function,\n  error: Function,\n});\n```\n\n### Event Listeners (Client View)\n\n```javascript\n\u002F\u002F User events\nZoomMtg.inMeetingServiceListener('onUserJoin', (data) => {\n  console.log('User joined:', data);\n});\n\nZoomMtg.inMeetingServiceListener('onUserLeave', (data) => {\n  console.log('User left:', data);\n  \u002F\u002F data.reasonCode values:\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\n\u002F\u002F Meeting status\nZoomMtg.inMeetingServiceListener('onMeetingStatus', (data) => {\n  \u002F\u002F status: 1=connecting, 2=connected, 3=disconnected, 4=reconnecting\n  console.log('Meeting status:', data.status);\n});\n\n\u002F\u002F Waiting room\nZoomMtg.inMeetingServiceListener('onUserIsInWaitingRoom', (data) => {\n  console.log('User in waiting room:', data);\n});\n\n\u002F\u002F Active speaker detection\nZoomMtg.inMeetingServiceListener('onActiveSpeaker', (data) => {\n  \u002F\u002F [{userId: number, userName: string}]\n  console.log('Active speaker:', data);\n});\n\n\u002F\u002F Network quality monitoring\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  if (data.level \u003C= 1) {\n    console.warn('Poor network quality');\n  }\n});\n\n\u002F\u002F Join performance metrics\nZoomMtg.inMeetingServiceListener('onJoinSpeed', (data) => {\n  console.log('Join speed metrics:', data);\n  \u002F\u002F Useful for performance monitoring dashboards\n});\n\n\u002F\u002F Chat\nZoomMtg.inMeetingServiceListener('onReceiveChatMsg', (data) => {\n  console.log('Chat message:', data);\n});\n\n\u002F\u002F Recording\nZoomMtg.inMeetingServiceListener('onRecordingChange', (data) => {\n  console.log('Recording status:', data);\n});\n\n\u002F\u002F Screen sharing\nZoomMtg.inMeetingServiceListener('onShareContentChange', (data) => {\n  console.log('Share content changed:', data);\n});\n\n\u002F\u002F Transcription (requires \"save closed captions\" enabled)\nZoomMtg.inMeetingServiceListener('onReceiveTranscriptionMsg', (data) => {\n  console.log('Transcription:', data);\n});\n\n\u002F\u002F Breakout room status\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### Common Methods (Client View)\n\n```javascript\n\u002F\u002F Get current user info\nZoomMtg.getCurrentUser({\n  success: (res) => console.log(res.result.currentUser)\n});\n\n\u002F\u002F Get all attendees\nZoomMtg.getAttendeeslist({});\n\n\u002F\u002F Audio\u002FVideo control\nZoomMtg.mute({ userId, mute: true });\nZoomMtg.muteAll({ muteAll: true });\n\n\u002F\u002F Chat\nZoomMtg.sendChat({ message: 'Hello!', userId: 0 }); \u002F\u002F 0 = everyone\n\n\u002F\u002F Leave\u002FEnd\nZoomMtg.leaveMeeting({});\nZoomMtg.endMeeting({});\n\n\u002F\u002F Host controls\nZoomMtg.makeHost({ userId });\nZoomMtg.makeCoHost({ oderId });\nZoomMtg.expel({ userId });  \u002F\u002F Remove participant\nZoomMtg.putOnHold({ oderId, bHold: true });\n\n\u002F\u002F Breakout rooms\nZoomMtg.createBreakoutRoom({ rooms: [...] });\nZoomMtg.openBreakoutRooms({});\nZoomMtg.closeBreakoutRooms({});\n\n\u002F\u002F Virtual background\nZoomMtg.setVirtualBackground({ imageUrl: '...' });\n```\n\n## Component View API Reference\n\n### client.init() - Key Options\n\n```javascript\nawait client.init({\n  \u002F\u002F Required\n  zoomAppRoot: HTMLElement,      \u002F\u002F Container element\n\n  \u002F\u002F Display\n  language: string,              \u002F\u002F e.g., 'en-US'\n  debug: boolean,                \u002F\u002F Enable debug logging (default: false)\n\n  \u002F\u002F Media\n  patchJsMedia: boolean,         \u002F\u002F Auto-apply media fixes (default: false)\n  leaveOnPageUnload: boolean,    \u002F\u002F Clean up on page unload (default: false)\n\n  \u002F\u002F Video\n  enableHD: boolean,             \u002F\u002F Enable 720p\n  enableFullHD: boolean,         \u002F\u002F Enable 1080p\n\n  \u002F\u002F Customization\n  customize: {\n    video: {\n      isResizable: boolean,\n      viewSizes: { default: { width, height } }\n    },\n    meetingInfo: ['topic', 'host', 'mn', 'pwd', 'telPwd', 'invite', 'participant', 'dc', 'enctype'],\n    toolbar: {\n      buttons: [\n        {\n          text: 'Custom Button',\n          className: 'custom-btn',\n          onClick: () => {\n            console.log('Custom button clicked');\n          }\n        }\n      ]\n    }\n  },\n\n  \u002F\u002F For ZFG\n  webEndpoint: string,\n  assetPath: string,             \u002F\u002F Custom path for AV libraries (self-hosting)\n});\n```\n\n### client.join() - Key Options\n\n```javascript\nawait client.join({\n  \u002F\u002F Required\n  signature: string,\n  sdkKey: string,\n  meetingNumber: string | number,\n  userName: string,\n\n  \u002F\u002F Authentication\n  password: string,              \u002F\u002F Lowercase! (different from Client View)\n  zak: string,                   \u002F\u002F Host's ZAK token\n  tk: string,                    \u002F\u002F Registration token\n\n  \u002F\u002F Optional\n  userEmail: string,\n});\n```\n\n### Event Listeners (Component View)\n\n```javascript\n\u002F\u002F Connection state\nclient.on('connection-change', (payload) => {\n  \u002F\u002F payload.state: 'Connecting', 'Connected', 'Reconnecting', 'Closed'\n  console.log('Connection:', payload.state);\n});\n\n\u002F\u002F User events\nclient.on('user-added', (payload) => {\n  console.log('Users added:', payload);\n});\n\nclient.on('user-removed', (payload) => {\n  console.log('Users removed:', payload);\n});\n\nclient.on('user-updated', (payload) => {\n  console.log('Users updated:', payload);\n});\n\n\u002F\u002F Active speaker\nclient.on('active-speaker', (payload) => {\n  console.log('Active speaker:', payload);\n});\n\n\u002F\u002F Video state\nclient.on('video-active-change', (payload) => {\n  console.log('Video active:', payload);\n});\n\n\u002F\u002F Unsubscribe\nclient.off('connection-change', handler);\n```\n\n### Common Methods (Component View)\n\n```javascript\n\u002F\u002F Get current user\nconst currentUser = client.getCurrentUser();\n\n\u002F\u002F Get all participants\nconst participants = client.getParticipantsList();\n\n\u002F\u002F Audio control\nawait client.mute(true);\nawait client.muteAudio(userId, true);\n\n\u002F\u002F Video control\nawait client.muteVideo(userId, true);\n\n\u002F\u002F Leave\nclient.leaveMeeting();\n\n\u002F\u002F End (host only)\nclient.endMeeting();\n```\n\n## SharedArrayBuffer (CRITICAL for HD)\n\nSharedArrayBuffer enables advanced features:\n- 720p\u002F1080p video\n- Gallery view\n- Virtual backgrounds\n- Background noise suppression\n\n### Enable with HTTP Headers\n\n```\nCross-Origin-Opener-Policy: same-origin\nCross-Origin-Embedder-Policy: require-corp\n```\n\n### Verify in Browser\n\n```javascript\nif (typeof SharedArrayBuffer === 'function') {\n  console.log('SharedArrayBuffer enabled!');\n} else {\n  console.warn('HD features will be limited');\n}\n\n\u002F\u002F Or check cross-origin isolation\nconsole.log('Cross-origin isolated:', window.crossOriginIsolated);\n```\n\n### Platform-Specific Setup\n\nSee [concepts\u002Fsharedarraybuffer.md](concepts\u002Fsharedarraybuffer.md) for:\n- Vercel, Netlify, AWS CloudFront configuration\n- nginx\u002FApache configuration\n- Service worker fallback for GitHub Pages\n\n### Development Setup (Two-Server Pattern)\n\nThe official samples use a **two-server pattern** for development because COOP\u002FCOEP headers can break navigation:\n\n```javascript\n\u002F\u002F Server 1: Main app (port 9999) - NO isolation headers\n\u002F\u002F Serves index.html, navigation works normally\n\n\u002F\u002F Server 2: Meeting page (port 9998) - WITH isolation headers\n\u002F\u002F Serves meeting.html with SharedArrayBuffer support\n\n\u002F\u002F Main server proxies to meeting server\nproxy: [{\n  path: '\u002Fmeeting.html',\n  target: 'http:\u002F\u002FYOUR_MEETING_SERVER_HOST:9998\u002F'\n}]\n```\n\n**Vite config with headers:**\n```typescript\n\u002F\u002F vite.config.ts\nexport default defineConfig({\n  server: {\n    headers: {\n      'Cross-Origin-Embedder-Policy': 'require-corp',\n      'Cross-Origin-Opener-Policy': 'same-origin',\n    }\n  }\n});\n```\n\n## Common Issues & Solutions\n\n| Issue | Solution |\n|-------|----------|\n| **Join fails with signature error** | Verify signature generation, check sdkKey format |\n| **\"passWord\" typo** | Client View uses `passWord` (capital W), Component View uses `password` |\n| **No HD video** | Enable SharedArrayBuffer headers, check browser support |\n| **Callbacks not firing** | Ensure `inMeetingServiceListener` called after init success |\n| **Virtual background not working** | Requires SharedArrayBuffer + Chrome\u002FEdge |\n| **Screen share fails on Safari** | Safari 17+ with macOS 14+ required for client view |\n\n**Complete troubleshooting**: [troubleshooting\u002Fcommon-issues.md](troubleshooting\u002Fcommon-issues.md)\n\n## Browser Support Matrix\n\n| Feature | Chrome | Firefox | Safari | Edge | iOS | Android |\n|---------|--------|---------|--------|------|-----|---------|\n| 720p (receive) | Yes | Yes | Yes | Yes | Yes | Yes |\n| 720p (send) | Yes* | Yes* | Yes* | Yes* | Yes* | Yes* |\n| Virtual background | Yes | Yes | No | Yes | No | No |\n| Screen share (send) | Yes | Yes | Safari 17+ | Yes | No | No |\n| Gallery view | Yes | Yes | Yes** | Yes | Yes | Yes |\n\n*Requires SharedArrayBuffer\n**Safari 17+ with macOS Sonoma\n\nSee [concepts\u002Fbrowser-support.md](concepts\u002Fbrowser-support.md) for complete matrix.\n\n## Authorization Requirements (2026 Update)\n\n> **IMPORTANT**: Beginning **March 2, 2026**, apps joining meetings outside their account must be authorized.\n\n### Options\n\n1. **App Privilege Token (OBF)** - Recommended for bots\n   ```javascript\n   ZoomMtg.join({\n     ...\n     obfToken: 'your-app-privilege-token'\n   });\n   ```\n\n2. **ZAK Token** - For host operations\n   ```javascript\n   ZoomMtg.join({\n     ...\n     zak: 'host-zak-token'\n   });\n   ```\n\n## Zoom for Government (ZFG)\n\n### Option 1: ZFG-specific NPM Package\n\n```json\n{\n  \"dependencies\": {\n    \"@zoom\u002Fmeetingsdk\": \"3.11.2-zfg\"\n  }\n}\n```\n\n### Option 2: Configure ZFG Endpoints\n\n**Client View:**\n```javascript\nZoomMtg.setZoomJSLib('https:\u002F\u002Fsource.zoomgov.com\u002F{VERSION}\u002Flib', '\u002Fav');\nZoomMtg.init({\n  webEndpoint: 'www.zoomgov.com',\n  ...\n});\n```\n\n**Component View:**\n```javascript\nawait client.init({\n  webEndpoint: 'www.zoomgov.com',\n  assetPath: 'https:\u002F\u002Fsource.zoomgov.com\u002F{VERSION}\u002Flib\u002Fav',\n  ...\n});\n```\n\n## China CDN\n\n```javascript\n\u002F\u002F Set before preLoadWasm()\nZoomMtg.setZoomJSLib('https:\u002F\u002Fjssdk.zoomus.cn\u002F{VERSION}\u002Flib', '\u002Fav');\n```\n\n## React Integration\n\n### Official Pattern (from zoom\u002Fmeetingsdk-react-sample)\n\nThe official React sample uses **imperative initialization** rather than React hooks:\n\n```tsx\nimport { ZoomMtg } from '@zoom\u002Fmeetingsdk';\n\n\u002F\u002F Preload at module level (outside component)\nZoomMtg.preLoadWasm();\nZoomMtg.prepareWebSDK();\n\nfunction App() {\n  const authEndpoint = import.meta.env.VITE_AUTH_ENDPOINT;\n  const meetingNumber = '';\n  const passWord = '';\n  const role = 0;\n  const userName = 'React User';\n\n  const getSignature = async () => {\n    const response = await fetch(authEndpoint, {\n      method: 'POST',\n      headers: { 'Content-Type': 'application\u002Fjson' },\n      body: JSON.stringify({\n        meetingNumber,\n        role,\n      }),\n    });\n    const data = await response.json();\n    startMeeting(data.signature);\n  };\n\n  const startMeeting = (signature: string) => {\n    document.getElementById('zmmtg-root')!.style.display = 'block';\n\n    ZoomMtg.init({\n      leaveUrl: window.location.origin,\n      patchJsMedia: true,\n      leaveOnPageUnload: true,\n      success: () => {\n        ZoomMtg.join({\n          signature,\n          meetingNumber,\n          userName,\n          passWord,\n          success: (res) => console.log('Joined:', res),\n          error: (err) => console.error('Join error:', err),\n        });\n      },\n      error: (err) => console.error('Init error:', err),\n    });\n  };\n\n  return (\n    \u003Cbutton onClick={getSignature}>Join Meeting\u003C\u002Fbutton>\n  );\n}\n```\n\n### React Gotchas (from official samples)\n\n| Issue | Problem | Solution |\n|-------|---------|----------|\n| **Client Recreation** | `createClient()` in component body runs every render | Use `useRef` to persist client |\n| **No useEffect** | Official sample doesn't use React lifecycle hooks | SDK's `leaveOnPageUnload` handles cleanup |\n| **Direct DOM** | Sample uses `getElementById` | Use `useRef\u003CHTMLDivElement>` in production |\n| **No Error State** | Silent failures | Add `useState` for error handling |\n| **Module-Scope Side Effects** | `preLoadWasm()` at top level | May cause issues with SSR |\n\n### Production-Ready React Pattern\n\n```tsx\nimport { useEffect, useRef, useState, useCallback } from 'react';\nimport ZoomMtgEmbedded from '@zoom\u002Fmeetingsdk\u002Fembedded';\n\ntype ZoomClient = ReturnType\u003Ctypeof ZoomMtgEmbedded.createClient>;\n\nfunction ZoomMeeting({ meetingNumber, password, userName }: Props) {\n  const clientRef = useRef\u003CZoomClient | null>(null);\n  const containerRef = useRef\u003CHTMLDivElement>(null);\n  const [isJoining, setIsJoining] = useState(false);\n  const [error, setError] = useState\u003Cstring | null>(null);\n\n  \u002F\u002F Create client once\n  useEffect(() => {\n    if (!clientRef.current) {\n      clientRef.current = ZoomMtgEmbedded.createClient();\n    }\n  }, []);\n\n  const joinMeeting = useCallback(async () => {\n    if (!clientRef.current || !containerRef.current) return;\n\n    setIsJoining(true);\n    setError(null);\n\n    try {\n      \u002F\u002F Get signature from your backend\n      const response = await fetch('\u002Fapi\u002Fsignature', {\n        method: 'POST',\n        headers: { 'Content-Type': 'application\u002Fjson' },\n        body: JSON.stringify({ meetingNumber, role: 0 }),\n      });\n      const { signature, sdkKey } = await response.json();\n\n      await clientRef.current.init({\n        zoomAppRoot: containerRef.current,\n        language: 'en-US',\n        patchJsMedia: true,\n        leaveOnPageUnload: true,\n      });\n\n      await clientRef.current.join({\n        signature,\n        sdkKey,\n        meetingNumber,\n        password,\n        userName,\n      });\n    } catch (err) {\n      setError(err instanceof Error ? err.message : 'Failed to join');\n    } finally {\n      setIsJoining(false);\n    }\n  }, [meetingNumber, password, userName]);\n\n  return (\n    \u003Cdiv>\n      \u003Cdiv ref={containerRef} style={{ width: '100%', height: '500px' }} \u002F>\n      \u003Cbutton onClick={joinMeeting} disabled={isJoining}>\n        {isJoining ? 'Joining...' : 'Join Meeting'}\n      \u003C\u002Fbutton>\n      {error && \u003Cdiv className=\"error\">{error}\u003C\u002Fdiv>}\n    \u003C\u002Fdiv>\n  );\n}\n```\n\n### Environment Variables (Vite)\n\n```bash\n# .env.local\nVITE_AUTH_ENDPOINT=http:\u002F\u002FYOUR_AUTH_SERVER_HOST:4000\nVITE_SDK_KEY=your_sdk_key\n```\n\n```tsx\nconst authEndpoint = import.meta.env.VITE_AUTH_ENDPOINT;\nconst sdkKey = import.meta.env.VITE_SDK_KEY;\n```\n\n## Detailed References\n\n### Core Documentation\n- **[SKILL.md](SKILL.md)** - Complete navigation guide\n- **[client-view\u002FSKILL.md](client-view\u002FSKILL.md)** - Full Client View reference\n- **[component-view\u002FSKILL.md](component-view\u002FSKILL.md)** - Full Component View reference\n\n### Concepts\n- **[concepts\u002Fsharedarraybuffer.md](concepts\u002Fsharedarraybuffer.md)** - HD video requirements\n- **[concepts\u002Fbrowser-support.md](concepts\u002Fbrowser-support.md)** - Feature matrix by browser\n\n### Troubleshooting\n- **[troubleshooting\u002Ferror-codes.md](troubleshooting\u002Ferror-codes.md)** - All SDK error codes\n- **[troubleshooting\u002Fcommon-issues.md](troubleshooting\u002Fcommon-issues.md)** - Quick diagnostics\n\n### Examples\n- **[client-view\u002FSKILL.md](client-view\u002FSKILL.md)** - Complete Client View guide\n- **[component-view\u002FSKILL.md](component-view\u002FSKILL.md)** - Component View React integration\n\n## Helper Utilities\n\n### Extract Meeting Number from Invite Link\n\n```javascript\n\u002F\u002F Users can paste full Zoom invite links\ndocument.getElementById('meeting_number').addEventListener('input', (e) => {\n  \u002F\u002F Extract meeting number (9-11 digits)\n  let meetingNumber = e.target.value.replace(\u002F([^0-9])+\u002Fi, '');\n  if (meetingNumber.match(\u002F([0-9]{9,11})\u002F)) {\n    meetingNumber = meetingNumber.match(\u002F([0-9]{9,11})\u002F)[1];\n  }\n\n  \u002F\u002F Auto-extract password from invite link\n  const pwdMatch = e.target.value.match(\u002Fpwd=([\\d,\\w]+)\u002F);\n  if (pwdMatch) {\n    document.getElementById('password').value = pwdMatch[1];\n  }\n});\n```\n\n### Dynamic Language Switching\n\n```javascript\n\u002F\u002F Change language at runtime\ndocument.getElementById('language').addEventListener('change', (e) => {\n  const lang = e.target.value;\n  ZoomMtg.i18n.load(lang);\n  ZoomMtg.i18n.reload(lang);\n  ZoomMtg.reRender({ lang });\n});\n```\n\n### Check System Requirements\n\n```javascript\n\u002F\u002F Check browser compatibility before initializing\nconst requirements = ZoomMtg.checkSystemRequirements();\nconsole.log('Browser info:', JSON.stringify(requirements));\n\nif (!requirements.browserInfo.isChrome && !requirements.browserInfo.isFirefox) {\n  alert('For best experience, use Chrome or Firefox');\n}\n```\n\n## Sample Repositories\n\n| Repository | Description |\n|------------|-------------|\n| [meetingsdk-web-sample](https:\u002F\u002Fgithub.com\u002Fzoom\u002Fmeetingsdk-web-sample) | Official samples (Client View & Component View) |\n| [meetingsdk-react-sample](https:\u002F\u002Fgithub.com\u002Fzoom\u002Fmeetingsdk-react-sample) | React integration with TypeScript + Vite |\n| [meetingsdk-web](https:\u002F\u002Fgithub.com\u002Fzoom\u002Fmeetingsdk-web) | SDK source with helper.html |\n| [meetingsdk-auth-endpoint-sample](https:\u002F\u002Fgithub.com\u002Fzoom\u002Fmeetingsdk-auth-endpoint-sample) | Signature generation backend |\n\n## Official Resources\n\n- **Official docs**: https:\u002F\u002Fdevelopers.zoom.us\u002Fdocs\u002Fmeeting-sdk\u002Fweb\u002F\n- **Client View API Reference**: https:\u002F\u002Fmarketplacefront.zoom.us\u002Fsdk\u002Fmeeting\u002Fweb\u002Findex.html\n- **Component View API Reference**: https:\u002F\u002Fmarketplacefront.zoom.us\u002Fsdk\u002Fmeeting\u002Fweb\u002Fcomponents\u002Findex.html\n- **Developer forum**: https:\u002F\u002Fdevforum.zoom.us\u002F\n\n---\n\n**Documentation Version**: Based on Zoom Web Meeting SDK v3.11+\n\n**Need help?** Start with [SKILL.md](SKILL.md) for complete navigation.\n\n\n## Merged from meeting-sdk\u002Fweb\u002FSKILL.md\n\n# Zoom Meeting SDK (Web) - Documentation Index\n\nQuick navigation guide for all Web SDK documentation.\n\n## Start Here\n\n| Document | Description |\n|----------|-------------|\n| **[SKILL.md](SKILL.md)** | Main entry point - Quick starts for both Client View and Component View |\n\n## By View Type\n\n### Client View (Full-Page)\n| Document | Description |\n|----------|-------------|\n| **[client-view\u002FSKILL.md](client-view\u002FSKILL.md)** | Complete Client View reference |\n\n### Component View (Embeddable)\n| Document | Description |\n|----------|-------------|\n| **[component-view\u002FSKILL.md](component-view\u002FSKILL.md)** | Complete Component View reference |\n\n## Concepts\n\n| Document | Description |\n|----------|-------------|\n| **[concepts\u002Fsharedarraybuffer.md](concepts\u002Fsharedarraybuffer.md)** | HD video requirements, COOP\u002FCOEP headers |\n| **[concepts\u002Fbrowser-support.md](concepts\u002Fbrowser-support.md)** | Feature matrix by browser |\n\n## Examples\n\n| Document | Description |\n|----------|-------------|\n| [examples\u002Fclient-view-basic.md](examples\u002Fclient-view-basic.md) | Basic Client View integration |\n| [examples\u002Fcomponent-view-react.md](examples\u002Fcomponent-view-react.md) | React integration with Component View |\n\n## Troubleshooting\n\n| Document | Description |\n|----------|-------------|\n| **[troubleshooting\u002Ferror-codes.md](troubleshooting\u002Ferror-codes.md)** | All SDK error codes (3000-10000 range) |\n| **[troubleshooting\u002Fcommon-issues.md](troubleshooting\u002Fcommon-issues.md)** | Quick diagnostics and fixes |\n\n## By Topic\n\n### Authentication\n- [SKILL.md#authentication-endpoint](SKILL.md#authentication-endpoint-required) - Signature generation\n- [SKILL.md#authorization-requirements-2026-update](SKILL.md#authorization-requirements-2026-update) - OBF tokens\n\n### HD Video & Performance\n- [concepts\u002Fsharedarraybuffer.md](concepts\u002Fsharedarraybuffer.md) - Enable 720p\u002F1080p\n\n### Events & Callbacks\n- [SKILL.md#event-listeners-client-view](SKILL.md#event-listeners-client-view) - Client View events\n- [SKILL.md#event-listeners-component-view](SKILL.md#event-listeners-component-view) - Component View events\n\n### Government (ZFG)\n- [SKILL.md#zoom-for-government-zfg](SKILL.md#zoom-for-government-zfg) - ZFG configuration\n\n### China CDN\n- [SKILL.md#china-cdn](SKILL.md#china-cdn) - China-specific CDN\n\n## Quick Reference\n\n### Client View vs Component View\n\n| Aspect | Client View | Component View |\n|--------|-------------|----------------|\n| **Object** | `ZoomMtg` | `ZoomMtgEmbedded.createClient()` |\n| **API Style** | Callbacks | Promises |\n| **Password param** | `passWord` (capital W) | `password` (lowercase) |\n| **Events** | `inMeetingServiceListener()` | `on()`\u002F`off()` |\n\n### Key Gotchas\n\n1. **Password spelling differs between views!**\n   - Client View: `passWord` (capital W)\n   - Component View: `password` (lowercase)\n\n2. **SharedArrayBuffer required for HD features**\n   - 720p\u002F1080p video\n   - Gallery view (25 videos)\n   - Virtual backgrounds\n\n3. **March 2026 Authorization Change**\n   - Apps joining external meetings need OBF or ZAK tokens\n\n## External Resources\n\n- **Official docs**: https:\u002F\u002Fdevelopers.zoom.us\u002Fdocs\u002Fmeeting-sdk\u002Fweb\u002F\n- **Client View API**: https:\u002F\u002Fmarketplacefront.zoom.us\u002Fsdk\u002Fmeeting\u002Fweb\u002Findex.html\n- **Component View API**: https:\u002F\u002Fmarketplacefront.zoom.us\u002Fsdk\u002Fmeeting\u002Fweb\u002Fcomponents\u002Findex.html\n- **GitHub samples**: https:\u002F\u002Fgithub.com\u002Fzoom\u002Fmeetingsdk-web-sample\n\n## Operations\n\n- [RUNBOOK.md](RUNBOOK.md) - 5-minute preflight and debugging checklist.\n",{"data":31,"body":32},{"name":4,"description":6},{"type":33,"children":34},"root",[35,43,64,71,83,88,93,106,111,1125,1130,1175,1181,1199,1222,1234,1240,1248,1325,1333,1387,1395,1431,1437,1468,1529,1535,1554,1608,1625,1630,1640,1892,1899,1907,1925,1933,1956,1962,1968,2000,2005,2367,2396,2402,3584,3590,4257,4263,4273,4386,4392,4397,4471,4491,4497,4506,4512,4518,5117,5123,5483,5489,7429,7435,8301,8307,8313,9151,9157,9418,9424,10291,10297,10623,10629,10634,10657,10663,10672,10678,10905,10911,10921,10939,10945,10957,11105,11113,11289,11295,11432,11447,11453,11664,11669,11679,11685,11705,11711,11881,11887,11893,11982,11988,11996,12134,12142,12253,12259,12330,12336,12342,12354,13649,13655,13832,13838,15677,15683,15731,15834,15840,15846,15886,15892,15918,15924,15952,15958,15985,15991,15997,16520,16526,16801,16807,17033,17039,17133,17139,17200,17204,17214,17230,17236,17242,17247,17253,17292,17298,17304,17342,17348,17386,17391,17447,17452,17504,17509,17565,17571,17577,17601,17607,17619,17625,17648,17654,17667,17672,17685,17691,17696,17824,17830,17906,17912,17970,17976,17989],{"type":36,"tag":37,"props":38,"children":39},"element","h1",{"id":4},[40],{"type":41,"value":42},"text","Zoom Meeting SDK (Web)",{"type":36,"tag":44,"props":45,"children":46},"p",{},[47,49,55,57,62],{"type":41,"value":48},"Embed Zoom meeting capabilities into web applications with two integration options: ",{"type":36,"tag":50,"props":51,"children":52},"strong",{},[53],{"type":41,"value":54},"Client View",{"type":41,"value":56}," (full-page) or ",{"type":36,"tag":50,"props":58,"children":59},{},[60],{"type":41,"value":61},"Component View",{"type":41,"value":63}," (embeddable).",{"type":36,"tag":65,"props":66,"children":68},"h2",{"id":67},"how-to-implement-a-custom-video-user-interface-for-a-zoom-meeting-in-a-web-app",[69],{"type":41,"value":70},"How to Implement a Custom Video User Interface for a Zoom Meeting in a Web App",{"type":36,"tag":44,"props":72,"children":73},{},[74,76,81],{"type":41,"value":75},"Use ",{"type":36,"tag":50,"props":77,"children":78},{},[79],{"type":41,"value":80},"Meeting SDK Web Component View",{"type":41,"value":82},".",{"type":36,"tag":44,"props":84,"children":85},{},[86],{"type":41,"value":87},"Do not use Video SDK for this question unless the user is explicitly building a non-meeting session\nproduct.",{"type":36,"tag":44,"props":89,"children":90},{},[91],{"type":41,"value":92},"Minimal architecture:",{"type":36,"tag":94,"props":95,"children":100},"pre",{"className":96,"code":98,"language":41,"meta":99},[97],"language-text","Browser page\n  -> fetch Meeting SDK signature from backend\n  -> ZoomMtgEmbedded.createClient()\n  -> client.init({ zoomAppRoot })\n  -> client.join({ signature, sdkKey, meetingNumber, userName, password })\n  -> apply layout\u002Fstyle\u002Fcustomize options around the embedded meeting container\n","",[101],{"type":36,"tag":102,"props":103,"children":104},"code",{"__ignoreMap":99},[105],{"type":41,"value":98},{"type":36,"tag":44,"props":107,"children":108},{},[109],{"type":41,"value":110},"Minimal implementation:",{"type":36,"tag":94,"props":112,"children":116},{"className":113,"code":114,"language":115,"meta":99,"style":99},"language-ts shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","import ZoomMtgEmbedded from '@zoom\u002Fmeetingsdk\u002Fembedded';\n\nconst client = ZoomMtgEmbedded.createClient();\n\nexport async function startEmbeddedMeeting(meetingNumber: string, userName: string, password: string) {\n  const sigRes = await fetch('\u002Fapi\u002Fsignature', {\n    method: 'POST',\n    headers: { 'Content-Type': 'application\u002Fjson' },\n    body: JSON.stringify({ meetingNumber, role: 0 }),\n  });\n\n  if (!sigRes.ok) throw new Error(`signature_fetch_failed:${sigRes.status}`);\n\n  const { signature, sdkKey } = await sigRes.json();\n\n  await client.init({\n    zoomAppRoot: document.getElementById('meetingSDKElement')!,\n    language: 'en-US',\n    patchJsMedia: true,\n    leaveOnPageUnload: true,\n    customize: {\n      video: { isResizable: true, popper: { disableDraggable: false } },\n    },\n  });\n\n  await client.join({\n    signature,\n    sdkKey,\n    meetingNumber,\n    userName,\n    password,\n  });\n}\n","ts",[117],{"type":36,"tag":102,"props":118,"children":119},{"__ignoreMap":99},[120,165,175,219,227,318,373,404,457,530,547,555,653,661,720,728,760,813,843,866,887,904,973,982,998,1006,1035,1048,1061,1074,1087,1100,1116],{"type":36,"tag":121,"props":122,"children":125},"span",{"class":123,"line":124},"line",1,[126,132,138,143,149,155,160],{"type":36,"tag":121,"props":127,"children":129},{"style":128},"--shiki-light:#39ADB5;--shiki-light-font-style:italic;--shiki-default:#89DDFF;--shiki-default-font-style:italic;--shiki-dark:#89DDFF;--shiki-dark-font-style:italic",[130],{"type":41,"value":131},"import",{"type":36,"tag":121,"props":133,"children":135},{"style":134},"--shiki-light:#90A4AE;--shiki-default:#EEFFFF;--shiki-dark:#BABED8",[136],{"type":41,"value":137}," ZoomMtgEmbedded ",{"type":36,"tag":121,"props":139,"children":140},{"style":128},[141],{"type":41,"value":142},"from",{"type":36,"tag":121,"props":144,"children":146},{"style":145},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[147],{"type":41,"value":148}," '",{"type":36,"tag":121,"props":150,"children":152},{"style":151},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[153],{"type":41,"value":154},"@zoom\u002Fmeetingsdk\u002Fembedded",{"type":36,"tag":121,"props":156,"children":157},{"style":145},[158],{"type":41,"value":159},"'",{"type":36,"tag":121,"props":161,"children":162},{"style":145},[163],{"type":41,"value":164},";\n",{"type":36,"tag":121,"props":166,"children":168},{"class":123,"line":167},2,[169],{"type":36,"tag":121,"props":170,"children":172},{"emptyLinePlaceholder":171},true,[173],{"type":41,"value":174},"\n",{"type":36,"tag":121,"props":176,"children":178},{"class":123,"line":177},3,[179,185,190,195,200,204,210,215],{"type":36,"tag":121,"props":180,"children":182},{"style":181},"--shiki-light:#9C3EDA;--shiki-default:#C792EA;--shiki-dark:#C792EA",[183],{"type":41,"value":184},"const",{"type":36,"tag":121,"props":186,"children":187},{"style":134},[188],{"type":41,"value":189}," client ",{"type":36,"tag":121,"props":191,"children":192},{"style":145},[193],{"type":41,"value":194},"=",{"type":36,"tag":121,"props":196,"children":197},{"style":134},[198],{"type":41,"value":199}," ZoomMtgEmbedded",{"type":36,"tag":121,"props":201,"children":202},{"style":145},[203],{"type":41,"value":82},{"type":36,"tag":121,"props":205,"children":207},{"style":206},"--shiki-light:#6182B8;--shiki-default:#82AAFF;--shiki-dark:#82AAFF",[208],{"type":41,"value":209},"createClient",{"type":36,"tag":121,"props":211,"children":212},{"style":134},[213],{"type":41,"value":214},"()",{"type":36,"tag":121,"props":216,"children":217},{"style":145},[218],{"type":41,"value":164},{"type":36,"tag":121,"props":220,"children":222},{"class":123,"line":221},4,[223],{"type":36,"tag":121,"props":224,"children":225},{"emptyLinePlaceholder":171},[226],{"type":41,"value":174},{"type":36,"tag":121,"props":228,"children":230},{"class":123,"line":229},5,[231,236,241,246,251,256,262,267,273,278,283,287,291,295,300,304,308,313],{"type":36,"tag":121,"props":232,"children":233},{"style":128},[234],{"type":41,"value":235},"export",{"type":36,"tag":121,"props":237,"children":238},{"style":181},[239],{"type":41,"value":240}," async",{"type":36,"tag":121,"props":242,"children":243},{"style":181},[244],{"type":41,"value":245}," function",{"type":36,"tag":121,"props":247,"children":248},{"style":206},[249],{"type":41,"value":250}," startEmbeddedMeeting",{"type":36,"tag":121,"props":252,"children":253},{"style":145},[254],{"type":41,"value":255},"(",{"type":36,"tag":121,"props":257,"children":259},{"style":258},"--shiki-light:#90A4AE;--shiki-light-font-style:italic;--shiki-default:#EEFFFF;--shiki-default-font-style:italic;--shiki-dark:#BABED8;--shiki-dark-font-style:italic",[260],{"type":41,"value":261},"meetingNumber",{"type":36,"tag":121,"props":263,"children":264},{"style":145},[265],{"type":41,"value":266},":",{"type":36,"tag":121,"props":268,"children":270},{"style":269},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[271],{"type":41,"value":272}," string",{"type":36,"tag":121,"props":274,"children":275},{"style":145},[276],{"type":41,"value":277},",",{"type":36,"tag":121,"props":279,"children":280},{"style":258},[281],{"type":41,"value":282}," userName",{"type":36,"tag":121,"props":284,"children":285},{"style":145},[286],{"type":41,"value":266},{"type":36,"tag":121,"props":288,"children":289},{"style":269},[290],{"type":41,"value":272},{"type":36,"tag":121,"props":292,"children":293},{"style":145},[294],{"type":41,"value":277},{"type":36,"tag":121,"props":296,"children":297},{"style":258},[298],{"type":41,"value":299}," password",{"type":36,"tag":121,"props":301,"children":302},{"style":145},[303],{"type":41,"value":266},{"type":36,"tag":121,"props":305,"children":306},{"style":269},[307],{"type":41,"value":272},{"type":36,"tag":121,"props":309,"children":310},{"style":145},[311],{"type":41,"value":312},")",{"type":36,"tag":121,"props":314,"children":315},{"style":145},[316],{"type":41,"value":317}," {\n",{"type":36,"tag":121,"props":319,"children":321},{"class":123,"line":320},6,[322,327,332,337,342,347,352,356,361,365,369],{"type":36,"tag":121,"props":323,"children":324},{"style":181},[325],{"type":41,"value":326},"  const",{"type":36,"tag":121,"props":328,"children":329},{"style":134},[330],{"type":41,"value":331}," sigRes",{"type":36,"tag":121,"props":333,"children":334},{"style":145},[335],{"type":41,"value":336}," =",{"type":36,"tag":121,"props":338,"children":339},{"style":128},[340],{"type":41,"value":341}," await",{"type":36,"tag":121,"props":343,"children":344},{"style":206},[345],{"type":41,"value":346}," fetch",{"type":36,"tag":121,"props":348,"children":350},{"style":349},"--shiki-light:#E53935;--shiki-default:#F07178;--shiki-dark:#F07178",[351],{"type":41,"value":255},{"type":36,"tag":121,"props":353,"children":354},{"style":145},[355],{"type":41,"value":159},{"type":36,"tag":121,"props":357,"children":358},{"style":151},[359],{"type":41,"value":360},"\u002Fapi\u002Fsignature",{"type":36,"tag":121,"props":362,"children":363},{"style":145},[364],{"type":41,"value":159},{"type":36,"tag":121,"props":366,"children":367},{"style":145},[368],{"type":41,"value":277},{"type":36,"tag":121,"props":370,"children":371},{"style":145},[372],{"type":41,"value":317},{"type":36,"tag":121,"props":374,"children":376},{"class":123,"line":375},7,[377,382,386,390,395,399],{"type":36,"tag":121,"props":378,"children":379},{"style":349},[380],{"type":41,"value":381},"    method",{"type":36,"tag":121,"props":383,"children":384},{"style":145},[385],{"type":41,"value":266},{"type":36,"tag":121,"props":387,"children":388},{"style":145},[389],{"type":41,"value":148},{"type":36,"tag":121,"props":391,"children":392},{"style":151},[393],{"type":41,"value":394},"POST",{"type":36,"tag":121,"props":396,"children":397},{"style":145},[398],{"type":41,"value":159},{"type":36,"tag":121,"props":400,"children":401},{"style":145},[402],{"type":41,"value":403},",\n",{"type":36,"tag":121,"props":405,"children":407},{"class":123,"line":406},8,[408,413,417,422,426,431,435,439,443,448,452],{"type":36,"tag":121,"props":409,"children":410},{"style":349},[411],{"type":41,"value":412},"    headers",{"type":36,"tag":121,"props":414,"children":415},{"style":145},[416],{"type":41,"value":266},{"type":36,"tag":121,"props":418,"children":419},{"style":145},[420],{"type":41,"value":421}," {",{"type":36,"tag":121,"props":423,"children":424},{"style":145},[425],{"type":41,"value":148},{"type":36,"tag":121,"props":427,"children":428},{"style":349},[429],{"type":41,"value":430},"Content-Type",{"type":36,"tag":121,"props":432,"children":433},{"style":145},[434],{"type":41,"value":159},{"type":36,"tag":121,"props":436,"children":437},{"style":145},[438],{"type":41,"value":266},{"type":36,"tag":121,"props":440,"children":441},{"style":145},[442],{"type":41,"value":148},{"type":36,"tag":121,"props":444,"children":445},{"style":151},[446],{"type":41,"value":447},"application\u002Fjson",{"type":36,"tag":121,"props":449,"children":450},{"style":145},[451],{"type":41,"value":159},{"type":36,"tag":121,"props":453,"children":454},{"style":145},[455],{"type":41,"value":456}," },\n",{"type":36,"tag":121,"props":458,"children":460},{"class":123,"line":459},9,[461,466,470,475,479,484,488,493,498,502,507,511,517,522,526],{"type":36,"tag":121,"props":462,"children":463},{"style":349},[464],{"type":41,"value":465},"    body",{"type":36,"tag":121,"props":467,"children":468},{"style":145},[469],{"type":41,"value":266},{"type":36,"tag":121,"props":471,"children":472},{"style":134},[473],{"type":41,"value":474}," JSON",{"type":36,"tag":121,"props":476,"children":477},{"style":145},[478],{"type":41,"value":82},{"type":36,"tag":121,"props":480,"children":481},{"style":206},[482],{"type":41,"value":483},"stringify",{"type":36,"tag":121,"props":485,"children":486},{"style":349},[487],{"type":41,"value":255},{"type":36,"tag":121,"props":489,"children":490},{"style":145},[491],{"type":41,"value":492},"{",{"type":36,"tag":121,"props":494,"children":495},{"style":134},[496],{"type":41,"value":497}," meetingNumber",{"type":36,"tag":121,"props":499,"children":500},{"style":145},[501],{"type":41,"value":277},{"type":36,"tag":121,"props":503,"children":504},{"style":349},[505],{"type":41,"value":506}," role",{"type":36,"tag":121,"props":508,"children":509},{"style":145},[510],{"type":41,"value":266},{"type":36,"tag":121,"props":512,"children":514},{"style":513},"--shiki-light:#F76D47;--shiki-default:#F78C6C;--shiki-dark:#F78C6C",[515],{"type":41,"value":516}," 0",{"type":36,"tag":121,"props":518,"children":519},{"style":145},[520],{"type":41,"value":521}," }",{"type":36,"tag":121,"props":523,"children":524},{"style":349},[525],{"type":41,"value":312},{"type":36,"tag":121,"props":527,"children":528},{"style":145},[529],{"type":41,"value":403},{"type":36,"tag":121,"props":531,"children":533},{"class":123,"line":532},10,[534,539,543],{"type":36,"tag":121,"props":535,"children":536},{"style":145},[537],{"type":41,"value":538},"  }",{"type":36,"tag":121,"props":540,"children":541},{"style":349},[542],{"type":41,"value":312},{"type":36,"tag":121,"props":544,"children":545},{"style":145},[546],{"type":41,"value":164},{"type":36,"tag":121,"props":548,"children":550},{"class":123,"line":549},11,[551],{"type":36,"tag":121,"props":552,"children":553},{"emptyLinePlaceholder":171},[554],{"type":41,"value":174},{"type":36,"tag":121,"props":556,"children":558},{"class":123,"line":557},12,[559,564,569,574,579,583,588,593,598,603,608,612,617,622,627,631,635,640,645,649],{"type":36,"tag":121,"props":560,"children":561},{"style":128},[562],{"type":41,"value":563},"  if",{"type":36,"tag":121,"props":565,"children":566},{"style":349},[567],{"type":41,"value":568}," (",{"type":36,"tag":121,"props":570,"children":571},{"style":145},[572],{"type":41,"value":573},"!",{"type":36,"tag":121,"props":575,"children":576},{"style":134},[577],{"type":41,"value":578},"sigRes",{"type":36,"tag":121,"props":580,"children":581},{"style":145},[582],{"type":41,"value":82},{"type":36,"tag":121,"props":584,"children":585},{"style":134},[586],{"type":41,"value":587},"ok",{"type":36,"tag":121,"props":589,"children":590},{"style":349},[591],{"type":41,"value":592},") ",{"type":36,"tag":121,"props":594,"children":595},{"style":128},[596],{"type":41,"value":597},"throw",{"type":36,"tag":121,"props":599,"children":600},{"style":145},[601],{"type":41,"value":602}," new",{"type":36,"tag":121,"props":604,"children":605},{"style":206},[606],{"type":41,"value":607}," Error",{"type":36,"tag":121,"props":609,"children":610},{"style":349},[611],{"type":41,"value":255},{"type":36,"tag":121,"props":613,"children":614},{"style":145},[615],{"type":41,"value":616},"`",{"type":36,"tag":121,"props":618,"children":619},{"style":151},[620],{"type":41,"value":621},"signature_fetch_failed:",{"type":36,"tag":121,"props":623,"children":624},{"style":145},[625],{"type":41,"value":626},"${",{"type":36,"tag":121,"props":628,"children":629},{"style":134},[630],{"type":41,"value":578},{"type":36,"tag":121,"props":632,"children":633},{"style":145},[634],{"type":41,"value":82},{"type":36,"tag":121,"props":636,"children":637},{"style":134},[638],{"type":41,"value":639},"status",{"type":36,"tag":121,"props":641,"children":642},{"style":145},[643],{"type":41,"value":644},"}`",{"type":36,"tag":121,"props":646,"children":647},{"style":349},[648],{"type":41,"value":312},{"type":36,"tag":121,"props":650,"children":651},{"style":145},[652],{"type":41,"value":164},{"type":36,"tag":121,"props":654,"children":656},{"class":123,"line":655},13,[657],{"type":36,"tag":121,"props":658,"children":659},{"emptyLinePlaceholder":171},[660],{"type":41,"value":174},{"type":36,"tag":121,"props":662,"children":664},{"class":123,"line":663},14,[665,669,673,678,682,687,691,695,699,703,707,712,716],{"type":36,"tag":121,"props":666,"children":667},{"style":181},[668],{"type":41,"value":326},{"type":36,"tag":121,"props":670,"children":671},{"style":145},[672],{"type":41,"value":421},{"type":36,"tag":121,"props":674,"children":675},{"style":134},[676],{"type":41,"value":677}," signature",{"type":36,"tag":121,"props":679,"children":680},{"style":145},[681],{"type":41,"value":277},{"type":36,"tag":121,"props":683,"children":684},{"style":134},[685],{"type":41,"value":686}," sdkKey",{"type":36,"tag":121,"props":688,"children":689},{"style":145},[690],{"type":41,"value":521},{"type":36,"tag":121,"props":692,"children":693},{"style":145},[694],{"type":41,"value":336},{"type":36,"tag":121,"props":696,"children":697},{"style":128},[698],{"type":41,"value":341},{"type":36,"tag":121,"props":700,"children":701},{"style":134},[702],{"type":41,"value":331},{"type":36,"tag":121,"props":704,"children":705},{"style":145},[706],{"type":41,"value":82},{"type":36,"tag":121,"props":708,"children":709},{"style":206},[710],{"type":41,"value":711},"json",{"type":36,"tag":121,"props":713,"children":714},{"style":349},[715],{"type":41,"value":214},{"type":36,"tag":121,"props":717,"children":718},{"style":145},[719],{"type":41,"value":164},{"type":36,"tag":121,"props":721,"children":723},{"class":123,"line":722},15,[724],{"type":36,"tag":121,"props":725,"children":726},{"emptyLinePlaceholder":171},[727],{"type":41,"value":174},{"type":36,"tag":121,"props":729,"children":731},{"class":123,"line":730},16,[732,737,742,746,751,755],{"type":36,"tag":121,"props":733,"children":734},{"style":128},[735],{"type":41,"value":736},"  await",{"type":36,"tag":121,"props":738,"children":739},{"style":134},[740],{"type":41,"value":741}," client",{"type":36,"tag":121,"props":743,"children":744},{"style":145},[745],{"type":41,"value":82},{"type":36,"tag":121,"props":747,"children":748},{"style":206},[749],{"type":41,"value":750},"init",{"type":36,"tag":121,"props":752,"children":753},{"style":349},[754],{"type":41,"value":255},{"type":36,"tag":121,"props":756,"children":757},{"style":145},[758],{"type":41,"value":759},"{\n",{"type":36,"tag":121,"props":761,"children":763},{"class":123,"line":762},17,[764,769,773,778,782,787,791,795,800,804,808],{"type":36,"tag":121,"props":765,"children":766},{"style":349},[767],{"type":41,"value":768},"    zoomAppRoot",{"type":36,"tag":121,"props":770,"children":771},{"style":145},[772],{"type":41,"value":266},{"type":36,"tag":121,"props":774,"children":775},{"style":134},[776],{"type":41,"value":777}," document",{"type":36,"tag":121,"props":779,"children":780},{"style":145},[781],{"type":41,"value":82},{"type":36,"tag":121,"props":783,"children":784},{"style":206},[785],{"type":41,"value":786},"getElementById",{"type":36,"tag":121,"props":788,"children":789},{"style":349},[790],{"type":41,"value":255},{"type":36,"tag":121,"props":792,"children":793},{"style":145},[794],{"type":41,"value":159},{"type":36,"tag":121,"props":796,"children":797},{"style":151},[798],{"type":41,"value":799},"meetingSDKElement",{"type":36,"tag":121,"props":801,"children":802},{"style":145},[803],{"type":41,"value":159},{"type":36,"tag":121,"props":805,"children":806},{"style":349},[807],{"type":41,"value":312},{"type":36,"tag":121,"props":809,"children":810},{"style":145},[811],{"type":41,"value":812},"!,\n",{"type":36,"tag":121,"props":814,"children":816},{"class":123,"line":815},18,[817,822,826,830,835,839],{"type":36,"tag":121,"props":818,"children":819},{"style":349},[820],{"type":41,"value":821},"    language",{"type":36,"tag":121,"props":823,"children":824},{"style":145},[825],{"type":41,"value":266},{"type":36,"tag":121,"props":827,"children":828},{"style":145},[829],{"type":41,"value":148},{"type":36,"tag":121,"props":831,"children":832},{"style":151},[833],{"type":41,"value":834},"en-US",{"type":36,"tag":121,"props":836,"children":837},{"style":145},[838],{"type":41,"value":159},{"type":36,"tag":121,"props":840,"children":841},{"style":145},[842],{"type":41,"value":403},{"type":36,"tag":121,"props":844,"children":846},{"class":123,"line":845},19,[847,852,856,862],{"type":36,"tag":121,"props":848,"children":849},{"style":349},[850],{"type":41,"value":851},"    patchJsMedia",{"type":36,"tag":121,"props":853,"children":854},{"style":145},[855],{"type":41,"value":266},{"type":36,"tag":121,"props":857,"children":859},{"style":858},"--shiki-light:#FF5370;--shiki-default:#FF9CAC;--shiki-dark:#FF9CAC",[860],{"type":41,"value":861}," true",{"type":36,"tag":121,"props":863,"children":864},{"style":145},[865],{"type":41,"value":403},{"type":36,"tag":121,"props":867,"children":869},{"class":123,"line":868},20,[870,875,879,883],{"type":36,"tag":121,"props":871,"children":872},{"style":349},[873],{"type":41,"value":874},"    leaveOnPageUnload",{"type":36,"tag":121,"props":876,"children":877},{"style":145},[878],{"type":41,"value":266},{"type":36,"tag":121,"props":880,"children":881},{"style":858},[882],{"type":41,"value":861},{"type":36,"tag":121,"props":884,"children":885},{"style":145},[886],{"type":41,"value":403},{"type":36,"tag":121,"props":888,"children":890},{"class":123,"line":889},21,[891,896,900],{"type":36,"tag":121,"props":892,"children":893},{"style":349},[894],{"type":41,"value":895},"    customize",{"type":36,"tag":121,"props":897,"children":898},{"style":145},[899],{"type":41,"value":266},{"type":36,"tag":121,"props":901,"children":902},{"style":145},[903],{"type":41,"value":317},{"type":36,"tag":121,"props":905,"children":907},{"class":123,"line":906},22,[908,913,917,921,926,930,934,938,943,947,951,956,960,965,969],{"type":36,"tag":121,"props":909,"children":910},{"style":349},[911],{"type":41,"value":912},"      video",{"type":36,"tag":121,"props":914,"children":915},{"style":145},[916],{"type":41,"value":266},{"type":36,"tag":121,"props":918,"children":919},{"style":145},[920],{"type":41,"value":421},{"type":36,"tag":121,"props":922,"children":923},{"style":349},[924],{"type":41,"value":925}," isResizable",{"type":36,"tag":121,"props":927,"children":928},{"style":145},[929],{"type":41,"value":266},{"type":36,"tag":121,"props":931,"children":932},{"style":858},[933],{"type":41,"value":861},{"type":36,"tag":121,"props":935,"children":936},{"style":145},[937],{"type":41,"value":277},{"type":36,"tag":121,"props":939,"children":940},{"style":349},[941],{"type":41,"value":942}," popper",{"type":36,"tag":121,"props":944,"children":945},{"style":145},[946],{"type":41,"value":266},{"type":36,"tag":121,"props":948,"children":949},{"style":145},[950],{"type":41,"value":421},{"type":36,"tag":121,"props":952,"children":953},{"style":349},[954],{"type":41,"value":955}," disableDraggable",{"type":36,"tag":121,"props":957,"children":958},{"style":145},[959],{"type":41,"value":266},{"type":36,"tag":121,"props":961,"children":962},{"style":858},[963],{"type":41,"value":964}," false",{"type":36,"tag":121,"props":966,"children":967},{"style":145},[968],{"type":41,"value":521},{"type":36,"tag":121,"props":970,"children":971},{"style":145},[972],{"type":41,"value":456},{"type":36,"tag":121,"props":974,"children":976},{"class":123,"line":975},23,[977],{"type":36,"tag":121,"props":978,"children":979},{"style":145},[980],{"type":41,"value":981},"    },\n",{"type":36,"tag":121,"props":983,"children":985},{"class":123,"line":984},24,[986,990,994],{"type":36,"tag":121,"props":987,"children":988},{"style":145},[989],{"type":41,"value":538},{"type":36,"tag":121,"props":991,"children":992},{"style":349},[993],{"type":41,"value":312},{"type":36,"tag":121,"props":995,"children":996},{"style":145},[997],{"type":41,"value":164},{"type":36,"tag":121,"props":999,"children":1001},{"class":123,"line":1000},25,[1002],{"type":36,"tag":121,"props":1003,"children":1004},{"emptyLinePlaceholder":171},[1005],{"type":41,"value":174},{"type":36,"tag":121,"props":1007,"children":1009},{"class":123,"line":1008},26,[1010,1014,1018,1022,1027,1031],{"type":36,"tag":121,"props":1011,"children":1012},{"style":128},[1013],{"type":41,"value":736},{"type":36,"tag":121,"props":1015,"children":1016},{"style":134},[1017],{"type":41,"value":741},{"type":36,"tag":121,"props":1019,"children":1020},{"style":145},[1021],{"type":41,"value":82},{"type":36,"tag":121,"props":1023,"children":1024},{"style":206},[1025],{"type":41,"value":1026},"join",{"type":36,"tag":121,"props":1028,"children":1029},{"style":349},[1030],{"type":41,"value":255},{"type":36,"tag":121,"props":1032,"children":1033},{"style":145},[1034],{"type":41,"value":759},{"type":36,"tag":121,"props":1036,"children":1038},{"class":123,"line":1037},27,[1039,1044],{"type":36,"tag":121,"props":1040,"children":1041},{"style":134},[1042],{"type":41,"value":1043},"    signature",{"type":36,"tag":121,"props":1045,"children":1046},{"style":145},[1047],{"type":41,"value":403},{"type":36,"tag":121,"props":1049,"children":1051},{"class":123,"line":1050},28,[1052,1057],{"type":36,"tag":121,"props":1053,"children":1054},{"style":134},[1055],{"type":41,"value":1056},"    sdkKey",{"type":36,"tag":121,"props":1058,"children":1059},{"style":145},[1060],{"type":41,"value":403},{"type":36,"tag":121,"props":1062,"children":1064},{"class":123,"line":1063},29,[1065,1070],{"type":36,"tag":121,"props":1066,"children":1067},{"style":134},[1068],{"type":41,"value":1069},"    meetingNumber",{"type":36,"tag":121,"props":1071,"children":1072},{"style":145},[1073],{"type":41,"value":403},{"type":36,"tag":121,"props":1075,"children":1077},{"class":123,"line":1076},30,[1078,1083],{"type":36,"tag":121,"props":1079,"children":1080},{"style":134},[1081],{"type":41,"value":1082},"    userName",{"type":36,"tag":121,"props":1084,"children":1085},{"style":145},[1086],{"type":41,"value":403},{"type":36,"tag":121,"props":1088,"children":1090},{"class":123,"line":1089},31,[1091,1096],{"type":36,"tag":121,"props":1092,"children":1093},{"style":134},[1094],{"type":41,"value":1095},"    password",{"type":36,"tag":121,"props":1097,"children":1098},{"style":145},[1099],{"type":41,"value":403},{"type":36,"tag":121,"props":1101,"children":1103},{"class":123,"line":1102},32,[1104,1108,1112],{"type":36,"tag":121,"props":1105,"children":1106},{"style":145},[1107],{"type":41,"value":538},{"type":36,"tag":121,"props":1109,"children":1110},{"style":349},[1111],{"type":41,"value":312},{"type":36,"tag":121,"props":1113,"children":1114},{"style":145},[1115],{"type":41,"value":164},{"type":36,"tag":121,"props":1117,"children":1119},{"class":123,"line":1118},33,[1120],{"type":36,"tag":121,"props":1121,"children":1122},{"style":145},[1123],{"type":41,"value":1124},"}\n",{"type":36,"tag":44,"props":1126,"children":1127},{},[1128],{"type":41,"value":1129},"Common failure points:",{"type":36,"tag":1131,"props":1132,"children":1133},"ul",{},[1134,1140,1145,1165,1170],{"type":36,"tag":1135,"props":1136,"children":1137},"li",{},[1138],{"type":41,"value":1139},"wrong route: Video SDK instead of Meeting SDK Component View",{"type":36,"tag":1135,"props":1141,"children":1142},{},[1143],{"type":41,"value":1144},"missing backend signature endpoint",{"type":36,"tag":1135,"props":1146,"children":1147},{},[1148,1150,1156,1158,1164],{"type":41,"value":1149},"wrong password field (",{"type":36,"tag":102,"props":1151,"children":1153},{"className":1152},[],[1154],{"type":41,"value":1155},"password",{"type":41,"value":1157}," here, not ",{"type":36,"tag":102,"props":1159,"children":1161},{"className":1160},[],[1162],{"type":41,"value":1163},"passWord",{"type":41,"value":312},{"type":36,"tag":1135,"props":1166,"children":1167},{},[1168],{"type":41,"value":1169},"missing OBF\u002FZAK requirements for meetings outside the app account",{"type":36,"tag":1135,"props":1171,"children":1172},{},[1173],{"type":41,"value":1174},"missing SharedArrayBuffer headers when higher-end meeting features are expected",{"type":36,"tag":65,"props":1176,"children":1178},{"id":1177},"hard-routing-rule",[1179],{"type":41,"value":1180},"Hard Routing Rule",{"type":36,"tag":44,"props":1182,"children":1183},{},[1184,1186,1191,1193,1197],{"type":41,"value":1185},"If the user wants a ",{"type":36,"tag":50,"props":1187,"children":1188},{},[1189],{"type":41,"value":1190},"custom video user interface for a Zoom meeting in a web app",{"type":41,"value":1192},", route to\n",{"type":36,"tag":50,"props":1194,"children":1195},{},[1196],{"type":41,"value":61},{"type":41,"value":1198},", not Video SDK.",{"type":36,"tag":1131,"props":1200,"children":1201},{},[1202,1212],{"type":36,"tag":1135,"props":1203,"children":1204},{},[1205,1210],{"type":36,"tag":50,"props":1206,"children":1207},{},[1208],{"type":41,"value":1209},"Meeting SDK Component View",{"type":41,"value":1211}," = custom UI for a real Zoom meeting",{"type":36,"tag":1135,"props":1213,"children":1214},{},[1215,1220],{"type":36,"tag":50,"props":1216,"children":1217},{},[1218],{"type":41,"value":1219},"Video SDK Web",{"type":41,"value":1221}," = custom UI for a non-meeting video session product",{"type":36,"tag":44,"props":1223,"children":1224},{},[1225,1227,1233],{"type":41,"value":1226},"For the direct custom-meeting-UI path, start with\n",{"type":36,"tag":1228,"props":1229,"children":1231},"a",{"href":1230},"component-view\u002FSKILL.md",[1232],{"type":41,"value":1230},{"type":41,"value":82},{"type":36,"tag":65,"props":1235,"children":1237},{"id":1236},"new-to-web-sdk-start-here",[1238],{"type":41,"value":1239},"New to Web SDK? Start Here!",{"type":36,"tag":44,"props":1241,"children":1242},{},[1243],{"type":36,"tag":50,"props":1244,"children":1245},{},[1246],{"type":41,"value":1247},"The fastest way to master the SDK:",{"type":36,"tag":1249,"props":1250,"children":1251},"ol",{},[1252,1270,1293,1309],{"type":36,"tag":1135,"props":1253,"children":1254},{},[1255,1260,1262,1268],{"type":36,"tag":50,"props":1256,"children":1257},{},[1258],{"type":41,"value":1259},"Choose Your View",{"type":41,"value":1261}," - ",{"type":36,"tag":1228,"props":1263,"children":1265},{"href":1264},"#client-view-vs-component-view",[1266],{"type":41,"value":1267},"Client View vs Component View",{"type":41,"value":1269}," - Understand the key architectural differences",{"type":36,"tag":1135,"props":1271,"children":1272},{},[1273,1278,1279,1284,1286,1291],{"type":36,"tag":50,"props":1274,"children":1275},{},[1276],{"type":41,"value":1277},"Quick Start",{"type":41,"value":1261},{"type":36,"tag":1228,"props":1280,"children":1282},{"href":1281},"#quick-start-client-view",[1283],{"type":41,"value":54},{"type":41,"value":1285}," or ",{"type":36,"tag":1228,"props":1287,"children":1289},{"href":1288},"#quick-start-component-view",[1290],{"type":41,"value":61},{"type":41,"value":1292}," - Get a working meeting in minutes",{"type":36,"tag":1135,"props":1294,"children":1295},{},[1296,1301,1302,1307],{"type":36,"tag":50,"props":1297,"children":1298},{},[1299],{"type":41,"value":1300},"SharedArrayBuffer",{"type":41,"value":1261},{"type":36,"tag":1228,"props":1303,"children":1305},{"href":1304},"concepts\u002Fsharedarraybuffer.md",[1306],{"type":41,"value":1304},{"type":41,"value":1308}," - Required for HD video, gallery view, virtual backgrounds",{"type":36,"tag":1135,"props":1310,"children":1311},{},[1312,1317,1318,1323],{"type":36,"tag":50,"props":1313,"children":1314},{},[1315],{"type":41,"value":1316},"Optional preflight diagnostics",{"type":41,"value":1261},{"type":36,"tag":1228,"props":1319,"children":1321},{"href":1320},"..\u002F..\u002Fprobe-sdk\u002FSKILL.md",[1322],{"type":41,"value":1320},{"type":41,"value":1324}," - Validate browser\u002Fdevice\u002Fnetwork before join",{"type":36,"tag":44,"props":1326,"children":1327},{},[1328],{"type":36,"tag":50,"props":1329,"children":1330},{},[1331],{"type":41,"value":1332},"Building a Custom Integration?",{"type":36,"tag":1131,"props":1334,"children":1335},{},[1336,1341,1346,1357,1367,1378],{"type":36,"tag":1135,"props":1337,"children":1338},{},[1339],{"type":41,"value":1340},"Component View gives you Promise-based API and embeddable UI",{"type":36,"tag":1135,"props":1342,"children":1343},{},[1344],{"type":41,"value":1345},"Client View gives you the familiar full-page Zoom experience",{"type":36,"tag":1135,"props":1347,"children":1348},{},[1349,1351,1355],{"type":41,"value":1350},"For a custom meeting UI, prefer ",{"type":36,"tag":50,"props":1352,"children":1353},{},[1354],{"type":41,"value":61},{"type":41,"value":1356}," first",{"type":36,"tag":1135,"props":1358,"children":1359},{},[1360,1362],{"type":41,"value":1361},"Cross-product routing example: ",{"type":36,"tag":1228,"props":1363,"children":1365},{"href":1364},"..\u002F..\u002Fgeneral\u002Fuse-cases\u002Fcustom-meeting-ui-web.md",[1366],{"type":41,"value":1364},{"type":36,"tag":1135,"props":1368,"children":1369},{},[1370,1376],{"type":36,"tag":1228,"props":1371,"children":1373},{"href":1372},"concepts\u002Fbrowser-support.md",[1374],{"type":41,"value":1375},"Browser Support",{"type":41,"value":1377}," - Feature matrix by browser",{"type":36,"tag":1135,"props":1379,"children":1380},{},[1381,1383],{"type":41,"value":1382},"Exact deep-dive path: ",{"type":36,"tag":1228,"props":1384,"children":1385},{"href":1230},[1386],{"type":41,"value":1230},{"type":36,"tag":44,"props":1388,"children":1389},{},[1390],{"type":36,"tag":50,"props":1391,"children":1392},{},[1393],{"type":41,"value":1394},"Having issues?",{"type":36,"tag":1131,"props":1396,"children":1397},{},[1398,1416,1421],{"type":36,"tag":1135,"props":1399,"children":1400},{},[1401,1403,1408,1410,1415],{"type":41,"value":1402},"Join errors → Check signature generation and password spelling (",{"type":36,"tag":102,"props":1404,"children":1406},{"className":1405},[],[1407],{"type":41,"value":1163},{"type":41,"value":1409}," vs ",{"type":36,"tag":102,"props":1411,"children":1413},{"className":1412},[],[1414],{"type":41,"value":1155},{"type":41,"value":312},{"type":36,"tag":1135,"props":1417,"children":1418},{},[1419],{"type":41,"value":1420},"HD video not working → Enable SharedArrayBuffer headers",{"type":36,"tag":1135,"props":1422,"children":1423},{},[1424,1426],{"type":41,"value":1425},"Complete navigation → ",{"type":36,"tag":1228,"props":1427,"children":1429},{"href":1428},"SKILL.md",[1430],{"type":41,"value":1428},{"type":36,"tag":65,"props":1432,"children":1434},{"id":1433},"prerequisites",[1435],{"type":41,"value":1436},"Prerequisites",{"type":36,"tag":1131,"props":1438,"children":1439},{},[1440,1453,1458,1463],{"type":36,"tag":1135,"props":1441,"children":1442},{},[1443,1445],{"type":41,"value":1444},"Zoom app with Meeting SDK credentials from ",{"type":36,"tag":1228,"props":1446,"children":1450},{"href":1447,"rel":1448},"https:\u002F\u002Fmarketplace.zoom.us\u002F",[1449],"nofollow",[1451],{"type":41,"value":1452},"Marketplace",{"type":36,"tag":1135,"props":1454,"children":1455},{},[1456],{"type":41,"value":1457},"SDK Key (Client ID) and Secret",{"type":36,"tag":1135,"props":1459,"children":1460},{},[1461],{"type":41,"value":1462},"Modern browser (Chrome, Firefox, Safari, Edge)",{"type":36,"tag":1135,"props":1464,"children":1465},{},[1466],{"type":41,"value":1467},"Backend auth endpoint for signature generation",{"type":36,"tag":1469,"props":1470,"children":1471},"blockquote",{},[1472,1493],{"type":36,"tag":44,"props":1473,"children":1474},{},[1475,1480,1482,1491],{"type":36,"tag":50,"props":1476,"children":1477},{},[1478],{"type":41,"value":1479},"Need help with authentication?",{"type":41,"value":1481}," See the ",{"type":36,"tag":50,"props":1483,"children":1484},{},[1485],{"type":36,"tag":1228,"props":1486,"children":1488},{"href":1487},"..\u002F..\u002Foauth\u002FSKILL.md",[1489],{"type":41,"value":1490},"zoom-oauth",{"type":41,"value":1492}," skill for JWT\u002Fsignature generation.",{"type":36,"tag":44,"props":1494,"children":1495},{},[1496,1501,1503,1511,1513,1519,1521,1527],{"type":36,"tag":50,"props":1497,"children":1498},{},[1499],{"type":41,"value":1500},"Want pre-join diagnostics?",{"type":41,"value":1502}," Chain ",{"type":36,"tag":50,"props":1504,"children":1505},{},[1506],{"type":36,"tag":1228,"props":1507,"children":1508},{"href":1320},[1509],{"type":41,"value":1510},"probe-sdk",{"type":41,"value":1512}," before ",{"type":36,"tag":102,"props":1514,"children":1516},{"className":1515},[],[1517],{"type":41,"value":1518},"init()",{"type":41,"value":1520},"\u002F",{"type":36,"tag":102,"props":1522,"children":1524},{"className":1523},[],[1525],{"type":41,"value":1526},"join()",{"type":41,"value":1528}," to gate low-readiness environments.",{"type":36,"tag":65,"props":1530,"children":1532},{"id":1531},"optional-preflight-gate-probe-sdk",[1533],{"type":41,"value":1534},"Optional Preflight Gate (Probe SDK)",{"type":36,"tag":44,"props":1536,"children":1537},{},[1538,1540,1546,1547,1553],{"type":41,"value":1539},"For unstable first-join environments, run Probe SDK checks before calling ",{"type":36,"tag":102,"props":1541,"children":1543},{"className":1542},[],[1544],{"type":41,"value":1545},"ZoomMtg.init()",{"type":41,"value":1285},{"type":36,"tag":102,"props":1548,"children":1550},{"className":1549},[],[1551],{"type":41,"value":1552},"client.join()",{"type":41,"value":266},{"type":36,"tag":1249,"props":1555,"children":1556},{},[1557,1562,1590],{"type":36,"tag":1135,"props":1558,"children":1559},{},[1560],{"type":41,"value":1561},"Run Probe permissions\u002Fdevice\u002Fnetwork diagnostics.",{"type":36,"tag":1135,"props":1563,"children":1564},{},[1565,1567,1573,1575,1581,1582,1588],{"type":41,"value":1566},"Apply readiness policy (",{"type":36,"tag":102,"props":1568,"children":1570},{"className":1569},[],[1571],{"type":41,"value":1572},"allow",{"type":41,"value":1574},", ",{"type":36,"tag":102,"props":1576,"children":1578},{"className":1577},[],[1579],{"type":41,"value":1580},"warn",{"type":41,"value":1574},{"type":36,"tag":102,"props":1583,"children":1585},{"className":1584},[],[1586],{"type":41,"value":1587},"block",{"type":41,"value":1589},").",{"type":36,"tag":1135,"props":1591,"children":1592},{},[1593,1595,1600,1602,1607],{"type":41,"value":1594},"Continue to Meeting SDK join only for ",{"type":36,"tag":102,"props":1596,"children":1598},{"className":1597},[],[1599],{"type":41,"value":1572},{"type":41,"value":1601},"\u002Fapproved ",{"type":36,"tag":102,"props":1603,"children":1605},{"className":1604},[],[1606],{"type":41,"value":1580},{"type":41,"value":82},{"type":36,"tag":44,"props":1609,"children":1610},{},[1611,1613,1617,1619,1624],{"type":41,"value":1612},"See ",{"type":36,"tag":1228,"props":1614,"children":1615},{"href":1320},[1616],{"type":41,"value":1320},{"type":41,"value":1618}," and ",{"type":36,"tag":1228,"props":1620,"children":1622},{"href":1621},"..\u002F..\u002Fgeneral\u002Fuse-cases\u002Fprobe-sdk-preflight-readiness-gate.md",[1623],{"type":41,"value":1621},{"type":41,"value":82},{"type":36,"tag":65,"props":1626,"children":1628},{"id":1627},"client-view-vs-component-view",[1629],{"type":41,"value":1267},{"type":36,"tag":44,"props":1631,"children":1632},{},[1633,1638],{"type":36,"tag":50,"props":1634,"children":1635},{},[1636],{"type":41,"value":1637},"CRITICAL DIFFERENCE",{"type":41,"value":1639},": These are two completely different APIs with different patterns!",{"type":36,"tag":1641,"props":1642,"children":1643},"table",{},[1644,1666],{"type":36,"tag":1645,"props":1646,"children":1647},"thead",{},[1648],{"type":36,"tag":1649,"props":1650,"children":1651},"tr",{},[1652,1658,1662],{"type":36,"tag":1653,"props":1654,"children":1655},"th",{},[1656],{"type":41,"value":1657},"Aspect",{"type":36,"tag":1653,"props":1659,"children":1660},{},[1661],{"type":41,"value":54},{"type":36,"tag":1653,"props":1663,"children":1664},{},[1665],{"type":41,"value":61},{"type":36,"tag":1667,"props":1668,"children":1669},"tbody",{},[1670,1704,1725,1746,1777,1813,1842,1871],{"type":36,"tag":1649,"props":1671,"children":1672},{},[1673,1682,1693],{"type":36,"tag":1674,"props":1675,"children":1676},"td",{},[1677],{"type":36,"tag":50,"props":1678,"children":1679},{},[1680],{"type":41,"value":1681},"Object",{"type":36,"tag":1674,"props":1683,"children":1684},{},[1685,1691],{"type":36,"tag":102,"props":1686,"children":1688},{"className":1687},[],[1689],{"type":41,"value":1690},"ZoomMtg",{"type":41,"value":1692}," (global singleton)",{"type":36,"tag":1674,"props":1694,"children":1695},{},[1696,1702],{"type":36,"tag":102,"props":1697,"children":1699},{"className":1698},[],[1700],{"type":41,"value":1701},"ZoomMtgEmbedded.createClient()",{"type":41,"value":1703}," (instance)",{"type":36,"tag":1649,"props":1705,"children":1706},{},[1707,1715,1720],{"type":36,"tag":1674,"props":1708,"children":1709},{},[1710],{"type":36,"tag":50,"props":1711,"children":1712},{},[1713],{"type":41,"value":1714},"API Style",{"type":36,"tag":1674,"props":1716,"children":1717},{},[1718],{"type":41,"value":1719},"Callbacks",{"type":36,"tag":1674,"props":1721,"children":1722},{},[1723],{"type":41,"value":1724},"Promises",{"type":36,"tag":1649,"props":1726,"children":1727},{},[1728,1736,1741],{"type":36,"tag":1674,"props":1729,"children":1730},{},[1731],{"type":36,"tag":50,"props":1732,"children":1733},{},[1734],{"type":41,"value":1735},"UI",{"type":36,"tag":1674,"props":1737,"children":1738},{},[1739],{"type":41,"value":1740},"Full-page takeover",{"type":36,"tag":1674,"props":1742,"children":1743},{},[1744],{"type":41,"value":1745},"Embeddable in any container",{"type":36,"tag":1649,"props":1747,"children":1748},{},[1749,1757,1767],{"type":36,"tag":1674,"props":1750,"children":1751},{},[1752],{"type":36,"tag":50,"props":1753,"children":1754},{},[1755],{"type":41,"value":1756},"Password param",{"type":36,"tag":1674,"props":1758,"children":1759},{},[1760,1765],{"type":36,"tag":102,"props":1761,"children":1763},{"className":1762},[],[1764],{"type":41,"value":1163},{"type":41,"value":1766}," (capital W)",{"type":36,"tag":1674,"props":1768,"children":1769},{},[1770,1775],{"type":36,"tag":102,"props":1771,"children":1773},{"className":1772},[],[1774],{"type":41,"value":1155},{"type":41,"value":1776}," (lowercase)",{"type":36,"tag":1649,"props":1778,"children":1779},{},[1780,1788,1797],{"type":36,"tag":1674,"props":1781,"children":1782},{},[1783],{"type":36,"tag":50,"props":1784,"children":1785},{},[1786],{"type":41,"value":1787},"Events",{"type":36,"tag":1674,"props":1789,"children":1790},{},[1791],{"type":36,"tag":102,"props":1792,"children":1794},{"className":1793},[],[1795],{"type":41,"value":1796},"inMeetingServiceListener()",{"type":36,"tag":1674,"props":1798,"children":1799},{},[1800,1806,1807],{"type":36,"tag":102,"props":1801,"children":1803},{"className":1802},[],[1804],{"type":41,"value":1805},"on()",{"type":41,"value":1520},{"type":36,"tag":102,"props":1808,"children":1810},{"className":1809},[],[1811],{"type":41,"value":1812},"off()",{"type":36,"tag":1649,"props":1814,"children":1815},{},[1816,1824,1833],{"type":36,"tag":1674,"props":1817,"children":1818},{},[1819],{"type":36,"tag":50,"props":1820,"children":1821},{},[1822],{"type":41,"value":1823},"Import (npm)",{"type":36,"tag":1674,"props":1825,"children":1826},{},[1827],{"type":36,"tag":102,"props":1828,"children":1830},{"className":1829},[],[1831],{"type":41,"value":1832},"import { ZoomMtg } from '@zoom\u002Fmeetingsdk'",{"type":36,"tag":1674,"props":1834,"children":1835},{},[1836],{"type":36,"tag":102,"props":1837,"children":1839},{"className":1838},[],[1840],{"type":41,"value":1841},"import ZoomMtgEmbedded from '@zoom\u002Fmeetingsdk\u002Fembedded'",{"type":36,"tag":1649,"props":1843,"children":1844},{},[1845,1853,1862],{"type":36,"tag":1674,"props":1846,"children":1847},{},[1848],{"type":36,"tag":50,"props":1849,"children":1850},{},[1851],{"type":41,"value":1852},"CDN",{"type":36,"tag":1674,"props":1854,"children":1855},{},[1856],{"type":36,"tag":102,"props":1857,"children":1859},{"className":1858},[],[1860],{"type":41,"value":1861},"zoom-meeting-{VERSION}.min.js",{"type":36,"tag":1674,"props":1863,"children":1864},{},[1865],{"type":36,"tag":102,"props":1866,"children":1868},{"className":1867},[],[1869],{"type":41,"value":1870},"zoom-meeting-embedded-{VERSION}.min.js",{"type":36,"tag":1649,"props":1872,"children":1873},{},[1874,1882,1887],{"type":36,"tag":1674,"props":1875,"children":1876},{},[1877],{"type":36,"tag":50,"props":1878,"children":1879},{},[1880],{"type":41,"value":1881},"Best For",{"type":36,"tag":1674,"props":1883,"children":1884},{},[1885],{"type":41,"value":1886},"Quick integration, standard Zoom UI",{"type":36,"tag":1674,"props":1888,"children":1889},{},[1890],{"type":41,"value":1891},"Custom layouts, React\u002FVue apps",{"type":36,"tag":1893,"props":1894,"children":1896},"h3",{"id":1895},"when-to-use-which",[1897],{"type":41,"value":1898},"When to Use Which",{"type":36,"tag":44,"props":1900,"children":1901},{},[1902],{"type":36,"tag":50,"props":1903,"children":1904},{},[1905],{"type":41,"value":1906},"Use Client View when:",{"type":36,"tag":1131,"props":1908,"children":1909},{},[1910,1915,1920],{"type":36,"tag":1135,"props":1911,"children":1912},{},[1913],{"type":41,"value":1914},"You want the familiar Zoom meeting interface",{"type":36,"tag":1135,"props":1916,"children":1917},{},[1918],{"type":41,"value":1919},"Quick integration is priority over customization",{"type":36,"tag":1135,"props":1921,"children":1922},{},[1923],{"type":41,"value":1924},"Full-page meeting experience is acceptable",{"type":36,"tag":44,"props":1926,"children":1927},{},[1928],{"type":36,"tag":50,"props":1929,"children":1930},{},[1931],{"type":41,"value":1932},"Use Component View when:",{"type":36,"tag":1131,"props":1934,"children":1935},{},[1936,1941,1946,1951],{"type":36,"tag":1135,"props":1937,"children":1938},{},[1939],{"type":41,"value":1940},"You need to embed meetings in a specific area of your page",{"type":36,"tag":1135,"props":1942,"children":1943},{},[1944],{"type":41,"value":1945},"Building React\u002FVue\u002FAngular applications",{"type":36,"tag":1135,"props":1947,"children":1948},{},[1949],{"type":41,"value":1950},"You want Promise-based async\u002Fawait syntax",{"type":36,"tag":1135,"props":1952,"children":1953},{},[1954],{"type":41,"value":1955},"Custom positioning and resizing is required",{"type":36,"tag":65,"props":1957,"children":1959},{"id":1958},"installation",[1960],{"type":41,"value":1961},"Installation",{"type":36,"tag":1893,"props":1963,"children":1965},{"id":1964},"npm-recommended",[1966],{"type":41,"value":1967},"NPM (Recommended)",{"type":36,"tag":94,"props":1969,"children":1973},{"className":1970,"code":1971,"language":1972,"meta":99,"style":99},"language-bash shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","npm install @zoom\u002Fmeetingsdk --save\n","bash",[1974],{"type":36,"tag":102,"props":1975,"children":1976},{"__ignoreMap":99},[1977],{"type":36,"tag":121,"props":1978,"children":1979},{"class":123,"line":124},[1980,1985,1990,1995],{"type":36,"tag":121,"props":1981,"children":1982},{"style":269},[1983],{"type":41,"value":1984},"npm",{"type":36,"tag":121,"props":1986,"children":1987},{"style":151},[1988],{"type":41,"value":1989}," install",{"type":36,"tag":121,"props":1991,"children":1992},{"style":151},[1993],{"type":41,"value":1994}," @zoom\u002Fmeetingsdk",{"type":36,"tag":121,"props":1996,"children":1997},{"style":151},[1998],{"type":41,"value":1999}," --save\n",{"type":36,"tag":1893,"props":2001,"children":2003},{"id":2002},"cdn",[2004],{"type":41,"value":1852},{"type":36,"tag":94,"props":2006,"children":2010},{"className":2007,"code":2008,"language":2009,"meta":99,"style":99},"language-html shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","\u003C!-- Dependencies (required for both views) -->\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\n\u003C!-- Client View -->\n\u003Cscript src=\"https:\u002F\u002Fsource.zoom.us\u002Fzoom-meeting-{VERSION}.min.js\">\u003C\u002Fscript>\n\n\u003C!-- OR Component View -->\n\u003Cscript src=\"https:\u002F\u002Fsource.zoom.us\u002Fzoom-meeting-embedded-{VERSION}.min.js\">\u003C\u002Fscript>\n","html",[2011],{"type":36,"tag":102,"props":2012,"children":2013},{"__ignoreMap":99},[2014,2023,2073,2117,2161,2205,2249,2256,2264,2308,2315,2323],{"type":36,"tag":121,"props":2015,"children":2016},{"class":123,"line":124},[2017],{"type":36,"tag":121,"props":2018,"children":2020},{"style":2019},"--shiki-light:#90A4AE;--shiki-light-font-style:italic;--shiki-default:#546E7A;--shiki-default-font-style:italic;--shiki-dark:#676E95;--shiki-dark-font-style:italic",[2021],{"type":41,"value":2022},"\u003C!-- Dependencies (required for both views) -->\n",{"type":36,"tag":121,"props":2024,"children":2025},{"class":123,"line":167},[2026,2031,2036,2041,2045,2050,2055,2059,2064,2068],{"type":36,"tag":121,"props":2027,"children":2028},{"style":145},[2029],{"type":41,"value":2030},"\u003C",{"type":36,"tag":121,"props":2032,"children":2033},{"style":349},[2034],{"type":41,"value":2035},"script",{"type":36,"tag":121,"props":2037,"children":2038},{"style":181},[2039],{"type":41,"value":2040}," src",{"type":36,"tag":121,"props":2042,"children":2043},{"style":145},[2044],{"type":41,"value":194},{"type":36,"tag":121,"props":2046,"children":2047},{"style":145},[2048],{"type":41,"value":2049},"\"",{"type":36,"tag":121,"props":2051,"children":2052},{"style":151},[2053],{"type":41,"value":2054},"https:\u002F\u002Fsource.zoom.us\u002F{VERSION}\u002Flib\u002Fvendor\u002Freact.min.js",{"type":36,"tag":121,"props":2056,"children":2057},{"style":145},[2058],{"type":41,"value":2049},{"type":36,"tag":121,"props":2060,"children":2061},{"style":145},[2062],{"type":41,"value":2063},">\u003C\u002F",{"type":36,"tag":121,"props":2065,"children":2066},{"style":349},[2067],{"type":41,"value":2035},{"type":36,"tag":121,"props":2069,"children":2070},{"style":145},[2071],{"type":41,"value":2072},">\n",{"type":36,"tag":121,"props":2074,"children":2075},{"class":123,"line":177},[2076,2080,2084,2088,2092,2096,2101,2105,2109,2113],{"type":36,"tag":121,"props":2077,"children":2078},{"style":145},[2079],{"type":41,"value":2030},{"type":36,"tag":121,"props":2081,"children":2082},{"style":349},[2083],{"type":41,"value":2035},{"type":36,"tag":121,"props":2085,"children":2086},{"style":181},[2087],{"type":41,"value":2040},{"type":36,"tag":121,"props":2089,"children":2090},{"style":145},[2091],{"type":41,"value":194},{"type":36,"tag":121,"props":2093,"children":2094},{"style":145},[2095],{"type":41,"value":2049},{"type":36,"tag":121,"props":2097,"children":2098},{"style":151},[2099],{"type":41,"value":2100},"https:\u002F\u002Fsource.zoom.us\u002F{VERSION}\u002Flib\u002Fvendor\u002Freact-dom.min.js",{"type":36,"tag":121,"props":2102,"children":2103},{"style":145},[2104],{"type":41,"value":2049},{"type":36,"tag":121,"props":2106,"children":2107},{"style":145},[2108],{"type":41,"value":2063},{"type":36,"tag":121,"props":2110,"children":2111},{"style":349},[2112],{"type":41,"value":2035},{"type":36,"tag":121,"props":2114,"children":2115},{"style":145},[2116],{"type":41,"value":2072},{"type":36,"tag":121,"props":2118,"children":2119},{"class":123,"line":221},[2120,2124,2128,2132,2136,2140,2145,2149,2153,2157],{"type":36,"tag":121,"props":2121,"children":2122},{"style":145},[2123],{"type":41,"value":2030},{"type":36,"tag":121,"props":2125,"children":2126},{"style":349},[2127],{"type":41,"value":2035},{"type":36,"tag":121,"props":2129,"children":2130},{"style":181},[2131],{"type":41,"value":2040},{"type":36,"tag":121,"props":2133,"children":2134},{"style":145},[2135],{"type":41,"value":194},{"type":36,"tag":121,"props":2137,"children":2138},{"style":145},[2139],{"type":41,"value":2049},{"type":36,"tag":121,"props":2141,"children":2142},{"style":151},[2143],{"type":41,"value":2144},"https:\u002F\u002Fsource.zoom.us\u002F{VERSION}\u002Flib\u002Fvendor\u002Fredux.min.js",{"type":36,"tag":121,"props":2146,"children":2147},{"style":145},[2148],{"type":41,"value":2049},{"type":36,"tag":121,"props":2150,"children":2151},{"style":145},[2152],{"type":41,"value":2063},{"type":36,"tag":121,"props":2154,"children":2155},{"style":349},[2156],{"type":41,"value":2035},{"type":36,"tag":121,"props":2158,"children":2159},{"style":145},[2160],{"type":41,"value":2072},{"type":36,"tag":121,"props":2162,"children":2163},{"class":123,"line":229},[2164,2168,2172,2176,2180,2184,2189,2193,2197,2201],{"type":36,"tag":121,"props":2165,"children":2166},{"style":145},[2167],{"type":41,"value":2030},{"type":36,"tag":121,"props":2169,"children":2170},{"style":349},[2171],{"type":41,"value":2035},{"type":36,"tag":121,"props":2173,"children":2174},{"style":181},[2175],{"type":41,"value":2040},{"type":36,"tag":121,"props":2177,"children":2178},{"style":145},[2179],{"type":41,"value":194},{"type":36,"tag":121,"props":2181,"children":2182},{"style":145},[2183],{"type":41,"value":2049},{"type":36,"tag":121,"props":2185,"children":2186},{"style":151},[2187],{"type":41,"value":2188},"https:\u002F\u002Fsource.zoom.us\u002F{VERSION}\u002Flib\u002Fvendor\u002Fredux-thunk.min.js",{"type":36,"tag":121,"props":2190,"children":2191},{"style":145},[2192],{"type":41,"value":2049},{"type":36,"tag":121,"props":2194,"children":2195},{"style":145},[2196],{"type":41,"value":2063},{"type":36,"tag":121,"props":2198,"children":2199},{"style":349},[2200],{"type":41,"value":2035},{"type":36,"tag":121,"props":2202,"children":2203},{"style":145},[2204],{"type":41,"value":2072},{"type":36,"tag":121,"props":2206,"children":2207},{"class":123,"line":320},[2208,2212,2216,2220,2224,2228,2233,2237,2241,2245],{"type":36,"tag":121,"props":2209,"children":2210},{"style":145},[2211],{"type":41,"value":2030},{"type":36,"tag":121,"props":2213,"children":2214},{"style":349},[2215],{"type":41,"value":2035},{"type":36,"tag":121,"props":2217,"children":2218},{"style":181},[2219],{"type":41,"value":2040},{"type":36,"tag":121,"props":2221,"children":2222},{"style":145},[2223],{"type":41,"value":194},{"type":36,"tag":121,"props":2225,"children":2226},{"style":145},[2227],{"type":41,"value":2049},{"type":36,"tag":121,"props":2229,"children":2230},{"style":151},[2231],{"type":41,"value":2232},"https:\u002F\u002Fsource.zoom.us\u002F{VERSION}\u002Flib\u002Fvendor\u002Flodash.min.js",{"type":36,"tag":121,"props":2234,"children":2235},{"style":145},[2236],{"type":41,"value":2049},{"type":36,"tag":121,"props":2238,"children":2239},{"style":145},[2240],{"type":41,"value":2063},{"type":36,"tag":121,"props":2242,"children":2243},{"style":349},[2244],{"type":41,"value":2035},{"type":36,"tag":121,"props":2246,"children":2247},{"style":145},[2248],{"type":41,"value":2072},{"type":36,"tag":121,"props":2250,"children":2251},{"class":123,"line":375},[2252],{"type":36,"tag":121,"props":2253,"children":2254},{"emptyLinePlaceholder":171},[2255],{"type":41,"value":174},{"type":36,"tag":121,"props":2257,"children":2258},{"class":123,"line":406},[2259],{"type":36,"tag":121,"props":2260,"children":2261},{"style":2019},[2262],{"type":41,"value":2263},"\u003C!-- Client View -->\n",{"type":36,"tag":121,"props":2265,"children":2266},{"class":123,"line":459},[2267,2271,2275,2279,2283,2287,2292,2296,2300,2304],{"type":36,"tag":121,"props":2268,"children":2269},{"style":145},[2270],{"type":41,"value":2030},{"type":36,"tag":121,"props":2272,"children":2273},{"style":349},[2274],{"type":41,"value":2035},{"type":36,"tag":121,"props":2276,"children":2277},{"style":181},[2278],{"type":41,"value":2040},{"type":36,"tag":121,"props":2280,"children":2281},{"style":145},[2282],{"type":41,"value":194},{"type":36,"tag":121,"props":2284,"children":2285},{"style":145},[2286],{"type":41,"value":2049},{"type":36,"tag":121,"props":2288,"children":2289},{"style":151},[2290],{"type":41,"value":2291},"https:\u002F\u002Fsource.zoom.us\u002Fzoom-meeting-{VERSION}.min.js",{"type":36,"tag":121,"props":2293,"children":2294},{"style":145},[2295],{"type":41,"value":2049},{"type":36,"tag":121,"props":2297,"children":2298},{"style":145},[2299],{"type":41,"value":2063},{"type":36,"tag":121,"props":2301,"children":2302},{"style":349},[2303],{"type":41,"value":2035},{"type":36,"tag":121,"props":2305,"children":2306},{"style":145},[2307],{"type":41,"value":2072},{"type":36,"tag":121,"props":2309,"children":2310},{"class":123,"line":532},[2311],{"type":36,"tag":121,"props":2312,"children":2313},{"emptyLinePlaceholder":171},[2314],{"type":41,"value":174},{"type":36,"tag":121,"props":2316,"children":2317},{"class":123,"line":549},[2318],{"type":36,"tag":121,"props":2319,"children":2320},{"style":2019},[2321],{"type":41,"value":2322},"\u003C!-- OR Component View -->\n",{"type":36,"tag":121,"props":2324,"children":2325},{"class":123,"line":557},[2326,2330,2334,2338,2342,2346,2351,2355,2359,2363],{"type":36,"tag":121,"props":2327,"children":2328},{"style":145},[2329],{"type":41,"value":2030},{"type":36,"tag":121,"props":2331,"children":2332},{"style":349},[2333],{"type":41,"value":2035},{"type":36,"tag":121,"props":2335,"children":2336},{"style":181},[2337],{"type":41,"value":2040},{"type":36,"tag":121,"props":2339,"children":2340},{"style":145},[2341],{"type":41,"value":194},{"type":36,"tag":121,"props":2343,"children":2344},{"style":145},[2345],{"type":41,"value":2049},{"type":36,"tag":121,"props":2347,"children":2348},{"style":151},[2349],{"type":41,"value":2350},"https:\u002F\u002Fsource.zoom.us\u002Fzoom-meeting-embedded-{VERSION}.min.js",{"type":36,"tag":121,"props":2352,"children":2353},{"style":145},[2354],{"type":41,"value":2049},{"type":36,"tag":121,"props":2356,"children":2357},{"style":145},[2358],{"type":41,"value":2063},{"type":36,"tag":121,"props":2360,"children":2361},{"style":349},[2362],{"type":41,"value":2035},{"type":36,"tag":121,"props":2364,"children":2365},{"style":145},[2366],{"type":41,"value":2072},{"type":36,"tag":44,"props":2368,"children":2369},{},[2370,2372,2378,2380,2387,2389,2395],{"type":41,"value":2371},"Replace ",{"type":36,"tag":102,"props":2373,"children":2375},{"className":2374},[],[2376],{"type":41,"value":2377},"{VERSION}",{"type":41,"value":2379}," with the ",{"type":36,"tag":1228,"props":2381,"children":2384},{"href":2382,"rel":2383},"https:\u002F\u002Fwww.npmjs.com\u002Fpackage\u002F@zoom\u002Fmeetingsdk",[1449],[2385],{"type":41,"value":2386},"latest version",{"type":41,"value":2388}," (e.g., ",{"type":36,"tag":102,"props":2390,"children":2392},{"className":2391},[],[2393],{"type":41,"value":2394},"3.11.0",{"type":41,"value":1589},{"type":36,"tag":65,"props":2397,"children":2399},{"id":2398},"quick-start-client-view",[2400],{"type":41,"value":2401},"Quick Start (Client View)",{"type":36,"tag":94,"props":2403,"children":2407},{"className":2404,"code":2405,"language":2406,"meta":99,"style":99},"language-javascript shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","import { ZoomMtg } from '@zoom\u002Fmeetingsdk';\n\n\u002F\u002F Step 1: Check browser compatibility\nconsole.log('System requirements:', ZoomMtg.checkSystemRequirements());\n\n\u002F\u002F Step 2: Preload WebAssembly for faster initialization\nZoomMtg.preLoadWasm();\nZoomMtg.prepareWebSDK();\n\n\u002F\u002F Step 3: Load language files (MUST complete before init)\nZoomMtg.i18n.load('en-US');\nZoomMtg.i18n.onLoad(() => {\n\n  \u002F\u002F Step 4: Initialize SDK\n  ZoomMtg.init({\n    leaveUrl: 'https:\u002F\u002Fyoursite.com\u002Fmeeting-ended',\n    disableCORP: !window.crossOriginIsolated, \u002F\u002F Auto-detect SharedArrayBuffer\n    patchJsMedia: true,           \u002F\u002F Auto-apply media dependency fixes\n    leaveOnPageUnload: true,      \u002F\u002F Clean up when page unloads\n    externalLinkPage: '.\u002Fexternal.html', \u002F\u002F Page for external links\n    success: () => {\n\n      \u002F\u002F Step 5: Join meeting (note: passWord with capital W!)\n      ZoomMtg.join({\n        signature: signature,       \u002F\u002F From your auth endpoint\n        meetingNumber: '1234567890',\n        userName: 'User Name',\n        passWord: 'meeting-password', \u002F\u002F Capital W!\n        success: (res) => {\n          console.log('Joined meeting:', res);\n\n          \u002F\u002F Post-join: Get meeting info\n          ZoomMtg.getAttendeeslist({});\n          ZoomMtg.getCurrentUser({\n            success: (res) => console.log('Current user:', res.result.currentUser)\n          });\n        },\n        error: (err) => {\n          console.error('Join error:', err);\n        }\n      });\n    },\n    error: (err) => {\n      console.error('Init error:', err);\n    }\n  });\n});\n","javascript",[2408],{"type":36,"tag":102,"props":2409,"children":2410},{"__ignoreMap":99},[2411,2453,2460,2468,2528,2535,2543,2567,2591,2598,2606,2655,2696,2703,2711,2735,2764,2804,2828,2852,2886,2911,2918,2926,2950,2975,3004,3033,3067,3100,3150,3157,3165,3199,3224,3314,3331,3340,3374,3425,3434,3451,3459,3492,3542,3551,3567],{"type":36,"tag":121,"props":2412,"children":2413},{"class":123,"line":124},[2414,2418,2422,2427,2431,2436,2440,2445,2449],{"type":36,"tag":121,"props":2415,"children":2416},{"style":128},[2417],{"type":41,"value":131},{"type":36,"tag":121,"props":2419,"children":2420},{"style":145},[2421],{"type":41,"value":421},{"type":36,"tag":121,"props":2423,"children":2424},{"style":134},[2425],{"type":41,"value":2426}," ZoomMtg",{"type":36,"tag":121,"props":2428,"children":2429},{"style":145},[2430],{"type":41,"value":521},{"type":36,"tag":121,"props":2432,"children":2433},{"style":128},[2434],{"type":41,"value":2435}," from",{"type":36,"tag":121,"props":2437,"children":2438},{"style":145},[2439],{"type":41,"value":148},{"type":36,"tag":121,"props":2441,"children":2442},{"style":151},[2443],{"type":41,"value":2444},"@zoom\u002Fmeetingsdk",{"type":36,"tag":121,"props":2446,"children":2447},{"style":145},[2448],{"type":41,"value":159},{"type":36,"tag":121,"props":2450,"children":2451},{"style":145},[2452],{"type":41,"value":164},{"type":36,"tag":121,"props":2454,"children":2455},{"class":123,"line":167},[2456],{"type":36,"tag":121,"props":2457,"children":2458},{"emptyLinePlaceholder":171},[2459],{"type":41,"value":174},{"type":36,"tag":121,"props":2461,"children":2462},{"class":123,"line":177},[2463],{"type":36,"tag":121,"props":2464,"children":2465},{"style":2019},[2466],{"type":41,"value":2467},"\u002F\u002F Step 1: Check browser compatibility\n",{"type":36,"tag":121,"props":2469,"children":2470},{"class":123,"line":221},[2471,2476,2480,2485,2489,2493,2498,2502,2506,2510,2514,2519,2524],{"type":36,"tag":121,"props":2472,"children":2473},{"style":134},[2474],{"type":41,"value":2475},"console",{"type":36,"tag":121,"props":2477,"children":2478},{"style":145},[2479],{"type":41,"value":82},{"type":36,"tag":121,"props":2481,"children":2482},{"style":206},[2483],{"type":41,"value":2484},"log",{"type":36,"tag":121,"props":2486,"children":2487},{"style":134},[2488],{"type":41,"value":255},{"type":36,"tag":121,"props":2490,"children":2491},{"style":145},[2492],{"type":41,"value":159},{"type":36,"tag":121,"props":2494,"children":2495},{"style":151},[2496],{"type":41,"value":2497},"System requirements:",{"type":36,"tag":121,"props":2499,"children":2500},{"style":145},[2501],{"type":41,"value":159},{"type":36,"tag":121,"props":2503,"children":2504},{"style":145},[2505],{"type":41,"value":277},{"type":36,"tag":121,"props":2507,"children":2508},{"style":134},[2509],{"type":41,"value":2426},{"type":36,"tag":121,"props":2511,"children":2512},{"style":145},[2513],{"type":41,"value":82},{"type":36,"tag":121,"props":2515,"children":2516},{"style":206},[2517],{"type":41,"value":2518},"checkSystemRequirements",{"type":36,"tag":121,"props":2520,"children":2521},{"style":134},[2522],{"type":41,"value":2523},"())",{"type":36,"tag":121,"props":2525,"children":2526},{"style":145},[2527],{"type":41,"value":164},{"type":36,"tag":121,"props":2529,"children":2530},{"class":123,"line":229},[2531],{"type":36,"tag":121,"props":2532,"children":2533},{"emptyLinePlaceholder":171},[2534],{"type":41,"value":174},{"type":36,"tag":121,"props":2536,"children":2537},{"class":123,"line":320},[2538],{"type":36,"tag":121,"props":2539,"children":2540},{"style":2019},[2541],{"type":41,"value":2542},"\u002F\u002F Step 2: Preload WebAssembly for faster initialization\n",{"type":36,"tag":121,"props":2544,"children":2545},{"class":123,"line":375},[2546,2550,2554,2559,2563],{"type":36,"tag":121,"props":2547,"children":2548},{"style":134},[2549],{"type":41,"value":1690},{"type":36,"tag":121,"props":2551,"children":2552},{"style":145},[2553],{"type":41,"value":82},{"type":36,"tag":121,"props":2555,"children":2556},{"style":206},[2557],{"type":41,"value":2558},"preLoadWasm",{"type":36,"tag":121,"props":2560,"children":2561},{"style":134},[2562],{"type":41,"value":214},{"type":36,"tag":121,"props":2564,"children":2565},{"style":145},[2566],{"type":41,"value":164},{"type":36,"tag":121,"props":2568,"children":2569},{"class":123,"line":406},[2570,2574,2578,2583,2587],{"type":36,"tag":121,"props":2571,"children":2572},{"style":134},[2573],{"type":41,"value":1690},{"type":36,"tag":121,"props":2575,"children":2576},{"style":145},[2577],{"type":41,"value":82},{"type":36,"tag":121,"props":2579,"children":2580},{"style":206},[2581],{"type":41,"value":2582},"prepareWebSDK",{"type":36,"tag":121,"props":2584,"children":2585},{"style":134},[2586],{"type":41,"value":214},{"type":36,"tag":121,"props":2588,"children":2589},{"style":145},[2590],{"type":41,"value":164},{"type":36,"tag":121,"props":2592,"children":2593},{"class":123,"line":459},[2594],{"type":36,"tag":121,"props":2595,"children":2596},{"emptyLinePlaceholder":171},[2597],{"type":41,"value":174},{"type":36,"tag":121,"props":2599,"children":2600},{"class":123,"line":532},[2601],{"type":36,"tag":121,"props":2602,"children":2603},{"style":2019},[2604],{"type":41,"value":2605},"\u002F\u002F Step 3: Load language files (MUST complete before init)\n",{"type":36,"tag":121,"props":2607,"children":2608},{"class":123,"line":549},[2609,2613,2617,2622,2626,2631,2635,2639,2643,2647,2651],{"type":36,"tag":121,"props":2610,"children":2611},{"style":134},[2612],{"type":41,"value":1690},{"type":36,"tag":121,"props":2614,"children":2615},{"style":145},[2616],{"type":41,"value":82},{"type":36,"tag":121,"props":2618,"children":2619},{"style":134},[2620],{"type":41,"value":2621},"i18n",{"type":36,"tag":121,"props":2623,"children":2624},{"style":145},[2625],{"type":41,"value":82},{"type":36,"tag":121,"props":2627,"children":2628},{"style":206},[2629],{"type":41,"value":2630},"load",{"type":36,"tag":121,"props":2632,"children":2633},{"style":134},[2634],{"type":41,"value":255},{"type":36,"tag":121,"props":2636,"children":2637},{"style":145},[2638],{"type":41,"value":159},{"type":36,"tag":121,"props":2640,"children":2641},{"style":151},[2642],{"type":41,"value":834},{"type":36,"tag":121,"props":2644,"children":2645},{"style":145},[2646],{"type":41,"value":159},{"type":36,"tag":121,"props":2648,"children":2649},{"style":134},[2650],{"type":41,"value":312},{"type":36,"tag":121,"props":2652,"children":2653},{"style":145},[2654],{"type":41,"value":164},{"type":36,"tag":121,"props":2656,"children":2657},{"class":123,"line":557},[2658,2662,2666,2670,2674,2679,2683,2687,2692],{"type":36,"tag":121,"props":2659,"children":2660},{"style":134},[2661],{"type":41,"value":1690},{"type":36,"tag":121,"props":2663,"children":2664},{"style":145},[2665],{"type":41,"value":82},{"type":36,"tag":121,"props":2667,"children":2668},{"style":134},[2669],{"type":41,"value":2621},{"type":36,"tag":121,"props":2671,"children":2672},{"style":145},[2673],{"type":41,"value":82},{"type":36,"tag":121,"props":2675,"children":2676},{"style":206},[2677],{"type":41,"value":2678},"onLoad",{"type":36,"tag":121,"props":2680,"children":2681},{"style":134},[2682],{"type":41,"value":255},{"type":36,"tag":121,"props":2684,"children":2685},{"style":145},[2686],{"type":41,"value":214},{"type":36,"tag":121,"props":2688,"children":2689},{"style":181},[2690],{"type":41,"value":2691}," =>",{"type":36,"tag":121,"props":2693,"children":2694},{"style":145},[2695],{"type":41,"value":317},{"type":36,"tag":121,"props":2697,"children":2698},{"class":123,"line":655},[2699],{"type":36,"tag":121,"props":2700,"children":2701},{"emptyLinePlaceholder":171},[2702],{"type":41,"value":174},{"type":36,"tag":121,"props":2704,"children":2705},{"class":123,"line":663},[2706],{"type":36,"tag":121,"props":2707,"children":2708},{"style":2019},[2709],{"type":41,"value":2710},"  \u002F\u002F Step 4: Initialize SDK\n",{"type":36,"tag":121,"props":2712,"children":2713},{"class":123,"line":722},[2714,2719,2723,2727,2731],{"type":36,"tag":121,"props":2715,"children":2716},{"style":134},[2717],{"type":41,"value":2718},"  ZoomMtg",{"type":36,"tag":121,"props":2720,"children":2721},{"style":145},[2722],{"type":41,"value":82},{"type":36,"tag":121,"props":2724,"children":2725},{"style":206},[2726],{"type":41,"value":750},{"type":36,"tag":121,"props":2728,"children":2729},{"style":349},[2730],{"type":41,"value":255},{"type":36,"tag":121,"props":2732,"children":2733},{"style":145},[2734],{"type":41,"value":759},{"type":36,"tag":121,"props":2736,"children":2737},{"class":123,"line":730},[2738,2743,2747,2751,2756,2760],{"type":36,"tag":121,"props":2739,"children":2740},{"style":349},[2741],{"type":41,"value":2742},"    leaveUrl",{"type":36,"tag":121,"props":2744,"children":2745},{"style":145},[2746],{"type":41,"value":266},{"type":36,"tag":121,"props":2748,"children":2749},{"style":145},[2750],{"type":41,"value":148},{"type":36,"tag":121,"props":2752,"children":2753},{"style":151},[2754],{"type":41,"value":2755},"https:\u002F\u002Fyoursite.com\u002Fmeeting-ended",{"type":36,"tag":121,"props":2757,"children":2758},{"style":145},[2759],{"type":41,"value":159},{"type":36,"tag":121,"props":2761,"children":2762},{"style":145},[2763],{"type":41,"value":403},{"type":36,"tag":121,"props":2765,"children":2766},{"class":123,"line":762},[2767,2772,2776,2781,2786,2790,2795,2799],{"type":36,"tag":121,"props":2768,"children":2769},{"style":349},[2770],{"type":41,"value":2771},"    disableCORP",{"type":36,"tag":121,"props":2773,"children":2774},{"style":145},[2775],{"type":41,"value":266},{"type":36,"tag":121,"props":2777,"children":2778},{"style":145},[2779],{"type":41,"value":2780}," !",{"type":36,"tag":121,"props":2782,"children":2783},{"style":134},[2784],{"type":41,"value":2785},"window",{"type":36,"tag":121,"props":2787,"children":2788},{"style":145},[2789],{"type":41,"value":82},{"type":36,"tag":121,"props":2791,"children":2792},{"style":134},[2793],{"type":41,"value":2794},"crossOriginIsolated",{"type":36,"tag":121,"props":2796,"children":2797},{"style":145},[2798],{"type":41,"value":277},{"type":36,"tag":121,"props":2800,"children":2801},{"style":2019},[2802],{"type":41,"value":2803}," \u002F\u002F Auto-detect SharedArrayBuffer\n",{"type":36,"tag":121,"props":2805,"children":2806},{"class":123,"line":815},[2807,2811,2815,2819,2823],{"type":36,"tag":121,"props":2808,"children":2809},{"style":349},[2810],{"type":41,"value":851},{"type":36,"tag":121,"props":2812,"children":2813},{"style":145},[2814],{"type":41,"value":266},{"type":36,"tag":121,"props":2816,"children":2817},{"style":858},[2818],{"type":41,"value":861},{"type":36,"tag":121,"props":2820,"children":2821},{"style":145},[2822],{"type":41,"value":277},{"type":36,"tag":121,"props":2824,"children":2825},{"style":2019},[2826],{"type":41,"value":2827},"           \u002F\u002F Auto-apply media dependency fixes\n",{"type":36,"tag":121,"props":2829,"children":2830},{"class":123,"line":845},[2831,2835,2839,2843,2847],{"type":36,"tag":121,"props":2832,"children":2833},{"style":349},[2834],{"type":41,"value":874},{"type":36,"tag":121,"props":2836,"children":2837},{"style":145},[2838],{"type":41,"value":266},{"type":36,"tag":121,"props":2840,"children":2841},{"style":858},[2842],{"type":41,"value":861},{"type":36,"tag":121,"props":2844,"children":2845},{"style":145},[2846],{"type":41,"value":277},{"type":36,"tag":121,"props":2848,"children":2849},{"style":2019},[2850],{"type":41,"value":2851},"      \u002F\u002F Clean up when page unloads\n",{"type":36,"tag":121,"props":2853,"children":2854},{"class":123,"line":868},[2855,2860,2864,2868,2873,2877,2881],{"type":36,"tag":121,"props":2856,"children":2857},{"style":349},[2858],{"type":41,"value":2859},"    externalLinkPage",{"type":36,"tag":121,"props":2861,"children":2862},{"style":145},[2863],{"type":41,"value":266},{"type":36,"tag":121,"props":2865,"children":2866},{"style":145},[2867],{"type":41,"value":148},{"type":36,"tag":121,"props":2869,"children":2870},{"style":151},[2871],{"type":41,"value":2872},".\u002Fexternal.html",{"type":36,"tag":121,"props":2874,"children":2875},{"style":145},[2876],{"type":41,"value":159},{"type":36,"tag":121,"props":2878,"children":2879},{"style":145},[2880],{"type":41,"value":277},{"type":36,"tag":121,"props":2882,"children":2883},{"style":2019},[2884],{"type":41,"value":2885}," \u002F\u002F Page for external links\n",{"type":36,"tag":121,"props":2887,"children":2888},{"class":123,"line":889},[2889,2894,2898,2903,2907],{"type":36,"tag":121,"props":2890,"children":2891},{"style":206},[2892],{"type":41,"value":2893},"    success",{"type":36,"tag":121,"props":2895,"children":2896},{"style":145},[2897],{"type":41,"value":266},{"type":36,"tag":121,"props":2899,"children":2900},{"style":145},[2901],{"type":41,"value":2902}," ()",{"type":36,"tag":121,"props":2904,"children":2905},{"style":181},[2906],{"type":41,"value":2691},{"type":36,"tag":121,"props":2908,"children":2909},{"style":145},[2910],{"type":41,"value":317},{"type":36,"tag":121,"props":2912,"children":2913},{"class":123,"line":906},[2914],{"type":36,"tag":121,"props":2915,"children":2916},{"emptyLinePlaceholder":171},[2917],{"type":41,"value":174},{"type":36,"tag":121,"props":2919,"children":2920},{"class":123,"line":975},[2921],{"type":36,"tag":121,"props":2922,"children":2923},{"style":2019},[2924],{"type":41,"value":2925},"      \u002F\u002F Step 5: Join meeting (note: passWord with capital W!)\n",{"type":36,"tag":121,"props":2927,"children":2928},{"class":123,"line":984},[2929,2934,2938,2942,2946],{"type":36,"tag":121,"props":2930,"children":2931},{"style":134},[2932],{"type":41,"value":2933},"      ZoomMtg",{"type":36,"tag":121,"props":2935,"children":2936},{"style":145},[2937],{"type":41,"value":82},{"type":36,"tag":121,"props":2939,"children":2940},{"style":206},[2941],{"type":41,"value":1026},{"type":36,"tag":121,"props":2943,"children":2944},{"style":349},[2945],{"type":41,"value":255},{"type":36,"tag":121,"props":2947,"children":2948},{"style":145},[2949],{"type":41,"value":759},{"type":36,"tag":121,"props":2951,"children":2952},{"class":123,"line":1000},[2953,2958,2962,2966,2970],{"type":36,"tag":121,"props":2954,"children":2955},{"style":349},[2956],{"type":41,"value":2957},"        signature",{"type":36,"tag":121,"props":2959,"children":2960},{"style":145},[2961],{"type":41,"value":266},{"type":36,"tag":121,"props":2963,"children":2964},{"style":134},[2965],{"type":41,"value":677},{"type":36,"tag":121,"props":2967,"children":2968},{"style":145},[2969],{"type":41,"value":277},{"type":36,"tag":121,"props":2971,"children":2972},{"style":2019},[2973],{"type":41,"value":2974},"       \u002F\u002F From your auth endpoint\n",{"type":36,"tag":121,"props":2976,"children":2977},{"class":123,"line":1008},[2978,2983,2987,2991,2996,3000],{"type":36,"tag":121,"props":2979,"children":2980},{"style":349},[2981],{"type":41,"value":2982},"        meetingNumber",{"type":36,"tag":121,"props":2984,"children":2985},{"style":145},[2986],{"type":41,"value":266},{"type":36,"tag":121,"props":2988,"children":2989},{"style":145},[2990],{"type":41,"value":148},{"type":36,"tag":121,"props":2992,"children":2993},{"style":151},[2994],{"type":41,"value":2995},"1234567890",{"type":36,"tag":121,"props":2997,"children":2998},{"style":145},[2999],{"type":41,"value":159},{"type":36,"tag":121,"props":3001,"children":3002},{"style":145},[3003],{"type":41,"value":403},{"type":36,"tag":121,"props":3005,"children":3006},{"class":123,"line":1037},[3007,3012,3016,3020,3025,3029],{"type":36,"tag":121,"props":3008,"children":3009},{"style":349},[3010],{"type":41,"value":3011},"        userName",{"type":36,"tag":121,"props":3013,"children":3014},{"style":145},[3015],{"type":41,"value":266},{"type":36,"tag":121,"props":3017,"children":3018},{"style":145},[3019],{"type":41,"value":148},{"type":36,"tag":121,"props":3021,"children":3022},{"style":151},[3023],{"type":41,"value":3024},"User Name",{"type":36,"tag":121,"props":3026,"children":3027},{"style":145},[3028],{"type":41,"value":159},{"type":36,"tag":121,"props":3030,"children":3031},{"style":145},[3032],{"type":41,"value":403},{"type":36,"tag":121,"props":3034,"children":3035},{"class":123,"line":1050},[3036,3041,3045,3049,3054,3058,3062],{"type":36,"tag":121,"props":3037,"children":3038},{"style":349},[3039],{"type":41,"value":3040},"        passWord",{"type":36,"tag":121,"props":3042,"children":3043},{"style":145},[3044],{"type":41,"value":266},{"type":36,"tag":121,"props":3046,"children":3047},{"style":145},[3048],{"type":41,"value":148},{"type":36,"tag":121,"props":3050,"children":3051},{"style":151},[3052],{"type":41,"value":3053},"meeting-password",{"type":36,"tag":121,"props":3055,"children":3056},{"style":145},[3057],{"type":41,"value":159},{"type":36,"tag":121,"props":3059,"children":3060},{"style":145},[3061],{"type":41,"value":277},{"type":36,"tag":121,"props":3063,"children":3064},{"style":2019},[3065],{"type":41,"value":3066}," \u002F\u002F Capital W!\n",{"type":36,"tag":121,"props":3068,"children":3069},{"class":123,"line":1063},[3070,3075,3079,3083,3088,3092,3096],{"type":36,"tag":121,"props":3071,"children":3072},{"style":206},[3073],{"type":41,"value":3074},"        success",{"type":36,"tag":121,"props":3076,"children":3077},{"style":145},[3078],{"type":41,"value":266},{"type":36,"tag":121,"props":3080,"children":3081},{"style":145},[3082],{"type":41,"value":568},{"type":36,"tag":121,"props":3084,"children":3085},{"style":258},[3086],{"type":41,"value":3087},"res",{"type":36,"tag":121,"props":3089,"children":3090},{"style":145},[3091],{"type":41,"value":312},{"type":36,"tag":121,"props":3093,"children":3094},{"style":181},[3095],{"type":41,"value":2691},{"type":36,"tag":121,"props":3097,"children":3098},{"style":145},[3099],{"type":41,"value":317},{"type":36,"tag":121,"props":3101,"children":3102},{"class":123,"line":1076},[3103,3108,3112,3116,3120,3124,3129,3133,3137,3142,3146],{"type":36,"tag":121,"props":3104,"children":3105},{"style":134},[3106],{"type":41,"value":3107},"          console",{"type":36,"tag":121,"props":3109,"children":3110},{"style":145},[3111],{"type":41,"value":82},{"type":36,"tag":121,"props":3113,"children":3114},{"style":206},[3115],{"type":41,"value":2484},{"type":36,"tag":121,"props":3117,"children":3118},{"style":349},[3119],{"type":41,"value":255},{"type":36,"tag":121,"props":3121,"children":3122},{"style":145},[3123],{"type":41,"value":159},{"type":36,"tag":121,"props":3125,"children":3126},{"style":151},[3127],{"type":41,"value":3128},"Joined meeting:",{"type":36,"tag":121,"props":3130,"children":3131},{"style":145},[3132],{"type":41,"value":159},{"type":36,"tag":121,"props":3134,"children":3135},{"style":145},[3136],{"type":41,"value":277},{"type":36,"tag":121,"props":3138,"children":3139},{"style":134},[3140],{"type":41,"value":3141}," res",{"type":36,"tag":121,"props":3143,"children":3144},{"style":349},[3145],{"type":41,"value":312},{"type":36,"tag":121,"props":3147,"children":3148},{"style":145},[3149],{"type":41,"value":164},{"type":36,"tag":121,"props":3151,"children":3152},{"class":123,"line":1089},[3153],{"type":36,"tag":121,"props":3154,"children":3155},{"emptyLinePlaceholder":171},[3156],{"type":41,"value":174},{"type":36,"tag":121,"props":3158,"children":3159},{"class":123,"line":1102},[3160],{"type":36,"tag":121,"props":3161,"children":3162},{"style":2019},[3163],{"type":41,"value":3164},"          \u002F\u002F Post-join: Get meeting info\n",{"type":36,"tag":121,"props":3166,"children":3167},{"class":123,"line":1118},[3168,3173,3177,3182,3186,3191,3195],{"type":36,"tag":121,"props":3169,"children":3170},{"style":134},[3171],{"type":41,"value":3172},"          ZoomMtg",{"type":36,"tag":121,"props":3174,"children":3175},{"style":145},[3176],{"type":41,"value":82},{"type":36,"tag":121,"props":3178,"children":3179},{"style":206},[3180],{"type":41,"value":3181},"getAttendeeslist",{"type":36,"tag":121,"props":3183,"children":3184},{"style":349},[3185],{"type":41,"value":255},{"type":36,"tag":121,"props":3187,"children":3188},{"style":145},[3189],{"type":41,"value":3190},"{}",{"type":36,"tag":121,"props":3192,"children":3193},{"style":349},[3194],{"type":41,"value":312},{"type":36,"tag":121,"props":3196,"children":3197},{"style":145},[3198],{"type":41,"value":164},{"type":36,"tag":121,"props":3200,"children":3202},{"class":123,"line":3201},34,[3203,3207,3211,3216,3220],{"type":36,"tag":121,"props":3204,"children":3205},{"style":134},[3206],{"type":41,"value":3172},{"type":36,"tag":121,"props":3208,"children":3209},{"style":145},[3210],{"type":41,"value":82},{"type":36,"tag":121,"props":3212,"children":3213},{"style":206},[3214],{"type":41,"value":3215},"getCurrentUser",{"type":36,"tag":121,"props":3217,"children":3218},{"style":349},[3219],{"type":41,"value":255},{"type":36,"tag":121,"props":3221,"children":3222},{"style":145},[3223],{"type":41,"value":759},{"type":36,"tag":121,"props":3225,"children":3227},{"class":123,"line":3226},35,[3228,3233,3237,3241,3245,3249,3253,3258,3262,3266,3270,3274,3279,3283,3287,3291,3295,3300,3304,3309],{"type":36,"tag":121,"props":3229,"children":3230},{"style":206},[3231],{"type":41,"value":3232},"            success",{"type":36,"tag":121,"props":3234,"children":3235},{"style":145},[3236],{"type":41,"value":266},{"type":36,"tag":121,"props":3238,"children":3239},{"style":145},[3240],{"type":41,"value":568},{"type":36,"tag":121,"props":3242,"children":3243},{"style":258},[3244],{"type":41,"value":3087},{"type":36,"tag":121,"props":3246,"children":3247},{"style":145},[3248],{"type":41,"value":312},{"type":36,"tag":121,"props":3250,"children":3251},{"style":181},[3252],{"type":41,"value":2691},{"type":36,"tag":121,"props":3254,"children":3255},{"style":134},[3256],{"type":41,"value":3257}," console",{"type":36,"tag":121,"props":3259,"children":3260},{"style":145},[3261],{"type":41,"value":82},{"type":36,"tag":121,"props":3263,"children":3264},{"style":206},[3265],{"type":41,"value":2484},{"type":36,"tag":121,"props":3267,"children":3268},{"style":349},[3269],{"type":41,"value":255},{"type":36,"tag":121,"props":3271,"children":3272},{"style":145},[3273],{"type":41,"value":159},{"type":36,"tag":121,"props":3275,"children":3276},{"style":151},[3277],{"type":41,"value":3278},"Current user:",{"type":36,"tag":121,"props":3280,"children":3281},{"style":145},[3282],{"type":41,"value":159},{"type":36,"tag":121,"props":3284,"children":3285},{"style":145},[3286],{"type":41,"value":277},{"type":36,"tag":121,"props":3288,"children":3289},{"style":134},[3290],{"type":41,"value":3141},{"type":36,"tag":121,"props":3292,"children":3293},{"style":145},[3294],{"type":41,"value":82},{"type":36,"tag":121,"props":3296,"children":3297},{"style":134},[3298],{"type":41,"value":3299},"result",{"type":36,"tag":121,"props":3301,"children":3302},{"style":145},[3303],{"type":41,"value":82},{"type":36,"tag":121,"props":3305,"children":3306},{"style":134},[3307],{"type":41,"value":3308},"currentUser",{"type":36,"tag":121,"props":3310,"children":3311},{"style":349},[3312],{"type":41,"value":3313},")\n",{"type":36,"tag":121,"props":3315,"children":3317},{"class":123,"line":3316},36,[3318,3323,3327],{"type":36,"tag":121,"props":3319,"children":3320},{"style":145},[3321],{"type":41,"value":3322},"          }",{"type":36,"tag":121,"props":3324,"children":3325},{"style":349},[3326],{"type":41,"value":312},{"type":36,"tag":121,"props":3328,"children":3329},{"style":145},[3330],{"type":41,"value":164},{"type":36,"tag":121,"props":3332,"children":3334},{"class":123,"line":3333},37,[3335],{"type":36,"tag":121,"props":3336,"children":3337},{"style":145},[3338],{"type":41,"value":3339},"        },\n",{"type":36,"tag":121,"props":3341,"children":3343},{"class":123,"line":3342},38,[3344,3349,3353,3357,3362,3366,3370],{"type":36,"tag":121,"props":3345,"children":3346},{"style":206},[3347],{"type":41,"value":3348},"        error",{"type":36,"tag":121,"props":3350,"children":3351},{"style":145},[3352],{"type":41,"value":266},{"type":36,"tag":121,"props":3354,"children":3355},{"style":145},[3356],{"type":41,"value":568},{"type":36,"tag":121,"props":3358,"children":3359},{"style":258},[3360],{"type":41,"value":3361},"err",{"type":36,"tag":121,"props":3363,"children":3364},{"style":145},[3365],{"type":41,"value":312},{"type":36,"tag":121,"props":3367,"children":3368},{"style":181},[3369],{"type":41,"value":2691},{"type":36,"tag":121,"props":3371,"children":3372},{"style":145},[3373],{"type":41,"value":317},{"type":36,"tag":121,"props":3375,"children":3377},{"class":123,"line":3376},39,[3378,3382,3386,3391,3395,3399,3404,3408,3412,3417,3421],{"type":36,"tag":121,"props":3379,"children":3380},{"style":134},[3381],{"type":41,"value":3107},{"type":36,"tag":121,"props":3383,"children":3384},{"style":145},[3385],{"type":41,"value":82},{"type":36,"tag":121,"props":3387,"children":3388},{"style":206},[3389],{"type":41,"value":3390},"error",{"type":36,"tag":121,"props":3392,"children":3393},{"style":349},[3394],{"type":41,"value":255},{"type":36,"tag":121,"props":3396,"children":3397},{"style":145},[3398],{"type":41,"value":159},{"type":36,"tag":121,"props":3400,"children":3401},{"style":151},[3402],{"type":41,"value":3403},"Join error:",{"type":36,"tag":121,"props":3405,"children":3406},{"style":145},[3407],{"type":41,"value":159},{"type":36,"tag":121,"props":3409,"children":3410},{"style":145},[3411],{"type":41,"value":277},{"type":36,"tag":121,"props":3413,"children":3414},{"style":134},[3415],{"type":41,"value":3416}," err",{"type":36,"tag":121,"props":3418,"children":3419},{"style":349},[3420],{"type":41,"value":312},{"type":36,"tag":121,"props":3422,"children":3423},{"style":145},[3424],{"type":41,"value":164},{"type":36,"tag":121,"props":3426,"children":3428},{"class":123,"line":3427},40,[3429],{"type":36,"tag":121,"props":3430,"children":3431},{"style":145},[3432],{"type":41,"value":3433},"        }\n",{"type":36,"tag":121,"props":3435,"children":3437},{"class":123,"line":3436},41,[3438,3443,3447],{"type":36,"tag":121,"props":3439,"children":3440},{"style":145},[3441],{"type":41,"value":3442},"      }",{"type":36,"tag":121,"props":3444,"children":3445},{"style":349},[3446],{"type":41,"value":312},{"type":36,"tag":121,"props":3448,"children":3449},{"style":145},[3450],{"type":41,"value":164},{"type":36,"tag":121,"props":3452,"children":3454},{"class":123,"line":3453},42,[3455],{"type":36,"tag":121,"props":3456,"children":3457},{"style":145},[3458],{"type":41,"value":981},{"type":36,"tag":121,"props":3460,"children":3462},{"class":123,"line":3461},43,[3463,3468,3472,3476,3480,3484,3488],{"type":36,"tag":121,"props":3464,"children":3465},{"style":206},[3466],{"type":41,"value":3467},"    error",{"type":36,"tag":121,"props":3469,"children":3470},{"style":145},[3471],{"type":41,"value":266},{"type":36,"tag":121,"props":3473,"children":3474},{"style":145},[3475],{"type":41,"value":568},{"type":36,"tag":121,"props":3477,"children":3478},{"style":258},[3479],{"type":41,"value":3361},{"type":36,"tag":121,"props":3481,"children":3482},{"style":145},[3483],{"type":41,"value":312},{"type":36,"tag":121,"props":3485,"children":3486},{"style":181},[3487],{"type":41,"value":2691},{"type":36,"tag":121,"props":3489,"children":3490},{"style":145},[3491],{"type":41,"value":317},{"type":36,"tag":121,"props":3493,"children":3495},{"class":123,"line":3494},44,[3496,3501,3505,3509,3513,3517,3522,3526,3530,3534,3538],{"type":36,"tag":121,"props":3497,"children":3498},{"style":134},[3499],{"type":41,"value":3500},"      console",{"type":36,"tag":121,"props":3502,"children":3503},{"style":145},[3504],{"type":41,"value":82},{"type":36,"tag":121,"props":3506,"children":3507},{"style":206},[3508],{"type":41,"value":3390},{"type":36,"tag":121,"props":3510,"children":3511},{"style":349},[3512],{"type":41,"value":255},{"type":36,"tag":121,"props":3514,"children":3515},{"style":145},[3516],{"type":41,"value":159},{"type":36,"tag":121,"props":3518,"children":3519},{"style":151},[3520],{"type":41,"value":3521},"Init error:",{"type":36,"tag":121,"props":3523,"children":3524},{"style":145},[3525],{"type":41,"value":159},{"type":36,"tag":121,"props":3527,"children":3528},{"style":145},[3529],{"type":41,"value":277},{"type":36,"tag":121,"props":3531,"children":3532},{"style":134},[3533],{"type":41,"value":3416},{"type":36,"tag":121,"props":3535,"children":3536},{"style":349},[3537],{"type":41,"value":312},{"type":36,"tag":121,"props":3539,"children":3540},{"style":145},[3541],{"type":41,"value":164},{"type":36,"tag":121,"props":3543,"children":3545},{"class":123,"line":3544},45,[3546],{"type":36,"tag":121,"props":3547,"children":3548},{"style":145},[3549],{"type":41,"value":3550},"    }\n",{"type":36,"tag":121,"props":3552,"children":3554},{"class":123,"line":3553},46,[3555,3559,3563],{"type":36,"tag":121,"props":3556,"children":3557},{"style":145},[3558],{"type":41,"value":538},{"type":36,"tag":121,"props":3560,"children":3561},{"style":349},[3562],{"type":41,"value":312},{"type":36,"tag":121,"props":3564,"children":3565},{"style":145},[3566],{"type":41,"value":164},{"type":36,"tag":121,"props":3568,"children":3570},{"class":123,"line":3569},47,[3571,3576,3580],{"type":36,"tag":121,"props":3572,"children":3573},{"style":145},[3574],{"type":41,"value":3575},"}",{"type":36,"tag":121,"props":3577,"children":3578},{"style":134},[3579],{"type":41,"value":312},{"type":36,"tag":121,"props":3581,"children":3582},{"style":145},[3583],{"type":41,"value":164},{"type":36,"tag":65,"props":3585,"children":3587},{"id":3586},"quick-start-component-view",[3588],{"type":41,"value":3589},"Quick Start (Component View)",{"type":36,"tag":94,"props":3591,"children":3593},{"className":2404,"code":3592,"language":2406,"meta":99,"style":99},"import ZoomMtgEmbedded from '@zoom\u002Fmeetingsdk\u002Fembedded';\n\n\u002F\u002F Create client instance (do this ONCE, not on every render!)\nconst client = ZoomMtgEmbedded.createClient();\n\nasync function startMeeting() {\n  try {\n    \u002F\u002F Initialize with container element\n    await client.init({\n      zoomAppRoot: document.getElementById('meetingSDKElement'),\n      language: 'en-US',\n      debug: true,                  \u002F\u002F Enable debug logging\n      patchJsMedia: true,           \u002F\u002F Auto-apply media fixes\n      leaveOnPageUnload: true,      \u002F\u002F Clean up on page unload\n    });\n\n    \u002F\u002F Join meeting (note: password lowercase!)\n    await client.join({\n      signature: signature,          \u002F\u002F From your auth endpoint\n      sdkKey: SDK_KEY,\n      meetingNumber: '1234567890',\n      userName: 'User Name',\n      password: 'meeting-password',  \u002F\u002F Lowercase!\n    });\n\n    console.log('Joined successfully!');\n  } catch (error) {\n    console.error('Failed to join:', error);\n  }\n}\n",[3594],{"type":36,"tag":102,"props":3595,"children":3596},{"__ignoreMap":99},[3597,3628,3635,3643,3678,3685,3710,3722,3730,3758,3806,3834,3859,3884,3909,3925,3932,3940,3967,3992,4013,4041,4069,4102,4117,4124,4165,4193,4242,4250],{"type":36,"tag":121,"props":3598,"children":3599},{"class":123,"line":124},[3600,3604,3608,3612,3616,3620,3624],{"type":36,"tag":121,"props":3601,"children":3602},{"style":128},[3603],{"type":41,"value":131},{"type":36,"tag":121,"props":3605,"children":3606},{"style":134},[3607],{"type":41,"value":137},{"type":36,"tag":121,"props":3609,"children":3610},{"style":128},[3611],{"type":41,"value":142},{"type":36,"tag":121,"props":3613,"children":3614},{"style":145},[3615],{"type":41,"value":148},{"type":36,"tag":121,"props":3617,"children":3618},{"style":151},[3619],{"type":41,"value":154},{"type":36,"tag":121,"props":3621,"children":3622},{"style":145},[3623],{"type":41,"value":159},{"type":36,"tag":121,"props":3625,"children":3626},{"style":145},[3627],{"type":41,"value":164},{"type":36,"tag":121,"props":3629,"children":3630},{"class":123,"line":167},[3631],{"type":36,"tag":121,"props":3632,"children":3633},{"emptyLinePlaceholder":171},[3634],{"type":41,"value":174},{"type":36,"tag":121,"props":3636,"children":3637},{"class":123,"line":177},[3638],{"type":36,"tag":121,"props":3639,"children":3640},{"style":2019},[3641],{"type":41,"value":3642},"\u002F\u002F Create client instance (do this ONCE, not on every render!)\n",{"type":36,"tag":121,"props":3644,"children":3645},{"class":123,"line":221},[3646,3650,3654,3658,3662,3666,3670,3674],{"type":36,"tag":121,"props":3647,"children":3648},{"style":181},[3649],{"type":41,"value":184},{"type":36,"tag":121,"props":3651,"children":3652},{"style":134},[3653],{"type":41,"value":189},{"type":36,"tag":121,"props":3655,"children":3656},{"style":145},[3657],{"type":41,"value":194},{"type":36,"tag":121,"props":3659,"children":3660},{"style":134},[3661],{"type":41,"value":199},{"type":36,"tag":121,"props":3663,"children":3664},{"style":145},[3665],{"type":41,"value":82},{"type":36,"tag":121,"props":3667,"children":3668},{"style":206},[3669],{"type":41,"value":209},{"type":36,"tag":121,"props":3671,"children":3672},{"style":134},[3673],{"type":41,"value":214},{"type":36,"tag":121,"props":3675,"children":3676},{"style":145},[3677],{"type":41,"value":164},{"type":36,"tag":121,"props":3679,"children":3680},{"class":123,"line":229},[3681],{"type":36,"tag":121,"props":3682,"children":3683},{"emptyLinePlaceholder":171},[3684],{"type":41,"value":174},{"type":36,"tag":121,"props":3686,"children":3687},{"class":123,"line":320},[3688,3693,3697,3702,3706],{"type":36,"tag":121,"props":3689,"children":3690},{"style":181},[3691],{"type":41,"value":3692},"async",{"type":36,"tag":121,"props":3694,"children":3695},{"style":181},[3696],{"type":41,"value":245},{"type":36,"tag":121,"props":3698,"children":3699},{"style":206},[3700],{"type":41,"value":3701}," startMeeting",{"type":36,"tag":121,"props":3703,"children":3704},{"style":145},[3705],{"type":41,"value":214},{"type":36,"tag":121,"props":3707,"children":3708},{"style":145},[3709],{"type":41,"value":317},{"type":36,"tag":121,"props":3711,"children":3712},{"class":123,"line":375},[3713,3718],{"type":36,"tag":121,"props":3714,"children":3715},{"style":128},[3716],{"type":41,"value":3717},"  try",{"type":36,"tag":121,"props":3719,"children":3720},{"style":145},[3721],{"type":41,"value":317},{"type":36,"tag":121,"props":3723,"children":3724},{"class":123,"line":406},[3725],{"type":36,"tag":121,"props":3726,"children":3727},{"style":2019},[3728],{"type":41,"value":3729},"    \u002F\u002F Initialize with container element\n",{"type":36,"tag":121,"props":3731,"children":3732},{"class":123,"line":459},[3733,3738,3742,3746,3750,3754],{"type":36,"tag":121,"props":3734,"children":3735},{"style":128},[3736],{"type":41,"value":3737},"    await",{"type":36,"tag":121,"props":3739,"children":3740},{"style":134},[3741],{"type":41,"value":741},{"type":36,"tag":121,"props":3743,"children":3744},{"style":145},[3745],{"type":41,"value":82},{"type":36,"tag":121,"props":3747,"children":3748},{"style":206},[3749],{"type":41,"value":750},{"type":36,"tag":121,"props":3751,"children":3752},{"style":349},[3753],{"type":41,"value":255},{"type":36,"tag":121,"props":3755,"children":3756},{"style":145},[3757],{"type":41,"value":759},{"type":36,"tag":121,"props":3759,"children":3760},{"class":123,"line":532},[3761,3766,3770,3774,3778,3782,3786,3790,3794,3798,3802],{"type":36,"tag":121,"props":3762,"children":3763},{"style":349},[3764],{"type":41,"value":3765},"      zoomAppRoot",{"type":36,"tag":121,"props":3767,"children":3768},{"style":145},[3769],{"type":41,"value":266},{"type":36,"tag":121,"props":3771,"children":3772},{"style":134},[3773],{"type":41,"value":777},{"type":36,"tag":121,"props":3775,"children":3776},{"style":145},[3777],{"type":41,"value":82},{"type":36,"tag":121,"props":3779,"children":3780},{"style":206},[3781],{"type":41,"value":786},{"type":36,"tag":121,"props":3783,"children":3784},{"style":349},[3785],{"type":41,"value":255},{"type":36,"tag":121,"props":3787,"children":3788},{"style":145},[3789],{"type":41,"value":159},{"type":36,"tag":121,"props":3791,"children":3792},{"style":151},[3793],{"type":41,"value":799},{"type":36,"tag":121,"props":3795,"children":3796},{"style":145},[3797],{"type":41,"value":159},{"type":36,"tag":121,"props":3799,"children":3800},{"style":349},[3801],{"type":41,"value":312},{"type":36,"tag":121,"props":3803,"children":3804},{"style":145},[3805],{"type":41,"value":403},{"type":36,"tag":121,"props":3807,"children":3808},{"class":123,"line":549},[3809,3814,3818,3822,3826,3830],{"type":36,"tag":121,"props":3810,"children":3811},{"style":349},[3812],{"type":41,"value":3813},"      language",{"type":36,"tag":121,"props":3815,"children":3816},{"style":145},[3817],{"type":41,"value":266},{"type":36,"tag":121,"props":3819,"children":3820},{"style":145},[3821],{"type":41,"value":148},{"type":36,"tag":121,"props":3823,"children":3824},{"style":151},[3825],{"type":41,"value":834},{"type":36,"tag":121,"props":3827,"children":3828},{"style":145},[3829],{"type":41,"value":159},{"type":36,"tag":121,"props":3831,"children":3832},{"style":145},[3833],{"type":41,"value":403},{"type":36,"tag":121,"props":3835,"children":3836},{"class":123,"line":557},[3837,3842,3846,3850,3854],{"type":36,"tag":121,"props":3838,"children":3839},{"style":349},[3840],{"type":41,"value":3841},"      debug",{"type":36,"tag":121,"props":3843,"children":3844},{"style":145},[3845],{"type":41,"value":266},{"type":36,"tag":121,"props":3847,"children":3848},{"style":858},[3849],{"type":41,"value":861},{"type":36,"tag":121,"props":3851,"children":3852},{"style":145},[3853],{"type":41,"value":277},{"type":36,"tag":121,"props":3855,"children":3856},{"style":2019},[3857],{"type":41,"value":3858},"                  \u002F\u002F Enable debug logging\n",{"type":36,"tag":121,"props":3860,"children":3861},{"class":123,"line":655},[3862,3867,3871,3875,3879],{"type":36,"tag":121,"props":3863,"children":3864},{"style":349},[3865],{"type":41,"value":3866},"      patchJsMedia",{"type":36,"tag":121,"props":3868,"children":3869},{"style":145},[3870],{"type":41,"value":266},{"type":36,"tag":121,"props":3872,"children":3873},{"style":858},[3874],{"type":41,"value":861},{"type":36,"tag":121,"props":3876,"children":3877},{"style":145},[3878],{"type":41,"value":277},{"type":36,"tag":121,"props":3880,"children":3881},{"style":2019},[3882],{"type":41,"value":3883},"           \u002F\u002F Auto-apply media fixes\n",{"type":36,"tag":121,"props":3885,"children":3886},{"class":123,"line":663},[3887,3892,3896,3900,3904],{"type":36,"tag":121,"props":3888,"children":3889},{"style":349},[3890],{"type":41,"value":3891},"      leaveOnPageUnload",{"type":36,"tag":121,"props":3893,"children":3894},{"style":145},[3895],{"type":41,"value":266},{"type":36,"tag":121,"props":3897,"children":3898},{"style":858},[3899],{"type":41,"value":861},{"type":36,"tag":121,"props":3901,"children":3902},{"style":145},[3903],{"type":41,"value":277},{"type":36,"tag":121,"props":3905,"children":3906},{"style":2019},[3907],{"type":41,"value":3908},"      \u002F\u002F Clean up on page unload\n",{"type":36,"tag":121,"props":3910,"children":3911},{"class":123,"line":722},[3912,3917,3921],{"type":36,"tag":121,"props":3913,"children":3914},{"style":145},[3915],{"type":41,"value":3916},"    }",{"type":36,"tag":121,"props":3918,"children":3919},{"style":349},[3920],{"type":41,"value":312},{"type":36,"tag":121,"props":3922,"children":3923},{"style":145},[3924],{"type":41,"value":164},{"type":36,"tag":121,"props":3926,"children":3927},{"class":123,"line":730},[3928],{"type":36,"tag":121,"props":3929,"children":3930},{"emptyLinePlaceholder":171},[3931],{"type":41,"value":174},{"type":36,"tag":121,"props":3933,"children":3934},{"class":123,"line":762},[3935],{"type":36,"tag":121,"props":3936,"children":3937},{"style":2019},[3938],{"type":41,"value":3939},"    \u002F\u002F Join meeting (note: password lowercase!)\n",{"type":36,"tag":121,"props":3941,"children":3942},{"class":123,"line":815},[3943,3947,3951,3955,3959,3963],{"type":36,"tag":121,"props":3944,"children":3945},{"style":128},[3946],{"type":41,"value":3737},{"type":36,"tag":121,"props":3948,"children":3949},{"style":134},[3950],{"type":41,"value":741},{"type":36,"tag":121,"props":3952,"children":3953},{"style":145},[3954],{"type":41,"value":82},{"type":36,"tag":121,"props":3956,"children":3957},{"style":206},[3958],{"type":41,"value":1026},{"type":36,"tag":121,"props":3960,"children":3961},{"style":349},[3962],{"type":41,"value":255},{"type":36,"tag":121,"props":3964,"children":3965},{"style":145},[3966],{"type":41,"value":759},{"type":36,"tag":121,"props":3968,"children":3969},{"class":123,"line":845},[3970,3975,3979,3983,3987],{"type":36,"tag":121,"props":3971,"children":3972},{"style":349},[3973],{"type":41,"value":3974},"      signature",{"type":36,"tag":121,"props":3976,"children":3977},{"style":145},[3978],{"type":41,"value":266},{"type":36,"tag":121,"props":3980,"children":3981},{"style":134},[3982],{"type":41,"value":677},{"type":36,"tag":121,"props":3984,"children":3985},{"style":145},[3986],{"type":41,"value":277},{"type":36,"tag":121,"props":3988,"children":3989},{"style":2019},[3990],{"type":41,"value":3991},"          \u002F\u002F From your auth endpoint\n",{"type":36,"tag":121,"props":3993,"children":3994},{"class":123,"line":868},[3995,4000,4004,4009],{"type":36,"tag":121,"props":3996,"children":3997},{"style":349},[3998],{"type":41,"value":3999},"      sdkKey",{"type":36,"tag":121,"props":4001,"children":4002},{"style":145},[4003],{"type":41,"value":266},{"type":36,"tag":121,"props":4005,"children":4006},{"style":134},[4007],{"type":41,"value":4008}," SDK_KEY",{"type":36,"tag":121,"props":4010,"children":4011},{"style":145},[4012],{"type":41,"value":403},{"type":36,"tag":121,"props":4014,"children":4015},{"class":123,"line":889},[4016,4021,4025,4029,4033,4037],{"type":36,"tag":121,"props":4017,"children":4018},{"style":349},[4019],{"type":41,"value":4020},"      meetingNumber",{"type":36,"tag":121,"props":4022,"children":4023},{"style":145},[4024],{"type":41,"value":266},{"type":36,"tag":121,"props":4026,"children":4027},{"style":145},[4028],{"type":41,"value":148},{"type":36,"tag":121,"props":4030,"children":4031},{"style":151},[4032],{"type":41,"value":2995},{"type":36,"tag":121,"props":4034,"children":4035},{"style":145},[4036],{"type":41,"value":159},{"type":36,"tag":121,"props":4038,"children":4039},{"style":145},[4040],{"type":41,"value":403},{"type":36,"tag":121,"props":4042,"children":4043},{"class":123,"line":906},[4044,4049,4053,4057,4061,4065],{"type":36,"tag":121,"props":4045,"children":4046},{"style":349},[4047],{"type":41,"value":4048},"      userName",{"type":36,"tag":121,"props":4050,"children":4051},{"style":145},[4052],{"type":41,"value":266},{"type":36,"tag":121,"props":4054,"children":4055},{"style":145},[4056],{"type":41,"value":148},{"type":36,"tag":121,"props":4058,"children":4059},{"style":151},[4060],{"type":41,"value":3024},{"type":36,"tag":121,"props":4062,"children":4063},{"style":145},[4064],{"type":41,"value":159},{"type":36,"tag":121,"props":4066,"children":4067},{"style":145},[4068],{"type":41,"value":403},{"type":36,"tag":121,"props":4070,"children":4071},{"class":123,"line":975},[4072,4077,4081,4085,4089,4093,4097],{"type":36,"tag":121,"props":4073,"children":4074},{"style":349},[4075],{"type":41,"value":4076},"      password",{"type":36,"tag":121,"props":4078,"children":4079},{"style":145},[4080],{"type":41,"value":266},{"type":36,"tag":121,"props":4082,"children":4083},{"style":145},[4084],{"type":41,"value":148},{"type":36,"tag":121,"props":4086,"children":4087},{"style":151},[4088],{"type":41,"value":3053},{"type":36,"tag":121,"props":4090,"children":4091},{"style":145},[4092],{"type":41,"value":159},{"type":36,"tag":121,"props":4094,"children":4095},{"style":145},[4096],{"type":41,"value":277},{"type":36,"tag":121,"props":4098,"children":4099},{"style":2019},[4100],{"type":41,"value":4101},"  \u002F\u002F Lowercase!\n",{"type":36,"tag":121,"props":4103,"children":4104},{"class":123,"line":984},[4105,4109,4113],{"type":36,"tag":121,"props":4106,"children":4107},{"style":145},[4108],{"type":41,"value":3916},{"type":36,"tag":121,"props":4110,"children":4111},{"style":349},[4112],{"type":41,"value":312},{"type":36,"tag":121,"props":4114,"children":4115},{"style":145},[4116],{"type":41,"value":164},{"type":36,"tag":121,"props":4118,"children":4119},{"class":123,"line":1000},[4120],{"type":36,"tag":121,"props":4121,"children":4122},{"emptyLinePlaceholder":171},[4123],{"type":41,"value":174},{"type":36,"tag":121,"props":4125,"children":4126},{"class":123,"line":1008},[4127,4132,4136,4140,4144,4148,4153,4157,4161],{"type":36,"tag":121,"props":4128,"children":4129},{"style":134},[4130],{"type":41,"value":4131},"    console",{"type":36,"tag":121,"props":4133,"children":4134},{"style":145},[4135],{"type":41,"value":82},{"type":36,"tag":121,"props":4137,"children":4138},{"style":206},[4139],{"type":41,"value":2484},{"type":36,"tag":121,"props":4141,"children":4142},{"style":349},[4143],{"type":41,"value":255},{"type":36,"tag":121,"props":4145,"children":4146},{"style":145},[4147],{"type":41,"value":159},{"type":36,"tag":121,"props":4149,"children":4150},{"style":151},[4151],{"type":41,"value":4152},"Joined successfully!",{"type":36,"tag":121,"props":4154,"children":4155},{"style":145},[4156],{"type":41,"value":159},{"type":36,"tag":121,"props":4158,"children":4159},{"style":349},[4160],{"type":41,"value":312},{"type":36,"tag":121,"props":4162,"children":4163},{"style":145},[4164],{"type":41,"value":164},{"type":36,"tag":121,"props":4166,"children":4167},{"class":123,"line":1037},[4168,4172,4177,4181,4185,4189],{"type":36,"tag":121,"props":4169,"children":4170},{"style":145},[4171],{"type":41,"value":538},{"type":36,"tag":121,"props":4173,"children":4174},{"style":128},[4175],{"type":41,"value":4176}," catch",{"type":36,"tag":121,"props":4178,"children":4179},{"style":349},[4180],{"type":41,"value":568},{"type":36,"tag":121,"props":4182,"children":4183},{"style":134},[4184],{"type":41,"value":3390},{"type":36,"tag":121,"props":4186,"children":4187},{"style":349},[4188],{"type":41,"value":592},{"type":36,"tag":121,"props":4190,"children":4191},{"style":145},[4192],{"type":41,"value":759},{"type":36,"tag":121,"props":4194,"children":4195},{"class":123,"line":1050},[4196,4200,4204,4208,4212,4216,4221,4225,4229,4234,4238],{"type":36,"tag":121,"props":4197,"children":4198},{"style":134},[4199],{"type":41,"value":4131},{"type":36,"tag":121,"props":4201,"children":4202},{"style":145},[4203],{"type":41,"value":82},{"type":36,"tag":121,"props":4205,"children":4206},{"style":206},[4207],{"type":41,"value":3390},{"type":36,"tag":121,"props":4209,"children":4210},{"style":349},[4211],{"type":41,"value":255},{"type":36,"tag":121,"props":4213,"children":4214},{"style":145},[4215],{"type":41,"value":159},{"type":36,"tag":121,"props":4217,"children":4218},{"style":151},[4219],{"type":41,"value":4220},"Failed to join:",{"type":36,"tag":121,"props":4222,"children":4223},{"style":145},[4224],{"type":41,"value":159},{"type":36,"tag":121,"props":4226,"children":4227},{"style":145},[4228],{"type":41,"value":277},{"type":36,"tag":121,"props":4230,"children":4231},{"style":134},[4232],{"type":41,"value":4233}," error",{"type":36,"tag":121,"props":4235,"children":4236},{"style":349},[4237],{"type":41,"value":312},{"type":36,"tag":121,"props":4239,"children":4240},{"style":145},[4241],{"type":41,"value":164},{"type":36,"tag":121,"props":4243,"children":4244},{"class":123,"line":1063},[4245],{"type":36,"tag":121,"props":4246,"children":4247},{"style":145},[4248],{"type":41,"value":4249},"  }\n",{"type":36,"tag":121,"props":4251,"children":4252},{"class":123,"line":1076},[4253],{"type":36,"tag":121,"props":4254,"children":4255},{"style":145},[4256],{"type":41,"value":1124},{"type":36,"tag":65,"props":4258,"children":4260},{"id":4259},"authentication-endpoint-required",[4261],{"type":41,"value":4262},"Authentication Endpoint (Required)",{"type":36,"tag":44,"props":4264,"children":4265},{},[4266,4268],{"type":41,"value":4267},"Both views require a JWT signature from a backend server. ",{"type":36,"tag":50,"props":4269,"children":4270},{},[4271],{"type":41,"value":4272},"Never expose your SDK Secret in frontend code!",{"type":36,"tag":94,"props":4274,"children":4276},{"className":1970,"code":4275,"language":1972,"meta":99,"style":99},"# Clone Zoom's official auth endpoint\ngit clone https:\u002F\u002Fgithub.com\u002Fzoom\u002Fmeetingsdk-auth-endpoint-sample --depth 1\ncd meetingsdk-auth-endpoint-sample\ncp .env.example .env\n# Edit .env with your SDK Key and Secret\nnpm install && npm run start\n",[4277],{"type":36,"tag":102,"props":4278,"children":4279},{"__ignoreMap":99},[4280,4288,4316,4329,4347,4355],{"type":36,"tag":121,"props":4281,"children":4282},{"class":123,"line":124},[4283],{"type":36,"tag":121,"props":4284,"children":4285},{"style":2019},[4286],{"type":41,"value":4287},"# Clone Zoom's official auth endpoint\n",{"type":36,"tag":121,"props":4289,"children":4290},{"class":123,"line":167},[4291,4296,4301,4306,4311],{"type":36,"tag":121,"props":4292,"children":4293},{"style":269},[4294],{"type":41,"value":4295},"git",{"type":36,"tag":121,"props":4297,"children":4298},{"style":151},[4299],{"type":41,"value":4300}," clone",{"type":36,"tag":121,"props":4302,"children":4303},{"style":151},[4304],{"type":41,"value":4305}," https:\u002F\u002Fgithub.com\u002Fzoom\u002Fmeetingsdk-auth-endpoint-sample",{"type":36,"tag":121,"props":4307,"children":4308},{"style":151},[4309],{"type":41,"value":4310}," --depth",{"type":36,"tag":121,"props":4312,"children":4313},{"style":513},[4314],{"type":41,"value":4315}," 1\n",{"type":36,"tag":121,"props":4317,"children":4318},{"class":123,"line":177},[4319,4324],{"type":36,"tag":121,"props":4320,"children":4321},{"style":206},[4322],{"type":41,"value":4323},"cd",{"type":36,"tag":121,"props":4325,"children":4326},{"style":151},[4327],{"type":41,"value":4328}," meetingsdk-auth-endpoint-sample\n",{"type":36,"tag":121,"props":4330,"children":4331},{"class":123,"line":221},[4332,4337,4342],{"type":36,"tag":121,"props":4333,"children":4334},{"style":269},[4335],{"type":41,"value":4336},"cp",{"type":36,"tag":121,"props":4338,"children":4339},{"style":151},[4340],{"type":41,"value":4341}," .env.example",{"type":36,"tag":121,"props":4343,"children":4344},{"style":151},[4345],{"type":41,"value":4346}," .env\n",{"type":36,"tag":121,"props":4348,"children":4349},{"class":123,"line":229},[4350],{"type":36,"tag":121,"props":4351,"children":4352},{"style":2019},[4353],{"type":41,"value":4354},"# Edit .env with your SDK Key and Secret\n",{"type":36,"tag":121,"props":4356,"children":4357},{"class":123,"line":320},[4358,4362,4366,4371,4376,4381],{"type":36,"tag":121,"props":4359,"children":4360},{"style":269},[4361],{"type":41,"value":1984},{"type":36,"tag":121,"props":4363,"children":4364},{"style":151},[4365],{"type":41,"value":1989},{"type":36,"tag":121,"props":4367,"children":4368},{"style":145},[4369],{"type":41,"value":4370}," &&",{"type":36,"tag":121,"props":4372,"children":4373},{"style":269},[4374],{"type":41,"value":4375}," npm",{"type":36,"tag":121,"props":4377,"children":4378},{"style":151},[4379],{"type":41,"value":4380}," run",{"type":36,"tag":121,"props":4382,"children":4383},{"style":151},[4384],{"type":41,"value":4385}," start\n",{"type":36,"tag":1893,"props":4387,"children":4389},{"id":4388},"signature-generation",[4390],{"type":41,"value":4391},"Signature Generation",{"type":36,"tag":44,"props":4393,"children":4394},{},[4395],{"type":41,"value":4396},"The signature encodes:",{"type":36,"tag":1131,"props":4398,"children":4399},{},[4400,4419,4427,4438,4449,4460],{"type":36,"tag":1135,"props":4401,"children":4402},{},[4403,4409,4411,4417],{"type":36,"tag":102,"props":4404,"children":4406},{"className":4405},[],[4407],{"type":41,"value":4408},"sdkKey",{"type":41,"value":4410}," (or ",{"type":36,"tag":102,"props":4412,"children":4414},{"className":4413},[],[4415],{"type":41,"value":4416},"clientId",{"type":41,"value":4418}," for newer apps)",{"type":36,"tag":1135,"props":4420,"children":4421},{},[4422],{"type":36,"tag":102,"props":4423,"children":4425},{"className":4424},[],[4426],{"type":41,"value":261},{"type":36,"tag":1135,"props":4428,"children":4429},{},[4430,4436],{"type":36,"tag":102,"props":4431,"children":4433},{"className":4432},[],[4434],{"type":41,"value":4435},"role",{"type":41,"value":4437}," (0 = participant, 1 = host)",{"type":36,"tag":1135,"props":4439,"children":4440},{},[4441,4447],{"type":36,"tag":102,"props":4442,"children":4444},{"className":4443},[],[4445],{"type":41,"value":4446},"iat",{"type":41,"value":4448}," (issued at timestamp)",{"type":36,"tag":1135,"props":4450,"children":4451},{},[4452,4458],{"type":36,"tag":102,"props":4453,"children":4455},{"className":4454},[],[4456],{"type":41,"value":4457},"exp",{"type":41,"value":4459}," (expiration timestamp)",{"type":36,"tag":1135,"props":4461,"children":4462},{},[4463,4469],{"type":36,"tag":102,"props":4464,"children":4466},{"className":4465},[],[4467],{"type":41,"value":4468},"tokenExp",{"type":41,"value":4470}," (token expiration)",{"type":36,"tag":1469,"props":4472,"children":4473},{},[4474],{"type":36,"tag":44,"props":4475,"children":4476},{},[4477,4482,4484,4490],{"type":36,"tag":50,"props":4478,"children":4479},{},[4480],{"type":41,"value":4481},"IMPORTANT (March 2026)",{"type":41,"value":4483},": Apps joining meetings outside their account will require an App Privilege Token (OBF) or ZAK token. See ",{"type":36,"tag":1228,"props":4485,"children":4487},{"href":4486},"#authorization-requirements-2026-update",[4488],{"type":41,"value":4489},"Authorization Requirements",{"type":41,"value":82},{"type":36,"tag":65,"props":4492,"children":4494},{"id":4493},"core-workflow",[4495],{"type":41,"value":4496},"Core Workflow",{"type":36,"tag":94,"props":4498,"children":4501},{"className":4499,"code":4500,"language":41},[97],"┌─────────────────┐    ┌─────────────────┐    ┌─────────────────┐\n│   Get Signature │───►│   init()        │───►│   join()        │\n│   (from backend)│    │   (SDK setup)   │    │   (enter mtg)   │\n└─────────────────┘    └─────────────────┘    └─────────────────┘\n                              │                       │\n                              ▼                       ▼\n                       success\u002Ferror            success\u002Ferror\n                        callback                 callback\n                     (or Promise resolve)    (or Promise resolve)\n",[4502],{"type":36,"tag":102,"props":4503,"children":4504},{"__ignoreMap":99},[4505],{"type":41,"value":4500},{"type":36,"tag":65,"props":4507,"children":4509},{"id":4508},"client-view-api-reference",[4510],{"type":41,"value":4511},"Client View API Reference",{"type":36,"tag":1893,"props":4513,"children":4515},{"id":4514},"zoommtginit-key-options",[4516],{"type":41,"value":4517},"ZoomMtg.init() - Key Options",{"type":36,"tag":94,"props":4519,"children":4521},{"className":2404,"code":4520,"language":2406,"meta":99,"style":99},"ZoomMtg.init({\n  \u002F\u002F Required\n  leaveUrl: string,              \u002F\u002F URL to redirect after leaving\n\n  \u002F\u002F Display Options\n  showMeetingHeader: boolean,    \u002F\u002F Show meeting number\u002Ftopic (default: true)\n  disableInvite: boolean,        \u002F\u002F Hide invite button (default: false)\n  disableRecord: boolean,        \u002F\u002F Hide record button (default: false)\n  disableJoinAudio: boolean,     \u002F\u002F Hide join audio option (default: false)\n  disablePreview: boolean,       \u002F\u002F Skip A\u002FV preview (default: false)\n\n  \u002F\u002F HD Video (requires SharedArrayBuffer)\n  enableHD: boolean,             \u002F\u002F Enable 720p (default: true for >=2.8.0)\n  enableFullHD: boolean,         \u002F\u002F Enable 1080p for webinars (default: false)\n\n  \u002F\u002F View Options\n  defaultView: 'gallery' | 'speaker' | 'multiSpeaker',\n\n  \u002F\u002F Feature Toggles\n  isSupportChat: boolean,        \u002F\u002F Enable chat (default: true)\n  isSupportCC: boolean,          \u002F\u002F Enable closed captions (default: true)\n  isSupportBreakout: boolean,    \u002F\u002F Enable breakout rooms (default: true)\n  isSupportPolling: boolean,     \u002F\u002F Enable polling (default: true)\n  isSupportQA: boolean,          \u002F\u002F Enable Q&A for webinars (default: true)\n\n  \u002F\u002F Cross-Origin\n  disableCORP: boolean,          \u002F\u002F For dev without COOP\u002FCOEP headers\n\n  \u002F\u002F Callbacks\n  success: Function,\n  error: Function,\n});\n",[4522],{"type":36,"tag":102,"props":4523,"children":4524},{"__ignoreMap":99},[4525,4548,4556,4581,4588,4596,4622,4647,4672,4697,4722,4729,4737,4762,4787,4794,4802,4866,4873,4881,4906,4931,4956,4981,5006,5013,5021,5046,5053,5061,5082,5102],{"type":36,"tag":121,"props":4526,"children":4527},{"class":123,"line":124},[4528,4532,4536,4540,4544],{"type":36,"tag":121,"props":4529,"children":4530},{"style":134},[4531],{"type":41,"value":1690},{"type":36,"tag":121,"props":4533,"children":4534},{"style":145},[4535],{"type":41,"value":82},{"type":36,"tag":121,"props":4537,"children":4538},{"style":206},[4539],{"type":41,"value":750},{"type":36,"tag":121,"props":4541,"children":4542},{"style":134},[4543],{"type":41,"value":255},{"type":36,"tag":121,"props":4545,"children":4546},{"style":145},[4547],{"type":41,"value":759},{"type":36,"tag":121,"props":4549,"children":4550},{"class":123,"line":167},[4551],{"type":36,"tag":121,"props":4552,"children":4553},{"style":2019},[4554],{"type":41,"value":4555},"  \u002F\u002F Required\n",{"type":36,"tag":121,"props":4557,"children":4558},{"class":123,"line":177},[4559,4564,4568,4572,4576],{"type":36,"tag":121,"props":4560,"children":4561},{"style":349},[4562],{"type":41,"value":4563},"  leaveUrl",{"type":36,"tag":121,"props":4565,"children":4566},{"style":145},[4567],{"type":41,"value":266},{"type":36,"tag":121,"props":4569,"children":4570},{"style":134},[4571],{"type":41,"value":272},{"type":36,"tag":121,"props":4573,"children":4574},{"style":145},[4575],{"type":41,"value":277},{"type":36,"tag":121,"props":4577,"children":4578},{"style":2019},[4579],{"type":41,"value":4580},"              \u002F\u002F URL to redirect after leaving\n",{"type":36,"tag":121,"props":4582,"children":4583},{"class":123,"line":221},[4584],{"type":36,"tag":121,"props":4585,"children":4586},{"emptyLinePlaceholder":171},[4587],{"type":41,"value":174},{"type":36,"tag":121,"props":4589,"children":4590},{"class":123,"line":229},[4591],{"type":36,"tag":121,"props":4592,"children":4593},{"style":2019},[4594],{"type":41,"value":4595},"  \u002F\u002F Display Options\n",{"type":36,"tag":121,"props":4597,"children":4598},{"class":123,"line":320},[4599,4604,4608,4613,4617],{"type":36,"tag":121,"props":4600,"children":4601},{"style":349},[4602],{"type":41,"value":4603},"  showMeetingHeader",{"type":36,"tag":121,"props":4605,"children":4606},{"style":145},[4607],{"type":41,"value":266},{"type":36,"tag":121,"props":4609,"children":4610},{"style":134},[4611],{"type":41,"value":4612}," boolean",{"type":36,"tag":121,"props":4614,"children":4615},{"style":145},[4616],{"type":41,"value":277},{"type":36,"tag":121,"props":4618,"children":4619},{"style":2019},[4620],{"type":41,"value":4621},"    \u002F\u002F Show meeting number\u002Ftopic (default: true)\n",{"type":36,"tag":121,"props":4623,"children":4624},{"class":123,"line":375},[4625,4630,4634,4638,4642],{"type":36,"tag":121,"props":4626,"children":4627},{"style":349},[4628],{"type":41,"value":4629},"  disableInvite",{"type":36,"tag":121,"props":4631,"children":4632},{"style":145},[4633],{"type":41,"value":266},{"type":36,"tag":121,"props":4635,"children":4636},{"style":134},[4637],{"type":41,"value":4612},{"type":36,"tag":121,"props":4639,"children":4640},{"style":145},[4641],{"type":41,"value":277},{"type":36,"tag":121,"props":4643,"children":4644},{"style":2019},[4645],{"type":41,"value":4646},"        \u002F\u002F Hide invite button (default: false)\n",{"type":36,"tag":121,"props":4648,"children":4649},{"class":123,"line":406},[4650,4655,4659,4663,4667],{"type":36,"tag":121,"props":4651,"children":4652},{"style":349},[4653],{"type":41,"value":4654},"  disableRecord",{"type":36,"tag":121,"props":4656,"children":4657},{"style":145},[4658],{"type":41,"value":266},{"type":36,"tag":121,"props":4660,"children":4661},{"style":134},[4662],{"type":41,"value":4612},{"type":36,"tag":121,"props":4664,"children":4665},{"style":145},[4666],{"type":41,"value":277},{"type":36,"tag":121,"props":4668,"children":4669},{"style":2019},[4670],{"type":41,"value":4671},"        \u002F\u002F Hide record button (default: false)\n",{"type":36,"tag":121,"props":4673,"children":4674},{"class":123,"line":459},[4675,4680,4684,4688,4692],{"type":36,"tag":121,"props":4676,"children":4677},{"style":349},[4678],{"type":41,"value":4679},"  disableJoinAudio",{"type":36,"tag":121,"props":4681,"children":4682},{"style":145},[4683],{"type":41,"value":266},{"type":36,"tag":121,"props":4685,"children":4686},{"style":134},[4687],{"type":41,"value":4612},{"type":36,"tag":121,"props":4689,"children":4690},{"style":145},[4691],{"type":41,"value":277},{"type":36,"tag":121,"props":4693,"children":4694},{"style":2019},[4695],{"type":41,"value":4696},"     \u002F\u002F Hide join audio option (default: false)\n",{"type":36,"tag":121,"props":4698,"children":4699},{"class":123,"line":532},[4700,4705,4709,4713,4717],{"type":36,"tag":121,"props":4701,"children":4702},{"style":349},[4703],{"type":41,"value":4704},"  disablePreview",{"type":36,"tag":121,"props":4706,"children":4707},{"style":145},[4708],{"type":41,"value":266},{"type":36,"tag":121,"props":4710,"children":4711},{"style":134},[4712],{"type":41,"value":4612},{"type":36,"tag":121,"props":4714,"children":4715},{"style":145},[4716],{"type":41,"value":277},{"type":36,"tag":121,"props":4718,"children":4719},{"style":2019},[4720],{"type":41,"value":4721},"       \u002F\u002F Skip A\u002FV preview (default: false)\n",{"type":36,"tag":121,"props":4723,"children":4724},{"class":123,"line":549},[4725],{"type":36,"tag":121,"props":4726,"children":4727},{"emptyLinePlaceholder":171},[4728],{"type":41,"value":174},{"type":36,"tag":121,"props":4730,"children":4731},{"class":123,"line":557},[4732],{"type":36,"tag":121,"props":4733,"children":4734},{"style":2019},[4735],{"type":41,"value":4736},"  \u002F\u002F HD Video (requires SharedArrayBuffer)\n",{"type":36,"tag":121,"props":4738,"children":4739},{"class":123,"line":655},[4740,4745,4749,4753,4757],{"type":36,"tag":121,"props":4741,"children":4742},{"style":349},[4743],{"type":41,"value":4744},"  enableHD",{"type":36,"tag":121,"props":4746,"children":4747},{"style":145},[4748],{"type":41,"value":266},{"type":36,"tag":121,"props":4750,"children":4751},{"style":134},[4752],{"type":41,"value":4612},{"type":36,"tag":121,"props":4754,"children":4755},{"style":145},[4756],{"type":41,"value":277},{"type":36,"tag":121,"props":4758,"children":4759},{"style":2019},[4760],{"type":41,"value":4761},"             \u002F\u002F Enable 720p (default: true for >=2.8.0)\n",{"type":36,"tag":121,"props":4763,"children":4764},{"class":123,"line":663},[4765,4770,4774,4778,4782],{"type":36,"tag":121,"props":4766,"children":4767},{"style":349},[4768],{"type":41,"value":4769},"  enableFullHD",{"type":36,"tag":121,"props":4771,"children":4772},{"style":145},[4773],{"type":41,"value":266},{"type":36,"tag":121,"props":4775,"children":4776},{"style":134},[4777],{"type":41,"value":4612},{"type":36,"tag":121,"props":4779,"children":4780},{"style":145},[4781],{"type":41,"value":277},{"type":36,"tag":121,"props":4783,"children":4784},{"style":2019},[4785],{"type":41,"value":4786},"         \u002F\u002F Enable 1080p for webinars (default: false)\n",{"type":36,"tag":121,"props":4788,"children":4789},{"class":123,"line":722},[4790],{"type":36,"tag":121,"props":4791,"children":4792},{"emptyLinePlaceholder":171},[4793],{"type":41,"value":174},{"type":36,"tag":121,"props":4795,"children":4796},{"class":123,"line":730},[4797],{"type":36,"tag":121,"props":4798,"children":4799},{"style":2019},[4800],{"type":41,"value":4801},"  \u002F\u002F View Options\n",{"type":36,"tag":121,"props":4803,"children":4804},{"class":123,"line":762},[4805,4810,4814,4818,4823,4827,4832,4836,4841,4845,4849,4853,4858,4862],{"type":36,"tag":121,"props":4806,"children":4807},{"style":349},[4808],{"type":41,"value":4809},"  defaultView",{"type":36,"tag":121,"props":4811,"children":4812},{"style":145},[4813],{"type":41,"value":266},{"type":36,"tag":121,"props":4815,"children":4816},{"style":145},[4817],{"type":41,"value":148},{"type":36,"tag":121,"props":4819,"children":4820},{"style":151},[4821],{"type":41,"value":4822},"gallery",{"type":36,"tag":121,"props":4824,"children":4825},{"style":145},[4826],{"type":41,"value":159},{"type":36,"tag":121,"props":4828,"children":4829},{"style":145},[4830],{"type":41,"value":4831}," |",{"type":36,"tag":121,"props":4833,"children":4834},{"style":145},[4835],{"type":41,"value":148},{"type":36,"tag":121,"props":4837,"children":4838},{"style":151},[4839],{"type":41,"value":4840},"speaker",{"type":36,"tag":121,"props":4842,"children":4843},{"style":145},[4844],{"type":41,"value":159},{"type":36,"tag":121,"props":4846,"children":4847},{"style":145},[4848],{"type":41,"value":4831},{"type":36,"tag":121,"props":4850,"children":4851},{"style":145},[4852],{"type":41,"value":148},{"type":36,"tag":121,"props":4854,"children":4855},{"style":151},[4856],{"type":41,"value":4857},"multiSpeaker",{"type":36,"tag":121,"props":4859,"children":4860},{"style":145},[4861],{"type":41,"value":159},{"type":36,"tag":121,"props":4863,"children":4864},{"style":145},[4865],{"type":41,"value":403},{"type":36,"tag":121,"props":4867,"children":4868},{"class":123,"line":815},[4869],{"type":36,"tag":121,"props":4870,"children":4871},{"emptyLinePlaceholder":171},[4872],{"type":41,"value":174},{"type":36,"tag":121,"props":4874,"children":4875},{"class":123,"line":845},[4876],{"type":36,"tag":121,"props":4877,"children":4878},{"style":2019},[4879],{"type":41,"value":4880},"  \u002F\u002F Feature Toggles\n",{"type":36,"tag":121,"props":4882,"children":4883},{"class":123,"line":868},[4884,4889,4893,4897,4901],{"type":36,"tag":121,"props":4885,"children":4886},{"style":349},[4887],{"type":41,"value":4888},"  isSupportChat",{"type":36,"tag":121,"props":4890,"children":4891},{"style":145},[4892],{"type":41,"value":266},{"type":36,"tag":121,"props":4894,"children":4895},{"style":134},[4896],{"type":41,"value":4612},{"type":36,"tag":121,"props":4898,"children":4899},{"style":145},[4900],{"type":41,"value":277},{"type":36,"tag":121,"props":4902,"children":4903},{"style":2019},[4904],{"type":41,"value":4905},"        \u002F\u002F Enable chat (default: true)\n",{"type":36,"tag":121,"props":4907,"children":4908},{"class":123,"line":889},[4909,4914,4918,4922,4926],{"type":36,"tag":121,"props":4910,"children":4911},{"style":349},[4912],{"type":41,"value":4913},"  isSupportCC",{"type":36,"tag":121,"props":4915,"children":4916},{"style":145},[4917],{"type":41,"value":266},{"type":36,"tag":121,"props":4919,"children":4920},{"style":134},[4921],{"type":41,"value":4612},{"type":36,"tag":121,"props":4923,"children":4924},{"style":145},[4925],{"type":41,"value":277},{"type":36,"tag":121,"props":4927,"children":4928},{"style":2019},[4929],{"type":41,"value":4930},"          \u002F\u002F Enable closed captions (default: true)\n",{"type":36,"tag":121,"props":4932,"children":4933},{"class":123,"line":906},[4934,4939,4943,4947,4951],{"type":36,"tag":121,"props":4935,"children":4936},{"style":349},[4937],{"type":41,"value":4938},"  isSupportBreakout",{"type":36,"tag":121,"props":4940,"children":4941},{"style":145},[4942],{"type":41,"value":266},{"type":36,"tag":121,"props":4944,"children":4945},{"style":134},[4946],{"type":41,"value":4612},{"type":36,"tag":121,"props":4948,"children":4949},{"style":145},[4950],{"type":41,"value":277},{"type":36,"tag":121,"props":4952,"children":4953},{"style":2019},[4954],{"type":41,"value":4955},"    \u002F\u002F Enable breakout rooms (default: true)\n",{"type":36,"tag":121,"props":4957,"children":4958},{"class":123,"line":975},[4959,4964,4968,4972,4976],{"type":36,"tag":121,"props":4960,"children":4961},{"style":349},[4962],{"type":41,"value":4963},"  isSupportPolling",{"type":36,"tag":121,"props":4965,"children":4966},{"style":145},[4967],{"type":41,"value":266},{"type":36,"tag":121,"props":4969,"children":4970},{"style":134},[4971],{"type":41,"value":4612},{"type":36,"tag":121,"props":4973,"children":4974},{"style":145},[4975],{"type":41,"value":277},{"type":36,"tag":121,"props":4977,"children":4978},{"style":2019},[4979],{"type":41,"value":4980},"     \u002F\u002F Enable polling (default: true)\n",{"type":36,"tag":121,"props":4982,"children":4983},{"class":123,"line":984},[4984,4989,4993,4997,5001],{"type":36,"tag":121,"props":4985,"children":4986},{"style":349},[4987],{"type":41,"value":4988},"  isSupportQA",{"type":36,"tag":121,"props":4990,"children":4991},{"style":145},[4992],{"type":41,"value":266},{"type":36,"tag":121,"props":4994,"children":4995},{"style":134},[4996],{"type":41,"value":4612},{"type":36,"tag":121,"props":4998,"children":4999},{"style":145},[5000],{"type":41,"value":277},{"type":36,"tag":121,"props":5002,"children":5003},{"style":2019},[5004],{"type":41,"value":5005},"          \u002F\u002F Enable Q&A for webinars (default: true)\n",{"type":36,"tag":121,"props":5007,"children":5008},{"class":123,"line":1000},[5009],{"type":36,"tag":121,"props":5010,"children":5011},{"emptyLinePlaceholder":171},[5012],{"type":41,"value":174},{"type":36,"tag":121,"props":5014,"children":5015},{"class":123,"line":1008},[5016],{"type":36,"tag":121,"props":5017,"children":5018},{"style":2019},[5019],{"type":41,"value":5020},"  \u002F\u002F Cross-Origin\n",{"type":36,"tag":121,"props":5022,"children":5023},{"class":123,"line":1037},[5024,5029,5033,5037,5041],{"type":36,"tag":121,"props":5025,"children":5026},{"style":349},[5027],{"type":41,"value":5028},"  disableCORP",{"type":36,"tag":121,"props":5030,"children":5031},{"style":145},[5032],{"type":41,"value":266},{"type":36,"tag":121,"props":5034,"children":5035},{"style":134},[5036],{"type":41,"value":4612},{"type":36,"tag":121,"props":5038,"children":5039},{"style":145},[5040],{"type":41,"value":277},{"type":36,"tag":121,"props":5042,"children":5043},{"style":2019},[5044],{"type":41,"value":5045},"          \u002F\u002F For dev without COOP\u002FCOEP headers\n",{"type":36,"tag":121,"props":5047,"children":5048},{"class":123,"line":1050},[5049],{"type":36,"tag":121,"props":5050,"children":5051},{"emptyLinePlaceholder":171},[5052],{"type":41,"value":174},{"type":36,"tag":121,"props":5054,"children":5055},{"class":123,"line":1063},[5056],{"type":36,"tag":121,"props":5057,"children":5058},{"style":2019},[5059],{"type":41,"value":5060},"  \u002F\u002F Callbacks\n",{"type":36,"tag":121,"props":5062,"children":5063},{"class":123,"line":1076},[5064,5069,5073,5078],{"type":36,"tag":121,"props":5065,"children":5066},{"style":349},[5067],{"type":41,"value":5068},"  success",{"type":36,"tag":121,"props":5070,"children":5071},{"style":145},[5072],{"type":41,"value":266},{"type":36,"tag":121,"props":5074,"children":5075},{"style":134},[5076],{"type":41,"value":5077}," Function",{"type":36,"tag":121,"props":5079,"children":5080},{"style":145},[5081],{"type":41,"value":403},{"type":36,"tag":121,"props":5083,"children":5084},{"class":123,"line":1089},[5085,5090,5094,5098],{"type":36,"tag":121,"props":5086,"children":5087},{"style":349},[5088],{"type":41,"value":5089},"  error",{"type":36,"tag":121,"props":5091,"children":5092},{"style":145},[5093],{"type":41,"value":266},{"type":36,"tag":121,"props":5095,"children":5096},{"style":134},[5097],{"type":41,"value":5077},{"type":36,"tag":121,"props":5099,"children":5100},{"style":145},[5101],{"type":41,"value":403},{"type":36,"tag":121,"props":5103,"children":5104},{"class":123,"line":1102},[5105,5109,5113],{"type":36,"tag":121,"props":5106,"children":5107},{"style":145},[5108],{"type":41,"value":3575},{"type":36,"tag":121,"props":5110,"children":5111},{"style":134},[5112],{"type":41,"value":312},{"type":36,"tag":121,"props":5114,"children":5115},{"style":145},[5116],{"type":41,"value":164},{"type":36,"tag":1893,"props":5118,"children":5120},{"id":5119},"zoommtgjoin-key-options",[5121],{"type":41,"value":5122},"ZoomMtg.join() - Key Options",{"type":36,"tag":94,"props":5124,"children":5126},{"className":2404,"code":5125,"language":2406,"meta":99,"style":99},"ZoomMtg.join({\n  \u002F\u002F Required\n  signature: string,             \u002F\u002F JWT signature from backend\n  meetingNumber: string | number,\n  userName: string,\n\n  \u002F\u002F Authentication\n  passWord: string,              \u002F\u002F Meeting password (capital W!)\n  zak: string,                   \u002F\u002F Host's ZAK token (required to start)\n  tk: string,                    \u002F\u002F Registration token (if required)\n  obfToken: string,              \u002F\u002F App Privilege Token (for 2026 requirement)\n\n  \u002F\u002F Optional\n  userEmail: string,             \u002F\u002F Required for webinars\n  customerKey: string,           \u002F\u002F Custom identifier (max 36 chars)\n\n  \u002F\u002F Callbacks\n  success: Function,\n  error: Function,\n});\n",[5127],{"type":36,"tag":102,"props":5128,"children":5129},{"__ignoreMap":99},[5130,5153,5160,5185,5216,5236,5243,5251,5276,5301,5326,5351,5358,5366,5391,5416,5423,5430,5449,5468],{"type":36,"tag":121,"props":5131,"children":5132},{"class":123,"line":124},[5133,5137,5141,5145,5149],{"type":36,"tag":121,"props":5134,"children":5135},{"style":134},[5136],{"type":41,"value":1690},{"type":36,"tag":121,"props":5138,"children":5139},{"style":145},[5140],{"type":41,"value":82},{"type":36,"tag":121,"props":5142,"children":5143},{"style":206},[5144],{"type":41,"value":1026},{"type":36,"tag":121,"props":5146,"children":5147},{"style":134},[5148],{"type":41,"value":255},{"type":36,"tag":121,"props":5150,"children":5151},{"style":145},[5152],{"type":41,"value":759},{"type":36,"tag":121,"props":5154,"children":5155},{"class":123,"line":167},[5156],{"type":36,"tag":121,"props":5157,"children":5158},{"style":2019},[5159],{"type":41,"value":4555},{"type":36,"tag":121,"props":5161,"children":5162},{"class":123,"line":177},[5163,5168,5172,5176,5180],{"type":36,"tag":121,"props":5164,"children":5165},{"style":349},[5166],{"type":41,"value":5167},"  signature",{"type":36,"tag":121,"props":5169,"children":5170},{"style":145},[5171],{"type":41,"value":266},{"type":36,"tag":121,"props":5173,"children":5174},{"style":134},[5175],{"type":41,"value":272},{"type":36,"tag":121,"props":5177,"children":5178},{"style":145},[5179],{"type":41,"value":277},{"type":36,"tag":121,"props":5181,"children":5182},{"style":2019},[5183],{"type":41,"value":5184},"             \u002F\u002F JWT signature from backend\n",{"type":36,"tag":121,"props":5186,"children":5187},{"class":123,"line":221},[5188,5193,5197,5202,5207,5212],{"type":36,"tag":121,"props":5189,"children":5190},{"style":349},[5191],{"type":41,"value":5192},"  meetingNumber",{"type":36,"tag":121,"props":5194,"children":5195},{"style":145},[5196],{"type":41,"value":266},{"type":36,"tag":121,"props":5198,"children":5199},{"style":134},[5200],{"type":41,"value":5201}," string ",{"type":36,"tag":121,"props":5203,"children":5204},{"style":145},[5205],{"type":41,"value":5206},"|",{"type":36,"tag":121,"props":5208,"children":5209},{"style":134},[5210],{"type":41,"value":5211}," number",{"type":36,"tag":121,"props":5213,"children":5214},{"style":145},[5215],{"type":41,"value":403},{"type":36,"tag":121,"props":5217,"children":5218},{"class":123,"line":229},[5219,5224,5228,5232],{"type":36,"tag":121,"props":5220,"children":5221},{"style":349},[5222],{"type":41,"value":5223},"  userName",{"type":36,"tag":121,"props":5225,"children":5226},{"style":145},[5227],{"type":41,"value":266},{"type":36,"tag":121,"props":5229,"children":5230},{"style":134},[5231],{"type":41,"value":272},{"type":36,"tag":121,"props":5233,"children":5234},{"style":145},[5235],{"type":41,"value":403},{"type":36,"tag":121,"props":5237,"children":5238},{"class":123,"line":320},[5239],{"type":36,"tag":121,"props":5240,"children":5241},{"emptyLinePlaceholder":171},[5242],{"type":41,"value":174},{"type":36,"tag":121,"props":5244,"children":5245},{"class":123,"line":375},[5246],{"type":36,"tag":121,"props":5247,"children":5248},{"style":2019},[5249],{"type":41,"value":5250},"  \u002F\u002F Authentication\n",{"type":36,"tag":121,"props":5252,"children":5253},{"class":123,"line":406},[5254,5259,5263,5267,5271],{"type":36,"tag":121,"props":5255,"children":5256},{"style":349},[5257],{"type":41,"value":5258},"  passWord",{"type":36,"tag":121,"props":5260,"children":5261},{"style":145},[5262],{"type":41,"value":266},{"type":36,"tag":121,"props":5264,"children":5265},{"style":134},[5266],{"type":41,"value":272},{"type":36,"tag":121,"props":5268,"children":5269},{"style":145},[5270],{"type":41,"value":277},{"type":36,"tag":121,"props":5272,"children":5273},{"style":2019},[5274],{"type":41,"value":5275},"              \u002F\u002F Meeting password (capital W!)\n",{"type":36,"tag":121,"props":5277,"children":5278},{"class":123,"line":459},[5279,5284,5288,5292,5296],{"type":36,"tag":121,"props":5280,"children":5281},{"style":349},[5282],{"type":41,"value":5283},"  zak",{"type":36,"tag":121,"props":5285,"children":5286},{"style":145},[5287],{"type":41,"value":266},{"type":36,"tag":121,"props":5289,"children":5290},{"style":134},[5291],{"type":41,"value":272},{"type":36,"tag":121,"props":5293,"children":5294},{"style":145},[5295],{"type":41,"value":277},{"type":36,"tag":121,"props":5297,"children":5298},{"style":2019},[5299],{"type":41,"value":5300},"                   \u002F\u002F Host's ZAK token (required to start)\n",{"type":36,"tag":121,"props":5302,"children":5303},{"class":123,"line":532},[5304,5309,5313,5317,5321],{"type":36,"tag":121,"props":5305,"children":5306},{"style":349},[5307],{"type":41,"value":5308},"  tk",{"type":36,"tag":121,"props":5310,"children":5311},{"style":145},[5312],{"type":41,"value":266},{"type":36,"tag":121,"props":5314,"children":5315},{"style":134},[5316],{"type":41,"value":272},{"type":36,"tag":121,"props":5318,"children":5319},{"style":145},[5320],{"type":41,"value":277},{"type":36,"tag":121,"props":5322,"children":5323},{"style":2019},[5324],{"type":41,"value":5325},"                    \u002F\u002F Registration token (if required)\n",{"type":36,"tag":121,"props":5327,"children":5328},{"class":123,"line":549},[5329,5334,5338,5342,5346],{"type":36,"tag":121,"props":5330,"children":5331},{"style":349},[5332],{"type":41,"value":5333},"  obfToken",{"type":36,"tag":121,"props":5335,"children":5336},{"style":145},[5337],{"type":41,"value":266},{"type":36,"tag":121,"props":5339,"children":5340},{"style":134},[5341],{"type":41,"value":272},{"type":36,"tag":121,"props":5343,"children":5344},{"style":145},[5345],{"type":41,"value":277},{"type":36,"tag":121,"props":5347,"children":5348},{"style":2019},[5349],{"type":41,"value":5350},"              \u002F\u002F App Privilege Token (for 2026 requirement)\n",{"type":36,"tag":121,"props":5352,"children":5353},{"class":123,"line":557},[5354],{"type":36,"tag":121,"props":5355,"children":5356},{"emptyLinePlaceholder":171},[5357],{"type":41,"value":174},{"type":36,"tag":121,"props":5359,"children":5360},{"class":123,"line":655},[5361],{"type":36,"tag":121,"props":5362,"children":5363},{"style":2019},[5364],{"type":41,"value":5365},"  \u002F\u002F Optional\n",{"type":36,"tag":121,"props":5367,"children":5368},{"class":123,"line":663},[5369,5374,5378,5382,5386],{"type":36,"tag":121,"props":5370,"children":5371},{"style":349},[5372],{"type":41,"value":5373},"  userEmail",{"type":36,"tag":121,"props":5375,"children":5376},{"style":145},[5377],{"type":41,"value":266},{"type":36,"tag":121,"props":5379,"children":5380},{"style":134},[5381],{"type":41,"value":272},{"type":36,"tag":121,"props":5383,"children":5384},{"style":145},[5385],{"type":41,"value":277},{"type":36,"tag":121,"props":5387,"children":5388},{"style":2019},[5389],{"type":41,"value":5390},"             \u002F\u002F Required for webinars\n",{"type":36,"tag":121,"props":5392,"children":5393},{"class":123,"line":722},[5394,5399,5403,5407,5411],{"type":36,"tag":121,"props":5395,"children":5396},{"style":349},[5397],{"type":41,"value":5398},"  customerKey",{"type":36,"tag":121,"props":5400,"children":5401},{"style":145},[5402],{"type":41,"value":266},{"type":36,"tag":121,"props":5404,"children":5405},{"style":134},[5406],{"type":41,"value":272},{"type":36,"tag":121,"props":5408,"children":5409},{"style":145},[5410],{"type":41,"value":277},{"type":36,"tag":121,"props":5412,"children":5413},{"style":2019},[5414],{"type":41,"value":5415},"           \u002F\u002F Custom identifier (max 36 chars)\n",{"type":36,"tag":121,"props":5417,"children":5418},{"class":123,"line":730},[5419],{"type":36,"tag":121,"props":5420,"children":5421},{"emptyLinePlaceholder":171},[5422],{"type":41,"value":174},{"type":36,"tag":121,"props":5424,"children":5425},{"class":123,"line":762},[5426],{"type":36,"tag":121,"props":5427,"children":5428},{"style":2019},[5429],{"type":41,"value":5060},{"type":36,"tag":121,"props":5431,"children":5432},{"class":123,"line":815},[5433,5437,5441,5445],{"type":36,"tag":121,"props":5434,"children":5435},{"style":349},[5436],{"type":41,"value":5068},{"type":36,"tag":121,"props":5438,"children":5439},{"style":145},[5440],{"type":41,"value":266},{"type":36,"tag":121,"props":5442,"children":5443},{"style":134},[5444],{"type":41,"value":5077},{"type":36,"tag":121,"props":5446,"children":5447},{"style":145},[5448],{"type":41,"value":403},{"type":36,"tag":121,"props":5450,"children":5451},{"class":123,"line":845},[5452,5456,5460,5464],{"type":36,"tag":121,"props":5453,"children":5454},{"style":349},[5455],{"type":41,"value":5089},{"type":36,"tag":121,"props":5457,"children":5458},{"style":145},[5459],{"type":41,"value":266},{"type":36,"tag":121,"props":5461,"children":5462},{"style":134},[5463],{"type":41,"value":5077},{"type":36,"tag":121,"props":5465,"children":5466},{"style":145},[5467],{"type":41,"value":403},{"type":36,"tag":121,"props":5469,"children":5470},{"class":123,"line":868},[5471,5475,5479],{"type":36,"tag":121,"props":5472,"children":5473},{"style":145},[5474],{"type":41,"value":3575},{"type":36,"tag":121,"props":5476,"children":5477},{"style":134},[5478],{"type":41,"value":312},{"type":36,"tag":121,"props":5480,"children":5481},{"style":145},[5482],{"type":41,"value":164},{"type":36,"tag":1893,"props":5484,"children":5486},{"id":5485},"event-listeners-client-view",[5487],{"type":41,"value":5488},"Event Listeners (Client View)",{"type":36,"tag":94,"props":5490,"children":5492},{"className":2404,"code":5491,"language":2406,"meta":99,"style":99},"\u002F\u002F User events\nZoomMtg.inMeetingServiceListener('onUserJoin', (data) => {\n  console.log('User joined:', data);\n});\n\nZoomMtg.inMeetingServiceListener('onUserLeave', (data) => {\n  console.log('User left:', data);\n  \u002F\u002F data.reasonCode values:\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\n\u002F\u002F Meeting status\nZoomMtg.inMeetingServiceListener('onMeetingStatus', (data) => {\n  \u002F\u002F status: 1=connecting, 2=connected, 3=disconnected, 4=reconnecting\n  console.log('Meeting status:', data.status);\n});\n\n\u002F\u002F Waiting room\nZoomMtg.inMeetingServiceListener('onUserIsInWaitingRoom', (data) => {\n  console.log('User in waiting room:', data);\n});\n\n\u002F\u002F Active speaker detection\nZoomMtg.inMeetingServiceListener('onActiveSpeaker', (data) => {\n  \u002F\u002F [{userId: number, userName: string}]\n  console.log('Active speaker:', data);\n});\n\n\u002F\u002F Network quality monitoring\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  if (data.level \u003C= 1) {\n    console.warn('Poor network quality');\n  }\n});\n\n\u002F\u002F Join performance metrics\nZoomMtg.inMeetingServiceListener('onJoinSpeed', (data) => {\n  console.log('Join speed metrics:', data);\n  \u002F\u002F Useful for performance monitoring dashboards\n});\n\n\u002F\u002F Chat\nZoomMtg.inMeetingServiceListener('onReceiveChatMsg', (data) => {\n  console.log('Chat message:', data);\n});\n\n\u002F\u002F Recording\nZoomMtg.inMeetingServiceListener('onRecordingChange', (data) => {\n  console.log('Recording status:', data);\n});\n\n\u002F\u002F Screen sharing\nZoomMtg.inMeetingServiceListener('onShareContentChange', (data) => {\n  console.log('Share content changed:', data);\n});\n\n\u002F\u002F Transcription (requires \"save closed captions\" enabled)\nZoomMtg.inMeetingServiceListener('onReceiveTranscriptionMsg', (data) => {\n  console.log('Transcription:', data);\n});\n\n\u002F\u002F Breakout room status\nZoomMtg.inMeetingServiceListener('onRoomStatusChange', (data) => {\n  \u002F\u002F status: 2=InProgress, 3=Closing, 4=Closed\n  console.log('Breakout room status:', data);\n});\n",[5493],{"type":36,"tag":102,"props":5494,"children":5495},{"__ignoreMap":99},[5496,5504,5562,5612,5627,5634,5690,5738,5746,5754,5762,5770,5778,5786,5794,5802,5810,5818,5833,5840,5896,5944,5959,5966,5974,6030,6038,6094,6109,6116,6124,6180,6228,6243,6250,6258,6314,6322,6370,6385,6392,6400,6456,6464,6472,6514,6554,6561,6577,6585,6594,6651,6700,6709,6725,6733,6742,6799,6848,6864,6872,6881,6938,6987,7003,7011,7020,7077,7126,7142,7150,7159,7216,7265,7281,7289,7298,7355,7364,7413],{"type":36,"tag":121,"props":5497,"children":5498},{"class":123,"line":124},[5499],{"type":36,"tag":121,"props":5500,"children":5501},{"style":2019},[5502],{"type":41,"value":5503},"\u002F\u002F User events\n",{"type":36,"tag":121,"props":5505,"children":5506},{"class":123,"line":167},[5507,5511,5515,5520,5524,5528,5533,5537,5541,5545,5550,5554,5558],{"type":36,"tag":121,"props":5508,"children":5509},{"style":134},[5510],{"type":41,"value":1690},{"type":36,"tag":121,"props":5512,"children":5513},{"style":145},[5514],{"type":41,"value":82},{"type":36,"tag":121,"props":5516,"children":5517},{"style":206},[5518],{"type":41,"value":5519},"inMeetingServiceListener",{"type":36,"tag":121,"props":5521,"children":5522},{"style":134},[5523],{"type":41,"value":255},{"type":36,"tag":121,"props":5525,"children":5526},{"style":145},[5527],{"type":41,"value":159},{"type":36,"tag":121,"props":5529,"children":5530},{"style":151},[5531],{"type":41,"value":5532},"onUserJoin",{"type":36,"tag":121,"props":5534,"children":5535},{"style":145},[5536],{"type":41,"value":159},{"type":36,"tag":121,"props":5538,"children":5539},{"style":145},[5540],{"type":41,"value":277},{"type":36,"tag":121,"props":5542,"children":5543},{"style":145},[5544],{"type":41,"value":568},{"type":36,"tag":121,"props":5546,"children":5547},{"style":258},[5548],{"type":41,"value":5549},"data",{"type":36,"tag":121,"props":5551,"children":5552},{"style":145},[5553],{"type":41,"value":312},{"type":36,"tag":121,"props":5555,"children":5556},{"style":181},[5557],{"type":41,"value":2691},{"type":36,"tag":121,"props":5559,"children":5560},{"style":145},[5561],{"type":41,"value":317},{"type":36,"tag":121,"props":5563,"children":5564},{"class":123,"line":177},[5565,5570,5574,5578,5582,5586,5591,5595,5599,5604,5608],{"type":36,"tag":121,"props":5566,"children":5567},{"style":134},[5568],{"type":41,"value":5569},"  console",{"type":36,"tag":121,"props":5571,"children":5572},{"style":145},[5573],{"type":41,"value":82},{"type":36,"tag":121,"props":5575,"children":5576},{"style":206},[5577],{"type":41,"value":2484},{"type":36,"tag":121,"props":5579,"children":5580},{"style":349},[5581],{"type":41,"value":255},{"type":36,"tag":121,"props":5583,"children":5584},{"style":145},[5585],{"type":41,"value":159},{"type":36,"tag":121,"props":5587,"children":5588},{"style":151},[5589],{"type":41,"value":5590},"User joined:",{"type":36,"tag":121,"props":5592,"children":5593},{"style":145},[5594],{"type":41,"value":159},{"type":36,"tag":121,"props":5596,"children":5597},{"style":145},[5598],{"type":41,"value":277},{"type":36,"tag":121,"props":5600,"children":5601},{"style":134},[5602],{"type":41,"value":5603}," data",{"type":36,"tag":121,"props":5605,"children":5606},{"style":349},[5607],{"type":41,"value":312},{"type":36,"tag":121,"props":5609,"children":5610},{"style":145},[5611],{"type":41,"value":164},{"type":36,"tag":121,"props":5613,"children":5614},{"class":123,"line":221},[5615,5619,5623],{"type":36,"tag":121,"props":5616,"children":5617},{"style":145},[5618],{"type":41,"value":3575},{"type":36,"tag":121,"props":5620,"children":5621},{"style":134},[5622],{"type":41,"value":312},{"type":36,"tag":121,"props":5624,"children":5625},{"style":145},[5626],{"type":41,"value":164},{"type":36,"tag":121,"props":5628,"children":5629},{"class":123,"line":229},[5630],{"type":36,"tag":121,"props":5631,"children":5632},{"emptyLinePlaceholder":171},[5633],{"type":41,"value":174},{"type":36,"tag":121,"props":5635,"children":5636},{"class":123,"line":320},[5637,5641,5645,5649,5653,5657,5662,5666,5670,5674,5678,5682,5686],{"type":36,"tag":121,"props":5638,"children":5639},{"style":134},[5640],{"type":41,"value":1690},{"type":36,"tag":121,"props":5642,"children":5643},{"style":145},[5644],{"type":41,"value":82},{"type":36,"tag":121,"props":5646,"children":5647},{"style":206},[5648],{"type":41,"value":5519},{"type":36,"tag":121,"props":5650,"children":5651},{"style":134},[5652],{"type":41,"value":255},{"type":36,"tag":121,"props":5654,"children":5655},{"style":145},[5656],{"type":41,"value":159},{"type":36,"tag":121,"props":5658,"children":5659},{"style":151},[5660],{"type":41,"value":5661},"onUserLeave",{"type":36,"tag":121,"props":5663,"children":5664},{"style":145},[5665],{"type":41,"value":159},{"type":36,"tag":121,"props":5667,"children":5668},{"style":145},[5669],{"type":41,"value":277},{"type":36,"tag":121,"props":5671,"children":5672},{"style":145},[5673],{"type":41,"value":568},{"type":36,"tag":121,"props":5675,"children":5676},{"style":258},[5677],{"type":41,"value":5549},{"type":36,"tag":121,"props":5679,"children":5680},{"style":145},[5681],{"type":41,"value":312},{"type":36,"tag":121,"props":5683,"children":5684},{"style":181},[5685],{"type":41,"value":2691},{"type":36,"tag":121,"props":5687,"children":5688},{"style":145},[5689],{"type":41,"value":317},{"type":36,"tag":121,"props":5691,"children":5692},{"class":123,"line":375},[5693,5697,5701,5705,5709,5713,5718,5722,5726,5730,5734],{"type":36,"tag":121,"props":5694,"children":5695},{"style":134},[5696],{"type":41,"value":5569},{"type":36,"tag":121,"props":5698,"children":5699},{"style":145},[5700],{"type":41,"value":82},{"type":36,"tag":121,"props":5702,"children":5703},{"style":206},[5704],{"type":41,"value":2484},{"type":36,"tag":121,"props":5706,"children":5707},{"style":349},[5708],{"type":41,"value":255},{"type":36,"tag":121,"props":5710,"children":5711},{"style":145},[5712],{"type":41,"value":159},{"type":36,"tag":121,"props":5714,"children":5715},{"style":151},[5716],{"type":41,"value":5717},"User left:",{"type":36,"tag":121,"props":5719,"children":5720},{"style":145},[5721],{"type":41,"value":159},{"type":36,"tag":121,"props":5723,"children":5724},{"style":145},[5725],{"type":41,"value":277},{"type":36,"tag":121,"props":5727,"children":5728},{"style":134},[5729],{"type":41,"value":5603},{"type":36,"tag":121,"props":5731,"children":5732},{"style":349},[5733],{"type":41,"value":312},{"type":36,"tag":121,"props":5735,"children":5736},{"style":145},[5737],{"type":41,"value":164},{"type":36,"tag":121,"props":5739,"children":5740},{"class":123,"line":406},[5741],{"type":36,"tag":121,"props":5742,"children":5743},{"style":2019},[5744],{"type":41,"value":5745},"  \u002F\u002F data.reasonCode values:\n",{"type":36,"tag":121,"props":5747,"children":5748},{"class":123,"line":459},[5749],{"type":36,"tag":121,"props":5750,"children":5751},{"style":2019},[5752],{"type":41,"value":5753},"  \u002F\u002F 0: OTHER\n",{"type":36,"tag":121,"props":5755,"children":5756},{"class":123,"line":532},[5757],{"type":36,"tag":121,"props":5758,"children":5759},{"style":2019},[5760],{"type":41,"value":5761},"  \u002F\u002F 1: HOST_ENDED_MEETING\n",{"type":36,"tag":121,"props":5763,"children":5764},{"class":123,"line":549},[5765],{"type":36,"tag":121,"props":5766,"children":5767},{"style":2019},[5768],{"type":41,"value":5769},"  \u002F\u002F 2: SELF_LEAVE_FROM_IN_MEETING\n",{"type":36,"tag":121,"props":5771,"children":5772},{"class":123,"line":557},[5773],{"type":36,"tag":121,"props":5774,"children":5775},{"style":2019},[5776],{"type":41,"value":5777},"  \u002F\u002F 3: SELF_LEAVE_FROM_WAITING_ROOM\n",{"type":36,"tag":121,"props":5779,"children":5780},{"class":123,"line":655},[5781],{"type":36,"tag":121,"props":5782,"children":5783},{"style":2019},[5784],{"type":41,"value":5785},"  \u002F\u002F 4: SELF_LEAVE_FROM_WAITING_FOR_HOST_START\n",{"type":36,"tag":121,"props":5787,"children":5788},{"class":123,"line":663},[5789],{"type":36,"tag":121,"props":5790,"children":5791},{"style":2019},[5792],{"type":41,"value":5793},"  \u002F\u002F 5: MEETING_TRANSFER\n",{"type":36,"tag":121,"props":5795,"children":5796},{"class":123,"line":722},[5797],{"type":36,"tag":121,"props":5798,"children":5799},{"style":2019},[5800],{"type":41,"value":5801},"  \u002F\u002F 6: KICK_OUT_FROM_MEETING\n",{"type":36,"tag":121,"props":5803,"children":5804},{"class":123,"line":730},[5805],{"type":36,"tag":121,"props":5806,"children":5807},{"style":2019},[5808],{"type":41,"value":5809},"  \u002F\u002F 7: KICK_OUT_FROM_WAITING_ROOM\n",{"type":36,"tag":121,"props":5811,"children":5812},{"class":123,"line":762},[5813],{"type":36,"tag":121,"props":5814,"children":5815},{"style":2019},[5816],{"type":41,"value":5817},"  \u002F\u002F 8: LEAVE_FROM_DISCLAIMER\n",{"type":36,"tag":121,"props":5819,"children":5820},{"class":123,"line":815},[5821,5825,5829],{"type":36,"tag":121,"props":5822,"children":5823},{"style":145},[5824],{"type":41,"value":3575},{"type":36,"tag":121,"props":5826,"children":5827},{"style":134},[5828],{"type":41,"value":312},{"type":36,"tag":121,"props":5830,"children":5831},{"style":145},[5832],{"type":41,"value":164},{"type":36,"tag":121,"props":5834,"children":5835},{"class":123,"line":845},[5836],{"type":36,"tag":121,"props":5837,"children":5838},{"emptyLinePlaceholder":171},[5839],{"type":41,"value":174},{"type":36,"tag":121,"props":5841,"children":5842},{"class":123,"line":868},[5843,5847,5851,5855,5859,5863,5868,5872,5876,5880,5884,5888,5892],{"type":36,"tag":121,"props":5844,"children":5845},{"style":134},[5846],{"type":41,"value":1690},{"type":36,"tag":121,"props":5848,"children":5849},{"style":145},[5850],{"type":41,"value":82},{"type":36,"tag":121,"props":5852,"children":5853},{"style":206},[5854],{"type":41,"value":5519},{"type":36,"tag":121,"props":5856,"children":5857},{"style":134},[5858],{"type":41,"value":255},{"type":36,"tag":121,"props":5860,"children":5861},{"style":145},[5862],{"type":41,"value":159},{"type":36,"tag":121,"props":5864,"children":5865},{"style":151},[5866],{"type":41,"value":5867},"onUserUpdate",{"type":36,"tag":121,"props":5869,"children":5870},{"style":145},[5871],{"type":41,"value":159},{"type":36,"tag":121,"props":5873,"children":5874},{"style":145},[5875],{"type":41,"value":277},{"type":36,"tag":121,"props":5877,"children":5878},{"style":145},[5879],{"type":41,"value":568},{"type":36,"tag":121,"props":5881,"children":5882},{"style":258},[5883],{"type":41,"value":5549},{"type":36,"tag":121,"props":5885,"children":5886},{"style":145},[5887],{"type":41,"value":312},{"type":36,"tag":121,"props":5889,"children":5890},{"style":181},[5891],{"type":41,"value":2691},{"type":36,"tag":121,"props":5893,"children":5894},{"style":145},[5895],{"type":41,"value":317},{"type":36,"tag":121,"props":5897,"children":5898},{"class":123,"line":889},[5899,5903,5907,5911,5915,5919,5924,5928,5932,5936,5940],{"type":36,"tag":121,"props":5900,"children":5901},{"style":134},[5902],{"type":41,"value":5569},{"type":36,"tag":121,"props":5904,"children":5905},{"style":145},[5906],{"type":41,"value":82},{"type":36,"tag":121,"props":5908,"children":5909},{"style":206},[5910],{"type":41,"value":2484},{"type":36,"tag":121,"props":5912,"children":5913},{"style":349},[5914],{"type":41,"value":255},{"type":36,"tag":121,"props":5916,"children":5917},{"style":145},[5918],{"type":41,"value":159},{"type":36,"tag":121,"props":5920,"children":5921},{"style":151},[5922],{"type":41,"value":5923},"User updated:",{"type":36,"tag":121,"props":5925,"children":5926},{"style":145},[5927],{"type":41,"value":159},{"type":36,"tag":121,"props":5929,"children":5930},{"style":145},[5931],{"type":41,"value":277},{"type":36,"tag":121,"props":5933,"children":5934},{"style":134},[5935],{"type":41,"value":5603},{"type":36,"tag":121,"props":5937,"children":5938},{"style":349},[5939],{"type":41,"value":312},{"type":36,"tag":121,"props":5941,"children":5942},{"style":145},[5943],{"type":41,"value":164},{"type":36,"tag":121,"props":5945,"children":5946},{"class":123,"line":906},[5947,5951,5955],{"type":36,"tag":121,"props":5948,"children":5949},{"style":145},[5950],{"type":41,"value":3575},{"type":36,"tag":121,"props":5952,"children":5953},{"style":134},[5954],{"type":41,"value":312},{"type":36,"tag":121,"props":5956,"children":5957},{"style":145},[5958],{"type":41,"value":164},{"type":36,"tag":121,"props":5960,"children":5961},{"class":123,"line":975},[5962],{"type":36,"tag":121,"props":5963,"children":5964},{"emptyLinePlaceholder":171},[5965],{"type":41,"value":174},{"type":36,"tag":121,"props":5967,"children":5968},{"class":123,"line":984},[5969],{"type":36,"tag":121,"props":5970,"children":5971},{"style":2019},[5972],{"type":41,"value":5973},"\u002F\u002F Meeting status\n",{"type":36,"tag":121,"props":5975,"children":5976},{"class":123,"line":1000},[5977,5981,5985,5989,5993,5997,6002,6006,6010,6014,6018,6022,6026],{"type":36,"tag":121,"props":5978,"children":5979},{"style":134},[5980],{"type":41,"value":1690},{"type":36,"tag":121,"props":5982,"children":5983},{"style":145},[5984],{"type":41,"value":82},{"type":36,"tag":121,"props":5986,"children":5987},{"style":206},[5988],{"type":41,"value":5519},{"type":36,"tag":121,"props":5990,"children":5991},{"style":134},[5992],{"type":41,"value":255},{"type":36,"tag":121,"props":5994,"children":5995},{"style":145},[5996],{"type":41,"value":159},{"type":36,"tag":121,"props":5998,"children":5999},{"style":151},[6000],{"type":41,"value":6001},"onMeetingStatus",{"type":36,"tag":121,"props":6003,"children":6004},{"style":145},[6005],{"type":41,"value":159},{"type":36,"tag":121,"props":6007,"children":6008},{"style":145},[6009],{"type":41,"value":277},{"type":36,"tag":121,"props":6011,"children":6012},{"style":145},[6013],{"type":41,"value":568},{"type":36,"tag":121,"props":6015,"children":6016},{"style":258},[6017],{"type":41,"value":5549},{"type":36,"tag":121,"props":6019,"children":6020},{"style":145},[6021],{"type":41,"value":312},{"type":36,"tag":121,"props":6023,"children":6024},{"style":181},[6025],{"type":41,"value":2691},{"type":36,"tag":121,"props":6027,"children":6028},{"style":145},[6029],{"type":41,"value":317},{"type":36,"tag":121,"props":6031,"children":6032},{"class":123,"line":1008},[6033],{"type":36,"tag":121,"props":6034,"children":6035},{"style":2019},[6036],{"type":41,"value":6037},"  \u002F\u002F status: 1=connecting, 2=connected, 3=disconnected, 4=reconnecting\n",{"type":36,"tag":121,"props":6039,"children":6040},{"class":123,"line":1037},[6041,6045,6049,6053,6057,6061,6066,6070,6074,6078,6082,6086,6090],{"type":36,"tag":121,"props":6042,"children":6043},{"style":134},[6044],{"type":41,"value":5569},{"type":36,"tag":121,"props":6046,"children":6047},{"style":145},[6048],{"type":41,"value":82},{"type":36,"tag":121,"props":6050,"children":6051},{"style":206},[6052],{"type":41,"value":2484},{"type":36,"tag":121,"props":6054,"children":6055},{"style":349},[6056],{"type":41,"value":255},{"type":36,"tag":121,"props":6058,"children":6059},{"style":145},[6060],{"type":41,"value":159},{"type":36,"tag":121,"props":6062,"children":6063},{"style":151},[6064],{"type":41,"value":6065},"Meeting status:",{"type":36,"tag":121,"props":6067,"children":6068},{"style":145},[6069],{"type":41,"value":159},{"type":36,"tag":121,"props":6071,"children":6072},{"style":145},[6073],{"type":41,"value":277},{"type":36,"tag":121,"props":6075,"children":6076},{"style":134},[6077],{"type":41,"value":5603},{"type":36,"tag":121,"props":6079,"children":6080},{"style":145},[6081],{"type":41,"value":82},{"type":36,"tag":121,"props":6083,"children":6084},{"style":134},[6085],{"type":41,"value":639},{"type":36,"tag":121,"props":6087,"children":6088},{"style":349},[6089],{"type":41,"value":312},{"type":36,"tag":121,"props":6091,"children":6092},{"style":145},[6093],{"type":41,"value":164},{"type":36,"tag":121,"props":6095,"children":6096},{"class":123,"line":1050},[6097,6101,6105],{"type":36,"tag":121,"props":6098,"children":6099},{"style":145},[6100],{"type":41,"value":3575},{"type":36,"tag":121,"props":6102,"children":6103},{"style":134},[6104],{"type":41,"value":312},{"type":36,"tag":121,"props":6106,"children":6107},{"style":145},[6108],{"type":41,"value":164},{"type":36,"tag":121,"props":6110,"children":6111},{"class":123,"line":1063},[6112],{"type":36,"tag":121,"props":6113,"children":6114},{"emptyLinePlaceholder":171},[6115],{"type":41,"value":174},{"type":36,"tag":121,"props":6117,"children":6118},{"class":123,"line":1076},[6119],{"type":36,"tag":121,"props":6120,"children":6121},{"style":2019},[6122],{"type":41,"value":6123},"\u002F\u002F Waiting room\n",{"type":36,"tag":121,"props":6125,"children":6126},{"class":123,"line":1089},[6127,6131,6135,6139,6143,6147,6152,6156,6160,6164,6168,6172,6176],{"type":36,"tag":121,"props":6128,"children":6129},{"style":134},[6130],{"type":41,"value":1690},{"type":36,"tag":121,"props":6132,"children":6133},{"style":145},[6134],{"type":41,"value":82},{"type":36,"tag":121,"props":6136,"children":6137},{"style":206},[6138],{"type":41,"value":5519},{"type":36,"tag":121,"props":6140,"children":6141},{"style":134},[6142],{"type":41,"value":255},{"type":36,"tag":121,"props":6144,"children":6145},{"style":145},[6146],{"type":41,"value":159},{"type":36,"tag":121,"props":6148,"children":6149},{"style":151},[6150],{"type":41,"value":6151},"onUserIsInWaitingRoom",{"type":36,"tag":121,"props":6153,"children":6154},{"style":145},[6155],{"type":41,"value":159},{"type":36,"tag":121,"props":6157,"children":6158},{"style":145},[6159],{"type":41,"value":277},{"type":36,"tag":121,"props":6161,"children":6162},{"style":145},[6163],{"type":41,"value":568},{"type":36,"tag":121,"props":6165,"children":6166},{"style":258},[6167],{"type":41,"value":5549},{"type":36,"tag":121,"props":6169,"children":6170},{"style":145},[6171],{"type":41,"value":312},{"type":36,"tag":121,"props":6173,"children":6174},{"style":181},[6175],{"type":41,"value":2691},{"type":36,"tag":121,"props":6177,"children":6178},{"style":145},[6179],{"type":41,"value":317},{"type":36,"tag":121,"props":6181,"children":6182},{"class":123,"line":1102},[6183,6187,6191,6195,6199,6203,6208,6212,6216,6220,6224],{"type":36,"tag":121,"props":6184,"children":6185},{"style":134},[6186],{"type":41,"value":5569},{"type":36,"tag":121,"props":6188,"children":6189},{"style":145},[6190],{"type":41,"value":82},{"type":36,"tag":121,"props":6192,"children":6193},{"style":206},[6194],{"type":41,"value":2484},{"type":36,"tag":121,"props":6196,"children":6197},{"style":349},[6198],{"type":41,"value":255},{"type":36,"tag":121,"props":6200,"children":6201},{"style":145},[6202],{"type":41,"value":159},{"type":36,"tag":121,"props":6204,"children":6205},{"style":151},[6206],{"type":41,"value":6207},"User in waiting room:",{"type":36,"tag":121,"props":6209,"children":6210},{"style":145},[6211],{"type":41,"value":159},{"type":36,"tag":121,"props":6213,"children":6214},{"style":145},[6215],{"type":41,"value":277},{"type":36,"tag":121,"props":6217,"children":6218},{"style":134},[6219],{"type":41,"value":5603},{"type":36,"tag":121,"props":6221,"children":6222},{"style":349},[6223],{"type":41,"value":312},{"type":36,"tag":121,"props":6225,"children":6226},{"style":145},[6227],{"type":41,"value":164},{"type":36,"tag":121,"props":6229,"children":6230},{"class":123,"line":1118},[6231,6235,6239],{"type":36,"tag":121,"props":6232,"children":6233},{"style":145},[6234],{"type":41,"value":3575},{"type":36,"tag":121,"props":6236,"children":6237},{"style":134},[6238],{"type":41,"value":312},{"type":36,"tag":121,"props":6240,"children":6241},{"style":145},[6242],{"type":41,"value":164},{"type":36,"tag":121,"props":6244,"children":6245},{"class":123,"line":3201},[6246],{"type":36,"tag":121,"props":6247,"children":6248},{"emptyLinePlaceholder":171},[6249],{"type":41,"value":174},{"type":36,"tag":121,"props":6251,"children":6252},{"class":123,"line":3226},[6253],{"type":36,"tag":121,"props":6254,"children":6255},{"style":2019},[6256],{"type":41,"value":6257},"\u002F\u002F Active speaker detection\n",{"type":36,"tag":121,"props":6259,"children":6260},{"class":123,"line":3316},[6261,6265,6269,6273,6277,6281,6286,6290,6294,6298,6302,6306,6310],{"type":36,"tag":121,"props":6262,"children":6263},{"style":134},[6264],{"type":41,"value":1690},{"type":36,"tag":121,"props":6266,"children":6267},{"style":145},[6268],{"type":41,"value":82},{"type":36,"tag":121,"props":6270,"children":6271},{"style":206},[6272],{"type":41,"value":5519},{"type":36,"tag":121,"props":6274,"children":6275},{"style":134},[6276],{"type":41,"value":255},{"type":36,"tag":121,"props":6278,"children":6279},{"style":145},[6280],{"type":41,"value":159},{"type":36,"tag":121,"props":6282,"children":6283},{"style":151},[6284],{"type":41,"value":6285},"onActiveSpeaker",{"type":36,"tag":121,"props":6287,"children":6288},{"style":145},[6289],{"type":41,"value":159},{"type":36,"tag":121,"props":6291,"children":6292},{"style":145},[6293],{"type":41,"value":277},{"type":36,"tag":121,"props":6295,"children":6296},{"style":145},[6297],{"type":41,"value":568},{"type":36,"tag":121,"props":6299,"children":6300},{"style":258},[6301],{"type":41,"value":5549},{"type":36,"tag":121,"props":6303,"children":6304},{"style":145},[6305],{"type":41,"value":312},{"type":36,"tag":121,"props":6307,"children":6308},{"style":181},[6309],{"type":41,"value":2691},{"type":36,"tag":121,"props":6311,"children":6312},{"style":145},[6313],{"type":41,"value":317},{"type":36,"tag":121,"props":6315,"children":6316},{"class":123,"line":3333},[6317],{"type":36,"tag":121,"props":6318,"children":6319},{"style":2019},[6320],{"type":41,"value":6321},"  \u002F\u002F [{userId: number, userName: string}]\n",{"type":36,"tag":121,"props":6323,"children":6324},{"class":123,"line":3342},[6325,6329,6333,6337,6341,6345,6350,6354,6358,6362,6366],{"type":36,"tag":121,"props":6326,"children":6327},{"style":134},[6328],{"type":41,"value":5569},{"type":36,"tag":121,"props":6330,"children":6331},{"style":145},[6332],{"type":41,"value":82},{"type":36,"tag":121,"props":6334,"children":6335},{"style":206},[6336],{"type":41,"value":2484},{"type":36,"tag":121,"props":6338,"children":6339},{"style":349},[6340],{"type":41,"value":255},{"type":36,"tag":121,"props":6342,"children":6343},{"style":145},[6344],{"type":41,"value":159},{"type":36,"tag":121,"props":6346,"children":6347},{"style":151},[6348],{"type":41,"value":6349},"Active speaker:",{"type":36,"tag":121,"props":6351,"children":6352},{"style":145},[6353],{"type":41,"value":159},{"type":36,"tag":121,"props":6355,"children":6356},{"style":145},[6357],{"type":41,"value":277},{"type":36,"tag":121,"props":6359,"children":6360},{"style":134},[6361],{"type":41,"value":5603},{"type":36,"tag":121,"props":6363,"children":6364},{"style":349},[6365],{"type":41,"value":312},{"type":36,"tag":121,"props":6367,"children":6368},{"style":145},[6369],{"type":41,"value":164},{"type":36,"tag":121,"props":6371,"children":6372},{"class":123,"line":3376},[6373,6377,6381],{"type":36,"tag":121,"props":6374,"children":6375},{"style":145},[6376],{"type":41,"value":3575},{"type":36,"tag":121,"props":6378,"children":6379},{"style":134},[6380],{"type":41,"value":312},{"type":36,"tag":121,"props":6382,"children":6383},{"style":145},[6384],{"type":41,"value":164},{"type":36,"tag":121,"props":6386,"children":6387},{"class":123,"line":3427},[6388],{"type":36,"tag":121,"props":6389,"children":6390},{"emptyLinePlaceholder":171},[6391],{"type":41,"value":174},{"type":36,"tag":121,"props":6393,"children":6394},{"class":123,"line":3436},[6395],{"type":36,"tag":121,"props":6396,"children":6397},{"style":2019},[6398],{"type":41,"value":6399},"\u002F\u002F Network quality monitoring\n",{"type":36,"tag":121,"props":6401,"children":6402},{"class":123,"line":3453},[6403,6407,6411,6415,6419,6423,6428,6432,6436,6440,6444,6448,6452],{"type":36,"tag":121,"props":6404,"children":6405},{"style":134},[6406],{"type":41,"value":1690},{"type":36,"tag":121,"props":6408,"children":6409},{"style":145},[6410],{"type":41,"value":82},{"type":36,"tag":121,"props":6412,"children":6413},{"style":206},[6414],{"type":41,"value":5519},{"type":36,"tag":121,"props":6416,"children":6417},{"style":134},[6418],{"type":41,"value":255},{"type":36,"tag":121,"props":6420,"children":6421},{"style":145},[6422],{"type":41,"value":159},{"type":36,"tag":121,"props":6424,"children":6425},{"style":151},[6426],{"type":41,"value":6427},"onNetworkQualityChange",{"type":36,"tag":121,"props":6429,"children":6430},{"style":145},[6431],{"type":41,"value":159},{"type":36,"tag":121,"props":6433,"children":6434},{"style":145},[6435],{"type":41,"value":277},{"type":36,"tag":121,"props":6437,"children":6438},{"style":145},[6439],{"type":41,"value":568},{"type":36,"tag":121,"props":6441,"children":6442},{"style":258},[6443],{"type":41,"value":5549},{"type":36,"tag":121,"props":6445,"children":6446},{"style":145},[6447],{"type":41,"value":312},{"type":36,"tag":121,"props":6449,"children":6450},{"style":181},[6451],{"type":41,"value":2691},{"type":36,"tag":121,"props":6453,"children":6454},{"style":145},[6455],{"type":41,"value":317},{"type":36,"tag":121,"props":6457,"children":6458},{"class":123,"line":3461},[6459],{"type":36,"tag":121,"props":6460,"children":6461},{"style":2019},[6462],{"type":41,"value":6463},"  \u002F\u002F {level: 0-5, userId, type: 'uplink'}\n",{"type":36,"tag":121,"props":6465,"children":6466},{"class":123,"line":3494},[6467],{"type":36,"tag":121,"props":6468,"children":6469},{"style":2019},[6470],{"type":41,"value":6471},"  \u002F\u002F 0-1 = bad, 2 = normal, 3-5 = good\n",{"type":36,"tag":121,"props":6473,"children":6474},{"class":123,"line":3544},[6475,6479,6483,6487,6491,6496,6501,6506,6510],{"type":36,"tag":121,"props":6476,"children":6477},{"style":128},[6478],{"type":41,"value":563},{"type":36,"tag":121,"props":6480,"children":6481},{"style":349},[6482],{"type":41,"value":568},{"type":36,"tag":121,"props":6484,"children":6485},{"style":134},[6486],{"type":41,"value":5549},{"type":36,"tag":121,"props":6488,"children":6489},{"style":145},[6490],{"type":41,"value":82},{"type":36,"tag":121,"props":6492,"children":6493},{"style":134},[6494],{"type":41,"value":6495},"level",{"type":36,"tag":121,"props":6497,"children":6498},{"style":145},[6499],{"type":41,"value":6500}," \u003C=",{"type":36,"tag":121,"props":6502,"children":6503},{"style":513},[6504],{"type":41,"value":6505}," 1",{"type":36,"tag":121,"props":6507,"children":6508},{"style":349},[6509],{"type":41,"value":592},{"type":36,"tag":121,"props":6511,"children":6512},{"style":145},[6513],{"type":41,"value":759},{"type":36,"tag":121,"props":6515,"children":6516},{"class":123,"line":3553},[6517,6521,6525,6529,6533,6537,6542,6546,6550],{"type":36,"tag":121,"props":6518,"children":6519},{"style":134},[6520],{"type":41,"value":4131},{"type":36,"tag":121,"props":6522,"children":6523},{"style":145},[6524],{"type":41,"value":82},{"type":36,"tag":121,"props":6526,"children":6527},{"style":206},[6528],{"type":41,"value":1580},{"type":36,"tag":121,"props":6530,"children":6531},{"style":349},[6532],{"type":41,"value":255},{"type":36,"tag":121,"props":6534,"children":6535},{"style":145},[6536],{"type":41,"value":159},{"type":36,"tag":121,"props":6538,"children":6539},{"style":151},[6540],{"type":41,"value":6541},"Poor network quality",{"type":36,"tag":121,"props":6543,"children":6544},{"style":145},[6545],{"type":41,"value":159},{"type":36,"tag":121,"props":6547,"children":6548},{"style":349},[6549],{"type":41,"value":312},{"type":36,"tag":121,"props":6551,"children":6552},{"style":145},[6553],{"type":41,"value":164},{"type":36,"tag":121,"props":6555,"children":6556},{"class":123,"line":3569},[6557],{"type":36,"tag":121,"props":6558,"children":6559},{"style":145},[6560],{"type":41,"value":4249},{"type":36,"tag":121,"props":6562,"children":6564},{"class":123,"line":6563},48,[6565,6569,6573],{"type":36,"tag":121,"props":6566,"children":6567},{"style":145},[6568],{"type":41,"value":3575},{"type":36,"tag":121,"props":6570,"children":6571},{"style":134},[6572],{"type":41,"value":312},{"type":36,"tag":121,"props":6574,"children":6575},{"style":145},[6576],{"type":41,"value":164},{"type":36,"tag":121,"props":6578,"children":6580},{"class":123,"line":6579},49,[6581],{"type":36,"tag":121,"props":6582,"children":6583},{"emptyLinePlaceholder":171},[6584],{"type":41,"value":174},{"type":36,"tag":121,"props":6586,"children":6588},{"class":123,"line":6587},50,[6589],{"type":36,"tag":121,"props":6590,"children":6591},{"style":2019},[6592],{"type":41,"value":6593},"\u002F\u002F Join performance metrics\n",{"type":36,"tag":121,"props":6595,"children":6597},{"class":123,"line":6596},51,[6598,6602,6606,6610,6614,6618,6623,6627,6631,6635,6639,6643,6647],{"type":36,"tag":121,"props":6599,"children":6600},{"style":134},[6601],{"type":41,"value":1690},{"type":36,"tag":121,"props":6603,"children":6604},{"style":145},[6605],{"type":41,"value":82},{"type":36,"tag":121,"props":6607,"children":6608},{"style":206},[6609],{"type":41,"value":5519},{"type":36,"tag":121,"props":6611,"children":6612},{"style":134},[6613],{"type":41,"value":255},{"type":36,"tag":121,"props":6615,"children":6616},{"style":145},[6617],{"type":41,"value":159},{"type":36,"tag":121,"props":6619,"children":6620},{"style":151},[6621],{"type":41,"value":6622},"onJoinSpeed",{"type":36,"tag":121,"props":6624,"children":6625},{"style":145},[6626],{"type":41,"value":159},{"type":36,"tag":121,"props":6628,"children":6629},{"style":145},[6630],{"type":41,"value":277},{"type":36,"tag":121,"props":6632,"children":6633},{"style":145},[6634],{"type":41,"value":568},{"type":36,"tag":121,"props":6636,"children":6637},{"style":258},[6638],{"type":41,"value":5549},{"type":36,"tag":121,"props":6640,"children":6641},{"style":145},[6642],{"type":41,"value":312},{"type":36,"tag":121,"props":6644,"children":6645},{"style":181},[6646],{"type":41,"value":2691},{"type":36,"tag":121,"props":6648,"children":6649},{"style":145},[6650],{"type":41,"value":317},{"type":36,"tag":121,"props":6652,"children":6654},{"class":123,"line":6653},52,[6655,6659,6663,6667,6671,6675,6680,6684,6688,6692,6696],{"type":36,"tag":121,"props":6656,"children":6657},{"style":134},[6658],{"type":41,"value":5569},{"type":36,"tag":121,"props":6660,"children":6661},{"style":145},[6662],{"type":41,"value":82},{"type":36,"tag":121,"props":6664,"children":6665},{"style":206},[6666],{"type":41,"value":2484},{"type":36,"tag":121,"props":6668,"children":6669},{"style":349},[6670],{"type":41,"value":255},{"type":36,"tag":121,"props":6672,"children":6673},{"style":145},[6674],{"type":41,"value":159},{"type":36,"tag":121,"props":6676,"children":6677},{"style":151},[6678],{"type":41,"value":6679},"Join speed metrics:",{"type":36,"tag":121,"props":6681,"children":6682},{"style":145},[6683],{"type":41,"value":159},{"type":36,"tag":121,"props":6685,"children":6686},{"style":145},[6687],{"type":41,"value":277},{"type":36,"tag":121,"props":6689,"children":6690},{"style":134},[6691],{"type":41,"value":5603},{"type":36,"tag":121,"props":6693,"children":6694},{"style":349},[6695],{"type":41,"value":312},{"type":36,"tag":121,"props":6697,"children":6698},{"style":145},[6699],{"type":41,"value":164},{"type":36,"tag":121,"props":6701,"children":6703},{"class":123,"line":6702},53,[6704],{"type":36,"tag":121,"props":6705,"children":6706},{"style":2019},[6707],{"type":41,"value":6708},"  \u002F\u002F Useful for performance monitoring dashboards\n",{"type":36,"tag":121,"props":6710,"children":6712},{"class":123,"line":6711},54,[6713,6717,6721],{"type":36,"tag":121,"props":6714,"children":6715},{"style":145},[6716],{"type":41,"value":3575},{"type":36,"tag":121,"props":6718,"children":6719},{"style":134},[6720],{"type":41,"value":312},{"type":36,"tag":121,"props":6722,"children":6723},{"style":145},[6724],{"type":41,"value":164},{"type":36,"tag":121,"props":6726,"children":6728},{"class":123,"line":6727},55,[6729],{"type":36,"tag":121,"props":6730,"children":6731},{"emptyLinePlaceholder":171},[6732],{"type":41,"value":174},{"type":36,"tag":121,"props":6734,"children":6736},{"class":123,"line":6735},56,[6737],{"type":36,"tag":121,"props":6738,"children":6739},{"style":2019},[6740],{"type":41,"value":6741},"\u002F\u002F Chat\n",{"type":36,"tag":121,"props":6743,"children":6745},{"class":123,"line":6744},57,[6746,6750,6754,6758,6762,6766,6771,6775,6779,6783,6787,6791,6795],{"type":36,"tag":121,"props":6747,"children":6748},{"style":134},[6749],{"type":41,"value":1690},{"type":36,"tag":121,"props":6751,"children":6752},{"style":145},[6753],{"type":41,"value":82},{"type":36,"tag":121,"props":6755,"children":6756},{"style":206},[6757],{"type":41,"value":5519},{"type":36,"tag":121,"props":6759,"children":6760},{"style":134},[6761],{"type":41,"value":255},{"type":36,"tag":121,"props":6763,"children":6764},{"style":145},[6765],{"type":41,"value":159},{"type":36,"tag":121,"props":6767,"children":6768},{"style":151},[6769],{"type":41,"value":6770},"onReceiveChatMsg",{"type":36,"tag":121,"props":6772,"children":6773},{"style":145},[6774],{"type":41,"value":159},{"type":36,"tag":121,"props":6776,"children":6777},{"style":145},[6778],{"type":41,"value":277},{"type":36,"tag":121,"props":6780,"children":6781},{"style":145},[6782],{"type":41,"value":568},{"type":36,"tag":121,"props":6784,"children":6785},{"style":258},[6786],{"type":41,"value":5549},{"type":36,"tag":121,"props":6788,"children":6789},{"style":145},[6790],{"type":41,"value":312},{"type":36,"tag":121,"props":6792,"children":6793},{"style":181},[6794],{"type":41,"value":2691},{"type":36,"tag":121,"props":6796,"children":6797},{"style":145},[6798],{"type":41,"value":317},{"type":36,"tag":121,"props":6800,"children":6802},{"class":123,"line":6801},58,[6803,6807,6811,6815,6819,6823,6828,6832,6836,6840,6844],{"type":36,"tag":121,"props":6804,"children":6805},{"style":134},[6806],{"type":41,"value":5569},{"type":36,"tag":121,"props":6808,"children":6809},{"style":145},[6810],{"type":41,"value":82},{"type":36,"tag":121,"props":6812,"children":6813},{"style":206},[6814],{"type":41,"value":2484},{"type":36,"tag":121,"props":6816,"children":6817},{"style":349},[6818],{"type":41,"value":255},{"type":36,"tag":121,"props":6820,"children":6821},{"style":145},[6822],{"type":41,"value":159},{"type":36,"tag":121,"props":6824,"children":6825},{"style":151},[6826],{"type":41,"value":6827},"Chat message:",{"type":36,"tag":121,"props":6829,"children":6830},{"style":145},[6831],{"type":41,"value":159},{"type":36,"tag":121,"props":6833,"children":6834},{"style":145},[6835],{"type":41,"value":277},{"type":36,"tag":121,"props":6837,"children":6838},{"style":134},[6839],{"type":41,"value":5603},{"type":36,"tag":121,"props":6841,"children":6842},{"style":349},[6843],{"type":41,"value":312},{"type":36,"tag":121,"props":6845,"children":6846},{"style":145},[6847],{"type":41,"value":164},{"type":36,"tag":121,"props":6849,"children":6851},{"class":123,"line":6850},59,[6852,6856,6860],{"type":36,"tag":121,"props":6853,"children":6854},{"style":145},[6855],{"type":41,"value":3575},{"type":36,"tag":121,"props":6857,"children":6858},{"style":134},[6859],{"type":41,"value":312},{"type":36,"tag":121,"props":6861,"children":6862},{"style":145},[6863],{"type":41,"value":164},{"type":36,"tag":121,"props":6865,"children":6867},{"class":123,"line":6866},60,[6868],{"type":36,"tag":121,"props":6869,"children":6870},{"emptyLinePlaceholder":171},[6871],{"type":41,"value":174},{"type":36,"tag":121,"props":6873,"children":6875},{"class":123,"line":6874},61,[6876],{"type":36,"tag":121,"props":6877,"children":6878},{"style":2019},[6879],{"type":41,"value":6880},"\u002F\u002F Recording\n",{"type":36,"tag":121,"props":6882,"children":6884},{"class":123,"line":6883},62,[6885,6889,6893,6897,6901,6905,6910,6914,6918,6922,6926,6930,6934],{"type":36,"tag":121,"props":6886,"children":6887},{"style":134},[6888],{"type":41,"value":1690},{"type":36,"tag":121,"props":6890,"children":6891},{"style":145},[6892],{"type":41,"value":82},{"type":36,"tag":121,"props":6894,"children":6895},{"style":206},[6896],{"type":41,"value":5519},{"type":36,"tag":121,"props":6898,"children":6899},{"style":134},[6900],{"type":41,"value":255},{"type":36,"tag":121,"props":6902,"children":6903},{"style":145},[6904],{"type":41,"value":159},{"type":36,"tag":121,"props":6906,"children":6907},{"style":151},[6908],{"type":41,"value":6909},"onRecordingChange",{"type":36,"tag":121,"props":6911,"children":6912},{"style":145},[6913],{"type":41,"value":159},{"type":36,"tag":121,"props":6915,"children":6916},{"style":145},[6917],{"type":41,"value":277},{"type":36,"tag":121,"props":6919,"children":6920},{"style":145},[6921],{"type":41,"value":568},{"type":36,"tag":121,"props":6923,"children":6924},{"style":258},[6925],{"type":41,"value":5549},{"type":36,"tag":121,"props":6927,"children":6928},{"style":145},[6929],{"type":41,"value":312},{"type":36,"tag":121,"props":6931,"children":6932},{"style":181},[6933],{"type":41,"value":2691},{"type":36,"tag":121,"props":6935,"children":6936},{"style":145},[6937],{"type":41,"value":317},{"type":36,"tag":121,"props":6939,"children":6941},{"class":123,"line":6940},63,[6942,6946,6950,6954,6958,6962,6967,6971,6975,6979,6983],{"type":36,"tag":121,"props":6943,"children":6944},{"style":134},[6945],{"type":41,"value":5569},{"type":36,"tag":121,"props":6947,"children":6948},{"style":145},[6949],{"type":41,"value":82},{"type":36,"tag":121,"props":6951,"children":6952},{"style":206},[6953],{"type":41,"value":2484},{"type":36,"tag":121,"props":6955,"children":6956},{"style":349},[6957],{"type":41,"value":255},{"type":36,"tag":121,"props":6959,"children":6960},{"style":145},[6961],{"type":41,"value":159},{"type":36,"tag":121,"props":6963,"children":6964},{"style":151},[6965],{"type":41,"value":6966},"Recording status:",{"type":36,"tag":121,"props":6968,"children":6969},{"style":145},[6970],{"type":41,"value":159},{"type":36,"tag":121,"props":6972,"children":6973},{"style":145},[6974],{"type":41,"value":277},{"type":36,"tag":121,"props":6976,"children":6977},{"style":134},[6978],{"type":41,"value":5603},{"type":36,"tag":121,"props":6980,"children":6981},{"style":349},[6982],{"type":41,"value":312},{"type":36,"tag":121,"props":6984,"children":6985},{"style":145},[6986],{"type":41,"value":164},{"type":36,"tag":121,"props":6988,"children":6990},{"class":123,"line":6989},64,[6991,6995,6999],{"type":36,"tag":121,"props":6992,"children":6993},{"style":145},[6994],{"type":41,"value":3575},{"type":36,"tag":121,"props":6996,"children":6997},{"style":134},[6998],{"type":41,"value":312},{"type":36,"tag":121,"props":7000,"children":7001},{"style":145},[7002],{"type":41,"value":164},{"type":36,"tag":121,"props":7004,"children":7006},{"class":123,"line":7005},65,[7007],{"type":36,"tag":121,"props":7008,"children":7009},{"emptyLinePlaceholder":171},[7010],{"type":41,"value":174},{"type":36,"tag":121,"props":7012,"children":7014},{"class":123,"line":7013},66,[7015],{"type":36,"tag":121,"props":7016,"children":7017},{"style":2019},[7018],{"type":41,"value":7019},"\u002F\u002F Screen sharing\n",{"type":36,"tag":121,"props":7021,"children":7023},{"class":123,"line":7022},67,[7024,7028,7032,7036,7040,7044,7049,7053,7057,7061,7065,7069,7073],{"type":36,"tag":121,"props":7025,"children":7026},{"style":134},[7027],{"type":41,"value":1690},{"type":36,"tag":121,"props":7029,"children":7030},{"style":145},[7031],{"type":41,"value":82},{"type":36,"tag":121,"props":7033,"children":7034},{"style":206},[7035],{"type":41,"value":5519},{"type":36,"tag":121,"props":7037,"children":7038},{"style":134},[7039],{"type":41,"value":255},{"type":36,"tag":121,"props":7041,"children":7042},{"style":145},[7043],{"type":41,"value":159},{"type":36,"tag":121,"props":7045,"children":7046},{"style":151},[7047],{"type":41,"value":7048},"onShareContentChange",{"type":36,"tag":121,"props":7050,"children":7051},{"style":145},[7052],{"type":41,"value":159},{"type":36,"tag":121,"props":7054,"children":7055},{"style":145},[7056],{"type":41,"value":277},{"type":36,"tag":121,"props":7058,"children":7059},{"style":145},[7060],{"type":41,"value":568},{"type":36,"tag":121,"props":7062,"children":7063},{"style":258},[7064],{"type":41,"value":5549},{"type":36,"tag":121,"props":7066,"children":7067},{"style":145},[7068],{"type":41,"value":312},{"type":36,"tag":121,"props":7070,"children":7071},{"style":181},[7072],{"type":41,"value":2691},{"type":36,"tag":121,"props":7074,"children":7075},{"style":145},[7076],{"type":41,"value":317},{"type":36,"tag":121,"props":7078,"children":7080},{"class":123,"line":7079},68,[7081,7085,7089,7093,7097,7101,7106,7110,7114,7118,7122],{"type":36,"tag":121,"props":7082,"children":7083},{"style":134},[7084],{"type":41,"value":5569},{"type":36,"tag":121,"props":7086,"children":7087},{"style":145},[7088],{"type":41,"value":82},{"type":36,"tag":121,"props":7090,"children":7091},{"style":206},[7092],{"type":41,"value":2484},{"type":36,"tag":121,"props":7094,"children":7095},{"style":349},[7096],{"type":41,"value":255},{"type":36,"tag":121,"props":7098,"children":7099},{"style":145},[7100],{"type":41,"value":159},{"type":36,"tag":121,"props":7102,"children":7103},{"style":151},[7104],{"type":41,"value":7105},"Share content changed:",{"type":36,"tag":121,"props":7107,"children":7108},{"style":145},[7109],{"type":41,"value":159},{"type":36,"tag":121,"props":7111,"children":7112},{"style":145},[7113],{"type":41,"value":277},{"type":36,"tag":121,"props":7115,"children":7116},{"style":134},[7117],{"type":41,"value":5603},{"type":36,"tag":121,"props":7119,"children":7120},{"style":349},[7121],{"type":41,"value":312},{"type":36,"tag":121,"props":7123,"children":7124},{"style":145},[7125],{"type":41,"value":164},{"type":36,"tag":121,"props":7127,"children":7129},{"class":123,"line":7128},69,[7130,7134,7138],{"type":36,"tag":121,"props":7131,"children":7132},{"style":145},[7133],{"type":41,"value":3575},{"type":36,"tag":121,"props":7135,"children":7136},{"style":134},[7137],{"type":41,"value":312},{"type":36,"tag":121,"props":7139,"children":7140},{"style":145},[7141],{"type":41,"value":164},{"type":36,"tag":121,"props":7143,"children":7145},{"class":123,"line":7144},70,[7146],{"type":36,"tag":121,"props":7147,"children":7148},{"emptyLinePlaceholder":171},[7149],{"type":41,"value":174},{"type":36,"tag":121,"props":7151,"children":7153},{"class":123,"line":7152},71,[7154],{"type":36,"tag":121,"props":7155,"children":7156},{"style":2019},[7157],{"type":41,"value":7158},"\u002F\u002F Transcription (requires \"save closed captions\" enabled)\n",{"type":36,"tag":121,"props":7160,"children":7162},{"class":123,"line":7161},72,[7163,7167,7171,7175,7179,7183,7188,7192,7196,7200,7204,7208,7212],{"type":36,"tag":121,"props":7164,"children":7165},{"style":134},[7166],{"type":41,"value":1690},{"type":36,"tag":121,"props":7168,"children":7169},{"style":145},[7170],{"type":41,"value":82},{"type":36,"tag":121,"props":7172,"children":7173},{"style":206},[7174],{"type":41,"value":5519},{"type":36,"tag":121,"props":7176,"children":7177},{"style":134},[7178],{"type":41,"value":255},{"type":36,"tag":121,"props":7180,"children":7181},{"style":145},[7182],{"type":41,"value":159},{"type":36,"tag":121,"props":7184,"children":7185},{"style":151},[7186],{"type":41,"value":7187},"onReceiveTranscriptionMsg",{"type":36,"tag":121,"props":7189,"children":7190},{"style":145},[7191],{"type":41,"value":159},{"type":36,"tag":121,"props":7193,"children":7194},{"style":145},[7195],{"type":41,"value":277},{"type":36,"tag":121,"props":7197,"children":7198},{"style":145},[7199],{"type":41,"value":568},{"type":36,"tag":121,"props":7201,"children":7202},{"style":258},[7203],{"type":41,"value":5549},{"type":36,"tag":121,"props":7205,"children":7206},{"style":145},[7207],{"type":41,"value":312},{"type":36,"tag":121,"props":7209,"children":7210},{"style":181},[7211],{"type":41,"value":2691},{"type":36,"tag":121,"props":7213,"children":7214},{"style":145},[7215],{"type":41,"value":317},{"type":36,"tag":121,"props":7217,"children":7219},{"class":123,"line":7218},73,[7220,7224,7228,7232,7236,7240,7245,7249,7253,7257,7261],{"type":36,"tag":121,"props":7221,"children":7222},{"style":134},[7223],{"type":41,"value":5569},{"type":36,"tag":121,"props":7225,"children":7226},{"style":145},[7227],{"type":41,"value":82},{"type":36,"tag":121,"props":7229,"children":7230},{"style":206},[7231],{"type":41,"value":2484},{"type":36,"tag":121,"props":7233,"children":7234},{"style":349},[7235],{"type":41,"value":255},{"type":36,"tag":121,"props":7237,"children":7238},{"style":145},[7239],{"type":41,"value":159},{"type":36,"tag":121,"props":7241,"children":7242},{"style":151},[7243],{"type":41,"value":7244},"Transcription:",{"type":36,"tag":121,"props":7246,"children":7247},{"style":145},[7248],{"type":41,"value":159},{"type":36,"tag":121,"props":7250,"children":7251},{"style":145},[7252],{"type":41,"value":277},{"type":36,"tag":121,"props":7254,"children":7255},{"style":134},[7256],{"type":41,"value":5603},{"type":36,"tag":121,"props":7258,"children":7259},{"style":349},[7260],{"type":41,"value":312},{"type":36,"tag":121,"props":7262,"children":7263},{"style":145},[7264],{"type":41,"value":164},{"type":36,"tag":121,"props":7266,"children":7268},{"class":123,"line":7267},74,[7269,7273,7277],{"type":36,"tag":121,"props":7270,"children":7271},{"style":145},[7272],{"type":41,"value":3575},{"type":36,"tag":121,"props":7274,"children":7275},{"style":134},[7276],{"type":41,"value":312},{"type":36,"tag":121,"props":7278,"children":7279},{"style":145},[7280],{"type":41,"value":164},{"type":36,"tag":121,"props":7282,"children":7284},{"class":123,"line":7283},75,[7285],{"type":36,"tag":121,"props":7286,"children":7287},{"emptyLinePlaceholder":171},[7288],{"type":41,"value":174},{"type":36,"tag":121,"props":7290,"children":7292},{"class":123,"line":7291},76,[7293],{"type":36,"tag":121,"props":7294,"children":7295},{"style":2019},[7296],{"type":41,"value":7297},"\u002F\u002F Breakout room status\n",{"type":36,"tag":121,"props":7299,"children":7301},{"class":123,"line":7300},77,[7302,7306,7310,7314,7318,7322,7327,7331,7335,7339,7343,7347,7351],{"type":36,"tag":121,"props":7303,"children":7304},{"style":134},[7305],{"type":41,"value":1690},{"type":36,"tag":121,"props":7307,"children":7308},{"style":145},[7309],{"type":41,"value":82},{"type":36,"tag":121,"props":7311,"children":7312},{"style":206},[7313],{"type":41,"value":5519},{"type":36,"tag":121,"props":7315,"children":7316},{"style":134},[7317],{"type":41,"value":255},{"type":36,"tag":121,"props":7319,"children":7320},{"style":145},[7321],{"type":41,"value":159},{"type":36,"tag":121,"props":7323,"children":7324},{"style":151},[7325],{"type":41,"value":7326},"onRoomStatusChange",{"type":36,"tag":121,"props":7328,"children":7329},{"style":145},[7330],{"type":41,"value":159},{"type":36,"tag":121,"props":7332,"children":7333},{"style":145},[7334],{"type":41,"value":277},{"type":36,"tag":121,"props":7336,"children":7337},{"style":145},[7338],{"type":41,"value":568},{"type":36,"tag":121,"props":7340,"children":7341},{"style":258},[7342],{"type":41,"value":5549},{"type":36,"tag":121,"props":7344,"children":7345},{"style":145},[7346],{"type":41,"value":312},{"type":36,"tag":121,"props":7348,"children":7349},{"style":181},[7350],{"type":41,"value":2691},{"type":36,"tag":121,"props":7352,"children":7353},{"style":145},[7354],{"type":41,"value":317},{"type":36,"tag":121,"props":7356,"children":7358},{"class":123,"line":7357},78,[7359],{"type":36,"tag":121,"props":7360,"children":7361},{"style":2019},[7362],{"type":41,"value":7363},"  \u002F\u002F status: 2=InProgress, 3=Closing, 4=Closed\n",{"type":36,"tag":121,"props":7365,"children":7367},{"class":123,"line":7366},79,[7368,7372,7376,7380,7384,7388,7393,7397,7401,7405,7409],{"type":36,"tag":121,"props":7369,"children":7370},{"style":134},[7371],{"type":41,"value":5569},{"type":36,"tag":121,"props":7373,"children":7374},{"style":145},[7375],{"type":41,"value":82},{"type":36,"tag":121,"props":7377,"children":7378},{"style":206},[7379],{"type":41,"value":2484},{"type":36,"tag":121,"props":7381,"children":7382},{"style":349},[7383],{"type":41,"value":255},{"type":36,"tag":121,"props":7385,"children":7386},{"style":145},[7387],{"type":41,"value":159},{"type":36,"tag":121,"props":7389,"children":7390},{"style":151},[7391],{"type":41,"value":7392},"Breakout room status:",{"type":36,"tag":121,"props":7394,"children":7395},{"style":145},[7396],{"type":41,"value":159},{"type":36,"tag":121,"props":7398,"children":7399},{"style":145},[7400],{"type":41,"value":277},{"type":36,"tag":121,"props":7402,"children":7403},{"style":134},[7404],{"type":41,"value":5603},{"type":36,"tag":121,"props":7406,"children":7407},{"style":349},[7408],{"type":41,"value":312},{"type":36,"tag":121,"props":7410,"children":7411},{"style":145},[7412],{"type":41,"value":164},{"type":36,"tag":121,"props":7414,"children":7416},{"class":123,"line":7415},80,[7417,7421,7425],{"type":36,"tag":121,"props":7418,"children":7419},{"style":145},[7420],{"type":41,"value":3575},{"type":36,"tag":121,"props":7422,"children":7423},{"style":134},[7424],{"type":41,"value":312},{"type":36,"tag":121,"props":7426,"children":7427},{"style":145},[7428],{"type":41,"value":164},{"type":36,"tag":1893,"props":7430,"children":7432},{"id":7431},"common-methods-client-view",[7433],{"type":41,"value":7434},"Common Methods (Client View)",{"type":36,"tag":94,"props":7436,"children":7438},{"className":2404,"code":7437,"language":2406,"meta":99,"style":99},"\u002F\u002F Get current user info\nZoomMtg.getCurrentUser({\n  success: (res) => console.log(res.result.currentUser)\n});\n\n\u002F\u002F Get all attendees\nZoomMtg.getAttendeeslist({});\n\n\u002F\u002F Audio\u002FVideo control\nZoomMtg.mute({ userId, mute: true });\nZoomMtg.muteAll({ muteAll: true });\n\n\u002F\u002F Chat\nZoomMtg.sendChat({ message: 'Hello!', userId: 0 }); \u002F\u002F 0 = everyone\n\n\u002F\u002F Leave\u002FEnd\nZoomMtg.leaveMeeting({});\nZoomMtg.endMeeting({});\n\n\u002F\u002F Host controls\nZoomMtg.makeHost({ userId });\nZoomMtg.makeCoHost({ oderId });\nZoomMtg.expel({ userId });  \u002F\u002F Remove participant\nZoomMtg.putOnHold({ oderId, bHold: true });\n\n\u002F\u002F Breakout rooms\nZoomMtg.createBreakoutRoom({ rooms: [...] });\nZoomMtg.openBreakoutRooms({});\nZoomMtg.closeBreakoutRooms({});\n\n\u002F\u002F Virtual background\nZoomMtg.setVirtualBackground({ imageUrl: '...' });\n",[7439],{"type":36,"tag":102,"props":7440,"children":7441},{"__ignoreMap":99},[7442,7450,7473,7534,7549,7556,7564,7595,7602,7610,7668,7717,7724,7731,7811,7818,7826,7858,7890,7897,7905,7946,7987,8032,8090,8097,8105,8165,8197,8229,8236,8244],{"type":36,"tag":121,"props":7443,"children":7444},{"class":123,"line":124},[7445],{"type":36,"tag":121,"props":7446,"children":7447},{"style":2019},[7448],{"type":41,"value":7449},"\u002F\u002F Get current user info\n",{"type":36,"tag":121,"props":7451,"children":7452},{"class":123,"line":167},[7453,7457,7461,7465,7469],{"type":36,"tag":121,"props":7454,"children":7455},{"style":134},[7456],{"type":41,"value":1690},{"type":36,"tag":121,"props":7458,"children":7459},{"style":145},[7460],{"type":41,"value":82},{"type":36,"tag":121,"props":7462,"children":7463},{"style":206},[7464],{"type":41,"value":3215},{"type":36,"tag":121,"props":7466,"children":7467},{"style":134},[7468],{"type":41,"value":255},{"type":36,"tag":121,"props":7470,"children":7471},{"style":145},[7472],{"type":41,"value":759},{"type":36,"tag":121,"props":7474,"children":7475},{"class":123,"line":177},[7476,7480,7484,7488,7492,7496,7500,7504,7508,7512,7517,7521,7525,7529],{"type":36,"tag":121,"props":7477,"children":7478},{"style":206},[7479],{"type":41,"value":5068},{"type":36,"tag":121,"props":7481,"children":7482},{"style":145},[7483],{"type":41,"value":266},{"type":36,"tag":121,"props":7485,"children":7486},{"style":145},[7487],{"type":41,"value":568},{"type":36,"tag":121,"props":7489,"children":7490},{"style":258},[7491],{"type":41,"value":3087},{"type":36,"tag":121,"props":7493,"children":7494},{"style":145},[7495],{"type":41,"value":312},{"type":36,"tag":121,"props":7497,"children":7498},{"style":181},[7499],{"type":41,"value":2691},{"type":36,"tag":121,"props":7501,"children":7502},{"style":134},[7503],{"type":41,"value":3257},{"type":36,"tag":121,"props":7505,"children":7506},{"style":145},[7507],{"type":41,"value":82},{"type":36,"tag":121,"props":7509,"children":7510},{"style":206},[7511],{"type":41,"value":2484},{"type":36,"tag":121,"props":7513,"children":7514},{"style":134},[7515],{"type":41,"value":7516},"(res",{"type":36,"tag":121,"props":7518,"children":7519},{"style":145},[7520],{"type":41,"value":82},{"type":36,"tag":121,"props":7522,"children":7523},{"style":134},[7524],{"type":41,"value":3299},{"type":36,"tag":121,"props":7526,"children":7527},{"style":145},[7528],{"type":41,"value":82},{"type":36,"tag":121,"props":7530,"children":7531},{"style":134},[7532],{"type":41,"value":7533},"currentUser)\n",{"type":36,"tag":121,"props":7535,"children":7536},{"class":123,"line":221},[7537,7541,7545],{"type":36,"tag":121,"props":7538,"children":7539},{"style":145},[7540],{"type":41,"value":3575},{"type":36,"tag":121,"props":7542,"children":7543},{"style":134},[7544],{"type":41,"value":312},{"type":36,"tag":121,"props":7546,"children":7547},{"style":145},[7548],{"type":41,"value":164},{"type":36,"tag":121,"props":7550,"children":7551},{"class":123,"line":229},[7552],{"type":36,"tag":121,"props":7553,"children":7554},{"emptyLinePlaceholder":171},[7555],{"type":41,"value":174},{"type":36,"tag":121,"props":7557,"children":7558},{"class":123,"line":320},[7559],{"type":36,"tag":121,"props":7560,"children":7561},{"style":2019},[7562],{"type":41,"value":7563},"\u002F\u002F Get all attendees\n",{"type":36,"tag":121,"props":7565,"children":7566},{"class":123,"line":375},[7567,7571,7575,7579,7583,7587,7591],{"type":36,"tag":121,"props":7568,"children":7569},{"style":134},[7570],{"type":41,"value":1690},{"type":36,"tag":121,"props":7572,"children":7573},{"style":145},[7574],{"type":41,"value":82},{"type":36,"tag":121,"props":7576,"children":7577},{"style":206},[7578],{"type":41,"value":3181},{"type":36,"tag":121,"props":7580,"children":7581},{"style":134},[7582],{"type":41,"value":255},{"type":36,"tag":121,"props":7584,"children":7585},{"style":145},[7586],{"type":41,"value":3190},{"type":36,"tag":121,"props":7588,"children":7589},{"style":134},[7590],{"type":41,"value":312},{"type":36,"tag":121,"props":7592,"children":7593},{"style":145},[7594],{"type":41,"value":164},{"type":36,"tag":121,"props":7596,"children":7597},{"class":123,"line":406},[7598],{"type":36,"tag":121,"props":7599,"children":7600},{"emptyLinePlaceholder":171},[7601],{"type":41,"value":174},{"type":36,"tag":121,"props":7603,"children":7604},{"class":123,"line":459},[7605],{"type":36,"tag":121,"props":7606,"children":7607},{"style":2019},[7608],{"type":41,"value":7609},"\u002F\u002F Audio\u002FVideo control\n",{"type":36,"tag":121,"props":7611,"children":7612},{"class":123,"line":532},[7613,7617,7621,7626,7630,7634,7639,7643,7648,7652,7656,7660,7664],{"type":36,"tag":121,"props":7614,"children":7615},{"style":134},[7616],{"type":41,"value":1690},{"type":36,"tag":121,"props":7618,"children":7619},{"style":145},[7620],{"type":41,"value":82},{"type":36,"tag":121,"props":7622,"children":7623},{"style":206},[7624],{"type":41,"value":7625},"mute",{"type":36,"tag":121,"props":7627,"children":7628},{"style":134},[7629],{"type":41,"value":255},{"type":36,"tag":121,"props":7631,"children":7632},{"style":145},[7633],{"type":41,"value":492},{"type":36,"tag":121,"props":7635,"children":7636},{"style":134},[7637],{"type":41,"value":7638}," userId",{"type":36,"tag":121,"props":7640,"children":7641},{"style":145},[7642],{"type":41,"value":277},{"type":36,"tag":121,"props":7644,"children":7645},{"style":349},[7646],{"type":41,"value":7647}," mute",{"type":36,"tag":121,"props":7649,"children":7650},{"style":145},[7651],{"type":41,"value":266},{"type":36,"tag":121,"props":7653,"children":7654},{"style":858},[7655],{"type":41,"value":861},{"type":36,"tag":121,"props":7657,"children":7658},{"style":145},[7659],{"type":41,"value":521},{"type":36,"tag":121,"props":7661,"children":7662},{"style":134},[7663],{"type":41,"value":312},{"type":36,"tag":121,"props":7665,"children":7666},{"style":145},[7667],{"type":41,"value":164},{"type":36,"tag":121,"props":7669,"children":7670},{"class":123,"line":549},[7671,7675,7679,7684,7688,7692,7697,7701,7705,7709,7713],{"type":36,"tag":121,"props":7672,"children":7673},{"style":134},[7674],{"type":41,"value":1690},{"type":36,"tag":121,"props":7676,"children":7677},{"style":145},[7678],{"type":41,"value":82},{"type":36,"tag":121,"props":7680,"children":7681},{"style":206},[7682],{"type":41,"value":7683},"muteAll",{"type":36,"tag":121,"props":7685,"children":7686},{"style":134},[7687],{"type":41,"value":255},{"type":36,"tag":121,"props":7689,"children":7690},{"style":145},[7691],{"type":41,"value":492},{"type":36,"tag":121,"props":7693,"children":7694},{"style":349},[7695],{"type":41,"value":7696}," muteAll",{"type":36,"tag":121,"props":7698,"children":7699},{"style":145},[7700],{"type":41,"value":266},{"type":36,"tag":121,"props":7702,"children":7703},{"style":858},[7704],{"type":41,"value":861},{"type":36,"tag":121,"props":7706,"children":7707},{"style":145},[7708],{"type":41,"value":521},{"type":36,"tag":121,"props":7710,"children":7711},{"style":134},[7712],{"type":41,"value":312},{"type":36,"tag":121,"props":7714,"children":7715},{"style":145},[7716],{"type":41,"value":164},{"type":36,"tag":121,"props":7718,"children":7719},{"class":123,"line":557},[7720],{"type":36,"tag":121,"props":7721,"children":7722},{"emptyLinePlaceholder":171},[7723],{"type":41,"value":174},{"type":36,"tag":121,"props":7725,"children":7726},{"class":123,"line":655},[7727],{"type":36,"tag":121,"props":7728,"children":7729},{"style":2019},[7730],{"type":41,"value":6741},{"type":36,"tag":121,"props":7732,"children":7733},{"class":123,"line":663},[7734,7738,7742,7747,7751,7755,7760,7764,7768,7773,7777,7781,7785,7789,7793,7797,7801,7806],{"type":36,"tag":121,"props":7735,"children":7736},{"style":134},[7737],{"type":41,"value":1690},{"type":36,"tag":121,"props":7739,"children":7740},{"style":145},[7741],{"type":41,"value":82},{"type":36,"tag":121,"props":7743,"children":7744},{"style":206},[7745],{"type":41,"value":7746},"sendChat",{"type":36,"tag":121,"props":7748,"children":7749},{"style":134},[7750],{"type":41,"value":255},{"type":36,"tag":121,"props":7752,"children":7753},{"style":145},[7754],{"type":41,"value":492},{"type":36,"tag":121,"props":7756,"children":7757},{"style":349},[7758],{"type":41,"value":7759}," message",{"type":36,"tag":121,"props":7761,"children":7762},{"style":145},[7763],{"type":41,"value":266},{"type":36,"tag":121,"props":7765,"children":7766},{"style":145},[7767],{"type":41,"value":148},{"type":36,"tag":121,"props":7769,"children":7770},{"style":151},[7771],{"type":41,"value":7772},"Hello!",{"type":36,"tag":121,"props":7774,"children":7775},{"style":145},[7776],{"type":41,"value":159},{"type":36,"tag":121,"props":7778,"children":7779},{"style":145},[7780],{"type":41,"value":277},{"type":36,"tag":121,"props":7782,"children":7783},{"style":349},[7784],{"type":41,"value":7638},{"type":36,"tag":121,"props":7786,"children":7787},{"style":145},[7788],{"type":41,"value":266},{"type":36,"tag":121,"props":7790,"children":7791},{"style":513},[7792],{"type":41,"value":516},{"type":36,"tag":121,"props":7794,"children":7795},{"style":145},[7796],{"type":41,"value":521},{"type":36,"tag":121,"props":7798,"children":7799},{"style":134},[7800],{"type":41,"value":312},{"type":36,"tag":121,"props":7802,"children":7803},{"style":145},[7804],{"type":41,"value":7805},";",{"type":36,"tag":121,"props":7807,"children":7808},{"style":2019},[7809],{"type":41,"value":7810}," \u002F\u002F 0 = everyone\n",{"type":36,"tag":121,"props":7812,"children":7813},{"class":123,"line":722},[7814],{"type":36,"tag":121,"props":7815,"children":7816},{"emptyLinePlaceholder":171},[7817],{"type":41,"value":174},{"type":36,"tag":121,"props":7819,"children":7820},{"class":123,"line":730},[7821],{"type":36,"tag":121,"props":7822,"children":7823},{"style":2019},[7824],{"type":41,"value":7825},"\u002F\u002F Leave\u002FEnd\n",{"type":36,"tag":121,"props":7827,"children":7828},{"class":123,"line":762},[7829,7833,7837,7842,7846,7850,7854],{"type":36,"tag":121,"props":7830,"children":7831},{"style":134},[7832],{"type":41,"value":1690},{"type":36,"tag":121,"props":7834,"children":7835},{"style":145},[7836],{"type":41,"value":82},{"type":36,"tag":121,"props":7838,"children":7839},{"style":206},[7840],{"type":41,"value":7841},"leaveMeeting",{"type":36,"tag":121,"props":7843,"children":7844},{"style":134},[7845],{"type":41,"value":255},{"type":36,"tag":121,"props":7847,"children":7848},{"style":145},[7849],{"type":41,"value":3190},{"type":36,"tag":121,"props":7851,"children":7852},{"style":134},[7853],{"type":41,"value":312},{"type":36,"tag":121,"props":7855,"children":7856},{"style":145},[7857],{"type":41,"value":164},{"type":36,"tag":121,"props":7859,"children":7860},{"class":123,"line":815},[7861,7865,7869,7874,7878,7882,7886],{"type":36,"tag":121,"props":7862,"children":7863},{"style":134},[7864],{"type":41,"value":1690},{"type":36,"tag":121,"props":7866,"children":7867},{"style":145},[7868],{"type":41,"value":82},{"type":36,"tag":121,"props":7870,"children":7871},{"style":206},[7872],{"type":41,"value":7873},"endMeeting",{"type":36,"tag":121,"props":7875,"children":7876},{"style":134},[7877],{"type":41,"value":255},{"type":36,"tag":121,"props":7879,"children":7880},{"style":145},[7881],{"type":41,"value":3190},{"type":36,"tag":121,"props":7883,"children":7884},{"style":134},[7885],{"type":41,"value":312},{"type":36,"tag":121,"props":7887,"children":7888},{"style":145},[7889],{"type":41,"value":164},{"type":36,"tag":121,"props":7891,"children":7892},{"class":123,"line":845},[7893],{"type":36,"tag":121,"props":7894,"children":7895},{"emptyLinePlaceholder":171},[7896],{"type":41,"value":174},{"type":36,"tag":121,"props":7898,"children":7899},{"class":123,"line":868},[7900],{"type":36,"tag":121,"props":7901,"children":7902},{"style":2019},[7903],{"type":41,"value":7904},"\u002F\u002F Host controls\n",{"type":36,"tag":121,"props":7906,"children":7907},{"class":123,"line":889},[7908,7912,7916,7921,7925,7929,7934,7938,7942],{"type":36,"tag":121,"props":7909,"children":7910},{"style":134},[7911],{"type":41,"value":1690},{"type":36,"tag":121,"props":7913,"children":7914},{"style":145},[7915],{"type":41,"value":82},{"type":36,"tag":121,"props":7917,"children":7918},{"style":206},[7919],{"type":41,"value":7920},"makeHost",{"type":36,"tag":121,"props":7922,"children":7923},{"style":134},[7924],{"type":41,"value":255},{"type":36,"tag":121,"props":7926,"children":7927},{"style":145},[7928],{"type":41,"value":492},{"type":36,"tag":121,"props":7930,"children":7931},{"style":134},[7932],{"type":41,"value":7933}," userId ",{"type":36,"tag":121,"props":7935,"children":7936},{"style":145},[7937],{"type":41,"value":3575},{"type":36,"tag":121,"props":7939,"children":7940},{"style":134},[7941],{"type":41,"value":312},{"type":36,"tag":121,"props":7943,"children":7944},{"style":145},[7945],{"type":41,"value":164},{"type":36,"tag":121,"props":7947,"children":7948},{"class":123,"line":906},[7949,7953,7957,7962,7966,7970,7975,7979,7983],{"type":36,"tag":121,"props":7950,"children":7951},{"style":134},[7952],{"type":41,"value":1690},{"type":36,"tag":121,"props":7954,"children":7955},{"style":145},[7956],{"type":41,"value":82},{"type":36,"tag":121,"props":7958,"children":7959},{"style":206},[7960],{"type":41,"value":7961},"makeCoHost",{"type":36,"tag":121,"props":7963,"children":7964},{"style":134},[7965],{"type":41,"value":255},{"type":36,"tag":121,"props":7967,"children":7968},{"style":145},[7969],{"type":41,"value":492},{"type":36,"tag":121,"props":7971,"children":7972},{"style":134},[7973],{"type":41,"value":7974}," oderId ",{"type":36,"tag":121,"props":7976,"children":7977},{"style":145},[7978],{"type":41,"value":3575},{"type":36,"tag":121,"props":7980,"children":7981},{"style":134},[7982],{"type":41,"value":312},{"type":36,"tag":121,"props":7984,"children":7985},{"style":145},[7986],{"type":41,"value":164},{"type":36,"tag":121,"props":7988,"children":7989},{"class":123,"line":975},[7990,7994,7998,8003,8007,8011,8015,8019,8023,8027],{"type":36,"tag":121,"props":7991,"children":7992},{"style":134},[7993],{"type":41,"value":1690},{"type":36,"tag":121,"props":7995,"children":7996},{"style":145},[7997],{"type":41,"value":82},{"type":36,"tag":121,"props":7999,"children":8000},{"style":206},[8001],{"type":41,"value":8002},"expel",{"type":36,"tag":121,"props":8004,"children":8005},{"style":134},[8006],{"type":41,"value":255},{"type":36,"tag":121,"props":8008,"children":8009},{"style":145},[8010],{"type":41,"value":492},{"type":36,"tag":121,"props":8012,"children":8013},{"style":134},[8014],{"type":41,"value":7933},{"type":36,"tag":121,"props":8016,"children":8017},{"style":145},[8018],{"type":41,"value":3575},{"type":36,"tag":121,"props":8020,"children":8021},{"style":134},[8022],{"type":41,"value":312},{"type":36,"tag":121,"props":8024,"children":8025},{"style":145},[8026],{"type":41,"value":7805},{"type":36,"tag":121,"props":8028,"children":8029},{"style":2019},[8030],{"type":41,"value":8031},"  \u002F\u002F Remove participant\n",{"type":36,"tag":121,"props":8033,"children":8034},{"class":123,"line":984},[8035,8039,8043,8048,8052,8056,8061,8065,8070,8074,8078,8082,8086],{"type":36,"tag":121,"props":8036,"children":8037},{"style":134},[8038],{"type":41,"value":1690},{"type":36,"tag":121,"props":8040,"children":8041},{"style":145},[8042],{"type":41,"value":82},{"type":36,"tag":121,"props":8044,"children":8045},{"style":206},[8046],{"type":41,"value":8047},"putOnHold",{"type":36,"tag":121,"props":8049,"children":8050},{"style":134},[8051],{"type":41,"value":255},{"type":36,"tag":121,"props":8053,"children":8054},{"style":145},[8055],{"type":41,"value":492},{"type":36,"tag":121,"props":8057,"children":8058},{"style":134},[8059],{"type":41,"value":8060}," oderId",{"type":36,"tag":121,"props":8062,"children":8063},{"style":145},[8064],{"type":41,"value":277},{"type":36,"tag":121,"props":8066,"children":8067},{"style":349},[8068],{"type":41,"value":8069}," bHold",{"type":36,"tag":121,"props":8071,"children":8072},{"style":145},[8073],{"type":41,"value":266},{"type":36,"tag":121,"props":8075,"children":8076},{"style":858},[8077],{"type":41,"value":861},{"type":36,"tag":121,"props":8079,"children":8080},{"style":145},[8081],{"type":41,"value":521},{"type":36,"tag":121,"props":8083,"children":8084},{"style":134},[8085],{"type":41,"value":312},{"type":36,"tag":121,"props":8087,"children":8088},{"style":145},[8089],{"type":41,"value":164},{"type":36,"tag":121,"props":8091,"children":8092},{"class":123,"line":1000},[8093],{"type":36,"tag":121,"props":8094,"children":8095},{"emptyLinePlaceholder":171},[8096],{"type":41,"value":174},{"type":36,"tag":121,"props":8098,"children":8099},{"class":123,"line":1008},[8100],{"type":36,"tag":121,"props":8101,"children":8102},{"style":2019},[8103],{"type":41,"value":8104},"\u002F\u002F Breakout rooms\n",{"type":36,"tag":121,"props":8106,"children":8107},{"class":123,"line":1037},[8108,8112,8116,8121,8125,8129,8134,8138,8143,8148,8153,8157,8161],{"type":36,"tag":121,"props":8109,"children":8110},{"style":134},[8111],{"type":41,"value":1690},{"type":36,"tag":121,"props":8113,"children":8114},{"style":145},[8115],{"type":41,"value":82},{"type":36,"tag":121,"props":8117,"children":8118},{"style":206},[8119],{"type":41,"value":8120},"createBreakoutRoom",{"type":36,"tag":121,"props":8122,"children":8123},{"style":134},[8124],{"type":41,"value":255},{"type":36,"tag":121,"props":8126,"children":8127},{"style":145},[8128],{"type":41,"value":492},{"type":36,"tag":121,"props":8130,"children":8131},{"style":349},[8132],{"type":41,"value":8133}," rooms",{"type":36,"tag":121,"props":8135,"children":8136},{"style":145},[8137],{"type":41,"value":266},{"type":36,"tag":121,"props":8139,"children":8140},{"style":134},[8141],{"type":41,"value":8142}," [",{"type":36,"tag":121,"props":8144,"children":8145},{"style":145},[8146],{"type":41,"value":8147},"...",{"type":36,"tag":121,"props":8149,"children":8150},{"style":134},[8151],{"type":41,"value":8152},"] ",{"type":36,"tag":121,"props":8154,"children":8155},{"style":145},[8156],{"type":41,"value":3575},{"type":36,"tag":121,"props":8158,"children":8159},{"style":134},[8160],{"type":41,"value":312},{"type":36,"tag":121,"props":8162,"children":8163},{"style":145},[8164],{"type":41,"value":164},{"type":36,"tag":121,"props":8166,"children":8167},{"class":123,"line":1050},[8168,8172,8176,8181,8185,8189,8193],{"type":36,"tag":121,"props":8169,"children":8170},{"style":134},[8171],{"type":41,"value":1690},{"type":36,"tag":121,"props":8173,"children":8174},{"style":145},[8175],{"type":41,"value":82},{"type":36,"tag":121,"props":8177,"children":8178},{"style":206},[8179],{"type":41,"value":8180},"openBreakoutRooms",{"type":36,"tag":121,"props":8182,"children":8183},{"style":134},[8184],{"type":41,"value":255},{"type":36,"tag":121,"props":8186,"children":8187},{"style":145},[8188],{"type":41,"value":3190},{"type":36,"tag":121,"props":8190,"children":8191},{"style":134},[8192],{"type":41,"value":312},{"type":36,"tag":121,"props":8194,"children":8195},{"style":145},[8196],{"type":41,"value":164},{"type":36,"tag":121,"props":8198,"children":8199},{"class":123,"line":1063},[8200,8204,8208,8213,8217,8221,8225],{"type":36,"tag":121,"props":8201,"children":8202},{"style":134},[8203],{"type":41,"value":1690},{"type":36,"tag":121,"props":8205,"children":8206},{"style":145},[8207],{"type":41,"value":82},{"type":36,"tag":121,"props":8209,"children":8210},{"style":206},[8211],{"type":41,"value":8212},"closeBreakoutRooms",{"type":36,"tag":121,"props":8214,"children":8215},{"style":134},[8216],{"type":41,"value":255},{"type":36,"tag":121,"props":8218,"children":8219},{"style":145},[8220],{"type":41,"value":3190},{"type":36,"tag":121,"props":8222,"children":8223},{"style":134},[8224],{"type":41,"value":312},{"type":36,"tag":121,"props":8226,"children":8227},{"style":145},[8228],{"type":41,"value":164},{"type":36,"tag":121,"props":8230,"children":8231},{"class":123,"line":1076},[8232],{"type":36,"tag":121,"props":8233,"children":8234},{"emptyLinePlaceholder":171},[8235],{"type":41,"value":174},{"type":36,"tag":121,"props":8237,"children":8238},{"class":123,"line":1089},[8239],{"type":36,"tag":121,"props":8240,"children":8241},{"style":2019},[8242],{"type":41,"value":8243},"\u002F\u002F Virtual background\n",{"type":36,"tag":121,"props":8245,"children":8246},{"class":123,"line":1102},[8247,8251,8255,8260,8264,8268,8273,8277,8281,8285,8289,8293,8297],{"type":36,"tag":121,"props":8248,"children":8249},{"style":134},[8250],{"type":41,"value":1690},{"type":36,"tag":121,"props":8252,"children":8253},{"style":145},[8254],{"type":41,"value":82},{"type":36,"tag":121,"props":8256,"children":8257},{"style":206},[8258],{"type":41,"value":8259},"setVirtualBackground",{"type":36,"tag":121,"props":8261,"children":8262},{"style":134},[8263],{"type":41,"value":255},{"type":36,"tag":121,"props":8265,"children":8266},{"style":145},[8267],{"type":41,"value":492},{"type":36,"tag":121,"props":8269,"children":8270},{"style":349},[8271],{"type":41,"value":8272}," imageUrl",{"type":36,"tag":121,"props":8274,"children":8275},{"style":145},[8276],{"type":41,"value":266},{"type":36,"tag":121,"props":8278,"children":8279},{"style":145},[8280],{"type":41,"value":148},{"type":36,"tag":121,"props":8282,"children":8283},{"style":151},[8284],{"type":41,"value":8147},{"type":36,"tag":121,"props":8286,"children":8287},{"style":145},[8288],{"type":41,"value":159},{"type":36,"tag":121,"props":8290,"children":8291},{"style":145},[8292],{"type":41,"value":521},{"type":36,"tag":121,"props":8294,"children":8295},{"style":134},[8296],{"type":41,"value":312},{"type":36,"tag":121,"props":8298,"children":8299},{"style":145},[8300],{"type":41,"value":164},{"type":36,"tag":65,"props":8302,"children":8304},{"id":8303},"component-view-api-reference",[8305],{"type":41,"value":8306},"Component View API Reference",{"type":36,"tag":1893,"props":8308,"children":8310},{"id":8309},"clientinit-key-options",[8311],{"type":41,"value":8312},"client.init() - Key Options",{"type":36,"tag":94,"props":8314,"children":8316},{"className":2404,"code":8315,"language":2406,"meta":99,"style":99},"await client.init({\n  \u002F\u002F Required\n  zoomAppRoot: HTMLElement,      \u002F\u002F Container element\n\n  \u002F\u002F Display\n  language: string,              \u002F\u002F e.g., 'en-US'\n  debug: boolean,                \u002F\u002F Enable debug logging (default: false)\n\n  \u002F\u002F Media\n  patchJsMedia: boolean,         \u002F\u002F Auto-apply media fixes (default: false)\n  leaveOnPageUnload: boolean,    \u002F\u002F Clean up on page unload (default: false)\n\n  \u002F\u002F Video\n  enableHD: boolean,             \u002F\u002F Enable 720p\n  enableFullHD: boolean,         \u002F\u002F Enable 1080p\n\n  \u002F\u002F Customization\n  customize: {\n    video: {\n      isResizable: boolean,\n      viewSizes: { default: { width, height } }\n    },\n    meetingInfo: ['topic', 'host', 'mn', 'pwd', 'telPwd', 'invite', 'participant', 'dc', 'enctype'],\n    toolbar: {\n      buttons: [\n        {\n          text: 'Custom Button',\n          className: 'custom-btn',\n          onClick: () => {\n            console.log('Custom button clicked');\n          }\n        }\n      ]\n    }\n  },\n\n  \u002F\u002F For ZFG\n  webEndpoint: string,\n  assetPath: string,             \u002F\u002F Custom path for AV libraries (self-hosting)\n});\n",[8317],{"type":36,"tag":102,"props":8318,"children":8319},{"__ignoreMap":99},[8320,8348,8355,8381,8388,8396,8421,8446,8453,8461,8486,8511,8518,8526,8550,8574,8581,8589,8605,8621,8641,8693,8700,8874,8890,8907,8915,8944,8973,8997,9038,9046,9053,9061,9068,9076,9083,9091,9111,9136],{"type":36,"tag":121,"props":8321,"children":8322},{"class":123,"line":124},[8323,8328,8332,8336,8340,8344],{"type":36,"tag":121,"props":8324,"children":8325},{"style":128},[8326],{"type":41,"value":8327},"await",{"type":36,"tag":121,"props":8329,"children":8330},{"style":134},[8331],{"type":41,"value":741},{"type":36,"tag":121,"props":8333,"children":8334},{"style":145},[8335],{"type":41,"value":82},{"type":36,"tag":121,"props":8337,"children":8338},{"style":206},[8339],{"type":41,"value":750},{"type":36,"tag":121,"props":8341,"children":8342},{"style":134},[8343],{"type":41,"value":255},{"type":36,"tag":121,"props":8345,"children":8346},{"style":145},[8347],{"type":41,"value":759},{"type":36,"tag":121,"props":8349,"children":8350},{"class":123,"line":167},[8351],{"type":36,"tag":121,"props":8352,"children":8353},{"style":2019},[8354],{"type":41,"value":4555},{"type":36,"tag":121,"props":8356,"children":8357},{"class":123,"line":177},[8358,8363,8367,8372,8376],{"type":36,"tag":121,"props":8359,"children":8360},{"style":349},[8361],{"type":41,"value":8362},"  zoomAppRoot",{"type":36,"tag":121,"props":8364,"children":8365},{"style":145},[8366],{"type":41,"value":266},{"type":36,"tag":121,"props":8368,"children":8369},{"style":134},[8370],{"type":41,"value":8371}," HTMLElement",{"type":36,"tag":121,"props":8373,"children":8374},{"style":145},[8375],{"type":41,"value":277},{"type":36,"tag":121,"props":8377,"children":8378},{"style":2019},[8379],{"type":41,"value":8380},"      \u002F\u002F Container element\n",{"type":36,"tag":121,"props":8382,"children":8383},{"class":123,"line":221},[8384],{"type":36,"tag":121,"props":8385,"children":8386},{"emptyLinePlaceholder":171},[8387],{"type":41,"value":174},{"type":36,"tag":121,"props":8389,"children":8390},{"class":123,"line":229},[8391],{"type":36,"tag":121,"props":8392,"children":8393},{"style":2019},[8394],{"type":41,"value":8395},"  \u002F\u002F Display\n",{"type":36,"tag":121,"props":8397,"children":8398},{"class":123,"line":320},[8399,8404,8408,8412,8416],{"type":36,"tag":121,"props":8400,"children":8401},{"style":349},[8402],{"type":41,"value":8403},"  language",{"type":36,"tag":121,"props":8405,"children":8406},{"style":145},[8407],{"type":41,"value":266},{"type":36,"tag":121,"props":8409,"children":8410},{"style":134},[8411],{"type":41,"value":272},{"type":36,"tag":121,"props":8413,"children":8414},{"style":145},[8415],{"type":41,"value":277},{"type":36,"tag":121,"props":8417,"children":8418},{"style":2019},[8419],{"type":41,"value":8420},"              \u002F\u002F e.g., 'en-US'\n",{"type":36,"tag":121,"props":8422,"children":8423},{"class":123,"line":375},[8424,8429,8433,8437,8441],{"type":36,"tag":121,"props":8425,"children":8426},{"style":349},[8427],{"type":41,"value":8428},"  debug",{"type":36,"tag":121,"props":8430,"children":8431},{"style":145},[8432],{"type":41,"value":266},{"type":36,"tag":121,"props":8434,"children":8435},{"style":134},[8436],{"type":41,"value":4612},{"type":36,"tag":121,"props":8438,"children":8439},{"style":145},[8440],{"type":41,"value":277},{"type":36,"tag":121,"props":8442,"children":8443},{"style":2019},[8444],{"type":41,"value":8445},"                \u002F\u002F Enable debug logging (default: false)\n",{"type":36,"tag":121,"props":8447,"children":8448},{"class":123,"line":406},[8449],{"type":36,"tag":121,"props":8450,"children":8451},{"emptyLinePlaceholder":171},[8452],{"type":41,"value":174},{"type":36,"tag":121,"props":8454,"children":8455},{"class":123,"line":459},[8456],{"type":36,"tag":121,"props":8457,"children":8458},{"style":2019},[8459],{"type":41,"value":8460},"  \u002F\u002F Media\n",{"type":36,"tag":121,"props":8462,"children":8463},{"class":123,"line":532},[8464,8469,8473,8477,8481],{"type":36,"tag":121,"props":8465,"children":8466},{"style":349},[8467],{"type":41,"value":8468},"  patchJsMedia",{"type":36,"tag":121,"props":8470,"children":8471},{"style":145},[8472],{"type":41,"value":266},{"type":36,"tag":121,"props":8474,"children":8475},{"style":134},[8476],{"type":41,"value":4612},{"type":36,"tag":121,"props":8478,"children":8479},{"style":145},[8480],{"type":41,"value":277},{"type":36,"tag":121,"props":8482,"children":8483},{"style":2019},[8484],{"type":41,"value":8485},"         \u002F\u002F Auto-apply media fixes (default: false)\n",{"type":36,"tag":121,"props":8487,"children":8488},{"class":123,"line":549},[8489,8494,8498,8502,8506],{"type":36,"tag":121,"props":8490,"children":8491},{"style":349},[8492],{"type":41,"value":8493},"  leaveOnPageUnload",{"type":36,"tag":121,"props":8495,"children":8496},{"style":145},[8497],{"type":41,"value":266},{"type":36,"tag":121,"props":8499,"children":8500},{"style":134},[8501],{"type":41,"value":4612},{"type":36,"tag":121,"props":8503,"children":8504},{"style":145},[8505],{"type":41,"value":277},{"type":36,"tag":121,"props":8507,"children":8508},{"style":2019},[8509],{"type":41,"value":8510},"    \u002F\u002F Clean up on page unload (default: false)\n",{"type":36,"tag":121,"props":8512,"children":8513},{"class":123,"line":557},[8514],{"type":36,"tag":121,"props":8515,"children":8516},{"emptyLinePlaceholder":171},[8517],{"type":41,"value":174},{"type":36,"tag":121,"props":8519,"children":8520},{"class":123,"line":655},[8521],{"type":36,"tag":121,"props":8522,"children":8523},{"style":2019},[8524],{"type":41,"value":8525},"  \u002F\u002F Video\n",{"type":36,"tag":121,"props":8527,"children":8528},{"class":123,"line":663},[8529,8533,8537,8541,8545],{"type":36,"tag":121,"props":8530,"children":8531},{"style":349},[8532],{"type":41,"value":4744},{"type":36,"tag":121,"props":8534,"children":8535},{"style":145},[8536],{"type":41,"value":266},{"type":36,"tag":121,"props":8538,"children":8539},{"style":134},[8540],{"type":41,"value":4612},{"type":36,"tag":121,"props":8542,"children":8543},{"style":145},[8544],{"type":41,"value":277},{"type":36,"tag":121,"props":8546,"children":8547},{"style":2019},[8548],{"type":41,"value":8549},"             \u002F\u002F Enable 720p\n",{"type":36,"tag":121,"props":8551,"children":8552},{"class":123,"line":722},[8553,8557,8561,8565,8569],{"type":36,"tag":121,"props":8554,"children":8555},{"style":349},[8556],{"type":41,"value":4769},{"type":36,"tag":121,"props":8558,"children":8559},{"style":145},[8560],{"type":41,"value":266},{"type":36,"tag":121,"props":8562,"children":8563},{"style":134},[8564],{"type":41,"value":4612},{"type":36,"tag":121,"props":8566,"children":8567},{"style":145},[8568],{"type":41,"value":277},{"type":36,"tag":121,"props":8570,"children":8571},{"style":2019},[8572],{"type":41,"value":8573},"         \u002F\u002F Enable 1080p\n",{"type":36,"tag":121,"props":8575,"children":8576},{"class":123,"line":730},[8577],{"type":36,"tag":121,"props":8578,"children":8579},{"emptyLinePlaceholder":171},[8580],{"type":41,"value":174},{"type":36,"tag":121,"props":8582,"children":8583},{"class":123,"line":762},[8584],{"type":36,"tag":121,"props":8585,"children":8586},{"style":2019},[8587],{"type":41,"value":8588},"  \u002F\u002F Customization\n",{"type":36,"tag":121,"props":8590,"children":8591},{"class":123,"line":815},[8592,8597,8601],{"type":36,"tag":121,"props":8593,"children":8594},{"style":349},[8595],{"type":41,"value":8596},"  customize",{"type":36,"tag":121,"props":8598,"children":8599},{"style":145},[8600],{"type":41,"value":266},{"type":36,"tag":121,"props":8602,"children":8603},{"style":145},[8604],{"type":41,"value":317},{"type":36,"tag":121,"props":8606,"children":8607},{"class":123,"line":845},[8608,8613,8617],{"type":36,"tag":121,"props":8609,"children":8610},{"style":349},[8611],{"type":41,"value":8612},"    video",{"type":36,"tag":121,"props":8614,"children":8615},{"style":145},[8616],{"type":41,"value":266},{"type":36,"tag":121,"props":8618,"children":8619},{"style":145},[8620],{"type":41,"value":317},{"type":36,"tag":121,"props":8622,"children":8623},{"class":123,"line":868},[8624,8629,8633,8637],{"type":36,"tag":121,"props":8625,"children":8626},{"style":349},[8627],{"type":41,"value":8628},"      isResizable",{"type":36,"tag":121,"props":8630,"children":8631},{"style":145},[8632],{"type":41,"value":266},{"type":36,"tag":121,"props":8634,"children":8635},{"style":134},[8636],{"type":41,"value":4612},{"type":36,"tag":121,"props":8638,"children":8639},{"style":145},[8640],{"type":41,"value":403},{"type":36,"tag":121,"props":8642,"children":8643},{"class":123,"line":889},[8644,8649,8653,8657,8662,8666,8670,8675,8679,8684,8688],{"type":36,"tag":121,"props":8645,"children":8646},{"style":349},[8647],{"type":41,"value":8648},"      viewSizes",{"type":36,"tag":121,"props":8650,"children":8651},{"style":145},[8652],{"type":41,"value":266},{"type":36,"tag":121,"props":8654,"children":8655},{"style":145},[8656],{"type":41,"value":421},{"type":36,"tag":121,"props":8658,"children":8659},{"style":349},[8660],{"type":41,"value":8661}," default",{"type":36,"tag":121,"props":8663,"children":8664},{"style":145},[8665],{"type":41,"value":266},{"type":36,"tag":121,"props":8667,"children":8668},{"style":145},[8669],{"type":41,"value":421},{"type":36,"tag":121,"props":8671,"children":8672},{"style":134},[8673],{"type":41,"value":8674}," width",{"type":36,"tag":121,"props":8676,"children":8677},{"style":145},[8678],{"type":41,"value":277},{"type":36,"tag":121,"props":8680,"children":8681},{"style":134},[8682],{"type":41,"value":8683}," height ",{"type":36,"tag":121,"props":8685,"children":8686},{"style":145},[8687],{"type":41,"value":3575},{"type":36,"tag":121,"props":8689,"children":8690},{"style":145},[8691],{"type":41,"value":8692}," }\n",{"type":36,"tag":121,"props":8694,"children":8695},{"class":123,"line":906},[8696],{"type":36,"tag":121,"props":8697,"children":8698},{"style":145},[8699],{"type":41,"value":981},{"type":36,"tag":121,"props":8701,"children":8702},{"class":123,"line":975},[8703,8708,8712,8716,8720,8725,8729,8733,8737,8742,8746,8750,8754,8759,8763,8767,8771,8776,8780,8784,8788,8793,8797,8801,8805,8810,8814,8818,8822,8827,8831,8835,8839,8844,8848,8852,8856,8861,8865,8870],{"type":36,"tag":121,"props":8704,"children":8705},{"style":349},[8706],{"type":41,"value":8707},"    meetingInfo",{"type":36,"tag":121,"props":8709,"children":8710},{"style":145},[8711],{"type":41,"value":266},{"type":36,"tag":121,"props":8713,"children":8714},{"style":134},[8715],{"type":41,"value":8142},{"type":36,"tag":121,"props":8717,"children":8718},{"style":145},[8719],{"type":41,"value":159},{"type":36,"tag":121,"props":8721,"children":8722},{"style":151},[8723],{"type":41,"value":8724},"topic",{"type":36,"tag":121,"props":8726,"children":8727},{"style":145},[8728],{"type":41,"value":159},{"type":36,"tag":121,"props":8730,"children":8731},{"style":145},[8732],{"type":41,"value":277},{"type":36,"tag":121,"props":8734,"children":8735},{"style":145},[8736],{"type":41,"value":148},{"type":36,"tag":121,"props":8738,"children":8739},{"style":151},[8740],{"type":41,"value":8741},"host",{"type":36,"tag":121,"props":8743,"children":8744},{"style":145},[8745],{"type":41,"value":159},{"type":36,"tag":121,"props":8747,"children":8748},{"style":145},[8749],{"type":41,"value":277},{"type":36,"tag":121,"props":8751,"children":8752},{"style":145},[8753],{"type":41,"value":148},{"type":36,"tag":121,"props":8755,"children":8756},{"style":151},[8757],{"type":41,"value":8758},"mn",{"type":36,"tag":121,"props":8760,"children":8761},{"style":145},[8762],{"type":41,"value":159},{"type":36,"tag":121,"props":8764,"children":8765},{"style":145},[8766],{"type":41,"value":277},{"type":36,"tag":121,"props":8768,"children":8769},{"style":145},[8770],{"type":41,"value":148},{"type":36,"tag":121,"props":8772,"children":8773},{"style":151},[8774],{"type":41,"value":8775},"pwd",{"type":36,"tag":121,"props":8777,"children":8778},{"style":145},[8779],{"type":41,"value":159},{"type":36,"tag":121,"props":8781,"children":8782},{"style":145},[8783],{"type":41,"value":277},{"type":36,"tag":121,"props":8785,"children":8786},{"style":145},[8787],{"type":41,"value":148},{"type":36,"tag":121,"props":8789,"children":8790},{"style":151},[8791],{"type":41,"value":8792},"telPwd",{"type":36,"tag":121,"props":8794,"children":8795},{"style":145},[8796],{"type":41,"value":159},{"type":36,"tag":121,"props":8798,"children":8799},{"style":145},[8800],{"type":41,"value":277},{"type":36,"tag":121,"props":8802,"children":8803},{"style":145},[8804],{"type":41,"value":148},{"type":36,"tag":121,"props":8806,"children":8807},{"style":151},[8808],{"type":41,"value":8809},"invite",{"type":36,"tag":121,"props":8811,"children":8812},{"style":145},[8813],{"type":41,"value":159},{"type":36,"tag":121,"props":8815,"children":8816},{"style":145},[8817],{"type":41,"value":277},{"type":36,"tag":121,"props":8819,"children":8820},{"style":145},[8821],{"type":41,"value":148},{"type":36,"tag":121,"props":8823,"children":8824},{"style":151},[8825],{"type":41,"value":8826},"participant",{"type":36,"tag":121,"props":8828,"children":8829},{"style":145},[8830],{"type":41,"value":159},{"type":36,"tag":121,"props":8832,"children":8833},{"style":145},[8834],{"type":41,"value":277},{"type":36,"tag":121,"props":8836,"children":8837},{"style":145},[8838],{"type":41,"value":148},{"type":36,"tag":121,"props":8840,"children":8841},{"style":151},[8842],{"type":41,"value":8843},"dc",{"type":36,"tag":121,"props":8845,"children":8846},{"style":145},[8847],{"type":41,"value":159},{"type":36,"tag":121,"props":8849,"children":8850},{"style":145},[8851],{"type":41,"value":277},{"type":36,"tag":121,"props":8853,"children":8854},{"style":145},[8855],{"type":41,"value":148},{"type":36,"tag":121,"props":8857,"children":8858},{"style":151},[8859],{"type":41,"value":8860},"enctype",{"type":36,"tag":121,"props":8862,"children":8863},{"style":145},[8864],{"type":41,"value":159},{"type":36,"tag":121,"props":8866,"children":8867},{"style":134},[8868],{"type":41,"value":8869},"]",{"type":36,"tag":121,"props":8871,"children":8872},{"style":145},[8873],{"type":41,"value":403},{"type":36,"tag":121,"props":8875,"children":8876},{"class":123,"line":984},[8877,8882,8886],{"type":36,"tag":121,"props":8878,"children":8879},{"style":349},[8880],{"type":41,"value":8881},"    toolbar",{"type":36,"tag":121,"props":8883,"children":8884},{"style":145},[8885],{"type":41,"value":266},{"type":36,"tag":121,"props":8887,"children":8888},{"style":145},[8889],{"type":41,"value":317},{"type":36,"tag":121,"props":8891,"children":8892},{"class":123,"line":1000},[8893,8898,8902],{"type":36,"tag":121,"props":8894,"children":8895},{"style":349},[8896],{"type":41,"value":8897},"      buttons",{"type":36,"tag":121,"props":8899,"children":8900},{"style":145},[8901],{"type":41,"value":266},{"type":36,"tag":121,"props":8903,"children":8904},{"style":134},[8905],{"type":41,"value":8906}," [\n",{"type":36,"tag":121,"props":8908,"children":8909},{"class":123,"line":1008},[8910],{"type":36,"tag":121,"props":8911,"children":8912},{"style":145},[8913],{"type":41,"value":8914},"        {\n",{"type":36,"tag":121,"props":8916,"children":8917},{"class":123,"line":1037},[8918,8923,8927,8931,8936,8940],{"type":36,"tag":121,"props":8919,"children":8920},{"style":349},[8921],{"type":41,"value":8922},"          text",{"type":36,"tag":121,"props":8924,"children":8925},{"style":145},[8926],{"type":41,"value":266},{"type":36,"tag":121,"props":8928,"children":8929},{"style":145},[8930],{"type":41,"value":148},{"type":36,"tag":121,"props":8932,"children":8933},{"style":151},[8934],{"type":41,"value":8935},"Custom Button",{"type":36,"tag":121,"props":8937,"children":8938},{"style":145},[8939],{"type":41,"value":159},{"type":36,"tag":121,"props":8941,"children":8942},{"style":145},[8943],{"type":41,"value":403},{"type":36,"tag":121,"props":8945,"children":8946},{"class":123,"line":1050},[8947,8952,8956,8960,8965,8969],{"type":36,"tag":121,"props":8948,"children":8949},{"style":349},[8950],{"type":41,"value":8951},"          className",{"type":36,"tag":121,"props":8953,"children":8954},{"style":145},[8955],{"type":41,"value":266},{"type":36,"tag":121,"props":8957,"children":8958},{"style":145},[8959],{"type":41,"value":148},{"type":36,"tag":121,"props":8961,"children":8962},{"style":151},[8963],{"type":41,"value":8964},"custom-btn",{"type":36,"tag":121,"props":8966,"children":8967},{"style":145},[8968],{"type":41,"value":159},{"type":36,"tag":121,"props":8970,"children":8971},{"style":145},[8972],{"type":41,"value":403},{"type":36,"tag":121,"props":8974,"children":8975},{"class":123,"line":1063},[8976,8981,8985,8989,8993],{"type":36,"tag":121,"props":8977,"children":8978},{"style":206},[8979],{"type":41,"value":8980},"          onClick",{"type":36,"tag":121,"props":8982,"children":8983},{"style":145},[8984],{"type":41,"value":266},{"type":36,"tag":121,"props":8986,"children":8987},{"style":145},[8988],{"type":41,"value":2902},{"type":36,"tag":121,"props":8990,"children":8991},{"style":181},[8992],{"type":41,"value":2691},{"type":36,"tag":121,"props":8994,"children":8995},{"style":145},[8996],{"type":41,"value":317},{"type":36,"tag":121,"props":8998,"children":8999},{"class":123,"line":1076},[9000,9005,9009,9013,9017,9021,9026,9030,9034],{"type":36,"tag":121,"props":9001,"children":9002},{"style":134},[9003],{"type":41,"value":9004},"            console",{"type":36,"tag":121,"props":9006,"children":9007},{"style":145},[9008],{"type":41,"value":82},{"type":36,"tag":121,"props":9010,"children":9011},{"style":206},[9012],{"type":41,"value":2484},{"type":36,"tag":121,"props":9014,"children":9015},{"style":349},[9016],{"type":41,"value":255},{"type":36,"tag":121,"props":9018,"children":9019},{"style":145},[9020],{"type":41,"value":159},{"type":36,"tag":121,"props":9022,"children":9023},{"style":151},[9024],{"type":41,"value":9025},"Custom button clicked",{"type":36,"tag":121,"props":9027,"children":9028},{"style":145},[9029],{"type":41,"value":159},{"type":36,"tag":121,"props":9031,"children":9032},{"style":349},[9033],{"type":41,"value":312},{"type":36,"tag":121,"props":9035,"children":9036},{"style":145},[9037],{"type":41,"value":164},{"type":36,"tag":121,"props":9039,"children":9040},{"class":123,"line":1089},[9041],{"type":36,"tag":121,"props":9042,"children":9043},{"style":145},[9044],{"type":41,"value":9045},"          }\n",{"type":36,"tag":121,"props":9047,"children":9048},{"class":123,"line":1102},[9049],{"type":36,"tag":121,"props":9050,"children":9051},{"style":145},[9052],{"type":41,"value":3433},{"type":36,"tag":121,"props":9054,"children":9055},{"class":123,"line":1118},[9056],{"type":36,"tag":121,"props":9057,"children":9058},{"style":134},[9059],{"type":41,"value":9060},"      ]\n",{"type":36,"tag":121,"props":9062,"children":9063},{"class":123,"line":3201},[9064],{"type":36,"tag":121,"props":9065,"children":9066},{"style":145},[9067],{"type":41,"value":3550},{"type":36,"tag":121,"props":9069,"children":9070},{"class":123,"line":3226},[9071],{"type":36,"tag":121,"props":9072,"children":9073},{"style":145},[9074],{"type":41,"value":9075},"  },\n",{"type":36,"tag":121,"props":9077,"children":9078},{"class":123,"line":3316},[9079],{"type":36,"tag":121,"props":9080,"children":9081},{"emptyLinePlaceholder":171},[9082],{"type":41,"value":174},{"type":36,"tag":121,"props":9084,"children":9085},{"class":123,"line":3333},[9086],{"type":36,"tag":121,"props":9087,"children":9088},{"style":2019},[9089],{"type":41,"value":9090},"  \u002F\u002F For ZFG\n",{"type":36,"tag":121,"props":9092,"children":9093},{"class":123,"line":3342},[9094,9099,9103,9107],{"type":36,"tag":121,"props":9095,"children":9096},{"style":349},[9097],{"type":41,"value":9098},"  webEndpoint",{"type":36,"tag":121,"props":9100,"children":9101},{"style":145},[9102],{"type":41,"value":266},{"type":36,"tag":121,"props":9104,"children":9105},{"style":134},[9106],{"type":41,"value":272},{"type":36,"tag":121,"props":9108,"children":9109},{"style":145},[9110],{"type":41,"value":403},{"type":36,"tag":121,"props":9112,"children":9113},{"class":123,"line":3376},[9114,9119,9123,9127,9131],{"type":36,"tag":121,"props":9115,"children":9116},{"style":349},[9117],{"type":41,"value":9118},"  assetPath",{"type":36,"tag":121,"props":9120,"children":9121},{"style":145},[9122],{"type":41,"value":266},{"type":36,"tag":121,"props":9124,"children":9125},{"style":134},[9126],{"type":41,"value":272},{"type":36,"tag":121,"props":9128,"children":9129},{"style":145},[9130],{"type":41,"value":277},{"type":36,"tag":121,"props":9132,"children":9133},{"style":2019},[9134],{"type":41,"value":9135},"             \u002F\u002F Custom path for AV libraries (self-hosting)\n",{"type":36,"tag":121,"props":9137,"children":9138},{"class":123,"line":3427},[9139,9143,9147],{"type":36,"tag":121,"props":9140,"children":9141},{"style":145},[9142],{"type":41,"value":3575},{"type":36,"tag":121,"props":9144,"children":9145},{"style":134},[9146],{"type":41,"value":312},{"type":36,"tag":121,"props":9148,"children":9149},{"style":145},[9150],{"type":41,"value":164},{"type":36,"tag":1893,"props":9152,"children":9154},{"id":9153},"clientjoin-key-options",[9155],{"type":41,"value":9156},"client.join() - Key Options",{"type":36,"tag":94,"props":9158,"children":9160},{"className":2404,"code":9159,"language":2406,"meta":99,"style":99},"await client.join({\n  \u002F\u002F Required\n  signature: string,\n  sdkKey: string,\n  meetingNumber: string | number,\n  userName: string,\n\n  \u002F\u002F Authentication\n  password: string,              \u002F\u002F Lowercase! (different from Client View)\n  zak: string,                   \u002F\u002F Host's ZAK token\n  tk: string,                    \u002F\u002F Registration token\n\n  \u002F\u002F Optional\n  userEmail: string,\n});\n",[9161],{"type":36,"tag":102,"props":9162,"children":9163},{"__ignoreMap":99},[9164,9191,9198,9217,9237,9264,9283,9290,9297,9322,9346,9370,9377,9384,9403],{"type":36,"tag":121,"props":9165,"children":9166},{"class":123,"line":124},[9167,9171,9175,9179,9183,9187],{"type":36,"tag":121,"props":9168,"children":9169},{"style":128},[9170],{"type":41,"value":8327},{"type":36,"tag":121,"props":9172,"children":9173},{"style":134},[9174],{"type":41,"value":741},{"type":36,"tag":121,"props":9176,"children":9177},{"style":145},[9178],{"type":41,"value":82},{"type":36,"tag":121,"props":9180,"children":9181},{"style":206},[9182],{"type":41,"value":1026},{"type":36,"tag":121,"props":9184,"children":9185},{"style":134},[9186],{"type":41,"value":255},{"type":36,"tag":121,"props":9188,"children":9189},{"style":145},[9190],{"type":41,"value":759},{"type":36,"tag":121,"props":9192,"children":9193},{"class":123,"line":167},[9194],{"type":36,"tag":121,"props":9195,"children":9196},{"style":2019},[9197],{"type":41,"value":4555},{"type":36,"tag":121,"props":9199,"children":9200},{"class":123,"line":177},[9201,9205,9209,9213],{"type":36,"tag":121,"props":9202,"children":9203},{"style":349},[9204],{"type":41,"value":5167},{"type":36,"tag":121,"props":9206,"children":9207},{"style":145},[9208],{"type":41,"value":266},{"type":36,"tag":121,"props":9210,"children":9211},{"style":134},[9212],{"type":41,"value":272},{"type":36,"tag":121,"props":9214,"children":9215},{"style":145},[9216],{"type":41,"value":403},{"type":36,"tag":121,"props":9218,"children":9219},{"class":123,"line":221},[9220,9225,9229,9233],{"type":36,"tag":121,"props":9221,"children":9222},{"style":349},[9223],{"type":41,"value":9224},"  sdkKey",{"type":36,"tag":121,"props":9226,"children":9227},{"style":145},[9228],{"type":41,"value":266},{"type":36,"tag":121,"props":9230,"children":9231},{"style":134},[9232],{"type":41,"value":272},{"type":36,"tag":121,"props":9234,"children":9235},{"style":145},[9236],{"type":41,"value":403},{"type":36,"tag":121,"props":9238,"children":9239},{"class":123,"line":229},[9240,9244,9248,9252,9256,9260],{"type":36,"tag":121,"props":9241,"children":9242},{"style":349},[9243],{"type":41,"value":5192},{"type":36,"tag":121,"props":9245,"children":9246},{"style":145},[9247],{"type":41,"value":266},{"type":36,"tag":121,"props":9249,"children":9250},{"style":134},[9251],{"type":41,"value":5201},{"type":36,"tag":121,"props":9253,"children":9254},{"style":145},[9255],{"type":41,"value":5206},{"type":36,"tag":121,"props":9257,"children":9258},{"style":134},[9259],{"type":41,"value":5211},{"type":36,"tag":121,"props":9261,"children":9262},{"style":145},[9263],{"type":41,"value":403},{"type":36,"tag":121,"props":9265,"children":9266},{"class":123,"line":320},[9267,9271,9275,9279],{"type":36,"tag":121,"props":9268,"children":9269},{"style":349},[9270],{"type":41,"value":5223},{"type":36,"tag":121,"props":9272,"children":9273},{"style":145},[9274],{"type":41,"value":266},{"type":36,"tag":121,"props":9276,"children":9277},{"style":134},[9278],{"type":41,"value":272},{"type":36,"tag":121,"props":9280,"children":9281},{"style":145},[9282],{"type":41,"value":403},{"type":36,"tag":121,"props":9284,"children":9285},{"class":123,"line":375},[9286],{"type":36,"tag":121,"props":9287,"children":9288},{"emptyLinePlaceholder":171},[9289],{"type":41,"value":174},{"type":36,"tag":121,"props":9291,"children":9292},{"class":123,"line":406},[9293],{"type":36,"tag":121,"props":9294,"children":9295},{"style":2019},[9296],{"type":41,"value":5250},{"type":36,"tag":121,"props":9298,"children":9299},{"class":123,"line":459},[9300,9305,9309,9313,9317],{"type":36,"tag":121,"props":9301,"children":9302},{"style":349},[9303],{"type":41,"value":9304},"  password",{"type":36,"tag":121,"props":9306,"children":9307},{"style":145},[9308],{"type":41,"value":266},{"type":36,"tag":121,"props":9310,"children":9311},{"style":134},[9312],{"type":41,"value":272},{"type":36,"tag":121,"props":9314,"children":9315},{"style":145},[9316],{"type":41,"value":277},{"type":36,"tag":121,"props":9318,"children":9319},{"style":2019},[9320],{"type":41,"value":9321},"              \u002F\u002F Lowercase! (different from Client View)\n",{"type":36,"tag":121,"props":9323,"children":9324},{"class":123,"line":532},[9325,9329,9333,9337,9341],{"type":36,"tag":121,"props":9326,"children":9327},{"style":349},[9328],{"type":41,"value":5283},{"type":36,"tag":121,"props":9330,"children":9331},{"style":145},[9332],{"type":41,"value":266},{"type":36,"tag":121,"props":9334,"children":9335},{"style":134},[9336],{"type":41,"value":272},{"type":36,"tag":121,"props":9338,"children":9339},{"style":145},[9340],{"type":41,"value":277},{"type":36,"tag":121,"props":9342,"children":9343},{"style":2019},[9344],{"type":41,"value":9345},"                   \u002F\u002F Host's ZAK token\n",{"type":36,"tag":121,"props":9347,"children":9348},{"class":123,"line":549},[9349,9353,9357,9361,9365],{"type":36,"tag":121,"props":9350,"children":9351},{"style":349},[9352],{"type":41,"value":5308},{"type":36,"tag":121,"props":9354,"children":9355},{"style":145},[9356],{"type":41,"value":266},{"type":36,"tag":121,"props":9358,"children":9359},{"style":134},[9360],{"type":41,"value":272},{"type":36,"tag":121,"props":9362,"children":9363},{"style":145},[9364],{"type":41,"value":277},{"type":36,"tag":121,"props":9366,"children":9367},{"style":2019},[9368],{"type":41,"value":9369},"                    \u002F\u002F Registration token\n",{"type":36,"tag":121,"props":9371,"children":9372},{"class":123,"line":557},[9373],{"type":36,"tag":121,"props":9374,"children":9375},{"emptyLinePlaceholder":171},[9376],{"type":41,"value":174},{"type":36,"tag":121,"props":9378,"children":9379},{"class":123,"line":655},[9380],{"type":36,"tag":121,"props":9381,"children":9382},{"style":2019},[9383],{"type":41,"value":5365},{"type":36,"tag":121,"props":9385,"children":9386},{"class":123,"line":663},[9387,9391,9395,9399],{"type":36,"tag":121,"props":9388,"children":9389},{"style":349},[9390],{"type":41,"value":5373},{"type":36,"tag":121,"props":9392,"children":9393},{"style":145},[9394],{"type":41,"value":266},{"type":36,"tag":121,"props":9396,"children":9397},{"style":134},[9398],{"type":41,"value":272},{"type":36,"tag":121,"props":9400,"children":9401},{"style":145},[9402],{"type":41,"value":403},{"type":36,"tag":121,"props":9404,"children":9405},{"class":123,"line":722},[9406,9410,9414],{"type":36,"tag":121,"props":9407,"children":9408},{"style":145},[9409],{"type":41,"value":3575},{"type":36,"tag":121,"props":9411,"children":9412},{"style":134},[9413],{"type":41,"value":312},{"type":36,"tag":121,"props":9415,"children":9416},{"style":145},[9417],{"type":41,"value":164},{"type":36,"tag":1893,"props":9419,"children":9421},{"id":9420},"event-listeners-component-view",[9422],{"type":41,"value":9423},"Event Listeners (Component View)",{"type":36,"tag":94,"props":9425,"children":9427},{"className":2404,"code":9426,"language":2406,"meta":99,"style":99},"\u002F\u002F Connection state\nclient.on('connection-change', (payload) => {\n  \u002F\u002F payload.state: 'Connecting', 'Connected', 'Reconnecting', 'Closed'\n  console.log('Connection:', payload.state);\n});\n\n\u002F\u002F User events\nclient.on('user-added', (payload) => {\n  console.log('Users added:', payload);\n});\n\nclient.on('user-removed', (payload) => {\n  console.log('Users removed:', payload);\n});\n\nclient.on('user-updated', (payload) => {\n  console.log('Users updated:', payload);\n});\n\n\u002F\u002F Active speaker\nclient.on('active-speaker', (payload) => {\n  console.log('Active speaker:', payload);\n});\n\n\u002F\u002F Video state\nclient.on('video-active-change', (payload) => {\n  console.log('Video active:', payload);\n});\n\n\u002F\u002F Unsubscribe\nclient.off('connection-change', handler);\n",[9428],{"type":36,"tag":102,"props":9429,"children":9430},{"__ignoreMap":99},[9431,9439,9498,9506,9564,9579,9586,9593,9649,9697,9712,9719,9775,9823,9838,9845,9901,9949,9964,9971,9979,10035,10082,10097,10104,10112,10168,10216,10231,10238,10246],{"type":36,"tag":121,"props":9432,"children":9433},{"class":123,"line":124},[9434],{"type":36,"tag":121,"props":9435,"children":9436},{"style":2019},[9437],{"type":41,"value":9438},"\u002F\u002F Connection state\n",{"type":36,"tag":121,"props":9440,"children":9441},{"class":123,"line":167},[9442,9447,9451,9456,9460,9464,9469,9473,9477,9481,9486,9490,9494],{"type":36,"tag":121,"props":9443,"children":9444},{"style":134},[9445],{"type":41,"value":9446},"client",{"type":36,"tag":121,"props":9448,"children":9449},{"style":145},[9450],{"type":41,"value":82},{"type":36,"tag":121,"props":9452,"children":9453},{"style":206},[9454],{"type":41,"value":9455},"on",{"type":36,"tag":121,"props":9457,"children":9458},{"style":134},[9459],{"type":41,"value":255},{"type":36,"tag":121,"props":9461,"children":9462},{"style":145},[9463],{"type":41,"value":159},{"type":36,"tag":121,"props":9465,"children":9466},{"style":151},[9467],{"type":41,"value":9468},"connection-change",{"type":36,"tag":121,"props":9470,"children":9471},{"style":145},[9472],{"type":41,"value":159},{"type":36,"tag":121,"props":9474,"children":9475},{"style":145},[9476],{"type":41,"value":277},{"type":36,"tag":121,"props":9478,"children":9479},{"style":145},[9480],{"type":41,"value":568},{"type":36,"tag":121,"props":9482,"children":9483},{"style":258},[9484],{"type":41,"value":9485},"payload",{"type":36,"tag":121,"props":9487,"children":9488},{"style":145},[9489],{"type":41,"value":312},{"type":36,"tag":121,"props":9491,"children":9492},{"style":181},[9493],{"type":41,"value":2691},{"type":36,"tag":121,"props":9495,"children":9496},{"style":145},[9497],{"type":41,"value":317},{"type":36,"tag":121,"props":9499,"children":9500},{"class":123,"line":177},[9501],{"type":36,"tag":121,"props":9502,"children":9503},{"style":2019},[9504],{"type":41,"value":9505},"  \u002F\u002F payload.state: 'Connecting', 'Connected', 'Reconnecting', 'Closed'\n",{"type":36,"tag":121,"props":9507,"children":9508},{"class":123,"line":221},[9509,9513,9517,9521,9525,9529,9534,9538,9542,9547,9551,9556,9560],{"type":36,"tag":121,"props":9510,"children":9511},{"style":134},[9512],{"type":41,"value":5569},{"type":36,"tag":121,"props":9514,"children":9515},{"style":145},[9516],{"type":41,"value":82},{"type":36,"tag":121,"props":9518,"children":9519},{"style":206},[9520],{"type":41,"value":2484},{"type":36,"tag":121,"props":9522,"children":9523},{"style":349},[9524],{"type":41,"value":255},{"type":36,"tag":121,"props":9526,"children":9527},{"style":145},[9528],{"type":41,"value":159},{"type":36,"tag":121,"props":9530,"children":9531},{"style":151},[9532],{"type":41,"value":9533},"Connection:",{"type":36,"tag":121,"props":9535,"children":9536},{"style":145},[9537],{"type":41,"value":159},{"type":36,"tag":121,"props":9539,"children":9540},{"style":145},[9541],{"type":41,"value":277},{"type":36,"tag":121,"props":9543,"children":9544},{"style":134},[9545],{"type":41,"value":9546}," payload",{"type":36,"tag":121,"props":9548,"children":9549},{"style":145},[9550],{"type":41,"value":82},{"type":36,"tag":121,"props":9552,"children":9553},{"style":134},[9554],{"type":41,"value":9555},"state",{"type":36,"tag":121,"props":9557,"children":9558},{"style":349},[9559],{"type":41,"value":312},{"type":36,"tag":121,"props":9561,"children":9562},{"style":145},[9563],{"type":41,"value":164},{"type":36,"tag":121,"props":9565,"children":9566},{"class":123,"line":229},[9567,9571,9575],{"type":36,"tag":121,"props":9568,"children":9569},{"style":145},[9570],{"type":41,"value":3575},{"type":36,"tag":121,"props":9572,"children":9573},{"style":134},[9574],{"type":41,"value":312},{"type":36,"tag":121,"props":9576,"children":9577},{"style":145},[9578],{"type":41,"value":164},{"type":36,"tag":121,"props":9580,"children":9581},{"class":123,"line":320},[9582],{"type":36,"tag":121,"props":9583,"children":9584},{"emptyLinePlaceholder":171},[9585],{"type":41,"value":174},{"type":36,"tag":121,"props":9587,"children":9588},{"class":123,"line":375},[9589],{"type":36,"tag":121,"props":9590,"children":9591},{"style":2019},[9592],{"type":41,"value":5503},{"type":36,"tag":121,"props":9594,"children":9595},{"class":123,"line":406},[9596,9600,9604,9608,9612,9616,9621,9625,9629,9633,9637,9641,9645],{"type":36,"tag":121,"props":9597,"children":9598},{"style":134},[9599],{"type":41,"value":9446},{"type":36,"tag":121,"props":9601,"children":9602},{"style":145},[9603],{"type":41,"value":82},{"type":36,"tag":121,"props":9605,"children":9606},{"style":206},[9607],{"type":41,"value":9455},{"type":36,"tag":121,"props":9609,"children":9610},{"style":134},[9611],{"type":41,"value":255},{"type":36,"tag":121,"props":9613,"children":9614},{"style":145},[9615],{"type":41,"value":159},{"type":36,"tag":121,"props":9617,"children":9618},{"style":151},[9619],{"type":41,"value":9620},"user-added",{"type":36,"tag":121,"props":9622,"children":9623},{"style":145},[9624],{"type":41,"value":159},{"type":36,"tag":121,"props":9626,"children":9627},{"style":145},[9628],{"type":41,"value":277},{"type":36,"tag":121,"props":9630,"children":9631},{"style":145},[9632],{"type":41,"value":568},{"type":36,"tag":121,"props":9634,"children":9635},{"style":258},[9636],{"type":41,"value":9485},{"type":36,"tag":121,"props":9638,"children":9639},{"style":145},[9640],{"type":41,"value":312},{"type":36,"tag":121,"props":9642,"children":9643},{"style":181},[9644],{"type":41,"value":2691},{"type":36,"tag":121,"props":9646,"children":9647},{"style":145},[9648],{"type":41,"value":317},{"type":36,"tag":121,"props":9650,"children":9651},{"class":123,"line":459},[9652,9656,9660,9664,9668,9672,9677,9681,9685,9689,9693],{"type":36,"tag":121,"props":9653,"children":9654},{"style":134},[9655],{"type":41,"value":5569},{"type":36,"tag":121,"props":9657,"children":9658},{"style":145},[9659],{"type":41,"value":82},{"type":36,"tag":121,"props":9661,"children":9662},{"style":206},[9663],{"type":41,"value":2484},{"type":36,"tag":121,"props":9665,"children":9666},{"style":349},[9667],{"type":41,"value":255},{"type":36,"tag":121,"props":9669,"children":9670},{"style":145},[9671],{"type":41,"value":159},{"type":36,"tag":121,"props":9673,"children":9674},{"style":151},[9675],{"type":41,"value":9676},"Users added:",{"type":36,"tag":121,"props":9678,"children":9679},{"style":145},[9680],{"type":41,"value":159},{"type":36,"tag":121,"props":9682,"children":9683},{"style":145},[9684],{"type":41,"value":277},{"type":36,"tag":121,"props":9686,"children":9687},{"style":134},[9688],{"type":41,"value":9546},{"type":36,"tag":121,"props":9690,"children":9691},{"style":349},[9692],{"type":41,"value":312},{"type":36,"tag":121,"props":9694,"children":9695},{"style":145},[9696],{"type":41,"value":164},{"type":36,"tag":121,"props":9698,"children":9699},{"class":123,"line":532},[9700,9704,9708],{"type":36,"tag":121,"props":9701,"children":9702},{"style":145},[9703],{"type":41,"value":3575},{"type":36,"tag":121,"props":9705,"children":9706},{"style":134},[9707],{"type":41,"value":312},{"type":36,"tag":121,"props":9709,"children":9710},{"style":145},[9711],{"type":41,"value":164},{"type":36,"tag":121,"props":9713,"children":9714},{"class":123,"line":549},[9715],{"type":36,"tag":121,"props":9716,"children":9717},{"emptyLinePlaceholder":171},[9718],{"type":41,"value":174},{"type":36,"tag":121,"props":9720,"children":9721},{"class":123,"line":557},[9722,9726,9730,9734,9738,9742,9747,9751,9755,9759,9763,9767,9771],{"type":36,"tag":121,"props":9723,"children":9724},{"style":134},[9725],{"type":41,"value":9446},{"type":36,"tag":121,"props":9727,"children":9728},{"style":145},[9729],{"type":41,"value":82},{"type":36,"tag":121,"props":9731,"children":9732},{"style":206},[9733],{"type":41,"value":9455},{"type":36,"tag":121,"props":9735,"children":9736},{"style":134},[9737],{"type":41,"value":255},{"type":36,"tag":121,"props":9739,"children":9740},{"style":145},[9741],{"type":41,"value":159},{"type":36,"tag":121,"props":9743,"children":9744},{"style":151},[9745],{"type":41,"value":9746},"user-removed",{"type":36,"tag":121,"props":9748,"children":9749},{"style":145},[9750],{"type":41,"value":159},{"type":36,"tag":121,"props":9752,"children":9753},{"style":145},[9754],{"type":41,"value":277},{"type":36,"tag":121,"props":9756,"children":9757},{"style":145},[9758],{"type":41,"value":568},{"type":36,"tag":121,"props":9760,"children":9761},{"style":258},[9762],{"type":41,"value":9485},{"type":36,"tag":121,"props":9764,"children":9765},{"style":145},[9766],{"type":41,"value":312},{"type":36,"tag":121,"props":9768,"children":9769},{"style":181},[9770],{"type":41,"value":2691},{"type":36,"tag":121,"props":9772,"children":9773},{"style":145},[9774],{"type":41,"value":317},{"type":36,"tag":121,"props":9776,"children":9777},{"class":123,"line":655},[9778,9782,9786,9790,9794,9798,9803,9807,9811,9815,9819],{"type":36,"tag":121,"props":9779,"children":9780},{"style":134},[9781],{"type":41,"value":5569},{"type":36,"tag":121,"props":9783,"children":9784},{"style":145},[9785],{"type":41,"value":82},{"type":36,"tag":121,"props":9787,"children":9788},{"style":206},[9789],{"type":41,"value":2484},{"type":36,"tag":121,"props":9791,"children":9792},{"style":349},[9793],{"type":41,"value":255},{"type":36,"tag":121,"props":9795,"children":9796},{"style":145},[9797],{"type":41,"value":159},{"type":36,"tag":121,"props":9799,"children":9800},{"style":151},[9801],{"type":41,"value":9802},"Users removed:",{"type":36,"tag":121,"props":9804,"children":9805},{"style":145},[9806],{"type":41,"value":159},{"type":36,"tag":121,"props":9808,"children":9809},{"style":145},[9810],{"type":41,"value":277},{"type":36,"tag":121,"props":9812,"children":9813},{"style":134},[9814],{"type":41,"value":9546},{"type":36,"tag":121,"props":9816,"children":9817},{"style":349},[9818],{"type":41,"value":312},{"type":36,"tag":121,"props":9820,"children":9821},{"style":145},[9822],{"type":41,"value":164},{"type":36,"tag":121,"props":9824,"children":9825},{"class":123,"line":663},[9826,9830,9834],{"type":36,"tag":121,"props":9827,"children":9828},{"style":145},[9829],{"type":41,"value":3575},{"type":36,"tag":121,"props":9831,"children":9832},{"style":134},[9833],{"type":41,"value":312},{"type":36,"tag":121,"props":9835,"children":9836},{"style":145},[9837],{"type":41,"value":164},{"type":36,"tag":121,"props":9839,"children":9840},{"class":123,"line":722},[9841],{"type":36,"tag":121,"props":9842,"children":9843},{"emptyLinePlaceholder":171},[9844],{"type":41,"value":174},{"type":36,"tag":121,"props":9846,"children":9847},{"class":123,"line":730},[9848,9852,9856,9860,9864,9868,9873,9877,9881,9885,9889,9893,9897],{"type":36,"tag":121,"props":9849,"children":9850},{"style":134},[9851],{"type":41,"value":9446},{"type":36,"tag":121,"props":9853,"children":9854},{"style":145},[9855],{"type":41,"value":82},{"type":36,"tag":121,"props":9857,"children":9858},{"style":206},[9859],{"type":41,"value":9455},{"type":36,"tag":121,"props":9861,"children":9862},{"style":134},[9863],{"type":41,"value":255},{"type":36,"tag":121,"props":9865,"children":9866},{"style":145},[9867],{"type":41,"value":159},{"type":36,"tag":121,"props":9869,"children":9870},{"style":151},[9871],{"type":41,"value":9872},"user-updated",{"type":36,"tag":121,"props":9874,"children":9875},{"style":145},[9876],{"type":41,"value":159},{"type":36,"tag":121,"props":9878,"children":9879},{"style":145},[9880],{"type":41,"value":277},{"type":36,"tag":121,"props":9882,"children":9883},{"style":145},[9884],{"type":41,"value":568},{"type":36,"tag":121,"props":9886,"children":9887},{"style":258},[9888],{"type":41,"value":9485},{"type":36,"tag":121,"props":9890,"children":9891},{"style":145},[9892],{"type":41,"value":312},{"type":36,"tag":121,"props":9894,"children":9895},{"style":181},[9896],{"type":41,"value":2691},{"type":36,"tag":121,"props":9898,"children":9899},{"style":145},[9900],{"type":41,"value":317},{"type":36,"tag":121,"props":9902,"children":9903},{"class":123,"line":762},[9904,9908,9912,9916,9920,9924,9929,9933,9937,9941,9945],{"type":36,"tag":121,"props":9905,"children":9906},{"style":134},[9907],{"type":41,"value":5569},{"type":36,"tag":121,"props":9909,"children":9910},{"style":145},[9911],{"type":41,"value":82},{"type":36,"tag":121,"props":9913,"children":9914},{"style":206},[9915],{"type":41,"value":2484},{"type":36,"tag":121,"props":9917,"children":9918},{"style":349},[9919],{"type":41,"value":255},{"type":36,"tag":121,"props":9921,"children":9922},{"style":145},[9923],{"type":41,"value":159},{"type":36,"tag":121,"props":9925,"children":9926},{"style":151},[9927],{"type":41,"value":9928},"Users updated:",{"type":36,"tag":121,"props":9930,"children":9931},{"style":145},[9932],{"type":41,"value":159},{"type":36,"tag":121,"props":9934,"children":9935},{"style":145},[9936],{"type":41,"value":277},{"type":36,"tag":121,"props":9938,"children":9939},{"style":134},[9940],{"type":41,"value":9546},{"type":36,"tag":121,"props":9942,"children":9943},{"style":349},[9944],{"type":41,"value":312},{"type":36,"tag":121,"props":9946,"children":9947},{"style":145},[9948],{"type":41,"value":164},{"type":36,"tag":121,"props":9950,"children":9951},{"class":123,"line":815},[9952,9956,9960],{"type":36,"tag":121,"props":9953,"children":9954},{"style":145},[9955],{"type":41,"value":3575},{"type":36,"tag":121,"props":9957,"children":9958},{"style":134},[9959],{"type":41,"value":312},{"type":36,"tag":121,"props":9961,"children":9962},{"style":145},[9963],{"type":41,"value":164},{"type":36,"tag":121,"props":9965,"children":9966},{"class":123,"line":845},[9967],{"type":36,"tag":121,"props":9968,"children":9969},{"emptyLinePlaceholder":171},[9970],{"type":41,"value":174},{"type":36,"tag":121,"props":9972,"children":9973},{"class":123,"line":868},[9974],{"type":36,"tag":121,"props":9975,"children":9976},{"style":2019},[9977],{"type":41,"value":9978},"\u002F\u002F Active speaker\n",{"type":36,"tag":121,"props":9980,"children":9981},{"class":123,"line":889},[9982,9986,9990,9994,9998,10002,10007,10011,10015,10019,10023,10027,10031],{"type":36,"tag":121,"props":9983,"children":9984},{"style":134},[9985],{"type":41,"value":9446},{"type":36,"tag":121,"props":9987,"children":9988},{"style":145},[9989],{"type":41,"value":82},{"type":36,"tag":121,"props":9991,"children":9992},{"style":206},[9993],{"type":41,"value":9455},{"type":36,"tag":121,"props":9995,"children":9996},{"style":134},[9997],{"type":41,"value":255},{"type":36,"tag":121,"props":9999,"children":10000},{"style":145},[10001],{"type":41,"value":159},{"type":36,"tag":121,"props":10003,"children":10004},{"style":151},[10005],{"type":41,"value":10006},"active-speaker",{"type":36,"tag":121,"props":10008,"children":10009},{"style":145},[10010],{"type":41,"value":159},{"type":36,"tag":121,"props":10012,"children":10013},{"style":145},[10014],{"type":41,"value":277},{"type":36,"tag":121,"props":10016,"children":10017},{"style":145},[10018],{"type":41,"value":568},{"type":36,"tag":121,"props":10020,"children":10021},{"style":258},[10022],{"type":41,"value":9485},{"type":36,"tag":121,"props":10024,"children":10025},{"style":145},[10026],{"type":41,"value":312},{"type":36,"tag":121,"props":10028,"children":10029},{"style":181},[10030],{"type":41,"value":2691},{"type":36,"tag":121,"props":10032,"children":10033},{"style":145},[10034],{"type":41,"value":317},{"type":36,"tag":121,"props":10036,"children":10037},{"class":123,"line":906},[10038,10042,10046,10050,10054,10058,10062,10066,10070,10074,10078],{"type":36,"tag":121,"props":10039,"children":10040},{"style":134},[10041],{"type":41,"value":5569},{"type":36,"tag":121,"props":10043,"children":10044},{"style":145},[10045],{"type":41,"value":82},{"type":36,"tag":121,"props":10047,"children":10048},{"style":206},[10049],{"type":41,"value":2484},{"type":36,"tag":121,"props":10051,"children":10052},{"style":349},[10053],{"type":41,"value":255},{"type":36,"tag":121,"props":10055,"children":10056},{"style":145},[10057],{"type":41,"value":159},{"type":36,"tag":121,"props":10059,"children":10060},{"style":151},[10061],{"type":41,"value":6349},{"type":36,"tag":121,"props":10063,"children":10064},{"style":145},[10065],{"type":41,"value":159},{"type":36,"tag":121,"props":10067,"children":10068},{"style":145},[10069],{"type":41,"value":277},{"type":36,"tag":121,"props":10071,"children":10072},{"style":134},[10073],{"type":41,"value":9546},{"type":36,"tag":121,"props":10075,"children":10076},{"style":349},[10077],{"type":41,"value":312},{"type":36,"tag":121,"props":10079,"children":10080},{"style":145},[10081],{"type":41,"value":164},{"type":36,"tag":121,"props":10083,"children":10084},{"class":123,"line":975},[10085,10089,10093],{"type":36,"tag":121,"props":10086,"children":10087},{"style":145},[10088],{"type":41,"value":3575},{"type":36,"tag":121,"props":10090,"children":10091},{"style":134},[10092],{"type":41,"value":312},{"type":36,"tag":121,"props":10094,"children":10095},{"style":145},[10096],{"type":41,"value":164},{"type":36,"tag":121,"props":10098,"children":10099},{"class":123,"line":984},[10100],{"type":36,"tag":121,"props":10101,"children":10102},{"emptyLinePlaceholder":171},[10103],{"type":41,"value":174},{"type":36,"tag":121,"props":10105,"children":10106},{"class":123,"line":1000},[10107],{"type":36,"tag":121,"props":10108,"children":10109},{"style":2019},[10110],{"type":41,"value":10111},"\u002F\u002F Video state\n",{"type":36,"tag":121,"props":10113,"children":10114},{"class":123,"line":1008},[10115,10119,10123,10127,10131,10135,10140,10144,10148,10152,10156,10160,10164],{"type":36,"tag":121,"props":10116,"children":10117},{"style":134},[10118],{"type":41,"value":9446},{"type":36,"tag":121,"props":10120,"children":10121},{"style":145},[10122],{"type":41,"value":82},{"type":36,"tag":121,"props":10124,"children":10125},{"style":206},[10126],{"type":41,"value":9455},{"type":36,"tag":121,"props":10128,"children":10129},{"style":134},[10130],{"type":41,"value":255},{"type":36,"tag":121,"props":10132,"children":10133},{"style":145},[10134],{"type":41,"value":159},{"type":36,"tag":121,"props":10136,"children":10137},{"style":151},[10138],{"type":41,"value":10139},"video-active-change",{"type":36,"tag":121,"props":10141,"children":10142},{"style":145},[10143],{"type":41,"value":159},{"type":36,"tag":121,"props":10145,"children":10146},{"style":145},[10147],{"type":41,"value":277},{"type":36,"tag":121,"props":10149,"children":10150},{"style":145},[10151],{"type":41,"value":568},{"type":36,"tag":121,"props":10153,"children":10154},{"style":258},[10155],{"type":41,"value":9485},{"type":36,"tag":121,"props":10157,"children":10158},{"style":145},[10159],{"type":41,"value":312},{"type":36,"tag":121,"props":10161,"children":10162},{"style":181},[10163],{"type":41,"value":2691},{"type":36,"tag":121,"props":10165,"children":10166},{"style":145},[10167],{"type":41,"value":317},{"type":36,"tag":121,"props":10169,"children":10170},{"class":123,"line":1037},[10171,10175,10179,10183,10187,10191,10196,10200,10204,10208,10212],{"type":36,"tag":121,"props":10172,"children":10173},{"style":134},[10174],{"type":41,"value":5569},{"type":36,"tag":121,"props":10176,"children":10177},{"style":145},[10178],{"type":41,"value":82},{"type":36,"tag":121,"props":10180,"children":10181},{"style":206},[10182],{"type":41,"value":2484},{"type":36,"tag":121,"props":10184,"children":10185},{"style":349},[10186],{"type":41,"value":255},{"type":36,"tag":121,"props":10188,"children":10189},{"style":145},[10190],{"type":41,"value":159},{"type":36,"tag":121,"props":10192,"children":10193},{"style":151},[10194],{"type":41,"value":10195},"Video active:",{"type":36,"tag":121,"props":10197,"children":10198},{"style":145},[10199],{"type":41,"value":159},{"type":36,"tag":121,"props":10201,"children":10202},{"style":145},[10203],{"type":41,"value":277},{"type":36,"tag":121,"props":10205,"children":10206},{"style":134},[10207],{"type":41,"value":9546},{"type":36,"tag":121,"props":10209,"children":10210},{"style":349},[10211],{"type":41,"value":312},{"type":36,"tag":121,"props":10213,"children":10214},{"style":145},[10215],{"type":41,"value":164},{"type":36,"tag":121,"props":10217,"children":10218},{"class":123,"line":1050},[10219,10223,10227],{"type":36,"tag":121,"props":10220,"children":10221},{"style":145},[10222],{"type":41,"value":3575},{"type":36,"tag":121,"props":10224,"children":10225},{"style":134},[10226],{"type":41,"value":312},{"type":36,"tag":121,"props":10228,"children":10229},{"style":145},[10230],{"type":41,"value":164},{"type":36,"tag":121,"props":10232,"children":10233},{"class":123,"line":1063},[10234],{"type":36,"tag":121,"props":10235,"children":10236},{"emptyLinePlaceholder":171},[10237],{"type":41,"value":174},{"type":36,"tag":121,"props":10239,"children":10240},{"class":123,"line":1076},[10241],{"type":36,"tag":121,"props":10242,"children":10243},{"style":2019},[10244],{"type":41,"value":10245},"\u002F\u002F Unsubscribe\n",{"type":36,"tag":121,"props":10247,"children":10248},{"class":123,"line":1089},[10249,10253,10257,10262,10266,10270,10274,10278,10282,10287],{"type":36,"tag":121,"props":10250,"children":10251},{"style":134},[10252],{"type":41,"value":9446},{"type":36,"tag":121,"props":10254,"children":10255},{"style":145},[10256],{"type":41,"value":82},{"type":36,"tag":121,"props":10258,"children":10259},{"style":206},[10260],{"type":41,"value":10261},"off",{"type":36,"tag":121,"props":10263,"children":10264},{"style":134},[10265],{"type":41,"value":255},{"type":36,"tag":121,"props":10267,"children":10268},{"style":145},[10269],{"type":41,"value":159},{"type":36,"tag":121,"props":10271,"children":10272},{"style":151},[10273],{"type":41,"value":9468},{"type":36,"tag":121,"props":10275,"children":10276},{"style":145},[10277],{"type":41,"value":159},{"type":36,"tag":121,"props":10279,"children":10280},{"style":145},[10281],{"type":41,"value":277},{"type":36,"tag":121,"props":10283,"children":10284},{"style":134},[10285],{"type":41,"value":10286}," handler)",{"type":36,"tag":121,"props":10288,"children":10289},{"style":145},[10290],{"type":41,"value":164},{"type":36,"tag":1893,"props":10292,"children":10294},{"id":10293},"common-methods-component-view",[10295],{"type":41,"value":10296},"Common Methods (Component View)",{"type":36,"tag":94,"props":10298,"children":10300},{"className":2404,"code":10299,"language":2406,"meta":99,"style":99},"\u002F\u002F Get current user\nconst currentUser = client.getCurrentUser();\n\n\u002F\u002F Get all participants\nconst participants = client.getParticipantsList();\n\n\u002F\u002F Audio control\nawait client.mute(true);\nawait client.muteAudio(userId, true);\n\n\u002F\u002F Video control\nawait client.muteVideo(userId, true);\n\n\u002F\u002F Leave\nclient.leaveMeeting();\n\n\u002F\u002F End (host only)\nclient.endMeeting();\n",[10301],{"type":36,"tag":102,"props":10302,"children":10303},{"__ignoreMap":99},[10304,10312,10348,10355,10363,10400,10407,10415,10451,10492,10499,10507,10547,10554,10562,10585,10592,10600],{"type":36,"tag":121,"props":10305,"children":10306},{"class":123,"line":124},[10307],{"type":36,"tag":121,"props":10308,"children":10309},{"style":2019},[10310],{"type":41,"value":10311},"\u002F\u002F Get current user\n",{"type":36,"tag":121,"props":10313,"children":10314},{"class":123,"line":167},[10315,10319,10324,10328,10332,10336,10340,10344],{"type":36,"tag":121,"props":10316,"children":10317},{"style":181},[10318],{"type":41,"value":184},{"type":36,"tag":121,"props":10320,"children":10321},{"style":134},[10322],{"type":41,"value":10323}," currentUser ",{"type":36,"tag":121,"props":10325,"children":10326},{"style":145},[10327],{"type":41,"value":194},{"type":36,"tag":121,"props":10329,"children":10330},{"style":134},[10331],{"type":41,"value":741},{"type":36,"tag":121,"props":10333,"children":10334},{"style":145},[10335],{"type":41,"value":82},{"type":36,"tag":121,"props":10337,"children":10338},{"style":206},[10339],{"type":41,"value":3215},{"type":36,"tag":121,"props":10341,"children":10342},{"style":134},[10343],{"type":41,"value":214},{"type":36,"tag":121,"props":10345,"children":10346},{"style":145},[10347],{"type":41,"value":164},{"type":36,"tag":121,"props":10349,"children":10350},{"class":123,"line":177},[10351],{"type":36,"tag":121,"props":10352,"children":10353},{"emptyLinePlaceholder":171},[10354],{"type":41,"value":174},{"type":36,"tag":121,"props":10356,"children":10357},{"class":123,"line":221},[10358],{"type":36,"tag":121,"props":10359,"children":10360},{"style":2019},[10361],{"type":41,"value":10362},"\u002F\u002F Get all participants\n",{"type":36,"tag":121,"props":10364,"children":10365},{"class":123,"line":229},[10366,10370,10375,10379,10383,10387,10392,10396],{"type":36,"tag":121,"props":10367,"children":10368},{"style":181},[10369],{"type":41,"value":184},{"type":36,"tag":121,"props":10371,"children":10372},{"style":134},[10373],{"type":41,"value":10374}," participants ",{"type":36,"tag":121,"props":10376,"children":10377},{"style":145},[10378],{"type":41,"value":194},{"type":36,"tag":121,"props":10380,"children":10381},{"style":134},[10382],{"type":41,"value":741},{"type":36,"tag":121,"props":10384,"children":10385},{"style":145},[10386],{"type":41,"value":82},{"type":36,"tag":121,"props":10388,"children":10389},{"style":206},[10390],{"type":41,"value":10391},"getParticipantsList",{"type":36,"tag":121,"props":10393,"children":10394},{"style":134},[10395],{"type":41,"value":214},{"type":36,"tag":121,"props":10397,"children":10398},{"style":145},[10399],{"type":41,"value":164},{"type":36,"tag":121,"props":10401,"children":10402},{"class":123,"line":320},[10403],{"type":36,"tag":121,"props":10404,"children":10405},{"emptyLinePlaceholder":171},[10406],{"type":41,"value":174},{"type":36,"tag":121,"props":10408,"children":10409},{"class":123,"line":375},[10410],{"type":36,"tag":121,"props":10411,"children":10412},{"style":2019},[10413],{"type":41,"value":10414},"\u002F\u002F Audio control\n",{"type":36,"tag":121,"props":10416,"children":10417},{"class":123,"line":406},[10418,10422,10426,10430,10434,10438,10443,10447],{"type":36,"tag":121,"props":10419,"children":10420},{"style":128},[10421],{"type":41,"value":8327},{"type":36,"tag":121,"props":10423,"children":10424},{"style":134},[10425],{"type":41,"value":741},{"type":36,"tag":121,"props":10427,"children":10428},{"style":145},[10429],{"type":41,"value":82},{"type":36,"tag":121,"props":10431,"children":10432},{"style":206},[10433],{"type":41,"value":7625},{"type":36,"tag":121,"props":10435,"children":10436},{"style":134},[10437],{"type":41,"value":255},{"type":36,"tag":121,"props":10439,"children":10440},{"style":858},[10441],{"type":41,"value":10442},"true",{"type":36,"tag":121,"props":10444,"children":10445},{"style":134},[10446],{"type":41,"value":312},{"type":36,"tag":121,"props":10448,"children":10449},{"style":145},[10450],{"type":41,"value":164},{"type":36,"tag":121,"props":10452,"children":10453},{"class":123,"line":459},[10454,10458,10462,10466,10471,10476,10480,10484,10488],{"type":36,"tag":121,"props":10455,"children":10456},{"style":128},[10457],{"type":41,"value":8327},{"type":36,"tag":121,"props":10459,"children":10460},{"style":134},[10461],{"type":41,"value":741},{"type":36,"tag":121,"props":10463,"children":10464},{"style":145},[10465],{"type":41,"value":82},{"type":36,"tag":121,"props":10467,"children":10468},{"style":206},[10469],{"type":41,"value":10470},"muteAudio",{"type":36,"tag":121,"props":10472,"children":10473},{"style":134},[10474],{"type":41,"value":10475},"(userId",{"type":36,"tag":121,"props":10477,"children":10478},{"style":145},[10479],{"type":41,"value":277},{"type":36,"tag":121,"props":10481,"children":10482},{"style":858},[10483],{"type":41,"value":861},{"type":36,"tag":121,"props":10485,"children":10486},{"style":134},[10487],{"type":41,"value":312},{"type":36,"tag":121,"props":10489,"children":10490},{"style":145},[10491],{"type":41,"value":164},{"type":36,"tag":121,"props":10493,"children":10494},{"class":123,"line":532},[10495],{"type":36,"tag":121,"props":10496,"children":10497},{"emptyLinePlaceholder":171},[10498],{"type":41,"value":174},{"type":36,"tag":121,"props":10500,"children":10501},{"class":123,"line":549},[10502],{"type":36,"tag":121,"props":10503,"children":10504},{"style":2019},[10505],{"type":41,"value":10506},"\u002F\u002F Video control\n",{"type":36,"tag":121,"props":10508,"children":10509},{"class":123,"line":557},[10510,10514,10518,10522,10527,10531,10535,10539,10543],{"type":36,"tag":121,"props":10511,"children":10512},{"style":128},[10513],{"type":41,"value":8327},{"type":36,"tag":121,"props":10515,"children":10516},{"style":134},[10517],{"type":41,"value":741},{"type":36,"tag":121,"props":10519,"children":10520},{"style":145},[10521],{"type":41,"value":82},{"type":36,"tag":121,"props":10523,"children":10524},{"style":206},[10525],{"type":41,"value":10526},"muteVideo",{"type":36,"tag":121,"props":10528,"children":10529},{"style":134},[10530],{"type":41,"value":10475},{"type":36,"tag":121,"props":10532,"children":10533},{"style":145},[10534],{"type":41,"value":277},{"type":36,"tag":121,"props":10536,"children":10537},{"style":858},[10538],{"type":41,"value":861},{"type":36,"tag":121,"props":10540,"children":10541},{"style":134},[10542],{"type":41,"value":312},{"type":36,"tag":121,"props":10544,"children":10545},{"style":145},[10546],{"type":41,"value":164},{"type":36,"tag":121,"props":10548,"children":10549},{"class":123,"line":655},[10550],{"type":36,"tag":121,"props":10551,"children":10552},{"emptyLinePlaceholder":171},[10553],{"type":41,"value":174},{"type":36,"tag":121,"props":10555,"children":10556},{"class":123,"line":663},[10557],{"type":36,"tag":121,"props":10558,"children":10559},{"style":2019},[10560],{"type":41,"value":10561},"\u002F\u002F Leave\n",{"type":36,"tag":121,"props":10563,"children":10564},{"class":123,"line":722},[10565,10569,10573,10577,10581],{"type":36,"tag":121,"props":10566,"children":10567},{"style":134},[10568],{"type":41,"value":9446},{"type":36,"tag":121,"props":10570,"children":10571},{"style":145},[10572],{"type":41,"value":82},{"type":36,"tag":121,"props":10574,"children":10575},{"style":206},[10576],{"type":41,"value":7841},{"type":36,"tag":121,"props":10578,"children":10579},{"style":134},[10580],{"type":41,"value":214},{"type":36,"tag":121,"props":10582,"children":10583},{"style":145},[10584],{"type":41,"value":164},{"type":36,"tag":121,"props":10586,"children":10587},{"class":123,"line":730},[10588],{"type":36,"tag":121,"props":10589,"children":10590},{"emptyLinePlaceholder":171},[10591],{"type":41,"value":174},{"type":36,"tag":121,"props":10593,"children":10594},{"class":123,"line":762},[10595],{"type":36,"tag":121,"props":10596,"children":10597},{"style":2019},[10598],{"type":41,"value":10599},"\u002F\u002F End (host only)\n",{"type":36,"tag":121,"props":10601,"children":10602},{"class":123,"line":815},[10603,10607,10611,10615,10619],{"type":36,"tag":121,"props":10604,"children":10605},{"style":134},[10606],{"type":41,"value":9446},{"type":36,"tag":121,"props":10608,"children":10609},{"style":145},[10610],{"type":41,"value":82},{"type":36,"tag":121,"props":10612,"children":10613},{"style":206},[10614],{"type":41,"value":7873},{"type":36,"tag":121,"props":10616,"children":10617},{"style":134},[10618],{"type":41,"value":214},{"type":36,"tag":121,"props":10620,"children":10621},{"style":145},[10622],{"type":41,"value":164},{"type":36,"tag":65,"props":10624,"children":10626},{"id":10625},"sharedarraybuffer-critical-for-hd",[10627],{"type":41,"value":10628},"SharedArrayBuffer (CRITICAL for HD)",{"type":36,"tag":44,"props":10630,"children":10631},{},[10632],{"type":41,"value":10633},"SharedArrayBuffer enables advanced features:",{"type":36,"tag":1131,"props":10635,"children":10636},{},[10637,10642,10647,10652],{"type":36,"tag":1135,"props":10638,"children":10639},{},[10640],{"type":41,"value":10641},"720p\u002F1080p video",{"type":36,"tag":1135,"props":10643,"children":10644},{},[10645],{"type":41,"value":10646},"Gallery view",{"type":36,"tag":1135,"props":10648,"children":10649},{},[10650],{"type":41,"value":10651},"Virtual backgrounds",{"type":36,"tag":1135,"props":10653,"children":10654},{},[10655],{"type":41,"value":10656},"Background noise suppression",{"type":36,"tag":1893,"props":10658,"children":10660},{"id":10659},"enable-with-http-headers",[10661],{"type":41,"value":10662},"Enable with HTTP Headers",{"type":36,"tag":94,"props":10664,"children":10667},{"className":10665,"code":10666,"language":41},[97],"Cross-Origin-Opener-Policy: same-origin\nCross-Origin-Embedder-Policy: require-corp\n",[10668],{"type":36,"tag":102,"props":10669,"children":10670},{"__ignoreMap":99},[10671],{"type":41,"value":10666},{"type":36,"tag":1893,"props":10673,"children":10675},{"id":10674},"verify-in-browser",[10676],{"type":41,"value":10677},"Verify in Browser",{"type":36,"tag":94,"props":10679,"children":10681},{"className":2404,"code":10680,"language":2406,"meta":99,"style":99},"if (typeof SharedArrayBuffer === 'function') {\n  console.log('SharedArrayBuffer enabled!');\n} else {\n  console.warn('HD features will be limited');\n}\n\n\u002F\u002F Or check cross-origin isolation\nconsole.log('Cross-origin isolated:', window.crossOriginIsolated);\n",[10682],{"type":36,"tag":102,"props":10683,"children":10684},{"__ignoreMap":99},[10685,10733,10773,10789,10829,10836,10843,10851],{"type":36,"tag":121,"props":10686,"children":10687},{"class":123,"line":124},[10688,10693,10697,10702,10707,10712,10716,10721,10725,10729],{"type":36,"tag":121,"props":10689,"children":10690},{"style":128},[10691],{"type":41,"value":10692},"if",{"type":36,"tag":121,"props":10694,"children":10695},{"style":134},[10696],{"type":41,"value":568},{"type":36,"tag":121,"props":10698,"children":10699},{"style":145},[10700],{"type":41,"value":10701},"typeof",{"type":36,"tag":121,"props":10703,"children":10704},{"style":134},[10705],{"type":41,"value":10706}," SharedArrayBuffer ",{"type":36,"tag":121,"props":10708,"children":10709},{"style":145},[10710],{"type":41,"value":10711},"===",{"type":36,"tag":121,"props":10713,"children":10714},{"style":145},[10715],{"type":41,"value":148},{"type":36,"tag":121,"props":10717,"children":10718},{"style":151},[10719],{"type":41,"value":10720},"function",{"type":36,"tag":121,"props":10722,"children":10723},{"style":145},[10724],{"type":41,"value":159},{"type":36,"tag":121,"props":10726,"children":10727},{"style":134},[10728],{"type":41,"value":592},{"type":36,"tag":121,"props":10730,"children":10731},{"style":145},[10732],{"type":41,"value":759},{"type":36,"tag":121,"props":10734,"children":10735},{"class":123,"line":167},[10736,10740,10744,10748,10752,10756,10761,10765,10769],{"type":36,"tag":121,"props":10737,"children":10738},{"style":134},[10739],{"type":41,"value":5569},{"type":36,"tag":121,"props":10741,"children":10742},{"style":145},[10743],{"type":41,"value":82},{"type":36,"tag":121,"props":10745,"children":10746},{"style":206},[10747],{"type":41,"value":2484},{"type":36,"tag":121,"props":10749,"children":10750},{"style":349},[10751],{"type":41,"value":255},{"type":36,"tag":121,"props":10753,"children":10754},{"style":145},[10755],{"type":41,"value":159},{"type":36,"tag":121,"props":10757,"children":10758},{"style":151},[10759],{"type":41,"value":10760},"SharedArrayBuffer enabled!",{"type":36,"tag":121,"props":10762,"children":10763},{"style":145},[10764],{"type":41,"value":159},{"type":36,"tag":121,"props":10766,"children":10767},{"style":349},[10768],{"type":41,"value":312},{"type":36,"tag":121,"props":10770,"children":10771},{"style":145},[10772],{"type":41,"value":164},{"type":36,"tag":121,"props":10774,"children":10775},{"class":123,"line":177},[10776,10780,10785],{"type":36,"tag":121,"props":10777,"children":10778},{"style":145},[10779],{"type":41,"value":3575},{"type":36,"tag":121,"props":10781,"children":10782},{"style":128},[10783],{"type":41,"value":10784}," else",{"type":36,"tag":121,"props":10786,"children":10787},{"style":145},[10788],{"type":41,"value":317},{"type":36,"tag":121,"props":10790,"children":10791},{"class":123,"line":221},[10792,10796,10800,10804,10808,10812,10817,10821,10825],{"type":36,"tag":121,"props":10793,"children":10794},{"style":134},[10795],{"type":41,"value":5569},{"type":36,"tag":121,"props":10797,"children":10798},{"style":145},[10799],{"type":41,"value":82},{"type":36,"tag":121,"props":10801,"children":10802},{"style":206},[10803],{"type":41,"value":1580},{"type":36,"tag":121,"props":10805,"children":10806},{"style":349},[10807],{"type":41,"value":255},{"type":36,"tag":121,"props":10809,"children":10810},{"style":145},[10811],{"type":41,"value":159},{"type":36,"tag":121,"props":10813,"children":10814},{"style":151},[10815],{"type":41,"value":10816},"HD features will be limited",{"type":36,"tag":121,"props":10818,"children":10819},{"style":145},[10820],{"type":41,"value":159},{"type":36,"tag":121,"props":10822,"children":10823},{"style":349},[10824],{"type":41,"value":312},{"type":36,"tag":121,"props":10826,"children":10827},{"style":145},[10828],{"type":41,"value":164},{"type":36,"tag":121,"props":10830,"children":10831},{"class":123,"line":229},[10832],{"type":36,"tag":121,"props":10833,"children":10834},{"style":145},[10835],{"type":41,"value":1124},{"type":36,"tag":121,"props":10837,"children":10838},{"class":123,"line":320},[10839],{"type":36,"tag":121,"props":10840,"children":10841},{"emptyLinePlaceholder":171},[10842],{"type":41,"value":174},{"type":36,"tag":121,"props":10844,"children":10845},{"class":123,"line":375},[10846],{"type":36,"tag":121,"props":10847,"children":10848},{"style":2019},[10849],{"type":41,"value":10850},"\u002F\u002F Or check cross-origin isolation\n",{"type":36,"tag":121,"props":10852,"children":10853},{"class":123,"line":406},[10854,10858,10862,10866,10870,10874,10879,10883,10887,10892,10896,10901],{"type":36,"tag":121,"props":10855,"children":10856},{"style":134},[10857],{"type":41,"value":2475},{"type":36,"tag":121,"props":10859,"children":10860},{"style":145},[10861],{"type":41,"value":82},{"type":36,"tag":121,"props":10863,"children":10864},{"style":206},[10865],{"type":41,"value":2484},{"type":36,"tag":121,"props":10867,"children":10868},{"style":134},[10869],{"type":41,"value":255},{"type":36,"tag":121,"props":10871,"children":10872},{"style":145},[10873],{"type":41,"value":159},{"type":36,"tag":121,"props":10875,"children":10876},{"style":151},[10877],{"type":41,"value":10878},"Cross-origin isolated:",{"type":36,"tag":121,"props":10880,"children":10881},{"style":145},[10882],{"type":41,"value":159},{"type":36,"tag":121,"props":10884,"children":10885},{"style":145},[10886],{"type":41,"value":277},{"type":36,"tag":121,"props":10888,"children":10889},{"style":134},[10890],{"type":41,"value":10891}," window",{"type":36,"tag":121,"props":10893,"children":10894},{"style":145},[10895],{"type":41,"value":82},{"type":36,"tag":121,"props":10897,"children":10898},{"style":134},[10899],{"type":41,"value":10900},"crossOriginIsolated)",{"type":36,"tag":121,"props":10902,"children":10903},{"style":145},[10904],{"type":41,"value":164},{"type":36,"tag":1893,"props":10906,"children":10908},{"id":10907},"platform-specific-setup",[10909],{"type":41,"value":10910},"Platform-Specific Setup",{"type":36,"tag":44,"props":10912,"children":10913},{},[10914,10915,10919],{"type":41,"value":1612},{"type":36,"tag":1228,"props":10916,"children":10917},{"href":1304},[10918],{"type":41,"value":1304},{"type":41,"value":10920}," for:",{"type":36,"tag":1131,"props":10922,"children":10923},{},[10924,10929,10934],{"type":36,"tag":1135,"props":10925,"children":10926},{},[10927],{"type":41,"value":10928},"Vercel, Netlify, AWS CloudFront configuration",{"type":36,"tag":1135,"props":10930,"children":10931},{},[10932],{"type":41,"value":10933},"nginx\u002FApache configuration",{"type":36,"tag":1135,"props":10935,"children":10936},{},[10937],{"type":41,"value":10938},"Service worker fallback for GitHub Pages",{"type":36,"tag":1893,"props":10940,"children":10942},{"id":10941},"development-setup-two-server-pattern",[10943],{"type":41,"value":10944},"Development Setup (Two-Server Pattern)",{"type":36,"tag":44,"props":10946,"children":10947},{},[10948,10950,10955],{"type":41,"value":10949},"The official samples use a ",{"type":36,"tag":50,"props":10951,"children":10952},{},[10953],{"type":41,"value":10954},"two-server pattern",{"type":41,"value":10956}," for development because COOP\u002FCOEP headers can break navigation:",{"type":36,"tag":94,"props":10958,"children":10960},{"className":2404,"code":10959,"language":2406,"meta":99,"style":99},"\u002F\u002F Server 1: Main app (port 9999) - NO isolation headers\n\u002F\u002F Serves index.html, navigation works normally\n\n\u002F\u002F Server 2: Meeting page (port 9998) - WITH isolation headers\n\u002F\u002F Serves meeting.html with SharedArrayBuffer support\n\n\u002F\u002F Main server proxies to meeting server\nproxy: [{\n  path: '\u002Fmeeting.html',\n  target: 'http:\u002F\u002FYOUR_MEETING_SERVER_HOST:9998\u002F'\n}]\n",[10961],{"type":36,"tag":102,"props":10962,"children":10963},{"__ignoreMap":99},[10964,10972,10980,10987,10995,11003,11010,11018,11038,11067,11093],{"type":36,"tag":121,"props":10965,"children":10966},{"class":123,"line":124},[10967],{"type":36,"tag":121,"props":10968,"children":10969},{"style":2019},[10970],{"type":41,"value":10971},"\u002F\u002F Server 1: Main app (port 9999) - NO isolation headers\n",{"type":36,"tag":121,"props":10973,"children":10974},{"class":123,"line":167},[10975],{"type":36,"tag":121,"props":10976,"children":10977},{"style":2019},[10978],{"type":41,"value":10979},"\u002F\u002F Serves index.html, navigation works normally\n",{"type":36,"tag":121,"props":10981,"children":10982},{"class":123,"line":177},[10983],{"type":36,"tag":121,"props":10984,"children":10985},{"emptyLinePlaceholder":171},[10986],{"type":41,"value":174},{"type":36,"tag":121,"props":10988,"children":10989},{"class":123,"line":221},[10990],{"type":36,"tag":121,"props":10991,"children":10992},{"style":2019},[10993],{"type":41,"value":10994},"\u002F\u002F Server 2: Meeting page (port 9998) - WITH isolation headers\n",{"type":36,"tag":121,"props":10996,"children":10997},{"class":123,"line":229},[10998],{"type":36,"tag":121,"props":10999,"children":11000},{"style":2019},[11001],{"type":41,"value":11002},"\u002F\u002F Serves meeting.html with SharedArrayBuffer support\n",{"type":36,"tag":121,"props":11004,"children":11005},{"class":123,"line":320},[11006],{"type":36,"tag":121,"props":11007,"children":11008},{"emptyLinePlaceholder":171},[11009],{"type":41,"value":174},{"type":36,"tag":121,"props":11011,"children":11012},{"class":123,"line":375},[11013],{"type":36,"tag":121,"props":11014,"children":11015},{"style":2019},[11016],{"type":41,"value":11017},"\u002F\u002F Main server proxies to meeting server\n",{"type":36,"tag":121,"props":11019,"children":11020},{"class":123,"line":406},[11021,11026,11030,11034],{"type":36,"tag":121,"props":11022,"children":11023},{"style":269},[11024],{"type":41,"value":11025},"proxy",{"type":36,"tag":121,"props":11027,"children":11028},{"style":145},[11029],{"type":41,"value":266},{"type":36,"tag":121,"props":11031,"children":11032},{"style":134},[11033],{"type":41,"value":8142},{"type":36,"tag":121,"props":11035,"children":11036},{"style":145},[11037],{"type":41,"value":759},{"type":36,"tag":121,"props":11039,"children":11040},{"class":123,"line":459},[11041,11046,11050,11054,11059,11063],{"type":36,"tag":121,"props":11042,"children":11043},{"style":349},[11044],{"type":41,"value":11045},"  path",{"type":36,"tag":121,"props":11047,"children":11048},{"style":145},[11049],{"type":41,"value":266},{"type":36,"tag":121,"props":11051,"children":11052},{"style":145},[11053],{"type":41,"value":148},{"type":36,"tag":121,"props":11055,"children":11056},{"style":151},[11057],{"type":41,"value":11058},"\u002Fmeeting.html",{"type":36,"tag":121,"props":11060,"children":11061},{"style":145},[11062],{"type":41,"value":159},{"type":36,"tag":121,"props":11064,"children":11065},{"style":145},[11066],{"type":41,"value":403},{"type":36,"tag":121,"props":11068,"children":11069},{"class":123,"line":532},[11070,11075,11079,11083,11088],{"type":36,"tag":121,"props":11071,"children":11072},{"style":349},[11073],{"type":41,"value":11074},"  target",{"type":36,"tag":121,"props":11076,"children":11077},{"style":145},[11078],{"type":41,"value":266},{"type":36,"tag":121,"props":11080,"children":11081},{"style":145},[11082],{"type":41,"value":148},{"type":36,"tag":121,"props":11084,"children":11085},{"style":151},[11086],{"type":41,"value":11087},"http:\u002F\u002FYOUR_MEETING_SERVER_HOST:9998\u002F",{"type":36,"tag":121,"props":11089,"children":11090},{"style":145},[11091],{"type":41,"value":11092},"'\n",{"type":36,"tag":121,"props":11094,"children":11095},{"class":123,"line":549},[11096,11100],{"type":36,"tag":121,"props":11097,"children":11098},{"style":145},[11099],{"type":41,"value":3575},{"type":36,"tag":121,"props":11101,"children":11102},{"style":134},[11103],{"type":41,"value":11104},"]\n",{"type":36,"tag":44,"props":11106,"children":11107},{},[11108],{"type":36,"tag":50,"props":11109,"children":11110},{},[11111],{"type":41,"value":11112},"Vite config with headers:",{"type":36,"tag":94,"props":11114,"children":11118},{"className":11115,"code":11116,"language":11117,"meta":99,"style":99},"language-typescript shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","\u002F\u002F vite.config.ts\nexport default defineConfig({\n  server: {\n    headers: {\n      'Cross-Origin-Embedder-Policy': 'require-corp',\n      'Cross-Origin-Opener-Policy': 'same-origin',\n    }\n  }\n});\n","typescript",[11119],{"type":36,"tag":102,"props":11120,"children":11121},{"__ignoreMap":99},[11122,11130,11154,11170,11185,11223,11260,11267,11274],{"type":36,"tag":121,"props":11123,"children":11124},{"class":123,"line":124},[11125],{"type":36,"tag":121,"props":11126,"children":11127},{"style":2019},[11128],{"type":41,"value":11129},"\u002F\u002F vite.config.ts\n",{"type":36,"tag":121,"props":11131,"children":11132},{"class":123,"line":167},[11133,11137,11141,11146,11150],{"type":36,"tag":121,"props":11134,"children":11135},{"style":128},[11136],{"type":41,"value":235},{"type":36,"tag":121,"props":11138,"children":11139},{"style":128},[11140],{"type":41,"value":8661},{"type":36,"tag":121,"props":11142,"children":11143},{"style":206},[11144],{"type":41,"value":11145}," defineConfig",{"type":36,"tag":121,"props":11147,"children":11148},{"style":134},[11149],{"type":41,"value":255},{"type":36,"tag":121,"props":11151,"children":11152},{"style":145},[11153],{"type":41,"value":759},{"type":36,"tag":121,"props":11155,"children":11156},{"class":123,"line":177},[11157,11162,11166],{"type":36,"tag":121,"props":11158,"children":11159},{"style":349},[11160],{"type":41,"value":11161},"  server",{"type":36,"tag":121,"props":11163,"children":11164},{"style":145},[11165],{"type":41,"value":266},{"type":36,"tag":121,"props":11167,"children":11168},{"style":145},[11169],{"type":41,"value":317},{"type":36,"tag":121,"props":11171,"children":11172},{"class":123,"line":221},[11173,11177,11181],{"type":36,"tag":121,"props":11174,"children":11175},{"style":349},[11176],{"type":41,"value":412},{"type":36,"tag":121,"props":11178,"children":11179},{"style":145},[11180],{"type":41,"value":266},{"type":36,"tag":121,"props":11182,"children":11183},{"style":145},[11184],{"type":41,"value":317},{"type":36,"tag":121,"props":11186,"children":11187},{"class":123,"line":229},[11188,11193,11198,11202,11206,11210,11215,11219],{"type":36,"tag":121,"props":11189,"children":11190},{"style":145},[11191],{"type":41,"value":11192},"      '",{"type":36,"tag":121,"props":11194,"children":11195},{"style":349},[11196],{"type":41,"value":11197},"Cross-Origin-Embedder-Policy",{"type":36,"tag":121,"props":11199,"children":11200},{"style":145},[11201],{"type":41,"value":159},{"type":36,"tag":121,"props":11203,"children":11204},{"style":145},[11205],{"type":41,"value":266},{"type":36,"tag":121,"props":11207,"children":11208},{"style":145},[11209],{"type":41,"value":148},{"type":36,"tag":121,"props":11211,"children":11212},{"style":151},[11213],{"type":41,"value":11214},"require-corp",{"type":36,"tag":121,"props":11216,"children":11217},{"style":145},[11218],{"type":41,"value":159},{"type":36,"tag":121,"props":11220,"children":11221},{"style":145},[11222],{"type":41,"value":403},{"type":36,"tag":121,"props":11224,"children":11225},{"class":123,"line":320},[11226,11230,11235,11239,11243,11247,11252,11256],{"type":36,"tag":121,"props":11227,"children":11228},{"style":145},[11229],{"type":41,"value":11192},{"type":36,"tag":121,"props":11231,"children":11232},{"style":349},[11233],{"type":41,"value":11234},"Cross-Origin-Opener-Policy",{"type":36,"tag":121,"props":11236,"children":11237},{"style":145},[11238],{"type":41,"value":159},{"type":36,"tag":121,"props":11240,"children":11241},{"style":145},[11242],{"type":41,"value":266},{"type":36,"tag":121,"props":11244,"children":11245},{"style":145},[11246],{"type":41,"value":148},{"type":36,"tag":121,"props":11248,"children":11249},{"style":151},[11250],{"type":41,"value":11251},"same-origin",{"type":36,"tag":121,"props":11253,"children":11254},{"style":145},[11255],{"type":41,"value":159},{"type":36,"tag":121,"props":11257,"children":11258},{"style":145},[11259],{"type":41,"value":403},{"type":36,"tag":121,"props":11261,"children":11262},{"class":123,"line":375},[11263],{"type":36,"tag":121,"props":11264,"children":11265},{"style":145},[11266],{"type":41,"value":3550},{"type":36,"tag":121,"props":11268,"children":11269},{"class":123,"line":406},[11270],{"type":36,"tag":121,"props":11271,"children":11272},{"style":145},[11273],{"type":41,"value":4249},{"type":36,"tag":121,"props":11275,"children":11276},{"class":123,"line":459},[11277,11281,11285],{"type":36,"tag":121,"props":11278,"children":11279},{"style":145},[11280],{"type":41,"value":3575},{"type":36,"tag":121,"props":11282,"children":11283},{"style":134},[11284],{"type":41,"value":312},{"type":36,"tag":121,"props":11286,"children":11287},{"style":145},[11288],{"type":41,"value":164},{"type":36,"tag":65,"props":11290,"children":11292},{"id":11291},"common-issues-solutions",[11293],{"type":41,"value":11294},"Common Issues & Solutions",{"type":36,"tag":1641,"props":11296,"children":11297},{},[11298,11314],{"type":36,"tag":1645,"props":11299,"children":11300},{},[11301],{"type":36,"tag":1649,"props":11302,"children":11303},{},[11304,11309],{"type":36,"tag":1653,"props":11305,"children":11306},{},[11307],{"type":41,"value":11308},"Issue",{"type":36,"tag":1653,"props":11310,"children":11311},{},[11312],{"type":41,"value":11313},"Solution",{"type":36,"tag":1667,"props":11315,"children":11316},{},[11317,11333,11361,11377,11400,11416],{"type":36,"tag":1649,"props":11318,"children":11319},{},[11320,11328],{"type":36,"tag":1674,"props":11321,"children":11322},{},[11323],{"type":36,"tag":50,"props":11324,"children":11325},{},[11326],{"type":41,"value":11327},"Join fails with signature error",{"type":36,"tag":1674,"props":11329,"children":11330},{},[11331],{"type":41,"value":11332},"Verify signature generation, check sdkKey format",{"type":36,"tag":1649,"props":11334,"children":11335},{},[11336,11344],{"type":36,"tag":1674,"props":11337,"children":11338},{},[11339],{"type":36,"tag":50,"props":11340,"children":11341},{},[11342],{"type":41,"value":11343},"\"passWord\" typo",{"type":36,"tag":1674,"props":11345,"children":11346},{},[11347,11349,11354,11356],{"type":41,"value":11348},"Client View uses ",{"type":36,"tag":102,"props":11350,"children":11352},{"className":11351},[],[11353],{"type":41,"value":1163},{"type":41,"value":11355}," (capital W), Component View uses ",{"type":36,"tag":102,"props":11357,"children":11359},{"className":11358},[],[11360],{"type":41,"value":1155},{"type":36,"tag":1649,"props":11362,"children":11363},{},[11364,11372],{"type":36,"tag":1674,"props":11365,"children":11366},{},[11367],{"type":36,"tag":50,"props":11368,"children":11369},{},[11370],{"type":41,"value":11371},"No HD video",{"type":36,"tag":1674,"props":11373,"children":11374},{},[11375],{"type":41,"value":11376},"Enable SharedArrayBuffer headers, check browser support",{"type":36,"tag":1649,"props":11378,"children":11379},{},[11380,11388],{"type":36,"tag":1674,"props":11381,"children":11382},{},[11383],{"type":36,"tag":50,"props":11384,"children":11385},{},[11386],{"type":41,"value":11387},"Callbacks not firing",{"type":36,"tag":1674,"props":11389,"children":11390},{},[11391,11393,11398],{"type":41,"value":11392},"Ensure ",{"type":36,"tag":102,"props":11394,"children":11396},{"className":11395},[],[11397],{"type":41,"value":5519},{"type":41,"value":11399}," called after init success",{"type":36,"tag":1649,"props":11401,"children":11402},{},[11403,11411],{"type":36,"tag":1674,"props":11404,"children":11405},{},[11406],{"type":36,"tag":50,"props":11407,"children":11408},{},[11409],{"type":41,"value":11410},"Virtual background not working",{"type":36,"tag":1674,"props":11412,"children":11413},{},[11414],{"type":41,"value":11415},"Requires SharedArrayBuffer + Chrome\u002FEdge",{"type":36,"tag":1649,"props":11417,"children":11418},{},[11419,11427],{"type":36,"tag":1674,"props":11420,"children":11421},{},[11422],{"type":36,"tag":50,"props":11423,"children":11424},{},[11425],{"type":41,"value":11426},"Screen share fails on Safari",{"type":36,"tag":1674,"props":11428,"children":11429},{},[11430],{"type":41,"value":11431},"Safari 17+ with macOS 14+ required for client view",{"type":36,"tag":44,"props":11433,"children":11434},{},[11435,11440,11442],{"type":36,"tag":50,"props":11436,"children":11437},{},[11438],{"type":41,"value":11439},"Complete troubleshooting",{"type":41,"value":11441},": ",{"type":36,"tag":1228,"props":11443,"children":11445},{"href":11444},"troubleshooting\u002Fcommon-issues.md",[11446],{"type":41,"value":11444},{"type":36,"tag":65,"props":11448,"children":11450},{"id":11449},"browser-support-matrix",[11451],{"type":41,"value":11452},"Browser Support Matrix",{"type":36,"tag":1641,"props":11454,"children":11455},{},[11456,11497],{"type":36,"tag":1645,"props":11457,"children":11458},{},[11459],{"type":36,"tag":1649,"props":11460,"children":11461},{},[11462,11467,11472,11477,11482,11487,11492],{"type":36,"tag":1653,"props":11463,"children":11464},{},[11465],{"type":41,"value":11466},"Feature",{"type":36,"tag":1653,"props":11468,"children":11469},{},[11470],{"type":41,"value":11471},"Chrome",{"type":36,"tag":1653,"props":11473,"children":11474},{},[11475],{"type":41,"value":11476},"Firefox",{"type":36,"tag":1653,"props":11478,"children":11479},{},[11480],{"type":41,"value":11481},"Safari",{"type":36,"tag":1653,"props":11483,"children":11484},{},[11485],{"type":41,"value":11486},"Edge",{"type":36,"tag":1653,"props":11488,"children":11489},{},[11490],{"type":41,"value":11491},"iOS",{"type":36,"tag":1653,"props":11493,"children":11494},{},[11495],{"type":41,"value":11496},"Android",{"type":36,"tag":1667,"props":11498,"children":11499},{},[11500,11533,11566,11599,11632],{"type":36,"tag":1649,"props":11501,"children":11502},{},[11503,11508,11513,11517,11521,11525,11529],{"type":36,"tag":1674,"props":11504,"children":11505},{},[11506],{"type":41,"value":11507},"720p (receive)",{"type":36,"tag":1674,"props":11509,"children":11510},{},[11511],{"type":41,"value":11512},"Yes",{"type":36,"tag":1674,"props":11514,"children":11515},{},[11516],{"type":41,"value":11512},{"type":36,"tag":1674,"props":11518,"children":11519},{},[11520],{"type":41,"value":11512},{"type":36,"tag":1674,"props":11522,"children":11523},{},[11524],{"type":41,"value":11512},{"type":36,"tag":1674,"props":11526,"children":11527},{},[11528],{"type":41,"value":11512},{"type":36,"tag":1674,"props":11530,"children":11531},{},[11532],{"type":41,"value":11512},{"type":36,"tag":1649,"props":11534,"children":11535},{},[11536,11541,11546,11550,11554,11558,11562],{"type":36,"tag":1674,"props":11537,"children":11538},{},[11539],{"type":41,"value":11540},"720p (send)",{"type":36,"tag":1674,"props":11542,"children":11543},{},[11544],{"type":41,"value":11545},"Yes*",{"type":36,"tag":1674,"props":11547,"children":11548},{},[11549],{"type":41,"value":11545},{"type":36,"tag":1674,"props":11551,"children":11552},{},[11553],{"type":41,"value":11545},{"type":36,"tag":1674,"props":11555,"children":11556},{},[11557],{"type":41,"value":11545},{"type":36,"tag":1674,"props":11559,"children":11560},{},[11561],{"type":41,"value":11545},{"type":36,"tag":1674,"props":11563,"children":11564},{},[11565],{"type":41,"value":11545},{"type":36,"tag":1649,"props":11567,"children":11568},{},[11569,11574,11578,11582,11587,11591,11595],{"type":36,"tag":1674,"props":11570,"children":11571},{},[11572],{"type":41,"value":11573},"Virtual background",{"type":36,"tag":1674,"props":11575,"children":11576},{},[11577],{"type":41,"value":11512},{"type":36,"tag":1674,"props":11579,"children":11580},{},[11581],{"type":41,"value":11512},{"type":36,"tag":1674,"props":11583,"children":11584},{},[11585],{"type":41,"value":11586},"No",{"type":36,"tag":1674,"props":11588,"children":11589},{},[11590],{"type":41,"value":11512},{"type":36,"tag":1674,"props":11592,"children":11593},{},[11594],{"type":41,"value":11586},{"type":36,"tag":1674,"props":11596,"children":11597},{},[11598],{"type":41,"value":11586},{"type":36,"tag":1649,"props":11600,"children":11601},{},[11602,11607,11611,11615,11620,11624,11628],{"type":36,"tag":1674,"props":11603,"children":11604},{},[11605],{"type":41,"value":11606},"Screen share (send)",{"type":36,"tag":1674,"props":11608,"children":11609},{},[11610],{"type":41,"value":11512},{"type":36,"tag":1674,"props":11612,"children":11613},{},[11614],{"type":41,"value":11512},{"type":36,"tag":1674,"props":11616,"children":11617},{},[11618],{"type":41,"value":11619},"Safari 17+",{"type":36,"tag":1674,"props":11621,"children":11622},{},[11623],{"type":41,"value":11512},{"type":36,"tag":1674,"props":11625,"children":11626},{},[11627],{"type":41,"value":11586},{"type":36,"tag":1674,"props":11629,"children":11630},{},[11631],{"type":41,"value":11586},{"type":36,"tag":1649,"props":11633,"children":11634},{},[11635,11639,11643,11647,11652,11656,11660],{"type":36,"tag":1674,"props":11636,"children":11637},{},[11638],{"type":41,"value":10646},{"type":36,"tag":1674,"props":11640,"children":11641},{},[11642],{"type":41,"value":11512},{"type":36,"tag":1674,"props":11644,"children":11645},{},[11646],{"type":41,"value":11512},{"type":36,"tag":1674,"props":11648,"children":11649},{},[11650],{"type":41,"value":11651},"Yes**",{"type":36,"tag":1674,"props":11653,"children":11654},{},[11655],{"type":41,"value":11512},{"type":36,"tag":1674,"props":11657,"children":11658},{},[11659],{"type":41,"value":11512},{"type":36,"tag":1674,"props":11661,"children":11662},{},[11663],{"type":41,"value":11512},{"type":36,"tag":44,"props":11665,"children":11666},{},[11667],{"type":41,"value":11668},"*Requires SharedArrayBuffer\n**Safari 17+ with macOS Sonoma",{"type":36,"tag":44,"props":11670,"children":11671},{},[11672,11673,11677],{"type":41,"value":1612},{"type":36,"tag":1228,"props":11674,"children":11675},{"href":1372},[11676],{"type":41,"value":1372},{"type":41,"value":11678}," for complete matrix.",{"type":36,"tag":65,"props":11680,"children":11682},{"id":11681},"authorization-requirements-2026-update",[11683],{"type":41,"value":11684},"Authorization Requirements (2026 Update)",{"type":36,"tag":1469,"props":11686,"children":11687},{},[11688],{"type":36,"tag":44,"props":11689,"children":11690},{},[11691,11696,11698,11703],{"type":36,"tag":50,"props":11692,"children":11693},{},[11694],{"type":41,"value":11695},"IMPORTANT",{"type":41,"value":11697},": Beginning ",{"type":36,"tag":50,"props":11699,"children":11700},{},[11701],{"type":41,"value":11702},"March 2, 2026",{"type":41,"value":11704},", apps joining meetings outside their account must be authorized.",{"type":36,"tag":1893,"props":11706,"children":11708},{"id":11707},"options",[11709],{"type":41,"value":11710},"Options",{"type":36,"tag":1249,"props":11712,"children":11713},{},[11714,11798],{"type":36,"tag":1135,"props":11715,"children":11716},{},[11717,11722,11724],{"type":36,"tag":50,"props":11718,"children":11719},{},[11720],{"type":41,"value":11721},"App Privilege Token (OBF)",{"type":41,"value":11723}," - Recommended for bots",{"type":36,"tag":94,"props":11725,"children":11727},{"className":2404,"code":11726,"language":2406,"meta":99,"style":99},"ZoomMtg.join({\n  ...\n  obfToken: 'your-app-privilege-token'\n});\n",[11728],{"type":36,"tag":102,"props":11729,"children":11730},{"__ignoreMap":99},[11731,11754,11762,11783],{"type":36,"tag":121,"props":11732,"children":11733},{"class":123,"line":124},[11734,11738,11742,11746,11750],{"type":36,"tag":121,"props":11735,"children":11736},{"style":134},[11737],{"type":41,"value":1690},{"type":36,"tag":121,"props":11739,"children":11740},{"style":145},[11741],{"type":41,"value":82},{"type":36,"tag":121,"props":11743,"children":11744},{"style":206},[11745],{"type":41,"value":1026},{"type":36,"tag":121,"props":11747,"children":11748},{"style":134},[11749],{"type":41,"value":255},{"type":36,"tag":121,"props":11751,"children":11752},{"style":145},[11753],{"type":41,"value":759},{"type":36,"tag":121,"props":11755,"children":11756},{"class":123,"line":167},[11757],{"type":36,"tag":121,"props":11758,"children":11759},{"style":145},[11760],{"type":41,"value":11761},"  ...\n",{"type":36,"tag":121,"props":11763,"children":11764},{"class":123,"line":177},[11765,11770,11774,11779],{"type":36,"tag":121,"props":11766,"children":11767},{"style":134},[11768],{"type":41,"value":11769},"  obfToken: ",{"type":36,"tag":121,"props":11771,"children":11772},{"style":145},[11773],{"type":41,"value":159},{"type":36,"tag":121,"props":11775,"children":11776},{"style":151},[11777],{"type":41,"value":11778},"your-app-privilege-token",{"type":36,"tag":121,"props":11780,"children":11781},{"style":145},[11782],{"type":41,"value":11092},{"type":36,"tag":121,"props":11784,"children":11785},{"class":123,"line":221},[11786,11790,11794],{"type":36,"tag":121,"props":11787,"children":11788},{"style":145},[11789],{"type":41,"value":3575},{"type":36,"tag":121,"props":11791,"children":11792},{"style":134},[11793],{"type":41,"value":312},{"type":36,"tag":121,"props":11795,"children":11796},{"style":145},[11797],{"type":41,"value":164},{"type":36,"tag":1135,"props":11799,"children":11800},{},[11801,11806,11808],{"type":36,"tag":50,"props":11802,"children":11803},{},[11804],{"type":41,"value":11805},"ZAK Token",{"type":41,"value":11807}," - For host operations",{"type":36,"tag":94,"props":11809,"children":11811},{"className":2404,"code":11810,"language":2406,"meta":99,"style":99},"ZoomMtg.join({\n  ...\n  zak: 'host-zak-token'\n});\n",[11812],{"type":36,"tag":102,"props":11813,"children":11814},{"__ignoreMap":99},[11815,11838,11845,11866],{"type":36,"tag":121,"props":11816,"children":11817},{"class":123,"line":124},[11818,11822,11826,11830,11834],{"type":36,"tag":121,"props":11819,"children":11820},{"style":134},[11821],{"type":41,"value":1690},{"type":36,"tag":121,"props":11823,"children":11824},{"style":145},[11825],{"type":41,"value":82},{"type":36,"tag":121,"props":11827,"children":11828},{"style":206},[11829],{"type":41,"value":1026},{"type":36,"tag":121,"props":11831,"children":11832},{"style":134},[11833],{"type":41,"value":255},{"type":36,"tag":121,"props":11835,"children":11836},{"style":145},[11837],{"type":41,"value":759},{"type":36,"tag":121,"props":11839,"children":11840},{"class":123,"line":167},[11841],{"type":36,"tag":121,"props":11842,"children":11843},{"style":145},[11844],{"type":41,"value":11761},{"type":36,"tag":121,"props":11846,"children":11847},{"class":123,"line":177},[11848,11853,11857,11862],{"type":36,"tag":121,"props":11849,"children":11850},{"style":134},[11851],{"type":41,"value":11852},"  zak: ",{"type":36,"tag":121,"props":11854,"children":11855},{"style":145},[11856],{"type":41,"value":159},{"type":36,"tag":121,"props":11858,"children":11859},{"style":151},[11860],{"type":41,"value":11861},"host-zak-token",{"type":36,"tag":121,"props":11863,"children":11864},{"style":145},[11865],{"type":41,"value":11092},{"type":36,"tag":121,"props":11867,"children":11868},{"class":123,"line":221},[11869,11873,11877],{"type":36,"tag":121,"props":11870,"children":11871},{"style":145},[11872],{"type":41,"value":3575},{"type":36,"tag":121,"props":11874,"children":11875},{"style":134},[11876],{"type":41,"value":312},{"type":36,"tag":121,"props":11878,"children":11879},{"style":145},[11880],{"type":41,"value":164},{"type":36,"tag":65,"props":11882,"children":11884},{"id":11883},"zoom-for-government-zfg",[11885],{"type":41,"value":11886},"Zoom for Government (ZFG)",{"type":36,"tag":1893,"props":11888,"children":11890},{"id":11889},"option-1-zfg-specific-npm-package",[11891],{"type":41,"value":11892},"Option 1: ZFG-specific NPM Package",{"type":36,"tag":94,"props":11894,"children":11897},{"className":11895,"code":11896,"language":711,"meta":99,"style":99},"language-json shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","{\n  \"dependencies\": {\n    \"@zoom\u002Fmeetingsdk\": \"3.11.2-zfg\"\n  }\n}\n",[11898],{"type":36,"tag":102,"props":11899,"children":11900},{"__ignoreMap":99},[11901,11908,11933,11968,11975],{"type":36,"tag":121,"props":11902,"children":11903},{"class":123,"line":124},[11904],{"type":36,"tag":121,"props":11905,"children":11906},{"style":145},[11907],{"type":41,"value":759},{"type":36,"tag":121,"props":11909,"children":11910},{"class":123,"line":167},[11911,11916,11921,11925,11929],{"type":36,"tag":121,"props":11912,"children":11913},{"style":145},[11914],{"type":41,"value":11915},"  \"",{"type":36,"tag":121,"props":11917,"children":11918},{"style":181},[11919],{"type":41,"value":11920},"dependencies",{"type":36,"tag":121,"props":11922,"children":11923},{"style":145},[11924],{"type":41,"value":2049},{"type":36,"tag":121,"props":11926,"children":11927},{"style":145},[11928],{"type":41,"value":266},{"type":36,"tag":121,"props":11930,"children":11931},{"style":145},[11932],{"type":41,"value":317},{"type":36,"tag":121,"props":11934,"children":11935},{"class":123,"line":177},[11936,11941,11945,11949,11953,11958,11963],{"type":36,"tag":121,"props":11937,"children":11938},{"style":145},[11939],{"type":41,"value":11940},"    \"",{"type":36,"tag":121,"props":11942,"children":11943},{"style":269},[11944],{"type":41,"value":2444},{"type":36,"tag":121,"props":11946,"children":11947},{"style":145},[11948],{"type":41,"value":2049},{"type":36,"tag":121,"props":11950,"children":11951},{"style":145},[11952],{"type":41,"value":266},{"type":36,"tag":121,"props":11954,"children":11955},{"style":145},[11956],{"type":41,"value":11957}," \"",{"type":36,"tag":121,"props":11959,"children":11960},{"style":151},[11961],{"type":41,"value":11962},"3.11.2-zfg",{"type":36,"tag":121,"props":11964,"children":11965},{"style":145},[11966],{"type":41,"value":11967},"\"\n",{"type":36,"tag":121,"props":11969,"children":11970},{"class":123,"line":221},[11971],{"type":36,"tag":121,"props":11972,"children":11973},{"style":145},[11974],{"type":41,"value":4249},{"type":36,"tag":121,"props":11976,"children":11977},{"class":123,"line":229},[11978],{"type":36,"tag":121,"props":11979,"children":11980},{"style":145},[11981],{"type":41,"value":1124},{"type":36,"tag":1893,"props":11983,"children":11985},{"id":11984},"option-2-configure-zfg-endpoints",[11986],{"type":41,"value":11987},"Option 2: Configure ZFG Endpoints",{"type":36,"tag":44,"props":11989,"children":11990},{},[11991],{"type":36,"tag":50,"props":11992,"children":11993},{},[11994],{"type":41,"value":11995},"Client View:",{"type":36,"tag":94,"props":11997,"children":11999},{"className":2404,"code":11998,"language":2406,"meta":99,"style":99},"ZoomMtg.setZoomJSLib('https:\u002F\u002Fsource.zoomgov.com\u002F{VERSION}\u002Flib', '\u002Fav');\nZoomMtg.init({\n  webEndpoint: 'www.zoomgov.com',\n  ...\n});\n",[12000],{"type":36,"tag":102,"props":12001,"children":12002},{"__ignoreMap":99},[12003,12061,12084,12112,12119],{"type":36,"tag":121,"props":12004,"children":12005},{"class":123,"line":124},[12006,12010,12014,12019,12023,12027,12032,12036,12040,12044,12049,12053,12057],{"type":36,"tag":121,"props":12007,"children":12008},{"style":134},[12009],{"type":41,"value":1690},{"type":36,"tag":121,"props":12011,"children":12012},{"style":145},[12013],{"type":41,"value":82},{"type":36,"tag":121,"props":12015,"children":12016},{"style":206},[12017],{"type":41,"value":12018},"setZoomJSLib",{"type":36,"tag":121,"props":12020,"children":12021},{"style":134},[12022],{"type":41,"value":255},{"type":36,"tag":121,"props":12024,"children":12025},{"style":145},[12026],{"type":41,"value":159},{"type":36,"tag":121,"props":12028,"children":12029},{"style":151},[12030],{"type":41,"value":12031},"https:\u002F\u002Fsource.zoomgov.com\u002F{VERSION}\u002Flib",{"type":36,"tag":121,"props":12033,"children":12034},{"style":145},[12035],{"type":41,"value":159},{"type":36,"tag":121,"props":12037,"children":12038},{"style":145},[12039],{"type":41,"value":277},{"type":36,"tag":121,"props":12041,"children":12042},{"style":145},[12043],{"type":41,"value":148},{"type":36,"tag":121,"props":12045,"children":12046},{"style":151},[12047],{"type":41,"value":12048},"\u002Fav",{"type":36,"tag":121,"props":12050,"children":12051},{"style":145},[12052],{"type":41,"value":159},{"type":36,"tag":121,"props":12054,"children":12055},{"style":134},[12056],{"type":41,"value":312},{"type":36,"tag":121,"props":12058,"children":12059},{"style":145},[12060],{"type":41,"value":164},{"type":36,"tag":121,"props":12062,"children":12063},{"class":123,"line":167},[12064,12068,12072,12076,12080],{"type":36,"tag":121,"props":12065,"children":12066},{"style":134},[12067],{"type":41,"value":1690},{"type":36,"tag":121,"props":12069,"children":12070},{"style":145},[12071],{"type":41,"value":82},{"type":36,"tag":121,"props":12073,"children":12074},{"style":206},[12075],{"type":41,"value":750},{"type":36,"tag":121,"props":12077,"children":12078},{"style":134},[12079],{"type":41,"value":255},{"type":36,"tag":121,"props":12081,"children":12082},{"style":145},[12083],{"type":41,"value":759},{"type":36,"tag":121,"props":12085,"children":12086},{"class":123,"line":177},[12087,12091,12095,12099,12104,12108],{"type":36,"tag":121,"props":12088,"children":12089},{"style":349},[12090],{"type":41,"value":9098},{"type":36,"tag":121,"props":12092,"children":12093},{"style":145},[12094],{"type":41,"value":266},{"type":36,"tag":121,"props":12096,"children":12097},{"style":145},[12098],{"type":41,"value":148},{"type":36,"tag":121,"props":12100,"children":12101},{"style":151},[12102],{"type":41,"value":12103},"www.zoomgov.com",{"type":36,"tag":121,"props":12105,"children":12106},{"style":145},[12107],{"type":41,"value":159},{"type":36,"tag":121,"props":12109,"children":12110},{"style":145},[12111],{"type":41,"value":403},{"type":36,"tag":121,"props":12113,"children":12114},{"class":123,"line":221},[12115],{"type":36,"tag":121,"props":12116,"children":12117},{"style":145},[12118],{"type":41,"value":11761},{"type":36,"tag":121,"props":12120,"children":12121},{"class":123,"line":229},[12122,12126,12130],{"type":36,"tag":121,"props":12123,"children":12124},{"style":145},[12125],{"type":41,"value":3575},{"type":36,"tag":121,"props":12127,"children":12128},{"style":134},[12129],{"type":41,"value":312},{"type":36,"tag":121,"props":12131,"children":12132},{"style":145},[12133],{"type":41,"value":164},{"type":36,"tag":44,"props":12135,"children":12136},{},[12137],{"type":36,"tag":50,"props":12138,"children":12139},{},[12140],{"type":41,"value":12141},"Component View:",{"type":36,"tag":94,"props":12143,"children":12145},{"className":2404,"code":12144,"language":2406,"meta":99,"style":99},"await client.init({\n  webEndpoint: 'www.zoomgov.com',\n  assetPath: 'https:\u002F\u002Fsource.zoomgov.com\u002F{VERSION}\u002Flib\u002Fav',\n  ...\n});\n",[12146],{"type":36,"tag":102,"props":12147,"children":12148},{"__ignoreMap":99},[12149,12176,12203,12231,12238],{"type":36,"tag":121,"props":12150,"children":12151},{"class":123,"line":124},[12152,12156,12160,12164,12168,12172],{"type":36,"tag":121,"props":12153,"children":12154},{"style":128},[12155],{"type":41,"value":8327},{"type":36,"tag":121,"props":12157,"children":12158},{"style":134},[12159],{"type":41,"value":741},{"type":36,"tag":121,"props":12161,"children":12162},{"style":145},[12163],{"type":41,"value":82},{"type":36,"tag":121,"props":12165,"children":12166},{"style":206},[12167],{"type":41,"value":750},{"type":36,"tag":121,"props":12169,"children":12170},{"style":134},[12171],{"type":41,"value":255},{"type":36,"tag":121,"props":12173,"children":12174},{"style":145},[12175],{"type":41,"value":759},{"type":36,"tag":121,"props":12177,"children":12178},{"class":123,"line":167},[12179,12183,12187,12191,12195,12199],{"type":36,"tag":121,"props":12180,"children":12181},{"style":349},[12182],{"type":41,"value":9098},{"type":36,"tag":121,"props":12184,"children":12185},{"style":145},[12186],{"type":41,"value":266},{"type":36,"tag":121,"props":12188,"children":12189},{"style":145},[12190],{"type":41,"value":148},{"type":36,"tag":121,"props":12192,"children":12193},{"style":151},[12194],{"type":41,"value":12103},{"type":36,"tag":121,"props":12196,"children":12197},{"style":145},[12198],{"type":41,"value":159},{"type":36,"tag":121,"props":12200,"children":12201},{"style":145},[12202],{"type":41,"value":403},{"type":36,"tag":121,"props":12204,"children":12205},{"class":123,"line":177},[12206,12210,12214,12218,12223,12227],{"type":36,"tag":121,"props":12207,"children":12208},{"style":349},[12209],{"type":41,"value":9118},{"type":36,"tag":121,"props":12211,"children":12212},{"style":145},[12213],{"type":41,"value":266},{"type":36,"tag":121,"props":12215,"children":12216},{"style":145},[12217],{"type":41,"value":148},{"type":36,"tag":121,"props":12219,"children":12220},{"style":151},[12221],{"type":41,"value":12222},"https:\u002F\u002Fsource.zoomgov.com\u002F{VERSION}\u002Flib\u002Fav",{"type":36,"tag":121,"props":12224,"children":12225},{"style":145},[12226],{"type":41,"value":159},{"type":36,"tag":121,"props":12228,"children":12229},{"style":145},[12230],{"type":41,"value":403},{"type":36,"tag":121,"props":12232,"children":12233},{"class":123,"line":221},[12234],{"type":36,"tag":121,"props":12235,"children":12236},{"style":145},[12237],{"type":41,"value":11761},{"type":36,"tag":121,"props":12239,"children":12240},{"class":123,"line":229},[12241,12245,12249],{"type":36,"tag":121,"props":12242,"children":12243},{"style":145},[12244],{"type":41,"value":3575},{"type":36,"tag":121,"props":12246,"children":12247},{"style":134},[12248],{"type":41,"value":312},{"type":36,"tag":121,"props":12250,"children":12251},{"style":145},[12252],{"type":41,"value":164},{"type":36,"tag":65,"props":12254,"children":12256},{"id":12255},"china-cdn",[12257],{"type":41,"value":12258},"China CDN",{"type":36,"tag":94,"props":12260,"children":12262},{"className":2404,"code":12261,"language":2406,"meta":99,"style":99},"\u002F\u002F Set before preLoadWasm()\nZoomMtg.setZoomJSLib('https:\u002F\u002Fjssdk.zoomus.cn\u002F{VERSION}\u002Flib', '\u002Fav');\n",[12263],{"type":36,"tag":102,"props":12264,"children":12265},{"__ignoreMap":99},[12266,12274],{"type":36,"tag":121,"props":12267,"children":12268},{"class":123,"line":124},[12269],{"type":36,"tag":121,"props":12270,"children":12271},{"style":2019},[12272],{"type":41,"value":12273},"\u002F\u002F Set before preLoadWasm()\n",{"type":36,"tag":121,"props":12275,"children":12276},{"class":123,"line":167},[12277,12281,12285,12289,12293,12297,12302,12306,12310,12314,12318,12322,12326],{"type":36,"tag":121,"props":12278,"children":12279},{"style":134},[12280],{"type":41,"value":1690},{"type":36,"tag":121,"props":12282,"children":12283},{"style":145},[12284],{"type":41,"value":82},{"type":36,"tag":121,"props":12286,"children":12287},{"style":206},[12288],{"type":41,"value":12018},{"type":36,"tag":121,"props":12290,"children":12291},{"style":134},[12292],{"type":41,"value":255},{"type":36,"tag":121,"props":12294,"children":12295},{"style":145},[12296],{"type":41,"value":159},{"type":36,"tag":121,"props":12298,"children":12299},{"style":151},[12300],{"type":41,"value":12301},"https:\u002F\u002Fjssdk.zoomus.cn\u002F{VERSION}\u002Flib",{"type":36,"tag":121,"props":12303,"children":12304},{"style":145},[12305],{"type":41,"value":159},{"type":36,"tag":121,"props":12307,"children":12308},{"style":145},[12309],{"type":41,"value":277},{"type":36,"tag":121,"props":12311,"children":12312},{"style":145},[12313],{"type":41,"value":148},{"type":36,"tag":121,"props":12315,"children":12316},{"style":151},[12317],{"type":41,"value":12048},{"type":36,"tag":121,"props":12319,"children":12320},{"style":145},[12321],{"type":41,"value":159},{"type":36,"tag":121,"props":12323,"children":12324},{"style":134},[12325],{"type":41,"value":312},{"type":36,"tag":121,"props":12327,"children":12328},{"style":145},[12329],{"type":41,"value":164},{"type":36,"tag":65,"props":12331,"children":12333},{"id":12332},"react-integration",[12334],{"type":41,"value":12335},"React Integration",{"type":36,"tag":1893,"props":12337,"children":12339},{"id":12338},"official-pattern-from-zoommeetingsdk-react-sample",[12340],{"type":41,"value":12341},"Official Pattern (from zoom\u002Fmeetingsdk-react-sample)",{"type":36,"tag":44,"props":12343,"children":12344},{},[12345,12347,12352],{"type":41,"value":12346},"The official React sample uses ",{"type":36,"tag":50,"props":12348,"children":12349},{},[12350],{"type":41,"value":12351},"imperative initialization",{"type":41,"value":12353}," rather than React hooks:",{"type":36,"tag":94,"props":12355,"children":12359},{"className":12356,"code":12357,"language":12358,"meta":99,"style":99},"language-tsx shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","import { ZoomMtg } from '@zoom\u002Fmeetingsdk';\n\n\u002F\u002F Preload at module level (outside component)\nZoomMtg.preLoadWasm();\nZoomMtg.prepareWebSDK();\n\nfunction App() {\n  const authEndpoint = import.meta.env.VITE_AUTH_ENDPOINT;\n  const meetingNumber = '';\n  const passWord = '';\n  const role = 0;\n  const userName = 'React User';\n\n  const getSignature = async () => {\n    const response = await fetch(authEndpoint, {\n      method: 'POST',\n      headers: { 'Content-Type': 'application\u002Fjson' },\n      body: JSON.stringify({\n        meetingNumber,\n        role,\n      }),\n    });\n    const data = await response.json();\n    startMeeting(data.signature);\n  };\n\n  const startMeeting = (signature: string) => {\n    document.getElementById('zmmtg-root')!.style.display = 'block';\n\n    ZoomMtg.init({\n      leaveUrl: window.location.origin,\n      patchJsMedia: true,\n      leaveOnPageUnload: true,\n      success: () => {\n        ZoomMtg.join({\n          signature,\n          meetingNumber,\n          userName,\n          passWord,\n          success: (res) => console.log('Joined:', res),\n          error: (err) => console.error('Join error:', err),\n        });\n      },\n      error: (err) => console.error('Init error:', err),\n    });\n  };\n\n  return (\n    \u003Cbutton onClick={getSignature}>Join Meeting\u003C\u002Fbutton>\n  );\n}\n","tsx",[12360],{"type":36,"tag":102,"props":12361,"children":12362},{"__ignoreMap":99},[12363,12402,12409,12417,12440,12463,12470,12490,12542,12566,12590,12613,12645,12652,12684,12726,12754,12802,12834,12845,12857,12872,12887,12926,12959,12967,12974,13017,13093,13100,13124,13162,13181,13200,13224,13248,13260,13272,13284,13296,13369,13441,13457,13465,13537,13552,13559,13566,13579,13630,13642],{"type":36,"tag":121,"props":12364,"children":12365},{"class":123,"line":124},[12366,12370,12374,12378,12382,12386,12390,12394,12398],{"type":36,"tag":121,"props":12367,"children":12368},{"style":128},[12369],{"type":41,"value":131},{"type":36,"tag":121,"props":12371,"children":12372},{"style":145},[12373],{"type":41,"value":421},{"type":36,"tag":121,"props":12375,"children":12376},{"style":134},[12377],{"type":41,"value":2426},{"type":36,"tag":121,"props":12379,"children":12380},{"style":145},[12381],{"type":41,"value":521},{"type":36,"tag":121,"props":12383,"children":12384},{"style":128},[12385],{"type":41,"value":2435},{"type":36,"tag":121,"props":12387,"children":12388},{"style":145},[12389],{"type":41,"value":148},{"type":36,"tag":121,"props":12391,"children":12392},{"style":151},[12393],{"type":41,"value":2444},{"type":36,"tag":121,"props":12395,"children":12396},{"style":145},[12397],{"type":41,"value":159},{"type":36,"tag":121,"props":12399,"children":12400},{"style":145},[12401],{"type":41,"value":164},{"type":36,"tag":121,"props":12403,"children":12404},{"class":123,"line":167},[12405],{"type":36,"tag":121,"props":12406,"children":12407},{"emptyLinePlaceholder":171},[12408],{"type":41,"value":174},{"type":36,"tag":121,"props":12410,"children":12411},{"class":123,"line":177},[12412],{"type":36,"tag":121,"props":12413,"children":12414},{"style":2019},[12415],{"type":41,"value":12416},"\u002F\u002F Preload at module level (outside component)\n",{"type":36,"tag":121,"props":12418,"children":12419},{"class":123,"line":221},[12420,12424,12428,12432,12436],{"type":36,"tag":121,"props":12421,"children":12422},{"style":134},[12423],{"type":41,"value":1690},{"type":36,"tag":121,"props":12425,"children":12426},{"style":145},[12427],{"type":41,"value":82},{"type":36,"tag":121,"props":12429,"children":12430},{"style":206},[12431],{"type":41,"value":2558},{"type":36,"tag":121,"props":12433,"children":12434},{"style":134},[12435],{"type":41,"value":214},{"type":36,"tag":121,"props":12437,"children":12438},{"style":145},[12439],{"type":41,"value":164},{"type":36,"tag":121,"props":12441,"children":12442},{"class":123,"line":229},[12443,12447,12451,12455,12459],{"type":36,"tag":121,"props":12444,"children":12445},{"style":134},[12446],{"type":41,"value":1690},{"type":36,"tag":121,"props":12448,"children":12449},{"style":145},[12450],{"type":41,"value":82},{"type":36,"tag":121,"props":12452,"children":12453},{"style":206},[12454],{"type":41,"value":2582},{"type":36,"tag":121,"props":12456,"children":12457},{"style":134},[12458],{"type":41,"value":214},{"type":36,"tag":121,"props":12460,"children":12461},{"style":145},[12462],{"type":41,"value":164},{"type":36,"tag":121,"props":12464,"children":12465},{"class":123,"line":320},[12466],{"type":36,"tag":121,"props":12467,"children":12468},{"emptyLinePlaceholder":171},[12469],{"type":41,"value":174},{"type":36,"tag":121,"props":12471,"children":12472},{"class":123,"line":375},[12473,12477,12482,12486],{"type":36,"tag":121,"props":12474,"children":12475},{"style":181},[12476],{"type":41,"value":10720},{"type":36,"tag":121,"props":12478,"children":12479},{"style":206},[12480],{"type":41,"value":12481}," App",{"type":36,"tag":121,"props":12483,"children":12484},{"style":145},[12485],{"type":41,"value":214},{"type":36,"tag":121,"props":12487,"children":12488},{"style":145},[12489],{"type":41,"value":317},{"type":36,"tag":121,"props":12491,"children":12492},{"class":123,"line":406},[12493,12497,12502,12506,12511,12515,12520,12524,12529,12533,12538],{"type":36,"tag":121,"props":12494,"children":12495},{"style":181},[12496],{"type":41,"value":326},{"type":36,"tag":121,"props":12498,"children":12499},{"style":134},[12500],{"type":41,"value":12501}," authEndpoint",{"type":36,"tag":121,"props":12503,"children":12504},{"style":145},[12505],{"type":41,"value":336},{"type":36,"tag":121,"props":12507,"children":12508},{"style":128},[12509],{"type":41,"value":12510}," import",{"type":36,"tag":121,"props":12512,"children":12513},{"style":145},[12514],{"type":41,"value":82},{"type":36,"tag":121,"props":12516,"children":12517},{"style":134},[12518],{"type":41,"value":12519},"meta",{"type":36,"tag":121,"props":12521,"children":12522},{"style":145},[12523],{"type":41,"value":82},{"type":36,"tag":121,"props":12525,"children":12526},{"style":134},[12527],{"type":41,"value":12528},"env",{"type":36,"tag":121,"props":12530,"children":12531},{"style":145},[12532],{"type":41,"value":82},{"type":36,"tag":121,"props":12534,"children":12535},{"style":134},[12536],{"type":41,"value":12537},"VITE_AUTH_ENDPOINT",{"type":36,"tag":121,"props":12539,"children":12540},{"style":145},[12541],{"type":41,"value":164},{"type":36,"tag":121,"props":12543,"children":12544},{"class":123,"line":459},[12545,12549,12553,12557,12562],{"type":36,"tag":121,"props":12546,"children":12547},{"style":181},[12548],{"type":41,"value":326},{"type":36,"tag":121,"props":12550,"children":12551},{"style":134},[12552],{"type":41,"value":497},{"type":36,"tag":121,"props":12554,"children":12555},{"style":145},[12556],{"type":41,"value":336},{"type":36,"tag":121,"props":12558,"children":12559},{"style":145},[12560],{"type":41,"value":12561}," ''",{"type":36,"tag":121,"props":12563,"children":12564},{"style":145},[12565],{"type":41,"value":164},{"type":36,"tag":121,"props":12567,"children":12568},{"class":123,"line":532},[12569,12573,12578,12582,12586],{"type":36,"tag":121,"props":12570,"children":12571},{"style":181},[12572],{"type":41,"value":326},{"type":36,"tag":121,"props":12574,"children":12575},{"style":134},[12576],{"type":41,"value":12577}," passWord",{"type":36,"tag":121,"props":12579,"children":12580},{"style":145},[12581],{"type":41,"value":336},{"type":36,"tag":121,"props":12583,"children":12584},{"style":145},[12585],{"type":41,"value":12561},{"type":36,"tag":121,"props":12587,"children":12588},{"style":145},[12589],{"type":41,"value":164},{"type":36,"tag":121,"props":12591,"children":12592},{"class":123,"line":549},[12593,12597,12601,12605,12609],{"type":36,"tag":121,"props":12594,"children":12595},{"style":181},[12596],{"type":41,"value":326},{"type":36,"tag":121,"props":12598,"children":12599},{"style":134},[12600],{"type":41,"value":506},{"type":36,"tag":121,"props":12602,"children":12603},{"style":145},[12604],{"type":41,"value":336},{"type":36,"tag":121,"props":12606,"children":12607},{"style":513},[12608],{"type":41,"value":516},{"type":36,"tag":121,"props":12610,"children":12611},{"style":145},[12612],{"type":41,"value":164},{"type":36,"tag":121,"props":12614,"children":12615},{"class":123,"line":557},[12616,12620,12624,12628,12632,12637,12641],{"type":36,"tag":121,"props":12617,"children":12618},{"style":181},[12619],{"type":41,"value":326},{"type":36,"tag":121,"props":12621,"children":12622},{"style":134},[12623],{"type":41,"value":282},{"type":36,"tag":121,"props":12625,"children":12626},{"style":145},[12627],{"type":41,"value":336},{"type":36,"tag":121,"props":12629,"children":12630},{"style":145},[12631],{"type":41,"value":148},{"type":36,"tag":121,"props":12633,"children":12634},{"style":151},[12635],{"type":41,"value":12636},"React User",{"type":36,"tag":121,"props":12638,"children":12639},{"style":145},[12640],{"type":41,"value":159},{"type":36,"tag":121,"props":12642,"children":12643},{"style":145},[12644],{"type":41,"value":164},{"type":36,"tag":121,"props":12646,"children":12647},{"class":123,"line":655},[12648],{"type":36,"tag":121,"props":12649,"children":12650},{"emptyLinePlaceholder":171},[12651],{"type":41,"value":174},{"type":36,"tag":121,"props":12653,"children":12654},{"class":123,"line":663},[12655,12659,12664,12668,12672,12676,12680],{"type":36,"tag":121,"props":12656,"children":12657},{"style":181},[12658],{"type":41,"value":326},{"type":36,"tag":121,"props":12660,"children":12661},{"style":134},[12662],{"type":41,"value":12663}," getSignature",{"type":36,"tag":121,"props":12665,"children":12666},{"style":145},[12667],{"type":41,"value":336},{"type":36,"tag":121,"props":12669,"children":12670},{"style":181},[12671],{"type":41,"value":240},{"type":36,"tag":121,"props":12673,"children":12674},{"style":145},[12675],{"type":41,"value":2902},{"type":36,"tag":121,"props":12677,"children":12678},{"style":181},[12679],{"type":41,"value":2691},{"type":36,"tag":121,"props":12681,"children":12682},{"style":145},[12683],{"type":41,"value":317},{"type":36,"tag":121,"props":12685,"children":12686},{"class":123,"line":722},[12687,12692,12697,12701,12705,12709,12713,12718,12722],{"type":36,"tag":121,"props":12688,"children":12689},{"style":181},[12690],{"type":41,"value":12691},"    const",{"type":36,"tag":121,"props":12693,"children":12694},{"style":134},[12695],{"type":41,"value":12696}," response",{"type":36,"tag":121,"props":12698,"children":12699},{"style":145},[12700],{"type":41,"value":336},{"type":36,"tag":121,"props":12702,"children":12703},{"style":128},[12704],{"type":41,"value":341},{"type":36,"tag":121,"props":12706,"children":12707},{"style":206},[12708],{"type":41,"value":346},{"type":36,"tag":121,"props":12710,"children":12711},{"style":349},[12712],{"type":41,"value":255},{"type":36,"tag":121,"props":12714,"children":12715},{"style":134},[12716],{"type":41,"value":12717},"authEndpoint",{"type":36,"tag":121,"props":12719,"children":12720},{"style":145},[12721],{"type":41,"value":277},{"type":36,"tag":121,"props":12723,"children":12724},{"style":145},[12725],{"type":41,"value":317},{"type":36,"tag":121,"props":12727,"children":12728},{"class":123,"line":730},[12729,12734,12738,12742,12746,12750],{"type":36,"tag":121,"props":12730,"children":12731},{"style":349},[12732],{"type":41,"value":12733},"      method",{"type":36,"tag":121,"props":12735,"children":12736},{"style":145},[12737],{"type":41,"value":266},{"type":36,"tag":121,"props":12739,"children":12740},{"style":145},[12741],{"type":41,"value":148},{"type":36,"tag":121,"props":12743,"children":12744},{"style":151},[12745],{"type":41,"value":394},{"type":36,"tag":121,"props":12747,"children":12748},{"style":145},[12749],{"type":41,"value":159},{"type":36,"tag":121,"props":12751,"children":12752},{"style":145},[12753],{"type":41,"value":403},{"type":36,"tag":121,"props":12755,"children":12756},{"class":123,"line":762},[12757,12762,12766,12770,12774,12778,12782,12786,12790,12794,12798],{"type":36,"tag":121,"props":12758,"children":12759},{"style":349},[12760],{"type":41,"value":12761},"      headers",{"type":36,"tag":121,"props":12763,"children":12764},{"style":145},[12765],{"type":41,"value":266},{"type":36,"tag":121,"props":12767,"children":12768},{"style":145},[12769],{"type":41,"value":421},{"type":36,"tag":121,"props":12771,"children":12772},{"style":145},[12773],{"type":41,"value":148},{"type":36,"tag":121,"props":12775,"children":12776},{"style":349},[12777],{"type":41,"value":430},{"type":36,"tag":121,"props":12779,"children":12780},{"style":145},[12781],{"type":41,"value":159},{"type":36,"tag":121,"props":12783,"children":12784},{"style":145},[12785],{"type":41,"value":266},{"type":36,"tag":121,"props":12787,"children":12788},{"style":145},[12789],{"type":41,"value":148},{"type":36,"tag":121,"props":12791,"children":12792},{"style":151},[12793],{"type":41,"value":447},{"type":36,"tag":121,"props":12795,"children":12796},{"style":145},[12797],{"type":41,"value":159},{"type":36,"tag":121,"props":12799,"children":12800},{"style":145},[12801],{"type":41,"value":456},{"type":36,"tag":121,"props":12803,"children":12804},{"class":123,"line":815},[12805,12810,12814,12818,12822,12826,12830],{"type":36,"tag":121,"props":12806,"children":12807},{"style":349},[12808],{"type":41,"value":12809},"      body",{"type":36,"tag":121,"props":12811,"children":12812},{"style":145},[12813],{"type":41,"value":266},{"type":36,"tag":121,"props":12815,"children":12816},{"style":134},[12817],{"type":41,"value":474},{"type":36,"tag":121,"props":12819,"children":12820},{"style":145},[12821],{"type":41,"value":82},{"type":36,"tag":121,"props":12823,"children":12824},{"style":206},[12825],{"type":41,"value":483},{"type":36,"tag":121,"props":12827,"children":12828},{"style":349},[12829],{"type":41,"value":255},{"type":36,"tag":121,"props":12831,"children":12832},{"style":145},[12833],{"type":41,"value":759},{"type":36,"tag":121,"props":12835,"children":12836},{"class":123,"line":845},[12837,12841],{"type":36,"tag":121,"props":12838,"children":12839},{"style":134},[12840],{"type":41,"value":2982},{"type":36,"tag":121,"props":12842,"children":12843},{"style":145},[12844],{"type":41,"value":403},{"type":36,"tag":121,"props":12846,"children":12847},{"class":123,"line":868},[12848,12853],{"type":36,"tag":121,"props":12849,"children":12850},{"style":134},[12851],{"type":41,"value":12852},"        role",{"type":36,"tag":121,"props":12854,"children":12855},{"style":145},[12856],{"type":41,"value":403},{"type":36,"tag":121,"props":12858,"children":12859},{"class":123,"line":889},[12860,12864,12868],{"type":36,"tag":121,"props":12861,"children":12862},{"style":145},[12863],{"type":41,"value":3442},{"type":36,"tag":121,"props":12865,"children":12866},{"style":349},[12867],{"type":41,"value":312},{"type":36,"tag":121,"props":12869,"children":12870},{"style":145},[12871],{"type":41,"value":403},{"type":36,"tag":121,"props":12873,"children":12874},{"class":123,"line":906},[12875,12879,12883],{"type":36,"tag":121,"props":12876,"children":12877},{"style":145},[12878],{"type":41,"value":3916},{"type":36,"tag":121,"props":12880,"children":12881},{"style":349},[12882],{"type":41,"value":312},{"type":36,"tag":121,"props":12884,"children":12885},{"style":145},[12886],{"type":41,"value":164},{"type":36,"tag":121,"props":12888,"children":12889},{"class":123,"line":975},[12890,12894,12898,12902,12906,12910,12914,12918,12922],{"type":36,"tag":121,"props":12891,"children":12892},{"style":181},[12893],{"type":41,"value":12691},{"type":36,"tag":121,"props":12895,"children":12896},{"style":134},[12897],{"type":41,"value":5603},{"type":36,"tag":121,"props":12899,"children":12900},{"style":145},[12901],{"type":41,"value":336},{"type":36,"tag":121,"props":12903,"children":12904},{"style":128},[12905],{"type":41,"value":341},{"type":36,"tag":121,"props":12907,"children":12908},{"style":134},[12909],{"type":41,"value":12696},{"type":36,"tag":121,"props":12911,"children":12912},{"style":145},[12913],{"type":41,"value":82},{"type":36,"tag":121,"props":12915,"children":12916},{"style":206},[12917],{"type":41,"value":711},{"type":36,"tag":121,"props":12919,"children":12920},{"style":349},[12921],{"type":41,"value":214},{"type":36,"tag":121,"props":12923,"children":12924},{"style":145},[12925],{"type":41,"value":164},{"type":36,"tag":121,"props":12927,"children":12928},{"class":123,"line":984},[12929,12934,12938,12942,12946,12951,12955],{"type":36,"tag":121,"props":12930,"children":12931},{"style":206},[12932],{"type":41,"value":12933},"    startMeeting",{"type":36,"tag":121,"props":12935,"children":12936},{"style":349},[12937],{"type":41,"value":255},{"type":36,"tag":121,"props":12939,"children":12940},{"style":134},[12941],{"type":41,"value":5549},{"type":36,"tag":121,"props":12943,"children":12944},{"style":145},[12945],{"type":41,"value":82},{"type":36,"tag":121,"props":12947,"children":12948},{"style":134},[12949],{"type":41,"value":12950},"signature",{"type":36,"tag":121,"props":12952,"children":12953},{"style":349},[12954],{"type":41,"value":312},{"type":36,"tag":121,"props":12956,"children":12957},{"style":145},[12958],{"type":41,"value":164},{"type":36,"tag":121,"props":12960,"children":12961},{"class":123,"line":1000},[12962],{"type":36,"tag":121,"props":12963,"children":12964},{"style":145},[12965],{"type":41,"value":12966},"  };\n",{"type":36,"tag":121,"props":12968,"children":12969},{"class":123,"line":1008},[12970],{"type":36,"tag":121,"props":12971,"children":12972},{"emptyLinePlaceholder":171},[12973],{"type":41,"value":174},{"type":36,"tag":121,"props":12975,"children":12976},{"class":123,"line":1037},[12977,12981,12985,12989,12993,12997,13001,13005,13009,13013],{"type":36,"tag":121,"props":12978,"children":12979},{"style":181},[12980],{"type":41,"value":326},{"type":36,"tag":121,"props":12982,"children":12983},{"style":134},[12984],{"type":41,"value":3701},{"type":36,"tag":121,"props":12986,"children":12987},{"style":145},[12988],{"type":41,"value":336},{"type":36,"tag":121,"props":12990,"children":12991},{"style":145},[12992],{"type":41,"value":568},{"type":36,"tag":121,"props":12994,"children":12995},{"style":258},[12996],{"type":41,"value":12950},{"type":36,"tag":121,"props":12998,"children":12999},{"style":145},[13000],{"type":41,"value":266},{"type":36,"tag":121,"props":13002,"children":13003},{"style":269},[13004],{"type":41,"value":272},{"type":36,"tag":121,"props":13006,"children":13007},{"style":145},[13008],{"type":41,"value":312},{"type":36,"tag":121,"props":13010,"children":13011},{"style":181},[13012],{"type":41,"value":2691},{"type":36,"tag":121,"props":13014,"children":13015},{"style":145},[13016],{"type":41,"value":317},{"type":36,"tag":121,"props":13018,"children":13019},{"class":123,"line":1050},[13020,13025,13029,13033,13037,13041,13046,13050,13054,13059,13064,13068,13073,13077,13081,13085,13089],{"type":36,"tag":121,"props":13021,"children":13022},{"style":134},[13023],{"type":41,"value":13024},"    document",{"type":36,"tag":121,"props":13026,"children":13027},{"style":145},[13028],{"type":41,"value":82},{"type":36,"tag":121,"props":13030,"children":13031},{"style":206},[13032],{"type":41,"value":786},{"type":36,"tag":121,"props":13034,"children":13035},{"style":349},[13036],{"type":41,"value":255},{"type":36,"tag":121,"props":13038,"children":13039},{"style":145},[13040],{"type":41,"value":159},{"type":36,"tag":121,"props":13042,"children":13043},{"style":151},[13044],{"type":41,"value":13045},"zmmtg-root",{"type":36,"tag":121,"props":13047,"children":13048},{"style":145},[13049],{"type":41,"value":159},{"type":36,"tag":121,"props":13051,"children":13052},{"style":349},[13053],{"type":41,"value":312},{"type":36,"tag":121,"props":13055,"children":13056},{"style":145},[13057],{"type":41,"value":13058},"!.",{"type":36,"tag":121,"props":13060,"children":13061},{"style":134},[13062],{"type":41,"value":13063},"style",{"type":36,"tag":121,"props":13065,"children":13066},{"style":145},[13067],{"type":41,"value":82},{"type":36,"tag":121,"props":13069,"children":13070},{"style":134},[13071],{"type":41,"value":13072},"display",{"type":36,"tag":121,"props":13074,"children":13075},{"style":145},[13076],{"type":41,"value":336},{"type":36,"tag":121,"props":13078,"children":13079},{"style":145},[13080],{"type":41,"value":148},{"type":36,"tag":121,"props":13082,"children":13083},{"style":151},[13084],{"type":41,"value":1587},{"type":36,"tag":121,"props":13086,"children":13087},{"style":145},[13088],{"type":41,"value":159},{"type":36,"tag":121,"props":13090,"children":13091},{"style":145},[13092],{"type":41,"value":164},{"type":36,"tag":121,"props":13094,"children":13095},{"class":123,"line":1063},[13096],{"type":36,"tag":121,"props":13097,"children":13098},{"emptyLinePlaceholder":171},[13099],{"type":41,"value":174},{"type":36,"tag":121,"props":13101,"children":13102},{"class":123,"line":1076},[13103,13108,13112,13116,13120],{"type":36,"tag":121,"props":13104,"children":13105},{"style":134},[13106],{"type":41,"value":13107},"    ZoomMtg",{"type":36,"tag":121,"props":13109,"children":13110},{"style":145},[13111],{"type":41,"value":82},{"type":36,"tag":121,"props":13113,"children":13114},{"style":206},[13115],{"type":41,"value":750},{"type":36,"tag":121,"props":13117,"children":13118},{"style":349},[13119],{"type":41,"value":255},{"type":36,"tag":121,"props":13121,"children":13122},{"style":145},[13123],{"type":41,"value":759},{"type":36,"tag":121,"props":13125,"children":13126},{"class":123,"line":1089},[13127,13132,13136,13140,13144,13149,13153,13158],{"type":36,"tag":121,"props":13128,"children":13129},{"style":349},[13130],{"type":41,"value":13131},"      leaveUrl",{"type":36,"tag":121,"props":13133,"children":13134},{"style":145},[13135],{"type":41,"value":266},{"type":36,"tag":121,"props":13137,"children":13138},{"style":134},[13139],{"type":41,"value":10891},{"type":36,"tag":121,"props":13141,"children":13142},{"style":145},[13143],{"type":41,"value":82},{"type":36,"tag":121,"props":13145,"children":13146},{"style":134},[13147],{"type":41,"value":13148},"location",{"type":36,"tag":121,"props":13150,"children":13151},{"style":145},[13152],{"type":41,"value":82},{"type":36,"tag":121,"props":13154,"children":13155},{"style":134},[13156],{"type":41,"value":13157},"origin",{"type":36,"tag":121,"props":13159,"children":13160},{"style":145},[13161],{"type":41,"value":403},{"type":36,"tag":121,"props":13163,"children":13164},{"class":123,"line":1102},[13165,13169,13173,13177],{"type":36,"tag":121,"props":13166,"children":13167},{"style":349},[13168],{"type":41,"value":3866},{"type":36,"tag":121,"props":13170,"children":13171},{"style":145},[13172],{"type":41,"value":266},{"type":36,"tag":121,"props":13174,"children":13175},{"style":858},[13176],{"type":41,"value":861},{"type":36,"tag":121,"props":13178,"children":13179},{"style":145},[13180],{"type":41,"value":403},{"type":36,"tag":121,"props":13182,"children":13183},{"class":123,"line":1118},[13184,13188,13192,13196],{"type":36,"tag":121,"props":13185,"children":13186},{"style":349},[13187],{"type":41,"value":3891},{"type":36,"tag":121,"props":13189,"children":13190},{"style":145},[13191],{"type":41,"value":266},{"type":36,"tag":121,"props":13193,"children":13194},{"style":858},[13195],{"type":41,"value":861},{"type":36,"tag":121,"props":13197,"children":13198},{"style":145},[13199],{"type":41,"value":403},{"type":36,"tag":121,"props":13201,"children":13202},{"class":123,"line":3201},[13203,13208,13212,13216,13220],{"type":36,"tag":121,"props":13204,"children":13205},{"style":206},[13206],{"type":41,"value":13207},"      success",{"type":36,"tag":121,"props":13209,"children":13210},{"style":145},[13211],{"type":41,"value":266},{"type":36,"tag":121,"props":13213,"children":13214},{"style":145},[13215],{"type":41,"value":2902},{"type":36,"tag":121,"props":13217,"children":13218},{"style":181},[13219],{"type":41,"value":2691},{"type":36,"tag":121,"props":13221,"children":13222},{"style":145},[13223],{"type":41,"value":317},{"type":36,"tag":121,"props":13225,"children":13226},{"class":123,"line":3226},[13227,13232,13236,13240,13244],{"type":36,"tag":121,"props":13228,"children":13229},{"style":134},[13230],{"type":41,"value":13231},"        ZoomMtg",{"type":36,"tag":121,"props":13233,"children":13234},{"style":145},[13235],{"type":41,"value":82},{"type":36,"tag":121,"props":13237,"children":13238},{"style":206},[13239],{"type":41,"value":1026},{"type":36,"tag":121,"props":13241,"children":13242},{"style":349},[13243],{"type":41,"value":255},{"type":36,"tag":121,"props":13245,"children":13246},{"style":145},[13247],{"type":41,"value":759},{"type":36,"tag":121,"props":13249,"children":13250},{"class":123,"line":3316},[13251,13256],{"type":36,"tag":121,"props":13252,"children":13253},{"style":134},[13254],{"type":41,"value":13255},"          signature",{"type":36,"tag":121,"props":13257,"children":13258},{"style":145},[13259],{"type":41,"value":403},{"type":36,"tag":121,"props":13261,"children":13262},{"class":123,"line":3333},[13263,13268],{"type":36,"tag":121,"props":13264,"children":13265},{"style":134},[13266],{"type":41,"value":13267},"          meetingNumber",{"type":36,"tag":121,"props":13269,"children":13270},{"style":145},[13271],{"type":41,"value":403},{"type":36,"tag":121,"props":13273,"children":13274},{"class":123,"line":3342},[13275,13280],{"type":36,"tag":121,"props":13276,"children":13277},{"style":134},[13278],{"type":41,"value":13279},"          userName",{"type":36,"tag":121,"props":13281,"children":13282},{"style":145},[13283],{"type":41,"value":403},{"type":36,"tag":121,"props":13285,"children":13286},{"class":123,"line":3376},[13287,13292],{"type":36,"tag":121,"props":13288,"children":13289},{"style":134},[13290],{"type":41,"value":13291},"          passWord",{"type":36,"tag":121,"props":13293,"children":13294},{"style":145},[13295],{"type":41,"value":403},{"type":36,"tag":121,"props":13297,"children":13298},{"class":123,"line":3427},[13299,13304,13308,13312,13316,13320,13324,13328,13332,13336,13340,13344,13349,13353,13357,13361,13365],{"type":36,"tag":121,"props":13300,"children":13301},{"style":206},[13302],{"type":41,"value":13303},"          success",{"type":36,"tag":121,"props":13305,"children":13306},{"style":145},[13307],{"type":41,"value":266},{"type":36,"tag":121,"props":13309,"children":13310},{"style":145},[13311],{"type":41,"value":568},{"type":36,"tag":121,"props":13313,"children":13314},{"style":258},[13315],{"type":41,"value":3087},{"type":36,"tag":121,"props":13317,"children":13318},{"style":145},[13319],{"type":41,"value":312},{"type":36,"tag":121,"props":13321,"children":13322},{"style":181},[13323],{"type":41,"value":2691},{"type":36,"tag":121,"props":13325,"children":13326},{"style":134},[13327],{"type":41,"value":3257},{"type":36,"tag":121,"props":13329,"children":13330},{"style":145},[13331],{"type":41,"value":82},{"type":36,"tag":121,"props":13333,"children":13334},{"style":206},[13335],{"type":41,"value":2484},{"type":36,"tag":121,"props":13337,"children":13338},{"style":349},[13339],{"type":41,"value":255},{"type":36,"tag":121,"props":13341,"children":13342},{"style":145},[13343],{"type":41,"value":159},{"type":36,"tag":121,"props":13345,"children":13346},{"style":151},[13347],{"type":41,"value":13348},"Joined:",{"type":36,"tag":121,"props":13350,"children":13351},{"style":145},[13352],{"type":41,"value":159},{"type":36,"tag":121,"props":13354,"children":13355},{"style":145},[13356],{"type":41,"value":277},{"type":36,"tag":121,"props":13358,"children":13359},{"style":134},[13360],{"type":41,"value":3141},{"type":36,"tag":121,"props":13362,"children":13363},{"style":349},[13364],{"type":41,"value":312},{"type":36,"tag":121,"props":13366,"children":13367},{"style":145},[13368],{"type":41,"value":403},{"type":36,"tag":121,"props":13370,"children":13371},{"class":123,"line":3436},[13372,13377,13381,13385,13389,13393,13397,13401,13405,13409,13413,13417,13421,13425,13429,13433,13437],{"type":36,"tag":121,"props":13373,"children":13374},{"style":206},[13375],{"type":41,"value":13376},"          error",{"type":36,"tag":121,"props":13378,"children":13379},{"style":145},[13380],{"type":41,"value":266},{"type":36,"tag":121,"props":13382,"children":13383},{"style":145},[13384],{"type":41,"value":568},{"type":36,"tag":121,"props":13386,"children":13387},{"style":258},[13388],{"type":41,"value":3361},{"type":36,"tag":121,"props":13390,"children":13391},{"style":145},[13392],{"type":41,"value":312},{"type":36,"tag":121,"props":13394,"children":13395},{"style":181},[13396],{"type":41,"value":2691},{"type":36,"tag":121,"props":13398,"children":13399},{"style":134},[13400],{"type":41,"value":3257},{"type":36,"tag":121,"props":13402,"children":13403},{"style":145},[13404],{"type":41,"value":82},{"type":36,"tag":121,"props":13406,"children":13407},{"style":206},[13408],{"type":41,"value":3390},{"type":36,"tag":121,"props":13410,"children":13411},{"style":349},[13412],{"type":41,"value":255},{"type":36,"tag":121,"props":13414,"children":13415},{"style":145},[13416],{"type":41,"value":159},{"type":36,"tag":121,"props":13418,"children":13419},{"style":151},[13420],{"type":41,"value":3403},{"type":36,"tag":121,"props":13422,"children":13423},{"style":145},[13424],{"type":41,"value":159},{"type":36,"tag":121,"props":13426,"children":13427},{"style":145},[13428],{"type":41,"value":277},{"type":36,"tag":121,"props":13430,"children":13431},{"style":134},[13432],{"type":41,"value":3416},{"type":36,"tag":121,"props":13434,"children":13435},{"style":349},[13436],{"type":41,"value":312},{"type":36,"tag":121,"props":13438,"children":13439},{"style":145},[13440],{"type":41,"value":403},{"type":36,"tag":121,"props":13442,"children":13443},{"class":123,"line":3453},[13444,13449,13453],{"type":36,"tag":121,"props":13445,"children":13446},{"style":145},[13447],{"type":41,"value":13448},"        }",{"type":36,"tag":121,"props":13450,"children":13451},{"style":349},[13452],{"type":41,"value":312},{"type":36,"tag":121,"props":13454,"children":13455},{"style":145},[13456],{"type":41,"value":164},{"type":36,"tag":121,"props":13458,"children":13459},{"class":123,"line":3461},[13460],{"type":36,"tag":121,"props":13461,"children":13462},{"style":145},[13463],{"type":41,"value":13464},"      },\n",{"type":36,"tag":121,"props":13466,"children":13467},{"class":123,"line":3494},[13468,13473,13477,13481,13485,13489,13493,13497,13501,13505,13509,13513,13517,13521,13525,13529,13533],{"type":36,"tag":121,"props":13469,"children":13470},{"style":206},[13471],{"type":41,"value":13472},"      error",{"type":36,"tag":121,"props":13474,"children":13475},{"style":145},[13476],{"type":41,"value":266},{"type":36,"tag":121,"props":13478,"children":13479},{"style":145},[13480],{"type":41,"value":568},{"type":36,"tag":121,"props":13482,"children":13483},{"style":258},[13484],{"type":41,"value":3361},{"type":36,"tag":121,"props":13486,"children":13487},{"style":145},[13488],{"type":41,"value":312},{"type":36,"tag":121,"props":13490,"children":13491},{"style":181},[13492],{"type":41,"value":2691},{"type":36,"tag":121,"props":13494,"children":13495},{"style":134},[13496],{"type":41,"value":3257},{"type":36,"tag":121,"props":13498,"children":13499},{"style":145},[13500],{"type":41,"value":82},{"type":36,"tag":121,"props":13502,"children":13503},{"style":206},[13504],{"type":41,"value":3390},{"type":36,"tag":121,"props":13506,"children":13507},{"style":349},[13508],{"type":41,"value":255},{"type":36,"tag":121,"props":13510,"children":13511},{"style":145},[13512],{"type":41,"value":159},{"type":36,"tag":121,"props":13514,"children":13515},{"style":151},[13516],{"type":41,"value":3521},{"type":36,"tag":121,"props":13518,"children":13519},{"style":145},[13520],{"type":41,"value":159},{"type":36,"tag":121,"props":13522,"children":13523},{"style":145},[13524],{"type":41,"value":277},{"type":36,"tag":121,"props":13526,"children":13527},{"style":134},[13528],{"type":41,"value":3416},{"type":36,"tag":121,"props":13530,"children":13531},{"style":349},[13532],{"type":41,"value":312},{"type":36,"tag":121,"props":13534,"children":13535},{"style":145},[13536],{"type":41,"value":403},{"type":36,"tag":121,"props":13538,"children":13539},{"class":123,"line":3544},[13540,13544,13548],{"type":36,"tag":121,"props":13541,"children":13542},{"style":145},[13543],{"type":41,"value":3916},{"type":36,"tag":121,"props":13545,"children":13546},{"style":349},[13547],{"type":41,"value":312},{"type":36,"tag":121,"props":13549,"children":13550},{"style":145},[13551],{"type":41,"value":164},{"type":36,"tag":121,"props":13553,"children":13554},{"class":123,"line":3553},[13555],{"type":36,"tag":121,"props":13556,"children":13557},{"style":145},[13558],{"type":41,"value":12966},{"type":36,"tag":121,"props":13560,"children":13561},{"class":123,"line":3569},[13562],{"type":36,"tag":121,"props":13563,"children":13564},{"emptyLinePlaceholder":171},[13565],{"type":41,"value":174},{"type":36,"tag":121,"props":13567,"children":13568},{"class":123,"line":6563},[13569,13574],{"type":36,"tag":121,"props":13570,"children":13571},{"style":128},[13572],{"type":41,"value":13573},"  return",{"type":36,"tag":121,"props":13575,"children":13576},{"style":349},[13577],{"type":41,"value":13578}," (\n",{"type":36,"tag":121,"props":13580,"children":13581},{"class":123,"line":6579},[13582,13587,13592,13597,13602,13607,13612,13617,13622,13626],{"type":36,"tag":121,"props":13583,"children":13584},{"style":145},[13585],{"type":41,"value":13586},"    \u003C",{"type":36,"tag":121,"props":13588,"children":13589},{"style":349},[13590],{"type":41,"value":13591},"button",{"type":36,"tag":121,"props":13593,"children":13594},{"style":181},[13595],{"type":41,"value":13596}," onClick",{"type":36,"tag":121,"props":13598,"children":13599},{"style":145},[13600],{"type":41,"value":13601},"={",{"type":36,"tag":121,"props":13603,"children":13604},{"style":134},[13605],{"type":41,"value":13606},"getSignature",{"type":36,"tag":121,"props":13608,"children":13609},{"style":145},[13610],{"type":41,"value":13611},"}>",{"type":36,"tag":121,"props":13613,"children":13614},{"style":134},[13615],{"type":41,"value":13616},"Join Meeting",{"type":36,"tag":121,"props":13618,"children":13619},{"style":145},[13620],{"type":41,"value":13621},"\u003C\u002F",{"type":36,"tag":121,"props":13623,"children":13624},{"style":349},[13625],{"type":41,"value":13591},{"type":36,"tag":121,"props":13627,"children":13628},{"style":145},[13629],{"type":41,"value":2072},{"type":36,"tag":121,"props":13631,"children":13632},{"class":123,"line":6587},[13633,13638],{"type":36,"tag":121,"props":13634,"children":13635},{"style":349},[13636],{"type":41,"value":13637},"  )",{"type":36,"tag":121,"props":13639,"children":13640},{"style":145},[13641],{"type":41,"value":164},{"type":36,"tag":121,"props":13643,"children":13644},{"class":123,"line":6596},[13645],{"type":36,"tag":121,"props":13646,"children":13647},{"style":145},[13648],{"type":41,"value":1124},{"type":36,"tag":1893,"props":13650,"children":13652},{"id":13651},"react-gotchas-from-official-samples",[13653],{"type":41,"value":13654},"React Gotchas (from official samples)",{"type":36,"tag":1641,"props":13656,"children":13657},{},[13658,13677],{"type":36,"tag":1645,"props":13659,"children":13660},{},[13661],{"type":36,"tag":1649,"props":13662,"children":13663},{},[13664,13668,13673],{"type":36,"tag":1653,"props":13665,"children":13666},{},[13667],{"type":41,"value":11308},{"type":36,"tag":1653,"props":13669,"children":13670},{},[13671],{"type":41,"value":13672},"Problem",{"type":36,"tag":1653,"props":13674,"children":13675},{},[13676],{"type":41,"value":11313},{"type":36,"tag":1667,"props":13678,"children":13679},{},[13680,13714,13743,13776,13805],{"type":36,"tag":1649,"props":13681,"children":13682},{},[13683,13691,13702],{"type":36,"tag":1674,"props":13684,"children":13685},{},[13686],{"type":36,"tag":50,"props":13687,"children":13688},{},[13689],{"type":41,"value":13690},"Client Recreation",{"type":36,"tag":1674,"props":13692,"children":13693},{},[13694,13700],{"type":36,"tag":102,"props":13695,"children":13697},{"className":13696},[],[13698],{"type":41,"value":13699},"createClient()",{"type":41,"value":13701}," in component body runs every render",{"type":36,"tag":1674,"props":13703,"children":13704},{},[13705,13706,13712],{"type":41,"value":75},{"type":36,"tag":102,"props":13707,"children":13709},{"className":13708},[],[13710],{"type":41,"value":13711},"useRef",{"type":41,"value":13713}," to persist client",{"type":36,"tag":1649,"props":13715,"children":13716},{},[13717,13725,13730],{"type":36,"tag":1674,"props":13718,"children":13719},{},[13720],{"type":36,"tag":50,"props":13721,"children":13722},{},[13723],{"type":41,"value":13724},"No useEffect",{"type":36,"tag":1674,"props":13726,"children":13727},{},[13728],{"type":41,"value":13729},"Official sample doesn't use React lifecycle hooks",{"type":36,"tag":1674,"props":13731,"children":13732},{},[13733,13735,13741],{"type":41,"value":13734},"SDK's ",{"type":36,"tag":102,"props":13736,"children":13738},{"className":13737},[],[13739],{"type":41,"value":13740},"leaveOnPageUnload",{"type":41,"value":13742}," handles cleanup",{"type":36,"tag":1649,"props":13744,"children":13745},{},[13746,13754,13764],{"type":36,"tag":1674,"props":13747,"children":13748},{},[13749],{"type":36,"tag":50,"props":13750,"children":13751},{},[13752],{"type":41,"value":13753},"Direct DOM",{"type":36,"tag":1674,"props":13755,"children":13756},{},[13757,13759],{"type":41,"value":13758},"Sample uses ",{"type":36,"tag":102,"props":13760,"children":13762},{"className":13761},[],[13763],{"type":41,"value":786},{"type":36,"tag":1674,"props":13765,"children":13766},{},[13767,13768,13774],{"type":41,"value":75},{"type":36,"tag":102,"props":13769,"children":13771},{"className":13770},[],[13772],{"type":41,"value":13773},"useRef\u003CHTMLDivElement>",{"type":41,"value":13775}," in production",{"type":36,"tag":1649,"props":13777,"children":13778},{},[13779,13787,13792],{"type":36,"tag":1674,"props":13780,"children":13781},{},[13782],{"type":36,"tag":50,"props":13783,"children":13784},{},[13785],{"type":41,"value":13786},"No Error State",{"type":36,"tag":1674,"props":13788,"children":13789},{},[13790],{"type":41,"value":13791},"Silent failures",{"type":36,"tag":1674,"props":13793,"children":13794},{},[13795,13797,13803],{"type":41,"value":13796},"Add ",{"type":36,"tag":102,"props":13798,"children":13800},{"className":13799},[],[13801],{"type":41,"value":13802},"useState",{"type":41,"value":13804}," for error handling",{"type":36,"tag":1649,"props":13806,"children":13807},{},[13808,13816,13827],{"type":36,"tag":1674,"props":13809,"children":13810},{},[13811],{"type":36,"tag":50,"props":13812,"children":13813},{},[13814],{"type":41,"value":13815},"Module-Scope Side Effects",{"type":36,"tag":1674,"props":13817,"children":13818},{},[13819,13825],{"type":36,"tag":102,"props":13820,"children":13822},{"className":13821},[],[13823],{"type":41,"value":13824},"preLoadWasm()",{"type":41,"value":13826}," at top level",{"type":36,"tag":1674,"props":13828,"children":13829},{},[13830],{"type":41,"value":13831},"May cause issues with SSR",{"type":36,"tag":1893,"props":13833,"children":13835},{"id":13834},"production-ready-react-pattern",[13836],{"type":41,"value":13837},"Production-Ready React Pattern",{"type":36,"tag":94,"props":13839,"children":13841},{"className":12356,"code":13840,"language":12358,"meta":99,"style":99},"import { useEffect, useRef, useState, useCallback } from 'react';\nimport ZoomMtgEmbedded from '@zoom\u002Fmeetingsdk\u002Fembedded';\n\ntype ZoomClient = ReturnType\u003Ctypeof ZoomMtgEmbedded.createClient>;\n\nfunction ZoomMeeting({ meetingNumber, password, userName }: Props) {\n  const clientRef = useRef\u003CZoomClient | null>(null);\n  const containerRef = useRef\u003CHTMLDivElement>(null);\n  const [isJoining, setIsJoining] = useState(false);\n  const [error, setError] = useState\u003Cstring | null>(null);\n\n  \u002F\u002F Create client once\n  useEffect(() => {\n    if (!clientRef.current) {\n      clientRef.current = ZoomMtgEmbedded.createClient();\n    }\n  }, []);\n\n  const joinMeeting = useCallback(async () => {\n    if (!clientRef.current || !containerRef.current) return;\n\n    setIsJoining(true);\n    setError(null);\n\n    try {\n      \u002F\u002F Get signature from your backend\n      const response = await fetch('\u002Fapi\u002Fsignature', {\n        method: 'POST',\n        headers: { 'Content-Type': 'application\u002Fjson' },\n        body: JSON.stringify({ meetingNumber, role: 0 }),\n      });\n      const { signature, sdkKey } = await response.json();\n\n      await clientRef.current.init({\n        zoomAppRoot: containerRef.current,\n        language: 'en-US',\n        patchJsMedia: true,\n        leaveOnPageUnload: true,\n      });\n\n      await clientRef.current.join({\n        signature,\n        sdkKey,\n        meetingNumber,\n        password,\n        userName,\n      });\n    } catch (err) {\n      setError(err instanceof Error ? err.message : 'Failed to join');\n    } finally {\n      setIsJoining(false);\n    }\n  }, [meetingNumber, password, userName]);\n\n  return (\n    \u003Cdiv>\n      \u003Cdiv ref={containerRef} style={{ width: '100%', height: '500px' }} \u002F>\n      \u003Cbutton onClick={joinMeeting} disabled={isJoining}>\n        {isJoining ? 'Joining...' : 'Join Meeting'}\n      \u003C\u002Fbutton>\n      {error && \u003Cdiv className=\"error\">{error}\u003C\u002Fdiv>}\n    \u003C\u002Fdiv>\n  );\n}\n",[13842],{"type":36,"tag":102,"props":13843,"children":13844},{"__ignoreMap":99},[13845,13913,13944,13951,13995,14002,14057,14117,14166,14220,14293,14300,14308,14332,14370,14410,14417,14434,14441,14481,14543,14550,14574,14598,14605,14617,14625,14673,14701,14749,14813,14828,14883,14890,14926,14954,14982,15002,15022,15037,15044,15079,15090,15102,15113,15125,15136,15151,15178,15247,15263,15287,15294,15334,15341,15352,15368,15459,15505,15556,15572,15643,15659,15670],{"type":36,"tag":121,"props":13846,"children":13847},{"class":123,"line":124},[13848,13852,13856,13861,13865,13870,13874,13879,13883,13888,13892,13896,13900,13905,13909],{"type":36,"tag":121,"props":13849,"children":13850},{"style":128},[13851],{"type":41,"value":131},{"type":36,"tag":121,"props":13853,"children":13854},{"style":145},[13855],{"type":41,"value":421},{"type":36,"tag":121,"props":13857,"children":13858},{"style":134},[13859],{"type":41,"value":13860}," useEffect",{"type":36,"tag":121,"props":13862,"children":13863},{"style":145},[13864],{"type":41,"value":277},{"type":36,"tag":121,"props":13866,"children":13867},{"style":134},[13868],{"type":41,"value":13869}," useRef",{"type":36,"tag":121,"props":13871,"children":13872},{"style":145},[13873],{"type":41,"value":277},{"type":36,"tag":121,"props":13875,"children":13876},{"style":134},[13877],{"type":41,"value":13878}," useState",{"type":36,"tag":121,"props":13880,"children":13881},{"style":145},[13882],{"type":41,"value":277},{"type":36,"tag":121,"props":13884,"children":13885},{"style":134},[13886],{"type":41,"value":13887}," useCallback",{"type":36,"tag":121,"props":13889,"children":13890},{"style":145},[13891],{"type":41,"value":521},{"type":36,"tag":121,"props":13893,"children":13894},{"style":128},[13895],{"type":41,"value":2435},{"type":36,"tag":121,"props":13897,"children":13898},{"style":145},[13899],{"type":41,"value":148},{"type":36,"tag":121,"props":13901,"children":13902},{"style":151},[13903],{"type":41,"value":13904},"react",{"type":36,"tag":121,"props":13906,"children":13907},{"style":145},[13908],{"type":41,"value":159},{"type":36,"tag":121,"props":13910,"children":13911},{"style":145},[13912],{"type":41,"value":164},{"type":36,"tag":121,"props":13914,"children":13915},{"class":123,"line":167},[13916,13920,13924,13928,13932,13936,13940],{"type":36,"tag":121,"props":13917,"children":13918},{"style":128},[13919],{"type":41,"value":131},{"type":36,"tag":121,"props":13921,"children":13922},{"style":134},[13923],{"type":41,"value":137},{"type":36,"tag":121,"props":13925,"children":13926},{"style":128},[13927],{"type":41,"value":142},{"type":36,"tag":121,"props":13929,"children":13930},{"style":145},[13931],{"type":41,"value":148},{"type":36,"tag":121,"props":13933,"children":13934},{"style":151},[13935],{"type":41,"value":154},{"type":36,"tag":121,"props":13937,"children":13938},{"style":145},[13939],{"type":41,"value":159},{"type":36,"tag":121,"props":13941,"children":13942},{"style":145},[13943],{"type":41,"value":164},{"type":36,"tag":121,"props":13945,"children":13946},{"class":123,"line":177},[13947],{"type":36,"tag":121,"props":13948,"children":13949},{"emptyLinePlaceholder":171},[13950],{"type":41,"value":174},{"type":36,"tag":121,"props":13952,"children":13953},{"class":123,"line":221},[13954,13959,13964,13968,13973,13978,13982,13986,13990],{"type":36,"tag":121,"props":13955,"children":13956},{"style":181},[13957],{"type":41,"value":13958},"type",{"type":36,"tag":121,"props":13960,"children":13961},{"style":269},[13962],{"type":41,"value":13963}," ZoomClient",{"type":36,"tag":121,"props":13965,"children":13966},{"style":145},[13967],{"type":41,"value":336},{"type":36,"tag":121,"props":13969,"children":13970},{"style":269},[13971],{"type":41,"value":13972}," ReturnType",{"type":36,"tag":121,"props":13974,"children":13975},{"style":145},[13976],{"type":41,"value":13977},"\u003Ctypeof",{"type":36,"tag":121,"props":13979,"children":13980},{"style":134},[13981],{"type":41,"value":199},{"type":36,"tag":121,"props":13983,"children":13984},{"style":145},[13985],{"type":41,"value":82},{"type":36,"tag":121,"props":13987,"children":13988},{"style":134},[13989],{"type":41,"value":209},{"type":36,"tag":121,"props":13991,"children":13992},{"style":145},[13993],{"type":41,"value":13994},">;\n",{"type":36,"tag":121,"props":13996,"children":13997},{"class":123,"line":229},[13998],{"type":36,"tag":121,"props":13999,"children":14000},{"emptyLinePlaceholder":171},[14001],{"type":41,"value":174},{"type":36,"tag":121,"props":14003,"children":14004},{"class":123,"line":320},[14005,14009,14014,14019,14023,14027,14031,14035,14039,14044,14049,14053],{"type":36,"tag":121,"props":14006,"children":14007},{"style":181},[14008],{"type":41,"value":10720},{"type":36,"tag":121,"props":14010,"children":14011},{"style":206},[14012],{"type":41,"value":14013}," ZoomMeeting",{"type":36,"tag":121,"props":14015,"children":14016},{"style":145},[14017],{"type":41,"value":14018},"({",{"type":36,"tag":121,"props":14020,"children":14021},{"style":258},[14022],{"type":41,"value":497},{"type":36,"tag":121,"props":14024,"children":14025},{"style":145},[14026],{"type":41,"value":277},{"type":36,"tag":121,"props":14028,"children":14029},{"style":258},[14030],{"type":41,"value":299},{"type":36,"tag":121,"props":14032,"children":14033},{"style":145},[14034],{"type":41,"value":277},{"type":36,"tag":121,"props":14036,"children":14037},{"style":258},[14038],{"type":41,"value":282},{"type":36,"tag":121,"props":14040,"children":14041},{"style":145},[14042],{"type":41,"value":14043}," }:",{"type":36,"tag":121,"props":14045,"children":14046},{"style":269},[14047],{"type":41,"value":14048}," Props",{"type":36,"tag":121,"props":14050,"children":14051},{"style":145},[14052],{"type":41,"value":312},{"type":36,"tag":121,"props":14054,"children":14055},{"style":145},[14056],{"type":41,"value":317},{"type":36,"tag":121,"props":14058,"children":14059},{"class":123,"line":375},[14060,14064,14069,14073,14077,14081,14086,14090,14095,14100,14104,14109,14113],{"type":36,"tag":121,"props":14061,"children":14062},{"style":181},[14063],{"type":41,"value":326},{"type":36,"tag":121,"props":14065,"children":14066},{"style":134},[14067],{"type":41,"value":14068}," clientRef",{"type":36,"tag":121,"props":14070,"children":14071},{"style":145},[14072],{"type":41,"value":336},{"type":36,"tag":121,"props":14074,"children":14075},{"style":206},[14076],{"type":41,"value":13869},{"type":36,"tag":121,"props":14078,"children":14079},{"style":145},[14080],{"type":41,"value":2030},{"type":36,"tag":121,"props":14082,"children":14083},{"style":269},[14084],{"type":41,"value":14085},"ZoomClient",{"type":36,"tag":121,"props":14087,"children":14088},{"style":145},[14089],{"type":41,"value":4831},{"type":36,"tag":121,"props":14091,"children":14092},{"style":269},[14093],{"type":41,"value":14094}," null",{"type":36,"tag":121,"props":14096,"children":14097},{"style":145},[14098],{"type":41,"value":14099},">",{"type":36,"tag":121,"props":14101,"children":14102},{"style":349},[14103],{"type":41,"value":255},{"type":36,"tag":121,"props":14105,"children":14106},{"style":145},[14107],{"type":41,"value":14108},"null",{"type":36,"tag":121,"props":14110,"children":14111},{"style":349},[14112],{"type":41,"value":312},{"type":36,"tag":121,"props":14114,"children":14115},{"style":145},[14116],{"type":41,"value":164},{"type":36,"tag":121,"props":14118,"children":14119},{"class":123,"line":406},[14120,14124,14129,14133,14137,14141,14146,14150,14154,14158,14162],{"type":36,"tag":121,"props":14121,"children":14122},{"style":181},[14123],{"type":41,"value":326},{"type":36,"tag":121,"props":14125,"children":14126},{"style":134},[14127],{"type":41,"value":14128}," containerRef",{"type":36,"tag":121,"props":14130,"children":14131},{"style":145},[14132],{"type":41,"value":336},{"type":36,"tag":121,"props":14134,"children":14135},{"style":206},[14136],{"type":41,"value":13869},{"type":36,"tag":121,"props":14138,"children":14139},{"style":145},[14140],{"type":41,"value":2030},{"type":36,"tag":121,"props":14142,"children":14143},{"style":269},[14144],{"type":41,"value":14145},"HTMLDivElement",{"type":36,"tag":121,"props":14147,"children":14148},{"style":145},[14149],{"type":41,"value":14099},{"type":36,"tag":121,"props":14151,"children":14152},{"style":349},[14153],{"type":41,"value":255},{"type":36,"tag":121,"props":14155,"children":14156},{"style":145},[14157],{"type":41,"value":14108},{"type":36,"tag":121,"props":14159,"children":14160},{"style":349},[14161],{"type":41,"value":312},{"type":36,"tag":121,"props":14163,"children":14164},{"style":145},[14165],{"type":41,"value":164},{"type":36,"tag":121,"props":14167,"children":14168},{"class":123,"line":459},[14169,14173,14177,14182,14186,14191,14195,14199,14203,14207,14212,14216],{"type":36,"tag":121,"props":14170,"children":14171},{"style":181},[14172],{"type":41,"value":326},{"type":36,"tag":121,"props":14174,"children":14175},{"style":145},[14176],{"type":41,"value":8142},{"type":36,"tag":121,"props":14178,"children":14179},{"style":134},[14180],{"type":41,"value":14181},"isJoining",{"type":36,"tag":121,"props":14183,"children":14184},{"style":145},[14185],{"type":41,"value":277},{"type":36,"tag":121,"props":14187,"children":14188},{"style":134},[14189],{"type":41,"value":14190}," setIsJoining",{"type":36,"tag":121,"props":14192,"children":14193},{"style":145},[14194],{"type":41,"value":8869},{"type":36,"tag":121,"props":14196,"children":14197},{"style":145},[14198],{"type":41,"value":336},{"type":36,"tag":121,"props":14200,"children":14201},{"style":206},[14202],{"type":41,"value":13878},{"type":36,"tag":121,"props":14204,"children":14205},{"style":349},[14206],{"type":41,"value":255},{"type":36,"tag":121,"props":14208,"children":14209},{"style":858},[14210],{"type":41,"value":14211},"false",{"type":36,"tag":121,"props":14213,"children":14214},{"style":349},[14215],{"type":41,"value":312},{"type":36,"tag":121,"props":14217,"children":14218},{"style":145},[14219],{"type":41,"value":164},{"type":36,"tag":121,"props":14221,"children":14222},{"class":123,"line":532},[14223,14227,14231,14235,14239,14244,14248,14252,14256,14260,14265,14269,14273,14277,14281,14285,14289],{"type":36,"tag":121,"props":14224,"children":14225},{"style":181},[14226],{"type":41,"value":326},{"type":36,"tag":121,"props":14228,"children":14229},{"style":145},[14230],{"type":41,"value":8142},{"type":36,"tag":121,"props":14232,"children":14233},{"style":134},[14234],{"type":41,"value":3390},{"type":36,"tag":121,"props":14236,"children":14237},{"style":145},[14238],{"type":41,"value":277},{"type":36,"tag":121,"props":14240,"children":14241},{"style":134},[14242],{"type":41,"value":14243}," setError",{"type":36,"tag":121,"props":14245,"children":14246},{"style":145},[14247],{"type":41,"value":8869},{"type":36,"tag":121,"props":14249,"children":14250},{"style":145},[14251],{"type":41,"value":336},{"type":36,"tag":121,"props":14253,"children":14254},{"style":206},[14255],{"type":41,"value":13878},{"type":36,"tag":121,"props":14257,"children":14258},{"style":145},[14259],{"type":41,"value":2030},{"type":36,"tag":121,"props":14261,"children":14262},{"style":269},[14263],{"type":41,"value":14264},"string",{"type":36,"tag":121,"props":14266,"children":14267},{"style":145},[14268],{"type":41,"value":4831},{"type":36,"tag":121,"props":14270,"children":14271},{"style":269},[14272],{"type":41,"value":14094},{"type":36,"tag":121,"props":14274,"children":14275},{"style":145},[14276],{"type":41,"value":14099},{"type":36,"tag":121,"props":14278,"children":14279},{"style":349},[14280],{"type":41,"value":255},{"type":36,"tag":121,"props":14282,"children":14283},{"style":145},[14284],{"type":41,"value":14108},{"type":36,"tag":121,"props":14286,"children":14287},{"style":349},[14288],{"type":41,"value":312},{"type":36,"tag":121,"props":14290,"children":14291},{"style":145},[14292],{"type":41,"value":164},{"type":36,"tag":121,"props":14294,"children":14295},{"class":123,"line":549},[14296],{"type":36,"tag":121,"props":14297,"children":14298},{"emptyLinePlaceholder":171},[14299],{"type":41,"value":174},{"type":36,"tag":121,"props":14301,"children":14302},{"class":123,"line":557},[14303],{"type":36,"tag":121,"props":14304,"children":14305},{"style":2019},[14306],{"type":41,"value":14307},"  \u002F\u002F Create client once\n",{"type":36,"tag":121,"props":14309,"children":14310},{"class":123,"line":655},[14311,14316,14320,14324,14328],{"type":36,"tag":121,"props":14312,"children":14313},{"style":206},[14314],{"type":41,"value":14315},"  useEffect",{"type":36,"tag":121,"props":14317,"children":14318},{"style":349},[14319],{"type":41,"value":255},{"type":36,"tag":121,"props":14321,"children":14322},{"style":145},[14323],{"type":41,"value":214},{"type":36,"tag":121,"props":14325,"children":14326},{"style":181},[14327],{"type":41,"value":2691},{"type":36,"tag":121,"props":14329,"children":14330},{"style":145},[14331],{"type":41,"value":317},{"type":36,"tag":121,"props":14333,"children":14334},{"class":123,"line":663},[14335,14340,14344,14348,14353,14357,14362,14366],{"type":36,"tag":121,"props":14336,"children":14337},{"style":128},[14338],{"type":41,"value":14339},"    if",{"type":36,"tag":121,"props":14341,"children":14342},{"style":349},[14343],{"type":41,"value":568},{"type":36,"tag":121,"props":14345,"children":14346},{"style":145},[14347],{"type":41,"value":573},{"type":36,"tag":121,"props":14349,"children":14350},{"style":134},[14351],{"type":41,"value":14352},"clientRef",{"type":36,"tag":121,"props":14354,"children":14355},{"style":145},[14356],{"type":41,"value":82},{"type":36,"tag":121,"props":14358,"children":14359},{"style":134},[14360],{"type":41,"value":14361},"current",{"type":36,"tag":121,"props":14363,"children":14364},{"style":349},[14365],{"type":41,"value":592},{"type":36,"tag":121,"props":14367,"children":14368},{"style":145},[14369],{"type":41,"value":759},{"type":36,"tag":121,"props":14371,"children":14372},{"class":123,"line":722},[14373,14378,14382,14386,14390,14394,14398,14402,14406],{"type":36,"tag":121,"props":14374,"children":14375},{"style":134},[14376],{"type":41,"value":14377},"      clientRef",{"type":36,"tag":121,"props":14379,"children":14380},{"style":145},[14381],{"type":41,"value":82},{"type":36,"tag":121,"props":14383,"children":14384},{"style":134},[14385],{"type":41,"value":14361},{"type":36,"tag":121,"props":14387,"children":14388},{"style":145},[14389],{"type":41,"value":336},{"type":36,"tag":121,"props":14391,"children":14392},{"style":134},[14393],{"type":41,"value":199},{"type":36,"tag":121,"props":14395,"children":14396},{"style":145},[14397],{"type":41,"value":82},{"type":36,"tag":121,"props":14399,"children":14400},{"style":206},[14401],{"type":41,"value":209},{"type":36,"tag":121,"props":14403,"children":14404},{"style":349},[14405],{"type":41,"value":214},{"type":36,"tag":121,"props":14407,"children":14408},{"style":145},[14409],{"type":41,"value":164},{"type":36,"tag":121,"props":14411,"children":14412},{"class":123,"line":730},[14413],{"type":36,"tag":121,"props":14414,"children":14415},{"style":145},[14416],{"type":41,"value":3550},{"type":36,"tag":121,"props":14418,"children":14419},{"class":123,"line":762},[14420,14425,14430],{"type":36,"tag":121,"props":14421,"children":14422},{"style":145},[14423],{"type":41,"value":14424},"  },",{"type":36,"tag":121,"props":14426,"children":14427},{"style":349},[14428],{"type":41,"value":14429}," [])",{"type":36,"tag":121,"props":14431,"children":14432},{"style":145},[14433],{"type":41,"value":164},{"type":36,"tag":121,"props":14435,"children":14436},{"class":123,"line":815},[14437],{"type":36,"tag":121,"props":14438,"children":14439},{"emptyLinePlaceholder":171},[14440],{"type":41,"value":174},{"type":36,"tag":121,"props":14442,"children":14443},{"class":123,"line":845},[14444,14448,14453,14457,14461,14465,14469,14473,14477],{"type":36,"tag":121,"props":14445,"children":14446},{"style":181},[14447],{"type":41,"value":326},{"type":36,"tag":121,"props":14449,"children":14450},{"style":134},[14451],{"type":41,"value":14452}," joinMeeting",{"type":36,"tag":121,"props":14454,"children":14455},{"style":145},[14456],{"type":41,"value":336},{"type":36,"tag":121,"props":14458,"children":14459},{"style":206},[14460],{"type":41,"value":13887},{"type":36,"tag":121,"props":14462,"children":14463},{"style":349},[14464],{"type":41,"value":255},{"type":36,"tag":121,"props":14466,"children":14467},{"style":181},[14468],{"type":41,"value":3692},{"type":36,"tag":121,"props":14470,"children":14471},{"style":145},[14472],{"type":41,"value":2902},{"type":36,"tag":121,"props":14474,"children":14475},{"style":181},[14476],{"type":41,"value":2691},{"type":36,"tag":121,"props":14478,"children":14479},{"style":145},[14480],{"type":41,"value":317},{"type":36,"tag":121,"props":14482,"children":14483},{"class":123,"line":868},[14484,14488,14492,14496,14500,14504,14508,14513,14517,14522,14526,14530,14534,14539],{"type":36,"tag":121,"props":14485,"children":14486},{"style":128},[14487],{"type":41,"value":14339},{"type":36,"tag":121,"props":14489,"children":14490},{"style":349},[14491],{"type":41,"value":568},{"type":36,"tag":121,"props":14493,"children":14494},{"style":145},[14495],{"type":41,"value":573},{"type":36,"tag":121,"props":14497,"children":14498},{"style":134},[14499],{"type":41,"value":14352},{"type":36,"tag":121,"props":14501,"children":14502},{"style":145},[14503],{"type":41,"value":82},{"type":36,"tag":121,"props":14505,"children":14506},{"style":134},[14507],{"type":41,"value":14361},{"type":36,"tag":121,"props":14509,"children":14510},{"style":145},[14511],{"type":41,"value":14512}," ||",{"type":36,"tag":121,"props":14514,"children":14515},{"style":145},[14516],{"type":41,"value":2780},{"type":36,"tag":121,"props":14518,"children":14519},{"style":134},[14520],{"type":41,"value":14521},"containerRef",{"type":36,"tag":121,"props":14523,"children":14524},{"style":145},[14525],{"type":41,"value":82},{"type":36,"tag":121,"props":14527,"children":14528},{"style":134},[14529],{"type":41,"value":14361},{"type":36,"tag":121,"props":14531,"children":14532},{"style":349},[14533],{"type":41,"value":592},{"type":36,"tag":121,"props":14535,"children":14536},{"style":128},[14537],{"type":41,"value":14538},"return",{"type":36,"tag":121,"props":14540,"children":14541},{"style":145},[14542],{"type":41,"value":164},{"type":36,"tag":121,"props":14544,"children":14545},{"class":123,"line":889},[14546],{"type":36,"tag":121,"props":14547,"children":14548},{"emptyLinePlaceholder":171},[14549],{"type":41,"value":174},{"type":36,"tag":121,"props":14551,"children":14552},{"class":123,"line":906},[14553,14558,14562,14566,14570],{"type":36,"tag":121,"props":14554,"children":14555},{"style":206},[14556],{"type":41,"value":14557},"    setIsJoining",{"type":36,"tag":121,"props":14559,"children":14560},{"style":349},[14561],{"type":41,"value":255},{"type":36,"tag":121,"props":14563,"children":14564},{"style":858},[14565],{"type":41,"value":10442},{"type":36,"tag":121,"props":14567,"children":14568},{"style":349},[14569],{"type":41,"value":312},{"type":36,"tag":121,"props":14571,"children":14572},{"style":145},[14573],{"type":41,"value":164},{"type":36,"tag":121,"props":14575,"children":14576},{"class":123,"line":975},[14577,14582,14586,14590,14594],{"type":36,"tag":121,"props":14578,"children":14579},{"style":206},[14580],{"type":41,"value":14581},"    setError",{"type":36,"tag":121,"props":14583,"children":14584},{"style":349},[14585],{"type":41,"value":255},{"type":36,"tag":121,"props":14587,"children":14588},{"style":145},[14589],{"type":41,"value":14108},{"type":36,"tag":121,"props":14591,"children":14592},{"style":349},[14593],{"type":41,"value":312},{"type":36,"tag":121,"props":14595,"children":14596},{"style":145},[14597],{"type":41,"value":164},{"type":36,"tag":121,"props":14599,"children":14600},{"class":123,"line":984},[14601],{"type":36,"tag":121,"props":14602,"children":14603},{"emptyLinePlaceholder":171},[14604],{"type":41,"value":174},{"type":36,"tag":121,"props":14606,"children":14607},{"class":123,"line":1000},[14608,14613],{"type":36,"tag":121,"props":14609,"children":14610},{"style":128},[14611],{"type":41,"value":14612},"    try",{"type":36,"tag":121,"props":14614,"children":14615},{"style":145},[14616],{"type":41,"value":317},{"type":36,"tag":121,"props":14618,"children":14619},{"class":123,"line":1008},[14620],{"type":36,"tag":121,"props":14621,"children":14622},{"style":2019},[14623],{"type":41,"value":14624},"      \u002F\u002F Get signature from your backend\n",{"type":36,"tag":121,"props":14626,"children":14627},{"class":123,"line":1037},[14628,14633,14637,14641,14645,14649,14653,14657,14661,14665,14669],{"type":36,"tag":121,"props":14629,"children":14630},{"style":181},[14631],{"type":41,"value":14632},"      const",{"type":36,"tag":121,"props":14634,"children":14635},{"style":134},[14636],{"type":41,"value":12696},{"type":36,"tag":121,"props":14638,"children":14639},{"style":145},[14640],{"type":41,"value":336},{"type":36,"tag":121,"props":14642,"children":14643},{"style":128},[14644],{"type":41,"value":341},{"type":36,"tag":121,"props":14646,"children":14647},{"style":206},[14648],{"type":41,"value":346},{"type":36,"tag":121,"props":14650,"children":14651},{"style":349},[14652],{"type":41,"value":255},{"type":36,"tag":121,"props":14654,"children":14655},{"style":145},[14656],{"type":41,"value":159},{"type":36,"tag":121,"props":14658,"children":14659},{"style":151},[14660],{"type":41,"value":360},{"type":36,"tag":121,"props":14662,"children":14663},{"style":145},[14664],{"type":41,"value":159},{"type":36,"tag":121,"props":14666,"children":14667},{"style":145},[14668],{"type":41,"value":277},{"type":36,"tag":121,"props":14670,"children":14671},{"style":145},[14672],{"type":41,"value":317},{"type":36,"tag":121,"props":14674,"children":14675},{"class":123,"line":1050},[14676,14681,14685,14689,14693,14697],{"type":36,"tag":121,"props":14677,"children":14678},{"style":349},[14679],{"type":41,"value":14680},"        method",{"type":36,"tag":121,"props":14682,"children":14683},{"style":145},[14684],{"type":41,"value":266},{"type":36,"tag":121,"props":14686,"children":14687},{"style":145},[14688],{"type":41,"value":148},{"type":36,"tag":121,"props":14690,"children":14691},{"style":151},[14692],{"type":41,"value":394},{"type":36,"tag":121,"props":14694,"children":14695},{"style":145},[14696],{"type":41,"value":159},{"type":36,"tag":121,"props":14698,"children":14699},{"style":145},[14700],{"type":41,"value":403},{"type":36,"tag":121,"props":14702,"children":14703},{"class":123,"line":1063},[14704,14709,14713,14717,14721,14725,14729,14733,14737,14741,14745],{"type":36,"tag":121,"props":14705,"children":14706},{"style":349},[14707],{"type":41,"value":14708},"        headers",{"type":36,"tag":121,"props":14710,"children":14711},{"style":145},[14712],{"type":41,"value":266},{"type":36,"tag":121,"props":14714,"children":14715},{"style":145},[14716],{"type":41,"value":421},{"type":36,"tag":121,"props":14718,"children":14719},{"style":145},[14720],{"type":41,"value":148},{"type":36,"tag":121,"props":14722,"children":14723},{"style":349},[14724],{"type":41,"value":430},{"type":36,"tag":121,"props":14726,"children":14727},{"style":145},[14728],{"type":41,"value":159},{"type":36,"tag":121,"props":14730,"children":14731},{"style":145},[14732],{"type":41,"value":266},{"type":36,"tag":121,"props":14734,"children":14735},{"style":145},[14736],{"type":41,"value":148},{"type":36,"tag":121,"props":14738,"children":14739},{"style":151},[14740],{"type":41,"value":447},{"type":36,"tag":121,"props":14742,"children":14743},{"style":145},[14744],{"type":41,"value":159},{"type":36,"tag":121,"props":14746,"children":14747},{"style":145},[14748],{"type":41,"value":456},{"type":36,"tag":121,"props":14750,"children":14751},{"class":123,"line":1076},[14752,14757,14761,14765,14769,14773,14777,14781,14785,14789,14793,14797,14801,14805,14809],{"type":36,"tag":121,"props":14753,"children":14754},{"style":349},[14755],{"type":41,"value":14756},"        body",{"type":36,"tag":121,"props":14758,"children":14759},{"style":145},[14760],{"type":41,"value":266},{"type":36,"tag":121,"props":14762,"children":14763},{"style":134},[14764],{"type":41,"value":474},{"type":36,"tag":121,"props":14766,"children":14767},{"style":145},[14768],{"type":41,"value":82},{"type":36,"tag":121,"props":14770,"children":14771},{"style":206},[14772],{"type":41,"value":483},{"type":36,"tag":121,"props":14774,"children":14775},{"style":349},[14776],{"type":41,"value":255},{"type":36,"tag":121,"props":14778,"children":14779},{"style":145},[14780],{"type":41,"value":492},{"type":36,"tag":121,"props":14782,"children":14783},{"style":134},[14784],{"type":41,"value":497},{"type":36,"tag":121,"props":14786,"children":14787},{"style":145},[14788],{"type":41,"value":277},{"type":36,"tag":121,"props":14790,"children":14791},{"style":349},[14792],{"type":41,"value":506},{"type":36,"tag":121,"props":14794,"children":14795},{"style":145},[14796],{"type":41,"value":266},{"type":36,"tag":121,"props":14798,"children":14799},{"style":513},[14800],{"type":41,"value":516},{"type":36,"tag":121,"props":14802,"children":14803},{"style":145},[14804],{"type":41,"value":521},{"type":36,"tag":121,"props":14806,"children":14807},{"style":349},[14808],{"type":41,"value":312},{"type":36,"tag":121,"props":14810,"children":14811},{"style":145},[14812],{"type":41,"value":403},{"type":36,"tag":121,"props":14814,"children":14815},{"class":123,"line":1089},[14816,14820,14824],{"type":36,"tag":121,"props":14817,"children":14818},{"style":145},[14819],{"type":41,"value":3442},{"type":36,"tag":121,"props":14821,"children":14822},{"style":349},[14823],{"type":41,"value":312},{"type":36,"tag":121,"props":14825,"children":14826},{"style":145},[14827],{"type":41,"value":164},{"type":36,"tag":121,"props":14829,"children":14830},{"class":123,"line":1102},[14831,14835,14839,14843,14847,14851,14855,14859,14863,14867,14871,14875,14879],{"type":36,"tag":121,"props":14832,"children":14833},{"style":181},[14834],{"type":41,"value":14632},{"type":36,"tag":121,"props":14836,"children":14837},{"style":145},[14838],{"type":41,"value":421},{"type":36,"tag":121,"props":14840,"children":14841},{"style":134},[14842],{"type":41,"value":677},{"type":36,"tag":121,"props":14844,"children":14845},{"style":145},[14846],{"type":41,"value":277},{"type":36,"tag":121,"props":14848,"children":14849},{"style":134},[14850],{"type":41,"value":686},{"type":36,"tag":121,"props":14852,"children":14853},{"style":145},[14854],{"type":41,"value":521},{"type":36,"tag":121,"props":14856,"children":14857},{"style":145},[14858],{"type":41,"value":336},{"type":36,"tag":121,"props":14860,"children":14861},{"style":128},[14862],{"type":41,"value":341},{"type":36,"tag":121,"props":14864,"children":14865},{"style":134},[14866],{"type":41,"value":12696},{"type":36,"tag":121,"props":14868,"children":14869},{"style":145},[14870],{"type":41,"value":82},{"type":36,"tag":121,"props":14872,"children":14873},{"style":206},[14874],{"type":41,"value":711},{"type":36,"tag":121,"props":14876,"children":14877},{"style":349},[14878],{"type":41,"value":214},{"type":36,"tag":121,"props":14880,"children":14881},{"style":145},[14882],{"type":41,"value":164},{"type":36,"tag":121,"props":14884,"children":14885},{"class":123,"line":1118},[14886],{"type":36,"tag":121,"props":14887,"children":14888},{"emptyLinePlaceholder":171},[14889],{"type":41,"value":174},{"type":36,"tag":121,"props":14891,"children":14892},{"class":123,"line":3201},[14893,14898,14902,14906,14910,14914,14918,14922],{"type":36,"tag":121,"props":14894,"children":14895},{"style":128},[14896],{"type":41,"value":14897},"      await",{"type":36,"tag":121,"props":14899,"children":14900},{"style":134},[14901],{"type":41,"value":14068},{"type":36,"tag":121,"props":14903,"children":14904},{"style":145},[14905],{"type":41,"value":82},{"type":36,"tag":121,"props":14907,"children":14908},{"style":134},[14909],{"type":41,"value":14361},{"type":36,"tag":121,"props":14911,"children":14912},{"style":145},[14913],{"type":41,"value":82},{"type":36,"tag":121,"props":14915,"children":14916},{"style":206},[14917],{"type":41,"value":750},{"type":36,"tag":121,"props":14919,"children":14920},{"style":349},[14921],{"type":41,"value":255},{"type":36,"tag":121,"props":14923,"children":14924},{"style":145},[14925],{"type":41,"value":759},{"type":36,"tag":121,"props":14927,"children":14928},{"class":123,"line":3226},[14929,14934,14938,14942,14946,14950],{"type":36,"tag":121,"props":14930,"children":14931},{"style":349},[14932],{"type":41,"value":14933},"        zoomAppRoot",{"type":36,"tag":121,"props":14935,"children":14936},{"style":145},[14937],{"type":41,"value":266},{"type":36,"tag":121,"props":14939,"children":14940},{"style":134},[14941],{"type":41,"value":14128},{"type":36,"tag":121,"props":14943,"children":14944},{"style":145},[14945],{"type":41,"value":82},{"type":36,"tag":121,"props":14947,"children":14948},{"style":134},[14949],{"type":41,"value":14361},{"type":36,"tag":121,"props":14951,"children":14952},{"style":145},[14953],{"type":41,"value":403},{"type":36,"tag":121,"props":14955,"children":14956},{"class":123,"line":3316},[14957,14962,14966,14970,14974,14978],{"type":36,"tag":121,"props":14958,"children":14959},{"style":349},[14960],{"type":41,"value":14961},"        language",{"type":36,"tag":121,"props":14963,"children":14964},{"style":145},[14965],{"type":41,"value":266},{"type":36,"tag":121,"props":14967,"children":14968},{"style":145},[14969],{"type":41,"value":148},{"type":36,"tag":121,"props":14971,"children":14972},{"style":151},[14973],{"type":41,"value":834},{"type":36,"tag":121,"props":14975,"children":14976},{"style":145},[14977],{"type":41,"value":159},{"type":36,"tag":121,"props":14979,"children":14980},{"style":145},[14981],{"type":41,"value":403},{"type":36,"tag":121,"props":14983,"children":14984},{"class":123,"line":3333},[14985,14990,14994,14998],{"type":36,"tag":121,"props":14986,"children":14987},{"style":349},[14988],{"type":41,"value":14989},"        patchJsMedia",{"type":36,"tag":121,"props":14991,"children":14992},{"style":145},[14993],{"type":41,"value":266},{"type":36,"tag":121,"props":14995,"children":14996},{"style":858},[14997],{"type":41,"value":861},{"type":36,"tag":121,"props":14999,"children":15000},{"style":145},[15001],{"type":41,"value":403},{"type":36,"tag":121,"props":15003,"children":15004},{"class":123,"line":3342},[15005,15010,15014,15018],{"type":36,"tag":121,"props":15006,"children":15007},{"style":349},[15008],{"type":41,"value":15009},"        leaveOnPageUnload",{"type":36,"tag":121,"props":15011,"children":15012},{"style":145},[15013],{"type":41,"value":266},{"type":36,"tag":121,"props":15015,"children":15016},{"style":858},[15017],{"type":41,"value":861},{"type":36,"tag":121,"props":15019,"children":15020},{"style":145},[15021],{"type":41,"value":403},{"type":36,"tag":121,"props":15023,"children":15024},{"class":123,"line":3376},[15025,15029,15033],{"type":36,"tag":121,"props":15026,"children":15027},{"style":145},[15028],{"type":41,"value":3442},{"type":36,"tag":121,"props":15030,"children":15031},{"style":349},[15032],{"type":41,"value":312},{"type":36,"tag":121,"props":15034,"children":15035},{"style":145},[15036],{"type":41,"value":164},{"type":36,"tag":121,"props":15038,"children":15039},{"class":123,"line":3427},[15040],{"type":36,"tag":121,"props":15041,"children":15042},{"emptyLinePlaceholder":171},[15043],{"type":41,"value":174},{"type":36,"tag":121,"props":15045,"children":15046},{"class":123,"line":3436},[15047,15051,15055,15059,15063,15067,15071,15075],{"type":36,"tag":121,"props":15048,"children":15049},{"style":128},[15050],{"type":41,"value":14897},{"type":36,"tag":121,"props":15052,"children":15053},{"style":134},[15054],{"type":41,"value":14068},{"type":36,"tag":121,"props":15056,"children":15057},{"style":145},[15058],{"type":41,"value":82},{"type":36,"tag":121,"props":15060,"children":15061},{"style":134},[15062],{"type":41,"value":14361},{"type":36,"tag":121,"props":15064,"children":15065},{"style":145},[15066],{"type":41,"value":82},{"type":36,"tag":121,"props":15068,"children":15069},{"style":206},[15070],{"type":41,"value":1026},{"type":36,"tag":121,"props":15072,"children":15073},{"style":349},[15074],{"type":41,"value":255},{"type":36,"tag":121,"props":15076,"children":15077},{"style":145},[15078],{"type":41,"value":759},{"type":36,"tag":121,"props":15080,"children":15081},{"class":123,"line":3453},[15082,15086],{"type":36,"tag":121,"props":15083,"children":15084},{"style":134},[15085],{"type":41,"value":2957},{"type":36,"tag":121,"props":15087,"children":15088},{"style":145},[15089],{"type":41,"value":403},{"type":36,"tag":121,"props":15091,"children":15092},{"class":123,"line":3461},[15093,15098],{"type":36,"tag":121,"props":15094,"children":15095},{"style":134},[15096],{"type":41,"value":15097},"        sdkKey",{"type":36,"tag":121,"props":15099,"children":15100},{"style":145},[15101],{"type":41,"value":403},{"type":36,"tag":121,"props":15103,"children":15104},{"class":123,"line":3494},[15105,15109],{"type":36,"tag":121,"props":15106,"children":15107},{"style":134},[15108],{"type":41,"value":2982},{"type":36,"tag":121,"props":15110,"children":15111},{"style":145},[15112],{"type":41,"value":403},{"type":36,"tag":121,"props":15114,"children":15115},{"class":123,"line":3544},[15116,15121],{"type":36,"tag":121,"props":15117,"children":15118},{"style":134},[15119],{"type":41,"value":15120},"        password",{"type":36,"tag":121,"props":15122,"children":15123},{"style":145},[15124],{"type":41,"value":403},{"type":36,"tag":121,"props":15126,"children":15127},{"class":123,"line":3553},[15128,15132],{"type":36,"tag":121,"props":15129,"children":15130},{"style":134},[15131],{"type":41,"value":3011},{"type":36,"tag":121,"props":15133,"children":15134},{"style":145},[15135],{"type":41,"value":403},{"type":36,"tag":121,"props":15137,"children":15138},{"class":123,"line":3569},[15139,15143,15147],{"type":36,"tag":121,"props":15140,"children":15141},{"style":145},[15142],{"type":41,"value":3442},{"type":36,"tag":121,"props":15144,"children":15145},{"style":349},[15146],{"type":41,"value":312},{"type":36,"tag":121,"props":15148,"children":15149},{"style":145},[15150],{"type":41,"value":164},{"type":36,"tag":121,"props":15152,"children":15153},{"class":123,"line":6563},[15154,15158,15162,15166,15170,15174],{"type":36,"tag":121,"props":15155,"children":15156},{"style":145},[15157],{"type":41,"value":3916},{"type":36,"tag":121,"props":15159,"children":15160},{"style":128},[15161],{"type":41,"value":4176},{"type":36,"tag":121,"props":15163,"children":15164},{"style":349},[15165],{"type":41,"value":568},{"type":36,"tag":121,"props":15167,"children":15168},{"style":134},[15169],{"type":41,"value":3361},{"type":36,"tag":121,"props":15171,"children":15172},{"style":349},[15173],{"type":41,"value":592},{"type":36,"tag":121,"props":15175,"children":15176},{"style":145},[15177],{"type":41,"value":759},{"type":36,"tag":121,"props":15179,"children":15180},{"class":123,"line":6579},[15181,15186,15190,15194,15199,15203,15208,15212,15216,15221,15226,15230,15235,15239,15243],{"type":36,"tag":121,"props":15182,"children":15183},{"style":206},[15184],{"type":41,"value":15185},"      setError",{"type":36,"tag":121,"props":15187,"children":15188},{"style":349},[15189],{"type":41,"value":255},{"type":36,"tag":121,"props":15191,"children":15192},{"style":134},[15193],{"type":41,"value":3361},{"type":36,"tag":121,"props":15195,"children":15196},{"style":145},[15197],{"type":41,"value":15198}," instanceof",{"type":36,"tag":121,"props":15200,"children":15201},{"style":269},[15202],{"type":41,"value":607},{"type":36,"tag":121,"props":15204,"children":15205},{"style":145},[15206],{"type":41,"value":15207}," ?",{"type":36,"tag":121,"props":15209,"children":15210},{"style":134},[15211],{"type":41,"value":3416},{"type":36,"tag":121,"props":15213,"children":15214},{"style":145},[15215],{"type":41,"value":82},{"type":36,"tag":121,"props":15217,"children":15218},{"style":134},[15219],{"type":41,"value":15220},"message",{"type":36,"tag":121,"props":15222,"children":15223},{"style":145},[15224],{"type":41,"value":15225}," :",{"type":36,"tag":121,"props":15227,"children":15228},{"style":145},[15229],{"type":41,"value":148},{"type":36,"tag":121,"props":15231,"children":15232},{"style":151},[15233],{"type":41,"value":15234},"Failed to join",{"type":36,"tag":121,"props":15236,"children":15237},{"style":145},[15238],{"type":41,"value":159},{"type":36,"tag":121,"props":15240,"children":15241},{"style":349},[15242],{"type":41,"value":312},{"type":36,"tag":121,"props":15244,"children":15245},{"style":145},[15246],{"type":41,"value":164},{"type":36,"tag":121,"props":15248,"children":15249},{"class":123,"line":6587},[15250,15254,15259],{"type":36,"tag":121,"props":15251,"children":15252},{"style":145},[15253],{"type":41,"value":3916},{"type":36,"tag":121,"props":15255,"children":15256},{"style":128},[15257],{"type":41,"value":15258}," finally",{"type":36,"tag":121,"props":15260,"children":15261},{"style":145},[15262],{"type":41,"value":317},{"type":36,"tag":121,"props":15264,"children":15265},{"class":123,"line":6596},[15266,15271,15275,15279,15283],{"type":36,"tag":121,"props":15267,"children":15268},{"style":206},[15269],{"type":41,"value":15270},"      setIsJoining",{"type":36,"tag":121,"props":15272,"children":15273},{"style":349},[15274],{"type":41,"value":255},{"type":36,"tag":121,"props":15276,"children":15277},{"style":858},[15278],{"type":41,"value":14211},{"type":36,"tag":121,"props":15280,"children":15281},{"style":349},[15282],{"type":41,"value":312},{"type":36,"tag":121,"props":15284,"children":15285},{"style":145},[15286],{"type":41,"value":164},{"type":36,"tag":121,"props":15288,"children":15289},{"class":123,"line":6653},[15290],{"type":36,"tag":121,"props":15291,"children":15292},{"style":145},[15293],{"type":41,"value":3550},{"type":36,"tag":121,"props":15295,"children":15296},{"class":123,"line":6702},[15297,15301,15305,15309,15313,15317,15321,15325,15330],{"type":36,"tag":121,"props":15298,"children":15299},{"style":145},[15300],{"type":41,"value":14424},{"type":36,"tag":121,"props":15302,"children":15303},{"style":349},[15304],{"type":41,"value":8142},{"type":36,"tag":121,"props":15306,"children":15307},{"style":134},[15308],{"type":41,"value":261},{"type":36,"tag":121,"props":15310,"children":15311},{"style":145},[15312],{"type":41,"value":277},{"type":36,"tag":121,"props":15314,"children":15315},{"style":134},[15316],{"type":41,"value":299},{"type":36,"tag":121,"props":15318,"children":15319},{"style":145},[15320],{"type":41,"value":277},{"type":36,"tag":121,"props":15322,"children":15323},{"style":134},[15324],{"type":41,"value":282},{"type":36,"tag":121,"props":15326,"children":15327},{"style":349},[15328],{"type":41,"value":15329},"])",{"type":36,"tag":121,"props":15331,"children":15332},{"style":145},[15333],{"type":41,"value":164},{"type":36,"tag":121,"props":15335,"children":15336},{"class":123,"line":6711},[15337],{"type":36,"tag":121,"props":15338,"children":15339},{"emptyLinePlaceholder":171},[15340],{"type":41,"value":174},{"type":36,"tag":121,"props":15342,"children":15343},{"class":123,"line":6727},[15344,15348],{"type":36,"tag":121,"props":15345,"children":15346},{"style":128},[15347],{"type":41,"value":13573},{"type":36,"tag":121,"props":15349,"children":15350},{"style":349},[15351],{"type":41,"value":13578},{"type":36,"tag":121,"props":15353,"children":15354},{"class":123,"line":6735},[15355,15359,15364],{"type":36,"tag":121,"props":15356,"children":15357},{"style":145},[15358],{"type":41,"value":13586},{"type":36,"tag":121,"props":15360,"children":15361},{"style":349},[15362],{"type":41,"value":15363},"div",{"type":36,"tag":121,"props":15365,"children":15366},{"style":145},[15367],{"type":41,"value":2072},{"type":36,"tag":121,"props":15369,"children":15370},{"class":123,"line":6744},[15371,15376,15380,15385,15389,15393,15398,15402,15407,15411,15415,15419,15424,15428,15432,15437,15441,15445,15450,15454],{"type":36,"tag":121,"props":15372,"children":15373},{"style":145},[15374],{"type":41,"value":15375},"      \u003C",{"type":36,"tag":121,"props":15377,"children":15378},{"style":349},[15379],{"type":41,"value":15363},{"type":36,"tag":121,"props":15381,"children":15382},{"style":181},[15383],{"type":41,"value":15384}," ref",{"type":36,"tag":121,"props":15386,"children":15387},{"style":145},[15388],{"type":41,"value":13601},{"type":36,"tag":121,"props":15390,"children":15391},{"style":134},[15392],{"type":41,"value":14521},{"type":36,"tag":121,"props":15394,"children":15395},{"style":145},[15396],{"type":41,"value":15397},"} ",{"type":36,"tag":121,"props":15399,"children":15400},{"style":181},[15401],{"type":41,"value":13063},{"type":36,"tag":121,"props":15403,"children":15404},{"style":145},[15405],{"type":41,"value":15406},"={{",{"type":36,"tag":121,"props":15408,"children":15409},{"style":349},[15410],{"type":41,"value":8674},{"type":36,"tag":121,"props":15412,"children":15413},{"style":145},[15414],{"type":41,"value":266},{"type":36,"tag":121,"props":15416,"children":15417},{"style":145},[15418],{"type":41,"value":148},{"type":36,"tag":121,"props":15420,"children":15421},{"style":151},[15422],{"type":41,"value":15423},"100%",{"type":36,"tag":121,"props":15425,"children":15426},{"style":145},[15427],{"type":41,"value":159},{"type":36,"tag":121,"props":15429,"children":15430},{"style":145},[15431],{"type":41,"value":277},{"type":36,"tag":121,"props":15433,"children":15434},{"style":349},[15435],{"type":41,"value":15436}," height",{"type":36,"tag":121,"props":15438,"children":15439},{"style":145},[15440],{"type":41,"value":266},{"type":36,"tag":121,"props":15442,"children":15443},{"style":145},[15444],{"type":41,"value":148},{"type":36,"tag":121,"props":15446,"children":15447},{"style":151},[15448],{"type":41,"value":15449},"500px",{"type":36,"tag":121,"props":15451,"children":15452},{"style":145},[15453],{"type":41,"value":159},{"type":36,"tag":121,"props":15455,"children":15456},{"style":145},[15457],{"type":41,"value":15458}," }} \u002F>\n",{"type":36,"tag":121,"props":15460,"children":15461},{"class":123,"line":6801},[15462,15466,15470,15474,15478,15483,15487,15492,15496,15500],{"type":36,"tag":121,"props":15463,"children":15464},{"style":145},[15465],{"type":41,"value":15375},{"type":36,"tag":121,"props":15467,"children":15468},{"style":349},[15469],{"type":41,"value":13591},{"type":36,"tag":121,"props":15471,"children":15472},{"style":181},[15473],{"type":41,"value":13596},{"type":36,"tag":121,"props":15475,"children":15476},{"style":145},[15477],{"type":41,"value":13601},{"type":36,"tag":121,"props":15479,"children":15480},{"style":134},[15481],{"type":41,"value":15482},"joinMeeting",{"type":36,"tag":121,"props":15484,"children":15485},{"style":145},[15486],{"type":41,"value":15397},{"type":36,"tag":121,"props":15488,"children":15489},{"style":181},[15490],{"type":41,"value":15491},"disabled",{"type":36,"tag":121,"props":15493,"children":15494},{"style":145},[15495],{"type":41,"value":13601},{"type":36,"tag":121,"props":15497,"children":15498},{"style":134},[15499],{"type":41,"value":14181},{"type":36,"tag":121,"props":15501,"children":15502},{"style":145},[15503],{"type":41,"value":15504},"}>\n",{"type":36,"tag":121,"props":15506,"children":15507},{"class":123,"line":6850},[15508,15513,15518,15523,15527,15532,15536,15540,15544,15548,15552],{"type":36,"tag":121,"props":15509,"children":15510},{"style":145},[15511],{"type":41,"value":15512},"        {",{"type":36,"tag":121,"props":15514,"children":15515},{"style":134},[15516],{"type":41,"value":15517},"isJoining ",{"type":36,"tag":121,"props":15519,"children":15520},{"style":145},[15521],{"type":41,"value":15522},"?",{"type":36,"tag":121,"props":15524,"children":15525},{"style":145},[15526],{"type":41,"value":148},{"type":36,"tag":121,"props":15528,"children":15529},{"style":151},[15530],{"type":41,"value":15531},"Joining...",{"type":36,"tag":121,"props":15533,"children":15534},{"style":145},[15535],{"type":41,"value":159},{"type":36,"tag":121,"props":15537,"children":15538},{"style":145},[15539],{"type":41,"value":15225},{"type":36,"tag":121,"props":15541,"children":15542},{"style":145},[15543],{"type":41,"value":148},{"type":36,"tag":121,"props":15545,"children":15546},{"style":151},[15547],{"type":41,"value":13616},{"type":36,"tag":121,"props":15549,"children":15550},{"style":145},[15551],{"type":41,"value":159},{"type":36,"tag":121,"props":15553,"children":15554},{"style":145},[15555],{"type":41,"value":1124},{"type":36,"tag":121,"props":15557,"children":15558},{"class":123,"line":6866},[15559,15564,15568],{"type":36,"tag":121,"props":15560,"children":15561},{"style":145},[15562],{"type":41,"value":15563},"      \u003C\u002F",{"type":36,"tag":121,"props":15565,"children":15566},{"style":349},[15567],{"type":41,"value":13591},{"type":36,"tag":121,"props":15569,"children":15570},{"style":145},[15571],{"type":41,"value":2072},{"type":36,"tag":121,"props":15573,"children":15574},{"class":123,"line":6874},[15575,15580,15585,15590,15595,15599,15604,15608,15612,15616,15620,15625,15629,15634,15638],{"type":36,"tag":121,"props":15576,"children":15577},{"style":145},[15578],{"type":41,"value":15579},"      {",{"type":36,"tag":121,"props":15581,"children":15582},{"style":134},[15583],{"type":41,"value":15584},"error ",{"type":36,"tag":121,"props":15586,"children":15587},{"style":145},[15588],{"type":41,"value":15589},"&&",{"type":36,"tag":121,"props":15591,"children":15592},{"style":145},[15593],{"type":41,"value":15594}," \u003C",{"type":36,"tag":121,"props":15596,"children":15597},{"style":349},[15598],{"type":41,"value":15363},{"type":36,"tag":121,"props":15600,"children":15601},{"style":181},[15602],{"type":41,"value":15603}," className",{"type":36,"tag":121,"props":15605,"children":15606},{"style":145},[15607],{"type":41,"value":194},{"type":36,"tag":121,"props":15609,"children":15610},{"style":145},[15611],{"type":41,"value":2049},{"type":36,"tag":121,"props":15613,"children":15614},{"style":151},[15615],{"type":41,"value":3390},{"type":36,"tag":121,"props":15617,"children":15618},{"style":145},[15619],{"type":41,"value":2049},{"type":36,"tag":121,"props":15621,"children":15622},{"style":145},[15623],{"type":41,"value":15624},">{",{"type":36,"tag":121,"props":15626,"children":15627},{"style":134},[15628],{"type":41,"value":3390},{"type":36,"tag":121,"props":15630,"children":15631},{"style":145},[15632],{"type":41,"value":15633},"}\u003C\u002F",{"type":36,"tag":121,"props":15635,"children":15636},{"style":349},[15637],{"type":41,"value":15363},{"type":36,"tag":121,"props":15639,"children":15640},{"style":145},[15641],{"type":41,"value":15642},">}\n",{"type":36,"tag":121,"props":15644,"children":15645},{"class":123,"line":6883},[15646,15651,15655],{"type":36,"tag":121,"props":15647,"children":15648},{"style":145},[15649],{"type":41,"value":15650},"    \u003C\u002F",{"type":36,"tag":121,"props":15652,"children":15653},{"style":349},[15654],{"type":41,"value":15363},{"type":36,"tag":121,"props":15656,"children":15657},{"style":145},[15658],{"type":41,"value":2072},{"type":36,"tag":121,"props":15660,"children":15661},{"class":123,"line":6940},[15662,15666],{"type":36,"tag":121,"props":15663,"children":15664},{"style":349},[15665],{"type":41,"value":13637},{"type":36,"tag":121,"props":15667,"children":15668},{"style":145},[15669],{"type":41,"value":164},{"type":36,"tag":121,"props":15671,"children":15672},{"class":123,"line":6989},[15673],{"type":36,"tag":121,"props":15674,"children":15675},{"style":145},[15676],{"type":41,"value":1124},{"type":36,"tag":1893,"props":15678,"children":15680},{"id":15679},"environment-variables-vite",[15681],{"type":41,"value":15682},"Environment Variables (Vite)",{"type":36,"tag":94,"props":15684,"children":15686},{"className":1970,"code":15685,"language":1972,"meta":99,"style":99},"# .env.local\nVITE_AUTH_ENDPOINT=http:\u002F\u002FYOUR_AUTH_SERVER_HOST:4000\nVITE_SDK_KEY=your_sdk_key\n",[15687],{"type":36,"tag":102,"props":15688,"children":15689},{"__ignoreMap":99},[15690,15698,15714],{"type":36,"tag":121,"props":15691,"children":15692},{"class":123,"line":124},[15693],{"type":36,"tag":121,"props":15694,"children":15695},{"style":2019},[15696],{"type":41,"value":15697},"# .env.local\n",{"type":36,"tag":121,"props":15699,"children":15700},{"class":123,"line":167},[15701,15705,15709],{"type":36,"tag":121,"props":15702,"children":15703},{"style":134},[15704],{"type":41,"value":12537},{"type":36,"tag":121,"props":15706,"children":15707},{"style":145},[15708],{"type":41,"value":194},{"type":36,"tag":121,"props":15710,"children":15711},{"style":151},[15712],{"type":41,"value":15713},"http:\u002F\u002FYOUR_AUTH_SERVER_HOST:4000\n",{"type":36,"tag":121,"props":15715,"children":15716},{"class":123,"line":177},[15717,15722,15726],{"type":36,"tag":121,"props":15718,"children":15719},{"style":134},[15720],{"type":41,"value":15721},"VITE_SDK_KEY",{"type":36,"tag":121,"props":15723,"children":15724},{"style":145},[15725],{"type":41,"value":194},{"type":36,"tag":121,"props":15727,"children":15728},{"style":151},[15729],{"type":41,"value":15730},"your_sdk_key\n",{"type":36,"tag":94,"props":15732,"children":15734},{"className":12356,"code":15733,"language":12358,"meta":99,"style":99},"const authEndpoint = import.meta.env.VITE_AUTH_ENDPOINT;\nconst sdkKey = import.meta.env.VITE_SDK_KEY;\n",[15735],{"type":36,"tag":102,"props":15736,"children":15737},{"__ignoreMap":99},[15738,15786],{"type":36,"tag":121,"props":15739,"children":15740},{"class":123,"line":124},[15741,15745,15750,15754,15758,15762,15766,15770,15774,15778,15782],{"type":36,"tag":121,"props":15742,"children":15743},{"style":181},[15744],{"type":41,"value":184},{"type":36,"tag":121,"props":15746,"children":15747},{"style":134},[15748],{"type":41,"value":15749}," authEndpoint ",{"type":36,"tag":121,"props":15751,"children":15752},{"style":145},[15753],{"type":41,"value":194},{"type":36,"tag":121,"props":15755,"children":15756},{"style":128},[15757],{"type":41,"value":12510},{"type":36,"tag":121,"props":15759,"children":15760},{"style":145},[15761],{"type":41,"value":82},{"type":36,"tag":121,"props":15763,"children":15764},{"style":134},[15765],{"type":41,"value":12519},{"type":36,"tag":121,"props":15767,"children":15768},{"style":145},[15769],{"type":41,"value":82},{"type":36,"tag":121,"props":15771,"children":15772},{"style":134},[15773],{"type":41,"value":12528},{"type":36,"tag":121,"props":15775,"children":15776},{"style":145},[15777],{"type":41,"value":82},{"type":36,"tag":121,"props":15779,"children":15780},{"style":134},[15781],{"type":41,"value":12537},{"type":36,"tag":121,"props":15783,"children":15784},{"style":145},[15785],{"type":41,"value":164},{"type":36,"tag":121,"props":15787,"children":15788},{"class":123,"line":167},[15789,15793,15798,15802,15806,15810,15814,15818,15822,15826,15830],{"type":36,"tag":121,"props":15790,"children":15791},{"style":181},[15792],{"type":41,"value":184},{"type":36,"tag":121,"props":15794,"children":15795},{"style":134},[15796],{"type":41,"value":15797}," sdkKey ",{"type":36,"tag":121,"props":15799,"children":15800},{"style":145},[15801],{"type":41,"value":194},{"type":36,"tag":121,"props":15803,"children":15804},{"style":128},[15805],{"type":41,"value":12510},{"type":36,"tag":121,"props":15807,"children":15808},{"style":145},[15809],{"type":41,"value":82},{"type":36,"tag":121,"props":15811,"children":15812},{"style":134},[15813],{"type":41,"value":12519},{"type":36,"tag":121,"props":15815,"children":15816},{"style":145},[15817],{"type":41,"value":82},{"type":36,"tag":121,"props":15819,"children":15820},{"style":134},[15821],{"type":41,"value":12528},{"type":36,"tag":121,"props":15823,"children":15824},{"style":145},[15825],{"type":41,"value":82},{"type":36,"tag":121,"props":15827,"children":15828},{"style":134},[15829],{"type":41,"value":15721},{"type":36,"tag":121,"props":15831,"children":15832},{"style":145},[15833],{"type":41,"value":164},{"type":36,"tag":65,"props":15835,"children":15837},{"id":15836},"detailed-references",[15838],{"type":41,"value":15839},"Detailed References",{"type":36,"tag":1893,"props":15841,"children":15843},{"id":15842},"core-documentation",[15844],{"type":41,"value":15845},"Core Documentation",{"type":36,"tag":1131,"props":15847,"children":15848},{},[15849,15861,15874],{"type":36,"tag":1135,"props":15850,"children":15851},{},[15852,15859],{"type":36,"tag":50,"props":15853,"children":15854},{},[15855],{"type":36,"tag":1228,"props":15856,"children":15857},{"href":1428},[15858],{"type":41,"value":1428},{"type":41,"value":15860}," - Complete navigation guide",{"type":36,"tag":1135,"props":15862,"children":15863},{},[15864,15872],{"type":36,"tag":50,"props":15865,"children":15866},{},[15867],{"type":36,"tag":1228,"props":15868,"children":15870},{"href":15869},"client-view\u002FSKILL.md",[15871],{"type":41,"value":15869},{"type":41,"value":15873}," - Full Client View reference",{"type":36,"tag":1135,"props":15875,"children":15876},{},[15877,15884],{"type":36,"tag":50,"props":15878,"children":15879},{},[15880],{"type":36,"tag":1228,"props":15881,"children":15882},{"href":1230},[15883],{"type":41,"value":1230},{"type":41,"value":15885}," - Full Component View reference",{"type":36,"tag":1893,"props":15887,"children":15889},{"id":15888},"concepts",[15890],{"type":41,"value":15891},"Concepts",{"type":36,"tag":1131,"props":15893,"children":15894},{},[15895,15907],{"type":36,"tag":1135,"props":15896,"children":15897},{},[15898,15905],{"type":36,"tag":50,"props":15899,"children":15900},{},[15901],{"type":36,"tag":1228,"props":15902,"children":15903},{"href":1304},[15904],{"type":41,"value":1304},{"type":41,"value":15906}," - HD video requirements",{"type":36,"tag":1135,"props":15908,"children":15909},{},[15910,15917],{"type":36,"tag":50,"props":15911,"children":15912},{},[15913],{"type":36,"tag":1228,"props":15914,"children":15915},{"href":1372},[15916],{"type":41,"value":1372},{"type":41,"value":1377},{"type":36,"tag":1893,"props":15919,"children":15921},{"id":15920},"troubleshooting",[15922],{"type":41,"value":15923},"Troubleshooting",{"type":36,"tag":1131,"props":15925,"children":15926},{},[15927,15940],{"type":36,"tag":1135,"props":15928,"children":15929},{},[15930,15938],{"type":36,"tag":50,"props":15931,"children":15932},{},[15933],{"type":36,"tag":1228,"props":15934,"children":15936},{"href":15935},"troubleshooting\u002Ferror-codes.md",[15937],{"type":41,"value":15935},{"type":41,"value":15939}," - All SDK error codes",{"type":36,"tag":1135,"props":15941,"children":15942},{},[15943,15950],{"type":36,"tag":50,"props":15944,"children":15945},{},[15946],{"type":36,"tag":1228,"props":15947,"children":15948},{"href":11444},[15949],{"type":41,"value":11444},{"type":41,"value":15951}," - Quick diagnostics",{"type":36,"tag":1893,"props":15953,"children":15955},{"id":15954},"examples",[15956],{"type":41,"value":15957},"Examples",{"type":36,"tag":1131,"props":15959,"children":15960},{},[15961,15973],{"type":36,"tag":1135,"props":15962,"children":15963},{},[15964,15971],{"type":36,"tag":50,"props":15965,"children":15966},{},[15967],{"type":36,"tag":1228,"props":15968,"children":15969},{"href":15869},[15970],{"type":41,"value":15869},{"type":41,"value":15972}," - Complete Client View guide",{"type":36,"tag":1135,"props":15974,"children":15975},{},[15976,15983],{"type":36,"tag":50,"props":15977,"children":15978},{},[15979],{"type":36,"tag":1228,"props":15980,"children":15981},{"href":1230},[15982],{"type":41,"value":1230},{"type":41,"value":15984}," - Component View React integration",{"type":36,"tag":65,"props":15986,"children":15988},{"id":15987},"helper-utilities",[15989],{"type":41,"value":15990},"Helper Utilities",{"type":36,"tag":1893,"props":15992,"children":15994},{"id":15993},"extract-meeting-number-from-invite-link",[15995],{"type":41,"value":15996},"Extract Meeting Number from Invite Link",{"type":36,"tag":94,"props":15998,"children":16000},{"className":2404,"code":15999,"language":2406,"meta":99,"style":99},"\u002F\u002F Users can paste full Zoom invite links\ndocument.getElementById('meeting_number').addEventListener('input', (e) => {\n  \u002F\u002F Extract meeting number (9-11 digits)\n  let meetingNumber = e.target.value.replace(\u002F([^0-9])+\u002Fi, '');\n  if (meetingNumber.match(\u002F([0-9]{9,11})\u002F)) {\n    meetingNumber = meetingNumber.match(\u002F([0-9]{9,11})\u002F)[1];\n  }\n\n  \u002F\u002F Auto-extract password from invite link\n  const pwdMatch = e.target.value.match(\u002Fpwd=([\\d,\\w]+)\u002F);\n  if (pwdMatch) {\n    document.getElementById('password').value = pwdMatch[1];\n  }\n});\n",[16001],{"type":36,"tag":102,"props":16002,"children":16003},{"__ignoreMap":99},[16004,16012,16100,16108,16196,16247,16304,16311,16318,16326,16406,16430,16498,16505],{"type":36,"tag":121,"props":16005,"children":16006},{"class":123,"line":124},[16007],{"type":36,"tag":121,"props":16008,"children":16009},{"style":2019},[16010],{"type":41,"value":16011},"\u002F\u002F Users can paste full Zoom invite links\n",{"type":36,"tag":121,"props":16013,"children":16014},{"class":123,"line":167},[16015,16020,16024,16028,16032,16036,16041,16045,16049,16053,16058,16062,16066,16071,16075,16079,16083,16088,16092,16096],{"type":36,"tag":121,"props":16016,"children":16017},{"style":134},[16018],{"type":41,"value":16019},"document",{"type":36,"tag":121,"props":16021,"children":16022},{"style":145},[16023],{"type":41,"value":82},{"type":36,"tag":121,"props":16025,"children":16026},{"style":206},[16027],{"type":41,"value":786},{"type":36,"tag":121,"props":16029,"children":16030},{"style":134},[16031],{"type":41,"value":255},{"type":36,"tag":121,"props":16033,"children":16034},{"style":145},[16035],{"type":41,"value":159},{"type":36,"tag":121,"props":16037,"children":16038},{"style":151},[16039],{"type":41,"value":16040},"meeting_number",{"type":36,"tag":121,"props":16042,"children":16043},{"style":145},[16044],{"type":41,"value":159},{"type":36,"tag":121,"props":16046,"children":16047},{"style":134},[16048],{"type":41,"value":312},{"type":36,"tag":121,"props":16050,"children":16051},{"style":145},[16052],{"type":41,"value":82},{"type":36,"tag":121,"props":16054,"children":16055},{"style":206},[16056],{"type":41,"value":16057},"addEventListener",{"type":36,"tag":121,"props":16059,"children":16060},{"style":134},[16061],{"type":41,"value":255},{"type":36,"tag":121,"props":16063,"children":16064},{"style":145},[16065],{"type":41,"value":159},{"type":36,"tag":121,"props":16067,"children":16068},{"style":151},[16069],{"type":41,"value":16070},"input",{"type":36,"tag":121,"props":16072,"children":16073},{"style":145},[16074],{"type":41,"value":159},{"type":36,"tag":121,"props":16076,"children":16077},{"style":145},[16078],{"type":41,"value":277},{"type":36,"tag":121,"props":16080,"children":16081},{"style":145},[16082],{"type":41,"value":568},{"type":36,"tag":121,"props":16084,"children":16085},{"style":258},[16086],{"type":41,"value":16087},"e",{"type":36,"tag":121,"props":16089,"children":16090},{"style":145},[16091],{"type":41,"value":312},{"type":36,"tag":121,"props":16093,"children":16094},{"style":181},[16095],{"type":41,"value":2691},{"type":36,"tag":121,"props":16097,"children":16098},{"style":145},[16099],{"type":41,"value":317},{"type":36,"tag":121,"props":16101,"children":16102},{"class":123,"line":177},[16103],{"type":36,"tag":121,"props":16104,"children":16105},{"style":2019},[16106],{"type":41,"value":16107},"  \u002F\u002F Extract meeting number (9-11 digits)\n",{"type":36,"tag":121,"props":16109,"children":16110},{"class":123,"line":221},[16111,16116,16120,16124,16129,16133,16138,16142,16147,16151,16156,16160,16165,16170,16175,16180,16184,16188,16192],{"type":36,"tag":121,"props":16112,"children":16113},{"style":181},[16114],{"type":41,"value":16115},"  let",{"type":36,"tag":121,"props":16117,"children":16118},{"style":134},[16119],{"type":41,"value":497},{"type":36,"tag":121,"props":16121,"children":16122},{"style":145},[16123],{"type":41,"value":336},{"type":36,"tag":121,"props":16125,"children":16126},{"style":134},[16127],{"type":41,"value":16128}," e",{"type":36,"tag":121,"props":16130,"children":16131},{"style":145},[16132],{"type":41,"value":82},{"type":36,"tag":121,"props":16134,"children":16135},{"style":134},[16136],{"type":41,"value":16137},"target",{"type":36,"tag":121,"props":16139,"children":16140},{"style":145},[16141],{"type":41,"value":82},{"type":36,"tag":121,"props":16143,"children":16144},{"style":134},[16145],{"type":41,"value":16146},"value",{"type":36,"tag":121,"props":16148,"children":16149},{"style":145},[16150],{"type":41,"value":82},{"type":36,"tag":121,"props":16152,"children":16153},{"style":206},[16154],{"type":41,"value":16155},"replace",{"type":36,"tag":121,"props":16157,"children":16158},{"style":349},[16159],{"type":41,"value":255},{"type":36,"tag":121,"props":16161,"children":16162},{"style":145},[16163],{"type":41,"value":16164},"\u002F([^",{"type":36,"tag":121,"props":16166,"children":16167},{"style":151},[16168],{"type":41,"value":16169},"0-9",{"type":36,"tag":121,"props":16171,"children":16172},{"style":145},[16173],{"type":41,"value":16174},"])+\u002F",{"type":36,"tag":121,"props":16176,"children":16177},{"style":513},[16178],{"type":41,"value":16179},"i",{"type":36,"tag":121,"props":16181,"children":16182},{"style":145},[16183],{"type":41,"value":277},{"type":36,"tag":121,"props":16185,"children":16186},{"style":145},[16187],{"type":41,"value":12561},{"type":36,"tag":121,"props":16189,"children":16190},{"style":349},[16191],{"type":41,"value":312},{"type":36,"tag":121,"props":16193,"children":16194},{"style":145},[16195],{"type":41,"value":164},{"type":36,"tag":121,"props":16197,"children":16198},{"class":123,"line":229},[16199,16203,16207,16211,16215,16220,16224,16229,16233,16238,16243],{"type":36,"tag":121,"props":16200,"children":16201},{"style":128},[16202],{"type":41,"value":563},{"type":36,"tag":121,"props":16204,"children":16205},{"style":349},[16206],{"type":41,"value":568},{"type":36,"tag":121,"props":16208,"children":16209},{"style":134},[16210],{"type":41,"value":261},{"type":36,"tag":121,"props":16212,"children":16213},{"style":145},[16214],{"type":41,"value":82},{"type":36,"tag":121,"props":16216,"children":16217},{"style":206},[16218],{"type":41,"value":16219},"match",{"type":36,"tag":121,"props":16221,"children":16222},{"style":349},[16223],{"type":41,"value":255},{"type":36,"tag":121,"props":16225,"children":16226},{"style":145},[16227],{"type":41,"value":16228},"\u002F([",{"type":36,"tag":121,"props":16230,"children":16231},{"style":151},[16232],{"type":41,"value":16169},{"type":36,"tag":121,"props":16234,"children":16235},{"style":145},[16236],{"type":41,"value":16237},"]{9,11})\u002F",{"type":36,"tag":121,"props":16239,"children":16240},{"style":349},[16241],{"type":41,"value":16242},")) ",{"type":36,"tag":121,"props":16244,"children":16245},{"style":145},[16246],{"type":41,"value":759},{"type":36,"tag":121,"props":16248,"children":16249},{"class":123,"line":320},[16250,16254,16258,16262,16266,16270,16274,16278,16282,16286,16291,16296,16300],{"type":36,"tag":121,"props":16251,"children":16252},{"style":134},[16253],{"type":41,"value":1069},{"type":36,"tag":121,"props":16255,"children":16256},{"style":145},[16257],{"type":41,"value":336},{"type":36,"tag":121,"props":16259,"children":16260},{"style":134},[16261],{"type":41,"value":497},{"type":36,"tag":121,"props":16263,"children":16264},{"style":145},[16265],{"type":41,"value":82},{"type":36,"tag":121,"props":16267,"children":16268},{"style":206},[16269],{"type":41,"value":16219},{"type":36,"tag":121,"props":16271,"children":16272},{"style":349},[16273],{"type":41,"value":255},{"type":36,"tag":121,"props":16275,"children":16276},{"style":145},[16277],{"type":41,"value":16228},{"type":36,"tag":121,"props":16279,"children":16280},{"style":151},[16281],{"type":41,"value":16169},{"type":36,"tag":121,"props":16283,"children":16284},{"style":145},[16285],{"type":41,"value":16237},{"type":36,"tag":121,"props":16287,"children":16288},{"style":349},[16289],{"type":41,"value":16290},")[",{"type":36,"tag":121,"props":16292,"children":16293},{"style":513},[16294],{"type":41,"value":16295},"1",{"type":36,"tag":121,"props":16297,"children":16298},{"style":349},[16299],{"type":41,"value":8869},{"type":36,"tag":121,"props":16301,"children":16302},{"style":145},[16303],{"type":41,"value":164},{"type":36,"tag":121,"props":16305,"children":16306},{"class":123,"line":375},[16307],{"type":36,"tag":121,"props":16308,"children":16309},{"style":145},[16310],{"type":41,"value":4249},{"type":36,"tag":121,"props":16312,"children":16313},{"class":123,"line":406},[16314],{"type":36,"tag":121,"props":16315,"children":16316},{"emptyLinePlaceholder":171},[16317],{"type":41,"value":174},{"type":36,"tag":121,"props":16319,"children":16320},{"class":123,"line":459},[16321],{"type":36,"tag":121,"props":16322,"children":16323},{"style":2019},[16324],{"type":41,"value":16325},"  \u002F\u002F Auto-extract password from invite link\n",{"type":36,"tag":121,"props":16327,"children":16328},{"class":123,"line":532},[16329,16333,16338,16342,16346,16350,16354,16358,16362,16366,16370,16374,16378,16383,16388,16393,16398,16402],{"type":36,"tag":121,"props":16330,"children":16331},{"style":181},[16332],{"type":41,"value":326},{"type":36,"tag":121,"props":16334,"children":16335},{"style":134},[16336],{"type":41,"value":16337}," pwdMatch",{"type":36,"tag":121,"props":16339,"children":16340},{"style":145},[16341],{"type":41,"value":336},{"type":36,"tag":121,"props":16343,"children":16344},{"style":134},[16345],{"type":41,"value":16128},{"type":36,"tag":121,"props":16347,"children":16348},{"style":145},[16349],{"type":41,"value":82},{"type":36,"tag":121,"props":16351,"children":16352},{"style":134},[16353],{"type":41,"value":16137},{"type":36,"tag":121,"props":16355,"children":16356},{"style":145},[16357],{"type":41,"value":82},{"type":36,"tag":121,"props":16359,"children":16360},{"style":134},[16361],{"type":41,"value":16146},{"type":36,"tag":121,"props":16363,"children":16364},{"style":145},[16365],{"type":41,"value":82},{"type":36,"tag":121,"props":16367,"children":16368},{"style":206},[16369],{"type":41,"value":16219},{"type":36,"tag":121,"props":16371,"children":16372},{"style":349},[16373],{"type":41,"value":255},{"type":36,"tag":121,"props":16375,"children":16376},{"style":145},[16377],{"type":41,"value":1520},{"type":36,"tag":121,"props":16379,"children":16380},{"style":151},[16381],{"type":41,"value":16382},"pwd=",{"type":36,"tag":121,"props":16384,"children":16385},{"style":145},[16386],{"type":41,"value":16387},"([",{"type":36,"tag":121,"props":16389,"children":16390},{"style":151},[16391],{"type":41,"value":16392},"\\d,\\w",{"type":36,"tag":121,"props":16394,"children":16395},{"style":145},[16396],{"type":41,"value":16397},"]+)\u002F",{"type":36,"tag":121,"props":16399,"children":16400},{"style":349},[16401],{"type":41,"value":312},{"type":36,"tag":121,"props":16403,"children":16404},{"style":145},[16405],{"type":41,"value":164},{"type":36,"tag":121,"props":16407,"children":16408},{"class":123,"line":549},[16409,16413,16417,16422,16426],{"type":36,"tag":121,"props":16410,"children":16411},{"style":128},[16412],{"type":41,"value":563},{"type":36,"tag":121,"props":16414,"children":16415},{"style":349},[16416],{"type":41,"value":568},{"type":36,"tag":121,"props":16418,"children":16419},{"style":134},[16420],{"type":41,"value":16421},"pwdMatch",{"type":36,"tag":121,"props":16423,"children":16424},{"style":349},[16425],{"type":41,"value":592},{"type":36,"tag":121,"props":16427,"children":16428},{"style":145},[16429],{"type":41,"value":759},{"type":36,"tag":121,"props":16431,"children":16432},{"class":123,"line":557},[16433,16437,16441,16445,16449,16453,16457,16461,16465,16469,16473,16477,16481,16486,16490,16494],{"type":36,"tag":121,"props":16434,"children":16435},{"style":134},[16436],{"type":41,"value":13024},{"type":36,"tag":121,"props":16438,"children":16439},{"style":145},[16440],{"type":41,"value":82},{"type":36,"tag":121,"props":16442,"children":16443},{"style":206},[16444],{"type":41,"value":786},{"type":36,"tag":121,"props":16446,"children":16447},{"style":349},[16448],{"type":41,"value":255},{"type":36,"tag":121,"props":16450,"children":16451},{"style":145},[16452],{"type":41,"value":159},{"type":36,"tag":121,"props":16454,"children":16455},{"style":151},[16456],{"type":41,"value":1155},{"type":36,"tag":121,"props":16458,"children":16459},{"style":145},[16460],{"type":41,"value":159},{"type":36,"tag":121,"props":16462,"children":16463},{"style":349},[16464],{"type":41,"value":312},{"type":36,"tag":121,"props":16466,"children":16467},{"style":145},[16468],{"type":41,"value":82},{"type":36,"tag":121,"props":16470,"children":16471},{"style":134},[16472],{"type":41,"value":16146},{"type":36,"tag":121,"props":16474,"children":16475},{"style":145},[16476],{"type":41,"value":336},{"type":36,"tag":121,"props":16478,"children":16479},{"style":134},[16480],{"type":41,"value":16337},{"type":36,"tag":121,"props":16482,"children":16483},{"style":349},[16484],{"type":41,"value":16485},"[",{"type":36,"tag":121,"props":16487,"children":16488},{"style":513},[16489],{"type":41,"value":16295},{"type":36,"tag":121,"props":16491,"children":16492},{"style":349},[16493],{"type":41,"value":8869},{"type":36,"tag":121,"props":16495,"children":16496},{"style":145},[16497],{"type":41,"value":164},{"type":36,"tag":121,"props":16499,"children":16500},{"class":123,"line":655},[16501],{"type":36,"tag":121,"props":16502,"children":16503},{"style":145},[16504],{"type":41,"value":4249},{"type":36,"tag":121,"props":16506,"children":16507},{"class":123,"line":663},[16508,16512,16516],{"type":36,"tag":121,"props":16509,"children":16510},{"style":145},[16511],{"type":41,"value":3575},{"type":36,"tag":121,"props":16513,"children":16514},{"style":134},[16515],{"type":41,"value":312},{"type":36,"tag":121,"props":16517,"children":16518},{"style":145},[16519],{"type":41,"value":164},{"type":36,"tag":1893,"props":16521,"children":16523},{"id":16522},"dynamic-language-switching",[16524],{"type":41,"value":16525},"Dynamic Language Switching",{"type":36,"tag":94,"props":16527,"children":16529},{"className":2404,"code":16528,"language":2406,"meta":99,"style":99},"\u002F\u002F Change language at runtime\ndocument.getElementById('language').addEventListener('change', (e) => {\n  const lang = e.target.value;\n  ZoomMtg.i18n.load(lang);\n  ZoomMtg.i18n.reload(lang);\n  ZoomMtg.reRender({ lang });\n});\n",[16530],{"type":36,"tag":102,"props":16531,"children":16532},{"__ignoreMap":99},[16533,16541,16626,16666,16706,16746,16786],{"type":36,"tag":121,"props":16534,"children":16535},{"class":123,"line":124},[16536],{"type":36,"tag":121,"props":16537,"children":16538},{"style":2019},[16539],{"type":41,"value":16540},"\u002F\u002F Change language at runtime\n",{"type":36,"tag":121,"props":16542,"children":16543},{"class":123,"line":167},[16544,16548,16552,16556,16560,16564,16569,16573,16577,16581,16585,16589,16593,16598,16602,16606,16610,16614,16618,16622],{"type":36,"tag":121,"props":16545,"children":16546},{"style":134},[16547],{"type":41,"value":16019},{"type":36,"tag":121,"props":16549,"children":16550},{"style":145},[16551],{"type":41,"value":82},{"type":36,"tag":121,"props":16553,"children":16554},{"style":206},[16555],{"type":41,"value":786},{"type":36,"tag":121,"props":16557,"children":16558},{"style":134},[16559],{"type":41,"value":255},{"type":36,"tag":121,"props":16561,"children":16562},{"style":145},[16563],{"type":41,"value":159},{"type":36,"tag":121,"props":16565,"children":16566},{"style":151},[16567],{"type":41,"value":16568},"language",{"type":36,"tag":121,"props":16570,"children":16571},{"style":145},[16572],{"type":41,"value":159},{"type":36,"tag":121,"props":16574,"children":16575},{"style":134},[16576],{"type":41,"value":312},{"type":36,"tag":121,"props":16578,"children":16579},{"style":145},[16580],{"type":41,"value":82},{"type":36,"tag":121,"props":16582,"children":16583},{"style":206},[16584],{"type":41,"value":16057},{"type":36,"tag":121,"props":16586,"children":16587},{"style":134},[16588],{"type":41,"value":255},{"type":36,"tag":121,"props":16590,"children":16591},{"style":145},[16592],{"type":41,"value":159},{"type":36,"tag":121,"props":16594,"children":16595},{"style":151},[16596],{"type":41,"value":16597},"change",{"type":36,"tag":121,"props":16599,"children":16600},{"style":145},[16601],{"type":41,"value":159},{"type":36,"tag":121,"props":16603,"children":16604},{"style":145},[16605],{"type":41,"value":277},{"type":36,"tag":121,"props":16607,"children":16608},{"style":145},[16609],{"type":41,"value":568},{"type":36,"tag":121,"props":16611,"children":16612},{"style":258},[16613],{"type":41,"value":16087},{"type":36,"tag":121,"props":16615,"children":16616},{"style":145},[16617],{"type":41,"value":312},{"type":36,"tag":121,"props":16619,"children":16620},{"style":181},[16621],{"type":41,"value":2691},{"type":36,"tag":121,"props":16623,"children":16624},{"style":145},[16625],{"type":41,"value":317},{"type":36,"tag":121,"props":16627,"children":16628},{"class":123,"line":177},[16629,16633,16638,16642,16646,16650,16654,16658,16662],{"type":36,"tag":121,"props":16630,"children":16631},{"style":181},[16632],{"type":41,"value":326},{"type":36,"tag":121,"props":16634,"children":16635},{"style":134},[16636],{"type":41,"value":16637}," lang",{"type":36,"tag":121,"props":16639,"children":16640},{"style":145},[16641],{"type":41,"value":336},{"type":36,"tag":121,"props":16643,"children":16644},{"style":134},[16645],{"type":41,"value":16128},{"type":36,"tag":121,"props":16647,"children":16648},{"style":145},[16649],{"type":41,"value":82},{"type":36,"tag":121,"props":16651,"children":16652},{"style":134},[16653],{"type":41,"value":16137},{"type":36,"tag":121,"props":16655,"children":16656},{"style":145},[16657],{"type":41,"value":82},{"type":36,"tag":121,"props":16659,"children":16660},{"style":134},[16661],{"type":41,"value":16146},{"type":36,"tag":121,"props":16663,"children":16664},{"style":145},[16665],{"type":41,"value":164},{"type":36,"tag":121,"props":16667,"children":16668},{"class":123,"line":221},[16669,16673,16677,16681,16685,16689,16693,16698,16702],{"type":36,"tag":121,"props":16670,"children":16671},{"style":134},[16672],{"type":41,"value":2718},{"type":36,"tag":121,"props":16674,"children":16675},{"style":145},[16676],{"type":41,"value":82},{"type":36,"tag":121,"props":16678,"children":16679},{"style":134},[16680],{"type":41,"value":2621},{"type":36,"tag":121,"props":16682,"children":16683},{"style":145},[16684],{"type":41,"value":82},{"type":36,"tag":121,"props":16686,"children":16687},{"style":206},[16688],{"type":41,"value":2630},{"type":36,"tag":121,"props":16690,"children":16691},{"style":349},[16692],{"type":41,"value":255},{"type":36,"tag":121,"props":16694,"children":16695},{"style":134},[16696],{"type":41,"value":16697},"lang",{"type":36,"tag":121,"props":16699,"children":16700},{"style":349},[16701],{"type":41,"value":312},{"type":36,"tag":121,"props":16703,"children":16704},{"style":145},[16705],{"type":41,"value":164},{"type":36,"tag":121,"props":16707,"children":16708},{"class":123,"line":229},[16709,16713,16717,16721,16725,16730,16734,16738,16742],{"type":36,"tag":121,"props":16710,"children":16711},{"style":134},[16712],{"type":41,"value":2718},{"type":36,"tag":121,"props":16714,"children":16715},{"style":145},[16716],{"type":41,"value":82},{"type":36,"tag":121,"props":16718,"children":16719},{"style":134},[16720],{"type":41,"value":2621},{"type":36,"tag":121,"props":16722,"children":16723},{"style":145},[16724],{"type":41,"value":82},{"type":36,"tag":121,"props":16726,"children":16727},{"style":206},[16728],{"type":41,"value":16729},"reload",{"type":36,"tag":121,"props":16731,"children":16732},{"style":349},[16733],{"type":41,"value":255},{"type":36,"tag":121,"props":16735,"children":16736},{"style":134},[16737],{"type":41,"value":16697},{"type":36,"tag":121,"props":16739,"children":16740},{"style":349},[16741],{"type":41,"value":312},{"type":36,"tag":121,"props":16743,"children":16744},{"style":145},[16745],{"type":41,"value":164},{"type":36,"tag":121,"props":16747,"children":16748},{"class":123,"line":320},[16749,16753,16757,16762,16766,16770,16774,16778,16782],{"type":36,"tag":121,"props":16750,"children":16751},{"style":134},[16752],{"type":41,"value":2718},{"type":36,"tag":121,"props":16754,"children":16755},{"style":145},[16756],{"type":41,"value":82},{"type":36,"tag":121,"props":16758,"children":16759},{"style":206},[16760],{"type":41,"value":16761},"reRender",{"type":36,"tag":121,"props":16763,"children":16764},{"style":349},[16765],{"type":41,"value":255},{"type":36,"tag":121,"props":16767,"children":16768},{"style":145},[16769],{"type":41,"value":492},{"type":36,"tag":121,"props":16771,"children":16772},{"style":134},[16773],{"type":41,"value":16637},{"type":36,"tag":121,"props":16775,"children":16776},{"style":145},[16777],{"type":41,"value":521},{"type":36,"tag":121,"props":16779,"children":16780},{"style":349},[16781],{"type":41,"value":312},{"type":36,"tag":121,"props":16783,"children":16784},{"style":145},[16785],{"type":41,"value":164},{"type":36,"tag":121,"props":16787,"children":16788},{"class":123,"line":375},[16789,16793,16797],{"type":36,"tag":121,"props":16790,"children":16791},{"style":145},[16792],{"type":41,"value":3575},{"type":36,"tag":121,"props":16794,"children":16795},{"style":134},[16796],{"type":41,"value":312},{"type":36,"tag":121,"props":16798,"children":16799},{"style":145},[16800],{"type":41,"value":164},{"type":36,"tag":1893,"props":16802,"children":16804},{"id":16803},"check-system-requirements",[16805],{"type":41,"value":16806},"Check System Requirements",{"type":36,"tag":94,"props":16808,"children":16810},{"className":2404,"code":16809,"language":2406,"meta":99,"style":99},"\u002F\u002F Check browser compatibility before initializing\nconst requirements = ZoomMtg.checkSystemRequirements();\nconsole.log('Browser info:', JSON.stringify(requirements));\n\nif (!requirements.browserInfo.isChrome && !requirements.browserInfo.isFirefox) {\n  alert('For best experience, use Chrome or Firefox');\n}\n",[16811],{"type":36,"tag":102,"props":16812,"children":16813},{"__ignoreMap":99},[16814,16822,16858,16915,16922,16993,17026],{"type":36,"tag":121,"props":16815,"children":16816},{"class":123,"line":124},[16817],{"type":36,"tag":121,"props":16818,"children":16819},{"style":2019},[16820],{"type":41,"value":16821},"\u002F\u002F Check browser compatibility before initializing\n",{"type":36,"tag":121,"props":16823,"children":16824},{"class":123,"line":167},[16825,16829,16834,16838,16842,16846,16850,16854],{"type":36,"tag":121,"props":16826,"children":16827},{"style":181},[16828],{"type":41,"value":184},{"type":36,"tag":121,"props":16830,"children":16831},{"style":134},[16832],{"type":41,"value":16833}," requirements ",{"type":36,"tag":121,"props":16835,"children":16836},{"style":145},[16837],{"type":41,"value":194},{"type":36,"tag":121,"props":16839,"children":16840},{"style":134},[16841],{"type":41,"value":2426},{"type":36,"tag":121,"props":16843,"children":16844},{"style":145},[16845],{"type":41,"value":82},{"type":36,"tag":121,"props":16847,"children":16848},{"style":206},[16849],{"type":41,"value":2518},{"type":36,"tag":121,"props":16851,"children":16852},{"style":134},[16853],{"type":41,"value":214},{"type":36,"tag":121,"props":16855,"children":16856},{"style":145},[16857],{"type":41,"value":164},{"type":36,"tag":121,"props":16859,"children":16860},{"class":123,"line":177},[16861,16865,16869,16873,16877,16881,16886,16890,16894,16898,16902,16906,16911],{"type":36,"tag":121,"props":16862,"children":16863},{"style":134},[16864],{"type":41,"value":2475},{"type":36,"tag":121,"props":16866,"children":16867},{"style":145},[16868],{"type":41,"value":82},{"type":36,"tag":121,"props":16870,"children":16871},{"style":206},[16872],{"type":41,"value":2484},{"type":36,"tag":121,"props":16874,"children":16875},{"style":134},[16876],{"type":41,"value":255},{"type":36,"tag":121,"props":16878,"children":16879},{"style":145},[16880],{"type":41,"value":159},{"type":36,"tag":121,"props":16882,"children":16883},{"style":151},[16884],{"type":41,"value":16885},"Browser info:",{"type":36,"tag":121,"props":16887,"children":16888},{"style":145},[16889],{"type":41,"value":159},{"type":36,"tag":121,"props":16891,"children":16892},{"style":145},[16893],{"type":41,"value":277},{"type":36,"tag":121,"props":16895,"children":16896},{"style":134},[16897],{"type":41,"value":474},{"type":36,"tag":121,"props":16899,"children":16900},{"style":145},[16901],{"type":41,"value":82},{"type":36,"tag":121,"props":16903,"children":16904},{"style":206},[16905],{"type":41,"value":483},{"type":36,"tag":121,"props":16907,"children":16908},{"style":134},[16909],{"type":41,"value":16910},"(requirements))",{"type":36,"tag":121,"props":16912,"children":16913},{"style":145},[16914],{"type":41,"value":164},{"type":36,"tag":121,"props":16916,"children":16917},{"class":123,"line":221},[16918],{"type":36,"tag":121,"props":16919,"children":16920},{"emptyLinePlaceholder":171},[16921],{"type":41,"value":174},{"type":36,"tag":121,"props":16923,"children":16924},{"class":123,"line":229},[16925,16929,16933,16937,16942,16946,16951,16955,16960,16964,16968,16972,16976,16980,16984,16989],{"type":36,"tag":121,"props":16926,"children":16927},{"style":128},[16928],{"type":41,"value":10692},{"type":36,"tag":121,"props":16930,"children":16931},{"style":134},[16932],{"type":41,"value":568},{"type":36,"tag":121,"props":16934,"children":16935},{"style":145},[16936],{"type":41,"value":573},{"type":36,"tag":121,"props":16938,"children":16939},{"style":134},[16940],{"type":41,"value":16941},"requirements",{"type":36,"tag":121,"props":16943,"children":16944},{"style":145},[16945],{"type":41,"value":82},{"type":36,"tag":121,"props":16947,"children":16948},{"style":134},[16949],{"type":41,"value":16950},"browserInfo",{"type":36,"tag":121,"props":16952,"children":16953},{"style":145},[16954],{"type":41,"value":82},{"type":36,"tag":121,"props":16956,"children":16957},{"style":134},[16958],{"type":41,"value":16959},"isChrome ",{"type":36,"tag":121,"props":16961,"children":16962},{"style":145},[16963],{"type":41,"value":15589},{"type":36,"tag":121,"props":16965,"children":16966},{"style":145},[16967],{"type":41,"value":2780},{"type":36,"tag":121,"props":16969,"children":16970},{"style":134},[16971],{"type":41,"value":16941},{"type":36,"tag":121,"props":16973,"children":16974},{"style":145},[16975],{"type":41,"value":82},{"type":36,"tag":121,"props":16977,"children":16978},{"style":134},[16979],{"type":41,"value":16950},{"type":36,"tag":121,"props":16981,"children":16982},{"style":145},[16983],{"type":41,"value":82},{"type":36,"tag":121,"props":16985,"children":16986},{"style":134},[16987],{"type":41,"value":16988},"isFirefox) ",{"type":36,"tag":121,"props":16990,"children":16991},{"style":145},[16992],{"type":41,"value":759},{"type":36,"tag":121,"props":16994,"children":16995},{"class":123,"line":320},[16996,17001,17005,17009,17014,17018,17022],{"type":36,"tag":121,"props":16997,"children":16998},{"style":206},[16999],{"type":41,"value":17000},"  alert",{"type":36,"tag":121,"props":17002,"children":17003},{"style":349},[17004],{"type":41,"value":255},{"type":36,"tag":121,"props":17006,"children":17007},{"style":145},[17008],{"type":41,"value":159},{"type":36,"tag":121,"props":17010,"children":17011},{"style":151},[17012],{"type":41,"value":17013},"For best experience, use Chrome or Firefox",{"type":36,"tag":121,"props":17015,"children":17016},{"style":145},[17017],{"type":41,"value":159},{"type":36,"tag":121,"props":17019,"children":17020},{"style":349},[17021],{"type":41,"value":312},{"type":36,"tag":121,"props":17023,"children":17024},{"style":145},[17025],{"type":41,"value":164},{"type":36,"tag":121,"props":17027,"children":17028},{"class":123,"line":375},[17029],{"type":36,"tag":121,"props":17030,"children":17031},{"style":145},[17032],{"type":41,"value":1124},{"type":36,"tag":65,"props":17034,"children":17036},{"id":17035},"sample-repositories",[17037],{"type":41,"value":17038},"Sample Repositories",{"type":36,"tag":1641,"props":17040,"children":17041},{},[17042,17058],{"type":36,"tag":1645,"props":17043,"children":17044},{},[17045],{"type":36,"tag":1649,"props":17046,"children":17047},{},[17048,17053],{"type":36,"tag":1653,"props":17049,"children":17050},{},[17051],{"type":41,"value":17052},"Repository",{"type":36,"tag":1653,"props":17054,"children":17055},{},[17056],{"type":41,"value":17057},"Description",{"type":36,"tag":1667,"props":17059,"children":17060},{},[17061,17079,17097,17115],{"type":36,"tag":1649,"props":17062,"children":17063},{},[17064,17074],{"type":36,"tag":1674,"props":17065,"children":17066},{},[17067],{"type":36,"tag":1228,"props":17068,"children":17071},{"href":17069,"rel":17070},"https:\u002F\u002Fgithub.com\u002Fzoom\u002Fmeetingsdk-web-sample",[1449],[17072],{"type":41,"value":17073},"meetingsdk-web-sample",{"type":36,"tag":1674,"props":17075,"children":17076},{},[17077],{"type":41,"value":17078},"Official samples (Client View & Component View)",{"type":36,"tag":1649,"props":17080,"children":17081},{},[17082,17092],{"type":36,"tag":1674,"props":17083,"children":17084},{},[17085],{"type":36,"tag":1228,"props":17086,"children":17089},{"href":17087,"rel":17088},"https:\u002F\u002Fgithub.com\u002Fzoom\u002Fmeetingsdk-react-sample",[1449],[17090],{"type":41,"value":17091},"meetingsdk-react-sample",{"type":36,"tag":1674,"props":17093,"children":17094},{},[17095],{"type":41,"value":17096},"React integration with TypeScript + Vite",{"type":36,"tag":1649,"props":17098,"children":17099},{},[17100,17110],{"type":36,"tag":1674,"props":17101,"children":17102},{},[17103],{"type":36,"tag":1228,"props":17104,"children":17107},{"href":17105,"rel":17106},"https:\u002F\u002Fgithub.com\u002Fzoom\u002Fmeetingsdk-web",[1449],[17108],{"type":41,"value":17109},"meetingsdk-web",{"type":36,"tag":1674,"props":17111,"children":17112},{},[17113],{"type":41,"value":17114},"SDK source with helper.html",{"type":36,"tag":1649,"props":17116,"children":17117},{},[17118,17128],{"type":36,"tag":1674,"props":17119,"children":17120},{},[17121],{"type":36,"tag":1228,"props":17122,"children":17125},{"href":17123,"rel":17124},"https:\u002F\u002Fgithub.com\u002Fzoom\u002Fmeetingsdk-auth-endpoint-sample",[1449],[17126],{"type":41,"value":17127},"meetingsdk-auth-endpoint-sample",{"type":36,"tag":1674,"props":17129,"children":17130},{},[17131],{"type":41,"value":17132},"Signature generation backend",{"type":36,"tag":65,"props":17134,"children":17136},{"id":17135},"official-resources",[17137],{"type":41,"value":17138},"Official Resources",{"type":36,"tag":1131,"props":17140,"children":17141},{},[17142,17157,17171,17185],{"type":36,"tag":1135,"props":17143,"children":17144},{},[17145,17150,17151],{"type":36,"tag":50,"props":17146,"children":17147},{},[17148],{"type":41,"value":17149},"Official docs",{"type":41,"value":11441},{"type":36,"tag":1228,"props":17152,"children":17155},{"href":17153,"rel":17154},"https:\u002F\u002Fdevelopers.zoom.us\u002Fdocs\u002Fmeeting-sdk\u002Fweb\u002F",[1449],[17156],{"type":41,"value":17153},{"type":36,"tag":1135,"props":17158,"children":17159},{},[17160,17164,17165],{"type":36,"tag":50,"props":17161,"children":17162},{},[17163],{"type":41,"value":4511},{"type":41,"value":11441},{"type":36,"tag":1228,"props":17166,"children":17169},{"href":17167,"rel":17168},"https:\u002F\u002Fmarketplacefront.zoom.us\u002Fsdk\u002Fmeeting\u002Fweb\u002Findex.html",[1449],[17170],{"type":41,"value":17167},{"type":36,"tag":1135,"props":17172,"children":17173},{},[17174,17178,17179],{"type":36,"tag":50,"props":17175,"children":17176},{},[17177],{"type":41,"value":8306},{"type":41,"value":11441},{"type":36,"tag":1228,"props":17180,"children":17183},{"href":17181,"rel":17182},"https:\u002F\u002Fmarketplacefront.zoom.us\u002Fsdk\u002Fmeeting\u002Fweb\u002Fcomponents\u002Findex.html",[1449],[17184],{"type":41,"value":17181},{"type":36,"tag":1135,"props":17186,"children":17187},{},[17188,17193,17194],{"type":36,"tag":50,"props":17189,"children":17190},{},[17191],{"type":41,"value":17192},"Developer forum",{"type":41,"value":11441},{"type":36,"tag":1228,"props":17195,"children":17198},{"href":17196,"rel":17197},"https:\u002F\u002Fdevforum.zoom.us\u002F",[1449],[17199],{"type":41,"value":17196},{"type":36,"tag":17201,"props":17202,"children":17203},"hr",{},[],{"type":36,"tag":44,"props":17205,"children":17206},{},[17207,17212],{"type":36,"tag":50,"props":17208,"children":17209},{},[17210],{"type":41,"value":17211},"Documentation Version",{"type":41,"value":17213},": Based on Zoom Web Meeting SDK v3.11+",{"type":36,"tag":44,"props":17215,"children":17216},{},[17217,17222,17224,17228],{"type":36,"tag":50,"props":17218,"children":17219},{},[17220],{"type":41,"value":17221},"Need help?",{"type":41,"value":17223}," Start with ",{"type":36,"tag":1228,"props":17225,"children":17226},{"href":1428},[17227],{"type":41,"value":1428},{"type":41,"value":17229}," for complete navigation.",{"type":36,"tag":65,"props":17231,"children":17233},{"id":17232},"merged-from-meeting-sdkwebskillmd",[17234],{"type":41,"value":17235},"Merged from meeting-sdk\u002Fweb\u002FSKILL.md",{"type":36,"tag":37,"props":17237,"children":17239},{"id":17238},"zoom-meeting-sdk-web-documentation-index",[17240],{"type":41,"value":17241},"Zoom Meeting SDK (Web) - Documentation Index",{"type":36,"tag":44,"props":17243,"children":17244},{},[17245],{"type":41,"value":17246},"Quick navigation guide for all Web SDK documentation.",{"type":36,"tag":65,"props":17248,"children":17250},{"id":17249},"start-here",[17251],{"type":41,"value":17252},"Start Here",{"type":36,"tag":1641,"props":17254,"children":17255},{},[17256,17271],{"type":36,"tag":1645,"props":17257,"children":17258},{},[17259],{"type":36,"tag":1649,"props":17260,"children":17261},{},[17262,17267],{"type":36,"tag":1653,"props":17263,"children":17264},{},[17265],{"type":41,"value":17266},"Document",{"type":36,"tag":1653,"props":17268,"children":17269},{},[17270],{"type":41,"value":17057},{"type":36,"tag":1667,"props":17272,"children":17273},{},[17274],{"type":36,"tag":1649,"props":17275,"children":17276},{},[17277,17287],{"type":36,"tag":1674,"props":17278,"children":17279},{},[17280],{"type":36,"tag":50,"props":17281,"children":17282},{},[17283],{"type":36,"tag":1228,"props":17284,"children":17285},{"href":1428},[17286],{"type":41,"value":1428},{"type":36,"tag":1674,"props":17288,"children":17289},{},[17290],{"type":41,"value":17291},"Main entry point - Quick starts for both Client View and Component View",{"type":36,"tag":65,"props":17293,"children":17295},{"id":17294},"by-view-type",[17296],{"type":41,"value":17297},"By View Type",{"type":36,"tag":1893,"props":17299,"children":17301},{"id":17300},"client-view-full-page",[17302],{"type":41,"value":17303},"Client View (Full-Page)",{"type":36,"tag":1641,"props":17305,"children":17306},{},[17307,17321],{"type":36,"tag":1645,"props":17308,"children":17309},{},[17310],{"type":36,"tag":1649,"props":17311,"children":17312},{},[17313,17317],{"type":36,"tag":1653,"props":17314,"children":17315},{},[17316],{"type":41,"value":17266},{"type":36,"tag":1653,"props":17318,"children":17319},{},[17320],{"type":41,"value":17057},{"type":36,"tag":1667,"props":17322,"children":17323},{},[17324],{"type":36,"tag":1649,"props":17325,"children":17326},{},[17327,17337],{"type":36,"tag":1674,"props":17328,"children":17329},{},[17330],{"type":36,"tag":50,"props":17331,"children":17332},{},[17333],{"type":36,"tag":1228,"props":17334,"children":17335},{"href":15869},[17336],{"type":41,"value":15869},{"type":36,"tag":1674,"props":17338,"children":17339},{},[17340],{"type":41,"value":17341},"Complete Client View reference",{"type":36,"tag":1893,"props":17343,"children":17345},{"id":17344},"component-view-embeddable",[17346],{"type":41,"value":17347},"Component View (Embeddable)",{"type":36,"tag":1641,"props":17349,"children":17350},{},[17351,17365],{"type":36,"tag":1645,"props":17352,"children":17353},{},[17354],{"type":36,"tag":1649,"props":17355,"children":17356},{},[17357,17361],{"type":36,"tag":1653,"props":17358,"children":17359},{},[17360],{"type":41,"value":17266},{"type":36,"tag":1653,"props":17362,"children":17363},{},[17364],{"type":41,"value":17057},{"type":36,"tag":1667,"props":17366,"children":17367},{},[17368],{"type":36,"tag":1649,"props":17369,"children":17370},{},[17371,17381],{"type":36,"tag":1674,"props":17372,"children":17373},{},[17374],{"type":36,"tag":50,"props":17375,"children":17376},{},[17377],{"type":36,"tag":1228,"props":17378,"children":17379},{"href":1230},[17380],{"type":41,"value":1230},{"type":36,"tag":1674,"props":17382,"children":17383},{},[17384],{"type":41,"value":17385},"Complete Component View reference",{"type":36,"tag":65,"props":17387,"children":17389},{"id":17388},"concepts-1",[17390],{"type":41,"value":15891},{"type":36,"tag":1641,"props":17392,"children":17393},{},[17394,17408],{"type":36,"tag":1645,"props":17395,"children":17396},{},[17397],{"type":36,"tag":1649,"props":17398,"children":17399},{},[17400,17404],{"type":36,"tag":1653,"props":17401,"children":17402},{},[17403],{"type":41,"value":17266},{"type":36,"tag":1653,"props":17405,"children":17406},{},[17407],{"type":41,"value":17057},{"type":36,"tag":1667,"props":17409,"children":17410},{},[17411,17429],{"type":36,"tag":1649,"props":17412,"children":17413},{},[17414,17424],{"type":36,"tag":1674,"props":17415,"children":17416},{},[17417],{"type":36,"tag":50,"props":17418,"children":17419},{},[17420],{"type":36,"tag":1228,"props":17421,"children":17422},{"href":1304},[17423],{"type":41,"value":1304},{"type":36,"tag":1674,"props":17425,"children":17426},{},[17427],{"type":41,"value":17428},"HD video requirements, COOP\u002FCOEP headers",{"type":36,"tag":1649,"props":17430,"children":17431},{},[17432,17442],{"type":36,"tag":1674,"props":17433,"children":17434},{},[17435],{"type":36,"tag":50,"props":17436,"children":17437},{},[17438],{"type":36,"tag":1228,"props":17439,"children":17440},{"href":1372},[17441],{"type":41,"value":1372},{"type":36,"tag":1674,"props":17443,"children":17444},{},[17445],{"type":41,"value":17446},"Feature matrix by browser",{"type":36,"tag":65,"props":17448,"children":17450},{"id":17449},"examples-1",[17451],{"type":41,"value":15957},{"type":36,"tag":1641,"props":17453,"children":17454},{},[17455,17469],{"type":36,"tag":1645,"props":17456,"children":17457},{},[17458],{"type":36,"tag":1649,"props":17459,"children":17460},{},[17461,17465],{"type":36,"tag":1653,"props":17462,"children":17463},{},[17464],{"type":41,"value":17266},{"type":36,"tag":1653,"props":17466,"children":17467},{},[17468],{"type":41,"value":17057},{"type":36,"tag":1667,"props":17470,"children":17471},{},[17472,17488],{"type":36,"tag":1649,"props":17473,"children":17474},{},[17475,17483],{"type":36,"tag":1674,"props":17476,"children":17477},{},[17478],{"type":36,"tag":1228,"props":17479,"children":17481},{"href":17480},"examples\u002Fclient-view-basic.md",[17482],{"type":41,"value":17480},{"type":36,"tag":1674,"props":17484,"children":17485},{},[17486],{"type":41,"value":17487},"Basic Client View integration",{"type":36,"tag":1649,"props":17489,"children":17490},{},[17491,17499],{"type":36,"tag":1674,"props":17492,"children":17493},{},[17494],{"type":36,"tag":1228,"props":17495,"children":17497},{"href":17496},"examples\u002Fcomponent-view-react.md",[17498],{"type":41,"value":17496},{"type":36,"tag":1674,"props":17500,"children":17501},{},[17502],{"type":41,"value":17503},"React integration with Component View",{"type":36,"tag":65,"props":17505,"children":17507},{"id":17506},"troubleshooting-1",[17508],{"type":41,"value":15923},{"type":36,"tag":1641,"props":17510,"children":17511},{},[17512,17526],{"type":36,"tag":1645,"props":17513,"children":17514},{},[17515],{"type":36,"tag":1649,"props":17516,"children":17517},{},[17518,17522],{"type":36,"tag":1653,"props":17519,"children":17520},{},[17521],{"type":41,"value":17266},{"type":36,"tag":1653,"props":17523,"children":17524},{},[17525],{"type":41,"value":17057},{"type":36,"tag":1667,"props":17527,"children":17528},{},[17529,17547],{"type":36,"tag":1649,"props":17530,"children":17531},{},[17532,17542],{"type":36,"tag":1674,"props":17533,"children":17534},{},[17535],{"type":36,"tag":50,"props":17536,"children":17537},{},[17538],{"type":36,"tag":1228,"props":17539,"children":17540},{"href":15935},[17541],{"type":41,"value":15935},{"type":36,"tag":1674,"props":17543,"children":17544},{},[17545],{"type":41,"value":17546},"All SDK error codes (3000-10000 range)",{"type":36,"tag":1649,"props":17548,"children":17549},{},[17550,17560],{"type":36,"tag":1674,"props":17551,"children":17552},{},[17553],{"type":36,"tag":50,"props":17554,"children":17555},{},[17556],{"type":36,"tag":1228,"props":17557,"children":17558},{"href":11444},[17559],{"type":41,"value":11444},{"type":36,"tag":1674,"props":17561,"children":17562},{},[17563],{"type":41,"value":17564},"Quick diagnostics and fixes",{"type":36,"tag":65,"props":17566,"children":17568},{"id":17567},"by-topic",[17569],{"type":41,"value":17570},"By Topic",{"type":36,"tag":1893,"props":17572,"children":17574},{"id":17573},"authentication",[17575],{"type":41,"value":17576},"Authentication",{"type":36,"tag":1131,"props":17578,"children":17579},{},[17580,17591],{"type":36,"tag":1135,"props":17581,"children":17582},{},[17583,17589],{"type":36,"tag":1228,"props":17584,"children":17586},{"href":17585},"SKILL.md#authentication-endpoint-required",[17587],{"type":41,"value":17588},"SKILL.md#authentication-endpoint",{"type":41,"value":17590}," - Signature generation",{"type":36,"tag":1135,"props":17592,"children":17593},{},[17594,17599],{"type":36,"tag":1228,"props":17595,"children":17597},{"href":17596},"SKILL.md#authorization-requirements-2026-update",[17598],{"type":41,"value":17596},{"type":41,"value":17600}," - OBF tokens",{"type":36,"tag":1893,"props":17602,"children":17604},{"id":17603},"hd-video-performance",[17605],{"type":41,"value":17606},"HD Video & Performance",{"type":36,"tag":1131,"props":17608,"children":17609},{},[17610],{"type":36,"tag":1135,"props":17611,"children":17612},{},[17613,17617],{"type":36,"tag":1228,"props":17614,"children":17615},{"href":1304},[17616],{"type":41,"value":1304},{"type":41,"value":17618}," - Enable 720p\u002F1080p",{"type":36,"tag":1893,"props":17620,"children":17622},{"id":17621},"events-callbacks",[17623],{"type":41,"value":17624},"Events & Callbacks",{"type":36,"tag":1131,"props":17626,"children":17627},{},[17628,17638],{"type":36,"tag":1135,"props":17629,"children":17630},{},[17631,17636],{"type":36,"tag":1228,"props":17632,"children":17634},{"href":17633},"SKILL.md#event-listeners-client-view",[17635],{"type":41,"value":17633},{"type":41,"value":17637}," - Client View events",{"type":36,"tag":1135,"props":17639,"children":17640},{},[17641,17646],{"type":36,"tag":1228,"props":17642,"children":17644},{"href":17643},"SKILL.md#event-listeners-component-view",[17645],{"type":41,"value":17643},{"type":41,"value":17647}," - Component View events",{"type":36,"tag":1893,"props":17649,"children":17651},{"id":17650},"government-zfg",[17652],{"type":41,"value":17653},"Government (ZFG)",{"type":36,"tag":1131,"props":17655,"children":17656},{},[17657],{"type":36,"tag":1135,"props":17658,"children":17659},{},[17660,17665],{"type":36,"tag":1228,"props":17661,"children":17663},{"href":17662},"SKILL.md#zoom-for-government-zfg",[17664],{"type":41,"value":17662},{"type":41,"value":17666}," - ZFG configuration",{"type":36,"tag":1893,"props":17668,"children":17670},{"id":17669},"china-cdn-1",[17671],{"type":41,"value":12258},{"type":36,"tag":1131,"props":17673,"children":17674},{},[17675],{"type":36,"tag":1135,"props":17676,"children":17677},{},[17678,17683],{"type":36,"tag":1228,"props":17679,"children":17681},{"href":17680},"SKILL.md#china-cdn",[17682],{"type":41,"value":17680},{"type":41,"value":17684}," - China-specific CDN",{"type":36,"tag":65,"props":17686,"children":17688},{"id":17687},"quick-reference",[17689],{"type":41,"value":17690},"Quick Reference",{"type":36,"tag":1893,"props":17692,"children":17694},{"id":17693},"client-view-vs-component-view-1",[17695],{"type":41,"value":1267},{"type":36,"tag":1641,"props":17697,"children":17698},{},[17699,17717],{"type":36,"tag":1645,"props":17700,"children":17701},{},[17702],{"type":36,"tag":1649,"props":17703,"children":17704},{},[17705,17709,17713],{"type":36,"tag":1653,"props":17706,"children":17707},{},[17708],{"type":41,"value":1657},{"type":36,"tag":1653,"props":17710,"children":17711},{},[17712],{"type":41,"value":54},{"type":36,"tag":1653,"props":17714,"children":17715},{},[17716],{"type":41,"value":61},{"type":36,"tag":1667,"props":17718,"children":17719},{},[17720,17746,17764,17792],{"type":36,"tag":1649,"props":17721,"children":17722},{},[17723,17730,17738],{"type":36,"tag":1674,"props":17724,"children":17725},{},[17726],{"type":36,"tag":50,"props":17727,"children":17728},{},[17729],{"type":41,"value":1681},{"type":36,"tag":1674,"props":17731,"children":17732},{},[17733],{"type":36,"tag":102,"props":17734,"children":17736},{"className":17735},[],[17737],{"type":41,"value":1690},{"type":36,"tag":1674,"props":17739,"children":17740},{},[17741],{"type":36,"tag":102,"props":17742,"children":17744},{"className":17743},[],[17745],{"type":41,"value":1701},{"type":36,"tag":1649,"props":17747,"children":17748},{},[17749,17756,17760],{"type":36,"tag":1674,"props":17750,"children":17751},{},[17752],{"type":36,"tag":50,"props":17753,"children":17754},{},[17755],{"type":41,"value":1714},{"type":36,"tag":1674,"props":17757,"children":17758},{},[17759],{"type":41,"value":1719},{"type":36,"tag":1674,"props":17761,"children":17762},{},[17763],{"type":41,"value":1724},{"type":36,"tag":1649,"props":17765,"children":17766},{},[17767,17774,17783],{"type":36,"tag":1674,"props":17768,"children":17769},{},[17770],{"type":36,"tag":50,"props":17771,"children":17772},{},[17773],{"type":41,"value":1756},{"type":36,"tag":1674,"props":17775,"children":17776},{},[17777,17782],{"type":36,"tag":102,"props":17778,"children":17780},{"className":17779},[],[17781],{"type":41,"value":1163},{"type":41,"value":1766},{"type":36,"tag":1674,"props":17784,"children":17785},{},[17786,17791],{"type":36,"tag":102,"props":17787,"children":17789},{"className":17788},[],[17790],{"type":41,"value":1155},{"type":41,"value":1776},{"type":36,"tag":1649,"props":17793,"children":17794},{},[17795,17802,17810],{"type":36,"tag":1674,"props":17796,"children":17797},{},[17798],{"type":36,"tag":50,"props":17799,"children":17800},{},[17801],{"type":41,"value":1787},{"type":36,"tag":1674,"props":17803,"children":17804},{},[17805],{"type":36,"tag":102,"props":17806,"children":17808},{"className":17807},[],[17809],{"type":41,"value":1796},{"type":36,"tag":1674,"props":17811,"children":17812},{},[17813,17818,17819],{"type":36,"tag":102,"props":17814,"children":17816},{"className":17815},[],[17817],{"type":41,"value":1805},{"type":41,"value":1520},{"type":36,"tag":102,"props":17820,"children":17822},{"className":17821},[],[17823],{"type":41,"value":1812},{"type":36,"tag":1893,"props":17825,"children":17827},{"id":17826},"key-gotchas",[17828],{"type":41,"value":17829},"Key Gotchas",{"type":36,"tag":1249,"props":17831,"children":17832},{},[17833,17866,17890],{"type":36,"tag":1135,"props":17834,"children":17835},{},[17836,17841],{"type":36,"tag":50,"props":17837,"children":17838},{},[17839],{"type":41,"value":17840},"Password spelling differs between views!",{"type":36,"tag":1131,"props":17842,"children":17843},{},[17844,17855],{"type":36,"tag":1135,"props":17845,"children":17846},{},[17847,17849,17854],{"type":41,"value":17848},"Client View: ",{"type":36,"tag":102,"props":17850,"children":17852},{"className":17851},[],[17853],{"type":41,"value":1163},{"type":41,"value":1766},{"type":36,"tag":1135,"props":17856,"children":17857},{},[17858,17860,17865],{"type":41,"value":17859},"Component View: ",{"type":36,"tag":102,"props":17861,"children":17863},{"className":17862},[],[17864],{"type":41,"value":1155},{"type":41,"value":1776},{"type":36,"tag":1135,"props":17867,"children":17868},{},[17869,17874],{"type":36,"tag":50,"props":17870,"children":17871},{},[17872],{"type":41,"value":17873},"SharedArrayBuffer required for HD features",{"type":36,"tag":1131,"props":17875,"children":17876},{},[17877,17881,17886],{"type":36,"tag":1135,"props":17878,"children":17879},{},[17880],{"type":41,"value":10641},{"type":36,"tag":1135,"props":17882,"children":17883},{},[17884],{"type":41,"value":17885},"Gallery view (25 videos)",{"type":36,"tag":1135,"props":17887,"children":17888},{},[17889],{"type":41,"value":10651},{"type":36,"tag":1135,"props":17891,"children":17892},{},[17893,17898],{"type":36,"tag":50,"props":17894,"children":17895},{},[17896],{"type":41,"value":17897},"March 2026 Authorization Change",{"type":36,"tag":1131,"props":17899,"children":17900},{},[17901],{"type":36,"tag":1135,"props":17902,"children":17903},{},[17904],{"type":41,"value":17905},"Apps joining external meetings need OBF or ZAK tokens",{"type":36,"tag":65,"props":17907,"children":17909},{"id":17908},"external-resources",[17910],{"type":41,"value":17911},"External Resources",{"type":36,"tag":1131,"props":17913,"children":17914},{},[17915,17928,17942,17956],{"type":36,"tag":1135,"props":17916,"children":17917},{},[17918,17922,17923],{"type":36,"tag":50,"props":17919,"children":17920},{},[17921],{"type":41,"value":17149},{"type":41,"value":11441},{"type":36,"tag":1228,"props":17924,"children":17926},{"href":17153,"rel":17925},[1449],[17927],{"type":41,"value":17153},{"type":36,"tag":1135,"props":17929,"children":17930},{},[17931,17936,17937],{"type":36,"tag":50,"props":17932,"children":17933},{},[17934],{"type":41,"value":17935},"Client View API",{"type":41,"value":11441},{"type":36,"tag":1228,"props":17938,"children":17940},{"href":17167,"rel":17939},[1449],[17941],{"type":41,"value":17167},{"type":36,"tag":1135,"props":17943,"children":17944},{},[17945,17950,17951],{"type":36,"tag":50,"props":17946,"children":17947},{},[17948],{"type":41,"value":17949},"Component View API",{"type":41,"value":11441},{"type":36,"tag":1228,"props":17952,"children":17954},{"href":17181,"rel":17953},[1449],[17955],{"type":41,"value":17181},{"type":36,"tag":1135,"props":17957,"children":17958},{},[17959,17964,17965],{"type":36,"tag":50,"props":17960,"children":17961},{},[17962],{"type":41,"value":17963},"GitHub samples",{"type":41,"value":11441},{"type":36,"tag":1228,"props":17966,"children":17968},{"href":17069,"rel":17967},[1449],[17969],{"type":41,"value":17069},{"type":36,"tag":65,"props":17971,"children":17973},{"id":17972},"operations",[17974],{"type":41,"value":17975},"Operations",{"type":36,"tag":1131,"props":17977,"children":17978},{},[17979],{"type":36,"tag":1135,"props":17980,"children":17981},{},[17982,17987],{"type":36,"tag":1228,"props":17983,"children":17985},{"href":17984},"RUNBOOK.md",[17986],{"type":41,"value":17984},{"type":41,"value":17988}," - 5-minute preflight and debugging checklist.",{"type":36,"tag":13063,"props":17990,"children":17991},{},[17992],{"type":41,"value":17993},"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":17995,"total":18198},[17996,18017,18038,18055,18071,18090,18109,18125,18141,18155,18167,18182],{"slug":17997,"name":17997,"fn":17998,"description":17999,"org":18000,"tags":18001,"stars":18014,"repoUrl":18015,"updatedAt":18016},"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},[18002,18005,18008,18011],{"name":18003,"slug":18004,"type":15},"Documents","documents",{"name":18006,"slug":18007,"type":15},"Healthcare","healthcare",{"name":18009,"slug":18010,"type":15},"Insurance","insurance",{"name":18012,"slug":18013,"type":15},"Regulatory Compliance","regulatory-compliance",28169,"https:\u002F\u002Fgithub.com\u002Fopenai\u002Fopenai-agents-python","2026-04-16T05:11:39.180399",{"slug":18018,"name":18018,"fn":18019,"description":18020,"org":18021,"tags":18022,"stars":18035,"repoUrl":18036,"updatedAt":18037},"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},[18023,18026,18028,18031,18034],{"name":18024,"slug":18025,"type":15},".NET","dotnet",{"name":18027,"slug":18018,"type":15},"ASP.NET Core",{"name":18029,"slug":18030,"type":15},"Blazor","blazor",{"name":18032,"slug":18033,"type":15},"C#","csharp",{"name":13,"slug":14,"type":15},23787,"https:\u002F\u002Fgithub.com\u002Fopenai\u002Fskills","2026-04-12T05:07:02.819491",{"slug":18039,"name":18039,"fn":18040,"description":18041,"org":18042,"tags":18043,"stars":18035,"repoUrl":18036,"updatedAt":18054},"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},[18044,18047,18050,18053],{"name":18045,"slug":18046,"type":15},"Apps SDK","apps-sdk",{"name":18048,"slug":18049,"type":15},"ChatGPT","chatgpt",{"name":18051,"slug":18052,"type":15},"MCP","mcp",{"name":9,"slug":8,"type":15},"2026-04-12T05:07:05.468097",{"slug":18056,"name":18056,"fn":18057,"description":18058,"org":18059,"tags":18060,"stars":18035,"repoUrl":18036,"updatedAt":18070},"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},[18061,18064,18067],{"name":18062,"slug":18063,"type":15},"API Development","api-development",{"name":18065,"slug":18066,"type":15},"CLI","cli",{"name":18068,"slug":18069,"type":15},"Codex","codex","2026-04-12T05:07:04.132762",{"slug":18072,"name":18072,"fn":18073,"description":18074,"org":18075,"tags":18076,"stars":18035,"repoUrl":18036,"updatedAt":18089},"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},[18077,18080,18083,18086],{"name":18078,"slug":18079,"type":15},"Cloudflare","cloudflare",{"name":18081,"slug":18082,"type":15},"Cloudflare Pages","cloudflare-pages",{"name":18084,"slug":18085,"type":15},"Cloudflare Workers","cloudflare-workers",{"name":18087,"slug":18088,"type":15},"Deployment","deployment","2026-04-12T05:07:14.275118",{"slug":18091,"name":18091,"fn":18092,"description":18093,"org":18094,"tags":18095,"stars":18035,"repoUrl":18036,"updatedAt":18108},"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},[18096,18099,18102,18105],{"name":18097,"slug":18098,"type":15},"Productivity","productivity",{"name":18100,"slug":18101,"type":15},"Project Management","project-management",{"name":18103,"slug":18104,"type":15},"Strategy","strategy",{"name":18106,"slug":18107,"type":15},"Task Management","task-management","2026-05-23T06:17:16.870838",{"slug":18110,"name":18110,"fn":18111,"description":18112,"org":18113,"tags":18114,"stars":18035,"repoUrl":18036,"updatedAt":18124},"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},[18115,18118,18120,18123],{"name":18116,"slug":18117,"type":15},"Design","design",{"name":18119,"slug":18110,"type":15},"Figma",{"name":18121,"slug":18122,"type":15},"Frontend","frontend",{"name":18051,"slug":18052,"type":15},"2026-04-12T05:06:47.939943",{"slug":18126,"name":18126,"fn":18127,"description":18128,"org":18129,"tags":18130,"stars":18035,"repoUrl":18036,"updatedAt":18140},"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},[18131,18132,18135,18136,18137],{"name":18116,"slug":18117,"type":15},{"name":18133,"slug":18134,"type":15},"Design System","design-system",{"name":18119,"slug":18110,"type":15},{"name":18121,"slug":18122,"type":15},{"name":18138,"slug":18139,"type":15},"UI Components","ui-components","2026-05-10T05:59:52.971881",{"slug":18142,"name":18142,"fn":18143,"description":18144,"org":18145,"tags":18146,"stars":18035,"repoUrl":18036,"updatedAt":18154},"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},[18147,18148,18149,18152,18153],{"name":18116,"slug":18117,"type":15},{"name":18133,"slug":18134,"type":15},{"name":18150,"slug":18151,"type":15},"Documentation","documentation",{"name":18119,"slug":18110,"type":15},{"name":18121,"slug":18122,"type":15},"2026-05-16T06:07:47.821474",{"slug":18156,"name":18156,"fn":18157,"description":18158,"org":18159,"tags":18160,"stars":18035,"repoUrl":18036,"updatedAt":18166},"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},[18161,18162,18163,18164,18165],{"name":18116,"slug":18117,"type":15},{"name":18119,"slug":18110,"type":15},{"name":18121,"slug":18122,"type":15},{"name":18138,"slug":18139,"type":15},{"name":13,"slug":14,"type":15},"2026-05-16T06:07:40.583615",{"slug":18168,"name":18168,"fn":18169,"description":18170,"org":18171,"tags":18172,"stars":18035,"repoUrl":18036,"updatedAt":18181},"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},[18173,18176,18177,18180],{"name":18174,"slug":18175,"type":15},"Animation","animation",{"name":18068,"slug":18069,"type":15},{"name":18178,"slug":18179,"type":15},"Creative","creative",{"name":18116,"slug":18117,"type":15},"2026-05-02T05:31:48.48485",{"slug":18183,"name":18183,"fn":18184,"description":18185,"org":18186,"tags":18187,"stars":18035,"repoUrl":18036,"updatedAt":18197},"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},[18188,18189,18190,18193,18196],{"name":18178,"slug":18179,"type":15},{"name":18116,"slug":18117,"type":15},{"name":18191,"slug":18192,"type":15},"Image Generation","image-generation",{"name":18194,"slug":18195,"type":15},"Images","images",{"name":9,"slug":8,"type":15},"2026-05-15T06:23:24.312127",675,{"items":18200,"total":18312},[18201,18217,18233,18245,18263,18280,18300],{"slug":18202,"name":18202,"fn":18203,"description":18204,"org":18205,"tags":18206,"stars":19,"repoUrl":20,"updatedAt":21},"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},[18207,18210,18213,18216],{"name":18208,"slug":18209,"type":15},"Accessibility","accessibility",{"name":18211,"slug":18212,"type":15},"Charts","charts",{"name":18214,"slug":18215,"type":15},"Data Visualization","data-visualization",{"name":18116,"slug":18117,"type":15},{"slug":18218,"name":18218,"fn":18219,"description":18220,"org":18221,"tags":18222,"stars":19,"repoUrl":20,"updatedAt":18232},"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},[18223,18226,18229],{"name":18224,"slug":18225,"type":15},"Agents","agents",{"name":18227,"slug":18228,"type":15},"Browser Automation","browser-automation",{"name":18230,"slug":18231,"type":15},"Testing","testing","2026-04-06T18:41:03.44016",{"slug":18234,"name":18234,"fn":18235,"description":18236,"org":18237,"tags":18238,"stars":19,"repoUrl":20,"updatedAt":18244},"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},[18239,18240,18243],{"name":18227,"slug":18228,"type":15},{"name":18241,"slug":18242,"type":15},"Local Development","local-development",{"name":18230,"slug":18231,"type":15},"2026-04-06T18:41:17.526867",{"slug":18246,"name":18246,"fn":18247,"description":18248,"org":18249,"tags":18250,"stars":19,"repoUrl":20,"updatedAt":18262},"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},[18251,18252,18253,18256,18259],{"name":18224,"slug":18225,"type":15},{"name":18084,"slug":18085,"type":15},{"name":18254,"slug":18255,"type":15},"SDK","sdk",{"name":18257,"slug":18258,"type":15},"Serverless","serverless",{"name":18260,"slug":18261,"type":15},"WebSockets","websockets","2026-04-06T18:39:51.717063",{"slug":18264,"name":18264,"fn":18265,"description":18266,"org":18267,"tags":18268,"stars":19,"repoUrl":20,"updatedAt":18279},"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},[18269,18270,18272,18275,18276],{"name":18121,"slug":18122,"type":15},{"name":18271,"slug":13904,"type":15},"React",{"name":18273,"slug":18274,"type":15},"shadcn\u002Fui","shadcn-ui",{"name":18138,"slug":18139,"type":15},{"name":18277,"slug":18278,"type":15},"Vercel","vercel","2026-04-06T18:40:59.619419",{"slug":18281,"name":18281,"fn":18282,"description":18283,"org":18284,"tags":18285,"stars":19,"repoUrl":20,"updatedAt":18299},"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},[18286,18289,18292,18295,18298],{"name":18287,"slug":18288,"type":15},"AI Infrastructure","ai-infrastructure",{"name":18290,"slug":18291,"type":15},"Cost Optimization","cost-optimization",{"name":18293,"slug":18294,"type":15},"LLM","llm",{"name":18296,"slug":18297,"type":15},"Performance","performance",{"name":18277,"slug":18278,"type":15},"2026-04-06T18:40:44.377464",{"slug":18301,"name":18301,"fn":18302,"description":18303,"org":18304,"tags":18305,"stars":19,"repoUrl":20,"updatedAt":18311},"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},[18306,18307,18310],{"name":18290,"slug":18291,"type":15},{"name":18308,"slug":18309,"type":15},"Database","database",{"name":18293,"slug":18294,"type":15},"2026-04-06T18:41:08.513425",600]