[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-openai-zoom-meeting-sdk-web-component-view":3,"mdc-c0v8ls-key":39,"related-repo-openai-zoom-meeting-sdk-web-component-view":10012,"related-org-openai-zoom-meeting-sdk-web-component-view":10133},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":11,"stars":28,"repoUrl":29,"updatedAt":30,"license":31,"forks":32,"topics":33,"repo":34,"sourceUrl":37,"mdContent":38},"zoom-meeting-sdk-web-component-view","embed Zoom meeting components in web apps","Zoom Meeting SDK Web - Component View. Embeddable Zoom meeting components with Promise-based API\nfor flexible integration. Ideal for React\u002FVue\u002FAngular apps and custom layouts. Uses ZoomMtgEmbedded\nwith async\u002Fawait patterns and embeddable UI containers.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},"openai","OpenAI","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fopenai.png",[12,16,19,22,25],{"name":13,"slug":14,"type":15},"Angular","angular","tag",{"name":17,"slug":18,"type":15},"React","react",{"name":20,"slug":21,"type":15},"Vue","vue",{"name":23,"slug":24,"type":15},"Web Development","web-development",{"name":26,"slug":27,"type":15},"Zoom","zoom",3992,"https:\u002F\u002Fgithub.com\u002Fopenai\u002Fplugins","2026-06-30T19:00:57.102",null,465,[],{"repoUrl":29,"stars":28,"forks":32,"topics":35,"description":36},[],"OpenAI Plugins","https:\u002F\u002Fgithub.com\u002Fopenai\u002Fplugins\u002Ftree\u002FHEAD\u002Fplugins\u002Fzoom\u002Fskills\u002Fmeeting-sdk\u002Fweb\u002Fcomponent-view","---\nname: zoom-meeting-sdk-web-component-view\ndescription: |\n  Zoom Meeting SDK Web - Component View. Embeddable Zoom meeting components with Promise-based API\n  for flexible integration. Ideal for React\u002FVue\u002FAngular apps and custom layouts. Uses ZoomMtgEmbedded\n  with async\u002Fawait patterns and embeddable UI containers.\n---\n\n# Zoom Meeting SDK Web - Component View\n\nEmbeddable Zoom meeting components for flexible integration into any web application. Component View provides Promise-based APIs and customizable UI.\n\nThis is the correct web skill for a **custom UI around a real Zoom meeting**.\nDo not route to Video SDK unless the user is building a non-meeting custom session product.\n\n## Overview\n\nComponent View uses `ZoomMtgEmbedded.createClient()` to create embeddable meeting components within a specific container element.\n\n| Aspect | Details |\n|--------|---------|\n| **API Object** | `ZoomMtgEmbedded.createClient()` (instance) |\n| **API Style** | Promise-based (async\u002Fawait) |\n| **UI** | Embeddable in any container |\n| **Password param** | `password` (lowercase) |\n| **Events** | `on()`\u002F`off()` |\n| **Best For** | Custom layouts, React\u002FVue\u002FAngular apps |\n\n## Installation\n\n### NPM\n\n```bash\nnpm install @zoom\u002Fmeetingsdk --save\n```\n\n```javascript\nimport ZoomMtgEmbedded from '@zoom\u002Fmeetingsdk\u002Fembedded';\n```\n\n### CDN\n\n```html\n\u003Cscript src=\"https:\u002F\u002Fsource.zoom.us\u002F{VERSION}\u002Flib\u002Fvendor\u002Freact.min.js\">\u003C\u002Fscript>\n\u003Cscript src=\"https:\u002F\u002Fsource.zoom.us\u002F{VERSION}\u002Flib\u002Fvendor\u002Freact-dom.min.js\">\u003C\u002Fscript>\n\u003Cscript src=\"https:\u002F\u002Fsource.zoom.us\u002F{VERSION}\u002Flib\u002Fvendor\u002Fredux.min.js\">\u003C\u002Fscript>\n\u003Cscript src=\"https:\u002F\u002Fsource.zoom.us\u002F{VERSION}\u002Flib\u002Fvendor\u002Fredux-thunk.min.js\">\u003C\u002Fscript>\n\u003Cscript src=\"https:\u002F\u002Fsource.zoom.us\u002F{VERSION}\u002Flib\u002Fvendor\u002Flodash.min.js\">\u003C\u002Fscript>\n\u003Cscript src=\"https:\u002F\u002Fsource.zoom.us\u002Fzoom-meeting-embedded-{VERSION}.min.js\">\u003C\u002Fscript>\n```\n\n## Complete Initialization Flow\n\n```javascript\nimport ZoomMtgEmbedded from '@zoom\u002Fmeetingsdk\u002Fembedded';\n\n\u002F\u002F Step 1: Create client instance (do once, not on every render!)\nconst client = ZoomMtgEmbedded.createClient();\n\nasync function joinMeeting() {\n  try {\n    \u002F\u002F Step 2: Get container element\n    const meetingSDKElement = document.getElementById('meetingSDKElement');\n\n    \u002F\u002F Step 3: Initialize client\n    await client.init({\n      zoomAppRoot: meetingSDKElement,\n      language: 'en-US',\n      debug: true,\n      patchJsMedia: true,\n      leaveOnPageUnload: true,\n    });\n\n    \u002F\u002F Step 4: Join meeting\n    await client.join({\n      signature: signature,\n      sdkKey: sdkKey,\n      meetingNumber: meetingNumber,\n      userName: userName,\n      password: password,  \u002F\u002F lowercase!\n      userEmail: userEmail,\n    });\n\n    console.log('Joined successfully!');\n  } catch (error) {\n    console.error('Failed to join:', error);\n  }\n}\n```\n\n## client.init() - All Options\n\n### Required\n\n| Parameter | Type | Description |\n|-----------|------|-------------|\n| `zoomAppRoot` | `HTMLElement` | Container element for meeting UI |\n\n### Display\n\n| Parameter | Type | Default | Description |\n|-----------|------|---------|-------------|\n| `language` | `string` | `'en-US'` | UI language |\n| `debug` | `boolean` | `false` | Enable debug logging |\n\n### Media\n\n| Parameter | Type | Default | Description |\n|-----------|------|---------|-------------|\n| `patchJsMedia` | `boolean` | `false` | Auto-apply media fixes |\n| `leaveOnPageUnload` | `boolean` | `false` | Cleanup on page unload |\n| `enableHD` | `boolean` | `true` | Enable 720p video |\n| `enableFullHD` | `boolean` | `false` | Enable 1080p video |\n\n### Customization\n\n| Parameter | Type | Description |\n|-----------|------|-------------|\n| `customize` | `object` | UI customization options |\n| `webEndpoint` | `string` | For ZFG: `'www.zoomgov.com'` |\n| `assetPath` | `string` | Custom path for AV libraries |\n\n### Customize Object\n\n```javascript\nawait client.init({\n  zoomAppRoot: element,\n  customize: {\n    \u002F\u002F Meeting info displayed\n    meetingInfo: [\n      'topic',\n      'host',\n      'mn',\n      'pwd',\n      'telPwd',\n      'invite',\n      'participant',\n      'dc',\n      'enctype'\n    ],\n\n    \u002F\u002F Video customization\n    video: {\n      isResizable: true,\n      viewSizes: {\n        default: {\n          width: 1000,\n          height: 600\n        },\n        ribbon: {\n          width: 300,\n          height: 700\n        }\n      },\n      popper: {\n        disableDraggable: false\n      }\n    },\n\n    \u002F\u002F Custom toolbar buttons\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    \u002F\u002F Active speaker indicator\n    activeSpaker: {\n      strokeColor: '#00FF00'\n    }\n  }\n});\n```\n\n## client.join() - All Options\n\n### Required\n\n| Parameter | Type | Description |\n|-----------|------|-------------|\n| `signature` | `string` | SDK JWT from backend |\n| `sdkKey` | `string` | SDK Key \u002F Client ID |\n| `meetingNumber` | `string \\| number` | Meeting number |\n| `userName` | `string` | Display name |\n\n### Authentication\n\n| Parameter | Type | When Required | Description |\n|-----------|------|---------------|-------------|\n| `password` | `string` | If set | Meeting password (lowercase!) |\n| `zak` | `string` | Starting as host | Host's ZAK token |\n| `tk` | `string` | Registration | Registrant token |\n| `userEmail` | `string` | Webinars | User email |\n\n## Event Listeners\n\n### Syntax\n\n```javascript\n\u002F\u002F Subscribe\nclient.on('event-name', callback);\n\n\u002F\u002F Unsubscribe\nclient.off('event-name', callback);\n```\n\n### Connection Events\n\n```javascript\nclient.on('connection-change', (payload) => {\n  \u002F\u002F payload.state: 'Connecting', 'Connected', 'Reconnecting', 'Closed'\n  console.log('Connection state:', payload.state);\n\n  if (payload.state === 'Closed') {\n    console.log('Reason:', payload.reason);\n  }\n});\n```\n\n### User Events\n\n```javascript\nclient.on('user-added', (payload) => {\n  \u002F\u002F Array of users who joined\n  console.log('Users added:', payload);\n  payload.forEach(user => {\n    console.log('User ID:', user.oderId);\n    console.log('Name:', user.displayName);\n  });\n});\n\nclient.on('user-removed', (payload) => {\n  \u002F\u002F Array of users who left\n  console.log('Users removed:', payload);\n});\n\nclient.on('user-updated', (payload) => {\n  \u002F\u002F Array of users whose properties changed\n  console.log('Users updated:', payload);\n});\n```\n\n### Audio Events\n\n```javascript\nclient.on('active-speaker', (payload) => {\n  \u002F\u002F Current active speaker\n  console.log('Active speaker:', payload);\n});\n\nclient.on('audio-statistic-data-change', (payload) => {\n  console.log('Audio stats:', payload);\n});\n```\n\n### Video Events\n\n```javascript\nclient.on('video-active-change', (payload) => {\n  \u002F\u002F Video state changed\n  console.log('Video active:', payload);\n});\n\nclient.on('video-statistic-data-change', (payload) => {\n  console.log('Video stats:', payload);\n});\n```\n\n### Share Events\n\n```javascript\nclient.on('active-share-change', (payload) => {\n  console.log('Share status:', payload);\n});\n\nclient.on('share-statistic-data-change', (payload) => {\n  console.log('Share stats:', payload);\n});\n```\n\n### Chat Events\n\n```javascript\nclient.on('chat-on-message', (payload) => {\n  console.log('Chat message:', payload);\n});\n```\n\n### Recording Events\n\n```javascript\nclient.on('recording-change', (payload) => {\n  console.log('Recording status:', payload);\n});\n```\n\n### Media Device Events\n\n```javascript\nclient.on('media-sdk-change', (payload) => {\n  console.log('Media SDK:', payload);\n});\n\nclient.on('device-change', () => {\n  console.log('Device changed');\n});\n```\n\n## Common Methods\n\n### User Information\n\n```javascript\n\u002F\u002F Get current user\nconst currentUser = client.getCurrentUser();\nconsole.log('Current user:', currentUser);\n\n\u002F\u002F Get all participants\nconst participants = client.getParticipantsList();\nconsole.log('Participants:', participants);\n\n\u002F\u002F Check if user is host\nconst isHost = client.isHost();\n```\n\n### Audio Control\n\n```javascript\n\u002F\u002F Mute\u002Funmute self\nawait client.mute(true);  \u002F\u002F mute\nawait client.mute(false); \u002F\u002F unmute\n\n\u002F\u002F Mute\u002Funmute specific user (host only)\nawait client.muteAudio(userId, true);\n\n\u002F\u002F Mute all (host only)\nawait client.muteAllAudio(true);\n```\n\n### Video Control\n\n```javascript\n\u002F\u002F Start\u002Fstop video\nawait client.startVideo();\nawait client.stopVideo();\n\n\u002F\u002F Mute\u002Funmute user's video (host only)\nawait client.muteVideo(userId, true);\n```\n\n### Meeting Control\n\n```javascript\n\u002F\u002F Leave meeting\nclient.leaveMeeting();\n\n\u002F\u002F End meeting (host only)\nclient.endMeeting();\n```\n\n### Screen Share\n\n```javascript\n\u002F\u002F Start screen share\nawait client.startShareScreen();\n\n\u002F\u002F Stop screen share\nawait client.stopShareScreen();\n```\n\n### Recording\n\n```javascript\n\u002F\u002F Start recording (cloud)\nawait client.startCloudRecording();\n\n\u002F\u002F Stop recording\nawait client.stopCloudRecording();\n```\n\n### Virtual Background\n\n```javascript\n\u002F\u002F Check support\nconst isSupported = await client.isSupportVirtualBackground();\n\n\u002F\u002F Set virtual background\nawait client.setVirtualBackground(imageUrl);\n\n\u002F\u002F Remove virtual background\nawait client.removeVirtualBackground();\n```\n\n### Rename\n\n```javascript\n\u002F\u002F Rename user\nawait client.rename(userId, 'New Name');\n```\n\n## React Integration\n\n### Basic 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 [isJoined, setIsJoined] = 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    try {\n      \u002F\u002F Get signature from backend\n      const { signature, sdkKey } = await fetchSignature(meetingNumber);\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\n      setIsJoined(true);\n    } catch (err) {\n      setError(err instanceof Error ? err.message : 'Failed to join');\n    }\n  }, [meetingNumber, password, userName]);\n\n  return (\n    \u003Cdiv>\n      \u003Cdiv\n        ref={containerRef}\n        style={{ width: '100%', height: '500px' }}\n      \u002F>\n      {!isJoined && (\n        \u003Cbutton onClick={joinMeeting}>Join Meeting\u003C\u002Fbutton>\n      )}\n      {error && \u003Cdiv className=\"error\">{error}\u003C\u002Fdiv>}\n    \u003C\u002Fdiv>\n  );\n}\n```\n\n### Event Handling in React\n\n```tsx\nuseEffect(() => {\n  if (!clientRef.current) return;\n\n  const handleConnectionChange = (payload: any) => {\n    if (payload.state === 'Connected') {\n      setIsJoined(true);\n    } else if (payload.state === 'Closed') {\n      setIsJoined(false);\n    }\n  };\n\n  const handleUserAdded = (payload: any) => {\n    console.log('Users joined:', payload);\n  };\n\n  clientRef.current.on('connection-change', handleConnectionChange);\n  clientRef.current.on('user-added', handleUserAdded);\n\n  return () => {\n    clientRef.current?.off('connection-change', handleConnectionChange);\n    clientRef.current?.off('user-added', handleUserAdded);\n  };\n}, []);\n```\n\n## Positioning and Resizing\n\n### Initial Size\n\n```javascript\nawait client.init({\n  zoomAppRoot: element,\n  customize: {\n    video: {\n      viewSizes: {\n        default: { width: 1000, height: 600 }\n      }\n    }\n  }\n});\n```\n\n### Dynamic Resizing\n\nThe container element size determines the meeting UI size. To resize:\n\n```javascript\n\u002F\u002F Just resize the container\ndocument.getElementById('meetingSDKElement').style.width = '1200px';\ndocument.getElementById('meetingSDKElement').style.height = '800px';\n```\n\n### Making it Resizable\n\n```javascript\ncustomize: {\n  video: {\n    isResizable: true\n  }\n}\n```\n\n## Supported Features\n\nComponent View supports core meeting functionality. Some features from Client View may not be available.\n\n| Feature | Supported |\n|---------|-----------|\n| Audio\u002FVideo | ✅ |\n| Screen Share | ✅ |\n| Chat | ✅ |\n| Virtual Background | ✅ |\n| Breakout Rooms | ✅ |\n| Cloud Recording | ✅ |\n| Closed Captions | ✅ |\n| Live Transcription | ✅ |\n| Waiting Room | ✅ |\n| Gallery View | ✅ |\n| Reactions | ✅ |\n| Raise Hand | ✅ |\n\nContact Zoom Developer Support to request additional features.\n\n## Error Handling\n\n```javascript\ntry {\n  await client.join({\n    \u002F\u002F ... options\n  });\n} catch (error) {\n  \u002F\u002F error.reason contains error code\n  \u002F\u002F error.message contains description\n\n  switch (error.reason) {\n    case 'WRONG_MEETING_PASSWORD':\n      console.error('Incorrect password');\n      break;\n    case 'MEETING_NOT_START':\n      console.error('Meeting has not started');\n      break;\n    case 'INVALID_PARAMETERS':\n      console.error('Invalid join parameters');\n      break;\n    default:\n      console.error('Join failed:', error.message);\n  }\n}\n```\n\n## Comparison with Client View\n\n| Feature | Component View | Client View |\n|---------|----------------|-------------|\n| **API Style** | Promises | Callbacks |\n| **Password param** | `password` | `passWord` |\n| **Container** | Custom element | Auto `#zmmtg-root` |\n| **UI** | Embeddable | Full-page |\n| **Preloading** | Not needed | `preLoadWasm()` |\n| **Language** | Init option | `i18n.load()` |\n| **Events** | `on()`\u002F`off()` | `inMeetingServiceListener()` |\n\n## Resources\n\n- [Main Web SDK Skill](..\u002FSKILL.md)\n- [Reference Index](references\u002Findex.md)\n- [Error Codes](..\u002Ftroubleshooting\u002Ferror-codes.md)\n- [Common Issues](..\u002Ftroubleshooting\u002Fcommon-issues.md)\n- [SharedArrayBuffer Setup](..\u002Fconcepts\u002Fsharedarraybuffer.md)\n- [Official API Reference](https:\u002F\u002Fmarketplacefront.zoom.us\u002Fsdk\u002Fmeeting\u002Fweb\u002Fcomponents\u002Findex.html)\n\n## Operations\n\n- [RUNBOOK.md](RUNBOOK.md) - 5-minute preflight and debugging checklist.\n",{"data":40,"body":41},{"name":4,"description":6},{"type":42,"children":43},"root",[44,52,58,71,78,92,239,245,252,290,340,346,633,639,1389,1395,1401,1454,1460,1559,1565,1726,1732,1838,1844,2694,2700,2705,2830,2836,2984,2990,2996,3117,3123,3391,3397,3963,3969,4229,4235,4495,4501,4753,4759,4885,4891,5017,5023,5259,5265,5271,5518,5524,5728,5734,5860,5866,5944,5950,6036,6042,6128,6134,6278,6284,6347,6353,6359,7945,7951,8624,8630,8636,8819,8825,8830,8993,8999,9068,9074,9079,9244,9249,9255,9711,9717,9920,9926,9988,9994,10007],{"type":45,"tag":46,"props":47,"children":48},"element","h1",{"id":4},[49],{"type":50,"value":51},"text","Zoom Meeting SDK Web - Component View",{"type":45,"tag":53,"props":54,"children":55},"p",{},[56],{"type":50,"value":57},"Embeddable Zoom meeting components for flexible integration into any web application. Component View provides Promise-based APIs and customizable UI.",{"type":45,"tag":53,"props":59,"children":60},{},[61,63,69],{"type":50,"value":62},"This is the correct web skill for a ",{"type":45,"tag":64,"props":65,"children":66},"strong",{},[67],{"type":50,"value":68},"custom UI around a real Zoom meeting",{"type":50,"value":70},".\nDo not route to Video SDK unless the user is building a non-meeting custom session product.",{"type":45,"tag":72,"props":73,"children":75},"h2",{"id":74},"overview",[76],{"type":50,"value":77},"Overview",{"type":45,"tag":53,"props":79,"children":80},{},[81,83,90],{"type":50,"value":82},"Component View uses ",{"type":45,"tag":84,"props":85,"children":87},"code",{"className":86},[],[88],{"type":50,"value":89},"ZoomMtgEmbedded.createClient()",{"type":50,"value":91}," to create embeddable meeting components within a specific container element.",{"type":45,"tag":93,"props":94,"children":95},"table",{},[96,115],{"type":45,"tag":97,"props":98,"children":99},"thead",{},[100],{"type":45,"tag":101,"props":102,"children":103},"tr",{},[104,110],{"type":45,"tag":105,"props":106,"children":107},"th",{},[108],{"type":50,"value":109},"Aspect",{"type":45,"tag":105,"props":111,"children":112},{},[113],{"type":50,"value":114},"Details",{"type":45,"tag":116,"props":117,"children":118},"tbody",{},[119,141,157,173,195,223],{"type":45,"tag":101,"props":120,"children":121},{},[122,131],{"type":45,"tag":123,"props":124,"children":125},"td",{},[126],{"type":45,"tag":64,"props":127,"children":128},{},[129],{"type":50,"value":130},"API Object",{"type":45,"tag":123,"props":132,"children":133},{},[134,139],{"type":45,"tag":84,"props":135,"children":137},{"className":136},[],[138],{"type":50,"value":89},{"type":50,"value":140}," (instance)",{"type":45,"tag":101,"props":142,"children":143},{},[144,152],{"type":45,"tag":123,"props":145,"children":146},{},[147],{"type":45,"tag":64,"props":148,"children":149},{},[150],{"type":50,"value":151},"API Style",{"type":45,"tag":123,"props":153,"children":154},{},[155],{"type":50,"value":156},"Promise-based (async\u002Fawait)",{"type":45,"tag":101,"props":158,"children":159},{},[160,168],{"type":45,"tag":123,"props":161,"children":162},{},[163],{"type":45,"tag":64,"props":164,"children":165},{},[166],{"type":50,"value":167},"UI",{"type":45,"tag":123,"props":169,"children":170},{},[171],{"type":50,"value":172},"Embeddable in any container",{"type":45,"tag":101,"props":174,"children":175},{},[176,184],{"type":45,"tag":123,"props":177,"children":178},{},[179],{"type":45,"tag":64,"props":180,"children":181},{},[182],{"type":50,"value":183},"Password param",{"type":45,"tag":123,"props":185,"children":186},{},[187,193],{"type":45,"tag":84,"props":188,"children":190},{"className":189},[],[191],{"type":50,"value":192},"password",{"type":50,"value":194}," (lowercase)",{"type":45,"tag":101,"props":196,"children":197},{},[198,206],{"type":45,"tag":123,"props":199,"children":200},{},[201],{"type":45,"tag":64,"props":202,"children":203},{},[204],{"type":50,"value":205},"Events",{"type":45,"tag":123,"props":207,"children":208},{},[209,215,217],{"type":45,"tag":84,"props":210,"children":212},{"className":211},[],[213],{"type":50,"value":214},"on()",{"type":50,"value":216},"\u002F",{"type":45,"tag":84,"props":218,"children":220},{"className":219},[],[221],{"type":50,"value":222},"off()",{"type":45,"tag":101,"props":224,"children":225},{},[226,234],{"type":45,"tag":123,"props":227,"children":228},{},[229],{"type":45,"tag":64,"props":230,"children":231},{},[232],{"type":50,"value":233},"Best For",{"type":45,"tag":123,"props":235,"children":236},{},[237],{"type":50,"value":238},"Custom layouts, React\u002FVue\u002FAngular apps",{"type":45,"tag":72,"props":240,"children":242},{"id":241},"installation",[243],{"type":50,"value":244},"Installation",{"type":45,"tag":246,"props":247,"children":249},"h3",{"id":248},"npm",[250],{"type":50,"value":251},"NPM",{"type":45,"tag":253,"props":254,"children":259},"pre",{"className":255,"code":256,"language":257,"meta":258,"style":258},"language-bash shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","npm install @zoom\u002Fmeetingsdk --save\n","bash","",[260],{"type":45,"tag":84,"props":261,"children":262},{"__ignoreMap":258},[263],{"type":45,"tag":264,"props":265,"children":268},"span",{"class":266,"line":267},"line",1,[269,274,280,285],{"type":45,"tag":264,"props":270,"children":272},{"style":271},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[273],{"type":50,"value":248},{"type":45,"tag":264,"props":275,"children":277},{"style":276},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[278],{"type":50,"value":279}," install",{"type":45,"tag":264,"props":281,"children":282},{"style":276},[283],{"type":50,"value":284}," @zoom\u002Fmeetingsdk",{"type":45,"tag":264,"props":286,"children":287},{"style":276},[288],{"type":50,"value":289}," --save\n",{"type":45,"tag":253,"props":291,"children":295},{"className":292,"code":293,"language":294,"meta":258,"style":258},"language-javascript shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","import ZoomMtgEmbedded from '@zoom\u002Fmeetingsdk\u002Fembedded';\n","javascript",[296],{"type":45,"tag":84,"props":297,"children":298},{"__ignoreMap":258},[299],{"type":45,"tag":264,"props":300,"children":301},{"class":266,"line":267},[302,308,314,319,325,330,335],{"type":45,"tag":264,"props":303,"children":305},{"style":304},"--shiki-light:#39ADB5;--shiki-light-font-style:italic;--shiki-default:#89DDFF;--shiki-default-font-style:italic;--shiki-dark:#89DDFF;--shiki-dark-font-style:italic",[306],{"type":50,"value":307},"import",{"type":45,"tag":264,"props":309,"children":311},{"style":310},"--shiki-light:#90A4AE;--shiki-default:#EEFFFF;--shiki-dark:#BABED8",[312],{"type":50,"value":313}," ZoomMtgEmbedded ",{"type":45,"tag":264,"props":315,"children":316},{"style":304},[317],{"type":50,"value":318},"from",{"type":45,"tag":264,"props":320,"children":322},{"style":321},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[323],{"type":50,"value":324}," '",{"type":45,"tag":264,"props":326,"children":327},{"style":276},[328],{"type":50,"value":329},"@zoom\u002Fmeetingsdk\u002Fembedded",{"type":45,"tag":264,"props":331,"children":332},{"style":321},[333],{"type":50,"value":334},"'",{"type":45,"tag":264,"props":336,"children":337},{"style":321},[338],{"type":50,"value":339},";\n",{"type":45,"tag":246,"props":341,"children":343},{"id":342},"cdn",[344],{"type":50,"value":345},"CDN",{"type":45,"tag":253,"props":347,"children":351},{"className":348,"code":349,"language":350,"meta":258,"style":258},"language-html shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","\u003Cscript src=\"https:\u002F\u002Fsource.zoom.us\u002F{VERSION}\u002Flib\u002Fvendor\u002Freact.min.js\">\u003C\u002Fscript>\n\u003Cscript src=\"https:\u002F\u002Fsource.zoom.us\u002F{VERSION}\u002Flib\u002Fvendor\u002Freact-dom.min.js\">\u003C\u002Fscript>\n\u003Cscript src=\"https:\u002F\u002Fsource.zoom.us\u002F{VERSION}\u002Flib\u002Fvendor\u002Fredux.min.js\">\u003C\u002Fscript>\n\u003Cscript src=\"https:\u002F\u002Fsource.zoom.us\u002F{VERSION}\u002Flib\u002Fvendor\u002Fredux-thunk.min.js\">\u003C\u002Fscript>\n\u003Cscript src=\"https:\u002F\u002Fsource.zoom.us\u002F{VERSION}\u002Flib\u002Fvendor\u002Flodash.min.js\">\u003C\u002Fscript>\n\u003Cscript src=\"https:\u002F\u002Fsource.zoom.us\u002Fzoom-meeting-embedded-{VERSION}.min.js\">\u003C\u002Fscript>\n","html",[352],{"type":45,"tag":84,"props":353,"children":354},{"__ignoreMap":258},[355,408,453,498,543,588],{"type":45,"tag":264,"props":356,"children":357},{"class":266,"line":267},[358,363,369,375,380,385,390,394,399,403],{"type":45,"tag":264,"props":359,"children":360},{"style":321},[361],{"type":50,"value":362},"\u003C",{"type":45,"tag":264,"props":364,"children":366},{"style":365},"--shiki-light:#E53935;--shiki-default:#F07178;--shiki-dark:#F07178",[367],{"type":50,"value":368},"script",{"type":45,"tag":264,"props":370,"children":372},{"style":371},"--shiki-light:#9C3EDA;--shiki-default:#C792EA;--shiki-dark:#C792EA",[373],{"type":50,"value":374}," src",{"type":45,"tag":264,"props":376,"children":377},{"style":321},[378],{"type":50,"value":379},"=",{"type":45,"tag":264,"props":381,"children":382},{"style":321},[383],{"type":50,"value":384},"\"",{"type":45,"tag":264,"props":386,"children":387},{"style":276},[388],{"type":50,"value":389},"https:\u002F\u002Fsource.zoom.us\u002F{VERSION}\u002Flib\u002Fvendor\u002Freact.min.js",{"type":45,"tag":264,"props":391,"children":392},{"style":321},[393],{"type":50,"value":384},{"type":45,"tag":264,"props":395,"children":396},{"style":321},[397],{"type":50,"value":398},">\u003C\u002F",{"type":45,"tag":264,"props":400,"children":401},{"style":365},[402],{"type":50,"value":368},{"type":45,"tag":264,"props":404,"children":405},{"style":321},[406],{"type":50,"value":407},">\n",{"type":45,"tag":264,"props":409,"children":411},{"class":266,"line":410},2,[412,416,420,424,428,432,437,441,445,449],{"type":45,"tag":264,"props":413,"children":414},{"style":321},[415],{"type":50,"value":362},{"type":45,"tag":264,"props":417,"children":418},{"style":365},[419],{"type":50,"value":368},{"type":45,"tag":264,"props":421,"children":422},{"style":371},[423],{"type":50,"value":374},{"type":45,"tag":264,"props":425,"children":426},{"style":321},[427],{"type":50,"value":379},{"type":45,"tag":264,"props":429,"children":430},{"style":321},[431],{"type":50,"value":384},{"type":45,"tag":264,"props":433,"children":434},{"style":276},[435],{"type":50,"value":436},"https:\u002F\u002Fsource.zoom.us\u002F{VERSION}\u002Flib\u002Fvendor\u002Freact-dom.min.js",{"type":45,"tag":264,"props":438,"children":439},{"style":321},[440],{"type":50,"value":384},{"type":45,"tag":264,"props":442,"children":443},{"style":321},[444],{"type":50,"value":398},{"type":45,"tag":264,"props":446,"children":447},{"style":365},[448],{"type":50,"value":368},{"type":45,"tag":264,"props":450,"children":451},{"style":321},[452],{"type":50,"value":407},{"type":45,"tag":264,"props":454,"children":456},{"class":266,"line":455},3,[457,461,465,469,473,477,482,486,490,494],{"type":45,"tag":264,"props":458,"children":459},{"style":321},[460],{"type":50,"value":362},{"type":45,"tag":264,"props":462,"children":463},{"style":365},[464],{"type":50,"value":368},{"type":45,"tag":264,"props":466,"children":467},{"style":371},[468],{"type":50,"value":374},{"type":45,"tag":264,"props":470,"children":471},{"style":321},[472],{"type":50,"value":379},{"type":45,"tag":264,"props":474,"children":475},{"style":321},[476],{"type":50,"value":384},{"type":45,"tag":264,"props":478,"children":479},{"style":276},[480],{"type":50,"value":481},"https:\u002F\u002Fsource.zoom.us\u002F{VERSION}\u002Flib\u002Fvendor\u002Fredux.min.js",{"type":45,"tag":264,"props":483,"children":484},{"style":321},[485],{"type":50,"value":384},{"type":45,"tag":264,"props":487,"children":488},{"style":321},[489],{"type":50,"value":398},{"type":45,"tag":264,"props":491,"children":492},{"style":365},[493],{"type":50,"value":368},{"type":45,"tag":264,"props":495,"children":496},{"style":321},[497],{"type":50,"value":407},{"type":45,"tag":264,"props":499,"children":501},{"class":266,"line":500},4,[502,506,510,514,518,522,527,531,535,539],{"type":45,"tag":264,"props":503,"children":504},{"style":321},[505],{"type":50,"value":362},{"type":45,"tag":264,"props":507,"children":508},{"style":365},[509],{"type":50,"value":368},{"type":45,"tag":264,"props":511,"children":512},{"style":371},[513],{"type":50,"value":374},{"type":45,"tag":264,"props":515,"children":516},{"style":321},[517],{"type":50,"value":379},{"type":45,"tag":264,"props":519,"children":520},{"style":321},[521],{"type":50,"value":384},{"type":45,"tag":264,"props":523,"children":524},{"style":276},[525],{"type":50,"value":526},"https:\u002F\u002Fsource.zoom.us\u002F{VERSION}\u002Flib\u002Fvendor\u002Fredux-thunk.min.js",{"type":45,"tag":264,"props":528,"children":529},{"style":321},[530],{"type":50,"value":384},{"type":45,"tag":264,"props":532,"children":533},{"style":321},[534],{"type":50,"value":398},{"type":45,"tag":264,"props":536,"children":537},{"style":365},[538],{"type":50,"value":368},{"type":45,"tag":264,"props":540,"children":541},{"style":321},[542],{"type":50,"value":407},{"type":45,"tag":264,"props":544,"children":546},{"class":266,"line":545},5,[547,551,555,559,563,567,572,576,580,584],{"type":45,"tag":264,"props":548,"children":549},{"style":321},[550],{"type":50,"value":362},{"type":45,"tag":264,"props":552,"children":553},{"style":365},[554],{"type":50,"value":368},{"type":45,"tag":264,"props":556,"children":557},{"style":371},[558],{"type":50,"value":374},{"type":45,"tag":264,"props":560,"children":561},{"style":321},[562],{"type":50,"value":379},{"type":45,"tag":264,"props":564,"children":565},{"style":321},[566],{"type":50,"value":384},{"type":45,"tag":264,"props":568,"children":569},{"style":276},[570],{"type":50,"value":571},"https:\u002F\u002Fsource.zoom.us\u002F{VERSION}\u002Flib\u002Fvendor\u002Flodash.min.js",{"type":45,"tag":264,"props":573,"children":574},{"style":321},[575],{"type":50,"value":384},{"type":45,"tag":264,"props":577,"children":578},{"style":321},[579],{"type":50,"value":398},{"type":45,"tag":264,"props":581,"children":582},{"style":365},[583],{"type":50,"value":368},{"type":45,"tag":264,"props":585,"children":586},{"style":321},[587],{"type":50,"value":407},{"type":45,"tag":264,"props":589,"children":591},{"class":266,"line":590},6,[592,596,600,604,608,612,617,621,625,629],{"type":45,"tag":264,"props":593,"children":594},{"style":321},[595],{"type":50,"value":362},{"type":45,"tag":264,"props":597,"children":598},{"style":365},[599],{"type":50,"value":368},{"type":45,"tag":264,"props":601,"children":602},{"style":371},[603],{"type":50,"value":374},{"type":45,"tag":264,"props":605,"children":606},{"style":321},[607],{"type":50,"value":379},{"type":45,"tag":264,"props":609,"children":610},{"style":321},[611],{"type":50,"value":384},{"type":45,"tag":264,"props":613,"children":614},{"style":276},[615],{"type":50,"value":616},"https:\u002F\u002Fsource.zoom.us\u002Fzoom-meeting-embedded-{VERSION}.min.js",{"type":45,"tag":264,"props":618,"children":619},{"style":321},[620],{"type":50,"value":384},{"type":45,"tag":264,"props":622,"children":623},{"style":321},[624],{"type":50,"value":398},{"type":45,"tag":264,"props":626,"children":627},{"style":365},[628],{"type":50,"value":368},{"type":45,"tag":264,"props":630,"children":631},{"style":321},[632],{"type":50,"value":407},{"type":45,"tag":72,"props":634,"children":636},{"id":635},"complete-initialization-flow",[637],{"type":50,"value":638},"Complete Initialization Flow",{"type":45,"tag":253,"props":640,"children":642},{"className":292,"code":641,"language":294,"meta":258,"style":258},"import ZoomMtgEmbedded from '@zoom\u002Fmeetingsdk\u002Fembedded';\n\n\u002F\u002F Step 1: Create client instance (do once, not on every render!)\nconst client = ZoomMtgEmbedded.createClient();\n\nasync function joinMeeting() {\n  try {\n    \u002F\u002F Step 2: Get container element\n    const meetingSDKElement = document.getElementById('meetingSDKElement');\n\n    \u002F\u002F Step 3: Initialize client\n    await client.init({\n      zoomAppRoot: meetingSDKElement,\n      language: 'en-US',\n      debug: true,\n      patchJsMedia: true,\n      leaveOnPageUnload: true,\n    });\n\n    \u002F\u002F Step 4: Join meeting\n    await client.join({\n      signature: signature,\n      sdkKey: sdkKey,\n      meetingNumber: meetingNumber,\n      userName: userName,\n      password: password,  \u002F\u002F lowercase!\n      userEmail: userEmail,\n    });\n\n    console.log('Joined successfully!');\n  } catch (error) {\n    console.error('Failed to join:', error);\n  }\n}\n",[643],{"type":45,"tag":84,"props":644,"children":645},{"__ignoreMap":258},[646,677,686,695,737,744,771,784,793,853,861,870,902,925,955,978,999,1020,1037,1045,1054,1083,1105,1127,1149,1171,1199,1221,1237,1245,1288,1321,1371,1380],{"type":45,"tag":264,"props":647,"children":648},{"class":266,"line":267},[649,653,657,661,665,669,673],{"type":45,"tag":264,"props":650,"children":651},{"style":304},[652],{"type":50,"value":307},{"type":45,"tag":264,"props":654,"children":655},{"style":310},[656],{"type":50,"value":313},{"type":45,"tag":264,"props":658,"children":659},{"style":304},[660],{"type":50,"value":318},{"type":45,"tag":264,"props":662,"children":663},{"style":321},[664],{"type":50,"value":324},{"type":45,"tag":264,"props":666,"children":667},{"style":276},[668],{"type":50,"value":329},{"type":45,"tag":264,"props":670,"children":671},{"style":321},[672],{"type":50,"value":334},{"type":45,"tag":264,"props":674,"children":675},{"style":321},[676],{"type":50,"value":339},{"type":45,"tag":264,"props":678,"children":679},{"class":266,"line":410},[680],{"type":45,"tag":264,"props":681,"children":683},{"emptyLinePlaceholder":682},true,[684],{"type":50,"value":685},"\n",{"type":45,"tag":264,"props":687,"children":688},{"class":266,"line":455},[689],{"type":45,"tag":264,"props":690,"children":692},{"style":691},"--shiki-light:#90A4AE;--shiki-light-font-style:italic;--shiki-default:#546E7A;--shiki-default-font-style:italic;--shiki-dark:#676E95;--shiki-dark-font-style:italic",[693],{"type":50,"value":694},"\u002F\u002F Step 1: Create client instance (do once, not on every render!)\n",{"type":45,"tag":264,"props":696,"children":697},{"class":266,"line":500},[698,703,708,712,717,722,728,733],{"type":45,"tag":264,"props":699,"children":700},{"style":371},[701],{"type":50,"value":702},"const",{"type":45,"tag":264,"props":704,"children":705},{"style":310},[706],{"type":50,"value":707}," client ",{"type":45,"tag":264,"props":709,"children":710},{"style":321},[711],{"type":50,"value":379},{"type":45,"tag":264,"props":713,"children":714},{"style":310},[715],{"type":50,"value":716}," ZoomMtgEmbedded",{"type":45,"tag":264,"props":718,"children":719},{"style":321},[720],{"type":50,"value":721},".",{"type":45,"tag":264,"props":723,"children":725},{"style":724},"--shiki-light:#6182B8;--shiki-default:#82AAFF;--shiki-dark:#82AAFF",[726],{"type":50,"value":727},"createClient",{"type":45,"tag":264,"props":729,"children":730},{"style":310},[731],{"type":50,"value":732},"()",{"type":45,"tag":264,"props":734,"children":735},{"style":321},[736],{"type":50,"value":339},{"type":45,"tag":264,"props":738,"children":739},{"class":266,"line":545},[740],{"type":45,"tag":264,"props":741,"children":742},{"emptyLinePlaceholder":682},[743],{"type":50,"value":685},{"type":45,"tag":264,"props":745,"children":746},{"class":266,"line":590},[747,752,757,762,766],{"type":45,"tag":264,"props":748,"children":749},{"style":371},[750],{"type":50,"value":751},"async",{"type":45,"tag":264,"props":753,"children":754},{"style":371},[755],{"type":50,"value":756}," function",{"type":45,"tag":264,"props":758,"children":759},{"style":724},[760],{"type":50,"value":761}," joinMeeting",{"type":45,"tag":264,"props":763,"children":764},{"style":321},[765],{"type":50,"value":732},{"type":45,"tag":264,"props":767,"children":768},{"style":321},[769],{"type":50,"value":770}," {\n",{"type":45,"tag":264,"props":772,"children":774},{"class":266,"line":773},7,[775,780],{"type":45,"tag":264,"props":776,"children":777},{"style":304},[778],{"type":50,"value":779},"  try",{"type":45,"tag":264,"props":781,"children":782},{"style":321},[783],{"type":50,"value":770},{"type":45,"tag":264,"props":785,"children":787},{"class":266,"line":786},8,[788],{"type":45,"tag":264,"props":789,"children":790},{"style":691},[791],{"type":50,"value":792},"    \u002F\u002F Step 2: Get container element\n",{"type":45,"tag":264,"props":794,"children":796},{"class":266,"line":795},9,[797,802,807,812,817,821,826,831,835,840,844,849],{"type":45,"tag":264,"props":798,"children":799},{"style":371},[800],{"type":50,"value":801},"    const",{"type":45,"tag":264,"props":803,"children":804},{"style":310},[805],{"type":50,"value":806}," meetingSDKElement",{"type":45,"tag":264,"props":808,"children":809},{"style":321},[810],{"type":50,"value":811}," =",{"type":45,"tag":264,"props":813,"children":814},{"style":310},[815],{"type":50,"value":816}," document",{"type":45,"tag":264,"props":818,"children":819},{"style":321},[820],{"type":50,"value":721},{"type":45,"tag":264,"props":822,"children":823},{"style":724},[824],{"type":50,"value":825},"getElementById",{"type":45,"tag":264,"props":827,"children":828},{"style":365},[829],{"type":50,"value":830},"(",{"type":45,"tag":264,"props":832,"children":833},{"style":321},[834],{"type":50,"value":334},{"type":45,"tag":264,"props":836,"children":837},{"style":276},[838],{"type":50,"value":839},"meetingSDKElement",{"type":45,"tag":264,"props":841,"children":842},{"style":321},[843],{"type":50,"value":334},{"type":45,"tag":264,"props":845,"children":846},{"style":365},[847],{"type":50,"value":848},")",{"type":45,"tag":264,"props":850,"children":851},{"style":321},[852],{"type":50,"value":339},{"type":45,"tag":264,"props":854,"children":856},{"class":266,"line":855},10,[857],{"type":45,"tag":264,"props":858,"children":859},{"emptyLinePlaceholder":682},[860],{"type":50,"value":685},{"type":45,"tag":264,"props":862,"children":864},{"class":266,"line":863},11,[865],{"type":45,"tag":264,"props":866,"children":867},{"style":691},[868],{"type":50,"value":869},"    \u002F\u002F Step 3: Initialize client\n",{"type":45,"tag":264,"props":871,"children":873},{"class":266,"line":872},12,[874,879,884,888,893,897],{"type":45,"tag":264,"props":875,"children":876},{"style":304},[877],{"type":50,"value":878},"    await",{"type":45,"tag":264,"props":880,"children":881},{"style":310},[882],{"type":50,"value":883}," client",{"type":45,"tag":264,"props":885,"children":886},{"style":321},[887],{"type":50,"value":721},{"type":45,"tag":264,"props":889,"children":890},{"style":724},[891],{"type":50,"value":892},"init",{"type":45,"tag":264,"props":894,"children":895},{"style":365},[896],{"type":50,"value":830},{"type":45,"tag":264,"props":898,"children":899},{"style":321},[900],{"type":50,"value":901},"{\n",{"type":45,"tag":264,"props":903,"children":905},{"class":266,"line":904},13,[906,911,916,920],{"type":45,"tag":264,"props":907,"children":908},{"style":365},[909],{"type":50,"value":910},"      zoomAppRoot",{"type":45,"tag":264,"props":912,"children":913},{"style":321},[914],{"type":50,"value":915},":",{"type":45,"tag":264,"props":917,"children":918},{"style":310},[919],{"type":50,"value":806},{"type":45,"tag":264,"props":921,"children":922},{"style":321},[923],{"type":50,"value":924},",\n",{"type":45,"tag":264,"props":926,"children":928},{"class":266,"line":927},14,[929,934,938,942,947,951],{"type":45,"tag":264,"props":930,"children":931},{"style":365},[932],{"type":50,"value":933},"      language",{"type":45,"tag":264,"props":935,"children":936},{"style":321},[937],{"type":50,"value":915},{"type":45,"tag":264,"props":939,"children":940},{"style":321},[941],{"type":50,"value":324},{"type":45,"tag":264,"props":943,"children":944},{"style":276},[945],{"type":50,"value":946},"en-US",{"type":45,"tag":264,"props":948,"children":949},{"style":321},[950],{"type":50,"value":334},{"type":45,"tag":264,"props":952,"children":953},{"style":321},[954],{"type":50,"value":924},{"type":45,"tag":264,"props":956,"children":958},{"class":266,"line":957},15,[959,964,968,974],{"type":45,"tag":264,"props":960,"children":961},{"style":365},[962],{"type":50,"value":963},"      debug",{"type":45,"tag":264,"props":965,"children":966},{"style":321},[967],{"type":50,"value":915},{"type":45,"tag":264,"props":969,"children":971},{"style":970},"--shiki-light:#FF5370;--shiki-default:#FF9CAC;--shiki-dark:#FF9CAC",[972],{"type":50,"value":973}," true",{"type":45,"tag":264,"props":975,"children":976},{"style":321},[977],{"type":50,"value":924},{"type":45,"tag":264,"props":979,"children":981},{"class":266,"line":980},16,[982,987,991,995],{"type":45,"tag":264,"props":983,"children":984},{"style":365},[985],{"type":50,"value":986},"      patchJsMedia",{"type":45,"tag":264,"props":988,"children":989},{"style":321},[990],{"type":50,"value":915},{"type":45,"tag":264,"props":992,"children":993},{"style":970},[994],{"type":50,"value":973},{"type":45,"tag":264,"props":996,"children":997},{"style":321},[998],{"type":50,"value":924},{"type":45,"tag":264,"props":1000,"children":1002},{"class":266,"line":1001},17,[1003,1008,1012,1016],{"type":45,"tag":264,"props":1004,"children":1005},{"style":365},[1006],{"type":50,"value":1007},"      leaveOnPageUnload",{"type":45,"tag":264,"props":1009,"children":1010},{"style":321},[1011],{"type":50,"value":915},{"type":45,"tag":264,"props":1013,"children":1014},{"style":970},[1015],{"type":50,"value":973},{"type":45,"tag":264,"props":1017,"children":1018},{"style":321},[1019],{"type":50,"value":924},{"type":45,"tag":264,"props":1021,"children":1023},{"class":266,"line":1022},18,[1024,1029,1033],{"type":45,"tag":264,"props":1025,"children":1026},{"style":321},[1027],{"type":50,"value":1028},"    }",{"type":45,"tag":264,"props":1030,"children":1031},{"style":365},[1032],{"type":50,"value":848},{"type":45,"tag":264,"props":1034,"children":1035},{"style":321},[1036],{"type":50,"value":339},{"type":45,"tag":264,"props":1038,"children":1040},{"class":266,"line":1039},19,[1041],{"type":45,"tag":264,"props":1042,"children":1043},{"emptyLinePlaceholder":682},[1044],{"type":50,"value":685},{"type":45,"tag":264,"props":1046,"children":1048},{"class":266,"line":1047},20,[1049],{"type":45,"tag":264,"props":1050,"children":1051},{"style":691},[1052],{"type":50,"value":1053},"    \u002F\u002F Step 4: Join meeting\n",{"type":45,"tag":264,"props":1055,"children":1057},{"class":266,"line":1056},21,[1058,1062,1066,1070,1075,1079],{"type":45,"tag":264,"props":1059,"children":1060},{"style":304},[1061],{"type":50,"value":878},{"type":45,"tag":264,"props":1063,"children":1064},{"style":310},[1065],{"type":50,"value":883},{"type":45,"tag":264,"props":1067,"children":1068},{"style":321},[1069],{"type":50,"value":721},{"type":45,"tag":264,"props":1071,"children":1072},{"style":724},[1073],{"type":50,"value":1074},"join",{"type":45,"tag":264,"props":1076,"children":1077},{"style":365},[1078],{"type":50,"value":830},{"type":45,"tag":264,"props":1080,"children":1081},{"style":321},[1082],{"type":50,"value":901},{"type":45,"tag":264,"props":1084,"children":1086},{"class":266,"line":1085},22,[1087,1092,1096,1101],{"type":45,"tag":264,"props":1088,"children":1089},{"style":365},[1090],{"type":50,"value":1091},"      signature",{"type":45,"tag":264,"props":1093,"children":1094},{"style":321},[1095],{"type":50,"value":915},{"type":45,"tag":264,"props":1097,"children":1098},{"style":310},[1099],{"type":50,"value":1100}," signature",{"type":45,"tag":264,"props":1102,"children":1103},{"style":321},[1104],{"type":50,"value":924},{"type":45,"tag":264,"props":1106,"children":1108},{"class":266,"line":1107},23,[1109,1114,1118,1123],{"type":45,"tag":264,"props":1110,"children":1111},{"style":365},[1112],{"type":50,"value":1113},"      sdkKey",{"type":45,"tag":264,"props":1115,"children":1116},{"style":321},[1117],{"type":50,"value":915},{"type":45,"tag":264,"props":1119,"children":1120},{"style":310},[1121],{"type":50,"value":1122}," sdkKey",{"type":45,"tag":264,"props":1124,"children":1125},{"style":321},[1126],{"type":50,"value":924},{"type":45,"tag":264,"props":1128,"children":1130},{"class":266,"line":1129},24,[1131,1136,1140,1145],{"type":45,"tag":264,"props":1132,"children":1133},{"style":365},[1134],{"type":50,"value":1135},"      meetingNumber",{"type":45,"tag":264,"props":1137,"children":1138},{"style":321},[1139],{"type":50,"value":915},{"type":45,"tag":264,"props":1141,"children":1142},{"style":310},[1143],{"type":50,"value":1144}," meetingNumber",{"type":45,"tag":264,"props":1146,"children":1147},{"style":321},[1148],{"type":50,"value":924},{"type":45,"tag":264,"props":1150,"children":1152},{"class":266,"line":1151},25,[1153,1158,1162,1167],{"type":45,"tag":264,"props":1154,"children":1155},{"style":365},[1156],{"type":50,"value":1157},"      userName",{"type":45,"tag":264,"props":1159,"children":1160},{"style":321},[1161],{"type":50,"value":915},{"type":45,"tag":264,"props":1163,"children":1164},{"style":310},[1165],{"type":50,"value":1166}," userName",{"type":45,"tag":264,"props":1168,"children":1169},{"style":321},[1170],{"type":50,"value":924},{"type":45,"tag":264,"props":1172,"children":1174},{"class":266,"line":1173},26,[1175,1180,1184,1189,1194],{"type":45,"tag":264,"props":1176,"children":1177},{"style":365},[1178],{"type":50,"value":1179},"      password",{"type":45,"tag":264,"props":1181,"children":1182},{"style":321},[1183],{"type":50,"value":915},{"type":45,"tag":264,"props":1185,"children":1186},{"style":310},[1187],{"type":50,"value":1188}," password",{"type":45,"tag":264,"props":1190,"children":1191},{"style":321},[1192],{"type":50,"value":1193},",",{"type":45,"tag":264,"props":1195,"children":1196},{"style":691},[1197],{"type":50,"value":1198},"  \u002F\u002F lowercase!\n",{"type":45,"tag":264,"props":1200,"children":1202},{"class":266,"line":1201},27,[1203,1208,1212,1217],{"type":45,"tag":264,"props":1204,"children":1205},{"style":365},[1206],{"type":50,"value":1207},"      userEmail",{"type":45,"tag":264,"props":1209,"children":1210},{"style":321},[1211],{"type":50,"value":915},{"type":45,"tag":264,"props":1213,"children":1214},{"style":310},[1215],{"type":50,"value":1216}," userEmail",{"type":45,"tag":264,"props":1218,"children":1219},{"style":321},[1220],{"type":50,"value":924},{"type":45,"tag":264,"props":1222,"children":1224},{"class":266,"line":1223},28,[1225,1229,1233],{"type":45,"tag":264,"props":1226,"children":1227},{"style":321},[1228],{"type":50,"value":1028},{"type":45,"tag":264,"props":1230,"children":1231},{"style":365},[1232],{"type":50,"value":848},{"type":45,"tag":264,"props":1234,"children":1235},{"style":321},[1236],{"type":50,"value":339},{"type":45,"tag":264,"props":1238,"children":1240},{"class":266,"line":1239},29,[1241],{"type":45,"tag":264,"props":1242,"children":1243},{"emptyLinePlaceholder":682},[1244],{"type":50,"value":685},{"type":45,"tag":264,"props":1246,"children":1248},{"class":266,"line":1247},30,[1249,1254,1258,1263,1267,1271,1276,1280,1284],{"type":45,"tag":264,"props":1250,"children":1251},{"style":310},[1252],{"type":50,"value":1253},"    console",{"type":45,"tag":264,"props":1255,"children":1256},{"style":321},[1257],{"type":50,"value":721},{"type":45,"tag":264,"props":1259,"children":1260},{"style":724},[1261],{"type":50,"value":1262},"log",{"type":45,"tag":264,"props":1264,"children":1265},{"style":365},[1266],{"type":50,"value":830},{"type":45,"tag":264,"props":1268,"children":1269},{"style":321},[1270],{"type":50,"value":334},{"type":45,"tag":264,"props":1272,"children":1273},{"style":276},[1274],{"type":50,"value":1275},"Joined successfully!",{"type":45,"tag":264,"props":1277,"children":1278},{"style":321},[1279],{"type":50,"value":334},{"type":45,"tag":264,"props":1281,"children":1282},{"style":365},[1283],{"type":50,"value":848},{"type":45,"tag":264,"props":1285,"children":1286},{"style":321},[1287],{"type":50,"value":339},{"type":45,"tag":264,"props":1289,"children":1291},{"class":266,"line":1290},31,[1292,1297,1302,1307,1312,1317],{"type":45,"tag":264,"props":1293,"children":1294},{"style":321},[1295],{"type":50,"value":1296},"  }",{"type":45,"tag":264,"props":1298,"children":1299},{"style":304},[1300],{"type":50,"value":1301}," catch",{"type":45,"tag":264,"props":1303,"children":1304},{"style":365},[1305],{"type":50,"value":1306}," (",{"type":45,"tag":264,"props":1308,"children":1309},{"style":310},[1310],{"type":50,"value":1311},"error",{"type":45,"tag":264,"props":1313,"children":1314},{"style":365},[1315],{"type":50,"value":1316},") ",{"type":45,"tag":264,"props":1318,"children":1319},{"style":321},[1320],{"type":50,"value":901},{"type":45,"tag":264,"props":1322,"children":1324},{"class":266,"line":1323},32,[1325,1329,1333,1337,1341,1345,1350,1354,1358,1363,1367],{"type":45,"tag":264,"props":1326,"children":1327},{"style":310},[1328],{"type":50,"value":1253},{"type":45,"tag":264,"props":1330,"children":1331},{"style":321},[1332],{"type":50,"value":721},{"type":45,"tag":264,"props":1334,"children":1335},{"style":724},[1336],{"type":50,"value":1311},{"type":45,"tag":264,"props":1338,"children":1339},{"style":365},[1340],{"type":50,"value":830},{"type":45,"tag":264,"props":1342,"children":1343},{"style":321},[1344],{"type":50,"value":334},{"type":45,"tag":264,"props":1346,"children":1347},{"style":276},[1348],{"type":50,"value":1349},"Failed to join:",{"type":45,"tag":264,"props":1351,"children":1352},{"style":321},[1353],{"type":50,"value":334},{"type":45,"tag":264,"props":1355,"children":1356},{"style":321},[1357],{"type":50,"value":1193},{"type":45,"tag":264,"props":1359,"children":1360},{"style":310},[1361],{"type":50,"value":1362}," error",{"type":45,"tag":264,"props":1364,"children":1365},{"style":365},[1366],{"type":50,"value":848},{"type":45,"tag":264,"props":1368,"children":1369},{"style":321},[1370],{"type":50,"value":339},{"type":45,"tag":264,"props":1372,"children":1374},{"class":266,"line":1373},33,[1375],{"type":45,"tag":264,"props":1376,"children":1377},{"style":321},[1378],{"type":50,"value":1379},"  }\n",{"type":45,"tag":264,"props":1381,"children":1383},{"class":266,"line":1382},34,[1384],{"type":45,"tag":264,"props":1385,"children":1386},{"style":321},[1387],{"type":50,"value":1388},"}\n",{"type":45,"tag":72,"props":1390,"children":1392},{"id":1391},"clientinit-all-options",[1393],{"type":50,"value":1394},"client.init() - All Options",{"type":45,"tag":246,"props":1396,"children":1398},{"id":1397},"required",[1399],{"type":50,"value":1400},"Required",{"type":45,"tag":93,"props":1402,"children":1403},{},[1404,1425],{"type":45,"tag":97,"props":1405,"children":1406},{},[1407],{"type":45,"tag":101,"props":1408,"children":1409},{},[1410,1415,1420],{"type":45,"tag":105,"props":1411,"children":1412},{},[1413],{"type":50,"value":1414},"Parameter",{"type":45,"tag":105,"props":1416,"children":1417},{},[1418],{"type":50,"value":1419},"Type",{"type":45,"tag":105,"props":1421,"children":1422},{},[1423],{"type":50,"value":1424},"Description",{"type":45,"tag":116,"props":1426,"children":1427},{},[1428],{"type":45,"tag":101,"props":1429,"children":1430},{},[1431,1440,1449],{"type":45,"tag":123,"props":1432,"children":1433},{},[1434],{"type":45,"tag":84,"props":1435,"children":1437},{"className":1436},[],[1438],{"type":50,"value":1439},"zoomAppRoot",{"type":45,"tag":123,"props":1441,"children":1442},{},[1443],{"type":45,"tag":84,"props":1444,"children":1446},{"className":1445},[],[1447],{"type":50,"value":1448},"HTMLElement",{"type":45,"tag":123,"props":1450,"children":1451},{},[1452],{"type":50,"value":1453},"Container element for meeting UI",{"type":45,"tag":246,"props":1455,"children":1457},{"id":1456},"display",[1458],{"type":50,"value":1459},"Display",{"type":45,"tag":93,"props":1461,"children":1462},{},[1463,1486],{"type":45,"tag":97,"props":1464,"children":1465},{},[1466],{"type":45,"tag":101,"props":1467,"children":1468},{},[1469,1473,1477,1482],{"type":45,"tag":105,"props":1470,"children":1471},{},[1472],{"type":50,"value":1414},{"type":45,"tag":105,"props":1474,"children":1475},{},[1476],{"type":50,"value":1419},{"type":45,"tag":105,"props":1478,"children":1479},{},[1480],{"type":50,"value":1481},"Default",{"type":45,"tag":105,"props":1483,"children":1484},{},[1485],{"type":50,"value":1424},{"type":45,"tag":116,"props":1487,"children":1488},{},[1489,1524],{"type":45,"tag":101,"props":1490,"children":1491},{},[1492,1501,1510,1519],{"type":45,"tag":123,"props":1493,"children":1494},{},[1495],{"type":45,"tag":84,"props":1496,"children":1498},{"className":1497},[],[1499],{"type":50,"value":1500},"language",{"type":45,"tag":123,"props":1502,"children":1503},{},[1504],{"type":45,"tag":84,"props":1505,"children":1507},{"className":1506},[],[1508],{"type":50,"value":1509},"string",{"type":45,"tag":123,"props":1511,"children":1512},{},[1513],{"type":45,"tag":84,"props":1514,"children":1516},{"className":1515},[],[1517],{"type":50,"value":1518},"'en-US'",{"type":45,"tag":123,"props":1520,"children":1521},{},[1522],{"type":50,"value":1523},"UI language",{"type":45,"tag":101,"props":1525,"children":1526},{},[1527,1536,1545,1554],{"type":45,"tag":123,"props":1528,"children":1529},{},[1530],{"type":45,"tag":84,"props":1531,"children":1533},{"className":1532},[],[1534],{"type":50,"value":1535},"debug",{"type":45,"tag":123,"props":1537,"children":1538},{},[1539],{"type":45,"tag":84,"props":1540,"children":1542},{"className":1541},[],[1543],{"type":50,"value":1544},"boolean",{"type":45,"tag":123,"props":1546,"children":1547},{},[1548],{"type":45,"tag":84,"props":1549,"children":1551},{"className":1550},[],[1552],{"type":50,"value":1553},"false",{"type":45,"tag":123,"props":1555,"children":1556},{},[1557],{"type":50,"value":1558},"Enable debug logging",{"type":45,"tag":246,"props":1560,"children":1562},{"id":1561},"media",[1563],{"type":50,"value":1564},"Media",{"type":45,"tag":93,"props":1566,"children":1567},{},[1568,1590],{"type":45,"tag":97,"props":1569,"children":1570},{},[1571],{"type":45,"tag":101,"props":1572,"children":1573},{},[1574,1578,1582,1586],{"type":45,"tag":105,"props":1575,"children":1576},{},[1577],{"type":50,"value":1414},{"type":45,"tag":105,"props":1579,"children":1580},{},[1581],{"type":50,"value":1419},{"type":45,"tag":105,"props":1583,"children":1584},{},[1585],{"type":50,"value":1481},{"type":45,"tag":105,"props":1587,"children":1588},{},[1589],{"type":50,"value":1424},{"type":45,"tag":116,"props":1591,"children":1592},{},[1593,1626,1659,1693],{"type":45,"tag":101,"props":1594,"children":1595},{},[1596,1605,1613,1621],{"type":45,"tag":123,"props":1597,"children":1598},{},[1599],{"type":45,"tag":84,"props":1600,"children":1602},{"className":1601},[],[1603],{"type":50,"value":1604},"patchJsMedia",{"type":45,"tag":123,"props":1606,"children":1607},{},[1608],{"type":45,"tag":84,"props":1609,"children":1611},{"className":1610},[],[1612],{"type":50,"value":1544},{"type":45,"tag":123,"props":1614,"children":1615},{},[1616],{"type":45,"tag":84,"props":1617,"children":1619},{"className":1618},[],[1620],{"type":50,"value":1553},{"type":45,"tag":123,"props":1622,"children":1623},{},[1624],{"type":50,"value":1625},"Auto-apply media fixes",{"type":45,"tag":101,"props":1627,"children":1628},{},[1629,1638,1646,1654],{"type":45,"tag":123,"props":1630,"children":1631},{},[1632],{"type":45,"tag":84,"props":1633,"children":1635},{"className":1634},[],[1636],{"type":50,"value":1637},"leaveOnPageUnload",{"type":45,"tag":123,"props":1639,"children":1640},{},[1641],{"type":45,"tag":84,"props":1642,"children":1644},{"className":1643},[],[1645],{"type":50,"value":1544},{"type":45,"tag":123,"props":1647,"children":1648},{},[1649],{"type":45,"tag":84,"props":1650,"children":1652},{"className":1651},[],[1653],{"type":50,"value":1553},{"type":45,"tag":123,"props":1655,"children":1656},{},[1657],{"type":50,"value":1658},"Cleanup on page unload",{"type":45,"tag":101,"props":1660,"children":1661},{},[1662,1671,1679,1688],{"type":45,"tag":123,"props":1663,"children":1664},{},[1665],{"type":45,"tag":84,"props":1666,"children":1668},{"className":1667},[],[1669],{"type":50,"value":1670},"enableHD",{"type":45,"tag":123,"props":1672,"children":1673},{},[1674],{"type":45,"tag":84,"props":1675,"children":1677},{"className":1676},[],[1678],{"type":50,"value":1544},{"type":45,"tag":123,"props":1680,"children":1681},{},[1682],{"type":45,"tag":84,"props":1683,"children":1685},{"className":1684},[],[1686],{"type":50,"value":1687},"true",{"type":45,"tag":123,"props":1689,"children":1690},{},[1691],{"type":50,"value":1692},"Enable 720p video",{"type":45,"tag":101,"props":1694,"children":1695},{},[1696,1705,1713,1721],{"type":45,"tag":123,"props":1697,"children":1698},{},[1699],{"type":45,"tag":84,"props":1700,"children":1702},{"className":1701},[],[1703],{"type":50,"value":1704},"enableFullHD",{"type":45,"tag":123,"props":1706,"children":1707},{},[1708],{"type":45,"tag":84,"props":1709,"children":1711},{"className":1710},[],[1712],{"type":50,"value":1544},{"type":45,"tag":123,"props":1714,"children":1715},{},[1716],{"type":45,"tag":84,"props":1717,"children":1719},{"className":1718},[],[1720],{"type":50,"value":1553},{"type":45,"tag":123,"props":1722,"children":1723},{},[1724],{"type":50,"value":1725},"Enable 1080p video",{"type":45,"tag":246,"props":1727,"children":1729},{"id":1728},"customization",[1730],{"type":50,"value":1731},"Customization",{"type":45,"tag":93,"props":1733,"children":1734},{},[1735,1753],{"type":45,"tag":97,"props":1736,"children":1737},{},[1738],{"type":45,"tag":101,"props":1739,"children":1740},{},[1741,1745,1749],{"type":45,"tag":105,"props":1742,"children":1743},{},[1744],{"type":50,"value":1414},{"type":45,"tag":105,"props":1746,"children":1747},{},[1748],{"type":50,"value":1419},{"type":45,"tag":105,"props":1750,"children":1751},{},[1752],{"type":50,"value":1424},{"type":45,"tag":116,"props":1754,"children":1755},{},[1756,1782,1813],{"type":45,"tag":101,"props":1757,"children":1758},{},[1759,1768,1777],{"type":45,"tag":123,"props":1760,"children":1761},{},[1762],{"type":45,"tag":84,"props":1763,"children":1765},{"className":1764},[],[1766],{"type":50,"value":1767},"customize",{"type":45,"tag":123,"props":1769,"children":1770},{},[1771],{"type":45,"tag":84,"props":1772,"children":1774},{"className":1773},[],[1775],{"type":50,"value":1776},"object",{"type":45,"tag":123,"props":1778,"children":1779},{},[1780],{"type":50,"value":1781},"UI customization options",{"type":45,"tag":101,"props":1783,"children":1784},{},[1785,1794,1802],{"type":45,"tag":123,"props":1786,"children":1787},{},[1788],{"type":45,"tag":84,"props":1789,"children":1791},{"className":1790},[],[1792],{"type":50,"value":1793},"webEndpoint",{"type":45,"tag":123,"props":1795,"children":1796},{},[1797],{"type":45,"tag":84,"props":1798,"children":1800},{"className":1799},[],[1801],{"type":50,"value":1509},{"type":45,"tag":123,"props":1803,"children":1804},{},[1805,1807],{"type":50,"value":1806},"For ZFG: ",{"type":45,"tag":84,"props":1808,"children":1810},{"className":1809},[],[1811],{"type":50,"value":1812},"'www.zoomgov.com'",{"type":45,"tag":101,"props":1814,"children":1815},{},[1816,1825,1833],{"type":45,"tag":123,"props":1817,"children":1818},{},[1819],{"type":45,"tag":84,"props":1820,"children":1822},{"className":1821},[],[1823],{"type":50,"value":1824},"assetPath",{"type":45,"tag":123,"props":1826,"children":1827},{},[1828],{"type":45,"tag":84,"props":1829,"children":1831},{"className":1830},[],[1832],{"type":50,"value":1509},{"type":45,"tag":123,"props":1834,"children":1835},{},[1836],{"type":50,"value":1837},"Custom path for AV libraries",{"type":45,"tag":246,"props":1839,"children":1841},{"id":1840},"customize-object",[1842],{"type":50,"value":1843},"Customize Object",{"type":45,"tag":253,"props":1845,"children":1847},{"className":292,"code":1846,"language":294,"meta":258,"style":258},"await client.init({\n  zoomAppRoot: element,\n  customize: {\n    \u002F\u002F Meeting info displayed\n    meetingInfo: [\n      'topic',\n      'host',\n      'mn',\n      'pwd',\n      'telPwd',\n      'invite',\n      'participant',\n      'dc',\n      'enctype'\n    ],\n\n    \u002F\u002F Video customization\n    video: {\n      isResizable: true,\n      viewSizes: {\n        default: {\n          width: 1000,\n          height: 600\n        },\n        ribbon: {\n          width: 300,\n          height: 700\n        }\n      },\n      popper: {\n        disableDraggable: false\n      }\n    },\n\n    \u002F\u002F Custom toolbar buttons\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    \u002F\u002F Active speaker indicator\n    activeSpaker: {\n      strokeColor: '#00FF00'\n    }\n  }\n});\n",[1848],{"type":45,"tag":84,"props":1849,"children":1850},{"__ignoreMap":258},[1851,1879,1900,1916,1924,1941,1962,1982,2002,2022,2042,2062,2082,2102,2119,2131,2138,2146,2162,2182,2198,2214,2236,2253,2261,2277,2297,2313,2321,2329,2345,2362,2370,2378,2385,2394,2411,2428,2437,2467,2497,2524,2566,2575,2583,2592,2600,2608,2617,2634,2660,2669,2677],{"type":45,"tag":264,"props":1852,"children":1853},{"class":266,"line":267},[1854,1859,1863,1867,1871,1875],{"type":45,"tag":264,"props":1855,"children":1856},{"style":304},[1857],{"type":50,"value":1858},"await",{"type":45,"tag":264,"props":1860,"children":1861},{"style":310},[1862],{"type":50,"value":883},{"type":45,"tag":264,"props":1864,"children":1865},{"style":321},[1866],{"type":50,"value":721},{"type":45,"tag":264,"props":1868,"children":1869},{"style":724},[1870],{"type":50,"value":892},{"type":45,"tag":264,"props":1872,"children":1873},{"style":310},[1874],{"type":50,"value":830},{"type":45,"tag":264,"props":1876,"children":1877},{"style":321},[1878],{"type":50,"value":901},{"type":45,"tag":264,"props":1880,"children":1881},{"class":266,"line":410},[1882,1887,1891,1896],{"type":45,"tag":264,"props":1883,"children":1884},{"style":365},[1885],{"type":50,"value":1886},"  zoomAppRoot",{"type":45,"tag":264,"props":1888,"children":1889},{"style":321},[1890],{"type":50,"value":915},{"type":45,"tag":264,"props":1892,"children":1893},{"style":310},[1894],{"type":50,"value":1895}," element",{"type":45,"tag":264,"props":1897,"children":1898},{"style":321},[1899],{"type":50,"value":924},{"type":45,"tag":264,"props":1901,"children":1902},{"class":266,"line":455},[1903,1908,1912],{"type":45,"tag":264,"props":1904,"children":1905},{"style":365},[1906],{"type":50,"value":1907},"  customize",{"type":45,"tag":264,"props":1909,"children":1910},{"style":321},[1911],{"type":50,"value":915},{"type":45,"tag":264,"props":1913,"children":1914},{"style":321},[1915],{"type":50,"value":770},{"type":45,"tag":264,"props":1917,"children":1918},{"class":266,"line":500},[1919],{"type":45,"tag":264,"props":1920,"children":1921},{"style":691},[1922],{"type":50,"value":1923},"    \u002F\u002F Meeting info displayed\n",{"type":45,"tag":264,"props":1925,"children":1926},{"class":266,"line":545},[1927,1932,1936],{"type":45,"tag":264,"props":1928,"children":1929},{"style":365},[1930],{"type":50,"value":1931},"    meetingInfo",{"type":45,"tag":264,"props":1933,"children":1934},{"style":321},[1935],{"type":50,"value":915},{"type":45,"tag":264,"props":1937,"children":1938},{"style":310},[1939],{"type":50,"value":1940}," [\n",{"type":45,"tag":264,"props":1942,"children":1943},{"class":266,"line":590},[1944,1949,1954,1958],{"type":45,"tag":264,"props":1945,"children":1946},{"style":321},[1947],{"type":50,"value":1948},"      '",{"type":45,"tag":264,"props":1950,"children":1951},{"style":276},[1952],{"type":50,"value":1953},"topic",{"type":45,"tag":264,"props":1955,"children":1956},{"style":321},[1957],{"type":50,"value":334},{"type":45,"tag":264,"props":1959,"children":1960},{"style":321},[1961],{"type":50,"value":924},{"type":45,"tag":264,"props":1963,"children":1964},{"class":266,"line":773},[1965,1969,1974,1978],{"type":45,"tag":264,"props":1966,"children":1967},{"style":321},[1968],{"type":50,"value":1948},{"type":45,"tag":264,"props":1970,"children":1971},{"style":276},[1972],{"type":50,"value":1973},"host",{"type":45,"tag":264,"props":1975,"children":1976},{"style":321},[1977],{"type":50,"value":334},{"type":45,"tag":264,"props":1979,"children":1980},{"style":321},[1981],{"type":50,"value":924},{"type":45,"tag":264,"props":1983,"children":1984},{"class":266,"line":786},[1985,1989,1994,1998],{"type":45,"tag":264,"props":1986,"children":1987},{"style":321},[1988],{"type":50,"value":1948},{"type":45,"tag":264,"props":1990,"children":1991},{"style":276},[1992],{"type":50,"value":1993},"mn",{"type":45,"tag":264,"props":1995,"children":1996},{"style":321},[1997],{"type":50,"value":334},{"type":45,"tag":264,"props":1999,"children":2000},{"style":321},[2001],{"type":50,"value":924},{"type":45,"tag":264,"props":2003,"children":2004},{"class":266,"line":795},[2005,2009,2014,2018],{"type":45,"tag":264,"props":2006,"children":2007},{"style":321},[2008],{"type":50,"value":1948},{"type":45,"tag":264,"props":2010,"children":2011},{"style":276},[2012],{"type":50,"value":2013},"pwd",{"type":45,"tag":264,"props":2015,"children":2016},{"style":321},[2017],{"type":50,"value":334},{"type":45,"tag":264,"props":2019,"children":2020},{"style":321},[2021],{"type":50,"value":924},{"type":45,"tag":264,"props":2023,"children":2024},{"class":266,"line":855},[2025,2029,2034,2038],{"type":45,"tag":264,"props":2026,"children":2027},{"style":321},[2028],{"type":50,"value":1948},{"type":45,"tag":264,"props":2030,"children":2031},{"style":276},[2032],{"type":50,"value":2033},"telPwd",{"type":45,"tag":264,"props":2035,"children":2036},{"style":321},[2037],{"type":50,"value":334},{"type":45,"tag":264,"props":2039,"children":2040},{"style":321},[2041],{"type":50,"value":924},{"type":45,"tag":264,"props":2043,"children":2044},{"class":266,"line":863},[2045,2049,2054,2058],{"type":45,"tag":264,"props":2046,"children":2047},{"style":321},[2048],{"type":50,"value":1948},{"type":45,"tag":264,"props":2050,"children":2051},{"style":276},[2052],{"type":50,"value":2053},"invite",{"type":45,"tag":264,"props":2055,"children":2056},{"style":321},[2057],{"type":50,"value":334},{"type":45,"tag":264,"props":2059,"children":2060},{"style":321},[2061],{"type":50,"value":924},{"type":45,"tag":264,"props":2063,"children":2064},{"class":266,"line":872},[2065,2069,2074,2078],{"type":45,"tag":264,"props":2066,"children":2067},{"style":321},[2068],{"type":50,"value":1948},{"type":45,"tag":264,"props":2070,"children":2071},{"style":276},[2072],{"type":50,"value":2073},"participant",{"type":45,"tag":264,"props":2075,"children":2076},{"style":321},[2077],{"type":50,"value":334},{"type":45,"tag":264,"props":2079,"children":2080},{"style":321},[2081],{"type":50,"value":924},{"type":45,"tag":264,"props":2083,"children":2084},{"class":266,"line":904},[2085,2089,2094,2098],{"type":45,"tag":264,"props":2086,"children":2087},{"style":321},[2088],{"type":50,"value":1948},{"type":45,"tag":264,"props":2090,"children":2091},{"style":276},[2092],{"type":50,"value":2093},"dc",{"type":45,"tag":264,"props":2095,"children":2096},{"style":321},[2097],{"type":50,"value":334},{"type":45,"tag":264,"props":2099,"children":2100},{"style":321},[2101],{"type":50,"value":924},{"type":45,"tag":264,"props":2103,"children":2104},{"class":266,"line":927},[2105,2109,2114],{"type":45,"tag":264,"props":2106,"children":2107},{"style":321},[2108],{"type":50,"value":1948},{"type":45,"tag":264,"props":2110,"children":2111},{"style":276},[2112],{"type":50,"value":2113},"enctype",{"type":45,"tag":264,"props":2115,"children":2116},{"style":321},[2117],{"type":50,"value":2118},"'\n",{"type":45,"tag":264,"props":2120,"children":2121},{"class":266,"line":957},[2122,2127],{"type":45,"tag":264,"props":2123,"children":2124},{"style":310},[2125],{"type":50,"value":2126},"    ]",{"type":45,"tag":264,"props":2128,"children":2129},{"style":321},[2130],{"type":50,"value":924},{"type":45,"tag":264,"props":2132,"children":2133},{"class":266,"line":980},[2134],{"type":45,"tag":264,"props":2135,"children":2136},{"emptyLinePlaceholder":682},[2137],{"type":50,"value":685},{"type":45,"tag":264,"props":2139,"children":2140},{"class":266,"line":1001},[2141],{"type":45,"tag":264,"props":2142,"children":2143},{"style":691},[2144],{"type":50,"value":2145},"    \u002F\u002F Video customization\n",{"type":45,"tag":264,"props":2147,"children":2148},{"class":266,"line":1022},[2149,2154,2158],{"type":45,"tag":264,"props":2150,"children":2151},{"style":365},[2152],{"type":50,"value":2153},"    video",{"type":45,"tag":264,"props":2155,"children":2156},{"style":321},[2157],{"type":50,"value":915},{"type":45,"tag":264,"props":2159,"children":2160},{"style":321},[2161],{"type":50,"value":770},{"type":45,"tag":264,"props":2163,"children":2164},{"class":266,"line":1039},[2165,2170,2174,2178],{"type":45,"tag":264,"props":2166,"children":2167},{"style":365},[2168],{"type":50,"value":2169},"      isResizable",{"type":45,"tag":264,"props":2171,"children":2172},{"style":321},[2173],{"type":50,"value":915},{"type":45,"tag":264,"props":2175,"children":2176},{"style":970},[2177],{"type":50,"value":973},{"type":45,"tag":264,"props":2179,"children":2180},{"style":321},[2181],{"type":50,"value":924},{"type":45,"tag":264,"props":2183,"children":2184},{"class":266,"line":1047},[2185,2190,2194],{"type":45,"tag":264,"props":2186,"children":2187},{"style":365},[2188],{"type":50,"value":2189},"      viewSizes",{"type":45,"tag":264,"props":2191,"children":2192},{"style":321},[2193],{"type":50,"value":915},{"type":45,"tag":264,"props":2195,"children":2196},{"style":321},[2197],{"type":50,"value":770},{"type":45,"tag":264,"props":2199,"children":2200},{"class":266,"line":1056},[2201,2206,2210],{"type":45,"tag":264,"props":2202,"children":2203},{"style":365},[2204],{"type":50,"value":2205},"        default",{"type":45,"tag":264,"props":2207,"children":2208},{"style":321},[2209],{"type":50,"value":915},{"type":45,"tag":264,"props":2211,"children":2212},{"style":321},[2213],{"type":50,"value":770},{"type":45,"tag":264,"props":2215,"children":2216},{"class":266,"line":1085},[2217,2222,2226,2232],{"type":45,"tag":264,"props":2218,"children":2219},{"style":365},[2220],{"type":50,"value":2221},"          width",{"type":45,"tag":264,"props":2223,"children":2224},{"style":321},[2225],{"type":50,"value":915},{"type":45,"tag":264,"props":2227,"children":2229},{"style":2228},"--shiki-light:#F76D47;--shiki-default:#F78C6C;--shiki-dark:#F78C6C",[2230],{"type":50,"value":2231}," 1000",{"type":45,"tag":264,"props":2233,"children":2234},{"style":321},[2235],{"type":50,"value":924},{"type":45,"tag":264,"props":2237,"children":2238},{"class":266,"line":1107},[2239,2244,2248],{"type":45,"tag":264,"props":2240,"children":2241},{"style":365},[2242],{"type":50,"value":2243},"          height",{"type":45,"tag":264,"props":2245,"children":2246},{"style":321},[2247],{"type":50,"value":915},{"type":45,"tag":264,"props":2249,"children":2250},{"style":2228},[2251],{"type":50,"value":2252}," 600\n",{"type":45,"tag":264,"props":2254,"children":2255},{"class":266,"line":1129},[2256],{"type":45,"tag":264,"props":2257,"children":2258},{"style":321},[2259],{"type":50,"value":2260},"        },\n",{"type":45,"tag":264,"props":2262,"children":2263},{"class":266,"line":1151},[2264,2269,2273],{"type":45,"tag":264,"props":2265,"children":2266},{"style":365},[2267],{"type":50,"value":2268},"        ribbon",{"type":45,"tag":264,"props":2270,"children":2271},{"style":321},[2272],{"type":50,"value":915},{"type":45,"tag":264,"props":2274,"children":2275},{"style":321},[2276],{"type":50,"value":770},{"type":45,"tag":264,"props":2278,"children":2279},{"class":266,"line":1173},[2280,2284,2288,2293],{"type":45,"tag":264,"props":2281,"children":2282},{"style":365},[2283],{"type":50,"value":2221},{"type":45,"tag":264,"props":2285,"children":2286},{"style":321},[2287],{"type":50,"value":915},{"type":45,"tag":264,"props":2289,"children":2290},{"style":2228},[2291],{"type":50,"value":2292}," 300",{"type":45,"tag":264,"props":2294,"children":2295},{"style":321},[2296],{"type":50,"value":924},{"type":45,"tag":264,"props":2298,"children":2299},{"class":266,"line":1201},[2300,2304,2308],{"type":45,"tag":264,"props":2301,"children":2302},{"style":365},[2303],{"type":50,"value":2243},{"type":45,"tag":264,"props":2305,"children":2306},{"style":321},[2307],{"type":50,"value":915},{"type":45,"tag":264,"props":2309,"children":2310},{"style":2228},[2311],{"type":50,"value":2312}," 700\n",{"type":45,"tag":264,"props":2314,"children":2315},{"class":266,"line":1223},[2316],{"type":45,"tag":264,"props":2317,"children":2318},{"style":321},[2319],{"type":50,"value":2320},"        }\n",{"type":45,"tag":264,"props":2322,"children":2323},{"class":266,"line":1239},[2324],{"type":45,"tag":264,"props":2325,"children":2326},{"style":321},[2327],{"type":50,"value":2328},"      },\n",{"type":45,"tag":264,"props":2330,"children":2331},{"class":266,"line":1247},[2332,2337,2341],{"type":45,"tag":264,"props":2333,"children":2334},{"style":365},[2335],{"type":50,"value":2336},"      popper",{"type":45,"tag":264,"props":2338,"children":2339},{"style":321},[2340],{"type":50,"value":915},{"type":45,"tag":264,"props":2342,"children":2343},{"style":321},[2344],{"type":50,"value":770},{"type":45,"tag":264,"props":2346,"children":2347},{"class":266,"line":1290},[2348,2353,2357],{"type":45,"tag":264,"props":2349,"children":2350},{"style":365},[2351],{"type":50,"value":2352},"        disableDraggable",{"type":45,"tag":264,"props":2354,"children":2355},{"style":321},[2356],{"type":50,"value":915},{"type":45,"tag":264,"props":2358,"children":2359},{"style":970},[2360],{"type":50,"value":2361}," false\n",{"type":45,"tag":264,"props":2363,"children":2364},{"class":266,"line":1323},[2365],{"type":45,"tag":264,"props":2366,"children":2367},{"style":321},[2368],{"type":50,"value":2369},"      }\n",{"type":45,"tag":264,"props":2371,"children":2372},{"class":266,"line":1373},[2373],{"type":45,"tag":264,"props":2374,"children":2375},{"style":321},[2376],{"type":50,"value":2377},"    },\n",{"type":45,"tag":264,"props":2379,"children":2380},{"class":266,"line":1382},[2381],{"type":45,"tag":264,"props":2382,"children":2383},{"emptyLinePlaceholder":682},[2384],{"type":50,"value":685},{"type":45,"tag":264,"props":2386,"children":2388},{"class":266,"line":2387},35,[2389],{"type":45,"tag":264,"props":2390,"children":2391},{"style":691},[2392],{"type":50,"value":2393},"    \u002F\u002F Custom toolbar buttons\n",{"type":45,"tag":264,"props":2395,"children":2397},{"class":266,"line":2396},36,[2398,2403,2407],{"type":45,"tag":264,"props":2399,"children":2400},{"style":365},[2401],{"type":50,"value":2402},"    toolbar",{"type":45,"tag":264,"props":2404,"children":2405},{"style":321},[2406],{"type":50,"value":915},{"type":45,"tag":264,"props":2408,"children":2409},{"style":321},[2410],{"type":50,"value":770},{"type":45,"tag":264,"props":2412,"children":2414},{"class":266,"line":2413},37,[2415,2420,2424],{"type":45,"tag":264,"props":2416,"children":2417},{"style":365},[2418],{"type":50,"value":2419},"      buttons",{"type":45,"tag":264,"props":2421,"children":2422},{"style":321},[2423],{"type":50,"value":915},{"type":45,"tag":264,"props":2425,"children":2426},{"style":310},[2427],{"type":50,"value":1940},{"type":45,"tag":264,"props":2429,"children":2431},{"class":266,"line":2430},38,[2432],{"type":45,"tag":264,"props":2433,"children":2434},{"style":321},[2435],{"type":50,"value":2436},"        {\n",{"type":45,"tag":264,"props":2438,"children":2440},{"class":266,"line":2439},39,[2441,2446,2450,2454,2459,2463],{"type":45,"tag":264,"props":2442,"children":2443},{"style":365},[2444],{"type":50,"value":2445},"          text",{"type":45,"tag":264,"props":2447,"children":2448},{"style":321},[2449],{"type":50,"value":915},{"type":45,"tag":264,"props":2451,"children":2452},{"style":321},[2453],{"type":50,"value":324},{"type":45,"tag":264,"props":2455,"children":2456},{"style":276},[2457],{"type":50,"value":2458},"Custom Button",{"type":45,"tag":264,"props":2460,"children":2461},{"style":321},[2462],{"type":50,"value":334},{"type":45,"tag":264,"props":2464,"children":2465},{"style":321},[2466],{"type":50,"value":924},{"type":45,"tag":264,"props":2468,"children":2470},{"class":266,"line":2469},40,[2471,2476,2480,2484,2489,2493],{"type":45,"tag":264,"props":2472,"children":2473},{"style":365},[2474],{"type":50,"value":2475},"          className",{"type":45,"tag":264,"props":2477,"children":2478},{"style":321},[2479],{"type":50,"value":915},{"type":45,"tag":264,"props":2481,"children":2482},{"style":321},[2483],{"type":50,"value":324},{"type":45,"tag":264,"props":2485,"children":2486},{"style":276},[2487],{"type":50,"value":2488},"custom-btn",{"type":45,"tag":264,"props":2490,"children":2491},{"style":321},[2492],{"type":50,"value":334},{"type":45,"tag":264,"props":2494,"children":2495},{"style":321},[2496],{"type":50,"value":924},{"type":45,"tag":264,"props":2498,"children":2500},{"class":266,"line":2499},41,[2501,2506,2510,2515,2520],{"type":45,"tag":264,"props":2502,"children":2503},{"style":724},[2504],{"type":50,"value":2505},"          onClick",{"type":45,"tag":264,"props":2507,"children":2508},{"style":321},[2509],{"type":50,"value":915},{"type":45,"tag":264,"props":2511,"children":2512},{"style":321},[2513],{"type":50,"value":2514}," ()",{"type":45,"tag":264,"props":2516,"children":2517},{"style":371},[2518],{"type":50,"value":2519}," =>",{"type":45,"tag":264,"props":2521,"children":2522},{"style":321},[2523],{"type":50,"value":770},{"type":45,"tag":264,"props":2525,"children":2527},{"class":266,"line":2526},42,[2528,2533,2537,2541,2545,2549,2554,2558,2562],{"type":45,"tag":264,"props":2529,"children":2530},{"style":310},[2531],{"type":50,"value":2532},"            console",{"type":45,"tag":264,"props":2534,"children":2535},{"style":321},[2536],{"type":50,"value":721},{"type":45,"tag":264,"props":2538,"children":2539},{"style":724},[2540],{"type":50,"value":1262},{"type":45,"tag":264,"props":2542,"children":2543},{"style":365},[2544],{"type":50,"value":830},{"type":45,"tag":264,"props":2546,"children":2547},{"style":321},[2548],{"type":50,"value":334},{"type":45,"tag":264,"props":2550,"children":2551},{"style":276},[2552],{"type":50,"value":2553},"Custom button clicked",{"type":45,"tag":264,"props":2555,"children":2556},{"style":321},[2557],{"type":50,"value":334},{"type":45,"tag":264,"props":2559,"children":2560},{"style":365},[2561],{"type":50,"value":848},{"type":45,"tag":264,"props":2563,"children":2564},{"style":321},[2565],{"type":50,"value":339},{"type":45,"tag":264,"props":2567,"children":2569},{"class":266,"line":2568},43,[2570],{"type":45,"tag":264,"props":2571,"children":2572},{"style":321},[2573],{"type":50,"value":2574},"          }\n",{"type":45,"tag":264,"props":2576,"children":2578},{"class":266,"line":2577},44,[2579],{"type":45,"tag":264,"props":2580,"children":2581},{"style":321},[2582],{"type":50,"value":2320},{"type":45,"tag":264,"props":2584,"children":2586},{"class":266,"line":2585},45,[2587],{"type":45,"tag":264,"props":2588,"children":2589},{"style":310},[2590],{"type":50,"value":2591},"      ]\n",{"type":45,"tag":264,"props":2593,"children":2595},{"class":266,"line":2594},46,[2596],{"type":45,"tag":264,"props":2597,"children":2598},{"style":321},[2599],{"type":50,"value":2377},{"type":45,"tag":264,"props":2601,"children":2603},{"class":266,"line":2602},47,[2604],{"type":45,"tag":264,"props":2605,"children":2606},{"emptyLinePlaceholder":682},[2607],{"type":50,"value":685},{"type":45,"tag":264,"props":2609,"children":2611},{"class":266,"line":2610},48,[2612],{"type":45,"tag":264,"props":2613,"children":2614},{"style":691},[2615],{"type":50,"value":2616},"    \u002F\u002F Active speaker indicator\n",{"type":45,"tag":264,"props":2618,"children":2620},{"class":266,"line":2619},49,[2621,2626,2630],{"type":45,"tag":264,"props":2622,"children":2623},{"style":365},[2624],{"type":50,"value":2625},"    activeSpaker",{"type":45,"tag":264,"props":2627,"children":2628},{"style":321},[2629],{"type":50,"value":915},{"type":45,"tag":264,"props":2631,"children":2632},{"style":321},[2633],{"type":50,"value":770},{"type":45,"tag":264,"props":2635,"children":2637},{"class":266,"line":2636},50,[2638,2643,2647,2651,2656],{"type":45,"tag":264,"props":2639,"children":2640},{"style":365},[2641],{"type":50,"value":2642},"      strokeColor",{"type":45,"tag":264,"props":2644,"children":2645},{"style":321},[2646],{"type":50,"value":915},{"type":45,"tag":264,"props":2648,"children":2649},{"style":321},[2650],{"type":50,"value":324},{"type":45,"tag":264,"props":2652,"children":2653},{"style":276},[2654],{"type":50,"value":2655},"#00FF00",{"type":45,"tag":264,"props":2657,"children":2658},{"style":321},[2659],{"type":50,"value":2118},{"type":45,"tag":264,"props":2661,"children":2663},{"class":266,"line":2662},51,[2664],{"type":45,"tag":264,"props":2665,"children":2666},{"style":321},[2667],{"type":50,"value":2668},"    }\n",{"type":45,"tag":264,"props":2670,"children":2672},{"class":266,"line":2671},52,[2673],{"type":45,"tag":264,"props":2674,"children":2675},{"style":321},[2676],{"type":50,"value":1379},{"type":45,"tag":264,"props":2678,"children":2680},{"class":266,"line":2679},53,[2681,2686,2690],{"type":45,"tag":264,"props":2682,"children":2683},{"style":321},[2684],{"type":50,"value":2685},"}",{"type":45,"tag":264,"props":2687,"children":2688},{"style":310},[2689],{"type":50,"value":848},{"type":45,"tag":264,"props":2691,"children":2692},{"style":321},[2693],{"type":50,"value":339},{"type":45,"tag":72,"props":2695,"children":2697},{"id":2696},"clientjoin-all-options",[2698],{"type":50,"value":2699},"client.join() - All Options",{"type":45,"tag":246,"props":2701,"children":2703},{"id":2702},"required-1",[2704],{"type":50,"value":1400},{"type":45,"tag":93,"props":2706,"children":2707},{},[2708,2726],{"type":45,"tag":97,"props":2709,"children":2710},{},[2711],{"type":45,"tag":101,"props":2712,"children":2713},{},[2714,2718,2722],{"type":45,"tag":105,"props":2715,"children":2716},{},[2717],{"type":50,"value":1414},{"type":45,"tag":105,"props":2719,"children":2720},{},[2721],{"type":50,"value":1419},{"type":45,"tag":105,"props":2723,"children":2724},{},[2725],{"type":50,"value":1424},{"type":45,"tag":116,"props":2727,"children":2728},{},[2729,2754,2779,2805],{"type":45,"tag":101,"props":2730,"children":2731},{},[2732,2741,2749],{"type":45,"tag":123,"props":2733,"children":2734},{},[2735],{"type":45,"tag":84,"props":2736,"children":2738},{"className":2737},[],[2739],{"type":50,"value":2740},"signature",{"type":45,"tag":123,"props":2742,"children":2743},{},[2744],{"type":45,"tag":84,"props":2745,"children":2747},{"className":2746},[],[2748],{"type":50,"value":1509},{"type":45,"tag":123,"props":2750,"children":2751},{},[2752],{"type":50,"value":2753},"SDK JWT from backend",{"type":45,"tag":101,"props":2755,"children":2756},{},[2757,2766,2774],{"type":45,"tag":123,"props":2758,"children":2759},{},[2760],{"type":45,"tag":84,"props":2761,"children":2763},{"className":2762},[],[2764],{"type":50,"value":2765},"sdkKey",{"type":45,"tag":123,"props":2767,"children":2768},{},[2769],{"type":45,"tag":84,"props":2770,"children":2772},{"className":2771},[],[2773],{"type":50,"value":1509},{"type":45,"tag":123,"props":2775,"children":2776},{},[2777],{"type":50,"value":2778},"SDK Key \u002F Client ID",{"type":45,"tag":101,"props":2780,"children":2781},{},[2782,2791,2800],{"type":45,"tag":123,"props":2783,"children":2784},{},[2785],{"type":45,"tag":84,"props":2786,"children":2788},{"className":2787},[],[2789],{"type":50,"value":2790},"meetingNumber",{"type":45,"tag":123,"props":2792,"children":2793},{},[2794],{"type":45,"tag":84,"props":2795,"children":2797},{"className":2796},[],[2798],{"type":50,"value":2799},"string | number",{"type":45,"tag":123,"props":2801,"children":2802},{},[2803],{"type":50,"value":2804},"Meeting number",{"type":45,"tag":101,"props":2806,"children":2807},{},[2808,2817,2825],{"type":45,"tag":123,"props":2809,"children":2810},{},[2811],{"type":45,"tag":84,"props":2812,"children":2814},{"className":2813},[],[2815],{"type":50,"value":2816},"userName",{"type":45,"tag":123,"props":2818,"children":2819},{},[2820],{"type":45,"tag":84,"props":2821,"children":2823},{"className":2822},[],[2824],{"type":50,"value":1509},{"type":45,"tag":123,"props":2826,"children":2827},{},[2828],{"type":50,"value":2829},"Display name",{"type":45,"tag":246,"props":2831,"children":2833},{"id":2832},"authentication",[2834],{"type":50,"value":2835},"Authentication",{"type":45,"tag":93,"props":2837,"children":2838},{},[2839,2862],{"type":45,"tag":97,"props":2840,"children":2841},{},[2842],{"type":45,"tag":101,"props":2843,"children":2844},{},[2845,2849,2853,2858],{"type":45,"tag":105,"props":2846,"children":2847},{},[2848],{"type":50,"value":1414},{"type":45,"tag":105,"props":2850,"children":2851},{},[2852],{"type":50,"value":1419},{"type":45,"tag":105,"props":2854,"children":2855},{},[2856],{"type":50,"value":2857},"When Required",{"type":45,"tag":105,"props":2859,"children":2860},{},[2861],{"type":50,"value":1424},{"type":45,"tag":116,"props":2863,"children":2864},{},[2865,2894,2924,2954],{"type":45,"tag":101,"props":2866,"children":2867},{},[2868,2876,2884,2889],{"type":45,"tag":123,"props":2869,"children":2870},{},[2871],{"type":45,"tag":84,"props":2872,"children":2874},{"className":2873},[],[2875],{"type":50,"value":192},{"type":45,"tag":123,"props":2877,"children":2878},{},[2879],{"type":45,"tag":84,"props":2880,"children":2882},{"className":2881},[],[2883],{"type":50,"value":1509},{"type":45,"tag":123,"props":2885,"children":2886},{},[2887],{"type":50,"value":2888},"If set",{"type":45,"tag":123,"props":2890,"children":2891},{},[2892],{"type":50,"value":2893},"Meeting password (lowercase!)",{"type":45,"tag":101,"props":2895,"children":2896},{},[2897,2906,2914,2919],{"type":45,"tag":123,"props":2898,"children":2899},{},[2900],{"type":45,"tag":84,"props":2901,"children":2903},{"className":2902},[],[2904],{"type":50,"value":2905},"zak",{"type":45,"tag":123,"props":2907,"children":2908},{},[2909],{"type":45,"tag":84,"props":2910,"children":2912},{"className":2911},[],[2913],{"type":50,"value":1509},{"type":45,"tag":123,"props":2915,"children":2916},{},[2917],{"type":50,"value":2918},"Starting as host",{"type":45,"tag":123,"props":2920,"children":2921},{},[2922],{"type":50,"value":2923},"Host's ZAK token",{"type":45,"tag":101,"props":2925,"children":2926},{},[2927,2936,2944,2949],{"type":45,"tag":123,"props":2928,"children":2929},{},[2930],{"type":45,"tag":84,"props":2931,"children":2933},{"className":2932},[],[2934],{"type":50,"value":2935},"tk",{"type":45,"tag":123,"props":2937,"children":2938},{},[2939],{"type":45,"tag":84,"props":2940,"children":2942},{"className":2941},[],[2943],{"type":50,"value":1509},{"type":45,"tag":123,"props":2945,"children":2946},{},[2947],{"type":50,"value":2948},"Registration",{"type":45,"tag":123,"props":2950,"children":2951},{},[2952],{"type":50,"value":2953},"Registrant token",{"type":45,"tag":101,"props":2955,"children":2956},{},[2957,2966,2974,2979],{"type":45,"tag":123,"props":2958,"children":2959},{},[2960],{"type":45,"tag":84,"props":2961,"children":2963},{"className":2962},[],[2964],{"type":50,"value":2965},"userEmail",{"type":45,"tag":123,"props":2967,"children":2968},{},[2969],{"type":45,"tag":84,"props":2970,"children":2972},{"className":2971},[],[2973],{"type":50,"value":1509},{"type":45,"tag":123,"props":2975,"children":2976},{},[2977],{"type":50,"value":2978},"Webinars",{"type":45,"tag":123,"props":2980,"children":2981},{},[2982],{"type":50,"value":2983},"User email",{"type":45,"tag":72,"props":2985,"children":2987},{"id":2986},"event-listeners",[2988],{"type":50,"value":2989},"Event Listeners",{"type":45,"tag":246,"props":2991,"children":2993},{"id":2992},"syntax",[2994],{"type":50,"value":2995},"Syntax",{"type":45,"tag":253,"props":2997,"children":2999},{"className":292,"code":2998,"language":294,"meta":258,"style":258},"\u002F\u002F Subscribe\nclient.on('event-name', callback);\n\n\u002F\u002F Unsubscribe\nclient.off('event-name', callback);\n",[3000],{"type":45,"tag":84,"props":3001,"children":3002},{"__ignoreMap":258},[3003,3011,3058,3065,3073],{"type":45,"tag":264,"props":3004,"children":3005},{"class":266,"line":267},[3006],{"type":45,"tag":264,"props":3007,"children":3008},{"style":691},[3009],{"type":50,"value":3010},"\u002F\u002F Subscribe\n",{"type":45,"tag":264,"props":3012,"children":3013},{"class":266,"line":410},[3014,3019,3023,3028,3032,3036,3041,3045,3049,3054],{"type":45,"tag":264,"props":3015,"children":3016},{"style":310},[3017],{"type":50,"value":3018},"client",{"type":45,"tag":264,"props":3020,"children":3021},{"style":321},[3022],{"type":50,"value":721},{"type":45,"tag":264,"props":3024,"children":3025},{"style":724},[3026],{"type":50,"value":3027},"on",{"type":45,"tag":264,"props":3029,"children":3030},{"style":310},[3031],{"type":50,"value":830},{"type":45,"tag":264,"props":3033,"children":3034},{"style":321},[3035],{"type":50,"value":334},{"type":45,"tag":264,"props":3037,"children":3038},{"style":276},[3039],{"type":50,"value":3040},"event-name",{"type":45,"tag":264,"props":3042,"children":3043},{"style":321},[3044],{"type":50,"value":334},{"type":45,"tag":264,"props":3046,"children":3047},{"style":321},[3048],{"type":50,"value":1193},{"type":45,"tag":264,"props":3050,"children":3051},{"style":310},[3052],{"type":50,"value":3053}," callback)",{"type":45,"tag":264,"props":3055,"children":3056},{"style":321},[3057],{"type":50,"value":339},{"type":45,"tag":264,"props":3059,"children":3060},{"class":266,"line":455},[3061],{"type":45,"tag":264,"props":3062,"children":3063},{"emptyLinePlaceholder":682},[3064],{"type":50,"value":685},{"type":45,"tag":264,"props":3066,"children":3067},{"class":266,"line":500},[3068],{"type":45,"tag":264,"props":3069,"children":3070},{"style":691},[3071],{"type":50,"value":3072},"\u002F\u002F Unsubscribe\n",{"type":45,"tag":264,"props":3074,"children":3075},{"class":266,"line":545},[3076,3080,3084,3089,3093,3097,3101,3105,3109,3113],{"type":45,"tag":264,"props":3077,"children":3078},{"style":310},[3079],{"type":50,"value":3018},{"type":45,"tag":264,"props":3081,"children":3082},{"style":321},[3083],{"type":50,"value":721},{"type":45,"tag":264,"props":3085,"children":3086},{"style":724},[3087],{"type":50,"value":3088},"off",{"type":45,"tag":264,"props":3090,"children":3091},{"style":310},[3092],{"type":50,"value":830},{"type":45,"tag":264,"props":3094,"children":3095},{"style":321},[3096],{"type":50,"value":334},{"type":45,"tag":264,"props":3098,"children":3099},{"style":276},[3100],{"type":50,"value":3040},{"type":45,"tag":264,"props":3102,"children":3103},{"style":321},[3104],{"type":50,"value":334},{"type":45,"tag":264,"props":3106,"children":3107},{"style":321},[3108],{"type":50,"value":1193},{"type":45,"tag":264,"props":3110,"children":3111},{"style":310},[3112],{"type":50,"value":3053},{"type":45,"tag":264,"props":3114,"children":3115},{"style":321},[3116],{"type":50,"value":339},{"type":45,"tag":246,"props":3118,"children":3120},{"id":3119},"connection-events",[3121],{"type":50,"value":3122},"Connection Events",{"type":45,"tag":253,"props":3124,"children":3126},{"className":292,"code":3125,"language":294,"meta":258,"style":258},"client.on('connection-change', (payload) => {\n  \u002F\u002F payload.state: 'Connecting', 'Connected', 'Reconnecting', 'Closed'\n  console.log('Connection state:', payload.state);\n\n  if (payload.state === 'Closed') {\n    console.log('Reason:', payload.reason);\n  }\n});\n",[3127],{"type":45,"tag":84,"props":3128,"children":3129},{"__ignoreMap":258},[3130,3188,3196,3255,3262,3312,3369,3376],{"type":45,"tag":264,"props":3131,"children":3132},{"class":266,"line":267},[3133,3137,3141,3145,3149,3153,3158,3162,3166,3170,3176,3180,3184],{"type":45,"tag":264,"props":3134,"children":3135},{"style":310},[3136],{"type":50,"value":3018},{"type":45,"tag":264,"props":3138,"children":3139},{"style":321},[3140],{"type":50,"value":721},{"type":45,"tag":264,"props":3142,"children":3143},{"style":724},[3144],{"type":50,"value":3027},{"type":45,"tag":264,"props":3146,"children":3147},{"style":310},[3148],{"type":50,"value":830},{"type":45,"tag":264,"props":3150,"children":3151},{"style":321},[3152],{"type":50,"value":334},{"type":45,"tag":264,"props":3154,"children":3155},{"style":276},[3156],{"type":50,"value":3157},"connection-change",{"type":45,"tag":264,"props":3159,"children":3160},{"style":321},[3161],{"type":50,"value":334},{"type":45,"tag":264,"props":3163,"children":3164},{"style":321},[3165],{"type":50,"value":1193},{"type":45,"tag":264,"props":3167,"children":3168},{"style":321},[3169],{"type":50,"value":1306},{"type":45,"tag":264,"props":3171,"children":3173},{"style":3172},"--shiki-light:#90A4AE;--shiki-light-font-style:italic;--shiki-default:#EEFFFF;--shiki-default-font-style:italic;--shiki-dark:#BABED8;--shiki-dark-font-style:italic",[3174],{"type":50,"value":3175},"payload",{"type":45,"tag":264,"props":3177,"children":3178},{"style":321},[3179],{"type":50,"value":848},{"type":45,"tag":264,"props":3181,"children":3182},{"style":371},[3183],{"type":50,"value":2519},{"type":45,"tag":264,"props":3185,"children":3186},{"style":321},[3187],{"type":50,"value":770},{"type":45,"tag":264,"props":3189,"children":3190},{"class":266,"line":410},[3191],{"type":45,"tag":264,"props":3192,"children":3193},{"style":691},[3194],{"type":50,"value":3195},"  \u002F\u002F payload.state: 'Connecting', 'Connected', 'Reconnecting', 'Closed'\n",{"type":45,"tag":264,"props":3197,"children":3198},{"class":266,"line":455},[3199,3204,3208,3212,3216,3220,3225,3229,3233,3238,3242,3247,3251],{"type":45,"tag":264,"props":3200,"children":3201},{"style":310},[3202],{"type":50,"value":3203},"  console",{"type":45,"tag":264,"props":3205,"children":3206},{"style":321},[3207],{"type":50,"value":721},{"type":45,"tag":264,"props":3209,"children":3210},{"style":724},[3211],{"type":50,"value":1262},{"type":45,"tag":264,"props":3213,"children":3214},{"style":365},[3215],{"type":50,"value":830},{"type":45,"tag":264,"props":3217,"children":3218},{"style":321},[3219],{"type":50,"value":334},{"type":45,"tag":264,"props":3221,"children":3222},{"style":276},[3223],{"type":50,"value":3224},"Connection state:",{"type":45,"tag":264,"props":3226,"children":3227},{"style":321},[3228],{"type":50,"value":334},{"type":45,"tag":264,"props":3230,"children":3231},{"style":321},[3232],{"type":50,"value":1193},{"type":45,"tag":264,"props":3234,"children":3235},{"style":310},[3236],{"type":50,"value":3237}," payload",{"type":45,"tag":264,"props":3239,"children":3240},{"style":321},[3241],{"type":50,"value":721},{"type":45,"tag":264,"props":3243,"children":3244},{"style":310},[3245],{"type":50,"value":3246},"state",{"type":45,"tag":264,"props":3248,"children":3249},{"style":365},[3250],{"type":50,"value":848},{"type":45,"tag":264,"props":3252,"children":3253},{"style":321},[3254],{"type":50,"value":339},{"type":45,"tag":264,"props":3256,"children":3257},{"class":266,"line":500},[3258],{"type":45,"tag":264,"props":3259,"children":3260},{"emptyLinePlaceholder":682},[3261],{"type":50,"value":685},{"type":45,"tag":264,"props":3263,"children":3264},{"class":266,"line":545},[3265,3270,3274,3278,3282,3286,3291,3295,3300,3304,3308],{"type":45,"tag":264,"props":3266,"children":3267},{"style":304},[3268],{"type":50,"value":3269},"  if",{"type":45,"tag":264,"props":3271,"children":3272},{"style":365},[3273],{"type":50,"value":1306},{"type":45,"tag":264,"props":3275,"children":3276},{"style":310},[3277],{"type":50,"value":3175},{"type":45,"tag":264,"props":3279,"children":3280},{"style":321},[3281],{"type":50,"value":721},{"type":45,"tag":264,"props":3283,"children":3284},{"style":310},[3285],{"type":50,"value":3246},{"type":45,"tag":264,"props":3287,"children":3288},{"style":321},[3289],{"type":50,"value":3290}," ===",{"type":45,"tag":264,"props":3292,"children":3293},{"style":321},[3294],{"type":50,"value":324},{"type":45,"tag":264,"props":3296,"children":3297},{"style":276},[3298],{"type":50,"value":3299},"Closed",{"type":45,"tag":264,"props":3301,"children":3302},{"style":321},[3303],{"type":50,"value":334},{"type":45,"tag":264,"props":3305,"children":3306},{"style":365},[3307],{"type":50,"value":1316},{"type":45,"tag":264,"props":3309,"children":3310},{"style":321},[3311],{"type":50,"value":901},{"type":45,"tag":264,"props":3313,"children":3314},{"class":266,"line":590},[3315,3319,3323,3327,3331,3335,3340,3344,3348,3352,3356,3361,3365],{"type":45,"tag":264,"props":3316,"children":3317},{"style":310},[3318],{"type":50,"value":1253},{"type":45,"tag":264,"props":3320,"children":3321},{"style":321},[3322],{"type":50,"value":721},{"type":45,"tag":264,"props":3324,"children":3325},{"style":724},[3326],{"type":50,"value":1262},{"type":45,"tag":264,"props":3328,"children":3329},{"style":365},[3330],{"type":50,"value":830},{"type":45,"tag":264,"props":3332,"children":3333},{"style":321},[3334],{"type":50,"value":334},{"type":45,"tag":264,"props":3336,"children":3337},{"style":276},[3338],{"type":50,"value":3339},"Reason:",{"type":45,"tag":264,"props":3341,"children":3342},{"style":321},[3343],{"type":50,"value":334},{"type":45,"tag":264,"props":3345,"children":3346},{"style":321},[3347],{"type":50,"value":1193},{"type":45,"tag":264,"props":3349,"children":3350},{"style":310},[3351],{"type":50,"value":3237},{"type":45,"tag":264,"props":3353,"children":3354},{"style":321},[3355],{"type":50,"value":721},{"type":45,"tag":264,"props":3357,"children":3358},{"style":310},[3359],{"type":50,"value":3360},"reason",{"type":45,"tag":264,"props":3362,"children":3363},{"style":365},[3364],{"type":50,"value":848},{"type":45,"tag":264,"props":3366,"children":3367},{"style":321},[3368],{"type":50,"value":339},{"type":45,"tag":264,"props":3370,"children":3371},{"class":266,"line":773},[3372],{"type":45,"tag":264,"props":3373,"children":3374},{"style":321},[3375],{"type":50,"value":1379},{"type":45,"tag":264,"props":3377,"children":3378},{"class":266,"line":786},[3379,3383,3387],{"type":45,"tag":264,"props":3380,"children":3381},{"style":321},[3382],{"type":50,"value":2685},{"type":45,"tag":264,"props":3384,"children":3385},{"style":310},[3386],{"type":50,"value":848},{"type":45,"tag":264,"props":3388,"children":3389},{"style":321},[3390],{"type":50,"value":339},{"type":45,"tag":246,"props":3392,"children":3394},{"id":3393},"user-events",[3395],{"type":50,"value":3396},"User Events",{"type":45,"tag":253,"props":3398,"children":3400},{"className":292,"code":3399,"language":294,"meta":258,"style":258},"client.on('user-added', (payload) => {\n  \u002F\u002F Array of users who joined\n  console.log('Users added:', payload);\n  payload.forEach(user => {\n    console.log('User ID:', user.oderId);\n    console.log('Name:', user.displayName);\n  });\n});\n\nclient.on('user-removed', (payload) => {\n  \u002F\u002F Array of users who left\n  console.log('Users removed:', payload);\n});\n\nclient.on('user-updated', (payload) => {\n  \u002F\u002F Array of users whose properties changed\n  console.log('Users updated:', payload);\n});\n",[3401],{"type":45,"tag":84,"props":3402,"children":3403},{"__ignoreMap":258},[3404,3460,3468,3516,3550,3608,3665,3680,3695,3702,3758,3766,3814,3829,3836,3892,3900,3948],{"type":45,"tag":264,"props":3405,"children":3406},{"class":266,"line":267},[3407,3411,3415,3419,3423,3427,3432,3436,3440,3444,3448,3452,3456],{"type":45,"tag":264,"props":3408,"children":3409},{"style":310},[3410],{"type":50,"value":3018},{"type":45,"tag":264,"props":3412,"children":3413},{"style":321},[3414],{"type":50,"value":721},{"type":45,"tag":264,"props":3416,"children":3417},{"style":724},[3418],{"type":50,"value":3027},{"type":45,"tag":264,"props":3420,"children":3421},{"style":310},[3422],{"type":50,"value":830},{"type":45,"tag":264,"props":3424,"children":3425},{"style":321},[3426],{"type":50,"value":334},{"type":45,"tag":264,"props":3428,"children":3429},{"style":276},[3430],{"type":50,"value":3431},"user-added",{"type":45,"tag":264,"props":3433,"children":3434},{"style":321},[3435],{"type":50,"value":334},{"type":45,"tag":264,"props":3437,"children":3438},{"style":321},[3439],{"type":50,"value":1193},{"type":45,"tag":264,"props":3441,"children":3442},{"style":321},[3443],{"type":50,"value":1306},{"type":45,"tag":264,"props":3445,"children":3446},{"style":3172},[3447],{"type":50,"value":3175},{"type":45,"tag":264,"props":3449,"children":3450},{"style":321},[3451],{"type":50,"value":848},{"type":45,"tag":264,"props":3453,"children":3454},{"style":371},[3455],{"type":50,"value":2519},{"type":45,"tag":264,"props":3457,"children":3458},{"style":321},[3459],{"type":50,"value":770},{"type":45,"tag":264,"props":3461,"children":3462},{"class":266,"line":410},[3463],{"type":45,"tag":264,"props":3464,"children":3465},{"style":691},[3466],{"type":50,"value":3467},"  \u002F\u002F Array of users who joined\n",{"type":45,"tag":264,"props":3469,"children":3470},{"class":266,"line":455},[3471,3475,3479,3483,3487,3491,3496,3500,3504,3508,3512],{"type":45,"tag":264,"props":3472,"children":3473},{"style":310},[3474],{"type":50,"value":3203},{"type":45,"tag":264,"props":3476,"children":3477},{"style":321},[3478],{"type":50,"value":721},{"type":45,"tag":264,"props":3480,"children":3481},{"style":724},[3482],{"type":50,"value":1262},{"type":45,"tag":264,"props":3484,"children":3485},{"style":365},[3486],{"type":50,"value":830},{"type":45,"tag":264,"props":3488,"children":3489},{"style":321},[3490],{"type":50,"value":334},{"type":45,"tag":264,"props":3492,"children":3493},{"style":276},[3494],{"type":50,"value":3495},"Users added:",{"type":45,"tag":264,"props":3497,"children":3498},{"style":321},[3499],{"type":50,"value":334},{"type":45,"tag":264,"props":3501,"children":3502},{"style":321},[3503],{"type":50,"value":1193},{"type":45,"tag":264,"props":3505,"children":3506},{"style":310},[3507],{"type":50,"value":3237},{"type":45,"tag":264,"props":3509,"children":3510},{"style":365},[3511],{"type":50,"value":848},{"type":45,"tag":264,"props":3513,"children":3514},{"style":321},[3515],{"type":50,"value":339},{"type":45,"tag":264,"props":3517,"children":3518},{"class":266,"line":500},[3519,3524,3528,3533,3537,3542,3546],{"type":45,"tag":264,"props":3520,"children":3521},{"style":310},[3522],{"type":50,"value":3523},"  payload",{"type":45,"tag":264,"props":3525,"children":3526},{"style":321},[3527],{"type":50,"value":721},{"type":45,"tag":264,"props":3529,"children":3530},{"style":724},[3531],{"type":50,"value":3532},"forEach",{"type":45,"tag":264,"props":3534,"children":3535},{"style":365},[3536],{"type":50,"value":830},{"type":45,"tag":264,"props":3538,"children":3539},{"style":3172},[3540],{"type":50,"value":3541},"user",{"type":45,"tag":264,"props":3543,"children":3544},{"style":371},[3545],{"type":50,"value":2519},{"type":45,"tag":264,"props":3547,"children":3548},{"style":321},[3549],{"type":50,"value":770},{"type":45,"tag":264,"props":3551,"children":3552},{"class":266,"line":545},[3553,3557,3561,3565,3569,3573,3578,3582,3586,3591,3595,3600,3604],{"type":45,"tag":264,"props":3554,"children":3555},{"style":310},[3556],{"type":50,"value":1253},{"type":45,"tag":264,"props":3558,"children":3559},{"style":321},[3560],{"type":50,"value":721},{"type":45,"tag":264,"props":3562,"children":3563},{"style":724},[3564],{"type":50,"value":1262},{"type":45,"tag":264,"props":3566,"children":3567},{"style":365},[3568],{"type":50,"value":830},{"type":45,"tag":264,"props":3570,"children":3571},{"style":321},[3572],{"type":50,"value":334},{"type":45,"tag":264,"props":3574,"children":3575},{"style":276},[3576],{"type":50,"value":3577},"User ID:",{"type":45,"tag":264,"props":3579,"children":3580},{"style":321},[3581],{"type":50,"value":334},{"type":45,"tag":264,"props":3583,"children":3584},{"style":321},[3585],{"type":50,"value":1193},{"type":45,"tag":264,"props":3587,"children":3588},{"style":310},[3589],{"type":50,"value":3590}," user",{"type":45,"tag":264,"props":3592,"children":3593},{"style":321},[3594],{"type":50,"value":721},{"type":45,"tag":264,"props":3596,"children":3597},{"style":310},[3598],{"type":50,"value":3599},"oderId",{"type":45,"tag":264,"props":3601,"children":3602},{"style":365},[3603],{"type":50,"value":848},{"type":45,"tag":264,"props":3605,"children":3606},{"style":321},[3607],{"type":50,"value":339},{"type":45,"tag":264,"props":3609,"children":3610},{"class":266,"line":590},[3611,3615,3619,3623,3627,3631,3636,3640,3644,3648,3652,3657,3661],{"type":45,"tag":264,"props":3612,"children":3613},{"style":310},[3614],{"type":50,"value":1253},{"type":45,"tag":264,"props":3616,"children":3617},{"style":321},[3618],{"type":50,"value":721},{"type":45,"tag":264,"props":3620,"children":3621},{"style":724},[3622],{"type":50,"value":1262},{"type":45,"tag":264,"props":3624,"children":3625},{"style":365},[3626],{"type":50,"value":830},{"type":45,"tag":264,"props":3628,"children":3629},{"style":321},[3630],{"type":50,"value":334},{"type":45,"tag":264,"props":3632,"children":3633},{"style":276},[3634],{"type":50,"value":3635},"Name:",{"type":45,"tag":264,"props":3637,"children":3638},{"style":321},[3639],{"type":50,"value":334},{"type":45,"tag":264,"props":3641,"children":3642},{"style":321},[3643],{"type":50,"value":1193},{"type":45,"tag":264,"props":3645,"children":3646},{"style":310},[3647],{"type":50,"value":3590},{"type":45,"tag":264,"props":3649,"children":3650},{"style":321},[3651],{"type":50,"value":721},{"type":45,"tag":264,"props":3653,"children":3654},{"style":310},[3655],{"type":50,"value":3656},"displayName",{"type":45,"tag":264,"props":3658,"children":3659},{"style":365},[3660],{"type":50,"value":848},{"type":45,"tag":264,"props":3662,"children":3663},{"style":321},[3664],{"type":50,"value":339},{"type":45,"tag":264,"props":3666,"children":3667},{"class":266,"line":773},[3668,3672,3676],{"type":45,"tag":264,"props":3669,"children":3670},{"style":321},[3671],{"type":50,"value":1296},{"type":45,"tag":264,"props":3673,"children":3674},{"style":365},[3675],{"type":50,"value":848},{"type":45,"tag":264,"props":3677,"children":3678},{"style":321},[3679],{"type":50,"value":339},{"type":45,"tag":264,"props":3681,"children":3682},{"class":266,"line":786},[3683,3687,3691],{"type":45,"tag":264,"props":3684,"children":3685},{"style":321},[3686],{"type":50,"value":2685},{"type":45,"tag":264,"props":3688,"children":3689},{"style":310},[3690],{"type":50,"value":848},{"type":45,"tag":264,"props":3692,"children":3693},{"style":321},[3694],{"type":50,"value":339},{"type":45,"tag":264,"props":3696,"children":3697},{"class":266,"line":795},[3698],{"type":45,"tag":264,"props":3699,"children":3700},{"emptyLinePlaceholder":682},[3701],{"type":50,"value":685},{"type":45,"tag":264,"props":3703,"children":3704},{"class":266,"line":855},[3705,3709,3713,3717,3721,3725,3730,3734,3738,3742,3746,3750,3754],{"type":45,"tag":264,"props":3706,"children":3707},{"style":310},[3708],{"type":50,"value":3018},{"type":45,"tag":264,"props":3710,"children":3711},{"style":321},[3712],{"type":50,"value":721},{"type":45,"tag":264,"props":3714,"children":3715},{"style":724},[3716],{"type":50,"value":3027},{"type":45,"tag":264,"props":3718,"children":3719},{"style":310},[3720],{"type":50,"value":830},{"type":45,"tag":264,"props":3722,"children":3723},{"style":321},[3724],{"type":50,"value":334},{"type":45,"tag":264,"props":3726,"children":3727},{"style":276},[3728],{"type":50,"value":3729},"user-removed",{"type":45,"tag":264,"props":3731,"children":3732},{"style":321},[3733],{"type":50,"value":334},{"type":45,"tag":264,"props":3735,"children":3736},{"style":321},[3737],{"type":50,"value":1193},{"type":45,"tag":264,"props":3739,"children":3740},{"style":321},[3741],{"type":50,"value":1306},{"type":45,"tag":264,"props":3743,"children":3744},{"style":3172},[3745],{"type":50,"value":3175},{"type":45,"tag":264,"props":3747,"children":3748},{"style":321},[3749],{"type":50,"value":848},{"type":45,"tag":264,"props":3751,"children":3752},{"style":371},[3753],{"type":50,"value":2519},{"type":45,"tag":264,"props":3755,"children":3756},{"style":321},[3757],{"type":50,"value":770},{"type":45,"tag":264,"props":3759,"children":3760},{"class":266,"line":863},[3761],{"type":45,"tag":264,"props":3762,"children":3763},{"style":691},[3764],{"type":50,"value":3765},"  \u002F\u002F Array of users who left\n",{"type":45,"tag":264,"props":3767,"children":3768},{"class":266,"line":872},[3769,3773,3777,3781,3785,3789,3794,3798,3802,3806,3810],{"type":45,"tag":264,"props":3770,"children":3771},{"style":310},[3772],{"type":50,"value":3203},{"type":45,"tag":264,"props":3774,"children":3775},{"style":321},[3776],{"type":50,"value":721},{"type":45,"tag":264,"props":3778,"children":3779},{"style":724},[3780],{"type":50,"value":1262},{"type":45,"tag":264,"props":3782,"children":3783},{"style":365},[3784],{"type":50,"value":830},{"type":45,"tag":264,"props":3786,"children":3787},{"style":321},[3788],{"type":50,"value":334},{"type":45,"tag":264,"props":3790,"children":3791},{"style":276},[3792],{"type":50,"value":3793},"Users removed:",{"type":45,"tag":264,"props":3795,"children":3796},{"style":321},[3797],{"type":50,"value":334},{"type":45,"tag":264,"props":3799,"children":3800},{"style":321},[3801],{"type":50,"value":1193},{"type":45,"tag":264,"props":3803,"children":3804},{"style":310},[3805],{"type":50,"value":3237},{"type":45,"tag":264,"props":3807,"children":3808},{"style":365},[3809],{"type":50,"value":848},{"type":45,"tag":264,"props":3811,"children":3812},{"style":321},[3813],{"type":50,"value":339},{"type":45,"tag":264,"props":3815,"children":3816},{"class":266,"line":904},[3817,3821,3825],{"type":45,"tag":264,"props":3818,"children":3819},{"style":321},[3820],{"type":50,"value":2685},{"type":45,"tag":264,"props":3822,"children":3823},{"style":310},[3824],{"type":50,"value":848},{"type":45,"tag":264,"props":3826,"children":3827},{"style":321},[3828],{"type":50,"value":339},{"type":45,"tag":264,"props":3830,"children":3831},{"class":266,"line":927},[3832],{"type":45,"tag":264,"props":3833,"children":3834},{"emptyLinePlaceholder":682},[3835],{"type":50,"value":685},{"type":45,"tag":264,"props":3837,"children":3838},{"class":266,"line":957},[3839,3843,3847,3851,3855,3859,3864,3868,3872,3876,3880,3884,3888],{"type":45,"tag":264,"props":3840,"children":3841},{"style":310},[3842],{"type":50,"value":3018},{"type":45,"tag":264,"props":3844,"children":3845},{"style":321},[3846],{"type":50,"value":721},{"type":45,"tag":264,"props":3848,"children":3849},{"style":724},[3850],{"type":50,"value":3027},{"type":45,"tag":264,"props":3852,"children":3853},{"style":310},[3854],{"type":50,"value":830},{"type":45,"tag":264,"props":3856,"children":3857},{"style":321},[3858],{"type":50,"value":334},{"type":45,"tag":264,"props":3860,"children":3861},{"style":276},[3862],{"type":50,"value":3863},"user-updated",{"type":45,"tag":264,"props":3865,"children":3866},{"style":321},[3867],{"type":50,"value":334},{"type":45,"tag":264,"props":3869,"children":3870},{"style":321},[3871],{"type":50,"value":1193},{"type":45,"tag":264,"props":3873,"children":3874},{"style":321},[3875],{"type":50,"value":1306},{"type":45,"tag":264,"props":3877,"children":3878},{"style":3172},[3879],{"type":50,"value":3175},{"type":45,"tag":264,"props":3881,"children":3882},{"style":321},[3883],{"type":50,"value":848},{"type":45,"tag":264,"props":3885,"children":3886},{"style":371},[3887],{"type":50,"value":2519},{"type":45,"tag":264,"props":3889,"children":3890},{"style":321},[3891],{"type":50,"value":770},{"type":45,"tag":264,"props":3893,"children":3894},{"class":266,"line":980},[3895],{"type":45,"tag":264,"props":3896,"children":3897},{"style":691},[3898],{"type":50,"value":3899},"  \u002F\u002F Array of users whose properties changed\n",{"type":45,"tag":264,"props":3901,"children":3902},{"class":266,"line":1001},[3903,3907,3911,3915,3919,3923,3928,3932,3936,3940,3944],{"type":45,"tag":264,"props":3904,"children":3905},{"style":310},[3906],{"type":50,"value":3203},{"type":45,"tag":264,"props":3908,"children":3909},{"style":321},[3910],{"type":50,"value":721},{"type":45,"tag":264,"props":3912,"children":3913},{"style":724},[3914],{"type":50,"value":1262},{"type":45,"tag":264,"props":3916,"children":3917},{"style":365},[3918],{"type":50,"value":830},{"type":45,"tag":264,"props":3920,"children":3921},{"style":321},[3922],{"type":50,"value":334},{"type":45,"tag":264,"props":3924,"children":3925},{"style":276},[3926],{"type":50,"value":3927},"Users updated:",{"type":45,"tag":264,"props":3929,"children":3930},{"style":321},[3931],{"type":50,"value":334},{"type":45,"tag":264,"props":3933,"children":3934},{"style":321},[3935],{"type":50,"value":1193},{"type":45,"tag":264,"props":3937,"children":3938},{"style":310},[3939],{"type":50,"value":3237},{"type":45,"tag":264,"props":3941,"children":3942},{"style":365},[3943],{"type":50,"value":848},{"type":45,"tag":264,"props":3945,"children":3946},{"style":321},[3947],{"type":50,"value":339},{"type":45,"tag":264,"props":3949,"children":3950},{"class":266,"line":1022},[3951,3955,3959],{"type":45,"tag":264,"props":3952,"children":3953},{"style":321},[3954],{"type":50,"value":2685},{"type":45,"tag":264,"props":3956,"children":3957},{"style":310},[3958],{"type":50,"value":848},{"type":45,"tag":264,"props":3960,"children":3961},{"style":321},[3962],{"type":50,"value":339},{"type":45,"tag":246,"props":3964,"children":3966},{"id":3965},"audio-events",[3967],{"type":50,"value":3968},"Audio Events",{"type":45,"tag":253,"props":3970,"children":3972},{"className":292,"code":3971,"language":294,"meta":258,"style":258},"client.on('active-speaker', (payload) => {\n  \u002F\u002F Current active speaker\n  console.log('Active speaker:', payload);\n});\n\nclient.on('audio-statistic-data-change', (payload) => {\n  console.log('Audio stats:', payload);\n});\n",[3973],{"type":45,"tag":84,"props":3974,"children":3975},{"__ignoreMap":258},[3976,4032,4040,4088,4103,4110,4166,4214],{"type":45,"tag":264,"props":3977,"children":3978},{"class":266,"line":267},[3979,3983,3987,3991,3995,3999,4004,4008,4012,4016,4020,4024,4028],{"type":45,"tag":264,"props":3980,"children":3981},{"style":310},[3982],{"type":50,"value":3018},{"type":45,"tag":264,"props":3984,"children":3985},{"style":321},[3986],{"type":50,"value":721},{"type":45,"tag":264,"props":3988,"children":3989},{"style":724},[3990],{"type":50,"value":3027},{"type":45,"tag":264,"props":3992,"children":3993},{"style":310},[3994],{"type":50,"value":830},{"type":45,"tag":264,"props":3996,"children":3997},{"style":321},[3998],{"type":50,"value":334},{"type":45,"tag":264,"props":4000,"children":4001},{"style":276},[4002],{"type":50,"value":4003},"active-speaker",{"type":45,"tag":264,"props":4005,"children":4006},{"style":321},[4007],{"type":50,"value":334},{"type":45,"tag":264,"props":4009,"children":4010},{"style":321},[4011],{"type":50,"value":1193},{"type":45,"tag":264,"props":4013,"children":4014},{"style":321},[4015],{"type":50,"value":1306},{"type":45,"tag":264,"props":4017,"children":4018},{"style":3172},[4019],{"type":50,"value":3175},{"type":45,"tag":264,"props":4021,"children":4022},{"style":321},[4023],{"type":50,"value":848},{"type":45,"tag":264,"props":4025,"children":4026},{"style":371},[4027],{"type":50,"value":2519},{"type":45,"tag":264,"props":4029,"children":4030},{"style":321},[4031],{"type":50,"value":770},{"type":45,"tag":264,"props":4033,"children":4034},{"class":266,"line":410},[4035],{"type":45,"tag":264,"props":4036,"children":4037},{"style":691},[4038],{"type":50,"value":4039},"  \u002F\u002F Current active speaker\n",{"type":45,"tag":264,"props":4041,"children":4042},{"class":266,"line":455},[4043,4047,4051,4055,4059,4063,4068,4072,4076,4080,4084],{"type":45,"tag":264,"props":4044,"children":4045},{"style":310},[4046],{"type":50,"value":3203},{"type":45,"tag":264,"props":4048,"children":4049},{"style":321},[4050],{"type":50,"value":721},{"type":45,"tag":264,"props":4052,"children":4053},{"style":724},[4054],{"type":50,"value":1262},{"type":45,"tag":264,"props":4056,"children":4057},{"style":365},[4058],{"type":50,"value":830},{"type":45,"tag":264,"props":4060,"children":4061},{"style":321},[4062],{"type":50,"value":334},{"type":45,"tag":264,"props":4064,"children":4065},{"style":276},[4066],{"type":50,"value":4067},"Active speaker:",{"type":45,"tag":264,"props":4069,"children":4070},{"style":321},[4071],{"type":50,"value":334},{"type":45,"tag":264,"props":4073,"children":4074},{"style":321},[4075],{"type":50,"value":1193},{"type":45,"tag":264,"props":4077,"children":4078},{"style":310},[4079],{"type":50,"value":3237},{"type":45,"tag":264,"props":4081,"children":4082},{"style":365},[4083],{"type":50,"value":848},{"type":45,"tag":264,"props":4085,"children":4086},{"style":321},[4087],{"type":50,"value":339},{"type":45,"tag":264,"props":4089,"children":4090},{"class":266,"line":500},[4091,4095,4099],{"type":45,"tag":264,"props":4092,"children":4093},{"style":321},[4094],{"type":50,"value":2685},{"type":45,"tag":264,"props":4096,"children":4097},{"style":310},[4098],{"type":50,"value":848},{"type":45,"tag":264,"props":4100,"children":4101},{"style":321},[4102],{"type":50,"value":339},{"type":45,"tag":264,"props":4104,"children":4105},{"class":266,"line":545},[4106],{"type":45,"tag":264,"props":4107,"children":4108},{"emptyLinePlaceholder":682},[4109],{"type":50,"value":685},{"type":45,"tag":264,"props":4111,"children":4112},{"class":266,"line":590},[4113,4117,4121,4125,4129,4133,4138,4142,4146,4150,4154,4158,4162],{"type":45,"tag":264,"props":4114,"children":4115},{"style":310},[4116],{"type":50,"value":3018},{"type":45,"tag":264,"props":4118,"children":4119},{"style":321},[4120],{"type":50,"value":721},{"type":45,"tag":264,"props":4122,"children":4123},{"style":724},[4124],{"type":50,"value":3027},{"type":45,"tag":264,"props":4126,"children":4127},{"style":310},[4128],{"type":50,"value":830},{"type":45,"tag":264,"props":4130,"children":4131},{"style":321},[4132],{"type":50,"value":334},{"type":45,"tag":264,"props":4134,"children":4135},{"style":276},[4136],{"type":50,"value":4137},"audio-statistic-data-change",{"type":45,"tag":264,"props":4139,"children":4140},{"style":321},[4141],{"type":50,"value":334},{"type":45,"tag":264,"props":4143,"children":4144},{"style":321},[4145],{"type":50,"value":1193},{"type":45,"tag":264,"props":4147,"children":4148},{"style":321},[4149],{"type":50,"value":1306},{"type":45,"tag":264,"props":4151,"children":4152},{"style":3172},[4153],{"type":50,"value":3175},{"type":45,"tag":264,"props":4155,"children":4156},{"style":321},[4157],{"type":50,"value":848},{"type":45,"tag":264,"props":4159,"children":4160},{"style":371},[4161],{"type":50,"value":2519},{"type":45,"tag":264,"props":4163,"children":4164},{"style":321},[4165],{"type":50,"value":770},{"type":45,"tag":264,"props":4167,"children":4168},{"class":266,"line":773},[4169,4173,4177,4181,4185,4189,4194,4198,4202,4206,4210],{"type":45,"tag":264,"props":4170,"children":4171},{"style":310},[4172],{"type":50,"value":3203},{"type":45,"tag":264,"props":4174,"children":4175},{"style":321},[4176],{"type":50,"value":721},{"type":45,"tag":264,"props":4178,"children":4179},{"style":724},[4180],{"type":50,"value":1262},{"type":45,"tag":264,"props":4182,"children":4183},{"style":365},[4184],{"type":50,"value":830},{"type":45,"tag":264,"props":4186,"children":4187},{"style":321},[4188],{"type":50,"value":334},{"type":45,"tag":264,"props":4190,"children":4191},{"style":276},[4192],{"type":50,"value":4193},"Audio stats:",{"type":45,"tag":264,"props":4195,"children":4196},{"style":321},[4197],{"type":50,"value":334},{"type":45,"tag":264,"props":4199,"children":4200},{"style":321},[4201],{"type":50,"value":1193},{"type":45,"tag":264,"props":4203,"children":4204},{"style":310},[4205],{"type":50,"value":3237},{"type":45,"tag":264,"props":4207,"children":4208},{"style":365},[4209],{"type":50,"value":848},{"type":45,"tag":264,"props":4211,"children":4212},{"style":321},[4213],{"type":50,"value":339},{"type":45,"tag":264,"props":4215,"children":4216},{"class":266,"line":786},[4217,4221,4225],{"type":45,"tag":264,"props":4218,"children":4219},{"style":321},[4220],{"type":50,"value":2685},{"type":45,"tag":264,"props":4222,"children":4223},{"style":310},[4224],{"type":50,"value":848},{"type":45,"tag":264,"props":4226,"children":4227},{"style":321},[4228],{"type":50,"value":339},{"type":45,"tag":246,"props":4230,"children":4232},{"id":4231},"video-events",[4233],{"type":50,"value":4234},"Video Events",{"type":45,"tag":253,"props":4236,"children":4238},{"className":292,"code":4237,"language":294,"meta":258,"style":258},"client.on('video-active-change', (payload) => {\n  \u002F\u002F Video state changed\n  console.log('Video active:', payload);\n});\n\nclient.on('video-statistic-data-change', (payload) => {\n  console.log('Video stats:', payload);\n});\n",[4239],{"type":45,"tag":84,"props":4240,"children":4241},{"__ignoreMap":258},[4242,4298,4306,4354,4369,4376,4432,4480],{"type":45,"tag":264,"props":4243,"children":4244},{"class":266,"line":267},[4245,4249,4253,4257,4261,4265,4270,4274,4278,4282,4286,4290,4294],{"type":45,"tag":264,"props":4246,"children":4247},{"style":310},[4248],{"type":50,"value":3018},{"type":45,"tag":264,"props":4250,"children":4251},{"style":321},[4252],{"type":50,"value":721},{"type":45,"tag":264,"props":4254,"children":4255},{"style":724},[4256],{"type":50,"value":3027},{"type":45,"tag":264,"props":4258,"children":4259},{"style":310},[4260],{"type":50,"value":830},{"type":45,"tag":264,"props":4262,"children":4263},{"style":321},[4264],{"type":50,"value":334},{"type":45,"tag":264,"props":4266,"children":4267},{"style":276},[4268],{"type":50,"value":4269},"video-active-change",{"type":45,"tag":264,"props":4271,"children":4272},{"style":321},[4273],{"type":50,"value":334},{"type":45,"tag":264,"props":4275,"children":4276},{"style":321},[4277],{"type":50,"value":1193},{"type":45,"tag":264,"props":4279,"children":4280},{"style":321},[4281],{"type":50,"value":1306},{"type":45,"tag":264,"props":4283,"children":4284},{"style":3172},[4285],{"type":50,"value":3175},{"type":45,"tag":264,"props":4287,"children":4288},{"style":321},[4289],{"type":50,"value":848},{"type":45,"tag":264,"props":4291,"children":4292},{"style":371},[4293],{"type":50,"value":2519},{"type":45,"tag":264,"props":4295,"children":4296},{"style":321},[4297],{"type":50,"value":770},{"type":45,"tag":264,"props":4299,"children":4300},{"class":266,"line":410},[4301],{"type":45,"tag":264,"props":4302,"children":4303},{"style":691},[4304],{"type":50,"value":4305},"  \u002F\u002F Video state changed\n",{"type":45,"tag":264,"props":4307,"children":4308},{"class":266,"line":455},[4309,4313,4317,4321,4325,4329,4334,4338,4342,4346,4350],{"type":45,"tag":264,"props":4310,"children":4311},{"style":310},[4312],{"type":50,"value":3203},{"type":45,"tag":264,"props":4314,"children":4315},{"style":321},[4316],{"type":50,"value":721},{"type":45,"tag":264,"props":4318,"children":4319},{"style":724},[4320],{"type":50,"value":1262},{"type":45,"tag":264,"props":4322,"children":4323},{"style":365},[4324],{"type":50,"value":830},{"type":45,"tag":264,"props":4326,"children":4327},{"style":321},[4328],{"type":50,"value":334},{"type":45,"tag":264,"props":4330,"children":4331},{"style":276},[4332],{"type":50,"value":4333},"Video active:",{"type":45,"tag":264,"props":4335,"children":4336},{"style":321},[4337],{"type":50,"value":334},{"type":45,"tag":264,"props":4339,"children":4340},{"style":321},[4341],{"type":50,"value":1193},{"type":45,"tag":264,"props":4343,"children":4344},{"style":310},[4345],{"type":50,"value":3237},{"type":45,"tag":264,"props":4347,"children":4348},{"style":365},[4349],{"type":50,"value":848},{"type":45,"tag":264,"props":4351,"children":4352},{"style":321},[4353],{"type":50,"value":339},{"type":45,"tag":264,"props":4355,"children":4356},{"class":266,"line":500},[4357,4361,4365],{"type":45,"tag":264,"props":4358,"children":4359},{"style":321},[4360],{"type":50,"value":2685},{"type":45,"tag":264,"props":4362,"children":4363},{"style":310},[4364],{"type":50,"value":848},{"type":45,"tag":264,"props":4366,"children":4367},{"style":321},[4368],{"type":50,"value":339},{"type":45,"tag":264,"props":4370,"children":4371},{"class":266,"line":545},[4372],{"type":45,"tag":264,"props":4373,"children":4374},{"emptyLinePlaceholder":682},[4375],{"type":50,"value":685},{"type":45,"tag":264,"props":4377,"children":4378},{"class":266,"line":590},[4379,4383,4387,4391,4395,4399,4404,4408,4412,4416,4420,4424,4428],{"type":45,"tag":264,"props":4380,"children":4381},{"style":310},[4382],{"type":50,"value":3018},{"type":45,"tag":264,"props":4384,"children":4385},{"style":321},[4386],{"type":50,"value":721},{"type":45,"tag":264,"props":4388,"children":4389},{"style":724},[4390],{"type":50,"value":3027},{"type":45,"tag":264,"props":4392,"children":4393},{"style":310},[4394],{"type":50,"value":830},{"type":45,"tag":264,"props":4396,"children":4397},{"style":321},[4398],{"type":50,"value":334},{"type":45,"tag":264,"props":4400,"children":4401},{"style":276},[4402],{"type":50,"value":4403},"video-statistic-data-change",{"type":45,"tag":264,"props":4405,"children":4406},{"style":321},[4407],{"type":50,"value":334},{"type":45,"tag":264,"props":4409,"children":4410},{"style":321},[4411],{"type":50,"value":1193},{"type":45,"tag":264,"props":4413,"children":4414},{"style":321},[4415],{"type":50,"value":1306},{"type":45,"tag":264,"props":4417,"children":4418},{"style":3172},[4419],{"type":50,"value":3175},{"type":45,"tag":264,"props":4421,"children":4422},{"style":321},[4423],{"type":50,"value":848},{"type":45,"tag":264,"props":4425,"children":4426},{"style":371},[4427],{"type":50,"value":2519},{"type":45,"tag":264,"props":4429,"children":4430},{"style":321},[4431],{"type":50,"value":770},{"type":45,"tag":264,"props":4433,"children":4434},{"class":266,"line":773},[4435,4439,4443,4447,4451,4455,4460,4464,4468,4472,4476],{"type":45,"tag":264,"props":4436,"children":4437},{"style":310},[4438],{"type":50,"value":3203},{"type":45,"tag":264,"props":4440,"children":4441},{"style":321},[4442],{"type":50,"value":721},{"type":45,"tag":264,"props":4444,"children":4445},{"style":724},[4446],{"type":50,"value":1262},{"type":45,"tag":264,"props":4448,"children":4449},{"style":365},[4450],{"type":50,"value":830},{"type":45,"tag":264,"props":4452,"children":4453},{"style":321},[4454],{"type":50,"value":334},{"type":45,"tag":264,"props":4456,"children":4457},{"style":276},[4458],{"type":50,"value":4459},"Video stats:",{"type":45,"tag":264,"props":4461,"children":4462},{"style":321},[4463],{"type":50,"value":334},{"type":45,"tag":264,"props":4465,"children":4466},{"style":321},[4467],{"type":50,"value":1193},{"type":45,"tag":264,"props":4469,"children":4470},{"style":310},[4471],{"type":50,"value":3237},{"type":45,"tag":264,"props":4473,"children":4474},{"style":365},[4475],{"type":50,"value":848},{"type":45,"tag":264,"props":4477,"children":4478},{"style":321},[4479],{"type":50,"value":339},{"type":45,"tag":264,"props":4481,"children":4482},{"class":266,"line":786},[4483,4487,4491],{"type":45,"tag":264,"props":4484,"children":4485},{"style":321},[4486],{"type":50,"value":2685},{"type":45,"tag":264,"props":4488,"children":4489},{"style":310},[4490],{"type":50,"value":848},{"type":45,"tag":264,"props":4492,"children":4493},{"style":321},[4494],{"type":50,"value":339},{"type":45,"tag":246,"props":4496,"children":4498},{"id":4497},"share-events",[4499],{"type":50,"value":4500},"Share Events",{"type":45,"tag":253,"props":4502,"children":4504},{"className":292,"code":4503,"language":294,"meta":258,"style":258},"client.on('active-share-change', (payload) => {\n  console.log('Share status:', payload);\n});\n\nclient.on('share-statistic-data-change', (payload) => {\n  console.log('Share stats:', payload);\n});\n",[4505],{"type":45,"tag":84,"props":4506,"children":4507},{"__ignoreMap":258},[4508,4564,4612,4627,4634,4690,4738],{"type":45,"tag":264,"props":4509,"children":4510},{"class":266,"line":267},[4511,4515,4519,4523,4527,4531,4536,4540,4544,4548,4552,4556,4560],{"type":45,"tag":264,"props":4512,"children":4513},{"style":310},[4514],{"type":50,"value":3018},{"type":45,"tag":264,"props":4516,"children":4517},{"style":321},[4518],{"type":50,"value":721},{"type":45,"tag":264,"props":4520,"children":4521},{"style":724},[4522],{"type":50,"value":3027},{"type":45,"tag":264,"props":4524,"children":4525},{"style":310},[4526],{"type":50,"value":830},{"type":45,"tag":264,"props":4528,"children":4529},{"style":321},[4530],{"type":50,"value":334},{"type":45,"tag":264,"props":4532,"children":4533},{"style":276},[4534],{"type":50,"value":4535},"active-share-change",{"type":45,"tag":264,"props":4537,"children":4538},{"style":321},[4539],{"type":50,"value":334},{"type":45,"tag":264,"props":4541,"children":4542},{"style":321},[4543],{"type":50,"value":1193},{"type":45,"tag":264,"props":4545,"children":4546},{"style":321},[4547],{"type":50,"value":1306},{"type":45,"tag":264,"props":4549,"children":4550},{"style":3172},[4551],{"type":50,"value":3175},{"type":45,"tag":264,"props":4553,"children":4554},{"style":321},[4555],{"type":50,"value":848},{"type":45,"tag":264,"props":4557,"children":4558},{"style":371},[4559],{"type":50,"value":2519},{"type":45,"tag":264,"props":4561,"children":4562},{"style":321},[4563],{"type":50,"value":770},{"type":45,"tag":264,"props":4565,"children":4566},{"class":266,"line":410},[4567,4571,4575,4579,4583,4587,4592,4596,4600,4604,4608],{"type":45,"tag":264,"props":4568,"children":4569},{"style":310},[4570],{"type":50,"value":3203},{"type":45,"tag":264,"props":4572,"children":4573},{"style":321},[4574],{"type":50,"value":721},{"type":45,"tag":264,"props":4576,"children":4577},{"style":724},[4578],{"type":50,"value":1262},{"type":45,"tag":264,"props":4580,"children":4581},{"style":365},[4582],{"type":50,"value":830},{"type":45,"tag":264,"props":4584,"children":4585},{"style":321},[4586],{"type":50,"value":334},{"type":45,"tag":264,"props":4588,"children":4589},{"style":276},[4590],{"type":50,"value":4591},"Share status:",{"type":45,"tag":264,"props":4593,"children":4594},{"style":321},[4595],{"type":50,"value":334},{"type":45,"tag":264,"props":4597,"children":4598},{"style":321},[4599],{"type":50,"value":1193},{"type":45,"tag":264,"props":4601,"children":4602},{"style":310},[4603],{"type":50,"value":3237},{"type":45,"tag":264,"props":4605,"children":4606},{"style":365},[4607],{"type":50,"value":848},{"type":45,"tag":264,"props":4609,"children":4610},{"style":321},[4611],{"type":50,"value":339},{"type":45,"tag":264,"props":4613,"children":4614},{"class":266,"line":455},[4615,4619,4623],{"type":45,"tag":264,"props":4616,"children":4617},{"style":321},[4618],{"type":50,"value":2685},{"type":45,"tag":264,"props":4620,"children":4621},{"style":310},[4622],{"type":50,"value":848},{"type":45,"tag":264,"props":4624,"children":4625},{"style":321},[4626],{"type":50,"value":339},{"type":45,"tag":264,"props":4628,"children":4629},{"class":266,"line":500},[4630],{"type":45,"tag":264,"props":4631,"children":4632},{"emptyLinePlaceholder":682},[4633],{"type":50,"value":685},{"type":45,"tag":264,"props":4635,"children":4636},{"class":266,"line":545},[4637,4641,4645,4649,4653,4657,4662,4666,4670,4674,4678,4682,4686],{"type":45,"tag":264,"props":4638,"children":4639},{"style":310},[4640],{"type":50,"value":3018},{"type":45,"tag":264,"props":4642,"children":4643},{"style":321},[4644],{"type":50,"value":721},{"type":45,"tag":264,"props":4646,"children":4647},{"style":724},[4648],{"type":50,"value":3027},{"type":45,"tag":264,"props":4650,"children":4651},{"style":310},[4652],{"type":50,"value":830},{"type":45,"tag":264,"props":4654,"children":4655},{"style":321},[4656],{"type":50,"value":334},{"type":45,"tag":264,"props":4658,"children":4659},{"style":276},[4660],{"type":50,"value":4661},"share-statistic-data-change",{"type":45,"tag":264,"props":4663,"children":4664},{"style":321},[4665],{"type":50,"value":334},{"type":45,"tag":264,"props":4667,"children":4668},{"style":321},[4669],{"type":50,"value":1193},{"type":45,"tag":264,"props":4671,"children":4672},{"style":321},[4673],{"type":50,"value":1306},{"type":45,"tag":264,"props":4675,"children":4676},{"style":3172},[4677],{"type":50,"value":3175},{"type":45,"tag":264,"props":4679,"children":4680},{"style":321},[4681],{"type":50,"value":848},{"type":45,"tag":264,"props":4683,"children":4684},{"style":371},[4685],{"type":50,"value":2519},{"type":45,"tag":264,"props":4687,"children":4688},{"style":321},[4689],{"type":50,"value":770},{"type":45,"tag":264,"props":4691,"children":4692},{"class":266,"line":590},[4693,4697,4701,4705,4709,4713,4718,4722,4726,4730,4734],{"type":45,"tag":264,"props":4694,"children":4695},{"style":310},[4696],{"type":50,"value":3203},{"type":45,"tag":264,"props":4698,"children":4699},{"style":321},[4700],{"type":50,"value":721},{"type":45,"tag":264,"props":4702,"children":4703},{"style":724},[4704],{"type":50,"value":1262},{"type":45,"tag":264,"props":4706,"children":4707},{"style":365},[4708],{"type":50,"value":830},{"type":45,"tag":264,"props":4710,"children":4711},{"style":321},[4712],{"type":50,"value":334},{"type":45,"tag":264,"props":4714,"children":4715},{"style":276},[4716],{"type":50,"value":4717},"Share stats:",{"type":45,"tag":264,"props":4719,"children":4720},{"style":321},[4721],{"type":50,"value":334},{"type":45,"tag":264,"props":4723,"children":4724},{"style":321},[4725],{"type":50,"value":1193},{"type":45,"tag":264,"props":4727,"children":4728},{"style":310},[4729],{"type":50,"value":3237},{"type":45,"tag":264,"props":4731,"children":4732},{"style":365},[4733],{"type":50,"value":848},{"type":45,"tag":264,"props":4735,"children":4736},{"style":321},[4737],{"type":50,"value":339},{"type":45,"tag":264,"props":4739,"children":4740},{"class":266,"line":773},[4741,4745,4749],{"type":45,"tag":264,"props":4742,"children":4743},{"style":321},[4744],{"type":50,"value":2685},{"type":45,"tag":264,"props":4746,"children":4747},{"style":310},[4748],{"type":50,"value":848},{"type":45,"tag":264,"props":4750,"children":4751},{"style":321},[4752],{"type":50,"value":339},{"type":45,"tag":246,"props":4754,"children":4756},{"id":4755},"chat-events",[4757],{"type":50,"value":4758},"Chat Events",{"type":45,"tag":253,"props":4760,"children":4762},{"className":292,"code":4761,"language":294,"meta":258,"style":258},"client.on('chat-on-message', (payload) => {\n  console.log('Chat message:', payload);\n});\n",[4763],{"type":45,"tag":84,"props":4764,"children":4765},{"__ignoreMap":258},[4766,4822,4870],{"type":45,"tag":264,"props":4767,"children":4768},{"class":266,"line":267},[4769,4773,4777,4781,4785,4789,4794,4798,4802,4806,4810,4814,4818],{"type":45,"tag":264,"props":4770,"children":4771},{"style":310},[4772],{"type":50,"value":3018},{"type":45,"tag":264,"props":4774,"children":4775},{"style":321},[4776],{"type":50,"value":721},{"type":45,"tag":264,"props":4778,"children":4779},{"style":724},[4780],{"type":50,"value":3027},{"type":45,"tag":264,"props":4782,"children":4783},{"style":310},[4784],{"type":50,"value":830},{"type":45,"tag":264,"props":4786,"children":4787},{"style":321},[4788],{"type":50,"value":334},{"type":45,"tag":264,"props":4790,"children":4791},{"style":276},[4792],{"type":50,"value":4793},"chat-on-message",{"type":45,"tag":264,"props":4795,"children":4796},{"style":321},[4797],{"type":50,"value":334},{"type":45,"tag":264,"props":4799,"children":4800},{"style":321},[4801],{"type":50,"value":1193},{"type":45,"tag":264,"props":4803,"children":4804},{"style":321},[4805],{"type":50,"value":1306},{"type":45,"tag":264,"props":4807,"children":4808},{"style":3172},[4809],{"type":50,"value":3175},{"type":45,"tag":264,"props":4811,"children":4812},{"style":321},[4813],{"type":50,"value":848},{"type":45,"tag":264,"props":4815,"children":4816},{"style":371},[4817],{"type":50,"value":2519},{"type":45,"tag":264,"props":4819,"children":4820},{"style":321},[4821],{"type":50,"value":770},{"type":45,"tag":264,"props":4823,"children":4824},{"class":266,"line":410},[4825,4829,4833,4837,4841,4845,4850,4854,4858,4862,4866],{"type":45,"tag":264,"props":4826,"children":4827},{"style":310},[4828],{"type":50,"value":3203},{"type":45,"tag":264,"props":4830,"children":4831},{"style":321},[4832],{"type":50,"value":721},{"type":45,"tag":264,"props":4834,"children":4835},{"style":724},[4836],{"type":50,"value":1262},{"type":45,"tag":264,"props":4838,"children":4839},{"style":365},[4840],{"type":50,"value":830},{"type":45,"tag":264,"props":4842,"children":4843},{"style":321},[4844],{"type":50,"value":334},{"type":45,"tag":264,"props":4846,"children":4847},{"style":276},[4848],{"type":50,"value":4849},"Chat message:",{"type":45,"tag":264,"props":4851,"children":4852},{"style":321},[4853],{"type":50,"value":334},{"type":45,"tag":264,"props":4855,"children":4856},{"style":321},[4857],{"type":50,"value":1193},{"type":45,"tag":264,"props":4859,"children":4860},{"style":310},[4861],{"type":50,"value":3237},{"type":45,"tag":264,"props":4863,"children":4864},{"style":365},[4865],{"type":50,"value":848},{"type":45,"tag":264,"props":4867,"children":4868},{"style":321},[4869],{"type":50,"value":339},{"type":45,"tag":264,"props":4871,"children":4872},{"class":266,"line":455},[4873,4877,4881],{"type":45,"tag":264,"props":4874,"children":4875},{"style":321},[4876],{"type":50,"value":2685},{"type":45,"tag":264,"props":4878,"children":4879},{"style":310},[4880],{"type":50,"value":848},{"type":45,"tag":264,"props":4882,"children":4883},{"style":321},[4884],{"type":50,"value":339},{"type":45,"tag":246,"props":4886,"children":4888},{"id":4887},"recording-events",[4889],{"type":50,"value":4890},"Recording Events",{"type":45,"tag":253,"props":4892,"children":4894},{"className":292,"code":4893,"language":294,"meta":258,"style":258},"client.on('recording-change', (payload) => {\n  console.log('Recording status:', payload);\n});\n",[4895],{"type":45,"tag":84,"props":4896,"children":4897},{"__ignoreMap":258},[4898,4954,5002],{"type":45,"tag":264,"props":4899,"children":4900},{"class":266,"line":267},[4901,4905,4909,4913,4917,4921,4926,4930,4934,4938,4942,4946,4950],{"type":45,"tag":264,"props":4902,"children":4903},{"style":310},[4904],{"type":50,"value":3018},{"type":45,"tag":264,"props":4906,"children":4907},{"style":321},[4908],{"type":50,"value":721},{"type":45,"tag":264,"props":4910,"children":4911},{"style":724},[4912],{"type":50,"value":3027},{"type":45,"tag":264,"props":4914,"children":4915},{"style":310},[4916],{"type":50,"value":830},{"type":45,"tag":264,"props":4918,"children":4919},{"style":321},[4920],{"type":50,"value":334},{"type":45,"tag":264,"props":4922,"children":4923},{"style":276},[4924],{"type":50,"value":4925},"recording-change",{"type":45,"tag":264,"props":4927,"children":4928},{"style":321},[4929],{"type":50,"value":334},{"type":45,"tag":264,"props":4931,"children":4932},{"style":321},[4933],{"type":50,"value":1193},{"type":45,"tag":264,"props":4935,"children":4936},{"style":321},[4937],{"type":50,"value":1306},{"type":45,"tag":264,"props":4939,"children":4940},{"style":3172},[4941],{"type":50,"value":3175},{"type":45,"tag":264,"props":4943,"children":4944},{"style":321},[4945],{"type":50,"value":848},{"type":45,"tag":264,"props":4947,"children":4948},{"style":371},[4949],{"type":50,"value":2519},{"type":45,"tag":264,"props":4951,"children":4952},{"style":321},[4953],{"type":50,"value":770},{"type":45,"tag":264,"props":4955,"children":4956},{"class":266,"line":410},[4957,4961,4965,4969,4973,4977,4982,4986,4990,4994,4998],{"type":45,"tag":264,"props":4958,"children":4959},{"style":310},[4960],{"type":50,"value":3203},{"type":45,"tag":264,"props":4962,"children":4963},{"style":321},[4964],{"type":50,"value":721},{"type":45,"tag":264,"props":4966,"children":4967},{"style":724},[4968],{"type":50,"value":1262},{"type":45,"tag":264,"props":4970,"children":4971},{"style":365},[4972],{"type":50,"value":830},{"type":45,"tag":264,"props":4974,"children":4975},{"style":321},[4976],{"type":50,"value":334},{"type":45,"tag":264,"props":4978,"children":4979},{"style":276},[4980],{"type":50,"value":4981},"Recording status:",{"type":45,"tag":264,"props":4983,"children":4984},{"style":321},[4985],{"type":50,"value":334},{"type":45,"tag":264,"props":4987,"children":4988},{"style":321},[4989],{"type":50,"value":1193},{"type":45,"tag":264,"props":4991,"children":4992},{"style":310},[4993],{"type":50,"value":3237},{"type":45,"tag":264,"props":4995,"children":4996},{"style":365},[4997],{"type":50,"value":848},{"type":45,"tag":264,"props":4999,"children":5000},{"style":321},[5001],{"type":50,"value":339},{"type":45,"tag":264,"props":5003,"children":5004},{"class":266,"line":455},[5005,5009,5013],{"type":45,"tag":264,"props":5006,"children":5007},{"style":321},[5008],{"type":50,"value":2685},{"type":45,"tag":264,"props":5010,"children":5011},{"style":310},[5012],{"type":50,"value":848},{"type":45,"tag":264,"props":5014,"children":5015},{"style":321},[5016],{"type":50,"value":339},{"type":45,"tag":246,"props":5018,"children":5020},{"id":5019},"media-device-events",[5021],{"type":50,"value":5022},"Media Device Events",{"type":45,"tag":253,"props":5024,"children":5026},{"className":292,"code":5025,"language":294,"meta":258,"style":258},"client.on('media-sdk-change', (payload) => {\n  console.log('Media SDK:', payload);\n});\n\nclient.on('device-change', () => {\n  console.log('Device changed');\n});\n",[5027],{"type":45,"tag":84,"props":5028,"children":5029},{"__ignoreMap":258},[5030,5086,5134,5149,5156,5204,5244],{"type":45,"tag":264,"props":5031,"children":5032},{"class":266,"line":267},[5033,5037,5041,5045,5049,5053,5058,5062,5066,5070,5074,5078,5082],{"type":45,"tag":264,"props":5034,"children":5035},{"style":310},[5036],{"type":50,"value":3018},{"type":45,"tag":264,"props":5038,"children":5039},{"style":321},[5040],{"type":50,"value":721},{"type":45,"tag":264,"props":5042,"children":5043},{"style":724},[5044],{"type":50,"value":3027},{"type":45,"tag":264,"props":5046,"children":5047},{"style":310},[5048],{"type":50,"value":830},{"type":45,"tag":264,"props":5050,"children":5051},{"style":321},[5052],{"type":50,"value":334},{"type":45,"tag":264,"props":5054,"children":5055},{"style":276},[5056],{"type":50,"value":5057},"media-sdk-change",{"type":45,"tag":264,"props":5059,"children":5060},{"style":321},[5061],{"type":50,"value":334},{"type":45,"tag":264,"props":5063,"children":5064},{"style":321},[5065],{"type":50,"value":1193},{"type":45,"tag":264,"props":5067,"children":5068},{"style":321},[5069],{"type":50,"value":1306},{"type":45,"tag":264,"props":5071,"children":5072},{"style":3172},[5073],{"type":50,"value":3175},{"type":45,"tag":264,"props":5075,"children":5076},{"style":321},[5077],{"type":50,"value":848},{"type":45,"tag":264,"props":5079,"children":5080},{"style":371},[5081],{"type":50,"value":2519},{"type":45,"tag":264,"props":5083,"children":5084},{"style":321},[5085],{"type":50,"value":770},{"type":45,"tag":264,"props":5087,"children":5088},{"class":266,"line":410},[5089,5093,5097,5101,5105,5109,5114,5118,5122,5126,5130],{"type":45,"tag":264,"props":5090,"children":5091},{"style":310},[5092],{"type":50,"value":3203},{"type":45,"tag":264,"props":5094,"children":5095},{"style":321},[5096],{"type":50,"value":721},{"type":45,"tag":264,"props":5098,"children":5099},{"style":724},[5100],{"type":50,"value":1262},{"type":45,"tag":264,"props":5102,"children":5103},{"style":365},[5104],{"type":50,"value":830},{"type":45,"tag":264,"props":5106,"children":5107},{"style":321},[5108],{"type":50,"value":334},{"type":45,"tag":264,"props":5110,"children":5111},{"style":276},[5112],{"type":50,"value":5113},"Media SDK:",{"type":45,"tag":264,"props":5115,"children":5116},{"style":321},[5117],{"type":50,"value":334},{"type":45,"tag":264,"props":5119,"children":5120},{"style":321},[5121],{"type":50,"value":1193},{"type":45,"tag":264,"props":5123,"children":5124},{"style":310},[5125],{"type":50,"value":3237},{"type":45,"tag":264,"props":5127,"children":5128},{"style":365},[5129],{"type":50,"value":848},{"type":45,"tag":264,"props":5131,"children":5132},{"style":321},[5133],{"type":50,"value":339},{"type":45,"tag":264,"props":5135,"children":5136},{"class":266,"line":455},[5137,5141,5145],{"type":45,"tag":264,"props":5138,"children":5139},{"style":321},[5140],{"type":50,"value":2685},{"type":45,"tag":264,"props":5142,"children":5143},{"style":310},[5144],{"type":50,"value":848},{"type":45,"tag":264,"props":5146,"children":5147},{"style":321},[5148],{"type":50,"value":339},{"type":45,"tag":264,"props":5150,"children":5151},{"class":266,"line":500},[5152],{"type":45,"tag":264,"props":5153,"children":5154},{"emptyLinePlaceholder":682},[5155],{"type":50,"value":685},{"type":45,"tag":264,"props":5157,"children":5158},{"class":266,"line":545},[5159,5163,5167,5171,5175,5179,5184,5188,5192,5196,5200],{"type":45,"tag":264,"props":5160,"children":5161},{"style":310},[5162],{"type":50,"value":3018},{"type":45,"tag":264,"props":5164,"children":5165},{"style":321},[5166],{"type":50,"value":721},{"type":45,"tag":264,"props":5168,"children":5169},{"style":724},[5170],{"type":50,"value":3027},{"type":45,"tag":264,"props":5172,"children":5173},{"style":310},[5174],{"type":50,"value":830},{"type":45,"tag":264,"props":5176,"children":5177},{"style":321},[5178],{"type":50,"value":334},{"type":45,"tag":264,"props":5180,"children":5181},{"style":276},[5182],{"type":50,"value":5183},"device-change",{"type":45,"tag":264,"props":5185,"children":5186},{"style":321},[5187],{"type":50,"value":334},{"type":45,"tag":264,"props":5189,"children":5190},{"style":321},[5191],{"type":50,"value":1193},{"type":45,"tag":264,"props":5193,"children":5194},{"style":321},[5195],{"type":50,"value":2514},{"type":45,"tag":264,"props":5197,"children":5198},{"style":371},[5199],{"type":50,"value":2519},{"type":45,"tag":264,"props":5201,"children":5202},{"style":321},[5203],{"type":50,"value":770},{"type":45,"tag":264,"props":5205,"children":5206},{"class":266,"line":590},[5207,5211,5215,5219,5223,5227,5232,5236,5240],{"type":45,"tag":264,"props":5208,"children":5209},{"style":310},[5210],{"type":50,"value":3203},{"type":45,"tag":264,"props":5212,"children":5213},{"style":321},[5214],{"type":50,"value":721},{"type":45,"tag":264,"props":5216,"children":5217},{"style":724},[5218],{"type":50,"value":1262},{"type":45,"tag":264,"props":5220,"children":5221},{"style":365},[5222],{"type":50,"value":830},{"type":45,"tag":264,"props":5224,"children":5225},{"style":321},[5226],{"type":50,"value":334},{"type":45,"tag":264,"props":5228,"children":5229},{"style":276},[5230],{"type":50,"value":5231},"Device changed",{"type":45,"tag":264,"props":5233,"children":5234},{"style":321},[5235],{"type":50,"value":334},{"type":45,"tag":264,"props":5237,"children":5238},{"style":365},[5239],{"type":50,"value":848},{"type":45,"tag":264,"props":5241,"children":5242},{"style":321},[5243],{"type":50,"value":339},{"type":45,"tag":264,"props":5245,"children":5246},{"class":266,"line":773},[5247,5251,5255],{"type":45,"tag":264,"props":5248,"children":5249},{"style":321},[5250],{"type":50,"value":2685},{"type":45,"tag":264,"props":5252,"children":5253},{"style":310},[5254],{"type":50,"value":848},{"type":45,"tag":264,"props":5256,"children":5257},{"style":321},[5258],{"type":50,"value":339},{"type":45,"tag":72,"props":5260,"children":5262},{"id":5261},"common-methods",[5263],{"type":50,"value":5264},"Common Methods",{"type":45,"tag":246,"props":5266,"children":5268},{"id":5267},"user-information",[5269],{"type":50,"value":5270},"User Information",{"type":45,"tag":253,"props":5272,"children":5274},{"className":292,"code":5273,"language":294,"meta":258,"style":258},"\u002F\u002F Get current user\nconst currentUser = client.getCurrentUser();\nconsole.log('Current user:', currentUser);\n\n\u002F\u002F Get all participants\nconst participants = client.getParticipantsList();\nconsole.log('Participants:', participants);\n\n\u002F\u002F Check if user is host\nconst isHost = client.isHost();\n",[5275],{"type":45,"tag":84,"props":5276,"children":5277},{"__ignoreMap":258},[5278,5286,5323,5369,5376,5384,5421,5466,5473,5481],{"type":45,"tag":264,"props":5279,"children":5280},{"class":266,"line":267},[5281],{"type":45,"tag":264,"props":5282,"children":5283},{"style":691},[5284],{"type":50,"value":5285},"\u002F\u002F Get current user\n",{"type":45,"tag":264,"props":5287,"children":5288},{"class":266,"line":410},[5289,5293,5298,5302,5306,5310,5315,5319],{"type":45,"tag":264,"props":5290,"children":5291},{"style":371},[5292],{"type":50,"value":702},{"type":45,"tag":264,"props":5294,"children":5295},{"style":310},[5296],{"type":50,"value":5297}," currentUser ",{"type":45,"tag":264,"props":5299,"children":5300},{"style":321},[5301],{"type":50,"value":379},{"type":45,"tag":264,"props":5303,"children":5304},{"style":310},[5305],{"type":50,"value":883},{"type":45,"tag":264,"props":5307,"children":5308},{"style":321},[5309],{"type":50,"value":721},{"type":45,"tag":264,"props":5311,"children":5312},{"style":724},[5313],{"type":50,"value":5314},"getCurrentUser",{"type":45,"tag":264,"props":5316,"children":5317},{"style":310},[5318],{"type":50,"value":732},{"type":45,"tag":264,"props":5320,"children":5321},{"style":321},[5322],{"type":50,"value":339},{"type":45,"tag":264,"props":5324,"children":5325},{"class":266,"line":455},[5326,5331,5335,5339,5343,5347,5352,5356,5360,5365],{"type":45,"tag":264,"props":5327,"children":5328},{"style":310},[5329],{"type":50,"value":5330},"console",{"type":45,"tag":264,"props":5332,"children":5333},{"style":321},[5334],{"type":50,"value":721},{"type":45,"tag":264,"props":5336,"children":5337},{"style":724},[5338],{"type":50,"value":1262},{"type":45,"tag":264,"props":5340,"children":5341},{"style":310},[5342],{"type":50,"value":830},{"type":45,"tag":264,"props":5344,"children":5345},{"style":321},[5346],{"type":50,"value":334},{"type":45,"tag":264,"props":5348,"children":5349},{"style":276},[5350],{"type":50,"value":5351},"Current user:",{"type":45,"tag":264,"props":5353,"children":5354},{"style":321},[5355],{"type":50,"value":334},{"type":45,"tag":264,"props":5357,"children":5358},{"style":321},[5359],{"type":50,"value":1193},{"type":45,"tag":264,"props":5361,"children":5362},{"style":310},[5363],{"type":50,"value":5364}," currentUser)",{"type":45,"tag":264,"props":5366,"children":5367},{"style":321},[5368],{"type":50,"value":339},{"type":45,"tag":264,"props":5370,"children":5371},{"class":266,"line":500},[5372],{"type":45,"tag":264,"props":5373,"children":5374},{"emptyLinePlaceholder":682},[5375],{"type":50,"value":685},{"type":45,"tag":264,"props":5377,"children":5378},{"class":266,"line":545},[5379],{"type":45,"tag":264,"props":5380,"children":5381},{"style":691},[5382],{"type":50,"value":5383},"\u002F\u002F Get all participants\n",{"type":45,"tag":264,"props":5385,"children":5386},{"class":266,"line":590},[5387,5391,5396,5400,5404,5408,5413,5417],{"type":45,"tag":264,"props":5388,"children":5389},{"style":371},[5390],{"type":50,"value":702},{"type":45,"tag":264,"props":5392,"children":5393},{"style":310},[5394],{"type":50,"value":5395}," participants ",{"type":45,"tag":264,"props":5397,"children":5398},{"style":321},[5399],{"type":50,"value":379},{"type":45,"tag":264,"props":5401,"children":5402},{"style":310},[5403],{"type":50,"value":883},{"type":45,"tag":264,"props":5405,"children":5406},{"style":321},[5407],{"type":50,"value":721},{"type":45,"tag":264,"props":5409,"children":5410},{"style":724},[5411],{"type":50,"value":5412},"getParticipantsList",{"type":45,"tag":264,"props":5414,"children":5415},{"style":310},[5416],{"type":50,"value":732},{"type":45,"tag":264,"props":5418,"children":5419},{"style":321},[5420],{"type":50,"value":339},{"type":45,"tag":264,"props":5422,"children":5423},{"class":266,"line":773},[5424,5428,5432,5436,5440,5444,5449,5453,5457,5462],{"type":45,"tag":264,"props":5425,"children":5426},{"style":310},[5427],{"type":50,"value":5330},{"type":45,"tag":264,"props":5429,"children":5430},{"style":321},[5431],{"type":50,"value":721},{"type":45,"tag":264,"props":5433,"children":5434},{"style":724},[5435],{"type":50,"value":1262},{"type":45,"tag":264,"props":5437,"children":5438},{"style":310},[5439],{"type":50,"value":830},{"type":45,"tag":264,"props":5441,"children":5442},{"style":321},[5443],{"type":50,"value":334},{"type":45,"tag":264,"props":5445,"children":5446},{"style":276},[5447],{"type":50,"value":5448},"Participants:",{"type":45,"tag":264,"props":5450,"children":5451},{"style":321},[5452],{"type":50,"value":334},{"type":45,"tag":264,"props":5454,"children":5455},{"style":321},[5456],{"type":50,"value":1193},{"type":45,"tag":264,"props":5458,"children":5459},{"style":310},[5460],{"type":50,"value":5461}," participants)",{"type":45,"tag":264,"props":5463,"children":5464},{"style":321},[5465],{"type":50,"value":339},{"type":45,"tag":264,"props":5467,"children":5468},{"class":266,"line":786},[5469],{"type":45,"tag":264,"props":5470,"children":5471},{"emptyLinePlaceholder":682},[5472],{"type":50,"value":685},{"type":45,"tag":264,"props":5474,"children":5475},{"class":266,"line":795},[5476],{"type":45,"tag":264,"props":5477,"children":5478},{"style":691},[5479],{"type":50,"value":5480},"\u002F\u002F Check if user is host\n",{"type":45,"tag":264,"props":5482,"children":5483},{"class":266,"line":855},[5484,5488,5493,5497,5501,5505,5510,5514],{"type":45,"tag":264,"props":5485,"children":5486},{"style":371},[5487],{"type":50,"value":702},{"type":45,"tag":264,"props":5489,"children":5490},{"style":310},[5491],{"type":50,"value":5492}," isHost ",{"type":45,"tag":264,"props":5494,"children":5495},{"style":321},[5496],{"type":50,"value":379},{"type":45,"tag":264,"props":5498,"children":5499},{"style":310},[5500],{"type":50,"value":883},{"type":45,"tag":264,"props":5502,"children":5503},{"style":321},[5504],{"type":50,"value":721},{"type":45,"tag":264,"props":5506,"children":5507},{"style":724},[5508],{"type":50,"value":5509},"isHost",{"type":45,"tag":264,"props":5511,"children":5512},{"style":310},[5513],{"type":50,"value":732},{"type":45,"tag":264,"props":5515,"children":5516},{"style":321},[5517],{"type":50,"value":339},{"type":45,"tag":246,"props":5519,"children":5521},{"id":5520},"audio-control",[5522],{"type":50,"value":5523},"Audio Control",{"type":45,"tag":253,"props":5525,"children":5527},{"className":292,"code":5526,"language":294,"meta":258,"style":258},"\u002F\u002F Mute\u002Funmute self\nawait client.mute(true);  \u002F\u002F mute\nawait client.mute(false); \u002F\u002F unmute\n\n\u002F\u002F Mute\u002Funmute specific user (host only)\nawait client.muteAudio(userId, true);\n\n\u002F\u002F Mute all (host only)\nawait client.muteAllAudio(true);\n",[5528],{"type":45,"tag":84,"props":5529,"children":5530},{"__ignoreMap":258},[5531,5539,5581,5621,5628,5636,5677,5684,5692],{"type":45,"tag":264,"props":5532,"children":5533},{"class":266,"line":267},[5534],{"type":45,"tag":264,"props":5535,"children":5536},{"style":691},[5537],{"type":50,"value":5538},"\u002F\u002F Mute\u002Funmute self\n",{"type":45,"tag":264,"props":5540,"children":5541},{"class":266,"line":410},[5542,5546,5550,5554,5559,5563,5567,5571,5576],{"type":45,"tag":264,"props":5543,"children":5544},{"style":304},[5545],{"type":50,"value":1858},{"type":45,"tag":264,"props":5547,"children":5548},{"style":310},[5549],{"type":50,"value":883},{"type":45,"tag":264,"props":5551,"children":5552},{"style":321},[5553],{"type":50,"value":721},{"type":45,"tag":264,"props":5555,"children":5556},{"style":724},[5557],{"type":50,"value":5558},"mute",{"type":45,"tag":264,"props":5560,"children":5561},{"style":310},[5562],{"type":50,"value":830},{"type":45,"tag":264,"props":5564,"children":5565},{"style":970},[5566],{"type":50,"value":1687},{"type":45,"tag":264,"props":5568,"children":5569},{"style":310},[5570],{"type":50,"value":848},{"type":45,"tag":264,"props":5572,"children":5573},{"style":321},[5574],{"type":50,"value":5575},";",{"type":45,"tag":264,"props":5577,"children":5578},{"style":691},[5579],{"type":50,"value":5580},"  \u002F\u002F mute\n",{"type":45,"tag":264,"props":5582,"children":5583},{"class":266,"line":455},[5584,5588,5592,5596,5600,5604,5608,5612,5616],{"type":45,"tag":264,"props":5585,"children":5586},{"style":304},[5587],{"type":50,"value":1858},{"type":45,"tag":264,"props":5589,"children":5590},{"style":310},[5591],{"type":50,"value":883},{"type":45,"tag":264,"props":5593,"children":5594},{"style":321},[5595],{"type":50,"value":721},{"type":45,"tag":264,"props":5597,"children":5598},{"style":724},[5599],{"type":50,"value":5558},{"type":45,"tag":264,"props":5601,"children":5602},{"style":310},[5603],{"type":50,"value":830},{"type":45,"tag":264,"props":5605,"children":5606},{"style":970},[5607],{"type":50,"value":1553},{"type":45,"tag":264,"props":5609,"children":5610},{"style":310},[5611],{"type":50,"value":848},{"type":45,"tag":264,"props":5613,"children":5614},{"style":321},[5615],{"type":50,"value":5575},{"type":45,"tag":264,"props":5617,"children":5618},{"style":691},[5619],{"type":50,"value":5620}," \u002F\u002F unmute\n",{"type":45,"tag":264,"props":5622,"children":5623},{"class":266,"line":500},[5624],{"type":45,"tag":264,"props":5625,"children":5626},{"emptyLinePlaceholder":682},[5627],{"type":50,"value":685},{"type":45,"tag":264,"props":5629,"children":5630},{"class":266,"line":545},[5631],{"type":45,"tag":264,"props":5632,"children":5633},{"style":691},[5634],{"type":50,"value":5635},"\u002F\u002F Mute\u002Funmute specific user (host only)\n",{"type":45,"tag":264,"props":5637,"children":5638},{"class":266,"line":590},[5639,5643,5647,5651,5656,5661,5665,5669,5673],{"type":45,"tag":264,"props":5640,"children":5641},{"style":304},[5642],{"type":50,"value":1858},{"type":45,"tag":264,"props":5644,"children":5645},{"style":310},[5646],{"type":50,"value":883},{"type":45,"tag":264,"props":5648,"children":5649},{"style":321},[5650],{"type":50,"value":721},{"type":45,"tag":264,"props":5652,"children":5653},{"style":724},[5654],{"type":50,"value":5655},"muteAudio",{"type":45,"tag":264,"props":5657,"children":5658},{"style":310},[5659],{"type":50,"value":5660},"(userId",{"type":45,"tag":264,"props":5662,"children":5663},{"style":321},[5664],{"type":50,"value":1193},{"type":45,"tag":264,"props":5666,"children":5667},{"style":970},[5668],{"type":50,"value":973},{"type":45,"tag":264,"props":5670,"children":5671},{"style":310},[5672],{"type":50,"value":848},{"type":45,"tag":264,"props":5674,"children":5675},{"style":321},[5676],{"type":50,"value":339},{"type":45,"tag":264,"props":5678,"children":5679},{"class":266,"line":773},[5680],{"type":45,"tag":264,"props":5681,"children":5682},{"emptyLinePlaceholder":682},[5683],{"type":50,"value":685},{"type":45,"tag":264,"props":5685,"children":5686},{"class":266,"line":786},[5687],{"type":45,"tag":264,"props":5688,"children":5689},{"style":691},[5690],{"type":50,"value":5691},"\u002F\u002F Mute all (host only)\n",{"type":45,"tag":264,"props":5693,"children":5694},{"class":266,"line":795},[5695,5699,5703,5707,5712,5716,5720,5724],{"type":45,"tag":264,"props":5696,"children":5697},{"style":304},[5698],{"type":50,"value":1858},{"type":45,"tag":264,"props":5700,"children":5701},{"style":310},[5702],{"type":50,"value":883},{"type":45,"tag":264,"props":5704,"children":5705},{"style":321},[5706],{"type":50,"value":721},{"type":45,"tag":264,"props":5708,"children":5709},{"style":724},[5710],{"type":50,"value":5711},"muteAllAudio",{"type":45,"tag":264,"props":5713,"children":5714},{"style":310},[5715],{"type":50,"value":830},{"type":45,"tag":264,"props":5717,"children":5718},{"style":970},[5719],{"type":50,"value":1687},{"type":45,"tag":264,"props":5721,"children":5722},{"style":310},[5723],{"type":50,"value":848},{"type":45,"tag":264,"props":5725,"children":5726},{"style":321},[5727],{"type":50,"value":339},{"type":45,"tag":246,"props":5729,"children":5731},{"id":5730},"video-control",[5732],{"type":50,"value":5733},"Video Control",{"type":45,"tag":253,"props":5735,"children":5737},{"className":292,"code":5736,"language":294,"meta":258,"style":258},"\u002F\u002F Start\u002Fstop video\nawait client.startVideo();\nawait client.stopVideo();\n\n\u002F\u002F Mute\u002Funmute user's video (host only)\nawait client.muteVideo(userId, true);\n",[5738],{"type":45,"tag":84,"props":5739,"children":5740},{"__ignoreMap":258},[5741,5749,5777,5805,5812,5820],{"type":45,"tag":264,"props":5742,"children":5743},{"class":266,"line":267},[5744],{"type":45,"tag":264,"props":5745,"children":5746},{"style":691},[5747],{"type":50,"value":5748},"\u002F\u002F Start\u002Fstop video\n",{"type":45,"tag":264,"props":5750,"children":5751},{"class":266,"line":410},[5752,5756,5760,5764,5769,5773],{"type":45,"tag":264,"props":5753,"children":5754},{"style":304},[5755],{"type":50,"value":1858},{"type":45,"tag":264,"props":5757,"children":5758},{"style":310},[5759],{"type":50,"value":883},{"type":45,"tag":264,"props":5761,"children":5762},{"style":321},[5763],{"type":50,"value":721},{"type":45,"tag":264,"props":5765,"children":5766},{"style":724},[5767],{"type":50,"value":5768},"startVideo",{"type":45,"tag":264,"props":5770,"children":5771},{"style":310},[5772],{"type":50,"value":732},{"type":45,"tag":264,"props":5774,"children":5775},{"style":321},[5776],{"type":50,"value":339},{"type":45,"tag":264,"props":5778,"children":5779},{"class":266,"line":455},[5780,5784,5788,5792,5797,5801],{"type":45,"tag":264,"props":5781,"children":5782},{"style":304},[5783],{"type":50,"value":1858},{"type":45,"tag":264,"props":5785,"children":5786},{"style":310},[5787],{"type":50,"value":883},{"type":45,"tag":264,"props":5789,"children":5790},{"style":321},[5791],{"type":50,"value":721},{"type":45,"tag":264,"props":5793,"children":5794},{"style":724},[5795],{"type":50,"value":5796},"stopVideo",{"type":45,"tag":264,"props":5798,"children":5799},{"style":310},[5800],{"type":50,"value":732},{"type":45,"tag":264,"props":5802,"children":5803},{"style":321},[5804],{"type":50,"value":339},{"type":45,"tag":264,"props":5806,"children":5807},{"class":266,"line":500},[5808],{"type":45,"tag":264,"props":5809,"children":5810},{"emptyLinePlaceholder":682},[5811],{"type":50,"value":685},{"type":45,"tag":264,"props":5813,"children":5814},{"class":266,"line":545},[5815],{"type":45,"tag":264,"props":5816,"children":5817},{"style":691},[5818],{"type":50,"value":5819},"\u002F\u002F Mute\u002Funmute user's video (host only)\n",{"type":45,"tag":264,"props":5821,"children":5822},{"class":266,"line":590},[5823,5827,5831,5835,5840,5844,5848,5852,5856],{"type":45,"tag":264,"props":5824,"children":5825},{"style":304},[5826],{"type":50,"value":1858},{"type":45,"tag":264,"props":5828,"children":5829},{"style":310},[5830],{"type":50,"value":883},{"type":45,"tag":264,"props":5832,"children":5833},{"style":321},[5834],{"type":50,"value":721},{"type":45,"tag":264,"props":5836,"children":5837},{"style":724},[5838],{"type":50,"value":5839},"muteVideo",{"type":45,"tag":264,"props":5841,"children":5842},{"style":310},[5843],{"type":50,"value":5660},{"type":45,"tag":264,"props":5845,"children":5846},{"style":321},[5847],{"type":50,"value":1193},{"type":45,"tag":264,"props":5849,"children":5850},{"style":970},[5851],{"type":50,"value":973},{"type":45,"tag":264,"props":5853,"children":5854},{"style":310},[5855],{"type":50,"value":848},{"type":45,"tag":264,"props":5857,"children":5858},{"style":321},[5859],{"type":50,"value":339},{"type":45,"tag":246,"props":5861,"children":5863},{"id":5862},"meeting-control",[5864],{"type":50,"value":5865},"Meeting Control",{"type":45,"tag":253,"props":5867,"children":5869},{"className":292,"code":5868,"language":294,"meta":258,"style":258},"\u002F\u002F Leave meeting\nclient.leaveMeeting();\n\n\u002F\u002F End meeting (host only)\nclient.endMeeting();\n",[5870],{"type":45,"tag":84,"props":5871,"children":5872},{"__ignoreMap":258},[5873,5881,5905,5912,5920],{"type":45,"tag":264,"props":5874,"children":5875},{"class":266,"line":267},[5876],{"type":45,"tag":264,"props":5877,"children":5878},{"style":691},[5879],{"type":50,"value":5880},"\u002F\u002F Leave meeting\n",{"type":45,"tag":264,"props":5882,"children":5883},{"class":266,"line":410},[5884,5888,5892,5897,5901],{"type":45,"tag":264,"props":5885,"children":5886},{"style":310},[5887],{"type":50,"value":3018},{"type":45,"tag":264,"props":5889,"children":5890},{"style":321},[5891],{"type":50,"value":721},{"type":45,"tag":264,"props":5893,"children":5894},{"style":724},[5895],{"type":50,"value":5896},"leaveMeeting",{"type":45,"tag":264,"props":5898,"children":5899},{"style":310},[5900],{"type":50,"value":732},{"type":45,"tag":264,"props":5902,"children":5903},{"style":321},[5904],{"type":50,"value":339},{"type":45,"tag":264,"props":5906,"children":5907},{"class":266,"line":455},[5908],{"type":45,"tag":264,"props":5909,"children":5910},{"emptyLinePlaceholder":682},[5911],{"type":50,"value":685},{"type":45,"tag":264,"props":5913,"children":5914},{"class":266,"line":500},[5915],{"type":45,"tag":264,"props":5916,"children":5917},{"style":691},[5918],{"type":50,"value":5919},"\u002F\u002F End meeting (host only)\n",{"type":45,"tag":264,"props":5921,"children":5922},{"class":266,"line":545},[5923,5927,5931,5936,5940],{"type":45,"tag":264,"props":5924,"children":5925},{"style":310},[5926],{"type":50,"value":3018},{"type":45,"tag":264,"props":5928,"children":5929},{"style":321},[5930],{"type":50,"value":721},{"type":45,"tag":264,"props":5932,"children":5933},{"style":724},[5934],{"type":50,"value":5935},"endMeeting",{"type":45,"tag":264,"props":5937,"children":5938},{"style":310},[5939],{"type":50,"value":732},{"type":45,"tag":264,"props":5941,"children":5942},{"style":321},[5943],{"type":50,"value":339},{"type":45,"tag":246,"props":5945,"children":5947},{"id":5946},"screen-share",[5948],{"type":50,"value":5949},"Screen Share",{"type":45,"tag":253,"props":5951,"children":5953},{"className":292,"code":5952,"language":294,"meta":258,"style":258},"\u002F\u002F Start screen share\nawait client.startShareScreen();\n\n\u002F\u002F Stop screen share\nawait client.stopShareScreen();\n",[5954],{"type":45,"tag":84,"props":5955,"children":5956},{"__ignoreMap":258},[5957,5965,5993,6000,6008],{"type":45,"tag":264,"props":5958,"children":5959},{"class":266,"line":267},[5960],{"type":45,"tag":264,"props":5961,"children":5962},{"style":691},[5963],{"type":50,"value":5964},"\u002F\u002F Start screen share\n",{"type":45,"tag":264,"props":5966,"children":5967},{"class":266,"line":410},[5968,5972,5976,5980,5985,5989],{"type":45,"tag":264,"props":5969,"children":5970},{"style":304},[5971],{"type":50,"value":1858},{"type":45,"tag":264,"props":5973,"children":5974},{"style":310},[5975],{"type":50,"value":883},{"type":45,"tag":264,"props":5977,"children":5978},{"style":321},[5979],{"type":50,"value":721},{"type":45,"tag":264,"props":5981,"children":5982},{"style":724},[5983],{"type":50,"value":5984},"startShareScreen",{"type":45,"tag":264,"props":5986,"children":5987},{"style":310},[5988],{"type":50,"value":732},{"type":45,"tag":264,"props":5990,"children":5991},{"style":321},[5992],{"type":50,"value":339},{"type":45,"tag":264,"props":5994,"children":5995},{"class":266,"line":455},[5996],{"type":45,"tag":264,"props":5997,"children":5998},{"emptyLinePlaceholder":682},[5999],{"type":50,"value":685},{"type":45,"tag":264,"props":6001,"children":6002},{"class":266,"line":500},[6003],{"type":45,"tag":264,"props":6004,"children":6005},{"style":691},[6006],{"type":50,"value":6007},"\u002F\u002F Stop screen share\n",{"type":45,"tag":264,"props":6009,"children":6010},{"class":266,"line":545},[6011,6015,6019,6023,6028,6032],{"type":45,"tag":264,"props":6012,"children":6013},{"style":304},[6014],{"type":50,"value":1858},{"type":45,"tag":264,"props":6016,"children":6017},{"style":310},[6018],{"type":50,"value":883},{"type":45,"tag":264,"props":6020,"children":6021},{"style":321},[6022],{"type":50,"value":721},{"type":45,"tag":264,"props":6024,"children":6025},{"style":724},[6026],{"type":50,"value":6027},"stopShareScreen",{"type":45,"tag":264,"props":6029,"children":6030},{"style":310},[6031],{"type":50,"value":732},{"type":45,"tag":264,"props":6033,"children":6034},{"style":321},[6035],{"type":50,"value":339},{"type":45,"tag":246,"props":6037,"children":6039},{"id":6038},"recording",[6040],{"type":50,"value":6041},"Recording",{"type":45,"tag":253,"props":6043,"children":6045},{"className":292,"code":6044,"language":294,"meta":258,"style":258},"\u002F\u002F Start recording (cloud)\nawait client.startCloudRecording();\n\n\u002F\u002F Stop recording\nawait client.stopCloudRecording();\n",[6046],{"type":45,"tag":84,"props":6047,"children":6048},{"__ignoreMap":258},[6049,6057,6085,6092,6100],{"type":45,"tag":264,"props":6050,"children":6051},{"class":266,"line":267},[6052],{"type":45,"tag":264,"props":6053,"children":6054},{"style":691},[6055],{"type":50,"value":6056},"\u002F\u002F Start recording (cloud)\n",{"type":45,"tag":264,"props":6058,"children":6059},{"class":266,"line":410},[6060,6064,6068,6072,6077,6081],{"type":45,"tag":264,"props":6061,"children":6062},{"style":304},[6063],{"type":50,"value":1858},{"type":45,"tag":264,"props":6065,"children":6066},{"style":310},[6067],{"type":50,"value":883},{"type":45,"tag":264,"props":6069,"children":6070},{"style":321},[6071],{"type":50,"value":721},{"type":45,"tag":264,"props":6073,"children":6074},{"style":724},[6075],{"type":50,"value":6076},"startCloudRecording",{"type":45,"tag":264,"props":6078,"children":6079},{"style":310},[6080],{"type":50,"value":732},{"type":45,"tag":264,"props":6082,"children":6083},{"style":321},[6084],{"type":50,"value":339},{"type":45,"tag":264,"props":6086,"children":6087},{"class":266,"line":455},[6088],{"type":45,"tag":264,"props":6089,"children":6090},{"emptyLinePlaceholder":682},[6091],{"type":50,"value":685},{"type":45,"tag":264,"props":6093,"children":6094},{"class":266,"line":500},[6095],{"type":45,"tag":264,"props":6096,"children":6097},{"style":691},[6098],{"type":50,"value":6099},"\u002F\u002F Stop recording\n",{"type":45,"tag":264,"props":6101,"children":6102},{"class":266,"line":545},[6103,6107,6111,6115,6120,6124],{"type":45,"tag":264,"props":6104,"children":6105},{"style":304},[6106],{"type":50,"value":1858},{"type":45,"tag":264,"props":6108,"children":6109},{"style":310},[6110],{"type":50,"value":883},{"type":45,"tag":264,"props":6112,"children":6113},{"style":321},[6114],{"type":50,"value":721},{"type":45,"tag":264,"props":6116,"children":6117},{"style":724},[6118],{"type":50,"value":6119},"stopCloudRecording",{"type":45,"tag":264,"props":6121,"children":6122},{"style":310},[6123],{"type":50,"value":732},{"type":45,"tag":264,"props":6125,"children":6126},{"style":321},[6127],{"type":50,"value":339},{"type":45,"tag":246,"props":6129,"children":6131},{"id":6130},"virtual-background",[6132],{"type":50,"value":6133},"Virtual Background",{"type":45,"tag":253,"props":6135,"children":6137},{"className":292,"code":6136,"language":294,"meta":258,"style":258},"\u002F\u002F Check support\nconst isSupported = await client.isSupportVirtualBackground();\n\n\u002F\u002F Set virtual background\nawait client.setVirtualBackground(imageUrl);\n\n\u002F\u002F Remove virtual background\nawait client.removeVirtualBackground();\n",[6138],{"type":45,"tag":84,"props":6139,"children":6140},{"__ignoreMap":258},[6141,6149,6191,6198,6206,6235,6242,6250],{"type":45,"tag":264,"props":6142,"children":6143},{"class":266,"line":267},[6144],{"type":45,"tag":264,"props":6145,"children":6146},{"style":691},[6147],{"type":50,"value":6148},"\u002F\u002F Check support\n",{"type":45,"tag":264,"props":6150,"children":6151},{"class":266,"line":410},[6152,6156,6161,6165,6170,6174,6178,6183,6187],{"type":45,"tag":264,"props":6153,"children":6154},{"style":371},[6155],{"type":50,"value":702},{"type":45,"tag":264,"props":6157,"children":6158},{"style":310},[6159],{"type":50,"value":6160}," isSupported ",{"type":45,"tag":264,"props":6162,"children":6163},{"style":321},[6164],{"type":50,"value":379},{"type":45,"tag":264,"props":6166,"children":6167},{"style":304},[6168],{"type":50,"value":6169}," await",{"type":45,"tag":264,"props":6171,"children":6172},{"style":310},[6173],{"type":50,"value":883},{"type":45,"tag":264,"props":6175,"children":6176},{"style":321},[6177],{"type":50,"value":721},{"type":45,"tag":264,"props":6179,"children":6180},{"style":724},[6181],{"type":50,"value":6182},"isSupportVirtualBackground",{"type":45,"tag":264,"props":6184,"children":6185},{"style":310},[6186],{"type":50,"value":732},{"type":45,"tag":264,"props":6188,"children":6189},{"style":321},[6190],{"type":50,"value":339},{"type":45,"tag":264,"props":6192,"children":6193},{"class":266,"line":455},[6194],{"type":45,"tag":264,"props":6195,"children":6196},{"emptyLinePlaceholder":682},[6197],{"type":50,"value":685},{"type":45,"tag":264,"props":6199,"children":6200},{"class":266,"line":500},[6201],{"type":45,"tag":264,"props":6202,"children":6203},{"style":691},[6204],{"type":50,"value":6205},"\u002F\u002F Set virtual background\n",{"type":45,"tag":264,"props":6207,"children":6208},{"class":266,"line":545},[6209,6213,6217,6221,6226,6231],{"type":45,"tag":264,"props":6210,"children":6211},{"style":304},[6212],{"type":50,"value":1858},{"type":45,"tag":264,"props":6214,"children":6215},{"style":310},[6216],{"type":50,"value":883},{"type":45,"tag":264,"props":6218,"children":6219},{"style":321},[6220],{"type":50,"value":721},{"type":45,"tag":264,"props":6222,"children":6223},{"style":724},[6224],{"type":50,"value":6225},"setVirtualBackground",{"type":45,"tag":264,"props":6227,"children":6228},{"style":310},[6229],{"type":50,"value":6230},"(imageUrl)",{"type":45,"tag":264,"props":6232,"children":6233},{"style":321},[6234],{"type":50,"value":339},{"type":45,"tag":264,"props":6236,"children":6237},{"class":266,"line":590},[6238],{"type":45,"tag":264,"props":6239,"children":6240},{"emptyLinePlaceholder":682},[6241],{"type":50,"value":685},{"type":45,"tag":264,"props":6243,"children":6244},{"class":266,"line":773},[6245],{"type":45,"tag":264,"props":6246,"children":6247},{"style":691},[6248],{"type":50,"value":6249},"\u002F\u002F Remove virtual background\n",{"type":45,"tag":264,"props":6251,"children":6252},{"class":266,"line":786},[6253,6257,6261,6265,6270,6274],{"type":45,"tag":264,"props":6254,"children":6255},{"style":304},[6256],{"type":50,"value":1858},{"type":45,"tag":264,"props":6258,"children":6259},{"style":310},[6260],{"type":50,"value":883},{"type":45,"tag":264,"props":6262,"children":6263},{"style":321},[6264],{"type":50,"value":721},{"type":45,"tag":264,"props":6266,"children":6267},{"style":724},[6268],{"type":50,"value":6269},"removeVirtualBackground",{"type":45,"tag":264,"props":6271,"children":6272},{"style":310},[6273],{"type":50,"value":732},{"type":45,"tag":264,"props":6275,"children":6276},{"style":321},[6277],{"type":50,"value":339},{"type":45,"tag":246,"props":6279,"children":6281},{"id":6280},"rename",[6282],{"type":50,"value":6283},"Rename",{"type":45,"tag":253,"props":6285,"children":6287},{"className":292,"code":6286,"language":294,"meta":258,"style":258},"\u002F\u002F Rename user\nawait client.rename(userId, 'New Name');\n",[6288],{"type":45,"tag":84,"props":6289,"children":6290},{"__ignoreMap":258},[6291,6299],{"type":45,"tag":264,"props":6292,"children":6293},{"class":266,"line":267},[6294],{"type":45,"tag":264,"props":6295,"children":6296},{"style":691},[6297],{"type":50,"value":6298},"\u002F\u002F Rename user\n",{"type":45,"tag":264,"props":6300,"children":6301},{"class":266,"line":410},[6302,6306,6310,6314,6318,6322,6326,6330,6335,6339,6343],{"type":45,"tag":264,"props":6303,"children":6304},{"style":304},[6305],{"type":50,"value":1858},{"type":45,"tag":264,"props":6307,"children":6308},{"style":310},[6309],{"type":50,"value":883},{"type":45,"tag":264,"props":6311,"children":6312},{"style":321},[6313],{"type":50,"value":721},{"type":45,"tag":264,"props":6315,"children":6316},{"style":724},[6317],{"type":50,"value":6280},{"type":45,"tag":264,"props":6319,"children":6320},{"style":310},[6321],{"type":50,"value":5660},{"type":45,"tag":264,"props":6323,"children":6324},{"style":321},[6325],{"type":50,"value":1193},{"type":45,"tag":264,"props":6327,"children":6328},{"style":321},[6329],{"type":50,"value":324},{"type":45,"tag":264,"props":6331,"children":6332},{"style":276},[6333],{"type":50,"value":6334},"New Name",{"type":45,"tag":264,"props":6336,"children":6337},{"style":321},[6338],{"type":50,"value":334},{"type":45,"tag":264,"props":6340,"children":6341},{"style":310},[6342],{"type":50,"value":848},{"type":45,"tag":264,"props":6344,"children":6345},{"style":321},[6346],{"type":50,"value":339},{"type":45,"tag":72,"props":6348,"children":6350},{"id":6349},"react-integration",[6351],{"type":50,"value":6352},"React Integration",{"type":45,"tag":246,"props":6354,"children":6356},{"id":6355},"basic-pattern",[6357],{"type":50,"value":6358},"Basic Pattern",{"type":45,"tag":253,"props":6360,"children":6364},{"className":6361,"code":6362,"language":6363,"meta":258,"style":258},"language-tsx shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","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 [isJoined, setIsJoined] = 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    try {\n      \u002F\u002F Get signature from backend\n      const { signature, sdkKey } = await fetchSignature(meetingNumber);\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\n      setIsJoined(true);\n    } catch (err) {\n      setError(err instanceof Error ? err.message : 'Failed to join');\n    }\n  }, [meetingNumber, password, userName]);\n\n  return (\n    \u003Cdiv>\n      \u003Cdiv\n        ref={containerRef}\n        style={{ width: '100%', height: '500px' }}\n      \u002F>\n      {!isJoined && (\n        \u003Cbutton onClick={joinMeeting}>Join Meeting\u003C\u002Fbutton>\n      )}\n      {error && \u003Cdiv className=\"error\">{error}\u003C\u002Fdiv>}\n    \u003C\u002Fdiv>\n  );\n}\n","tsx",[6365],{"type":45,"tag":84,"props":6366,"children":6367},{"__ignoreMap":258},[6368,6438,6469,6476,6520,6527,6583,6645,6694,6749,6821,6828,6836,6860,6899,6939,6946,6963,6970,7009,7072,7079,7091,7099,7156,7163,7199,7227,7255,7275,7295,7311,7318,7353,7365,7377,7389,7401,7413,7428,7435,7459,7487,7558,7565,7605,7612,7625,7642,7655,7676,7742,7750,7772,7823,7836,7907,7924,7937],{"type":45,"tag":264,"props":6369,"children":6370},{"class":266,"line":267},[6371,6375,6380,6385,6389,6394,6398,6403,6407,6412,6417,6422,6426,6430,6434],{"type":45,"tag":264,"props":6372,"children":6373},{"style":304},[6374],{"type":50,"value":307},{"type":45,"tag":264,"props":6376,"children":6377},{"style":321},[6378],{"type":50,"value":6379}," {",{"type":45,"tag":264,"props":6381,"children":6382},{"style":310},[6383],{"type":50,"value":6384}," useEffect",{"type":45,"tag":264,"props":6386,"children":6387},{"style":321},[6388],{"type":50,"value":1193},{"type":45,"tag":264,"props":6390,"children":6391},{"style":310},[6392],{"type":50,"value":6393}," useRef",{"type":45,"tag":264,"props":6395,"children":6396},{"style":321},[6397],{"type":50,"value":1193},{"type":45,"tag":264,"props":6399,"children":6400},{"style":310},[6401],{"type":50,"value":6402}," useState",{"type":45,"tag":264,"props":6404,"children":6405},{"style":321},[6406],{"type":50,"value":1193},{"type":45,"tag":264,"props":6408,"children":6409},{"style":310},[6410],{"type":50,"value":6411}," useCallback",{"type":45,"tag":264,"props":6413,"children":6414},{"style":321},[6415],{"type":50,"value":6416}," }",{"type":45,"tag":264,"props":6418,"children":6419},{"style":304},[6420],{"type":50,"value":6421}," from",{"type":45,"tag":264,"props":6423,"children":6424},{"style":321},[6425],{"type":50,"value":324},{"type":45,"tag":264,"props":6427,"children":6428},{"style":276},[6429],{"type":50,"value":18},{"type":45,"tag":264,"props":6431,"children":6432},{"style":321},[6433],{"type":50,"value":334},{"type":45,"tag":264,"props":6435,"children":6436},{"style":321},[6437],{"type":50,"value":339},{"type":45,"tag":264,"props":6439,"children":6440},{"class":266,"line":410},[6441,6445,6449,6453,6457,6461,6465],{"type":45,"tag":264,"props":6442,"children":6443},{"style":304},[6444],{"type":50,"value":307},{"type":45,"tag":264,"props":6446,"children":6447},{"style":310},[6448],{"type":50,"value":313},{"type":45,"tag":264,"props":6450,"children":6451},{"style":304},[6452],{"type":50,"value":318},{"type":45,"tag":264,"props":6454,"children":6455},{"style":321},[6456],{"type":50,"value":324},{"type":45,"tag":264,"props":6458,"children":6459},{"style":276},[6460],{"type":50,"value":329},{"type":45,"tag":264,"props":6462,"children":6463},{"style":321},[6464],{"type":50,"value":334},{"type":45,"tag":264,"props":6466,"children":6467},{"style":321},[6468],{"type":50,"value":339},{"type":45,"tag":264,"props":6470,"children":6471},{"class":266,"line":455},[6472],{"type":45,"tag":264,"props":6473,"children":6474},{"emptyLinePlaceholder":682},[6475],{"type":50,"value":685},{"type":45,"tag":264,"props":6477,"children":6478},{"class":266,"line":500},[6479,6484,6489,6493,6498,6503,6507,6511,6515],{"type":45,"tag":264,"props":6480,"children":6481},{"style":371},[6482],{"type":50,"value":6483},"type",{"type":45,"tag":264,"props":6485,"children":6486},{"style":271},[6487],{"type":50,"value":6488}," ZoomClient",{"type":45,"tag":264,"props":6490,"children":6491},{"style":321},[6492],{"type":50,"value":811},{"type":45,"tag":264,"props":6494,"children":6495},{"style":271},[6496],{"type":50,"value":6497}," ReturnType",{"type":45,"tag":264,"props":6499,"children":6500},{"style":321},[6501],{"type":50,"value":6502},"\u003Ctypeof",{"type":45,"tag":264,"props":6504,"children":6505},{"style":310},[6506],{"type":50,"value":716},{"type":45,"tag":264,"props":6508,"children":6509},{"style":321},[6510],{"type":50,"value":721},{"type":45,"tag":264,"props":6512,"children":6513},{"style":310},[6514],{"type":50,"value":727},{"type":45,"tag":264,"props":6516,"children":6517},{"style":321},[6518],{"type":50,"value":6519},">;\n",{"type":45,"tag":264,"props":6521,"children":6522},{"class":266,"line":545},[6523],{"type":45,"tag":264,"props":6524,"children":6525},{"emptyLinePlaceholder":682},[6526],{"type":50,"value":685},{"type":45,"tag":264,"props":6528,"children":6529},{"class":266,"line":590},[6530,6535,6540,6545,6549,6553,6557,6561,6565,6570,6575,6579],{"type":45,"tag":264,"props":6531,"children":6532},{"style":371},[6533],{"type":50,"value":6534},"function",{"type":45,"tag":264,"props":6536,"children":6537},{"style":724},[6538],{"type":50,"value":6539}," ZoomMeeting",{"type":45,"tag":264,"props":6541,"children":6542},{"style":321},[6543],{"type":50,"value":6544},"({",{"type":45,"tag":264,"props":6546,"children":6547},{"style":3172},[6548],{"type":50,"value":1144},{"type":45,"tag":264,"props":6550,"children":6551},{"style":321},[6552],{"type":50,"value":1193},{"type":45,"tag":264,"props":6554,"children":6555},{"style":3172},[6556],{"type":50,"value":1188},{"type":45,"tag":264,"props":6558,"children":6559},{"style":321},[6560],{"type":50,"value":1193},{"type":45,"tag":264,"props":6562,"children":6563},{"style":3172},[6564],{"type":50,"value":1166},{"type":45,"tag":264,"props":6566,"children":6567},{"style":321},[6568],{"type":50,"value":6569}," }:",{"type":45,"tag":264,"props":6571,"children":6572},{"style":271},[6573],{"type":50,"value":6574}," Props",{"type":45,"tag":264,"props":6576,"children":6577},{"style":321},[6578],{"type":50,"value":848},{"type":45,"tag":264,"props":6580,"children":6581},{"style":321},[6582],{"type":50,"value":770},{"type":45,"tag":264,"props":6584,"children":6585},{"class":266,"line":773},[6586,6591,6596,6600,6604,6608,6613,6618,6623,6628,6632,6637,6641],{"type":45,"tag":264,"props":6587,"children":6588},{"style":371},[6589],{"type":50,"value":6590},"  const",{"type":45,"tag":264,"props":6592,"children":6593},{"style":310},[6594],{"type":50,"value":6595}," clientRef",{"type":45,"tag":264,"props":6597,"children":6598},{"style":321},[6599],{"type":50,"value":811},{"type":45,"tag":264,"props":6601,"children":6602},{"style":724},[6603],{"type":50,"value":6393},{"type":45,"tag":264,"props":6605,"children":6606},{"style":321},[6607],{"type":50,"value":362},{"type":45,"tag":264,"props":6609,"children":6610},{"style":271},[6611],{"type":50,"value":6612},"ZoomClient",{"type":45,"tag":264,"props":6614,"children":6615},{"style":321},[6616],{"type":50,"value":6617}," |",{"type":45,"tag":264,"props":6619,"children":6620},{"style":271},[6621],{"type":50,"value":6622}," null",{"type":45,"tag":264,"props":6624,"children":6625},{"style":321},[6626],{"type":50,"value":6627},">",{"type":45,"tag":264,"props":6629,"children":6630},{"style":365},[6631],{"type":50,"value":830},{"type":45,"tag":264,"props":6633,"children":6634},{"style":321},[6635],{"type":50,"value":6636},"null",{"type":45,"tag":264,"props":6638,"children":6639},{"style":365},[6640],{"type":50,"value":848},{"type":45,"tag":264,"props":6642,"children":6643},{"style":321},[6644],{"type":50,"value":339},{"type":45,"tag":264,"props":6646,"children":6647},{"class":266,"line":786},[6648,6652,6657,6661,6665,6669,6674,6678,6682,6686,6690],{"type":45,"tag":264,"props":6649,"children":6650},{"style":371},[6651],{"type":50,"value":6590},{"type":45,"tag":264,"props":6653,"children":6654},{"style":310},[6655],{"type":50,"value":6656}," containerRef",{"type":45,"tag":264,"props":6658,"children":6659},{"style":321},[6660],{"type":50,"value":811},{"type":45,"tag":264,"props":6662,"children":6663},{"style":724},[6664],{"type":50,"value":6393},{"type":45,"tag":264,"props":6666,"children":6667},{"style":321},[6668],{"type":50,"value":362},{"type":45,"tag":264,"props":6670,"children":6671},{"style":271},[6672],{"type":50,"value":6673},"HTMLDivElement",{"type":45,"tag":264,"props":6675,"children":6676},{"style":321},[6677],{"type":50,"value":6627},{"type":45,"tag":264,"props":6679,"children":6680},{"style":365},[6681],{"type":50,"value":830},{"type":45,"tag":264,"props":6683,"children":6684},{"style":321},[6685],{"type":50,"value":6636},{"type":45,"tag":264,"props":6687,"children":6688},{"style":365},[6689],{"type":50,"value":848},{"type":45,"tag":264,"props":6691,"children":6692},{"style":321},[6693],{"type":50,"value":339},{"type":45,"tag":264,"props":6695,"children":6696},{"class":266,"line":795},[6697,6701,6706,6711,6715,6720,6725,6729,6733,6737,6741,6745],{"type":45,"tag":264,"props":6698,"children":6699},{"style":371},[6700],{"type":50,"value":6590},{"type":45,"tag":264,"props":6702,"children":6703},{"style":321},[6704],{"type":50,"value":6705}," [",{"type":45,"tag":264,"props":6707,"children":6708},{"style":310},[6709],{"type":50,"value":6710},"isJoined",{"type":45,"tag":264,"props":6712,"children":6713},{"style":321},[6714],{"type":50,"value":1193},{"type":45,"tag":264,"props":6716,"children":6717},{"style":310},[6718],{"type":50,"value":6719}," setIsJoined",{"type":45,"tag":264,"props":6721,"children":6722},{"style":321},[6723],{"type":50,"value":6724},"]",{"type":45,"tag":264,"props":6726,"children":6727},{"style":321},[6728],{"type":50,"value":811},{"type":45,"tag":264,"props":6730,"children":6731},{"style":724},[6732],{"type":50,"value":6402},{"type":45,"tag":264,"props":6734,"children":6735},{"style":365},[6736],{"type":50,"value":830},{"type":45,"tag":264,"props":6738,"children":6739},{"style":970},[6740],{"type":50,"value":1553},{"type":45,"tag":264,"props":6742,"children":6743},{"style":365},[6744],{"type":50,"value":848},{"type":45,"tag":264,"props":6746,"children":6747},{"style":321},[6748],{"type":50,"value":339},{"type":45,"tag":264,"props":6750,"children":6751},{"class":266,"line":855},[6752,6756,6760,6764,6768,6773,6777,6781,6785,6789,6793,6797,6801,6805,6809,6813,6817],{"type":45,"tag":264,"props":6753,"children":6754},{"style":371},[6755],{"type":50,"value":6590},{"type":45,"tag":264,"props":6757,"children":6758},{"style":321},[6759],{"type":50,"value":6705},{"type":45,"tag":264,"props":6761,"children":6762},{"style":310},[6763],{"type":50,"value":1311},{"type":45,"tag":264,"props":6765,"children":6766},{"style":321},[6767],{"type":50,"value":1193},{"type":45,"tag":264,"props":6769,"children":6770},{"style":310},[6771],{"type":50,"value":6772}," setError",{"type":45,"tag":264,"props":6774,"children":6775},{"style":321},[6776],{"type":50,"value":6724},{"type":45,"tag":264,"props":6778,"children":6779},{"style":321},[6780],{"type":50,"value":811},{"type":45,"tag":264,"props":6782,"children":6783},{"style":724},[6784],{"type":50,"value":6402},{"type":45,"tag":264,"props":6786,"children":6787},{"style":321},[6788],{"type":50,"value":362},{"type":45,"tag":264,"props":6790,"children":6791},{"style":271},[6792],{"type":50,"value":1509},{"type":45,"tag":264,"props":6794,"children":6795},{"style":321},[6796],{"type":50,"value":6617},{"type":45,"tag":264,"props":6798,"children":6799},{"style":271},[6800],{"type":50,"value":6622},{"type":45,"tag":264,"props":6802,"children":6803},{"style":321},[6804],{"type":50,"value":6627},{"type":45,"tag":264,"props":6806,"children":6807},{"style":365},[6808],{"type":50,"value":830},{"type":45,"tag":264,"props":6810,"children":6811},{"style":321},[6812],{"type":50,"value":6636},{"type":45,"tag":264,"props":6814,"children":6815},{"style":365},[6816],{"type":50,"value":848},{"type":45,"tag":264,"props":6818,"children":6819},{"style":321},[6820],{"type":50,"value":339},{"type":45,"tag":264,"props":6822,"children":6823},{"class":266,"line":863},[6824],{"type":45,"tag":264,"props":6825,"children":6826},{"emptyLinePlaceholder":682},[6827],{"type":50,"value":685},{"type":45,"tag":264,"props":6829,"children":6830},{"class":266,"line":872},[6831],{"type":45,"tag":264,"props":6832,"children":6833},{"style":691},[6834],{"type":50,"value":6835},"  \u002F\u002F Create client once\n",{"type":45,"tag":264,"props":6837,"children":6838},{"class":266,"line":904},[6839,6844,6848,6852,6856],{"type":45,"tag":264,"props":6840,"children":6841},{"style":724},[6842],{"type":50,"value":6843},"  useEffect",{"type":45,"tag":264,"props":6845,"children":6846},{"style":365},[6847],{"type":50,"value":830},{"type":45,"tag":264,"props":6849,"children":6850},{"style":321},[6851],{"type":50,"value":732},{"type":45,"tag":264,"props":6853,"children":6854},{"style":371},[6855],{"type":50,"value":2519},{"type":45,"tag":264,"props":6857,"children":6858},{"style":321},[6859],{"type":50,"value":770},{"type":45,"tag":264,"props":6861,"children":6862},{"class":266,"line":927},[6863,6868,6872,6877,6882,6886,6891,6895],{"type":45,"tag":264,"props":6864,"children":6865},{"style":304},[6866],{"type":50,"value":6867},"    if",{"type":45,"tag":264,"props":6869,"children":6870},{"style":365},[6871],{"type":50,"value":1306},{"type":45,"tag":264,"props":6873,"children":6874},{"style":321},[6875],{"type":50,"value":6876},"!",{"type":45,"tag":264,"props":6878,"children":6879},{"style":310},[6880],{"type":50,"value":6881},"clientRef",{"type":45,"tag":264,"props":6883,"children":6884},{"style":321},[6885],{"type":50,"value":721},{"type":45,"tag":264,"props":6887,"children":6888},{"style":310},[6889],{"type":50,"value":6890},"current",{"type":45,"tag":264,"props":6892,"children":6893},{"style":365},[6894],{"type":50,"value":1316},{"type":45,"tag":264,"props":6896,"children":6897},{"style":321},[6898],{"type":50,"value":901},{"type":45,"tag":264,"props":6900,"children":6901},{"class":266,"line":957},[6902,6907,6911,6915,6919,6923,6927,6931,6935],{"type":45,"tag":264,"props":6903,"children":6904},{"style":310},[6905],{"type":50,"value":6906},"      clientRef",{"type":45,"tag":264,"props":6908,"children":6909},{"style":321},[6910],{"type":50,"value":721},{"type":45,"tag":264,"props":6912,"children":6913},{"style":310},[6914],{"type":50,"value":6890},{"type":45,"tag":264,"props":6916,"children":6917},{"style":321},[6918],{"type":50,"value":811},{"type":45,"tag":264,"props":6920,"children":6921},{"style":310},[6922],{"type":50,"value":716},{"type":45,"tag":264,"props":6924,"children":6925},{"style":321},[6926],{"type":50,"value":721},{"type":45,"tag":264,"props":6928,"children":6929},{"style":724},[6930],{"type":50,"value":727},{"type":45,"tag":264,"props":6932,"children":6933},{"style":365},[6934],{"type":50,"value":732},{"type":45,"tag":264,"props":6936,"children":6937},{"style":321},[6938],{"type":50,"value":339},{"type":45,"tag":264,"props":6940,"children":6941},{"class":266,"line":980},[6942],{"type":45,"tag":264,"props":6943,"children":6944},{"style":321},[6945],{"type":50,"value":2668},{"type":45,"tag":264,"props":6947,"children":6948},{"class":266,"line":1001},[6949,6954,6959],{"type":45,"tag":264,"props":6950,"children":6951},{"style":321},[6952],{"type":50,"value":6953},"  },",{"type":45,"tag":264,"props":6955,"children":6956},{"style":365},[6957],{"type":50,"value":6958}," [])",{"type":45,"tag":264,"props":6960,"children":6961},{"style":321},[6962],{"type":50,"value":339},{"type":45,"tag":264,"props":6964,"children":6965},{"class":266,"line":1022},[6966],{"type":45,"tag":264,"props":6967,"children":6968},{"emptyLinePlaceholder":682},[6969],{"type":50,"value":685},{"type":45,"tag":264,"props":6971,"children":6972},{"class":266,"line":1039},[6973,6977,6981,6985,6989,6993,6997,7001,7005],{"type":45,"tag":264,"props":6974,"children":6975},{"style":371},[6976],{"type":50,"value":6590},{"type":45,"tag":264,"props":6978,"children":6979},{"style":310},[6980],{"type":50,"value":761},{"type":45,"tag":264,"props":6982,"children":6983},{"style":321},[6984],{"type":50,"value":811},{"type":45,"tag":264,"props":6986,"children":6987},{"style":724},[6988],{"type":50,"value":6411},{"type":45,"tag":264,"props":6990,"children":6991},{"style":365},[6992],{"type":50,"value":830},{"type":45,"tag":264,"props":6994,"children":6995},{"style":371},[6996],{"type":50,"value":751},{"type":45,"tag":264,"props":6998,"children":6999},{"style":321},[7000],{"type":50,"value":2514},{"type":45,"tag":264,"props":7002,"children":7003},{"style":371},[7004],{"type":50,"value":2519},{"type":45,"tag":264,"props":7006,"children":7007},{"style":321},[7008],{"type":50,"value":770},{"type":45,"tag":264,"props":7010,"children":7011},{"class":266,"line":1047},[7012,7016,7020,7024,7028,7032,7036,7041,7046,7051,7055,7059,7063,7068],{"type":45,"tag":264,"props":7013,"children":7014},{"style":304},[7015],{"type":50,"value":6867},{"type":45,"tag":264,"props":7017,"children":7018},{"style":365},[7019],{"type":50,"value":1306},{"type":45,"tag":264,"props":7021,"children":7022},{"style":321},[7023],{"type":50,"value":6876},{"type":45,"tag":264,"props":7025,"children":7026},{"style":310},[7027],{"type":50,"value":6881},{"type":45,"tag":264,"props":7029,"children":7030},{"style":321},[7031],{"type":50,"value":721},{"type":45,"tag":264,"props":7033,"children":7034},{"style":310},[7035],{"type":50,"value":6890},{"type":45,"tag":264,"props":7037,"children":7038},{"style":321},[7039],{"type":50,"value":7040}," ||",{"type":45,"tag":264,"props":7042,"children":7043},{"style":321},[7044],{"type":50,"value":7045}," !",{"type":45,"tag":264,"props":7047,"children":7048},{"style":310},[7049],{"type":50,"value":7050},"containerRef",{"type":45,"tag":264,"props":7052,"children":7053},{"style":321},[7054],{"type":50,"value":721},{"type":45,"tag":264,"props":7056,"children":7057},{"style":310},[7058],{"type":50,"value":6890},{"type":45,"tag":264,"props":7060,"children":7061},{"style":365},[7062],{"type":50,"value":1316},{"type":45,"tag":264,"props":7064,"children":7065},{"style":304},[7066],{"type":50,"value":7067},"return",{"type":45,"tag":264,"props":7069,"children":7070},{"style":321},[7071],{"type":50,"value":339},{"type":45,"tag":264,"props":7073,"children":7074},{"class":266,"line":1056},[7075],{"type":45,"tag":264,"props":7076,"children":7077},{"emptyLinePlaceholder":682},[7078],{"type":50,"value":685},{"type":45,"tag":264,"props":7080,"children":7081},{"class":266,"line":1085},[7082,7087],{"type":45,"tag":264,"props":7083,"children":7084},{"style":304},[7085],{"type":50,"value":7086},"    try",{"type":45,"tag":264,"props":7088,"children":7089},{"style":321},[7090],{"type":50,"value":770},{"type":45,"tag":264,"props":7092,"children":7093},{"class":266,"line":1107},[7094],{"type":45,"tag":264,"props":7095,"children":7096},{"style":691},[7097],{"type":50,"value":7098},"      \u002F\u002F Get signature from backend\n",{"type":45,"tag":264,"props":7100,"children":7101},{"class":266,"line":1129},[7102,7107,7111,7115,7119,7123,7127,7131,7135,7140,7144,7148,7152],{"type":45,"tag":264,"props":7103,"children":7104},{"style":371},[7105],{"type":50,"value":7106},"      const",{"type":45,"tag":264,"props":7108,"children":7109},{"style":321},[7110],{"type":50,"value":6379},{"type":45,"tag":264,"props":7112,"children":7113},{"style":310},[7114],{"type":50,"value":1100},{"type":45,"tag":264,"props":7116,"children":7117},{"style":321},[7118],{"type":50,"value":1193},{"type":45,"tag":264,"props":7120,"children":7121},{"style":310},[7122],{"type":50,"value":1122},{"type":45,"tag":264,"props":7124,"children":7125},{"style":321},[7126],{"type":50,"value":6416},{"type":45,"tag":264,"props":7128,"children":7129},{"style":321},[7130],{"type":50,"value":811},{"type":45,"tag":264,"props":7132,"children":7133},{"style":304},[7134],{"type":50,"value":6169},{"type":45,"tag":264,"props":7136,"children":7137},{"style":724},[7138],{"type":50,"value":7139}," fetchSignature",{"type":45,"tag":264,"props":7141,"children":7142},{"style":365},[7143],{"type":50,"value":830},{"type":45,"tag":264,"props":7145,"children":7146},{"style":310},[7147],{"type":50,"value":2790},{"type":45,"tag":264,"props":7149,"children":7150},{"style":365},[7151],{"type":50,"value":848},{"type":45,"tag":264,"props":7153,"children":7154},{"style":321},[7155],{"type":50,"value":339},{"type":45,"tag":264,"props":7157,"children":7158},{"class":266,"line":1151},[7159],{"type":45,"tag":264,"props":7160,"children":7161},{"emptyLinePlaceholder":682},[7162],{"type":50,"value":685},{"type":45,"tag":264,"props":7164,"children":7165},{"class":266,"line":1173},[7166,7171,7175,7179,7183,7187,7191,7195],{"type":45,"tag":264,"props":7167,"children":7168},{"style":304},[7169],{"type":50,"value":7170},"      await",{"type":45,"tag":264,"props":7172,"children":7173},{"style":310},[7174],{"type":50,"value":6595},{"type":45,"tag":264,"props":7176,"children":7177},{"style":321},[7178],{"type":50,"value":721},{"type":45,"tag":264,"props":7180,"children":7181},{"style":310},[7182],{"type":50,"value":6890},{"type":45,"tag":264,"props":7184,"children":7185},{"style":321},[7186],{"type":50,"value":721},{"type":45,"tag":264,"props":7188,"children":7189},{"style":724},[7190],{"type":50,"value":892},{"type":45,"tag":264,"props":7192,"children":7193},{"style":365},[7194],{"type":50,"value":830},{"type":45,"tag":264,"props":7196,"children":7197},{"style":321},[7198],{"type":50,"value":901},{"type":45,"tag":264,"props":7200,"children":7201},{"class":266,"line":1201},[7202,7207,7211,7215,7219,7223],{"type":45,"tag":264,"props":7203,"children":7204},{"style":365},[7205],{"type":50,"value":7206},"        zoomAppRoot",{"type":45,"tag":264,"props":7208,"children":7209},{"style":321},[7210],{"type":50,"value":915},{"type":45,"tag":264,"props":7212,"children":7213},{"style":310},[7214],{"type":50,"value":6656},{"type":45,"tag":264,"props":7216,"children":7217},{"style":321},[7218],{"type":50,"value":721},{"type":45,"tag":264,"props":7220,"children":7221},{"style":310},[7222],{"type":50,"value":6890},{"type":45,"tag":264,"props":7224,"children":7225},{"style":321},[7226],{"type":50,"value":924},{"type":45,"tag":264,"props":7228,"children":7229},{"class":266,"line":1223},[7230,7235,7239,7243,7247,7251],{"type":45,"tag":264,"props":7231,"children":7232},{"style":365},[7233],{"type":50,"value":7234},"        language",{"type":45,"tag":264,"props":7236,"children":7237},{"style":321},[7238],{"type":50,"value":915},{"type":45,"tag":264,"props":7240,"children":7241},{"style":321},[7242],{"type":50,"value":324},{"type":45,"tag":264,"props":7244,"children":7245},{"style":276},[7246],{"type":50,"value":946},{"type":45,"tag":264,"props":7248,"children":7249},{"style":321},[7250],{"type":50,"value":334},{"type":45,"tag":264,"props":7252,"children":7253},{"style":321},[7254],{"type":50,"value":924},{"type":45,"tag":264,"props":7256,"children":7257},{"class":266,"line":1239},[7258,7263,7267,7271],{"type":45,"tag":264,"props":7259,"children":7260},{"style":365},[7261],{"type":50,"value":7262},"        patchJsMedia",{"type":45,"tag":264,"props":7264,"children":7265},{"style":321},[7266],{"type":50,"value":915},{"type":45,"tag":264,"props":7268,"children":7269},{"style":970},[7270],{"type":50,"value":973},{"type":45,"tag":264,"props":7272,"children":7273},{"style":321},[7274],{"type":50,"value":924},{"type":45,"tag":264,"props":7276,"children":7277},{"class":266,"line":1247},[7278,7283,7287,7291],{"type":45,"tag":264,"props":7279,"children":7280},{"style":365},[7281],{"type":50,"value":7282},"        leaveOnPageUnload",{"type":45,"tag":264,"props":7284,"children":7285},{"style":321},[7286],{"type":50,"value":915},{"type":45,"tag":264,"props":7288,"children":7289},{"style":970},[7290],{"type":50,"value":973},{"type":45,"tag":264,"props":7292,"children":7293},{"style":321},[7294],{"type":50,"value":924},{"type":45,"tag":264,"props":7296,"children":7297},{"class":266,"line":1290},[7298,7303,7307],{"type":45,"tag":264,"props":7299,"children":7300},{"style":321},[7301],{"type":50,"value":7302},"      }",{"type":45,"tag":264,"props":7304,"children":7305},{"style":365},[7306],{"type":50,"value":848},{"type":45,"tag":264,"props":7308,"children":7309},{"style":321},[7310],{"type":50,"value":339},{"type":45,"tag":264,"props":7312,"children":7313},{"class":266,"line":1323},[7314],{"type":45,"tag":264,"props":7315,"children":7316},{"emptyLinePlaceholder":682},[7317],{"type":50,"value":685},{"type":45,"tag":264,"props":7319,"children":7320},{"class":266,"line":1373},[7321,7325,7329,7333,7337,7341,7345,7349],{"type":45,"tag":264,"props":7322,"children":7323},{"style":304},[7324],{"type":50,"value":7170},{"type":45,"tag":264,"props":7326,"children":7327},{"style":310},[7328],{"type":50,"value":6595},{"type":45,"tag":264,"props":7330,"children":7331},{"style":321},[7332],{"type":50,"value":721},{"type":45,"tag":264,"props":7334,"children":7335},{"style":310},[7336],{"type":50,"value":6890},{"type":45,"tag":264,"props":7338,"children":7339},{"style":321},[7340],{"type":50,"value":721},{"type":45,"tag":264,"props":7342,"children":7343},{"style":724},[7344],{"type":50,"value":1074},{"type":45,"tag":264,"props":7346,"children":7347},{"style":365},[7348],{"type":50,"value":830},{"type":45,"tag":264,"props":7350,"children":7351},{"style":321},[7352],{"type":50,"value":901},{"type":45,"tag":264,"props":7354,"children":7355},{"class":266,"line":1382},[7356,7361],{"type":45,"tag":264,"props":7357,"children":7358},{"style":310},[7359],{"type":50,"value":7360},"        signature",{"type":45,"tag":264,"props":7362,"children":7363},{"style":321},[7364],{"type":50,"value":924},{"type":45,"tag":264,"props":7366,"children":7367},{"class":266,"line":2387},[7368,7373],{"type":45,"tag":264,"props":7369,"children":7370},{"style":310},[7371],{"type":50,"value":7372},"        sdkKey",{"type":45,"tag":264,"props":7374,"children":7375},{"style":321},[7376],{"type":50,"value":924},{"type":45,"tag":264,"props":7378,"children":7379},{"class":266,"line":2396},[7380,7385],{"type":45,"tag":264,"props":7381,"children":7382},{"style":310},[7383],{"type":50,"value":7384},"        meetingNumber",{"type":45,"tag":264,"props":7386,"children":7387},{"style":321},[7388],{"type":50,"value":924},{"type":45,"tag":264,"props":7390,"children":7391},{"class":266,"line":2413},[7392,7397],{"type":45,"tag":264,"props":7393,"children":7394},{"style":310},[7395],{"type":50,"value":7396},"        password",{"type":45,"tag":264,"props":7398,"children":7399},{"style":321},[7400],{"type":50,"value":924},{"type":45,"tag":264,"props":7402,"children":7403},{"class":266,"line":2430},[7404,7409],{"type":45,"tag":264,"props":7405,"children":7406},{"style":310},[7407],{"type":50,"value":7408},"        userName",{"type":45,"tag":264,"props":7410,"children":7411},{"style":321},[7412],{"type":50,"value":924},{"type":45,"tag":264,"props":7414,"children":7415},{"class":266,"line":2439},[7416,7420,7424],{"type":45,"tag":264,"props":7417,"children":7418},{"style":321},[7419],{"type":50,"value":7302},{"type":45,"tag":264,"props":7421,"children":7422},{"style":365},[7423],{"type":50,"value":848},{"type":45,"tag":264,"props":7425,"children":7426},{"style":321},[7427],{"type":50,"value":339},{"type":45,"tag":264,"props":7429,"children":7430},{"class":266,"line":2469},[7431],{"type":45,"tag":264,"props":7432,"children":7433},{"emptyLinePlaceholder":682},[7434],{"type":50,"value":685},{"type":45,"tag":264,"props":7436,"children":7437},{"class":266,"line":2499},[7438,7443,7447,7451,7455],{"type":45,"tag":264,"props":7439,"children":7440},{"style":724},[7441],{"type":50,"value":7442},"      setIsJoined",{"type":45,"tag":264,"props":7444,"children":7445},{"style":365},[7446],{"type":50,"value":830},{"type":45,"tag":264,"props":7448,"children":7449},{"style":970},[7450],{"type":50,"value":1687},{"type":45,"tag":264,"props":7452,"children":7453},{"style":365},[7454],{"type":50,"value":848},{"type":45,"tag":264,"props":7456,"children":7457},{"style":321},[7458],{"type":50,"value":339},{"type":45,"tag":264,"props":7460,"children":7461},{"class":266,"line":2526},[7462,7466,7470,7474,7479,7483],{"type":45,"tag":264,"props":7463,"children":7464},{"style":321},[7465],{"type":50,"value":1028},{"type":45,"tag":264,"props":7467,"children":7468},{"style":304},[7469],{"type":50,"value":1301},{"type":45,"tag":264,"props":7471,"children":7472},{"style":365},[7473],{"type":50,"value":1306},{"type":45,"tag":264,"props":7475,"children":7476},{"style":310},[7477],{"type":50,"value":7478},"err",{"type":45,"tag":264,"props":7480,"children":7481},{"style":365},[7482],{"type":50,"value":1316},{"type":45,"tag":264,"props":7484,"children":7485},{"style":321},[7486],{"type":50,"value":901},{"type":45,"tag":264,"props":7488,"children":7489},{"class":266,"line":2568},[7490,7495,7499,7503,7508,7513,7518,7523,7527,7532,7537,7541,7546,7550,7554],{"type":45,"tag":264,"props":7491,"children":7492},{"style":724},[7493],{"type":50,"value":7494},"      setError",{"type":45,"tag":264,"props":7496,"children":7497},{"style":365},[7498],{"type":50,"value":830},{"type":45,"tag":264,"props":7500,"children":7501},{"style":310},[7502],{"type":50,"value":7478},{"type":45,"tag":264,"props":7504,"children":7505},{"style":321},[7506],{"type":50,"value":7507}," instanceof",{"type":45,"tag":264,"props":7509,"children":7510},{"style":271},[7511],{"type":50,"value":7512}," Error",{"type":45,"tag":264,"props":7514,"children":7515},{"style":321},[7516],{"type":50,"value":7517}," ?",{"type":45,"tag":264,"props":7519,"children":7520},{"style":310},[7521],{"type":50,"value":7522}," err",{"type":45,"tag":264,"props":7524,"children":7525},{"style":321},[7526],{"type":50,"value":721},{"type":45,"tag":264,"props":7528,"children":7529},{"style":310},[7530],{"type":50,"value":7531},"message",{"type":45,"tag":264,"props":7533,"children":7534},{"style":321},[7535],{"type":50,"value":7536}," :",{"type":45,"tag":264,"props":7538,"children":7539},{"style":321},[7540],{"type":50,"value":324},{"type":45,"tag":264,"props":7542,"children":7543},{"style":276},[7544],{"type":50,"value":7545},"Failed to join",{"type":45,"tag":264,"props":7547,"children":7548},{"style":321},[7549],{"type":50,"value":334},{"type":45,"tag":264,"props":7551,"children":7552},{"style":365},[7553],{"type":50,"value":848},{"type":45,"tag":264,"props":7555,"children":7556},{"style":321},[7557],{"type":50,"value":339},{"type":45,"tag":264,"props":7559,"children":7560},{"class":266,"line":2577},[7561],{"type":45,"tag":264,"props":7562,"children":7563},{"style":321},[7564],{"type":50,"value":2668},{"type":45,"tag":264,"props":7566,"children":7567},{"class":266,"line":2585},[7568,7572,7576,7580,7584,7588,7592,7596,7601],{"type":45,"tag":264,"props":7569,"children":7570},{"style":321},[7571],{"type":50,"value":6953},{"type":45,"tag":264,"props":7573,"children":7574},{"style":365},[7575],{"type":50,"value":6705},{"type":45,"tag":264,"props":7577,"children":7578},{"style":310},[7579],{"type":50,"value":2790},{"type":45,"tag":264,"props":7581,"children":7582},{"style":321},[7583],{"type":50,"value":1193},{"type":45,"tag":264,"props":7585,"children":7586},{"style":310},[7587],{"type":50,"value":1188},{"type":45,"tag":264,"props":7589,"children":7590},{"style":321},[7591],{"type":50,"value":1193},{"type":45,"tag":264,"props":7593,"children":7594},{"style":310},[7595],{"type":50,"value":1166},{"type":45,"tag":264,"props":7597,"children":7598},{"style":365},[7599],{"type":50,"value":7600},"])",{"type":45,"tag":264,"props":7602,"children":7603},{"style":321},[7604],{"type":50,"value":339},{"type":45,"tag":264,"props":7606,"children":7607},{"class":266,"line":2594},[7608],{"type":45,"tag":264,"props":7609,"children":7610},{"emptyLinePlaceholder":682},[7611],{"type":50,"value":685},{"type":45,"tag":264,"props":7613,"children":7614},{"class":266,"line":2602},[7615,7620],{"type":45,"tag":264,"props":7616,"children":7617},{"style":304},[7618],{"type":50,"value":7619},"  return",{"type":45,"tag":264,"props":7621,"children":7622},{"style":365},[7623],{"type":50,"value":7624}," (\n",{"type":45,"tag":264,"props":7626,"children":7627},{"class":266,"line":2610},[7628,7633,7638],{"type":45,"tag":264,"props":7629,"children":7630},{"style":321},[7631],{"type":50,"value":7632},"    \u003C",{"type":45,"tag":264,"props":7634,"children":7635},{"style":365},[7636],{"type":50,"value":7637},"div",{"type":45,"tag":264,"props":7639,"children":7640},{"style":321},[7641],{"type":50,"value":407},{"type":45,"tag":264,"props":7643,"children":7644},{"class":266,"line":2619},[7645,7650],{"type":45,"tag":264,"props":7646,"children":7647},{"style":321},[7648],{"type":50,"value":7649},"      \u003C",{"type":45,"tag":264,"props":7651,"children":7652},{"style":365},[7653],{"type":50,"value":7654},"div\n",{"type":45,"tag":264,"props":7656,"children":7657},{"class":266,"line":2636},[7658,7663,7668,7672],{"type":45,"tag":264,"props":7659,"children":7660},{"style":371},[7661],{"type":50,"value":7662},"        ref",{"type":45,"tag":264,"props":7664,"children":7665},{"style":321},[7666],{"type":50,"value":7667},"={",{"type":45,"tag":264,"props":7669,"children":7670},{"style":310},[7671],{"type":50,"value":7050},{"type":45,"tag":264,"props":7673,"children":7674},{"style":321},[7675],{"type":50,"value":1388},{"type":45,"tag":264,"props":7677,"children":7678},{"class":266,"line":2662},[7679,7684,7689,7694,7698,7702,7707,7711,7715,7720,7724,7728,7733,7737],{"type":45,"tag":264,"props":7680,"children":7681},{"style":371},[7682],{"type":50,"value":7683},"        style",{"type":45,"tag":264,"props":7685,"children":7686},{"style":321},[7687],{"type":50,"value":7688},"={{",{"type":45,"tag":264,"props":7690,"children":7691},{"style":365},[7692],{"type":50,"value":7693}," width",{"type":45,"tag":264,"props":7695,"children":7696},{"style":321},[7697],{"type":50,"value":915},{"type":45,"tag":264,"props":7699,"children":7700},{"style":321},[7701],{"type":50,"value":324},{"type":45,"tag":264,"props":7703,"children":7704},{"style":276},[7705],{"type":50,"value":7706},"100%",{"type":45,"tag":264,"props":7708,"children":7709},{"style":321},[7710],{"type":50,"value":334},{"type":45,"tag":264,"props":7712,"children":7713},{"style":321},[7714],{"type":50,"value":1193},{"type":45,"tag":264,"props":7716,"children":7717},{"style":365},[7718],{"type":50,"value":7719}," height",{"type":45,"tag":264,"props":7721,"children":7722},{"style":321},[7723],{"type":50,"value":915},{"type":45,"tag":264,"props":7725,"children":7726},{"style":321},[7727],{"type":50,"value":324},{"type":45,"tag":264,"props":7729,"children":7730},{"style":276},[7731],{"type":50,"value":7732},"500px",{"type":45,"tag":264,"props":7734,"children":7735},{"style":321},[7736],{"type":50,"value":334},{"type":45,"tag":264,"props":7738,"children":7739},{"style":321},[7740],{"type":50,"value":7741}," }}\n",{"type":45,"tag":264,"props":7743,"children":7744},{"class":266,"line":2671},[7745],{"type":45,"tag":264,"props":7746,"children":7747},{"style":321},[7748],{"type":50,"value":7749},"      \u002F>\n",{"type":45,"tag":264,"props":7751,"children":7752},{"class":266,"line":2679},[7753,7758,7763,7768],{"type":45,"tag":264,"props":7754,"children":7755},{"style":321},[7756],{"type":50,"value":7757},"      {!",{"type":45,"tag":264,"props":7759,"children":7760},{"style":310},[7761],{"type":50,"value":7762},"isJoined ",{"type":45,"tag":264,"props":7764,"children":7765},{"style":321},[7766],{"type":50,"value":7767},"&&",{"type":45,"tag":264,"props":7769,"children":7770},{"style":310},[7771],{"type":50,"value":7624},{"type":45,"tag":264,"props":7773,"children":7775},{"class":266,"line":7774},54,[7776,7781,7786,7791,7795,7800,7805,7810,7815,7819],{"type":45,"tag":264,"props":7777,"children":7778},{"style":321},[7779],{"type":50,"value":7780},"        \u003C",{"type":45,"tag":264,"props":7782,"children":7783},{"style":365},[7784],{"type":50,"value":7785},"button",{"type":45,"tag":264,"props":7787,"children":7788},{"style":371},[7789],{"type":50,"value":7790}," onClick",{"type":45,"tag":264,"props":7792,"children":7793},{"style":321},[7794],{"type":50,"value":7667},{"type":45,"tag":264,"props":7796,"children":7797},{"style":310},[7798],{"type":50,"value":7799},"joinMeeting",{"type":45,"tag":264,"props":7801,"children":7802},{"style":321},[7803],{"type":50,"value":7804},"}>",{"type":45,"tag":264,"props":7806,"children":7807},{"style":310},[7808],{"type":50,"value":7809},"Join Meeting",{"type":45,"tag":264,"props":7811,"children":7812},{"style":321},[7813],{"type":50,"value":7814},"\u003C\u002F",{"type":45,"tag":264,"props":7816,"children":7817},{"style":365},[7818],{"type":50,"value":7785},{"type":45,"tag":264,"props":7820,"children":7821},{"style":321},[7822],{"type":50,"value":407},{"type":45,"tag":264,"props":7824,"children":7826},{"class":266,"line":7825},55,[7827,7832],{"type":45,"tag":264,"props":7828,"children":7829},{"style":310},[7830],{"type":50,"value":7831},"      )",{"type":45,"tag":264,"props":7833,"children":7834},{"style":321},[7835],{"type":50,"value":1388},{"type":45,"tag":264,"props":7837,"children":7839},{"class":266,"line":7838},56,[7840,7845,7850,7854,7859,7863,7868,7872,7876,7880,7884,7889,7893,7898,7902],{"type":45,"tag":264,"props":7841,"children":7842},{"style":321},[7843],{"type":50,"value":7844},"      {",{"type":45,"tag":264,"props":7846,"children":7847},{"style":310},[7848],{"type":50,"value":7849},"error ",{"type":45,"tag":264,"props":7851,"children":7852},{"style":321},[7853],{"type":50,"value":7767},{"type":45,"tag":264,"props":7855,"children":7856},{"style":321},[7857],{"type":50,"value":7858}," \u003C",{"type":45,"tag":264,"props":7860,"children":7861},{"style":365},[7862],{"type":50,"value":7637},{"type":45,"tag":264,"props":7864,"children":7865},{"style":371},[7866],{"type":50,"value":7867}," className",{"type":45,"tag":264,"props":7869,"children":7870},{"style":321},[7871],{"type":50,"value":379},{"type":45,"tag":264,"props":7873,"children":7874},{"style":321},[7875],{"type":50,"value":384},{"type":45,"tag":264,"props":7877,"children":7878},{"style":276},[7879],{"type":50,"value":1311},{"type":45,"tag":264,"props":7881,"children":7882},{"style":321},[7883],{"type":50,"value":384},{"type":45,"tag":264,"props":7885,"children":7886},{"style":321},[7887],{"type":50,"value":7888},">{",{"type":45,"tag":264,"props":7890,"children":7891},{"style":310},[7892],{"type":50,"value":1311},{"type":45,"tag":264,"props":7894,"children":7895},{"style":321},[7896],{"type":50,"value":7897},"}\u003C\u002F",{"type":45,"tag":264,"props":7899,"children":7900},{"style":365},[7901],{"type":50,"value":7637},{"type":45,"tag":264,"props":7903,"children":7904},{"style":321},[7905],{"type":50,"value":7906},">}\n",{"type":45,"tag":264,"props":7908,"children":7910},{"class":266,"line":7909},57,[7911,7916,7920],{"type":45,"tag":264,"props":7912,"children":7913},{"style":321},[7914],{"type":50,"value":7915},"    \u003C\u002F",{"type":45,"tag":264,"props":7917,"children":7918},{"style":365},[7919],{"type":50,"value":7637},{"type":45,"tag":264,"props":7921,"children":7922},{"style":321},[7923],{"type":50,"value":407},{"type":45,"tag":264,"props":7925,"children":7927},{"class":266,"line":7926},58,[7928,7933],{"type":45,"tag":264,"props":7929,"children":7930},{"style":365},[7931],{"type":50,"value":7932},"  )",{"type":45,"tag":264,"props":7934,"children":7935},{"style":321},[7936],{"type":50,"value":339},{"type":45,"tag":264,"props":7938,"children":7940},{"class":266,"line":7939},59,[7941],{"type":45,"tag":264,"props":7942,"children":7943},{"style":321},[7944],{"type":50,"value":1388},{"type":45,"tag":246,"props":7946,"children":7948},{"id":7947},"event-handling-in-react",[7949],{"type":50,"value":7950},"Event Handling in React",{"type":45,"tag":253,"props":7952,"children":7954},{"className":6361,"code":7953,"language":6363,"meta":258,"style":258},"useEffect(() => {\n  if (!clientRef.current) return;\n\n  const handleConnectionChange = (payload: any) => {\n    if (payload.state === 'Connected') {\n      setIsJoined(true);\n    } else if (payload.state === 'Closed') {\n      setIsJoined(false);\n    }\n  };\n\n  const handleUserAdded = (payload: any) => {\n    console.log('Users joined:', payload);\n  };\n\n  clientRef.current.on('connection-change', handleConnectionChange);\n  clientRef.current.on('user-added', handleUserAdded);\n\n  return () => {\n    clientRef.current?.off('connection-change', handleConnectionChange);\n    clientRef.current?.off('user-added', handleUserAdded);\n  };\n}, []);\n",[7955],{"type":45,"tag":84,"props":7956,"children":7957},{"__ignoreMap":258},[7958,7982,8021,8028,8073,8121,8144,8201,8224,8231,8239,8246,8290,8338,8345,8352,8408,8463,8470,8489,8546,8601,8608],{"type":45,"tag":264,"props":7959,"children":7960},{"class":266,"line":267},[7961,7966,7970,7974,7978],{"type":45,"tag":264,"props":7962,"children":7963},{"style":724},[7964],{"type":50,"value":7965},"useEffect",{"type":45,"tag":264,"props":7967,"children":7968},{"style":310},[7969],{"type":50,"value":830},{"type":45,"tag":264,"props":7971,"children":7972},{"style":321},[7973],{"type":50,"value":732},{"type":45,"tag":264,"props":7975,"children":7976},{"style":371},[7977],{"type":50,"value":2519},{"type":45,"tag":264,"props":7979,"children":7980},{"style":321},[7981],{"type":50,"value":770},{"type":45,"tag":264,"props":7983,"children":7984},{"class":266,"line":410},[7985,7989,7993,7997,8001,8005,8009,8013,8017],{"type":45,"tag":264,"props":7986,"children":7987},{"style":304},[7988],{"type":50,"value":3269},{"type":45,"tag":264,"props":7990,"children":7991},{"style":365},[7992],{"type":50,"value":1306},{"type":45,"tag":264,"props":7994,"children":7995},{"style":321},[7996],{"type":50,"value":6876},{"type":45,"tag":264,"props":7998,"children":7999},{"style":310},[8000],{"type":50,"value":6881},{"type":45,"tag":264,"props":8002,"children":8003},{"style":321},[8004],{"type":50,"value":721},{"type":45,"tag":264,"props":8006,"children":8007},{"style":310},[8008],{"type":50,"value":6890},{"type":45,"tag":264,"props":8010,"children":8011},{"style":365},[8012],{"type":50,"value":1316},{"type":45,"tag":264,"props":8014,"children":8015},{"style":304},[8016],{"type":50,"value":7067},{"type":45,"tag":264,"props":8018,"children":8019},{"style":321},[8020],{"type":50,"value":339},{"type":45,"tag":264,"props":8022,"children":8023},{"class":266,"line":455},[8024],{"type":45,"tag":264,"props":8025,"children":8026},{"emptyLinePlaceholder":682},[8027],{"type":50,"value":685},{"type":45,"tag":264,"props":8029,"children":8030},{"class":266,"line":500},[8031,8035,8040,8044,8048,8052,8056,8061,8065,8069],{"type":45,"tag":264,"props":8032,"children":8033},{"style":371},[8034],{"type":50,"value":6590},{"type":45,"tag":264,"props":8036,"children":8037},{"style":310},[8038],{"type":50,"value":8039}," handleConnectionChange",{"type":45,"tag":264,"props":8041,"children":8042},{"style":321},[8043],{"type":50,"value":811},{"type":45,"tag":264,"props":8045,"children":8046},{"style":321},[8047],{"type":50,"value":1306},{"type":45,"tag":264,"props":8049,"children":8050},{"style":3172},[8051],{"type":50,"value":3175},{"type":45,"tag":264,"props":8053,"children":8054},{"style":321},[8055],{"type":50,"value":915},{"type":45,"tag":264,"props":8057,"children":8058},{"style":271},[8059],{"type":50,"value":8060}," any",{"type":45,"tag":264,"props":8062,"children":8063},{"style":321},[8064],{"type":50,"value":848},{"type":45,"tag":264,"props":8066,"children":8067},{"style":371},[8068],{"type":50,"value":2519},{"type":45,"tag":264,"props":8070,"children":8071},{"style":321},[8072],{"type":50,"value":770},{"type":45,"tag":264,"props":8074,"children":8075},{"class":266,"line":545},[8076,8080,8084,8088,8092,8096,8100,8104,8109,8113,8117],{"type":45,"tag":264,"props":8077,"children":8078},{"style":304},[8079],{"type":50,"value":6867},{"type":45,"tag":264,"props":8081,"children":8082},{"style":365},[8083],{"type":50,"value":1306},{"type":45,"tag":264,"props":8085,"children":8086},{"style":310},[8087],{"type":50,"value":3175},{"type":45,"tag":264,"props":8089,"children":8090},{"style":321},[8091],{"type":50,"value":721},{"type":45,"tag":264,"props":8093,"children":8094},{"style":310},[8095],{"type":50,"value":3246},{"type":45,"tag":264,"props":8097,"children":8098},{"style":321},[8099],{"type":50,"value":3290},{"type":45,"tag":264,"props":8101,"children":8102},{"style":321},[8103],{"type":50,"value":324},{"type":45,"tag":264,"props":8105,"children":8106},{"style":276},[8107],{"type":50,"value":8108},"Connected",{"type":45,"tag":264,"props":8110,"children":8111},{"style":321},[8112],{"type":50,"value":334},{"type":45,"tag":264,"props":8114,"children":8115},{"style":365},[8116],{"type":50,"value":1316},{"type":45,"tag":264,"props":8118,"children":8119},{"style":321},[8120],{"type":50,"value":901},{"type":45,"tag":264,"props":8122,"children":8123},{"class":266,"line":590},[8124,8128,8132,8136,8140],{"type":45,"tag":264,"props":8125,"children":8126},{"style":724},[8127],{"type":50,"value":7442},{"type":45,"tag":264,"props":8129,"children":8130},{"style":365},[8131],{"type":50,"value":830},{"type":45,"tag":264,"props":8133,"children":8134},{"style":970},[8135],{"type":50,"value":1687},{"type":45,"tag":264,"props":8137,"children":8138},{"style":365},[8139],{"type":50,"value":848},{"type":45,"tag":264,"props":8141,"children":8142},{"style":321},[8143],{"type":50,"value":339},{"type":45,"tag":264,"props":8145,"children":8146},{"class":266,"line":773},[8147,8151,8156,8161,8165,8169,8173,8177,8181,8185,8189,8193,8197],{"type":45,"tag":264,"props":8148,"children":8149},{"style":321},[8150],{"type":50,"value":1028},{"type":45,"tag":264,"props":8152,"children":8153},{"style":304},[8154],{"type":50,"value":8155}," else",{"type":45,"tag":264,"props":8157,"children":8158},{"style":304},[8159],{"type":50,"value":8160}," if",{"type":45,"tag":264,"props":8162,"children":8163},{"style":365},[8164],{"type":50,"value":1306},{"type":45,"tag":264,"props":8166,"children":8167},{"style":310},[8168],{"type":50,"value":3175},{"type":45,"tag":264,"props":8170,"children":8171},{"style":321},[8172],{"type":50,"value":721},{"type":45,"tag":264,"props":8174,"children":8175},{"style":310},[8176],{"type":50,"value":3246},{"type":45,"tag":264,"props":8178,"children":8179},{"style":321},[8180],{"type":50,"value":3290},{"type":45,"tag":264,"props":8182,"children":8183},{"style":321},[8184],{"type":50,"value":324},{"type":45,"tag":264,"props":8186,"children":8187},{"style":276},[8188],{"type":50,"value":3299},{"type":45,"tag":264,"props":8190,"children":8191},{"style":321},[8192],{"type":50,"value":334},{"type":45,"tag":264,"props":8194,"children":8195},{"style":365},[8196],{"type":50,"value":1316},{"type":45,"tag":264,"props":8198,"children":8199},{"style":321},[8200],{"type":50,"value":901},{"type":45,"tag":264,"props":8202,"children":8203},{"class":266,"line":786},[8204,8208,8212,8216,8220],{"type":45,"tag":264,"props":8205,"children":8206},{"style":724},[8207],{"type":50,"value":7442},{"type":45,"tag":264,"props":8209,"children":8210},{"style":365},[8211],{"type":50,"value":830},{"type":45,"tag":264,"props":8213,"children":8214},{"style":970},[8215],{"type":50,"value":1553},{"type":45,"tag":264,"props":8217,"children":8218},{"style":365},[8219],{"type":50,"value":848},{"type":45,"tag":264,"props":8221,"children":8222},{"style":321},[8223],{"type":50,"value":339},{"type":45,"tag":264,"props":8225,"children":8226},{"class":266,"line":795},[8227],{"type":45,"tag":264,"props":8228,"children":8229},{"style":321},[8230],{"type":50,"value":2668},{"type":45,"tag":264,"props":8232,"children":8233},{"class":266,"line":855},[8234],{"type":45,"tag":264,"props":8235,"children":8236},{"style":321},[8237],{"type":50,"value":8238},"  };\n",{"type":45,"tag":264,"props":8240,"children":8241},{"class":266,"line":863},[8242],{"type":45,"tag":264,"props":8243,"children":8244},{"emptyLinePlaceholder":682},[8245],{"type":50,"value":685},{"type":45,"tag":264,"props":8247,"children":8248},{"class":266,"line":872},[8249,8253,8258,8262,8266,8270,8274,8278,8282,8286],{"type":45,"tag":264,"props":8250,"children":8251},{"style":371},[8252],{"type":50,"value":6590},{"type":45,"tag":264,"props":8254,"children":8255},{"style":310},[8256],{"type":50,"value":8257}," handleUserAdded",{"type":45,"tag":264,"props":8259,"children":8260},{"style":321},[8261],{"type":50,"value":811},{"type":45,"tag":264,"props":8263,"children":8264},{"style":321},[8265],{"type":50,"value":1306},{"type":45,"tag":264,"props":8267,"children":8268},{"style":3172},[8269],{"type":50,"value":3175},{"type":45,"tag":264,"props":8271,"children":8272},{"style":321},[8273],{"type":50,"value":915},{"type":45,"tag":264,"props":8275,"children":8276},{"style":271},[8277],{"type":50,"value":8060},{"type":45,"tag":264,"props":8279,"children":8280},{"style":321},[8281],{"type":50,"value":848},{"type":45,"tag":264,"props":8283,"children":8284},{"style":371},[8285],{"type":50,"value":2519},{"type":45,"tag":264,"props":8287,"children":8288},{"style":321},[8289],{"type":50,"value":770},{"type":45,"tag":264,"props":8291,"children":8292},{"class":266,"line":904},[8293,8297,8301,8305,8309,8313,8318,8322,8326,8330,8334],{"type":45,"tag":264,"props":8294,"children":8295},{"style":310},[8296],{"type":50,"value":1253},{"type":45,"tag":264,"props":8298,"children":8299},{"style":321},[8300],{"type":50,"value":721},{"type":45,"tag":264,"props":8302,"children":8303},{"style":724},[8304],{"type":50,"value":1262},{"type":45,"tag":264,"props":8306,"children":8307},{"style":365},[8308],{"type":50,"value":830},{"type":45,"tag":264,"props":8310,"children":8311},{"style":321},[8312],{"type":50,"value":334},{"type":45,"tag":264,"props":8314,"children":8315},{"style":276},[8316],{"type":50,"value":8317},"Users joined:",{"type":45,"tag":264,"props":8319,"children":8320},{"style":321},[8321],{"type":50,"value":334},{"type":45,"tag":264,"props":8323,"children":8324},{"style":321},[8325],{"type":50,"value":1193},{"type":45,"tag":264,"props":8327,"children":8328},{"style":310},[8329],{"type":50,"value":3237},{"type":45,"tag":264,"props":8331,"children":8332},{"style":365},[8333],{"type":50,"value":848},{"type":45,"tag":264,"props":8335,"children":8336},{"style":321},[8337],{"type":50,"value":339},{"type":45,"tag":264,"props":8339,"children":8340},{"class":266,"line":927},[8341],{"type":45,"tag":264,"props":8342,"children":8343},{"style":321},[8344],{"type":50,"value":8238},{"type":45,"tag":264,"props":8346,"children":8347},{"class":266,"line":957},[8348],{"type":45,"tag":264,"props":8349,"children":8350},{"emptyLinePlaceholder":682},[8351],{"type":50,"value":685},{"type":45,"tag":264,"props":8353,"children":8354},{"class":266,"line":980},[8355,8360,8364,8368,8372,8376,8380,8384,8388,8392,8396,8400,8404],{"type":45,"tag":264,"props":8356,"children":8357},{"style":310},[8358],{"type":50,"value":8359},"  clientRef",{"type":45,"tag":264,"props":8361,"children":8362},{"style":321},[8363],{"type":50,"value":721},{"type":45,"tag":264,"props":8365,"children":8366},{"style":310},[8367],{"type":50,"value":6890},{"type":45,"tag":264,"props":8369,"children":8370},{"style":321},[8371],{"type":50,"value":721},{"type":45,"tag":264,"props":8373,"children":8374},{"style":724},[8375],{"type":50,"value":3027},{"type":45,"tag":264,"props":8377,"children":8378},{"style":365},[8379],{"type":50,"value":830},{"type":45,"tag":264,"props":8381,"children":8382},{"style":321},[8383],{"type":50,"value":334},{"type":45,"tag":264,"props":8385,"children":8386},{"style":276},[8387],{"type":50,"value":3157},{"type":45,"tag":264,"props":8389,"children":8390},{"style":321},[8391],{"type":50,"value":334},{"type":45,"tag":264,"props":8393,"children":8394},{"style":321},[8395],{"type":50,"value":1193},{"type":45,"tag":264,"props":8397,"children":8398},{"style":310},[8399],{"type":50,"value":8039},{"type":45,"tag":264,"props":8401,"children":8402},{"style":365},[8403],{"type":50,"value":848},{"type":45,"tag":264,"props":8405,"children":8406},{"style":321},[8407],{"type":50,"value":339},{"type":45,"tag":264,"props":8409,"children":8410},{"class":266,"line":1001},[8411,8415,8419,8423,8427,8431,8435,8439,8443,8447,8451,8455,8459],{"type":45,"tag":264,"props":8412,"children":8413},{"style":310},[8414],{"type":50,"value":8359},{"type":45,"tag":264,"props":8416,"children":8417},{"style":321},[8418],{"type":50,"value":721},{"type":45,"tag":264,"props":8420,"children":8421},{"style":310},[8422],{"type":50,"value":6890},{"type":45,"tag":264,"props":8424,"children":8425},{"style":321},[8426],{"type":50,"value":721},{"type":45,"tag":264,"props":8428,"children":8429},{"style":724},[8430],{"type":50,"value":3027},{"type":45,"tag":264,"props":8432,"children":8433},{"style":365},[8434],{"type":50,"value":830},{"type":45,"tag":264,"props":8436,"children":8437},{"style":321},[8438],{"type":50,"value":334},{"type":45,"tag":264,"props":8440,"children":8441},{"style":276},[8442],{"type":50,"value":3431},{"type":45,"tag":264,"props":8444,"children":8445},{"style":321},[8446],{"type":50,"value":334},{"type":45,"tag":264,"props":8448,"children":8449},{"style":321},[8450],{"type":50,"value":1193},{"type":45,"tag":264,"props":8452,"children":8453},{"style":310},[8454],{"type":50,"value":8257},{"type":45,"tag":264,"props":8456,"children":8457},{"style":365},[8458],{"type":50,"value":848},{"type":45,"tag":264,"props":8460,"children":8461},{"style":321},[8462],{"type":50,"value":339},{"type":45,"tag":264,"props":8464,"children":8465},{"class":266,"line":1022},[8466],{"type":45,"tag":264,"props":8467,"children":8468},{"emptyLinePlaceholder":682},[8469],{"type":50,"value":685},{"type":45,"tag":264,"props":8471,"children":8472},{"class":266,"line":1039},[8473,8477,8481,8485],{"type":45,"tag":264,"props":8474,"children":8475},{"style":304},[8476],{"type":50,"value":7619},{"type":45,"tag":264,"props":8478,"children":8479},{"style":321},[8480],{"type":50,"value":2514},{"type":45,"tag":264,"props":8482,"children":8483},{"style":371},[8484],{"type":50,"value":2519},{"type":45,"tag":264,"props":8486,"children":8487},{"style":321},[8488],{"type":50,"value":770},{"type":45,"tag":264,"props":8490,"children":8491},{"class":266,"line":1047},[8492,8497,8501,8505,8510,8514,8518,8522,8526,8530,8534,8538,8542],{"type":45,"tag":264,"props":8493,"children":8494},{"style":310},[8495],{"type":50,"value":8496},"    clientRef",{"type":45,"tag":264,"props":8498,"children":8499},{"style":321},[8500],{"type":50,"value":721},{"type":45,"tag":264,"props":8502,"children":8503},{"style":310},[8504],{"type":50,"value":6890},{"type":45,"tag":264,"props":8506,"children":8507},{"style":321},[8508],{"type":50,"value":8509},"?.",{"type":45,"tag":264,"props":8511,"children":8512},{"style":724},[8513],{"type":50,"value":3088},{"type":45,"tag":264,"props":8515,"children":8516},{"style":365},[8517],{"type":50,"value":830},{"type":45,"tag":264,"props":8519,"children":8520},{"style":321},[8521],{"type":50,"value":334},{"type":45,"tag":264,"props":8523,"children":8524},{"style":276},[8525],{"type":50,"value":3157},{"type":45,"tag":264,"props":8527,"children":8528},{"style":321},[8529],{"type":50,"value":334},{"type":45,"tag":264,"props":8531,"children":8532},{"style":321},[8533],{"type":50,"value":1193},{"type":45,"tag":264,"props":8535,"children":8536},{"style":310},[8537],{"type":50,"value":8039},{"type":45,"tag":264,"props":8539,"children":8540},{"style":365},[8541],{"type":50,"value":848},{"type":45,"tag":264,"props":8543,"children":8544},{"style":321},[8545],{"type":50,"value":339},{"type":45,"tag":264,"props":8547,"children":8548},{"class":266,"line":1056},[8549,8553,8557,8561,8565,8569,8573,8577,8581,8585,8589,8593,8597],{"type":45,"tag":264,"props":8550,"children":8551},{"style":310},[8552],{"type":50,"value":8496},{"type":45,"tag":264,"props":8554,"children":8555},{"style":321},[8556],{"type":50,"value":721},{"type":45,"tag":264,"props":8558,"children":8559},{"style":310},[8560],{"type":50,"value":6890},{"type":45,"tag":264,"props":8562,"children":8563},{"style":321},[8564],{"type":50,"value":8509},{"type":45,"tag":264,"props":8566,"children":8567},{"style":724},[8568],{"type":50,"value":3088},{"type":45,"tag":264,"props":8570,"children":8571},{"style":365},[8572],{"type":50,"value":830},{"type":45,"tag":264,"props":8574,"children":8575},{"style":321},[8576],{"type":50,"value":334},{"type":45,"tag":264,"props":8578,"children":8579},{"style":276},[8580],{"type":50,"value":3431},{"type":45,"tag":264,"props":8582,"children":8583},{"style":321},[8584],{"type":50,"value":334},{"type":45,"tag":264,"props":8586,"children":8587},{"style":321},[8588],{"type":50,"value":1193},{"type":45,"tag":264,"props":8590,"children":8591},{"style":310},[8592],{"type":50,"value":8257},{"type":45,"tag":264,"props":8594,"children":8595},{"style":365},[8596],{"type":50,"value":848},{"type":45,"tag":264,"props":8598,"children":8599},{"style":321},[8600],{"type":50,"value":339},{"type":45,"tag":264,"props":8602,"children":8603},{"class":266,"line":1085},[8604],{"type":45,"tag":264,"props":8605,"children":8606},{"style":321},[8607],{"type":50,"value":8238},{"type":45,"tag":264,"props":8609,"children":8610},{"class":266,"line":1107},[8611,8616,8620],{"type":45,"tag":264,"props":8612,"children":8613},{"style":321},[8614],{"type":50,"value":8615},"},",{"type":45,"tag":264,"props":8617,"children":8618},{"style":310},[8619],{"type":50,"value":6958},{"type":45,"tag":264,"props":8621,"children":8622},{"style":321},[8623],{"type":50,"value":339},{"type":45,"tag":72,"props":8625,"children":8627},{"id":8626},"positioning-and-resizing",[8628],{"type":50,"value":8629},"Positioning and Resizing",{"type":45,"tag":246,"props":8631,"children":8633},{"id":8632},"initial-size",[8634],{"type":50,"value":8635},"Initial Size",{"type":45,"tag":253,"props":8637,"children":8639},{"className":292,"code":8638,"language":294,"meta":258,"style":258},"await client.init({\n  zoomAppRoot: element,\n  customize: {\n    video: {\n      viewSizes: {\n        default: { width: 1000, height: 600 }\n      }\n    }\n  }\n});\n",[8640],{"type":45,"tag":84,"props":8641,"children":8642},{"__ignoreMap":258},[8643,8670,8689,8704,8719,8734,8783,8790,8797,8804],{"type":45,"tag":264,"props":8644,"children":8645},{"class":266,"line":267},[8646,8650,8654,8658,8662,8666],{"type":45,"tag":264,"props":8647,"children":8648},{"style":304},[8649],{"type":50,"value":1858},{"type":45,"tag":264,"props":8651,"children":8652},{"style":310},[8653],{"type":50,"value":883},{"type":45,"tag":264,"props":8655,"children":8656},{"style":321},[8657],{"type":50,"value":721},{"type":45,"tag":264,"props":8659,"children":8660},{"style":724},[8661],{"type":50,"value":892},{"type":45,"tag":264,"props":8663,"children":8664},{"style":310},[8665],{"type":50,"value":830},{"type":45,"tag":264,"props":8667,"children":8668},{"style":321},[8669],{"type":50,"value":901},{"type":45,"tag":264,"props":8671,"children":8672},{"class":266,"line":410},[8673,8677,8681,8685],{"type":45,"tag":264,"props":8674,"children":8675},{"style":365},[8676],{"type":50,"value":1886},{"type":45,"tag":264,"props":8678,"children":8679},{"style":321},[8680],{"type":50,"value":915},{"type":45,"tag":264,"props":8682,"children":8683},{"style":310},[8684],{"type":50,"value":1895},{"type":45,"tag":264,"props":8686,"children":8687},{"style":321},[8688],{"type":50,"value":924},{"type":45,"tag":264,"props":8690,"children":8691},{"class":266,"line":455},[8692,8696,8700],{"type":45,"tag":264,"props":8693,"children":8694},{"style":365},[8695],{"type":50,"value":1907},{"type":45,"tag":264,"props":8697,"children":8698},{"style":321},[8699],{"type":50,"value":915},{"type":45,"tag":264,"props":8701,"children":8702},{"style":321},[8703],{"type":50,"value":770},{"type":45,"tag":264,"props":8705,"children":8706},{"class":266,"line":500},[8707,8711,8715],{"type":45,"tag":264,"props":8708,"children":8709},{"style":365},[8710],{"type":50,"value":2153},{"type":45,"tag":264,"props":8712,"children":8713},{"style":321},[8714],{"type":50,"value":915},{"type":45,"tag":264,"props":8716,"children":8717},{"style":321},[8718],{"type":50,"value":770},{"type":45,"tag":264,"props":8720,"children":8721},{"class":266,"line":545},[8722,8726,8730],{"type":45,"tag":264,"props":8723,"children":8724},{"style":365},[8725],{"type":50,"value":2189},{"type":45,"tag":264,"props":8727,"children":8728},{"style":321},[8729],{"type":50,"value":915},{"type":45,"tag":264,"props":8731,"children":8732},{"style":321},[8733],{"type":50,"value":770},{"type":45,"tag":264,"props":8735,"children":8736},{"class":266,"line":590},[8737,8741,8745,8749,8753,8757,8761,8765,8769,8773,8778],{"type":45,"tag":264,"props":8738,"children":8739},{"style":365},[8740],{"type":50,"value":2205},{"type":45,"tag":264,"props":8742,"children":8743},{"style":321},[8744],{"type":50,"value":915},{"type":45,"tag":264,"props":8746,"children":8747},{"style":321},[8748],{"type":50,"value":6379},{"type":45,"tag":264,"props":8750,"children":8751},{"style":365},[8752],{"type":50,"value":7693},{"type":45,"tag":264,"props":8754,"children":8755},{"style":321},[8756],{"type":50,"value":915},{"type":45,"tag":264,"props":8758,"children":8759},{"style":2228},[8760],{"type":50,"value":2231},{"type":45,"tag":264,"props":8762,"children":8763},{"style":321},[8764],{"type":50,"value":1193},{"type":45,"tag":264,"props":8766,"children":8767},{"style":365},[8768],{"type":50,"value":7719},{"type":45,"tag":264,"props":8770,"children":8771},{"style":321},[8772],{"type":50,"value":915},{"type":45,"tag":264,"props":8774,"children":8775},{"style":2228},[8776],{"type":50,"value":8777}," 600",{"type":45,"tag":264,"props":8779,"children":8780},{"style":321},[8781],{"type":50,"value":8782}," }\n",{"type":45,"tag":264,"props":8784,"children":8785},{"class":266,"line":773},[8786],{"type":45,"tag":264,"props":8787,"children":8788},{"style":321},[8789],{"type":50,"value":2369},{"type":45,"tag":264,"props":8791,"children":8792},{"class":266,"line":786},[8793],{"type":45,"tag":264,"props":8794,"children":8795},{"style":321},[8796],{"type":50,"value":2668},{"type":45,"tag":264,"props":8798,"children":8799},{"class":266,"line":795},[8800],{"type":45,"tag":264,"props":8801,"children":8802},{"style":321},[8803],{"type":50,"value":1379},{"type":45,"tag":264,"props":8805,"children":8806},{"class":266,"line":855},[8807,8811,8815],{"type":45,"tag":264,"props":8808,"children":8809},{"style":321},[8810],{"type":50,"value":2685},{"type":45,"tag":264,"props":8812,"children":8813},{"style":310},[8814],{"type":50,"value":848},{"type":45,"tag":264,"props":8816,"children":8817},{"style":321},[8818],{"type":50,"value":339},{"type":45,"tag":246,"props":8820,"children":8822},{"id":8821},"dynamic-resizing",[8823],{"type":50,"value":8824},"Dynamic Resizing",{"type":45,"tag":53,"props":8826,"children":8827},{},[8828],{"type":50,"value":8829},"The container element size determines the meeting UI size. To resize:",{"type":45,"tag":253,"props":8831,"children":8833},{"className":292,"code":8832,"language":294,"meta":258,"style":258},"\u002F\u002F Just resize the container\ndocument.getElementById('meetingSDKElement').style.width = '1200px';\ndocument.getElementById('meetingSDKElement').style.height = '800px';\n",[8834],{"type":45,"tag":84,"props":8835,"children":8836},{"__ignoreMap":258},[8837,8845,8920],{"type":45,"tag":264,"props":8838,"children":8839},{"class":266,"line":267},[8840],{"type":45,"tag":264,"props":8841,"children":8842},{"style":691},[8843],{"type":50,"value":8844},"\u002F\u002F Just resize the container\n",{"type":45,"tag":264,"props":8846,"children":8847},{"class":266,"line":410},[8848,8853,8857,8861,8865,8869,8873,8877,8881,8885,8890,8894,8899,8903,8907,8912,8916],{"type":45,"tag":264,"props":8849,"children":8850},{"style":310},[8851],{"type":50,"value":8852},"document",{"type":45,"tag":264,"props":8854,"children":8855},{"style":321},[8856],{"type":50,"value":721},{"type":45,"tag":264,"props":8858,"children":8859},{"style":724},[8860],{"type":50,"value":825},{"type":45,"tag":264,"props":8862,"children":8863},{"style":310},[8864],{"type":50,"value":830},{"type":45,"tag":264,"props":8866,"children":8867},{"style":321},[8868],{"type":50,"value":334},{"type":45,"tag":264,"props":8870,"children":8871},{"style":276},[8872],{"type":50,"value":839},{"type":45,"tag":264,"props":8874,"children":8875},{"style":321},[8876],{"type":50,"value":334},{"type":45,"tag":264,"props":8878,"children":8879},{"style":310},[8880],{"type":50,"value":848},{"type":45,"tag":264,"props":8882,"children":8883},{"style":321},[8884],{"type":50,"value":721},{"type":45,"tag":264,"props":8886,"children":8887},{"style":310},[8888],{"type":50,"value":8889},"style",{"type":45,"tag":264,"props":8891,"children":8892},{"style":321},[8893],{"type":50,"value":721},{"type":45,"tag":264,"props":8895,"children":8896},{"style":310},[8897],{"type":50,"value":8898},"width ",{"type":45,"tag":264,"props":8900,"children":8901},{"style":321},[8902],{"type":50,"value":379},{"type":45,"tag":264,"props":8904,"children":8905},{"style":321},[8906],{"type":50,"value":324},{"type":45,"tag":264,"props":8908,"children":8909},{"style":276},[8910],{"type":50,"value":8911},"1200px",{"type":45,"tag":264,"props":8913,"children":8914},{"style":321},[8915],{"type":50,"value":334},{"type":45,"tag":264,"props":8917,"children":8918},{"style":321},[8919],{"type":50,"value":339},{"type":45,"tag":264,"props":8921,"children":8922},{"class":266,"line":455},[8923,8927,8931,8935,8939,8943,8947,8951,8955,8959,8963,8967,8972,8976,8980,8985,8989],{"type":45,"tag":264,"props":8924,"children":8925},{"style":310},[8926],{"type":50,"value":8852},{"type":45,"tag":264,"props":8928,"children":8929},{"style":321},[8930],{"type":50,"value":721},{"type":45,"tag":264,"props":8932,"children":8933},{"style":724},[8934],{"type":50,"value":825},{"type":45,"tag":264,"props":8936,"children":8937},{"style":310},[8938],{"type":50,"value":830},{"type":45,"tag":264,"props":8940,"children":8941},{"style":321},[8942],{"type":50,"value":334},{"type":45,"tag":264,"props":8944,"children":8945},{"style":276},[8946],{"type":50,"value":839},{"type":45,"tag":264,"props":8948,"children":8949},{"style":321},[8950],{"type":50,"value":334},{"type":45,"tag":264,"props":8952,"children":8953},{"style":310},[8954],{"type":50,"value":848},{"type":45,"tag":264,"props":8956,"children":8957},{"style":321},[8958],{"type":50,"value":721},{"type":45,"tag":264,"props":8960,"children":8961},{"style":310},[8962],{"type":50,"value":8889},{"type":45,"tag":264,"props":8964,"children":8965},{"style":321},[8966],{"type":50,"value":721},{"type":45,"tag":264,"props":8968,"children":8969},{"style":310},[8970],{"type":50,"value":8971},"height ",{"type":45,"tag":264,"props":8973,"children":8974},{"style":321},[8975],{"type":50,"value":379},{"type":45,"tag":264,"props":8977,"children":8978},{"style":321},[8979],{"type":50,"value":324},{"type":45,"tag":264,"props":8981,"children":8982},{"style":276},[8983],{"type":50,"value":8984},"800px",{"type":45,"tag":264,"props":8986,"children":8987},{"style":321},[8988],{"type":50,"value":334},{"type":45,"tag":264,"props":8990,"children":8991},{"style":321},[8992],{"type":50,"value":339},{"type":45,"tag":246,"props":8994,"children":8996},{"id":8995},"making-it-resizable",[8997],{"type":50,"value":8998},"Making it Resizable",{"type":45,"tag":253,"props":9000,"children":9002},{"className":292,"code":9001,"language":294,"meta":258,"style":258},"customize: {\n  video: {\n    isResizable: true\n  }\n}\n",[9003],{"type":45,"tag":84,"props":9004,"children":9005},{"__ignoreMap":258},[9006,9021,9037,9054,9061],{"type":45,"tag":264,"props":9007,"children":9008},{"class":266,"line":267},[9009,9013,9017],{"type":45,"tag":264,"props":9010,"children":9011},{"style":271},[9012],{"type":50,"value":1767},{"type":45,"tag":264,"props":9014,"children":9015},{"style":321},[9016],{"type":50,"value":915},{"type":45,"tag":264,"props":9018,"children":9019},{"style":321},[9020],{"type":50,"value":770},{"type":45,"tag":264,"props":9022,"children":9023},{"class":266,"line":410},[9024,9029,9033],{"type":45,"tag":264,"props":9025,"children":9026},{"style":271},[9027],{"type":50,"value":9028},"  video",{"type":45,"tag":264,"props":9030,"children":9031},{"style":321},[9032],{"type":50,"value":915},{"type":45,"tag":264,"props":9034,"children":9035},{"style":321},[9036],{"type":50,"value":770},{"type":45,"tag":264,"props":9038,"children":9039},{"class":266,"line":455},[9040,9045,9049],{"type":45,"tag":264,"props":9041,"children":9042},{"style":271},[9043],{"type":50,"value":9044},"    isResizable",{"type":45,"tag":264,"props":9046,"children":9047},{"style":321},[9048],{"type":50,"value":915},{"type":45,"tag":264,"props":9050,"children":9051},{"style":970},[9052],{"type":50,"value":9053}," true\n",{"type":45,"tag":264,"props":9055,"children":9056},{"class":266,"line":500},[9057],{"type":45,"tag":264,"props":9058,"children":9059},{"style":321},[9060],{"type":50,"value":1379},{"type":45,"tag":264,"props":9062,"children":9063},{"class":266,"line":545},[9064],{"type":45,"tag":264,"props":9065,"children":9066},{"style":321},[9067],{"type":50,"value":1388},{"type":45,"tag":72,"props":9069,"children":9071},{"id":9070},"supported-features",[9072],{"type":50,"value":9073},"Supported Features",{"type":45,"tag":53,"props":9075,"children":9076},{},[9077],{"type":50,"value":9078},"Component View supports core meeting functionality. Some features from Client View may not be available.",{"type":45,"tag":93,"props":9080,"children":9081},{},[9082,9098],{"type":45,"tag":97,"props":9083,"children":9084},{},[9085],{"type":45,"tag":101,"props":9086,"children":9087},{},[9088,9093],{"type":45,"tag":105,"props":9089,"children":9090},{},[9091],{"type":50,"value":9092},"Feature",{"type":45,"tag":105,"props":9094,"children":9095},{},[9096],{"type":50,"value":9097},"Supported",{"type":45,"tag":116,"props":9099,"children":9100},{},[9101,9114,9125,9137,9148,9160,9172,9184,9196,9208,9220,9232],{"type":45,"tag":101,"props":9102,"children":9103},{},[9104,9109],{"type":45,"tag":123,"props":9105,"children":9106},{},[9107],{"type":50,"value":9108},"Audio\u002FVideo",{"type":45,"tag":123,"props":9110,"children":9111},{},[9112],{"type":50,"value":9113},"✅",{"type":45,"tag":101,"props":9115,"children":9116},{},[9117,9121],{"type":45,"tag":123,"props":9118,"children":9119},{},[9120],{"type":50,"value":5949},{"type":45,"tag":123,"props":9122,"children":9123},{},[9124],{"type":50,"value":9113},{"type":45,"tag":101,"props":9126,"children":9127},{},[9128,9133],{"type":45,"tag":123,"props":9129,"children":9130},{},[9131],{"type":50,"value":9132},"Chat",{"type":45,"tag":123,"props":9134,"children":9135},{},[9136],{"type":50,"value":9113},{"type":45,"tag":101,"props":9138,"children":9139},{},[9140,9144],{"type":45,"tag":123,"props":9141,"children":9142},{},[9143],{"type":50,"value":6133},{"type":45,"tag":123,"props":9145,"children":9146},{},[9147],{"type":50,"value":9113},{"type":45,"tag":101,"props":9149,"children":9150},{},[9151,9156],{"type":45,"tag":123,"props":9152,"children":9153},{},[9154],{"type":50,"value":9155},"Breakout Rooms",{"type":45,"tag":123,"props":9157,"children":9158},{},[9159],{"type":50,"value":9113},{"type":45,"tag":101,"props":9161,"children":9162},{},[9163,9168],{"type":45,"tag":123,"props":9164,"children":9165},{},[9166],{"type":50,"value":9167},"Cloud Recording",{"type":45,"tag":123,"props":9169,"children":9170},{},[9171],{"type":50,"value":9113},{"type":45,"tag":101,"props":9173,"children":9174},{},[9175,9180],{"type":45,"tag":123,"props":9176,"children":9177},{},[9178],{"type":50,"value":9179},"Closed Captions",{"type":45,"tag":123,"props":9181,"children":9182},{},[9183],{"type":50,"value":9113},{"type":45,"tag":101,"props":9185,"children":9186},{},[9187,9192],{"type":45,"tag":123,"props":9188,"children":9189},{},[9190],{"type":50,"value":9191},"Live Transcription",{"type":45,"tag":123,"props":9193,"children":9194},{},[9195],{"type":50,"value":9113},{"type":45,"tag":101,"props":9197,"children":9198},{},[9199,9204],{"type":45,"tag":123,"props":9200,"children":9201},{},[9202],{"type":50,"value":9203},"Waiting Room",{"type":45,"tag":123,"props":9205,"children":9206},{},[9207],{"type":50,"value":9113},{"type":45,"tag":101,"props":9209,"children":9210},{},[9211,9216],{"type":45,"tag":123,"props":9212,"children":9213},{},[9214],{"type":50,"value":9215},"Gallery View",{"type":45,"tag":123,"props":9217,"children":9218},{},[9219],{"type":50,"value":9113},{"type":45,"tag":101,"props":9221,"children":9222},{},[9223,9228],{"type":45,"tag":123,"props":9224,"children":9225},{},[9226],{"type":50,"value":9227},"Reactions",{"type":45,"tag":123,"props":9229,"children":9230},{},[9231],{"type":50,"value":9113},{"type":45,"tag":101,"props":9233,"children":9234},{},[9235,9240],{"type":45,"tag":123,"props":9236,"children":9237},{},[9238],{"type":50,"value":9239},"Raise Hand",{"type":45,"tag":123,"props":9241,"children":9242},{},[9243],{"type":50,"value":9113},{"type":45,"tag":53,"props":9245,"children":9246},{},[9247],{"type":50,"value":9248},"Contact Zoom Developer Support to request additional features.",{"type":45,"tag":72,"props":9250,"children":9252},{"id":9251},"error-handling",[9253],{"type":50,"value":9254},"Error Handling",{"type":45,"tag":253,"props":9256,"children":9258},{"className":292,"code":9257,"language":294,"meta":258,"style":258},"try {\n  await client.join({\n    \u002F\u002F ... options\n  });\n} catch (error) {\n  \u002F\u002F error.reason contains error code\n  \u002F\u002F error.message contains description\n\n  switch (error.reason) {\n    case 'WRONG_MEETING_PASSWORD':\n      console.error('Incorrect password');\n      break;\n    case 'MEETING_NOT_START':\n      console.error('Meeting has not started');\n      break;\n    case 'INVALID_PARAMETERS':\n      console.error('Invalid join parameters');\n      break;\n    default:\n      console.error('Join failed:', error.message);\n  }\n}\n",[9259],{"type":45,"tag":84,"props":9260,"children":9261},{"__ignoreMap":258},[9262,9274,9302,9310,9325,9345,9353,9361,9368,9400,9426,9467,9479,9503,9543,9554,9578,9618,9629,9641,9697,9704],{"type":45,"tag":264,"props":9263,"children":9264},{"class":266,"line":267},[9265,9270],{"type":45,"tag":264,"props":9266,"children":9267},{"style":304},[9268],{"type":50,"value":9269},"try",{"type":45,"tag":264,"props":9271,"children":9272},{"style":321},[9273],{"type":50,"value":770},{"type":45,"tag":264,"props":9275,"children":9276},{"class":266,"line":410},[9277,9282,9286,9290,9294,9298],{"type":45,"tag":264,"props":9278,"children":9279},{"style":304},[9280],{"type":50,"value":9281},"  await",{"type":45,"tag":264,"props":9283,"children":9284},{"style":310},[9285],{"type":50,"value":883},{"type":45,"tag":264,"props":9287,"children":9288},{"style":321},[9289],{"type":50,"value":721},{"type":45,"tag":264,"props":9291,"children":9292},{"style":724},[9293],{"type":50,"value":1074},{"type":45,"tag":264,"props":9295,"children":9296},{"style":365},[9297],{"type":50,"value":830},{"type":45,"tag":264,"props":9299,"children":9300},{"style":321},[9301],{"type":50,"value":901},{"type":45,"tag":264,"props":9303,"children":9304},{"class":266,"line":455},[9305],{"type":45,"tag":264,"props":9306,"children":9307},{"style":691},[9308],{"type":50,"value":9309},"    \u002F\u002F ... options\n",{"type":45,"tag":264,"props":9311,"children":9312},{"class":266,"line":500},[9313,9317,9321],{"type":45,"tag":264,"props":9314,"children":9315},{"style":321},[9316],{"type":50,"value":1296},{"type":45,"tag":264,"props":9318,"children":9319},{"style":365},[9320],{"type":50,"value":848},{"type":45,"tag":264,"props":9322,"children":9323},{"style":321},[9324],{"type":50,"value":339},{"type":45,"tag":264,"props":9326,"children":9327},{"class":266,"line":545},[9328,9332,9336,9341],{"type":45,"tag":264,"props":9329,"children":9330},{"style":321},[9331],{"type":50,"value":2685},{"type":45,"tag":264,"props":9333,"children":9334},{"style":304},[9335],{"type":50,"value":1301},{"type":45,"tag":264,"props":9337,"children":9338},{"style":310},[9339],{"type":50,"value":9340}," (error) ",{"type":45,"tag":264,"props":9342,"children":9343},{"style":321},[9344],{"type":50,"value":901},{"type":45,"tag":264,"props":9346,"children":9347},{"class":266,"line":590},[9348],{"type":45,"tag":264,"props":9349,"children":9350},{"style":691},[9351],{"type":50,"value":9352},"  \u002F\u002F error.reason contains error code\n",{"type":45,"tag":264,"props":9354,"children":9355},{"class":266,"line":773},[9356],{"type":45,"tag":264,"props":9357,"children":9358},{"style":691},[9359],{"type":50,"value":9360},"  \u002F\u002F error.message contains description\n",{"type":45,"tag":264,"props":9362,"children":9363},{"class":266,"line":786},[9364],{"type":45,"tag":264,"props":9365,"children":9366},{"emptyLinePlaceholder":682},[9367],{"type":50,"value":685},{"type":45,"tag":264,"props":9369,"children":9370},{"class":266,"line":795},[9371,9376,9380,9384,9388,9392,9396],{"type":45,"tag":264,"props":9372,"children":9373},{"style":304},[9374],{"type":50,"value":9375},"  switch",{"type":45,"tag":264,"props":9377,"children":9378},{"style":365},[9379],{"type":50,"value":1306},{"type":45,"tag":264,"props":9381,"children":9382},{"style":310},[9383],{"type":50,"value":1311},{"type":45,"tag":264,"props":9385,"children":9386},{"style":321},[9387],{"type":50,"value":721},{"type":45,"tag":264,"props":9389,"children":9390},{"style":310},[9391],{"type":50,"value":3360},{"type":45,"tag":264,"props":9393,"children":9394},{"style":365},[9395],{"type":50,"value":1316},{"type":45,"tag":264,"props":9397,"children":9398},{"style":321},[9399],{"type":50,"value":901},{"type":45,"tag":264,"props":9401,"children":9402},{"class":266,"line":855},[9403,9408,9412,9417,9421],{"type":45,"tag":264,"props":9404,"children":9405},{"style":304},[9406],{"type":50,"value":9407},"    case",{"type":45,"tag":264,"props":9409,"children":9410},{"style":321},[9411],{"type":50,"value":324},{"type":45,"tag":264,"props":9413,"children":9414},{"style":276},[9415],{"type":50,"value":9416},"WRONG_MEETING_PASSWORD",{"type":45,"tag":264,"props":9418,"children":9419},{"style":321},[9420],{"type":50,"value":334},{"type":45,"tag":264,"props":9422,"children":9423},{"style":321},[9424],{"type":50,"value":9425},":\n",{"type":45,"tag":264,"props":9427,"children":9428},{"class":266,"line":863},[9429,9434,9438,9442,9446,9450,9455,9459,9463],{"type":45,"tag":264,"props":9430,"children":9431},{"style":310},[9432],{"type":50,"value":9433},"      console",{"type":45,"tag":264,"props":9435,"children":9436},{"style":321},[9437],{"type":50,"value":721},{"type":45,"tag":264,"props":9439,"children":9440},{"style":724},[9441],{"type":50,"value":1311},{"type":45,"tag":264,"props":9443,"children":9444},{"style":365},[9445],{"type":50,"value":830},{"type":45,"tag":264,"props":9447,"children":9448},{"style":321},[9449],{"type":50,"value":334},{"type":45,"tag":264,"props":9451,"children":9452},{"style":276},[9453],{"type":50,"value":9454},"Incorrect password",{"type":45,"tag":264,"props":9456,"children":9457},{"style":321},[9458],{"type":50,"value":334},{"type":45,"tag":264,"props":9460,"children":9461},{"style":365},[9462],{"type":50,"value":848},{"type":45,"tag":264,"props":9464,"children":9465},{"style":321},[9466],{"type":50,"value":339},{"type":45,"tag":264,"props":9468,"children":9469},{"class":266,"line":872},[9470,9475],{"type":45,"tag":264,"props":9471,"children":9472},{"style":304},[9473],{"type":50,"value":9474},"      break",{"type":45,"tag":264,"props":9476,"children":9477},{"style":321},[9478],{"type":50,"value":339},{"type":45,"tag":264,"props":9480,"children":9481},{"class":266,"line":904},[9482,9486,9490,9495,9499],{"type":45,"tag":264,"props":9483,"children":9484},{"style":304},[9485],{"type":50,"value":9407},{"type":45,"tag":264,"props":9487,"children":9488},{"style":321},[9489],{"type":50,"value":324},{"type":45,"tag":264,"props":9491,"children":9492},{"style":276},[9493],{"type":50,"value":9494},"MEETING_NOT_START",{"type":45,"tag":264,"props":9496,"children":9497},{"style":321},[9498],{"type":50,"value":334},{"type":45,"tag":264,"props":9500,"children":9501},{"style":321},[9502],{"type":50,"value":9425},{"type":45,"tag":264,"props":9504,"children":9505},{"class":266,"line":927},[9506,9510,9514,9518,9522,9526,9531,9535,9539],{"type":45,"tag":264,"props":9507,"children":9508},{"style":310},[9509],{"type":50,"value":9433},{"type":45,"tag":264,"props":9511,"children":9512},{"style":321},[9513],{"type":50,"value":721},{"type":45,"tag":264,"props":9515,"children":9516},{"style":724},[9517],{"type":50,"value":1311},{"type":45,"tag":264,"props":9519,"children":9520},{"style":365},[9521],{"type":50,"value":830},{"type":45,"tag":264,"props":9523,"children":9524},{"style":321},[9525],{"type":50,"value":334},{"type":45,"tag":264,"props":9527,"children":9528},{"style":276},[9529],{"type":50,"value":9530},"Meeting has not started",{"type":45,"tag":264,"props":9532,"children":9533},{"style":321},[9534],{"type":50,"value":334},{"type":45,"tag":264,"props":9536,"children":9537},{"style":365},[9538],{"type":50,"value":848},{"type":45,"tag":264,"props":9540,"children":9541},{"style":321},[9542],{"type":50,"value":339},{"type":45,"tag":264,"props":9544,"children":9545},{"class":266,"line":957},[9546,9550],{"type":45,"tag":264,"props":9547,"children":9548},{"style":304},[9549],{"type":50,"value":9474},{"type":45,"tag":264,"props":9551,"children":9552},{"style":321},[9553],{"type":50,"value":339},{"type":45,"tag":264,"props":9555,"children":9556},{"class":266,"line":980},[9557,9561,9565,9570,9574],{"type":45,"tag":264,"props":9558,"children":9559},{"style":304},[9560],{"type":50,"value":9407},{"type":45,"tag":264,"props":9562,"children":9563},{"style":321},[9564],{"type":50,"value":324},{"type":45,"tag":264,"props":9566,"children":9567},{"style":276},[9568],{"type":50,"value":9569},"INVALID_PARAMETERS",{"type":45,"tag":264,"props":9571,"children":9572},{"style":321},[9573],{"type":50,"value":334},{"type":45,"tag":264,"props":9575,"children":9576},{"style":321},[9577],{"type":50,"value":9425},{"type":45,"tag":264,"props":9579,"children":9580},{"class":266,"line":1001},[9581,9585,9589,9593,9597,9601,9606,9610,9614],{"type":45,"tag":264,"props":9582,"children":9583},{"style":310},[9584],{"type":50,"value":9433},{"type":45,"tag":264,"props":9586,"children":9587},{"style":321},[9588],{"type":50,"value":721},{"type":45,"tag":264,"props":9590,"children":9591},{"style":724},[9592],{"type":50,"value":1311},{"type":45,"tag":264,"props":9594,"children":9595},{"style":365},[9596],{"type":50,"value":830},{"type":45,"tag":264,"props":9598,"children":9599},{"style":321},[9600],{"type":50,"value":334},{"type":45,"tag":264,"props":9602,"children":9603},{"style":276},[9604],{"type":50,"value":9605},"Invalid join parameters",{"type":45,"tag":264,"props":9607,"children":9608},{"style":321},[9609],{"type":50,"value":334},{"type":45,"tag":264,"props":9611,"children":9612},{"style":365},[9613],{"type":50,"value":848},{"type":45,"tag":264,"props":9615,"children":9616},{"style":321},[9617],{"type":50,"value":339},{"type":45,"tag":264,"props":9619,"children":9620},{"class":266,"line":1022},[9621,9625],{"type":45,"tag":264,"props":9622,"children":9623},{"style":304},[9624],{"type":50,"value":9474},{"type":45,"tag":264,"props":9626,"children":9627},{"style":321},[9628],{"type":50,"value":339},{"type":45,"tag":264,"props":9630,"children":9631},{"class":266,"line":1039},[9632,9637],{"type":45,"tag":264,"props":9633,"children":9634},{"style":304},[9635],{"type":50,"value":9636},"    default",{"type":45,"tag":264,"props":9638,"children":9639},{"style":321},[9640],{"type":50,"value":9425},{"type":45,"tag":264,"props":9642,"children":9643},{"class":266,"line":1047},[9644,9648,9652,9656,9660,9664,9669,9673,9677,9681,9685,9689,9693],{"type":45,"tag":264,"props":9645,"children":9646},{"style":310},[9647],{"type":50,"value":9433},{"type":45,"tag":264,"props":9649,"children":9650},{"style":321},[9651],{"type":50,"value":721},{"type":45,"tag":264,"props":9653,"children":9654},{"style":724},[9655],{"type":50,"value":1311},{"type":45,"tag":264,"props":9657,"children":9658},{"style":365},[9659],{"type":50,"value":830},{"type":45,"tag":264,"props":9661,"children":9662},{"style":321},[9663],{"type":50,"value":334},{"type":45,"tag":264,"props":9665,"children":9666},{"style":276},[9667],{"type":50,"value":9668},"Join failed:",{"type":45,"tag":264,"props":9670,"children":9671},{"style":321},[9672],{"type":50,"value":334},{"type":45,"tag":264,"props":9674,"children":9675},{"style":321},[9676],{"type":50,"value":1193},{"type":45,"tag":264,"props":9678,"children":9679},{"style":310},[9680],{"type":50,"value":1362},{"type":45,"tag":264,"props":9682,"children":9683},{"style":321},[9684],{"type":50,"value":721},{"type":45,"tag":264,"props":9686,"children":9687},{"style":310},[9688],{"type":50,"value":7531},{"type":45,"tag":264,"props":9690,"children":9691},{"style":365},[9692],{"type":50,"value":848},{"type":45,"tag":264,"props":9694,"children":9695},{"style":321},[9696],{"type":50,"value":339},{"type":45,"tag":264,"props":9698,"children":9699},{"class":266,"line":1056},[9700],{"type":45,"tag":264,"props":9701,"children":9702},{"style":321},[9703],{"type":50,"value":1379},{"type":45,"tag":264,"props":9705,"children":9706},{"class":266,"line":1085},[9707],{"type":45,"tag":264,"props":9708,"children":9709},{"style":321},[9710],{"type":50,"value":1388},{"type":45,"tag":72,"props":9712,"children":9714},{"id":9713},"comparison-with-client-view",[9715],{"type":50,"value":9716},"Comparison with Client View",{"type":45,"tag":93,"props":9718,"children":9719},{},[9720,9740],{"type":45,"tag":97,"props":9721,"children":9722},{},[9723],{"type":45,"tag":101,"props":9724,"children":9725},{},[9726,9730,9735],{"type":45,"tag":105,"props":9727,"children":9728},{},[9729],{"type":50,"value":9092},{"type":45,"tag":105,"props":9731,"children":9732},{},[9733],{"type":50,"value":9734},"Component View",{"type":45,"tag":105,"props":9736,"children":9737},{},[9738],{"type":50,"value":9739},"Client View",{"type":45,"tag":116,"props":9741,"children":9742},{},[9743,9763,9790,9817,9837,9862,9887],{"type":45,"tag":101,"props":9744,"children":9745},{},[9746,9753,9758],{"type":45,"tag":123,"props":9747,"children":9748},{},[9749],{"type":45,"tag":64,"props":9750,"children":9751},{},[9752],{"type":50,"value":151},{"type":45,"tag":123,"props":9754,"children":9755},{},[9756],{"type":50,"value":9757},"Promises",{"type":45,"tag":123,"props":9759,"children":9760},{},[9761],{"type":50,"value":9762},"Callbacks",{"type":45,"tag":101,"props":9764,"children":9765},{},[9766,9773,9781],{"type":45,"tag":123,"props":9767,"children":9768},{},[9769],{"type":45,"tag":64,"props":9770,"children":9771},{},[9772],{"type":50,"value":183},{"type":45,"tag":123,"props":9774,"children":9775},{},[9776],{"type":45,"tag":84,"props":9777,"children":9779},{"className":9778},[],[9780],{"type":50,"value":192},{"type":45,"tag":123,"props":9782,"children":9783},{},[9784],{"type":45,"tag":84,"props":9785,"children":9787},{"className":9786},[],[9788],{"type":50,"value":9789},"passWord",{"type":45,"tag":101,"props":9791,"children":9792},{},[9793,9801,9806],{"type":45,"tag":123,"props":9794,"children":9795},{},[9796],{"type":45,"tag":64,"props":9797,"children":9798},{},[9799],{"type":50,"value":9800},"Container",{"type":45,"tag":123,"props":9802,"children":9803},{},[9804],{"type":50,"value":9805},"Custom element",{"type":45,"tag":123,"props":9807,"children":9808},{},[9809,9811],{"type":50,"value":9810},"Auto ",{"type":45,"tag":84,"props":9812,"children":9814},{"className":9813},[],[9815],{"type":50,"value":9816},"#zmmtg-root",{"type":45,"tag":101,"props":9818,"children":9819},{},[9820,9827,9832],{"type":45,"tag":123,"props":9821,"children":9822},{},[9823],{"type":45,"tag":64,"props":9824,"children":9825},{},[9826],{"type":50,"value":167},{"type":45,"tag":123,"props":9828,"children":9829},{},[9830],{"type":50,"value":9831},"Embeddable",{"type":45,"tag":123,"props":9833,"children":9834},{},[9835],{"type":50,"value":9836},"Full-page",{"type":45,"tag":101,"props":9838,"children":9839},{},[9840,9848,9853],{"type":45,"tag":123,"props":9841,"children":9842},{},[9843],{"type":45,"tag":64,"props":9844,"children":9845},{},[9846],{"type":50,"value":9847},"Preloading",{"type":45,"tag":123,"props":9849,"children":9850},{},[9851],{"type":50,"value":9852},"Not needed",{"type":45,"tag":123,"props":9854,"children":9855},{},[9856],{"type":45,"tag":84,"props":9857,"children":9859},{"className":9858},[],[9860],{"type":50,"value":9861},"preLoadWasm()",{"type":45,"tag":101,"props":9863,"children":9864},{},[9865,9873,9878],{"type":45,"tag":123,"props":9866,"children":9867},{},[9868],{"type":45,"tag":64,"props":9869,"children":9870},{},[9871],{"type":50,"value":9872},"Language",{"type":45,"tag":123,"props":9874,"children":9875},{},[9876],{"type":50,"value":9877},"Init option",{"type":45,"tag":123,"props":9879,"children":9880},{},[9881],{"type":45,"tag":84,"props":9882,"children":9884},{"className":9883},[],[9885],{"type":50,"value":9886},"i18n.load()",{"type":45,"tag":101,"props":9888,"children":9889},{},[9890,9897,9911],{"type":45,"tag":123,"props":9891,"children":9892},{},[9893],{"type":45,"tag":64,"props":9894,"children":9895},{},[9896],{"type":50,"value":205},{"type":45,"tag":123,"props":9898,"children":9899},{},[9900,9905,9906],{"type":45,"tag":84,"props":9901,"children":9903},{"className":9902},[],[9904],{"type":50,"value":214},{"type":50,"value":216},{"type":45,"tag":84,"props":9907,"children":9909},{"className":9908},[],[9910],{"type":50,"value":222},{"type":45,"tag":123,"props":9912,"children":9913},{},[9914],{"type":45,"tag":84,"props":9915,"children":9917},{"className":9916},[],[9918],{"type":50,"value":9919},"inMeetingServiceListener()",{"type":45,"tag":72,"props":9921,"children":9923},{"id":9922},"resources",[9924],{"type":50,"value":9925},"Resources",{"type":45,"tag":9927,"props":9928,"children":9929},"ul",{},[9930,9941,9950,9959,9968,9977],{"type":45,"tag":9931,"props":9932,"children":9933},"li",{},[9934],{"type":45,"tag":9935,"props":9936,"children":9938},"a",{"href":9937},"..\u002FSKILL.md",[9939],{"type":50,"value":9940},"Main Web SDK Skill",{"type":45,"tag":9931,"props":9942,"children":9943},{},[9944],{"type":45,"tag":9935,"props":9945,"children":9947},{"href":9946},"references\u002Findex.md",[9948],{"type":50,"value":9949},"Reference Index",{"type":45,"tag":9931,"props":9951,"children":9952},{},[9953],{"type":45,"tag":9935,"props":9954,"children":9956},{"href":9955},"..\u002Ftroubleshooting\u002Ferror-codes.md",[9957],{"type":50,"value":9958},"Error Codes",{"type":45,"tag":9931,"props":9960,"children":9961},{},[9962],{"type":45,"tag":9935,"props":9963,"children":9965},{"href":9964},"..\u002Ftroubleshooting\u002Fcommon-issues.md",[9966],{"type":50,"value":9967},"Common Issues",{"type":45,"tag":9931,"props":9969,"children":9970},{},[9971],{"type":45,"tag":9935,"props":9972,"children":9974},{"href":9973},"..\u002Fconcepts\u002Fsharedarraybuffer.md",[9975],{"type":50,"value":9976},"SharedArrayBuffer Setup",{"type":45,"tag":9931,"props":9978,"children":9979},{},[9980],{"type":45,"tag":9935,"props":9981,"children":9985},{"href":9982,"rel":9983},"https:\u002F\u002Fmarketplacefront.zoom.us\u002Fsdk\u002Fmeeting\u002Fweb\u002Fcomponents\u002Findex.html",[9984],"nofollow",[9986],{"type":50,"value":9987},"Official API Reference",{"type":45,"tag":72,"props":9989,"children":9991},{"id":9990},"operations",[9992],{"type":50,"value":9993},"Operations",{"type":45,"tag":9927,"props":9995,"children":9996},{},[9997],{"type":45,"tag":9931,"props":9998,"children":9999},{},[10000,10005],{"type":45,"tag":9935,"props":10001,"children":10003},{"href":10002},"RUNBOOK.md",[10004],{"type":50,"value":10002},{"type":50,"value":10006}," - 5-minute preflight and debugging checklist.",{"type":45,"tag":8889,"props":10008,"children":10009},{},[10010],{"type":50,"value":10011},"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":10013,"total":10132},[10014,10032,10048,10060,10080,10100,10120],{"slug":10015,"name":10015,"fn":10016,"description":10017,"org":10018,"tags":10019,"stars":28,"repoUrl":29,"updatedAt":30},"accessibility-and-inclusive-visualization","make data visualizations accessible","Make data visualizations accessible and inclusive. Use when the user needs chart or diagram accessibility guidance, text alternatives for complex visuals, color and contrast review, keyboard support, reduced-motion behavior for animation or parallax, or an accessibility QA workflow for exported figures, UML-like diagrams, and dashboards.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[10020,10023,10026,10029],{"name":10021,"slug":10022,"type":15},"Accessibility","accessibility",{"name":10024,"slug":10025,"type":15},"Charts","charts",{"name":10027,"slug":10028,"type":15},"Data Visualization","data-visualization",{"name":10030,"slug":10031,"type":15},"Design","design",{"slug":10033,"name":10033,"fn":10034,"description":10035,"org":10036,"tags":10037,"stars":28,"repoUrl":29,"updatedAt":10047},"agent-browser","automate browser interactions for agents","Browser automation CLI for AI agents. Use when the user needs to interact with websites, verify dev server output, test web apps, navigate pages, fill forms, click buttons, take screenshots, extract data, or automate any browser task. Also triggers when a dev server starts so you can verify it visually.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[10038,10041,10044],{"name":10039,"slug":10040,"type":15},"Agents","agents",{"name":10042,"slug":10043,"type":15},"Browser Automation","browser-automation",{"name":10045,"slug":10046,"type":15},"Testing","testing","2026-04-06T18:41:03.44016",{"slug":10049,"name":10049,"fn":10050,"description":10051,"org":10052,"tags":10053,"stars":28,"repoUrl":29,"updatedAt":10059},"agent-browser-verify","verify dev server output with automated browser","Automated browser verification for dev servers. Triggers when a dev server starts to run a visual gut-check with agent-browser — verifies the page loads, checks for console errors, validates key UI elements, and reports pass\u002Ffail before continuing.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[10054,10055,10058],{"name":10042,"slug":10043,"type":15},{"name":10056,"slug":10057,"type":15},"Local Development","local-development",{"name":10045,"slug":10046,"type":15},"2026-04-06T18:41:17.526867",{"slug":10061,"name":10061,"fn":10062,"description":10063,"org":10064,"tags":10065,"stars":28,"repoUrl":29,"updatedAt":10079},"agents-sdk","build AI agents on Cloudflare Workers","Build AI agents on Cloudflare Workers using the Agents SDK. Load when creating stateful agents, durable workflows, real-time WebSocket apps, scheduled tasks, MCP servers, or chat applications. Covers Agent class, state management, callable RPC, Workflows integration, and React hooks. Biases towards retrieval from Cloudflare docs over pre-trained knowledge.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[10066,10067,10070,10073,10076],{"name":10039,"slug":10040,"type":15},{"name":10068,"slug":10069,"type":15},"Cloudflare Workers","cloudflare-workers",{"name":10071,"slug":10072,"type":15},"SDK","sdk",{"name":10074,"slug":10075,"type":15},"Serverless","serverless",{"name":10077,"slug":10078,"type":15},"WebSockets","websockets","2026-04-06T18:39:51.717063",{"slug":10081,"name":10081,"fn":10082,"description":10083,"org":10084,"tags":10085,"stars":28,"repoUrl":29,"updatedAt":10099},"ai-elements","build chat UIs with AI Elements","AI Elements component library guidance — pre-built React components for AI interfaces built on shadcn\u002Fui. Use when building chat UIs, message displays, tool call rendering, streaming responses, reasoning panels, or any AI-native interface with the AI SDK.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[10086,10089,10090,10093,10096],{"name":10087,"slug":10088,"type":15},"Frontend","frontend",{"name":17,"slug":18,"type":15},{"name":10091,"slug":10092,"type":15},"shadcn\u002Fui","shadcn-ui",{"name":10094,"slug":10095,"type":15},"UI Components","ui-components",{"name":10097,"slug":10098,"type":15},"Vercel","vercel","2026-04-06T18:40:59.619419",{"slug":10101,"name":10101,"fn":10102,"description":10103,"org":10104,"tags":10105,"stars":28,"repoUrl":29,"updatedAt":10119},"ai-gateway","configure Vercel AI Gateway","Vercel AI Gateway expert guidance. Use when configuring model routing, provider failover, cost tracking, or managing multiple AI providers through a unified API.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[10106,10109,10112,10115,10118],{"name":10107,"slug":10108,"type":15},"AI Infrastructure","ai-infrastructure",{"name":10110,"slug":10111,"type":15},"Cost Optimization","cost-optimization",{"name":10113,"slug":10114,"type":15},"LLM","llm",{"name":10116,"slug":10117,"type":15},"Performance","performance",{"name":10097,"slug":10098,"type":15},"2026-04-06T18:40:44.377464",{"slug":10121,"name":10121,"fn":10122,"description":10123,"org":10124,"tags":10125,"stars":28,"repoUrl":29,"updatedAt":10131},"ai-generation-persistence","implement persistence patterns for AI generations","AI generation persistence patterns — unique IDs, addressable URLs, database storage, and cost tracking for every LLM generation",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[10126,10127,10130],{"name":10110,"slug":10111,"type":15},{"name":10128,"slug":10129,"type":15},"Database","database",{"name":10113,"slug":10114,"type":15},"2026-04-06T18:41:08.513425",600,{"items":10134,"total":10329},[10135,10156,10177,10194,10210,10227,10246,10258,10272,10286,10298,10313],{"slug":10136,"name":10136,"fn":10137,"description":10138,"org":10139,"tags":10140,"stars":10153,"repoUrl":10154,"updatedAt":10155},"prior-auth-packet-builder","build healthcare prior authorization packets","Build a concise prior authorization packet from local case files and payer policy docs.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[10141,10144,10147,10150],{"name":10142,"slug":10143,"type":15},"Documents","documents",{"name":10145,"slug":10146,"type":15},"Healthcare","healthcare",{"name":10148,"slug":10149,"type":15},"Insurance","insurance",{"name":10151,"slug":10152,"type":15},"Regulatory Compliance","regulatory-compliance",28169,"https:\u002F\u002Fgithub.com\u002Fopenai\u002Fopenai-agents-python","2026-04-16T05:11:39.180399",{"slug":10157,"name":10157,"fn":10158,"description":10159,"org":10160,"tags":10161,"stars":10174,"repoUrl":10175,"updatedAt":10176},"aspnet-core","build ASP.NET Core web applications","Build, review, refactor, or architect ASP.NET Core web applications using current official guidance for .NET web development. Use when working on Blazor Web Apps, Razor Pages, MVC, Minimal APIs, controller-based Web APIs, SignalR, gRPC, middleware, dependency injection, configuration, authentication, authorization, testing, performance, deployment, or ASP.NET Core upgrades.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[10162,10165,10167,10170,10173],{"name":10163,"slug":10164,"type":15},".NET","dotnet",{"name":10166,"slug":10157,"type":15},"ASP.NET Core",{"name":10168,"slug":10169,"type":15},"Blazor","blazor",{"name":10171,"slug":10172,"type":15},"C#","csharp",{"name":23,"slug":24,"type":15},23787,"https:\u002F\u002Fgithub.com\u002Fopenai\u002Fskills","2026-04-12T05:07:02.819491",{"slug":10178,"name":10178,"fn":10179,"description":10180,"org":10181,"tags":10182,"stars":10174,"repoUrl":10175,"updatedAt":10193},"chatgpt-apps","build ChatGPT Apps SDK applications","Build, scaffold, refactor, and troubleshoot ChatGPT Apps SDK applications that combine an MCP server and widget UI. Use when Codex needs to design tools, register UI resources, wire the MCP Apps bridge or ChatGPT compatibility APIs, apply Apps SDK metadata or CSP or domain settings, or produce a docs-aligned project scaffold. Prefer a docs-first workflow by invoking the openai-docs skill or OpenAI developer docs MCP tools before generating code.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[10183,10186,10189,10192],{"name":10184,"slug":10185,"type":15},"Apps SDK","apps-sdk",{"name":10187,"slug":10188,"type":15},"ChatGPT","chatgpt",{"name":10190,"slug":10191,"type":15},"MCP","mcp",{"name":9,"slug":8,"type":15},"2026-04-12T05:07:05.468097",{"slug":10195,"name":10195,"fn":10196,"description":10197,"org":10198,"tags":10199,"stars":10174,"repoUrl":10175,"updatedAt":10209},"cli-creator","build CLIs from API docs","Build a composable CLI for Codex from API docs, an OpenAPI spec, existing curl examples, an SDK, a web app, an admin tool, or a local script. Use when the user wants Codex to create a command-line tool that can run from any repo, expose composable read\u002Fwrite commands, return stable JSON, manage auth, and pair with a companion skill.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[10200,10203,10206],{"name":10201,"slug":10202,"type":15},"API Development","api-development",{"name":10204,"slug":10205,"type":15},"CLI","cli",{"name":10207,"slug":10208,"type":15},"Codex","codex","2026-04-12T05:07:04.132762",{"slug":10211,"name":10211,"fn":10212,"description":10213,"org":10214,"tags":10215,"stars":10174,"repoUrl":10175,"updatedAt":10226},"cloudflare-deploy","deploy projects to Cloudflare","Deploy applications and infrastructure to Cloudflare using Workers, Pages, and related platform services. Use when the user asks to deploy, host, publish, or set up a project on Cloudflare.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[10216,10219,10222,10223],{"name":10217,"slug":10218,"type":15},"Cloudflare","cloudflare",{"name":10220,"slug":10221,"type":15},"Cloudflare Pages","cloudflare-pages",{"name":10068,"slug":10069,"type":15},{"name":10224,"slug":10225,"type":15},"Deployment","deployment","2026-04-12T05:07:14.275118",{"slug":10228,"name":10228,"fn":10229,"description":10230,"org":10231,"tags":10232,"stars":10174,"repoUrl":10175,"updatedAt":10245},"define-goal","define and set measurable project goals","Help the user define a concrete, measurable goal before starting work, especially when they ask to use the goal tool, create a goal, set an objective, clarify success criteria, or turn a fuzzy intention into a quantitative outcome. Use this skill for goal creation and goal refinement only; it does not manage durable snapshots, decision logs, or long-running execution artifacts.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[10233,10236,10239,10242],{"name":10234,"slug":10235,"type":15},"Productivity","productivity",{"name":10237,"slug":10238,"type":15},"Project Management","project-management",{"name":10240,"slug":10241,"type":15},"Strategy","strategy",{"name":10243,"slug":10244,"type":15},"Task Management","task-management","2026-05-23T06:17:16.870838",{"slug":10247,"name":10247,"fn":10248,"description":10249,"org":10250,"tags":10251,"stars":10174,"repoUrl":10175,"updatedAt":10257},"figma","translate Figma designs into code","Use the Figma MCP server to fetch design context, screenshots, variables, and assets from Figma, and to translate Figma nodes into production code. Trigger when a task involves Figma URLs, node IDs, design-to-code implementation, or Figma MCP setup and troubleshooting.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[10252,10253,10255,10256],{"name":10030,"slug":10031,"type":15},{"name":10254,"slug":10247,"type":15},"Figma",{"name":10087,"slug":10088,"type":15},{"name":10190,"slug":10191,"type":15},"2026-04-12T05:06:47.939943",{"slug":10259,"name":10259,"fn":10260,"description":10261,"org":10262,"tags":10263,"stars":10174,"repoUrl":10175,"updatedAt":10271},"figma-code-connect-components","connect Figma designs to code components","Connects Figma design components to code components using Code Connect mapping tools. Use when user says \"code connect\", \"connect this component to code\", \"map this component\", \"link component to code\", \"create code connect mapping\", or wants to establish mappings between Figma designs and code implementations. For canvas writes via `use_figma`, use `figma-use`.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[10264,10265,10268,10269,10270],{"name":10030,"slug":10031,"type":15},{"name":10266,"slug":10267,"type":15},"Design System","design-system",{"name":10254,"slug":10247,"type":15},{"name":10087,"slug":10088,"type":15},{"name":10094,"slug":10095,"type":15},"2026-05-10T05:59:52.971881",{"slug":10273,"name":10273,"fn":10274,"description":10275,"org":10276,"tags":10277,"stars":10174,"repoUrl":10175,"updatedAt":10285},"figma-create-design-system-rules","generate design system rules from Figma","Generates custom design system rules for the user's codebase. Use when user says \"create design system rules\", \"generate rules for my project\", \"set up design rules\", \"customize design system guidelines\", or wants to establish project-specific conventions for Figma-to-code workflows. Requires Figma MCP server connection.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[10278,10279,10280,10283,10284],{"name":10030,"slug":10031,"type":15},{"name":10266,"slug":10267,"type":15},{"name":10281,"slug":10282,"type":15},"Documentation","documentation",{"name":10254,"slug":10247,"type":15},{"name":10087,"slug":10088,"type":15},"2026-05-16T06:07:47.821474",{"slug":10287,"name":10287,"fn":10288,"description":10289,"org":10290,"tags":10291,"stars":10174,"repoUrl":10175,"updatedAt":10297},"figma-implement-design","translate Figma designs into application code","Translates Figma designs into production-ready application code with 1:1 visual fidelity. Use when implementing UI code from Figma files, when user mentions \"implement design\", \"generate code\", \"implement component\", provides Figma URLs, or asks to build components matching Figma specs. For Figma canvas writes via `use_figma`, use `figma-use`.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[10292,10293,10294,10295,10296],{"name":10030,"slug":10031,"type":15},{"name":10254,"slug":10247,"type":15},{"name":10087,"slug":10088,"type":15},{"name":10094,"slug":10095,"type":15},{"name":23,"slug":24,"type":15},"2026-05-16T06:07:40.583615",{"slug":10299,"name":10299,"fn":10300,"description":10301,"org":10302,"tags":10303,"stars":10174,"repoUrl":10175,"updatedAt":10312},"hatch-pet","create animated pets for Codex","Create, repair, validate, visually QA, and package Codex-compatible animated pets and pet spritesheets from character art, generated images, company or prospect brand cues, or visual references. Use when a user wants a lightweight-worker Codex pet workflow, a non-pixel custom pet style, a prospect or company mascot pet, or a full 8x9 animated pet atlas with transparent unused cells, QA contact sheets, and pet.json packaging. This skill composes the installed $imagegen system skill for visual generation and uses bundled scripts for deterministic spritesheet assembly.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[10304,10307,10308,10311],{"name":10305,"slug":10306,"type":15},"Animation","animation",{"name":10207,"slug":10208,"type":15},{"name":10309,"slug":10310,"type":15},"Creative","creative",{"name":10030,"slug":10031,"type":15},"2026-05-02T05:31:48.48485",{"slug":10314,"name":10314,"fn":10315,"description":10316,"org":10317,"tags":10318,"stars":10174,"repoUrl":10175,"updatedAt":10328},"imagegen","generate and edit raster images","Generate or edit raster images when the task benefits from AI-created bitmap visuals such as photos, illustrations, textures, sprites, mockups, or transparent-background cutouts. Use when Codex should create a brand-new image, transform an existing image, or derive visual variants from references, and the output should be a bitmap asset rather than repo-native code or vector. Do not use when the task is better handled by editing existing SVG\u002Fvector\u002Fcode-native assets, extending an established icon or logo system, or building the visual directly in HTML\u002FCSS\u002Fcanvas.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[10319,10320,10321,10324,10327],{"name":10309,"slug":10310,"type":15},{"name":10030,"slug":10031,"type":15},{"name":10322,"slug":10323,"type":15},"Image Generation","image-generation",{"name":10325,"slug":10326,"type":15},"Images","images",{"name":9,"slug":8,"type":15},"2026-05-15T06:23:24.312127",675]