[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-anthropic-zoom-meeting-sdk-web":3,"mdc--b9vhb9-key":37,"related-org-anthropic-zoom-meeting-sdk-web":18018,"related-repo-anthropic-zoom-meeting-sdk-web":18203},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":12,"stars":26,"repoUrl":27,"updatedAt":28,"license":29,"forks":30,"topics":31,"repo":32,"sourceUrl":35,"mdContent":36},"zoom-meeting-sdk-web","embed Zoom meeting capabilities into 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":11},"anthropic","Anthropic","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fanthropic.png","anthropics",[13,17,20,23],{"name":14,"slug":15,"type":16},"Web Development","web-development","tag",{"name":18,"slug":19,"type":16},"SDK","sdk",{"name":21,"slug":22,"type":16},"Zoom","zoom",{"name":24,"slug":25,"type":16},"Frontend","frontend",22885,"https:\u002F\u002Fgithub.com\u002Fanthropics\u002Fknowledge-work-plugins","2026-04-10T04:57:42.386958",null,2736,[],{"repoUrl":27,"stars":26,"forks":30,"topics":33,"description":34},[],"Open source repository of plugins primarily intended for knowledge workers to use in Claude Cowork","https:\u002F\u002Fgithub.com\u002Fanthropics\u002Fknowledge-work-plugins\u002Ftree\u002FHEAD\u002Fpartner-built\u002Fzoom-plugin\u002Fskills\u002Fmeeting-sdk\u002Fweb","---\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.\nuser-invocable: false\ntriggers:\n  - \"embed meeting web\"\n  - \"meeting in react\"\n  - \"meeting in nextjs\"\n  - \"meeting in vue\"\n  - \"meeting in angular\"\n  - \"component view\"\n  - \"client view\"\n  - \"web meeting sdk\"\n  - \"javascript meeting\"\n  - \"sharedarraybuffer\"\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":38,"body":51},{"name":4,"description":6,"user-invocable":39,"triggers":40},false,[41,42,43,44,45,46,47,48,49,50],"embed meeting web","meeting in react","meeting in nextjs","meeting in vue","meeting in angular","component view","client view","web meeting sdk","javascript meeting","sharedarraybuffer",{"type":52,"children":53},"root",[54,62,83,90,102,107,112,125,130,1144,1149,1194,1200,1218,1241,1253,1259,1267,1344,1352,1406,1414,1450,1456,1487,1548,1554,1573,1627,1644,1649,1659,1911,1918,1926,1944,1952,1975,1981,1987,2019,2024,2386,2415,2421,3606,3612,4280,4286,4296,4409,4415,4420,4494,4514,4520,4529,4535,4541,5140,5146,5506,5512,7452,7458,8324,8330,8336,9174,9180,9442,9448,10315,10321,10647,10653,10658,10681,10687,10696,10702,10929,10935,10945,10963,10969,10981,11129,11137,11313,11319,11456,11471,11477,11688,11693,11703,11709,11729,11735,11905,11911,11917,12006,12012,12020,12158,12166,12277,12283,12354,12360,12366,12378,13673,13679,13856,13862,15701,15707,15755,15858,15864,15870,15910,15916,15942,15948,15976,15982,16009,16015,16021,16544,16550,16825,16831,17057,17063,17157,17163,17224,17228,17238,17254,17260,17266,17271,17277,17316,17322,17328,17366,17372,17410,17415,17471,17476,17528,17533,17589,17595,17601,17625,17631,17643,17649,17672,17678,17691,17696,17709,17715,17720,17848,17854,17930,17936,17994,18000,18013],{"type":55,"tag":56,"props":57,"children":58},"element","h1",{"id":4},[59],{"type":60,"value":61},"text","Zoom Meeting SDK (Web)",{"type":55,"tag":63,"props":64,"children":65},"p",{},[66,68,74,76,81],{"type":60,"value":67},"Embed Zoom meeting capabilities into web applications with two integration options: ",{"type":55,"tag":69,"props":70,"children":71},"strong",{},[72],{"type":60,"value":73},"Client View",{"type":60,"value":75}," (full-page) or ",{"type":55,"tag":69,"props":77,"children":78},{},[79],{"type":60,"value":80},"Component View",{"type":60,"value":82}," (embeddable).",{"type":55,"tag":84,"props":85,"children":87},"h2",{"id":86},"how-to-implement-a-custom-video-user-interface-for-a-zoom-meeting-in-a-web-app",[88],{"type":60,"value":89},"How to Implement a Custom Video User Interface for a Zoom Meeting in a Web App",{"type":55,"tag":63,"props":91,"children":92},{},[93,95,100],{"type":60,"value":94},"Use ",{"type":55,"tag":69,"props":96,"children":97},{},[98],{"type":60,"value":99},"Meeting SDK Web Component View",{"type":60,"value":101},".",{"type":55,"tag":63,"props":103,"children":104},{},[105],{"type":60,"value":106},"Do not use Video SDK for this question unless the user is explicitly building a non-meeting session\nproduct.",{"type":55,"tag":63,"props":108,"children":109},{},[110],{"type":60,"value":111},"Minimal architecture:",{"type":55,"tag":113,"props":114,"children":119},"pre",{"className":115,"code":117,"language":60,"meta":118},[116],"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","",[120],{"type":55,"tag":121,"props":122,"children":123},"code",{"__ignoreMap":118},[124],{"type":60,"value":117},{"type":55,"tag":63,"props":126,"children":127},{},[128],{"type":60,"value":129},"Minimal implementation:",{"type":55,"tag":113,"props":131,"children":135},{"className":132,"code":133,"language":134,"meta":118,"style":118},"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",[136],{"type":55,"tag":121,"props":137,"children":138},{"__ignoreMap":118},[139,184,194,238,246,337,392,423,476,549,566,574,672,680,739,747,779,832,862,885,906,923,992,1001,1017,1025,1054,1067,1080,1093,1106,1119,1135],{"type":55,"tag":140,"props":141,"children":144},"span",{"class":142,"line":143},"line",1,[145,151,157,162,168,174,179],{"type":55,"tag":140,"props":146,"children":148},{"style":147},"--shiki-light:#39ADB5;--shiki-light-font-style:italic;--shiki-default:#89DDFF;--shiki-default-font-style:italic;--shiki-dark:#89DDFF;--shiki-dark-font-style:italic",[149],{"type":60,"value":150},"import",{"type":55,"tag":140,"props":152,"children":154},{"style":153},"--shiki-light:#90A4AE;--shiki-default:#EEFFFF;--shiki-dark:#BABED8",[155],{"type":60,"value":156}," ZoomMtgEmbedded ",{"type":55,"tag":140,"props":158,"children":159},{"style":147},[160],{"type":60,"value":161},"from",{"type":55,"tag":140,"props":163,"children":165},{"style":164},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[166],{"type":60,"value":167}," '",{"type":55,"tag":140,"props":169,"children":171},{"style":170},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[172],{"type":60,"value":173},"@zoom\u002Fmeetingsdk\u002Fembedded",{"type":55,"tag":140,"props":175,"children":176},{"style":164},[177],{"type":60,"value":178},"'",{"type":55,"tag":140,"props":180,"children":181},{"style":164},[182],{"type":60,"value":183},";\n",{"type":55,"tag":140,"props":185,"children":187},{"class":142,"line":186},2,[188],{"type":55,"tag":140,"props":189,"children":191},{"emptyLinePlaceholder":190},true,[192],{"type":60,"value":193},"\n",{"type":55,"tag":140,"props":195,"children":197},{"class":142,"line":196},3,[198,204,209,214,219,223,229,234],{"type":55,"tag":140,"props":199,"children":201},{"style":200},"--shiki-light:#9C3EDA;--shiki-default:#C792EA;--shiki-dark:#C792EA",[202],{"type":60,"value":203},"const",{"type":55,"tag":140,"props":205,"children":206},{"style":153},[207],{"type":60,"value":208}," client ",{"type":55,"tag":140,"props":210,"children":211},{"style":164},[212],{"type":60,"value":213},"=",{"type":55,"tag":140,"props":215,"children":216},{"style":153},[217],{"type":60,"value":218}," ZoomMtgEmbedded",{"type":55,"tag":140,"props":220,"children":221},{"style":164},[222],{"type":60,"value":101},{"type":55,"tag":140,"props":224,"children":226},{"style":225},"--shiki-light:#6182B8;--shiki-default:#82AAFF;--shiki-dark:#82AAFF",[227],{"type":60,"value":228},"createClient",{"type":55,"tag":140,"props":230,"children":231},{"style":153},[232],{"type":60,"value":233},"()",{"type":55,"tag":140,"props":235,"children":236},{"style":164},[237],{"type":60,"value":183},{"type":55,"tag":140,"props":239,"children":241},{"class":142,"line":240},4,[242],{"type":55,"tag":140,"props":243,"children":244},{"emptyLinePlaceholder":190},[245],{"type":60,"value":193},{"type":55,"tag":140,"props":247,"children":249},{"class":142,"line":248},5,[250,255,260,265,270,275,281,286,292,297,302,306,310,314,319,323,327,332],{"type":55,"tag":140,"props":251,"children":252},{"style":147},[253],{"type":60,"value":254},"export",{"type":55,"tag":140,"props":256,"children":257},{"style":200},[258],{"type":60,"value":259}," async",{"type":55,"tag":140,"props":261,"children":262},{"style":200},[263],{"type":60,"value":264}," function",{"type":55,"tag":140,"props":266,"children":267},{"style":225},[268],{"type":60,"value":269}," startEmbeddedMeeting",{"type":55,"tag":140,"props":271,"children":272},{"style":164},[273],{"type":60,"value":274},"(",{"type":55,"tag":140,"props":276,"children":278},{"style":277},"--shiki-light:#90A4AE;--shiki-light-font-style:italic;--shiki-default:#EEFFFF;--shiki-default-font-style:italic;--shiki-dark:#BABED8;--shiki-dark-font-style:italic",[279],{"type":60,"value":280},"meetingNumber",{"type":55,"tag":140,"props":282,"children":283},{"style":164},[284],{"type":60,"value":285},":",{"type":55,"tag":140,"props":287,"children":289},{"style":288},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[290],{"type":60,"value":291}," string",{"type":55,"tag":140,"props":293,"children":294},{"style":164},[295],{"type":60,"value":296},",",{"type":55,"tag":140,"props":298,"children":299},{"style":277},[300],{"type":60,"value":301}," userName",{"type":55,"tag":140,"props":303,"children":304},{"style":164},[305],{"type":60,"value":285},{"type":55,"tag":140,"props":307,"children":308},{"style":288},[309],{"type":60,"value":291},{"type":55,"tag":140,"props":311,"children":312},{"style":164},[313],{"type":60,"value":296},{"type":55,"tag":140,"props":315,"children":316},{"style":277},[317],{"type":60,"value":318}," password",{"type":55,"tag":140,"props":320,"children":321},{"style":164},[322],{"type":60,"value":285},{"type":55,"tag":140,"props":324,"children":325},{"style":288},[326],{"type":60,"value":291},{"type":55,"tag":140,"props":328,"children":329},{"style":164},[330],{"type":60,"value":331},")",{"type":55,"tag":140,"props":333,"children":334},{"style":164},[335],{"type":60,"value":336}," {\n",{"type":55,"tag":140,"props":338,"children":340},{"class":142,"line":339},6,[341,346,351,356,361,366,371,375,380,384,388],{"type":55,"tag":140,"props":342,"children":343},{"style":200},[344],{"type":60,"value":345},"  const",{"type":55,"tag":140,"props":347,"children":348},{"style":153},[349],{"type":60,"value":350}," sigRes",{"type":55,"tag":140,"props":352,"children":353},{"style":164},[354],{"type":60,"value":355}," =",{"type":55,"tag":140,"props":357,"children":358},{"style":147},[359],{"type":60,"value":360}," await",{"type":55,"tag":140,"props":362,"children":363},{"style":225},[364],{"type":60,"value":365}," fetch",{"type":55,"tag":140,"props":367,"children":369},{"style":368},"--shiki-light:#E53935;--shiki-default:#F07178;--shiki-dark:#F07178",[370],{"type":60,"value":274},{"type":55,"tag":140,"props":372,"children":373},{"style":164},[374],{"type":60,"value":178},{"type":55,"tag":140,"props":376,"children":377},{"style":170},[378],{"type":60,"value":379},"\u002Fapi\u002Fsignature",{"type":55,"tag":140,"props":381,"children":382},{"style":164},[383],{"type":60,"value":178},{"type":55,"tag":140,"props":385,"children":386},{"style":164},[387],{"type":60,"value":296},{"type":55,"tag":140,"props":389,"children":390},{"style":164},[391],{"type":60,"value":336},{"type":55,"tag":140,"props":393,"children":395},{"class":142,"line":394},7,[396,401,405,409,414,418],{"type":55,"tag":140,"props":397,"children":398},{"style":368},[399],{"type":60,"value":400},"    method",{"type":55,"tag":140,"props":402,"children":403},{"style":164},[404],{"type":60,"value":285},{"type":55,"tag":140,"props":406,"children":407},{"style":164},[408],{"type":60,"value":167},{"type":55,"tag":140,"props":410,"children":411},{"style":170},[412],{"type":60,"value":413},"POST",{"type":55,"tag":140,"props":415,"children":416},{"style":164},[417],{"type":60,"value":178},{"type":55,"tag":140,"props":419,"children":420},{"style":164},[421],{"type":60,"value":422},",\n",{"type":55,"tag":140,"props":424,"children":426},{"class":142,"line":425},8,[427,432,436,441,445,450,454,458,462,467,471],{"type":55,"tag":140,"props":428,"children":429},{"style":368},[430],{"type":60,"value":431},"    headers",{"type":55,"tag":140,"props":433,"children":434},{"style":164},[435],{"type":60,"value":285},{"type":55,"tag":140,"props":437,"children":438},{"style":164},[439],{"type":60,"value":440}," {",{"type":55,"tag":140,"props":442,"children":443},{"style":164},[444],{"type":60,"value":167},{"type":55,"tag":140,"props":446,"children":447},{"style":368},[448],{"type":60,"value":449},"Content-Type",{"type":55,"tag":140,"props":451,"children":452},{"style":164},[453],{"type":60,"value":178},{"type":55,"tag":140,"props":455,"children":456},{"style":164},[457],{"type":60,"value":285},{"type":55,"tag":140,"props":459,"children":460},{"style":164},[461],{"type":60,"value":167},{"type":55,"tag":140,"props":463,"children":464},{"style":170},[465],{"type":60,"value":466},"application\u002Fjson",{"type":55,"tag":140,"props":468,"children":469},{"style":164},[470],{"type":60,"value":178},{"type":55,"tag":140,"props":472,"children":473},{"style":164},[474],{"type":60,"value":475}," },\n",{"type":55,"tag":140,"props":477,"children":479},{"class":142,"line":478},9,[480,485,489,494,498,503,507,512,517,521,526,530,536,541,545],{"type":55,"tag":140,"props":481,"children":482},{"style":368},[483],{"type":60,"value":484},"    body",{"type":55,"tag":140,"props":486,"children":487},{"style":164},[488],{"type":60,"value":285},{"type":55,"tag":140,"props":490,"children":491},{"style":153},[492],{"type":60,"value":493}," JSON",{"type":55,"tag":140,"props":495,"children":496},{"style":164},[497],{"type":60,"value":101},{"type":55,"tag":140,"props":499,"children":500},{"style":225},[501],{"type":60,"value":502},"stringify",{"type":55,"tag":140,"props":504,"children":505},{"style":368},[506],{"type":60,"value":274},{"type":55,"tag":140,"props":508,"children":509},{"style":164},[510],{"type":60,"value":511},"{",{"type":55,"tag":140,"props":513,"children":514},{"style":153},[515],{"type":60,"value":516}," meetingNumber",{"type":55,"tag":140,"props":518,"children":519},{"style":164},[520],{"type":60,"value":296},{"type":55,"tag":140,"props":522,"children":523},{"style":368},[524],{"type":60,"value":525}," role",{"type":55,"tag":140,"props":527,"children":528},{"style":164},[529],{"type":60,"value":285},{"type":55,"tag":140,"props":531,"children":533},{"style":532},"--shiki-light:#F76D47;--shiki-default:#F78C6C;--shiki-dark:#F78C6C",[534],{"type":60,"value":535}," 0",{"type":55,"tag":140,"props":537,"children":538},{"style":164},[539],{"type":60,"value":540}," }",{"type":55,"tag":140,"props":542,"children":543},{"style":368},[544],{"type":60,"value":331},{"type":55,"tag":140,"props":546,"children":547},{"style":164},[548],{"type":60,"value":422},{"type":55,"tag":140,"props":550,"children":552},{"class":142,"line":551},10,[553,558,562],{"type":55,"tag":140,"props":554,"children":555},{"style":164},[556],{"type":60,"value":557},"  }",{"type":55,"tag":140,"props":559,"children":560},{"style":368},[561],{"type":60,"value":331},{"type":55,"tag":140,"props":563,"children":564},{"style":164},[565],{"type":60,"value":183},{"type":55,"tag":140,"props":567,"children":569},{"class":142,"line":568},11,[570],{"type":55,"tag":140,"props":571,"children":572},{"emptyLinePlaceholder":190},[573],{"type":60,"value":193},{"type":55,"tag":140,"props":575,"children":577},{"class":142,"line":576},12,[578,583,588,593,598,602,607,612,617,622,627,631,636,641,646,650,654,659,664,668],{"type":55,"tag":140,"props":579,"children":580},{"style":147},[581],{"type":60,"value":582},"  if",{"type":55,"tag":140,"props":584,"children":585},{"style":368},[586],{"type":60,"value":587}," (",{"type":55,"tag":140,"props":589,"children":590},{"style":164},[591],{"type":60,"value":592},"!",{"type":55,"tag":140,"props":594,"children":595},{"style":153},[596],{"type":60,"value":597},"sigRes",{"type":55,"tag":140,"props":599,"children":600},{"style":164},[601],{"type":60,"value":101},{"type":55,"tag":140,"props":603,"children":604},{"style":153},[605],{"type":60,"value":606},"ok",{"type":55,"tag":140,"props":608,"children":609},{"style":368},[610],{"type":60,"value":611},") ",{"type":55,"tag":140,"props":613,"children":614},{"style":147},[615],{"type":60,"value":616},"throw",{"type":55,"tag":140,"props":618,"children":619},{"style":164},[620],{"type":60,"value":621}," new",{"type":55,"tag":140,"props":623,"children":624},{"style":225},[625],{"type":60,"value":626}," Error",{"type":55,"tag":140,"props":628,"children":629},{"style":368},[630],{"type":60,"value":274},{"type":55,"tag":140,"props":632,"children":633},{"style":164},[634],{"type":60,"value":635},"`",{"type":55,"tag":140,"props":637,"children":638},{"style":170},[639],{"type":60,"value":640},"signature_fetch_failed:",{"type":55,"tag":140,"props":642,"children":643},{"style":164},[644],{"type":60,"value":645},"${",{"type":55,"tag":140,"props":647,"children":648},{"style":153},[649],{"type":60,"value":597},{"type":55,"tag":140,"props":651,"children":652},{"style":164},[653],{"type":60,"value":101},{"type":55,"tag":140,"props":655,"children":656},{"style":153},[657],{"type":60,"value":658},"status",{"type":55,"tag":140,"props":660,"children":661},{"style":164},[662],{"type":60,"value":663},"}`",{"type":55,"tag":140,"props":665,"children":666},{"style":368},[667],{"type":60,"value":331},{"type":55,"tag":140,"props":669,"children":670},{"style":164},[671],{"type":60,"value":183},{"type":55,"tag":140,"props":673,"children":675},{"class":142,"line":674},13,[676],{"type":55,"tag":140,"props":677,"children":678},{"emptyLinePlaceholder":190},[679],{"type":60,"value":193},{"type":55,"tag":140,"props":681,"children":683},{"class":142,"line":682},14,[684,688,692,697,701,706,710,714,718,722,726,731,735],{"type":55,"tag":140,"props":685,"children":686},{"style":200},[687],{"type":60,"value":345},{"type":55,"tag":140,"props":689,"children":690},{"style":164},[691],{"type":60,"value":440},{"type":55,"tag":140,"props":693,"children":694},{"style":153},[695],{"type":60,"value":696}," signature",{"type":55,"tag":140,"props":698,"children":699},{"style":164},[700],{"type":60,"value":296},{"type":55,"tag":140,"props":702,"children":703},{"style":153},[704],{"type":60,"value":705}," sdkKey",{"type":55,"tag":140,"props":707,"children":708},{"style":164},[709],{"type":60,"value":540},{"type":55,"tag":140,"props":711,"children":712},{"style":164},[713],{"type":60,"value":355},{"type":55,"tag":140,"props":715,"children":716},{"style":147},[717],{"type":60,"value":360},{"type":55,"tag":140,"props":719,"children":720},{"style":153},[721],{"type":60,"value":350},{"type":55,"tag":140,"props":723,"children":724},{"style":164},[725],{"type":60,"value":101},{"type":55,"tag":140,"props":727,"children":728},{"style":225},[729],{"type":60,"value":730},"json",{"type":55,"tag":140,"props":732,"children":733},{"style":368},[734],{"type":60,"value":233},{"type":55,"tag":140,"props":736,"children":737},{"style":164},[738],{"type":60,"value":183},{"type":55,"tag":140,"props":740,"children":742},{"class":142,"line":741},15,[743],{"type":55,"tag":140,"props":744,"children":745},{"emptyLinePlaceholder":190},[746],{"type":60,"value":193},{"type":55,"tag":140,"props":748,"children":750},{"class":142,"line":749},16,[751,756,761,765,770,774],{"type":55,"tag":140,"props":752,"children":753},{"style":147},[754],{"type":60,"value":755},"  await",{"type":55,"tag":140,"props":757,"children":758},{"style":153},[759],{"type":60,"value":760}," client",{"type":55,"tag":140,"props":762,"children":763},{"style":164},[764],{"type":60,"value":101},{"type":55,"tag":140,"props":766,"children":767},{"style":225},[768],{"type":60,"value":769},"init",{"type":55,"tag":140,"props":771,"children":772},{"style":368},[773],{"type":60,"value":274},{"type":55,"tag":140,"props":775,"children":776},{"style":164},[777],{"type":60,"value":778},"{\n",{"type":55,"tag":140,"props":780,"children":782},{"class":142,"line":781},17,[783,788,792,797,801,806,810,814,819,823,827],{"type":55,"tag":140,"props":784,"children":785},{"style":368},[786],{"type":60,"value":787},"    zoomAppRoot",{"type":55,"tag":140,"props":789,"children":790},{"style":164},[791],{"type":60,"value":285},{"type":55,"tag":140,"props":793,"children":794},{"style":153},[795],{"type":60,"value":796}," document",{"type":55,"tag":140,"props":798,"children":799},{"style":164},[800],{"type":60,"value":101},{"type":55,"tag":140,"props":802,"children":803},{"style":225},[804],{"type":60,"value":805},"getElementById",{"type":55,"tag":140,"props":807,"children":808},{"style":368},[809],{"type":60,"value":274},{"type":55,"tag":140,"props":811,"children":812},{"style":164},[813],{"type":60,"value":178},{"type":55,"tag":140,"props":815,"children":816},{"style":170},[817],{"type":60,"value":818},"meetingSDKElement",{"type":55,"tag":140,"props":820,"children":821},{"style":164},[822],{"type":60,"value":178},{"type":55,"tag":140,"props":824,"children":825},{"style":368},[826],{"type":60,"value":331},{"type":55,"tag":140,"props":828,"children":829},{"style":164},[830],{"type":60,"value":831},"!,\n",{"type":55,"tag":140,"props":833,"children":835},{"class":142,"line":834},18,[836,841,845,849,854,858],{"type":55,"tag":140,"props":837,"children":838},{"style":368},[839],{"type":60,"value":840},"    language",{"type":55,"tag":140,"props":842,"children":843},{"style":164},[844],{"type":60,"value":285},{"type":55,"tag":140,"props":846,"children":847},{"style":164},[848],{"type":60,"value":167},{"type":55,"tag":140,"props":850,"children":851},{"style":170},[852],{"type":60,"value":853},"en-US",{"type":55,"tag":140,"props":855,"children":856},{"style":164},[857],{"type":60,"value":178},{"type":55,"tag":140,"props":859,"children":860},{"style":164},[861],{"type":60,"value":422},{"type":55,"tag":140,"props":863,"children":865},{"class":142,"line":864},19,[866,871,875,881],{"type":55,"tag":140,"props":867,"children":868},{"style":368},[869],{"type":60,"value":870},"    patchJsMedia",{"type":55,"tag":140,"props":872,"children":873},{"style":164},[874],{"type":60,"value":285},{"type":55,"tag":140,"props":876,"children":878},{"style":877},"--shiki-light:#FF5370;--shiki-default:#FF9CAC;--shiki-dark:#FF9CAC",[879],{"type":60,"value":880}," true",{"type":55,"tag":140,"props":882,"children":883},{"style":164},[884],{"type":60,"value":422},{"type":55,"tag":140,"props":886,"children":888},{"class":142,"line":887},20,[889,894,898,902],{"type":55,"tag":140,"props":890,"children":891},{"style":368},[892],{"type":60,"value":893},"    leaveOnPageUnload",{"type":55,"tag":140,"props":895,"children":896},{"style":164},[897],{"type":60,"value":285},{"type":55,"tag":140,"props":899,"children":900},{"style":877},[901],{"type":60,"value":880},{"type":55,"tag":140,"props":903,"children":904},{"style":164},[905],{"type":60,"value":422},{"type":55,"tag":140,"props":907,"children":909},{"class":142,"line":908},21,[910,915,919],{"type":55,"tag":140,"props":911,"children":912},{"style":368},[913],{"type":60,"value":914},"    customize",{"type":55,"tag":140,"props":916,"children":917},{"style":164},[918],{"type":60,"value":285},{"type":55,"tag":140,"props":920,"children":921},{"style":164},[922],{"type":60,"value":336},{"type":55,"tag":140,"props":924,"children":926},{"class":142,"line":925},22,[927,932,936,940,945,949,953,957,962,966,970,975,979,984,988],{"type":55,"tag":140,"props":928,"children":929},{"style":368},[930],{"type":60,"value":931},"      video",{"type":55,"tag":140,"props":933,"children":934},{"style":164},[935],{"type":60,"value":285},{"type":55,"tag":140,"props":937,"children":938},{"style":164},[939],{"type":60,"value":440},{"type":55,"tag":140,"props":941,"children":942},{"style":368},[943],{"type":60,"value":944}," isResizable",{"type":55,"tag":140,"props":946,"children":947},{"style":164},[948],{"type":60,"value":285},{"type":55,"tag":140,"props":950,"children":951},{"style":877},[952],{"type":60,"value":880},{"type":55,"tag":140,"props":954,"children":955},{"style":164},[956],{"type":60,"value":296},{"type":55,"tag":140,"props":958,"children":959},{"style":368},[960],{"type":60,"value":961}," popper",{"type":55,"tag":140,"props":963,"children":964},{"style":164},[965],{"type":60,"value":285},{"type":55,"tag":140,"props":967,"children":968},{"style":164},[969],{"type":60,"value":440},{"type":55,"tag":140,"props":971,"children":972},{"style":368},[973],{"type":60,"value":974}," disableDraggable",{"type":55,"tag":140,"props":976,"children":977},{"style":164},[978],{"type":60,"value":285},{"type":55,"tag":140,"props":980,"children":981},{"style":877},[982],{"type":60,"value":983}," false",{"type":55,"tag":140,"props":985,"children":986},{"style":164},[987],{"type":60,"value":540},{"type":55,"tag":140,"props":989,"children":990},{"style":164},[991],{"type":60,"value":475},{"type":55,"tag":140,"props":993,"children":995},{"class":142,"line":994},23,[996],{"type":55,"tag":140,"props":997,"children":998},{"style":164},[999],{"type":60,"value":1000},"    },\n",{"type":55,"tag":140,"props":1002,"children":1004},{"class":142,"line":1003},24,[1005,1009,1013],{"type":55,"tag":140,"props":1006,"children":1007},{"style":164},[1008],{"type":60,"value":557},{"type":55,"tag":140,"props":1010,"children":1011},{"style":368},[1012],{"type":60,"value":331},{"type":55,"tag":140,"props":1014,"children":1015},{"style":164},[1016],{"type":60,"value":183},{"type":55,"tag":140,"props":1018,"children":1020},{"class":142,"line":1019},25,[1021],{"type":55,"tag":140,"props":1022,"children":1023},{"emptyLinePlaceholder":190},[1024],{"type":60,"value":193},{"type":55,"tag":140,"props":1026,"children":1028},{"class":142,"line":1027},26,[1029,1033,1037,1041,1046,1050],{"type":55,"tag":140,"props":1030,"children":1031},{"style":147},[1032],{"type":60,"value":755},{"type":55,"tag":140,"props":1034,"children":1035},{"style":153},[1036],{"type":60,"value":760},{"type":55,"tag":140,"props":1038,"children":1039},{"style":164},[1040],{"type":60,"value":101},{"type":55,"tag":140,"props":1042,"children":1043},{"style":225},[1044],{"type":60,"value":1045},"join",{"type":55,"tag":140,"props":1047,"children":1048},{"style":368},[1049],{"type":60,"value":274},{"type":55,"tag":140,"props":1051,"children":1052},{"style":164},[1053],{"type":60,"value":778},{"type":55,"tag":140,"props":1055,"children":1057},{"class":142,"line":1056},27,[1058,1063],{"type":55,"tag":140,"props":1059,"children":1060},{"style":153},[1061],{"type":60,"value":1062},"    signature",{"type":55,"tag":140,"props":1064,"children":1065},{"style":164},[1066],{"type":60,"value":422},{"type":55,"tag":140,"props":1068,"children":1070},{"class":142,"line":1069},28,[1071,1076],{"type":55,"tag":140,"props":1072,"children":1073},{"style":153},[1074],{"type":60,"value":1075},"    sdkKey",{"type":55,"tag":140,"props":1077,"children":1078},{"style":164},[1079],{"type":60,"value":422},{"type":55,"tag":140,"props":1081,"children":1083},{"class":142,"line":1082},29,[1084,1089],{"type":55,"tag":140,"props":1085,"children":1086},{"style":153},[1087],{"type":60,"value":1088},"    meetingNumber",{"type":55,"tag":140,"props":1090,"children":1091},{"style":164},[1092],{"type":60,"value":422},{"type":55,"tag":140,"props":1094,"children":1096},{"class":142,"line":1095},30,[1097,1102],{"type":55,"tag":140,"props":1098,"children":1099},{"style":153},[1100],{"type":60,"value":1101},"    userName",{"type":55,"tag":140,"props":1103,"children":1104},{"style":164},[1105],{"type":60,"value":422},{"type":55,"tag":140,"props":1107,"children":1109},{"class":142,"line":1108},31,[1110,1115],{"type":55,"tag":140,"props":1111,"children":1112},{"style":153},[1113],{"type":60,"value":1114},"    password",{"type":55,"tag":140,"props":1116,"children":1117},{"style":164},[1118],{"type":60,"value":422},{"type":55,"tag":140,"props":1120,"children":1122},{"class":142,"line":1121},32,[1123,1127,1131],{"type":55,"tag":140,"props":1124,"children":1125},{"style":164},[1126],{"type":60,"value":557},{"type":55,"tag":140,"props":1128,"children":1129},{"style":368},[1130],{"type":60,"value":331},{"type":55,"tag":140,"props":1132,"children":1133},{"style":164},[1134],{"type":60,"value":183},{"type":55,"tag":140,"props":1136,"children":1138},{"class":142,"line":1137},33,[1139],{"type":55,"tag":140,"props":1140,"children":1141},{"style":164},[1142],{"type":60,"value":1143},"}\n",{"type":55,"tag":63,"props":1145,"children":1146},{},[1147],{"type":60,"value":1148},"Common failure points:",{"type":55,"tag":1150,"props":1151,"children":1152},"ul",{},[1153,1159,1164,1184,1189],{"type":55,"tag":1154,"props":1155,"children":1156},"li",{},[1157],{"type":60,"value":1158},"wrong route: Video SDK instead of Meeting SDK Component View",{"type":55,"tag":1154,"props":1160,"children":1161},{},[1162],{"type":60,"value":1163},"missing backend signature endpoint",{"type":55,"tag":1154,"props":1165,"children":1166},{},[1167,1169,1175,1177,1183],{"type":60,"value":1168},"wrong password field (",{"type":55,"tag":121,"props":1170,"children":1172},{"className":1171},[],[1173],{"type":60,"value":1174},"password",{"type":60,"value":1176}," here, not ",{"type":55,"tag":121,"props":1178,"children":1180},{"className":1179},[],[1181],{"type":60,"value":1182},"passWord",{"type":60,"value":331},{"type":55,"tag":1154,"props":1185,"children":1186},{},[1187],{"type":60,"value":1188},"missing OBF\u002FZAK requirements for meetings outside the app account",{"type":55,"tag":1154,"props":1190,"children":1191},{},[1192],{"type":60,"value":1193},"missing SharedArrayBuffer headers when higher-end meeting features are expected",{"type":55,"tag":84,"props":1195,"children":1197},{"id":1196},"hard-routing-rule",[1198],{"type":60,"value":1199},"Hard Routing Rule",{"type":55,"tag":63,"props":1201,"children":1202},{},[1203,1205,1210,1212,1216],{"type":60,"value":1204},"If the user wants a ",{"type":55,"tag":69,"props":1206,"children":1207},{},[1208],{"type":60,"value":1209},"custom video user interface for a Zoom meeting in a web app",{"type":60,"value":1211},", route to\n",{"type":55,"tag":69,"props":1213,"children":1214},{},[1215],{"type":60,"value":80},{"type":60,"value":1217},", not Video SDK.",{"type":55,"tag":1150,"props":1219,"children":1220},{},[1221,1231],{"type":55,"tag":1154,"props":1222,"children":1223},{},[1224,1229],{"type":55,"tag":69,"props":1225,"children":1226},{},[1227],{"type":60,"value":1228},"Meeting SDK Component View",{"type":60,"value":1230}," = custom UI for a real Zoom meeting",{"type":55,"tag":1154,"props":1232,"children":1233},{},[1234,1239],{"type":55,"tag":69,"props":1235,"children":1236},{},[1237],{"type":60,"value":1238},"Video SDK Web",{"type":60,"value":1240}," = custom UI for a non-meeting video session product",{"type":55,"tag":63,"props":1242,"children":1243},{},[1244,1246,1252],{"type":60,"value":1245},"For the direct custom-meeting-UI path, start with\n",{"type":55,"tag":1247,"props":1248,"children":1250},"a",{"href":1249},"component-view\u002FSKILL.md",[1251],{"type":60,"value":1249},{"type":60,"value":101},{"type":55,"tag":84,"props":1254,"children":1256},{"id":1255},"new-to-web-sdk-start-here",[1257],{"type":60,"value":1258},"New to Web SDK? Start Here!",{"type":55,"tag":63,"props":1260,"children":1261},{},[1262],{"type":55,"tag":69,"props":1263,"children":1264},{},[1265],{"type":60,"value":1266},"The fastest way to master the SDK:",{"type":55,"tag":1268,"props":1269,"children":1270},"ol",{},[1271,1289,1312,1328],{"type":55,"tag":1154,"props":1272,"children":1273},{},[1274,1279,1281,1287],{"type":55,"tag":69,"props":1275,"children":1276},{},[1277],{"type":60,"value":1278},"Choose Your View",{"type":60,"value":1280}," - ",{"type":55,"tag":1247,"props":1282,"children":1284},{"href":1283},"#client-view-vs-component-view",[1285],{"type":60,"value":1286},"Client View vs Component View",{"type":60,"value":1288}," - Understand the key architectural differences",{"type":55,"tag":1154,"props":1290,"children":1291},{},[1292,1297,1298,1303,1305,1310],{"type":55,"tag":69,"props":1293,"children":1294},{},[1295],{"type":60,"value":1296},"Quick Start",{"type":60,"value":1280},{"type":55,"tag":1247,"props":1299,"children":1301},{"href":1300},"#quick-start-client-view",[1302],{"type":60,"value":73},{"type":60,"value":1304}," or ",{"type":55,"tag":1247,"props":1306,"children":1308},{"href":1307},"#quick-start-component-view",[1309],{"type":60,"value":80},{"type":60,"value":1311}," - Get a working meeting in minutes",{"type":55,"tag":1154,"props":1313,"children":1314},{},[1315,1320,1321,1326],{"type":55,"tag":69,"props":1316,"children":1317},{},[1318],{"type":60,"value":1319},"SharedArrayBuffer",{"type":60,"value":1280},{"type":55,"tag":1247,"props":1322,"children":1324},{"href":1323},"concepts\u002Fsharedarraybuffer.md",[1325],{"type":60,"value":1323},{"type":60,"value":1327}," - Required for HD video, gallery view, virtual backgrounds",{"type":55,"tag":1154,"props":1329,"children":1330},{},[1331,1336,1337,1342],{"type":55,"tag":69,"props":1332,"children":1333},{},[1334],{"type":60,"value":1335},"Optional preflight diagnostics",{"type":60,"value":1280},{"type":55,"tag":1247,"props":1338,"children":1340},{"href":1339},"..\u002F..\u002Fprobe-sdk\u002FSKILL.md",[1341],{"type":60,"value":1339},{"type":60,"value":1343}," - Validate browser\u002Fdevice\u002Fnetwork before join",{"type":55,"tag":63,"props":1345,"children":1346},{},[1347],{"type":55,"tag":69,"props":1348,"children":1349},{},[1350],{"type":60,"value":1351},"Building a Custom Integration?",{"type":55,"tag":1150,"props":1353,"children":1354},{},[1355,1360,1365,1376,1386,1397],{"type":55,"tag":1154,"props":1356,"children":1357},{},[1358],{"type":60,"value":1359},"Component View gives you Promise-based API and embeddable UI",{"type":55,"tag":1154,"props":1361,"children":1362},{},[1363],{"type":60,"value":1364},"Client View gives you the familiar full-page Zoom experience",{"type":55,"tag":1154,"props":1366,"children":1367},{},[1368,1370,1374],{"type":60,"value":1369},"For a custom meeting UI, prefer ",{"type":55,"tag":69,"props":1371,"children":1372},{},[1373],{"type":60,"value":80},{"type":60,"value":1375}," first",{"type":55,"tag":1154,"props":1377,"children":1378},{},[1379,1381],{"type":60,"value":1380},"Cross-product routing example: ",{"type":55,"tag":1247,"props":1382,"children":1384},{"href":1383},"..\u002F..\u002Fgeneral\u002Fuse-cases\u002Fcustom-meeting-ui-web.md",[1385],{"type":60,"value":1383},{"type":55,"tag":1154,"props":1387,"children":1388},{},[1389,1395],{"type":55,"tag":1247,"props":1390,"children":1392},{"href":1391},"concepts\u002Fbrowser-support.md",[1393],{"type":60,"value":1394},"Browser Support",{"type":60,"value":1396}," - Feature matrix by browser",{"type":55,"tag":1154,"props":1398,"children":1399},{},[1400,1402],{"type":60,"value":1401},"Exact deep-dive path: ",{"type":55,"tag":1247,"props":1403,"children":1404},{"href":1249},[1405],{"type":60,"value":1249},{"type":55,"tag":63,"props":1407,"children":1408},{},[1409],{"type":55,"tag":69,"props":1410,"children":1411},{},[1412],{"type":60,"value":1413},"Having issues?",{"type":55,"tag":1150,"props":1415,"children":1416},{},[1417,1435,1440],{"type":55,"tag":1154,"props":1418,"children":1419},{},[1420,1422,1427,1429,1434],{"type":60,"value":1421},"Join errors → Check signature generation and password spelling (",{"type":55,"tag":121,"props":1423,"children":1425},{"className":1424},[],[1426],{"type":60,"value":1182},{"type":60,"value":1428}," vs ",{"type":55,"tag":121,"props":1430,"children":1432},{"className":1431},[],[1433],{"type":60,"value":1174},{"type":60,"value":331},{"type":55,"tag":1154,"props":1436,"children":1437},{},[1438],{"type":60,"value":1439},"HD video not working → Enable SharedArrayBuffer headers",{"type":55,"tag":1154,"props":1441,"children":1442},{},[1443,1445],{"type":60,"value":1444},"Complete navigation → ",{"type":55,"tag":1247,"props":1446,"children":1448},{"href":1447},"SKILL.md",[1449],{"type":60,"value":1447},{"type":55,"tag":84,"props":1451,"children":1453},{"id":1452},"prerequisites",[1454],{"type":60,"value":1455},"Prerequisites",{"type":55,"tag":1150,"props":1457,"children":1458},{},[1459,1472,1477,1482],{"type":55,"tag":1154,"props":1460,"children":1461},{},[1462,1464],{"type":60,"value":1463},"Zoom app with Meeting SDK credentials from ",{"type":55,"tag":1247,"props":1465,"children":1469},{"href":1466,"rel":1467},"https:\u002F\u002Fmarketplace.zoom.us\u002F",[1468],"nofollow",[1470],{"type":60,"value":1471},"Marketplace",{"type":55,"tag":1154,"props":1473,"children":1474},{},[1475],{"type":60,"value":1476},"SDK Key (Client ID) and Secret",{"type":55,"tag":1154,"props":1478,"children":1479},{},[1480],{"type":60,"value":1481},"Modern browser (Chrome, Firefox, Safari, Edge)",{"type":55,"tag":1154,"props":1483,"children":1484},{},[1485],{"type":60,"value":1486},"Backend auth endpoint for signature generation",{"type":55,"tag":1488,"props":1489,"children":1490},"blockquote",{},[1491,1512],{"type":55,"tag":63,"props":1492,"children":1493},{},[1494,1499,1501,1510],{"type":55,"tag":69,"props":1495,"children":1496},{},[1497],{"type":60,"value":1498},"Need help with authentication?",{"type":60,"value":1500}," See the ",{"type":55,"tag":69,"props":1502,"children":1503},{},[1504],{"type":55,"tag":1247,"props":1505,"children":1507},{"href":1506},"..\u002F..\u002Foauth\u002FSKILL.md",[1508],{"type":60,"value":1509},"zoom-oauth",{"type":60,"value":1511}," skill for JWT\u002Fsignature generation.",{"type":55,"tag":63,"props":1513,"children":1514},{},[1515,1520,1522,1530,1532,1538,1540,1546],{"type":55,"tag":69,"props":1516,"children":1517},{},[1518],{"type":60,"value":1519},"Want pre-join diagnostics?",{"type":60,"value":1521}," Chain ",{"type":55,"tag":69,"props":1523,"children":1524},{},[1525],{"type":55,"tag":1247,"props":1526,"children":1527},{"href":1339},[1528],{"type":60,"value":1529},"probe-sdk",{"type":60,"value":1531}," before ",{"type":55,"tag":121,"props":1533,"children":1535},{"className":1534},[],[1536],{"type":60,"value":1537},"init()",{"type":60,"value":1539},"\u002F",{"type":55,"tag":121,"props":1541,"children":1543},{"className":1542},[],[1544],{"type":60,"value":1545},"join()",{"type":60,"value":1547}," to gate low-readiness environments.",{"type":55,"tag":84,"props":1549,"children":1551},{"id":1550},"optional-preflight-gate-probe-sdk",[1552],{"type":60,"value":1553},"Optional Preflight Gate (Probe SDK)",{"type":55,"tag":63,"props":1555,"children":1556},{},[1557,1559,1565,1566,1572],{"type":60,"value":1558},"For unstable first-join environments, run Probe SDK checks before calling ",{"type":55,"tag":121,"props":1560,"children":1562},{"className":1561},[],[1563],{"type":60,"value":1564},"ZoomMtg.init()",{"type":60,"value":1304},{"type":55,"tag":121,"props":1567,"children":1569},{"className":1568},[],[1570],{"type":60,"value":1571},"client.join()",{"type":60,"value":285},{"type":55,"tag":1268,"props":1574,"children":1575},{},[1576,1581,1609],{"type":55,"tag":1154,"props":1577,"children":1578},{},[1579],{"type":60,"value":1580},"Run Probe permissions\u002Fdevice\u002Fnetwork diagnostics.",{"type":55,"tag":1154,"props":1582,"children":1583},{},[1584,1586,1592,1594,1600,1601,1607],{"type":60,"value":1585},"Apply readiness policy (",{"type":55,"tag":121,"props":1587,"children":1589},{"className":1588},[],[1590],{"type":60,"value":1591},"allow",{"type":60,"value":1593},", ",{"type":55,"tag":121,"props":1595,"children":1597},{"className":1596},[],[1598],{"type":60,"value":1599},"warn",{"type":60,"value":1593},{"type":55,"tag":121,"props":1602,"children":1604},{"className":1603},[],[1605],{"type":60,"value":1606},"block",{"type":60,"value":1608},").",{"type":55,"tag":1154,"props":1610,"children":1611},{},[1612,1614,1619,1621,1626],{"type":60,"value":1613},"Continue to Meeting SDK join only for ",{"type":55,"tag":121,"props":1615,"children":1617},{"className":1616},[],[1618],{"type":60,"value":1591},{"type":60,"value":1620},"\u002Fapproved ",{"type":55,"tag":121,"props":1622,"children":1624},{"className":1623},[],[1625],{"type":60,"value":1599},{"type":60,"value":101},{"type":55,"tag":63,"props":1628,"children":1629},{},[1630,1632,1636,1638,1643],{"type":60,"value":1631},"See ",{"type":55,"tag":1247,"props":1633,"children":1634},{"href":1339},[1635],{"type":60,"value":1339},{"type":60,"value":1637}," and ",{"type":55,"tag":1247,"props":1639,"children":1641},{"href":1640},"..\u002F..\u002Fgeneral\u002Fuse-cases\u002Fprobe-sdk-preflight-readiness-gate.md",[1642],{"type":60,"value":1640},{"type":60,"value":101},{"type":55,"tag":84,"props":1645,"children":1647},{"id":1646},"client-view-vs-component-view",[1648],{"type":60,"value":1286},{"type":55,"tag":63,"props":1650,"children":1651},{},[1652,1657],{"type":55,"tag":69,"props":1653,"children":1654},{},[1655],{"type":60,"value":1656},"CRITICAL DIFFERENCE",{"type":60,"value":1658},": These are two completely different APIs with different patterns!",{"type":55,"tag":1660,"props":1661,"children":1662},"table",{},[1663,1685],{"type":55,"tag":1664,"props":1665,"children":1666},"thead",{},[1667],{"type":55,"tag":1668,"props":1669,"children":1670},"tr",{},[1671,1677,1681],{"type":55,"tag":1672,"props":1673,"children":1674},"th",{},[1675],{"type":60,"value":1676},"Aspect",{"type":55,"tag":1672,"props":1678,"children":1679},{},[1680],{"type":60,"value":73},{"type":55,"tag":1672,"props":1682,"children":1683},{},[1684],{"type":60,"value":80},{"type":55,"tag":1686,"props":1687,"children":1688},"tbody",{},[1689,1723,1744,1765,1796,1832,1861,1890],{"type":55,"tag":1668,"props":1690,"children":1691},{},[1692,1701,1712],{"type":55,"tag":1693,"props":1694,"children":1695},"td",{},[1696],{"type":55,"tag":69,"props":1697,"children":1698},{},[1699],{"type":60,"value":1700},"Object",{"type":55,"tag":1693,"props":1702,"children":1703},{},[1704,1710],{"type":55,"tag":121,"props":1705,"children":1707},{"className":1706},[],[1708],{"type":60,"value":1709},"ZoomMtg",{"type":60,"value":1711}," (global singleton)",{"type":55,"tag":1693,"props":1713,"children":1714},{},[1715,1721],{"type":55,"tag":121,"props":1716,"children":1718},{"className":1717},[],[1719],{"type":60,"value":1720},"ZoomMtgEmbedded.createClient()",{"type":60,"value":1722}," (instance)",{"type":55,"tag":1668,"props":1724,"children":1725},{},[1726,1734,1739],{"type":55,"tag":1693,"props":1727,"children":1728},{},[1729],{"type":55,"tag":69,"props":1730,"children":1731},{},[1732],{"type":60,"value":1733},"API Style",{"type":55,"tag":1693,"props":1735,"children":1736},{},[1737],{"type":60,"value":1738},"Callbacks",{"type":55,"tag":1693,"props":1740,"children":1741},{},[1742],{"type":60,"value":1743},"Promises",{"type":55,"tag":1668,"props":1745,"children":1746},{},[1747,1755,1760],{"type":55,"tag":1693,"props":1748,"children":1749},{},[1750],{"type":55,"tag":69,"props":1751,"children":1752},{},[1753],{"type":60,"value":1754},"UI",{"type":55,"tag":1693,"props":1756,"children":1757},{},[1758],{"type":60,"value":1759},"Full-page takeover",{"type":55,"tag":1693,"props":1761,"children":1762},{},[1763],{"type":60,"value":1764},"Embeddable in any container",{"type":55,"tag":1668,"props":1766,"children":1767},{},[1768,1776,1786],{"type":55,"tag":1693,"props":1769,"children":1770},{},[1771],{"type":55,"tag":69,"props":1772,"children":1773},{},[1774],{"type":60,"value":1775},"Password param",{"type":55,"tag":1693,"props":1777,"children":1778},{},[1779,1784],{"type":55,"tag":121,"props":1780,"children":1782},{"className":1781},[],[1783],{"type":60,"value":1182},{"type":60,"value":1785}," (capital W)",{"type":55,"tag":1693,"props":1787,"children":1788},{},[1789,1794],{"type":55,"tag":121,"props":1790,"children":1792},{"className":1791},[],[1793],{"type":60,"value":1174},{"type":60,"value":1795}," (lowercase)",{"type":55,"tag":1668,"props":1797,"children":1798},{},[1799,1807,1816],{"type":55,"tag":1693,"props":1800,"children":1801},{},[1802],{"type":55,"tag":69,"props":1803,"children":1804},{},[1805],{"type":60,"value":1806},"Events",{"type":55,"tag":1693,"props":1808,"children":1809},{},[1810],{"type":55,"tag":121,"props":1811,"children":1813},{"className":1812},[],[1814],{"type":60,"value":1815},"inMeetingServiceListener()",{"type":55,"tag":1693,"props":1817,"children":1818},{},[1819,1825,1826],{"type":55,"tag":121,"props":1820,"children":1822},{"className":1821},[],[1823],{"type":60,"value":1824},"on()",{"type":60,"value":1539},{"type":55,"tag":121,"props":1827,"children":1829},{"className":1828},[],[1830],{"type":60,"value":1831},"off()",{"type":55,"tag":1668,"props":1833,"children":1834},{},[1835,1843,1852],{"type":55,"tag":1693,"props":1836,"children":1837},{},[1838],{"type":55,"tag":69,"props":1839,"children":1840},{},[1841],{"type":60,"value":1842},"Import (npm)",{"type":55,"tag":1693,"props":1844,"children":1845},{},[1846],{"type":55,"tag":121,"props":1847,"children":1849},{"className":1848},[],[1850],{"type":60,"value":1851},"import { ZoomMtg } from '@zoom\u002Fmeetingsdk'",{"type":55,"tag":1693,"props":1853,"children":1854},{},[1855],{"type":55,"tag":121,"props":1856,"children":1858},{"className":1857},[],[1859],{"type":60,"value":1860},"import ZoomMtgEmbedded from '@zoom\u002Fmeetingsdk\u002Fembedded'",{"type":55,"tag":1668,"props":1862,"children":1863},{},[1864,1872,1881],{"type":55,"tag":1693,"props":1865,"children":1866},{},[1867],{"type":55,"tag":69,"props":1868,"children":1869},{},[1870],{"type":60,"value":1871},"CDN",{"type":55,"tag":1693,"props":1873,"children":1874},{},[1875],{"type":55,"tag":121,"props":1876,"children":1878},{"className":1877},[],[1879],{"type":60,"value":1880},"zoom-meeting-{VERSION}.min.js",{"type":55,"tag":1693,"props":1882,"children":1883},{},[1884],{"type":55,"tag":121,"props":1885,"children":1887},{"className":1886},[],[1888],{"type":60,"value":1889},"zoom-meeting-embedded-{VERSION}.min.js",{"type":55,"tag":1668,"props":1891,"children":1892},{},[1893,1901,1906],{"type":55,"tag":1693,"props":1894,"children":1895},{},[1896],{"type":55,"tag":69,"props":1897,"children":1898},{},[1899],{"type":60,"value":1900},"Best For",{"type":55,"tag":1693,"props":1902,"children":1903},{},[1904],{"type":60,"value":1905},"Quick integration, standard Zoom UI",{"type":55,"tag":1693,"props":1907,"children":1908},{},[1909],{"type":60,"value":1910},"Custom layouts, React\u002FVue apps",{"type":55,"tag":1912,"props":1913,"children":1915},"h3",{"id":1914},"when-to-use-which",[1916],{"type":60,"value":1917},"When to Use Which",{"type":55,"tag":63,"props":1919,"children":1920},{},[1921],{"type":55,"tag":69,"props":1922,"children":1923},{},[1924],{"type":60,"value":1925},"Use Client View when:",{"type":55,"tag":1150,"props":1927,"children":1928},{},[1929,1934,1939],{"type":55,"tag":1154,"props":1930,"children":1931},{},[1932],{"type":60,"value":1933},"You want the familiar Zoom meeting interface",{"type":55,"tag":1154,"props":1935,"children":1936},{},[1937],{"type":60,"value":1938},"Quick integration is priority over customization",{"type":55,"tag":1154,"props":1940,"children":1941},{},[1942],{"type":60,"value":1943},"Full-page meeting experience is acceptable",{"type":55,"tag":63,"props":1945,"children":1946},{},[1947],{"type":55,"tag":69,"props":1948,"children":1949},{},[1950],{"type":60,"value":1951},"Use Component View when:",{"type":55,"tag":1150,"props":1953,"children":1954},{},[1955,1960,1965,1970],{"type":55,"tag":1154,"props":1956,"children":1957},{},[1958],{"type":60,"value":1959},"You need to embed meetings in a specific area of your page",{"type":55,"tag":1154,"props":1961,"children":1962},{},[1963],{"type":60,"value":1964},"Building React\u002FVue\u002FAngular applications",{"type":55,"tag":1154,"props":1966,"children":1967},{},[1968],{"type":60,"value":1969},"You want Promise-based async\u002Fawait syntax",{"type":55,"tag":1154,"props":1971,"children":1972},{},[1973],{"type":60,"value":1974},"Custom positioning and resizing is required",{"type":55,"tag":84,"props":1976,"children":1978},{"id":1977},"installation",[1979],{"type":60,"value":1980},"Installation",{"type":55,"tag":1912,"props":1982,"children":1984},{"id":1983},"npm-recommended",[1985],{"type":60,"value":1986},"NPM (Recommended)",{"type":55,"tag":113,"props":1988,"children":1992},{"className":1989,"code":1990,"language":1991,"meta":118,"style":118},"language-bash shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","npm install @zoom\u002Fmeetingsdk --save\n","bash",[1993],{"type":55,"tag":121,"props":1994,"children":1995},{"__ignoreMap":118},[1996],{"type":55,"tag":140,"props":1997,"children":1998},{"class":142,"line":143},[1999,2004,2009,2014],{"type":55,"tag":140,"props":2000,"children":2001},{"style":288},[2002],{"type":60,"value":2003},"npm",{"type":55,"tag":140,"props":2005,"children":2006},{"style":170},[2007],{"type":60,"value":2008}," install",{"type":55,"tag":140,"props":2010,"children":2011},{"style":170},[2012],{"type":60,"value":2013}," @zoom\u002Fmeetingsdk",{"type":55,"tag":140,"props":2015,"children":2016},{"style":170},[2017],{"type":60,"value":2018}," --save\n",{"type":55,"tag":1912,"props":2020,"children":2022},{"id":2021},"cdn",[2023],{"type":60,"value":1871},{"type":55,"tag":113,"props":2025,"children":2029},{"className":2026,"code":2027,"language":2028,"meta":118,"style":118},"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",[2030],{"type":55,"tag":121,"props":2031,"children":2032},{"__ignoreMap":118},[2033,2042,2092,2136,2180,2224,2268,2275,2283,2327,2334,2342],{"type":55,"tag":140,"props":2034,"children":2035},{"class":142,"line":143},[2036],{"type":55,"tag":140,"props":2037,"children":2039},{"style":2038},"--shiki-light:#90A4AE;--shiki-light-font-style:italic;--shiki-default:#546E7A;--shiki-default-font-style:italic;--shiki-dark:#676E95;--shiki-dark-font-style:italic",[2040],{"type":60,"value":2041},"\u003C!-- Dependencies (required for both views) -->\n",{"type":55,"tag":140,"props":2043,"children":2044},{"class":142,"line":186},[2045,2050,2055,2060,2064,2069,2074,2078,2083,2087],{"type":55,"tag":140,"props":2046,"children":2047},{"style":164},[2048],{"type":60,"value":2049},"\u003C",{"type":55,"tag":140,"props":2051,"children":2052},{"style":368},[2053],{"type":60,"value":2054},"script",{"type":55,"tag":140,"props":2056,"children":2057},{"style":200},[2058],{"type":60,"value":2059}," src",{"type":55,"tag":140,"props":2061,"children":2062},{"style":164},[2063],{"type":60,"value":213},{"type":55,"tag":140,"props":2065,"children":2066},{"style":164},[2067],{"type":60,"value":2068},"\"",{"type":55,"tag":140,"props":2070,"children":2071},{"style":170},[2072],{"type":60,"value":2073},"https:\u002F\u002Fsource.zoom.us\u002F{VERSION}\u002Flib\u002Fvendor\u002Freact.min.js",{"type":55,"tag":140,"props":2075,"children":2076},{"style":164},[2077],{"type":60,"value":2068},{"type":55,"tag":140,"props":2079,"children":2080},{"style":164},[2081],{"type":60,"value":2082},">\u003C\u002F",{"type":55,"tag":140,"props":2084,"children":2085},{"style":368},[2086],{"type":60,"value":2054},{"type":55,"tag":140,"props":2088,"children":2089},{"style":164},[2090],{"type":60,"value":2091},">\n",{"type":55,"tag":140,"props":2093,"children":2094},{"class":142,"line":196},[2095,2099,2103,2107,2111,2115,2120,2124,2128,2132],{"type":55,"tag":140,"props":2096,"children":2097},{"style":164},[2098],{"type":60,"value":2049},{"type":55,"tag":140,"props":2100,"children":2101},{"style":368},[2102],{"type":60,"value":2054},{"type":55,"tag":140,"props":2104,"children":2105},{"style":200},[2106],{"type":60,"value":2059},{"type":55,"tag":140,"props":2108,"children":2109},{"style":164},[2110],{"type":60,"value":213},{"type":55,"tag":140,"props":2112,"children":2113},{"style":164},[2114],{"type":60,"value":2068},{"type":55,"tag":140,"props":2116,"children":2117},{"style":170},[2118],{"type":60,"value":2119},"https:\u002F\u002Fsource.zoom.us\u002F{VERSION}\u002Flib\u002Fvendor\u002Freact-dom.min.js",{"type":55,"tag":140,"props":2121,"children":2122},{"style":164},[2123],{"type":60,"value":2068},{"type":55,"tag":140,"props":2125,"children":2126},{"style":164},[2127],{"type":60,"value":2082},{"type":55,"tag":140,"props":2129,"children":2130},{"style":368},[2131],{"type":60,"value":2054},{"type":55,"tag":140,"props":2133,"children":2134},{"style":164},[2135],{"type":60,"value":2091},{"type":55,"tag":140,"props":2137,"children":2138},{"class":142,"line":240},[2139,2143,2147,2151,2155,2159,2164,2168,2172,2176],{"type":55,"tag":140,"props":2140,"children":2141},{"style":164},[2142],{"type":60,"value":2049},{"type":55,"tag":140,"props":2144,"children":2145},{"style":368},[2146],{"type":60,"value":2054},{"type":55,"tag":140,"props":2148,"children":2149},{"style":200},[2150],{"type":60,"value":2059},{"type":55,"tag":140,"props":2152,"children":2153},{"style":164},[2154],{"type":60,"value":213},{"type":55,"tag":140,"props":2156,"children":2157},{"style":164},[2158],{"type":60,"value":2068},{"type":55,"tag":140,"props":2160,"children":2161},{"style":170},[2162],{"type":60,"value":2163},"https:\u002F\u002Fsource.zoom.us\u002F{VERSION}\u002Flib\u002Fvendor\u002Fredux.min.js",{"type":55,"tag":140,"props":2165,"children":2166},{"style":164},[2167],{"type":60,"value":2068},{"type":55,"tag":140,"props":2169,"children":2170},{"style":164},[2171],{"type":60,"value":2082},{"type":55,"tag":140,"props":2173,"children":2174},{"style":368},[2175],{"type":60,"value":2054},{"type":55,"tag":140,"props":2177,"children":2178},{"style":164},[2179],{"type":60,"value":2091},{"type":55,"tag":140,"props":2181,"children":2182},{"class":142,"line":248},[2183,2187,2191,2195,2199,2203,2208,2212,2216,2220],{"type":55,"tag":140,"props":2184,"children":2185},{"style":164},[2186],{"type":60,"value":2049},{"type":55,"tag":140,"props":2188,"children":2189},{"style":368},[2190],{"type":60,"value":2054},{"type":55,"tag":140,"props":2192,"children":2193},{"style":200},[2194],{"type":60,"value":2059},{"type":55,"tag":140,"props":2196,"children":2197},{"style":164},[2198],{"type":60,"value":213},{"type":55,"tag":140,"props":2200,"children":2201},{"style":164},[2202],{"type":60,"value":2068},{"type":55,"tag":140,"props":2204,"children":2205},{"style":170},[2206],{"type":60,"value":2207},"https:\u002F\u002Fsource.zoom.us\u002F{VERSION}\u002Flib\u002Fvendor\u002Fredux-thunk.min.js",{"type":55,"tag":140,"props":2209,"children":2210},{"style":164},[2211],{"type":60,"value":2068},{"type":55,"tag":140,"props":2213,"children":2214},{"style":164},[2215],{"type":60,"value":2082},{"type":55,"tag":140,"props":2217,"children":2218},{"style":368},[2219],{"type":60,"value":2054},{"type":55,"tag":140,"props":2221,"children":2222},{"style":164},[2223],{"type":60,"value":2091},{"type":55,"tag":140,"props":2225,"children":2226},{"class":142,"line":339},[2227,2231,2235,2239,2243,2247,2252,2256,2260,2264],{"type":55,"tag":140,"props":2228,"children":2229},{"style":164},[2230],{"type":60,"value":2049},{"type":55,"tag":140,"props":2232,"children":2233},{"style":368},[2234],{"type":60,"value":2054},{"type":55,"tag":140,"props":2236,"children":2237},{"style":200},[2238],{"type":60,"value":2059},{"type":55,"tag":140,"props":2240,"children":2241},{"style":164},[2242],{"type":60,"value":213},{"type":55,"tag":140,"props":2244,"children":2245},{"style":164},[2246],{"type":60,"value":2068},{"type":55,"tag":140,"props":2248,"children":2249},{"style":170},[2250],{"type":60,"value":2251},"https:\u002F\u002Fsource.zoom.us\u002F{VERSION}\u002Flib\u002Fvendor\u002Flodash.min.js",{"type":55,"tag":140,"props":2253,"children":2254},{"style":164},[2255],{"type":60,"value":2068},{"type":55,"tag":140,"props":2257,"children":2258},{"style":164},[2259],{"type":60,"value":2082},{"type":55,"tag":140,"props":2261,"children":2262},{"style":368},[2263],{"type":60,"value":2054},{"type":55,"tag":140,"props":2265,"children":2266},{"style":164},[2267],{"type":60,"value":2091},{"type":55,"tag":140,"props":2269,"children":2270},{"class":142,"line":394},[2271],{"type":55,"tag":140,"props":2272,"children":2273},{"emptyLinePlaceholder":190},[2274],{"type":60,"value":193},{"type":55,"tag":140,"props":2276,"children":2277},{"class":142,"line":425},[2278],{"type":55,"tag":140,"props":2279,"children":2280},{"style":2038},[2281],{"type":60,"value":2282},"\u003C!-- Client View -->\n",{"type":55,"tag":140,"props":2284,"children":2285},{"class":142,"line":478},[2286,2290,2294,2298,2302,2306,2311,2315,2319,2323],{"type":55,"tag":140,"props":2287,"children":2288},{"style":164},[2289],{"type":60,"value":2049},{"type":55,"tag":140,"props":2291,"children":2292},{"style":368},[2293],{"type":60,"value":2054},{"type":55,"tag":140,"props":2295,"children":2296},{"style":200},[2297],{"type":60,"value":2059},{"type":55,"tag":140,"props":2299,"children":2300},{"style":164},[2301],{"type":60,"value":213},{"type":55,"tag":140,"props":2303,"children":2304},{"style":164},[2305],{"type":60,"value":2068},{"type":55,"tag":140,"props":2307,"children":2308},{"style":170},[2309],{"type":60,"value":2310},"https:\u002F\u002Fsource.zoom.us\u002Fzoom-meeting-{VERSION}.min.js",{"type":55,"tag":140,"props":2312,"children":2313},{"style":164},[2314],{"type":60,"value":2068},{"type":55,"tag":140,"props":2316,"children":2317},{"style":164},[2318],{"type":60,"value":2082},{"type":55,"tag":140,"props":2320,"children":2321},{"style":368},[2322],{"type":60,"value":2054},{"type":55,"tag":140,"props":2324,"children":2325},{"style":164},[2326],{"type":60,"value":2091},{"type":55,"tag":140,"props":2328,"children":2329},{"class":142,"line":551},[2330],{"type":55,"tag":140,"props":2331,"children":2332},{"emptyLinePlaceholder":190},[2333],{"type":60,"value":193},{"type":55,"tag":140,"props":2335,"children":2336},{"class":142,"line":568},[2337],{"type":55,"tag":140,"props":2338,"children":2339},{"style":2038},[2340],{"type":60,"value":2341},"\u003C!-- OR Component View -->\n",{"type":55,"tag":140,"props":2343,"children":2344},{"class":142,"line":576},[2345,2349,2353,2357,2361,2365,2370,2374,2378,2382],{"type":55,"tag":140,"props":2346,"children":2347},{"style":164},[2348],{"type":60,"value":2049},{"type":55,"tag":140,"props":2350,"children":2351},{"style":368},[2352],{"type":60,"value":2054},{"type":55,"tag":140,"props":2354,"children":2355},{"style":200},[2356],{"type":60,"value":2059},{"type":55,"tag":140,"props":2358,"children":2359},{"style":164},[2360],{"type":60,"value":213},{"type":55,"tag":140,"props":2362,"children":2363},{"style":164},[2364],{"type":60,"value":2068},{"type":55,"tag":140,"props":2366,"children":2367},{"style":170},[2368],{"type":60,"value":2369},"https:\u002F\u002Fsource.zoom.us\u002Fzoom-meeting-embedded-{VERSION}.min.js",{"type":55,"tag":140,"props":2371,"children":2372},{"style":164},[2373],{"type":60,"value":2068},{"type":55,"tag":140,"props":2375,"children":2376},{"style":164},[2377],{"type":60,"value":2082},{"type":55,"tag":140,"props":2379,"children":2380},{"style":368},[2381],{"type":60,"value":2054},{"type":55,"tag":140,"props":2383,"children":2384},{"style":164},[2385],{"type":60,"value":2091},{"type":55,"tag":63,"props":2387,"children":2388},{},[2389,2391,2397,2399,2406,2408,2414],{"type":60,"value":2390},"Replace ",{"type":55,"tag":121,"props":2392,"children":2394},{"className":2393},[],[2395],{"type":60,"value":2396},"{VERSION}",{"type":60,"value":2398}," with the ",{"type":55,"tag":1247,"props":2400,"children":2403},{"href":2401,"rel":2402},"https:\u002F\u002Fwww.npmjs.com\u002Fpackage\u002F@zoom\u002Fmeetingsdk",[1468],[2404],{"type":60,"value":2405},"latest version",{"type":60,"value":2407}," (e.g., ",{"type":55,"tag":121,"props":2409,"children":2411},{"className":2410},[],[2412],{"type":60,"value":2413},"3.11.0",{"type":60,"value":1608},{"type":55,"tag":84,"props":2416,"children":2418},{"id":2417},"quick-start-client-view",[2419],{"type":60,"value":2420},"Quick Start (Client View)",{"type":55,"tag":113,"props":2422,"children":2426},{"className":2423,"code":2424,"language":2425,"meta":118,"style":118},"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",[2427],{"type":55,"tag":121,"props":2428,"children":2429},{"__ignoreMap":118},[2430,2472,2479,2487,2547,2554,2562,2586,2610,2617,2625,2674,2715,2723,2731,2755,2784,2824,2848,2872,2906,2931,2939,2947,2971,2996,3025,3054,3088,3121,3171,3179,3187,3221,3246,3336,3353,3362,3396,3447,3456,3473,3481,3514,3564,3573,3589],{"type":55,"tag":140,"props":2431,"children":2432},{"class":142,"line":143},[2433,2437,2441,2446,2450,2455,2459,2464,2468],{"type":55,"tag":140,"props":2434,"children":2435},{"style":147},[2436],{"type":60,"value":150},{"type":55,"tag":140,"props":2438,"children":2439},{"style":164},[2440],{"type":60,"value":440},{"type":55,"tag":140,"props":2442,"children":2443},{"style":153},[2444],{"type":60,"value":2445}," ZoomMtg",{"type":55,"tag":140,"props":2447,"children":2448},{"style":164},[2449],{"type":60,"value":540},{"type":55,"tag":140,"props":2451,"children":2452},{"style":147},[2453],{"type":60,"value":2454}," from",{"type":55,"tag":140,"props":2456,"children":2457},{"style":164},[2458],{"type":60,"value":167},{"type":55,"tag":140,"props":2460,"children":2461},{"style":170},[2462],{"type":60,"value":2463},"@zoom\u002Fmeetingsdk",{"type":55,"tag":140,"props":2465,"children":2466},{"style":164},[2467],{"type":60,"value":178},{"type":55,"tag":140,"props":2469,"children":2470},{"style":164},[2471],{"type":60,"value":183},{"type":55,"tag":140,"props":2473,"children":2474},{"class":142,"line":186},[2475],{"type":55,"tag":140,"props":2476,"children":2477},{"emptyLinePlaceholder":190},[2478],{"type":60,"value":193},{"type":55,"tag":140,"props":2480,"children":2481},{"class":142,"line":196},[2482],{"type":55,"tag":140,"props":2483,"children":2484},{"style":2038},[2485],{"type":60,"value":2486},"\u002F\u002F Step 1: Check browser compatibility\n",{"type":55,"tag":140,"props":2488,"children":2489},{"class":142,"line":240},[2490,2495,2499,2504,2508,2512,2517,2521,2525,2529,2533,2538,2543],{"type":55,"tag":140,"props":2491,"children":2492},{"style":153},[2493],{"type":60,"value":2494},"console",{"type":55,"tag":140,"props":2496,"children":2497},{"style":164},[2498],{"type":60,"value":101},{"type":55,"tag":140,"props":2500,"children":2501},{"style":225},[2502],{"type":60,"value":2503},"log",{"type":55,"tag":140,"props":2505,"children":2506},{"style":153},[2507],{"type":60,"value":274},{"type":55,"tag":140,"props":2509,"children":2510},{"style":164},[2511],{"type":60,"value":178},{"type":55,"tag":140,"props":2513,"children":2514},{"style":170},[2515],{"type":60,"value":2516},"System requirements:",{"type":55,"tag":140,"props":2518,"children":2519},{"style":164},[2520],{"type":60,"value":178},{"type":55,"tag":140,"props":2522,"children":2523},{"style":164},[2524],{"type":60,"value":296},{"type":55,"tag":140,"props":2526,"children":2527},{"style":153},[2528],{"type":60,"value":2445},{"type":55,"tag":140,"props":2530,"children":2531},{"style":164},[2532],{"type":60,"value":101},{"type":55,"tag":140,"props":2534,"children":2535},{"style":225},[2536],{"type":60,"value":2537},"checkSystemRequirements",{"type":55,"tag":140,"props":2539,"children":2540},{"style":153},[2541],{"type":60,"value":2542},"())",{"type":55,"tag":140,"props":2544,"children":2545},{"style":164},[2546],{"type":60,"value":183},{"type":55,"tag":140,"props":2548,"children":2549},{"class":142,"line":248},[2550],{"type":55,"tag":140,"props":2551,"children":2552},{"emptyLinePlaceholder":190},[2553],{"type":60,"value":193},{"type":55,"tag":140,"props":2555,"children":2556},{"class":142,"line":339},[2557],{"type":55,"tag":140,"props":2558,"children":2559},{"style":2038},[2560],{"type":60,"value":2561},"\u002F\u002F Step 2: Preload WebAssembly for faster initialization\n",{"type":55,"tag":140,"props":2563,"children":2564},{"class":142,"line":394},[2565,2569,2573,2578,2582],{"type":55,"tag":140,"props":2566,"children":2567},{"style":153},[2568],{"type":60,"value":1709},{"type":55,"tag":140,"props":2570,"children":2571},{"style":164},[2572],{"type":60,"value":101},{"type":55,"tag":140,"props":2574,"children":2575},{"style":225},[2576],{"type":60,"value":2577},"preLoadWasm",{"type":55,"tag":140,"props":2579,"children":2580},{"style":153},[2581],{"type":60,"value":233},{"type":55,"tag":140,"props":2583,"children":2584},{"style":164},[2585],{"type":60,"value":183},{"type":55,"tag":140,"props":2587,"children":2588},{"class":142,"line":425},[2589,2593,2597,2602,2606],{"type":55,"tag":140,"props":2590,"children":2591},{"style":153},[2592],{"type":60,"value":1709},{"type":55,"tag":140,"props":2594,"children":2595},{"style":164},[2596],{"type":60,"value":101},{"type":55,"tag":140,"props":2598,"children":2599},{"style":225},[2600],{"type":60,"value":2601},"prepareWebSDK",{"type":55,"tag":140,"props":2603,"children":2604},{"style":153},[2605],{"type":60,"value":233},{"type":55,"tag":140,"props":2607,"children":2608},{"style":164},[2609],{"type":60,"value":183},{"type":55,"tag":140,"props":2611,"children":2612},{"class":142,"line":478},[2613],{"type":55,"tag":140,"props":2614,"children":2615},{"emptyLinePlaceholder":190},[2616],{"type":60,"value":193},{"type":55,"tag":140,"props":2618,"children":2619},{"class":142,"line":551},[2620],{"type":55,"tag":140,"props":2621,"children":2622},{"style":2038},[2623],{"type":60,"value":2624},"\u002F\u002F Step 3: Load language files (MUST complete before init)\n",{"type":55,"tag":140,"props":2626,"children":2627},{"class":142,"line":568},[2628,2632,2636,2641,2645,2650,2654,2658,2662,2666,2670],{"type":55,"tag":140,"props":2629,"children":2630},{"style":153},[2631],{"type":60,"value":1709},{"type":55,"tag":140,"props":2633,"children":2634},{"style":164},[2635],{"type":60,"value":101},{"type":55,"tag":140,"props":2637,"children":2638},{"style":153},[2639],{"type":60,"value":2640},"i18n",{"type":55,"tag":140,"props":2642,"children":2643},{"style":164},[2644],{"type":60,"value":101},{"type":55,"tag":140,"props":2646,"children":2647},{"style":225},[2648],{"type":60,"value":2649},"load",{"type":55,"tag":140,"props":2651,"children":2652},{"style":153},[2653],{"type":60,"value":274},{"type":55,"tag":140,"props":2655,"children":2656},{"style":164},[2657],{"type":60,"value":178},{"type":55,"tag":140,"props":2659,"children":2660},{"style":170},[2661],{"type":60,"value":853},{"type":55,"tag":140,"props":2663,"children":2664},{"style":164},[2665],{"type":60,"value":178},{"type":55,"tag":140,"props":2667,"children":2668},{"style":153},[2669],{"type":60,"value":331},{"type":55,"tag":140,"props":2671,"children":2672},{"style":164},[2673],{"type":60,"value":183},{"type":55,"tag":140,"props":2675,"children":2676},{"class":142,"line":576},[2677,2681,2685,2689,2693,2698,2702,2706,2711],{"type":55,"tag":140,"props":2678,"children":2679},{"style":153},[2680],{"type":60,"value":1709},{"type":55,"tag":140,"props":2682,"children":2683},{"style":164},[2684],{"type":60,"value":101},{"type":55,"tag":140,"props":2686,"children":2687},{"style":153},[2688],{"type":60,"value":2640},{"type":55,"tag":140,"props":2690,"children":2691},{"style":164},[2692],{"type":60,"value":101},{"type":55,"tag":140,"props":2694,"children":2695},{"style":225},[2696],{"type":60,"value":2697},"onLoad",{"type":55,"tag":140,"props":2699,"children":2700},{"style":153},[2701],{"type":60,"value":274},{"type":55,"tag":140,"props":2703,"children":2704},{"style":164},[2705],{"type":60,"value":233},{"type":55,"tag":140,"props":2707,"children":2708},{"style":200},[2709],{"type":60,"value":2710}," =>",{"type":55,"tag":140,"props":2712,"children":2713},{"style":164},[2714],{"type":60,"value":336},{"type":55,"tag":140,"props":2716,"children":2717},{"class":142,"line":674},[2718],{"type":55,"tag":140,"props":2719,"children":2720},{"style":368},[2721],{"type":60,"value":2722},"  \n",{"type":55,"tag":140,"props":2724,"children":2725},{"class":142,"line":682},[2726],{"type":55,"tag":140,"props":2727,"children":2728},{"style":2038},[2729],{"type":60,"value":2730},"  \u002F\u002F Step 4: Initialize SDK\n",{"type":55,"tag":140,"props":2732,"children":2733},{"class":142,"line":741},[2734,2739,2743,2747,2751],{"type":55,"tag":140,"props":2735,"children":2736},{"style":153},[2737],{"type":60,"value":2738},"  ZoomMtg",{"type":55,"tag":140,"props":2740,"children":2741},{"style":164},[2742],{"type":60,"value":101},{"type":55,"tag":140,"props":2744,"children":2745},{"style":225},[2746],{"type":60,"value":769},{"type":55,"tag":140,"props":2748,"children":2749},{"style":368},[2750],{"type":60,"value":274},{"type":55,"tag":140,"props":2752,"children":2753},{"style":164},[2754],{"type":60,"value":778},{"type":55,"tag":140,"props":2756,"children":2757},{"class":142,"line":749},[2758,2763,2767,2771,2776,2780],{"type":55,"tag":140,"props":2759,"children":2760},{"style":368},[2761],{"type":60,"value":2762},"    leaveUrl",{"type":55,"tag":140,"props":2764,"children":2765},{"style":164},[2766],{"type":60,"value":285},{"type":55,"tag":140,"props":2768,"children":2769},{"style":164},[2770],{"type":60,"value":167},{"type":55,"tag":140,"props":2772,"children":2773},{"style":170},[2774],{"type":60,"value":2775},"https:\u002F\u002Fyoursite.com\u002Fmeeting-ended",{"type":55,"tag":140,"props":2777,"children":2778},{"style":164},[2779],{"type":60,"value":178},{"type":55,"tag":140,"props":2781,"children":2782},{"style":164},[2783],{"type":60,"value":422},{"type":55,"tag":140,"props":2785,"children":2786},{"class":142,"line":781},[2787,2792,2796,2801,2806,2810,2815,2819],{"type":55,"tag":140,"props":2788,"children":2789},{"style":368},[2790],{"type":60,"value":2791},"    disableCORP",{"type":55,"tag":140,"props":2793,"children":2794},{"style":164},[2795],{"type":60,"value":285},{"type":55,"tag":140,"props":2797,"children":2798},{"style":164},[2799],{"type":60,"value":2800}," !",{"type":55,"tag":140,"props":2802,"children":2803},{"style":153},[2804],{"type":60,"value":2805},"window",{"type":55,"tag":140,"props":2807,"children":2808},{"style":164},[2809],{"type":60,"value":101},{"type":55,"tag":140,"props":2811,"children":2812},{"style":153},[2813],{"type":60,"value":2814},"crossOriginIsolated",{"type":55,"tag":140,"props":2816,"children":2817},{"style":164},[2818],{"type":60,"value":296},{"type":55,"tag":140,"props":2820,"children":2821},{"style":2038},[2822],{"type":60,"value":2823}," \u002F\u002F Auto-detect SharedArrayBuffer\n",{"type":55,"tag":140,"props":2825,"children":2826},{"class":142,"line":834},[2827,2831,2835,2839,2843],{"type":55,"tag":140,"props":2828,"children":2829},{"style":368},[2830],{"type":60,"value":870},{"type":55,"tag":140,"props":2832,"children":2833},{"style":164},[2834],{"type":60,"value":285},{"type":55,"tag":140,"props":2836,"children":2837},{"style":877},[2838],{"type":60,"value":880},{"type":55,"tag":140,"props":2840,"children":2841},{"style":164},[2842],{"type":60,"value":296},{"type":55,"tag":140,"props":2844,"children":2845},{"style":2038},[2846],{"type":60,"value":2847},"           \u002F\u002F Auto-apply media dependency fixes\n",{"type":55,"tag":140,"props":2849,"children":2850},{"class":142,"line":864},[2851,2855,2859,2863,2867],{"type":55,"tag":140,"props":2852,"children":2853},{"style":368},[2854],{"type":60,"value":893},{"type":55,"tag":140,"props":2856,"children":2857},{"style":164},[2858],{"type":60,"value":285},{"type":55,"tag":140,"props":2860,"children":2861},{"style":877},[2862],{"type":60,"value":880},{"type":55,"tag":140,"props":2864,"children":2865},{"style":164},[2866],{"type":60,"value":296},{"type":55,"tag":140,"props":2868,"children":2869},{"style":2038},[2870],{"type":60,"value":2871},"      \u002F\u002F Clean up when page unloads\n",{"type":55,"tag":140,"props":2873,"children":2874},{"class":142,"line":887},[2875,2880,2884,2888,2893,2897,2901],{"type":55,"tag":140,"props":2876,"children":2877},{"style":368},[2878],{"type":60,"value":2879},"    externalLinkPage",{"type":55,"tag":140,"props":2881,"children":2882},{"style":164},[2883],{"type":60,"value":285},{"type":55,"tag":140,"props":2885,"children":2886},{"style":164},[2887],{"type":60,"value":167},{"type":55,"tag":140,"props":2889,"children":2890},{"style":170},[2891],{"type":60,"value":2892},".\u002Fexternal.html",{"type":55,"tag":140,"props":2894,"children":2895},{"style":164},[2896],{"type":60,"value":178},{"type":55,"tag":140,"props":2898,"children":2899},{"style":164},[2900],{"type":60,"value":296},{"type":55,"tag":140,"props":2902,"children":2903},{"style":2038},[2904],{"type":60,"value":2905}," \u002F\u002F Page for external links\n",{"type":55,"tag":140,"props":2907,"children":2908},{"class":142,"line":908},[2909,2914,2918,2923,2927],{"type":55,"tag":140,"props":2910,"children":2911},{"style":225},[2912],{"type":60,"value":2913},"    success",{"type":55,"tag":140,"props":2915,"children":2916},{"style":164},[2917],{"type":60,"value":285},{"type":55,"tag":140,"props":2919,"children":2920},{"style":164},[2921],{"type":60,"value":2922}," ()",{"type":55,"tag":140,"props":2924,"children":2925},{"style":200},[2926],{"type":60,"value":2710},{"type":55,"tag":140,"props":2928,"children":2929},{"style":164},[2930],{"type":60,"value":336},{"type":55,"tag":140,"props":2932,"children":2933},{"class":142,"line":925},[2934],{"type":55,"tag":140,"props":2935,"children":2936},{"style":368},[2937],{"type":60,"value":2938},"      \n",{"type":55,"tag":140,"props":2940,"children":2941},{"class":142,"line":994},[2942],{"type":55,"tag":140,"props":2943,"children":2944},{"style":2038},[2945],{"type":60,"value":2946},"      \u002F\u002F Step 5: Join meeting (note: passWord with capital W!)\n",{"type":55,"tag":140,"props":2948,"children":2949},{"class":142,"line":1003},[2950,2955,2959,2963,2967],{"type":55,"tag":140,"props":2951,"children":2952},{"style":153},[2953],{"type":60,"value":2954},"      ZoomMtg",{"type":55,"tag":140,"props":2956,"children":2957},{"style":164},[2958],{"type":60,"value":101},{"type":55,"tag":140,"props":2960,"children":2961},{"style":225},[2962],{"type":60,"value":1045},{"type":55,"tag":140,"props":2964,"children":2965},{"style":368},[2966],{"type":60,"value":274},{"type":55,"tag":140,"props":2968,"children":2969},{"style":164},[2970],{"type":60,"value":778},{"type":55,"tag":140,"props":2972,"children":2973},{"class":142,"line":1019},[2974,2979,2983,2987,2991],{"type":55,"tag":140,"props":2975,"children":2976},{"style":368},[2977],{"type":60,"value":2978},"        signature",{"type":55,"tag":140,"props":2980,"children":2981},{"style":164},[2982],{"type":60,"value":285},{"type":55,"tag":140,"props":2984,"children":2985},{"style":153},[2986],{"type":60,"value":696},{"type":55,"tag":140,"props":2988,"children":2989},{"style":164},[2990],{"type":60,"value":296},{"type":55,"tag":140,"props":2992,"children":2993},{"style":2038},[2994],{"type":60,"value":2995},"       \u002F\u002F From your auth endpoint\n",{"type":55,"tag":140,"props":2997,"children":2998},{"class":142,"line":1027},[2999,3004,3008,3012,3017,3021],{"type":55,"tag":140,"props":3000,"children":3001},{"style":368},[3002],{"type":60,"value":3003},"        meetingNumber",{"type":55,"tag":140,"props":3005,"children":3006},{"style":164},[3007],{"type":60,"value":285},{"type":55,"tag":140,"props":3009,"children":3010},{"style":164},[3011],{"type":60,"value":167},{"type":55,"tag":140,"props":3013,"children":3014},{"style":170},[3015],{"type":60,"value":3016},"1234567890",{"type":55,"tag":140,"props":3018,"children":3019},{"style":164},[3020],{"type":60,"value":178},{"type":55,"tag":140,"props":3022,"children":3023},{"style":164},[3024],{"type":60,"value":422},{"type":55,"tag":140,"props":3026,"children":3027},{"class":142,"line":1056},[3028,3033,3037,3041,3046,3050],{"type":55,"tag":140,"props":3029,"children":3030},{"style":368},[3031],{"type":60,"value":3032},"        userName",{"type":55,"tag":140,"props":3034,"children":3035},{"style":164},[3036],{"type":60,"value":285},{"type":55,"tag":140,"props":3038,"children":3039},{"style":164},[3040],{"type":60,"value":167},{"type":55,"tag":140,"props":3042,"children":3043},{"style":170},[3044],{"type":60,"value":3045},"User Name",{"type":55,"tag":140,"props":3047,"children":3048},{"style":164},[3049],{"type":60,"value":178},{"type":55,"tag":140,"props":3051,"children":3052},{"style":164},[3053],{"type":60,"value":422},{"type":55,"tag":140,"props":3055,"children":3056},{"class":142,"line":1069},[3057,3062,3066,3070,3075,3079,3083],{"type":55,"tag":140,"props":3058,"children":3059},{"style":368},[3060],{"type":60,"value":3061},"        passWord",{"type":55,"tag":140,"props":3063,"children":3064},{"style":164},[3065],{"type":60,"value":285},{"type":55,"tag":140,"props":3067,"children":3068},{"style":164},[3069],{"type":60,"value":167},{"type":55,"tag":140,"props":3071,"children":3072},{"style":170},[3073],{"type":60,"value":3074},"meeting-password",{"type":55,"tag":140,"props":3076,"children":3077},{"style":164},[3078],{"type":60,"value":178},{"type":55,"tag":140,"props":3080,"children":3081},{"style":164},[3082],{"type":60,"value":296},{"type":55,"tag":140,"props":3084,"children":3085},{"style":2038},[3086],{"type":60,"value":3087}," \u002F\u002F Capital W!\n",{"type":55,"tag":140,"props":3089,"children":3090},{"class":142,"line":1082},[3091,3096,3100,3104,3109,3113,3117],{"type":55,"tag":140,"props":3092,"children":3093},{"style":225},[3094],{"type":60,"value":3095},"        success",{"type":55,"tag":140,"props":3097,"children":3098},{"style":164},[3099],{"type":60,"value":285},{"type":55,"tag":140,"props":3101,"children":3102},{"style":164},[3103],{"type":60,"value":587},{"type":55,"tag":140,"props":3105,"children":3106},{"style":277},[3107],{"type":60,"value":3108},"res",{"type":55,"tag":140,"props":3110,"children":3111},{"style":164},[3112],{"type":60,"value":331},{"type":55,"tag":140,"props":3114,"children":3115},{"style":200},[3116],{"type":60,"value":2710},{"type":55,"tag":140,"props":3118,"children":3119},{"style":164},[3120],{"type":60,"value":336},{"type":55,"tag":140,"props":3122,"children":3123},{"class":142,"line":1095},[3124,3129,3133,3137,3141,3145,3150,3154,3158,3163,3167],{"type":55,"tag":140,"props":3125,"children":3126},{"style":153},[3127],{"type":60,"value":3128},"          console",{"type":55,"tag":140,"props":3130,"children":3131},{"style":164},[3132],{"type":60,"value":101},{"type":55,"tag":140,"props":3134,"children":3135},{"style":225},[3136],{"type":60,"value":2503},{"type":55,"tag":140,"props":3138,"children":3139},{"style":368},[3140],{"type":60,"value":274},{"type":55,"tag":140,"props":3142,"children":3143},{"style":164},[3144],{"type":60,"value":178},{"type":55,"tag":140,"props":3146,"children":3147},{"style":170},[3148],{"type":60,"value":3149},"Joined meeting:",{"type":55,"tag":140,"props":3151,"children":3152},{"style":164},[3153],{"type":60,"value":178},{"type":55,"tag":140,"props":3155,"children":3156},{"style":164},[3157],{"type":60,"value":296},{"type":55,"tag":140,"props":3159,"children":3160},{"style":153},[3161],{"type":60,"value":3162}," res",{"type":55,"tag":140,"props":3164,"children":3165},{"style":368},[3166],{"type":60,"value":331},{"type":55,"tag":140,"props":3168,"children":3169},{"style":164},[3170],{"type":60,"value":183},{"type":55,"tag":140,"props":3172,"children":3173},{"class":142,"line":1108},[3174],{"type":55,"tag":140,"props":3175,"children":3176},{"style":368},[3177],{"type":60,"value":3178},"          \n",{"type":55,"tag":140,"props":3180,"children":3181},{"class":142,"line":1121},[3182],{"type":55,"tag":140,"props":3183,"children":3184},{"style":2038},[3185],{"type":60,"value":3186},"          \u002F\u002F Post-join: Get meeting info\n",{"type":55,"tag":140,"props":3188,"children":3189},{"class":142,"line":1137},[3190,3195,3199,3204,3208,3213,3217],{"type":55,"tag":140,"props":3191,"children":3192},{"style":153},[3193],{"type":60,"value":3194},"          ZoomMtg",{"type":55,"tag":140,"props":3196,"children":3197},{"style":164},[3198],{"type":60,"value":101},{"type":55,"tag":140,"props":3200,"children":3201},{"style":225},[3202],{"type":60,"value":3203},"getAttendeeslist",{"type":55,"tag":140,"props":3205,"children":3206},{"style":368},[3207],{"type":60,"value":274},{"type":55,"tag":140,"props":3209,"children":3210},{"style":164},[3211],{"type":60,"value":3212},"{}",{"type":55,"tag":140,"props":3214,"children":3215},{"style":368},[3216],{"type":60,"value":331},{"type":55,"tag":140,"props":3218,"children":3219},{"style":164},[3220],{"type":60,"value":183},{"type":55,"tag":140,"props":3222,"children":3224},{"class":142,"line":3223},34,[3225,3229,3233,3238,3242],{"type":55,"tag":140,"props":3226,"children":3227},{"style":153},[3228],{"type":60,"value":3194},{"type":55,"tag":140,"props":3230,"children":3231},{"style":164},[3232],{"type":60,"value":101},{"type":55,"tag":140,"props":3234,"children":3235},{"style":225},[3236],{"type":60,"value":3237},"getCurrentUser",{"type":55,"tag":140,"props":3239,"children":3240},{"style":368},[3241],{"type":60,"value":274},{"type":55,"tag":140,"props":3243,"children":3244},{"style":164},[3245],{"type":60,"value":778},{"type":55,"tag":140,"props":3247,"children":3249},{"class":142,"line":3248},35,[3250,3255,3259,3263,3267,3271,3275,3280,3284,3288,3292,3296,3301,3305,3309,3313,3317,3322,3326,3331],{"type":55,"tag":140,"props":3251,"children":3252},{"style":225},[3253],{"type":60,"value":3254},"            success",{"type":55,"tag":140,"props":3256,"children":3257},{"style":164},[3258],{"type":60,"value":285},{"type":55,"tag":140,"props":3260,"children":3261},{"style":164},[3262],{"type":60,"value":587},{"type":55,"tag":140,"props":3264,"children":3265},{"style":277},[3266],{"type":60,"value":3108},{"type":55,"tag":140,"props":3268,"children":3269},{"style":164},[3270],{"type":60,"value":331},{"type":55,"tag":140,"props":3272,"children":3273},{"style":200},[3274],{"type":60,"value":2710},{"type":55,"tag":140,"props":3276,"children":3277},{"style":153},[3278],{"type":60,"value":3279}," console",{"type":55,"tag":140,"props":3281,"children":3282},{"style":164},[3283],{"type":60,"value":101},{"type":55,"tag":140,"props":3285,"children":3286},{"style":225},[3287],{"type":60,"value":2503},{"type":55,"tag":140,"props":3289,"children":3290},{"style":368},[3291],{"type":60,"value":274},{"type":55,"tag":140,"props":3293,"children":3294},{"style":164},[3295],{"type":60,"value":178},{"type":55,"tag":140,"props":3297,"children":3298},{"style":170},[3299],{"type":60,"value":3300},"Current user:",{"type":55,"tag":140,"props":3302,"children":3303},{"style":164},[3304],{"type":60,"value":178},{"type":55,"tag":140,"props":3306,"children":3307},{"style":164},[3308],{"type":60,"value":296},{"type":55,"tag":140,"props":3310,"children":3311},{"style":153},[3312],{"type":60,"value":3162},{"type":55,"tag":140,"props":3314,"children":3315},{"style":164},[3316],{"type":60,"value":101},{"type":55,"tag":140,"props":3318,"children":3319},{"style":153},[3320],{"type":60,"value":3321},"result",{"type":55,"tag":140,"props":3323,"children":3324},{"style":164},[3325],{"type":60,"value":101},{"type":55,"tag":140,"props":3327,"children":3328},{"style":153},[3329],{"type":60,"value":3330},"currentUser",{"type":55,"tag":140,"props":3332,"children":3333},{"style":368},[3334],{"type":60,"value":3335},")\n",{"type":55,"tag":140,"props":3337,"children":3339},{"class":142,"line":3338},36,[3340,3345,3349],{"type":55,"tag":140,"props":3341,"children":3342},{"style":164},[3343],{"type":60,"value":3344},"          }",{"type":55,"tag":140,"props":3346,"children":3347},{"style":368},[3348],{"type":60,"value":331},{"type":55,"tag":140,"props":3350,"children":3351},{"style":164},[3352],{"type":60,"value":183},{"type":55,"tag":140,"props":3354,"children":3356},{"class":142,"line":3355},37,[3357],{"type":55,"tag":140,"props":3358,"children":3359},{"style":164},[3360],{"type":60,"value":3361},"        },\n",{"type":55,"tag":140,"props":3363,"children":3365},{"class":142,"line":3364},38,[3366,3371,3375,3379,3384,3388,3392],{"type":55,"tag":140,"props":3367,"children":3368},{"style":225},[3369],{"type":60,"value":3370},"        error",{"type":55,"tag":140,"props":3372,"children":3373},{"style":164},[3374],{"type":60,"value":285},{"type":55,"tag":140,"props":3376,"children":3377},{"style":164},[3378],{"type":60,"value":587},{"type":55,"tag":140,"props":3380,"children":3381},{"style":277},[3382],{"type":60,"value":3383},"err",{"type":55,"tag":140,"props":3385,"children":3386},{"style":164},[3387],{"type":60,"value":331},{"type":55,"tag":140,"props":3389,"children":3390},{"style":200},[3391],{"type":60,"value":2710},{"type":55,"tag":140,"props":3393,"children":3394},{"style":164},[3395],{"type":60,"value":336},{"type":55,"tag":140,"props":3397,"children":3399},{"class":142,"line":3398},39,[3400,3404,3408,3413,3417,3421,3426,3430,3434,3439,3443],{"type":55,"tag":140,"props":3401,"children":3402},{"style":153},[3403],{"type":60,"value":3128},{"type":55,"tag":140,"props":3405,"children":3406},{"style":164},[3407],{"type":60,"value":101},{"type":55,"tag":140,"props":3409,"children":3410},{"style":225},[3411],{"type":60,"value":3412},"error",{"type":55,"tag":140,"props":3414,"children":3415},{"style":368},[3416],{"type":60,"value":274},{"type":55,"tag":140,"props":3418,"children":3419},{"style":164},[3420],{"type":60,"value":178},{"type":55,"tag":140,"props":3422,"children":3423},{"style":170},[3424],{"type":60,"value":3425},"Join error:",{"type":55,"tag":140,"props":3427,"children":3428},{"style":164},[3429],{"type":60,"value":178},{"type":55,"tag":140,"props":3431,"children":3432},{"style":164},[3433],{"type":60,"value":296},{"type":55,"tag":140,"props":3435,"children":3436},{"style":153},[3437],{"type":60,"value":3438}," err",{"type":55,"tag":140,"props":3440,"children":3441},{"style":368},[3442],{"type":60,"value":331},{"type":55,"tag":140,"props":3444,"children":3445},{"style":164},[3446],{"type":60,"value":183},{"type":55,"tag":140,"props":3448,"children":3450},{"class":142,"line":3449},40,[3451],{"type":55,"tag":140,"props":3452,"children":3453},{"style":164},[3454],{"type":60,"value":3455},"        }\n",{"type":55,"tag":140,"props":3457,"children":3459},{"class":142,"line":3458},41,[3460,3465,3469],{"type":55,"tag":140,"props":3461,"children":3462},{"style":164},[3463],{"type":60,"value":3464},"      }",{"type":55,"tag":140,"props":3466,"children":3467},{"style":368},[3468],{"type":60,"value":331},{"type":55,"tag":140,"props":3470,"children":3471},{"style":164},[3472],{"type":60,"value":183},{"type":55,"tag":140,"props":3474,"children":3476},{"class":142,"line":3475},42,[3477],{"type":55,"tag":140,"props":3478,"children":3479},{"style":164},[3480],{"type":60,"value":1000},{"type":55,"tag":140,"props":3482,"children":3484},{"class":142,"line":3483},43,[3485,3490,3494,3498,3502,3506,3510],{"type":55,"tag":140,"props":3486,"children":3487},{"style":225},[3488],{"type":60,"value":3489},"    error",{"type":55,"tag":140,"props":3491,"children":3492},{"style":164},[3493],{"type":60,"value":285},{"type":55,"tag":140,"props":3495,"children":3496},{"style":164},[3497],{"type":60,"value":587},{"type":55,"tag":140,"props":3499,"children":3500},{"style":277},[3501],{"type":60,"value":3383},{"type":55,"tag":140,"props":3503,"children":3504},{"style":164},[3505],{"type":60,"value":331},{"type":55,"tag":140,"props":3507,"children":3508},{"style":200},[3509],{"type":60,"value":2710},{"type":55,"tag":140,"props":3511,"children":3512},{"style":164},[3513],{"type":60,"value":336},{"type":55,"tag":140,"props":3515,"children":3517},{"class":142,"line":3516},44,[3518,3523,3527,3531,3535,3539,3544,3548,3552,3556,3560],{"type":55,"tag":140,"props":3519,"children":3520},{"style":153},[3521],{"type":60,"value":3522},"      console",{"type":55,"tag":140,"props":3524,"children":3525},{"style":164},[3526],{"type":60,"value":101},{"type":55,"tag":140,"props":3528,"children":3529},{"style":225},[3530],{"type":60,"value":3412},{"type":55,"tag":140,"props":3532,"children":3533},{"style":368},[3534],{"type":60,"value":274},{"type":55,"tag":140,"props":3536,"children":3537},{"style":164},[3538],{"type":60,"value":178},{"type":55,"tag":140,"props":3540,"children":3541},{"style":170},[3542],{"type":60,"value":3543},"Init error:",{"type":55,"tag":140,"props":3545,"children":3546},{"style":164},[3547],{"type":60,"value":178},{"type":55,"tag":140,"props":3549,"children":3550},{"style":164},[3551],{"type":60,"value":296},{"type":55,"tag":140,"props":3553,"children":3554},{"style":153},[3555],{"type":60,"value":3438},{"type":55,"tag":140,"props":3557,"children":3558},{"style":368},[3559],{"type":60,"value":331},{"type":55,"tag":140,"props":3561,"children":3562},{"style":164},[3563],{"type":60,"value":183},{"type":55,"tag":140,"props":3565,"children":3567},{"class":142,"line":3566},45,[3568],{"type":55,"tag":140,"props":3569,"children":3570},{"style":164},[3571],{"type":60,"value":3572},"    }\n",{"type":55,"tag":140,"props":3574,"children":3576},{"class":142,"line":3575},46,[3577,3581,3585],{"type":55,"tag":140,"props":3578,"children":3579},{"style":164},[3580],{"type":60,"value":557},{"type":55,"tag":140,"props":3582,"children":3583},{"style":368},[3584],{"type":60,"value":331},{"type":55,"tag":140,"props":3586,"children":3587},{"style":164},[3588],{"type":60,"value":183},{"type":55,"tag":140,"props":3590,"children":3592},{"class":142,"line":3591},47,[3593,3598,3602],{"type":55,"tag":140,"props":3594,"children":3595},{"style":164},[3596],{"type":60,"value":3597},"}",{"type":55,"tag":140,"props":3599,"children":3600},{"style":153},[3601],{"type":60,"value":331},{"type":55,"tag":140,"props":3603,"children":3604},{"style":164},[3605],{"type":60,"value":183},{"type":55,"tag":84,"props":3607,"children":3609},{"id":3608},"quick-start-component-view",[3610],{"type":60,"value":3611},"Quick Start (Component View)",{"type":55,"tag":113,"props":3613,"children":3615},{"className":2423,"code":3614,"language":2425,"meta":118,"style":118},"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",[3616],{"type":55,"tag":121,"props":3617,"children":3618},{"__ignoreMap":118},[3619,3650,3657,3665,3700,3707,3732,3744,3752,3780,3828,3856,3881,3906,3931,3947,3954,3962,3989,4014,4035,4063,4091,4124,4139,4147,4188,4216,4265,4273],{"type":55,"tag":140,"props":3620,"children":3621},{"class":142,"line":143},[3622,3626,3630,3634,3638,3642,3646],{"type":55,"tag":140,"props":3623,"children":3624},{"style":147},[3625],{"type":60,"value":150},{"type":55,"tag":140,"props":3627,"children":3628},{"style":153},[3629],{"type":60,"value":156},{"type":55,"tag":140,"props":3631,"children":3632},{"style":147},[3633],{"type":60,"value":161},{"type":55,"tag":140,"props":3635,"children":3636},{"style":164},[3637],{"type":60,"value":167},{"type":55,"tag":140,"props":3639,"children":3640},{"style":170},[3641],{"type":60,"value":173},{"type":55,"tag":140,"props":3643,"children":3644},{"style":164},[3645],{"type":60,"value":178},{"type":55,"tag":140,"props":3647,"children":3648},{"style":164},[3649],{"type":60,"value":183},{"type":55,"tag":140,"props":3651,"children":3652},{"class":142,"line":186},[3653],{"type":55,"tag":140,"props":3654,"children":3655},{"emptyLinePlaceholder":190},[3656],{"type":60,"value":193},{"type":55,"tag":140,"props":3658,"children":3659},{"class":142,"line":196},[3660],{"type":55,"tag":140,"props":3661,"children":3662},{"style":2038},[3663],{"type":60,"value":3664},"\u002F\u002F Create client instance (do this ONCE, not on every render!)\n",{"type":55,"tag":140,"props":3666,"children":3667},{"class":142,"line":240},[3668,3672,3676,3680,3684,3688,3692,3696],{"type":55,"tag":140,"props":3669,"children":3670},{"style":200},[3671],{"type":60,"value":203},{"type":55,"tag":140,"props":3673,"children":3674},{"style":153},[3675],{"type":60,"value":208},{"type":55,"tag":140,"props":3677,"children":3678},{"style":164},[3679],{"type":60,"value":213},{"type":55,"tag":140,"props":3681,"children":3682},{"style":153},[3683],{"type":60,"value":218},{"type":55,"tag":140,"props":3685,"children":3686},{"style":164},[3687],{"type":60,"value":101},{"type":55,"tag":140,"props":3689,"children":3690},{"style":225},[3691],{"type":60,"value":228},{"type":55,"tag":140,"props":3693,"children":3694},{"style":153},[3695],{"type":60,"value":233},{"type":55,"tag":140,"props":3697,"children":3698},{"style":164},[3699],{"type":60,"value":183},{"type":55,"tag":140,"props":3701,"children":3702},{"class":142,"line":248},[3703],{"type":55,"tag":140,"props":3704,"children":3705},{"emptyLinePlaceholder":190},[3706],{"type":60,"value":193},{"type":55,"tag":140,"props":3708,"children":3709},{"class":142,"line":339},[3710,3715,3719,3724,3728],{"type":55,"tag":140,"props":3711,"children":3712},{"style":200},[3713],{"type":60,"value":3714},"async",{"type":55,"tag":140,"props":3716,"children":3717},{"style":200},[3718],{"type":60,"value":264},{"type":55,"tag":140,"props":3720,"children":3721},{"style":225},[3722],{"type":60,"value":3723}," startMeeting",{"type":55,"tag":140,"props":3725,"children":3726},{"style":164},[3727],{"type":60,"value":233},{"type":55,"tag":140,"props":3729,"children":3730},{"style":164},[3731],{"type":60,"value":336},{"type":55,"tag":140,"props":3733,"children":3734},{"class":142,"line":394},[3735,3740],{"type":55,"tag":140,"props":3736,"children":3737},{"style":147},[3738],{"type":60,"value":3739},"  try",{"type":55,"tag":140,"props":3741,"children":3742},{"style":164},[3743],{"type":60,"value":336},{"type":55,"tag":140,"props":3745,"children":3746},{"class":142,"line":425},[3747],{"type":55,"tag":140,"props":3748,"children":3749},{"style":2038},[3750],{"type":60,"value":3751},"    \u002F\u002F Initialize with container element\n",{"type":55,"tag":140,"props":3753,"children":3754},{"class":142,"line":478},[3755,3760,3764,3768,3772,3776],{"type":55,"tag":140,"props":3756,"children":3757},{"style":147},[3758],{"type":60,"value":3759},"    await",{"type":55,"tag":140,"props":3761,"children":3762},{"style":153},[3763],{"type":60,"value":760},{"type":55,"tag":140,"props":3765,"children":3766},{"style":164},[3767],{"type":60,"value":101},{"type":55,"tag":140,"props":3769,"children":3770},{"style":225},[3771],{"type":60,"value":769},{"type":55,"tag":140,"props":3773,"children":3774},{"style":368},[3775],{"type":60,"value":274},{"type":55,"tag":140,"props":3777,"children":3778},{"style":164},[3779],{"type":60,"value":778},{"type":55,"tag":140,"props":3781,"children":3782},{"class":142,"line":551},[3783,3788,3792,3796,3800,3804,3808,3812,3816,3820,3824],{"type":55,"tag":140,"props":3784,"children":3785},{"style":368},[3786],{"type":60,"value":3787},"      zoomAppRoot",{"type":55,"tag":140,"props":3789,"children":3790},{"style":164},[3791],{"type":60,"value":285},{"type":55,"tag":140,"props":3793,"children":3794},{"style":153},[3795],{"type":60,"value":796},{"type":55,"tag":140,"props":3797,"children":3798},{"style":164},[3799],{"type":60,"value":101},{"type":55,"tag":140,"props":3801,"children":3802},{"style":225},[3803],{"type":60,"value":805},{"type":55,"tag":140,"props":3805,"children":3806},{"style":368},[3807],{"type":60,"value":274},{"type":55,"tag":140,"props":3809,"children":3810},{"style":164},[3811],{"type":60,"value":178},{"type":55,"tag":140,"props":3813,"children":3814},{"style":170},[3815],{"type":60,"value":818},{"type":55,"tag":140,"props":3817,"children":3818},{"style":164},[3819],{"type":60,"value":178},{"type":55,"tag":140,"props":3821,"children":3822},{"style":368},[3823],{"type":60,"value":331},{"type":55,"tag":140,"props":3825,"children":3826},{"style":164},[3827],{"type":60,"value":422},{"type":55,"tag":140,"props":3829,"children":3830},{"class":142,"line":568},[3831,3836,3840,3844,3848,3852],{"type":55,"tag":140,"props":3832,"children":3833},{"style":368},[3834],{"type":60,"value":3835},"      language",{"type":55,"tag":140,"props":3837,"children":3838},{"style":164},[3839],{"type":60,"value":285},{"type":55,"tag":140,"props":3841,"children":3842},{"style":164},[3843],{"type":60,"value":167},{"type":55,"tag":140,"props":3845,"children":3846},{"style":170},[3847],{"type":60,"value":853},{"type":55,"tag":140,"props":3849,"children":3850},{"style":164},[3851],{"type":60,"value":178},{"type":55,"tag":140,"props":3853,"children":3854},{"style":164},[3855],{"type":60,"value":422},{"type":55,"tag":140,"props":3857,"children":3858},{"class":142,"line":576},[3859,3864,3868,3872,3876],{"type":55,"tag":140,"props":3860,"children":3861},{"style":368},[3862],{"type":60,"value":3863},"      debug",{"type":55,"tag":140,"props":3865,"children":3866},{"style":164},[3867],{"type":60,"value":285},{"type":55,"tag":140,"props":3869,"children":3870},{"style":877},[3871],{"type":60,"value":880},{"type":55,"tag":140,"props":3873,"children":3874},{"style":164},[3875],{"type":60,"value":296},{"type":55,"tag":140,"props":3877,"children":3878},{"style":2038},[3879],{"type":60,"value":3880},"                  \u002F\u002F Enable debug logging\n",{"type":55,"tag":140,"props":3882,"children":3883},{"class":142,"line":674},[3884,3889,3893,3897,3901],{"type":55,"tag":140,"props":3885,"children":3886},{"style":368},[3887],{"type":60,"value":3888},"      patchJsMedia",{"type":55,"tag":140,"props":3890,"children":3891},{"style":164},[3892],{"type":60,"value":285},{"type":55,"tag":140,"props":3894,"children":3895},{"style":877},[3896],{"type":60,"value":880},{"type":55,"tag":140,"props":3898,"children":3899},{"style":164},[3900],{"type":60,"value":296},{"type":55,"tag":140,"props":3902,"children":3903},{"style":2038},[3904],{"type":60,"value":3905},"           \u002F\u002F Auto-apply media fixes\n",{"type":55,"tag":140,"props":3907,"children":3908},{"class":142,"line":682},[3909,3914,3918,3922,3926],{"type":55,"tag":140,"props":3910,"children":3911},{"style":368},[3912],{"type":60,"value":3913},"      leaveOnPageUnload",{"type":55,"tag":140,"props":3915,"children":3916},{"style":164},[3917],{"type":60,"value":285},{"type":55,"tag":140,"props":3919,"children":3920},{"style":877},[3921],{"type":60,"value":880},{"type":55,"tag":140,"props":3923,"children":3924},{"style":164},[3925],{"type":60,"value":296},{"type":55,"tag":140,"props":3927,"children":3928},{"style":2038},[3929],{"type":60,"value":3930},"      \u002F\u002F Clean up on page unload\n",{"type":55,"tag":140,"props":3932,"children":3933},{"class":142,"line":741},[3934,3939,3943],{"type":55,"tag":140,"props":3935,"children":3936},{"style":164},[3937],{"type":60,"value":3938},"    }",{"type":55,"tag":140,"props":3940,"children":3941},{"style":368},[3942],{"type":60,"value":331},{"type":55,"tag":140,"props":3944,"children":3945},{"style":164},[3946],{"type":60,"value":183},{"type":55,"tag":140,"props":3948,"children":3949},{"class":142,"line":749},[3950],{"type":55,"tag":140,"props":3951,"children":3952},{"emptyLinePlaceholder":190},[3953],{"type":60,"value":193},{"type":55,"tag":140,"props":3955,"children":3956},{"class":142,"line":781},[3957],{"type":55,"tag":140,"props":3958,"children":3959},{"style":2038},[3960],{"type":60,"value":3961},"    \u002F\u002F Join meeting (note: password lowercase!)\n",{"type":55,"tag":140,"props":3963,"children":3964},{"class":142,"line":834},[3965,3969,3973,3977,3981,3985],{"type":55,"tag":140,"props":3966,"children":3967},{"style":147},[3968],{"type":60,"value":3759},{"type":55,"tag":140,"props":3970,"children":3971},{"style":153},[3972],{"type":60,"value":760},{"type":55,"tag":140,"props":3974,"children":3975},{"style":164},[3976],{"type":60,"value":101},{"type":55,"tag":140,"props":3978,"children":3979},{"style":225},[3980],{"type":60,"value":1045},{"type":55,"tag":140,"props":3982,"children":3983},{"style":368},[3984],{"type":60,"value":274},{"type":55,"tag":140,"props":3986,"children":3987},{"style":164},[3988],{"type":60,"value":778},{"type":55,"tag":140,"props":3990,"children":3991},{"class":142,"line":864},[3992,3997,4001,4005,4009],{"type":55,"tag":140,"props":3993,"children":3994},{"style":368},[3995],{"type":60,"value":3996},"      signature",{"type":55,"tag":140,"props":3998,"children":3999},{"style":164},[4000],{"type":60,"value":285},{"type":55,"tag":140,"props":4002,"children":4003},{"style":153},[4004],{"type":60,"value":696},{"type":55,"tag":140,"props":4006,"children":4007},{"style":164},[4008],{"type":60,"value":296},{"type":55,"tag":140,"props":4010,"children":4011},{"style":2038},[4012],{"type":60,"value":4013},"          \u002F\u002F From your auth endpoint\n",{"type":55,"tag":140,"props":4015,"children":4016},{"class":142,"line":887},[4017,4022,4026,4031],{"type":55,"tag":140,"props":4018,"children":4019},{"style":368},[4020],{"type":60,"value":4021},"      sdkKey",{"type":55,"tag":140,"props":4023,"children":4024},{"style":164},[4025],{"type":60,"value":285},{"type":55,"tag":140,"props":4027,"children":4028},{"style":153},[4029],{"type":60,"value":4030}," SDK_KEY",{"type":55,"tag":140,"props":4032,"children":4033},{"style":164},[4034],{"type":60,"value":422},{"type":55,"tag":140,"props":4036,"children":4037},{"class":142,"line":908},[4038,4043,4047,4051,4055,4059],{"type":55,"tag":140,"props":4039,"children":4040},{"style":368},[4041],{"type":60,"value":4042},"      meetingNumber",{"type":55,"tag":140,"props":4044,"children":4045},{"style":164},[4046],{"type":60,"value":285},{"type":55,"tag":140,"props":4048,"children":4049},{"style":164},[4050],{"type":60,"value":167},{"type":55,"tag":140,"props":4052,"children":4053},{"style":170},[4054],{"type":60,"value":3016},{"type":55,"tag":140,"props":4056,"children":4057},{"style":164},[4058],{"type":60,"value":178},{"type":55,"tag":140,"props":4060,"children":4061},{"style":164},[4062],{"type":60,"value":422},{"type":55,"tag":140,"props":4064,"children":4065},{"class":142,"line":925},[4066,4071,4075,4079,4083,4087],{"type":55,"tag":140,"props":4067,"children":4068},{"style":368},[4069],{"type":60,"value":4070},"      userName",{"type":55,"tag":140,"props":4072,"children":4073},{"style":164},[4074],{"type":60,"value":285},{"type":55,"tag":140,"props":4076,"children":4077},{"style":164},[4078],{"type":60,"value":167},{"type":55,"tag":140,"props":4080,"children":4081},{"style":170},[4082],{"type":60,"value":3045},{"type":55,"tag":140,"props":4084,"children":4085},{"style":164},[4086],{"type":60,"value":178},{"type":55,"tag":140,"props":4088,"children":4089},{"style":164},[4090],{"type":60,"value":422},{"type":55,"tag":140,"props":4092,"children":4093},{"class":142,"line":994},[4094,4099,4103,4107,4111,4115,4119],{"type":55,"tag":140,"props":4095,"children":4096},{"style":368},[4097],{"type":60,"value":4098},"      password",{"type":55,"tag":140,"props":4100,"children":4101},{"style":164},[4102],{"type":60,"value":285},{"type":55,"tag":140,"props":4104,"children":4105},{"style":164},[4106],{"type":60,"value":167},{"type":55,"tag":140,"props":4108,"children":4109},{"style":170},[4110],{"type":60,"value":3074},{"type":55,"tag":140,"props":4112,"children":4113},{"style":164},[4114],{"type":60,"value":178},{"type":55,"tag":140,"props":4116,"children":4117},{"style":164},[4118],{"type":60,"value":296},{"type":55,"tag":140,"props":4120,"children":4121},{"style":2038},[4122],{"type":60,"value":4123},"  \u002F\u002F Lowercase!\n",{"type":55,"tag":140,"props":4125,"children":4126},{"class":142,"line":1003},[4127,4131,4135],{"type":55,"tag":140,"props":4128,"children":4129},{"style":164},[4130],{"type":60,"value":3938},{"type":55,"tag":140,"props":4132,"children":4133},{"style":368},[4134],{"type":60,"value":331},{"type":55,"tag":140,"props":4136,"children":4137},{"style":164},[4138],{"type":60,"value":183},{"type":55,"tag":140,"props":4140,"children":4141},{"class":142,"line":1019},[4142],{"type":55,"tag":140,"props":4143,"children":4144},{"style":368},[4145],{"type":60,"value":4146},"    \n",{"type":55,"tag":140,"props":4148,"children":4149},{"class":142,"line":1027},[4150,4155,4159,4163,4167,4171,4176,4180,4184],{"type":55,"tag":140,"props":4151,"children":4152},{"style":153},[4153],{"type":60,"value":4154},"    console",{"type":55,"tag":140,"props":4156,"children":4157},{"style":164},[4158],{"type":60,"value":101},{"type":55,"tag":140,"props":4160,"children":4161},{"style":225},[4162],{"type":60,"value":2503},{"type":55,"tag":140,"props":4164,"children":4165},{"style":368},[4166],{"type":60,"value":274},{"type":55,"tag":140,"props":4168,"children":4169},{"style":164},[4170],{"type":60,"value":178},{"type":55,"tag":140,"props":4172,"children":4173},{"style":170},[4174],{"type":60,"value":4175},"Joined successfully!",{"type":55,"tag":140,"props":4177,"children":4178},{"style":164},[4179],{"type":60,"value":178},{"type":55,"tag":140,"props":4181,"children":4182},{"style":368},[4183],{"type":60,"value":331},{"type":55,"tag":140,"props":4185,"children":4186},{"style":164},[4187],{"type":60,"value":183},{"type":55,"tag":140,"props":4189,"children":4190},{"class":142,"line":1056},[4191,4195,4200,4204,4208,4212],{"type":55,"tag":140,"props":4192,"children":4193},{"style":164},[4194],{"type":60,"value":557},{"type":55,"tag":140,"props":4196,"children":4197},{"style":147},[4198],{"type":60,"value":4199}," catch",{"type":55,"tag":140,"props":4201,"children":4202},{"style":368},[4203],{"type":60,"value":587},{"type":55,"tag":140,"props":4205,"children":4206},{"style":153},[4207],{"type":60,"value":3412},{"type":55,"tag":140,"props":4209,"children":4210},{"style":368},[4211],{"type":60,"value":611},{"type":55,"tag":140,"props":4213,"children":4214},{"style":164},[4215],{"type":60,"value":778},{"type":55,"tag":140,"props":4217,"children":4218},{"class":142,"line":1069},[4219,4223,4227,4231,4235,4239,4244,4248,4252,4257,4261],{"type":55,"tag":140,"props":4220,"children":4221},{"style":153},[4222],{"type":60,"value":4154},{"type":55,"tag":140,"props":4224,"children":4225},{"style":164},[4226],{"type":60,"value":101},{"type":55,"tag":140,"props":4228,"children":4229},{"style":225},[4230],{"type":60,"value":3412},{"type":55,"tag":140,"props":4232,"children":4233},{"style":368},[4234],{"type":60,"value":274},{"type":55,"tag":140,"props":4236,"children":4237},{"style":164},[4238],{"type":60,"value":178},{"type":55,"tag":140,"props":4240,"children":4241},{"style":170},[4242],{"type":60,"value":4243},"Failed to join:",{"type":55,"tag":140,"props":4245,"children":4246},{"style":164},[4247],{"type":60,"value":178},{"type":55,"tag":140,"props":4249,"children":4250},{"style":164},[4251],{"type":60,"value":296},{"type":55,"tag":140,"props":4253,"children":4254},{"style":153},[4255],{"type":60,"value":4256}," error",{"type":55,"tag":140,"props":4258,"children":4259},{"style":368},[4260],{"type":60,"value":331},{"type":55,"tag":140,"props":4262,"children":4263},{"style":164},[4264],{"type":60,"value":183},{"type":55,"tag":140,"props":4266,"children":4267},{"class":142,"line":1082},[4268],{"type":55,"tag":140,"props":4269,"children":4270},{"style":164},[4271],{"type":60,"value":4272},"  }\n",{"type":55,"tag":140,"props":4274,"children":4275},{"class":142,"line":1095},[4276],{"type":55,"tag":140,"props":4277,"children":4278},{"style":164},[4279],{"type":60,"value":1143},{"type":55,"tag":84,"props":4281,"children":4283},{"id":4282},"authentication-endpoint-required",[4284],{"type":60,"value":4285},"Authentication Endpoint (Required)",{"type":55,"tag":63,"props":4287,"children":4288},{},[4289,4291],{"type":60,"value":4290},"Both views require a JWT signature from a backend server. ",{"type":55,"tag":69,"props":4292,"children":4293},{},[4294],{"type":60,"value":4295},"Never expose your SDK Secret in frontend code!",{"type":55,"tag":113,"props":4297,"children":4299},{"className":1989,"code":4298,"language":1991,"meta":118,"style":118},"# 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",[4300],{"type":55,"tag":121,"props":4301,"children":4302},{"__ignoreMap":118},[4303,4311,4339,4352,4370,4378],{"type":55,"tag":140,"props":4304,"children":4305},{"class":142,"line":143},[4306],{"type":55,"tag":140,"props":4307,"children":4308},{"style":2038},[4309],{"type":60,"value":4310},"# Clone Zoom's official auth endpoint\n",{"type":55,"tag":140,"props":4312,"children":4313},{"class":142,"line":186},[4314,4319,4324,4329,4334],{"type":55,"tag":140,"props":4315,"children":4316},{"style":288},[4317],{"type":60,"value":4318},"git",{"type":55,"tag":140,"props":4320,"children":4321},{"style":170},[4322],{"type":60,"value":4323}," clone",{"type":55,"tag":140,"props":4325,"children":4326},{"style":170},[4327],{"type":60,"value":4328}," https:\u002F\u002Fgithub.com\u002Fzoom\u002Fmeetingsdk-auth-endpoint-sample",{"type":55,"tag":140,"props":4330,"children":4331},{"style":170},[4332],{"type":60,"value":4333}," --depth",{"type":55,"tag":140,"props":4335,"children":4336},{"style":532},[4337],{"type":60,"value":4338}," 1\n",{"type":55,"tag":140,"props":4340,"children":4341},{"class":142,"line":196},[4342,4347],{"type":55,"tag":140,"props":4343,"children":4344},{"style":225},[4345],{"type":60,"value":4346},"cd",{"type":55,"tag":140,"props":4348,"children":4349},{"style":170},[4350],{"type":60,"value":4351}," meetingsdk-auth-endpoint-sample\n",{"type":55,"tag":140,"props":4353,"children":4354},{"class":142,"line":240},[4355,4360,4365],{"type":55,"tag":140,"props":4356,"children":4357},{"style":288},[4358],{"type":60,"value":4359},"cp",{"type":55,"tag":140,"props":4361,"children":4362},{"style":170},[4363],{"type":60,"value":4364}," .env.example",{"type":55,"tag":140,"props":4366,"children":4367},{"style":170},[4368],{"type":60,"value":4369}," .env\n",{"type":55,"tag":140,"props":4371,"children":4372},{"class":142,"line":248},[4373],{"type":55,"tag":140,"props":4374,"children":4375},{"style":2038},[4376],{"type":60,"value":4377},"# Edit .env with your SDK Key and Secret\n",{"type":55,"tag":140,"props":4379,"children":4380},{"class":142,"line":339},[4381,4385,4389,4394,4399,4404],{"type":55,"tag":140,"props":4382,"children":4383},{"style":288},[4384],{"type":60,"value":2003},{"type":55,"tag":140,"props":4386,"children":4387},{"style":170},[4388],{"type":60,"value":2008},{"type":55,"tag":140,"props":4390,"children":4391},{"style":164},[4392],{"type":60,"value":4393}," &&",{"type":55,"tag":140,"props":4395,"children":4396},{"style":288},[4397],{"type":60,"value":4398}," npm",{"type":55,"tag":140,"props":4400,"children":4401},{"style":170},[4402],{"type":60,"value":4403}," run",{"type":55,"tag":140,"props":4405,"children":4406},{"style":170},[4407],{"type":60,"value":4408}," start\n",{"type":55,"tag":1912,"props":4410,"children":4412},{"id":4411},"signature-generation",[4413],{"type":60,"value":4414},"Signature Generation",{"type":55,"tag":63,"props":4416,"children":4417},{},[4418],{"type":60,"value":4419},"The signature encodes:",{"type":55,"tag":1150,"props":4421,"children":4422},{},[4423,4442,4450,4461,4472,4483],{"type":55,"tag":1154,"props":4424,"children":4425},{},[4426,4432,4434,4440],{"type":55,"tag":121,"props":4427,"children":4429},{"className":4428},[],[4430],{"type":60,"value":4431},"sdkKey",{"type":60,"value":4433}," (or ",{"type":55,"tag":121,"props":4435,"children":4437},{"className":4436},[],[4438],{"type":60,"value":4439},"clientId",{"type":60,"value":4441}," for newer apps)",{"type":55,"tag":1154,"props":4443,"children":4444},{},[4445],{"type":55,"tag":121,"props":4446,"children":4448},{"className":4447},[],[4449],{"type":60,"value":280},{"type":55,"tag":1154,"props":4451,"children":4452},{},[4453,4459],{"type":55,"tag":121,"props":4454,"children":4456},{"className":4455},[],[4457],{"type":60,"value":4458},"role",{"type":60,"value":4460}," (0 = participant, 1 = host)",{"type":55,"tag":1154,"props":4462,"children":4463},{},[4464,4470],{"type":55,"tag":121,"props":4465,"children":4467},{"className":4466},[],[4468],{"type":60,"value":4469},"iat",{"type":60,"value":4471}," (issued at timestamp)",{"type":55,"tag":1154,"props":4473,"children":4474},{},[4475,4481],{"type":55,"tag":121,"props":4476,"children":4478},{"className":4477},[],[4479],{"type":60,"value":4480},"exp",{"type":60,"value":4482}," (expiration timestamp)",{"type":55,"tag":1154,"props":4484,"children":4485},{},[4486,4492],{"type":55,"tag":121,"props":4487,"children":4489},{"className":4488},[],[4490],{"type":60,"value":4491},"tokenExp",{"type":60,"value":4493}," (token expiration)",{"type":55,"tag":1488,"props":4495,"children":4496},{},[4497],{"type":55,"tag":63,"props":4498,"children":4499},{},[4500,4505,4507,4513],{"type":55,"tag":69,"props":4501,"children":4502},{},[4503],{"type":60,"value":4504},"IMPORTANT (March 2026)",{"type":60,"value":4506},": Apps joining meetings outside their account will require an App Privilege Token (OBF) or ZAK token. See ",{"type":55,"tag":1247,"props":4508,"children":4510},{"href":4509},"#authorization-requirements-2026-update",[4511],{"type":60,"value":4512},"Authorization Requirements",{"type":60,"value":101},{"type":55,"tag":84,"props":4515,"children":4517},{"id":4516},"core-workflow",[4518],{"type":60,"value":4519},"Core Workflow",{"type":55,"tag":113,"props":4521,"children":4524},{"className":4522,"code":4523,"language":60},[116],"┌─────────────────┐    ┌─────────────────┐    ┌─────────────────┐\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",[4525],{"type":55,"tag":121,"props":4526,"children":4527},{"__ignoreMap":118},[4528],{"type":60,"value":4523},{"type":55,"tag":84,"props":4530,"children":4532},{"id":4531},"client-view-api-reference",[4533],{"type":60,"value":4534},"Client View API Reference",{"type":55,"tag":1912,"props":4536,"children":4538},{"id":4537},"zoommtginit-key-options",[4539],{"type":60,"value":4540},"ZoomMtg.init() - Key Options",{"type":55,"tag":113,"props":4542,"children":4544},{"className":2423,"code":4543,"language":2425,"meta":118,"style":118},"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",[4545],{"type":55,"tag":121,"props":4546,"children":4547},{"__ignoreMap":118},[4548,4571,4579,4604,4611,4619,4645,4670,4695,4720,4745,4752,4760,4785,4810,4817,4825,4889,4896,4904,4929,4954,4979,5004,5029,5036,5044,5069,5076,5084,5105,5125],{"type":55,"tag":140,"props":4549,"children":4550},{"class":142,"line":143},[4551,4555,4559,4563,4567],{"type":55,"tag":140,"props":4552,"children":4553},{"style":153},[4554],{"type":60,"value":1709},{"type":55,"tag":140,"props":4556,"children":4557},{"style":164},[4558],{"type":60,"value":101},{"type":55,"tag":140,"props":4560,"children":4561},{"style":225},[4562],{"type":60,"value":769},{"type":55,"tag":140,"props":4564,"children":4565},{"style":153},[4566],{"type":60,"value":274},{"type":55,"tag":140,"props":4568,"children":4569},{"style":164},[4570],{"type":60,"value":778},{"type":55,"tag":140,"props":4572,"children":4573},{"class":142,"line":186},[4574],{"type":55,"tag":140,"props":4575,"children":4576},{"style":2038},[4577],{"type":60,"value":4578},"  \u002F\u002F Required\n",{"type":55,"tag":140,"props":4580,"children":4581},{"class":142,"line":196},[4582,4587,4591,4595,4599],{"type":55,"tag":140,"props":4583,"children":4584},{"style":368},[4585],{"type":60,"value":4586},"  leaveUrl",{"type":55,"tag":140,"props":4588,"children":4589},{"style":164},[4590],{"type":60,"value":285},{"type":55,"tag":140,"props":4592,"children":4593},{"style":153},[4594],{"type":60,"value":291},{"type":55,"tag":140,"props":4596,"children":4597},{"style":164},[4598],{"type":60,"value":296},{"type":55,"tag":140,"props":4600,"children":4601},{"style":2038},[4602],{"type":60,"value":4603},"              \u002F\u002F URL to redirect after leaving\n",{"type":55,"tag":140,"props":4605,"children":4606},{"class":142,"line":240},[4607],{"type":55,"tag":140,"props":4608,"children":4609},{"emptyLinePlaceholder":190},[4610],{"type":60,"value":193},{"type":55,"tag":140,"props":4612,"children":4613},{"class":142,"line":248},[4614],{"type":55,"tag":140,"props":4615,"children":4616},{"style":2038},[4617],{"type":60,"value":4618},"  \u002F\u002F Display Options\n",{"type":55,"tag":140,"props":4620,"children":4621},{"class":142,"line":339},[4622,4627,4631,4636,4640],{"type":55,"tag":140,"props":4623,"children":4624},{"style":368},[4625],{"type":60,"value":4626},"  showMeetingHeader",{"type":55,"tag":140,"props":4628,"children":4629},{"style":164},[4630],{"type":60,"value":285},{"type":55,"tag":140,"props":4632,"children":4633},{"style":153},[4634],{"type":60,"value":4635}," boolean",{"type":55,"tag":140,"props":4637,"children":4638},{"style":164},[4639],{"type":60,"value":296},{"type":55,"tag":140,"props":4641,"children":4642},{"style":2038},[4643],{"type":60,"value":4644},"    \u002F\u002F Show meeting number\u002Ftopic (default: true)\n",{"type":55,"tag":140,"props":4646,"children":4647},{"class":142,"line":394},[4648,4653,4657,4661,4665],{"type":55,"tag":140,"props":4649,"children":4650},{"style":368},[4651],{"type":60,"value":4652},"  disableInvite",{"type":55,"tag":140,"props":4654,"children":4655},{"style":164},[4656],{"type":60,"value":285},{"type":55,"tag":140,"props":4658,"children":4659},{"style":153},[4660],{"type":60,"value":4635},{"type":55,"tag":140,"props":4662,"children":4663},{"style":164},[4664],{"type":60,"value":296},{"type":55,"tag":140,"props":4666,"children":4667},{"style":2038},[4668],{"type":60,"value":4669},"        \u002F\u002F Hide invite button (default: false)\n",{"type":55,"tag":140,"props":4671,"children":4672},{"class":142,"line":425},[4673,4678,4682,4686,4690],{"type":55,"tag":140,"props":4674,"children":4675},{"style":368},[4676],{"type":60,"value":4677},"  disableRecord",{"type":55,"tag":140,"props":4679,"children":4680},{"style":164},[4681],{"type":60,"value":285},{"type":55,"tag":140,"props":4683,"children":4684},{"style":153},[4685],{"type":60,"value":4635},{"type":55,"tag":140,"props":4687,"children":4688},{"style":164},[4689],{"type":60,"value":296},{"type":55,"tag":140,"props":4691,"children":4692},{"style":2038},[4693],{"type":60,"value":4694},"        \u002F\u002F Hide record button (default: false)\n",{"type":55,"tag":140,"props":4696,"children":4697},{"class":142,"line":478},[4698,4703,4707,4711,4715],{"type":55,"tag":140,"props":4699,"children":4700},{"style":368},[4701],{"type":60,"value":4702},"  disableJoinAudio",{"type":55,"tag":140,"props":4704,"children":4705},{"style":164},[4706],{"type":60,"value":285},{"type":55,"tag":140,"props":4708,"children":4709},{"style":153},[4710],{"type":60,"value":4635},{"type":55,"tag":140,"props":4712,"children":4713},{"style":164},[4714],{"type":60,"value":296},{"type":55,"tag":140,"props":4716,"children":4717},{"style":2038},[4718],{"type":60,"value":4719},"     \u002F\u002F Hide join audio option (default: false)\n",{"type":55,"tag":140,"props":4721,"children":4722},{"class":142,"line":551},[4723,4728,4732,4736,4740],{"type":55,"tag":140,"props":4724,"children":4725},{"style":368},[4726],{"type":60,"value":4727},"  disablePreview",{"type":55,"tag":140,"props":4729,"children":4730},{"style":164},[4731],{"type":60,"value":285},{"type":55,"tag":140,"props":4733,"children":4734},{"style":153},[4735],{"type":60,"value":4635},{"type":55,"tag":140,"props":4737,"children":4738},{"style":164},[4739],{"type":60,"value":296},{"type":55,"tag":140,"props":4741,"children":4742},{"style":2038},[4743],{"type":60,"value":4744},"       \u002F\u002F Skip A\u002FV preview (default: false)\n",{"type":55,"tag":140,"props":4746,"children":4747},{"class":142,"line":568},[4748],{"type":55,"tag":140,"props":4749,"children":4750},{"style":153},[4751],{"type":60,"value":2722},{"type":55,"tag":140,"props":4753,"children":4754},{"class":142,"line":576},[4755],{"type":55,"tag":140,"props":4756,"children":4757},{"style":2038},[4758],{"type":60,"value":4759},"  \u002F\u002F HD Video (requires SharedArrayBuffer)\n",{"type":55,"tag":140,"props":4761,"children":4762},{"class":142,"line":674},[4763,4768,4772,4776,4780],{"type":55,"tag":140,"props":4764,"children":4765},{"style":368},[4766],{"type":60,"value":4767},"  enableHD",{"type":55,"tag":140,"props":4769,"children":4770},{"style":164},[4771],{"type":60,"value":285},{"type":55,"tag":140,"props":4773,"children":4774},{"style":153},[4775],{"type":60,"value":4635},{"type":55,"tag":140,"props":4777,"children":4778},{"style":164},[4779],{"type":60,"value":296},{"type":55,"tag":140,"props":4781,"children":4782},{"style":2038},[4783],{"type":60,"value":4784},"             \u002F\u002F Enable 720p (default: true for >=2.8.0)\n",{"type":55,"tag":140,"props":4786,"children":4787},{"class":142,"line":682},[4788,4793,4797,4801,4805],{"type":55,"tag":140,"props":4789,"children":4790},{"style":368},[4791],{"type":60,"value":4792},"  enableFullHD",{"type":55,"tag":140,"props":4794,"children":4795},{"style":164},[4796],{"type":60,"value":285},{"type":55,"tag":140,"props":4798,"children":4799},{"style":153},[4800],{"type":60,"value":4635},{"type":55,"tag":140,"props":4802,"children":4803},{"style":164},[4804],{"type":60,"value":296},{"type":55,"tag":140,"props":4806,"children":4807},{"style":2038},[4808],{"type":60,"value":4809},"         \u002F\u002F Enable 1080p for webinars (default: false)\n",{"type":55,"tag":140,"props":4811,"children":4812},{"class":142,"line":741},[4813],{"type":55,"tag":140,"props":4814,"children":4815},{"style":153},[4816],{"type":60,"value":2722},{"type":55,"tag":140,"props":4818,"children":4819},{"class":142,"line":749},[4820],{"type":55,"tag":140,"props":4821,"children":4822},{"style":2038},[4823],{"type":60,"value":4824},"  \u002F\u002F View Options\n",{"type":55,"tag":140,"props":4826,"children":4827},{"class":142,"line":781},[4828,4833,4837,4841,4846,4850,4855,4859,4864,4868,4872,4876,4881,4885],{"type":55,"tag":140,"props":4829,"children":4830},{"style":368},[4831],{"type":60,"value":4832},"  defaultView",{"type":55,"tag":140,"props":4834,"children":4835},{"style":164},[4836],{"type":60,"value":285},{"type":55,"tag":140,"props":4838,"children":4839},{"style":164},[4840],{"type":60,"value":167},{"type":55,"tag":140,"props":4842,"children":4843},{"style":170},[4844],{"type":60,"value":4845},"gallery",{"type":55,"tag":140,"props":4847,"children":4848},{"style":164},[4849],{"type":60,"value":178},{"type":55,"tag":140,"props":4851,"children":4852},{"style":164},[4853],{"type":60,"value":4854}," |",{"type":55,"tag":140,"props":4856,"children":4857},{"style":164},[4858],{"type":60,"value":167},{"type":55,"tag":140,"props":4860,"children":4861},{"style":170},[4862],{"type":60,"value":4863},"speaker",{"type":55,"tag":140,"props":4865,"children":4866},{"style":164},[4867],{"type":60,"value":178},{"type":55,"tag":140,"props":4869,"children":4870},{"style":164},[4871],{"type":60,"value":4854},{"type":55,"tag":140,"props":4873,"children":4874},{"style":164},[4875],{"type":60,"value":167},{"type":55,"tag":140,"props":4877,"children":4878},{"style":170},[4879],{"type":60,"value":4880},"multiSpeaker",{"type":55,"tag":140,"props":4882,"children":4883},{"style":164},[4884],{"type":60,"value":178},{"type":55,"tag":140,"props":4886,"children":4887},{"style":164},[4888],{"type":60,"value":422},{"type":55,"tag":140,"props":4890,"children":4891},{"class":142,"line":834},[4892],{"type":55,"tag":140,"props":4893,"children":4894},{"style":153},[4895],{"type":60,"value":2722},{"type":55,"tag":140,"props":4897,"children":4898},{"class":142,"line":864},[4899],{"type":55,"tag":140,"props":4900,"children":4901},{"style":2038},[4902],{"type":60,"value":4903},"  \u002F\u002F Feature Toggles\n",{"type":55,"tag":140,"props":4905,"children":4906},{"class":142,"line":887},[4907,4912,4916,4920,4924],{"type":55,"tag":140,"props":4908,"children":4909},{"style":368},[4910],{"type":60,"value":4911},"  isSupportChat",{"type":55,"tag":140,"props":4913,"children":4914},{"style":164},[4915],{"type":60,"value":285},{"type":55,"tag":140,"props":4917,"children":4918},{"style":153},[4919],{"type":60,"value":4635},{"type":55,"tag":140,"props":4921,"children":4922},{"style":164},[4923],{"type":60,"value":296},{"type":55,"tag":140,"props":4925,"children":4926},{"style":2038},[4927],{"type":60,"value":4928},"        \u002F\u002F Enable chat (default: true)\n",{"type":55,"tag":140,"props":4930,"children":4931},{"class":142,"line":908},[4932,4937,4941,4945,4949],{"type":55,"tag":140,"props":4933,"children":4934},{"style":368},[4935],{"type":60,"value":4936},"  isSupportCC",{"type":55,"tag":140,"props":4938,"children":4939},{"style":164},[4940],{"type":60,"value":285},{"type":55,"tag":140,"props":4942,"children":4943},{"style":153},[4944],{"type":60,"value":4635},{"type":55,"tag":140,"props":4946,"children":4947},{"style":164},[4948],{"type":60,"value":296},{"type":55,"tag":140,"props":4950,"children":4951},{"style":2038},[4952],{"type":60,"value":4953},"          \u002F\u002F Enable closed captions (default: true)\n",{"type":55,"tag":140,"props":4955,"children":4956},{"class":142,"line":925},[4957,4962,4966,4970,4974],{"type":55,"tag":140,"props":4958,"children":4959},{"style":368},[4960],{"type":60,"value":4961},"  isSupportBreakout",{"type":55,"tag":140,"props":4963,"children":4964},{"style":164},[4965],{"type":60,"value":285},{"type":55,"tag":140,"props":4967,"children":4968},{"style":153},[4969],{"type":60,"value":4635},{"type":55,"tag":140,"props":4971,"children":4972},{"style":164},[4973],{"type":60,"value":296},{"type":55,"tag":140,"props":4975,"children":4976},{"style":2038},[4977],{"type":60,"value":4978},"    \u002F\u002F Enable breakout rooms (default: true)\n",{"type":55,"tag":140,"props":4980,"children":4981},{"class":142,"line":994},[4982,4987,4991,4995,4999],{"type":55,"tag":140,"props":4983,"children":4984},{"style":368},[4985],{"type":60,"value":4986},"  isSupportPolling",{"type":55,"tag":140,"props":4988,"children":4989},{"style":164},[4990],{"type":60,"value":285},{"type":55,"tag":140,"props":4992,"children":4993},{"style":153},[4994],{"type":60,"value":4635},{"type":55,"tag":140,"props":4996,"children":4997},{"style":164},[4998],{"type":60,"value":296},{"type":55,"tag":140,"props":5000,"children":5001},{"style":2038},[5002],{"type":60,"value":5003},"     \u002F\u002F Enable polling (default: true)\n",{"type":55,"tag":140,"props":5005,"children":5006},{"class":142,"line":1003},[5007,5012,5016,5020,5024],{"type":55,"tag":140,"props":5008,"children":5009},{"style":368},[5010],{"type":60,"value":5011},"  isSupportQA",{"type":55,"tag":140,"props":5013,"children":5014},{"style":164},[5015],{"type":60,"value":285},{"type":55,"tag":140,"props":5017,"children":5018},{"style":153},[5019],{"type":60,"value":4635},{"type":55,"tag":140,"props":5021,"children":5022},{"style":164},[5023],{"type":60,"value":296},{"type":55,"tag":140,"props":5025,"children":5026},{"style":2038},[5027],{"type":60,"value":5028},"          \u002F\u002F Enable Q&A for webinars (default: true)\n",{"type":55,"tag":140,"props":5030,"children":5031},{"class":142,"line":1019},[5032],{"type":55,"tag":140,"props":5033,"children":5034},{"style":153},[5035],{"type":60,"value":2722},{"type":55,"tag":140,"props":5037,"children":5038},{"class":142,"line":1027},[5039],{"type":55,"tag":140,"props":5040,"children":5041},{"style":2038},[5042],{"type":60,"value":5043},"  \u002F\u002F Cross-Origin\n",{"type":55,"tag":140,"props":5045,"children":5046},{"class":142,"line":1056},[5047,5052,5056,5060,5064],{"type":55,"tag":140,"props":5048,"children":5049},{"style":368},[5050],{"type":60,"value":5051},"  disableCORP",{"type":55,"tag":140,"props":5053,"children":5054},{"style":164},[5055],{"type":60,"value":285},{"type":55,"tag":140,"props":5057,"children":5058},{"style":153},[5059],{"type":60,"value":4635},{"type":55,"tag":140,"props":5061,"children":5062},{"style":164},[5063],{"type":60,"value":296},{"type":55,"tag":140,"props":5065,"children":5066},{"style":2038},[5067],{"type":60,"value":5068},"          \u002F\u002F For dev without COOP\u002FCOEP headers\n",{"type":55,"tag":140,"props":5070,"children":5071},{"class":142,"line":1069},[5072],{"type":55,"tag":140,"props":5073,"children":5074},{"style":153},[5075],{"type":60,"value":2722},{"type":55,"tag":140,"props":5077,"children":5078},{"class":142,"line":1082},[5079],{"type":55,"tag":140,"props":5080,"children":5081},{"style":2038},[5082],{"type":60,"value":5083},"  \u002F\u002F Callbacks\n",{"type":55,"tag":140,"props":5085,"children":5086},{"class":142,"line":1095},[5087,5092,5096,5101],{"type":55,"tag":140,"props":5088,"children":5089},{"style":368},[5090],{"type":60,"value":5091},"  success",{"type":55,"tag":140,"props":5093,"children":5094},{"style":164},[5095],{"type":60,"value":285},{"type":55,"tag":140,"props":5097,"children":5098},{"style":153},[5099],{"type":60,"value":5100}," Function",{"type":55,"tag":140,"props":5102,"children":5103},{"style":164},[5104],{"type":60,"value":422},{"type":55,"tag":140,"props":5106,"children":5107},{"class":142,"line":1108},[5108,5113,5117,5121],{"type":55,"tag":140,"props":5109,"children":5110},{"style":368},[5111],{"type":60,"value":5112},"  error",{"type":55,"tag":140,"props":5114,"children":5115},{"style":164},[5116],{"type":60,"value":285},{"type":55,"tag":140,"props":5118,"children":5119},{"style":153},[5120],{"type":60,"value":5100},{"type":55,"tag":140,"props":5122,"children":5123},{"style":164},[5124],{"type":60,"value":422},{"type":55,"tag":140,"props":5126,"children":5127},{"class":142,"line":1121},[5128,5132,5136],{"type":55,"tag":140,"props":5129,"children":5130},{"style":164},[5131],{"type":60,"value":3597},{"type":55,"tag":140,"props":5133,"children":5134},{"style":153},[5135],{"type":60,"value":331},{"type":55,"tag":140,"props":5137,"children":5138},{"style":164},[5139],{"type":60,"value":183},{"type":55,"tag":1912,"props":5141,"children":5143},{"id":5142},"zoommtgjoin-key-options",[5144],{"type":60,"value":5145},"ZoomMtg.join() - Key Options",{"type":55,"tag":113,"props":5147,"children":5149},{"className":2423,"code":5148,"language":2425,"meta":118,"style":118},"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",[5150],{"type":55,"tag":121,"props":5151,"children":5152},{"__ignoreMap":118},[5153,5176,5183,5208,5239,5259,5266,5274,5299,5324,5349,5374,5381,5389,5414,5439,5446,5453,5472,5491],{"type":55,"tag":140,"props":5154,"children":5155},{"class":142,"line":143},[5156,5160,5164,5168,5172],{"type":55,"tag":140,"props":5157,"children":5158},{"style":153},[5159],{"type":60,"value":1709},{"type":55,"tag":140,"props":5161,"children":5162},{"style":164},[5163],{"type":60,"value":101},{"type":55,"tag":140,"props":5165,"children":5166},{"style":225},[5167],{"type":60,"value":1045},{"type":55,"tag":140,"props":5169,"children":5170},{"style":153},[5171],{"type":60,"value":274},{"type":55,"tag":140,"props":5173,"children":5174},{"style":164},[5175],{"type":60,"value":778},{"type":55,"tag":140,"props":5177,"children":5178},{"class":142,"line":186},[5179],{"type":55,"tag":140,"props":5180,"children":5181},{"style":2038},[5182],{"type":60,"value":4578},{"type":55,"tag":140,"props":5184,"children":5185},{"class":142,"line":196},[5186,5191,5195,5199,5203],{"type":55,"tag":140,"props":5187,"children":5188},{"style":368},[5189],{"type":60,"value":5190},"  signature",{"type":55,"tag":140,"props":5192,"children":5193},{"style":164},[5194],{"type":60,"value":285},{"type":55,"tag":140,"props":5196,"children":5197},{"style":153},[5198],{"type":60,"value":291},{"type":55,"tag":140,"props":5200,"children":5201},{"style":164},[5202],{"type":60,"value":296},{"type":55,"tag":140,"props":5204,"children":5205},{"style":2038},[5206],{"type":60,"value":5207},"             \u002F\u002F JWT signature from backend\n",{"type":55,"tag":140,"props":5209,"children":5210},{"class":142,"line":240},[5211,5216,5220,5225,5230,5235],{"type":55,"tag":140,"props":5212,"children":5213},{"style":368},[5214],{"type":60,"value":5215},"  meetingNumber",{"type":55,"tag":140,"props":5217,"children":5218},{"style":164},[5219],{"type":60,"value":285},{"type":55,"tag":140,"props":5221,"children":5222},{"style":153},[5223],{"type":60,"value":5224}," string ",{"type":55,"tag":140,"props":5226,"children":5227},{"style":164},[5228],{"type":60,"value":5229},"|",{"type":55,"tag":140,"props":5231,"children":5232},{"style":153},[5233],{"type":60,"value":5234}," number",{"type":55,"tag":140,"props":5236,"children":5237},{"style":164},[5238],{"type":60,"value":422},{"type":55,"tag":140,"props":5240,"children":5241},{"class":142,"line":248},[5242,5247,5251,5255],{"type":55,"tag":140,"props":5243,"children":5244},{"style":368},[5245],{"type":60,"value":5246},"  userName",{"type":55,"tag":140,"props":5248,"children":5249},{"style":164},[5250],{"type":60,"value":285},{"type":55,"tag":140,"props":5252,"children":5253},{"style":153},[5254],{"type":60,"value":291},{"type":55,"tag":140,"props":5256,"children":5257},{"style":164},[5258],{"type":60,"value":422},{"type":55,"tag":140,"props":5260,"children":5261},{"class":142,"line":339},[5262],{"type":55,"tag":140,"props":5263,"children":5264},{"style":153},[5265],{"type":60,"value":2722},{"type":55,"tag":140,"props":5267,"children":5268},{"class":142,"line":394},[5269],{"type":55,"tag":140,"props":5270,"children":5271},{"style":2038},[5272],{"type":60,"value":5273},"  \u002F\u002F Authentication\n",{"type":55,"tag":140,"props":5275,"children":5276},{"class":142,"line":425},[5277,5282,5286,5290,5294],{"type":55,"tag":140,"props":5278,"children":5279},{"style":368},[5280],{"type":60,"value":5281},"  passWord",{"type":55,"tag":140,"props":5283,"children":5284},{"style":164},[5285],{"type":60,"value":285},{"type":55,"tag":140,"props":5287,"children":5288},{"style":153},[5289],{"type":60,"value":291},{"type":55,"tag":140,"props":5291,"children":5292},{"style":164},[5293],{"type":60,"value":296},{"type":55,"tag":140,"props":5295,"children":5296},{"style":2038},[5297],{"type":60,"value":5298},"              \u002F\u002F Meeting password (capital W!)\n",{"type":55,"tag":140,"props":5300,"children":5301},{"class":142,"line":478},[5302,5307,5311,5315,5319],{"type":55,"tag":140,"props":5303,"children":5304},{"style":368},[5305],{"type":60,"value":5306},"  zak",{"type":55,"tag":140,"props":5308,"children":5309},{"style":164},[5310],{"type":60,"value":285},{"type":55,"tag":140,"props":5312,"children":5313},{"style":153},[5314],{"type":60,"value":291},{"type":55,"tag":140,"props":5316,"children":5317},{"style":164},[5318],{"type":60,"value":296},{"type":55,"tag":140,"props":5320,"children":5321},{"style":2038},[5322],{"type":60,"value":5323},"                   \u002F\u002F Host's ZAK token (required to start)\n",{"type":55,"tag":140,"props":5325,"children":5326},{"class":142,"line":551},[5327,5332,5336,5340,5344],{"type":55,"tag":140,"props":5328,"children":5329},{"style":368},[5330],{"type":60,"value":5331},"  tk",{"type":55,"tag":140,"props":5333,"children":5334},{"style":164},[5335],{"type":60,"value":285},{"type":55,"tag":140,"props":5337,"children":5338},{"style":153},[5339],{"type":60,"value":291},{"type":55,"tag":140,"props":5341,"children":5342},{"style":164},[5343],{"type":60,"value":296},{"type":55,"tag":140,"props":5345,"children":5346},{"style":2038},[5347],{"type":60,"value":5348},"                    \u002F\u002F Registration token (if required)\n",{"type":55,"tag":140,"props":5350,"children":5351},{"class":142,"line":568},[5352,5357,5361,5365,5369],{"type":55,"tag":140,"props":5353,"children":5354},{"style":368},[5355],{"type":60,"value":5356},"  obfToken",{"type":55,"tag":140,"props":5358,"children":5359},{"style":164},[5360],{"type":60,"value":285},{"type":55,"tag":140,"props":5362,"children":5363},{"style":153},[5364],{"type":60,"value":291},{"type":55,"tag":140,"props":5366,"children":5367},{"style":164},[5368],{"type":60,"value":296},{"type":55,"tag":140,"props":5370,"children":5371},{"style":2038},[5372],{"type":60,"value":5373},"              \u002F\u002F App Privilege Token (for 2026 requirement)\n",{"type":55,"tag":140,"props":5375,"children":5376},{"class":142,"line":576},[5377],{"type":55,"tag":140,"props":5378,"children":5379},{"style":153},[5380],{"type":60,"value":2722},{"type":55,"tag":140,"props":5382,"children":5383},{"class":142,"line":674},[5384],{"type":55,"tag":140,"props":5385,"children":5386},{"style":2038},[5387],{"type":60,"value":5388},"  \u002F\u002F Optional\n",{"type":55,"tag":140,"props":5390,"children":5391},{"class":142,"line":682},[5392,5397,5401,5405,5409],{"type":55,"tag":140,"props":5393,"children":5394},{"style":368},[5395],{"type":60,"value":5396},"  userEmail",{"type":55,"tag":140,"props":5398,"children":5399},{"style":164},[5400],{"type":60,"value":285},{"type":55,"tag":140,"props":5402,"children":5403},{"style":153},[5404],{"type":60,"value":291},{"type":55,"tag":140,"props":5406,"children":5407},{"style":164},[5408],{"type":60,"value":296},{"type":55,"tag":140,"props":5410,"children":5411},{"style":2038},[5412],{"type":60,"value":5413},"             \u002F\u002F Required for webinars\n",{"type":55,"tag":140,"props":5415,"children":5416},{"class":142,"line":741},[5417,5422,5426,5430,5434],{"type":55,"tag":140,"props":5418,"children":5419},{"style":368},[5420],{"type":60,"value":5421},"  customerKey",{"type":55,"tag":140,"props":5423,"children":5424},{"style":164},[5425],{"type":60,"value":285},{"type":55,"tag":140,"props":5427,"children":5428},{"style":153},[5429],{"type":60,"value":291},{"type":55,"tag":140,"props":5431,"children":5432},{"style":164},[5433],{"type":60,"value":296},{"type":55,"tag":140,"props":5435,"children":5436},{"style":2038},[5437],{"type":60,"value":5438},"           \u002F\u002F Custom identifier (max 36 chars)\n",{"type":55,"tag":140,"props":5440,"children":5441},{"class":142,"line":749},[5442],{"type":55,"tag":140,"props":5443,"children":5444},{"style":153},[5445],{"type":60,"value":2722},{"type":55,"tag":140,"props":5447,"children":5448},{"class":142,"line":781},[5449],{"type":55,"tag":140,"props":5450,"children":5451},{"style":2038},[5452],{"type":60,"value":5083},{"type":55,"tag":140,"props":5454,"children":5455},{"class":142,"line":834},[5456,5460,5464,5468],{"type":55,"tag":140,"props":5457,"children":5458},{"style":368},[5459],{"type":60,"value":5091},{"type":55,"tag":140,"props":5461,"children":5462},{"style":164},[5463],{"type":60,"value":285},{"type":55,"tag":140,"props":5465,"children":5466},{"style":153},[5467],{"type":60,"value":5100},{"type":55,"tag":140,"props":5469,"children":5470},{"style":164},[5471],{"type":60,"value":422},{"type":55,"tag":140,"props":5473,"children":5474},{"class":142,"line":864},[5475,5479,5483,5487],{"type":55,"tag":140,"props":5476,"children":5477},{"style":368},[5478],{"type":60,"value":5112},{"type":55,"tag":140,"props":5480,"children":5481},{"style":164},[5482],{"type":60,"value":285},{"type":55,"tag":140,"props":5484,"children":5485},{"style":153},[5486],{"type":60,"value":5100},{"type":55,"tag":140,"props":5488,"children":5489},{"style":164},[5490],{"type":60,"value":422},{"type":55,"tag":140,"props":5492,"children":5493},{"class":142,"line":887},[5494,5498,5502],{"type":55,"tag":140,"props":5495,"children":5496},{"style":164},[5497],{"type":60,"value":3597},{"type":55,"tag":140,"props":5499,"children":5500},{"style":153},[5501],{"type":60,"value":331},{"type":55,"tag":140,"props":5503,"children":5504},{"style":164},[5505],{"type":60,"value":183},{"type":55,"tag":1912,"props":5507,"children":5509},{"id":5508},"event-listeners-client-view",[5510],{"type":60,"value":5511},"Event Listeners (Client View)",{"type":55,"tag":113,"props":5513,"children":5515},{"className":2423,"code":5514,"language":2425,"meta":118,"style":118},"\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",[5516],{"type":55,"tag":121,"props":5517,"children":5518},{"__ignoreMap":118},[5519,5527,5585,5635,5650,5657,5713,5761,5769,5777,5785,5793,5801,5809,5817,5825,5833,5841,5856,5863,5919,5967,5982,5989,5997,6053,6061,6117,6132,6139,6147,6203,6251,6266,6273,6281,6337,6345,6393,6408,6415,6423,6479,6487,6495,6537,6577,6584,6600,6608,6617,6674,6723,6732,6748,6756,6765,6822,6871,6887,6895,6904,6961,7010,7026,7034,7043,7100,7149,7165,7173,7182,7239,7288,7304,7312,7321,7378,7387,7436],{"type":55,"tag":140,"props":5520,"children":5521},{"class":142,"line":143},[5522],{"type":55,"tag":140,"props":5523,"children":5524},{"style":2038},[5525],{"type":60,"value":5526},"\u002F\u002F User events\n",{"type":55,"tag":140,"props":5528,"children":5529},{"class":142,"line":186},[5530,5534,5538,5543,5547,5551,5556,5560,5564,5568,5573,5577,5581],{"type":55,"tag":140,"props":5531,"children":5532},{"style":153},[5533],{"type":60,"value":1709},{"type":55,"tag":140,"props":5535,"children":5536},{"style":164},[5537],{"type":60,"value":101},{"type":55,"tag":140,"props":5539,"children":5540},{"style":225},[5541],{"type":60,"value":5542},"inMeetingServiceListener",{"type":55,"tag":140,"props":5544,"children":5545},{"style":153},[5546],{"type":60,"value":274},{"type":55,"tag":140,"props":5548,"children":5549},{"style":164},[5550],{"type":60,"value":178},{"type":55,"tag":140,"props":5552,"children":5553},{"style":170},[5554],{"type":60,"value":5555},"onUserJoin",{"type":55,"tag":140,"props":5557,"children":5558},{"style":164},[5559],{"type":60,"value":178},{"type":55,"tag":140,"props":5561,"children":5562},{"style":164},[5563],{"type":60,"value":296},{"type":55,"tag":140,"props":5565,"children":5566},{"style":164},[5567],{"type":60,"value":587},{"type":55,"tag":140,"props":5569,"children":5570},{"style":277},[5571],{"type":60,"value":5572},"data",{"type":55,"tag":140,"props":5574,"children":5575},{"style":164},[5576],{"type":60,"value":331},{"type":55,"tag":140,"props":5578,"children":5579},{"style":200},[5580],{"type":60,"value":2710},{"type":55,"tag":140,"props":5582,"children":5583},{"style":164},[5584],{"type":60,"value":336},{"type":55,"tag":140,"props":5586,"children":5587},{"class":142,"line":196},[5588,5593,5597,5601,5605,5609,5614,5618,5622,5627,5631],{"type":55,"tag":140,"props":5589,"children":5590},{"style":153},[5591],{"type":60,"value":5592},"  console",{"type":55,"tag":140,"props":5594,"children":5595},{"style":164},[5596],{"type":60,"value":101},{"type":55,"tag":140,"props":5598,"children":5599},{"style":225},[5600],{"type":60,"value":2503},{"type":55,"tag":140,"props":5602,"children":5603},{"style":368},[5604],{"type":60,"value":274},{"type":55,"tag":140,"props":5606,"children":5607},{"style":164},[5608],{"type":60,"value":178},{"type":55,"tag":140,"props":5610,"children":5611},{"style":170},[5612],{"type":60,"value":5613},"User joined:",{"type":55,"tag":140,"props":5615,"children":5616},{"style":164},[5617],{"type":60,"value":178},{"type":55,"tag":140,"props":5619,"children":5620},{"style":164},[5621],{"type":60,"value":296},{"type":55,"tag":140,"props":5623,"children":5624},{"style":153},[5625],{"type":60,"value":5626}," data",{"type":55,"tag":140,"props":5628,"children":5629},{"style":368},[5630],{"type":60,"value":331},{"type":55,"tag":140,"props":5632,"children":5633},{"style":164},[5634],{"type":60,"value":183},{"type":55,"tag":140,"props":5636,"children":5637},{"class":142,"line":240},[5638,5642,5646],{"type":55,"tag":140,"props":5639,"children":5640},{"style":164},[5641],{"type":60,"value":3597},{"type":55,"tag":140,"props":5643,"children":5644},{"style":153},[5645],{"type":60,"value":331},{"type":55,"tag":140,"props":5647,"children":5648},{"style":164},[5649],{"type":60,"value":183},{"type":55,"tag":140,"props":5651,"children":5652},{"class":142,"line":248},[5653],{"type":55,"tag":140,"props":5654,"children":5655},{"emptyLinePlaceholder":190},[5656],{"type":60,"value":193},{"type":55,"tag":140,"props":5658,"children":5659},{"class":142,"line":339},[5660,5664,5668,5672,5676,5680,5685,5689,5693,5697,5701,5705,5709],{"type":55,"tag":140,"props":5661,"children":5662},{"style":153},[5663],{"type":60,"value":1709},{"type":55,"tag":140,"props":5665,"children":5666},{"style":164},[5667],{"type":60,"value":101},{"type":55,"tag":140,"props":5669,"children":5670},{"style":225},[5671],{"type":60,"value":5542},{"type":55,"tag":140,"props":5673,"children":5674},{"style":153},[5675],{"type":60,"value":274},{"type":55,"tag":140,"props":5677,"children":5678},{"style":164},[5679],{"type":60,"value":178},{"type":55,"tag":140,"props":5681,"children":5682},{"style":170},[5683],{"type":60,"value":5684},"onUserLeave",{"type":55,"tag":140,"props":5686,"children":5687},{"style":164},[5688],{"type":60,"value":178},{"type":55,"tag":140,"props":5690,"children":5691},{"style":164},[5692],{"type":60,"value":296},{"type":55,"tag":140,"props":5694,"children":5695},{"style":164},[5696],{"type":60,"value":587},{"type":55,"tag":140,"props":5698,"children":5699},{"style":277},[5700],{"type":60,"value":5572},{"type":55,"tag":140,"props":5702,"children":5703},{"style":164},[5704],{"type":60,"value":331},{"type":55,"tag":140,"props":5706,"children":5707},{"style":200},[5708],{"type":60,"value":2710},{"type":55,"tag":140,"props":5710,"children":5711},{"style":164},[5712],{"type":60,"value":336},{"type":55,"tag":140,"props":5714,"children":5715},{"class":142,"line":394},[5716,5720,5724,5728,5732,5736,5741,5745,5749,5753,5757],{"type":55,"tag":140,"props":5717,"children":5718},{"style":153},[5719],{"type":60,"value":5592},{"type":55,"tag":140,"props":5721,"children":5722},{"style":164},[5723],{"type":60,"value":101},{"type":55,"tag":140,"props":5725,"children":5726},{"style":225},[5727],{"type":60,"value":2503},{"type":55,"tag":140,"props":5729,"children":5730},{"style":368},[5731],{"type":60,"value":274},{"type":55,"tag":140,"props":5733,"children":5734},{"style":164},[5735],{"type":60,"value":178},{"type":55,"tag":140,"props":5737,"children":5738},{"style":170},[5739],{"type":60,"value":5740},"User left:",{"type":55,"tag":140,"props":5742,"children":5743},{"style":164},[5744],{"type":60,"value":178},{"type":55,"tag":140,"props":5746,"children":5747},{"style":164},[5748],{"type":60,"value":296},{"type":55,"tag":140,"props":5750,"children":5751},{"style":153},[5752],{"type":60,"value":5626},{"type":55,"tag":140,"props":5754,"children":5755},{"style":368},[5756],{"type":60,"value":331},{"type":55,"tag":140,"props":5758,"children":5759},{"style":164},[5760],{"type":60,"value":183},{"type":55,"tag":140,"props":5762,"children":5763},{"class":142,"line":425},[5764],{"type":55,"tag":140,"props":5765,"children":5766},{"style":2038},[5767],{"type":60,"value":5768},"  \u002F\u002F data.reasonCode values:\n",{"type":55,"tag":140,"props":5770,"children":5771},{"class":142,"line":478},[5772],{"type":55,"tag":140,"props":5773,"children":5774},{"style":2038},[5775],{"type":60,"value":5776},"  \u002F\u002F 0: OTHER\n",{"type":55,"tag":140,"props":5778,"children":5779},{"class":142,"line":551},[5780],{"type":55,"tag":140,"props":5781,"children":5782},{"style":2038},[5783],{"type":60,"value":5784},"  \u002F\u002F 1: HOST_ENDED_MEETING\n",{"type":55,"tag":140,"props":5786,"children":5787},{"class":142,"line":568},[5788],{"type":55,"tag":140,"props":5789,"children":5790},{"style":2038},[5791],{"type":60,"value":5792},"  \u002F\u002F 2: SELF_LEAVE_FROM_IN_MEETING\n",{"type":55,"tag":140,"props":5794,"children":5795},{"class":142,"line":576},[5796],{"type":55,"tag":140,"props":5797,"children":5798},{"style":2038},[5799],{"type":60,"value":5800},"  \u002F\u002F 3: SELF_LEAVE_FROM_WAITING_ROOM\n",{"type":55,"tag":140,"props":5802,"children":5803},{"class":142,"line":674},[5804],{"type":55,"tag":140,"props":5805,"children":5806},{"style":2038},[5807],{"type":60,"value":5808},"  \u002F\u002F 4: SELF_LEAVE_FROM_WAITING_FOR_HOST_START\n",{"type":55,"tag":140,"props":5810,"children":5811},{"class":142,"line":682},[5812],{"type":55,"tag":140,"props":5813,"children":5814},{"style":2038},[5815],{"type":60,"value":5816},"  \u002F\u002F 5: MEETING_TRANSFER\n",{"type":55,"tag":140,"props":5818,"children":5819},{"class":142,"line":741},[5820],{"type":55,"tag":140,"props":5821,"children":5822},{"style":2038},[5823],{"type":60,"value":5824},"  \u002F\u002F 6: KICK_OUT_FROM_MEETING\n",{"type":55,"tag":140,"props":5826,"children":5827},{"class":142,"line":749},[5828],{"type":55,"tag":140,"props":5829,"children":5830},{"style":2038},[5831],{"type":60,"value":5832},"  \u002F\u002F 7: KICK_OUT_FROM_WAITING_ROOM\n",{"type":55,"tag":140,"props":5834,"children":5835},{"class":142,"line":781},[5836],{"type":55,"tag":140,"props":5837,"children":5838},{"style":2038},[5839],{"type":60,"value":5840},"  \u002F\u002F 8: LEAVE_FROM_DISCLAIMER\n",{"type":55,"tag":140,"props":5842,"children":5843},{"class":142,"line":834},[5844,5848,5852],{"type":55,"tag":140,"props":5845,"children":5846},{"style":164},[5847],{"type":60,"value":3597},{"type":55,"tag":140,"props":5849,"children":5850},{"style":153},[5851],{"type":60,"value":331},{"type":55,"tag":140,"props":5853,"children":5854},{"style":164},[5855],{"type":60,"value":183},{"type":55,"tag":140,"props":5857,"children":5858},{"class":142,"line":864},[5859],{"type":55,"tag":140,"props":5860,"children":5861},{"emptyLinePlaceholder":190},[5862],{"type":60,"value":193},{"type":55,"tag":140,"props":5864,"children":5865},{"class":142,"line":887},[5866,5870,5874,5878,5882,5886,5891,5895,5899,5903,5907,5911,5915],{"type":55,"tag":140,"props":5867,"children":5868},{"style":153},[5869],{"type":60,"value":1709},{"type":55,"tag":140,"props":5871,"children":5872},{"style":164},[5873],{"type":60,"value":101},{"type":55,"tag":140,"props":5875,"children":5876},{"style":225},[5877],{"type":60,"value":5542},{"type":55,"tag":140,"props":5879,"children":5880},{"style":153},[5881],{"type":60,"value":274},{"type":55,"tag":140,"props":5883,"children":5884},{"style":164},[5885],{"type":60,"value":178},{"type":55,"tag":140,"props":5887,"children":5888},{"style":170},[5889],{"type":60,"value":5890},"onUserUpdate",{"type":55,"tag":140,"props":5892,"children":5893},{"style":164},[5894],{"type":60,"value":178},{"type":55,"tag":140,"props":5896,"children":5897},{"style":164},[5898],{"type":60,"value":296},{"type":55,"tag":140,"props":5900,"children":5901},{"style":164},[5902],{"type":60,"value":587},{"type":55,"tag":140,"props":5904,"children":5905},{"style":277},[5906],{"type":60,"value":5572},{"type":55,"tag":140,"props":5908,"children":5909},{"style":164},[5910],{"type":60,"value":331},{"type":55,"tag":140,"props":5912,"children":5913},{"style":200},[5914],{"type":60,"value":2710},{"type":55,"tag":140,"props":5916,"children":5917},{"style":164},[5918],{"type":60,"value":336},{"type":55,"tag":140,"props":5920,"children":5921},{"class":142,"line":908},[5922,5926,5930,5934,5938,5942,5947,5951,5955,5959,5963],{"type":55,"tag":140,"props":5923,"children":5924},{"style":153},[5925],{"type":60,"value":5592},{"type":55,"tag":140,"props":5927,"children":5928},{"style":164},[5929],{"type":60,"value":101},{"type":55,"tag":140,"props":5931,"children":5932},{"style":225},[5933],{"type":60,"value":2503},{"type":55,"tag":140,"props":5935,"children":5936},{"style":368},[5937],{"type":60,"value":274},{"type":55,"tag":140,"props":5939,"children":5940},{"style":164},[5941],{"type":60,"value":178},{"type":55,"tag":140,"props":5943,"children":5944},{"style":170},[5945],{"type":60,"value":5946},"User updated:",{"type":55,"tag":140,"props":5948,"children":5949},{"style":164},[5950],{"type":60,"value":178},{"type":55,"tag":140,"props":5952,"children":5953},{"style":164},[5954],{"type":60,"value":296},{"type":55,"tag":140,"props":5956,"children":5957},{"style":153},[5958],{"type":60,"value":5626},{"type":55,"tag":140,"props":5960,"children":5961},{"style":368},[5962],{"type":60,"value":331},{"type":55,"tag":140,"props":5964,"children":5965},{"style":164},[5966],{"type":60,"value":183},{"type":55,"tag":140,"props":5968,"children":5969},{"class":142,"line":925},[5970,5974,5978],{"type":55,"tag":140,"props":5971,"children":5972},{"style":164},[5973],{"type":60,"value":3597},{"type":55,"tag":140,"props":5975,"children":5976},{"style":153},[5977],{"type":60,"value":331},{"type":55,"tag":140,"props":5979,"children":5980},{"style":164},[5981],{"type":60,"value":183},{"type":55,"tag":140,"props":5983,"children":5984},{"class":142,"line":994},[5985],{"type":55,"tag":140,"props":5986,"children":5987},{"emptyLinePlaceholder":190},[5988],{"type":60,"value":193},{"type":55,"tag":140,"props":5990,"children":5991},{"class":142,"line":1003},[5992],{"type":55,"tag":140,"props":5993,"children":5994},{"style":2038},[5995],{"type":60,"value":5996},"\u002F\u002F Meeting status\n",{"type":55,"tag":140,"props":5998,"children":5999},{"class":142,"line":1019},[6000,6004,6008,6012,6016,6020,6025,6029,6033,6037,6041,6045,6049],{"type":55,"tag":140,"props":6001,"children":6002},{"style":153},[6003],{"type":60,"value":1709},{"type":55,"tag":140,"props":6005,"children":6006},{"style":164},[6007],{"type":60,"value":101},{"type":55,"tag":140,"props":6009,"children":6010},{"style":225},[6011],{"type":60,"value":5542},{"type":55,"tag":140,"props":6013,"children":6014},{"style":153},[6015],{"type":60,"value":274},{"type":55,"tag":140,"props":6017,"children":6018},{"style":164},[6019],{"type":60,"value":178},{"type":55,"tag":140,"props":6021,"children":6022},{"style":170},[6023],{"type":60,"value":6024},"onMeetingStatus",{"type":55,"tag":140,"props":6026,"children":6027},{"style":164},[6028],{"type":60,"value":178},{"type":55,"tag":140,"props":6030,"children":6031},{"style":164},[6032],{"type":60,"value":296},{"type":55,"tag":140,"props":6034,"children":6035},{"style":164},[6036],{"type":60,"value":587},{"type":55,"tag":140,"props":6038,"children":6039},{"style":277},[6040],{"type":60,"value":5572},{"type":55,"tag":140,"props":6042,"children":6043},{"style":164},[6044],{"type":60,"value":331},{"type":55,"tag":140,"props":6046,"children":6047},{"style":200},[6048],{"type":60,"value":2710},{"type":55,"tag":140,"props":6050,"children":6051},{"style":164},[6052],{"type":60,"value":336},{"type":55,"tag":140,"props":6054,"children":6055},{"class":142,"line":1027},[6056],{"type":55,"tag":140,"props":6057,"children":6058},{"style":2038},[6059],{"type":60,"value":6060},"  \u002F\u002F status: 1=connecting, 2=connected, 3=disconnected, 4=reconnecting\n",{"type":55,"tag":140,"props":6062,"children":6063},{"class":142,"line":1056},[6064,6068,6072,6076,6080,6084,6089,6093,6097,6101,6105,6109,6113],{"type":55,"tag":140,"props":6065,"children":6066},{"style":153},[6067],{"type":60,"value":5592},{"type":55,"tag":140,"props":6069,"children":6070},{"style":164},[6071],{"type":60,"value":101},{"type":55,"tag":140,"props":6073,"children":6074},{"style":225},[6075],{"type":60,"value":2503},{"type":55,"tag":140,"props":6077,"children":6078},{"style":368},[6079],{"type":60,"value":274},{"type":55,"tag":140,"props":6081,"children":6082},{"style":164},[6083],{"type":60,"value":178},{"type":55,"tag":140,"props":6085,"children":6086},{"style":170},[6087],{"type":60,"value":6088},"Meeting status:",{"type":55,"tag":140,"props":6090,"children":6091},{"style":164},[6092],{"type":60,"value":178},{"type":55,"tag":140,"props":6094,"children":6095},{"style":164},[6096],{"type":60,"value":296},{"type":55,"tag":140,"props":6098,"children":6099},{"style":153},[6100],{"type":60,"value":5626},{"type":55,"tag":140,"props":6102,"children":6103},{"style":164},[6104],{"type":60,"value":101},{"type":55,"tag":140,"props":6106,"children":6107},{"style":153},[6108],{"type":60,"value":658},{"type":55,"tag":140,"props":6110,"children":6111},{"style":368},[6112],{"type":60,"value":331},{"type":55,"tag":140,"props":6114,"children":6115},{"style":164},[6116],{"type":60,"value":183},{"type":55,"tag":140,"props":6118,"children":6119},{"class":142,"line":1069},[6120,6124,6128],{"type":55,"tag":140,"props":6121,"children":6122},{"style":164},[6123],{"type":60,"value":3597},{"type":55,"tag":140,"props":6125,"children":6126},{"style":153},[6127],{"type":60,"value":331},{"type":55,"tag":140,"props":6129,"children":6130},{"style":164},[6131],{"type":60,"value":183},{"type":55,"tag":140,"props":6133,"children":6134},{"class":142,"line":1082},[6135],{"type":55,"tag":140,"props":6136,"children":6137},{"emptyLinePlaceholder":190},[6138],{"type":60,"value":193},{"type":55,"tag":140,"props":6140,"children":6141},{"class":142,"line":1095},[6142],{"type":55,"tag":140,"props":6143,"children":6144},{"style":2038},[6145],{"type":60,"value":6146},"\u002F\u002F Waiting room\n",{"type":55,"tag":140,"props":6148,"children":6149},{"class":142,"line":1108},[6150,6154,6158,6162,6166,6170,6175,6179,6183,6187,6191,6195,6199],{"type":55,"tag":140,"props":6151,"children":6152},{"style":153},[6153],{"type":60,"value":1709},{"type":55,"tag":140,"props":6155,"children":6156},{"style":164},[6157],{"type":60,"value":101},{"type":55,"tag":140,"props":6159,"children":6160},{"style":225},[6161],{"type":60,"value":5542},{"type":55,"tag":140,"props":6163,"children":6164},{"style":153},[6165],{"type":60,"value":274},{"type":55,"tag":140,"props":6167,"children":6168},{"style":164},[6169],{"type":60,"value":178},{"type":55,"tag":140,"props":6171,"children":6172},{"style":170},[6173],{"type":60,"value":6174},"onUserIsInWaitingRoom",{"type":55,"tag":140,"props":6176,"children":6177},{"style":164},[6178],{"type":60,"value":178},{"type":55,"tag":140,"props":6180,"children":6181},{"style":164},[6182],{"type":60,"value":296},{"type":55,"tag":140,"props":6184,"children":6185},{"style":164},[6186],{"type":60,"value":587},{"type":55,"tag":140,"props":6188,"children":6189},{"style":277},[6190],{"type":60,"value":5572},{"type":55,"tag":140,"props":6192,"children":6193},{"style":164},[6194],{"type":60,"value":331},{"type":55,"tag":140,"props":6196,"children":6197},{"style":200},[6198],{"type":60,"value":2710},{"type":55,"tag":140,"props":6200,"children":6201},{"style":164},[6202],{"type":60,"value":336},{"type":55,"tag":140,"props":6204,"children":6205},{"class":142,"line":1121},[6206,6210,6214,6218,6222,6226,6231,6235,6239,6243,6247],{"type":55,"tag":140,"props":6207,"children":6208},{"style":153},[6209],{"type":60,"value":5592},{"type":55,"tag":140,"props":6211,"children":6212},{"style":164},[6213],{"type":60,"value":101},{"type":55,"tag":140,"props":6215,"children":6216},{"style":225},[6217],{"type":60,"value":2503},{"type":55,"tag":140,"props":6219,"children":6220},{"style":368},[6221],{"type":60,"value":274},{"type":55,"tag":140,"props":6223,"children":6224},{"style":164},[6225],{"type":60,"value":178},{"type":55,"tag":140,"props":6227,"children":6228},{"style":170},[6229],{"type":60,"value":6230},"User in waiting room:",{"type":55,"tag":140,"props":6232,"children":6233},{"style":164},[6234],{"type":60,"value":178},{"type":55,"tag":140,"props":6236,"children":6237},{"style":164},[6238],{"type":60,"value":296},{"type":55,"tag":140,"props":6240,"children":6241},{"style":153},[6242],{"type":60,"value":5626},{"type":55,"tag":140,"props":6244,"children":6245},{"style":368},[6246],{"type":60,"value":331},{"type":55,"tag":140,"props":6248,"children":6249},{"style":164},[6250],{"type":60,"value":183},{"type":55,"tag":140,"props":6252,"children":6253},{"class":142,"line":1137},[6254,6258,6262],{"type":55,"tag":140,"props":6255,"children":6256},{"style":164},[6257],{"type":60,"value":3597},{"type":55,"tag":140,"props":6259,"children":6260},{"style":153},[6261],{"type":60,"value":331},{"type":55,"tag":140,"props":6263,"children":6264},{"style":164},[6265],{"type":60,"value":183},{"type":55,"tag":140,"props":6267,"children":6268},{"class":142,"line":3223},[6269],{"type":55,"tag":140,"props":6270,"children":6271},{"emptyLinePlaceholder":190},[6272],{"type":60,"value":193},{"type":55,"tag":140,"props":6274,"children":6275},{"class":142,"line":3248},[6276],{"type":55,"tag":140,"props":6277,"children":6278},{"style":2038},[6279],{"type":60,"value":6280},"\u002F\u002F Active speaker detection\n",{"type":55,"tag":140,"props":6282,"children":6283},{"class":142,"line":3338},[6284,6288,6292,6296,6300,6304,6309,6313,6317,6321,6325,6329,6333],{"type":55,"tag":140,"props":6285,"children":6286},{"style":153},[6287],{"type":60,"value":1709},{"type":55,"tag":140,"props":6289,"children":6290},{"style":164},[6291],{"type":60,"value":101},{"type":55,"tag":140,"props":6293,"children":6294},{"style":225},[6295],{"type":60,"value":5542},{"type":55,"tag":140,"props":6297,"children":6298},{"style":153},[6299],{"type":60,"value":274},{"type":55,"tag":140,"props":6301,"children":6302},{"style":164},[6303],{"type":60,"value":178},{"type":55,"tag":140,"props":6305,"children":6306},{"style":170},[6307],{"type":60,"value":6308},"onActiveSpeaker",{"type":55,"tag":140,"props":6310,"children":6311},{"style":164},[6312],{"type":60,"value":178},{"type":55,"tag":140,"props":6314,"children":6315},{"style":164},[6316],{"type":60,"value":296},{"type":55,"tag":140,"props":6318,"children":6319},{"style":164},[6320],{"type":60,"value":587},{"type":55,"tag":140,"props":6322,"children":6323},{"style":277},[6324],{"type":60,"value":5572},{"type":55,"tag":140,"props":6326,"children":6327},{"style":164},[6328],{"type":60,"value":331},{"type":55,"tag":140,"props":6330,"children":6331},{"style":200},[6332],{"type":60,"value":2710},{"type":55,"tag":140,"props":6334,"children":6335},{"style":164},[6336],{"type":60,"value":336},{"type":55,"tag":140,"props":6338,"children":6339},{"class":142,"line":3355},[6340],{"type":55,"tag":140,"props":6341,"children":6342},{"style":2038},[6343],{"type":60,"value":6344},"  \u002F\u002F [{userId: number, userName: string}]\n",{"type":55,"tag":140,"props":6346,"children":6347},{"class":142,"line":3364},[6348,6352,6356,6360,6364,6368,6373,6377,6381,6385,6389],{"type":55,"tag":140,"props":6349,"children":6350},{"style":153},[6351],{"type":60,"value":5592},{"type":55,"tag":140,"props":6353,"children":6354},{"style":164},[6355],{"type":60,"value":101},{"type":55,"tag":140,"props":6357,"children":6358},{"style":225},[6359],{"type":60,"value":2503},{"type":55,"tag":140,"props":6361,"children":6362},{"style":368},[6363],{"type":60,"value":274},{"type":55,"tag":140,"props":6365,"children":6366},{"style":164},[6367],{"type":60,"value":178},{"type":55,"tag":140,"props":6369,"children":6370},{"style":170},[6371],{"type":60,"value":6372},"Active speaker:",{"type":55,"tag":140,"props":6374,"children":6375},{"style":164},[6376],{"type":60,"value":178},{"type":55,"tag":140,"props":6378,"children":6379},{"style":164},[6380],{"type":60,"value":296},{"type":55,"tag":140,"props":6382,"children":6383},{"style":153},[6384],{"type":60,"value":5626},{"type":55,"tag":140,"props":6386,"children":6387},{"style":368},[6388],{"type":60,"value":331},{"type":55,"tag":140,"props":6390,"children":6391},{"style":164},[6392],{"type":60,"value":183},{"type":55,"tag":140,"props":6394,"children":6395},{"class":142,"line":3398},[6396,6400,6404],{"type":55,"tag":140,"props":6397,"children":6398},{"style":164},[6399],{"type":60,"value":3597},{"type":55,"tag":140,"props":6401,"children":6402},{"style":153},[6403],{"type":60,"value":331},{"type":55,"tag":140,"props":6405,"children":6406},{"style":164},[6407],{"type":60,"value":183},{"type":55,"tag":140,"props":6409,"children":6410},{"class":142,"line":3449},[6411],{"type":55,"tag":140,"props":6412,"children":6413},{"emptyLinePlaceholder":190},[6414],{"type":60,"value":193},{"type":55,"tag":140,"props":6416,"children":6417},{"class":142,"line":3458},[6418],{"type":55,"tag":140,"props":6419,"children":6420},{"style":2038},[6421],{"type":60,"value":6422},"\u002F\u002F Network quality monitoring\n",{"type":55,"tag":140,"props":6424,"children":6425},{"class":142,"line":3475},[6426,6430,6434,6438,6442,6446,6451,6455,6459,6463,6467,6471,6475],{"type":55,"tag":140,"props":6427,"children":6428},{"style":153},[6429],{"type":60,"value":1709},{"type":55,"tag":140,"props":6431,"children":6432},{"style":164},[6433],{"type":60,"value":101},{"type":55,"tag":140,"props":6435,"children":6436},{"style":225},[6437],{"type":60,"value":5542},{"type":55,"tag":140,"props":6439,"children":6440},{"style":153},[6441],{"type":60,"value":274},{"type":55,"tag":140,"props":6443,"children":6444},{"style":164},[6445],{"type":60,"value":178},{"type":55,"tag":140,"props":6447,"children":6448},{"style":170},[6449],{"type":60,"value":6450},"onNetworkQualityChange",{"type":55,"tag":140,"props":6452,"children":6453},{"style":164},[6454],{"type":60,"value":178},{"type":55,"tag":140,"props":6456,"children":6457},{"style":164},[6458],{"type":60,"value":296},{"type":55,"tag":140,"props":6460,"children":6461},{"style":164},[6462],{"type":60,"value":587},{"type":55,"tag":140,"props":6464,"children":6465},{"style":277},[6466],{"type":60,"value":5572},{"type":55,"tag":140,"props":6468,"children":6469},{"style":164},[6470],{"type":60,"value":331},{"type":55,"tag":140,"props":6472,"children":6473},{"style":200},[6474],{"type":60,"value":2710},{"type":55,"tag":140,"props":6476,"children":6477},{"style":164},[6478],{"type":60,"value":336},{"type":55,"tag":140,"props":6480,"children":6481},{"class":142,"line":3483},[6482],{"type":55,"tag":140,"props":6483,"children":6484},{"style":2038},[6485],{"type":60,"value":6486},"  \u002F\u002F {level: 0-5, userId, type: 'uplink'}\n",{"type":55,"tag":140,"props":6488,"children":6489},{"class":142,"line":3516},[6490],{"type":55,"tag":140,"props":6491,"children":6492},{"style":2038},[6493],{"type":60,"value":6494},"  \u002F\u002F 0-1 = bad, 2 = normal, 3-5 = good\n",{"type":55,"tag":140,"props":6496,"children":6497},{"class":142,"line":3566},[6498,6502,6506,6510,6514,6519,6524,6529,6533],{"type":55,"tag":140,"props":6499,"children":6500},{"style":147},[6501],{"type":60,"value":582},{"type":55,"tag":140,"props":6503,"children":6504},{"style":368},[6505],{"type":60,"value":587},{"type":55,"tag":140,"props":6507,"children":6508},{"style":153},[6509],{"type":60,"value":5572},{"type":55,"tag":140,"props":6511,"children":6512},{"style":164},[6513],{"type":60,"value":101},{"type":55,"tag":140,"props":6515,"children":6516},{"style":153},[6517],{"type":60,"value":6518},"level",{"type":55,"tag":140,"props":6520,"children":6521},{"style":164},[6522],{"type":60,"value":6523}," \u003C=",{"type":55,"tag":140,"props":6525,"children":6526},{"style":532},[6527],{"type":60,"value":6528}," 1",{"type":55,"tag":140,"props":6530,"children":6531},{"style":368},[6532],{"type":60,"value":611},{"type":55,"tag":140,"props":6534,"children":6535},{"style":164},[6536],{"type":60,"value":778},{"type":55,"tag":140,"props":6538,"children":6539},{"class":142,"line":3575},[6540,6544,6548,6552,6556,6560,6565,6569,6573],{"type":55,"tag":140,"props":6541,"children":6542},{"style":153},[6543],{"type":60,"value":4154},{"type":55,"tag":140,"props":6545,"children":6546},{"style":164},[6547],{"type":60,"value":101},{"type":55,"tag":140,"props":6549,"children":6550},{"style":225},[6551],{"type":60,"value":1599},{"type":55,"tag":140,"props":6553,"children":6554},{"style":368},[6555],{"type":60,"value":274},{"type":55,"tag":140,"props":6557,"children":6558},{"style":164},[6559],{"type":60,"value":178},{"type":55,"tag":140,"props":6561,"children":6562},{"style":170},[6563],{"type":60,"value":6564},"Poor network quality",{"type":55,"tag":140,"props":6566,"children":6567},{"style":164},[6568],{"type":60,"value":178},{"type":55,"tag":140,"props":6570,"children":6571},{"style":368},[6572],{"type":60,"value":331},{"type":55,"tag":140,"props":6574,"children":6575},{"style":164},[6576],{"type":60,"value":183},{"type":55,"tag":140,"props":6578,"children":6579},{"class":142,"line":3591},[6580],{"type":55,"tag":140,"props":6581,"children":6582},{"style":164},[6583],{"type":60,"value":4272},{"type":55,"tag":140,"props":6585,"children":6587},{"class":142,"line":6586},48,[6588,6592,6596],{"type":55,"tag":140,"props":6589,"children":6590},{"style":164},[6591],{"type":60,"value":3597},{"type":55,"tag":140,"props":6593,"children":6594},{"style":153},[6595],{"type":60,"value":331},{"type":55,"tag":140,"props":6597,"children":6598},{"style":164},[6599],{"type":60,"value":183},{"type":55,"tag":140,"props":6601,"children":6603},{"class":142,"line":6602},49,[6604],{"type":55,"tag":140,"props":6605,"children":6606},{"emptyLinePlaceholder":190},[6607],{"type":60,"value":193},{"type":55,"tag":140,"props":6609,"children":6611},{"class":142,"line":6610},50,[6612],{"type":55,"tag":140,"props":6613,"children":6614},{"style":2038},[6615],{"type":60,"value":6616},"\u002F\u002F Join performance metrics\n",{"type":55,"tag":140,"props":6618,"children":6620},{"class":142,"line":6619},51,[6621,6625,6629,6633,6637,6641,6646,6650,6654,6658,6662,6666,6670],{"type":55,"tag":140,"props":6622,"children":6623},{"style":153},[6624],{"type":60,"value":1709},{"type":55,"tag":140,"props":6626,"children":6627},{"style":164},[6628],{"type":60,"value":101},{"type":55,"tag":140,"props":6630,"children":6631},{"style":225},[6632],{"type":60,"value":5542},{"type":55,"tag":140,"props":6634,"children":6635},{"style":153},[6636],{"type":60,"value":274},{"type":55,"tag":140,"props":6638,"children":6639},{"style":164},[6640],{"type":60,"value":178},{"type":55,"tag":140,"props":6642,"children":6643},{"style":170},[6644],{"type":60,"value":6645},"onJoinSpeed",{"type":55,"tag":140,"props":6647,"children":6648},{"style":164},[6649],{"type":60,"value":178},{"type":55,"tag":140,"props":6651,"children":6652},{"style":164},[6653],{"type":60,"value":296},{"type":55,"tag":140,"props":6655,"children":6656},{"style":164},[6657],{"type":60,"value":587},{"type":55,"tag":140,"props":6659,"children":6660},{"style":277},[6661],{"type":60,"value":5572},{"type":55,"tag":140,"props":6663,"children":6664},{"style":164},[6665],{"type":60,"value":331},{"type":55,"tag":140,"props":6667,"children":6668},{"style":200},[6669],{"type":60,"value":2710},{"type":55,"tag":140,"props":6671,"children":6672},{"style":164},[6673],{"type":60,"value":336},{"type":55,"tag":140,"props":6675,"children":6677},{"class":142,"line":6676},52,[6678,6682,6686,6690,6694,6698,6703,6707,6711,6715,6719],{"type":55,"tag":140,"props":6679,"children":6680},{"style":153},[6681],{"type":60,"value":5592},{"type":55,"tag":140,"props":6683,"children":6684},{"style":164},[6685],{"type":60,"value":101},{"type":55,"tag":140,"props":6687,"children":6688},{"style":225},[6689],{"type":60,"value":2503},{"type":55,"tag":140,"props":6691,"children":6692},{"style":368},[6693],{"type":60,"value":274},{"type":55,"tag":140,"props":6695,"children":6696},{"style":164},[6697],{"type":60,"value":178},{"type":55,"tag":140,"props":6699,"children":6700},{"style":170},[6701],{"type":60,"value":6702},"Join speed metrics:",{"type":55,"tag":140,"props":6704,"children":6705},{"style":164},[6706],{"type":60,"value":178},{"type":55,"tag":140,"props":6708,"children":6709},{"style":164},[6710],{"type":60,"value":296},{"type":55,"tag":140,"props":6712,"children":6713},{"style":153},[6714],{"type":60,"value":5626},{"type":55,"tag":140,"props":6716,"children":6717},{"style":368},[6718],{"type":60,"value":331},{"type":55,"tag":140,"props":6720,"children":6721},{"style":164},[6722],{"type":60,"value":183},{"type":55,"tag":140,"props":6724,"children":6726},{"class":142,"line":6725},53,[6727],{"type":55,"tag":140,"props":6728,"children":6729},{"style":2038},[6730],{"type":60,"value":6731},"  \u002F\u002F Useful for performance monitoring dashboards\n",{"type":55,"tag":140,"props":6733,"children":6735},{"class":142,"line":6734},54,[6736,6740,6744],{"type":55,"tag":140,"props":6737,"children":6738},{"style":164},[6739],{"type":60,"value":3597},{"type":55,"tag":140,"props":6741,"children":6742},{"style":153},[6743],{"type":60,"value":331},{"type":55,"tag":140,"props":6745,"children":6746},{"style":164},[6747],{"type":60,"value":183},{"type":55,"tag":140,"props":6749,"children":6751},{"class":142,"line":6750},55,[6752],{"type":55,"tag":140,"props":6753,"children":6754},{"emptyLinePlaceholder":190},[6755],{"type":60,"value":193},{"type":55,"tag":140,"props":6757,"children":6759},{"class":142,"line":6758},56,[6760],{"type":55,"tag":140,"props":6761,"children":6762},{"style":2038},[6763],{"type":60,"value":6764},"\u002F\u002F Chat\n",{"type":55,"tag":140,"props":6766,"children":6768},{"class":142,"line":6767},57,[6769,6773,6777,6781,6785,6789,6794,6798,6802,6806,6810,6814,6818],{"type":55,"tag":140,"props":6770,"children":6771},{"style":153},[6772],{"type":60,"value":1709},{"type":55,"tag":140,"props":6774,"children":6775},{"style":164},[6776],{"type":60,"value":101},{"type":55,"tag":140,"props":6778,"children":6779},{"style":225},[6780],{"type":60,"value":5542},{"type":55,"tag":140,"props":6782,"children":6783},{"style":153},[6784],{"type":60,"value":274},{"type":55,"tag":140,"props":6786,"children":6787},{"style":164},[6788],{"type":60,"value":178},{"type":55,"tag":140,"props":6790,"children":6791},{"style":170},[6792],{"type":60,"value":6793},"onReceiveChatMsg",{"type":55,"tag":140,"props":6795,"children":6796},{"style":164},[6797],{"type":60,"value":178},{"type":55,"tag":140,"props":6799,"children":6800},{"style":164},[6801],{"type":60,"value":296},{"type":55,"tag":140,"props":6803,"children":6804},{"style":164},[6805],{"type":60,"value":587},{"type":55,"tag":140,"props":6807,"children":6808},{"style":277},[6809],{"type":60,"value":5572},{"type":55,"tag":140,"props":6811,"children":6812},{"style":164},[6813],{"type":60,"value":331},{"type":55,"tag":140,"props":6815,"children":6816},{"style":200},[6817],{"type":60,"value":2710},{"type":55,"tag":140,"props":6819,"children":6820},{"style":164},[6821],{"type":60,"value":336},{"type":55,"tag":140,"props":6823,"children":6825},{"class":142,"line":6824},58,[6826,6830,6834,6838,6842,6846,6851,6855,6859,6863,6867],{"type":55,"tag":140,"props":6827,"children":6828},{"style":153},[6829],{"type":60,"value":5592},{"type":55,"tag":140,"props":6831,"children":6832},{"style":164},[6833],{"type":60,"value":101},{"type":55,"tag":140,"props":6835,"children":6836},{"style":225},[6837],{"type":60,"value":2503},{"type":55,"tag":140,"props":6839,"children":6840},{"style":368},[6841],{"type":60,"value":274},{"type":55,"tag":140,"props":6843,"children":6844},{"style":164},[6845],{"type":60,"value":178},{"type":55,"tag":140,"props":6847,"children":6848},{"style":170},[6849],{"type":60,"value":6850},"Chat message:",{"type":55,"tag":140,"props":6852,"children":6853},{"style":164},[6854],{"type":60,"value":178},{"type":55,"tag":140,"props":6856,"children":6857},{"style":164},[6858],{"type":60,"value":296},{"type":55,"tag":140,"props":6860,"children":6861},{"style":153},[6862],{"type":60,"value":5626},{"type":55,"tag":140,"props":6864,"children":6865},{"style":368},[6866],{"type":60,"value":331},{"type":55,"tag":140,"props":6868,"children":6869},{"style":164},[6870],{"type":60,"value":183},{"type":55,"tag":140,"props":6872,"children":6874},{"class":142,"line":6873},59,[6875,6879,6883],{"type":55,"tag":140,"props":6876,"children":6877},{"style":164},[6878],{"type":60,"value":3597},{"type":55,"tag":140,"props":6880,"children":6881},{"style":153},[6882],{"type":60,"value":331},{"type":55,"tag":140,"props":6884,"children":6885},{"style":164},[6886],{"type":60,"value":183},{"type":55,"tag":140,"props":6888,"children":6890},{"class":142,"line":6889},60,[6891],{"type":55,"tag":140,"props":6892,"children":6893},{"emptyLinePlaceholder":190},[6894],{"type":60,"value":193},{"type":55,"tag":140,"props":6896,"children":6898},{"class":142,"line":6897},61,[6899],{"type":55,"tag":140,"props":6900,"children":6901},{"style":2038},[6902],{"type":60,"value":6903},"\u002F\u002F Recording\n",{"type":55,"tag":140,"props":6905,"children":6907},{"class":142,"line":6906},62,[6908,6912,6916,6920,6924,6928,6933,6937,6941,6945,6949,6953,6957],{"type":55,"tag":140,"props":6909,"children":6910},{"style":153},[6911],{"type":60,"value":1709},{"type":55,"tag":140,"props":6913,"children":6914},{"style":164},[6915],{"type":60,"value":101},{"type":55,"tag":140,"props":6917,"children":6918},{"style":225},[6919],{"type":60,"value":5542},{"type":55,"tag":140,"props":6921,"children":6922},{"style":153},[6923],{"type":60,"value":274},{"type":55,"tag":140,"props":6925,"children":6926},{"style":164},[6927],{"type":60,"value":178},{"type":55,"tag":140,"props":6929,"children":6930},{"style":170},[6931],{"type":60,"value":6932},"onRecordingChange",{"type":55,"tag":140,"props":6934,"children":6935},{"style":164},[6936],{"type":60,"value":178},{"type":55,"tag":140,"props":6938,"children":6939},{"style":164},[6940],{"type":60,"value":296},{"type":55,"tag":140,"props":6942,"children":6943},{"style":164},[6944],{"type":60,"value":587},{"type":55,"tag":140,"props":6946,"children":6947},{"style":277},[6948],{"type":60,"value":5572},{"type":55,"tag":140,"props":6950,"children":6951},{"style":164},[6952],{"type":60,"value":331},{"type":55,"tag":140,"props":6954,"children":6955},{"style":200},[6956],{"type":60,"value":2710},{"type":55,"tag":140,"props":6958,"children":6959},{"style":164},[6960],{"type":60,"value":336},{"type":55,"tag":140,"props":6962,"children":6964},{"class":142,"line":6963},63,[6965,6969,6973,6977,6981,6985,6990,6994,6998,7002,7006],{"type":55,"tag":140,"props":6966,"children":6967},{"style":153},[6968],{"type":60,"value":5592},{"type":55,"tag":140,"props":6970,"children":6971},{"style":164},[6972],{"type":60,"value":101},{"type":55,"tag":140,"props":6974,"children":6975},{"style":225},[6976],{"type":60,"value":2503},{"type":55,"tag":140,"props":6978,"children":6979},{"style":368},[6980],{"type":60,"value":274},{"type":55,"tag":140,"props":6982,"children":6983},{"style":164},[6984],{"type":60,"value":178},{"type":55,"tag":140,"props":6986,"children":6987},{"style":170},[6988],{"type":60,"value":6989},"Recording status:",{"type":55,"tag":140,"props":6991,"children":6992},{"style":164},[6993],{"type":60,"value":178},{"type":55,"tag":140,"props":6995,"children":6996},{"style":164},[6997],{"type":60,"value":296},{"type":55,"tag":140,"props":6999,"children":7000},{"style":153},[7001],{"type":60,"value":5626},{"type":55,"tag":140,"props":7003,"children":7004},{"style":368},[7005],{"type":60,"value":331},{"type":55,"tag":140,"props":7007,"children":7008},{"style":164},[7009],{"type":60,"value":183},{"type":55,"tag":140,"props":7011,"children":7013},{"class":142,"line":7012},64,[7014,7018,7022],{"type":55,"tag":140,"props":7015,"children":7016},{"style":164},[7017],{"type":60,"value":3597},{"type":55,"tag":140,"props":7019,"children":7020},{"style":153},[7021],{"type":60,"value":331},{"type":55,"tag":140,"props":7023,"children":7024},{"style":164},[7025],{"type":60,"value":183},{"type":55,"tag":140,"props":7027,"children":7029},{"class":142,"line":7028},65,[7030],{"type":55,"tag":140,"props":7031,"children":7032},{"emptyLinePlaceholder":190},[7033],{"type":60,"value":193},{"type":55,"tag":140,"props":7035,"children":7037},{"class":142,"line":7036},66,[7038],{"type":55,"tag":140,"props":7039,"children":7040},{"style":2038},[7041],{"type":60,"value":7042},"\u002F\u002F Screen sharing\n",{"type":55,"tag":140,"props":7044,"children":7046},{"class":142,"line":7045},67,[7047,7051,7055,7059,7063,7067,7072,7076,7080,7084,7088,7092,7096],{"type":55,"tag":140,"props":7048,"children":7049},{"style":153},[7050],{"type":60,"value":1709},{"type":55,"tag":140,"props":7052,"children":7053},{"style":164},[7054],{"type":60,"value":101},{"type":55,"tag":140,"props":7056,"children":7057},{"style":225},[7058],{"type":60,"value":5542},{"type":55,"tag":140,"props":7060,"children":7061},{"style":153},[7062],{"type":60,"value":274},{"type":55,"tag":140,"props":7064,"children":7065},{"style":164},[7066],{"type":60,"value":178},{"type":55,"tag":140,"props":7068,"children":7069},{"style":170},[7070],{"type":60,"value":7071},"onShareContentChange",{"type":55,"tag":140,"props":7073,"children":7074},{"style":164},[7075],{"type":60,"value":178},{"type":55,"tag":140,"props":7077,"children":7078},{"style":164},[7079],{"type":60,"value":296},{"type":55,"tag":140,"props":7081,"children":7082},{"style":164},[7083],{"type":60,"value":587},{"type":55,"tag":140,"props":7085,"children":7086},{"style":277},[7087],{"type":60,"value":5572},{"type":55,"tag":140,"props":7089,"children":7090},{"style":164},[7091],{"type":60,"value":331},{"type":55,"tag":140,"props":7093,"children":7094},{"style":200},[7095],{"type":60,"value":2710},{"type":55,"tag":140,"props":7097,"children":7098},{"style":164},[7099],{"type":60,"value":336},{"type":55,"tag":140,"props":7101,"children":7103},{"class":142,"line":7102},68,[7104,7108,7112,7116,7120,7124,7129,7133,7137,7141,7145],{"type":55,"tag":140,"props":7105,"children":7106},{"style":153},[7107],{"type":60,"value":5592},{"type":55,"tag":140,"props":7109,"children":7110},{"style":164},[7111],{"type":60,"value":101},{"type":55,"tag":140,"props":7113,"children":7114},{"style":225},[7115],{"type":60,"value":2503},{"type":55,"tag":140,"props":7117,"children":7118},{"style":368},[7119],{"type":60,"value":274},{"type":55,"tag":140,"props":7121,"children":7122},{"style":164},[7123],{"type":60,"value":178},{"type":55,"tag":140,"props":7125,"children":7126},{"style":170},[7127],{"type":60,"value":7128},"Share content changed:",{"type":55,"tag":140,"props":7130,"children":7131},{"style":164},[7132],{"type":60,"value":178},{"type":55,"tag":140,"props":7134,"children":7135},{"style":164},[7136],{"type":60,"value":296},{"type":55,"tag":140,"props":7138,"children":7139},{"style":153},[7140],{"type":60,"value":5626},{"type":55,"tag":140,"props":7142,"children":7143},{"style":368},[7144],{"type":60,"value":331},{"type":55,"tag":140,"props":7146,"children":7147},{"style":164},[7148],{"type":60,"value":183},{"type":55,"tag":140,"props":7150,"children":7152},{"class":142,"line":7151},69,[7153,7157,7161],{"type":55,"tag":140,"props":7154,"children":7155},{"style":164},[7156],{"type":60,"value":3597},{"type":55,"tag":140,"props":7158,"children":7159},{"style":153},[7160],{"type":60,"value":331},{"type":55,"tag":140,"props":7162,"children":7163},{"style":164},[7164],{"type":60,"value":183},{"type":55,"tag":140,"props":7166,"children":7168},{"class":142,"line":7167},70,[7169],{"type":55,"tag":140,"props":7170,"children":7171},{"emptyLinePlaceholder":190},[7172],{"type":60,"value":193},{"type":55,"tag":140,"props":7174,"children":7176},{"class":142,"line":7175},71,[7177],{"type":55,"tag":140,"props":7178,"children":7179},{"style":2038},[7180],{"type":60,"value":7181},"\u002F\u002F Transcription (requires \"save closed captions\" enabled)\n",{"type":55,"tag":140,"props":7183,"children":7185},{"class":142,"line":7184},72,[7186,7190,7194,7198,7202,7206,7211,7215,7219,7223,7227,7231,7235],{"type":55,"tag":140,"props":7187,"children":7188},{"style":153},[7189],{"type":60,"value":1709},{"type":55,"tag":140,"props":7191,"children":7192},{"style":164},[7193],{"type":60,"value":101},{"type":55,"tag":140,"props":7195,"children":7196},{"style":225},[7197],{"type":60,"value":5542},{"type":55,"tag":140,"props":7199,"children":7200},{"style":153},[7201],{"type":60,"value":274},{"type":55,"tag":140,"props":7203,"children":7204},{"style":164},[7205],{"type":60,"value":178},{"type":55,"tag":140,"props":7207,"children":7208},{"style":170},[7209],{"type":60,"value":7210},"onReceiveTranscriptionMsg",{"type":55,"tag":140,"props":7212,"children":7213},{"style":164},[7214],{"type":60,"value":178},{"type":55,"tag":140,"props":7216,"children":7217},{"style":164},[7218],{"type":60,"value":296},{"type":55,"tag":140,"props":7220,"children":7221},{"style":164},[7222],{"type":60,"value":587},{"type":55,"tag":140,"props":7224,"children":7225},{"style":277},[7226],{"type":60,"value":5572},{"type":55,"tag":140,"props":7228,"children":7229},{"style":164},[7230],{"type":60,"value":331},{"type":55,"tag":140,"props":7232,"children":7233},{"style":200},[7234],{"type":60,"value":2710},{"type":55,"tag":140,"props":7236,"children":7237},{"style":164},[7238],{"type":60,"value":336},{"type":55,"tag":140,"props":7240,"children":7242},{"class":142,"line":7241},73,[7243,7247,7251,7255,7259,7263,7268,7272,7276,7280,7284],{"type":55,"tag":140,"props":7244,"children":7245},{"style":153},[7246],{"type":60,"value":5592},{"type":55,"tag":140,"props":7248,"children":7249},{"style":164},[7250],{"type":60,"value":101},{"type":55,"tag":140,"props":7252,"children":7253},{"style":225},[7254],{"type":60,"value":2503},{"type":55,"tag":140,"props":7256,"children":7257},{"style":368},[7258],{"type":60,"value":274},{"type":55,"tag":140,"props":7260,"children":7261},{"style":164},[7262],{"type":60,"value":178},{"type":55,"tag":140,"props":7264,"children":7265},{"style":170},[7266],{"type":60,"value":7267},"Transcription:",{"type":55,"tag":140,"props":7269,"children":7270},{"style":164},[7271],{"type":60,"value":178},{"type":55,"tag":140,"props":7273,"children":7274},{"style":164},[7275],{"type":60,"value":296},{"type":55,"tag":140,"props":7277,"children":7278},{"style":153},[7279],{"type":60,"value":5626},{"type":55,"tag":140,"props":7281,"children":7282},{"style":368},[7283],{"type":60,"value":331},{"type":55,"tag":140,"props":7285,"children":7286},{"style":164},[7287],{"type":60,"value":183},{"type":55,"tag":140,"props":7289,"children":7291},{"class":142,"line":7290},74,[7292,7296,7300],{"type":55,"tag":140,"props":7293,"children":7294},{"style":164},[7295],{"type":60,"value":3597},{"type":55,"tag":140,"props":7297,"children":7298},{"style":153},[7299],{"type":60,"value":331},{"type":55,"tag":140,"props":7301,"children":7302},{"style":164},[7303],{"type":60,"value":183},{"type":55,"tag":140,"props":7305,"children":7307},{"class":142,"line":7306},75,[7308],{"type":55,"tag":140,"props":7309,"children":7310},{"emptyLinePlaceholder":190},[7311],{"type":60,"value":193},{"type":55,"tag":140,"props":7313,"children":7315},{"class":142,"line":7314},76,[7316],{"type":55,"tag":140,"props":7317,"children":7318},{"style":2038},[7319],{"type":60,"value":7320},"\u002F\u002F Breakout room status\n",{"type":55,"tag":140,"props":7322,"children":7324},{"class":142,"line":7323},77,[7325,7329,7333,7337,7341,7345,7350,7354,7358,7362,7366,7370,7374],{"type":55,"tag":140,"props":7326,"children":7327},{"style":153},[7328],{"type":60,"value":1709},{"type":55,"tag":140,"props":7330,"children":7331},{"style":164},[7332],{"type":60,"value":101},{"type":55,"tag":140,"props":7334,"children":7335},{"style":225},[7336],{"type":60,"value":5542},{"type":55,"tag":140,"props":7338,"children":7339},{"style":153},[7340],{"type":60,"value":274},{"type":55,"tag":140,"props":7342,"children":7343},{"style":164},[7344],{"type":60,"value":178},{"type":55,"tag":140,"props":7346,"children":7347},{"style":170},[7348],{"type":60,"value":7349},"onRoomStatusChange",{"type":55,"tag":140,"props":7351,"children":7352},{"style":164},[7353],{"type":60,"value":178},{"type":55,"tag":140,"props":7355,"children":7356},{"style":164},[7357],{"type":60,"value":296},{"type":55,"tag":140,"props":7359,"children":7360},{"style":164},[7361],{"type":60,"value":587},{"type":55,"tag":140,"props":7363,"children":7364},{"style":277},[7365],{"type":60,"value":5572},{"type":55,"tag":140,"props":7367,"children":7368},{"style":164},[7369],{"type":60,"value":331},{"type":55,"tag":140,"props":7371,"children":7372},{"style":200},[7373],{"type":60,"value":2710},{"type":55,"tag":140,"props":7375,"children":7376},{"style":164},[7377],{"type":60,"value":336},{"type":55,"tag":140,"props":7379,"children":7381},{"class":142,"line":7380},78,[7382],{"type":55,"tag":140,"props":7383,"children":7384},{"style":2038},[7385],{"type":60,"value":7386},"  \u002F\u002F status: 2=InProgress, 3=Closing, 4=Closed\n",{"type":55,"tag":140,"props":7388,"children":7390},{"class":142,"line":7389},79,[7391,7395,7399,7403,7407,7411,7416,7420,7424,7428,7432],{"type":55,"tag":140,"props":7392,"children":7393},{"style":153},[7394],{"type":60,"value":5592},{"type":55,"tag":140,"props":7396,"children":7397},{"style":164},[7398],{"type":60,"value":101},{"type":55,"tag":140,"props":7400,"children":7401},{"style":225},[7402],{"type":60,"value":2503},{"type":55,"tag":140,"props":7404,"children":7405},{"style":368},[7406],{"type":60,"value":274},{"type":55,"tag":140,"props":7408,"children":7409},{"style":164},[7410],{"type":60,"value":178},{"type":55,"tag":140,"props":7412,"children":7413},{"style":170},[7414],{"type":60,"value":7415},"Breakout room status:",{"type":55,"tag":140,"props":7417,"children":7418},{"style":164},[7419],{"type":60,"value":178},{"type":55,"tag":140,"props":7421,"children":7422},{"style":164},[7423],{"type":60,"value":296},{"type":55,"tag":140,"props":7425,"children":7426},{"style":153},[7427],{"type":60,"value":5626},{"type":55,"tag":140,"props":7429,"children":7430},{"style":368},[7431],{"type":60,"value":331},{"type":55,"tag":140,"props":7433,"children":7434},{"style":164},[7435],{"type":60,"value":183},{"type":55,"tag":140,"props":7437,"children":7439},{"class":142,"line":7438},80,[7440,7444,7448],{"type":55,"tag":140,"props":7441,"children":7442},{"style":164},[7443],{"type":60,"value":3597},{"type":55,"tag":140,"props":7445,"children":7446},{"style":153},[7447],{"type":60,"value":331},{"type":55,"tag":140,"props":7449,"children":7450},{"style":164},[7451],{"type":60,"value":183},{"type":55,"tag":1912,"props":7453,"children":7455},{"id":7454},"common-methods-client-view",[7456],{"type":60,"value":7457},"Common Methods (Client View)",{"type":55,"tag":113,"props":7459,"children":7461},{"className":2423,"code":7460,"language":2425,"meta":118,"style":118},"\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",[7462],{"type":55,"tag":121,"props":7463,"children":7464},{"__ignoreMap":118},[7465,7473,7496,7557,7572,7579,7587,7618,7625,7633,7691,7740,7747,7754,7834,7841,7849,7881,7913,7920,7928,7969,8010,8055,8113,8120,8128,8188,8220,8252,8259,8267],{"type":55,"tag":140,"props":7466,"children":7467},{"class":142,"line":143},[7468],{"type":55,"tag":140,"props":7469,"children":7470},{"style":2038},[7471],{"type":60,"value":7472},"\u002F\u002F Get current user info\n",{"type":55,"tag":140,"props":7474,"children":7475},{"class":142,"line":186},[7476,7480,7484,7488,7492],{"type":55,"tag":140,"props":7477,"children":7478},{"style":153},[7479],{"type":60,"value":1709},{"type":55,"tag":140,"props":7481,"children":7482},{"style":164},[7483],{"type":60,"value":101},{"type":55,"tag":140,"props":7485,"children":7486},{"style":225},[7487],{"type":60,"value":3237},{"type":55,"tag":140,"props":7489,"children":7490},{"style":153},[7491],{"type":60,"value":274},{"type":55,"tag":140,"props":7493,"children":7494},{"style":164},[7495],{"type":60,"value":778},{"type":55,"tag":140,"props":7497,"children":7498},{"class":142,"line":196},[7499,7503,7507,7511,7515,7519,7523,7527,7531,7535,7540,7544,7548,7552],{"type":55,"tag":140,"props":7500,"children":7501},{"style":225},[7502],{"type":60,"value":5091},{"type":55,"tag":140,"props":7504,"children":7505},{"style":164},[7506],{"type":60,"value":285},{"type":55,"tag":140,"props":7508,"children":7509},{"style":164},[7510],{"type":60,"value":587},{"type":55,"tag":140,"props":7512,"children":7513},{"style":277},[7514],{"type":60,"value":3108},{"type":55,"tag":140,"props":7516,"children":7517},{"style":164},[7518],{"type":60,"value":331},{"type":55,"tag":140,"props":7520,"children":7521},{"style":200},[7522],{"type":60,"value":2710},{"type":55,"tag":140,"props":7524,"children":7525},{"style":153},[7526],{"type":60,"value":3279},{"type":55,"tag":140,"props":7528,"children":7529},{"style":164},[7530],{"type":60,"value":101},{"type":55,"tag":140,"props":7532,"children":7533},{"style":225},[7534],{"type":60,"value":2503},{"type":55,"tag":140,"props":7536,"children":7537},{"style":153},[7538],{"type":60,"value":7539},"(res",{"type":55,"tag":140,"props":7541,"children":7542},{"style":164},[7543],{"type":60,"value":101},{"type":55,"tag":140,"props":7545,"children":7546},{"style":153},[7547],{"type":60,"value":3321},{"type":55,"tag":140,"props":7549,"children":7550},{"style":164},[7551],{"type":60,"value":101},{"type":55,"tag":140,"props":7553,"children":7554},{"style":153},[7555],{"type":60,"value":7556},"currentUser)\n",{"type":55,"tag":140,"props":7558,"children":7559},{"class":142,"line":240},[7560,7564,7568],{"type":55,"tag":140,"props":7561,"children":7562},{"style":164},[7563],{"type":60,"value":3597},{"type":55,"tag":140,"props":7565,"children":7566},{"style":153},[7567],{"type":60,"value":331},{"type":55,"tag":140,"props":7569,"children":7570},{"style":164},[7571],{"type":60,"value":183},{"type":55,"tag":140,"props":7573,"children":7574},{"class":142,"line":248},[7575],{"type":55,"tag":140,"props":7576,"children":7577},{"emptyLinePlaceholder":190},[7578],{"type":60,"value":193},{"type":55,"tag":140,"props":7580,"children":7581},{"class":142,"line":339},[7582],{"type":55,"tag":140,"props":7583,"children":7584},{"style":2038},[7585],{"type":60,"value":7586},"\u002F\u002F Get all attendees\n",{"type":55,"tag":140,"props":7588,"children":7589},{"class":142,"line":394},[7590,7594,7598,7602,7606,7610,7614],{"type":55,"tag":140,"props":7591,"children":7592},{"style":153},[7593],{"type":60,"value":1709},{"type":55,"tag":140,"props":7595,"children":7596},{"style":164},[7597],{"type":60,"value":101},{"type":55,"tag":140,"props":7599,"children":7600},{"style":225},[7601],{"type":60,"value":3203},{"type":55,"tag":140,"props":7603,"children":7604},{"style":153},[7605],{"type":60,"value":274},{"type":55,"tag":140,"props":7607,"children":7608},{"style":164},[7609],{"type":60,"value":3212},{"type":55,"tag":140,"props":7611,"children":7612},{"style":153},[7613],{"type":60,"value":331},{"type":55,"tag":140,"props":7615,"children":7616},{"style":164},[7617],{"type":60,"value":183},{"type":55,"tag":140,"props":7619,"children":7620},{"class":142,"line":425},[7621],{"type":55,"tag":140,"props":7622,"children":7623},{"emptyLinePlaceholder":190},[7624],{"type":60,"value":193},{"type":55,"tag":140,"props":7626,"children":7627},{"class":142,"line":478},[7628],{"type":55,"tag":140,"props":7629,"children":7630},{"style":2038},[7631],{"type":60,"value":7632},"\u002F\u002F Audio\u002FVideo control\n",{"type":55,"tag":140,"props":7634,"children":7635},{"class":142,"line":551},[7636,7640,7644,7649,7653,7657,7662,7666,7671,7675,7679,7683,7687],{"type":55,"tag":140,"props":7637,"children":7638},{"style":153},[7639],{"type":60,"value":1709},{"type":55,"tag":140,"props":7641,"children":7642},{"style":164},[7643],{"type":60,"value":101},{"type":55,"tag":140,"props":7645,"children":7646},{"style":225},[7647],{"type":60,"value":7648},"mute",{"type":55,"tag":140,"props":7650,"children":7651},{"style":153},[7652],{"type":60,"value":274},{"type":55,"tag":140,"props":7654,"children":7655},{"style":164},[7656],{"type":60,"value":511},{"type":55,"tag":140,"props":7658,"children":7659},{"style":153},[7660],{"type":60,"value":7661}," userId",{"type":55,"tag":140,"props":7663,"children":7664},{"style":164},[7665],{"type":60,"value":296},{"type":55,"tag":140,"props":7667,"children":7668},{"style":368},[7669],{"type":60,"value":7670}," mute",{"type":55,"tag":140,"props":7672,"children":7673},{"style":164},[7674],{"type":60,"value":285},{"type":55,"tag":140,"props":7676,"children":7677},{"style":877},[7678],{"type":60,"value":880},{"type":55,"tag":140,"props":7680,"children":7681},{"style":164},[7682],{"type":60,"value":540},{"type":55,"tag":140,"props":7684,"children":7685},{"style":153},[7686],{"type":60,"value":331},{"type":55,"tag":140,"props":7688,"children":7689},{"style":164},[7690],{"type":60,"value":183},{"type":55,"tag":140,"props":7692,"children":7693},{"class":142,"line":568},[7694,7698,7702,7707,7711,7715,7720,7724,7728,7732,7736],{"type":55,"tag":140,"props":7695,"children":7696},{"style":153},[7697],{"type":60,"value":1709},{"type":55,"tag":140,"props":7699,"children":7700},{"style":164},[7701],{"type":60,"value":101},{"type":55,"tag":140,"props":7703,"children":7704},{"style":225},[7705],{"type":60,"value":7706},"muteAll",{"type":55,"tag":140,"props":7708,"children":7709},{"style":153},[7710],{"type":60,"value":274},{"type":55,"tag":140,"props":7712,"children":7713},{"style":164},[7714],{"type":60,"value":511},{"type":55,"tag":140,"props":7716,"children":7717},{"style":368},[7718],{"type":60,"value":7719}," muteAll",{"type":55,"tag":140,"props":7721,"children":7722},{"style":164},[7723],{"type":60,"value":285},{"type":55,"tag":140,"props":7725,"children":7726},{"style":877},[7727],{"type":60,"value":880},{"type":55,"tag":140,"props":7729,"children":7730},{"style":164},[7731],{"type":60,"value":540},{"type":55,"tag":140,"props":7733,"children":7734},{"style":153},[7735],{"type":60,"value":331},{"type":55,"tag":140,"props":7737,"children":7738},{"style":164},[7739],{"type":60,"value":183},{"type":55,"tag":140,"props":7741,"children":7742},{"class":142,"line":576},[7743],{"type":55,"tag":140,"props":7744,"children":7745},{"emptyLinePlaceholder":190},[7746],{"type":60,"value":193},{"type":55,"tag":140,"props":7748,"children":7749},{"class":142,"line":674},[7750],{"type":55,"tag":140,"props":7751,"children":7752},{"style":2038},[7753],{"type":60,"value":6764},{"type":55,"tag":140,"props":7755,"children":7756},{"class":142,"line":682},[7757,7761,7765,7770,7774,7778,7783,7787,7791,7796,7800,7804,7808,7812,7816,7820,7824,7829],{"type":55,"tag":140,"props":7758,"children":7759},{"style":153},[7760],{"type":60,"value":1709},{"type":55,"tag":140,"props":7762,"children":7763},{"style":164},[7764],{"type":60,"value":101},{"type":55,"tag":140,"props":7766,"children":7767},{"style":225},[7768],{"type":60,"value":7769},"sendChat",{"type":55,"tag":140,"props":7771,"children":7772},{"style":153},[7773],{"type":60,"value":274},{"type":55,"tag":140,"props":7775,"children":7776},{"style":164},[7777],{"type":60,"value":511},{"type":55,"tag":140,"props":7779,"children":7780},{"style":368},[7781],{"type":60,"value":7782}," message",{"type":55,"tag":140,"props":7784,"children":7785},{"style":164},[7786],{"type":60,"value":285},{"type":55,"tag":140,"props":7788,"children":7789},{"style":164},[7790],{"type":60,"value":167},{"type":55,"tag":140,"props":7792,"children":7793},{"style":170},[7794],{"type":60,"value":7795},"Hello!",{"type":55,"tag":140,"props":7797,"children":7798},{"style":164},[7799],{"type":60,"value":178},{"type":55,"tag":140,"props":7801,"children":7802},{"style":164},[7803],{"type":60,"value":296},{"type":55,"tag":140,"props":7805,"children":7806},{"style":368},[7807],{"type":60,"value":7661},{"type":55,"tag":140,"props":7809,"children":7810},{"style":164},[7811],{"type":60,"value":285},{"type":55,"tag":140,"props":7813,"children":7814},{"style":532},[7815],{"type":60,"value":535},{"type":55,"tag":140,"props":7817,"children":7818},{"style":164},[7819],{"type":60,"value":540},{"type":55,"tag":140,"props":7821,"children":7822},{"style":153},[7823],{"type":60,"value":331},{"type":55,"tag":140,"props":7825,"children":7826},{"style":164},[7827],{"type":60,"value":7828},";",{"type":55,"tag":140,"props":7830,"children":7831},{"style":2038},[7832],{"type":60,"value":7833}," \u002F\u002F 0 = everyone\n",{"type":55,"tag":140,"props":7835,"children":7836},{"class":142,"line":741},[7837],{"type":55,"tag":140,"props":7838,"children":7839},{"emptyLinePlaceholder":190},[7840],{"type":60,"value":193},{"type":55,"tag":140,"props":7842,"children":7843},{"class":142,"line":749},[7844],{"type":55,"tag":140,"props":7845,"children":7846},{"style":2038},[7847],{"type":60,"value":7848},"\u002F\u002F Leave\u002FEnd\n",{"type":55,"tag":140,"props":7850,"children":7851},{"class":142,"line":781},[7852,7856,7860,7865,7869,7873,7877],{"type":55,"tag":140,"props":7853,"children":7854},{"style":153},[7855],{"type":60,"value":1709},{"type":55,"tag":140,"props":7857,"children":7858},{"style":164},[7859],{"type":60,"value":101},{"type":55,"tag":140,"props":7861,"children":7862},{"style":225},[7863],{"type":60,"value":7864},"leaveMeeting",{"type":55,"tag":140,"props":7866,"children":7867},{"style":153},[7868],{"type":60,"value":274},{"type":55,"tag":140,"props":7870,"children":7871},{"style":164},[7872],{"type":60,"value":3212},{"type":55,"tag":140,"props":7874,"children":7875},{"style":153},[7876],{"type":60,"value":331},{"type":55,"tag":140,"props":7878,"children":7879},{"style":164},[7880],{"type":60,"value":183},{"type":55,"tag":140,"props":7882,"children":7883},{"class":142,"line":834},[7884,7888,7892,7897,7901,7905,7909],{"type":55,"tag":140,"props":7885,"children":7886},{"style":153},[7887],{"type":60,"value":1709},{"type":55,"tag":140,"props":7889,"children":7890},{"style":164},[7891],{"type":60,"value":101},{"type":55,"tag":140,"props":7893,"children":7894},{"style":225},[7895],{"type":60,"value":7896},"endMeeting",{"type":55,"tag":140,"props":7898,"children":7899},{"style":153},[7900],{"type":60,"value":274},{"type":55,"tag":140,"props":7902,"children":7903},{"style":164},[7904],{"type":60,"value":3212},{"type":55,"tag":140,"props":7906,"children":7907},{"style":153},[7908],{"type":60,"value":331},{"type":55,"tag":140,"props":7910,"children":7911},{"style":164},[7912],{"type":60,"value":183},{"type":55,"tag":140,"props":7914,"children":7915},{"class":142,"line":864},[7916],{"type":55,"tag":140,"props":7917,"children":7918},{"emptyLinePlaceholder":190},[7919],{"type":60,"value":193},{"type":55,"tag":140,"props":7921,"children":7922},{"class":142,"line":887},[7923],{"type":55,"tag":140,"props":7924,"children":7925},{"style":2038},[7926],{"type":60,"value":7927},"\u002F\u002F Host controls\n",{"type":55,"tag":140,"props":7929,"children":7930},{"class":142,"line":908},[7931,7935,7939,7944,7948,7952,7957,7961,7965],{"type":55,"tag":140,"props":7932,"children":7933},{"style":153},[7934],{"type":60,"value":1709},{"type":55,"tag":140,"props":7936,"children":7937},{"style":164},[7938],{"type":60,"value":101},{"type":55,"tag":140,"props":7940,"children":7941},{"style":225},[7942],{"type":60,"value":7943},"makeHost",{"type":55,"tag":140,"props":7945,"children":7946},{"style":153},[7947],{"type":60,"value":274},{"type":55,"tag":140,"props":7949,"children":7950},{"style":164},[7951],{"type":60,"value":511},{"type":55,"tag":140,"props":7953,"children":7954},{"style":153},[7955],{"type":60,"value":7956}," userId ",{"type":55,"tag":140,"props":7958,"children":7959},{"style":164},[7960],{"type":60,"value":3597},{"type":55,"tag":140,"props":7962,"children":7963},{"style":153},[7964],{"type":60,"value":331},{"type":55,"tag":140,"props":7966,"children":7967},{"style":164},[7968],{"type":60,"value":183},{"type":55,"tag":140,"props":7970,"children":7971},{"class":142,"line":925},[7972,7976,7980,7985,7989,7993,7998,8002,8006],{"type":55,"tag":140,"props":7973,"children":7974},{"style":153},[7975],{"type":60,"value":1709},{"type":55,"tag":140,"props":7977,"children":7978},{"style":164},[7979],{"type":60,"value":101},{"type":55,"tag":140,"props":7981,"children":7982},{"style":225},[7983],{"type":60,"value":7984},"makeCoHost",{"type":55,"tag":140,"props":7986,"children":7987},{"style":153},[7988],{"type":60,"value":274},{"type":55,"tag":140,"props":7990,"children":7991},{"style":164},[7992],{"type":60,"value":511},{"type":55,"tag":140,"props":7994,"children":7995},{"style":153},[7996],{"type":60,"value":7997}," oderId ",{"type":55,"tag":140,"props":7999,"children":8000},{"style":164},[8001],{"type":60,"value":3597},{"type":55,"tag":140,"props":8003,"children":8004},{"style":153},[8005],{"type":60,"value":331},{"type":55,"tag":140,"props":8007,"children":8008},{"style":164},[8009],{"type":60,"value":183},{"type":55,"tag":140,"props":8011,"children":8012},{"class":142,"line":994},[8013,8017,8021,8026,8030,8034,8038,8042,8046,8050],{"type":55,"tag":140,"props":8014,"children":8015},{"style":153},[8016],{"type":60,"value":1709},{"type":55,"tag":140,"props":8018,"children":8019},{"style":164},[8020],{"type":60,"value":101},{"type":55,"tag":140,"props":8022,"children":8023},{"style":225},[8024],{"type":60,"value":8025},"expel",{"type":55,"tag":140,"props":8027,"children":8028},{"style":153},[8029],{"type":60,"value":274},{"type":55,"tag":140,"props":8031,"children":8032},{"style":164},[8033],{"type":60,"value":511},{"type":55,"tag":140,"props":8035,"children":8036},{"style":153},[8037],{"type":60,"value":7956},{"type":55,"tag":140,"props":8039,"children":8040},{"style":164},[8041],{"type":60,"value":3597},{"type":55,"tag":140,"props":8043,"children":8044},{"style":153},[8045],{"type":60,"value":331},{"type":55,"tag":140,"props":8047,"children":8048},{"style":164},[8049],{"type":60,"value":7828},{"type":55,"tag":140,"props":8051,"children":8052},{"style":2038},[8053],{"type":60,"value":8054},"  \u002F\u002F Remove participant\n",{"type":55,"tag":140,"props":8056,"children":8057},{"class":142,"line":1003},[8058,8062,8066,8071,8075,8079,8084,8088,8093,8097,8101,8105,8109],{"type":55,"tag":140,"props":8059,"children":8060},{"style":153},[8061],{"type":60,"value":1709},{"type":55,"tag":140,"props":8063,"children":8064},{"style":164},[8065],{"type":60,"value":101},{"type":55,"tag":140,"props":8067,"children":8068},{"style":225},[8069],{"type":60,"value":8070},"putOnHold",{"type":55,"tag":140,"props":8072,"children":8073},{"style":153},[8074],{"type":60,"value":274},{"type":55,"tag":140,"props":8076,"children":8077},{"style":164},[8078],{"type":60,"value":511},{"type":55,"tag":140,"props":8080,"children":8081},{"style":153},[8082],{"type":60,"value":8083}," oderId",{"type":55,"tag":140,"props":8085,"children":8086},{"style":164},[8087],{"type":60,"value":296},{"type":55,"tag":140,"props":8089,"children":8090},{"style":368},[8091],{"type":60,"value":8092}," bHold",{"type":55,"tag":140,"props":8094,"children":8095},{"style":164},[8096],{"type":60,"value":285},{"type":55,"tag":140,"props":8098,"children":8099},{"style":877},[8100],{"type":60,"value":880},{"type":55,"tag":140,"props":8102,"children":8103},{"style":164},[8104],{"type":60,"value":540},{"type":55,"tag":140,"props":8106,"children":8107},{"style":153},[8108],{"type":60,"value":331},{"type":55,"tag":140,"props":8110,"children":8111},{"style":164},[8112],{"type":60,"value":183},{"type":55,"tag":140,"props":8114,"children":8115},{"class":142,"line":1019},[8116],{"type":55,"tag":140,"props":8117,"children":8118},{"emptyLinePlaceholder":190},[8119],{"type":60,"value":193},{"type":55,"tag":140,"props":8121,"children":8122},{"class":142,"line":1027},[8123],{"type":55,"tag":140,"props":8124,"children":8125},{"style":2038},[8126],{"type":60,"value":8127},"\u002F\u002F Breakout rooms\n",{"type":55,"tag":140,"props":8129,"children":8130},{"class":142,"line":1056},[8131,8135,8139,8144,8148,8152,8157,8161,8166,8171,8176,8180,8184],{"type":55,"tag":140,"props":8132,"children":8133},{"style":153},[8134],{"type":60,"value":1709},{"type":55,"tag":140,"props":8136,"children":8137},{"style":164},[8138],{"type":60,"value":101},{"type":55,"tag":140,"props":8140,"children":8141},{"style":225},[8142],{"type":60,"value":8143},"createBreakoutRoom",{"type":55,"tag":140,"props":8145,"children":8146},{"style":153},[8147],{"type":60,"value":274},{"type":55,"tag":140,"props":8149,"children":8150},{"style":164},[8151],{"type":60,"value":511},{"type":55,"tag":140,"props":8153,"children":8154},{"style":368},[8155],{"type":60,"value":8156}," rooms",{"type":55,"tag":140,"props":8158,"children":8159},{"style":164},[8160],{"type":60,"value":285},{"type":55,"tag":140,"props":8162,"children":8163},{"style":153},[8164],{"type":60,"value":8165}," [",{"type":55,"tag":140,"props":8167,"children":8168},{"style":164},[8169],{"type":60,"value":8170},"...",{"type":55,"tag":140,"props":8172,"children":8173},{"style":153},[8174],{"type":60,"value":8175},"] ",{"type":55,"tag":140,"props":8177,"children":8178},{"style":164},[8179],{"type":60,"value":3597},{"type":55,"tag":140,"props":8181,"children":8182},{"style":153},[8183],{"type":60,"value":331},{"type":55,"tag":140,"props":8185,"children":8186},{"style":164},[8187],{"type":60,"value":183},{"type":55,"tag":140,"props":8189,"children":8190},{"class":142,"line":1069},[8191,8195,8199,8204,8208,8212,8216],{"type":55,"tag":140,"props":8192,"children":8193},{"style":153},[8194],{"type":60,"value":1709},{"type":55,"tag":140,"props":8196,"children":8197},{"style":164},[8198],{"type":60,"value":101},{"type":55,"tag":140,"props":8200,"children":8201},{"style":225},[8202],{"type":60,"value":8203},"openBreakoutRooms",{"type":55,"tag":140,"props":8205,"children":8206},{"style":153},[8207],{"type":60,"value":274},{"type":55,"tag":140,"props":8209,"children":8210},{"style":164},[8211],{"type":60,"value":3212},{"type":55,"tag":140,"props":8213,"children":8214},{"style":153},[8215],{"type":60,"value":331},{"type":55,"tag":140,"props":8217,"children":8218},{"style":164},[8219],{"type":60,"value":183},{"type":55,"tag":140,"props":8221,"children":8222},{"class":142,"line":1082},[8223,8227,8231,8236,8240,8244,8248],{"type":55,"tag":140,"props":8224,"children":8225},{"style":153},[8226],{"type":60,"value":1709},{"type":55,"tag":140,"props":8228,"children":8229},{"style":164},[8230],{"type":60,"value":101},{"type":55,"tag":140,"props":8232,"children":8233},{"style":225},[8234],{"type":60,"value":8235},"closeBreakoutRooms",{"type":55,"tag":140,"props":8237,"children":8238},{"style":153},[8239],{"type":60,"value":274},{"type":55,"tag":140,"props":8241,"children":8242},{"style":164},[8243],{"type":60,"value":3212},{"type":55,"tag":140,"props":8245,"children":8246},{"style":153},[8247],{"type":60,"value":331},{"type":55,"tag":140,"props":8249,"children":8250},{"style":164},[8251],{"type":60,"value":183},{"type":55,"tag":140,"props":8253,"children":8254},{"class":142,"line":1095},[8255],{"type":55,"tag":140,"props":8256,"children":8257},{"emptyLinePlaceholder":190},[8258],{"type":60,"value":193},{"type":55,"tag":140,"props":8260,"children":8261},{"class":142,"line":1108},[8262],{"type":55,"tag":140,"props":8263,"children":8264},{"style":2038},[8265],{"type":60,"value":8266},"\u002F\u002F Virtual background\n",{"type":55,"tag":140,"props":8268,"children":8269},{"class":142,"line":1121},[8270,8274,8278,8283,8287,8291,8296,8300,8304,8308,8312,8316,8320],{"type":55,"tag":140,"props":8271,"children":8272},{"style":153},[8273],{"type":60,"value":1709},{"type":55,"tag":140,"props":8275,"children":8276},{"style":164},[8277],{"type":60,"value":101},{"type":55,"tag":140,"props":8279,"children":8280},{"style":225},[8281],{"type":60,"value":8282},"setVirtualBackground",{"type":55,"tag":140,"props":8284,"children":8285},{"style":153},[8286],{"type":60,"value":274},{"type":55,"tag":140,"props":8288,"children":8289},{"style":164},[8290],{"type":60,"value":511},{"type":55,"tag":140,"props":8292,"children":8293},{"style":368},[8294],{"type":60,"value":8295}," imageUrl",{"type":55,"tag":140,"props":8297,"children":8298},{"style":164},[8299],{"type":60,"value":285},{"type":55,"tag":140,"props":8301,"children":8302},{"style":164},[8303],{"type":60,"value":167},{"type":55,"tag":140,"props":8305,"children":8306},{"style":170},[8307],{"type":60,"value":8170},{"type":55,"tag":140,"props":8309,"children":8310},{"style":164},[8311],{"type":60,"value":178},{"type":55,"tag":140,"props":8313,"children":8314},{"style":164},[8315],{"type":60,"value":540},{"type":55,"tag":140,"props":8317,"children":8318},{"style":153},[8319],{"type":60,"value":331},{"type":55,"tag":140,"props":8321,"children":8322},{"style":164},[8323],{"type":60,"value":183},{"type":55,"tag":84,"props":8325,"children":8327},{"id":8326},"component-view-api-reference",[8328],{"type":60,"value":8329},"Component View API Reference",{"type":55,"tag":1912,"props":8331,"children":8333},{"id":8332},"clientinit-key-options",[8334],{"type":60,"value":8335},"client.init() - Key Options",{"type":55,"tag":113,"props":8337,"children":8339},{"className":2423,"code":8338,"language":2425,"meta":118,"style":118},"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",[8340],{"type":55,"tag":121,"props":8341,"children":8342},{"__ignoreMap":118},[8343,8371,8378,8404,8411,8419,8444,8469,8476,8484,8509,8534,8541,8549,8573,8597,8604,8612,8628,8644,8664,8716,8723,8897,8913,8930,8938,8967,8996,9020,9061,9069,9076,9084,9091,9099,9106,9114,9134,9159],{"type":55,"tag":140,"props":8344,"children":8345},{"class":142,"line":143},[8346,8351,8355,8359,8363,8367],{"type":55,"tag":140,"props":8347,"children":8348},{"style":147},[8349],{"type":60,"value":8350},"await",{"type":55,"tag":140,"props":8352,"children":8353},{"style":153},[8354],{"type":60,"value":760},{"type":55,"tag":140,"props":8356,"children":8357},{"style":164},[8358],{"type":60,"value":101},{"type":55,"tag":140,"props":8360,"children":8361},{"style":225},[8362],{"type":60,"value":769},{"type":55,"tag":140,"props":8364,"children":8365},{"style":153},[8366],{"type":60,"value":274},{"type":55,"tag":140,"props":8368,"children":8369},{"style":164},[8370],{"type":60,"value":778},{"type":55,"tag":140,"props":8372,"children":8373},{"class":142,"line":186},[8374],{"type":55,"tag":140,"props":8375,"children":8376},{"style":2038},[8377],{"type":60,"value":4578},{"type":55,"tag":140,"props":8379,"children":8380},{"class":142,"line":196},[8381,8386,8390,8395,8399],{"type":55,"tag":140,"props":8382,"children":8383},{"style":368},[8384],{"type":60,"value":8385},"  zoomAppRoot",{"type":55,"tag":140,"props":8387,"children":8388},{"style":164},[8389],{"type":60,"value":285},{"type":55,"tag":140,"props":8391,"children":8392},{"style":153},[8393],{"type":60,"value":8394}," HTMLElement",{"type":55,"tag":140,"props":8396,"children":8397},{"style":164},[8398],{"type":60,"value":296},{"type":55,"tag":140,"props":8400,"children":8401},{"style":2038},[8402],{"type":60,"value":8403},"      \u002F\u002F Container element\n",{"type":55,"tag":140,"props":8405,"children":8406},{"class":142,"line":240},[8407],{"type":55,"tag":140,"props":8408,"children":8409},{"emptyLinePlaceholder":190},[8410],{"type":60,"value":193},{"type":55,"tag":140,"props":8412,"children":8413},{"class":142,"line":248},[8414],{"type":55,"tag":140,"props":8415,"children":8416},{"style":2038},[8417],{"type":60,"value":8418},"  \u002F\u002F Display\n",{"type":55,"tag":140,"props":8420,"children":8421},{"class":142,"line":339},[8422,8427,8431,8435,8439],{"type":55,"tag":140,"props":8423,"children":8424},{"style":368},[8425],{"type":60,"value":8426},"  language",{"type":55,"tag":140,"props":8428,"children":8429},{"style":164},[8430],{"type":60,"value":285},{"type":55,"tag":140,"props":8432,"children":8433},{"style":153},[8434],{"type":60,"value":291},{"type":55,"tag":140,"props":8436,"children":8437},{"style":164},[8438],{"type":60,"value":296},{"type":55,"tag":140,"props":8440,"children":8441},{"style":2038},[8442],{"type":60,"value":8443},"              \u002F\u002F e.g., 'en-US'\n",{"type":55,"tag":140,"props":8445,"children":8446},{"class":142,"line":394},[8447,8452,8456,8460,8464],{"type":55,"tag":140,"props":8448,"children":8449},{"style":368},[8450],{"type":60,"value":8451},"  debug",{"type":55,"tag":140,"props":8453,"children":8454},{"style":164},[8455],{"type":60,"value":285},{"type":55,"tag":140,"props":8457,"children":8458},{"style":153},[8459],{"type":60,"value":4635},{"type":55,"tag":140,"props":8461,"children":8462},{"style":164},[8463],{"type":60,"value":296},{"type":55,"tag":140,"props":8465,"children":8466},{"style":2038},[8467],{"type":60,"value":8468},"                \u002F\u002F Enable debug logging (default: false)\n",{"type":55,"tag":140,"props":8470,"children":8471},{"class":142,"line":425},[8472],{"type":55,"tag":140,"props":8473,"children":8474},{"style":153},[8475],{"type":60,"value":2722},{"type":55,"tag":140,"props":8477,"children":8478},{"class":142,"line":478},[8479],{"type":55,"tag":140,"props":8480,"children":8481},{"style":2038},[8482],{"type":60,"value":8483},"  \u002F\u002F Media\n",{"type":55,"tag":140,"props":8485,"children":8486},{"class":142,"line":551},[8487,8492,8496,8500,8504],{"type":55,"tag":140,"props":8488,"children":8489},{"style":368},[8490],{"type":60,"value":8491},"  patchJsMedia",{"type":55,"tag":140,"props":8493,"children":8494},{"style":164},[8495],{"type":60,"value":285},{"type":55,"tag":140,"props":8497,"children":8498},{"style":153},[8499],{"type":60,"value":4635},{"type":55,"tag":140,"props":8501,"children":8502},{"style":164},[8503],{"type":60,"value":296},{"type":55,"tag":140,"props":8505,"children":8506},{"style":2038},[8507],{"type":60,"value":8508},"         \u002F\u002F Auto-apply media fixes (default: false)\n",{"type":55,"tag":140,"props":8510,"children":8511},{"class":142,"line":568},[8512,8517,8521,8525,8529],{"type":55,"tag":140,"props":8513,"children":8514},{"style":368},[8515],{"type":60,"value":8516},"  leaveOnPageUnload",{"type":55,"tag":140,"props":8518,"children":8519},{"style":164},[8520],{"type":60,"value":285},{"type":55,"tag":140,"props":8522,"children":8523},{"style":153},[8524],{"type":60,"value":4635},{"type":55,"tag":140,"props":8526,"children":8527},{"style":164},[8528],{"type":60,"value":296},{"type":55,"tag":140,"props":8530,"children":8531},{"style":2038},[8532],{"type":60,"value":8533},"    \u002F\u002F Clean up on page unload (default: false)\n",{"type":55,"tag":140,"props":8535,"children":8536},{"class":142,"line":576},[8537],{"type":55,"tag":140,"props":8538,"children":8539},{"style":153},[8540],{"type":60,"value":2722},{"type":55,"tag":140,"props":8542,"children":8543},{"class":142,"line":674},[8544],{"type":55,"tag":140,"props":8545,"children":8546},{"style":2038},[8547],{"type":60,"value":8548},"  \u002F\u002F Video\n",{"type":55,"tag":140,"props":8550,"children":8551},{"class":142,"line":682},[8552,8556,8560,8564,8568],{"type":55,"tag":140,"props":8553,"children":8554},{"style":368},[8555],{"type":60,"value":4767},{"type":55,"tag":140,"props":8557,"children":8558},{"style":164},[8559],{"type":60,"value":285},{"type":55,"tag":140,"props":8561,"children":8562},{"style":153},[8563],{"type":60,"value":4635},{"type":55,"tag":140,"props":8565,"children":8566},{"style":164},[8567],{"type":60,"value":296},{"type":55,"tag":140,"props":8569,"children":8570},{"style":2038},[8571],{"type":60,"value":8572},"             \u002F\u002F Enable 720p\n",{"type":55,"tag":140,"props":8574,"children":8575},{"class":142,"line":741},[8576,8580,8584,8588,8592],{"type":55,"tag":140,"props":8577,"children":8578},{"style":368},[8579],{"type":60,"value":4792},{"type":55,"tag":140,"props":8581,"children":8582},{"style":164},[8583],{"type":60,"value":285},{"type":55,"tag":140,"props":8585,"children":8586},{"style":153},[8587],{"type":60,"value":4635},{"type":55,"tag":140,"props":8589,"children":8590},{"style":164},[8591],{"type":60,"value":296},{"type":55,"tag":140,"props":8593,"children":8594},{"style":2038},[8595],{"type":60,"value":8596},"         \u002F\u002F Enable 1080p\n",{"type":55,"tag":140,"props":8598,"children":8599},{"class":142,"line":749},[8600],{"type":55,"tag":140,"props":8601,"children":8602},{"style":153},[8603],{"type":60,"value":2722},{"type":55,"tag":140,"props":8605,"children":8606},{"class":142,"line":781},[8607],{"type":55,"tag":140,"props":8608,"children":8609},{"style":2038},[8610],{"type":60,"value":8611},"  \u002F\u002F Customization\n",{"type":55,"tag":140,"props":8613,"children":8614},{"class":142,"line":834},[8615,8620,8624],{"type":55,"tag":140,"props":8616,"children":8617},{"style":368},[8618],{"type":60,"value":8619},"  customize",{"type":55,"tag":140,"props":8621,"children":8622},{"style":164},[8623],{"type":60,"value":285},{"type":55,"tag":140,"props":8625,"children":8626},{"style":164},[8627],{"type":60,"value":336},{"type":55,"tag":140,"props":8629,"children":8630},{"class":142,"line":864},[8631,8636,8640],{"type":55,"tag":140,"props":8632,"children":8633},{"style":368},[8634],{"type":60,"value":8635},"    video",{"type":55,"tag":140,"props":8637,"children":8638},{"style":164},[8639],{"type":60,"value":285},{"type":55,"tag":140,"props":8641,"children":8642},{"style":164},[8643],{"type":60,"value":336},{"type":55,"tag":140,"props":8645,"children":8646},{"class":142,"line":887},[8647,8652,8656,8660],{"type":55,"tag":140,"props":8648,"children":8649},{"style":368},[8650],{"type":60,"value":8651},"      isResizable",{"type":55,"tag":140,"props":8653,"children":8654},{"style":164},[8655],{"type":60,"value":285},{"type":55,"tag":140,"props":8657,"children":8658},{"style":153},[8659],{"type":60,"value":4635},{"type":55,"tag":140,"props":8661,"children":8662},{"style":164},[8663],{"type":60,"value":422},{"type":55,"tag":140,"props":8665,"children":8666},{"class":142,"line":908},[8667,8672,8676,8680,8685,8689,8693,8698,8702,8707,8711],{"type":55,"tag":140,"props":8668,"children":8669},{"style":368},[8670],{"type":60,"value":8671},"      viewSizes",{"type":55,"tag":140,"props":8673,"children":8674},{"style":164},[8675],{"type":60,"value":285},{"type":55,"tag":140,"props":8677,"children":8678},{"style":164},[8679],{"type":60,"value":440},{"type":55,"tag":140,"props":8681,"children":8682},{"style":368},[8683],{"type":60,"value":8684}," default",{"type":55,"tag":140,"props":8686,"children":8687},{"style":164},[8688],{"type":60,"value":285},{"type":55,"tag":140,"props":8690,"children":8691},{"style":164},[8692],{"type":60,"value":440},{"type":55,"tag":140,"props":8694,"children":8695},{"style":153},[8696],{"type":60,"value":8697}," width",{"type":55,"tag":140,"props":8699,"children":8700},{"style":164},[8701],{"type":60,"value":296},{"type":55,"tag":140,"props":8703,"children":8704},{"style":153},[8705],{"type":60,"value":8706}," height ",{"type":55,"tag":140,"props":8708,"children":8709},{"style":164},[8710],{"type":60,"value":3597},{"type":55,"tag":140,"props":8712,"children":8713},{"style":164},[8714],{"type":60,"value":8715}," }\n",{"type":55,"tag":140,"props":8717,"children":8718},{"class":142,"line":925},[8719],{"type":55,"tag":140,"props":8720,"children":8721},{"style":164},[8722],{"type":60,"value":1000},{"type":55,"tag":140,"props":8724,"children":8725},{"class":142,"line":994},[8726,8731,8735,8739,8743,8748,8752,8756,8760,8765,8769,8773,8777,8782,8786,8790,8794,8799,8803,8807,8811,8816,8820,8824,8828,8833,8837,8841,8845,8850,8854,8858,8862,8867,8871,8875,8879,8884,8888,8893],{"type":55,"tag":140,"props":8727,"children":8728},{"style":368},[8729],{"type":60,"value":8730},"    meetingInfo",{"type":55,"tag":140,"props":8732,"children":8733},{"style":164},[8734],{"type":60,"value":285},{"type":55,"tag":140,"props":8736,"children":8737},{"style":153},[8738],{"type":60,"value":8165},{"type":55,"tag":140,"props":8740,"children":8741},{"style":164},[8742],{"type":60,"value":178},{"type":55,"tag":140,"props":8744,"children":8745},{"style":170},[8746],{"type":60,"value":8747},"topic",{"type":55,"tag":140,"props":8749,"children":8750},{"style":164},[8751],{"type":60,"value":178},{"type":55,"tag":140,"props":8753,"children":8754},{"style":164},[8755],{"type":60,"value":296},{"type":55,"tag":140,"props":8757,"children":8758},{"style":164},[8759],{"type":60,"value":167},{"type":55,"tag":140,"props":8761,"children":8762},{"style":170},[8763],{"type":60,"value":8764},"host",{"type":55,"tag":140,"props":8766,"children":8767},{"style":164},[8768],{"type":60,"value":178},{"type":55,"tag":140,"props":8770,"children":8771},{"style":164},[8772],{"type":60,"value":296},{"type":55,"tag":140,"props":8774,"children":8775},{"style":164},[8776],{"type":60,"value":167},{"type":55,"tag":140,"props":8778,"children":8779},{"style":170},[8780],{"type":60,"value":8781},"mn",{"type":55,"tag":140,"props":8783,"children":8784},{"style":164},[8785],{"type":60,"value":178},{"type":55,"tag":140,"props":8787,"children":8788},{"style":164},[8789],{"type":60,"value":296},{"type":55,"tag":140,"props":8791,"children":8792},{"style":164},[8793],{"type":60,"value":167},{"type":55,"tag":140,"props":8795,"children":8796},{"style":170},[8797],{"type":60,"value":8798},"pwd",{"type":55,"tag":140,"props":8800,"children":8801},{"style":164},[8802],{"type":60,"value":178},{"type":55,"tag":140,"props":8804,"children":8805},{"style":164},[8806],{"type":60,"value":296},{"type":55,"tag":140,"props":8808,"children":8809},{"style":164},[8810],{"type":60,"value":167},{"type":55,"tag":140,"props":8812,"children":8813},{"style":170},[8814],{"type":60,"value":8815},"telPwd",{"type":55,"tag":140,"props":8817,"children":8818},{"style":164},[8819],{"type":60,"value":178},{"type":55,"tag":140,"props":8821,"children":8822},{"style":164},[8823],{"type":60,"value":296},{"type":55,"tag":140,"props":8825,"children":8826},{"style":164},[8827],{"type":60,"value":167},{"type":55,"tag":140,"props":8829,"children":8830},{"style":170},[8831],{"type":60,"value":8832},"invite",{"type":55,"tag":140,"props":8834,"children":8835},{"style":164},[8836],{"type":60,"value":178},{"type":55,"tag":140,"props":8838,"children":8839},{"style":164},[8840],{"type":60,"value":296},{"type":55,"tag":140,"props":8842,"children":8843},{"style":164},[8844],{"type":60,"value":167},{"type":55,"tag":140,"props":8846,"children":8847},{"style":170},[8848],{"type":60,"value":8849},"participant",{"type":55,"tag":140,"props":8851,"children":8852},{"style":164},[8853],{"type":60,"value":178},{"type":55,"tag":140,"props":8855,"children":8856},{"style":164},[8857],{"type":60,"value":296},{"type":55,"tag":140,"props":8859,"children":8860},{"style":164},[8861],{"type":60,"value":167},{"type":55,"tag":140,"props":8863,"children":8864},{"style":170},[8865],{"type":60,"value":8866},"dc",{"type":55,"tag":140,"props":8868,"children":8869},{"style":164},[8870],{"type":60,"value":178},{"type":55,"tag":140,"props":8872,"children":8873},{"style":164},[8874],{"type":60,"value":296},{"type":55,"tag":140,"props":8876,"children":8877},{"style":164},[8878],{"type":60,"value":167},{"type":55,"tag":140,"props":8880,"children":8881},{"style":170},[8882],{"type":60,"value":8883},"enctype",{"type":55,"tag":140,"props":8885,"children":8886},{"style":164},[8887],{"type":60,"value":178},{"type":55,"tag":140,"props":8889,"children":8890},{"style":153},[8891],{"type":60,"value":8892},"]",{"type":55,"tag":140,"props":8894,"children":8895},{"style":164},[8896],{"type":60,"value":422},{"type":55,"tag":140,"props":8898,"children":8899},{"class":142,"line":1003},[8900,8905,8909],{"type":55,"tag":140,"props":8901,"children":8902},{"style":368},[8903],{"type":60,"value":8904},"    toolbar",{"type":55,"tag":140,"props":8906,"children":8907},{"style":164},[8908],{"type":60,"value":285},{"type":55,"tag":140,"props":8910,"children":8911},{"style":164},[8912],{"type":60,"value":336},{"type":55,"tag":140,"props":8914,"children":8915},{"class":142,"line":1019},[8916,8921,8925],{"type":55,"tag":140,"props":8917,"children":8918},{"style":368},[8919],{"type":60,"value":8920},"      buttons",{"type":55,"tag":140,"props":8922,"children":8923},{"style":164},[8924],{"type":60,"value":285},{"type":55,"tag":140,"props":8926,"children":8927},{"style":153},[8928],{"type":60,"value":8929}," [\n",{"type":55,"tag":140,"props":8931,"children":8932},{"class":142,"line":1027},[8933],{"type":55,"tag":140,"props":8934,"children":8935},{"style":164},[8936],{"type":60,"value":8937},"        {\n",{"type":55,"tag":140,"props":8939,"children":8940},{"class":142,"line":1056},[8941,8946,8950,8954,8959,8963],{"type":55,"tag":140,"props":8942,"children":8943},{"style":368},[8944],{"type":60,"value":8945},"          text",{"type":55,"tag":140,"props":8947,"children":8948},{"style":164},[8949],{"type":60,"value":285},{"type":55,"tag":140,"props":8951,"children":8952},{"style":164},[8953],{"type":60,"value":167},{"type":55,"tag":140,"props":8955,"children":8956},{"style":170},[8957],{"type":60,"value":8958},"Custom Button",{"type":55,"tag":140,"props":8960,"children":8961},{"style":164},[8962],{"type":60,"value":178},{"type":55,"tag":140,"props":8964,"children":8965},{"style":164},[8966],{"type":60,"value":422},{"type":55,"tag":140,"props":8968,"children":8969},{"class":142,"line":1069},[8970,8975,8979,8983,8988,8992],{"type":55,"tag":140,"props":8971,"children":8972},{"style":368},[8973],{"type":60,"value":8974},"          className",{"type":55,"tag":140,"props":8976,"children":8977},{"style":164},[8978],{"type":60,"value":285},{"type":55,"tag":140,"props":8980,"children":8981},{"style":164},[8982],{"type":60,"value":167},{"type":55,"tag":140,"props":8984,"children":8985},{"style":170},[8986],{"type":60,"value":8987},"custom-btn",{"type":55,"tag":140,"props":8989,"children":8990},{"style":164},[8991],{"type":60,"value":178},{"type":55,"tag":140,"props":8993,"children":8994},{"style":164},[8995],{"type":60,"value":422},{"type":55,"tag":140,"props":8997,"children":8998},{"class":142,"line":1082},[8999,9004,9008,9012,9016],{"type":55,"tag":140,"props":9000,"children":9001},{"style":225},[9002],{"type":60,"value":9003},"          onClick",{"type":55,"tag":140,"props":9005,"children":9006},{"style":164},[9007],{"type":60,"value":285},{"type":55,"tag":140,"props":9009,"children":9010},{"style":164},[9011],{"type":60,"value":2922},{"type":55,"tag":140,"props":9013,"children":9014},{"style":200},[9015],{"type":60,"value":2710},{"type":55,"tag":140,"props":9017,"children":9018},{"style":164},[9019],{"type":60,"value":336},{"type":55,"tag":140,"props":9021,"children":9022},{"class":142,"line":1095},[9023,9028,9032,9036,9040,9044,9049,9053,9057],{"type":55,"tag":140,"props":9024,"children":9025},{"style":153},[9026],{"type":60,"value":9027},"            console",{"type":55,"tag":140,"props":9029,"children":9030},{"style":164},[9031],{"type":60,"value":101},{"type":55,"tag":140,"props":9033,"children":9034},{"style":225},[9035],{"type":60,"value":2503},{"type":55,"tag":140,"props":9037,"children":9038},{"style":368},[9039],{"type":60,"value":274},{"type":55,"tag":140,"props":9041,"children":9042},{"style":164},[9043],{"type":60,"value":178},{"type":55,"tag":140,"props":9045,"children":9046},{"style":170},[9047],{"type":60,"value":9048},"Custom button clicked",{"type":55,"tag":140,"props":9050,"children":9051},{"style":164},[9052],{"type":60,"value":178},{"type":55,"tag":140,"props":9054,"children":9055},{"style":368},[9056],{"type":60,"value":331},{"type":55,"tag":140,"props":9058,"children":9059},{"style":164},[9060],{"type":60,"value":183},{"type":55,"tag":140,"props":9062,"children":9063},{"class":142,"line":1108},[9064],{"type":55,"tag":140,"props":9065,"children":9066},{"style":164},[9067],{"type":60,"value":9068},"          }\n",{"type":55,"tag":140,"props":9070,"children":9071},{"class":142,"line":1121},[9072],{"type":55,"tag":140,"props":9073,"children":9074},{"style":164},[9075],{"type":60,"value":3455},{"type":55,"tag":140,"props":9077,"children":9078},{"class":142,"line":1137},[9079],{"type":55,"tag":140,"props":9080,"children":9081},{"style":153},[9082],{"type":60,"value":9083},"      ]\n",{"type":55,"tag":140,"props":9085,"children":9086},{"class":142,"line":3223},[9087],{"type":55,"tag":140,"props":9088,"children":9089},{"style":164},[9090],{"type":60,"value":3572},{"type":55,"tag":140,"props":9092,"children":9093},{"class":142,"line":3248},[9094],{"type":55,"tag":140,"props":9095,"children":9096},{"style":164},[9097],{"type":60,"value":9098},"  },\n",{"type":55,"tag":140,"props":9100,"children":9101},{"class":142,"line":3338},[9102],{"type":55,"tag":140,"props":9103,"children":9104},{"style":153},[9105],{"type":60,"value":2722},{"type":55,"tag":140,"props":9107,"children":9108},{"class":142,"line":3355},[9109],{"type":55,"tag":140,"props":9110,"children":9111},{"style":2038},[9112],{"type":60,"value":9113},"  \u002F\u002F For ZFG\n",{"type":55,"tag":140,"props":9115,"children":9116},{"class":142,"line":3364},[9117,9122,9126,9130],{"type":55,"tag":140,"props":9118,"children":9119},{"style":368},[9120],{"type":60,"value":9121},"  webEndpoint",{"type":55,"tag":140,"props":9123,"children":9124},{"style":164},[9125],{"type":60,"value":285},{"type":55,"tag":140,"props":9127,"children":9128},{"style":153},[9129],{"type":60,"value":291},{"type":55,"tag":140,"props":9131,"children":9132},{"style":164},[9133],{"type":60,"value":422},{"type":55,"tag":140,"props":9135,"children":9136},{"class":142,"line":3398},[9137,9142,9146,9150,9154],{"type":55,"tag":140,"props":9138,"children":9139},{"style":368},[9140],{"type":60,"value":9141},"  assetPath",{"type":55,"tag":140,"props":9143,"children":9144},{"style":164},[9145],{"type":60,"value":285},{"type":55,"tag":140,"props":9147,"children":9148},{"style":153},[9149],{"type":60,"value":291},{"type":55,"tag":140,"props":9151,"children":9152},{"style":164},[9153],{"type":60,"value":296},{"type":55,"tag":140,"props":9155,"children":9156},{"style":2038},[9157],{"type":60,"value":9158},"             \u002F\u002F Custom path for AV libraries (self-hosting)\n",{"type":55,"tag":140,"props":9160,"children":9161},{"class":142,"line":3449},[9162,9166,9170],{"type":55,"tag":140,"props":9163,"children":9164},{"style":164},[9165],{"type":60,"value":3597},{"type":55,"tag":140,"props":9167,"children":9168},{"style":153},[9169],{"type":60,"value":331},{"type":55,"tag":140,"props":9171,"children":9172},{"style":164},[9173],{"type":60,"value":183},{"type":55,"tag":1912,"props":9175,"children":9177},{"id":9176},"clientjoin-key-options",[9178],{"type":60,"value":9179},"client.join() - Key Options",{"type":55,"tag":113,"props":9181,"children":9183},{"className":2423,"code":9182,"language":2425,"meta":118,"style":118},"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",[9184],{"type":55,"tag":121,"props":9185,"children":9186},{"__ignoreMap":118},[9187,9214,9221,9240,9260,9287,9306,9313,9321,9346,9370,9394,9401,9408,9427],{"type":55,"tag":140,"props":9188,"children":9189},{"class":142,"line":143},[9190,9194,9198,9202,9206,9210],{"type":55,"tag":140,"props":9191,"children":9192},{"style":147},[9193],{"type":60,"value":8350},{"type":55,"tag":140,"props":9195,"children":9196},{"style":153},[9197],{"type":60,"value":760},{"type":55,"tag":140,"props":9199,"children":9200},{"style":164},[9201],{"type":60,"value":101},{"type":55,"tag":140,"props":9203,"children":9204},{"style":225},[9205],{"type":60,"value":1045},{"type":55,"tag":140,"props":9207,"children":9208},{"style":153},[9209],{"type":60,"value":274},{"type":55,"tag":140,"props":9211,"children":9212},{"style":164},[9213],{"type":60,"value":778},{"type":55,"tag":140,"props":9215,"children":9216},{"class":142,"line":186},[9217],{"type":55,"tag":140,"props":9218,"children":9219},{"style":2038},[9220],{"type":60,"value":4578},{"type":55,"tag":140,"props":9222,"children":9223},{"class":142,"line":196},[9224,9228,9232,9236],{"type":55,"tag":140,"props":9225,"children":9226},{"style":368},[9227],{"type":60,"value":5190},{"type":55,"tag":140,"props":9229,"children":9230},{"style":164},[9231],{"type":60,"value":285},{"type":55,"tag":140,"props":9233,"children":9234},{"style":153},[9235],{"type":60,"value":291},{"type":55,"tag":140,"props":9237,"children":9238},{"style":164},[9239],{"type":60,"value":422},{"type":55,"tag":140,"props":9241,"children":9242},{"class":142,"line":240},[9243,9248,9252,9256],{"type":55,"tag":140,"props":9244,"children":9245},{"style":368},[9246],{"type":60,"value":9247},"  sdkKey",{"type":55,"tag":140,"props":9249,"children":9250},{"style":164},[9251],{"type":60,"value":285},{"type":55,"tag":140,"props":9253,"children":9254},{"style":153},[9255],{"type":60,"value":291},{"type":55,"tag":140,"props":9257,"children":9258},{"style":164},[9259],{"type":60,"value":422},{"type":55,"tag":140,"props":9261,"children":9262},{"class":142,"line":248},[9263,9267,9271,9275,9279,9283],{"type":55,"tag":140,"props":9264,"children":9265},{"style":368},[9266],{"type":60,"value":5215},{"type":55,"tag":140,"props":9268,"children":9269},{"style":164},[9270],{"type":60,"value":285},{"type":55,"tag":140,"props":9272,"children":9273},{"style":153},[9274],{"type":60,"value":5224},{"type":55,"tag":140,"props":9276,"children":9277},{"style":164},[9278],{"type":60,"value":5229},{"type":55,"tag":140,"props":9280,"children":9281},{"style":153},[9282],{"type":60,"value":5234},{"type":55,"tag":140,"props":9284,"children":9285},{"style":164},[9286],{"type":60,"value":422},{"type":55,"tag":140,"props":9288,"children":9289},{"class":142,"line":339},[9290,9294,9298,9302],{"type":55,"tag":140,"props":9291,"children":9292},{"style":368},[9293],{"type":60,"value":5246},{"type":55,"tag":140,"props":9295,"children":9296},{"style":164},[9297],{"type":60,"value":285},{"type":55,"tag":140,"props":9299,"children":9300},{"style":153},[9301],{"type":60,"value":291},{"type":55,"tag":140,"props":9303,"children":9304},{"style":164},[9305],{"type":60,"value":422},{"type":55,"tag":140,"props":9307,"children":9308},{"class":142,"line":394},[9309],{"type":55,"tag":140,"props":9310,"children":9311},{"style":153},[9312],{"type":60,"value":2722},{"type":55,"tag":140,"props":9314,"children":9315},{"class":142,"line":425},[9316],{"type":55,"tag":140,"props":9317,"children":9318},{"style":2038},[9319],{"type":60,"value":9320},"  \u002F\u002F Authentication  \n",{"type":55,"tag":140,"props":9322,"children":9323},{"class":142,"line":478},[9324,9329,9333,9337,9341],{"type":55,"tag":140,"props":9325,"children":9326},{"style":368},[9327],{"type":60,"value":9328},"  password",{"type":55,"tag":140,"props":9330,"children":9331},{"style":164},[9332],{"type":60,"value":285},{"type":55,"tag":140,"props":9334,"children":9335},{"style":153},[9336],{"type":60,"value":291},{"type":55,"tag":140,"props":9338,"children":9339},{"style":164},[9340],{"type":60,"value":296},{"type":55,"tag":140,"props":9342,"children":9343},{"style":2038},[9344],{"type":60,"value":9345},"              \u002F\u002F Lowercase! (different from Client View)\n",{"type":55,"tag":140,"props":9347,"children":9348},{"class":142,"line":551},[9349,9353,9357,9361,9365],{"type":55,"tag":140,"props":9350,"children":9351},{"style":368},[9352],{"type":60,"value":5306},{"type":55,"tag":140,"props":9354,"children":9355},{"style":164},[9356],{"type":60,"value":285},{"type":55,"tag":140,"props":9358,"children":9359},{"style":153},[9360],{"type":60,"value":291},{"type":55,"tag":140,"props":9362,"children":9363},{"style":164},[9364],{"type":60,"value":296},{"type":55,"tag":140,"props":9366,"children":9367},{"style":2038},[9368],{"type":60,"value":9369},"                   \u002F\u002F Host's ZAK token\n",{"type":55,"tag":140,"props":9371,"children":9372},{"class":142,"line":568},[9373,9377,9381,9385,9389],{"type":55,"tag":140,"props":9374,"children":9375},{"style":368},[9376],{"type":60,"value":5331},{"type":55,"tag":140,"props":9378,"children":9379},{"style":164},[9380],{"type":60,"value":285},{"type":55,"tag":140,"props":9382,"children":9383},{"style":153},[9384],{"type":60,"value":291},{"type":55,"tag":140,"props":9386,"children":9387},{"style":164},[9388],{"type":60,"value":296},{"type":55,"tag":140,"props":9390,"children":9391},{"style":2038},[9392],{"type":60,"value":9393},"                    \u002F\u002F Registration token\n",{"type":55,"tag":140,"props":9395,"children":9396},{"class":142,"line":576},[9397],{"type":55,"tag":140,"props":9398,"children":9399},{"style":153},[9400],{"type":60,"value":2722},{"type":55,"tag":140,"props":9402,"children":9403},{"class":142,"line":674},[9404],{"type":55,"tag":140,"props":9405,"children":9406},{"style":2038},[9407],{"type":60,"value":5388},{"type":55,"tag":140,"props":9409,"children":9410},{"class":142,"line":682},[9411,9415,9419,9423],{"type":55,"tag":140,"props":9412,"children":9413},{"style":368},[9414],{"type":60,"value":5396},{"type":55,"tag":140,"props":9416,"children":9417},{"style":164},[9418],{"type":60,"value":285},{"type":55,"tag":140,"props":9420,"children":9421},{"style":153},[9422],{"type":60,"value":291},{"type":55,"tag":140,"props":9424,"children":9425},{"style":164},[9426],{"type":60,"value":422},{"type":55,"tag":140,"props":9428,"children":9429},{"class":142,"line":741},[9430,9434,9438],{"type":55,"tag":140,"props":9431,"children":9432},{"style":164},[9433],{"type":60,"value":3597},{"type":55,"tag":140,"props":9435,"children":9436},{"style":153},[9437],{"type":60,"value":331},{"type":55,"tag":140,"props":9439,"children":9440},{"style":164},[9441],{"type":60,"value":183},{"type":55,"tag":1912,"props":9443,"children":9445},{"id":9444},"event-listeners-component-view",[9446],{"type":60,"value":9447},"Event Listeners (Component View)",{"type":55,"tag":113,"props":9449,"children":9451},{"className":2423,"code":9450,"language":2425,"meta":118,"style":118},"\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",[9452],{"type":55,"tag":121,"props":9453,"children":9454},{"__ignoreMap":118},[9455,9463,9522,9530,9588,9603,9610,9617,9673,9721,9736,9743,9799,9847,9862,9869,9925,9973,9988,9995,10003,10059,10106,10121,10128,10136,10192,10240,10255,10262,10270],{"type":55,"tag":140,"props":9456,"children":9457},{"class":142,"line":143},[9458],{"type":55,"tag":140,"props":9459,"children":9460},{"style":2038},[9461],{"type":60,"value":9462},"\u002F\u002F Connection state\n",{"type":55,"tag":140,"props":9464,"children":9465},{"class":142,"line":186},[9466,9471,9475,9480,9484,9488,9493,9497,9501,9505,9510,9514,9518],{"type":55,"tag":140,"props":9467,"children":9468},{"style":153},[9469],{"type":60,"value":9470},"client",{"type":55,"tag":140,"props":9472,"children":9473},{"style":164},[9474],{"type":60,"value":101},{"type":55,"tag":140,"props":9476,"children":9477},{"style":225},[9478],{"type":60,"value":9479},"on",{"type":55,"tag":140,"props":9481,"children":9482},{"style":153},[9483],{"type":60,"value":274},{"type":55,"tag":140,"props":9485,"children":9486},{"style":164},[9487],{"type":60,"value":178},{"type":55,"tag":140,"props":9489,"children":9490},{"style":170},[9491],{"type":60,"value":9492},"connection-change",{"type":55,"tag":140,"props":9494,"children":9495},{"style":164},[9496],{"type":60,"value":178},{"type":55,"tag":140,"props":9498,"children":9499},{"style":164},[9500],{"type":60,"value":296},{"type":55,"tag":140,"props":9502,"children":9503},{"style":164},[9504],{"type":60,"value":587},{"type":55,"tag":140,"props":9506,"children":9507},{"style":277},[9508],{"type":60,"value":9509},"payload",{"type":55,"tag":140,"props":9511,"children":9512},{"style":164},[9513],{"type":60,"value":331},{"type":55,"tag":140,"props":9515,"children":9516},{"style":200},[9517],{"type":60,"value":2710},{"type":55,"tag":140,"props":9519,"children":9520},{"style":164},[9521],{"type":60,"value":336},{"type":55,"tag":140,"props":9523,"children":9524},{"class":142,"line":196},[9525],{"type":55,"tag":140,"props":9526,"children":9527},{"style":2038},[9528],{"type":60,"value":9529},"  \u002F\u002F payload.state: 'Connecting', 'Connected', 'Reconnecting', 'Closed'\n",{"type":55,"tag":140,"props":9531,"children":9532},{"class":142,"line":240},[9533,9537,9541,9545,9549,9553,9558,9562,9566,9571,9575,9580,9584],{"type":55,"tag":140,"props":9534,"children":9535},{"style":153},[9536],{"type":60,"value":5592},{"type":55,"tag":140,"props":9538,"children":9539},{"style":164},[9540],{"type":60,"value":101},{"type":55,"tag":140,"props":9542,"children":9543},{"style":225},[9544],{"type":60,"value":2503},{"type":55,"tag":140,"props":9546,"children":9547},{"style":368},[9548],{"type":60,"value":274},{"type":55,"tag":140,"props":9550,"children":9551},{"style":164},[9552],{"type":60,"value":178},{"type":55,"tag":140,"props":9554,"children":9555},{"style":170},[9556],{"type":60,"value":9557},"Connection:",{"type":55,"tag":140,"props":9559,"children":9560},{"style":164},[9561],{"type":60,"value":178},{"type":55,"tag":140,"props":9563,"children":9564},{"style":164},[9565],{"type":60,"value":296},{"type":55,"tag":140,"props":9567,"children":9568},{"style":153},[9569],{"type":60,"value":9570}," payload",{"type":55,"tag":140,"props":9572,"children":9573},{"style":164},[9574],{"type":60,"value":101},{"type":55,"tag":140,"props":9576,"children":9577},{"style":153},[9578],{"type":60,"value":9579},"state",{"type":55,"tag":140,"props":9581,"children":9582},{"style":368},[9583],{"type":60,"value":331},{"type":55,"tag":140,"props":9585,"children":9586},{"style":164},[9587],{"type":60,"value":183},{"type":55,"tag":140,"props":9589,"children":9590},{"class":142,"line":248},[9591,9595,9599],{"type":55,"tag":140,"props":9592,"children":9593},{"style":164},[9594],{"type":60,"value":3597},{"type":55,"tag":140,"props":9596,"children":9597},{"style":153},[9598],{"type":60,"value":331},{"type":55,"tag":140,"props":9600,"children":9601},{"style":164},[9602],{"type":60,"value":183},{"type":55,"tag":140,"props":9604,"children":9605},{"class":142,"line":339},[9606],{"type":55,"tag":140,"props":9607,"children":9608},{"emptyLinePlaceholder":190},[9609],{"type":60,"value":193},{"type":55,"tag":140,"props":9611,"children":9612},{"class":142,"line":394},[9613],{"type":55,"tag":140,"props":9614,"children":9615},{"style":2038},[9616],{"type":60,"value":5526},{"type":55,"tag":140,"props":9618,"children":9619},{"class":142,"line":425},[9620,9624,9628,9632,9636,9640,9645,9649,9653,9657,9661,9665,9669],{"type":55,"tag":140,"props":9621,"children":9622},{"style":153},[9623],{"type":60,"value":9470},{"type":55,"tag":140,"props":9625,"children":9626},{"style":164},[9627],{"type":60,"value":101},{"type":55,"tag":140,"props":9629,"children":9630},{"style":225},[9631],{"type":60,"value":9479},{"type":55,"tag":140,"props":9633,"children":9634},{"style":153},[9635],{"type":60,"value":274},{"type":55,"tag":140,"props":9637,"children":9638},{"style":164},[9639],{"type":60,"value":178},{"type":55,"tag":140,"props":9641,"children":9642},{"style":170},[9643],{"type":60,"value":9644},"user-added",{"type":55,"tag":140,"props":9646,"children":9647},{"style":164},[9648],{"type":60,"value":178},{"type":55,"tag":140,"props":9650,"children":9651},{"style":164},[9652],{"type":60,"value":296},{"type":55,"tag":140,"props":9654,"children":9655},{"style":164},[9656],{"type":60,"value":587},{"type":55,"tag":140,"props":9658,"children":9659},{"style":277},[9660],{"type":60,"value":9509},{"type":55,"tag":140,"props":9662,"children":9663},{"style":164},[9664],{"type":60,"value":331},{"type":55,"tag":140,"props":9666,"children":9667},{"style":200},[9668],{"type":60,"value":2710},{"type":55,"tag":140,"props":9670,"children":9671},{"style":164},[9672],{"type":60,"value":336},{"type":55,"tag":140,"props":9674,"children":9675},{"class":142,"line":478},[9676,9680,9684,9688,9692,9696,9701,9705,9709,9713,9717],{"type":55,"tag":140,"props":9677,"children":9678},{"style":153},[9679],{"type":60,"value":5592},{"type":55,"tag":140,"props":9681,"children":9682},{"style":164},[9683],{"type":60,"value":101},{"type":55,"tag":140,"props":9685,"children":9686},{"style":225},[9687],{"type":60,"value":2503},{"type":55,"tag":140,"props":9689,"children":9690},{"style":368},[9691],{"type":60,"value":274},{"type":55,"tag":140,"props":9693,"children":9694},{"style":164},[9695],{"type":60,"value":178},{"type":55,"tag":140,"props":9697,"children":9698},{"style":170},[9699],{"type":60,"value":9700},"Users added:",{"type":55,"tag":140,"props":9702,"children":9703},{"style":164},[9704],{"type":60,"value":178},{"type":55,"tag":140,"props":9706,"children":9707},{"style":164},[9708],{"type":60,"value":296},{"type":55,"tag":140,"props":9710,"children":9711},{"style":153},[9712],{"type":60,"value":9570},{"type":55,"tag":140,"props":9714,"children":9715},{"style":368},[9716],{"type":60,"value":331},{"type":55,"tag":140,"props":9718,"children":9719},{"style":164},[9720],{"type":60,"value":183},{"type":55,"tag":140,"props":9722,"children":9723},{"class":142,"line":551},[9724,9728,9732],{"type":55,"tag":140,"props":9725,"children":9726},{"style":164},[9727],{"type":60,"value":3597},{"type":55,"tag":140,"props":9729,"children":9730},{"style":153},[9731],{"type":60,"value":331},{"type":55,"tag":140,"props":9733,"children":9734},{"style":164},[9735],{"type":60,"value":183},{"type":55,"tag":140,"props":9737,"children":9738},{"class":142,"line":568},[9739],{"type":55,"tag":140,"props":9740,"children":9741},{"emptyLinePlaceholder":190},[9742],{"type":60,"value":193},{"type":55,"tag":140,"props":9744,"children":9745},{"class":142,"line":576},[9746,9750,9754,9758,9762,9766,9771,9775,9779,9783,9787,9791,9795],{"type":55,"tag":140,"props":9747,"children":9748},{"style":153},[9749],{"type":60,"value":9470},{"type":55,"tag":140,"props":9751,"children":9752},{"style":164},[9753],{"type":60,"value":101},{"type":55,"tag":140,"props":9755,"children":9756},{"style":225},[9757],{"type":60,"value":9479},{"type":55,"tag":140,"props":9759,"children":9760},{"style":153},[9761],{"type":60,"value":274},{"type":55,"tag":140,"props":9763,"children":9764},{"style":164},[9765],{"type":60,"value":178},{"type":55,"tag":140,"props":9767,"children":9768},{"style":170},[9769],{"type":60,"value":9770},"user-removed",{"type":55,"tag":140,"props":9772,"children":9773},{"style":164},[9774],{"type":60,"value":178},{"type":55,"tag":140,"props":9776,"children":9777},{"style":164},[9778],{"type":60,"value":296},{"type":55,"tag":140,"props":9780,"children":9781},{"style":164},[9782],{"type":60,"value":587},{"type":55,"tag":140,"props":9784,"children":9785},{"style":277},[9786],{"type":60,"value":9509},{"type":55,"tag":140,"props":9788,"children":9789},{"style":164},[9790],{"type":60,"value":331},{"type":55,"tag":140,"props":9792,"children":9793},{"style":200},[9794],{"type":60,"value":2710},{"type":55,"tag":140,"props":9796,"children":9797},{"style":164},[9798],{"type":60,"value":336},{"type":55,"tag":140,"props":9800,"children":9801},{"class":142,"line":674},[9802,9806,9810,9814,9818,9822,9827,9831,9835,9839,9843],{"type":55,"tag":140,"props":9803,"children":9804},{"style":153},[9805],{"type":60,"value":5592},{"type":55,"tag":140,"props":9807,"children":9808},{"style":164},[9809],{"type":60,"value":101},{"type":55,"tag":140,"props":9811,"children":9812},{"style":225},[9813],{"type":60,"value":2503},{"type":55,"tag":140,"props":9815,"children":9816},{"style":368},[9817],{"type":60,"value":274},{"type":55,"tag":140,"props":9819,"children":9820},{"style":164},[9821],{"type":60,"value":178},{"type":55,"tag":140,"props":9823,"children":9824},{"style":170},[9825],{"type":60,"value":9826},"Users removed:",{"type":55,"tag":140,"props":9828,"children":9829},{"style":164},[9830],{"type":60,"value":178},{"type":55,"tag":140,"props":9832,"children":9833},{"style":164},[9834],{"type":60,"value":296},{"type":55,"tag":140,"props":9836,"children":9837},{"style":153},[9838],{"type":60,"value":9570},{"type":55,"tag":140,"props":9840,"children":9841},{"style":368},[9842],{"type":60,"value":331},{"type":55,"tag":140,"props":9844,"children":9845},{"style":164},[9846],{"type":60,"value":183},{"type":55,"tag":140,"props":9848,"children":9849},{"class":142,"line":682},[9850,9854,9858],{"type":55,"tag":140,"props":9851,"children":9852},{"style":164},[9853],{"type":60,"value":3597},{"type":55,"tag":140,"props":9855,"children":9856},{"style":153},[9857],{"type":60,"value":331},{"type":55,"tag":140,"props":9859,"children":9860},{"style":164},[9861],{"type":60,"value":183},{"type":55,"tag":140,"props":9863,"children":9864},{"class":142,"line":741},[9865],{"type":55,"tag":140,"props":9866,"children":9867},{"emptyLinePlaceholder":190},[9868],{"type":60,"value":193},{"type":55,"tag":140,"props":9870,"children":9871},{"class":142,"line":749},[9872,9876,9880,9884,9888,9892,9897,9901,9905,9909,9913,9917,9921],{"type":55,"tag":140,"props":9873,"children":9874},{"style":153},[9875],{"type":60,"value":9470},{"type":55,"tag":140,"props":9877,"children":9878},{"style":164},[9879],{"type":60,"value":101},{"type":55,"tag":140,"props":9881,"children":9882},{"style":225},[9883],{"type":60,"value":9479},{"type":55,"tag":140,"props":9885,"children":9886},{"style":153},[9887],{"type":60,"value":274},{"type":55,"tag":140,"props":9889,"children":9890},{"style":164},[9891],{"type":60,"value":178},{"type":55,"tag":140,"props":9893,"children":9894},{"style":170},[9895],{"type":60,"value":9896},"user-updated",{"type":55,"tag":140,"props":9898,"children":9899},{"style":164},[9900],{"type":60,"value":178},{"type":55,"tag":140,"props":9902,"children":9903},{"style":164},[9904],{"type":60,"value":296},{"type":55,"tag":140,"props":9906,"children":9907},{"style":164},[9908],{"type":60,"value":587},{"type":55,"tag":140,"props":9910,"children":9911},{"style":277},[9912],{"type":60,"value":9509},{"type":55,"tag":140,"props":9914,"children":9915},{"style":164},[9916],{"type":60,"value":331},{"type":55,"tag":140,"props":9918,"children":9919},{"style":200},[9920],{"type":60,"value":2710},{"type":55,"tag":140,"props":9922,"children":9923},{"style":164},[9924],{"type":60,"value":336},{"type":55,"tag":140,"props":9926,"children":9927},{"class":142,"line":781},[9928,9932,9936,9940,9944,9948,9953,9957,9961,9965,9969],{"type":55,"tag":140,"props":9929,"children":9930},{"style":153},[9931],{"type":60,"value":5592},{"type":55,"tag":140,"props":9933,"children":9934},{"style":164},[9935],{"type":60,"value":101},{"type":55,"tag":140,"props":9937,"children":9938},{"style":225},[9939],{"type":60,"value":2503},{"type":55,"tag":140,"props":9941,"children":9942},{"style":368},[9943],{"type":60,"value":274},{"type":55,"tag":140,"props":9945,"children":9946},{"style":164},[9947],{"type":60,"value":178},{"type":55,"tag":140,"props":9949,"children":9950},{"style":170},[9951],{"type":60,"value":9952},"Users updated:",{"type":55,"tag":140,"props":9954,"children":9955},{"style":164},[9956],{"type":60,"value":178},{"type":55,"tag":140,"props":9958,"children":9959},{"style":164},[9960],{"type":60,"value":296},{"type":55,"tag":140,"props":9962,"children":9963},{"style":153},[9964],{"type":60,"value":9570},{"type":55,"tag":140,"props":9966,"children":9967},{"style":368},[9968],{"type":60,"value":331},{"type":55,"tag":140,"props":9970,"children":9971},{"style":164},[9972],{"type":60,"value":183},{"type":55,"tag":140,"props":9974,"children":9975},{"class":142,"line":834},[9976,9980,9984],{"type":55,"tag":140,"props":9977,"children":9978},{"style":164},[9979],{"type":60,"value":3597},{"type":55,"tag":140,"props":9981,"children":9982},{"style":153},[9983],{"type":60,"value":331},{"type":55,"tag":140,"props":9985,"children":9986},{"style":164},[9987],{"type":60,"value":183},{"type":55,"tag":140,"props":9989,"children":9990},{"class":142,"line":864},[9991],{"type":55,"tag":140,"props":9992,"children":9993},{"emptyLinePlaceholder":190},[9994],{"type":60,"value":193},{"type":55,"tag":140,"props":9996,"children":9997},{"class":142,"line":887},[9998],{"type":55,"tag":140,"props":9999,"children":10000},{"style":2038},[10001],{"type":60,"value":10002},"\u002F\u002F Active speaker\n",{"type":55,"tag":140,"props":10004,"children":10005},{"class":142,"line":908},[10006,10010,10014,10018,10022,10026,10031,10035,10039,10043,10047,10051,10055],{"type":55,"tag":140,"props":10007,"children":10008},{"style":153},[10009],{"type":60,"value":9470},{"type":55,"tag":140,"props":10011,"children":10012},{"style":164},[10013],{"type":60,"value":101},{"type":55,"tag":140,"props":10015,"children":10016},{"style":225},[10017],{"type":60,"value":9479},{"type":55,"tag":140,"props":10019,"children":10020},{"style":153},[10021],{"type":60,"value":274},{"type":55,"tag":140,"props":10023,"children":10024},{"style":164},[10025],{"type":60,"value":178},{"type":55,"tag":140,"props":10027,"children":10028},{"style":170},[10029],{"type":60,"value":10030},"active-speaker",{"type":55,"tag":140,"props":10032,"children":10033},{"style":164},[10034],{"type":60,"value":178},{"type":55,"tag":140,"props":10036,"children":10037},{"style":164},[10038],{"type":60,"value":296},{"type":55,"tag":140,"props":10040,"children":10041},{"style":164},[10042],{"type":60,"value":587},{"type":55,"tag":140,"props":10044,"children":10045},{"style":277},[10046],{"type":60,"value":9509},{"type":55,"tag":140,"props":10048,"children":10049},{"style":164},[10050],{"type":60,"value":331},{"type":55,"tag":140,"props":10052,"children":10053},{"style":200},[10054],{"type":60,"value":2710},{"type":55,"tag":140,"props":10056,"children":10057},{"style":164},[10058],{"type":60,"value":336},{"type":55,"tag":140,"props":10060,"children":10061},{"class":142,"line":925},[10062,10066,10070,10074,10078,10082,10086,10090,10094,10098,10102],{"type":55,"tag":140,"props":10063,"children":10064},{"style":153},[10065],{"type":60,"value":5592},{"type":55,"tag":140,"props":10067,"children":10068},{"style":164},[10069],{"type":60,"value":101},{"type":55,"tag":140,"props":10071,"children":10072},{"style":225},[10073],{"type":60,"value":2503},{"type":55,"tag":140,"props":10075,"children":10076},{"style":368},[10077],{"type":60,"value":274},{"type":55,"tag":140,"props":10079,"children":10080},{"style":164},[10081],{"type":60,"value":178},{"type":55,"tag":140,"props":10083,"children":10084},{"style":170},[10085],{"type":60,"value":6372},{"type":55,"tag":140,"props":10087,"children":10088},{"style":164},[10089],{"type":60,"value":178},{"type":55,"tag":140,"props":10091,"children":10092},{"style":164},[10093],{"type":60,"value":296},{"type":55,"tag":140,"props":10095,"children":10096},{"style":153},[10097],{"type":60,"value":9570},{"type":55,"tag":140,"props":10099,"children":10100},{"style":368},[10101],{"type":60,"value":331},{"type":55,"tag":140,"props":10103,"children":10104},{"style":164},[10105],{"type":60,"value":183},{"type":55,"tag":140,"props":10107,"children":10108},{"class":142,"line":994},[10109,10113,10117],{"type":55,"tag":140,"props":10110,"children":10111},{"style":164},[10112],{"type":60,"value":3597},{"type":55,"tag":140,"props":10114,"children":10115},{"style":153},[10116],{"type":60,"value":331},{"type":55,"tag":140,"props":10118,"children":10119},{"style":164},[10120],{"type":60,"value":183},{"type":55,"tag":140,"props":10122,"children":10123},{"class":142,"line":1003},[10124],{"type":55,"tag":140,"props":10125,"children":10126},{"emptyLinePlaceholder":190},[10127],{"type":60,"value":193},{"type":55,"tag":140,"props":10129,"children":10130},{"class":142,"line":1019},[10131],{"type":55,"tag":140,"props":10132,"children":10133},{"style":2038},[10134],{"type":60,"value":10135},"\u002F\u002F Video state\n",{"type":55,"tag":140,"props":10137,"children":10138},{"class":142,"line":1027},[10139,10143,10147,10151,10155,10159,10164,10168,10172,10176,10180,10184,10188],{"type":55,"tag":140,"props":10140,"children":10141},{"style":153},[10142],{"type":60,"value":9470},{"type":55,"tag":140,"props":10144,"children":10145},{"style":164},[10146],{"type":60,"value":101},{"type":55,"tag":140,"props":10148,"children":10149},{"style":225},[10150],{"type":60,"value":9479},{"type":55,"tag":140,"props":10152,"children":10153},{"style":153},[10154],{"type":60,"value":274},{"type":55,"tag":140,"props":10156,"children":10157},{"style":164},[10158],{"type":60,"value":178},{"type":55,"tag":140,"props":10160,"children":10161},{"style":170},[10162],{"type":60,"value":10163},"video-active-change",{"type":55,"tag":140,"props":10165,"children":10166},{"style":164},[10167],{"type":60,"value":178},{"type":55,"tag":140,"props":10169,"children":10170},{"style":164},[10171],{"type":60,"value":296},{"type":55,"tag":140,"props":10173,"children":10174},{"style":164},[10175],{"type":60,"value":587},{"type":55,"tag":140,"props":10177,"children":10178},{"style":277},[10179],{"type":60,"value":9509},{"type":55,"tag":140,"props":10181,"children":10182},{"style":164},[10183],{"type":60,"value":331},{"type":55,"tag":140,"props":10185,"children":10186},{"style":200},[10187],{"type":60,"value":2710},{"type":55,"tag":140,"props":10189,"children":10190},{"style":164},[10191],{"type":60,"value":336},{"type":55,"tag":140,"props":10193,"children":10194},{"class":142,"line":1056},[10195,10199,10203,10207,10211,10215,10220,10224,10228,10232,10236],{"type":55,"tag":140,"props":10196,"children":10197},{"style":153},[10198],{"type":60,"value":5592},{"type":55,"tag":140,"props":10200,"children":10201},{"style":164},[10202],{"type":60,"value":101},{"type":55,"tag":140,"props":10204,"children":10205},{"style":225},[10206],{"type":60,"value":2503},{"type":55,"tag":140,"props":10208,"children":10209},{"style":368},[10210],{"type":60,"value":274},{"type":55,"tag":140,"props":10212,"children":10213},{"style":164},[10214],{"type":60,"value":178},{"type":55,"tag":140,"props":10216,"children":10217},{"style":170},[10218],{"type":60,"value":10219},"Video active:",{"type":55,"tag":140,"props":10221,"children":10222},{"style":164},[10223],{"type":60,"value":178},{"type":55,"tag":140,"props":10225,"children":10226},{"style":164},[10227],{"type":60,"value":296},{"type":55,"tag":140,"props":10229,"children":10230},{"style":153},[10231],{"type":60,"value":9570},{"type":55,"tag":140,"props":10233,"children":10234},{"style":368},[10235],{"type":60,"value":331},{"type":55,"tag":140,"props":10237,"children":10238},{"style":164},[10239],{"type":60,"value":183},{"type":55,"tag":140,"props":10241,"children":10242},{"class":142,"line":1069},[10243,10247,10251],{"type":55,"tag":140,"props":10244,"children":10245},{"style":164},[10246],{"type":60,"value":3597},{"type":55,"tag":140,"props":10248,"children":10249},{"style":153},[10250],{"type":60,"value":331},{"type":55,"tag":140,"props":10252,"children":10253},{"style":164},[10254],{"type":60,"value":183},{"type":55,"tag":140,"props":10256,"children":10257},{"class":142,"line":1082},[10258],{"type":55,"tag":140,"props":10259,"children":10260},{"emptyLinePlaceholder":190},[10261],{"type":60,"value":193},{"type":55,"tag":140,"props":10263,"children":10264},{"class":142,"line":1095},[10265],{"type":55,"tag":140,"props":10266,"children":10267},{"style":2038},[10268],{"type":60,"value":10269},"\u002F\u002F Unsubscribe\n",{"type":55,"tag":140,"props":10271,"children":10272},{"class":142,"line":1108},[10273,10277,10281,10286,10290,10294,10298,10302,10306,10311],{"type":55,"tag":140,"props":10274,"children":10275},{"style":153},[10276],{"type":60,"value":9470},{"type":55,"tag":140,"props":10278,"children":10279},{"style":164},[10280],{"type":60,"value":101},{"type":55,"tag":140,"props":10282,"children":10283},{"style":225},[10284],{"type":60,"value":10285},"off",{"type":55,"tag":140,"props":10287,"children":10288},{"style":153},[10289],{"type":60,"value":274},{"type":55,"tag":140,"props":10291,"children":10292},{"style":164},[10293],{"type":60,"value":178},{"type":55,"tag":140,"props":10295,"children":10296},{"style":170},[10297],{"type":60,"value":9492},{"type":55,"tag":140,"props":10299,"children":10300},{"style":164},[10301],{"type":60,"value":178},{"type":55,"tag":140,"props":10303,"children":10304},{"style":164},[10305],{"type":60,"value":296},{"type":55,"tag":140,"props":10307,"children":10308},{"style":153},[10309],{"type":60,"value":10310}," handler)",{"type":55,"tag":140,"props":10312,"children":10313},{"style":164},[10314],{"type":60,"value":183},{"type":55,"tag":1912,"props":10316,"children":10318},{"id":10317},"common-methods-component-view",[10319],{"type":60,"value":10320},"Common Methods (Component View)",{"type":55,"tag":113,"props":10322,"children":10324},{"className":2423,"code":10323,"language":2425,"meta":118,"style":118},"\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",[10325],{"type":55,"tag":121,"props":10326,"children":10327},{"__ignoreMap":118},[10328,10336,10372,10379,10387,10424,10431,10439,10475,10516,10523,10531,10571,10578,10586,10609,10616,10624],{"type":55,"tag":140,"props":10329,"children":10330},{"class":142,"line":143},[10331],{"type":55,"tag":140,"props":10332,"children":10333},{"style":2038},[10334],{"type":60,"value":10335},"\u002F\u002F Get current user\n",{"type":55,"tag":140,"props":10337,"children":10338},{"class":142,"line":186},[10339,10343,10348,10352,10356,10360,10364,10368],{"type":55,"tag":140,"props":10340,"children":10341},{"style":200},[10342],{"type":60,"value":203},{"type":55,"tag":140,"props":10344,"children":10345},{"style":153},[10346],{"type":60,"value":10347}," currentUser ",{"type":55,"tag":140,"props":10349,"children":10350},{"style":164},[10351],{"type":60,"value":213},{"type":55,"tag":140,"props":10353,"children":10354},{"style":153},[10355],{"type":60,"value":760},{"type":55,"tag":140,"props":10357,"children":10358},{"style":164},[10359],{"type":60,"value":101},{"type":55,"tag":140,"props":10361,"children":10362},{"style":225},[10363],{"type":60,"value":3237},{"type":55,"tag":140,"props":10365,"children":10366},{"style":153},[10367],{"type":60,"value":233},{"type":55,"tag":140,"props":10369,"children":10370},{"style":164},[10371],{"type":60,"value":183},{"type":55,"tag":140,"props":10373,"children":10374},{"class":142,"line":196},[10375],{"type":55,"tag":140,"props":10376,"children":10377},{"emptyLinePlaceholder":190},[10378],{"type":60,"value":193},{"type":55,"tag":140,"props":10380,"children":10381},{"class":142,"line":240},[10382],{"type":55,"tag":140,"props":10383,"children":10384},{"style":2038},[10385],{"type":60,"value":10386},"\u002F\u002F Get all participants\n",{"type":55,"tag":140,"props":10388,"children":10389},{"class":142,"line":248},[10390,10394,10399,10403,10407,10411,10416,10420],{"type":55,"tag":140,"props":10391,"children":10392},{"style":200},[10393],{"type":60,"value":203},{"type":55,"tag":140,"props":10395,"children":10396},{"style":153},[10397],{"type":60,"value":10398}," participants ",{"type":55,"tag":140,"props":10400,"children":10401},{"style":164},[10402],{"type":60,"value":213},{"type":55,"tag":140,"props":10404,"children":10405},{"style":153},[10406],{"type":60,"value":760},{"type":55,"tag":140,"props":10408,"children":10409},{"style":164},[10410],{"type":60,"value":101},{"type":55,"tag":140,"props":10412,"children":10413},{"style":225},[10414],{"type":60,"value":10415},"getParticipantsList",{"type":55,"tag":140,"props":10417,"children":10418},{"style":153},[10419],{"type":60,"value":233},{"type":55,"tag":140,"props":10421,"children":10422},{"style":164},[10423],{"type":60,"value":183},{"type":55,"tag":140,"props":10425,"children":10426},{"class":142,"line":339},[10427],{"type":55,"tag":140,"props":10428,"children":10429},{"emptyLinePlaceholder":190},[10430],{"type":60,"value":193},{"type":55,"tag":140,"props":10432,"children":10433},{"class":142,"line":394},[10434],{"type":55,"tag":140,"props":10435,"children":10436},{"style":2038},[10437],{"type":60,"value":10438},"\u002F\u002F Audio control\n",{"type":55,"tag":140,"props":10440,"children":10441},{"class":142,"line":425},[10442,10446,10450,10454,10458,10462,10467,10471],{"type":55,"tag":140,"props":10443,"children":10444},{"style":147},[10445],{"type":60,"value":8350},{"type":55,"tag":140,"props":10447,"children":10448},{"style":153},[10449],{"type":60,"value":760},{"type":55,"tag":140,"props":10451,"children":10452},{"style":164},[10453],{"type":60,"value":101},{"type":55,"tag":140,"props":10455,"children":10456},{"style":225},[10457],{"type":60,"value":7648},{"type":55,"tag":140,"props":10459,"children":10460},{"style":153},[10461],{"type":60,"value":274},{"type":55,"tag":140,"props":10463,"children":10464},{"style":877},[10465],{"type":60,"value":10466},"true",{"type":55,"tag":140,"props":10468,"children":10469},{"style":153},[10470],{"type":60,"value":331},{"type":55,"tag":140,"props":10472,"children":10473},{"style":164},[10474],{"type":60,"value":183},{"type":55,"tag":140,"props":10476,"children":10477},{"class":142,"line":478},[10478,10482,10486,10490,10495,10500,10504,10508,10512],{"type":55,"tag":140,"props":10479,"children":10480},{"style":147},[10481],{"type":60,"value":8350},{"type":55,"tag":140,"props":10483,"children":10484},{"style":153},[10485],{"type":60,"value":760},{"type":55,"tag":140,"props":10487,"children":10488},{"style":164},[10489],{"type":60,"value":101},{"type":55,"tag":140,"props":10491,"children":10492},{"style":225},[10493],{"type":60,"value":10494},"muteAudio",{"type":55,"tag":140,"props":10496,"children":10497},{"style":153},[10498],{"type":60,"value":10499},"(userId",{"type":55,"tag":140,"props":10501,"children":10502},{"style":164},[10503],{"type":60,"value":296},{"type":55,"tag":140,"props":10505,"children":10506},{"style":877},[10507],{"type":60,"value":880},{"type":55,"tag":140,"props":10509,"children":10510},{"style":153},[10511],{"type":60,"value":331},{"type":55,"tag":140,"props":10513,"children":10514},{"style":164},[10515],{"type":60,"value":183},{"type":55,"tag":140,"props":10517,"children":10518},{"class":142,"line":551},[10519],{"type":55,"tag":140,"props":10520,"children":10521},{"emptyLinePlaceholder":190},[10522],{"type":60,"value":193},{"type":55,"tag":140,"props":10524,"children":10525},{"class":142,"line":568},[10526],{"type":55,"tag":140,"props":10527,"children":10528},{"style":2038},[10529],{"type":60,"value":10530},"\u002F\u002F Video control\n",{"type":55,"tag":140,"props":10532,"children":10533},{"class":142,"line":576},[10534,10538,10542,10546,10551,10555,10559,10563,10567],{"type":55,"tag":140,"props":10535,"children":10536},{"style":147},[10537],{"type":60,"value":8350},{"type":55,"tag":140,"props":10539,"children":10540},{"style":153},[10541],{"type":60,"value":760},{"type":55,"tag":140,"props":10543,"children":10544},{"style":164},[10545],{"type":60,"value":101},{"type":55,"tag":140,"props":10547,"children":10548},{"style":225},[10549],{"type":60,"value":10550},"muteVideo",{"type":55,"tag":140,"props":10552,"children":10553},{"style":153},[10554],{"type":60,"value":10499},{"type":55,"tag":140,"props":10556,"children":10557},{"style":164},[10558],{"type":60,"value":296},{"type":55,"tag":140,"props":10560,"children":10561},{"style":877},[10562],{"type":60,"value":880},{"type":55,"tag":140,"props":10564,"children":10565},{"style":153},[10566],{"type":60,"value":331},{"type":55,"tag":140,"props":10568,"children":10569},{"style":164},[10570],{"type":60,"value":183},{"type":55,"tag":140,"props":10572,"children":10573},{"class":142,"line":674},[10574],{"type":55,"tag":140,"props":10575,"children":10576},{"emptyLinePlaceholder":190},[10577],{"type":60,"value":193},{"type":55,"tag":140,"props":10579,"children":10580},{"class":142,"line":682},[10581],{"type":55,"tag":140,"props":10582,"children":10583},{"style":2038},[10584],{"type":60,"value":10585},"\u002F\u002F Leave\n",{"type":55,"tag":140,"props":10587,"children":10588},{"class":142,"line":741},[10589,10593,10597,10601,10605],{"type":55,"tag":140,"props":10590,"children":10591},{"style":153},[10592],{"type":60,"value":9470},{"type":55,"tag":140,"props":10594,"children":10595},{"style":164},[10596],{"type":60,"value":101},{"type":55,"tag":140,"props":10598,"children":10599},{"style":225},[10600],{"type":60,"value":7864},{"type":55,"tag":140,"props":10602,"children":10603},{"style":153},[10604],{"type":60,"value":233},{"type":55,"tag":140,"props":10606,"children":10607},{"style":164},[10608],{"type":60,"value":183},{"type":55,"tag":140,"props":10610,"children":10611},{"class":142,"line":749},[10612],{"type":55,"tag":140,"props":10613,"children":10614},{"emptyLinePlaceholder":190},[10615],{"type":60,"value":193},{"type":55,"tag":140,"props":10617,"children":10618},{"class":142,"line":781},[10619],{"type":55,"tag":140,"props":10620,"children":10621},{"style":2038},[10622],{"type":60,"value":10623},"\u002F\u002F End (host only)\n",{"type":55,"tag":140,"props":10625,"children":10626},{"class":142,"line":834},[10627,10631,10635,10639,10643],{"type":55,"tag":140,"props":10628,"children":10629},{"style":153},[10630],{"type":60,"value":9470},{"type":55,"tag":140,"props":10632,"children":10633},{"style":164},[10634],{"type":60,"value":101},{"type":55,"tag":140,"props":10636,"children":10637},{"style":225},[10638],{"type":60,"value":7896},{"type":55,"tag":140,"props":10640,"children":10641},{"style":153},[10642],{"type":60,"value":233},{"type":55,"tag":140,"props":10644,"children":10645},{"style":164},[10646],{"type":60,"value":183},{"type":55,"tag":84,"props":10648,"children":10650},{"id":10649},"sharedarraybuffer-critical-for-hd",[10651],{"type":60,"value":10652},"SharedArrayBuffer (CRITICAL for HD)",{"type":55,"tag":63,"props":10654,"children":10655},{},[10656],{"type":60,"value":10657},"SharedArrayBuffer enables advanced features:",{"type":55,"tag":1150,"props":10659,"children":10660},{},[10661,10666,10671,10676],{"type":55,"tag":1154,"props":10662,"children":10663},{},[10664],{"type":60,"value":10665},"720p\u002F1080p video",{"type":55,"tag":1154,"props":10667,"children":10668},{},[10669],{"type":60,"value":10670},"Gallery view",{"type":55,"tag":1154,"props":10672,"children":10673},{},[10674],{"type":60,"value":10675},"Virtual backgrounds",{"type":55,"tag":1154,"props":10677,"children":10678},{},[10679],{"type":60,"value":10680},"Background noise suppression",{"type":55,"tag":1912,"props":10682,"children":10684},{"id":10683},"enable-with-http-headers",[10685],{"type":60,"value":10686},"Enable with HTTP Headers",{"type":55,"tag":113,"props":10688,"children":10691},{"className":10689,"code":10690,"language":60},[116],"Cross-Origin-Opener-Policy: same-origin\nCross-Origin-Embedder-Policy: require-corp\n",[10692],{"type":55,"tag":121,"props":10693,"children":10694},{"__ignoreMap":118},[10695],{"type":60,"value":10690},{"type":55,"tag":1912,"props":10697,"children":10699},{"id":10698},"verify-in-browser",[10700],{"type":60,"value":10701},"Verify in Browser",{"type":55,"tag":113,"props":10703,"children":10705},{"className":2423,"code":10704,"language":2425,"meta":118,"style":118},"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",[10706],{"type":55,"tag":121,"props":10707,"children":10708},{"__ignoreMap":118},[10709,10757,10797,10813,10853,10860,10867,10875],{"type":55,"tag":140,"props":10710,"children":10711},{"class":142,"line":143},[10712,10717,10721,10726,10731,10736,10740,10745,10749,10753],{"type":55,"tag":140,"props":10713,"children":10714},{"style":147},[10715],{"type":60,"value":10716},"if",{"type":55,"tag":140,"props":10718,"children":10719},{"style":153},[10720],{"type":60,"value":587},{"type":55,"tag":140,"props":10722,"children":10723},{"style":164},[10724],{"type":60,"value":10725},"typeof",{"type":55,"tag":140,"props":10727,"children":10728},{"style":153},[10729],{"type":60,"value":10730}," SharedArrayBuffer ",{"type":55,"tag":140,"props":10732,"children":10733},{"style":164},[10734],{"type":60,"value":10735},"===",{"type":55,"tag":140,"props":10737,"children":10738},{"style":164},[10739],{"type":60,"value":167},{"type":55,"tag":140,"props":10741,"children":10742},{"style":170},[10743],{"type":60,"value":10744},"function",{"type":55,"tag":140,"props":10746,"children":10747},{"style":164},[10748],{"type":60,"value":178},{"type":55,"tag":140,"props":10750,"children":10751},{"style":153},[10752],{"type":60,"value":611},{"type":55,"tag":140,"props":10754,"children":10755},{"style":164},[10756],{"type":60,"value":778},{"type":55,"tag":140,"props":10758,"children":10759},{"class":142,"line":186},[10760,10764,10768,10772,10776,10780,10785,10789,10793],{"type":55,"tag":140,"props":10761,"children":10762},{"style":153},[10763],{"type":60,"value":5592},{"type":55,"tag":140,"props":10765,"children":10766},{"style":164},[10767],{"type":60,"value":101},{"type":55,"tag":140,"props":10769,"children":10770},{"style":225},[10771],{"type":60,"value":2503},{"type":55,"tag":140,"props":10773,"children":10774},{"style":368},[10775],{"type":60,"value":274},{"type":55,"tag":140,"props":10777,"children":10778},{"style":164},[10779],{"type":60,"value":178},{"type":55,"tag":140,"props":10781,"children":10782},{"style":170},[10783],{"type":60,"value":10784},"SharedArrayBuffer enabled!",{"type":55,"tag":140,"props":10786,"children":10787},{"style":164},[10788],{"type":60,"value":178},{"type":55,"tag":140,"props":10790,"children":10791},{"style":368},[10792],{"type":60,"value":331},{"type":55,"tag":140,"props":10794,"children":10795},{"style":164},[10796],{"type":60,"value":183},{"type":55,"tag":140,"props":10798,"children":10799},{"class":142,"line":196},[10800,10804,10809],{"type":55,"tag":140,"props":10801,"children":10802},{"style":164},[10803],{"type":60,"value":3597},{"type":55,"tag":140,"props":10805,"children":10806},{"style":147},[10807],{"type":60,"value":10808}," else",{"type":55,"tag":140,"props":10810,"children":10811},{"style":164},[10812],{"type":60,"value":336},{"type":55,"tag":140,"props":10814,"children":10815},{"class":142,"line":240},[10816,10820,10824,10828,10832,10836,10841,10845,10849],{"type":55,"tag":140,"props":10817,"children":10818},{"style":153},[10819],{"type":60,"value":5592},{"type":55,"tag":140,"props":10821,"children":10822},{"style":164},[10823],{"type":60,"value":101},{"type":55,"tag":140,"props":10825,"children":10826},{"style":225},[10827],{"type":60,"value":1599},{"type":55,"tag":140,"props":10829,"children":10830},{"style":368},[10831],{"type":60,"value":274},{"type":55,"tag":140,"props":10833,"children":10834},{"style":164},[10835],{"type":60,"value":178},{"type":55,"tag":140,"props":10837,"children":10838},{"style":170},[10839],{"type":60,"value":10840},"HD features will be limited",{"type":55,"tag":140,"props":10842,"children":10843},{"style":164},[10844],{"type":60,"value":178},{"type":55,"tag":140,"props":10846,"children":10847},{"style":368},[10848],{"type":60,"value":331},{"type":55,"tag":140,"props":10850,"children":10851},{"style":164},[10852],{"type":60,"value":183},{"type":55,"tag":140,"props":10854,"children":10855},{"class":142,"line":248},[10856],{"type":55,"tag":140,"props":10857,"children":10858},{"style":164},[10859],{"type":60,"value":1143},{"type":55,"tag":140,"props":10861,"children":10862},{"class":142,"line":339},[10863],{"type":55,"tag":140,"props":10864,"children":10865},{"emptyLinePlaceholder":190},[10866],{"type":60,"value":193},{"type":55,"tag":140,"props":10868,"children":10869},{"class":142,"line":394},[10870],{"type":55,"tag":140,"props":10871,"children":10872},{"style":2038},[10873],{"type":60,"value":10874},"\u002F\u002F Or check cross-origin isolation\n",{"type":55,"tag":140,"props":10876,"children":10877},{"class":142,"line":425},[10878,10882,10886,10890,10894,10898,10903,10907,10911,10916,10920,10925],{"type":55,"tag":140,"props":10879,"children":10880},{"style":153},[10881],{"type":60,"value":2494},{"type":55,"tag":140,"props":10883,"children":10884},{"style":164},[10885],{"type":60,"value":101},{"type":55,"tag":140,"props":10887,"children":10888},{"style":225},[10889],{"type":60,"value":2503},{"type":55,"tag":140,"props":10891,"children":10892},{"style":153},[10893],{"type":60,"value":274},{"type":55,"tag":140,"props":10895,"children":10896},{"style":164},[10897],{"type":60,"value":178},{"type":55,"tag":140,"props":10899,"children":10900},{"style":170},[10901],{"type":60,"value":10902},"Cross-origin isolated:",{"type":55,"tag":140,"props":10904,"children":10905},{"style":164},[10906],{"type":60,"value":178},{"type":55,"tag":140,"props":10908,"children":10909},{"style":164},[10910],{"type":60,"value":296},{"type":55,"tag":140,"props":10912,"children":10913},{"style":153},[10914],{"type":60,"value":10915}," window",{"type":55,"tag":140,"props":10917,"children":10918},{"style":164},[10919],{"type":60,"value":101},{"type":55,"tag":140,"props":10921,"children":10922},{"style":153},[10923],{"type":60,"value":10924},"crossOriginIsolated)",{"type":55,"tag":140,"props":10926,"children":10927},{"style":164},[10928],{"type":60,"value":183},{"type":55,"tag":1912,"props":10930,"children":10932},{"id":10931},"platform-specific-setup",[10933],{"type":60,"value":10934},"Platform-Specific Setup",{"type":55,"tag":63,"props":10936,"children":10937},{},[10938,10939,10943],{"type":60,"value":1631},{"type":55,"tag":1247,"props":10940,"children":10941},{"href":1323},[10942],{"type":60,"value":1323},{"type":60,"value":10944}," for:",{"type":55,"tag":1150,"props":10946,"children":10947},{},[10948,10953,10958],{"type":55,"tag":1154,"props":10949,"children":10950},{},[10951],{"type":60,"value":10952},"Vercel, Netlify, AWS CloudFront configuration",{"type":55,"tag":1154,"props":10954,"children":10955},{},[10956],{"type":60,"value":10957},"nginx\u002FApache configuration",{"type":55,"tag":1154,"props":10959,"children":10960},{},[10961],{"type":60,"value":10962},"Service worker fallback for GitHub Pages",{"type":55,"tag":1912,"props":10964,"children":10966},{"id":10965},"development-setup-two-server-pattern",[10967],{"type":60,"value":10968},"Development Setup (Two-Server Pattern)",{"type":55,"tag":63,"props":10970,"children":10971},{},[10972,10974,10979],{"type":60,"value":10973},"The official samples use a ",{"type":55,"tag":69,"props":10975,"children":10976},{},[10977],{"type":60,"value":10978},"two-server pattern",{"type":60,"value":10980}," for development because COOP\u002FCOEP headers can break navigation:",{"type":55,"tag":113,"props":10982,"children":10984},{"className":2423,"code":10983,"language":2425,"meta":118,"style":118},"\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",[10985],{"type":55,"tag":121,"props":10986,"children":10987},{"__ignoreMap":118},[10988,10996,11004,11011,11019,11027,11034,11042,11062,11091,11117],{"type":55,"tag":140,"props":10989,"children":10990},{"class":142,"line":143},[10991],{"type":55,"tag":140,"props":10992,"children":10993},{"style":2038},[10994],{"type":60,"value":10995},"\u002F\u002F Server 1: Main app (port 9999) - NO isolation headers\n",{"type":55,"tag":140,"props":10997,"children":10998},{"class":142,"line":186},[10999],{"type":55,"tag":140,"props":11000,"children":11001},{"style":2038},[11002],{"type":60,"value":11003},"\u002F\u002F Serves index.html, navigation works normally\n",{"type":55,"tag":140,"props":11005,"children":11006},{"class":142,"line":196},[11007],{"type":55,"tag":140,"props":11008,"children":11009},{"emptyLinePlaceholder":190},[11010],{"type":60,"value":193},{"type":55,"tag":140,"props":11012,"children":11013},{"class":142,"line":240},[11014],{"type":55,"tag":140,"props":11015,"children":11016},{"style":2038},[11017],{"type":60,"value":11018},"\u002F\u002F Server 2: Meeting page (port 9998) - WITH isolation headers\n",{"type":55,"tag":140,"props":11020,"children":11021},{"class":142,"line":248},[11022],{"type":55,"tag":140,"props":11023,"children":11024},{"style":2038},[11025],{"type":60,"value":11026},"\u002F\u002F Serves meeting.html with SharedArrayBuffer support\n",{"type":55,"tag":140,"props":11028,"children":11029},{"class":142,"line":339},[11030],{"type":55,"tag":140,"props":11031,"children":11032},{"emptyLinePlaceholder":190},[11033],{"type":60,"value":193},{"type":55,"tag":140,"props":11035,"children":11036},{"class":142,"line":394},[11037],{"type":55,"tag":140,"props":11038,"children":11039},{"style":2038},[11040],{"type":60,"value":11041},"\u002F\u002F Main server proxies to meeting server\n",{"type":55,"tag":140,"props":11043,"children":11044},{"class":142,"line":425},[11045,11050,11054,11058],{"type":55,"tag":140,"props":11046,"children":11047},{"style":288},[11048],{"type":60,"value":11049},"proxy",{"type":55,"tag":140,"props":11051,"children":11052},{"style":164},[11053],{"type":60,"value":285},{"type":55,"tag":140,"props":11055,"children":11056},{"style":153},[11057],{"type":60,"value":8165},{"type":55,"tag":140,"props":11059,"children":11060},{"style":164},[11061],{"type":60,"value":778},{"type":55,"tag":140,"props":11063,"children":11064},{"class":142,"line":478},[11065,11070,11074,11078,11083,11087],{"type":55,"tag":140,"props":11066,"children":11067},{"style":368},[11068],{"type":60,"value":11069},"  path",{"type":55,"tag":140,"props":11071,"children":11072},{"style":164},[11073],{"type":60,"value":285},{"type":55,"tag":140,"props":11075,"children":11076},{"style":164},[11077],{"type":60,"value":167},{"type":55,"tag":140,"props":11079,"children":11080},{"style":170},[11081],{"type":60,"value":11082},"\u002Fmeeting.html",{"type":55,"tag":140,"props":11084,"children":11085},{"style":164},[11086],{"type":60,"value":178},{"type":55,"tag":140,"props":11088,"children":11089},{"style":164},[11090],{"type":60,"value":422},{"type":55,"tag":140,"props":11092,"children":11093},{"class":142,"line":551},[11094,11099,11103,11107,11112],{"type":55,"tag":140,"props":11095,"children":11096},{"style":368},[11097],{"type":60,"value":11098},"  target",{"type":55,"tag":140,"props":11100,"children":11101},{"style":164},[11102],{"type":60,"value":285},{"type":55,"tag":140,"props":11104,"children":11105},{"style":164},[11106],{"type":60,"value":167},{"type":55,"tag":140,"props":11108,"children":11109},{"style":170},[11110],{"type":60,"value":11111},"http:\u002F\u002FYOUR_MEETING_SERVER_HOST:9998\u002F",{"type":55,"tag":140,"props":11113,"children":11114},{"style":164},[11115],{"type":60,"value":11116},"'\n",{"type":55,"tag":140,"props":11118,"children":11119},{"class":142,"line":568},[11120,11124],{"type":55,"tag":140,"props":11121,"children":11122},{"style":164},[11123],{"type":60,"value":3597},{"type":55,"tag":140,"props":11125,"children":11126},{"style":153},[11127],{"type":60,"value":11128},"]\n",{"type":55,"tag":63,"props":11130,"children":11131},{},[11132],{"type":55,"tag":69,"props":11133,"children":11134},{},[11135],{"type":60,"value":11136},"Vite config with headers:",{"type":55,"tag":113,"props":11138,"children":11142},{"className":11139,"code":11140,"language":11141,"meta":118,"style":118},"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",[11143],{"type":55,"tag":121,"props":11144,"children":11145},{"__ignoreMap":118},[11146,11154,11178,11194,11209,11247,11284,11291,11298],{"type":55,"tag":140,"props":11147,"children":11148},{"class":142,"line":143},[11149],{"type":55,"tag":140,"props":11150,"children":11151},{"style":2038},[11152],{"type":60,"value":11153},"\u002F\u002F vite.config.ts\n",{"type":55,"tag":140,"props":11155,"children":11156},{"class":142,"line":186},[11157,11161,11165,11170,11174],{"type":55,"tag":140,"props":11158,"children":11159},{"style":147},[11160],{"type":60,"value":254},{"type":55,"tag":140,"props":11162,"children":11163},{"style":147},[11164],{"type":60,"value":8684},{"type":55,"tag":140,"props":11166,"children":11167},{"style":225},[11168],{"type":60,"value":11169}," defineConfig",{"type":55,"tag":140,"props":11171,"children":11172},{"style":153},[11173],{"type":60,"value":274},{"type":55,"tag":140,"props":11175,"children":11176},{"style":164},[11177],{"type":60,"value":778},{"type":55,"tag":140,"props":11179,"children":11180},{"class":142,"line":196},[11181,11186,11190],{"type":55,"tag":140,"props":11182,"children":11183},{"style":368},[11184],{"type":60,"value":11185},"  server",{"type":55,"tag":140,"props":11187,"children":11188},{"style":164},[11189],{"type":60,"value":285},{"type":55,"tag":140,"props":11191,"children":11192},{"style":164},[11193],{"type":60,"value":336},{"type":55,"tag":140,"props":11195,"children":11196},{"class":142,"line":240},[11197,11201,11205],{"type":55,"tag":140,"props":11198,"children":11199},{"style":368},[11200],{"type":60,"value":431},{"type":55,"tag":140,"props":11202,"children":11203},{"style":164},[11204],{"type":60,"value":285},{"type":55,"tag":140,"props":11206,"children":11207},{"style":164},[11208],{"type":60,"value":336},{"type":55,"tag":140,"props":11210,"children":11211},{"class":142,"line":248},[11212,11217,11222,11226,11230,11234,11239,11243],{"type":55,"tag":140,"props":11213,"children":11214},{"style":164},[11215],{"type":60,"value":11216},"      '",{"type":55,"tag":140,"props":11218,"children":11219},{"style":368},[11220],{"type":60,"value":11221},"Cross-Origin-Embedder-Policy",{"type":55,"tag":140,"props":11223,"children":11224},{"style":164},[11225],{"type":60,"value":178},{"type":55,"tag":140,"props":11227,"children":11228},{"style":164},[11229],{"type":60,"value":285},{"type":55,"tag":140,"props":11231,"children":11232},{"style":164},[11233],{"type":60,"value":167},{"type":55,"tag":140,"props":11235,"children":11236},{"style":170},[11237],{"type":60,"value":11238},"require-corp",{"type":55,"tag":140,"props":11240,"children":11241},{"style":164},[11242],{"type":60,"value":178},{"type":55,"tag":140,"props":11244,"children":11245},{"style":164},[11246],{"type":60,"value":422},{"type":55,"tag":140,"props":11248,"children":11249},{"class":142,"line":339},[11250,11254,11259,11263,11267,11271,11276,11280],{"type":55,"tag":140,"props":11251,"children":11252},{"style":164},[11253],{"type":60,"value":11216},{"type":55,"tag":140,"props":11255,"children":11256},{"style":368},[11257],{"type":60,"value":11258},"Cross-Origin-Opener-Policy",{"type":55,"tag":140,"props":11260,"children":11261},{"style":164},[11262],{"type":60,"value":178},{"type":55,"tag":140,"props":11264,"children":11265},{"style":164},[11266],{"type":60,"value":285},{"type":55,"tag":140,"props":11268,"children":11269},{"style":164},[11270],{"type":60,"value":167},{"type":55,"tag":140,"props":11272,"children":11273},{"style":170},[11274],{"type":60,"value":11275},"same-origin",{"type":55,"tag":140,"props":11277,"children":11278},{"style":164},[11279],{"type":60,"value":178},{"type":55,"tag":140,"props":11281,"children":11282},{"style":164},[11283],{"type":60,"value":422},{"type":55,"tag":140,"props":11285,"children":11286},{"class":142,"line":394},[11287],{"type":55,"tag":140,"props":11288,"children":11289},{"style":164},[11290],{"type":60,"value":3572},{"type":55,"tag":140,"props":11292,"children":11293},{"class":142,"line":425},[11294],{"type":55,"tag":140,"props":11295,"children":11296},{"style":164},[11297],{"type":60,"value":4272},{"type":55,"tag":140,"props":11299,"children":11300},{"class":142,"line":478},[11301,11305,11309],{"type":55,"tag":140,"props":11302,"children":11303},{"style":164},[11304],{"type":60,"value":3597},{"type":55,"tag":140,"props":11306,"children":11307},{"style":153},[11308],{"type":60,"value":331},{"type":55,"tag":140,"props":11310,"children":11311},{"style":164},[11312],{"type":60,"value":183},{"type":55,"tag":84,"props":11314,"children":11316},{"id":11315},"common-issues-solutions",[11317],{"type":60,"value":11318},"Common Issues & Solutions",{"type":55,"tag":1660,"props":11320,"children":11321},{},[11322,11338],{"type":55,"tag":1664,"props":11323,"children":11324},{},[11325],{"type":55,"tag":1668,"props":11326,"children":11327},{},[11328,11333],{"type":55,"tag":1672,"props":11329,"children":11330},{},[11331],{"type":60,"value":11332},"Issue",{"type":55,"tag":1672,"props":11334,"children":11335},{},[11336],{"type":60,"value":11337},"Solution",{"type":55,"tag":1686,"props":11339,"children":11340},{},[11341,11357,11385,11401,11424,11440],{"type":55,"tag":1668,"props":11342,"children":11343},{},[11344,11352],{"type":55,"tag":1693,"props":11345,"children":11346},{},[11347],{"type":55,"tag":69,"props":11348,"children":11349},{},[11350],{"type":60,"value":11351},"Join fails with signature error",{"type":55,"tag":1693,"props":11353,"children":11354},{},[11355],{"type":60,"value":11356},"Verify signature generation, check sdkKey format",{"type":55,"tag":1668,"props":11358,"children":11359},{},[11360,11368],{"type":55,"tag":1693,"props":11361,"children":11362},{},[11363],{"type":55,"tag":69,"props":11364,"children":11365},{},[11366],{"type":60,"value":11367},"\"passWord\" typo",{"type":55,"tag":1693,"props":11369,"children":11370},{},[11371,11373,11378,11380],{"type":60,"value":11372},"Client View uses ",{"type":55,"tag":121,"props":11374,"children":11376},{"className":11375},[],[11377],{"type":60,"value":1182},{"type":60,"value":11379}," (capital W), Component View uses ",{"type":55,"tag":121,"props":11381,"children":11383},{"className":11382},[],[11384],{"type":60,"value":1174},{"type":55,"tag":1668,"props":11386,"children":11387},{},[11388,11396],{"type":55,"tag":1693,"props":11389,"children":11390},{},[11391],{"type":55,"tag":69,"props":11392,"children":11393},{},[11394],{"type":60,"value":11395},"No HD video",{"type":55,"tag":1693,"props":11397,"children":11398},{},[11399],{"type":60,"value":11400},"Enable SharedArrayBuffer headers, check browser support",{"type":55,"tag":1668,"props":11402,"children":11403},{},[11404,11412],{"type":55,"tag":1693,"props":11405,"children":11406},{},[11407],{"type":55,"tag":69,"props":11408,"children":11409},{},[11410],{"type":60,"value":11411},"Callbacks not firing",{"type":55,"tag":1693,"props":11413,"children":11414},{},[11415,11417,11422],{"type":60,"value":11416},"Ensure ",{"type":55,"tag":121,"props":11418,"children":11420},{"className":11419},[],[11421],{"type":60,"value":5542},{"type":60,"value":11423}," called after init success",{"type":55,"tag":1668,"props":11425,"children":11426},{},[11427,11435],{"type":55,"tag":1693,"props":11428,"children":11429},{},[11430],{"type":55,"tag":69,"props":11431,"children":11432},{},[11433],{"type":60,"value":11434},"Virtual background not working",{"type":55,"tag":1693,"props":11436,"children":11437},{},[11438],{"type":60,"value":11439},"Requires SharedArrayBuffer + Chrome\u002FEdge",{"type":55,"tag":1668,"props":11441,"children":11442},{},[11443,11451],{"type":55,"tag":1693,"props":11444,"children":11445},{},[11446],{"type":55,"tag":69,"props":11447,"children":11448},{},[11449],{"type":60,"value":11450},"Screen share fails on Safari",{"type":55,"tag":1693,"props":11452,"children":11453},{},[11454],{"type":60,"value":11455},"Safari 17+ with macOS 14+ required for client view",{"type":55,"tag":63,"props":11457,"children":11458},{},[11459,11464,11466],{"type":55,"tag":69,"props":11460,"children":11461},{},[11462],{"type":60,"value":11463},"Complete troubleshooting",{"type":60,"value":11465},": ",{"type":55,"tag":1247,"props":11467,"children":11469},{"href":11468},"troubleshooting\u002Fcommon-issues.md",[11470],{"type":60,"value":11468},{"type":55,"tag":84,"props":11472,"children":11474},{"id":11473},"browser-support-matrix",[11475],{"type":60,"value":11476},"Browser Support Matrix",{"type":55,"tag":1660,"props":11478,"children":11479},{},[11480,11521],{"type":55,"tag":1664,"props":11481,"children":11482},{},[11483],{"type":55,"tag":1668,"props":11484,"children":11485},{},[11486,11491,11496,11501,11506,11511,11516],{"type":55,"tag":1672,"props":11487,"children":11488},{},[11489],{"type":60,"value":11490},"Feature",{"type":55,"tag":1672,"props":11492,"children":11493},{},[11494],{"type":60,"value":11495},"Chrome",{"type":55,"tag":1672,"props":11497,"children":11498},{},[11499],{"type":60,"value":11500},"Firefox",{"type":55,"tag":1672,"props":11502,"children":11503},{},[11504],{"type":60,"value":11505},"Safari",{"type":55,"tag":1672,"props":11507,"children":11508},{},[11509],{"type":60,"value":11510},"Edge",{"type":55,"tag":1672,"props":11512,"children":11513},{},[11514],{"type":60,"value":11515},"iOS",{"type":55,"tag":1672,"props":11517,"children":11518},{},[11519],{"type":60,"value":11520},"Android",{"type":55,"tag":1686,"props":11522,"children":11523},{},[11524,11557,11590,11623,11656],{"type":55,"tag":1668,"props":11525,"children":11526},{},[11527,11532,11537,11541,11545,11549,11553],{"type":55,"tag":1693,"props":11528,"children":11529},{},[11530],{"type":60,"value":11531},"720p (receive)",{"type":55,"tag":1693,"props":11533,"children":11534},{},[11535],{"type":60,"value":11536},"Yes",{"type":55,"tag":1693,"props":11538,"children":11539},{},[11540],{"type":60,"value":11536},{"type":55,"tag":1693,"props":11542,"children":11543},{},[11544],{"type":60,"value":11536},{"type":55,"tag":1693,"props":11546,"children":11547},{},[11548],{"type":60,"value":11536},{"type":55,"tag":1693,"props":11550,"children":11551},{},[11552],{"type":60,"value":11536},{"type":55,"tag":1693,"props":11554,"children":11555},{},[11556],{"type":60,"value":11536},{"type":55,"tag":1668,"props":11558,"children":11559},{},[11560,11565,11570,11574,11578,11582,11586],{"type":55,"tag":1693,"props":11561,"children":11562},{},[11563],{"type":60,"value":11564},"720p (send)",{"type":55,"tag":1693,"props":11566,"children":11567},{},[11568],{"type":60,"value":11569},"Yes*",{"type":55,"tag":1693,"props":11571,"children":11572},{},[11573],{"type":60,"value":11569},{"type":55,"tag":1693,"props":11575,"children":11576},{},[11577],{"type":60,"value":11569},{"type":55,"tag":1693,"props":11579,"children":11580},{},[11581],{"type":60,"value":11569},{"type":55,"tag":1693,"props":11583,"children":11584},{},[11585],{"type":60,"value":11569},{"type":55,"tag":1693,"props":11587,"children":11588},{},[11589],{"type":60,"value":11569},{"type":55,"tag":1668,"props":11591,"children":11592},{},[11593,11598,11602,11606,11611,11615,11619],{"type":55,"tag":1693,"props":11594,"children":11595},{},[11596],{"type":60,"value":11597},"Virtual background",{"type":55,"tag":1693,"props":11599,"children":11600},{},[11601],{"type":60,"value":11536},{"type":55,"tag":1693,"props":11603,"children":11604},{},[11605],{"type":60,"value":11536},{"type":55,"tag":1693,"props":11607,"children":11608},{},[11609],{"type":60,"value":11610},"No",{"type":55,"tag":1693,"props":11612,"children":11613},{},[11614],{"type":60,"value":11536},{"type":55,"tag":1693,"props":11616,"children":11617},{},[11618],{"type":60,"value":11610},{"type":55,"tag":1693,"props":11620,"children":11621},{},[11622],{"type":60,"value":11610},{"type":55,"tag":1668,"props":11624,"children":11625},{},[11626,11631,11635,11639,11644,11648,11652],{"type":55,"tag":1693,"props":11627,"children":11628},{},[11629],{"type":60,"value":11630},"Screen share (send)",{"type":55,"tag":1693,"props":11632,"children":11633},{},[11634],{"type":60,"value":11536},{"type":55,"tag":1693,"props":11636,"children":11637},{},[11638],{"type":60,"value":11536},{"type":55,"tag":1693,"props":11640,"children":11641},{},[11642],{"type":60,"value":11643},"Safari 17+",{"type":55,"tag":1693,"props":11645,"children":11646},{},[11647],{"type":60,"value":11536},{"type":55,"tag":1693,"props":11649,"children":11650},{},[11651],{"type":60,"value":11610},{"type":55,"tag":1693,"props":11653,"children":11654},{},[11655],{"type":60,"value":11610},{"type":55,"tag":1668,"props":11657,"children":11658},{},[11659,11663,11667,11671,11676,11680,11684],{"type":55,"tag":1693,"props":11660,"children":11661},{},[11662],{"type":60,"value":10670},{"type":55,"tag":1693,"props":11664,"children":11665},{},[11666],{"type":60,"value":11536},{"type":55,"tag":1693,"props":11668,"children":11669},{},[11670],{"type":60,"value":11536},{"type":55,"tag":1693,"props":11672,"children":11673},{},[11674],{"type":60,"value":11675},"Yes**",{"type":55,"tag":1693,"props":11677,"children":11678},{},[11679],{"type":60,"value":11536},{"type":55,"tag":1693,"props":11681,"children":11682},{},[11683],{"type":60,"value":11536},{"type":55,"tag":1693,"props":11685,"children":11686},{},[11687],{"type":60,"value":11536},{"type":55,"tag":63,"props":11689,"children":11690},{},[11691],{"type":60,"value":11692},"*Requires SharedArrayBuffer\n**Safari 17+ with macOS Sonoma",{"type":55,"tag":63,"props":11694,"children":11695},{},[11696,11697,11701],{"type":60,"value":1631},{"type":55,"tag":1247,"props":11698,"children":11699},{"href":1391},[11700],{"type":60,"value":1391},{"type":60,"value":11702}," for complete matrix.",{"type":55,"tag":84,"props":11704,"children":11706},{"id":11705},"authorization-requirements-2026-update",[11707],{"type":60,"value":11708},"Authorization Requirements (2026 Update)",{"type":55,"tag":1488,"props":11710,"children":11711},{},[11712],{"type":55,"tag":63,"props":11713,"children":11714},{},[11715,11720,11722,11727],{"type":55,"tag":69,"props":11716,"children":11717},{},[11718],{"type":60,"value":11719},"IMPORTANT",{"type":60,"value":11721},": Beginning ",{"type":55,"tag":69,"props":11723,"children":11724},{},[11725],{"type":60,"value":11726},"March 2, 2026",{"type":60,"value":11728},", apps joining meetings outside their account must be authorized.",{"type":55,"tag":1912,"props":11730,"children":11732},{"id":11731},"options",[11733],{"type":60,"value":11734},"Options",{"type":55,"tag":1268,"props":11736,"children":11737},{},[11738,11822],{"type":55,"tag":1154,"props":11739,"children":11740},{},[11741,11746,11748],{"type":55,"tag":69,"props":11742,"children":11743},{},[11744],{"type":60,"value":11745},"App Privilege Token (OBF)",{"type":60,"value":11747}," - Recommended for bots",{"type":55,"tag":113,"props":11749,"children":11751},{"className":2423,"code":11750,"language":2425,"meta":118,"style":118},"ZoomMtg.join({\n  ...\n  obfToken: 'your-app-privilege-token'\n});\n",[11752],{"type":55,"tag":121,"props":11753,"children":11754},{"__ignoreMap":118},[11755,11778,11786,11807],{"type":55,"tag":140,"props":11756,"children":11757},{"class":142,"line":143},[11758,11762,11766,11770,11774],{"type":55,"tag":140,"props":11759,"children":11760},{"style":153},[11761],{"type":60,"value":1709},{"type":55,"tag":140,"props":11763,"children":11764},{"style":164},[11765],{"type":60,"value":101},{"type":55,"tag":140,"props":11767,"children":11768},{"style":225},[11769],{"type":60,"value":1045},{"type":55,"tag":140,"props":11771,"children":11772},{"style":153},[11773],{"type":60,"value":274},{"type":55,"tag":140,"props":11775,"children":11776},{"style":164},[11777],{"type":60,"value":778},{"type":55,"tag":140,"props":11779,"children":11780},{"class":142,"line":186},[11781],{"type":55,"tag":140,"props":11782,"children":11783},{"style":164},[11784],{"type":60,"value":11785},"  ...\n",{"type":55,"tag":140,"props":11787,"children":11788},{"class":142,"line":196},[11789,11794,11798,11803],{"type":55,"tag":140,"props":11790,"children":11791},{"style":153},[11792],{"type":60,"value":11793},"  obfToken: ",{"type":55,"tag":140,"props":11795,"children":11796},{"style":164},[11797],{"type":60,"value":178},{"type":55,"tag":140,"props":11799,"children":11800},{"style":170},[11801],{"type":60,"value":11802},"your-app-privilege-token",{"type":55,"tag":140,"props":11804,"children":11805},{"style":164},[11806],{"type":60,"value":11116},{"type":55,"tag":140,"props":11808,"children":11809},{"class":142,"line":240},[11810,11814,11818],{"type":55,"tag":140,"props":11811,"children":11812},{"style":164},[11813],{"type":60,"value":3597},{"type":55,"tag":140,"props":11815,"children":11816},{"style":153},[11817],{"type":60,"value":331},{"type":55,"tag":140,"props":11819,"children":11820},{"style":164},[11821],{"type":60,"value":183},{"type":55,"tag":1154,"props":11823,"children":11824},{},[11825,11830,11832],{"type":55,"tag":69,"props":11826,"children":11827},{},[11828],{"type":60,"value":11829},"ZAK Token",{"type":60,"value":11831}," - For host operations",{"type":55,"tag":113,"props":11833,"children":11835},{"className":2423,"code":11834,"language":2425,"meta":118,"style":118},"ZoomMtg.join({\n  ...\n  zak: 'host-zak-token'\n});\n",[11836],{"type":55,"tag":121,"props":11837,"children":11838},{"__ignoreMap":118},[11839,11862,11869,11890],{"type":55,"tag":140,"props":11840,"children":11841},{"class":142,"line":143},[11842,11846,11850,11854,11858],{"type":55,"tag":140,"props":11843,"children":11844},{"style":153},[11845],{"type":60,"value":1709},{"type":55,"tag":140,"props":11847,"children":11848},{"style":164},[11849],{"type":60,"value":101},{"type":55,"tag":140,"props":11851,"children":11852},{"style":225},[11853],{"type":60,"value":1045},{"type":55,"tag":140,"props":11855,"children":11856},{"style":153},[11857],{"type":60,"value":274},{"type":55,"tag":140,"props":11859,"children":11860},{"style":164},[11861],{"type":60,"value":778},{"type":55,"tag":140,"props":11863,"children":11864},{"class":142,"line":186},[11865],{"type":55,"tag":140,"props":11866,"children":11867},{"style":164},[11868],{"type":60,"value":11785},{"type":55,"tag":140,"props":11870,"children":11871},{"class":142,"line":196},[11872,11877,11881,11886],{"type":55,"tag":140,"props":11873,"children":11874},{"style":153},[11875],{"type":60,"value":11876},"  zak: ",{"type":55,"tag":140,"props":11878,"children":11879},{"style":164},[11880],{"type":60,"value":178},{"type":55,"tag":140,"props":11882,"children":11883},{"style":170},[11884],{"type":60,"value":11885},"host-zak-token",{"type":55,"tag":140,"props":11887,"children":11888},{"style":164},[11889],{"type":60,"value":11116},{"type":55,"tag":140,"props":11891,"children":11892},{"class":142,"line":240},[11893,11897,11901],{"type":55,"tag":140,"props":11894,"children":11895},{"style":164},[11896],{"type":60,"value":3597},{"type":55,"tag":140,"props":11898,"children":11899},{"style":153},[11900],{"type":60,"value":331},{"type":55,"tag":140,"props":11902,"children":11903},{"style":164},[11904],{"type":60,"value":183},{"type":55,"tag":84,"props":11906,"children":11908},{"id":11907},"zoom-for-government-zfg",[11909],{"type":60,"value":11910},"Zoom for Government (ZFG)",{"type":55,"tag":1912,"props":11912,"children":11914},{"id":11913},"option-1-zfg-specific-npm-package",[11915],{"type":60,"value":11916},"Option 1: ZFG-specific NPM Package",{"type":55,"tag":113,"props":11918,"children":11921},{"className":11919,"code":11920,"language":730,"meta":118,"style":118},"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",[11922],{"type":55,"tag":121,"props":11923,"children":11924},{"__ignoreMap":118},[11925,11932,11957,11992,11999],{"type":55,"tag":140,"props":11926,"children":11927},{"class":142,"line":143},[11928],{"type":55,"tag":140,"props":11929,"children":11930},{"style":164},[11931],{"type":60,"value":778},{"type":55,"tag":140,"props":11933,"children":11934},{"class":142,"line":186},[11935,11940,11945,11949,11953],{"type":55,"tag":140,"props":11936,"children":11937},{"style":164},[11938],{"type":60,"value":11939},"  \"",{"type":55,"tag":140,"props":11941,"children":11942},{"style":200},[11943],{"type":60,"value":11944},"dependencies",{"type":55,"tag":140,"props":11946,"children":11947},{"style":164},[11948],{"type":60,"value":2068},{"type":55,"tag":140,"props":11950,"children":11951},{"style":164},[11952],{"type":60,"value":285},{"type":55,"tag":140,"props":11954,"children":11955},{"style":164},[11956],{"type":60,"value":336},{"type":55,"tag":140,"props":11958,"children":11959},{"class":142,"line":196},[11960,11965,11969,11973,11977,11982,11987],{"type":55,"tag":140,"props":11961,"children":11962},{"style":164},[11963],{"type":60,"value":11964},"    \"",{"type":55,"tag":140,"props":11966,"children":11967},{"style":288},[11968],{"type":60,"value":2463},{"type":55,"tag":140,"props":11970,"children":11971},{"style":164},[11972],{"type":60,"value":2068},{"type":55,"tag":140,"props":11974,"children":11975},{"style":164},[11976],{"type":60,"value":285},{"type":55,"tag":140,"props":11978,"children":11979},{"style":164},[11980],{"type":60,"value":11981}," \"",{"type":55,"tag":140,"props":11983,"children":11984},{"style":170},[11985],{"type":60,"value":11986},"3.11.2-zfg",{"type":55,"tag":140,"props":11988,"children":11989},{"style":164},[11990],{"type":60,"value":11991},"\"\n",{"type":55,"tag":140,"props":11993,"children":11994},{"class":142,"line":240},[11995],{"type":55,"tag":140,"props":11996,"children":11997},{"style":164},[11998],{"type":60,"value":4272},{"type":55,"tag":140,"props":12000,"children":12001},{"class":142,"line":248},[12002],{"type":55,"tag":140,"props":12003,"children":12004},{"style":164},[12005],{"type":60,"value":1143},{"type":55,"tag":1912,"props":12007,"children":12009},{"id":12008},"option-2-configure-zfg-endpoints",[12010],{"type":60,"value":12011},"Option 2: Configure ZFG Endpoints",{"type":55,"tag":63,"props":12013,"children":12014},{},[12015],{"type":55,"tag":69,"props":12016,"children":12017},{},[12018],{"type":60,"value":12019},"Client View:",{"type":55,"tag":113,"props":12021,"children":12023},{"className":2423,"code":12022,"language":2425,"meta":118,"style":118},"ZoomMtg.setZoomJSLib('https:\u002F\u002Fsource.zoomgov.com\u002F{VERSION}\u002Flib', '\u002Fav');\nZoomMtg.init({\n  webEndpoint: 'www.zoomgov.com',\n  ...\n});\n",[12024],{"type":55,"tag":121,"props":12025,"children":12026},{"__ignoreMap":118},[12027,12085,12108,12136,12143],{"type":55,"tag":140,"props":12028,"children":12029},{"class":142,"line":143},[12030,12034,12038,12043,12047,12051,12056,12060,12064,12068,12073,12077,12081],{"type":55,"tag":140,"props":12031,"children":12032},{"style":153},[12033],{"type":60,"value":1709},{"type":55,"tag":140,"props":12035,"children":12036},{"style":164},[12037],{"type":60,"value":101},{"type":55,"tag":140,"props":12039,"children":12040},{"style":225},[12041],{"type":60,"value":12042},"setZoomJSLib",{"type":55,"tag":140,"props":12044,"children":12045},{"style":153},[12046],{"type":60,"value":274},{"type":55,"tag":140,"props":12048,"children":12049},{"style":164},[12050],{"type":60,"value":178},{"type":55,"tag":140,"props":12052,"children":12053},{"style":170},[12054],{"type":60,"value":12055},"https:\u002F\u002Fsource.zoomgov.com\u002F{VERSION}\u002Flib",{"type":55,"tag":140,"props":12057,"children":12058},{"style":164},[12059],{"type":60,"value":178},{"type":55,"tag":140,"props":12061,"children":12062},{"style":164},[12063],{"type":60,"value":296},{"type":55,"tag":140,"props":12065,"children":12066},{"style":164},[12067],{"type":60,"value":167},{"type":55,"tag":140,"props":12069,"children":12070},{"style":170},[12071],{"type":60,"value":12072},"\u002Fav",{"type":55,"tag":140,"props":12074,"children":12075},{"style":164},[12076],{"type":60,"value":178},{"type":55,"tag":140,"props":12078,"children":12079},{"style":153},[12080],{"type":60,"value":331},{"type":55,"tag":140,"props":12082,"children":12083},{"style":164},[12084],{"type":60,"value":183},{"type":55,"tag":140,"props":12086,"children":12087},{"class":142,"line":186},[12088,12092,12096,12100,12104],{"type":55,"tag":140,"props":12089,"children":12090},{"style":153},[12091],{"type":60,"value":1709},{"type":55,"tag":140,"props":12093,"children":12094},{"style":164},[12095],{"type":60,"value":101},{"type":55,"tag":140,"props":12097,"children":12098},{"style":225},[12099],{"type":60,"value":769},{"type":55,"tag":140,"props":12101,"children":12102},{"style":153},[12103],{"type":60,"value":274},{"type":55,"tag":140,"props":12105,"children":12106},{"style":164},[12107],{"type":60,"value":778},{"type":55,"tag":140,"props":12109,"children":12110},{"class":142,"line":196},[12111,12115,12119,12123,12128,12132],{"type":55,"tag":140,"props":12112,"children":12113},{"style":368},[12114],{"type":60,"value":9121},{"type":55,"tag":140,"props":12116,"children":12117},{"style":164},[12118],{"type":60,"value":285},{"type":55,"tag":140,"props":12120,"children":12121},{"style":164},[12122],{"type":60,"value":167},{"type":55,"tag":140,"props":12124,"children":12125},{"style":170},[12126],{"type":60,"value":12127},"www.zoomgov.com",{"type":55,"tag":140,"props":12129,"children":12130},{"style":164},[12131],{"type":60,"value":178},{"type":55,"tag":140,"props":12133,"children":12134},{"style":164},[12135],{"type":60,"value":422},{"type":55,"tag":140,"props":12137,"children":12138},{"class":142,"line":240},[12139],{"type":55,"tag":140,"props":12140,"children":12141},{"style":164},[12142],{"type":60,"value":11785},{"type":55,"tag":140,"props":12144,"children":12145},{"class":142,"line":248},[12146,12150,12154],{"type":55,"tag":140,"props":12147,"children":12148},{"style":164},[12149],{"type":60,"value":3597},{"type":55,"tag":140,"props":12151,"children":12152},{"style":153},[12153],{"type":60,"value":331},{"type":55,"tag":140,"props":12155,"children":12156},{"style":164},[12157],{"type":60,"value":183},{"type":55,"tag":63,"props":12159,"children":12160},{},[12161],{"type":55,"tag":69,"props":12162,"children":12163},{},[12164],{"type":60,"value":12165},"Component View:",{"type":55,"tag":113,"props":12167,"children":12169},{"className":2423,"code":12168,"language":2425,"meta":118,"style":118},"await client.init({\n  webEndpoint: 'www.zoomgov.com',\n  assetPath: 'https:\u002F\u002Fsource.zoomgov.com\u002F{VERSION}\u002Flib\u002Fav',\n  ...\n});\n",[12170],{"type":55,"tag":121,"props":12171,"children":12172},{"__ignoreMap":118},[12173,12200,12227,12255,12262],{"type":55,"tag":140,"props":12174,"children":12175},{"class":142,"line":143},[12176,12180,12184,12188,12192,12196],{"type":55,"tag":140,"props":12177,"children":12178},{"style":147},[12179],{"type":60,"value":8350},{"type":55,"tag":140,"props":12181,"children":12182},{"style":153},[12183],{"type":60,"value":760},{"type":55,"tag":140,"props":12185,"children":12186},{"style":164},[12187],{"type":60,"value":101},{"type":55,"tag":140,"props":12189,"children":12190},{"style":225},[12191],{"type":60,"value":769},{"type":55,"tag":140,"props":12193,"children":12194},{"style":153},[12195],{"type":60,"value":274},{"type":55,"tag":140,"props":12197,"children":12198},{"style":164},[12199],{"type":60,"value":778},{"type":55,"tag":140,"props":12201,"children":12202},{"class":142,"line":186},[12203,12207,12211,12215,12219,12223],{"type":55,"tag":140,"props":12204,"children":12205},{"style":368},[12206],{"type":60,"value":9121},{"type":55,"tag":140,"props":12208,"children":12209},{"style":164},[12210],{"type":60,"value":285},{"type":55,"tag":140,"props":12212,"children":12213},{"style":164},[12214],{"type":60,"value":167},{"type":55,"tag":140,"props":12216,"children":12217},{"style":170},[12218],{"type":60,"value":12127},{"type":55,"tag":140,"props":12220,"children":12221},{"style":164},[12222],{"type":60,"value":178},{"type":55,"tag":140,"props":12224,"children":12225},{"style":164},[12226],{"type":60,"value":422},{"type":55,"tag":140,"props":12228,"children":12229},{"class":142,"line":196},[12230,12234,12238,12242,12247,12251],{"type":55,"tag":140,"props":12231,"children":12232},{"style":368},[12233],{"type":60,"value":9141},{"type":55,"tag":140,"props":12235,"children":12236},{"style":164},[12237],{"type":60,"value":285},{"type":55,"tag":140,"props":12239,"children":12240},{"style":164},[12241],{"type":60,"value":167},{"type":55,"tag":140,"props":12243,"children":12244},{"style":170},[12245],{"type":60,"value":12246},"https:\u002F\u002Fsource.zoomgov.com\u002F{VERSION}\u002Flib\u002Fav",{"type":55,"tag":140,"props":12248,"children":12249},{"style":164},[12250],{"type":60,"value":178},{"type":55,"tag":140,"props":12252,"children":12253},{"style":164},[12254],{"type":60,"value":422},{"type":55,"tag":140,"props":12256,"children":12257},{"class":142,"line":240},[12258],{"type":55,"tag":140,"props":12259,"children":12260},{"style":164},[12261],{"type":60,"value":11785},{"type":55,"tag":140,"props":12263,"children":12264},{"class":142,"line":248},[12265,12269,12273],{"type":55,"tag":140,"props":12266,"children":12267},{"style":164},[12268],{"type":60,"value":3597},{"type":55,"tag":140,"props":12270,"children":12271},{"style":153},[12272],{"type":60,"value":331},{"type":55,"tag":140,"props":12274,"children":12275},{"style":164},[12276],{"type":60,"value":183},{"type":55,"tag":84,"props":12278,"children":12280},{"id":12279},"china-cdn",[12281],{"type":60,"value":12282},"China CDN",{"type":55,"tag":113,"props":12284,"children":12286},{"className":2423,"code":12285,"language":2425,"meta":118,"style":118},"\u002F\u002F Set before preLoadWasm()\nZoomMtg.setZoomJSLib('https:\u002F\u002Fjssdk.zoomus.cn\u002F{VERSION}\u002Flib', '\u002Fav');\n",[12287],{"type":55,"tag":121,"props":12288,"children":12289},{"__ignoreMap":118},[12290,12298],{"type":55,"tag":140,"props":12291,"children":12292},{"class":142,"line":143},[12293],{"type":55,"tag":140,"props":12294,"children":12295},{"style":2038},[12296],{"type":60,"value":12297},"\u002F\u002F Set before preLoadWasm()\n",{"type":55,"tag":140,"props":12299,"children":12300},{"class":142,"line":186},[12301,12305,12309,12313,12317,12321,12326,12330,12334,12338,12342,12346,12350],{"type":55,"tag":140,"props":12302,"children":12303},{"style":153},[12304],{"type":60,"value":1709},{"type":55,"tag":140,"props":12306,"children":12307},{"style":164},[12308],{"type":60,"value":101},{"type":55,"tag":140,"props":12310,"children":12311},{"style":225},[12312],{"type":60,"value":12042},{"type":55,"tag":140,"props":12314,"children":12315},{"style":153},[12316],{"type":60,"value":274},{"type":55,"tag":140,"props":12318,"children":12319},{"style":164},[12320],{"type":60,"value":178},{"type":55,"tag":140,"props":12322,"children":12323},{"style":170},[12324],{"type":60,"value":12325},"https:\u002F\u002Fjssdk.zoomus.cn\u002F{VERSION}\u002Flib",{"type":55,"tag":140,"props":12327,"children":12328},{"style":164},[12329],{"type":60,"value":178},{"type":55,"tag":140,"props":12331,"children":12332},{"style":164},[12333],{"type":60,"value":296},{"type":55,"tag":140,"props":12335,"children":12336},{"style":164},[12337],{"type":60,"value":167},{"type":55,"tag":140,"props":12339,"children":12340},{"style":170},[12341],{"type":60,"value":12072},{"type":55,"tag":140,"props":12343,"children":12344},{"style":164},[12345],{"type":60,"value":178},{"type":55,"tag":140,"props":12347,"children":12348},{"style":153},[12349],{"type":60,"value":331},{"type":55,"tag":140,"props":12351,"children":12352},{"style":164},[12353],{"type":60,"value":183},{"type":55,"tag":84,"props":12355,"children":12357},{"id":12356},"react-integration",[12358],{"type":60,"value":12359},"React Integration",{"type":55,"tag":1912,"props":12361,"children":12363},{"id":12362},"official-pattern-from-zoommeetingsdk-react-sample",[12364],{"type":60,"value":12365},"Official Pattern (from zoom\u002Fmeetingsdk-react-sample)",{"type":55,"tag":63,"props":12367,"children":12368},{},[12369,12371,12376],{"type":60,"value":12370},"The official React sample uses ",{"type":55,"tag":69,"props":12372,"children":12373},{},[12374],{"type":60,"value":12375},"imperative initialization",{"type":60,"value":12377}," rather than React hooks:",{"type":55,"tag":113,"props":12379,"children":12383},{"className":12380,"code":12381,"language":12382,"meta":118,"style":118},"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",[12384],{"type":55,"tag":121,"props":12385,"children":12386},{"__ignoreMap":118},[12387,12426,12433,12441,12464,12487,12494,12514,12566,12590,12614,12637,12669,12676,12708,12750,12778,12826,12858,12869,12881,12896,12911,12950,12983,12991,12998,13041,13117,13124,13148,13186,13205,13224,13248,13272,13284,13296,13308,13320,13393,13465,13481,13489,13561,13576,13583,13590,13603,13654,13666],{"type":55,"tag":140,"props":12388,"children":12389},{"class":142,"line":143},[12390,12394,12398,12402,12406,12410,12414,12418,12422],{"type":55,"tag":140,"props":12391,"children":12392},{"style":147},[12393],{"type":60,"value":150},{"type":55,"tag":140,"props":12395,"children":12396},{"style":164},[12397],{"type":60,"value":440},{"type":55,"tag":140,"props":12399,"children":12400},{"style":153},[12401],{"type":60,"value":2445},{"type":55,"tag":140,"props":12403,"children":12404},{"style":164},[12405],{"type":60,"value":540},{"type":55,"tag":140,"props":12407,"children":12408},{"style":147},[12409],{"type":60,"value":2454},{"type":55,"tag":140,"props":12411,"children":12412},{"style":164},[12413],{"type":60,"value":167},{"type":55,"tag":140,"props":12415,"children":12416},{"style":170},[12417],{"type":60,"value":2463},{"type":55,"tag":140,"props":12419,"children":12420},{"style":164},[12421],{"type":60,"value":178},{"type":55,"tag":140,"props":12423,"children":12424},{"style":164},[12425],{"type":60,"value":183},{"type":55,"tag":140,"props":12427,"children":12428},{"class":142,"line":186},[12429],{"type":55,"tag":140,"props":12430,"children":12431},{"emptyLinePlaceholder":190},[12432],{"type":60,"value":193},{"type":55,"tag":140,"props":12434,"children":12435},{"class":142,"line":196},[12436],{"type":55,"tag":140,"props":12437,"children":12438},{"style":2038},[12439],{"type":60,"value":12440},"\u002F\u002F Preload at module level (outside component)\n",{"type":55,"tag":140,"props":12442,"children":12443},{"class":142,"line":240},[12444,12448,12452,12456,12460],{"type":55,"tag":140,"props":12445,"children":12446},{"style":153},[12447],{"type":60,"value":1709},{"type":55,"tag":140,"props":12449,"children":12450},{"style":164},[12451],{"type":60,"value":101},{"type":55,"tag":140,"props":12453,"children":12454},{"style":225},[12455],{"type":60,"value":2577},{"type":55,"tag":140,"props":12457,"children":12458},{"style":153},[12459],{"type":60,"value":233},{"type":55,"tag":140,"props":12461,"children":12462},{"style":164},[12463],{"type":60,"value":183},{"type":55,"tag":140,"props":12465,"children":12466},{"class":142,"line":248},[12467,12471,12475,12479,12483],{"type":55,"tag":140,"props":12468,"children":12469},{"style":153},[12470],{"type":60,"value":1709},{"type":55,"tag":140,"props":12472,"children":12473},{"style":164},[12474],{"type":60,"value":101},{"type":55,"tag":140,"props":12476,"children":12477},{"style":225},[12478],{"type":60,"value":2601},{"type":55,"tag":140,"props":12480,"children":12481},{"style":153},[12482],{"type":60,"value":233},{"type":55,"tag":140,"props":12484,"children":12485},{"style":164},[12486],{"type":60,"value":183},{"type":55,"tag":140,"props":12488,"children":12489},{"class":142,"line":339},[12490],{"type":55,"tag":140,"props":12491,"children":12492},{"emptyLinePlaceholder":190},[12493],{"type":60,"value":193},{"type":55,"tag":140,"props":12495,"children":12496},{"class":142,"line":394},[12497,12501,12506,12510],{"type":55,"tag":140,"props":12498,"children":12499},{"style":200},[12500],{"type":60,"value":10744},{"type":55,"tag":140,"props":12502,"children":12503},{"style":225},[12504],{"type":60,"value":12505}," App",{"type":55,"tag":140,"props":12507,"children":12508},{"style":164},[12509],{"type":60,"value":233},{"type":55,"tag":140,"props":12511,"children":12512},{"style":164},[12513],{"type":60,"value":336},{"type":55,"tag":140,"props":12515,"children":12516},{"class":142,"line":425},[12517,12521,12526,12530,12535,12539,12544,12548,12553,12557,12562],{"type":55,"tag":140,"props":12518,"children":12519},{"style":200},[12520],{"type":60,"value":345},{"type":55,"tag":140,"props":12522,"children":12523},{"style":153},[12524],{"type":60,"value":12525}," authEndpoint",{"type":55,"tag":140,"props":12527,"children":12528},{"style":164},[12529],{"type":60,"value":355},{"type":55,"tag":140,"props":12531,"children":12532},{"style":147},[12533],{"type":60,"value":12534}," import",{"type":55,"tag":140,"props":12536,"children":12537},{"style":164},[12538],{"type":60,"value":101},{"type":55,"tag":140,"props":12540,"children":12541},{"style":153},[12542],{"type":60,"value":12543},"meta",{"type":55,"tag":140,"props":12545,"children":12546},{"style":164},[12547],{"type":60,"value":101},{"type":55,"tag":140,"props":12549,"children":12550},{"style":153},[12551],{"type":60,"value":12552},"env",{"type":55,"tag":140,"props":12554,"children":12555},{"style":164},[12556],{"type":60,"value":101},{"type":55,"tag":140,"props":12558,"children":12559},{"style":153},[12560],{"type":60,"value":12561},"VITE_AUTH_ENDPOINT",{"type":55,"tag":140,"props":12563,"children":12564},{"style":164},[12565],{"type":60,"value":183},{"type":55,"tag":140,"props":12567,"children":12568},{"class":142,"line":478},[12569,12573,12577,12581,12586],{"type":55,"tag":140,"props":12570,"children":12571},{"style":200},[12572],{"type":60,"value":345},{"type":55,"tag":140,"props":12574,"children":12575},{"style":153},[12576],{"type":60,"value":516},{"type":55,"tag":140,"props":12578,"children":12579},{"style":164},[12580],{"type":60,"value":355},{"type":55,"tag":140,"props":12582,"children":12583},{"style":164},[12584],{"type":60,"value":12585}," ''",{"type":55,"tag":140,"props":12587,"children":12588},{"style":164},[12589],{"type":60,"value":183},{"type":55,"tag":140,"props":12591,"children":12592},{"class":142,"line":551},[12593,12597,12602,12606,12610],{"type":55,"tag":140,"props":12594,"children":12595},{"style":200},[12596],{"type":60,"value":345},{"type":55,"tag":140,"props":12598,"children":12599},{"style":153},[12600],{"type":60,"value":12601}," passWord",{"type":55,"tag":140,"props":12603,"children":12604},{"style":164},[12605],{"type":60,"value":355},{"type":55,"tag":140,"props":12607,"children":12608},{"style":164},[12609],{"type":60,"value":12585},{"type":55,"tag":140,"props":12611,"children":12612},{"style":164},[12613],{"type":60,"value":183},{"type":55,"tag":140,"props":12615,"children":12616},{"class":142,"line":568},[12617,12621,12625,12629,12633],{"type":55,"tag":140,"props":12618,"children":12619},{"style":200},[12620],{"type":60,"value":345},{"type":55,"tag":140,"props":12622,"children":12623},{"style":153},[12624],{"type":60,"value":525},{"type":55,"tag":140,"props":12626,"children":12627},{"style":164},[12628],{"type":60,"value":355},{"type":55,"tag":140,"props":12630,"children":12631},{"style":532},[12632],{"type":60,"value":535},{"type":55,"tag":140,"props":12634,"children":12635},{"style":164},[12636],{"type":60,"value":183},{"type":55,"tag":140,"props":12638,"children":12639},{"class":142,"line":576},[12640,12644,12648,12652,12656,12661,12665],{"type":55,"tag":140,"props":12641,"children":12642},{"style":200},[12643],{"type":60,"value":345},{"type":55,"tag":140,"props":12645,"children":12646},{"style":153},[12647],{"type":60,"value":301},{"type":55,"tag":140,"props":12649,"children":12650},{"style":164},[12651],{"type":60,"value":355},{"type":55,"tag":140,"props":12653,"children":12654},{"style":164},[12655],{"type":60,"value":167},{"type":55,"tag":140,"props":12657,"children":12658},{"style":170},[12659],{"type":60,"value":12660},"React User",{"type":55,"tag":140,"props":12662,"children":12663},{"style":164},[12664],{"type":60,"value":178},{"type":55,"tag":140,"props":12666,"children":12667},{"style":164},[12668],{"type":60,"value":183},{"type":55,"tag":140,"props":12670,"children":12671},{"class":142,"line":674},[12672],{"type":55,"tag":140,"props":12673,"children":12674},{"emptyLinePlaceholder":190},[12675],{"type":60,"value":193},{"type":55,"tag":140,"props":12677,"children":12678},{"class":142,"line":682},[12679,12683,12688,12692,12696,12700,12704],{"type":55,"tag":140,"props":12680,"children":12681},{"style":200},[12682],{"type":60,"value":345},{"type":55,"tag":140,"props":12684,"children":12685},{"style":153},[12686],{"type":60,"value":12687}," getSignature",{"type":55,"tag":140,"props":12689,"children":12690},{"style":164},[12691],{"type":60,"value":355},{"type":55,"tag":140,"props":12693,"children":12694},{"style":200},[12695],{"type":60,"value":259},{"type":55,"tag":140,"props":12697,"children":12698},{"style":164},[12699],{"type":60,"value":2922},{"type":55,"tag":140,"props":12701,"children":12702},{"style":200},[12703],{"type":60,"value":2710},{"type":55,"tag":140,"props":12705,"children":12706},{"style":164},[12707],{"type":60,"value":336},{"type":55,"tag":140,"props":12709,"children":12710},{"class":142,"line":741},[12711,12716,12721,12725,12729,12733,12737,12742,12746],{"type":55,"tag":140,"props":12712,"children":12713},{"style":200},[12714],{"type":60,"value":12715},"    const",{"type":55,"tag":140,"props":12717,"children":12718},{"style":153},[12719],{"type":60,"value":12720}," response",{"type":55,"tag":140,"props":12722,"children":12723},{"style":164},[12724],{"type":60,"value":355},{"type":55,"tag":140,"props":12726,"children":12727},{"style":147},[12728],{"type":60,"value":360},{"type":55,"tag":140,"props":12730,"children":12731},{"style":225},[12732],{"type":60,"value":365},{"type":55,"tag":140,"props":12734,"children":12735},{"style":368},[12736],{"type":60,"value":274},{"type":55,"tag":140,"props":12738,"children":12739},{"style":153},[12740],{"type":60,"value":12741},"authEndpoint",{"type":55,"tag":140,"props":12743,"children":12744},{"style":164},[12745],{"type":60,"value":296},{"type":55,"tag":140,"props":12747,"children":12748},{"style":164},[12749],{"type":60,"value":336},{"type":55,"tag":140,"props":12751,"children":12752},{"class":142,"line":749},[12753,12758,12762,12766,12770,12774],{"type":55,"tag":140,"props":12754,"children":12755},{"style":368},[12756],{"type":60,"value":12757},"      method",{"type":55,"tag":140,"props":12759,"children":12760},{"style":164},[12761],{"type":60,"value":285},{"type":55,"tag":140,"props":12763,"children":12764},{"style":164},[12765],{"type":60,"value":167},{"type":55,"tag":140,"props":12767,"children":12768},{"style":170},[12769],{"type":60,"value":413},{"type":55,"tag":140,"props":12771,"children":12772},{"style":164},[12773],{"type":60,"value":178},{"type":55,"tag":140,"props":12775,"children":12776},{"style":164},[12777],{"type":60,"value":422},{"type":55,"tag":140,"props":12779,"children":12780},{"class":142,"line":781},[12781,12786,12790,12794,12798,12802,12806,12810,12814,12818,12822],{"type":55,"tag":140,"props":12782,"children":12783},{"style":368},[12784],{"type":60,"value":12785},"      headers",{"type":55,"tag":140,"props":12787,"children":12788},{"style":164},[12789],{"type":60,"value":285},{"type":55,"tag":140,"props":12791,"children":12792},{"style":164},[12793],{"type":60,"value":440},{"type":55,"tag":140,"props":12795,"children":12796},{"style":164},[12797],{"type":60,"value":167},{"type":55,"tag":140,"props":12799,"children":12800},{"style":368},[12801],{"type":60,"value":449},{"type":55,"tag":140,"props":12803,"children":12804},{"style":164},[12805],{"type":60,"value":178},{"type":55,"tag":140,"props":12807,"children":12808},{"style":164},[12809],{"type":60,"value":285},{"type":55,"tag":140,"props":12811,"children":12812},{"style":164},[12813],{"type":60,"value":167},{"type":55,"tag":140,"props":12815,"children":12816},{"style":170},[12817],{"type":60,"value":466},{"type":55,"tag":140,"props":12819,"children":12820},{"style":164},[12821],{"type":60,"value":178},{"type":55,"tag":140,"props":12823,"children":12824},{"style":164},[12825],{"type":60,"value":475},{"type":55,"tag":140,"props":12827,"children":12828},{"class":142,"line":834},[12829,12834,12838,12842,12846,12850,12854],{"type":55,"tag":140,"props":12830,"children":12831},{"style":368},[12832],{"type":60,"value":12833},"      body",{"type":55,"tag":140,"props":12835,"children":12836},{"style":164},[12837],{"type":60,"value":285},{"type":55,"tag":140,"props":12839,"children":12840},{"style":153},[12841],{"type":60,"value":493},{"type":55,"tag":140,"props":12843,"children":12844},{"style":164},[12845],{"type":60,"value":101},{"type":55,"tag":140,"props":12847,"children":12848},{"style":225},[12849],{"type":60,"value":502},{"type":55,"tag":140,"props":12851,"children":12852},{"style":368},[12853],{"type":60,"value":274},{"type":55,"tag":140,"props":12855,"children":12856},{"style":164},[12857],{"type":60,"value":778},{"type":55,"tag":140,"props":12859,"children":12860},{"class":142,"line":864},[12861,12865],{"type":55,"tag":140,"props":12862,"children":12863},{"style":153},[12864],{"type":60,"value":3003},{"type":55,"tag":140,"props":12866,"children":12867},{"style":164},[12868],{"type":60,"value":422},{"type":55,"tag":140,"props":12870,"children":12871},{"class":142,"line":887},[12872,12877],{"type":55,"tag":140,"props":12873,"children":12874},{"style":153},[12875],{"type":60,"value":12876},"        role",{"type":55,"tag":140,"props":12878,"children":12879},{"style":164},[12880],{"type":60,"value":422},{"type":55,"tag":140,"props":12882,"children":12883},{"class":142,"line":908},[12884,12888,12892],{"type":55,"tag":140,"props":12885,"children":12886},{"style":164},[12887],{"type":60,"value":3464},{"type":55,"tag":140,"props":12889,"children":12890},{"style":368},[12891],{"type":60,"value":331},{"type":55,"tag":140,"props":12893,"children":12894},{"style":164},[12895],{"type":60,"value":422},{"type":55,"tag":140,"props":12897,"children":12898},{"class":142,"line":925},[12899,12903,12907],{"type":55,"tag":140,"props":12900,"children":12901},{"style":164},[12902],{"type":60,"value":3938},{"type":55,"tag":140,"props":12904,"children":12905},{"style":368},[12906],{"type":60,"value":331},{"type":55,"tag":140,"props":12908,"children":12909},{"style":164},[12910],{"type":60,"value":183},{"type":55,"tag":140,"props":12912,"children":12913},{"class":142,"line":994},[12914,12918,12922,12926,12930,12934,12938,12942,12946],{"type":55,"tag":140,"props":12915,"children":12916},{"style":200},[12917],{"type":60,"value":12715},{"type":55,"tag":140,"props":12919,"children":12920},{"style":153},[12921],{"type":60,"value":5626},{"type":55,"tag":140,"props":12923,"children":12924},{"style":164},[12925],{"type":60,"value":355},{"type":55,"tag":140,"props":12927,"children":12928},{"style":147},[12929],{"type":60,"value":360},{"type":55,"tag":140,"props":12931,"children":12932},{"style":153},[12933],{"type":60,"value":12720},{"type":55,"tag":140,"props":12935,"children":12936},{"style":164},[12937],{"type":60,"value":101},{"type":55,"tag":140,"props":12939,"children":12940},{"style":225},[12941],{"type":60,"value":730},{"type":55,"tag":140,"props":12943,"children":12944},{"style":368},[12945],{"type":60,"value":233},{"type":55,"tag":140,"props":12947,"children":12948},{"style":164},[12949],{"type":60,"value":183},{"type":55,"tag":140,"props":12951,"children":12952},{"class":142,"line":1003},[12953,12958,12962,12966,12970,12975,12979],{"type":55,"tag":140,"props":12954,"children":12955},{"style":225},[12956],{"type":60,"value":12957},"    startMeeting",{"type":55,"tag":140,"props":12959,"children":12960},{"style":368},[12961],{"type":60,"value":274},{"type":55,"tag":140,"props":12963,"children":12964},{"style":153},[12965],{"type":60,"value":5572},{"type":55,"tag":140,"props":12967,"children":12968},{"style":164},[12969],{"type":60,"value":101},{"type":55,"tag":140,"props":12971,"children":12972},{"style":153},[12973],{"type":60,"value":12974},"signature",{"type":55,"tag":140,"props":12976,"children":12977},{"style":368},[12978],{"type":60,"value":331},{"type":55,"tag":140,"props":12980,"children":12981},{"style":164},[12982],{"type":60,"value":183},{"type":55,"tag":140,"props":12984,"children":12985},{"class":142,"line":1019},[12986],{"type":55,"tag":140,"props":12987,"children":12988},{"style":164},[12989],{"type":60,"value":12990},"  };\n",{"type":55,"tag":140,"props":12992,"children":12993},{"class":142,"line":1027},[12994],{"type":55,"tag":140,"props":12995,"children":12996},{"emptyLinePlaceholder":190},[12997],{"type":60,"value":193},{"type":55,"tag":140,"props":12999,"children":13000},{"class":142,"line":1056},[13001,13005,13009,13013,13017,13021,13025,13029,13033,13037],{"type":55,"tag":140,"props":13002,"children":13003},{"style":200},[13004],{"type":60,"value":345},{"type":55,"tag":140,"props":13006,"children":13007},{"style":153},[13008],{"type":60,"value":3723},{"type":55,"tag":140,"props":13010,"children":13011},{"style":164},[13012],{"type":60,"value":355},{"type":55,"tag":140,"props":13014,"children":13015},{"style":164},[13016],{"type":60,"value":587},{"type":55,"tag":140,"props":13018,"children":13019},{"style":277},[13020],{"type":60,"value":12974},{"type":55,"tag":140,"props":13022,"children":13023},{"style":164},[13024],{"type":60,"value":285},{"type":55,"tag":140,"props":13026,"children":13027},{"style":288},[13028],{"type":60,"value":291},{"type":55,"tag":140,"props":13030,"children":13031},{"style":164},[13032],{"type":60,"value":331},{"type":55,"tag":140,"props":13034,"children":13035},{"style":200},[13036],{"type":60,"value":2710},{"type":55,"tag":140,"props":13038,"children":13039},{"style":164},[13040],{"type":60,"value":336},{"type":55,"tag":140,"props":13042,"children":13043},{"class":142,"line":1069},[13044,13049,13053,13057,13061,13065,13070,13074,13078,13083,13088,13092,13097,13101,13105,13109,13113],{"type":55,"tag":140,"props":13045,"children":13046},{"style":153},[13047],{"type":60,"value":13048},"    document",{"type":55,"tag":140,"props":13050,"children":13051},{"style":164},[13052],{"type":60,"value":101},{"type":55,"tag":140,"props":13054,"children":13055},{"style":225},[13056],{"type":60,"value":805},{"type":55,"tag":140,"props":13058,"children":13059},{"style":368},[13060],{"type":60,"value":274},{"type":55,"tag":140,"props":13062,"children":13063},{"style":164},[13064],{"type":60,"value":178},{"type":55,"tag":140,"props":13066,"children":13067},{"style":170},[13068],{"type":60,"value":13069},"zmmtg-root",{"type":55,"tag":140,"props":13071,"children":13072},{"style":164},[13073],{"type":60,"value":178},{"type":55,"tag":140,"props":13075,"children":13076},{"style":368},[13077],{"type":60,"value":331},{"type":55,"tag":140,"props":13079,"children":13080},{"style":164},[13081],{"type":60,"value":13082},"!.",{"type":55,"tag":140,"props":13084,"children":13085},{"style":153},[13086],{"type":60,"value":13087},"style",{"type":55,"tag":140,"props":13089,"children":13090},{"style":164},[13091],{"type":60,"value":101},{"type":55,"tag":140,"props":13093,"children":13094},{"style":153},[13095],{"type":60,"value":13096},"display",{"type":55,"tag":140,"props":13098,"children":13099},{"style":164},[13100],{"type":60,"value":355},{"type":55,"tag":140,"props":13102,"children":13103},{"style":164},[13104],{"type":60,"value":167},{"type":55,"tag":140,"props":13106,"children":13107},{"style":170},[13108],{"type":60,"value":1606},{"type":55,"tag":140,"props":13110,"children":13111},{"style":164},[13112],{"type":60,"value":178},{"type":55,"tag":140,"props":13114,"children":13115},{"style":164},[13116],{"type":60,"value":183},{"type":55,"tag":140,"props":13118,"children":13119},{"class":142,"line":1082},[13120],{"type":55,"tag":140,"props":13121,"children":13122},{"emptyLinePlaceholder":190},[13123],{"type":60,"value":193},{"type":55,"tag":140,"props":13125,"children":13126},{"class":142,"line":1095},[13127,13132,13136,13140,13144],{"type":55,"tag":140,"props":13128,"children":13129},{"style":153},[13130],{"type":60,"value":13131},"    ZoomMtg",{"type":55,"tag":140,"props":13133,"children":13134},{"style":164},[13135],{"type":60,"value":101},{"type":55,"tag":140,"props":13137,"children":13138},{"style":225},[13139],{"type":60,"value":769},{"type":55,"tag":140,"props":13141,"children":13142},{"style":368},[13143],{"type":60,"value":274},{"type":55,"tag":140,"props":13145,"children":13146},{"style":164},[13147],{"type":60,"value":778},{"type":55,"tag":140,"props":13149,"children":13150},{"class":142,"line":1108},[13151,13156,13160,13164,13168,13173,13177,13182],{"type":55,"tag":140,"props":13152,"children":13153},{"style":368},[13154],{"type":60,"value":13155},"      leaveUrl",{"type":55,"tag":140,"props":13157,"children":13158},{"style":164},[13159],{"type":60,"value":285},{"type":55,"tag":140,"props":13161,"children":13162},{"style":153},[13163],{"type":60,"value":10915},{"type":55,"tag":140,"props":13165,"children":13166},{"style":164},[13167],{"type":60,"value":101},{"type":55,"tag":140,"props":13169,"children":13170},{"style":153},[13171],{"type":60,"value":13172},"location",{"type":55,"tag":140,"props":13174,"children":13175},{"style":164},[13176],{"type":60,"value":101},{"type":55,"tag":140,"props":13178,"children":13179},{"style":153},[13180],{"type":60,"value":13181},"origin",{"type":55,"tag":140,"props":13183,"children":13184},{"style":164},[13185],{"type":60,"value":422},{"type":55,"tag":140,"props":13187,"children":13188},{"class":142,"line":1121},[13189,13193,13197,13201],{"type":55,"tag":140,"props":13190,"children":13191},{"style":368},[13192],{"type":60,"value":3888},{"type":55,"tag":140,"props":13194,"children":13195},{"style":164},[13196],{"type":60,"value":285},{"type":55,"tag":140,"props":13198,"children":13199},{"style":877},[13200],{"type":60,"value":880},{"type":55,"tag":140,"props":13202,"children":13203},{"style":164},[13204],{"type":60,"value":422},{"type":55,"tag":140,"props":13206,"children":13207},{"class":142,"line":1137},[13208,13212,13216,13220],{"type":55,"tag":140,"props":13209,"children":13210},{"style":368},[13211],{"type":60,"value":3913},{"type":55,"tag":140,"props":13213,"children":13214},{"style":164},[13215],{"type":60,"value":285},{"type":55,"tag":140,"props":13217,"children":13218},{"style":877},[13219],{"type":60,"value":880},{"type":55,"tag":140,"props":13221,"children":13222},{"style":164},[13223],{"type":60,"value":422},{"type":55,"tag":140,"props":13225,"children":13226},{"class":142,"line":3223},[13227,13232,13236,13240,13244],{"type":55,"tag":140,"props":13228,"children":13229},{"style":225},[13230],{"type":60,"value":13231},"      success",{"type":55,"tag":140,"props":13233,"children":13234},{"style":164},[13235],{"type":60,"value":285},{"type":55,"tag":140,"props":13237,"children":13238},{"style":164},[13239],{"type":60,"value":2922},{"type":55,"tag":140,"props":13241,"children":13242},{"style":200},[13243],{"type":60,"value":2710},{"type":55,"tag":140,"props":13245,"children":13246},{"style":164},[13247],{"type":60,"value":336},{"type":55,"tag":140,"props":13249,"children":13250},{"class":142,"line":3248},[13251,13256,13260,13264,13268],{"type":55,"tag":140,"props":13252,"children":13253},{"style":153},[13254],{"type":60,"value":13255},"        ZoomMtg",{"type":55,"tag":140,"props":13257,"children":13258},{"style":164},[13259],{"type":60,"value":101},{"type":55,"tag":140,"props":13261,"children":13262},{"style":225},[13263],{"type":60,"value":1045},{"type":55,"tag":140,"props":13265,"children":13266},{"style":368},[13267],{"type":60,"value":274},{"type":55,"tag":140,"props":13269,"children":13270},{"style":164},[13271],{"type":60,"value":778},{"type":55,"tag":140,"props":13273,"children":13274},{"class":142,"line":3338},[13275,13280],{"type":55,"tag":140,"props":13276,"children":13277},{"style":153},[13278],{"type":60,"value":13279},"          signature",{"type":55,"tag":140,"props":13281,"children":13282},{"style":164},[13283],{"type":60,"value":422},{"type":55,"tag":140,"props":13285,"children":13286},{"class":142,"line":3355},[13287,13292],{"type":55,"tag":140,"props":13288,"children":13289},{"style":153},[13290],{"type":60,"value":13291},"          meetingNumber",{"type":55,"tag":140,"props":13293,"children":13294},{"style":164},[13295],{"type":60,"value":422},{"type":55,"tag":140,"props":13297,"children":13298},{"class":142,"line":3364},[13299,13304],{"type":55,"tag":140,"props":13300,"children":13301},{"style":153},[13302],{"type":60,"value":13303},"          userName",{"type":55,"tag":140,"props":13305,"children":13306},{"style":164},[13307],{"type":60,"value":422},{"type":55,"tag":140,"props":13309,"children":13310},{"class":142,"line":3398},[13311,13316],{"type":55,"tag":140,"props":13312,"children":13313},{"style":153},[13314],{"type":60,"value":13315},"          passWord",{"type":55,"tag":140,"props":13317,"children":13318},{"style":164},[13319],{"type":60,"value":422},{"type":55,"tag":140,"props":13321,"children":13322},{"class":142,"line":3449},[13323,13328,13332,13336,13340,13344,13348,13352,13356,13360,13364,13368,13373,13377,13381,13385,13389],{"type":55,"tag":140,"props":13324,"children":13325},{"style":225},[13326],{"type":60,"value":13327},"          success",{"type":55,"tag":140,"props":13329,"children":13330},{"style":164},[13331],{"type":60,"value":285},{"type":55,"tag":140,"props":13333,"children":13334},{"style":164},[13335],{"type":60,"value":587},{"type":55,"tag":140,"props":13337,"children":13338},{"style":277},[13339],{"type":60,"value":3108},{"type":55,"tag":140,"props":13341,"children":13342},{"style":164},[13343],{"type":60,"value":331},{"type":55,"tag":140,"props":13345,"children":13346},{"style":200},[13347],{"type":60,"value":2710},{"type":55,"tag":140,"props":13349,"children":13350},{"style":153},[13351],{"type":60,"value":3279},{"type":55,"tag":140,"props":13353,"children":13354},{"style":164},[13355],{"type":60,"value":101},{"type":55,"tag":140,"props":13357,"children":13358},{"style":225},[13359],{"type":60,"value":2503},{"type":55,"tag":140,"props":13361,"children":13362},{"style":368},[13363],{"type":60,"value":274},{"type":55,"tag":140,"props":13365,"children":13366},{"style":164},[13367],{"type":60,"value":178},{"type":55,"tag":140,"props":13369,"children":13370},{"style":170},[13371],{"type":60,"value":13372},"Joined:",{"type":55,"tag":140,"props":13374,"children":13375},{"style":164},[13376],{"type":60,"value":178},{"type":55,"tag":140,"props":13378,"children":13379},{"style":164},[13380],{"type":60,"value":296},{"type":55,"tag":140,"props":13382,"children":13383},{"style":153},[13384],{"type":60,"value":3162},{"type":55,"tag":140,"props":13386,"children":13387},{"style":368},[13388],{"type":60,"value":331},{"type":55,"tag":140,"props":13390,"children":13391},{"style":164},[13392],{"type":60,"value":422},{"type":55,"tag":140,"props":13394,"children":13395},{"class":142,"line":3458},[13396,13401,13405,13409,13413,13417,13421,13425,13429,13433,13437,13441,13445,13449,13453,13457,13461],{"type":55,"tag":140,"props":13397,"children":13398},{"style":225},[13399],{"type":60,"value":13400},"          error",{"type":55,"tag":140,"props":13402,"children":13403},{"style":164},[13404],{"type":60,"value":285},{"type":55,"tag":140,"props":13406,"children":13407},{"style":164},[13408],{"type":60,"value":587},{"type":55,"tag":140,"props":13410,"children":13411},{"style":277},[13412],{"type":60,"value":3383},{"type":55,"tag":140,"props":13414,"children":13415},{"style":164},[13416],{"type":60,"value":331},{"type":55,"tag":140,"props":13418,"children":13419},{"style":200},[13420],{"type":60,"value":2710},{"type":55,"tag":140,"props":13422,"children":13423},{"style":153},[13424],{"type":60,"value":3279},{"type":55,"tag":140,"props":13426,"children":13427},{"style":164},[13428],{"type":60,"value":101},{"type":55,"tag":140,"props":13430,"children":13431},{"style":225},[13432],{"type":60,"value":3412},{"type":55,"tag":140,"props":13434,"children":13435},{"style":368},[13436],{"type":60,"value":274},{"type":55,"tag":140,"props":13438,"children":13439},{"style":164},[13440],{"type":60,"value":178},{"type":55,"tag":140,"props":13442,"children":13443},{"style":170},[13444],{"type":60,"value":3425},{"type":55,"tag":140,"props":13446,"children":13447},{"style":164},[13448],{"type":60,"value":178},{"type":55,"tag":140,"props":13450,"children":13451},{"style":164},[13452],{"type":60,"value":296},{"type":55,"tag":140,"props":13454,"children":13455},{"style":153},[13456],{"type":60,"value":3438},{"type":55,"tag":140,"props":13458,"children":13459},{"style":368},[13460],{"type":60,"value":331},{"type":55,"tag":140,"props":13462,"children":13463},{"style":164},[13464],{"type":60,"value":422},{"type":55,"tag":140,"props":13466,"children":13467},{"class":142,"line":3475},[13468,13473,13477],{"type":55,"tag":140,"props":13469,"children":13470},{"style":164},[13471],{"type":60,"value":13472},"        }",{"type":55,"tag":140,"props":13474,"children":13475},{"style":368},[13476],{"type":60,"value":331},{"type":55,"tag":140,"props":13478,"children":13479},{"style":164},[13480],{"type":60,"value":183},{"type":55,"tag":140,"props":13482,"children":13483},{"class":142,"line":3483},[13484],{"type":55,"tag":140,"props":13485,"children":13486},{"style":164},[13487],{"type":60,"value":13488},"      },\n",{"type":55,"tag":140,"props":13490,"children":13491},{"class":142,"line":3516},[13492,13497,13501,13505,13509,13513,13517,13521,13525,13529,13533,13537,13541,13545,13549,13553,13557],{"type":55,"tag":140,"props":13493,"children":13494},{"style":225},[13495],{"type":60,"value":13496},"      error",{"type":55,"tag":140,"props":13498,"children":13499},{"style":164},[13500],{"type":60,"value":285},{"type":55,"tag":140,"props":13502,"children":13503},{"style":164},[13504],{"type":60,"value":587},{"type":55,"tag":140,"props":13506,"children":13507},{"style":277},[13508],{"type":60,"value":3383},{"type":55,"tag":140,"props":13510,"children":13511},{"style":164},[13512],{"type":60,"value":331},{"type":55,"tag":140,"props":13514,"children":13515},{"style":200},[13516],{"type":60,"value":2710},{"type":55,"tag":140,"props":13518,"children":13519},{"style":153},[13520],{"type":60,"value":3279},{"type":55,"tag":140,"props":13522,"children":13523},{"style":164},[13524],{"type":60,"value":101},{"type":55,"tag":140,"props":13526,"children":13527},{"style":225},[13528],{"type":60,"value":3412},{"type":55,"tag":140,"props":13530,"children":13531},{"style":368},[13532],{"type":60,"value":274},{"type":55,"tag":140,"props":13534,"children":13535},{"style":164},[13536],{"type":60,"value":178},{"type":55,"tag":140,"props":13538,"children":13539},{"style":170},[13540],{"type":60,"value":3543},{"type":55,"tag":140,"props":13542,"children":13543},{"style":164},[13544],{"type":60,"value":178},{"type":55,"tag":140,"props":13546,"children":13547},{"style":164},[13548],{"type":60,"value":296},{"type":55,"tag":140,"props":13550,"children":13551},{"style":153},[13552],{"type":60,"value":3438},{"type":55,"tag":140,"props":13554,"children":13555},{"style":368},[13556],{"type":60,"value":331},{"type":55,"tag":140,"props":13558,"children":13559},{"style":164},[13560],{"type":60,"value":422},{"type":55,"tag":140,"props":13562,"children":13563},{"class":142,"line":3566},[13564,13568,13572],{"type":55,"tag":140,"props":13565,"children":13566},{"style":164},[13567],{"type":60,"value":3938},{"type":55,"tag":140,"props":13569,"children":13570},{"style":368},[13571],{"type":60,"value":331},{"type":55,"tag":140,"props":13573,"children":13574},{"style":164},[13575],{"type":60,"value":183},{"type":55,"tag":140,"props":13577,"children":13578},{"class":142,"line":3575},[13579],{"type":55,"tag":140,"props":13580,"children":13581},{"style":164},[13582],{"type":60,"value":12990},{"type":55,"tag":140,"props":13584,"children":13585},{"class":142,"line":3591},[13586],{"type":55,"tag":140,"props":13587,"children":13588},{"emptyLinePlaceholder":190},[13589],{"type":60,"value":193},{"type":55,"tag":140,"props":13591,"children":13592},{"class":142,"line":6586},[13593,13598],{"type":55,"tag":140,"props":13594,"children":13595},{"style":147},[13596],{"type":60,"value":13597},"  return",{"type":55,"tag":140,"props":13599,"children":13600},{"style":368},[13601],{"type":60,"value":13602}," (\n",{"type":55,"tag":140,"props":13604,"children":13605},{"class":142,"line":6602},[13606,13611,13616,13621,13626,13631,13636,13641,13646,13650],{"type":55,"tag":140,"props":13607,"children":13608},{"style":164},[13609],{"type":60,"value":13610},"    \u003C",{"type":55,"tag":140,"props":13612,"children":13613},{"style":368},[13614],{"type":60,"value":13615},"button",{"type":55,"tag":140,"props":13617,"children":13618},{"style":200},[13619],{"type":60,"value":13620}," onClick",{"type":55,"tag":140,"props":13622,"children":13623},{"style":164},[13624],{"type":60,"value":13625},"={",{"type":55,"tag":140,"props":13627,"children":13628},{"style":153},[13629],{"type":60,"value":13630},"getSignature",{"type":55,"tag":140,"props":13632,"children":13633},{"style":164},[13634],{"type":60,"value":13635},"}>",{"type":55,"tag":140,"props":13637,"children":13638},{"style":153},[13639],{"type":60,"value":13640},"Join Meeting",{"type":55,"tag":140,"props":13642,"children":13643},{"style":164},[13644],{"type":60,"value":13645},"\u003C\u002F",{"type":55,"tag":140,"props":13647,"children":13648},{"style":368},[13649],{"type":60,"value":13615},{"type":55,"tag":140,"props":13651,"children":13652},{"style":164},[13653],{"type":60,"value":2091},{"type":55,"tag":140,"props":13655,"children":13656},{"class":142,"line":6610},[13657,13662],{"type":55,"tag":140,"props":13658,"children":13659},{"style":368},[13660],{"type":60,"value":13661},"  )",{"type":55,"tag":140,"props":13663,"children":13664},{"style":164},[13665],{"type":60,"value":183},{"type":55,"tag":140,"props":13667,"children":13668},{"class":142,"line":6619},[13669],{"type":55,"tag":140,"props":13670,"children":13671},{"style":164},[13672],{"type":60,"value":1143},{"type":55,"tag":1912,"props":13674,"children":13676},{"id":13675},"react-gotchas-from-official-samples",[13677],{"type":60,"value":13678},"React Gotchas (from official samples)",{"type":55,"tag":1660,"props":13680,"children":13681},{},[13682,13701],{"type":55,"tag":1664,"props":13683,"children":13684},{},[13685],{"type":55,"tag":1668,"props":13686,"children":13687},{},[13688,13692,13697],{"type":55,"tag":1672,"props":13689,"children":13690},{},[13691],{"type":60,"value":11332},{"type":55,"tag":1672,"props":13693,"children":13694},{},[13695],{"type":60,"value":13696},"Problem",{"type":55,"tag":1672,"props":13698,"children":13699},{},[13700],{"type":60,"value":11337},{"type":55,"tag":1686,"props":13702,"children":13703},{},[13704,13738,13767,13800,13829],{"type":55,"tag":1668,"props":13705,"children":13706},{},[13707,13715,13726],{"type":55,"tag":1693,"props":13708,"children":13709},{},[13710],{"type":55,"tag":69,"props":13711,"children":13712},{},[13713],{"type":60,"value":13714},"Client Recreation",{"type":55,"tag":1693,"props":13716,"children":13717},{},[13718,13724],{"type":55,"tag":121,"props":13719,"children":13721},{"className":13720},[],[13722],{"type":60,"value":13723},"createClient()",{"type":60,"value":13725}," in component body runs every render",{"type":55,"tag":1693,"props":13727,"children":13728},{},[13729,13730,13736],{"type":60,"value":94},{"type":55,"tag":121,"props":13731,"children":13733},{"className":13732},[],[13734],{"type":60,"value":13735},"useRef",{"type":60,"value":13737}," to persist client",{"type":55,"tag":1668,"props":13739,"children":13740},{},[13741,13749,13754],{"type":55,"tag":1693,"props":13742,"children":13743},{},[13744],{"type":55,"tag":69,"props":13745,"children":13746},{},[13747],{"type":60,"value":13748},"No useEffect",{"type":55,"tag":1693,"props":13750,"children":13751},{},[13752],{"type":60,"value":13753},"Official sample doesn't use React lifecycle hooks",{"type":55,"tag":1693,"props":13755,"children":13756},{},[13757,13759,13765],{"type":60,"value":13758},"SDK's ",{"type":55,"tag":121,"props":13760,"children":13762},{"className":13761},[],[13763],{"type":60,"value":13764},"leaveOnPageUnload",{"type":60,"value":13766}," handles cleanup",{"type":55,"tag":1668,"props":13768,"children":13769},{},[13770,13778,13788],{"type":55,"tag":1693,"props":13771,"children":13772},{},[13773],{"type":55,"tag":69,"props":13774,"children":13775},{},[13776],{"type":60,"value":13777},"Direct DOM",{"type":55,"tag":1693,"props":13779,"children":13780},{},[13781,13783],{"type":60,"value":13782},"Sample uses ",{"type":55,"tag":121,"props":13784,"children":13786},{"className":13785},[],[13787],{"type":60,"value":805},{"type":55,"tag":1693,"props":13789,"children":13790},{},[13791,13792,13798],{"type":60,"value":94},{"type":55,"tag":121,"props":13793,"children":13795},{"className":13794},[],[13796],{"type":60,"value":13797},"useRef\u003CHTMLDivElement>",{"type":60,"value":13799}," in production",{"type":55,"tag":1668,"props":13801,"children":13802},{},[13803,13811,13816],{"type":55,"tag":1693,"props":13804,"children":13805},{},[13806],{"type":55,"tag":69,"props":13807,"children":13808},{},[13809],{"type":60,"value":13810},"No Error State",{"type":55,"tag":1693,"props":13812,"children":13813},{},[13814],{"type":60,"value":13815},"Silent failures",{"type":55,"tag":1693,"props":13817,"children":13818},{},[13819,13821,13827],{"type":60,"value":13820},"Add ",{"type":55,"tag":121,"props":13822,"children":13824},{"className":13823},[],[13825],{"type":60,"value":13826},"useState",{"type":60,"value":13828}," for error handling",{"type":55,"tag":1668,"props":13830,"children":13831},{},[13832,13840,13851],{"type":55,"tag":1693,"props":13833,"children":13834},{},[13835],{"type":55,"tag":69,"props":13836,"children":13837},{},[13838],{"type":60,"value":13839},"Module-Scope Side Effects",{"type":55,"tag":1693,"props":13841,"children":13842},{},[13843,13849],{"type":55,"tag":121,"props":13844,"children":13846},{"className":13845},[],[13847],{"type":60,"value":13848},"preLoadWasm()",{"type":60,"value":13850}," at top level",{"type":55,"tag":1693,"props":13852,"children":13853},{},[13854],{"type":60,"value":13855},"May cause issues with SSR",{"type":55,"tag":1912,"props":13857,"children":13859},{"id":13858},"production-ready-react-pattern",[13860],{"type":60,"value":13861},"Production-Ready React Pattern",{"type":55,"tag":113,"props":13863,"children":13865},{"className":12380,"code":13864,"language":12382,"meta":118,"style":118},"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",[13866],{"type":55,"tag":121,"props":13867,"children":13868},{"__ignoreMap":118},[13869,13937,13968,13975,14019,14026,14081,14141,14190,14244,14317,14324,14332,14356,14394,14434,14441,14458,14465,14505,14567,14574,14598,14622,14629,14641,14649,14697,14725,14773,14837,14852,14907,14914,14950,14978,15006,15026,15046,15061,15068,15103,15114,15126,15137,15149,15160,15175,15202,15271,15287,15311,15318,15358,15365,15376,15392,15483,15529,15580,15596,15667,15683,15694],{"type":55,"tag":140,"props":13870,"children":13871},{"class":142,"line":143},[13872,13876,13880,13885,13889,13894,13898,13903,13907,13912,13916,13920,13924,13929,13933],{"type":55,"tag":140,"props":13873,"children":13874},{"style":147},[13875],{"type":60,"value":150},{"type":55,"tag":140,"props":13877,"children":13878},{"style":164},[13879],{"type":60,"value":440},{"type":55,"tag":140,"props":13881,"children":13882},{"style":153},[13883],{"type":60,"value":13884}," useEffect",{"type":55,"tag":140,"props":13886,"children":13887},{"style":164},[13888],{"type":60,"value":296},{"type":55,"tag":140,"props":13890,"children":13891},{"style":153},[13892],{"type":60,"value":13893}," useRef",{"type":55,"tag":140,"props":13895,"children":13896},{"style":164},[13897],{"type":60,"value":296},{"type":55,"tag":140,"props":13899,"children":13900},{"style":153},[13901],{"type":60,"value":13902}," useState",{"type":55,"tag":140,"props":13904,"children":13905},{"style":164},[13906],{"type":60,"value":296},{"type":55,"tag":140,"props":13908,"children":13909},{"style":153},[13910],{"type":60,"value":13911}," useCallback",{"type":55,"tag":140,"props":13913,"children":13914},{"style":164},[13915],{"type":60,"value":540},{"type":55,"tag":140,"props":13917,"children":13918},{"style":147},[13919],{"type":60,"value":2454},{"type":55,"tag":140,"props":13921,"children":13922},{"style":164},[13923],{"type":60,"value":167},{"type":55,"tag":140,"props":13925,"children":13926},{"style":170},[13927],{"type":60,"value":13928},"react",{"type":55,"tag":140,"props":13930,"children":13931},{"style":164},[13932],{"type":60,"value":178},{"type":55,"tag":140,"props":13934,"children":13935},{"style":164},[13936],{"type":60,"value":183},{"type":55,"tag":140,"props":13938,"children":13939},{"class":142,"line":186},[13940,13944,13948,13952,13956,13960,13964],{"type":55,"tag":140,"props":13941,"children":13942},{"style":147},[13943],{"type":60,"value":150},{"type":55,"tag":140,"props":13945,"children":13946},{"style":153},[13947],{"type":60,"value":156},{"type":55,"tag":140,"props":13949,"children":13950},{"style":147},[13951],{"type":60,"value":161},{"type":55,"tag":140,"props":13953,"children":13954},{"style":164},[13955],{"type":60,"value":167},{"type":55,"tag":140,"props":13957,"children":13958},{"style":170},[13959],{"type":60,"value":173},{"type":55,"tag":140,"props":13961,"children":13962},{"style":164},[13963],{"type":60,"value":178},{"type":55,"tag":140,"props":13965,"children":13966},{"style":164},[13967],{"type":60,"value":183},{"type":55,"tag":140,"props":13969,"children":13970},{"class":142,"line":196},[13971],{"type":55,"tag":140,"props":13972,"children":13973},{"emptyLinePlaceholder":190},[13974],{"type":60,"value":193},{"type":55,"tag":140,"props":13976,"children":13977},{"class":142,"line":240},[13978,13983,13988,13992,13997,14002,14006,14010,14014],{"type":55,"tag":140,"props":13979,"children":13980},{"style":200},[13981],{"type":60,"value":13982},"type",{"type":55,"tag":140,"props":13984,"children":13985},{"style":288},[13986],{"type":60,"value":13987}," ZoomClient",{"type":55,"tag":140,"props":13989,"children":13990},{"style":164},[13991],{"type":60,"value":355},{"type":55,"tag":140,"props":13993,"children":13994},{"style":288},[13995],{"type":60,"value":13996}," ReturnType",{"type":55,"tag":140,"props":13998,"children":13999},{"style":164},[14000],{"type":60,"value":14001},"\u003Ctypeof",{"type":55,"tag":140,"props":14003,"children":14004},{"style":153},[14005],{"type":60,"value":218},{"type":55,"tag":140,"props":14007,"children":14008},{"style":164},[14009],{"type":60,"value":101},{"type":55,"tag":140,"props":14011,"children":14012},{"style":153},[14013],{"type":60,"value":228},{"type":55,"tag":140,"props":14015,"children":14016},{"style":164},[14017],{"type":60,"value":14018},">;\n",{"type":55,"tag":140,"props":14020,"children":14021},{"class":142,"line":248},[14022],{"type":55,"tag":140,"props":14023,"children":14024},{"emptyLinePlaceholder":190},[14025],{"type":60,"value":193},{"type":55,"tag":140,"props":14027,"children":14028},{"class":142,"line":339},[14029,14033,14038,14043,14047,14051,14055,14059,14063,14068,14073,14077],{"type":55,"tag":140,"props":14030,"children":14031},{"style":200},[14032],{"type":60,"value":10744},{"type":55,"tag":140,"props":14034,"children":14035},{"style":225},[14036],{"type":60,"value":14037}," ZoomMeeting",{"type":55,"tag":140,"props":14039,"children":14040},{"style":164},[14041],{"type":60,"value":14042},"({",{"type":55,"tag":140,"props":14044,"children":14045},{"style":277},[14046],{"type":60,"value":516},{"type":55,"tag":140,"props":14048,"children":14049},{"style":164},[14050],{"type":60,"value":296},{"type":55,"tag":140,"props":14052,"children":14053},{"style":277},[14054],{"type":60,"value":318},{"type":55,"tag":140,"props":14056,"children":14057},{"style":164},[14058],{"type":60,"value":296},{"type":55,"tag":140,"props":14060,"children":14061},{"style":277},[14062],{"type":60,"value":301},{"type":55,"tag":140,"props":14064,"children":14065},{"style":164},[14066],{"type":60,"value":14067}," }:",{"type":55,"tag":140,"props":14069,"children":14070},{"style":288},[14071],{"type":60,"value":14072}," Props",{"type":55,"tag":140,"props":14074,"children":14075},{"style":164},[14076],{"type":60,"value":331},{"type":55,"tag":140,"props":14078,"children":14079},{"style":164},[14080],{"type":60,"value":336},{"type":55,"tag":140,"props":14082,"children":14083},{"class":142,"line":394},[14084,14088,14093,14097,14101,14105,14110,14114,14119,14124,14128,14133,14137],{"type":55,"tag":140,"props":14085,"children":14086},{"style":200},[14087],{"type":60,"value":345},{"type":55,"tag":140,"props":14089,"children":14090},{"style":153},[14091],{"type":60,"value":14092}," clientRef",{"type":55,"tag":140,"props":14094,"children":14095},{"style":164},[14096],{"type":60,"value":355},{"type":55,"tag":140,"props":14098,"children":14099},{"style":225},[14100],{"type":60,"value":13893},{"type":55,"tag":140,"props":14102,"children":14103},{"style":164},[14104],{"type":60,"value":2049},{"type":55,"tag":140,"props":14106,"children":14107},{"style":288},[14108],{"type":60,"value":14109},"ZoomClient",{"type":55,"tag":140,"props":14111,"children":14112},{"style":164},[14113],{"type":60,"value":4854},{"type":55,"tag":140,"props":14115,"children":14116},{"style":288},[14117],{"type":60,"value":14118}," null",{"type":55,"tag":140,"props":14120,"children":14121},{"style":164},[14122],{"type":60,"value":14123},">",{"type":55,"tag":140,"props":14125,"children":14126},{"style":368},[14127],{"type":60,"value":274},{"type":55,"tag":140,"props":14129,"children":14130},{"style":164},[14131],{"type":60,"value":14132},"null",{"type":55,"tag":140,"props":14134,"children":14135},{"style":368},[14136],{"type":60,"value":331},{"type":55,"tag":140,"props":14138,"children":14139},{"style":164},[14140],{"type":60,"value":183},{"type":55,"tag":140,"props":14142,"children":14143},{"class":142,"line":425},[14144,14148,14153,14157,14161,14165,14170,14174,14178,14182,14186],{"type":55,"tag":140,"props":14145,"children":14146},{"style":200},[14147],{"type":60,"value":345},{"type":55,"tag":140,"props":14149,"children":14150},{"style":153},[14151],{"type":60,"value":14152}," containerRef",{"type":55,"tag":140,"props":14154,"children":14155},{"style":164},[14156],{"type":60,"value":355},{"type":55,"tag":140,"props":14158,"children":14159},{"style":225},[14160],{"type":60,"value":13893},{"type":55,"tag":140,"props":14162,"children":14163},{"style":164},[14164],{"type":60,"value":2049},{"type":55,"tag":140,"props":14166,"children":14167},{"style":288},[14168],{"type":60,"value":14169},"HTMLDivElement",{"type":55,"tag":140,"props":14171,"children":14172},{"style":164},[14173],{"type":60,"value":14123},{"type":55,"tag":140,"props":14175,"children":14176},{"style":368},[14177],{"type":60,"value":274},{"type":55,"tag":140,"props":14179,"children":14180},{"style":164},[14181],{"type":60,"value":14132},{"type":55,"tag":140,"props":14183,"children":14184},{"style":368},[14185],{"type":60,"value":331},{"type":55,"tag":140,"props":14187,"children":14188},{"style":164},[14189],{"type":60,"value":183},{"type":55,"tag":140,"props":14191,"children":14192},{"class":142,"line":478},[14193,14197,14201,14206,14210,14215,14219,14223,14227,14231,14236,14240],{"type":55,"tag":140,"props":14194,"children":14195},{"style":200},[14196],{"type":60,"value":345},{"type":55,"tag":140,"props":14198,"children":14199},{"style":164},[14200],{"type":60,"value":8165},{"type":55,"tag":140,"props":14202,"children":14203},{"style":153},[14204],{"type":60,"value":14205},"isJoining",{"type":55,"tag":140,"props":14207,"children":14208},{"style":164},[14209],{"type":60,"value":296},{"type":55,"tag":140,"props":14211,"children":14212},{"style":153},[14213],{"type":60,"value":14214}," setIsJoining",{"type":55,"tag":140,"props":14216,"children":14217},{"style":164},[14218],{"type":60,"value":8892},{"type":55,"tag":140,"props":14220,"children":14221},{"style":164},[14222],{"type":60,"value":355},{"type":55,"tag":140,"props":14224,"children":14225},{"style":225},[14226],{"type":60,"value":13902},{"type":55,"tag":140,"props":14228,"children":14229},{"style":368},[14230],{"type":60,"value":274},{"type":55,"tag":140,"props":14232,"children":14233},{"style":877},[14234],{"type":60,"value":14235},"false",{"type":55,"tag":140,"props":14237,"children":14238},{"style":368},[14239],{"type":60,"value":331},{"type":55,"tag":140,"props":14241,"children":14242},{"style":164},[14243],{"type":60,"value":183},{"type":55,"tag":140,"props":14245,"children":14246},{"class":142,"line":551},[14247,14251,14255,14259,14263,14268,14272,14276,14280,14284,14289,14293,14297,14301,14305,14309,14313],{"type":55,"tag":140,"props":14248,"children":14249},{"style":200},[14250],{"type":60,"value":345},{"type":55,"tag":140,"props":14252,"children":14253},{"style":164},[14254],{"type":60,"value":8165},{"type":55,"tag":140,"props":14256,"children":14257},{"style":153},[14258],{"type":60,"value":3412},{"type":55,"tag":140,"props":14260,"children":14261},{"style":164},[14262],{"type":60,"value":296},{"type":55,"tag":140,"props":14264,"children":14265},{"style":153},[14266],{"type":60,"value":14267}," setError",{"type":55,"tag":140,"props":14269,"children":14270},{"style":164},[14271],{"type":60,"value":8892},{"type":55,"tag":140,"props":14273,"children":14274},{"style":164},[14275],{"type":60,"value":355},{"type":55,"tag":140,"props":14277,"children":14278},{"style":225},[14279],{"type":60,"value":13902},{"type":55,"tag":140,"props":14281,"children":14282},{"style":164},[14283],{"type":60,"value":2049},{"type":55,"tag":140,"props":14285,"children":14286},{"style":288},[14287],{"type":60,"value":14288},"string",{"type":55,"tag":140,"props":14290,"children":14291},{"style":164},[14292],{"type":60,"value":4854},{"type":55,"tag":140,"props":14294,"children":14295},{"style":288},[14296],{"type":60,"value":14118},{"type":55,"tag":140,"props":14298,"children":14299},{"style":164},[14300],{"type":60,"value":14123},{"type":55,"tag":140,"props":14302,"children":14303},{"style":368},[14304],{"type":60,"value":274},{"type":55,"tag":140,"props":14306,"children":14307},{"style":164},[14308],{"type":60,"value":14132},{"type":55,"tag":140,"props":14310,"children":14311},{"style":368},[14312],{"type":60,"value":331},{"type":55,"tag":140,"props":14314,"children":14315},{"style":164},[14316],{"type":60,"value":183},{"type":55,"tag":140,"props":14318,"children":14319},{"class":142,"line":568},[14320],{"type":55,"tag":140,"props":14321,"children":14322},{"emptyLinePlaceholder":190},[14323],{"type":60,"value":193},{"type":55,"tag":140,"props":14325,"children":14326},{"class":142,"line":576},[14327],{"type":55,"tag":140,"props":14328,"children":14329},{"style":2038},[14330],{"type":60,"value":14331},"  \u002F\u002F Create client once\n",{"type":55,"tag":140,"props":14333,"children":14334},{"class":142,"line":674},[14335,14340,14344,14348,14352],{"type":55,"tag":140,"props":14336,"children":14337},{"style":225},[14338],{"type":60,"value":14339},"  useEffect",{"type":55,"tag":140,"props":14341,"children":14342},{"style":368},[14343],{"type":60,"value":274},{"type":55,"tag":140,"props":14345,"children":14346},{"style":164},[14347],{"type":60,"value":233},{"type":55,"tag":140,"props":14349,"children":14350},{"style":200},[14351],{"type":60,"value":2710},{"type":55,"tag":140,"props":14353,"children":14354},{"style":164},[14355],{"type":60,"value":336},{"type":55,"tag":140,"props":14357,"children":14358},{"class":142,"line":682},[14359,14364,14368,14372,14377,14381,14386,14390],{"type":55,"tag":140,"props":14360,"children":14361},{"style":147},[14362],{"type":60,"value":14363},"    if",{"type":55,"tag":140,"props":14365,"children":14366},{"style":368},[14367],{"type":60,"value":587},{"type":55,"tag":140,"props":14369,"children":14370},{"style":164},[14371],{"type":60,"value":592},{"type":55,"tag":140,"props":14373,"children":14374},{"style":153},[14375],{"type":60,"value":14376},"clientRef",{"type":55,"tag":140,"props":14378,"children":14379},{"style":164},[14380],{"type":60,"value":101},{"type":55,"tag":140,"props":14382,"children":14383},{"style":153},[14384],{"type":60,"value":14385},"current",{"type":55,"tag":140,"props":14387,"children":14388},{"style":368},[14389],{"type":60,"value":611},{"type":55,"tag":140,"props":14391,"children":14392},{"style":164},[14393],{"type":60,"value":778},{"type":55,"tag":140,"props":14395,"children":14396},{"class":142,"line":741},[14397,14402,14406,14410,14414,14418,14422,14426,14430],{"type":55,"tag":140,"props":14398,"children":14399},{"style":153},[14400],{"type":60,"value":14401},"      clientRef",{"type":55,"tag":140,"props":14403,"children":14404},{"style":164},[14405],{"type":60,"value":101},{"type":55,"tag":140,"props":14407,"children":14408},{"style":153},[14409],{"type":60,"value":14385},{"type":55,"tag":140,"props":14411,"children":14412},{"style":164},[14413],{"type":60,"value":355},{"type":55,"tag":140,"props":14415,"children":14416},{"style":153},[14417],{"type":60,"value":218},{"type":55,"tag":140,"props":14419,"children":14420},{"style":164},[14421],{"type":60,"value":101},{"type":55,"tag":140,"props":14423,"children":14424},{"style":225},[14425],{"type":60,"value":228},{"type":55,"tag":140,"props":14427,"children":14428},{"style":368},[14429],{"type":60,"value":233},{"type":55,"tag":140,"props":14431,"children":14432},{"style":164},[14433],{"type":60,"value":183},{"type":55,"tag":140,"props":14435,"children":14436},{"class":142,"line":749},[14437],{"type":55,"tag":140,"props":14438,"children":14439},{"style":164},[14440],{"type":60,"value":3572},{"type":55,"tag":140,"props":14442,"children":14443},{"class":142,"line":781},[14444,14449,14454],{"type":55,"tag":140,"props":14445,"children":14446},{"style":164},[14447],{"type":60,"value":14448},"  },",{"type":55,"tag":140,"props":14450,"children":14451},{"style":368},[14452],{"type":60,"value":14453}," [])",{"type":55,"tag":140,"props":14455,"children":14456},{"style":164},[14457],{"type":60,"value":183},{"type":55,"tag":140,"props":14459,"children":14460},{"class":142,"line":834},[14461],{"type":55,"tag":140,"props":14462,"children":14463},{"emptyLinePlaceholder":190},[14464],{"type":60,"value":193},{"type":55,"tag":140,"props":14466,"children":14467},{"class":142,"line":864},[14468,14472,14477,14481,14485,14489,14493,14497,14501],{"type":55,"tag":140,"props":14469,"children":14470},{"style":200},[14471],{"type":60,"value":345},{"type":55,"tag":140,"props":14473,"children":14474},{"style":153},[14475],{"type":60,"value":14476}," joinMeeting",{"type":55,"tag":140,"props":14478,"children":14479},{"style":164},[14480],{"type":60,"value":355},{"type":55,"tag":140,"props":14482,"children":14483},{"style":225},[14484],{"type":60,"value":13911},{"type":55,"tag":140,"props":14486,"children":14487},{"style":368},[14488],{"type":60,"value":274},{"type":55,"tag":140,"props":14490,"children":14491},{"style":200},[14492],{"type":60,"value":3714},{"type":55,"tag":140,"props":14494,"children":14495},{"style":164},[14496],{"type":60,"value":2922},{"type":55,"tag":140,"props":14498,"children":14499},{"style":200},[14500],{"type":60,"value":2710},{"type":55,"tag":140,"props":14502,"children":14503},{"style":164},[14504],{"type":60,"value":336},{"type":55,"tag":140,"props":14506,"children":14507},{"class":142,"line":887},[14508,14512,14516,14520,14524,14528,14532,14537,14541,14546,14550,14554,14558,14563],{"type":55,"tag":140,"props":14509,"children":14510},{"style":147},[14511],{"type":60,"value":14363},{"type":55,"tag":140,"props":14513,"children":14514},{"style":368},[14515],{"type":60,"value":587},{"type":55,"tag":140,"props":14517,"children":14518},{"style":164},[14519],{"type":60,"value":592},{"type":55,"tag":140,"props":14521,"children":14522},{"style":153},[14523],{"type":60,"value":14376},{"type":55,"tag":140,"props":14525,"children":14526},{"style":164},[14527],{"type":60,"value":101},{"type":55,"tag":140,"props":14529,"children":14530},{"style":153},[14531],{"type":60,"value":14385},{"type":55,"tag":140,"props":14533,"children":14534},{"style":164},[14535],{"type":60,"value":14536}," ||",{"type":55,"tag":140,"props":14538,"children":14539},{"style":164},[14540],{"type":60,"value":2800},{"type":55,"tag":140,"props":14542,"children":14543},{"style":153},[14544],{"type":60,"value":14545},"containerRef",{"type":55,"tag":140,"props":14547,"children":14548},{"style":164},[14549],{"type":60,"value":101},{"type":55,"tag":140,"props":14551,"children":14552},{"style":153},[14553],{"type":60,"value":14385},{"type":55,"tag":140,"props":14555,"children":14556},{"style":368},[14557],{"type":60,"value":611},{"type":55,"tag":140,"props":14559,"children":14560},{"style":147},[14561],{"type":60,"value":14562},"return",{"type":55,"tag":140,"props":14564,"children":14565},{"style":164},[14566],{"type":60,"value":183},{"type":55,"tag":140,"props":14568,"children":14569},{"class":142,"line":908},[14570],{"type":55,"tag":140,"props":14571,"children":14572},{"style":368},[14573],{"type":60,"value":4146},{"type":55,"tag":140,"props":14575,"children":14576},{"class":142,"line":925},[14577,14582,14586,14590,14594],{"type":55,"tag":140,"props":14578,"children":14579},{"style":225},[14580],{"type":60,"value":14581},"    setIsJoining",{"type":55,"tag":140,"props":14583,"children":14584},{"style":368},[14585],{"type":60,"value":274},{"type":55,"tag":140,"props":14587,"children":14588},{"style":877},[14589],{"type":60,"value":10466},{"type":55,"tag":140,"props":14591,"children":14592},{"style":368},[14593],{"type":60,"value":331},{"type":55,"tag":140,"props":14595,"children":14596},{"style":164},[14597],{"type":60,"value":183},{"type":55,"tag":140,"props":14599,"children":14600},{"class":142,"line":994},[14601,14606,14610,14614,14618],{"type":55,"tag":140,"props":14602,"children":14603},{"style":225},[14604],{"type":60,"value":14605},"    setError",{"type":55,"tag":140,"props":14607,"children":14608},{"style":368},[14609],{"type":60,"value":274},{"type":55,"tag":140,"props":14611,"children":14612},{"style":164},[14613],{"type":60,"value":14132},{"type":55,"tag":140,"props":14615,"children":14616},{"style":368},[14617],{"type":60,"value":331},{"type":55,"tag":140,"props":14619,"children":14620},{"style":164},[14621],{"type":60,"value":183},{"type":55,"tag":140,"props":14623,"children":14624},{"class":142,"line":1003},[14625],{"type":55,"tag":140,"props":14626,"children":14627},{"emptyLinePlaceholder":190},[14628],{"type":60,"value":193},{"type":55,"tag":140,"props":14630,"children":14631},{"class":142,"line":1019},[14632,14637],{"type":55,"tag":140,"props":14633,"children":14634},{"style":147},[14635],{"type":60,"value":14636},"    try",{"type":55,"tag":140,"props":14638,"children":14639},{"style":164},[14640],{"type":60,"value":336},{"type":55,"tag":140,"props":14642,"children":14643},{"class":142,"line":1027},[14644],{"type":55,"tag":140,"props":14645,"children":14646},{"style":2038},[14647],{"type":60,"value":14648},"      \u002F\u002F Get signature from your backend\n",{"type":55,"tag":140,"props":14650,"children":14651},{"class":142,"line":1056},[14652,14657,14661,14665,14669,14673,14677,14681,14685,14689,14693],{"type":55,"tag":140,"props":14653,"children":14654},{"style":200},[14655],{"type":60,"value":14656},"      const",{"type":55,"tag":140,"props":14658,"children":14659},{"style":153},[14660],{"type":60,"value":12720},{"type":55,"tag":140,"props":14662,"children":14663},{"style":164},[14664],{"type":60,"value":355},{"type":55,"tag":140,"props":14666,"children":14667},{"style":147},[14668],{"type":60,"value":360},{"type":55,"tag":140,"props":14670,"children":14671},{"style":225},[14672],{"type":60,"value":365},{"type":55,"tag":140,"props":14674,"children":14675},{"style":368},[14676],{"type":60,"value":274},{"type":55,"tag":140,"props":14678,"children":14679},{"style":164},[14680],{"type":60,"value":178},{"type":55,"tag":140,"props":14682,"children":14683},{"style":170},[14684],{"type":60,"value":379},{"type":55,"tag":140,"props":14686,"children":14687},{"style":164},[14688],{"type":60,"value":178},{"type":55,"tag":140,"props":14690,"children":14691},{"style":164},[14692],{"type":60,"value":296},{"type":55,"tag":140,"props":14694,"children":14695},{"style":164},[14696],{"type":60,"value":336},{"type":55,"tag":140,"props":14698,"children":14699},{"class":142,"line":1069},[14700,14705,14709,14713,14717,14721],{"type":55,"tag":140,"props":14701,"children":14702},{"style":368},[14703],{"type":60,"value":14704},"        method",{"type":55,"tag":140,"props":14706,"children":14707},{"style":164},[14708],{"type":60,"value":285},{"type":55,"tag":140,"props":14710,"children":14711},{"style":164},[14712],{"type":60,"value":167},{"type":55,"tag":140,"props":14714,"children":14715},{"style":170},[14716],{"type":60,"value":413},{"type":55,"tag":140,"props":14718,"children":14719},{"style":164},[14720],{"type":60,"value":178},{"type":55,"tag":140,"props":14722,"children":14723},{"style":164},[14724],{"type":60,"value":422},{"type":55,"tag":140,"props":14726,"children":14727},{"class":142,"line":1082},[14728,14733,14737,14741,14745,14749,14753,14757,14761,14765,14769],{"type":55,"tag":140,"props":14729,"children":14730},{"style":368},[14731],{"type":60,"value":14732},"        headers",{"type":55,"tag":140,"props":14734,"children":14735},{"style":164},[14736],{"type":60,"value":285},{"type":55,"tag":140,"props":14738,"children":14739},{"style":164},[14740],{"type":60,"value":440},{"type":55,"tag":140,"props":14742,"children":14743},{"style":164},[14744],{"type":60,"value":167},{"type":55,"tag":140,"props":14746,"children":14747},{"style":368},[14748],{"type":60,"value":449},{"type":55,"tag":140,"props":14750,"children":14751},{"style":164},[14752],{"type":60,"value":178},{"type":55,"tag":140,"props":14754,"children":14755},{"style":164},[14756],{"type":60,"value":285},{"type":55,"tag":140,"props":14758,"children":14759},{"style":164},[14760],{"type":60,"value":167},{"type":55,"tag":140,"props":14762,"children":14763},{"style":170},[14764],{"type":60,"value":466},{"type":55,"tag":140,"props":14766,"children":14767},{"style":164},[14768],{"type":60,"value":178},{"type":55,"tag":140,"props":14770,"children":14771},{"style":164},[14772],{"type":60,"value":475},{"type":55,"tag":140,"props":14774,"children":14775},{"class":142,"line":1095},[14776,14781,14785,14789,14793,14797,14801,14805,14809,14813,14817,14821,14825,14829,14833],{"type":55,"tag":140,"props":14777,"children":14778},{"style":368},[14779],{"type":60,"value":14780},"        body",{"type":55,"tag":140,"props":14782,"children":14783},{"style":164},[14784],{"type":60,"value":285},{"type":55,"tag":140,"props":14786,"children":14787},{"style":153},[14788],{"type":60,"value":493},{"type":55,"tag":140,"props":14790,"children":14791},{"style":164},[14792],{"type":60,"value":101},{"type":55,"tag":140,"props":14794,"children":14795},{"style":225},[14796],{"type":60,"value":502},{"type":55,"tag":140,"props":14798,"children":14799},{"style":368},[14800],{"type":60,"value":274},{"type":55,"tag":140,"props":14802,"children":14803},{"style":164},[14804],{"type":60,"value":511},{"type":55,"tag":140,"props":14806,"children":14807},{"style":153},[14808],{"type":60,"value":516},{"type":55,"tag":140,"props":14810,"children":14811},{"style":164},[14812],{"type":60,"value":296},{"type":55,"tag":140,"props":14814,"children":14815},{"style":368},[14816],{"type":60,"value":525},{"type":55,"tag":140,"props":14818,"children":14819},{"style":164},[14820],{"type":60,"value":285},{"type":55,"tag":140,"props":14822,"children":14823},{"style":532},[14824],{"type":60,"value":535},{"type":55,"tag":140,"props":14826,"children":14827},{"style":164},[14828],{"type":60,"value":540},{"type":55,"tag":140,"props":14830,"children":14831},{"style":368},[14832],{"type":60,"value":331},{"type":55,"tag":140,"props":14834,"children":14835},{"style":164},[14836],{"type":60,"value":422},{"type":55,"tag":140,"props":14838,"children":14839},{"class":142,"line":1108},[14840,14844,14848],{"type":55,"tag":140,"props":14841,"children":14842},{"style":164},[14843],{"type":60,"value":3464},{"type":55,"tag":140,"props":14845,"children":14846},{"style":368},[14847],{"type":60,"value":331},{"type":55,"tag":140,"props":14849,"children":14850},{"style":164},[14851],{"type":60,"value":183},{"type":55,"tag":140,"props":14853,"children":14854},{"class":142,"line":1121},[14855,14859,14863,14867,14871,14875,14879,14883,14887,14891,14895,14899,14903],{"type":55,"tag":140,"props":14856,"children":14857},{"style":200},[14858],{"type":60,"value":14656},{"type":55,"tag":140,"props":14860,"children":14861},{"style":164},[14862],{"type":60,"value":440},{"type":55,"tag":140,"props":14864,"children":14865},{"style":153},[14866],{"type":60,"value":696},{"type":55,"tag":140,"props":14868,"children":14869},{"style":164},[14870],{"type":60,"value":296},{"type":55,"tag":140,"props":14872,"children":14873},{"style":153},[14874],{"type":60,"value":705},{"type":55,"tag":140,"props":14876,"children":14877},{"style":164},[14878],{"type":60,"value":540},{"type":55,"tag":140,"props":14880,"children":14881},{"style":164},[14882],{"type":60,"value":355},{"type":55,"tag":140,"props":14884,"children":14885},{"style":147},[14886],{"type":60,"value":360},{"type":55,"tag":140,"props":14888,"children":14889},{"style":153},[14890],{"type":60,"value":12720},{"type":55,"tag":140,"props":14892,"children":14893},{"style":164},[14894],{"type":60,"value":101},{"type":55,"tag":140,"props":14896,"children":14897},{"style":225},[14898],{"type":60,"value":730},{"type":55,"tag":140,"props":14900,"children":14901},{"style":368},[14902],{"type":60,"value":233},{"type":55,"tag":140,"props":14904,"children":14905},{"style":164},[14906],{"type":60,"value":183},{"type":55,"tag":140,"props":14908,"children":14909},{"class":142,"line":1137},[14910],{"type":55,"tag":140,"props":14911,"children":14912},{"style":368},[14913],{"type":60,"value":2938},{"type":55,"tag":140,"props":14915,"children":14916},{"class":142,"line":3223},[14917,14922,14926,14930,14934,14938,14942,14946],{"type":55,"tag":140,"props":14918,"children":14919},{"style":147},[14920],{"type":60,"value":14921},"      await",{"type":55,"tag":140,"props":14923,"children":14924},{"style":153},[14925],{"type":60,"value":14092},{"type":55,"tag":140,"props":14927,"children":14928},{"style":164},[14929],{"type":60,"value":101},{"type":55,"tag":140,"props":14931,"children":14932},{"style":153},[14933],{"type":60,"value":14385},{"type":55,"tag":140,"props":14935,"children":14936},{"style":164},[14937],{"type":60,"value":101},{"type":55,"tag":140,"props":14939,"children":14940},{"style":225},[14941],{"type":60,"value":769},{"type":55,"tag":140,"props":14943,"children":14944},{"style":368},[14945],{"type":60,"value":274},{"type":55,"tag":140,"props":14947,"children":14948},{"style":164},[14949],{"type":60,"value":778},{"type":55,"tag":140,"props":14951,"children":14952},{"class":142,"line":3248},[14953,14958,14962,14966,14970,14974],{"type":55,"tag":140,"props":14954,"children":14955},{"style":368},[14956],{"type":60,"value":14957},"        zoomAppRoot",{"type":55,"tag":140,"props":14959,"children":14960},{"style":164},[14961],{"type":60,"value":285},{"type":55,"tag":140,"props":14963,"children":14964},{"style":153},[14965],{"type":60,"value":14152},{"type":55,"tag":140,"props":14967,"children":14968},{"style":164},[14969],{"type":60,"value":101},{"type":55,"tag":140,"props":14971,"children":14972},{"style":153},[14973],{"type":60,"value":14385},{"type":55,"tag":140,"props":14975,"children":14976},{"style":164},[14977],{"type":60,"value":422},{"type":55,"tag":140,"props":14979,"children":14980},{"class":142,"line":3338},[14981,14986,14990,14994,14998,15002],{"type":55,"tag":140,"props":14982,"children":14983},{"style":368},[14984],{"type":60,"value":14985},"        language",{"type":55,"tag":140,"props":14987,"children":14988},{"style":164},[14989],{"type":60,"value":285},{"type":55,"tag":140,"props":14991,"children":14992},{"style":164},[14993],{"type":60,"value":167},{"type":55,"tag":140,"props":14995,"children":14996},{"style":170},[14997],{"type":60,"value":853},{"type":55,"tag":140,"props":14999,"children":15000},{"style":164},[15001],{"type":60,"value":178},{"type":55,"tag":140,"props":15003,"children":15004},{"style":164},[15005],{"type":60,"value":422},{"type":55,"tag":140,"props":15007,"children":15008},{"class":142,"line":3355},[15009,15014,15018,15022],{"type":55,"tag":140,"props":15010,"children":15011},{"style":368},[15012],{"type":60,"value":15013},"        patchJsMedia",{"type":55,"tag":140,"props":15015,"children":15016},{"style":164},[15017],{"type":60,"value":285},{"type":55,"tag":140,"props":15019,"children":15020},{"style":877},[15021],{"type":60,"value":880},{"type":55,"tag":140,"props":15023,"children":15024},{"style":164},[15025],{"type":60,"value":422},{"type":55,"tag":140,"props":15027,"children":15028},{"class":142,"line":3364},[15029,15034,15038,15042],{"type":55,"tag":140,"props":15030,"children":15031},{"style":368},[15032],{"type":60,"value":15033},"        leaveOnPageUnload",{"type":55,"tag":140,"props":15035,"children":15036},{"style":164},[15037],{"type":60,"value":285},{"type":55,"tag":140,"props":15039,"children":15040},{"style":877},[15041],{"type":60,"value":880},{"type":55,"tag":140,"props":15043,"children":15044},{"style":164},[15045],{"type":60,"value":422},{"type":55,"tag":140,"props":15047,"children":15048},{"class":142,"line":3398},[15049,15053,15057],{"type":55,"tag":140,"props":15050,"children":15051},{"style":164},[15052],{"type":60,"value":3464},{"type":55,"tag":140,"props":15054,"children":15055},{"style":368},[15056],{"type":60,"value":331},{"type":55,"tag":140,"props":15058,"children":15059},{"style":164},[15060],{"type":60,"value":183},{"type":55,"tag":140,"props":15062,"children":15063},{"class":142,"line":3449},[15064],{"type":55,"tag":140,"props":15065,"children":15066},{"emptyLinePlaceholder":190},[15067],{"type":60,"value":193},{"type":55,"tag":140,"props":15069,"children":15070},{"class":142,"line":3458},[15071,15075,15079,15083,15087,15091,15095,15099],{"type":55,"tag":140,"props":15072,"children":15073},{"style":147},[15074],{"type":60,"value":14921},{"type":55,"tag":140,"props":15076,"children":15077},{"style":153},[15078],{"type":60,"value":14092},{"type":55,"tag":140,"props":15080,"children":15081},{"style":164},[15082],{"type":60,"value":101},{"type":55,"tag":140,"props":15084,"children":15085},{"style":153},[15086],{"type":60,"value":14385},{"type":55,"tag":140,"props":15088,"children":15089},{"style":164},[15090],{"type":60,"value":101},{"type":55,"tag":140,"props":15092,"children":15093},{"style":225},[15094],{"type":60,"value":1045},{"type":55,"tag":140,"props":15096,"children":15097},{"style":368},[15098],{"type":60,"value":274},{"type":55,"tag":140,"props":15100,"children":15101},{"style":164},[15102],{"type":60,"value":778},{"type":55,"tag":140,"props":15104,"children":15105},{"class":142,"line":3475},[15106,15110],{"type":55,"tag":140,"props":15107,"children":15108},{"style":153},[15109],{"type":60,"value":2978},{"type":55,"tag":140,"props":15111,"children":15112},{"style":164},[15113],{"type":60,"value":422},{"type":55,"tag":140,"props":15115,"children":15116},{"class":142,"line":3483},[15117,15122],{"type":55,"tag":140,"props":15118,"children":15119},{"style":153},[15120],{"type":60,"value":15121},"        sdkKey",{"type":55,"tag":140,"props":15123,"children":15124},{"style":164},[15125],{"type":60,"value":422},{"type":55,"tag":140,"props":15127,"children":15128},{"class":142,"line":3516},[15129,15133],{"type":55,"tag":140,"props":15130,"children":15131},{"style":153},[15132],{"type":60,"value":3003},{"type":55,"tag":140,"props":15134,"children":15135},{"style":164},[15136],{"type":60,"value":422},{"type":55,"tag":140,"props":15138,"children":15139},{"class":142,"line":3566},[15140,15145],{"type":55,"tag":140,"props":15141,"children":15142},{"style":153},[15143],{"type":60,"value":15144},"        password",{"type":55,"tag":140,"props":15146,"children":15147},{"style":164},[15148],{"type":60,"value":422},{"type":55,"tag":140,"props":15150,"children":15151},{"class":142,"line":3575},[15152,15156],{"type":55,"tag":140,"props":15153,"children":15154},{"style":153},[15155],{"type":60,"value":3032},{"type":55,"tag":140,"props":15157,"children":15158},{"style":164},[15159],{"type":60,"value":422},{"type":55,"tag":140,"props":15161,"children":15162},{"class":142,"line":3591},[15163,15167,15171],{"type":55,"tag":140,"props":15164,"children":15165},{"style":164},[15166],{"type":60,"value":3464},{"type":55,"tag":140,"props":15168,"children":15169},{"style":368},[15170],{"type":60,"value":331},{"type":55,"tag":140,"props":15172,"children":15173},{"style":164},[15174],{"type":60,"value":183},{"type":55,"tag":140,"props":15176,"children":15177},{"class":142,"line":6586},[15178,15182,15186,15190,15194,15198],{"type":55,"tag":140,"props":15179,"children":15180},{"style":164},[15181],{"type":60,"value":3938},{"type":55,"tag":140,"props":15183,"children":15184},{"style":147},[15185],{"type":60,"value":4199},{"type":55,"tag":140,"props":15187,"children":15188},{"style":368},[15189],{"type":60,"value":587},{"type":55,"tag":140,"props":15191,"children":15192},{"style":153},[15193],{"type":60,"value":3383},{"type":55,"tag":140,"props":15195,"children":15196},{"style":368},[15197],{"type":60,"value":611},{"type":55,"tag":140,"props":15199,"children":15200},{"style":164},[15201],{"type":60,"value":778},{"type":55,"tag":140,"props":15203,"children":15204},{"class":142,"line":6602},[15205,15210,15214,15218,15223,15227,15232,15236,15240,15245,15250,15254,15259,15263,15267],{"type":55,"tag":140,"props":15206,"children":15207},{"style":225},[15208],{"type":60,"value":15209},"      setError",{"type":55,"tag":140,"props":15211,"children":15212},{"style":368},[15213],{"type":60,"value":274},{"type":55,"tag":140,"props":15215,"children":15216},{"style":153},[15217],{"type":60,"value":3383},{"type":55,"tag":140,"props":15219,"children":15220},{"style":164},[15221],{"type":60,"value":15222}," instanceof",{"type":55,"tag":140,"props":15224,"children":15225},{"style":288},[15226],{"type":60,"value":626},{"type":55,"tag":140,"props":15228,"children":15229},{"style":164},[15230],{"type":60,"value":15231}," ?",{"type":55,"tag":140,"props":15233,"children":15234},{"style":153},[15235],{"type":60,"value":3438},{"type":55,"tag":140,"props":15237,"children":15238},{"style":164},[15239],{"type":60,"value":101},{"type":55,"tag":140,"props":15241,"children":15242},{"style":153},[15243],{"type":60,"value":15244},"message",{"type":55,"tag":140,"props":15246,"children":15247},{"style":164},[15248],{"type":60,"value":15249}," :",{"type":55,"tag":140,"props":15251,"children":15252},{"style":164},[15253],{"type":60,"value":167},{"type":55,"tag":140,"props":15255,"children":15256},{"style":170},[15257],{"type":60,"value":15258},"Failed to join",{"type":55,"tag":140,"props":15260,"children":15261},{"style":164},[15262],{"type":60,"value":178},{"type":55,"tag":140,"props":15264,"children":15265},{"style":368},[15266],{"type":60,"value":331},{"type":55,"tag":140,"props":15268,"children":15269},{"style":164},[15270],{"type":60,"value":183},{"type":55,"tag":140,"props":15272,"children":15273},{"class":142,"line":6610},[15274,15278,15283],{"type":55,"tag":140,"props":15275,"children":15276},{"style":164},[15277],{"type":60,"value":3938},{"type":55,"tag":140,"props":15279,"children":15280},{"style":147},[15281],{"type":60,"value":15282}," finally",{"type":55,"tag":140,"props":15284,"children":15285},{"style":164},[15286],{"type":60,"value":336},{"type":55,"tag":140,"props":15288,"children":15289},{"class":142,"line":6619},[15290,15295,15299,15303,15307],{"type":55,"tag":140,"props":15291,"children":15292},{"style":225},[15293],{"type":60,"value":15294},"      setIsJoining",{"type":55,"tag":140,"props":15296,"children":15297},{"style":368},[15298],{"type":60,"value":274},{"type":55,"tag":140,"props":15300,"children":15301},{"style":877},[15302],{"type":60,"value":14235},{"type":55,"tag":140,"props":15304,"children":15305},{"style":368},[15306],{"type":60,"value":331},{"type":55,"tag":140,"props":15308,"children":15309},{"style":164},[15310],{"type":60,"value":183},{"type":55,"tag":140,"props":15312,"children":15313},{"class":142,"line":6676},[15314],{"type":55,"tag":140,"props":15315,"children":15316},{"style":164},[15317],{"type":60,"value":3572},{"type":55,"tag":140,"props":15319,"children":15320},{"class":142,"line":6725},[15321,15325,15329,15333,15337,15341,15345,15349,15354],{"type":55,"tag":140,"props":15322,"children":15323},{"style":164},[15324],{"type":60,"value":14448},{"type":55,"tag":140,"props":15326,"children":15327},{"style":368},[15328],{"type":60,"value":8165},{"type":55,"tag":140,"props":15330,"children":15331},{"style":153},[15332],{"type":60,"value":280},{"type":55,"tag":140,"props":15334,"children":15335},{"style":164},[15336],{"type":60,"value":296},{"type":55,"tag":140,"props":15338,"children":15339},{"style":153},[15340],{"type":60,"value":318},{"type":55,"tag":140,"props":15342,"children":15343},{"style":164},[15344],{"type":60,"value":296},{"type":55,"tag":140,"props":15346,"children":15347},{"style":153},[15348],{"type":60,"value":301},{"type":55,"tag":140,"props":15350,"children":15351},{"style":368},[15352],{"type":60,"value":15353},"])",{"type":55,"tag":140,"props":15355,"children":15356},{"style":164},[15357],{"type":60,"value":183},{"type":55,"tag":140,"props":15359,"children":15360},{"class":142,"line":6734},[15361],{"type":55,"tag":140,"props":15362,"children":15363},{"emptyLinePlaceholder":190},[15364],{"type":60,"value":193},{"type":55,"tag":140,"props":15366,"children":15367},{"class":142,"line":6750},[15368,15372],{"type":55,"tag":140,"props":15369,"children":15370},{"style":147},[15371],{"type":60,"value":13597},{"type":55,"tag":140,"props":15373,"children":15374},{"style":368},[15375],{"type":60,"value":13602},{"type":55,"tag":140,"props":15377,"children":15378},{"class":142,"line":6758},[15379,15383,15388],{"type":55,"tag":140,"props":15380,"children":15381},{"style":164},[15382],{"type":60,"value":13610},{"type":55,"tag":140,"props":15384,"children":15385},{"style":368},[15386],{"type":60,"value":15387},"div",{"type":55,"tag":140,"props":15389,"children":15390},{"style":164},[15391],{"type":60,"value":2091},{"type":55,"tag":140,"props":15393,"children":15394},{"class":142,"line":6767},[15395,15400,15404,15409,15413,15417,15422,15426,15431,15435,15439,15443,15448,15452,15456,15461,15465,15469,15474,15478],{"type":55,"tag":140,"props":15396,"children":15397},{"style":164},[15398],{"type":60,"value":15399},"      \u003C",{"type":55,"tag":140,"props":15401,"children":15402},{"style":368},[15403],{"type":60,"value":15387},{"type":55,"tag":140,"props":15405,"children":15406},{"style":200},[15407],{"type":60,"value":15408}," ref",{"type":55,"tag":140,"props":15410,"children":15411},{"style":164},[15412],{"type":60,"value":13625},{"type":55,"tag":140,"props":15414,"children":15415},{"style":153},[15416],{"type":60,"value":14545},{"type":55,"tag":140,"props":15418,"children":15419},{"style":164},[15420],{"type":60,"value":15421},"} ",{"type":55,"tag":140,"props":15423,"children":15424},{"style":200},[15425],{"type":60,"value":13087},{"type":55,"tag":140,"props":15427,"children":15428},{"style":164},[15429],{"type":60,"value":15430},"={{",{"type":55,"tag":140,"props":15432,"children":15433},{"style":368},[15434],{"type":60,"value":8697},{"type":55,"tag":140,"props":15436,"children":15437},{"style":164},[15438],{"type":60,"value":285},{"type":55,"tag":140,"props":15440,"children":15441},{"style":164},[15442],{"type":60,"value":167},{"type":55,"tag":140,"props":15444,"children":15445},{"style":170},[15446],{"type":60,"value":15447},"100%",{"type":55,"tag":140,"props":15449,"children":15450},{"style":164},[15451],{"type":60,"value":178},{"type":55,"tag":140,"props":15453,"children":15454},{"style":164},[15455],{"type":60,"value":296},{"type":55,"tag":140,"props":15457,"children":15458},{"style":368},[15459],{"type":60,"value":15460}," height",{"type":55,"tag":140,"props":15462,"children":15463},{"style":164},[15464],{"type":60,"value":285},{"type":55,"tag":140,"props":15466,"children":15467},{"style":164},[15468],{"type":60,"value":167},{"type":55,"tag":140,"props":15470,"children":15471},{"style":170},[15472],{"type":60,"value":15473},"500px",{"type":55,"tag":140,"props":15475,"children":15476},{"style":164},[15477],{"type":60,"value":178},{"type":55,"tag":140,"props":15479,"children":15480},{"style":164},[15481],{"type":60,"value":15482}," }} \u002F>\n",{"type":55,"tag":140,"props":15484,"children":15485},{"class":142,"line":6824},[15486,15490,15494,15498,15502,15507,15511,15516,15520,15524],{"type":55,"tag":140,"props":15487,"children":15488},{"style":164},[15489],{"type":60,"value":15399},{"type":55,"tag":140,"props":15491,"children":15492},{"style":368},[15493],{"type":60,"value":13615},{"type":55,"tag":140,"props":15495,"children":15496},{"style":200},[15497],{"type":60,"value":13620},{"type":55,"tag":140,"props":15499,"children":15500},{"style":164},[15501],{"type":60,"value":13625},{"type":55,"tag":140,"props":15503,"children":15504},{"style":153},[15505],{"type":60,"value":15506},"joinMeeting",{"type":55,"tag":140,"props":15508,"children":15509},{"style":164},[15510],{"type":60,"value":15421},{"type":55,"tag":140,"props":15512,"children":15513},{"style":200},[15514],{"type":60,"value":15515},"disabled",{"type":55,"tag":140,"props":15517,"children":15518},{"style":164},[15519],{"type":60,"value":13625},{"type":55,"tag":140,"props":15521,"children":15522},{"style":153},[15523],{"type":60,"value":14205},{"type":55,"tag":140,"props":15525,"children":15526},{"style":164},[15527],{"type":60,"value":15528},"}>\n",{"type":55,"tag":140,"props":15530,"children":15531},{"class":142,"line":6873},[15532,15537,15542,15547,15551,15556,15560,15564,15568,15572,15576],{"type":55,"tag":140,"props":15533,"children":15534},{"style":164},[15535],{"type":60,"value":15536},"        {",{"type":55,"tag":140,"props":15538,"children":15539},{"style":153},[15540],{"type":60,"value":15541},"isJoining ",{"type":55,"tag":140,"props":15543,"children":15544},{"style":164},[15545],{"type":60,"value":15546},"?",{"type":55,"tag":140,"props":15548,"children":15549},{"style":164},[15550],{"type":60,"value":167},{"type":55,"tag":140,"props":15552,"children":15553},{"style":170},[15554],{"type":60,"value":15555},"Joining...",{"type":55,"tag":140,"props":15557,"children":15558},{"style":164},[15559],{"type":60,"value":178},{"type":55,"tag":140,"props":15561,"children":15562},{"style":164},[15563],{"type":60,"value":15249},{"type":55,"tag":140,"props":15565,"children":15566},{"style":164},[15567],{"type":60,"value":167},{"type":55,"tag":140,"props":15569,"children":15570},{"style":170},[15571],{"type":60,"value":13640},{"type":55,"tag":140,"props":15573,"children":15574},{"style":164},[15575],{"type":60,"value":178},{"type":55,"tag":140,"props":15577,"children":15578},{"style":164},[15579],{"type":60,"value":1143},{"type":55,"tag":140,"props":15581,"children":15582},{"class":142,"line":6889},[15583,15588,15592],{"type":55,"tag":140,"props":15584,"children":15585},{"style":164},[15586],{"type":60,"value":15587},"      \u003C\u002F",{"type":55,"tag":140,"props":15589,"children":15590},{"style":368},[15591],{"type":60,"value":13615},{"type":55,"tag":140,"props":15593,"children":15594},{"style":164},[15595],{"type":60,"value":2091},{"type":55,"tag":140,"props":15597,"children":15598},{"class":142,"line":6897},[15599,15604,15609,15614,15619,15623,15628,15632,15636,15640,15644,15649,15653,15658,15662],{"type":55,"tag":140,"props":15600,"children":15601},{"style":164},[15602],{"type":60,"value":15603},"      {",{"type":55,"tag":140,"props":15605,"children":15606},{"style":153},[15607],{"type":60,"value":15608},"error ",{"type":55,"tag":140,"props":15610,"children":15611},{"style":164},[15612],{"type":60,"value":15613},"&&",{"type":55,"tag":140,"props":15615,"children":15616},{"style":164},[15617],{"type":60,"value":15618}," \u003C",{"type":55,"tag":140,"props":15620,"children":15621},{"style":368},[15622],{"type":60,"value":15387},{"type":55,"tag":140,"props":15624,"children":15625},{"style":200},[15626],{"type":60,"value":15627}," className",{"type":55,"tag":140,"props":15629,"children":15630},{"style":164},[15631],{"type":60,"value":213},{"type":55,"tag":140,"props":15633,"children":15634},{"style":164},[15635],{"type":60,"value":2068},{"type":55,"tag":140,"props":15637,"children":15638},{"style":170},[15639],{"type":60,"value":3412},{"type":55,"tag":140,"props":15641,"children":15642},{"style":164},[15643],{"type":60,"value":2068},{"type":55,"tag":140,"props":15645,"children":15646},{"style":164},[15647],{"type":60,"value":15648},">{",{"type":55,"tag":140,"props":15650,"children":15651},{"style":153},[15652],{"type":60,"value":3412},{"type":55,"tag":140,"props":15654,"children":15655},{"style":164},[15656],{"type":60,"value":15657},"}\u003C\u002F",{"type":55,"tag":140,"props":15659,"children":15660},{"style":368},[15661],{"type":60,"value":15387},{"type":55,"tag":140,"props":15663,"children":15664},{"style":164},[15665],{"type":60,"value":15666},">}\n",{"type":55,"tag":140,"props":15668,"children":15669},{"class":142,"line":6906},[15670,15675,15679],{"type":55,"tag":140,"props":15671,"children":15672},{"style":164},[15673],{"type":60,"value":15674},"    \u003C\u002F",{"type":55,"tag":140,"props":15676,"children":15677},{"style":368},[15678],{"type":60,"value":15387},{"type":55,"tag":140,"props":15680,"children":15681},{"style":164},[15682],{"type":60,"value":2091},{"type":55,"tag":140,"props":15684,"children":15685},{"class":142,"line":6963},[15686,15690],{"type":55,"tag":140,"props":15687,"children":15688},{"style":368},[15689],{"type":60,"value":13661},{"type":55,"tag":140,"props":15691,"children":15692},{"style":164},[15693],{"type":60,"value":183},{"type":55,"tag":140,"props":15695,"children":15696},{"class":142,"line":7012},[15697],{"type":55,"tag":140,"props":15698,"children":15699},{"style":164},[15700],{"type":60,"value":1143},{"type":55,"tag":1912,"props":15702,"children":15704},{"id":15703},"environment-variables-vite",[15705],{"type":60,"value":15706},"Environment Variables (Vite)",{"type":55,"tag":113,"props":15708,"children":15710},{"className":1989,"code":15709,"language":1991,"meta":118,"style":118},"# .env.local\nVITE_AUTH_ENDPOINT=http:\u002F\u002FYOUR_AUTH_SERVER_HOST:4000\nVITE_SDK_KEY=your_sdk_key\n",[15711],{"type":55,"tag":121,"props":15712,"children":15713},{"__ignoreMap":118},[15714,15722,15738],{"type":55,"tag":140,"props":15715,"children":15716},{"class":142,"line":143},[15717],{"type":55,"tag":140,"props":15718,"children":15719},{"style":2038},[15720],{"type":60,"value":15721},"# .env.local\n",{"type":55,"tag":140,"props":15723,"children":15724},{"class":142,"line":186},[15725,15729,15733],{"type":55,"tag":140,"props":15726,"children":15727},{"style":153},[15728],{"type":60,"value":12561},{"type":55,"tag":140,"props":15730,"children":15731},{"style":164},[15732],{"type":60,"value":213},{"type":55,"tag":140,"props":15734,"children":15735},{"style":170},[15736],{"type":60,"value":15737},"http:\u002F\u002FYOUR_AUTH_SERVER_HOST:4000\n",{"type":55,"tag":140,"props":15739,"children":15740},{"class":142,"line":196},[15741,15746,15750],{"type":55,"tag":140,"props":15742,"children":15743},{"style":153},[15744],{"type":60,"value":15745},"VITE_SDK_KEY",{"type":55,"tag":140,"props":15747,"children":15748},{"style":164},[15749],{"type":60,"value":213},{"type":55,"tag":140,"props":15751,"children":15752},{"style":170},[15753],{"type":60,"value":15754},"your_sdk_key\n",{"type":55,"tag":113,"props":15756,"children":15758},{"className":12380,"code":15757,"language":12382,"meta":118,"style":118},"const authEndpoint = import.meta.env.VITE_AUTH_ENDPOINT;\nconst sdkKey = import.meta.env.VITE_SDK_KEY;\n",[15759],{"type":55,"tag":121,"props":15760,"children":15761},{"__ignoreMap":118},[15762,15810],{"type":55,"tag":140,"props":15763,"children":15764},{"class":142,"line":143},[15765,15769,15774,15778,15782,15786,15790,15794,15798,15802,15806],{"type":55,"tag":140,"props":15766,"children":15767},{"style":200},[15768],{"type":60,"value":203},{"type":55,"tag":140,"props":15770,"children":15771},{"style":153},[15772],{"type":60,"value":15773}," authEndpoint ",{"type":55,"tag":140,"props":15775,"children":15776},{"style":164},[15777],{"type":60,"value":213},{"type":55,"tag":140,"props":15779,"children":15780},{"style":147},[15781],{"type":60,"value":12534},{"type":55,"tag":140,"props":15783,"children":15784},{"style":164},[15785],{"type":60,"value":101},{"type":55,"tag":140,"props":15787,"children":15788},{"style":153},[15789],{"type":60,"value":12543},{"type":55,"tag":140,"props":15791,"children":15792},{"style":164},[15793],{"type":60,"value":101},{"type":55,"tag":140,"props":15795,"children":15796},{"style":153},[15797],{"type":60,"value":12552},{"type":55,"tag":140,"props":15799,"children":15800},{"style":164},[15801],{"type":60,"value":101},{"type":55,"tag":140,"props":15803,"children":15804},{"style":153},[15805],{"type":60,"value":12561},{"type":55,"tag":140,"props":15807,"children":15808},{"style":164},[15809],{"type":60,"value":183},{"type":55,"tag":140,"props":15811,"children":15812},{"class":142,"line":186},[15813,15817,15822,15826,15830,15834,15838,15842,15846,15850,15854],{"type":55,"tag":140,"props":15814,"children":15815},{"style":200},[15816],{"type":60,"value":203},{"type":55,"tag":140,"props":15818,"children":15819},{"style":153},[15820],{"type":60,"value":15821}," sdkKey ",{"type":55,"tag":140,"props":15823,"children":15824},{"style":164},[15825],{"type":60,"value":213},{"type":55,"tag":140,"props":15827,"children":15828},{"style":147},[15829],{"type":60,"value":12534},{"type":55,"tag":140,"props":15831,"children":15832},{"style":164},[15833],{"type":60,"value":101},{"type":55,"tag":140,"props":15835,"children":15836},{"style":153},[15837],{"type":60,"value":12543},{"type":55,"tag":140,"props":15839,"children":15840},{"style":164},[15841],{"type":60,"value":101},{"type":55,"tag":140,"props":15843,"children":15844},{"style":153},[15845],{"type":60,"value":12552},{"type":55,"tag":140,"props":15847,"children":15848},{"style":164},[15849],{"type":60,"value":101},{"type":55,"tag":140,"props":15851,"children":15852},{"style":153},[15853],{"type":60,"value":15745},{"type":55,"tag":140,"props":15855,"children":15856},{"style":164},[15857],{"type":60,"value":183},{"type":55,"tag":84,"props":15859,"children":15861},{"id":15860},"detailed-references",[15862],{"type":60,"value":15863},"Detailed References",{"type":55,"tag":1912,"props":15865,"children":15867},{"id":15866},"core-documentation",[15868],{"type":60,"value":15869},"Core Documentation",{"type":55,"tag":1150,"props":15871,"children":15872},{},[15873,15885,15898],{"type":55,"tag":1154,"props":15874,"children":15875},{},[15876,15883],{"type":55,"tag":69,"props":15877,"children":15878},{},[15879],{"type":55,"tag":1247,"props":15880,"children":15881},{"href":1447},[15882],{"type":60,"value":1447},{"type":60,"value":15884}," - Complete navigation guide",{"type":55,"tag":1154,"props":15886,"children":15887},{},[15888,15896],{"type":55,"tag":69,"props":15889,"children":15890},{},[15891],{"type":55,"tag":1247,"props":15892,"children":15894},{"href":15893},"client-view\u002FSKILL.md",[15895],{"type":60,"value":15893},{"type":60,"value":15897}," - Full Client View reference",{"type":55,"tag":1154,"props":15899,"children":15900},{},[15901,15908],{"type":55,"tag":69,"props":15902,"children":15903},{},[15904],{"type":55,"tag":1247,"props":15905,"children":15906},{"href":1249},[15907],{"type":60,"value":1249},{"type":60,"value":15909}," - Full Component View reference",{"type":55,"tag":1912,"props":15911,"children":15913},{"id":15912},"concepts",[15914],{"type":60,"value":15915},"Concepts",{"type":55,"tag":1150,"props":15917,"children":15918},{},[15919,15931],{"type":55,"tag":1154,"props":15920,"children":15921},{},[15922,15929],{"type":55,"tag":69,"props":15923,"children":15924},{},[15925],{"type":55,"tag":1247,"props":15926,"children":15927},{"href":1323},[15928],{"type":60,"value":1323},{"type":60,"value":15930}," - HD video requirements",{"type":55,"tag":1154,"props":15932,"children":15933},{},[15934,15941],{"type":55,"tag":69,"props":15935,"children":15936},{},[15937],{"type":55,"tag":1247,"props":15938,"children":15939},{"href":1391},[15940],{"type":60,"value":1391},{"type":60,"value":1396},{"type":55,"tag":1912,"props":15943,"children":15945},{"id":15944},"troubleshooting",[15946],{"type":60,"value":15947},"Troubleshooting",{"type":55,"tag":1150,"props":15949,"children":15950},{},[15951,15964],{"type":55,"tag":1154,"props":15952,"children":15953},{},[15954,15962],{"type":55,"tag":69,"props":15955,"children":15956},{},[15957],{"type":55,"tag":1247,"props":15958,"children":15960},{"href":15959},"troubleshooting\u002Ferror-codes.md",[15961],{"type":60,"value":15959},{"type":60,"value":15963}," - All SDK error codes",{"type":55,"tag":1154,"props":15965,"children":15966},{},[15967,15974],{"type":55,"tag":69,"props":15968,"children":15969},{},[15970],{"type":55,"tag":1247,"props":15971,"children":15972},{"href":11468},[15973],{"type":60,"value":11468},{"type":60,"value":15975}," - Quick diagnostics",{"type":55,"tag":1912,"props":15977,"children":15979},{"id":15978},"examples",[15980],{"type":60,"value":15981},"Examples",{"type":55,"tag":1150,"props":15983,"children":15984},{},[15985,15997],{"type":55,"tag":1154,"props":15986,"children":15987},{},[15988,15995],{"type":55,"tag":69,"props":15989,"children":15990},{},[15991],{"type":55,"tag":1247,"props":15992,"children":15993},{"href":15893},[15994],{"type":60,"value":15893},{"type":60,"value":15996}," - Complete Client View guide",{"type":55,"tag":1154,"props":15998,"children":15999},{},[16000,16007],{"type":55,"tag":69,"props":16001,"children":16002},{},[16003],{"type":55,"tag":1247,"props":16004,"children":16005},{"href":1249},[16006],{"type":60,"value":1249},{"type":60,"value":16008}," - Component View React integration",{"type":55,"tag":84,"props":16010,"children":16012},{"id":16011},"helper-utilities",[16013],{"type":60,"value":16014},"Helper Utilities",{"type":55,"tag":1912,"props":16016,"children":16018},{"id":16017},"extract-meeting-number-from-invite-link",[16019],{"type":60,"value":16020},"Extract Meeting Number from Invite Link",{"type":55,"tag":113,"props":16022,"children":16024},{"className":2423,"code":16023,"language":2425,"meta":118,"style":118},"\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",[16025],{"type":55,"tag":121,"props":16026,"children":16027},{"__ignoreMap":118},[16028,16036,16124,16132,16220,16271,16328,16335,16342,16350,16430,16454,16522,16529],{"type":55,"tag":140,"props":16029,"children":16030},{"class":142,"line":143},[16031],{"type":55,"tag":140,"props":16032,"children":16033},{"style":2038},[16034],{"type":60,"value":16035},"\u002F\u002F Users can paste full Zoom invite links\n",{"type":55,"tag":140,"props":16037,"children":16038},{"class":142,"line":186},[16039,16044,16048,16052,16056,16060,16065,16069,16073,16077,16082,16086,16090,16095,16099,16103,16107,16112,16116,16120],{"type":55,"tag":140,"props":16040,"children":16041},{"style":153},[16042],{"type":60,"value":16043},"document",{"type":55,"tag":140,"props":16045,"children":16046},{"style":164},[16047],{"type":60,"value":101},{"type":55,"tag":140,"props":16049,"children":16050},{"style":225},[16051],{"type":60,"value":805},{"type":55,"tag":140,"props":16053,"children":16054},{"style":153},[16055],{"type":60,"value":274},{"type":55,"tag":140,"props":16057,"children":16058},{"style":164},[16059],{"type":60,"value":178},{"type":55,"tag":140,"props":16061,"children":16062},{"style":170},[16063],{"type":60,"value":16064},"meeting_number",{"type":55,"tag":140,"props":16066,"children":16067},{"style":164},[16068],{"type":60,"value":178},{"type":55,"tag":140,"props":16070,"children":16071},{"style":153},[16072],{"type":60,"value":331},{"type":55,"tag":140,"props":16074,"children":16075},{"style":164},[16076],{"type":60,"value":101},{"type":55,"tag":140,"props":16078,"children":16079},{"style":225},[16080],{"type":60,"value":16081},"addEventListener",{"type":55,"tag":140,"props":16083,"children":16084},{"style":153},[16085],{"type":60,"value":274},{"type":55,"tag":140,"props":16087,"children":16088},{"style":164},[16089],{"type":60,"value":178},{"type":55,"tag":140,"props":16091,"children":16092},{"style":170},[16093],{"type":60,"value":16094},"input",{"type":55,"tag":140,"props":16096,"children":16097},{"style":164},[16098],{"type":60,"value":178},{"type":55,"tag":140,"props":16100,"children":16101},{"style":164},[16102],{"type":60,"value":296},{"type":55,"tag":140,"props":16104,"children":16105},{"style":164},[16106],{"type":60,"value":587},{"type":55,"tag":140,"props":16108,"children":16109},{"style":277},[16110],{"type":60,"value":16111},"e",{"type":55,"tag":140,"props":16113,"children":16114},{"style":164},[16115],{"type":60,"value":331},{"type":55,"tag":140,"props":16117,"children":16118},{"style":200},[16119],{"type":60,"value":2710},{"type":55,"tag":140,"props":16121,"children":16122},{"style":164},[16123],{"type":60,"value":336},{"type":55,"tag":140,"props":16125,"children":16126},{"class":142,"line":196},[16127],{"type":55,"tag":140,"props":16128,"children":16129},{"style":2038},[16130],{"type":60,"value":16131},"  \u002F\u002F Extract meeting number (9-11 digits)\n",{"type":55,"tag":140,"props":16133,"children":16134},{"class":142,"line":240},[16135,16140,16144,16148,16153,16157,16162,16166,16171,16175,16180,16184,16189,16194,16199,16204,16208,16212,16216],{"type":55,"tag":140,"props":16136,"children":16137},{"style":200},[16138],{"type":60,"value":16139},"  let",{"type":55,"tag":140,"props":16141,"children":16142},{"style":153},[16143],{"type":60,"value":516},{"type":55,"tag":140,"props":16145,"children":16146},{"style":164},[16147],{"type":60,"value":355},{"type":55,"tag":140,"props":16149,"children":16150},{"style":153},[16151],{"type":60,"value":16152}," e",{"type":55,"tag":140,"props":16154,"children":16155},{"style":164},[16156],{"type":60,"value":101},{"type":55,"tag":140,"props":16158,"children":16159},{"style":153},[16160],{"type":60,"value":16161},"target",{"type":55,"tag":140,"props":16163,"children":16164},{"style":164},[16165],{"type":60,"value":101},{"type":55,"tag":140,"props":16167,"children":16168},{"style":153},[16169],{"type":60,"value":16170},"value",{"type":55,"tag":140,"props":16172,"children":16173},{"style":164},[16174],{"type":60,"value":101},{"type":55,"tag":140,"props":16176,"children":16177},{"style":225},[16178],{"type":60,"value":16179},"replace",{"type":55,"tag":140,"props":16181,"children":16182},{"style":368},[16183],{"type":60,"value":274},{"type":55,"tag":140,"props":16185,"children":16186},{"style":164},[16187],{"type":60,"value":16188},"\u002F([^",{"type":55,"tag":140,"props":16190,"children":16191},{"style":170},[16192],{"type":60,"value":16193},"0-9",{"type":55,"tag":140,"props":16195,"children":16196},{"style":164},[16197],{"type":60,"value":16198},"])+\u002F",{"type":55,"tag":140,"props":16200,"children":16201},{"style":532},[16202],{"type":60,"value":16203},"i",{"type":55,"tag":140,"props":16205,"children":16206},{"style":164},[16207],{"type":60,"value":296},{"type":55,"tag":140,"props":16209,"children":16210},{"style":164},[16211],{"type":60,"value":12585},{"type":55,"tag":140,"props":16213,"children":16214},{"style":368},[16215],{"type":60,"value":331},{"type":55,"tag":140,"props":16217,"children":16218},{"style":164},[16219],{"type":60,"value":183},{"type":55,"tag":140,"props":16221,"children":16222},{"class":142,"line":248},[16223,16227,16231,16235,16239,16244,16248,16253,16257,16262,16267],{"type":55,"tag":140,"props":16224,"children":16225},{"style":147},[16226],{"type":60,"value":582},{"type":55,"tag":140,"props":16228,"children":16229},{"style":368},[16230],{"type":60,"value":587},{"type":55,"tag":140,"props":16232,"children":16233},{"style":153},[16234],{"type":60,"value":280},{"type":55,"tag":140,"props":16236,"children":16237},{"style":164},[16238],{"type":60,"value":101},{"type":55,"tag":140,"props":16240,"children":16241},{"style":225},[16242],{"type":60,"value":16243},"match",{"type":55,"tag":140,"props":16245,"children":16246},{"style":368},[16247],{"type":60,"value":274},{"type":55,"tag":140,"props":16249,"children":16250},{"style":164},[16251],{"type":60,"value":16252},"\u002F([",{"type":55,"tag":140,"props":16254,"children":16255},{"style":170},[16256],{"type":60,"value":16193},{"type":55,"tag":140,"props":16258,"children":16259},{"style":164},[16260],{"type":60,"value":16261},"]{9,11})\u002F",{"type":55,"tag":140,"props":16263,"children":16264},{"style":368},[16265],{"type":60,"value":16266},")) ",{"type":55,"tag":140,"props":16268,"children":16269},{"style":164},[16270],{"type":60,"value":778},{"type":55,"tag":140,"props":16272,"children":16273},{"class":142,"line":339},[16274,16278,16282,16286,16290,16294,16298,16302,16306,16310,16315,16320,16324],{"type":55,"tag":140,"props":16275,"children":16276},{"style":153},[16277],{"type":60,"value":1088},{"type":55,"tag":140,"props":16279,"children":16280},{"style":164},[16281],{"type":60,"value":355},{"type":55,"tag":140,"props":16283,"children":16284},{"style":153},[16285],{"type":60,"value":516},{"type":55,"tag":140,"props":16287,"children":16288},{"style":164},[16289],{"type":60,"value":101},{"type":55,"tag":140,"props":16291,"children":16292},{"style":225},[16293],{"type":60,"value":16243},{"type":55,"tag":140,"props":16295,"children":16296},{"style":368},[16297],{"type":60,"value":274},{"type":55,"tag":140,"props":16299,"children":16300},{"style":164},[16301],{"type":60,"value":16252},{"type":55,"tag":140,"props":16303,"children":16304},{"style":170},[16305],{"type":60,"value":16193},{"type":55,"tag":140,"props":16307,"children":16308},{"style":164},[16309],{"type":60,"value":16261},{"type":55,"tag":140,"props":16311,"children":16312},{"style":368},[16313],{"type":60,"value":16314},")[",{"type":55,"tag":140,"props":16316,"children":16317},{"style":532},[16318],{"type":60,"value":16319},"1",{"type":55,"tag":140,"props":16321,"children":16322},{"style":368},[16323],{"type":60,"value":8892},{"type":55,"tag":140,"props":16325,"children":16326},{"style":164},[16327],{"type":60,"value":183},{"type":55,"tag":140,"props":16329,"children":16330},{"class":142,"line":394},[16331],{"type":55,"tag":140,"props":16332,"children":16333},{"style":164},[16334],{"type":60,"value":4272},{"type":55,"tag":140,"props":16336,"children":16337},{"class":142,"line":425},[16338],{"type":55,"tag":140,"props":16339,"children":16340},{"style":368},[16341],{"type":60,"value":2722},{"type":55,"tag":140,"props":16343,"children":16344},{"class":142,"line":478},[16345],{"type":55,"tag":140,"props":16346,"children":16347},{"style":2038},[16348],{"type":60,"value":16349},"  \u002F\u002F Auto-extract password from invite link\n",{"type":55,"tag":140,"props":16351,"children":16352},{"class":142,"line":551},[16353,16357,16362,16366,16370,16374,16378,16382,16386,16390,16394,16398,16402,16407,16412,16417,16422,16426],{"type":55,"tag":140,"props":16354,"children":16355},{"style":200},[16356],{"type":60,"value":345},{"type":55,"tag":140,"props":16358,"children":16359},{"style":153},[16360],{"type":60,"value":16361}," pwdMatch",{"type":55,"tag":140,"props":16363,"children":16364},{"style":164},[16365],{"type":60,"value":355},{"type":55,"tag":140,"props":16367,"children":16368},{"style":153},[16369],{"type":60,"value":16152},{"type":55,"tag":140,"props":16371,"children":16372},{"style":164},[16373],{"type":60,"value":101},{"type":55,"tag":140,"props":16375,"children":16376},{"style":153},[16377],{"type":60,"value":16161},{"type":55,"tag":140,"props":16379,"children":16380},{"style":164},[16381],{"type":60,"value":101},{"type":55,"tag":140,"props":16383,"children":16384},{"style":153},[16385],{"type":60,"value":16170},{"type":55,"tag":140,"props":16387,"children":16388},{"style":164},[16389],{"type":60,"value":101},{"type":55,"tag":140,"props":16391,"children":16392},{"style":225},[16393],{"type":60,"value":16243},{"type":55,"tag":140,"props":16395,"children":16396},{"style":368},[16397],{"type":60,"value":274},{"type":55,"tag":140,"props":16399,"children":16400},{"style":164},[16401],{"type":60,"value":1539},{"type":55,"tag":140,"props":16403,"children":16404},{"style":170},[16405],{"type":60,"value":16406},"pwd=",{"type":55,"tag":140,"props":16408,"children":16409},{"style":164},[16410],{"type":60,"value":16411},"([",{"type":55,"tag":140,"props":16413,"children":16414},{"style":170},[16415],{"type":60,"value":16416},"\\d,\\w",{"type":55,"tag":140,"props":16418,"children":16419},{"style":164},[16420],{"type":60,"value":16421},"]+)\u002F",{"type":55,"tag":140,"props":16423,"children":16424},{"style":368},[16425],{"type":60,"value":331},{"type":55,"tag":140,"props":16427,"children":16428},{"style":164},[16429],{"type":60,"value":183},{"type":55,"tag":140,"props":16431,"children":16432},{"class":142,"line":568},[16433,16437,16441,16446,16450],{"type":55,"tag":140,"props":16434,"children":16435},{"style":147},[16436],{"type":60,"value":582},{"type":55,"tag":140,"props":16438,"children":16439},{"style":368},[16440],{"type":60,"value":587},{"type":55,"tag":140,"props":16442,"children":16443},{"style":153},[16444],{"type":60,"value":16445},"pwdMatch",{"type":55,"tag":140,"props":16447,"children":16448},{"style":368},[16449],{"type":60,"value":611},{"type":55,"tag":140,"props":16451,"children":16452},{"style":164},[16453],{"type":60,"value":778},{"type":55,"tag":140,"props":16455,"children":16456},{"class":142,"line":576},[16457,16461,16465,16469,16473,16477,16481,16485,16489,16493,16497,16501,16505,16510,16514,16518],{"type":55,"tag":140,"props":16458,"children":16459},{"style":153},[16460],{"type":60,"value":13048},{"type":55,"tag":140,"props":16462,"children":16463},{"style":164},[16464],{"type":60,"value":101},{"type":55,"tag":140,"props":16466,"children":16467},{"style":225},[16468],{"type":60,"value":805},{"type":55,"tag":140,"props":16470,"children":16471},{"style":368},[16472],{"type":60,"value":274},{"type":55,"tag":140,"props":16474,"children":16475},{"style":164},[16476],{"type":60,"value":178},{"type":55,"tag":140,"props":16478,"children":16479},{"style":170},[16480],{"type":60,"value":1174},{"type":55,"tag":140,"props":16482,"children":16483},{"style":164},[16484],{"type":60,"value":178},{"type":55,"tag":140,"props":16486,"children":16487},{"style":368},[16488],{"type":60,"value":331},{"type":55,"tag":140,"props":16490,"children":16491},{"style":164},[16492],{"type":60,"value":101},{"type":55,"tag":140,"props":16494,"children":16495},{"style":153},[16496],{"type":60,"value":16170},{"type":55,"tag":140,"props":16498,"children":16499},{"style":164},[16500],{"type":60,"value":355},{"type":55,"tag":140,"props":16502,"children":16503},{"style":153},[16504],{"type":60,"value":16361},{"type":55,"tag":140,"props":16506,"children":16507},{"style":368},[16508],{"type":60,"value":16509},"[",{"type":55,"tag":140,"props":16511,"children":16512},{"style":532},[16513],{"type":60,"value":16319},{"type":55,"tag":140,"props":16515,"children":16516},{"style":368},[16517],{"type":60,"value":8892},{"type":55,"tag":140,"props":16519,"children":16520},{"style":164},[16521],{"type":60,"value":183},{"type":55,"tag":140,"props":16523,"children":16524},{"class":142,"line":674},[16525],{"type":55,"tag":140,"props":16526,"children":16527},{"style":164},[16528],{"type":60,"value":4272},{"type":55,"tag":140,"props":16530,"children":16531},{"class":142,"line":682},[16532,16536,16540],{"type":55,"tag":140,"props":16533,"children":16534},{"style":164},[16535],{"type":60,"value":3597},{"type":55,"tag":140,"props":16537,"children":16538},{"style":153},[16539],{"type":60,"value":331},{"type":55,"tag":140,"props":16541,"children":16542},{"style":164},[16543],{"type":60,"value":183},{"type":55,"tag":1912,"props":16545,"children":16547},{"id":16546},"dynamic-language-switching",[16548],{"type":60,"value":16549},"Dynamic Language Switching",{"type":55,"tag":113,"props":16551,"children":16553},{"className":2423,"code":16552,"language":2425,"meta":118,"style":118},"\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",[16554],{"type":55,"tag":121,"props":16555,"children":16556},{"__ignoreMap":118},[16557,16565,16650,16690,16730,16770,16810],{"type":55,"tag":140,"props":16558,"children":16559},{"class":142,"line":143},[16560],{"type":55,"tag":140,"props":16561,"children":16562},{"style":2038},[16563],{"type":60,"value":16564},"\u002F\u002F Change language at runtime\n",{"type":55,"tag":140,"props":16566,"children":16567},{"class":142,"line":186},[16568,16572,16576,16580,16584,16588,16593,16597,16601,16605,16609,16613,16617,16622,16626,16630,16634,16638,16642,16646],{"type":55,"tag":140,"props":16569,"children":16570},{"style":153},[16571],{"type":60,"value":16043},{"type":55,"tag":140,"props":16573,"children":16574},{"style":164},[16575],{"type":60,"value":101},{"type":55,"tag":140,"props":16577,"children":16578},{"style":225},[16579],{"type":60,"value":805},{"type":55,"tag":140,"props":16581,"children":16582},{"style":153},[16583],{"type":60,"value":274},{"type":55,"tag":140,"props":16585,"children":16586},{"style":164},[16587],{"type":60,"value":178},{"type":55,"tag":140,"props":16589,"children":16590},{"style":170},[16591],{"type":60,"value":16592},"language",{"type":55,"tag":140,"props":16594,"children":16595},{"style":164},[16596],{"type":60,"value":178},{"type":55,"tag":140,"props":16598,"children":16599},{"style":153},[16600],{"type":60,"value":331},{"type":55,"tag":140,"props":16602,"children":16603},{"style":164},[16604],{"type":60,"value":101},{"type":55,"tag":140,"props":16606,"children":16607},{"style":225},[16608],{"type":60,"value":16081},{"type":55,"tag":140,"props":16610,"children":16611},{"style":153},[16612],{"type":60,"value":274},{"type":55,"tag":140,"props":16614,"children":16615},{"style":164},[16616],{"type":60,"value":178},{"type":55,"tag":140,"props":16618,"children":16619},{"style":170},[16620],{"type":60,"value":16621},"change",{"type":55,"tag":140,"props":16623,"children":16624},{"style":164},[16625],{"type":60,"value":178},{"type":55,"tag":140,"props":16627,"children":16628},{"style":164},[16629],{"type":60,"value":296},{"type":55,"tag":140,"props":16631,"children":16632},{"style":164},[16633],{"type":60,"value":587},{"type":55,"tag":140,"props":16635,"children":16636},{"style":277},[16637],{"type":60,"value":16111},{"type":55,"tag":140,"props":16639,"children":16640},{"style":164},[16641],{"type":60,"value":331},{"type":55,"tag":140,"props":16643,"children":16644},{"style":200},[16645],{"type":60,"value":2710},{"type":55,"tag":140,"props":16647,"children":16648},{"style":164},[16649],{"type":60,"value":336},{"type":55,"tag":140,"props":16651,"children":16652},{"class":142,"line":196},[16653,16657,16662,16666,16670,16674,16678,16682,16686],{"type":55,"tag":140,"props":16654,"children":16655},{"style":200},[16656],{"type":60,"value":345},{"type":55,"tag":140,"props":16658,"children":16659},{"style":153},[16660],{"type":60,"value":16661}," lang",{"type":55,"tag":140,"props":16663,"children":16664},{"style":164},[16665],{"type":60,"value":355},{"type":55,"tag":140,"props":16667,"children":16668},{"style":153},[16669],{"type":60,"value":16152},{"type":55,"tag":140,"props":16671,"children":16672},{"style":164},[16673],{"type":60,"value":101},{"type":55,"tag":140,"props":16675,"children":16676},{"style":153},[16677],{"type":60,"value":16161},{"type":55,"tag":140,"props":16679,"children":16680},{"style":164},[16681],{"type":60,"value":101},{"type":55,"tag":140,"props":16683,"children":16684},{"style":153},[16685],{"type":60,"value":16170},{"type":55,"tag":140,"props":16687,"children":16688},{"style":164},[16689],{"type":60,"value":183},{"type":55,"tag":140,"props":16691,"children":16692},{"class":142,"line":240},[16693,16697,16701,16705,16709,16713,16717,16722,16726],{"type":55,"tag":140,"props":16694,"children":16695},{"style":153},[16696],{"type":60,"value":2738},{"type":55,"tag":140,"props":16698,"children":16699},{"style":164},[16700],{"type":60,"value":101},{"type":55,"tag":140,"props":16702,"children":16703},{"style":153},[16704],{"type":60,"value":2640},{"type":55,"tag":140,"props":16706,"children":16707},{"style":164},[16708],{"type":60,"value":101},{"type":55,"tag":140,"props":16710,"children":16711},{"style":225},[16712],{"type":60,"value":2649},{"type":55,"tag":140,"props":16714,"children":16715},{"style":368},[16716],{"type":60,"value":274},{"type":55,"tag":140,"props":16718,"children":16719},{"style":153},[16720],{"type":60,"value":16721},"lang",{"type":55,"tag":140,"props":16723,"children":16724},{"style":368},[16725],{"type":60,"value":331},{"type":55,"tag":140,"props":16727,"children":16728},{"style":164},[16729],{"type":60,"value":183},{"type":55,"tag":140,"props":16731,"children":16732},{"class":142,"line":248},[16733,16737,16741,16745,16749,16754,16758,16762,16766],{"type":55,"tag":140,"props":16734,"children":16735},{"style":153},[16736],{"type":60,"value":2738},{"type":55,"tag":140,"props":16738,"children":16739},{"style":164},[16740],{"type":60,"value":101},{"type":55,"tag":140,"props":16742,"children":16743},{"style":153},[16744],{"type":60,"value":2640},{"type":55,"tag":140,"props":16746,"children":16747},{"style":164},[16748],{"type":60,"value":101},{"type":55,"tag":140,"props":16750,"children":16751},{"style":225},[16752],{"type":60,"value":16753},"reload",{"type":55,"tag":140,"props":16755,"children":16756},{"style":368},[16757],{"type":60,"value":274},{"type":55,"tag":140,"props":16759,"children":16760},{"style":153},[16761],{"type":60,"value":16721},{"type":55,"tag":140,"props":16763,"children":16764},{"style":368},[16765],{"type":60,"value":331},{"type":55,"tag":140,"props":16767,"children":16768},{"style":164},[16769],{"type":60,"value":183},{"type":55,"tag":140,"props":16771,"children":16772},{"class":142,"line":339},[16773,16777,16781,16786,16790,16794,16798,16802,16806],{"type":55,"tag":140,"props":16774,"children":16775},{"style":153},[16776],{"type":60,"value":2738},{"type":55,"tag":140,"props":16778,"children":16779},{"style":164},[16780],{"type":60,"value":101},{"type":55,"tag":140,"props":16782,"children":16783},{"style":225},[16784],{"type":60,"value":16785},"reRender",{"type":55,"tag":140,"props":16787,"children":16788},{"style":368},[16789],{"type":60,"value":274},{"type":55,"tag":140,"props":16791,"children":16792},{"style":164},[16793],{"type":60,"value":511},{"type":55,"tag":140,"props":16795,"children":16796},{"style":153},[16797],{"type":60,"value":16661},{"type":55,"tag":140,"props":16799,"children":16800},{"style":164},[16801],{"type":60,"value":540},{"type":55,"tag":140,"props":16803,"children":16804},{"style":368},[16805],{"type":60,"value":331},{"type":55,"tag":140,"props":16807,"children":16808},{"style":164},[16809],{"type":60,"value":183},{"type":55,"tag":140,"props":16811,"children":16812},{"class":142,"line":394},[16813,16817,16821],{"type":55,"tag":140,"props":16814,"children":16815},{"style":164},[16816],{"type":60,"value":3597},{"type":55,"tag":140,"props":16818,"children":16819},{"style":153},[16820],{"type":60,"value":331},{"type":55,"tag":140,"props":16822,"children":16823},{"style":164},[16824],{"type":60,"value":183},{"type":55,"tag":1912,"props":16826,"children":16828},{"id":16827},"check-system-requirements",[16829],{"type":60,"value":16830},"Check System Requirements",{"type":55,"tag":113,"props":16832,"children":16834},{"className":2423,"code":16833,"language":2425,"meta":118,"style":118},"\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",[16835],{"type":55,"tag":121,"props":16836,"children":16837},{"__ignoreMap":118},[16838,16846,16882,16939,16946,17017,17050],{"type":55,"tag":140,"props":16839,"children":16840},{"class":142,"line":143},[16841],{"type":55,"tag":140,"props":16842,"children":16843},{"style":2038},[16844],{"type":60,"value":16845},"\u002F\u002F Check browser compatibility before initializing\n",{"type":55,"tag":140,"props":16847,"children":16848},{"class":142,"line":186},[16849,16853,16858,16862,16866,16870,16874,16878],{"type":55,"tag":140,"props":16850,"children":16851},{"style":200},[16852],{"type":60,"value":203},{"type":55,"tag":140,"props":16854,"children":16855},{"style":153},[16856],{"type":60,"value":16857}," requirements ",{"type":55,"tag":140,"props":16859,"children":16860},{"style":164},[16861],{"type":60,"value":213},{"type":55,"tag":140,"props":16863,"children":16864},{"style":153},[16865],{"type":60,"value":2445},{"type":55,"tag":140,"props":16867,"children":16868},{"style":164},[16869],{"type":60,"value":101},{"type":55,"tag":140,"props":16871,"children":16872},{"style":225},[16873],{"type":60,"value":2537},{"type":55,"tag":140,"props":16875,"children":16876},{"style":153},[16877],{"type":60,"value":233},{"type":55,"tag":140,"props":16879,"children":16880},{"style":164},[16881],{"type":60,"value":183},{"type":55,"tag":140,"props":16883,"children":16884},{"class":142,"line":196},[16885,16889,16893,16897,16901,16905,16910,16914,16918,16922,16926,16930,16935],{"type":55,"tag":140,"props":16886,"children":16887},{"style":153},[16888],{"type":60,"value":2494},{"type":55,"tag":140,"props":16890,"children":16891},{"style":164},[16892],{"type":60,"value":101},{"type":55,"tag":140,"props":16894,"children":16895},{"style":225},[16896],{"type":60,"value":2503},{"type":55,"tag":140,"props":16898,"children":16899},{"style":153},[16900],{"type":60,"value":274},{"type":55,"tag":140,"props":16902,"children":16903},{"style":164},[16904],{"type":60,"value":178},{"type":55,"tag":140,"props":16906,"children":16907},{"style":170},[16908],{"type":60,"value":16909},"Browser info:",{"type":55,"tag":140,"props":16911,"children":16912},{"style":164},[16913],{"type":60,"value":178},{"type":55,"tag":140,"props":16915,"children":16916},{"style":164},[16917],{"type":60,"value":296},{"type":55,"tag":140,"props":16919,"children":16920},{"style":153},[16921],{"type":60,"value":493},{"type":55,"tag":140,"props":16923,"children":16924},{"style":164},[16925],{"type":60,"value":101},{"type":55,"tag":140,"props":16927,"children":16928},{"style":225},[16929],{"type":60,"value":502},{"type":55,"tag":140,"props":16931,"children":16932},{"style":153},[16933],{"type":60,"value":16934},"(requirements))",{"type":55,"tag":140,"props":16936,"children":16937},{"style":164},[16938],{"type":60,"value":183},{"type":55,"tag":140,"props":16940,"children":16941},{"class":142,"line":240},[16942],{"type":55,"tag":140,"props":16943,"children":16944},{"emptyLinePlaceholder":190},[16945],{"type":60,"value":193},{"type":55,"tag":140,"props":16947,"children":16948},{"class":142,"line":248},[16949,16953,16957,16961,16966,16970,16975,16979,16984,16988,16992,16996,17000,17004,17008,17013],{"type":55,"tag":140,"props":16950,"children":16951},{"style":147},[16952],{"type":60,"value":10716},{"type":55,"tag":140,"props":16954,"children":16955},{"style":153},[16956],{"type":60,"value":587},{"type":55,"tag":140,"props":16958,"children":16959},{"style":164},[16960],{"type":60,"value":592},{"type":55,"tag":140,"props":16962,"children":16963},{"style":153},[16964],{"type":60,"value":16965},"requirements",{"type":55,"tag":140,"props":16967,"children":16968},{"style":164},[16969],{"type":60,"value":101},{"type":55,"tag":140,"props":16971,"children":16972},{"style":153},[16973],{"type":60,"value":16974},"browserInfo",{"type":55,"tag":140,"props":16976,"children":16977},{"style":164},[16978],{"type":60,"value":101},{"type":55,"tag":140,"props":16980,"children":16981},{"style":153},[16982],{"type":60,"value":16983},"isChrome ",{"type":55,"tag":140,"props":16985,"children":16986},{"style":164},[16987],{"type":60,"value":15613},{"type":55,"tag":140,"props":16989,"children":16990},{"style":164},[16991],{"type":60,"value":2800},{"type":55,"tag":140,"props":16993,"children":16994},{"style":153},[16995],{"type":60,"value":16965},{"type":55,"tag":140,"props":16997,"children":16998},{"style":164},[16999],{"type":60,"value":101},{"type":55,"tag":140,"props":17001,"children":17002},{"style":153},[17003],{"type":60,"value":16974},{"type":55,"tag":140,"props":17005,"children":17006},{"style":164},[17007],{"type":60,"value":101},{"type":55,"tag":140,"props":17009,"children":17010},{"style":153},[17011],{"type":60,"value":17012},"isFirefox) ",{"type":55,"tag":140,"props":17014,"children":17015},{"style":164},[17016],{"type":60,"value":778},{"type":55,"tag":140,"props":17018,"children":17019},{"class":142,"line":339},[17020,17025,17029,17033,17038,17042,17046],{"type":55,"tag":140,"props":17021,"children":17022},{"style":225},[17023],{"type":60,"value":17024},"  alert",{"type":55,"tag":140,"props":17026,"children":17027},{"style":368},[17028],{"type":60,"value":274},{"type":55,"tag":140,"props":17030,"children":17031},{"style":164},[17032],{"type":60,"value":178},{"type":55,"tag":140,"props":17034,"children":17035},{"style":170},[17036],{"type":60,"value":17037},"For best experience, use Chrome or Firefox",{"type":55,"tag":140,"props":17039,"children":17040},{"style":164},[17041],{"type":60,"value":178},{"type":55,"tag":140,"props":17043,"children":17044},{"style":368},[17045],{"type":60,"value":331},{"type":55,"tag":140,"props":17047,"children":17048},{"style":164},[17049],{"type":60,"value":183},{"type":55,"tag":140,"props":17051,"children":17052},{"class":142,"line":394},[17053],{"type":55,"tag":140,"props":17054,"children":17055},{"style":164},[17056],{"type":60,"value":1143},{"type":55,"tag":84,"props":17058,"children":17060},{"id":17059},"sample-repositories",[17061],{"type":60,"value":17062},"Sample Repositories",{"type":55,"tag":1660,"props":17064,"children":17065},{},[17066,17082],{"type":55,"tag":1664,"props":17067,"children":17068},{},[17069],{"type":55,"tag":1668,"props":17070,"children":17071},{},[17072,17077],{"type":55,"tag":1672,"props":17073,"children":17074},{},[17075],{"type":60,"value":17076},"Repository",{"type":55,"tag":1672,"props":17078,"children":17079},{},[17080],{"type":60,"value":17081},"Description",{"type":55,"tag":1686,"props":17083,"children":17084},{},[17085,17103,17121,17139],{"type":55,"tag":1668,"props":17086,"children":17087},{},[17088,17098],{"type":55,"tag":1693,"props":17089,"children":17090},{},[17091],{"type":55,"tag":1247,"props":17092,"children":17095},{"href":17093,"rel":17094},"https:\u002F\u002Fgithub.com\u002Fzoom\u002Fmeetingsdk-web-sample",[1468],[17096],{"type":60,"value":17097},"meetingsdk-web-sample",{"type":55,"tag":1693,"props":17099,"children":17100},{},[17101],{"type":60,"value":17102},"Official samples (Client View & Component View)",{"type":55,"tag":1668,"props":17104,"children":17105},{},[17106,17116],{"type":55,"tag":1693,"props":17107,"children":17108},{},[17109],{"type":55,"tag":1247,"props":17110,"children":17113},{"href":17111,"rel":17112},"https:\u002F\u002Fgithub.com\u002Fzoom\u002Fmeetingsdk-react-sample",[1468],[17114],{"type":60,"value":17115},"meetingsdk-react-sample",{"type":55,"tag":1693,"props":17117,"children":17118},{},[17119],{"type":60,"value":17120},"React integration with TypeScript + Vite",{"type":55,"tag":1668,"props":17122,"children":17123},{},[17124,17134],{"type":55,"tag":1693,"props":17125,"children":17126},{},[17127],{"type":55,"tag":1247,"props":17128,"children":17131},{"href":17129,"rel":17130},"https:\u002F\u002Fgithub.com\u002Fzoom\u002Fmeetingsdk-web",[1468],[17132],{"type":60,"value":17133},"meetingsdk-web",{"type":55,"tag":1693,"props":17135,"children":17136},{},[17137],{"type":60,"value":17138},"SDK source with helper.html",{"type":55,"tag":1668,"props":17140,"children":17141},{},[17142,17152],{"type":55,"tag":1693,"props":17143,"children":17144},{},[17145],{"type":55,"tag":1247,"props":17146,"children":17149},{"href":17147,"rel":17148},"https:\u002F\u002Fgithub.com\u002Fzoom\u002Fmeetingsdk-auth-endpoint-sample",[1468],[17150],{"type":60,"value":17151},"meetingsdk-auth-endpoint-sample",{"type":55,"tag":1693,"props":17153,"children":17154},{},[17155],{"type":60,"value":17156},"Signature generation backend",{"type":55,"tag":84,"props":17158,"children":17160},{"id":17159},"official-resources",[17161],{"type":60,"value":17162},"Official Resources",{"type":55,"tag":1150,"props":17164,"children":17165},{},[17166,17181,17195,17209],{"type":55,"tag":1154,"props":17167,"children":17168},{},[17169,17174,17175],{"type":55,"tag":69,"props":17170,"children":17171},{},[17172],{"type":60,"value":17173},"Official docs",{"type":60,"value":11465},{"type":55,"tag":1247,"props":17176,"children":17179},{"href":17177,"rel":17178},"https:\u002F\u002Fdevelopers.zoom.us\u002Fdocs\u002Fmeeting-sdk\u002Fweb\u002F",[1468],[17180],{"type":60,"value":17177},{"type":55,"tag":1154,"props":17182,"children":17183},{},[17184,17188,17189],{"type":55,"tag":69,"props":17185,"children":17186},{},[17187],{"type":60,"value":4534},{"type":60,"value":11465},{"type":55,"tag":1247,"props":17190,"children":17193},{"href":17191,"rel":17192},"https:\u002F\u002Fmarketplacefront.zoom.us\u002Fsdk\u002Fmeeting\u002Fweb\u002Findex.html",[1468],[17194],{"type":60,"value":17191},{"type":55,"tag":1154,"props":17196,"children":17197},{},[17198,17202,17203],{"type":55,"tag":69,"props":17199,"children":17200},{},[17201],{"type":60,"value":8329},{"type":60,"value":11465},{"type":55,"tag":1247,"props":17204,"children":17207},{"href":17205,"rel":17206},"https:\u002F\u002Fmarketplacefront.zoom.us\u002Fsdk\u002Fmeeting\u002Fweb\u002Fcomponents\u002Findex.html",[1468],[17208],{"type":60,"value":17205},{"type":55,"tag":1154,"props":17210,"children":17211},{},[17212,17217,17218],{"type":55,"tag":69,"props":17213,"children":17214},{},[17215],{"type":60,"value":17216},"Developer forum",{"type":60,"value":11465},{"type":55,"tag":1247,"props":17219,"children":17222},{"href":17220,"rel":17221},"https:\u002F\u002Fdevforum.zoom.us\u002F",[1468],[17223],{"type":60,"value":17220},{"type":55,"tag":17225,"props":17226,"children":17227},"hr",{},[],{"type":55,"tag":63,"props":17229,"children":17230},{},[17231,17236],{"type":55,"tag":69,"props":17232,"children":17233},{},[17234],{"type":60,"value":17235},"Documentation Version",{"type":60,"value":17237},": Based on Zoom Web Meeting SDK v3.11+",{"type":55,"tag":63,"props":17239,"children":17240},{},[17241,17246,17248,17252],{"type":55,"tag":69,"props":17242,"children":17243},{},[17244],{"type":60,"value":17245},"Need help?",{"type":60,"value":17247}," Start with ",{"type":55,"tag":1247,"props":17249,"children":17250},{"href":1447},[17251],{"type":60,"value":1447},{"type":60,"value":17253}," for complete navigation.",{"type":55,"tag":84,"props":17255,"children":17257},{"id":17256},"merged-from-meeting-sdkwebskillmd",[17258],{"type":60,"value":17259},"Merged from meeting-sdk\u002Fweb\u002FSKILL.md",{"type":55,"tag":56,"props":17261,"children":17263},{"id":17262},"zoom-meeting-sdk-web-documentation-index",[17264],{"type":60,"value":17265},"Zoom Meeting SDK (Web) - Documentation Index",{"type":55,"tag":63,"props":17267,"children":17268},{},[17269],{"type":60,"value":17270},"Quick navigation guide for all Web SDK documentation.",{"type":55,"tag":84,"props":17272,"children":17274},{"id":17273},"start-here",[17275],{"type":60,"value":17276},"Start Here",{"type":55,"tag":1660,"props":17278,"children":17279},{},[17280,17295],{"type":55,"tag":1664,"props":17281,"children":17282},{},[17283],{"type":55,"tag":1668,"props":17284,"children":17285},{},[17286,17291],{"type":55,"tag":1672,"props":17287,"children":17288},{},[17289],{"type":60,"value":17290},"Document",{"type":55,"tag":1672,"props":17292,"children":17293},{},[17294],{"type":60,"value":17081},{"type":55,"tag":1686,"props":17296,"children":17297},{},[17298],{"type":55,"tag":1668,"props":17299,"children":17300},{},[17301,17311],{"type":55,"tag":1693,"props":17302,"children":17303},{},[17304],{"type":55,"tag":69,"props":17305,"children":17306},{},[17307],{"type":55,"tag":1247,"props":17308,"children":17309},{"href":1447},[17310],{"type":60,"value":1447},{"type":55,"tag":1693,"props":17312,"children":17313},{},[17314],{"type":60,"value":17315},"Main entry point - Quick starts for both Client View and Component View",{"type":55,"tag":84,"props":17317,"children":17319},{"id":17318},"by-view-type",[17320],{"type":60,"value":17321},"By View Type",{"type":55,"tag":1912,"props":17323,"children":17325},{"id":17324},"client-view-full-page",[17326],{"type":60,"value":17327},"Client View (Full-Page)",{"type":55,"tag":1660,"props":17329,"children":17330},{},[17331,17345],{"type":55,"tag":1664,"props":17332,"children":17333},{},[17334],{"type":55,"tag":1668,"props":17335,"children":17336},{},[17337,17341],{"type":55,"tag":1672,"props":17338,"children":17339},{},[17340],{"type":60,"value":17290},{"type":55,"tag":1672,"props":17342,"children":17343},{},[17344],{"type":60,"value":17081},{"type":55,"tag":1686,"props":17346,"children":17347},{},[17348],{"type":55,"tag":1668,"props":17349,"children":17350},{},[17351,17361],{"type":55,"tag":1693,"props":17352,"children":17353},{},[17354],{"type":55,"tag":69,"props":17355,"children":17356},{},[17357],{"type":55,"tag":1247,"props":17358,"children":17359},{"href":15893},[17360],{"type":60,"value":15893},{"type":55,"tag":1693,"props":17362,"children":17363},{},[17364],{"type":60,"value":17365},"Complete Client View reference",{"type":55,"tag":1912,"props":17367,"children":17369},{"id":17368},"component-view-embeddable",[17370],{"type":60,"value":17371},"Component View (Embeddable)",{"type":55,"tag":1660,"props":17373,"children":17374},{},[17375,17389],{"type":55,"tag":1664,"props":17376,"children":17377},{},[17378],{"type":55,"tag":1668,"props":17379,"children":17380},{},[17381,17385],{"type":55,"tag":1672,"props":17382,"children":17383},{},[17384],{"type":60,"value":17290},{"type":55,"tag":1672,"props":17386,"children":17387},{},[17388],{"type":60,"value":17081},{"type":55,"tag":1686,"props":17390,"children":17391},{},[17392],{"type":55,"tag":1668,"props":17393,"children":17394},{},[17395,17405],{"type":55,"tag":1693,"props":17396,"children":17397},{},[17398],{"type":55,"tag":69,"props":17399,"children":17400},{},[17401],{"type":55,"tag":1247,"props":17402,"children":17403},{"href":1249},[17404],{"type":60,"value":1249},{"type":55,"tag":1693,"props":17406,"children":17407},{},[17408],{"type":60,"value":17409},"Complete Component View reference",{"type":55,"tag":84,"props":17411,"children":17413},{"id":17412},"concepts-1",[17414],{"type":60,"value":15915},{"type":55,"tag":1660,"props":17416,"children":17417},{},[17418,17432],{"type":55,"tag":1664,"props":17419,"children":17420},{},[17421],{"type":55,"tag":1668,"props":17422,"children":17423},{},[17424,17428],{"type":55,"tag":1672,"props":17425,"children":17426},{},[17427],{"type":60,"value":17290},{"type":55,"tag":1672,"props":17429,"children":17430},{},[17431],{"type":60,"value":17081},{"type":55,"tag":1686,"props":17433,"children":17434},{},[17435,17453],{"type":55,"tag":1668,"props":17436,"children":17437},{},[17438,17448],{"type":55,"tag":1693,"props":17439,"children":17440},{},[17441],{"type":55,"tag":69,"props":17442,"children":17443},{},[17444],{"type":55,"tag":1247,"props":17445,"children":17446},{"href":1323},[17447],{"type":60,"value":1323},{"type":55,"tag":1693,"props":17449,"children":17450},{},[17451],{"type":60,"value":17452},"HD video requirements, COOP\u002FCOEP headers",{"type":55,"tag":1668,"props":17454,"children":17455},{},[17456,17466],{"type":55,"tag":1693,"props":17457,"children":17458},{},[17459],{"type":55,"tag":69,"props":17460,"children":17461},{},[17462],{"type":55,"tag":1247,"props":17463,"children":17464},{"href":1391},[17465],{"type":60,"value":1391},{"type":55,"tag":1693,"props":17467,"children":17468},{},[17469],{"type":60,"value":17470},"Feature matrix by browser",{"type":55,"tag":84,"props":17472,"children":17474},{"id":17473},"examples-1",[17475],{"type":60,"value":15981},{"type":55,"tag":1660,"props":17477,"children":17478},{},[17479,17493],{"type":55,"tag":1664,"props":17480,"children":17481},{},[17482],{"type":55,"tag":1668,"props":17483,"children":17484},{},[17485,17489],{"type":55,"tag":1672,"props":17486,"children":17487},{},[17488],{"type":60,"value":17290},{"type":55,"tag":1672,"props":17490,"children":17491},{},[17492],{"type":60,"value":17081},{"type":55,"tag":1686,"props":17494,"children":17495},{},[17496,17512],{"type":55,"tag":1668,"props":17497,"children":17498},{},[17499,17507],{"type":55,"tag":1693,"props":17500,"children":17501},{},[17502],{"type":55,"tag":1247,"props":17503,"children":17505},{"href":17504},"examples\u002Fclient-view-basic.md",[17506],{"type":60,"value":17504},{"type":55,"tag":1693,"props":17508,"children":17509},{},[17510],{"type":60,"value":17511},"Basic Client View integration",{"type":55,"tag":1668,"props":17513,"children":17514},{},[17515,17523],{"type":55,"tag":1693,"props":17516,"children":17517},{},[17518],{"type":55,"tag":1247,"props":17519,"children":17521},{"href":17520},"examples\u002Fcomponent-view-react.md",[17522],{"type":60,"value":17520},{"type":55,"tag":1693,"props":17524,"children":17525},{},[17526],{"type":60,"value":17527},"React integration with Component View",{"type":55,"tag":84,"props":17529,"children":17531},{"id":17530},"troubleshooting-1",[17532],{"type":60,"value":15947},{"type":55,"tag":1660,"props":17534,"children":17535},{},[17536,17550],{"type":55,"tag":1664,"props":17537,"children":17538},{},[17539],{"type":55,"tag":1668,"props":17540,"children":17541},{},[17542,17546],{"type":55,"tag":1672,"props":17543,"children":17544},{},[17545],{"type":60,"value":17290},{"type":55,"tag":1672,"props":17547,"children":17548},{},[17549],{"type":60,"value":17081},{"type":55,"tag":1686,"props":17551,"children":17552},{},[17553,17571],{"type":55,"tag":1668,"props":17554,"children":17555},{},[17556,17566],{"type":55,"tag":1693,"props":17557,"children":17558},{},[17559],{"type":55,"tag":69,"props":17560,"children":17561},{},[17562],{"type":55,"tag":1247,"props":17563,"children":17564},{"href":15959},[17565],{"type":60,"value":15959},{"type":55,"tag":1693,"props":17567,"children":17568},{},[17569],{"type":60,"value":17570},"All SDK error codes (3000-10000 range)",{"type":55,"tag":1668,"props":17572,"children":17573},{},[17574,17584],{"type":55,"tag":1693,"props":17575,"children":17576},{},[17577],{"type":55,"tag":69,"props":17578,"children":17579},{},[17580],{"type":55,"tag":1247,"props":17581,"children":17582},{"href":11468},[17583],{"type":60,"value":11468},{"type":55,"tag":1693,"props":17585,"children":17586},{},[17587],{"type":60,"value":17588},"Quick diagnostics and fixes",{"type":55,"tag":84,"props":17590,"children":17592},{"id":17591},"by-topic",[17593],{"type":60,"value":17594},"By Topic",{"type":55,"tag":1912,"props":17596,"children":17598},{"id":17597},"authentication",[17599],{"type":60,"value":17600},"Authentication",{"type":55,"tag":1150,"props":17602,"children":17603},{},[17604,17615],{"type":55,"tag":1154,"props":17605,"children":17606},{},[17607,17613],{"type":55,"tag":1247,"props":17608,"children":17610},{"href":17609},"SKILL.md#authentication-endpoint-required",[17611],{"type":60,"value":17612},"SKILL.md#authentication-endpoint",{"type":60,"value":17614}," - Signature generation",{"type":55,"tag":1154,"props":17616,"children":17617},{},[17618,17623],{"type":55,"tag":1247,"props":17619,"children":17621},{"href":17620},"SKILL.md#authorization-requirements-2026-update",[17622],{"type":60,"value":17620},{"type":60,"value":17624}," - OBF tokens",{"type":55,"tag":1912,"props":17626,"children":17628},{"id":17627},"hd-video-performance",[17629],{"type":60,"value":17630},"HD Video & Performance",{"type":55,"tag":1150,"props":17632,"children":17633},{},[17634],{"type":55,"tag":1154,"props":17635,"children":17636},{},[17637,17641],{"type":55,"tag":1247,"props":17638,"children":17639},{"href":1323},[17640],{"type":60,"value":1323},{"type":60,"value":17642}," - Enable 720p\u002F1080p",{"type":55,"tag":1912,"props":17644,"children":17646},{"id":17645},"events-callbacks",[17647],{"type":60,"value":17648},"Events & Callbacks",{"type":55,"tag":1150,"props":17650,"children":17651},{},[17652,17662],{"type":55,"tag":1154,"props":17653,"children":17654},{},[17655,17660],{"type":55,"tag":1247,"props":17656,"children":17658},{"href":17657},"SKILL.md#event-listeners-client-view",[17659],{"type":60,"value":17657},{"type":60,"value":17661}," - Client View events",{"type":55,"tag":1154,"props":17663,"children":17664},{},[17665,17670],{"type":55,"tag":1247,"props":17666,"children":17668},{"href":17667},"SKILL.md#event-listeners-component-view",[17669],{"type":60,"value":17667},{"type":60,"value":17671}," - Component View events",{"type":55,"tag":1912,"props":17673,"children":17675},{"id":17674},"government-zfg",[17676],{"type":60,"value":17677},"Government (ZFG)",{"type":55,"tag":1150,"props":17679,"children":17680},{},[17681],{"type":55,"tag":1154,"props":17682,"children":17683},{},[17684,17689],{"type":55,"tag":1247,"props":17685,"children":17687},{"href":17686},"SKILL.md#zoom-for-government-zfg",[17688],{"type":60,"value":17686},{"type":60,"value":17690}," - ZFG configuration",{"type":55,"tag":1912,"props":17692,"children":17694},{"id":17693},"china-cdn-1",[17695],{"type":60,"value":12282},{"type":55,"tag":1150,"props":17697,"children":17698},{},[17699],{"type":55,"tag":1154,"props":17700,"children":17701},{},[17702,17707],{"type":55,"tag":1247,"props":17703,"children":17705},{"href":17704},"SKILL.md#china-cdn",[17706],{"type":60,"value":17704},{"type":60,"value":17708}," - China-specific CDN",{"type":55,"tag":84,"props":17710,"children":17712},{"id":17711},"quick-reference",[17713],{"type":60,"value":17714},"Quick Reference",{"type":55,"tag":1912,"props":17716,"children":17718},{"id":17717},"client-view-vs-component-view-1",[17719],{"type":60,"value":1286},{"type":55,"tag":1660,"props":17721,"children":17722},{},[17723,17741],{"type":55,"tag":1664,"props":17724,"children":17725},{},[17726],{"type":55,"tag":1668,"props":17727,"children":17728},{},[17729,17733,17737],{"type":55,"tag":1672,"props":17730,"children":17731},{},[17732],{"type":60,"value":1676},{"type":55,"tag":1672,"props":17734,"children":17735},{},[17736],{"type":60,"value":73},{"type":55,"tag":1672,"props":17738,"children":17739},{},[17740],{"type":60,"value":80},{"type":55,"tag":1686,"props":17742,"children":17743},{},[17744,17770,17788,17816],{"type":55,"tag":1668,"props":17745,"children":17746},{},[17747,17754,17762],{"type":55,"tag":1693,"props":17748,"children":17749},{},[17750],{"type":55,"tag":69,"props":17751,"children":17752},{},[17753],{"type":60,"value":1700},{"type":55,"tag":1693,"props":17755,"children":17756},{},[17757],{"type":55,"tag":121,"props":17758,"children":17760},{"className":17759},[],[17761],{"type":60,"value":1709},{"type":55,"tag":1693,"props":17763,"children":17764},{},[17765],{"type":55,"tag":121,"props":17766,"children":17768},{"className":17767},[],[17769],{"type":60,"value":1720},{"type":55,"tag":1668,"props":17771,"children":17772},{},[17773,17780,17784],{"type":55,"tag":1693,"props":17774,"children":17775},{},[17776],{"type":55,"tag":69,"props":17777,"children":17778},{},[17779],{"type":60,"value":1733},{"type":55,"tag":1693,"props":17781,"children":17782},{},[17783],{"type":60,"value":1738},{"type":55,"tag":1693,"props":17785,"children":17786},{},[17787],{"type":60,"value":1743},{"type":55,"tag":1668,"props":17789,"children":17790},{},[17791,17798,17807],{"type":55,"tag":1693,"props":17792,"children":17793},{},[17794],{"type":55,"tag":69,"props":17795,"children":17796},{},[17797],{"type":60,"value":1775},{"type":55,"tag":1693,"props":17799,"children":17800},{},[17801,17806],{"type":55,"tag":121,"props":17802,"children":17804},{"className":17803},[],[17805],{"type":60,"value":1182},{"type":60,"value":1785},{"type":55,"tag":1693,"props":17808,"children":17809},{},[17810,17815],{"type":55,"tag":121,"props":17811,"children":17813},{"className":17812},[],[17814],{"type":60,"value":1174},{"type":60,"value":1795},{"type":55,"tag":1668,"props":17817,"children":17818},{},[17819,17826,17834],{"type":55,"tag":1693,"props":17820,"children":17821},{},[17822],{"type":55,"tag":69,"props":17823,"children":17824},{},[17825],{"type":60,"value":1806},{"type":55,"tag":1693,"props":17827,"children":17828},{},[17829],{"type":55,"tag":121,"props":17830,"children":17832},{"className":17831},[],[17833],{"type":60,"value":1815},{"type":55,"tag":1693,"props":17835,"children":17836},{},[17837,17842,17843],{"type":55,"tag":121,"props":17838,"children":17840},{"className":17839},[],[17841],{"type":60,"value":1824},{"type":60,"value":1539},{"type":55,"tag":121,"props":17844,"children":17846},{"className":17845},[],[17847],{"type":60,"value":1831},{"type":55,"tag":1912,"props":17849,"children":17851},{"id":17850},"key-gotchas",[17852],{"type":60,"value":17853},"Key Gotchas",{"type":55,"tag":1268,"props":17855,"children":17856},{},[17857,17890,17914],{"type":55,"tag":1154,"props":17858,"children":17859},{},[17860,17865],{"type":55,"tag":69,"props":17861,"children":17862},{},[17863],{"type":60,"value":17864},"Password spelling differs between views!",{"type":55,"tag":1150,"props":17866,"children":17867},{},[17868,17879],{"type":55,"tag":1154,"props":17869,"children":17870},{},[17871,17873,17878],{"type":60,"value":17872},"Client View: ",{"type":55,"tag":121,"props":17874,"children":17876},{"className":17875},[],[17877],{"type":60,"value":1182},{"type":60,"value":1785},{"type":55,"tag":1154,"props":17880,"children":17881},{},[17882,17884,17889],{"type":60,"value":17883},"Component View: ",{"type":55,"tag":121,"props":17885,"children":17887},{"className":17886},[],[17888],{"type":60,"value":1174},{"type":60,"value":1795},{"type":55,"tag":1154,"props":17891,"children":17892},{},[17893,17898],{"type":55,"tag":69,"props":17894,"children":17895},{},[17896],{"type":60,"value":17897},"SharedArrayBuffer required for HD features",{"type":55,"tag":1150,"props":17899,"children":17900},{},[17901,17905,17910],{"type":55,"tag":1154,"props":17902,"children":17903},{},[17904],{"type":60,"value":10665},{"type":55,"tag":1154,"props":17906,"children":17907},{},[17908],{"type":60,"value":17909},"Gallery view (25 videos)",{"type":55,"tag":1154,"props":17911,"children":17912},{},[17913],{"type":60,"value":10675},{"type":55,"tag":1154,"props":17915,"children":17916},{},[17917,17922],{"type":55,"tag":69,"props":17918,"children":17919},{},[17920],{"type":60,"value":17921},"March 2026 Authorization Change",{"type":55,"tag":1150,"props":17923,"children":17924},{},[17925],{"type":55,"tag":1154,"props":17926,"children":17927},{},[17928],{"type":60,"value":17929},"Apps joining external meetings need OBF or ZAK tokens",{"type":55,"tag":84,"props":17931,"children":17933},{"id":17932},"external-resources",[17934],{"type":60,"value":17935},"External Resources",{"type":55,"tag":1150,"props":17937,"children":17938},{},[17939,17952,17966,17980],{"type":55,"tag":1154,"props":17940,"children":17941},{},[17942,17946,17947],{"type":55,"tag":69,"props":17943,"children":17944},{},[17945],{"type":60,"value":17173},{"type":60,"value":11465},{"type":55,"tag":1247,"props":17948,"children":17950},{"href":17177,"rel":17949},[1468],[17951],{"type":60,"value":17177},{"type":55,"tag":1154,"props":17953,"children":17954},{},[17955,17960,17961],{"type":55,"tag":69,"props":17956,"children":17957},{},[17958],{"type":60,"value":17959},"Client View API",{"type":60,"value":11465},{"type":55,"tag":1247,"props":17962,"children":17964},{"href":17191,"rel":17963},[1468],[17965],{"type":60,"value":17191},{"type":55,"tag":1154,"props":17967,"children":17968},{},[17969,17974,17975],{"type":55,"tag":69,"props":17970,"children":17971},{},[17972],{"type":60,"value":17973},"Component View API",{"type":60,"value":11465},{"type":55,"tag":1247,"props":17976,"children":17978},{"href":17205,"rel":17977},[1468],[17979],{"type":60,"value":17205},{"type":55,"tag":1154,"props":17981,"children":17982},{},[17983,17988,17989],{"type":55,"tag":69,"props":17984,"children":17985},{},[17986],{"type":60,"value":17987},"GitHub samples",{"type":60,"value":11465},{"type":55,"tag":1247,"props":17990,"children":17992},{"href":17093,"rel":17991},[1468],[17993],{"type":60,"value":17093},{"type":55,"tag":84,"props":17995,"children":17997},{"id":17996},"operations",[17998],{"type":60,"value":17999},"Operations",{"type":55,"tag":1150,"props":18001,"children":18002},{},[18003],{"type":55,"tag":1154,"props":18004,"children":18005},{},[18006,18011],{"type":55,"tag":1247,"props":18007,"children":18009},{"href":18008},"RUNBOOK.md",[18010],{"type":60,"value":18008},{"type":60,"value":18012}," - 5-minute preflight and debugging checklist.",{"type":55,"tag":13087,"props":18014,"children":18015},{},[18016],{"type":60,"value":18017},"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":18019,"total":18202},[18020,18040,18054,18066,18085,18098,18119,18136,18150,18165,18173,18186],{"slug":18021,"name":18021,"fn":18022,"description":18023,"org":18024,"tags":18025,"stars":18037,"repoUrl":18038,"updatedAt":18039},"algorithmic-art","create algorithmic art with p5.js","Creating algorithmic art using p5.js with seeded randomness and interactive parameter exploration. Use this when users request creating art using code, generative art, algorithmic art, flow fields, or particle systems. Create original algorithmic art rather than copying existing artists' work to avoid copyright violations.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[18026,18029,18032,18035],{"name":18027,"slug":18028,"type":16},"Creative","creative",{"name":18030,"slug":18031,"type":16},"Design","design",{"name":18033,"slug":18034,"type":16},"Generative Art","generative-art",{"name":18036,"slug":2425,"type":16},"JavaScript",161831,"https:\u002F\u002Fgithub.com\u002Fanthropics\u002Fskills","2026-04-06T17:56:15.455818",{"slug":18041,"name":18041,"fn":18042,"description":18043,"org":18044,"tags":18045,"stars":18037,"repoUrl":18038,"updatedAt":18053},"brand-guidelines","apply Anthropic brand colors and typography","Applies Anthropic's official brand colors and typography to any sort of artifact that may benefit from having Anthropic's look-and-feel. Use it when brand colors or style guidelines, visual formatting, or company design standards apply.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[18046,18049,18050],{"name":18047,"slug":18048,"type":16},"Branding","branding",{"name":18030,"slug":18031,"type":16},{"name":18051,"slug":18052,"type":16},"Typography","typography","2026-04-06T17:56:05.042852",{"slug":18055,"name":18055,"fn":18056,"description":18057,"org":18058,"tags":18059,"stars":18037,"repoUrl":18038,"updatedAt":18065},"canvas-design","create posters and visual art as PNG or PDF","Create beautiful visual art in .png and .pdf documents using design philosophy. You should use this skill when the user asks to create a poster, piece of art, design, or other static piece. Create original visual designs, never copying existing artists' work to avoid copyright violations.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[18060,18061,18062],{"name":18027,"slug":18028,"type":16},{"name":18030,"slug":18031,"type":16},{"name":18063,"slug":18064,"type":16},"PDF","pdf","2026-04-06T17:56:03.794732",{"slug":18067,"name":18067,"fn":18068,"description":18069,"org":18070,"tags":18071,"stars":18037,"repoUrl":18038,"updatedAt":18084},"claude-api","build apps with the Claude API","Reference for the Claude API \u002F Anthropic SDK — model ids, pricing, params, streaming, tool use, MCP, agents, caching, token counting, model migration.\nTRIGGER — read BEFORE opening the target file; don't skip because it \"looks like a one-liner\" — whenever: the prompt names Claude\u002FAnthropic in any form (Claude, Anthropic, Fable, Opus, Sonnet, Haiku, `anthropic`, `@anthropic-ai`, `claude-*`, `us.anthropic.*`, `[1m]`); the user asks about an LLM (pricing\u002Fmodel choice\u002Flimits\u002Fcaching) — never answer from memory; OR the task is LLM-shaped with provider unstated (agent\u002FMCP\u002Ftool-definition\u002Fmulti-agent\u002FRAG\u002FLLM-judge\u002Fcomputer-use; generate\u002Fsummarize\u002Fextract\u002Fclassify\u002Frewrite\u002Fconverse over NL; debugging refusals\u002Fcutoffs\u002Fstreaming\u002Ftool-calls\u002Ftokens).\nSKIP only when another provider is being worked on (overrides all triggers): OpenAI\u002FGPT\u002FGemini\u002FLlama\u002FMistral\u002FCohere\u002FOllama named in the query; OR `grep -rE 'openai|langchain_openai|google.generativeai|genai|mistralai|cohere|ollama'` over the project hits (run this grep FIRST if no provider named — don't Read the file).",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[18072,18075,18076,18079,18081],{"name":18073,"slug":18074,"type":16},"Agents","agents",{"name":9,"slug":8,"type":16},{"name":18077,"slug":18078,"type":16},"Anthropic SDK","anthropic-sdk",{"name":18080,"slug":18067,"type":16},"Claude API",{"name":18082,"slug":18083,"type":16},"LLM","llm","2026-07-28T05:36:08.213335",{"slug":18086,"name":18086,"fn":18087,"description":18088,"org":18089,"tags":18090,"stars":18037,"repoUrl":18038,"updatedAt":18097},"doc-coauthoring","co-author documentation and technical specs","Guide users through a structured workflow for co-authoring documentation. Use when user wants to write documentation, proposals, technical specs, decision docs, or similar structured content. This workflow helps users efficiently transfer context, refine content through iteration, and verify the doc works for readers. Trigger when user mentions writing docs, creating proposals, drafting specs, or similar documentation tasks.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[18091,18094],{"name":18092,"slug":18093,"type":16},"Documentation","documentation",{"name":18095,"slug":18096,"type":16},"Technical Writing","technical-writing","2026-04-06T17:56:14.18897",{"slug":18099,"name":18099,"fn":18100,"description":18101,"org":18102,"tags":18103,"stars":18037,"repoUrl":18038,"updatedAt":18118},"docx","create and edit Word documents","Use this skill whenever the user wants to create, read, edit, or manipulate Word documents (.docx files) or Word templates (.dotx files). Triggers include: any mention of 'Word doc', 'word document', '.docx', '.dotx', or requests to produce professional documents with formatting like tables of contents, headings, page numbers, or letterheads. Also use when extracting or reorganizing content from .docx or .dotx files, inserting or replacing images in documents, performing find-and-replace in Word files, working with tracked changes or comments, or converting content into a polished Word document. If the user asks for a 'report', 'memo', 'letter', 'template', or similar deliverable as a Word or .docx file, use this skill. Do NOT use for PDFs, spreadsheets, Google Docs, or general coding tasks unrelated to document generation.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[18104,18107,18109,18112,18115],{"name":18105,"slug":18106,"type":16},"Documents","documents",{"name":18108,"slug":18099,"type":16},"DOCX",{"name":18110,"slug":18111,"type":16},"Office","office",{"name":18113,"slug":18114,"type":16},"Templates","templates",{"name":18116,"slug":18117,"type":16},"Word","word","2026-07-18T05:16:23.136271",{"slug":18120,"name":18120,"fn":18121,"description":18122,"org":18123,"tags":18124,"stars":18037,"repoUrl":18038,"updatedAt":18135},"frontend-design","design production-grade frontend interfaces","Guidance for distinctive, intentional visual design when building new UI or reshaping an existing one. Helps with aesthetic direction, typography, and making choices that don't read as templated defaults.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[18125,18126,18127,18129,18132],{"name":18030,"slug":18031,"type":16},{"name":24,"slug":25,"type":16},{"name":18128,"slug":13928,"type":16},"React",{"name":18130,"slug":18131,"type":16},"Tailwind CSS","tailwind-css",{"name":18133,"slug":18134,"type":16},"UI Components","ui-components","2026-04-06T17:56:16.723469",{"slug":18137,"name":18137,"fn":18138,"description":18139,"org":18140,"tags":18141,"stars":18037,"repoUrl":18038,"updatedAt":18149},"internal-comms","write internal company communications","A set of resources to help me write all kinds of internal communications, using the formats that my company likes to use. Claude should use this skill whenever asked to write some sort of internal communications (status reports, leadership updates, 3P updates, company newsletters, FAQs, incident reports, project updates, etc.).",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[18142,18145,18146],{"name":18143,"slug":18144,"type":16},"Communications","communications",{"name":18113,"slug":18114,"type":16},{"name":18147,"slug":18148,"type":16},"Writing","writing","2026-04-06T17:56:20.695522",{"slug":18151,"name":18151,"fn":18152,"description":18153,"org":18154,"tags":18155,"stars":18037,"repoUrl":18038,"updatedAt":18164},"mcp-builder","build MCP servers","Guide for creating high-quality MCP (Model Context Protocol) servers that enable LLMs to interact with external services through well-designed tools. Use when building MCP servers to integrate external APIs or services, whether in Python (FastMCP) or Node\u002FTypeScript (MCP SDK).",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[18156,18157,18160,18161],{"name":18073,"slug":18074,"type":16},{"name":18158,"slug":18159,"type":16},"API Development","api-development",{"name":18082,"slug":18083,"type":16},{"name":18162,"slug":18163,"type":16},"MCP","mcp","2026-04-06T17:56:10.357665",{"slug":18064,"name":18064,"fn":18166,"description":18167,"org":18168,"tags":18169,"stars":18037,"repoUrl":18038,"updatedAt":18172},"read edit and manipulate PDF files","Use this skill whenever the user wants to do anything with PDF files. This includes reading or extracting text\u002Ftables from PDFs, combining or merging multiple PDFs into one, splitting PDFs apart, rotating pages, adding watermarks, creating new PDFs, filling PDF forms, encrypting\u002Fdecrypting PDFs, extracting images, and OCR on scanned PDFs to make them searchable. If the user mentions a .pdf file or asks to produce one, use this skill.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[18170,18171],{"name":18105,"slug":18106,"type":16},{"name":18063,"slug":18064,"type":16},"2026-04-06T17:56:02.483316",{"slug":18174,"name":18174,"fn":18175,"description":18176,"org":18177,"tags":18178,"stars":18037,"repoUrl":18038,"updatedAt":18185},"pptx","create and edit PowerPoint presentations","Use this skill any time a .pptx or .potx file is involved in any way — as input, output, or both. This includes: creating slide decks, pitch decks, or presentations; reading, parsing, or extracting text from any .pptx or .potx file (even if the extracted content will be used elsewhere, like in an email or summary); editing, modifying, or updating existing presentations; combining or splitting slide files; working with templates (.potx), layouts, speaker notes, or comments. Trigger whenever the user mentions \"deck,\" \"slides,\" \"presentation,\" or references a .pptx or .potx filename, regardless of what they plan to do with the content afterward. If a .pptx or .potx file needs to be opened, created, or touched, use this skill.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[18179,18182],{"name":18180,"slug":18181,"type":16},"PowerPoint","powerpoint",{"name":18183,"slug":18184,"type":16},"Presentations","presentations","2026-07-18T05:16:24.1471",{"slug":18187,"name":18187,"fn":18188,"description":18189,"org":18190,"tags":18191,"stars":18037,"repoUrl":18038,"updatedAt":18201},"skill-creator","create and optimize agent skills","Create new skills, modify and improve existing skills, and measure skill performance. Use when users want to create a skill from scratch, edit, or optimize an existing skill, run evals to test a skill, benchmark skill performance with variance analysis, or optimize a skill's description for better triggering accuracy.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[18192,18193,18194,18197,18200],{"name":18073,"slug":18074,"type":16},{"name":18092,"slug":18093,"type":16},{"name":18195,"slug":18196,"type":16},"Evals","evals",{"name":18198,"slug":18199,"type":16},"Performance","performance",{"name":18095,"slug":18096,"type":16},"2026-04-19T06:45:40.804",490,{"items":18204,"total":18311},[18205,18219,18235,18251,18267,18286,18298],{"slug":18206,"name":18206,"fn":18207,"description":18208,"org":18209,"tags":18210,"stars":26,"repoUrl":27,"updatedAt":18218},"accessibility-review","run WCAG accessibility audits","Run a WCAG 2.1 AA accessibility audit on a design or page. Trigger with \"audit accessibility\", \"check a11y\", \"is this accessible?\", or when reviewing a design for color contrast, keyboard navigation, touch target size, or screen reader behavior before handoff.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[18211,18214,18215],{"name":18212,"slug":18213,"type":16},"Accessibility","accessibility",{"name":18030,"slug":18031,"type":16},{"name":18216,"slug":18217,"type":16},"WCAG","wcag","2026-04-06T17:58:05.682394",{"slug":18220,"name":18220,"fn":18221,"description":18222,"org":18223,"tags":18224,"stars":26,"repoUrl":27,"updatedAt":18234},"account-research","research accounts for sales intel","Research a company or person and get actionable sales intel. Works standalone with web search, supercharged when you connect enrichment tools or your CRM. Trigger with \"research [company]\", \"look up [person]\", \"intel on [prospect]\", \"who is [name] at [company]\", or \"tell me about [company]\".",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[18225,18228,18231],{"name":18226,"slug":18227,"type":16},"CRM","crm",{"name":18229,"slug":18230,"type":16},"Research","research",{"name":18232,"slug":18233,"type":16},"Sales","sales","2026-04-06T17:56:41.410418",{"slug":18236,"name":18236,"fn":18237,"description":18238,"org":18239,"tags":18240,"stars":26,"repoUrl":27,"updatedAt":18250},"analyze","answer data questions and run analyses","Answer data questions -- from quick lookups to full analyses. Use when looking up a single metric, investigating what's driving a trend or drop, comparing segments over time, or preparing a formal data report for stakeholders.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[18241,18244,18247],{"name":18242,"slug":18243,"type":16},"Analytics","analytics",{"name":18245,"slug":18246,"type":16},"Data Analysis","data-analysis",{"name":18248,"slug":18249,"type":16},"SQL","sql","2026-04-06T17:57:21.593647",{"slug":18252,"name":18252,"fn":18253,"description":18254,"org":18255,"tags":18256,"stars":26,"repoUrl":27,"updatedAt":18266},"architecture","create and evaluate architecture decision records","Create or evaluate an architecture decision record (ADR). Use when choosing between technologies (e.g., Kafka vs SQS), documenting a design decision with trade-offs and consequences, reviewing a system design proposal, or designing a new component from requirements and constraints.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[18257,18260,18262,18263],{"name":18258,"slug":18259,"type":16},"ADR","adr",{"name":18261,"slug":18252,"type":16},"Architecture",{"name":18092,"slug":18093,"type":16},{"name":18264,"slug":18265,"type":16},"Engineering","engineering","2026-04-06T17:57:49.26444",{"slug":18268,"name":18268,"fn":18269,"description":18270,"org":18271,"tags":18272,"stars":26,"repoUrl":27,"updatedAt":18285},"audit-support","support SOX 404 control testing","Support SOX 404 compliance with control testing methodology, sample selection, and documentation standards. Use when generating testing workpapers, selecting audit samples, classifying control deficiencies, or preparing for internal or external audits.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[18273,18276,18279,18282],{"name":18274,"slug":18275,"type":16},"Audit","audit",{"name":18277,"slug":18278,"type":16},"Finance","finance",{"name":18280,"slug":18281,"type":16},"Regulatory Compliance","regulatory-compliance",{"name":18283,"slug":18284,"type":16},"SOX","sox","2026-04-06T17:57:36.714815",{"slug":18287,"name":18287,"fn":18288,"description":18289,"org":18290,"tags":18291,"stars":26,"repoUrl":27,"updatedAt":18297},"brand-review","review content against brand voice","Review content against your brand voice, style guide, and messaging pillars, flagging deviations by severity with specific before\u002Fafter fixes. Use when checking a draft before it ships, when auditing copy for voice consistency and terminology, or when screening for unsubstantiated claims, missing disclaimers, and other legal flags.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[18292,18293,18296],{"name":18047,"slug":18048,"type":16},{"name":18294,"slug":18295,"type":16},"Marketing","marketing",{"name":18147,"slug":18148,"type":16},"2026-04-06T17:58:19.548331",{"slug":18299,"name":18299,"fn":18300,"description":18301,"org":18302,"tags":18303,"stars":26,"repoUrl":27,"updatedAt":18310},"brand-voice-enforcement","enforce brand voice in content","This skill applies brand guidelines to content creation. It should be used when the user asks to \"write an email\", \"draft a proposal\", \"create a pitch deck\", \"write a LinkedIn post\", \"draft a presentation\", \"write a Slack message\", \"draft sales content\", or any content creation request where brand voice should be applied. Also triggers on \"on-brand\", \"brand voice\", \"enforce voice\", \"apply brand guidelines\", \"brand-aligned content\", \"write in our voice\", \"use our brand tone\", \"make this sound like us\", \"rewrite this in our tone\", or \"this doesn't sound on-brand\". Not for generating guidelines from scratch (use guideline-generation) or discovering brand materials (use discover-brand).\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[18304,18305,18306,18309],{"name":18047,"slug":18048,"type":16},{"name":18143,"slug":18144,"type":16},{"name":18307,"slug":18308,"type":16},"Content Creation","content-creation",{"name":18147,"slug":18148,"type":16},"2026-04-06T18:00:23.528956",200]